From 7dfb96f914877b00daba92073cf26c5d2bfdd71d Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 4 Aug 2021 13:19:19 +0300 Subject: [PATCH 01/90] [DE] Add simple markup mode for display review changes --- apps/api/documents/api.js | 2 +- .../main/lib/controller/ReviewChanges.js | 25 +++++++++----- apps/common/main/lib/view/ReviewChanges.js | 18 ++++++++-- .../lib/controller/collaboration/Review.jsx | 34 +++++++++---------- apps/documenteditor/main/locale/en.json | 2 ++ 5 files changed, 51 insertions(+), 30 deletions(-) diff --git a/apps/api/documents/api.js b/apps/api/documents/api.js index 2aa7ad002..55d5e7bc1 100644 --- a/apps/api/documents/api.js +++ b/apps/api/documents/api.js @@ -155,7 +155,7 @@ compactHeader: false, toolbarNoTabs: false, toolbarHideFileName: false, - reviewDisplay: 'original', + reviewDisplay: 'original', // original for viewer, markup for editor spellcheck: true, compatibleFeatures: false, unit: 'cm' // cm, pt, inch, diff --git a/apps/common/main/lib/controller/ReviewChanges.js b/apps/common/main/lib/controller/ReviewChanges.js index b9c7ac6b2..549ed477f 100644 --- a/apps/common/main/lib/controller/ReviewChanges.js +++ b/apps/common/main/lib/controller/ReviewChanges.js @@ -595,7 +595,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); }, @@ -690,7 +693,7 @@ define([ else if (mode === 'original') this.api.asc_BeginViewModeInReview(false); else - this.api.asc_EndViewModeInReview(); + this.api.asc_EndViewModeInReview(mode=='simple'); } this.disableEditing(mode == 'final' || mode == 'original'); this._state.previewMode = (mode == 'final' || mode == 'original'); @@ -702,9 +705,9 @@ define([ this._state.previewMode = true; }, - onEndViewModeInReview: function() { + onEndViewModeInReview: function(mode) { this.disableEditing(false); - this.view && this.view.turnDisplayMode('markup'); + this.view && this.view.turnDisplayMode(mode ? 'simple' : 'markup'); this._state.previewMode = false; }, @@ -804,7 +807,11 @@ 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 && /^(original|final|markup|simple)$/i.test(me.appConfig.customization.reviewDisplay) ? me.appConfig.customization.reviewDisplay.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.showReviewChanges==true) ) { me.dlgChanges = (new Common.Views.ReviewChangesDialog({ @@ -819,11 +826,11 @@ 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 && /^(original|final|markup)$/i.test(me.appConfig.customization.reviewDisplay) ? me.appConfig.customization.reviewDisplay.toLocaleLowerCase() : 'original'; - me.turnDisplayMode((config.isEdit || config.isRestrictedEdit) ? 'markup' : val); // load display mode only in viewer - me.view.turnDisplayMode((config.isEdit || config.isRestrictedEdit) ? 'markup' : val); + val = me.appConfig.customization && /^(original|final|markup|simple)$/i.test(me.appConfig.customization.reviewDisplay) ? me.appConfig.customization.reviewDisplay.toLocaleLowerCase() : (config.isEdit || config.isRestrictedEdit ? 'markup' : 'original'); + me.turnDisplayMode(val); + me.view.turnDisplayMode(val); } } diff --git a/apps/common/main/lib/view/ReviewChanges.js b/apps/common/main/lib/view/ReviewChanges.js index 0b52de0d9..d30a0448b 100644 --- a/apps/common/main/lib/view/ReviewChanges.js +++ b/apps/common/main/lib/view/ReviewChanges.js @@ -298,6 +298,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, @@ -750,8 +759,9 @@ 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); } }, @@ -850,7 +860,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 pop-up windows with changes' } }()), Common.Views.ReviewChanges || {})); diff --git a/apps/common/mobile/lib/controller/collaboration/Review.jsx b/apps/common/mobile/lib/controller/collaboration/Review.jsx index 1ffa6780d..507c0d850 100644 --- a/apps/common/mobile/lib/controller/collaboration/Review.jsx +++ b/apps/common/mobile/lib/controller/collaboration/Review.jsx @@ -22,24 +22,24 @@ class InitReview extends Component { api.asc_SetTrackRevisions(appOptions.isReviewOnly || trackChanges===true || (trackChanges!==false) && LocalStorage.getBool("de-mobile-track-changes-" + (appOptions.fileKey || ''))); // 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 && /^(original|final|markup)$/i.test(appOptions.customization.reviewDisplay) ? appOptions.customization.reviewDisplay.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 && /^(original|final|markup|simple)$/i.test(appOptions.customization.reviewDisplay) ? appOptions.customization.reviewDisplay.toLocaleLowerCase() : ( appOptions.isEdit || appOptions.isRestrictedEdit ? 'markup' : 'original'); + let displayMode = viewReviewMode.toLocaleLowerCase(); + if (displayMode === 'final') { + api.asc_BeginViewModeInReview(true); + } else if (displayMode === 'original') { + api.asc_BeginViewModeInReview(false); + } else { + (displayMode === 'simple') && (displayMode = 'markup'); + api.asc_EndViewModeInReview(); } + props.storeReview.changeDisplayMode(displayMode); } }); } @@ -102,7 +102,7 @@ class Review extends Component { } else { api.asc_EndViewModeInReview(); } - !this.appConfig.canReview && LocalStorage.setItem("de-view-review-mode", mode); + !this.appConfig.isEdit && !this.appConfig.isRestrictedEdit && LocalStorage.setItem("de-view-review-mode", mode); this.props.storeReview.changeDisplayMode(mode); } diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 9c33f4a6b..67f742f6d 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -398,6 +398,8 @@ "Common.Views.ReviewChanges.txtSpelling": "Spell Checking", "Common.Views.ReviewChanges.txtTurnon": "Track Changes", "Common.Views.ReviewChanges.txtView": "Display Mode", + "Common.Views.ReviewChanges.txtMarkupSimpleCap": "Simple Markup", + "Common.Views.ReviewChanges.txtMarkupSimple": "All changes (Editing)
Turn off pop-up windows with changes", "Common.Views.ReviewChangesDialog.textTitle": "Review Changes", "Common.Views.ReviewChangesDialog.txtAccept": "Accept", "Common.Views.ReviewChangesDialog.txtAcceptAll": "Accept All Changes", From 2954b9ded51446302de5e0f81f707897b77bf853 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 4 Aug 2021 15:43:54 +0300 Subject: [PATCH 02/90] [DE] Add parameter review.hoverMode to customization: show review changes balloons as tooltips (on mouse move) --- apps/api/documents/api.js | 3 ++- apps/common/main/lib/controller/ReviewChanges.js | 10 +++++++++- .../main/app/view/DocumentHolder.js | 15 +++++++++++++-- 3 files changed, 24 insertions(+), 4 deletions(-) diff --git a/apps/api/documents/api.js b/apps/api/documents/api.js index 55d5e7bc1..c1a9abf26 100644 --- a/apps/api/documents/api.js +++ b/apps/api/documents/api.js @@ -136,7 +136,8 @@ 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 }, chat: true, comments: true, diff --git a/apps/common/main/lib/controller/ReviewChanges.js b/apps/common/main/lib/controller/ReviewChanges.js index 549ed477f..9ba96dbaf 100644 --- a/apps/common/main/lib/controller/ReviewChanges.js +++ b/apps/common/main/lib/controller/ReviewChanges.js @@ -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(), @@ -844,6 +844,14 @@ define([ 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)); } + + 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) { diff --git a/apps/documenteditor/main/app/view/DocumentHolder.js b/apps/documenteditor/main/app/view/DocumentHolder.js index d087ec28f..3ae5290ee 100644 --- a/apps/documenteditor/main/app/view/DocumentHolder.js +++ b/apps/documenteditor/main/app/view/DocumentHolder.js @@ -491,7 +491,8 @@ define([ var showPoint, ToolTip, type = moveData.get_Type(); - if (type==Asc.c_oAscMouseMoveDataTypes.Hyperlink || type==Asc.c_oAscMouseMoveDataTypes.Footnote || type==Asc.c_oAscMouseMoveDataTypes.Form) { // 1 - hyperlink, 3 - footnote + if (type==Asc.c_oAscMouseMoveDataTypes.Hyperlink || type==Asc.c_oAscMouseMoveDataTypes.Footnote || type==Asc.c_oAscMouseMoveDataTypes.Form || + type==Asc.c_oAscMouseMoveDataTypes.Review && me.mode.reviewHoverMode) { if (isTooltipHiding) { mouseMoveData = moveData; return; @@ -511,12 +512,22 @@ define([ ToolTip = moveData.get_FormHelpText(); if (ToolTip.length>1000) ToolTip = ToolTip.substr(0, 1000) + '...'; + } else if (type==Asc.c_oAscMouseMoveDataTypes.Review) { + var changes = DE.getController("Common.Controllers.ReviewChanges").readSDKChange(moveData.asc_getChanges()); + if (changes && changes.length>0) + changes = changes[0]; + if (changes) { + ToolTip = ''+ Common.Utils.String.htmlEncode(AscCommon.UserInfoParser.getParsedName(changes.get('username'))) +' '; + ToolTip += ''+ changes.get('date') +'
'; + ToolTip += changes.get('changetext'); + } } var recalc = false; screenTip.isHidden = false; - ToolTip = Common.Utils.String.htmlEncode(ToolTip); + if (type!==Asc.c_oAscMouseMoveDataTypes.Review) + ToolTip = Common.Utils.String.htmlEncode(ToolTip); if (screenTip.tipType !== type || screenTip.tipLength !== ToolTip.length || screenTip.strTip.indexOf(ToolTip)<0 ) { screenTip.toolTip.setTitle((type==Asc.c_oAscMouseMoveDataTypes.Hyperlink) ? (ToolTip + '
' + me.txtPressLink + '') : ToolTip); From c532f574c7df5e85a67243f06aab2c46763c66e9 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Thu, 5 Aug 2021 17:56:34 +0300 Subject: [PATCH 03/90] [DE PE mobile] Fix Bug 51538 --- .../common/mobile/lib/controller/ContextMenu.jsx | 16 +++++++++------- apps/documenteditor/mobile/src/page/main.jsx | 2 +- apps/presentationeditor/mobile/src/page/main.jsx | 2 +- 3 files changed, 11 insertions(+), 9 deletions(-) diff --git a/apps/common/mobile/lib/controller/ContextMenu.jsx b/apps/common/mobile/lib/controller/ContextMenu.jsx index dd16ee1be..7a5b15c29 100644 --- a/apps/common/mobile/lib/controller/ContextMenu.jsx +++ b/apps/common/mobile/lib/controller/ContextMenu.jsx @@ -126,11 +126,13 @@ class ContextMenuController extends Component { onApiHideContextMenu() { if ( this.state.opened ) { - $$(idContextMenuElement).hide(); - f7.popover.close(idContextMenuElement, false); - - this.$targetEl.css({left: '-10000px', top: '-10000px'}); - this.setState({opened: false}); + setTimeout(() => { + $$(idContextMenuElement).hide(); + f7.popover.close(idContextMenuElement, false); + + this.$targetEl.css({left: '-10000px', top: '-10000px'}); + this.setState({opened: false}); + }, 800); } } @@ -150,8 +152,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/documenteditor/mobile/src/page/main.jsx b/apps/documenteditor/mobile/src/page/main.jsx index 371c3fa27..ba64208dc 100644 --- a/apps/documenteditor/mobile/src/page/main.jsx +++ b/apps/documenteditor/mobile/src/page/main.jsx @@ -26,7 +26,7 @@ class MainPage extends Component { } handleClickToOpenOptions = (opts, showOpts) => { - ContextMenu.closeContextMenu(); + f7.popover.close('.document-menu.modal-in', false); setTimeout(() => { let opened = false; diff --git a/apps/presentationeditor/mobile/src/page/main.jsx b/apps/presentationeditor/mobile/src/page/main.jsx index 690cb6f4d..403e3b8f5 100644 --- a/apps/presentationeditor/mobile/src/page/main.jsx +++ b/apps/presentationeditor/mobile/src/page/main.jsx @@ -28,7 +28,7 @@ class MainPage extends Component { } handleClickToOpenOptions = (opts, showOpts) => { - ContextMenu.closeContextMenu(); + f7.popover.close('.document-menu.modal-in', false); setTimeout(() => { let opened = false; From 425b105e8ea28dd18991ad170600b4760d35d620 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 9 Aug 2021 13:39:58 +0300 Subject: [PATCH 04/90] [SSE] For Bug 51811 --- apps/spreadsheeteditor/main/app/controller/LeftMenu.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/spreadsheeteditor/main/app/controller/LeftMenu.js b/apps/spreadsheeteditor/main/app/controller/LeftMenu.js index 9d17ad6ab..88ae3bd25 100644 --- a/apps/spreadsheeteditor/main/app/controller/LeftMenu.js +++ b/apps/spreadsheeteditor/main/app/controller/LeftMenu.js @@ -726,7 +726,7 @@ define([ onApiAddComments: function(data) { var resolved = Common.Utils.InternalSettings.get("sse-settings-resolvedcomment"); for (var i = 0; i < data.length; ++i) { - if (data[i].asc_getUserId() !== this.mode.user.id && (resolved || !data[i].asc_getSolved()) && AscCommon.UserInfoParser.canViewComment(data.asc_getUserName())) { + if (data[i].asc_getUserId() !== this.mode.user.id && (resolved || !data[i].asc_getSolved()) && AscCommon.UserInfoParser.canViewComment(data[i].asc_getUserName())) { this.leftMenu.markCoauthOptions('comments'); break; } From 5a376cc3ebbc55c17d7dd6b0ad837c64ed6bd0fd Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Mon, 9 Aug 2021 16:32:28 +0300 Subject: [PATCH 05/90] [DE mobile] Fix Bug 49157 --- apps/common/mobile/lib/component/ThemeColorPalette.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)}} > From 179aad0d22e9c9a8b3ece44344d4af0ba3619b52 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Mon, 9 Aug 2021 17:15:28 +0300 Subject: [PATCH 06/90] Removed timeout --- apps/common/mobile/lib/controller/ContextMenu.jsx | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/apps/common/mobile/lib/controller/ContextMenu.jsx b/apps/common/mobile/lib/controller/ContextMenu.jsx index 7a5b15c29..8ddc3a61e 100644 --- a/apps/common/mobile/lib/controller/ContextMenu.jsx +++ b/apps/common/mobile/lib/controller/ContextMenu.jsx @@ -126,13 +126,11 @@ class ContextMenuController extends Component { onApiHideContextMenu() { if ( this.state.opened ) { - setTimeout(() => { - $$(idContextMenuElement).hide(); - f7.popover.close(idContextMenuElement, false); - - this.$targetEl.css({left: '-10000px', top: '-10000px'}); - this.setState({opened: false}); - }, 800); + $$(idContextMenuElement).hide(); + f7.popover.close(idContextMenuElement, false); + + this.$targetEl.css({left: '-10000px', top: '-10000px'}); + this.setState({opened: false}); } } From 46acf8489af4d5fd7f282ec9c8acff3db104460b Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Mon, 9 Aug 2021 17:42:18 +0300 Subject: [PATCH 07/90] [DE PE SSE mobile] Correct Search --- apps/documenteditor/mobile/src/controller/Search.jsx | 12 +++++------- .../mobile/src/controller/Search.jsx | 12 +++++------- .../mobile/src/controller/Search.jsx | 12 +++++------- 3 files changed, 15 insertions(+), 21 deletions(-) diff --git a/apps/documenteditor/mobile/src/controller/Search.jsx b/apps/documenteditor/mobile/src/controller/Search.jsx index 6c2a34f13..c3f8ae3f9 100644 --- a/apps/documenteditor/mobile/src/controller/Search.jsx +++ b/apps/documenteditor/mobile/src/controller/Search.jsx @@ -37,13 +37,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} diff --git a/apps/presentationeditor/mobile/src/controller/Search.jsx b/apps/presentationeditor/mobile/src/controller/Search.jsx index 497d7a70b..b854ae12f 100644 --- a/apps/presentationeditor/mobile/src/controller/Search.jsx +++ b/apps/presentationeditor/mobile/src/controller/Search.jsx @@ -30,13 +30,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} 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} From 45d3ce8e6277721141fe9e6d2e18a4be4d444315 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 9 Aug 2021 22:26:06 +0300 Subject: [PATCH 08/90] Fix Bug 51836, Fix Bug 49875 --- .../main/resources/less/asc-mixins.less | 20 +++++++++++++++++++ apps/common/main/resources/less/spinner.less | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/apps/common/main/resources/less/asc-mixins.less b/apps/common/main/resources/less/asc-mixins.less index 87872228a..66ab63c00 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) { 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; From 6592b52fd318590a6ef760401fc8c2bd0fbf74f1 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Tue, 10 Aug 2021 19:26:04 +0300 Subject: [PATCH 09/90] [DE mobile] Fix bug 51870 --- .../mobile/src/controller/settings/Settings.jsx | 8 ++++++++ apps/documenteditor/mobile/src/view/settings/Settings.jsx | 6 +++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/apps/documenteditor/mobile/src/controller/settings/Settings.jsx b/apps/documenteditor/mobile/src/controller/settings/Settings.jsx index 0dff72abe..d32e6b456 100644 --- a/apps/documenteditor/mobile/src/controller/settings/Settings.jsx +++ b/apps/documenteditor/mobile/src/controller/settings/Settings.jsx @@ -74,6 +74,13 @@ const Settings = props => { }, 400); }; + const onDownloadOrigin = () => { + closeModal(); + setTimeout(() => { + Common.EditorApi.get().asc_DownloadOrigin(); + }, 0); + }; + return { onPrint={onPrint} showHelp={showHelp} onOrthographyCheck={onOrthographyCheck} + onDownloadOrigin={onDownloadOrigin} /> }; diff --git a/apps/documenteditor/mobile/src/view/settings/Settings.jsx b/apps/documenteditor/mobile/src/view/settings/Settings.jsx index 4e2a5bef6..cc1d9be71 100644 --- a/apps/documenteditor/mobile/src/view/settings/Settings.jsx +++ b/apps/documenteditor/mobile/src/view/settings/Settings.jsx @@ -155,7 +155,7 @@ const SettingsList = inject("storeAppOptions", "storeReview")(observer(props => } {_canDownloadOrigin && - {}}> {/*ToDo*/} + } @@ -199,10 +199,10 @@ class SettingsView extends Component { return ( show_popover ? this.props.onclosed()}> - + : this.props.onclosed()}> - + ) } From a9c32f368e193318b59ba607e9c2bc7cfeb17be0 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 10 Aug 2021 19:32:12 +0300 Subject: [PATCH 10/90] [DE] Use new methods for review display --- .../main/lib/controller/ReviewChanges.js | 48 ++++++++++++------- .../lib/controller/collaboration/Review.jsx | 31 +++++++----- 2 files changed, 48 insertions(+), 31 deletions(-) diff --git a/apps/common/main/lib/controller/ReviewChanges.js b/apps/common/main/lib/controller/ReviewChanges.js index 9ba96dbaf..d2b6d7149 100644 --- a/apps/common/main/lib/controller/ReviewChanges.js +++ b/apps/common/main/lib/controller/ReviewChanges.js @@ -131,8 +131,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)); @@ -688,27 +687,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(mode=='simple'); + 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(mode) { - this.disableEditing(false); - this.view && this.view.turnDisplayMode(mode ? 'simple' : '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() { diff --git a/apps/common/mobile/lib/controller/collaboration/Review.jsx b/apps/common/mobile/lib/controller/collaboration/Review.jsx index 507c0d850..c12596ba9 100644 --- a/apps/common/mobile/lib/controller/collaboration/Review.jsx +++ b/apps/common/mobile/lib/controller/collaboration/Review.jsx @@ -31,14 +31,16 @@ class InitReview extends Component { if (viewReviewMode === null) viewReviewMode = appOptions.customization && /^(original|final|markup|simple)$/i.test(appOptions.customization.reviewDisplay) ? appOptions.customization.reviewDisplay.toLocaleLowerCase() : ( appOptions.isEdit || appOptions.isRestrictedEdit ? 'markup' : 'original'); let displayMode = viewReviewMode.toLocaleLowerCase(); - if (displayMode === 'final') { - api.asc_BeginViewModeInReview(true); - } else if (displayMode === 'original') { - api.asc_BeginViewModeInReview(false); - } else { - (displayMode === 'simple') && (displayMode = 'markup'); - api.asc_EndViewModeInReview(); + 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); } }); @@ -95,13 +97,16 @@ 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; } + api.asc_SetDisplayModeInReview(type); !this.appConfig.isEdit && !this.appConfig.isRestrictedEdit && LocalStorage.setItem("de-view-review-mode", mode); this.props.storeReview.changeDisplayMode(mode); } From 03438fd1443a83cb52da2d8a7d20a65dac50e7c0 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Tue, 10 Aug 2021 19:38:55 +0300 Subject: [PATCH 11/90] [mobile] Fix bug 51874 --- .../mobile/lib/view/collaboration/Collaboration.jsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) 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 && From 1ae3c2a21ba1dfbda786f5439c281fc5c5633803 Mon Sep 17 00:00:00 2001 From: evgenykatyshev Date: Wed, 11 Aug 2021 10:39:16 +0300 Subject: [PATCH 12/90] fix bug 51849 --- .../resources/img/toolbar/1.25x/btn-italic.png | Bin 318 -> 234 bytes .../img/toolbar/1.25x/btn-strikeout.png | Bin 386 -> 409 bytes .../resources/img/toolbar/1.75x/btn-italic.png | Bin 436 -> 342 bytes 3 files changed, 0 insertions(+), 0 deletions(-) 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 e68527f4afca87bf65d7f7c986531e519993ebe9..b5840622d549e7e98fe1bcceaeb33cc784d39e6c 100644 GIT binary patch delta 156 zcmV;N0Av5Y0_p*fR)2pH2pW=NrP#*2l;I{ zjz9qsk&!ImT%F$W7nsKd1_7$gjzE^D+Jx>X@SEwv0u-+q&kEjVb0QYK<4ceO@j>Vv z(=@_Lc^?hiNZK~oASv&onWhm&+WTmjMpC!&=KnI?|4KyUe-$@FlsD^t8McoA0000< KMNUMnLSTZ_Lr0GQ delta 240 zcmVZ! zAs3?K6F=Td>ohu&-0<|5dV&xt=Oa?3cpRH8;D68z1}Ck>kKC qNgw;wni5B(H{`Tm<#L8$7;jz+vY4qc7lCmA0000eon z02`#8!2MSr!k_>SJ_{lIq%W|A^lftYb3mn1c?ufL!|CUb${g>#+j}%kWA3q_Mry0_ z)Q0+i5xl^H8mX;H*idF3ON7IBC;PJQVE_-i)Wdft`yJK8h<~X|m@;*Vxx6I&rlo#S zmTZrdi+sbd7w+ispHxy_1NDvqNK$Ee4b)8@Q}OGO$JI!eI6?-D<+-noNu(*)2v6w^ z1<r*P?5wk)lw_@-TD=9Y=#v#89FQUDZEe`WlOpnkbU&w@i zcpJ@E@qVv8l11$yID`YsoHeNS>rWUEMenHbJ4EYbkJK2G2|JI`Swn e{Z=ZK2j>r4ioCs$ugT&70000L?M2I>ZGAS1YeaRNtR6mSCF zz!7kRdY3CP3Zz9^LrlNqg-{@`SMII_5{X3OAK9=vO+tpLgVe>v$J2JD|3P7E3x*_ zT{lMnIDMjf2rklc#mM0OoV7+EY|Fix7tJ{jriM-Qc=`eb?H5 zg<2B0aJ&zKe+0wB#6v(tL_|coGQej$aF6#Hhivrgo`KMSv2I9!85zsf%L#F=tUGdW z_YxV5u_okT$kPi7>x=|AMup|-CF+g2uvXRsjWLi{FWj@PUVoy3>1w}JQNb9rU%pyc zBNE^!Evykv5pT@6Usp8t355G)g;PW@hCKVl5Y$UVFm>5Y$RSfNnDPExH^)($_s?~6 z^$=B%Kt0gagB^l+N6FCPeyO~{bh}@?!PI%4kV9xM|Ngkqk0}um5s~Dct`AU2e;)M% Q00000NkvXXt^-0~f>-i>IsgCw delta 360 zcmV-u0hj*P0<;5=Reu3VNkljYh)8*~KNfDvE> zHXuv@Y;YUE28RuY6rB(X*d!+MlTIh32qMS#gA6$5oO8~-rV1mFQVO(vcer$2RaJu? zqz>!(H<8jLbu;Puo$ruocU+*wKm3FKt!YhLpZ{ppv=+2taerO!xF|Ci(CUy6Jm?L2 z0<8uE%X!1LlqUx~NV70s7^qbXpLyTH04~Y~22jVW@-g~_fL6!wtJ1_1!ucVw9R#!r z6JR4>xF{UBk@6)%K&voT^5xPk;_lTbOr7_L;azfN2_cQb1dJ?Sm_}hZcpD6i@}T^CXUkR@?k{-zXA3zfI4QL|G)f0fwW@+?B$Ef{YVRAC11F6Plcg;Q90Jqu>;@C z6g|5#n5y$0i Date: Wed, 11 Aug 2021 10:40:30 +0300 Subject: [PATCH 13/90] fix bug 51794 Add sprites for 125 and 175% Remove deprecated icons form all sprites Update icons in all sprites --- .../img/controls/Scroll_center@1.25x.png | Bin 0 -> 166 bytes .../img/controls/Scroll_center@1.75x.png | Bin 0 -> 176 bytes .../img/controls/common-controls.png | Bin 8459 -> 5365 bytes .../img/controls/common-controls@1.25x.png | Bin 0 -> 7083 bytes .../img/controls/common-controls@1.5x.png | Bin 8350 -> 8079 bytes .../img/controls/common-controls@1.75x.png | Bin 0 -> 9581 bytes .../img/controls/common-controls@2x.png | Bin 9028 -> 10944 bytes 7 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 apps/common/main/resources/img/controls/Scroll_center@1.25x.png create mode 100644 apps/common/main/resources/img/controls/Scroll_center@1.75x.png create mode 100644 apps/common/main/resources/img/controls/common-controls@1.25x.png create mode 100644 apps/common/main/resources/img/controls/common-controls@1.75x.png diff --git a/apps/common/main/resources/img/controls/Scroll_center@1.25x.png b/apps/common/main/resources/img/controls/Scroll_center@1.25x.png new file mode 100644 index 0000000000000000000000000000000000000000..13978e015299d6398b0f187647c88832463095f3 GIT binary patch literal 166 zcmeAS@N?(olHy`uVBq!ia0vp^f>j`(v1PgQjNtI7oJm>lpX3s)78&q Iol`;+0F$>dBme*a literal 0 HcmV?d00001 diff --git a/apps/common/main/resources/img/controls/Scroll_center@1.75x.png b/apps/common/main/resources/img/controls/Scroll_center@1.75x.png new file mode 100644 index 0000000000000000000000000000000000000000..3f507d79b4657ff6febfc9ae3ccb97cc4a81bda1 GIT binary patch literal 176 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 Tse||Gmy%3fMH^L)vhkxg3_G>NGUmV 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 D@q9Ur diff --git a/apps/common/main/resources/img/controls/common-controls@1.25x.png b/apps/common/main/resources/img/controls/common-controls@1.25x.png new file mode 100644 index 0000000000000000000000000000000000000000..5669c929ee097310d59190bc758531deb89b5d9a GIT binary patch literal 7083 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 literal 0 HcmV?d00001 diff --git a/apps/common/main/resources/img/controls/common-controls@1.5x.png b/apps/common/main/resources/img/controls/common-controls@1.5x.png index 1f8971c0c8d13e29cd8b3a18c78ec24b4b087e6f..71fb97bcb60843866cbb213206452d886f1de701 100644 GIT binary patch literal 8079 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 B0D1rb literal 8350 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 diff --git a/apps/common/main/resources/img/controls/common-controls@1.75x.png b/apps/common/main/resources/img/controls/common-controls@1.75x.png new file mode 100644 index 0000000000000000000000000000000000000000..d5e961bf570afc32fcf26f4caaccf46c5c826ca9 GIT binary patch literal 9581 zcmb`MRZv_(x9u7ThK!GinX9w4|44nYP9kRZVZ3lJD2B-o%C2!jXL;4Z-u z+y{c)`R=)O9&X)-^Kf_7uD!aed++M5wSMd0Yk$z!RU;;#C&0kKAl6WS1wudJ7#NrU zJRG#8MJmXKe&B=E&HXSi2r2(_Kf(BvPlxV&;s;Vw!l)Tz{EKd2IV8g zV_8UL<@+WqpJu+uGNp0l?#U0lXBT#ajT8D5jtlx8 zeBq15v8trWl7C{pmSg8jF?vdPp*~D2GtA$z5O_|N8-X^veP6k$f@yE-Z43r5^X{FK zgQ7SFxORAEnKe0%SJsYKfzx2Apq+ONRIE7ap^xaHL|N~*rf+-ERX_;qbCU%SL0_iXFz+R zk6Rp$Iz#xwpH%s+bX8ON*D6i+zQDY;*_xG3d2rSWL*x1Uu*x=pNDvoY+>acU+~-Nl z%uJbP*IW8!iu!!*Lvf+;Bm(qSYoOI!Hy_CDCVKR9QDiK>7cHh0z49U^(a+{vsZ0Cl*dDz#yP3p2%p$ zidthz!SOsKfctGFRg^wuN@<6D71b*$131QzY%9t0GBf4Pc6|seS1!sd5QN)}>{D5> zrZ^YcQGMUUU;S=r6FL?RJ4*e+lsk)MVcRC_8qzYunS3bz)ogR-`D9?QV7*(ZxH!V3 z+Qpb6vjDJq+hLH)X{|~pt9}U7mChx`t*h;EH|wi3!ra6u;F^d7*kn|h^F5K~g(@)g zZLU>m?@7q+s4(rexnY;Za3zfj%4l=i(`~;+%4F2TG`B&V6Wz@qx5;{*+Hgs4!`WF< z$Op^@G8^k8Kd|yl>t5l#3^hfE8GhqyGtN+kCe2A{!KWnx?8MfNp-36RMz5y|pIMOl zW}x#dw@ zM*5zZf;_p#-&@MO3^a1Sh+k?mB2`RgJU=gc|N$0%K#)qYAHlO`goK5Qcc;ll@>Eix6c-wPU zv|8!d@r!n4l&_-q=kh0VQ%3^4hT>l%uVd%t*N&`MCKd+(&zTu31O^tr8&NGQZm!$o zj!>L5p}=;SN$Xh&@P>F4WL`QOMbRxtO}0#NI&&82Ln!Neww3W+f<;eq79anx~Qe=vzrKQ!_Zt3`^%-P z7jMwVt2lml3%uHKezO24_mZxzxcB|LqN?!VJ%lpqeXu%}l+-Df^of%pqV*mIc9_6) zK5;l4h{c1ms_@v!H7y(hVkHnYlaSm_^Nw0A*^SJJPkoG!-y6~}_f-t?VwTw)_GJqS zT_`bBh~a?6I_#RKdr+nPW#|{jLViScr~fSPjuSly{o95+eLo%L4wP)S@!K!9lM{0L6Wfl z#VyP8P(mDg5Jy73F5{r1Zz}(;%0hp8@<{{gkqD`0&Ob-^NI^DCLD3+ZRJ9Y+M5Z zu99G;(pYjE#wN-Baf_zFG5rO}Ij0OJI~Ta;uiB??51Z!WhyEG=aSfHQN>m`!4W5~= z1db;ptzGn*kt)1%pex7Un2DRB8X8RB)p?0hi*a(?$~P@d%&sffnN3)v_&K9g^^vX=KG4?-G+t zG&F){H6^ahztdK>ziCACDf%h(r{|htlM}HgZfx^Eh%uz2Pn7JQU4e?Xqp4@bS;f6u zK5Hi~Vp*j6tfm7z{{tJP*=29T+^_X*W|xlh!|$^2hj2W>!J~ObTuy^b@IE3L`8tbY z@_3Rq>8N@|$}uUpisOPOZYzQ7Pkgv*mV=^)LKLbHI9?4GdV1seFJ^aQ&&}?rK4e*g*n z2Py+z3hn`3Il>?VbFu#FnpJil&fReO2?TeR)FLq-TjH@~bYV$v26xuBHL=~*{b8VrA;yp5(48+IMT=pBjefY0$kumvM$dbrcWzA8$%Gon~ z8k^HlcjHBOF<#Q)SLU)zZCyQYrSJ?iyLy%`1w)+&Taqj`K89}*;j(B7h6Tq?5oo>N zhkoY#_fu9aky0wQZL2sIv9Iyo9jYz8(b$L@A;c5(@1UjkLD_|%^CnH%^*I1`)Lc1Vb++QVw9l86D|y)P=}8=2 zImi7JezC}2`zwy3nW#Cx9Wv8{>h-O96%6*?r8Ao?jG8Hq$Jwc{4>l45yf+ColkQTE zfWSmQ2s4RVB6A-CeV95y>2)?isL#vGf#~7wCfp)tJQ_#=pCH;Y8r;5I`-{Gm!Q>Yxn2vHfj`FIQ~i51Q>y zSg4C#JwwwX4EgV*jq64s$+FVwK9eu8@|V(K^36@-v+Cvv7V@4q_tY5|$IZ8anX~wf z>+ev4x6p#Mviv<#FVjwp;}YVR9(Rw=k17edk?{HW$aB$AA6)o)AhuW38mkA#SA1?H z_n~0bnZ%6G8*pnFu9o{49r|sah~}2cfO{Ooeyp?YiC+`JJtC~VM*)nJ>!0Jx zT8g<&?qv0mpRf;8ZD?Vs#mr%*AA7$BO)s+S8M^zcRSX z{q3JeX0bYFGn<;Q$@{+dixe8*Jnp5aBa*Nn4j+7ZZhXf7Yb-amUXd2(u~marJ#xJ9H>uh05(3K& zCgH7=shxHecPihL_J@`q$27rEs<krDwZM-N)Z4O$qadq-tWVWBn(Iy-TtG z7UM|uJ|#mdru>tmhS2r2xYTZR&-(YjK|T+kbn{PS5`6?fuN0r=@3Gnv?qBZh3@*pD z`A6BWOLl%6H?FN+fA95KK!z>R2WdZkm@I1^dYN5$@r#@Jmq$S0I_d@95k)wFP-ow1 zx2j%_qd&qyI&5zS)A>2DD#pZA4~QyFokj6q{Ua7nP=pZX|7z@eO!)ZeGY&Id1aLJO zb6cTr!xosY0$vK!|IHGWRm+V{HM{^+nfysPY0ercGrr+G*fo{^Z2h~ z&Z^TK!R}2K+w*k}T2P9Jm;7Po#ZctMq?X?3$Vh3uIt;7Hk}Vk9^jiM%UOco&{(B6a zNcyc|(6KF-RAZA|=+(fVq{s7ow)NeHK4ws>9Lb@xq@-kr+ozpfUd|PaP;ApALo)d3 z(pk{ogjQvz%zCcf63<`Xs#K{sxBxeI;a}hIPzUPXOr7_HGGnwMvMYI;dHbAaXSW=RCh68gb#=9E3Fdp6)f%t&z0AKV8GoDKQdF1zncvNSwmf+RTQWbk3E3J*lfgBOBQoU8 zkZKNiNL@T^yE_{$w6wK-oU?Lzse(KmHEB$wWgYF6L43`%8Fovj`ccoye> z)f~|vRn%AfZ&H|0#2{adwqkR0Q+cf~J3HIqHt!!VgX-l#%z8g6$&PO7j$dv#E;BO| z!OPtpG_O?aC1<<4Zu8~vV|+S>uuqY@5k|F1<>*HK7bwX*`2Av-#^KfV=}N25W*=#= zEb8e{lz|@rL@fMl_HG@{Kr7uDn;S9sI zoY^G|$0J7paf}*O+W-+U3C)eTF_!QTjYuzU!Mz`(0IzV;;!AAd!A9g*s_C?d(WX_r@vE-u`jW;i6qcKto9H_PEPF*G>N9Sw1r;#hEdOB`rQ#hz zT%zHs88VxjAKl*6Gy~<%n>5(fnzBw25V^aRN1bf+WC*uk+q2HP&~bo*S73E~WxO%4 z7YI%$h9nQb*cWrT2rKu?&B4yjj;U0q?H5b}fKBKhzB*W48shWJ#DZ)#c@Ri|eMh=8 zC|!tMs`D{{dG461Itg#>j6SZa(74Rwjf6j!;&1L--J$A}0x^q?Th#HRZkol0{)UdT ziwAThehfW%6l%HQL|=XKt3*wY21ZRXcNX`oe(~ST$?@=V-0R>!+KzJj+B9YEO!5)3 z)$~YJUBUc|!*CNBKgQqV1|P9Wgb{%mu(-Zih}hk2Nw?g|*w=+B)1@@*Lg`Luv5{N2 z5c?Hq4BI;-=Cl67CHPhF@gszQbBR*I@=gNSR9~MyYvC@~uFYGP-riPtLU?w2*Zh#+ zD=-07cXknYGkSS_91nTiC^Y0bnlK+qyc~2(OWvP@mp9GjjaOE%F{5B zzo{YEM(yoPf4xmKT>p5a4P)VZS-9g0r&BJ!@=jr%N{M(lFMM2YL#^KC5d1V264^AS>EJTT z;OgR$dJECMI7J0Q9~WW5OJ7)Pi3~!$f`DKyhPujST>s z@(icH(w*KDva>Q%;~80!OO$*Waj+M}3mXB>$*vDu^u$#GUues>1&8Th!jz){|ZbEPqB9Gnm|oNGh2F#DgCu4>r83r{jZMfDhm?|dZ?u^6>Lw;-b|6iUx%d@9v+us|1LS_Qv3Nel57=9*B40GJnz=D zNcC<__Y-Yd-0U3R#)*YVEybYlJ4x(GjZG88P_{%i;SP6I<0SuwPOq^r{4$4 zFCnLQSG|vimU!MaK2p2OWAj371!84T_$nlON~1xE`Dn#Xeb+Pb4;Saa^KUBX)v~9r zpT%R>IOL(Ts6V&P{ht?0+2njj$4ibqrTh{5HXVKp-_56W-HK(p8GfOY0yQsgslXpn z@K0R}aewa7^X$pxqOqk{ty3cEf*{N-6)k*4^gG9BasA%vN3sV_eu}7(I5|0a&QyR1 zm_l|kFH&)P1r&M(VYa!%biTRBnRaX1o1Zt!*k9zcT@0f-1nsb5Zq_Dbq`=vlk zn5jS#|5N@G@_^+z;-iaK-Q}39NRd6_+B^AVcGo8|9&NHfZ{NL-jX6}`->rkXJbftT zu+>?RBKtTw^47$Q8V$WG8t3hR@gOW$5fr33P(Qaq@ul*?XT)sq8%|5U3#HLKvYIG< z#;s284m21h2MLYb-Z@B2XWs>UdDAY8yIouFlD^LpN|Ex;c!Bn1C+ureyNapfboBo) z^jY$)swjAe*S)>GhU`ZI+Kt{g`aI0jGcW)lhl@=TPl!@){vp*qGJYF=Npk1fFE%>3 zz3tdkS7#?YF~XdOb}!-%Wf>R2sVq|qE6L_^v|ws?=R8Df1`U#nZM5XqF2RnA$o-D2 zSIZR$m*;6#Y9HhLnQjTfI7kgx(BFJbvhvz1EX=CimOJw0CX{tS+O)80ZnY zOONp5UXmR|JN6|%Fr?u7TY~IoYz3DfK1WY8BzCp=h ziX@s~7r~=Q4eQ%{#ws&&^S^*(y6=_0siQ%>(_GP$Y^_~K-i|=4Xl?9Oa{z(h)X9)g zTG+*b7~+R`jVHI`pQ_!Z$stX1pIBkZR%JV{$g)kYOE{Fgl5zP3p4ZJA3L8{yEu(b? z#?bp1tlEIhzT}i2b7^CrpcF>|ZealJ=_mk*6waWTJ6_9ELL70mn@RJ@a;afiX6~k= z{Cc;{!{x_XmhwR5U6a=E@UUR?q`Ek=gzI=zHKf08+2L5fkIECRA!N- z3=?8TL}~Twg~4tyaMup^TkdvmREg(ys$1}OBo-;ex)`r?dYv@Grn(Y~PHkz3_0q>i zUc4rykU2o1Shc8agcOAFE*4#1EPGjKO7ckYKXkzV9>&3Y3V5CZ0M4Sb!x3a$SXfvR zj|JyL974F+x(+wk$!SM-?c?dv8?8CCK4RvW(6w)U5`twqa*pB|!_WfXpm+x3ix?if)TIxYx48q~0;VTdes9 zb{&21u1~Qi%>)FGBk6-$4R?NF2K5l*i|Y7&be~$NtE>C#K3CJkt8#}N_W^{?RwtSg z_n6&nkV1k#*i*Hj^?$|luh^KZ6qJ3E`J9W}3G${uy^l7U>FxNo=um z{a=+Jk>txn&8%*Lw;a67s|zf)r2PI1>wZ$&KVQ}m!bbfnue&j5 z$&C{XzMkOVd71J8wO#QiS+{55FJHd2+14xPWfgVW7r{YlilF}yl69$kOD(cggJx6^Q!X!?_RTv=f2az`GG#nu?0aU~iD7RHxRR-3N*-e)LpWwU?LI=ijs6b?_@^+%nNT$lp0D z>J!cyT>UXu9kXPmD{#8)#JD-eK8%Bfn4pnvo^r*?RukcBVGr)Fc6Yu7dK^8vi>~r- zj`@ZsxVQ`_uG28c(|!mX`DeAG)jLkzx;Yk>TZAWTX@f-@jVB^EX*v=A%tV5vIn~`q zdqfc&Ri8t~9AHlpO_=+EV$})@fucU%^_x(euYV%wH8_~#nV)gDjWSTM>&^=Sm)vc1 z-=)2l%*Vz1Z?F76Mhp1j&o49D<@anyz4FC5xw$u_R3Q6MP^7XhE;BQ8b_S(;*oT13 zpG8uQzN=Gx#q(g#ZJiqNZrmfpheJPt?r=`GE| z!fh9m^5*CxKFL~nM-d*`>brrr&3Sow6j{BDBaoUj%4L-@qc5n~M4Q*C11At1DzO`af6Om?{{#S!%m7GW$vOM znPVcdZ0{b^Sj;CyGITDb@)c>^>U!G@)BH!S+1%r>+l6hSNVH^}?yhM*GD`a+D_h)CK1~H=?7)jJ742GjkO_L#Vgfbr#U7< zh-PoDItcI}v{TD2gj=h@PS?k0kn5hMFlnHi+&vp7)<*LC!mn9Gi5fSlvoD=(q&fwC z18>p_xEY|V53P5xM2V;2Z$-4@M@g$Ts41EFD$n#6RD9!x0zEB6J&ahRVD)^E+G9f7 zu?x~nVg}>)p}ymbH(C^02pG%WigGVksrrfi=$E zOrdVP!o)p16SE{0>tmrwuTIM2c^!^^=36b(=H_gEd=-|)^4L8Rs;-$6LaLGWk@3m@ z?cC@#)YNXQR0=IeDIiihB5CI%CMG6h`j}f(*W26MINOo=m~g0@KFI*@iH6`k)ZM2r zJa20OdDeO}c_1GnMVM8x0KxI0+0wRaN3NnRGbv&o>3TX1Ax!Nt&_fH}^A5s0voV&B z?45YtN?SzsB*)nJwN)G%&wR&O+7)yo-Jz@~qTlWm>lW2l*a-@i#%yYtn68Cw!|hKh918mCMs+|P0V9xjRP)1qogJO?&E~D${_AQB8+_--SRKcf z(l&wcy&A_r8C>_=!O3!8oYTKmbE2D_5gg8B=jD$Q2Nq5i@bUc`Gj_P!&E|4(&duS) zAn(Z?jWnlwu7=u2`OhtZhZcGETS55TA*|=d<=0b*lWFYEf(;VA1IHA)z65vZ0Pnb2 z?}~wIsCgZ)wm~kAT8|%|{^k1fClbqamS|t7W%}{lCrRSn4Zy}dSB2W?UIgAWQcTeB zkTYlD)Z?;Xx9{oGU{i-=mhp{={X5`FyDE!|(30`J+n~bTu_xJkecPUDs4B*zJejsB z6PyP0wLLe)b*Els!$M?x;CF7Am)s59wI3`Y^d5vXXU_ov)}AsRDg-sHb}%UvHHcKK|OGT6|62B ziZANXrHvfgF#W8w>cFwVObc{z&UQJoFd>)y8VpfFrZhl>hm*MkhnpLg&S zbpj+LzY?Q5%7|-hedRfuw+>Qs)y?jFv#$`xTA;4W{q1bq2*tSGH}NCSyQpER3>>w0 z>+a^*rmNB4FuDSOP83-(YvY9fp`OzkZN!mio3K~^!R6@aDB{!TPAC=V53F7wbPyzb zRw;2VXc+GUbaHmYy=F|}5gS-o4B*3MCzuooO|x9~zJ6vv_oY_Z(Hu1$E|qW8FMwq} zB%k)tT>nn#pVGv~Tw0I(f~1lCC8pdtgq+eGB8F;*QR3)&U}IROmt)Xx{{Iny|C279 a8#RY72&T_P5?ucouA!p)sz&K`^#203^?aBB literal 0 HcmV?d00001 diff --git a/apps/common/main/resources/img/controls/common-controls@2x.png b/apps/common/main/resources/img/controls/common-controls@2x.png index b76b704699cd38e30039b267dd2dcae2f6c13bad..f79166dee81bab65639372624ffbc6fad4e59de1 100755 GIT binary patch literal 10944 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 xAuVKifJN-GXIMmc>QB_nBjV@Z|4s2D29pxO Date: Wed, 11 Aug 2021 12:20:01 +0300 Subject: [PATCH 14/90] fix bug 50461 --- .../resources/img/right-panels/gradients.png | Bin 8830 -> 13715 bytes .../img/right-panels/gradients@1.5x.png | Bin 5246 -> 8226 bytes .../img/right-panels/gradients@2x.png | Bin 13249 -> 25997 bytes 3 files changed, 0 insertions(+), 0 deletions(-) diff --git a/apps/common/main/resources/img/right-panels/gradients.png b/apps/common/main/resources/img/right-panels/gradients.png index e3da621f96c3fb2c0928a58cb042889e6c78852a..ecb3d99f21f6ea5d104b444b8e703a84b3eb8f87 100644 GIT binary patch literal 13715 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 CLBenV literal 5246 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 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 e8ef9320d86626b46ab245d49a8e10af9b3b1283..95ddb3a8e5c3be8325f947e2e45a21402fe9b040 100644 GIT binary patch literal 25997 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 From 3f097d5beed9f0fa0e97bc335a571f874ac3ad89 Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Wed, 11 Aug 2021 12:28:33 +0300 Subject: [PATCH 15/90] [DE PE SSE] Fix Bug 51823 --- apps/documenteditor/mobile/src/controller/LongActions.jsx | 6 +++++- .../mobile/src/controller/LongActions.jsx | 6 +++++- .../mobile/src/controller/LongActions.jsx | 7 ++++++- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/apps/documenteditor/mobile/src/controller/LongActions.jsx b/apps/documenteditor/mobile/src/controller/LongActions.jsx index 7d5a4f200..f6e31b73d 100644 --- a/apps/documenteditor/mobile/src/controller/LongActions.jsx +++ b/apps/documenteditor/mobile/src/controller/LongActions.jsx @@ -64,7 +64,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')); } }; @@ -171,6 +173,8 @@ const LongActionsController = () => { 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/presentationeditor/mobile/src/controller/LongActions.jsx b/apps/presentationeditor/mobile/src/controller/LongActions.jsx index 4ef67ab68..8ce54677f 100644 --- a/apps/presentationeditor/mobile/src/controller/LongActions.jsx +++ b/apps/presentationeditor/mobile/src/controller/LongActions.jsx @@ -64,7 +64,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')); } }; @@ -161,6 +163,8 @@ const LongActionsController = () => { 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/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); } From d03a11f4cf830b5d50433442f2f80eb64df16b1a Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Wed, 11 Aug 2021 13:36:50 +0300 Subject: [PATCH 16/90] [DE PE SSE mobile] Fix Bug 51869 --- .../src/controller/settings/DocumentInfo.jsx | 26 +++++++------ .../mobile/src/view/settings/DocumentInfo.jsx | 24 +++++------- .../controller/settings/PresentationInfo.jsx | 37 +++++++++++-------- .../src/view/settings/PresentationInfo.jsx | 19 ++++------ .../controller/settings/SpreadsheetInfo.jsx | 8 ++-- .../src/view/settings/SpreadsheetInfo.jsx | 6 +-- 6 files changed, 62 insertions(+), 58 deletions(-) diff --git a/apps/documenteditor/mobile/src/controller/settings/DocumentInfo.jsx b/apps/documenteditor/mobile/src/controller/settings/DocumentInfo.jsx index 32fd55220..e97a7016a 100644 --- a/apps/documenteditor/mobile/src/controller/settings/DocumentInfo.jsx +++ b/apps/documenteditor/mobile/src/controller/settings/DocumentInfo.jsx @@ -6,13 +6,16 @@ class DocumentInfoController extends Component { constructor(props) { super(props); this.docProps = this.getDocProps(); - this.getModified = this.getModified(); - this.getModifiedBy = this.getModifiedBy(); - this.getCreators = this.getCreators(); - this.title = this.getTitle(); - this.subject = this.getSubject(); - this.description = this.getDescription(); - this.getCreated = this.getCreated(); + + if(this.docProps) { + this.modified = this.getModified(); + this.modifiedBy = this.getModifiedBy(); + this.creators = this.getCreators(); + this.title = this.getTitle(); + this.subject = this.getSubject(); + this.description = this.getDescription(); + this.created = this.getCreated(); + } } getDocProps() { @@ -76,6 +79,7 @@ class DocumentInfoController 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'}); @@ -91,10 +95,10 @@ class DocumentInfoController extends Component { return ( { const _t = t("Settings", { returnObjects: true }); const storeInfo = props.storeDocumentInfo; const dataApp = props.getAppProps(); - const dataModified = props.getModified; - const dataModifiedBy = props.getModifiedBy; - const creators = props.getCreators; - // console.log(creators); + const { pageCount, paragraphCount, @@ -19,10 +16,9 @@ const PageDocumentInfo = (props) => { symbolsWSCount, wordsCount, } = storeInfo.infoObj; + const dataDoc = JSON.parse(JSON.stringify(storeInfo.dataDoc)); - // console.log(dataDoc); const isLoaded = storeInfo.isLoaded; - // console.log(pageCount, paragraphCount, symbolsCount, symbolsWSCount, wordsCount); return ( @@ -91,27 +87,27 @@ const PageDocumentInfo = (props) => { ) : null} - {dataModified ? ( + {props.modified ? ( {_t.textLastModified} - + ) : null} - {dataModifiedBy ? ( + {props.modifiedBy ? ( {_t.textLastModifiedBy} - + ) : null} - {props.getCreated ? ( + {props.created ? ( {_t.textCreated} - + ) : null} @@ -123,12 +119,12 @@ const PageDocumentInfo = (props) => { ) : null} - {creators ? ( + {props.creators ? ( {_t.textAuthor} { - creators.split(/\s*[,;]\s*/).map(item => { + props.creators.split(/\s*[,;]\s*/).map(item => { return }) } diff --git a/apps/presentationeditor/mobile/src/controller/settings/PresentationInfo.jsx b/apps/presentationeditor/mobile/src/controller/settings/PresentationInfo.jsx index 688c76271..57d9a575e 100644 --- a/apps/presentationeditor/mobile/src/controller/settings/PresentationInfo.jsx +++ b/apps/presentationeditor/mobile/src/controller/settings/PresentationInfo.jsx @@ -1,17 +1,21 @@ import React, { Component } from "react"; import PresentationInfo from "../../view/settings/PresentationInfo"; +import { observer, inject } from "mobx-react"; class PresentationInfoController extends Component { constructor(props) { super(props); this.docProps = this.getDocProps(); - this.getModified = this.getModified(); - this.getModifiedBy = this.getModifiedBy(); - this.getCreators = this.getCreators(); - this.title = this.getTitle(); - this.subject = this.getSubject(); - this.description = this.getDescription(); - this.getCreated = this.getCreated(); + + if(this.docProps) { + this.modified = this.getModified(); + this.modifiedBy = this.getModifiedBy(); + this.creators = this.getCreators(); + this.title = this.getTitle(); + this.subject = this.getSubject(); + this.description = this.getDescription(); + this.created = this.getCreated(); + } } getDocProps() { @@ -30,17 +34,17 @@ class PresentationInfoController extends Component { getModified() { let valueModified = this.docProps.asc_getModified(); - // const _lang = this.props.storeAppOptions.lang; + const _lang = this.props.storeAppOptions.lang; if (valueModified) { return ( - valueModified.toLocaleString("en", { + valueModified.toLocaleString(_lang, { year: "numeric", month: "2-digit", day: "2-digit", }) + " " + - valueModified.toLocaleTimeString("en", { timeStyle: "short" }) + valueModified.toLocaleTimeString(_lang, { timeStyle: "short" }) ); } } @@ -71,9 +75,10 @@ class PresentationInfoController extends Component { getCreated() { let value = this.docProps.asc_getCreated(); + const _lang = this.props.storeAppOptions.lang; if(value) { - return value.toLocaleString("en", {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleTimeString("en", {timeStyle: 'short'}); + return value.toLocaleString(_lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleTimeString(_lang, {timeStyle: 'short'}); } } @@ -81,10 +86,10 @@ class PresentationInfoController extends Component { return ( { const _t = t("View.Settings", { returnObjects: true }); const storeInfo = props.storePresentationInfo; const dataApp = props.getAppProps(); - const dataModified = props.getModified; - const dataModifiedBy = props.getModifiedBy; - const creators = props.getCreators; const dataDoc = JSON.parse(JSON.stringify(storeInfo.dataDoc)); return ( @@ -72,27 +69,27 @@ const PagePresentationInfo = (props) => { ) : null} - {dataModified ? ( + {props.modified ? ( {_t.textLastModified} - + ) : null} - {dataModifiedBy ? ( + {props.modifiedBy ? ( {_t.textLastModifiedBy} - + ) : null} - {props.getCreated ? ( + {props.created ? ( {_t.textCreated} - + ) : null} @@ -104,12 +101,12 @@ const PagePresentationInfo = (props) => { ) : null} - {creators ? ( + {props.creators ? ( {_t.textAuthor} { - creators.split(/\s*[,;]\s*/).map(item => { + props.creators.split(/\s*[,;]\s*/).map(item => { return }) } 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 ( { 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} From c69e2cb6953247dbad0206be95088808958f274a Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 11 Aug 2021 14:03:08 +0300 Subject: [PATCH 17/90] [DE] Refactoring review tips --- apps/documenteditor/main/app/view/DocumentHolder.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/documenteditor/main/app/view/DocumentHolder.js b/apps/documenteditor/main/app/view/DocumentHolder.js index 3ae5290ee..9566d0c48 100644 --- a/apps/documenteditor/main/app/view/DocumentHolder.js +++ b/apps/documenteditor/main/app/view/DocumentHolder.js @@ -512,8 +512,8 @@ define([ ToolTip = moveData.get_FormHelpText(); if (ToolTip.length>1000) ToolTip = ToolTip.substr(0, 1000) + '...'; - } else if (type==Asc.c_oAscMouseMoveDataTypes.Review) { - var changes = DE.getController("Common.Controllers.ReviewChanges").readSDKChange(moveData.asc_getChanges()); + } else if (type==Asc.c_oAscMouseMoveDataTypes.Review && moveData.get_ReviewChange()) { + var changes = DE.getController("Common.Controllers.ReviewChanges").readSDKChange([moveData.get_ReviewChange()]); if (changes && changes.length>0) changes = changes[0]; if (changes) { From 6c5f96b75bb298cfdd36ea6d0bc93f769693df46 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 11 Aug 2021 15:39:32 +0300 Subject: [PATCH 18/90] Change translation --- apps/common/main/lib/view/ReviewChanges.js | 2 +- apps/documenteditor/main/locale/en.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/common/main/lib/view/ReviewChanges.js b/apps/common/main/lib/view/ReviewChanges.js index d30a0448b..4b9e4f3ce 100644 --- a/apps/common/main/lib/view/ReviewChanges.js +++ b/apps/common/main/lib/view/ReviewChanges.js @@ -862,7 +862,7 @@ define([ 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', txtMarkupSimpleCap: 'Simple Markup', - txtMarkupSimple: 'All changes (Editing)
Turn off pop-up windows with changes' + txtMarkupSimple: 'All changes (Editing)
Turn off balloons' } }()), Common.Views.ReviewChanges || {})); diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 67f742f6d..1f3fff994 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -399,7 +399,7 @@ "Common.Views.ReviewChanges.txtTurnon": "Track Changes", "Common.Views.ReviewChanges.txtView": "Display Mode", "Common.Views.ReviewChanges.txtMarkupSimpleCap": "Simple Markup", - "Common.Views.ReviewChanges.txtMarkupSimple": "All changes (Editing)
Turn off pop-up windows with changes", + "Common.Views.ReviewChanges.txtMarkupSimple": "All changes (Editing)
Turn off balloons", "Common.Views.ReviewChangesDialog.textTitle": "Review Changes", "Common.Views.ReviewChangesDialog.txtAccept": "Accept", "Common.Views.ReviewChangesDialog.txtAcceptAll": "Accept All Changes", From 6d6088233f515ef0c86649c919b49e78f134ddc8 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 12 Aug 2021 14:54:06 +0300 Subject: [PATCH 19/90] [DE] For Bug 51925 --- apps/documenteditor/main/app/view/FormSettings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/documenteditor/main/app/view/FormSettings.js b/apps/documenteditor/main/app/view/FormSettings.js index a997eaace..0f88ab454 100644 --- a/apps/documenteditor/main/app/view/FormSettings.js +++ b/apps/documenteditor/main/app/view/FormSettings.js @@ -749,7 +749,7 @@ define([ if (rec) { this.list.selectRecord(rec); this.list.scrollToRecord(rec); - } else { + } else if (!this.txtNewValue._input.is(':focus')) { this.txtNewValue.setValue(''); this._state.listValue = this._state.listIndex = undefined; } From 672145db05d7ad716144b230d7404aa21cb7391b Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 12 Aug 2021 14:59:51 +0300 Subject: [PATCH 20/90] Fix Bug 51931 --- apps/common/main/resources/less/combobox.less | 2 ++ 1 file changed, 2 insertions(+) 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; From 238512f1ed89a45f3c32b96f04a4308e671358a9 Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Thu, 12 Aug 2021 16:01:51 +0300 Subject: [PATCH 21/90] [PE SSE] Fix Bug 51892 --- apps/common/mobile/resources/less/common-material.less | 7 ++++++- apps/presentationeditor/mobile/src/view/add/AddImage.jsx | 2 +- apps/spreadsheeteditor/mobile/src/view/add/AddImage.jsx | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/apps/common/mobile/resources/less/common-material.less b/apps/common/mobile/resources/less/common-material.less index f299fe9ba..df2677e52 100644 --- a/apps/common/mobile/resources/less/common-material.less +++ b/apps/common/mobile/resources/less/common-material.less @@ -62,8 +62,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/presentationeditor/mobile/src/view/add/AddImage.jsx b/apps/presentationeditor/mobile/src/view/add/AddImage.jsx index 28991117e..d2809544e 100644 --- a/apps/presentationeditor/mobile/src/view/add/AddImage.jsx +++ b/apps/presentationeditor/mobile/src/view/add/AddImage.jsx @@ -11,7 +11,7 @@ const PageLinkSettings = props => { {_t.textAddress} - + { {_t.textAddress} - + Date: Thu, 12 Aug 2021 19:07:50 +0300 Subject: [PATCH 22/90] [SSE mobile] Fix Bug 48960 --- .../mobile/src/view/FilterOptions.jsx | 43 +++++++++---------- 1 file changed, 20 insertions(+), 23 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/src/view/FilterOptions.jsx b/apps/spreadsheeteditor/mobile/src/view/FilterOptions.jsx index 621b5afb9..284ce2794 100644 --- a/apps/spreadsheeteditor/mobile/src/view/FilterOptions.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/FilterOptions.jsx @@ -19,6 +19,20 @@ const FilterOptions = (props) => { 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 +50,10 @@ const FilterOptions = (props) => { -
props.onSort('sortdown')}> + {props.onSort('sortdown'); onValidChecked();}}> - props.onSort('sortup')}> + {props.onSort('sortup'); onValidChecked();}}> @@ -51,9 +65,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={all}>{_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 +76,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 ? - + : - + ) From 9b74935d32643603d141c83d821d919e7c087e51 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 13 Aug 2021 12:14:08 +0300 Subject: [PATCH 23/90] [SSE] Fix Bug 51940 --- .../main/app/controller/Main.js | 17 ++++++++++++++++- apps/spreadsheeteditor/main/locale/en.json | 3 +++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js index f0cea524e..e5da80f55 100644 --- a/apps/spreadsheeteditor/main/app/controller/Main.js +++ b/apps/spreadsheeteditor/main/app/controller/Main.js @@ -1700,6 +1700,18 @@ define([ config.msg = this.errorLocationOrDataRangeError; break; + case Asc.c_oAscError.ID.UplDocumentSize: + config.msg = this.uploadDocSizeMessage; + break; + + case Asc.c_oAscError.ID.UplDocumentExt: + config.msg = this.uploadDocExtMessage; + break; + + case Asc.c_oAscError.ID.UplDocumentFileCount: + config.msg = this.uploadDocFileCountMessage; + break; + default: config.msg = (typeof id == 'string') ? id : this.errorDefaultMessage.replace('%1', id); break; @@ -2975,7 +2987,10 @@ define([ errorLang: 'The interface language is not loaded.
Please contact your Document Server administrator.', confirmReplaceFormulaInTable: 'Formulas in the header row will be removed and converted to static text.
Do you want to continue?', errorSingleColumnOrRowError: 'Location reference is not valid because the cells are not all in the same column or row.
Select cells that are all in a single column or row.', - errorLocationOrDataRangeError: 'The reference for the location or data range is not valid.' + errorLocationOrDataRangeError: 'The reference for the location or data range is not valid.', + uploadDocSizeMessage: 'Maximum document size limit exceeded.', + uploadDocExtMessage: 'Unknown document format.', + uploadDocFileCountMessage: 'No documents uploaded.' } })(), SSE.Controllers.Main || {})) }); diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 4ba84f1c2..9a318ba51 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -689,6 +689,9 @@ "SSE.Controllers.Main.errorWrongBracketsCount": "An error in the entered formula.
Wrong number of brackets is used.", "SSE.Controllers.Main.errorWrongOperator": "An error in the entered formula. Wrong operator is used.
Please correct the error.", "SSE.Controllers.Main.errRemDuplicates": "Duplicate values found and deleted: {0}, unique values left: {1}.", + "SSE.Controllers.Main.uploadDocExtMessage": "Unknown document format.", + "SSE.Controllers.Main.uploadDocFileCountMessage": "No documents uploaded.", + "SSE.Controllers.Main.uploadDocSizeMessage": "Maximum document size limit exceeded.", "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...", From 0f5853140332b54cca8ae95ba141e88e1c6a5330 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Fri, 13 Aug 2021 14:10:10 +0300 Subject: [PATCH 24/90] Fix bug 51932 --- apps/common/main/lib/component/ComboDataView.js | 7 ++++--- apps/common/main/resources/less/combo-dataview.less | 5 +++++ 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/apps/common/main/lib/component/ComboDataView.js b/apps/common/main/lib/component/ComboDataView.js index 25f912a47..d2897058d 100644 --- a/apps/common/main/lib/component/ComboDataView.js +++ b/apps/common/main/lib/component/ComboDataView.js @@ -235,9 +235,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/resources/less/combo-dataview.less b/apps/common/main/resources/less/combo-dataview.less index 11a8aff52..47c8a101a 100644 --- a/apps/common/main/resources/less/combo-dataview.less +++ b/apps/common/main/resources/less/combo-dataview.less @@ -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; From cfd56386468167e72d0a82f337ed4765cee03254 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 13 Aug 2021 14:32:32 +0300 Subject: [PATCH 25/90] [DE] Fix review balloon position --- apps/common/main/lib/controller/Comments.js | 3 +- .../main/lib/controller/ReviewChanges.js | 3 +- apps/common/main/lib/view/ReviewPopover.js | 51 ++++++++++++++++++- 3 files changed, 53 insertions(+), 4 deletions(-) diff --git a/apps/common/main/lib/controller/Comments.js b/apps/common/main/lib/controller/Comments.js index fda45bab8..260c22e61 100644 --- a/apps/common/main/lib/controller/Comments.js +++ b/apps/common/main/lib/controller/Comments.js @@ -1185,7 +1185,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 d2b6d7149..94356c9b6 100644 --- a/apps/common/main/lib/controller/ReviewChanges.js +++ b/apps/common/main/lib/controller/ReviewChanges.js @@ -255,7 +255,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); } 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 Date: Fri, 13 Aug 2021 15:57:28 +0300 Subject: [PATCH 26/90] [SSE mobile] Fix Bug 51947 --- apps/spreadsheeteditor/mobile/locale/en.json | 1 + .../mobile/src/controller/Statusbar.jsx | 23 +++++++++++-------- 2 files changed, 15 insertions(+), 9 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json index 59583c74d..b4771b33e 100644 --- a/apps/spreadsheeteditor/mobile/locale/en.json +++ b/apps/spreadsheeteditor/mobile/locale/en.json @@ -263,6 +263,7 @@ "Statusbar": { "notcriticalErrorTitle": "Warning", "textCancel": "Cancel", + "textOk": "Ok", "textDelete": "Delete", "textDuplicate": "Duplicate", "textErrNameExists": "Worksheet with this name already exists.", 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(); } }; From 818122d90e585f4c793ae230d3283678479edb68 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 13 Aug 2021 16:22:49 +0300 Subject: [PATCH 27/90] Update translation --- apps/spreadsheeteditor/mobile/locale/be.json | 3 ++- apps/spreadsheeteditor/mobile/locale/bg.json | 3 ++- apps/spreadsheeteditor/mobile/locale/ca.json | 3 ++- apps/spreadsheeteditor/mobile/locale/cs.json | 3 ++- apps/spreadsheeteditor/mobile/locale/de.json | 3 ++- apps/spreadsheeteditor/mobile/locale/el.json | 3 ++- apps/spreadsheeteditor/mobile/locale/es.json | 3 ++- apps/spreadsheeteditor/mobile/locale/fr.json | 3 ++- apps/spreadsheeteditor/mobile/locale/hu.json | 3 ++- apps/spreadsheeteditor/mobile/locale/it.json | 3 ++- apps/spreadsheeteditor/mobile/locale/ja.json | 3 ++- apps/spreadsheeteditor/mobile/locale/ko.json | 3 ++- apps/spreadsheeteditor/mobile/locale/lo.json | 3 ++- apps/spreadsheeteditor/mobile/locale/lv.json | 3 ++- apps/spreadsheeteditor/mobile/locale/nb.json | 3 ++- apps/spreadsheeteditor/mobile/locale/nl.json | 3 ++- apps/spreadsheeteditor/mobile/locale/pl.json | 3 ++- apps/spreadsheeteditor/mobile/locale/pt.json | 3 ++- apps/spreadsheeteditor/mobile/locale/ro.json | 3 ++- apps/spreadsheeteditor/mobile/locale/ru.json | 3 ++- apps/spreadsheeteditor/mobile/locale/sk.json | 3 ++- apps/spreadsheeteditor/mobile/locale/sl.json | 3 ++- apps/spreadsheeteditor/mobile/locale/tr.json | 3 ++- apps/spreadsheeteditor/mobile/locale/uk.json | 3 ++- apps/spreadsheeteditor/mobile/locale/vi.json | 3 ++- apps/spreadsheeteditor/mobile/locale/zh.json | 3 ++- 26 files changed, 52 insertions(+), 26 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/locale/be.json b/apps/spreadsheeteditor/mobile/locale/be.json index 7724d1d16..4e6e3ecba 100644 --- a/apps/spreadsheeteditor/mobile/locale/be.json +++ b/apps/spreadsheeteditor/mobile/locale/be.json @@ -277,7 +277,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.", diff --git a/apps/spreadsheeteditor/mobile/locale/bg.json b/apps/spreadsheeteditor/mobile/locale/bg.json index 7724d1d16..4e6e3ecba 100644 --- a/apps/spreadsheeteditor/mobile/locale/bg.json +++ b/apps/spreadsheeteditor/mobile/locale/bg.json @@ -277,7 +277,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.", diff --git a/apps/spreadsheeteditor/mobile/locale/ca.json b/apps/spreadsheeteditor/mobile/locale/ca.json index 757f8d11b..0bfccc2a7 100644 --- a/apps/spreadsheeteditor/mobile/locale/ca.json +++ b/apps/spreadsheeteditor/mobile/locale/ca.json @@ -277,7 +277,8 @@ "textSheet": "Full", "textSheetName": "Nom del Full", "textUnhide": "Tornar a mostrar", - "textWarnDeleteSheet": "El full de treball potser té dades. Voleu continuar l'operació?" + "textWarnDeleteSheet": "El full de treball potser té dades. Voleu continuar 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.", diff --git a/apps/spreadsheeteditor/mobile/locale/cs.json b/apps/spreadsheeteditor/mobile/locale/cs.json index 7724d1d16..4e6e3ecba 100644 --- a/apps/spreadsheeteditor/mobile/locale/cs.json +++ b/apps/spreadsheeteditor/mobile/locale/cs.json @@ -277,7 +277,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.", diff --git a/apps/spreadsheeteditor/mobile/locale/de.json b/apps/spreadsheeteditor/mobile/locale/de.json index 2ff5762a4..8a741d1e3 100644 --- a/apps/spreadsheeteditor/mobile/locale/de.json +++ b/apps/spreadsheeteditor/mobile/locale/de.json @@ -277,7 +277,8 @@ "textSheet": "Blatt", "textSheetName": "Blattname", "textUnhide": "Einblenden", - "textWarnDeleteSheet": "Das Arbeitsblatt kann Daten enthalten. Möchten Sie fortsetzen?" + "textWarnDeleteSheet": "Das Arbeitsblatt kann Daten enthalten. Möchten Sie fortsetzen?", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "Sie haben nicht gespeicherte Änderungen. Klicken Sie auf \"Auf dieser Seite bleiben\" und warten Sie, bis die Datei automatisch gespeichert wird. Klicken Sie auf \"Seite verlassen\", um nicht gespeicherte Änderungen zu verwerfen.", diff --git a/apps/spreadsheeteditor/mobile/locale/el.json b/apps/spreadsheeteditor/mobile/locale/el.json index 7724d1d16..4e6e3ecba 100644 --- a/apps/spreadsheeteditor/mobile/locale/el.json +++ b/apps/spreadsheeteditor/mobile/locale/el.json @@ -277,7 +277,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.", diff --git a/apps/spreadsheeteditor/mobile/locale/es.json b/apps/spreadsheeteditor/mobile/locale/es.json index 17eda1b13..70e20ca8d 100644 --- a/apps/spreadsheeteditor/mobile/locale/es.json +++ b/apps/spreadsheeteditor/mobile/locale/es.json @@ -277,7 +277,8 @@ "textSheet": "Hoja", "textSheetName": "Nombre de hoja", "textUnhide": "Volver a mostrar", - "textWarnDeleteSheet": "La hoja de cálculo puede tener datos. ¿Continuar con la operación?" + "textWarnDeleteSheet": "La hoja de cálculo puede tener datos. ¿Continuar con la operación?", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "Tiene cambios no guardados en este documento. Haga clic en \"Quedarse en esta página\" para esperar hasta que se guarden automáticamente. Haga clic en \"Salir de esta página\" para descartar todos los cambios no guardados.", diff --git a/apps/spreadsheeteditor/mobile/locale/fr.json b/apps/spreadsheeteditor/mobile/locale/fr.json index 7f6394f07..bc030f521 100644 --- a/apps/spreadsheeteditor/mobile/locale/fr.json +++ b/apps/spreadsheeteditor/mobile/locale/fr.json @@ -277,7 +277,8 @@ "textSheet": "Feuille", "textSheetName": "Nom de la feuille", "textUnhide": "Afficher", - "textWarnDeleteSheet": "La feuille de calcul peut contenir des données. Êtes-vous sûr de vouloir continuer?" + "textWarnDeleteSheet": "La feuille de calcul peut contenir des données. Êtes-vous sûr de vouloir continuer?", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur Rester sur cette page et attendez l'enregistrement automatique. Cliquez sur Quitter cette page pour annuler toutes les modifications non enregistrées.", diff --git a/apps/spreadsheeteditor/mobile/locale/hu.json b/apps/spreadsheeteditor/mobile/locale/hu.json index 7724d1d16..4e6e3ecba 100644 --- a/apps/spreadsheeteditor/mobile/locale/hu.json +++ b/apps/spreadsheeteditor/mobile/locale/hu.json @@ -277,7 +277,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.", diff --git a/apps/spreadsheeteditor/mobile/locale/it.json b/apps/spreadsheeteditor/mobile/locale/it.json index 7724d1d16..4e6e3ecba 100644 --- a/apps/spreadsheeteditor/mobile/locale/it.json +++ b/apps/spreadsheeteditor/mobile/locale/it.json @@ -277,7 +277,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.", diff --git a/apps/spreadsheeteditor/mobile/locale/ja.json b/apps/spreadsheeteditor/mobile/locale/ja.json index 5e0f72fd0..1863e36ee 100644 --- a/apps/spreadsheeteditor/mobile/locale/ja.json +++ b/apps/spreadsheeteditor/mobile/locale/ja.json @@ -277,7 +277,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": { "dlgLeaveTitleText": "アプリケーションを終了します", diff --git a/apps/spreadsheeteditor/mobile/locale/ko.json b/apps/spreadsheeteditor/mobile/locale/ko.json index 7724d1d16..4e6e3ecba 100644 --- a/apps/spreadsheeteditor/mobile/locale/ko.json +++ b/apps/spreadsheeteditor/mobile/locale/ko.json @@ -277,7 +277,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.", diff --git a/apps/spreadsheeteditor/mobile/locale/lo.json b/apps/spreadsheeteditor/mobile/locale/lo.json index 7724d1d16..4e6e3ecba 100644 --- a/apps/spreadsheeteditor/mobile/locale/lo.json +++ b/apps/spreadsheeteditor/mobile/locale/lo.json @@ -277,7 +277,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.", diff --git a/apps/spreadsheeteditor/mobile/locale/lv.json b/apps/spreadsheeteditor/mobile/locale/lv.json index 7724d1d16..4e6e3ecba 100644 --- a/apps/spreadsheeteditor/mobile/locale/lv.json +++ b/apps/spreadsheeteditor/mobile/locale/lv.json @@ -277,7 +277,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.", diff --git a/apps/spreadsheeteditor/mobile/locale/nb.json b/apps/spreadsheeteditor/mobile/locale/nb.json index 7724d1d16..4e6e3ecba 100644 --- a/apps/spreadsheeteditor/mobile/locale/nb.json +++ b/apps/spreadsheeteditor/mobile/locale/nb.json @@ -277,7 +277,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.", diff --git a/apps/spreadsheeteditor/mobile/locale/nl.json b/apps/spreadsheeteditor/mobile/locale/nl.json index d5474aa7c..5c5bfbccd 100644 --- a/apps/spreadsheeteditor/mobile/locale/nl.json +++ b/apps/spreadsheeteditor/mobile/locale/nl.json @@ -277,7 +277,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.", diff --git a/apps/spreadsheeteditor/mobile/locale/pl.json b/apps/spreadsheeteditor/mobile/locale/pl.json index 7724d1d16..4e6e3ecba 100644 --- a/apps/spreadsheeteditor/mobile/locale/pl.json +++ b/apps/spreadsheeteditor/mobile/locale/pl.json @@ -277,7 +277,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.", diff --git a/apps/spreadsheeteditor/mobile/locale/pt.json b/apps/spreadsheeteditor/mobile/locale/pt.json index 5e35bc3bf..ba4969b9c 100644 --- a/apps/spreadsheeteditor/mobile/locale/pt.json +++ b/apps/spreadsheeteditor/mobile/locale/pt.json @@ -277,7 +277,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.", diff --git a/apps/spreadsheeteditor/mobile/locale/ro.json b/apps/spreadsheeteditor/mobile/locale/ro.json index e7dc8db1a..76d680751 100644 --- a/apps/spreadsheeteditor/mobile/locale/ro.json +++ b/apps/spreadsheeteditor/mobile/locale/ro.json @@ -277,7 +277,8 @@ "textSheet": "Foaie", "textSheetName": "Numele foii", "textUnhide": "Reafișare", - "textWarnDeleteSheet": "Foaie de calcul poate conține datele. Sigur doriți să continuați?" + "textWarnDeleteSheet": "Foaie de calcul poate conține datele. Sigur doriți să continuați?", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "Nu ați salvat modificările din documentul. Faceți clic pe Rămâi în pagină și așteptați la salvare automată. Faceți clic pe Părăsește aceasta pagina ca să renunțați la toate modificările nesalvate.", diff --git a/apps/spreadsheeteditor/mobile/locale/ru.json b/apps/spreadsheeteditor/mobile/locale/ru.json index 2d0b761cf..65a25a89e 100644 --- a/apps/spreadsheeteditor/mobile/locale/ru.json +++ b/apps/spreadsheeteditor/mobile/locale/ru.json @@ -277,7 +277,8 @@ "textSheet": "Лист", "textSheetName": "Имя листа", "textUnhide": "Показать", - "textWarnDeleteSheet": "Лист может содержать данные. Продолжить операцию?" + "textWarnDeleteSheet": "Лист может содержать данные. Продолжить операцию?", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "В документе есть несохраненные изменения. Нажмите 'Остаться на странице', чтобы дождаться автосохранения. Нажмите 'Уйти со страницы', чтобы сбросить все несохраненные изменения.", diff --git a/apps/spreadsheeteditor/mobile/locale/sk.json b/apps/spreadsheeteditor/mobile/locale/sk.json index 7724d1d16..4e6e3ecba 100644 --- a/apps/spreadsheeteditor/mobile/locale/sk.json +++ b/apps/spreadsheeteditor/mobile/locale/sk.json @@ -277,7 +277,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.", diff --git a/apps/spreadsheeteditor/mobile/locale/sl.json b/apps/spreadsheeteditor/mobile/locale/sl.json index 7724d1d16..4e6e3ecba 100644 --- a/apps/spreadsheeteditor/mobile/locale/sl.json +++ b/apps/spreadsheeteditor/mobile/locale/sl.json @@ -277,7 +277,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.", diff --git a/apps/spreadsheeteditor/mobile/locale/tr.json b/apps/spreadsheeteditor/mobile/locale/tr.json index 7724d1d16..4e6e3ecba 100644 --- a/apps/spreadsheeteditor/mobile/locale/tr.json +++ b/apps/spreadsheeteditor/mobile/locale/tr.json @@ -277,7 +277,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.", diff --git a/apps/spreadsheeteditor/mobile/locale/uk.json b/apps/spreadsheeteditor/mobile/locale/uk.json index 7724d1d16..4e6e3ecba 100644 --- a/apps/spreadsheeteditor/mobile/locale/uk.json +++ b/apps/spreadsheeteditor/mobile/locale/uk.json @@ -277,7 +277,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.", diff --git a/apps/spreadsheeteditor/mobile/locale/vi.json b/apps/spreadsheeteditor/mobile/locale/vi.json index 7724d1d16..4e6e3ecba 100644 --- a/apps/spreadsheeteditor/mobile/locale/vi.json +++ b/apps/spreadsheeteditor/mobile/locale/vi.json @@ -277,7 +277,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.", diff --git a/apps/spreadsheeteditor/mobile/locale/zh.json b/apps/spreadsheeteditor/mobile/locale/zh.json index 8c30de436..19c8cd795 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh.json +++ b/apps/spreadsheeteditor/mobile/locale/zh.json @@ -277,7 +277,8 @@ "textSheet": "表格", "textSheetName": "工作表名称", "textUnhide": "取消隐藏", - "textWarnDeleteSheet": "该工作表可能带有数据。要进行操作吗?" + "textWarnDeleteSheet": "该工作表可能带有数据。要进行操作吗?", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "你在该文档中有未保存的修改。点击“留在该页”来等待自动保存。点击“离开该页”将舍弃全部未保存的更改。", From 064e436cd7cafa0d1246ffc3e1b081ccdd2b58c3 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 13 Aug 2021 16:39:28 +0300 Subject: [PATCH 28/90] For Bug 51795 --- apps/common/main/lib/component/ComboBoxFonts.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/apps/common/main/lib/component/ComboBoxFonts.js b/apps/common/main/lib/component/ComboBoxFonts.js index 87f2b272b..0b429b185 100644 --- a/apps/common/main/lib/component/ComboBoxFonts.js +++ b/apps/common/main/lib/component/ComboBoxFonts.js @@ -55,7 +55,9 @@ define([ 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, @@ -65,8 +67,10 @@ define([ 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); From 39239c81f4fa59ba4a958079ec8264e3296db2d9 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 13 Aug 2021 16:55:42 +0300 Subject: [PATCH 29/90] For Bug 51845 --- apps/common/main/resources/less/combo-dataview.less | 2 +- apps/documenteditor/main/app/view/Toolbar.js | 2 +- apps/presentationeditor/main/resources/less/toolbar.less | 6 ------ apps/spreadsheeteditor/main/app/view/Toolbar.js | 2 +- apps/spreadsheeteditor/main/resources/less/toolbar.less | 6 ------ 5 files changed, 3 insertions(+), 15 deletions(-) diff --git a/apps/common/main/resources/less/combo-dataview.less b/apps/common/main/resources/less/combo-dataview.less index 47c8a101a..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); diff --git a/apps/documenteditor/main/app/view/Toolbar.js b/apps/documenteditor/main/app/view/Toolbar.js index 576da4114..8c4ea904a 100644 --- a/apps/documenteditor/main/app/view/Toolbar.js +++ b/apps/documenteditor/main/app/view/Toolbar.js @@ -1155,7 +1155,7 @@ define([ this.listStyles = new Common.UI.ComboDataView({ cls: 'combo-styles', itemWidth: 104, - itemHeight: 38, + itemHeight: 40, // hint : this.tipParagraphStyle, enableKeyEvents: true, additionalMenuItems: [this.listStylesAdditionalMenuItem], diff --git a/apps/presentationeditor/main/resources/less/toolbar.less b/apps/presentationeditor/main/resources/less/toolbar.less index 13a3fef13..077e47074 100644 --- a/apps/presentationeditor/main/resources/less/toolbar.less +++ b/apps/presentationeditor/main/resources/less/toolbar.less @@ -112,12 +112,6 @@ background-size: cover } -.combo-styles { - .item { - padding: 2px; - } -} - #slot-btn-incfont, #slot-btn-decfont, #slot-btn-changecase { margin-left: 2px; } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/view/Toolbar.js b/apps/spreadsheeteditor/main/app/view/Toolbar.js index 444f1e459..e2b6426d2 100644 --- a/apps/spreadsheeteditor/main/app/view/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/view/Toolbar.js @@ -818,7 +818,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], beforeOpenHandler: function(e) { diff --git a/apps/spreadsheeteditor/main/resources/less/toolbar.less b/apps/spreadsheeteditor/main/resources/less/toolbar.less index e3a19c398..796548586 100644 --- a/apps/spreadsheeteditor/main/resources/less/toolbar.less +++ b/apps/spreadsheeteditor/main/resources/less/toolbar.less @@ -149,9 +149,3 @@ float: left; min-width: 46px; } - -.combo-styles { - .view, .dropdown-menu { - //background-color: @canvas-content-background; - } -} \ No newline at end of file From 933cd070853034a07b58286cd172b95ba171abd9 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 13 Aug 2021 17:08:16 +0300 Subject: [PATCH 30/90] For Bug 51795 --- apps/common/main/lib/component/ComboBoxFonts.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/common/main/lib/component/ComboBoxFonts.js b/apps/common/main/lib/component/ComboBoxFonts.js index 0b429b185..fe03da550 100644 --- a/apps/common/main/lib/component/ComboBoxFonts.js +++ b/apps/common/main/lib/component/ComboBoxFonts.js @@ -49,8 +49,8 @@ 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 = [ @@ -61,7 +61,7 @@ define([ {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(); From 24f31be6e9fbb7a8867c72b94c096a82ad8cd2c7 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 13 Aug 2021 17:10:55 +0300 Subject: [PATCH 31/90] Update translation --- apps/documenteditor/embed/locale/ca.json | 44 +- apps/documenteditor/embed/locale/fr.json | 3 + apps/documenteditor/embed/locale/ro.json | 3 + apps/documenteditor/embed/locale/ru.json | 4 +- apps/documenteditor/main/locale/ca.json | 2684 +++++++++--------- apps/documenteditor/main/locale/zh.json | 4 +- apps/presentationeditor/embed/locale/ca.json | 45 +- apps/presentationeditor/embed/locale/fr.json | 1 + apps/presentationeditor/embed/locale/ro.json | 1 + apps/presentationeditor/embed/locale/ru.json | 1 + apps/presentationeditor/main/locale/ca.json | 2428 ++++++++-------- apps/presentationeditor/main/locale/zh.json | 2 +- apps/spreadsheeteditor/embed/locale/ca.json | 30 +- apps/spreadsheeteditor/embed/locale/fr.json | 1 + apps/spreadsheeteditor/embed/locale/ro.json | 1 + apps/spreadsheeteditor/embed/locale/ru.json | 1 + apps/spreadsheeteditor/main/locale/ca.json | 151 +- apps/spreadsheeteditor/main/locale/en.json | 6 +- apps/spreadsheeteditor/main/locale/fr.json | 3 + apps/spreadsheeteditor/main/locale/ro.json | 3 + apps/spreadsheeteditor/main/locale/ru.json | 3 + apps/spreadsheeteditor/main/locale/zh.json | 2 +- 22 files changed, 2724 insertions(+), 2697 deletions(-) diff --git a/apps/documenteditor/embed/locale/ca.json b/apps/documenteditor/embed/locale/ca.json index 319f01d6f..09f46bead 100644 --- a/apps/documenteditor/embed/locale/ca.json +++ b/apps/documenteditor/embed/locale/ca.json @@ -1,44 +1,44 @@ { - "common.view.modals.txtCopy": "Copiat al porta-retalls", + "common.view.modals.txtCopy": "Copiar al porta-retalls", "common.view.modals.txtEmbed": "Incrustar", "common.view.modals.txtHeight": "Alçada", - "common.view.modals.txtShare": "Compartir Enllaç", + "common.view.modals.txtShare": "Compartir 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ó.
Poseu-vos en contacte 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 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.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.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.textRequired": "Ompliu 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.textSubmited": "El formulari s'ha enviat amb èxit
Cliqueu per a tancar el consell", "DE.ApplicationController.txtClose": "Tancar", - "DE.ApplicationController.unknownErrorText": "Error Desconegut.", + "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.ApplicationController.waitText": "Espereu...", + "DE.ApplicationView.txtDownload": "Baixar", "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.txtFileLocation": "Obrir la ubicació del fitxer", + "DE.ApplicationView.txtFullScreen": "Pantalla completa", "DE.ApplicationView.txtPrint": "Imprimir", "DE.ApplicationView.txtShare": "Compartir" } \ No newline at end of file diff --git a/apps/documenteditor/embed/locale/fr.json b/apps/documenteditor/embed/locale/fr.json index c56b67a2f..2d94b207c 100644 --- a/apps/documenteditor/embed/locale/fr.json +++ b/apps/documenteditor/embed/locale/fr.json @@ -14,6 +14,7 @@ "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.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 +31,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/ro.json b/apps/documenteditor/embed/locale/ro.json index 2916153cc..9dccf677f 100644 --- a/apps/documenteditor/embed/locale/ro.json +++ b/apps/documenteditor/embed/locale/ro.json @@ -14,6 +14,7 @@ "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.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 +31,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..1718980fe 100644 --- a/apps/documenteditor/embed/locale/ru.json +++ b/apps/documenteditor/embed/locale/ru.json @@ -14,6 +14,7 @@ "DE.ApplicationController.errorEditingDownloadas": "В ходе работы с документом произошла ошибка.
Используйте опцию 'Скачать как...', чтобы сохранить резервную копию файла на жесткий диск компьютера.", "DE.ApplicationController.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.", "DE.ApplicationController.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.
Обратитесь к администратору Сервера документов для получения дополнительной информации.", + "DE.ApplicationController.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.", "DE.ApplicationController.errorSubmit": "Не удалось отправить.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Подключение к Интернету было восстановлено, и версия файла изменилась.
Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.", "DE.ApplicationController.errorUserDrop": "В настоящий момент файл недоступен.", @@ -30,7 +31,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/locale/ca.json b/apps/documenteditor/main/locale/ca.json index 4082cf9b1..3c66af0e6 100644 --- a/apps/documenteditor/main/locale/ca.json +++ b/apps/documenteditor/main/locale/ca.json @@ -1,84 +1,84 @@ { - "Common.Controllers.Chat.notcriticalErrorTitle": "Avís", + "Common.Controllers.Chat.notcriticalErrorTitle": "Advertiment", "Common.Controllers.Chat.textEnterMessage": "Introduïu el vostre missatge aquí", "Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anònim", "Common.Controllers.ExternalDiagramEditor.textClose": "Tancar", "Common.Controllers.ExternalDiagramEditor.warningText": "L’objecte s'ha desactivat perquè un altre usuari ja el té obert.", - "Common.Controllers.ExternalDiagramEditor.warningTitle": "Avís", + "Common.Controllers.ExternalDiagramEditor.warningTitle": "Advertiment", "Common.Controllers.ExternalMergeEditor.textAnonymous": "Anònim", "Common.Controllers.ExternalMergeEditor.textClose": "Tancar", - "Common.Controllers.ExternalMergeEditor.warningText": "L’objecte s'ha desactivat perquè està un altre usuari ja el té obert.", - "Common.Controllers.ExternalMergeEditor.warningTitle": "Avis", - "Common.Controllers.History.notcriticalErrorTitle": "Avís", - "Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Per poder comparar documents, es consideraran acceptats tots els canvis realitzats en un seguiment. Vols continuar?", + "Common.Controllers.ExternalMergeEditor.warningText": "L’objecte s'ha desactivat perquè un altre usuari ja el té obert.", + "Common.Controllers.ExternalMergeEditor.warningTitle": "Advertiment", + "Common.Controllers.History.notcriticalErrorTitle": "Advertiment", + "Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Per poder comparar els documents, es considerarà que s’han acceptat tots els canvis que s’han adoptat. Voleu continuar?", "Common.Controllers.ReviewChanges.textAtLeast": "pel cap baix", - "Common.Controllers.ReviewChanges.textAuto": "auto", - "Common.Controllers.ReviewChanges.textBaseline": "Línia Subíndex", + "Common.Controllers.ReviewChanges.textAuto": "Automàtic", + "Common.Controllers.ReviewChanges.textBaseline": "Línia de base", "Common.Controllers.ReviewChanges.textBold": "Negreta", - "Common.Controllers.ReviewChanges.textBreakBefore": "Salt de pàgina abans", + "Common.Controllers.ReviewChanges.textBreakBefore": "Salt de pàgina anterior", "Common.Controllers.ReviewChanges.textCaps": "Majúscules ", "Common.Controllers.ReviewChanges.textCenter": "Centrar", "Common.Controllers.ReviewChanges.textChar": "Nivell de caràcter", "Common.Controllers.ReviewChanges.textChart": "Gràfic", - "Common.Controllers.ReviewChanges.textColor": "Color de Font", + "Common.Controllers.ReviewChanges.textColor": "Color del tipus de lletra", "Common.Controllers.ReviewChanges.textContextual": "No afegiu interval entre paràgrafs del mateix estil", "Common.Controllers.ReviewChanges.textDeleted": "Suprimit:", - "Common.Controllers.ReviewChanges.textDStrikeout": "Doble guia", + "Common.Controllers.ReviewChanges.textDStrikeout": "Doble ratllat", "Common.Controllers.ReviewChanges.textEquation": "Equació", "Common.Controllers.ReviewChanges.textExact": "exacte", - "Common.Controllers.ReviewChanges.textFirstLine": "Primera Línia", - "Common.Controllers.ReviewChanges.textFontSize": "Mida de Font", - "Common.Controllers.ReviewChanges.textFormatted": "Formatjat", - "Common.Controllers.ReviewChanges.textHighlight": "Ressalta el color", + "Common.Controllers.ReviewChanges.textFirstLine": "Primera línia", + "Common.Controllers.ReviewChanges.textFontSize": "Mida del tipus de lletra", + "Common.Controllers.ReviewChanges.textFormatted": "Formatat", + "Common.Controllers.ReviewChanges.textHighlight": "Color de ressaltat", "Common.Controllers.ReviewChanges.textImage": "Imatge", - "Common.Controllers.ReviewChanges.textIndentLeft": "Tabulador esquerre", - "Common.Controllers.ReviewChanges.textIndentRight": "Tabulador dret", + "Common.Controllers.ReviewChanges.textIndentLeft": "Sagnia a l'esquerra", + "Common.Controllers.ReviewChanges.textIndentRight": "Sagnia a la dreta", "Common.Controllers.ReviewChanges.textInserted": "Inserit:", - "Common.Controllers.ReviewChanges.textItalic": "Itàlica", + "Common.Controllers.ReviewChanges.textItalic": "Cursiva", "Common.Controllers.ReviewChanges.textJustify": "Justificar", - "Common.Controllers.ReviewChanges.textKeepLines": "Mantenir les línies unides", - "Common.Controllers.ReviewChanges.textKeepNext": "Seguir amb el següent", - "Common.Controllers.ReviewChanges.textLeft": "Alinear esquerra", - "Common.Controllers.ReviewChanges.textLineSpacing": "Espai entre Línies:", - "Common.Controllers.ReviewChanges.textMultiple": "multiplicador", - "Common.Controllers.ReviewChanges.textNoBreakBefore": "No hi havia cap salt de pàgina abans", + "Common.Controllers.ReviewChanges.textKeepLines": "Conserveu les línies juntes", + "Common.Controllers.ReviewChanges.textKeepNext": "Conserveu amb el següent", + "Common.Controllers.ReviewChanges.textLeft": "Alineació a l'esquerra", + "Common.Controllers.ReviewChanges.textLineSpacing": "Interlineat:", + "Common.Controllers.ReviewChanges.textMultiple": "múltiple", + "Common.Controllers.ReviewChanges.textNoBreakBefore": "Sense salt de pàgina anterior", "Common.Controllers.ReviewChanges.textNoContextual": "Afegir un interval entre els paràgrafs del mateix estil", "Common.Controllers.ReviewChanges.textNoKeepLines": "No mantingueu les línies unides", - "Common.Controllers.ReviewChanges.textNoKeepNext": "No segueixis amb el següent", + "Common.Controllers.ReviewChanges.textNoKeepNext": "No continueu amb el següent", "Common.Controllers.ReviewChanges.textNot": "No", "Common.Controllers.ReviewChanges.textNoWidow": "Sense control de la finestra", - "Common.Controllers.ReviewChanges.textNum": "Canviar numeració", + "Common.Controllers.ReviewChanges.textNum": "Canviar la numeració", "Common.Controllers.ReviewChanges.textOff": "{0} Ja no s'utilitza el seguiment de canvis.", - "Common.Controllers.ReviewChanges.textOffGlobal": "{0} S'ha desactivat el Seguiment de Canvis per a tothom.", - "Common.Controllers.ReviewChanges.textOn": "{0} utilitza ara el seguiment de canvis.", + "Common.Controllers.ReviewChanges.textOffGlobal": "{0} S'ha desactivat el seguiment de canvis per a tothom.", + "Common.Controllers.ReviewChanges.textOn": "{0} està utilitzant ara el seguiment de canvis.", "Common.Controllers.ReviewChanges.textOnGlobal": "{0} S'ha activat el seguiment de canvis per a tothom.", - "Common.Controllers.ReviewChanges.textParaDeleted": "Paràgraf Suprimit", - "Common.Controllers.ReviewChanges.textParaFormatted": "Paràgraf Formatat", - "Common.Controllers.ReviewChanges.textParaInserted": "Paràgraf Inserit", - "Common.Controllers.ReviewChanges.textParaMoveFromDown": "Abaixat:", - "Common.Controllers.ReviewChanges.textParaMoveFromUp": "Apujat:", + "Common.Controllers.ReviewChanges.textParaDeleted": "Paràgraf suprimit", + "Common.Controllers.ReviewChanges.textParaFormatted": "Paràgraf formatat", + "Common.Controllers.ReviewChanges.textParaInserted": "Paràgraf inserit", + "Common.Controllers.ReviewChanges.textParaMoveFromDown": "S'ha desplaçat cap avall:", + "Common.Controllers.ReviewChanges.textParaMoveFromUp": "S'ha desplaçat cap amunt:", "Common.Controllers.ReviewChanges.textParaMoveTo": "Desplaçat:", "Common.Controllers.ReviewChanges.textPosition": "Posició", - "Common.Controllers.ReviewChanges.textRight": "Alinear dreta", + "Common.Controllers.ReviewChanges.textRight": "Alineació a la dreta", "Common.Controllers.ReviewChanges.textShape": "Forma", "Common.Controllers.ReviewChanges.textShd": "Color de fons", - "Common.Controllers.ReviewChanges.textShow": "Mostra els canvis a", - "Common.Controllers.ReviewChanges.textSmallCaps": "Majúscules petites", - "Common.Controllers.ReviewChanges.textSpacing": "Espai", - "Common.Controllers.ReviewChanges.textSpacingAfter": "Espai després", - "Common.Controllers.ReviewChanges.textSpacingBefore": "Espai abans", - "Common.Controllers.ReviewChanges.textStrikeout": "Ratllar tex", + "Common.Controllers.ReviewChanges.textShow": "Mostrar els canvis a", + "Common.Controllers.ReviewChanges.textSmallCaps": "Versaletes", + "Common.Controllers.ReviewChanges.textSpacing": "Espaiat", + "Common.Controllers.ReviewChanges.textSpacingAfter": "Espaiat posterior", + "Common.Controllers.ReviewChanges.textSpacingBefore": "Espaiat anterior", + "Common.Controllers.ReviewChanges.textStrikeout": "Ratllat", "Common.Controllers.ReviewChanges.textSubScript": "Subíndex", "Common.Controllers.ReviewChanges.textSuperScript": "Superíndex", - "Common.Controllers.ReviewChanges.textTableChanged": "S'ha modificat la Configuració de la Taula", - "Common.Controllers.ReviewChanges.textTableRowsAdd": "S'han afegit Files a la Taula", - "Common.Controllers.ReviewChanges.textTableRowsDel": "S'han suprimit Files a la Taula", - "Common.Controllers.ReviewChanges.textTabs": "Canviar tabulació", - "Common.Controllers.ReviewChanges.textTitleComparison": "Paràmetres de comparació", + "Common.Controllers.ReviewChanges.textTableChanged": "La configuració de la taula ha canviat", + "Common.Controllers.ReviewChanges.textTableRowsAdd": "S'han afegit files a la taula", + "Common.Controllers.ReviewChanges.textTableRowsDel": "S'han suprimit files de la taula", + "Common.Controllers.ReviewChanges.textTabs": "Canviar la tabulació", + "Common.Controllers.ReviewChanges.textTitleComparison": "Configuració de comparació", "Common.Controllers.ReviewChanges.textUnderline": "Subratllar", "Common.Controllers.ReviewChanges.textUrl": "Enganxar la URL del document", "Common.Controllers.ReviewChanges.textWidow": "Control de finestra", - "Common.Controllers.ReviewChanges.textWord": "Nivell de paraula", + "Common.Controllers.ReviewChanges.textWord": "Nivell de paraules", "Common.define.chartData.textArea": "Àrea", "Common.define.chartData.textAreaStacked": "Àrea apilada", "Common.define.chartData.textAreaStackedPer": "Àrea apilada al 100%", @@ -89,15 +89,15 @@ "Common.define.chartData.textBarStacked": "Columna apilada", "Common.define.chartData.textBarStacked3d": "Columna 3D apilada", "Common.define.chartData.textBarStackedPer": "Columna apilada al 100%", - "Common.define.chartData.textBarStackedPer3d": "Columna 3D apilada al 100%", + "Common.define.chartData.textBarStackedPer3d": "Columna 3D apilada al 100%", "Common.define.chartData.textCharts": "Gràfics", "Common.define.chartData.textColumn": "Columna", - "Common.define.chartData.textCombo": "Combo", + "Common.define.chartData.textCombo": "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": "Gràfic d'anelles", "Common.define.chartData.textHBarNormal": "Barra agrupada", "Common.define.chartData.textHBarNormal3d": "Barra 3D agrupada", "Common.define.chartData.textHBarStacked": "Barra apilada", @@ -124,105 +124,105 @@ "Common.Translation.warnFileLocked": "No podeu editar aquest fitxer perquè és obert en una altra aplicació.", "Common.Translation.warnFileLockedBtnEdit": "Crea una còpia", "Common.Translation.warnFileLockedBtnView": "Obrir per veure", - "Common.UI.Calendar.textApril": "Abril", - "Common.UI.Calendar.textAugust": "Agost", - "Common.UI.Calendar.textDecember": "Desembre", - "Common.UI.Calendar.textFebruary": "Febrer", - "Common.UI.Calendar.textJanuary": "Gener", - "Common.UI.Calendar.textJuly": "Juliol", - "Common.UI.Calendar.textJune": "Juny", - "Common.UI.Calendar.textMarch": "Març", - "Common.UI.Calendar.textMay": "Mai", + "Common.UI.Calendar.textApril": "abril", + "Common.UI.Calendar.textAugust": "agost", + "Common.UI.Calendar.textDecember": "desembre", + "Common.UI.Calendar.textFebruary": "febrer", + "Common.UI.Calendar.textJanuary": "gener", + "Common.UI.Calendar.textJuly": "juliol", + "Common.UI.Calendar.textJune": "juny", + "Common.UI.Calendar.textMarch": "març", + "Common.UI.Calendar.textMay": "mai.", "Common.UI.Calendar.textMonths": "Mesos", - "Common.UI.Calendar.textNovember": "Novembre", - "Common.UI.Calendar.textOctober": "Octubre", - "Common.UI.Calendar.textSeptember": "Setembre", + "Common.UI.Calendar.textNovember": "novembre", + "Common.UI.Calendar.textOctober": "octubre", + "Common.UI.Calendar.textSeptember": "setembre", "Common.UI.Calendar.textShortApril": "Abr", - "Common.UI.Calendar.textShortAugust": "Ago", - "Common.UI.Calendar.textShortDecember": "Dec", - "Common.UI.Calendar.textShortFebruary": "Feb", - "Common.UI.Calendar.textShortFriday": "Fr", - "Common.UI.Calendar.textShortJanuary": "Gen.", - "Common.UI.Calendar.textShortJuly": "Jul.", - "Common.UI.Calendar.textShortJune": "Jun.", - "Common.UI.Calendar.textShortMarch": "Mar", - "Common.UI.Calendar.textShortMay": "Mai", - "Common.UI.Calendar.textShortMonday": "Dil", - "Common.UI.Calendar.textShortNovember": "Nov", - "Common.UI.Calendar.textShortOctober": "Oct", - "Common.UI.Calendar.textShortSaturday": "Dis", - "Common.UI.Calendar.textShortSeptember": "Set", - "Common.UI.Calendar.textShortSunday": "Diu", - "Common.UI.Calendar.textShortThursday": "Dij", - "Common.UI.Calendar.textShortTuesday": "Dim", - "Common.UI.Calendar.textShortWednesday": "Dim", + "Common.UI.Calendar.textShortAugust": "ago.", + "Common.UI.Calendar.textShortDecember": "dec.", + "Common.UI.Calendar.textShortFebruary": "feb.", + "Common.UI.Calendar.textShortFriday": "dv.", + "Common.UI.Calendar.textShortJanuary": "gen.", + "Common.UI.Calendar.textShortJuly": "jul.", + "Common.UI.Calendar.textShortJune": "jun.", + "Common.UI.Calendar.textShortMarch": "mar.", + "Common.UI.Calendar.textShortMay": "maig", + "Common.UI.Calendar.textShortMonday": "dll.", + "Common.UI.Calendar.textShortNovember": "nov.", + "Common.UI.Calendar.textShortOctober": "oct.", + "Common.UI.Calendar.textShortSaturday": "ds.", + "Common.UI.Calendar.textShortSeptember": "set.", + "Common.UI.Calendar.textShortSunday": "dg.", + "Common.UI.Calendar.textShortThursday": "dj.", + "Common.UI.Calendar.textShortTuesday": "dm.", + "Common.UI.Calendar.textShortWednesday": "dc.", "Common.UI.Calendar.textYears": "Anys", "Common.UI.ColorButton.textAutoColor": "Automàtic", "Common.UI.ColorButton.textNewColor": "Afegir un color nou personalitzat", "Common.UI.ComboBorderSize.txtNoBorders": "Sense vores", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sense vores", - "Common.UI.ComboDataView.emptyComboText": "Sense estil", + "Common.UI.ComboDataView.emptyComboText": "Sense estils", "Common.UI.ExtendedColorDialog.addButtonText": "Afegir", "Common.UI.ExtendedColorDialog.textCurrent": "Actual", "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 no és correcte.
Introduïu un valor numèric entre 0 i 255.", - "Common.UI.HSBColorPicker.textNoColor": "Sense Color", + "Common.UI.HSBColorPicker.textNoColor": "Sense color", "Common.UI.SearchDialog.textHighlight": "Ressaltar 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 Tot", + "Common.UI.SearchDialog.textTitle": "Cercar i substituir", + "Common.UI.SearchDialog.textTitle2": "Cercar", + "Common.UI.SearchDialog.textWholeWords": "Només paraules senceres", + "Common.UI.SearchDialog.txtBtnHideReplace": "Amagar substituir", + "Common.UI.SearchDialog.txtBtnReplace": "Substituir", + "Common.UI.SearchDialog.txtBtnReplaceAll": "Substituir-ho tot ", "Common.UI.SynchronizeTip.textDontShow": "No torneu 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àndards", + "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": "Llum", + "Common.UI.Themes.txtThemeLight": "Clar", "Common.UI.Window.cancelButtonText": "Cancel·lar", "Common.UI.Window.closeButtonText": "Tancar", "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.textError": "Error", "Common.UI.Window.textInformation": "Informació", - "Common.UI.Window.textWarning": "Avís", + "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.textApplyText": "Aplica a mesura que escrius", + "Common.Views.AutoCorrectDialog.textApplyText": "Apliqueu mentre escriviu", "Common.Views.AutoCorrectDialog.textAutoCorrect": "Correcció automàtica", "Common.Views.AutoCorrectDialog.textAutoFormat": "Format automàtic a mesura que escriviu", "Common.Views.AutoCorrectDialog.textBulleted": "Llistes automàtiques de pics", "Common.Views.AutoCorrectDialog.textBy": "Per", - "Common.Views.AutoCorrectDialog.textDelete": "Esborrar", + "Common.Views.AutoCorrectDialog.textDelete": "Suprimir", "Common.Views.AutoCorrectDialog.textFLSentence": "Posa en majúscules la primera lletra de les frases", - "Common.Views.AutoCorrectDialog.textHyphens": "Guions (--) amb guió (—)", - "Common.Views.AutoCorrectDialog.textMathCorrect": "Correcció Automàtica Matemàtica", + "Common.Views.AutoCorrectDialog.textHyphens": "Guionets (--) per guió llarg (—)", + "Common.Views.AutoCorrectDialog.textMathCorrect": "Autocorrecció de símbols matemàtics", "Common.Views.AutoCorrectDialog.textNumbered": "Llistes numerades automàtiques", "Common.Views.AutoCorrectDialog.textQuotes": "\"Cometes rectes\" amb \"cometes tipogràfiques\"", - "Common.Views.AutoCorrectDialog.textRecognized": "Funcions Reconegudes", + "Common.Views.AutoCorrectDialog.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": "Substitueix mentre escrius", + "Common.Views.AutoCorrectDialog.textReplace": "Substituir", + "Common.Views.AutoCorrectDialog.textReplaceText": "Substituir mentre s'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.textResetAll": "Restablir els valors predeterminats", "Common.Views.AutoCorrectDialog.textRestore": "Restaurar", "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.", @@ -232,62 +232,62 @@ "Common.Views.AutoCorrectDialog.warnRestore": "L'entrada de correcció automàtica de %1 es restablirà al seu valor original. Voleu continuar?", "Common.Views.Chat.textSend": "Enviar", "Common.Views.Comments.textAdd": "Afegir", - "Common.Views.Comments.textAddComment": "Afegir Comentari", - "Common.Views.Comments.textAddCommentToDoc": "Afegir Comentari al Document", + "Common.Views.Comments.textAddComment": "Afegir comentari", + "Common.Views.Comments.textAddCommentToDoc": "Afegir comentari al document", "Common.Views.Comments.textAddReply": "Afegir una resposta", "Common.Views.Comments.textAnonym": "Convidat", "Common.Views.Comments.textCancel": "Cancel·lar", "Common.Views.Comments.textClose": "Tancar", "Common.Views.Comments.textComments": "Comentaris", - "Common.Views.Comments.textEdit": "Acceptar", + "Common.Views.Comments.textEdit": "D'acord", "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.textResolve": "Resol", + "Common.Views.Comments.textOpenAgain": "Torneu-ho a obrir", + "Common.Views.Comments.textReply": "Respondre", + "Common.Views.Comments.textResolve": "Resoldre", "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 Enganxar, 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.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 copiar, tallar i enganxar", + "Common.Views.CopyWarningDialog.textToCopy": "Per a copiar", + "Common.Views.CopyWarningDialog.textToCut": "Per a tallar", + "Common.Views.CopyWarningDialog.textToPaste": "Per a enganxar", + "Common.Views.DocumentAccessDialog.textLoading": "S'està carregant...", + "Common.Views.DocumentAccessDialog.textTitle": "Configuració de l'ús compartit\n\t", "Common.Views.ExternalDiagramEditor.textClose": "Tancar", - "Common.Views.ExternalDiagramEditor.textSave": "Desar i Sortir", - "Common.Views.ExternalDiagramEditor.textTitle": "Editor del Gràfic", + "Common.Views.ExternalDiagramEditor.textSave": "Desar i sortir", + "Common.Views.ExternalDiagramEditor.textTitle": "Editor de gràfics", "Common.Views.ExternalMergeEditor.textClose": "Tancar", - "Common.Views.ExternalMergeEditor.textSave": "Desar i Sortir", - "Common.Views.ExternalMergeEditor.textTitle": "Receptors de Fusió de Correu", + "Common.Views.ExternalMergeEditor.textSave": "Desar i sortir", + "Common.Views.ExternalMergeEditor.textTitle": "Destinataris de combinació de la correspondència", "Common.Views.Header.labelCoUsersDescr": "Usuaris que editen el fitxer:", - "Common.Views.Header.textAddFavorite": "Marca com a favorit", + "Common.Views.Header.textAddFavorite": "Marcar 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.textZoom": "Zoom", - "Common.Views.Header.tipAccessRights": "Gestiona els drets d’accés al document", - "Common.Views.Header.tipDownload": "Descarregar arxiu", - "Common.Views.Header.tipGoEdit": "Edita el fitxer actual", - "Common.Views.Header.tipPrint": "Imprimir arxiu", + "Common.Views.Header.textBack": "Obrir la ubicació del fitxer", + "Common.Views.Header.textCompactView": "Amagar la barra d'eines", + "Common.Views.Header.textHideLines": "Amagar els regles", + "Common.Views.Header.textHideStatusBar": "Amagar la barra d'estat", + "Common.Views.Header.textRemoveFavorite": "Suprimir de favorits", + "Common.Views.Header.textZoom": "Ampliar", + "Common.Views.Header.tipAccessRights": "Gestioneu els drets d’accés al document", + "Common.Views.Header.tipDownload": "Baixar fitxer", + "Common.Views.Header.tipGoEdit": "Editar el fitxer actual", + "Common.Views.Header.tipPrint": "Imprimir fitxer", "Common.Views.Header.tipRedo": "Refer", "Common.Views.Header.tipSave": "Desar", "Common.Views.Header.tipUndo": "Desfer", "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.tipViewUsers": "Mostra els usuaris i gestiona els drets d’accés als documents", "Common.Views.Header.txtAccessRights": "Canviar els drets d’accés", - "Common.Views.Header.txtRename": "Canvia el nom", - "Common.Views.History.textCloseHistory": "Tancar Historial", - "Common.Views.History.textHide": "Plegar", - "Common.Views.History.textHideAll": "Amagar els detalls dels canvis", + "Common.Views.Header.txtRename": "Canviar el nom", + "Common.Views.History.textCloseHistory": "Tancar l'historial", + "Common.Views.History.textHide": "Reduir", + "Common.Views.History.textHideAll": "Amagar els canvis detallats", "Common.Views.History.textRestore": "Restaurar", - "Common.Views.History.textShow": "Ampliar", - "Common.Views.History.textShowAll": "Mostra canvis detallats", + "Common.Views.History.textShow": "Desplegar", + "Common.Views.History.textShowAll": "Mostrar els canvis al detall", "Common.Views.History.textVer": "ver.", - "Common.Views.ImageFromUrlDialog.textUrl": "Enganxar URL d'imatge:", + "Common.Views.ImageFromUrlDialog.textUrl": "Enganxar una URL d'imatge:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Aquest camp és obligatori", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Aquest camp hauria de ser un enllaç amb el format \"http://www.example.com\"", "Common.Views.InsertTableDialog.textInvalidRowsCols": "Cal especificar el recompte de files i columnes vàlides.", @@ -295,438 +295,438 @@ "Common.Views.InsertTableDialog.txtMaxText": "El valor màxim per a aquest camp és {0}.", "Common.Views.InsertTableDialog.txtMinText": "El valor mínim per aquest camp és {0}.", "Common.Views.InsertTableDialog.txtRows": "Número de files", - "Common.Views.InsertTableDialog.txtTitle": "Mida Taula", - "Common.Views.InsertTableDialog.txtTitleSplit": "Dividir Cel·la", + "Common.Views.InsertTableDialog.txtTitle": "Mida de la taula", + "Common.Views.InsertTableDialog.txtTitleSplit": "Dividir cel·la", "Common.Views.LanguageDialog.labelSelect": "Seleccionar l'idioma de document", - "Common.Views.OpenDialog.closeButtonText": "Tancar Arxiu", + "Common.Views.OpenDialog.closeButtonText": "Tancar el fitxer", "Common.Views.OpenDialog.txtEncoding": "Codificació", - "Common.Views.OpenDialog.txtIncorrectPwd": "La contrasenya es incorrecta.", + "Common.Views.OpenDialog.txtIncorrectPwd": "La contrasenya no és correcta.", "Common.Views.OpenDialog.txtOpenFile": "Introduïu una contrasenya per obrir el fitxer", "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.txtTitle": "Tria %1 opció", - "Common.Views.OpenDialog.txtTitleProtected": "Arxiu Protegit", - "Common.Views.PasswordDialog.txtDescription": "Establir una contrasenya per protegir", + "Common.Views.OpenDialog.txtTitle": "Trieu les opcions de %1", + "Common.Views.OpenDialog.txtTitleProtected": "Fitxer protegit", + "Common.Views.PasswordDialog.txtDescription": "Establir 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": "Avís: si perdeu o oblideu la contrasenya, no es podrà recuperar. Desa-la en un lloc segur.", - "Common.Views.PluginDlg.textLoading": "Carregant", - "Common.Views.Plugins.groupCaption": "Connectors", - "Common.Views.Plugins.strPlugins": "Connectors", - "Common.Views.Plugins.textLoading": "Carregant", - "Common.Views.Plugins.textStart": "Comença", - "Common.Views.Plugins.textStop": "Parar", - "Common.Views.Protection.hintAddPwd": "Xifra amb contrasenya", - "Common.Views.Protection.hintPwd": "Canviar o Esborrar Contrasenya", + "Common.Views.PasswordDialog.txtRepeat": "Repetiu la contrasenya", + "Common.Views.PasswordDialog.txtTitle": "Establir 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çar", + "Common.Views.Plugins.textStop": "Aturar", + "Common.Views.Protection.hintAddPwd": "Encriptar amb contrasenya", + "Common.Views.Protection.hintPwd": "Canviar o suprimir la 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.Protection.txtDeletePwd": "Suprimeix la contrasenya", - "Common.Views.Protection.txtEncrypt": "Xifra", + "Common.Views.Protection.txtEncrypt": "Encriptar", "Common.Views.Protection.txtInvisibleSignature": "Afegir signatura digital", - "Common.Views.Protection.txtSignature": "Firma", + "Common.Views.Protection.txtSignature": "Signatura", "Common.Views.Protection.txtSignatureLine": "Afegir línia de signatura", - "Common.Views.RenameDialog.textName": "Nom Fitxer", + "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 canvi següent", "Common.Views.ReviewChanges.hintPrev": "Al canvi anterior", - "Common.Views.ReviewChanges.mniFromFile": "Document cap a fitxer", - "Common.Views.ReviewChanges.mniFromStorage": "Document cap a emmagatzematge", - "Common.Views.ReviewChanges.mniFromUrl": "Document cap a enllaç", - "Common.Views.ReviewChanges.mniSettings": "Configuració de la Comparació", + "Common.Views.ReviewChanges.mniFromFile": "Document del fitxer", + "Common.Views.ReviewChanges.mniFromStorage": "Document des de l’emmagatzematge", + "Common.Views.ReviewChanges.mniFromUrl": "Document de l'URL", + "Common.Views.ReviewChanges.mniSettings": "Configuració de comparació", "Common.Views.ReviewChanges.strFast": "Ràpid", - "Common.Views.ReviewChanges.strFastDesc": "Co-edició a temps real. Tots", + "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": "Utilitzeu el botó \"Desar\" per sincronitzar els canvis que vostè i altres feu.", - "Common.Views.ReviewChanges.textEnable": "Activar", - "Common.Views.ReviewChanges.textWarnTrackChanges": "S'activarà el seguiment de canvis per a tots els usuaris amb accés total. La pròxima vegada que algú obri el document, el seguiment de canvis seguirà activat.", - "Common.Views.ReviewChanges.textWarnTrackChangesTitle": "Voleu activar el seguiment de canvis per a tothom?", + "Common.Views.ReviewChanges.textEnable": "Habilitar", + "Common.Views.ReviewChanges.textWarnTrackChanges": "S'activarà el control de canvis per a tots els usuaris amb accés total. La pròxima vegada que algú obri el document, el control de canvis seguirà activat.", + "Common.Views.ReviewChanges.textWarnTrackChangesTitle": "Voleu habilitar el seguiment de canvis per a tothom?", "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.tipCoAuthMode": "Establir el mode de coedició", + "Common.Views.ReviewChanges.tipCommentRem": "Suprimir els comentaris", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "Suprimir els comentaris actuals", "Common.Views.ReviewChanges.tipCommentResolve": "Resoldre els comentaris", - "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Resol els comentaris actuals", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Resoldre els comentaris actuals", "Common.Views.ReviewChanges.tipCompare": "Comparar el document actual amb un altre", - "Common.Views.ReviewChanges.tipHistory": "Mostra l'historial de versions", - "Common.Views.ReviewChanges.tipRejectCurrent": "Rebutjar canvi actual", + "Common.Views.ReviewChanges.tipHistory": "Mostrar l'historial de versions", + "Common.Views.ReviewChanges.tipRejectCurrent": "Rebutjar el 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.tipSharing": "Gestiona els drets d’accés al document", + "Common.Views.ReviewChanges.tipReviewView": "Seleccioneu la manera que voleu que es mostrin els canvis", + "Common.Views.ReviewChanges.tipSetDocLang": "Establir l’idioma del document", + "Common.Views.ReviewChanges.tipSetSpelling": "Revisió ortogràfica", + "Common.Views.ReviewChanges.tipSharing": "Gestioneu 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.txtAcceptAll": "Acceptar tots els canvis", + "Common.Views.ReviewChanges.txtAcceptChanges": "Acceptar els canvis", "Common.Views.ReviewChanges.txtAcceptCurrent": "Acceptar el canvi actual", "Common.Views.ReviewChanges.txtChat": "Xat", "Common.Views.ReviewChanges.txtClose": "Tancar", - "Common.Views.ReviewChanges.txtCoAuthMode": "Mode de Coedició", - "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.txtCommentResolve": "Resol", + "Common.Views.ReviewChanges.txtCoAuthMode": "Mode de coedició", + "Common.Views.ReviewChanges.txtCommentRemAll": "Suprimir tots els comentaris", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Suprimir els comentaris actuals", + "Common.Views.ReviewChanges.txtCommentRemMy": "Suprimir els meus comentaris", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Suprimir els meus comentaris actuals", + "Common.Views.ReviewChanges.txtCommentRemove": "Suprimir", + "Common.Views.ReviewChanges.txtCommentResolve": "Resoldre", "Common.Views.ReviewChanges.txtCommentResolveAll": "Resoldre tots els comentaris", - "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Resol els comentaris actuals", - "Common.Views.ReviewChanges.txtCommentResolveMy": "Resoldre els Meus Comentaris", - "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Resoldre els Meus Comentaris Actuals", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Resoldre els comentaris actuals", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Resoldre els meus comentaris", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Resoldre els meus comentaris actuals", "Common.Views.ReviewChanges.txtCompare": "Comparar", "Common.Views.ReviewChanges.txtDocLang": "Idioma", "Common.Views.ReviewChanges.txtFinal": "S'han acceptat tots el canvis (Previsualitzar)", "Common.Views.ReviewChanges.txtFinalCap": "Final", "Common.Views.ReviewChanges.txtHistory": "Historial de versions", "Common.Views.ReviewChanges.txtMarkup": "Tots els canvis (Edició)", - "Common.Views.ReviewChanges.txtMarkupCap": "Cambis", + "Common.Views.ReviewChanges.txtMarkupCap": "Etiquetatge", "Common.Views.ReviewChanges.txtNext": "Següent", - "Common.Views.ReviewChanges.txtOff": "DESACTIVAT per mi", - "Common.Views.ReviewChanges.txtOffGlobal": "DESACTIVAT per mi i per tothom", - "Common.Views.ReviewChanges.txtOn": "ACTIU per mi", - "Common.Views.ReviewChanges.txtOnGlobal": "ACTIU per mi i per tothom", + "Common.Views.ReviewChanges.txtOff": "DESACTIVAT per a mi", + "Common.Views.ReviewChanges.txtOffGlobal": "DESACTIVAT per a mi i per a tothom", + "Common.Views.ReviewChanges.txtOn": "ACTIU per a mi", + "Common.Views.ReviewChanges.txtOnGlobal": "ACTIU per a mi i per a tothom", "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.txtRejectAll": "Rebutjar tots els canvis", + "Common.Views.ReviewChanges.txtRejectChanges": "Rebutjar els canvis", + "Common.Views.ReviewChanges.txtRejectCurrent": "Rebutjar el canvi actual", "Common.Views.ReviewChanges.txtSharing": "Compartir", - "Common.Views.ReviewChanges.txtSpelling": "Comprovació Ortogràfica", + "Common.Views.ReviewChanges.txtSpelling": "Revisió ortogràfica", "Common.Views.ReviewChanges.txtTurnon": "Control de Canvis", "Common.Views.ReviewChanges.txtView": "Mode de visualització", - "Common.Views.ReviewChangesDialog.textTitle": "Revisar canvis", + "Common.Views.ReviewChangesDialog.textTitle": "Revisar els canvis", "Common.Views.ReviewChangesDialog.txtAccept": "Acceptar", - "Common.Views.ReviewChangesDialog.txtAcceptAll": "Acceptar Tots els Canvis", + "Common.Views.ReviewChangesDialog.txtAcceptAll": "Acceptar tots els canvis", "Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Acceptar el canvi actual", "Common.Views.ReviewChangesDialog.txtNext": "Al canvi següent", "Common.Views.ReviewChangesDialog.txtPrev": "Al canvi anterior", "Common.Views.ReviewChangesDialog.txtReject": "Rebutjar", - "Common.Views.ReviewChangesDialog.txtRejectAll": "Rebutjar Tots els Canvis", - "Common.Views.ReviewChangesDialog.txtRejectCurrent": "Rebutjar Canvi Actual", + "Common.Views.ReviewChangesDialog.txtRejectAll": "Rebutjar tots els canvis", + "Common.Views.ReviewChangesDialog.txtRejectCurrent": "Rebutjar el canvi actual", "Common.Views.ReviewPopover.textAdd": "Afegir", "Common.Views.ReviewPopover.textAddReply": "Afegir una resposta", "Common.Views.ReviewPopover.textCancel": "Cancel·lar", "Common.Views.ReviewPopover.textClose": "Tancar", - "Common.Views.ReviewPopover.textEdit": "Acceptar", - "Common.Views.ReviewPopover.textFollowMove": "Seguir Moure", + "Common.Views.ReviewPopover.textEdit": "D'acord", + "Common.Views.ReviewPopover.textFollowMove": "Seguir el moviment", "Common.Views.ReviewPopover.textMention": "+mention proporcionarà accés al document i enviarà un correu electrònic", "Common.Views.ReviewPopover.textMentionNotify": "+mention notificarà a l'usuari per correu electrònic", - "Common.Views.ReviewPopover.textOpenAgain": "Obriu de nou", - "Common.Views.ReviewPopover.textReply": "Contestar", - "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.ReviewPopover.textOpenAgain": "Torneu-ho a obrir", + "Common.Views.ReviewPopover.textReply": "Respondre", + "Common.Views.ReviewPopover.textResolve": "Resoldre", + "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": "Seleccionar l'origen de les dades", "Common.Views.SignDialog.textBold": "Negreta", "Common.Views.SignDialog.textCertificate": "Certificar", "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.textInputName": "Introduiu el nom del signant", + "Common.Views.SignDialog.textItalic": "Cursiva", + "Common.Views.SignDialog.textNameError": "El nom del signant es pot quedar en blanc.", "Common.Views.SignDialog.textPurpose": "Finalitat de signar aquest document", - "Common.Views.SignDialog.textSelect": "Selecciona", - "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.textSelect": "Seleccionar", + "Common.Views.SignDialog.textSelectImage": "Seleccionar imatge", + "Common.Views.SignDialog.textSignature": "La signatura es veu així", + "Common.Views.SignDialog.textTitle": "Signar el document", + "Common.Views.SignDialog.textUseImage": "o cliqueu 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": "Permetre al signant afegir comentaris al quadre de 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.textInfoTitle": "Títol del signant", + "Common.Views.SignSettingsDialog.textInstructions": "Instruccions per al signant", + "Common.Views.SignSettingsDialog.textShowDate": "Mostrar 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 obligatori", "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.textCopyright": "Símbol del copyright", "Common.Views.SymbolTableDialog.textDCQuote": "Cometes dobles de tancament", - "Common.Views.SymbolTableDialog.textDOQuote": "Obertura de Cotització Doble", + "Common.Views.SymbolTableDialog.textDOQuote": "Dobles cometes d'obertura", "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.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.textQEmSpace": "1/4 Espai llarg", - "Common.Views.SymbolTableDialog.textRange": "Rang", + "Common.Views.SymbolTableDialog.textPilcrow": "Signe de calderó", + "Common.Views.SymbolTableDialog.textQEmSpace": "Espai llarg 1/4 ", + "Common.Views.SymbolTableDialog.textRange": "Interval", "Common.Views.SymbolTableDialog.textRecent": "Símbols utilitzats recentment", - "Common.Views.SymbolTableDialog.textRegistered": "Registre Registrat", + "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.textSection": "Signe de secció", + "Common.Views.SymbolTableDialog.textShortcut": "Tecla de drecera", + "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.UserNameDialog.textDontShow": "No em tornis a preguntar", "Common.Views.UserNameDialog.textLabel": "Etiqueta:", "Common.Views.UserNameDialog.textLabelError": "L'etiqueta no pot estar en blanc.", - "DE.Controllers.LeftMenu.leavePageText": "Es perdran tots els canvis d'aquest document que no s'hagin desat.
Cliqueu a \"Cancel·lar\" i, a continuació, \"Desar\" per desar-los. Cliqueu a \"OK\" per descartar tots els canvis que no s'hagin desat.", + "DE.Controllers.LeftMenu.leavePageText": "Els canvis d'aquest document que no s'hagin desat es perdran.
Cliqueu a \"Cancel·lar\" i, a continuació, \"Desar\" per desar-los. Cliqueu a \"OK\" per descartar tots els canvis que no s'hagin desat.", "DE.Controllers.LeftMenu.newDocumentTitle": "Document sense nom", - "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Avís", - "DE.Controllers.LeftMenu.requestEditRightsText": "Sol·licitant drets d’edició ...", - "DE.Controllers.LeftMenu.textLoadHistory": "Carregant historial de versions...", + "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Advertiment", + "DE.Controllers.LeftMenu.requestEditRightsText": "S'estan sol·licitant drets d’edició ...", + "DE.Controllers.LeftMenu.textLoadHistory": "S'està carregant l'historial de versions...", "DE.Controllers.LeftMenu.textNoTextFound": "No s'han trobat les dades que heu cercat. Ajusteu les opcions de cerca.", - "DE.Controllers.LeftMenu.textReplaceSkipped": "S'ha realitzat la substitució s’ha realitzat. S'han omès {0} ocurrències.", + "DE.Controllers.LeftMenu.textReplaceSkipped": "S'ha realitzat la substitució. S'han omès {0} ocurrències.", "DE.Controllers.LeftMenu.textReplaceSuccess": "S'ha fet la cerca. S'han substituït les coincidències: {0}", - "DE.Controllers.LeftMenu.txtCompatible": "El document es desarà amb el format nou. Podrà utilitzar totes les funcions de l'editor, però podria afectar la disposició del document.
Utilitzeu l'opció 'Compatibilitat' de la configuració avançada si voleu que els fitxers siguin compatibles amb versions anteriors de MS Word.", + "DE.Controllers.LeftMenu.txtCompatible": "El document es desarà amb el format nou. Podreu utilitzar totes les funcions de l'editor, però podria afectar la disposició del document.
Utilitzeu l'opció 'Compatibilitat' de la configuració avançada si voleu que els fitxers siguin compatibles amb versions anteriors de MS Word.", "DE.Controllers.LeftMenu.txtUntitled": "Sense títol", - "DE.Controllers.LeftMenu.warnDownloadAs": "Si continueu guardant en aquest format, es perdran totes les funcions, excepte el text.
Esteu segur que voleu continuar?", - "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Si continueu guardant en aquest format, es podria perdre una mica de la configuració.
Segur que voleu continuar?", - "DE.Controllers.Main.applyChangesTextText": "Carregant canvis...", - "DE.Controllers.Main.applyChangesTitleText": "Carregant Canvis", - "DE.Controllers.Main.convertationTimeoutText": "Conversió fora de temps", - "DE.Controllers.Main.criticalErrorExtText": "Prem \"Acceptar\" per tornar al document.", + "DE.Controllers.LeftMenu.warnDownloadAs": "Si continueu desant en aquest format, es perdran totes les característiques, excepte el text.
Segur que voleu continuar?", + "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Si continueu desant en aquest format, es pot perdre part del format.
Segur que voleu continuar?", + "DE.Controllers.Main.applyChangesTextText": "S'estan carregant els canvis...", + "DE.Controllers.Main.applyChangesTitleText": "S'estan carregant els canvis", + "DE.Controllers.Main.convertationTimeoutText": "S'ha superat el temps de conversió.", + "DE.Controllers.Main.criticalErrorExtText": "Premeu \"Acceptar\" per tornar al document.", "DE.Controllers.Main.criticalErrorTitle": "Error", - "DE.Controllers.Main.downloadErrorText": "Descàrrega fallida.", - "DE.Controllers.Main.downloadMergeText": "Descarregant...", - "DE.Controllers.Main.downloadMergeTitle": "Descarregant", - "DE.Controllers.Main.downloadTextText": "Descarregant document...", - "DE.Controllers.Main.downloadTitleText": "Descarregant Document", - "DE.Controllers.Main.errorAccessDeny": "No teniu permisos per realitzar aquesta acció.
Poseu-vos en contacte amb l'administrador del servidor de documents.", - "DE.Controllers.Main.errorBadImageUrl": "Enllaç de la Imatge Incorrecte", - "DE.Controllers.Main.errorCoAuthoringDisconnect": "S'ha perdut la connexió amb el servidor. El document no es pot editar ara mateix.", + "DE.Controllers.Main.downloadErrorText": "S'ha produït un error en la baixada", + "DE.Controllers.Main.downloadMergeText": "S'està baixant...", + "DE.Controllers.Main.downloadMergeTitle": "S'està baixant", + "DE.Controllers.Main.downloadTextText": "S'està baixant el document...", + "DE.Controllers.Main.downloadTitleText": "S'està baixant el document", + "DE.Controllers.Main.errorAccessDeny": "No teniu permisos per realitzar aquesta acció.
Contacteu amb el vostre administrador del servidor de documents.", + "DE.Controllers.Main.errorBadImageUrl": "L'URL de la imatge no és correcte", + "DE.Controllers.Main.errorCoAuthoringDisconnect": "S'ha perdut la connexió amb el servidor. Ara no es pot editar el document.", "DE.Controllers.Main.errorComboSeries": "Per crear un diagrama combinat, seleccioneu pel cap baix dues sèries de dades.", "DE.Controllers.Main.errorCompare": "La funció de comparació de documents no està disponible durant la coedició.", "DE.Controllers.Main.errorConnectToServer": "No s'ha pogut desar el document. Comproveu la configuració de la connexió o contacteu amb el vostre administrador.
Quan cliqueu el botó \"D'acord\", se us demanarà que descarregueu el document.", - "DE.Controllers.Main.errorDatabaseConnection": "Error extern.
Error de connexió de base de dades. Contacteu amb l'assistència en cas que l'error continuï.", + "DE.Controllers.Main.errorDatabaseConnection": "Error extern.
Error de connexió amb la base de dades. Contacteu amb l'assistència tècnica en cas que l'error continuï.", "DE.Controllers.Main.errorDataEncrypted": "S'han rebut canvis xifrats, que no es poden desxifrar.", - "DE.Controllers.Main.errorDataRange": "Interval de dades incorrecte.", - "DE.Controllers.Main.errorDefaultMessage": "Error codi:%1 ", + "DE.Controllers.Main.errorDataRange": "L'interval de dades no és correcte.", + "DE.Controllers.Main.errorDefaultMessage": "Codi d'error:%1", "DE.Controllers.Main.errorDirectUrl": "Verifiqueu l'enllaç al document.
Aquest enllaç ha de ser un enllaç directe al fitxer per descarregar-lo.", "DE.Controllers.Main.errorEditingDownloadas": "S'ha produït un error mentre es treballava amb el document.
Utilitzeu l'opció \"Baixa com a ...\" per desar la còpia de seguretat del fitxer al disc dur del vostre ordinador.", "DE.Controllers.Main.errorEditingSaveas": "S'ha produït un error mentre es treballava amb el treball amb el document.
Utilitzeu l'opció \"Desar com a ...\" per desar la còpia de seguretat del fitxer al disc dur de l’ordinador.", - "DE.Controllers.Main.errorEmailClient": "No s'ha pogut trobar cap client de correu electrònic", + "DE.Controllers.Main.errorEmailClient": "No s'ha trobat cap client de correu electrònic", "DE.Controllers.Main.errorFilePassProtect": "El fitxer està protegit amb contrasenya i no es pot obrir.", - "DE.Controllers.Main.errorFileSizeExceed": "La mida del fitxer excedeix la limitació establerta pel vostre servidor. Contacteu amb l'administrador del Document Server per obtenir més informació.", + "DE.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ó.", "DE.Controllers.Main.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitzeu l'opció \"Baixa com a\" per desar el fitxer al disc dur de l’ordinador o torneu-ho a provar més endavant.", "DE.Controllers.Main.errorKeyEncrypt": "Descriptor de claus desconegut", - "DE.Controllers.Main.errorKeyExpire": "El descriptor de la clau ha caducat", - "DE.Controllers.Main.errorMailMergeLoadFile": "Ha fallat la càrrega del document. Seleccioneu un fitxer diferent.", - "DE.Controllers.Main.errorMailMergeSaveFile": "Ha fallat la fusió.", - "DE.Controllers.Main.errorProcessSaveResult": "Problemes al Guardar.", + "DE.Controllers.Main.errorKeyExpire": "El descriptor de claus ha caducat", + "DE.Controllers.Main.errorMailMergeLoadFile": "No s'ha pogut carregar el document. Seleccioneu un fitxer diferent.", + "DE.Controllers.Main.errorMailMergeSaveFile": "No s'ha pogut combinar.", + "DE.Controllers.Main.errorProcessSaveResult": "S'ha produït un error en desar.", "DE.Controllers.Main.errorServerVersion": "S'ha actualitzat la versió de l'editor. Es tornarà a carregar la pàgina per aplicar els canvis.", "DE.Controllers.Main.errorSessionAbsolute": "La sessió d’edició del document ha caducat. Torneu a carregar la pàgina.", - "DE.Controllers.Main.errorSessionIdle": "El document fa temps que no s'obre. Torneu a carregar la pàgina.", + "DE.Controllers.Main.errorSessionIdle": "Fa temps que no s'obre el document. Torneu a carregar la pàgina.", "DE.Controllers.Main.errorSessionToken": "S'ha interromput la connexió amb el servidor. Torneu a carregar la pàgina.", "DE.Controllers.Main.errorSetPassword": "No s'ha pogut establir la contrasenya.", - "DE.Controllers.Main.errorStockChart": "Ordre de fila incorrecte. Per crear un gràfic de valors, col·loqueu les dades del full en l’ordre següent:
preu d’obertura, preu màxim, preu mínim, preu de tancament.", - "DE.Controllers.Main.errorSubmit": "L'enviament ha fallat.", + "DE.Controllers.Main.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.", + "DE.Controllers.Main.errorSubmit": "No s'ha pogut enviar.", "DE.Controllers.Main.errorToken": "El testimoni de seguretat del document no s'ha format correctament.
Contacteu amb el vostre administrador del servidor de documents.", "DE.Controllers.Main.errorTokenExpire": "El testimoni de seguretat del document ha caducat.
Contacteu amb el vostre administrador del servidor de documents.", "DE.Controllers.Main.errorUpdateVersion": "S'ha canviat la versió del fitxer. La pàgina es tornarà a carregar.", - "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "La connexió a Internet s'ha restaurat i la versió del fitxer s'ha canviat.
Abans de continuar treballant, heu de descarregar el fitxer o copiar-ne el contingut per assegurar-vos que no es perdi res i, després, tornar a carregar aquesta pàgina.", + "DE.Controllers.Main.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.Controllers.Main.errorUserDrop": "Ara no es pot accedir al fitxer.", "DE.Controllers.Main.errorUsersExceed": "S'ha superat el nombre d’usuaris que permet el vostre pla", - "DE.Controllers.Main.errorViewerDisconnect": "Es perd la connexió. Encara podeu visualitzar el document,
però no podreu descarregar-lo ni imprimir-lo fins que no es restableixi la connexió i es torni a carregar la pàgina.", - "DE.Controllers.Main.leavePageText": "Heu fet canvis en aquest document que no s'ha desat. Cliqueu a \"Continuar en aquesta pàgina\" i, a continuació, \"Desar\" per desar-les. Cliqueu a \"Deixra aquesta pàgina\" per descartar tots els canvis que no s'hagin desat.", - "DE.Controllers.Main.leavePageTextOnClose": "Es perdran tots els canvis d'aquest document que no s'hagin desat.
Cliqueu a \"Cancel·lar\" i, a continuació, \"Desar\" per desar-los. Cliqueu a \"OK\" per descartar tots els canvis no desats.", - "DE.Controllers.Main.loadFontsTextText": "Carregant dades...", - "DE.Controllers.Main.loadFontsTitleText": "Carregant Dades", - "DE.Controllers.Main.loadFontTextText": "Carregant dades...", - "DE.Controllers.Main.loadFontTitleText": "Carregant Dades", - "DE.Controllers.Main.loadImagesTextText": "Carregant imatges...", - "DE.Controllers.Main.loadImagesTitleText": "Carregant Imatges", - "DE.Controllers.Main.loadImageTextText": "Carregant imatge...", - "DE.Controllers.Main.loadImageTitleText": "Carregant Imatge", - "DE.Controllers.Main.loadingDocumentTextText": "Carregant document...", - "DE.Controllers.Main.loadingDocumentTitleText": "Carregant document", - "DE.Controllers.Main.mailMergeLoadFileText": "Carregant l'origen de dades...", - "DE.Controllers.Main.mailMergeLoadFileTitle": "Carregant l'origen de dades", - "DE.Controllers.Main.notcriticalErrorTitle": "Avís", + "DE.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 re-carregar la pàgina.", + "DE.Controllers.Main.leavePageText": "Heu fet canvis en aquest document que no s'han desat. Cliqueu a \"Continuar en aquesta pàgina\" i, a continuació, \"Desar\" per desar-les. Cliqueu a \"Deixar aquesta pàgina\" per descartar tots els canvis que no s'hagin desat.", + "DE.Controllers.Main.leavePageTextOnClose": "Els canvis d'aquest document que no s'hagin desat es perdran.
Cliqueu a \"Cancel·lar\" i, a continuació, \"Desar\" per desar-los. Cliqueu a \"OK\" per descartar tots els canvis no desats.", + "DE.Controllers.Main.loadFontsTextText": "S'estant carregant les dades...", + "DE.Controllers.Main.loadFontsTitleText": "S'estan carregant les dades", + "DE.Controllers.Main.loadFontTextText": "S'estant carregant les dades...", + "DE.Controllers.Main.loadFontTitleText": "S'estan carregant les dades", + "DE.Controllers.Main.loadImagesTextText": "S'estan carregant les imatges...", + "DE.Controllers.Main.loadImagesTitleText": "S'estan carregant les imatges", + "DE.Controllers.Main.loadImageTextText": "S'està carregant la imatge...", + "DE.Controllers.Main.loadImageTitleText": "S'està carregant la imatge", + "DE.Controllers.Main.loadingDocumentTextText": "S'està carregant el document...", + "DE.Controllers.Main.loadingDocumentTitleText": "S'està carregant el document", + "DE.Controllers.Main.mailMergeLoadFileText": "S'està carregant l'origen de dades...", + "DE.Controllers.Main.mailMergeLoadFileTitle": "S'està carregant l'origen de dades", + "DE.Controllers.Main.notcriticalErrorTitle": "Advertiment", "DE.Controllers.Main.openErrorText": "S'ha produït un error en obrir el fitxer.", - "DE.Controllers.Main.openTextText": "Obrint Document...", - "DE.Controllers.Main.openTitleText": "Obrir Document", - "DE.Controllers.Main.printTextText": "Imprimint Document...", - "DE.Controllers.Main.printTitleText": "Imprimir Document", - "DE.Controllers.Main.reloadButtonText": "Recarregar Pàgina", - "DE.Controllers.Main.requestEditFailedMessageText": "Algú està editant aquest document ara mateix. Si us plau, intenta-ho més tard.", + "DE.Controllers.Main.openTextText": "S'està obrint el document...", + "DE.Controllers.Main.openTitleText": "S'està obrint el document", + "DE.Controllers.Main.printTextText": "S'està imprimint el document...", + "DE.Controllers.Main.printTitleText": "S'està imprimint el document", + "DE.Controllers.Main.reloadButtonText": "Recarregar la pàgina", + "DE.Controllers.Main.requestEditFailedMessageText": "Algú té obert ara aquest document. Intenteu-ho més tard.", "DE.Controllers.Main.requestEditFailedTitleText": "Accés denegat", "DE.Controllers.Main.saveErrorText": "S'ha produït un error en desar el fitxer.", "DE.Controllers.Main.saveErrorTextDesktop": "Aquest fitxer no es pot desar o crear.
Les possibles raons són:
1. El fitxer és només de lectura.
2. El fitxer és en aquests moments obert per altres usuaris.
3. El disc és ple o s'ha fet malbé.", - "DE.Controllers.Main.savePreparingText": "Preparant per guardar", - "DE.Controllers.Main.savePreparingTitle": "Preparant per guardar. Si us plau, esperi", - "DE.Controllers.Main.saveTextText": "Desant Document...", - "DE.Controllers.Main.saveTitleText": "Desant Document", + "DE.Controllers.Main.savePreparingText": "S'està preparant per desar", + "DE.Controllers.Main.savePreparingTitle": "S'està preparant per desar. Espereu...", + "DE.Controllers.Main.saveTextText": "S'està desant el document...", + "DE.Controllers.Main.saveTitleText": "S'està desant el document", "DE.Controllers.Main.scriptLoadError": "La connexió és massa lenta, alguns dels components no s’han pogut carregar. Torneu a carregar la pàgina.", - "DE.Controllers.Main.sendMergeText": "S'està enviant la Combinació...", - "DE.Controllers.Main.sendMergeTitle": "S'està enviant la Combinació", + "DE.Controllers.Main.sendMergeText": "S'està enviant la combinació...", + "DE.Controllers.Main.sendMergeTitle": "S'està enviant la combinació", "DE.Controllers.Main.splitDividerErrorText": "El nombre de files ha de ser un divisor de %1.", "DE.Controllers.Main.splitMaxColsErrorText": "El nombre de columnes ha de ser inferior a %1.", "DE.Controllers.Main.splitMaxRowsErrorText": "El nombre de files ha de ser inferior a %1.", "DE.Controllers.Main.textAnonymous": "Anònim", "DE.Controllers.Main.textApplyAll": "Aplicar a totes les equacions", - "DE.Controllers.Main.textBuyNow": "Visiteu el Lloc Web", + "DE.Controllers.Main.textBuyNow": "Visitar el lloc web", "DE.Controllers.Main.textChangesSaved": "S'han desat tots els canvis", "DE.Controllers.Main.textClose": "Tancar", - "DE.Controllers.Main.textCloseTip": "Feu clic per tancar", - "DE.Controllers.Main.textContactUs": "Contacte de Vendes", + "DE.Controllers.Main.textCloseTip": "Cliqueu per tancar el consell", + "DE.Controllers.Main.textContactUs": "Contacteu amb vendes", "DE.Controllers.Main.textConvertEquation": "Aquesta equació es va crear amb una versió antiga de l'editor d'equacions que ja no és compatible. Per editar-la, converteixi l’equació al format d’Office Math ML.
Convertir ara?", - "DE.Controllers.Main.textCustomLoader": "Tingueu en compte que, segons els termes de la llicència, no teniu dret a canviar el carregador.
Consulteu el nostre departament de vendes per obtenir un pressupost.", + "DE.Controllers.Main.textCustomLoader": "Tingueu en compte que, segons els termes de la llicència, no teniu dret per canviar el carregador.
Consulteu el nostre departament de vendes per obtenir un pressupost.", "DE.Controllers.Main.textGuest": "Convidat", "DE.Controllers.Main.textHasMacros": "El fitxer conté macros automàtiques.
Voleu executar les macros?", - "DE.Controllers.Main.textLearnMore": "Aprèn Més", - "DE.Controllers.Main.textLoadingDocument": "Carregant document", + "DE.Controllers.Main.textLearnMore": "Més informació", + "DE.Controllers.Main.textLoadingDocument": "S'està carregant el document", "DE.Controllers.Main.textLongName": "Introduïu un nom que sigui inferior a 128 caràcters.", - "DE.Controllers.Main.textNoLicenseTitle": "Heu arribat al límit de la llicència", + "DE.Controllers.Main.textNoLicenseTitle": "S'ha assolit el límit de llicència", "DE.Controllers.Main.textPaidFeature": "Funció de pagament", "DE.Controllers.Main.textRemember": "Recordar la meva elecció per a tots els fitxers", "DE.Controllers.Main.textRenameError": "El nom d'usuari no pot estar buit.", - "DE.Controllers.Main.textRenameLabel": "Introduïu un nom per a la col·laboració", + "DE.Controllers.Main.textRenameLabel": "Introduïu un nom que s'utilitzarà per a la col·laboració", "DE.Controllers.Main.textShape": "Forma", "DE.Controllers.Main.textStrict": "Mode estricte", "DE.Controllers.Main.textTryUndoRedo": "S'han desactivat les funcions Desfer/Refer per al mode de coedició ràpida. Cliqueu al botó \"Mode estricte\" per canviar al mode de coedició estricte i editar el fitxer sense que hi hagi interferències d'altres usuaris i enviar els vostres canvis un cop els hagueu desat. Podeu canviar entre els modes de coedició mitjançant l'editor \"Paràmetres avançats\".", "DE.Controllers.Main.textTryUndoRedoWarn": "S'han desactivat les funcions Desfer/Refer per al mode de coedició ràpida.", - "DE.Controllers.Main.titleLicenseExp": "Llicència Caducada", + "DE.Controllers.Main.titleLicenseExp": "La llicència ha caducat", "DE.Controllers.Main.titleServerVersion": "S'ha actualitzat l'editor", "DE.Controllers.Main.titleUpdateVersion": "S'ha canviat la versió", - "DE.Controllers.Main.txtAbove": "amunt", + "DE.Controllers.Main.txtAbove": "a dalt", "DE.Controllers.Main.txtArt": "El vostre text aquí", - "DE.Controllers.Main.txtBasicShapes": "Formes Bàsiques", - "DE.Controllers.Main.txtBelow": "abaix", - "DE.Controllers.Main.txtBookmarkError": "Error! Marcador no definit.", + "DE.Controllers.Main.txtBasicShapes": "Formes bàsiques", + "DE.Controllers.Main.txtBelow": "més avall", + "DE.Controllers.Main.txtBookmarkError": "Error! No s'ha definit el marcador.", "DE.Controllers.Main.txtButtons": "Botons", - "DE.Controllers.Main.txtCallouts": "Trucades", + "DE.Controllers.Main.txtCallouts": "Crides", "DE.Controllers.Main.txtCharts": "Gràfics", - "DE.Controllers.Main.txtChoose": "Tria un element", - "DE.Controllers.Main.txtClickToLoad": "Clicar per carregar la imatge", - "DE.Controllers.Main.txtCurrentDocument": "Actual Document", - "DE.Controllers.Main.txtDiagramTitle": "Gràfic Títol", + "DE.Controllers.Main.txtChoose": "Trieu un element", + "DE.Controllers.Main.txtClickToLoad": "Cliqueu per carregar la imatge", + "DE.Controllers.Main.txtCurrentDocument": "Document actual", + "DE.Controllers.Main.txtDiagramTitle": "Títol del gràfic", "DE.Controllers.Main.txtEditingMode": "Establir el mode d'edició ...", "DE.Controllers.Main.txtEndOfFormula": "Final inesperat de la fórmula", "DE.Controllers.Main.txtEnterDate": "Introduïu una data", - "DE.Controllers.Main.txtErrorLoadHistory": "Ha fallat la càrrega de l'historial", + "DE.Controllers.Main.txtErrorLoadHistory": "L'historial no s'ha pogut carregar", "DE.Controllers.Main.txtEvenPage": "Pàgina parell", - "DE.Controllers.Main.txtFiguredArrows": "Fletxes Figurades", - "DE.Controllers.Main.txtFirstPage": "Primera Pàgina", + "DE.Controllers.Main.txtFiguredArrows": "Fletxes figurades", + "DE.Controllers.Main.txtFirstPage": "Primera pàgina", "DE.Controllers.Main.txtFooter": "Peu de pàgina", "DE.Controllers.Main.txtFormulaNotInTable": "La fórmula no és a la taula", "DE.Controllers.Main.txtHeader": "Capçalera", - "DE.Controllers.Main.txtHyperlink": "Hiperenllaç", + "DE.Controllers.Main.txtHyperlink": "Enllaç", "DE.Controllers.Main.txtIndTooLarge": "L'índex es massa gran", "DE.Controllers.Main.txtLines": "Línies", - "DE.Controllers.Main.txtMainDocOnly": "Error! Només document principal.", + "DE.Controllers.Main.txtMainDocOnly": "Error! Només el document principal.", "DE.Controllers.Main.txtMath": "Matemàtiques", - "DE.Controllers.Main.txtMissArg": "Falta Argument", - "DE.Controllers.Main.txtMissOperator": "Falta Operador", + "DE.Controllers.Main.txtMissArg": "Falta l'argument", + "DE.Controllers.Main.txtMissOperator": "Falta l'operador", "DE.Controllers.Main.txtNeedSynchronize": "Teniu actualitzacions", - "DE.Controllers.Main.txtNone": "cap", + "DE.Controllers.Main.txtNone": "Cap", "DE.Controllers.Main.txtNoTableOfContents": "No hi ha cap títol al document. Apliqueu un estil d’encapçalament al text perquè aparegui a la taula de continguts.", - "DE.Controllers.Main.txtNoTableOfFigures": "No s'ha trobat cap entrada a la taula de figures.", - "DE.Controllers.Main.txtNoText": "Error! No hi ha cap text d'estil especificat al document.", - "DE.Controllers.Main.txtNotInTable": "No està en la taula", - "DE.Controllers.Main.txtNotValidBookmark": "Error! No és una autoreferenciació de favorit vàlid.", - "DE.Controllers.Main.txtOddPage": "Pàgina imparell", - "DE.Controllers.Main.txtOnPage": "en la pàgina", + "DE.Controllers.Main.txtNoTableOfFigures": "No s'ha trobat cap entrada a l'índex d'il·lustracions.", + "DE.Controllers.Main.txtNoText": "Error! No hi ha cap text de l'estil especificat al document.", + "DE.Controllers.Main.txtNotInTable": "No hi és a la taula", + "DE.Controllers.Main.txtNotValidBookmark": "Error! No és una autoreferència de marcador vàlida.", + "DE.Controllers.Main.txtOddPage": "Pàgina senar", + "DE.Controllers.Main.txtOnPage": "a la pàgina", "DE.Controllers.Main.txtRectangles": "Rectangles", - "DE.Controllers.Main.txtSameAsPrev": "Igual al Anterior", + "DE.Controllers.Main.txtSameAsPrev": "Igual a l'anterior", "DE.Controllers.Main.txtSection": "-Secció", - "DE.Controllers.Main.txtSeries": "Series", - "DE.Controllers.Main.txtShape_accentBorderCallout1": "Trucada amb línia 1 (vora i barra d'èmfasis)", - "DE.Controllers.Main.txtShape_accentBorderCallout2": "Trucada amb línia 2 (vora i barra d'èmfasis)", - "DE.Controllers.Main.txtShape_accentBorderCallout3": "Trucada amb línia 3 (vora i barra d'èmfasis)", - "DE.Controllers.Main.txtShape_accentCallout1": "Trucada amb línia 1 (barra d'èmfasis)", - "DE.Controllers.Main.txtShape_accentCallout2": "Trucada amb línia 2 (barra d'èmfasis)", - "DE.Controllers.Main.txtShape_accentCallout3": "Trucada amb línia 3 (barra d'èmfasis)", - "DE.Controllers.Main.txtShape_actionButtonBackPrevious": "Botó Enrere o Anterior", + "DE.Controllers.Main.txtSeries": "Sèries", + "DE.Controllers.Main.txtShape_accentBorderCallout1": "Crida amb línia 1 (vora i barra d'èmfasi)", + "DE.Controllers.Main.txtShape_accentBorderCallout2": "Crida amb línia 2 (vora i barra d'èmfasi)", + "DE.Controllers.Main.txtShape_accentBorderCallout3": "Crida amb línia 3 (vora i barra d'èmfasi)", + "DE.Controllers.Main.txtShape_accentCallout1": "Crida amb línia 1 (barra d'èmfasi)", + "DE.Controllers.Main.txtShape_accentCallout2": "Crida amb línia 2 (barra d'èmfasi)", + "DE.Controllers.Main.txtShape_accentCallout3": "Crida amb línia 3 (barra d'èmfasi)", + "DE.Controllers.Main.txtShape_actionButtonBackPrevious": "Endarrere o botó anterior", "DE.Controllers.Main.txtShape_actionButtonBeginning": "Botó d’Inici", "DE.Controllers.Main.txtShape_actionButtonBlank": "Botó en blanc", "DE.Controllers.Main.txtShape_actionButtonDocument": "Botó de document", "DE.Controllers.Main.txtShape_actionButtonEnd": "Botó final", - "DE.Controllers.Main.txtShape_actionButtonForwardNext": "Botó Endavant o Següent", - "DE.Controllers.Main.txtShape_actionButtonHelp": "Botó Ajuda", + "DE.Controllers.Main.txtShape_actionButtonForwardNext": "Botó endavant o següent", + "DE.Controllers.Main.txtShape_actionButtonHelp": "Botó d'ajuda", "DE.Controllers.Main.txtShape_actionButtonHome": "Botó Inici", - "DE.Controllers.Main.txtShape_actionButtonInformation": "Botó Informació", - "DE.Controllers.Main.txtShape_actionButtonMovie": "Botó Vídeo", - "DE.Controllers.Main.txtShape_actionButtonReturn": "Botó de Retorn", - "DE.Controllers.Main.txtShape_actionButtonSound": "Botó de So", + "DE.Controllers.Main.txtShape_actionButtonInformation": "Botó d'informació", + "DE.Controllers.Main.txtShape_actionButtonMovie": "Botó de vídeo", + "DE.Controllers.Main.txtShape_actionButtonReturn": "Botó de retorn", + "DE.Controllers.Main.txtShape_actionButtonSound": "Botó de so", "DE.Controllers.Main.txtShape_arc": "Arc", - "DE.Controllers.Main.txtShape_bentArrow": "Fletxa Doblada", - "DE.Controllers.Main.txtShape_bentConnector5": "Connector del colze", - "DE.Controllers.Main.txtShape_bentConnector5WithArrow": "Connector de fletxa del colze", - "DE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Connector de doble fletxa del colze", - "DE.Controllers.Main.txtShape_bentUpArrow": "Fletxa cap amunt", + "DE.Controllers.Main.txtShape_bentArrow": "Fletxa doblegada", + "DE.Controllers.Main.txtShape_bentConnector5": "Connector angular", + "DE.Controllers.Main.txtShape_bentConnector5WithArrow": "Connector angular de fletxa", + "DE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Connector angular de doble fletxa", + "DE.Controllers.Main.txtShape_bentUpArrow": "Fletxa doblegada cap amunt", "DE.Controllers.Main.txtShape_bevel": "Bisell", "DE.Controllers.Main.txtShape_blockArc": "Arc de bloc", - "DE.Controllers.Main.txtShape_borderCallout1": "Trucada amb línia 1", - "DE.Controllers.Main.txtShape_borderCallout2": "Trucada amb línia 2", - "DE.Controllers.Main.txtShape_borderCallout3": "Trucada amb línia 3", - "DE.Controllers.Main.txtShape_bracePair": "Braça Doble", - "DE.Controllers.Main.txtShape_callout1": "Trucada amb línia 1 (sense vora)", - "DE.Controllers.Main.txtShape_callout2": "Trucada amb línia 2 (sense vora)", - "DE.Controllers.Main.txtShape_callout3": "Trucada amb línia 3 (sense vora)", + "DE.Controllers.Main.txtShape_borderCallout1": "Crida amb línia 1", + "DE.Controllers.Main.txtShape_borderCallout2": "Crida amb línia 2", + "DE.Controllers.Main.txtShape_borderCallout3": "Crida amb línia 3", + "DE.Controllers.Main.txtShape_bracePair": "Clau doble", + "DE.Controllers.Main.txtShape_callout1": "Crida amb línia 1 (sense vora)", + "DE.Controllers.Main.txtShape_callout2": "Crida amb línia 2 (sense vora)", + "DE.Controllers.Main.txtShape_callout3": "Crida amb línia 3 (sense vora)", "DE.Controllers.Main.txtShape_can": "Cilindre", - "DE.Controllers.Main.txtShape_chevron": "Chevron", - "DE.Controllers.Main.txtShape_chord": "Chord", - "DE.Controllers.Main.txtShape_circularArrow": "Fletxa Circular", + "DE.Controllers.Main.txtShape_chevron": "Cometes angulars", + "DE.Controllers.Main.txtShape_chord": "Corda", + "DE.Controllers.Main.txtShape_circularArrow": "Fletxa circular", "DE.Controllers.Main.txtShape_cloud": "Núvol", - "DE.Controllers.Main.txtShape_cloudCallout": "Trucada de Núvol", + "DE.Controllers.Main.txtShape_cloudCallout": "Crida de núvol", "DE.Controllers.Main.txtShape_corner": "Cantonada", "DE.Controllers.Main.txtShape_cube": "Cub", "DE.Controllers.Main.txtShape_curvedConnector3": "Connector corbat", "DE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Connector de fletxa corba", - "DE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Connector de doble fletxa corbat", - "DE.Controllers.Main.txtShape_curvedDownArrow": "Fletxa corba cap avall", - "DE.Controllers.Main.txtShape_curvedLeftArrow": "Fletxa esquerra corba", - "DE.Controllers.Main.txtShape_curvedRightArrow": "Fletxa dreta corba", - "DE.Controllers.Main.txtShape_curvedUpArrow": "Fletxa corba cap amunt", + "DE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Connector de doble fletxa corbada", + "DE.Controllers.Main.txtShape_curvedDownArrow": "Fletxa cap avall corbada", + "DE.Controllers.Main.txtShape_curvedLeftArrow": "Fletxa esquerra corbada", + "DE.Controllers.Main.txtShape_curvedRightArrow": "Fletxa dreta corbada", + "DE.Controllers.Main.txtShape_curvedUpArrow": "Fletxa corbada cap amunt", "DE.Controllers.Main.txtShape_decagon": "Decàgon", - "DE.Controllers.Main.txtShape_diagStripe": "Banda Diagonal", + "DE.Controllers.Main.txtShape_diagStripe": "Banda diagonal", "DE.Controllers.Main.txtShape_diamond": "Diamant", "DE.Controllers.Main.txtShape_dodecagon": "Dodecàgon", - "DE.Controllers.Main.txtShape_donut": "Donut", - "DE.Controllers.Main.txtShape_doubleWave": "Doble ona", + "DE.Controllers.Main.txtShape_donut": "Dònut", + "DE.Controllers.Main.txtShape_doubleWave": "Ona doble", "DE.Controllers.Main.txtShape_downArrow": "Fletxa cap avall", - "DE.Controllers.Main.txtShape_downArrowCallout": "Fletxa avall", + "DE.Controllers.Main.txtShape_downArrowCallout": "Crida de fletxa cap avall", "DE.Controllers.Main.txtShape_ellipse": "El·lipse", "DE.Controllers.Main.txtShape_ellipseRibbon": "Cinta cap avall corbada", - "DE.Controllers.Main.txtShape_ellipseRibbon2": "Cinta corbada", - "DE.Controllers.Main.txtShape_flowChartAlternateProcess": "Diagrama de Flux: Procés Alternatiu", - "DE.Controllers.Main.txtShape_flowChartCollate": "Diagrama de Flux: Collar", - "DE.Controllers.Main.txtShape_flowChartConnector": "Diagrama de Flux: Connector", - "DE.Controllers.Main.txtShape_flowChartDecision": "Diagrama de Flux: Decisió", - "DE.Controllers.Main.txtShape_flowChartDelay": "Diagrama de Flux: Retard", - "DE.Controllers.Main.txtShape_flowChartDisplay": "Diagrama de Flux: Visualització", - "DE.Controllers.Main.txtShape_flowChartDocument": "Diagrama de Flux: Document", - "DE.Controllers.Main.txtShape_flowChartExtract": "Diagrama de Flux: Extracte", - "DE.Controllers.Main.txtShape_flowChartInputOutput": "Diagrama de Flux: Data", - "DE.Controllers.Main.txtShape_flowChartInternalStorage": "Diagrama de Flux: Magatzem Intern", - "DE.Controllers.Main.txtShape_flowChartMagneticDisk": "Diagrama de Flux: Disc Magnètic", - "DE.Controllers.Main.txtShape_flowChartMagneticDrum": "Diagrama de Flux: Accés Directe", - "DE.Controllers.Main.txtShape_flowChartMagneticTape": "Diagrama de Flux: Seqüencial", - "DE.Controllers.Main.txtShape_flowChartManualInput": "Diagrama de Flux: Entrada Manual", - "DE.Controllers.Main.txtShape_flowChartManualOperation": "Diagrama de Flux: Manual", - "DE.Controllers.Main.txtShape_flowChartMerge": "Diagrama de Flux: Combinar", - "DE.Controllers.Main.txtShape_flowChartMultidocument": "Diagrama de Flux: Multi Document", - "DE.Controllers.Main.txtShape_flowChartOffpageConnector": "Diagrama de flux: Connector Fora de Pàgina", - "DE.Controllers.Main.txtShape_flowChartOnlineStorage": "Diagrama de Flux: Dades Emmagatzemades", - "DE.Controllers.Main.txtShape_flowChartOr": "Diagrama de Flux: O", - "DE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Diagrama de flux: Procés Predefinit", - "DE.Controllers.Main.txtShape_flowChartPreparation": "Diagrama de Flux: Preparació", - "DE.Controllers.Main.txtShape_flowChartProcess": "Diagrama de Flux: Procés", - "DE.Controllers.Main.txtShape_flowChartPunchedCard": "Diagrama de Flux: Fitxa", - "DE.Controllers.Main.txtShape_flowChartPunchedTape": "Diagrama de Flux: Cinta Punxada", - "DE.Controllers.Main.txtShape_flowChartSort": "Diagrama de Flux: Ordena", - "DE.Controllers.Main.txtShape_flowChartSummingJunction": "Diagrama de Flux: Resum i Unió", - "DE.Controllers.Main.txtShape_flowChartTerminator": "Diagrama de Flux: Finalització", - "DE.Controllers.Main.txtShape_foldedCorner": "Carpeta Plegada", + "DE.Controllers.Main.txtShape_ellipseRibbon2": "Cinta corbada cap amunt", + "DE.Controllers.Main.txtShape_flowChartAlternateProcess": "Diagrama de flux: procés alternatiu", + "DE.Controllers.Main.txtShape_flowChartCollate": "Diagrama de flux: intercala", + "DE.Controllers.Main.txtShape_flowChartConnector": "Diagrama de flux: connector", + "DE.Controllers.Main.txtShape_flowChartDecision": "Diagrama de flux: decisió", + "DE.Controllers.Main.txtShape_flowChartDelay": "Diagrama de flux: retard", + "DE.Controllers.Main.txtShape_flowChartDisplay": "Diagrama de flux: visualització", + "DE.Controllers.Main.txtShape_flowChartDocument": "Diagrama de flux: document", + "DE.Controllers.Main.txtShape_flowChartExtract": "Diagrama de flux: extracte", + "DE.Controllers.Main.txtShape_flowChartInputOutput": "Diagrama de flux: dades", + "DE.Controllers.Main.txtShape_flowChartInternalStorage": "Diagrama de flux: emmagatzematge intern", + "DE.Controllers.Main.txtShape_flowChartMagneticDisk": "Diagrama de flux: disc magnètic", + "DE.Controllers.Main.txtShape_flowChartMagneticDrum": "Diagrama de flux: accés directe", + "DE.Controllers.Main.txtShape_flowChartMagneticTape": "Diagrama de flux: emmagatzematge d'accés seqüencial", + "DE.Controllers.Main.txtShape_flowChartManualInput": "Diagrama de flux: entrada manual", + "DE.Controllers.Main.txtShape_flowChartManualOperation": "Diagrama de flux: operació manual", + "DE.Controllers.Main.txtShape_flowChartMerge": "Diagrama de flux: combina", + "DE.Controllers.Main.txtShape_flowChartMultidocument": "Diagrama de flux: document múltiple", + "DE.Controllers.Main.txtShape_flowChartOffpageConnector": "Diagrama de flux: connector fora de pàgina", + "DE.Controllers.Main.txtShape_flowChartOnlineStorage": "Diagrama de flux: dades emmagatzemades", + "DE.Controllers.Main.txtShape_flowChartOr": "Diagrama de flux: o", + "DE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Diagrama de flux: procés predefinit", + "DE.Controllers.Main.txtShape_flowChartPreparation": "Diagrama de flux: preparació", + "DE.Controllers.Main.txtShape_flowChartProcess": "Diagrama de flux: procés", + "DE.Controllers.Main.txtShape_flowChartPunchedCard": "Diagrama de flux: fitxa", + "DE.Controllers.Main.txtShape_flowChartPunchedTape": "Diagrama de flux: cinta perforada", + "DE.Controllers.Main.txtShape_flowChartSort": "Diagrama de flux: ordenació", + "DE.Controllers.Main.txtShape_flowChartSummingJunction": "Diagrama de flux: unió de suma", + "DE.Controllers.Main.txtShape_flowChartTerminator": "Diagrama de flux: finalitzador", + "DE.Controllers.Main.txtShape_foldedCorner": "Cantonada plegada", "DE.Controllers.Main.txtShape_frame": "Marc", - "DE.Controllers.Main.txtShape_halfFrame": "Mig Marg", + "DE.Controllers.Main.txtShape_halfFrame": "Mig marc", "DE.Controllers.Main.txtShape_heart": "Cor", "DE.Controllers.Main.txtShape_heptagon": "Heptàgon", "DE.Controllers.Main.txtShape_hexagon": "Hexàgon", @@ -735,14 +735,14 @@ "DE.Controllers.Main.txtShape_irregularSeal1": "Explosió 1", "DE.Controllers.Main.txtShape_irregularSeal2": "Explosió 2", "DE.Controllers.Main.txtShape_leftArrow": "Fletxa esquerra", - "DE.Controllers.Main.txtShape_leftArrowCallout": "Fletxa de flotació esquerra", - "DE.Controllers.Main.txtShape_leftBrace": "Obrir clau", - "DE.Controllers.Main.txtShape_leftBracket": "Obrir claudàtor", + "DE.Controllers.Main.txtShape_leftArrowCallout": "Crida de fletxa a l'esquerra", + "DE.Controllers.Main.txtShape_leftBrace": "Clau d'obertura", + "DE.Controllers.Main.txtShape_leftBracket": "Claudàtor d'obertura", "DE.Controllers.Main.txtShape_leftRightArrow": "Fletxa esquerra i dreta", - "DE.Controllers.Main.txtShape_leftRightArrowCallout": "Fletxa esquerra i dreta", - "DE.Controllers.Main.txtShape_leftRightUpArrow": "Fletxa esquerra, dreta i a dalt", - "DE.Controllers.Main.txtShape_leftUpArrow": "Fletxa esquerra i a dalt", - "DE.Controllers.Main.txtShape_lightningBolt": "Llamp", + "DE.Controllers.Main.txtShape_leftRightArrowCallout": "Crida fletxa esquerra i dreta", + "DE.Controllers.Main.txtShape_leftRightUpArrow": "Fletxa esquerra, dreta i cap amunt", + "DE.Controllers.Main.txtShape_leftUpArrow": "Fletxa esquerra i cap amunt", + "DE.Controllers.Main.txtShape_lightningBolt": "Llampec", "DE.Controllers.Main.txtShape_line": "Línia", "DE.Controllers.Main.txtShape_lineWithArrow": "Fletxa", "DE.Controllers.Main.txtShape_lineWithTwoArrows": "Fletxa doble", @@ -750,38 +750,38 @@ "DE.Controllers.Main.txtShape_mathEqual": "Igual", "DE.Controllers.Main.txtShape_mathMinus": "Menys", "DE.Controllers.Main.txtShape_mathMultiply": "Multiplicar", - "DE.Controllers.Main.txtShape_mathNotEqual": "No igual", + "DE.Controllers.Main.txtShape_mathNotEqual": "No és igual", "DE.Controllers.Main.txtShape_mathPlus": "Més", "DE.Controllers.Main.txtShape_moon": "Lluna", "DE.Controllers.Main.txtShape_noSmoking": "Símbol \"No\"", - "DE.Controllers.Main.txtShape_notchedRightArrow": "Fletxa a la dreta encaixada", - "DE.Controllers.Main.txtShape_octagon": "Octagon", + "DE.Controllers.Main.txtShape_notchedRightArrow": "Fletxa a la dreta oscada", + "DE.Controllers.Main.txtShape_octagon": "Octàgon", "DE.Controllers.Main.txtShape_parallelogram": "Paral·lelograma", "DE.Controllers.Main.txtShape_pentagon": "Pentàgon", - "DE.Controllers.Main.txtShape_pie": "Sector del cercle", - "DE.Controllers.Main.txtShape_plaque": "Firmar", + "DE.Controllers.Main.txtShape_pie": "Gràfic circular", + "DE.Controllers.Main.txtShape_plaque": "Signar", "DE.Controllers.Main.txtShape_plus": "Més", "DE.Controllers.Main.txtShape_polyline1": "Gargot", "DE.Controllers.Main.txtShape_polyline2": "Forma lliure", - "DE.Controllers.Main.txtShape_quadArrow": "Fletxa Quàdruple", - "DE.Controllers.Main.txtShape_quadArrowCallout": "Trucada de Fletxa Quàdruple", + "DE.Controllers.Main.txtShape_quadArrow": "Fletxa quàdruple", + "DE.Controllers.Main.txtShape_quadArrowCallout": "Crida de fletxa quàdruple", "DE.Controllers.Main.txtShape_rect": "Rectangle", - "DE.Controllers.Main.txtShape_ribbon": "Cinta avall", + "DE.Controllers.Main.txtShape_ribbon": "Cinta cap avall", "DE.Controllers.Main.txtShape_ribbon2": "Cinta cap amunt", - "DE.Controllers.Main.txtShape_rightArrow": "Fletxa Dreta", - "DE.Controllers.Main.txtShape_rightArrowCallout": "Trucada de Fletxa a la Dreta", - "DE.Controllers.Main.txtShape_rightBrace": "Tancar Clau", - "DE.Controllers.Main.txtShape_rightBracket": "Tancar Claudàtor", - "DE.Controllers.Main.txtShape_round1Rect": "Rectangle de cantonada rodona", - "DE.Controllers.Main.txtShape_round2DiagRect": "Rectangle cantoner en diagonal rodó", - "DE.Controllers.Main.txtShape_round2SameRect": "Rectangle cantoner del mateix costat", - "DE.Controllers.Main.txtShape_roundRect": "Rectangle cantoner rodó", - "DE.Controllers.Main.txtShape_rtTriangle": "Triangle Rectangle", - "DE.Controllers.Main.txtShape_smileyFace": "Cara Somrient", - "DE.Controllers.Main.txtShape_snip1Rect": "Retallar rectangle de cantonada senzilla", - "DE.Controllers.Main.txtShape_snip2DiagRect": "Retallar rectangle de cantonada diagonal", - "DE.Controllers.Main.txtShape_snip2SameRect": "Retallar Rectangle de la cantonada del mateix costat", - "DE.Controllers.Main.txtShape_snipRoundRect": "Retallar i rondejar rectangle de cantonada senzilla", + "DE.Controllers.Main.txtShape_rightArrow": "Fletxa dreta", + "DE.Controllers.Main.txtShape_rightArrowCallout": "Crida de fletxa dreta", + "DE.Controllers.Main.txtShape_rightBrace": "Clau de tancament", + "DE.Controllers.Main.txtShape_rightBracket": "Claudàtor de tancament", + "DE.Controllers.Main.txtShape_round1Rect": "Rectangle de cantonada única rodona", + "DE.Controllers.Main.txtShape_round2DiagRect": "Rectangle de cantonada diagonal rodona", + "DE.Controllers.Main.txtShape_round2SameRect": "Rectangle de cantonada lateral igual rodona", + "DE.Controllers.Main.txtShape_roundRect": "Rectangle de cantonada arrodonida", + "DE.Controllers.Main.txtShape_rtTriangle": "Triangle rectangle", + "DE.Controllers.Main.txtShape_smileyFace": "Cara somrient", + "DE.Controllers.Main.txtShape_snip1Rect": "Rectangle de cantonada única retallada", + "DE.Controllers.Main.txtShape_snip2DiagRect": "Rectangle de cantonada diagonal retallada", + "DE.Controllers.Main.txtShape_snip2SameRect": "Rectangle de cantonada retallada del mateix costat", + "DE.Controllers.Main.txtShape_snipRoundRect": "Rectangle amb cantonades rodones i retallades", "DE.Controllers.Main.txtShape_spline": "Corba", "DE.Controllers.Main.txtShape_star10": "Estrella de 10 puntes", "DE.Controllers.Main.txtShape_star12": "Estrella de 12 puntes", @@ -794,24 +794,24 @@ "DE.Controllers.Main.txtShape_star7": "Estrella de 7 puntes", "DE.Controllers.Main.txtShape_star8": "Estrella de 8 puntes", "DE.Controllers.Main.txtShape_stripedRightArrow": "Fletxa a la dreta amb bandes", - "DE.Controllers.Main.txtShape_sun": "Sol", + "DE.Controllers.Main.txtShape_sun": "dg.", "DE.Controllers.Main.txtShape_teardrop": "Llàgrima", "DE.Controllers.Main.txtShape_textRect": "Quadre de text", "DE.Controllers.Main.txtShape_trapezoid": "Trapezi", "DE.Controllers.Main.txtShape_triangle": "Triangle", "DE.Controllers.Main.txtShape_upArrow": "Fletxa amunt", - "DE.Controllers.Main.txtShape_upArrowCallout": "Trucada de fletxa cap amunt", + "DE.Controllers.Main.txtShape_upArrowCallout": "Crida de fletxa amunt", "DE.Controllers.Main.txtShape_upDownArrow": "Fletxa cap amunt i cap avall", "DE.Controllers.Main.txtShape_uturnArrow": "Fletxa en U", "DE.Controllers.Main.txtShape_verticalScroll": "Desplaçament vertical", "DE.Controllers.Main.txtShape_wave": "Ona", - "DE.Controllers.Main.txtShape_wedgeEllipseCallout": "Trucada ovalada", - "DE.Controllers.Main.txtShape_wedgeRectCallout": "Trucada rectangular", - "DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Llibre rectangular de punt rodó", - "DE.Controllers.Main.txtStarsRibbons": "Estrelles i Cintes", - "DE.Controllers.Main.txtStyle_Caption": "Subtítol", - "DE.Controllers.Main.txtStyle_endnote_text": "Text de nota final", - "DE.Controllers.Main.txtStyle_footnote_text": "Tex Peu de Pàgina", + "DE.Controllers.Main.txtShape_wedgeEllipseCallout": "Crida oval", + "DE.Controllers.Main.txtShape_wedgeRectCallout": "Crida rectangular", + "DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Crida rectangular arrodonida", + "DE.Controllers.Main.txtStarsRibbons": "Estrelles i cintes", + "DE.Controllers.Main.txtStyle_Caption": "Llegenda", + "DE.Controllers.Main.txtStyle_endnote_text": "Text de nota al final", + "DE.Controllers.Main.txtStyle_footnote_text": "Text de nota a peu de pàgina", "DE.Controllers.Main.txtStyle_Heading_1": "Títol 1", "DE.Controllers.Main.txtStyle_Heading_2": "Títol 2", "DE.Controllers.Main.txtStyle_Heading_3": "Títol 3", @@ -821,81 +821,81 @@ "DE.Controllers.Main.txtStyle_Heading_7": "Títol 7", "DE.Controllers.Main.txtStyle_Heading_8": "Títol 8", "DE.Controllers.Main.txtStyle_Heading_9": "Títol 9", - "DE.Controllers.Main.txtStyle_Intense_Quote": "Cita Seleccionada", - "DE.Controllers.Main.txtStyle_List_Paragraph": "Paràgraf de la Llista", - "DE.Controllers.Main.txtStyle_No_Spacing": "Sense Espais", + "DE.Controllers.Main.txtStyle_Intense_Quote": "Cita intensa", + "DE.Controllers.Main.txtStyle_List_Paragraph": "Paràgraf de llista", + "DE.Controllers.Main.txtStyle_No_Spacing": "Sense espaiat", "DE.Controllers.Main.txtStyle_Normal": "Normal", "DE.Controllers.Main.txtStyle_Quote": "Cita", "DE.Controllers.Main.txtStyle_Subtitle": "Subtítol", "DE.Controllers.Main.txtStyle_Title": "Títol", - "DE.Controllers.Main.txtSyntaxError": "Error de Sintaxis", + "DE.Controllers.Main.txtSyntaxError": "Error de sintaxi", "DE.Controllers.Main.txtTableInd": "L'índex de la taula no pot ser zero", "DE.Controllers.Main.txtTableOfContents": "Taula de continguts", - "DE.Controllers.Main.txtTableOfFigures": "Taula de figures", + "DE.Controllers.Main.txtTableOfFigures": "Índex d'il·lustracions", "DE.Controllers.Main.txtTOCHeading": "Capçalera de la taula de continguts", - "DE.Controllers.Main.txtTooLarge": "El número es massa gran per donar-l'hi format", + "DE.Controllers.Main.txtTooLarge": "Número massa gran per atorgar-li format", "DE.Controllers.Main.txtTypeEquation": "Escriviu una equació aquí.", "DE.Controllers.Main.txtUndefBookmark": "Marcador no definit", "DE.Controllers.Main.txtXAxis": "Eix X", "DE.Controllers.Main.txtYAxis": "Eix Y", - "DE.Controllers.Main.txtZeroDivide": "Divideix zero", + "DE.Controllers.Main.txtZeroDivide": "Divisió entre zero", "DE.Controllers.Main.unknownErrorText": "Error desconegut.", "DE.Controllers.Main.unsupportedBrowserErrorText": "El vostre navegador no és compatible.", "DE.Controllers.Main.uploadDocExtMessage": "Format de document desconegut.", - "DE.Controllers.Main.uploadDocFileCountMessage": "No hi ha documents pujats", - "DE.Controllers.Main.uploadDocSizeMessage": "Superat el límit màxim del document.", + "DE.Controllers.Main.uploadDocFileCountMessage": "No s'ha carregat cap document.", + "DE.Controllers.Main.uploadDocSizeMessage": "S'ha superat el límit màxim del document.", "DE.Controllers.Main.uploadImageExtMessage": "Format d'imatge desconegut.", - "DE.Controllers.Main.uploadImageFileCountMessage": "Cap imatge carregada.", + "DE.Controllers.Main.uploadImageFileCountMessage": "No s'ha carregat cap imatge.", "DE.Controllers.Main.uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB.", "DE.Controllers.Main.uploadImageTextText": "S'està carregant la imatge...", "DE.Controllers.Main.uploadImageTitleText": "S'està carregant la imatge", - "DE.Controllers.Main.waitText": "Si us plau, esperi...", - "DE.Controllers.Main.warnBrowserIE9": "L’aplicació té baixes capacitats en IE9. Utilitzeu IE10 o superior", - "DE.Controllers.Main.warnBrowserZoom": "La configuració de zoom actual del navegador no és totalment compatible. Restabliu el zoom per defecte prement Ctrl+0.", - "DE.Controllers.Main.warnLicenseExceeded": "Heu assolit el límit de connexions simultànies amb% 1 editors. Aquest document només s'obrirà per visualitzar-lo.
Contacteu amb l'administrador per obtenir més informació.", - "DE.Controllers.Main.warnLicenseExp": "La seva llicencia ha caducat.
Si us plau, actualitzi la llicencia i recarregui la pàgina.", - "DE.Controllers.Main.warnLicenseLimitedNoAccess": "La llicència ha caducat.
No teniu accés a la funcionalitat d'edició de documents.
Si us plau, contacteu amb l'administrador.", - "DE.Controllers.Main.warnLicenseLimitedRenewed": "Cal renovar la llicència.
Teniu un accés limitat a la funcionalitat d'edició de documents.
Contacteu amb l'administrador per obtenir accés complet", - "DE.Controllers.Main.warnLicenseUsersExceeded": "Heu arribat al límit d'usuaris per a %1 editors. Contacteu amb el vostre administrador per saber-ne més.", - "DE.Controllers.Main.warnNoLicense": "Heu assolit el límit de connexions simultànies amb% 1 editors. Aquest document només s'obrirà per visualitzar-lo.
Contacteu amb l'equip de vendes de% 1 per obtenir les condicions de millora personals del vostre servei.", + "DE.Controllers.Main.waitText": "Espereu...", + "DE.Controllers.Main.warnBrowserIE9": "L’aplicació té poca capacitat en IE9. Utilitzeu IE10 o superior", + "DE.Controllers.Main.warnBrowserZoom": "La configuració de zoom actual del navegador no és totalment compatible. Restabliu el zoom per defecte tot prement Ctrl+0.", + "DE.Controllers.Main.warnLicenseExceeded": "Heu assolit el límit de connexions simultànies amb% 1 editors. Aquest document només s'obrirà en mode lectura.
Contacteu amb l'administrador per obtenir més informació.", + "DE.Controllers.Main.warnLicenseExp": "La vostra llicència ha caducat.
Actualitzeu la llicència i recarregueu la pàgina.", + "DE.Controllers.Main.warnLicenseLimitedNoAccess": "La llicència ha caducat.
No teniu accés a la funció d'edició de documents.
Contacteu amb el vostre administrador.", + "DE.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", + "DE.Controllers.Main.warnLicenseUsersExceeded": "Heu arribat al límit d'usuari per a %1 editors. Contacteu amb el vostre administrador per a més informació.", + "DE.Controllers.Main.warnNoLicense": "Heu assolit el límit de connexions simultànies amb% 1 editors. Aquest document només s'obrirà en mode lectura.
Contacteu amb l'equip de vendes de% 1 per obtenir les condicions de millora personals del vostre servei.", "DE.Controllers.Main.warnNoLicenseUsers": "Heu arribat al límit d'usuaris per a% 1 editors. Contacteu amb l'equip de vendes de% 1 per obtenir les condicions de millor personals dels vostres serveis.", "DE.Controllers.Main.warnProcessRightsChange": "No teniu permís per editar el fitxer.", "DE.Controllers.Navigation.txtBeginning": "Inici del document", "DE.Controllers.Navigation.txtGotoBeginning": "Anar al començament del document", - "DE.Controllers.Statusbar.textHasChanges": "S'han fet un seguiment de nous canvis", - "DE.Controllers.Statusbar.textSetTrackChanges": "Esteu en mode de seguiment de canvis", - "DE.Controllers.Statusbar.textTrackChanges": "El document s'obre amb el mode de Seguiment de Canvis activat", + "DE.Controllers.Statusbar.textHasChanges": "S'han fet un seguiment dels canvis nous", + "DE.Controllers.Statusbar.textSetTrackChanges": "Esteu en mode de control de canvis", + "DE.Controllers.Statusbar.textTrackChanges": "El document s'ha obert amb el mode de seguiment de canvis activat", "DE.Controllers.Statusbar.tipReview": "Control de Canvis", "DE.Controllers.Statusbar.zoomText": "Zoom {0}%", "DE.Controllers.Toolbar.confirmAddFontName": "El tipus de lletra que desareu no està disponible al dispositiu actual.
L'estil de text es mostrarà amb un dels tipus de lletra del sistema, el tipus de lletra desat s'utilitzarà quan estigui disponible.
Voleu continuar ?", - "DE.Controllers.Toolbar.notcriticalErrorTitle": "Avís", + "DE.Controllers.Toolbar.notcriticalErrorTitle": "Advertiment", "DE.Controllers.Toolbar.textAccent": "Accents", - "DE.Controllers.Toolbar.textBracket": "Claudàtor", - "DE.Controllers.Toolbar.textEmptyImgUrl": "Cal especificar l’enllaç de la imatge.", + "DE.Controllers.Toolbar.textBracket": "Claudàtors", + "DE.Controllers.Toolbar.textEmptyImgUrl": "Cal especificar l'URL de la imatge.", "DE.Controllers.Toolbar.textFontSizeErr": "El valor introduït no és correcte.
Introduïu un valor numèric entre 1 i 300.", "DE.Controllers.Toolbar.textFraction": "Fraccions", "DE.Controllers.Toolbar.textFunction": "Funcions", "DE.Controllers.Toolbar.textGroup": "Grup", - "DE.Controllers.Toolbar.textInsert": "Inserta", + "DE.Controllers.Toolbar.textInsert": "Inserir", "DE.Controllers.Toolbar.textIntegral": "Integrals", - "DE.Controllers.Toolbar.textLargeOperator": "Operadors Grans", - "DE.Controllers.Toolbar.textLimitAndLog": "Límit i Logaritmes", + "DE.Controllers.Toolbar.textLargeOperator": "Operadors grans", + "DE.Controllers.Toolbar.textLimitAndLog": "Límit i logaritmes", "DE.Controllers.Toolbar.textMatrix": "Matrius", "DE.Controllers.Toolbar.textOperator": "Operadors", "DE.Controllers.Toolbar.textRadical": "Radicals", - "DE.Controllers.Toolbar.textScript": "Lletres", + "DE.Controllers.Toolbar.textScript": "Scripts", "DE.Controllers.Toolbar.textSymbols": "Símbols", "DE.Controllers.Toolbar.textTabForms": "Formularis", - "DE.Controllers.Toolbar.textWarning": "Avís", + "DE.Controllers.Toolbar.textWarning": "Advertiment", "DE.Controllers.Toolbar.txtAccent_Accent": "Agut", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Fletxa dreta-esquerra superior", - "DE.Controllers.Toolbar.txtAccent_ArrowL": "Fletxa superior cap a esquerra", - "DE.Controllers.Toolbar.txtAccent_ArrowR": "Fletxa superior cap a dreta", + "DE.Controllers.Toolbar.txtAccent_ArrowL": "Fletxa esquerra a sobre", + "DE.Controllers.Toolbar.txtAccent_ArrowR": "Fletxa dreta a sobre", "DE.Controllers.Toolbar.txtAccent_Bar": "Barra", "DE.Controllers.Toolbar.txtAccent_BarBot": "Barra subjacent", "DE.Controllers.Toolbar.txtAccent_BarTop": "Barra superposada", - "DE.Controllers.Toolbar.txtAccent_BorderBox": "Fórmula a celda (amb el marcador de posició)", - "DE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Fórmula a celda (exemple)", + "DE.Controllers.Toolbar.txtAccent_BorderBox": "Fórmula emmarcada (amb contenidor)", + "DE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Fórmula emmarcada (exemple)", "DE.Controllers.Toolbar.txtAccent_Check": "Comprovar", "DE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Clau subjacent", "DE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Clau superposada", @@ -904,107 +904,107 @@ "DE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR i amb barra sobreposada", "DE.Controllers.Toolbar.txtAccent_DDDot": "Tres punts", "DE.Controllers.Toolbar.txtAccent_DDot": "Doble punt", - "DE.Controllers.Toolbar.txtAccent_Dot": "Dot", + "DE.Controllers.Toolbar.txtAccent_Dot": "Punt", "DE.Controllers.Toolbar.txtAccent_DoubleBar": "Doble barra superior", - "DE.Controllers.Toolbar.txtAccent_Grave": "Grava", - "DE.Controllers.Toolbar.txtAccent_GroupBot": "Agrupant el caràcter de sota", - "DE.Controllers.Toolbar.txtAccent_GroupTop": "Agrupació del caràcter anterior", - "DE.Controllers.Toolbar.txtAccent_HarpoonL": "Arpon cap a l'esquerra per sobre", - "DE.Controllers.Toolbar.txtAccent_HarpoonR": "Arpon superior cap a dreta", - "DE.Controllers.Toolbar.txtAccent_Hat": "Dalt", - "DE.Controllers.Toolbar.txtAccent_Smile": "Accent breu", - "DE.Controllers.Toolbar.txtAccent_Tilde": "Tilde", - "DE.Controllers.Toolbar.txtBracket_Angle": "Claudàtor", - "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Claudàtor amb separadors", - "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Claudàtor amb separadors", - "DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Claudàtor Únic", - "DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Claudàtor Únic", - "DE.Controllers.Toolbar.txtBracket_Curve": "Claudàtor", - "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Claudàtor amb separadors", - "DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Claudàtor Únic", - "DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Claudàtor Únic", - "DE.Controllers.Toolbar.txtBracket_Custom_1": "Casos (dos condicions)", + "DE.Controllers.Toolbar.txtAccent_Grave": "Accent greu", + "DE.Controllers.Toolbar.txtAccent_GroupBot": "Caràcter d'agrupament a sota", + "DE.Controllers.Toolbar.txtAccent_GroupTop": "Caràcter d'agrupament a sobre", + "DE.Controllers.Toolbar.txtAccent_HarpoonL": "Arpó esquerre a sobre", + "DE.Controllers.Toolbar.txtAccent_HarpoonR": "Arpó dret a sobre", + "DE.Controllers.Toolbar.txtAccent_Hat": "Circumflex", + "DE.Controllers.Toolbar.txtAccent_Smile": "Breu", + "DE.Controllers.Toolbar.txtAccent_Tilde": "Titlla", + "DE.Controllers.Toolbar.txtBracket_Angle": "Claudàtors", + "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Claudàtors amb separadors", + "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Claudàtors amb separadors", + "DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Claudàtor únic", + "DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Claudàtor únic", + "DE.Controllers.Toolbar.txtBracket_Curve": "Claudàtors", + "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Claudàtors amb separadors", + "DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Claudàtor únic", + "DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Claudàtor únic", + "DE.Controllers.Toolbar.txtBracket_Custom_1": "Casos (dues condicions)", "DE.Controllers.Toolbar.txtBracket_Custom_2": "Casos (tres condicions)", "DE.Controllers.Toolbar.txtBracket_Custom_3": "Objecte apilat", "DE.Controllers.Toolbar.txtBracket_Custom_4": "Objecte apilat", - "DE.Controllers.Toolbar.txtBracket_Custom_5": "Casos exemple", + "DE.Controllers.Toolbar.txtBracket_Custom_5": "Exemple de casos", "DE.Controllers.Toolbar.txtBracket_Custom_6": "Coeficient binomial", "DE.Controllers.Toolbar.txtBracket_Custom_7": "Coeficient binomial", - "DE.Controllers.Toolbar.txtBracket_Line": "Claudàtor", - "DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Claudàtor Únic", - "DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Claudàtor Únic", - "DE.Controllers.Toolbar.txtBracket_LineDouble": "Claudàtor", - "DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Claudàtor Únic", - "DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Claudàtor Únic", - "DE.Controllers.Toolbar.txtBracket_LowLim": "Claudàtor", - "DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Claudàtor Únic", - "DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Claudàtor Únic", - "DE.Controllers.Toolbar.txtBracket_Round": "Claudàtor", + "DE.Controllers.Toolbar.txtBracket_Line": "Claudàtors", + "DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Claudàtor únic", + "DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Claudàtor únic", + "DE.Controllers.Toolbar.txtBracket_LineDouble": "Claudàtors", + "DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Claudàtor únic", + "DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Claudàtor únic", + "DE.Controllers.Toolbar.txtBracket_LowLim": "Claudàtors", + "DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Claudàtor únic", + "DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Claudàtor únic", + "DE.Controllers.Toolbar.txtBracket_Round": "Claudàtors", "DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Claudàtor amb separadors", - "DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Claudàtor Únic", - "DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Claudàtor Únic", - "DE.Controllers.Toolbar.txtBracket_Square": "Claudàtor", - "DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Claudàtor", - "DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Claudàtor", - "DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Claudàtor Únic", - "DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Claudàtor Únic", - "DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Claudàtor", - "DE.Controllers.Toolbar.txtBracket_SquareDouble": "Claudàtor", - "DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Claudàtor Únic", - "DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Claudàtor Únic", - "DE.Controllers.Toolbar.txtBracket_UppLim": "Claudàtor", - "DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Claudàtor Únic", - "DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Claudàtor Únic", + "DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Claudàtor únic", + "DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Claudàtor únic", + "DE.Controllers.Toolbar.txtBracket_Square": "Claudàtors", + "DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Claudàtors", + "DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Claudàtors", + "DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Claudàtor únic", + "DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Claudàtor únic", + "DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Claudàtors", + "DE.Controllers.Toolbar.txtBracket_SquareDouble": "Claudàtors", + "DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Claudàtor únic", + "DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Claudàtor únic", + "DE.Controllers.Toolbar.txtBracket_UppLim": "Claudàtors", + "DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Claudàtor únic", + "DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Claudàtor únic", "DE.Controllers.Toolbar.txtFractionDiagonal": "Fracció inclinada", "DE.Controllers.Toolbar.txtFractionDifferential_1": "Diferencial", "DE.Controllers.Toolbar.txtFractionDifferential_2": "Diferencial", "DE.Controllers.Toolbar.txtFractionDifferential_3": "Diferencial", "DE.Controllers.Toolbar.txtFractionDifferential_4": "Diferencial", "DE.Controllers.Toolbar.txtFractionHorizontal": "Fracció lineal", - "DE.Controllers.Toolbar.txtFractionPi_2": "Pi dividit a 2", + "DE.Controllers.Toolbar.txtFractionPi_2": "Pi sobre 2", "DE.Controllers.Toolbar.txtFractionSmall": "Fracció petita", "DE.Controllers.Toolbar.txtFractionVertical": "Fracció apilada", - "DE.Controllers.Toolbar.txtFunction_1_Cos": "Funció de cosinus inversa", - "DE.Controllers.Toolbar.txtFunction_1_Cosh": "Funció hiperbòlica del cosinus invers", - "DE.Controllers.Toolbar.txtFunction_1_Cot": "Funció de cotangent inversa", - "DE.Controllers.Toolbar.txtFunction_1_Coth": "Funció cotangent inversa hiperbòlic", - "DE.Controllers.Toolbar.txtFunction_1_Csc": "Funció de cosecant inversa", + "DE.Controllers.Toolbar.txtFunction_1_Cos": "Funció cosinus inversa", + "DE.Controllers.Toolbar.txtFunction_1_Cosh": "Funció cosinus inversa hiperbòlica", + "DE.Controllers.Toolbar.txtFunction_1_Cot": "Funció cotangent inversa", + "DE.Controllers.Toolbar.txtFunction_1_Coth": "Funció cotangent inversa hiperbòlica", + "DE.Controllers.Toolbar.txtFunction_1_Csc": "Funció cosecant inversa", "DE.Controllers.Toolbar.txtFunction_1_Csch": "Funció cosecant inversa hiperbòlica", - "DE.Controllers.Toolbar.txtFunction_1_Sec": "Funció de secant inversa", - "DE.Controllers.Toolbar.txtFunction_1_Sech": "Funció secant hiperbòlica", + "DE.Controllers.Toolbar.txtFunction_1_Sec": "Funció secant inversa", + "DE.Controllers.Toolbar.txtFunction_1_Sech": "Funció secant inversa hiperbòlica", "DE.Controllers.Toolbar.txtFunction_1_Sin": "Funció sinus inversa", - "DE.Controllers.Toolbar.txtFunction_1_Sinh": "Funció hiperbòlica del seno invers", - "DE.Controllers.Toolbar.txtFunction_1_Tan": "Funció de tangent inversa", + "DE.Controllers.Toolbar.txtFunction_1_Sinh": "Funció de sinus invers hiperbòlic", + "DE.Controllers.Toolbar.txtFunction_1_Tan": "Funció tangent inversa", "DE.Controllers.Toolbar.txtFunction_1_Tanh": "Funció tangent inversa hiperbòlica", - "DE.Controllers.Toolbar.txtFunction_Cos": "Funció cosina", - "DE.Controllers.Toolbar.txtFunction_Cosh": "Funció del cosin hiperbòlic", + "DE.Controllers.Toolbar.txtFunction_Cos": "Funció cosinus", + "DE.Controllers.Toolbar.txtFunction_Cosh": "Funció cosinus hiperbòlica", "DE.Controllers.Toolbar.txtFunction_Cot": "Funció cotangent", - "DE.Controllers.Toolbar.txtFunction_Coth": "Funció cotangent hiperbòlic", + "DE.Controllers.Toolbar.txtFunction_Coth": "Funció cotangent hiperbòlica", "DE.Controllers.Toolbar.txtFunction_Csc": "Funció cosecant", - "DE.Controllers.Toolbar.txtFunction_Csch": "Funció cosecant hiperbòlic", - "DE.Controllers.Toolbar.txtFunction_Custom_1": "Sinus Zeta", + "DE.Controllers.Toolbar.txtFunction_Csch": "Funció cosecant hiperbòlica", + "DE.Controllers.Toolbar.txtFunction_Custom_1": "Sinus de zeta", "DE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", - "DE.Controllers.Toolbar.txtFunction_Custom_3": "Formula de Tangent", + "DE.Controllers.Toolbar.txtFunction_Custom_3": "Formula de tangent", "DE.Controllers.Toolbar.txtFunction_Sec": "Funció secant", - "DE.Controllers.Toolbar.txtFunction_Sech": "Funció secant hiperbòlic", - "DE.Controllers.Toolbar.txtFunction_Sin": "Funció Sinus", - "DE.Controllers.Toolbar.txtFunction_Sinh": "Funció sinusoïdal hiperbòlica", - "DE.Controllers.Toolbar.txtFunction_Tan": "Funció Tangent", - "DE.Controllers.Toolbar.txtFunction_Tanh": "Funció tangent hiperbòlic", + "DE.Controllers.Toolbar.txtFunction_Sech": "Funció secant hiperbòlica", + "DE.Controllers.Toolbar.txtFunction_Sin": "Funció de sinus", + "DE.Controllers.Toolbar.txtFunction_Sinh": "Funció de sinus hiperbòlica", + "DE.Controllers.Toolbar.txtFunction_Tan": "Funció tangent", + "DE.Controllers.Toolbar.txtFunction_Tanh": "Funció tangent hiperbòlica", "DE.Controllers.Toolbar.txtIntegral": "Integral", - "DE.Controllers.Toolbar.txtIntegral_dtheta": "Theta diferencial", + "DE.Controllers.Toolbar.txtIntegral_dtheta": "Diferencial theta", "DE.Controllers.Toolbar.txtIntegral_dx": "Diferencial x", "DE.Controllers.Toolbar.txtIntegral_dy": "Diferencial y", "DE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integral", - "DE.Controllers.Toolbar.txtIntegralDouble": "Doble integral", - "DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Doble integral", - "DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Doble integral", - "DE.Controllers.Toolbar.txtIntegralOriented": "Contorn integral", - "DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Contorn integral", + "DE.Controllers.Toolbar.txtIntegralDouble": "Integral doble", + "DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Integral doble", + "DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Integral doble", + "DE.Controllers.Toolbar.txtIntegralOriented": "Integral de contorn", + "DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Integral de contorn", "DE.Controllers.Toolbar.txtIntegralOrientedDouble": "Integral de superfície", "DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Integral de superfície", "DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Integral de superfície", - "DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Contorn integral", + "DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Integral de contorn", "DE.Controllers.Toolbar.txtIntegralOrientedTriple": "Volum integral", "DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Volum integral", "DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Volum integral", @@ -1022,9 +1022,9 @@ "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Coproducte", "DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Coproducte", "DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Coproducte", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Suma", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Suma", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Suma", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Sumatori", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Sumatori", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Sumatori", "DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Producte", "DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Unió", "DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Lletra V", @@ -1042,11 +1042,11 @@ "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Producte", "DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Producte", "DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Producte", - "DE.Controllers.Toolbar.txtLargeOperator_Sum": "Suma", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Suma", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Suma", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Suma", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Suma", + "DE.Controllers.Toolbar.txtLargeOperator_Sum": "Sumatori", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Sumatori", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Sumatori", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Sumatori", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Sumatori", "DE.Controllers.Toolbar.txtLargeOperator_Union": "Unió", "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Unió", "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Unió", @@ -1061,63 +1061,63 @@ "DE.Controllers.Toolbar.txtLimitLog_Max": "Màxim", "DE.Controllers.Toolbar.txtLimitLog_Min": "Mínim", "DE.Controllers.Toolbar.txtMarginsH": "Els marges superior i inferior són massa alts per a una alçada de pàgina determinada", - "DE.Controllers.Toolbar.txtMarginsW": "Els marges esquerre i dret són massa amplis per a un ample de pàgina determinat", - "DE.Controllers.Toolbar.txtMatrix_1_2": "1x2 matriu buida", - "DE.Controllers.Toolbar.txtMatrix_1_3": "1x3 matriu buida", - "DE.Controllers.Toolbar.txtMatrix_2_1": "2x1 matriu buida", - "DE.Controllers.Toolbar.txtMatrix_2_2": "2x2 matriu buida", + "DE.Controllers.Toolbar.txtMarginsW": "Els marges esquerre i dret són massa amples per a una amplada de pàgina determinada", + "DE.Controllers.Toolbar.txtMatrix_1_2": "Matriu buida 1x2 ", + "DE.Controllers.Toolbar.txtMatrix_1_3": "Matriu buida 1x3 ", + "DE.Controllers.Toolbar.txtMatrix_2_1": "Matriu buida 2x1", + "DE.Controllers.Toolbar.txtMatrix_2_2": "Matriu buida 2x2", "DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Matriu buida amb claudàtors", "DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Matriu buida amb claudàtors", "DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Matriu buida amb claudàtors", "DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Matriu buida amb claudàtors", - "DE.Controllers.Toolbar.txtMatrix_2_3": "2x3 matriu buida", + "DE.Controllers.Toolbar.txtMatrix_2_3": "Matriu buida 2x3 ", "DE.Controllers.Toolbar.txtMatrix_3_1": "Matriu buida 3x1", "DE.Controllers.Toolbar.txtMatrix_3_2": "Matriu buida 3x2", "DE.Controllers.Toolbar.txtMatrix_3_3": "Matriu buida 3x3", - "DE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Punts Subíndexs", - "DE.Controllers.Toolbar.txtMatrix_Dots_Center": "Punts en línia mitja", - "DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Punts en diagonal", + "DE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Punts de línia base", + "DE.Controllers.Toolbar.txtMatrix_Dots_Center": "Punts de la línia del mig", + "DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Punts diagonals", "DE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Punts verticals", - "DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Matriu escassa", - "DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Matriu escassa", - "DE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 matriu d’identitat", + "DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Matriu estequiomètrica", + "DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Matriu estequiomètrica", + "DE.Controllers.Toolbar.txtMatrix_Identity_2": "Matriu d’identitat 2x2", "DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "Matriu d’identitat 3x3", "DE.Controllers.Toolbar.txtMatrix_Identity_3": "Matriu d’identitat 3x3", "DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "Matriu d’identitat 3x3", "DE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Fletxa dreta-esquerra inferior", "DE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Fletxa dreta-esquerra superior", - "DE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Fletxa inferior cap a esquerra", - "DE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Fletxa superior cap a esquerra", - "DE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Fletxa inferior cap a dreta", - "DE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Fletxa superior cap a dreta", + "DE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Fletxa esquerra a sota", + "DE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Fletxa esquerra a sobre", + "DE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Fletxa dreta a sota", + "DE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Fletxa dreta a sobre", "DE.Controllers.Toolbar.txtOperator_ColonEquals": "Dos punts igual", "DE.Controllers.Toolbar.txtOperator_Custom_1": "Rendiment", - "DE.Controllers.Toolbar.txtOperator_Custom_2": "Rendiments Delta", + "DE.Controllers.Toolbar.txtOperator_Custom_2": "Rendiment delta", "DE.Controllers.Toolbar.txtOperator_Definition": "Igual per definició", "DE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta igual a", "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Fletxa dreta-esquerra inferior", "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Fletxa dreta-esquerra superior", - "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Fletxa inferior cap a esquerra", - "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Fletxa superior cap a esquerra", - "DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Fletxa inferior cap a dreta", - "DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Fletxa superior cap a dreta", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Fletxa esquerra a sota", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Fletxa esquerra a sobre", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Fletxa dreta a sota", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Fletxa dreta a sobre", "DE.Controllers.Toolbar.txtOperator_EqualsEquals": "Igual igual", "DE.Controllers.Toolbar.txtOperator_MinusEquals": "Menys igual", "DE.Controllers.Toolbar.txtOperator_PlusEquals": "Més igual", - "DE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Unitat de Mesura", + "DE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Mesurat per", "DE.Controllers.Toolbar.txtRadicalCustom_1": "Radical", "DE.Controllers.Toolbar.txtRadicalCustom_2": "Radical", "DE.Controllers.Toolbar.txtRadicalRoot_2": "Arrel quadrada amb grau", "DE.Controllers.Toolbar.txtRadicalRoot_3": "Arrel cúbica", "DE.Controllers.Toolbar.txtRadicalRoot_n": "Radical amb índex", "DE.Controllers.Toolbar.txtRadicalSqrt": "Arrel quadrada", - "DE.Controllers.Toolbar.txtScriptCustom_1": "Lletra", - "DE.Controllers.Toolbar.txtScriptCustom_2": "Lletra", - "DE.Controllers.Toolbar.txtScriptCustom_3": "Lletra", - "DE.Controllers.Toolbar.txtScriptCustom_4": "Lletra", + "DE.Controllers.Toolbar.txtScriptCustom_1": "Script", + "DE.Controllers.Toolbar.txtScriptCustom_2": "Script", + "DE.Controllers.Toolbar.txtScriptCustom_3": "Script", + "DE.Controllers.Toolbar.txtScriptCustom_4": "Script", "DE.Controllers.Toolbar.txtScriptSub": "Subíndex", "DE.Controllers.Toolbar.txtScriptSubSup": "Subíndex/Superíndex", - "DE.Controllers.Toolbar.txtScriptSubSupLeft": "Subíndex-superíndex esquerra", + "DE.Controllers.Toolbar.txtScriptSubSupLeft": "Subíndex-Superíndex esquerre\n\t", "DE.Controllers.Toolbar.txtScriptSup": "Superíndex", "DE.Controllers.Toolbar.txtSymbol_about": "Aproximadament", "DE.Controllers.Toolbar.txtSymbol_additional": "Complement", @@ -1127,18 +1127,18 @@ "DE.Controllers.Toolbar.txtSymbol_ast": "Operador asterisc", "DE.Controllers.Toolbar.txtSymbol_beta": "Beta", "DE.Controllers.Toolbar.txtSymbol_beth": "Bet", - "DE.Controllers.Toolbar.txtSymbol_bullet": "Operador de Vinyeta", + "DE.Controllers.Toolbar.txtSymbol_bullet": "Operador de pic", "DE.Controllers.Toolbar.txtSymbol_cap": "Intersecció", - "DE.Controllers.Toolbar.txtSymbol_cbrt": "Arrel de Cub", - "DE.Controllers.Toolbar.txtSymbol_cdots": "El·lipsis horitzontal de línia mitja", - "DE.Controllers.Toolbar.txtSymbol_celsius": "Graus Celsius", - "DE.Controllers.Toolbar.txtSymbol_chi": "Chi", + "DE.Controllers.Toolbar.txtSymbol_cbrt": "Arrel cúbica", + "DE.Controllers.Toolbar.txtSymbol_cdots": "El·lipsis horitzontal", + "DE.Controllers.Toolbar.txtSymbol_celsius": "Graus celsius", + "DE.Controllers.Toolbar.txtSymbol_chi": "Khi", "DE.Controllers.Toolbar.txtSymbol_cong": "Aproximadament igual a", "DE.Controllers.Toolbar.txtSymbol_cup": "Unió", - "DE.Controllers.Toolbar.txtSymbol_ddots": "El·lipsi en diagonal a baix", + "DE.Controllers.Toolbar.txtSymbol_ddots": "El·lipsi en diagonal cap avall", "DE.Controllers.Toolbar.txtSymbol_degree": "Graus", "DE.Controllers.Toolbar.txtSymbol_delta": "Delta", - "DE.Controllers.Toolbar.txtSymbol_div": "Rètol de divisió", + "DE.Controllers.Toolbar.txtSymbol_div": "Signe de divisió", "DE.Controllers.Toolbar.txtSymbol_downarrow": "Fletxa cap avall", "DE.Controllers.Toolbar.txtSymbol_emptyset": "Conjunt buit", "DE.Controllers.Toolbar.txtSymbol_epsilon": "Èpsilon", @@ -1147,10 +1147,10 @@ "DE.Controllers.Toolbar.txtSymbol_eta": "Eta", "DE.Controllers.Toolbar.txtSymbol_exists": "Hi ha", "DE.Controllers.Toolbar.txtSymbol_factorial": "Factorial", - "DE.Controllers.Toolbar.txtSymbol_fahrenheit": "Graus Fahrenheit", - "DE.Controllers.Toolbar.txtSymbol_forall": "Per tot", + "DE.Controllers.Toolbar.txtSymbol_fahrenheit": "Graus fahrenheit", + "DE.Controllers.Toolbar.txtSymbol_forall": "Per a tot", "DE.Controllers.Toolbar.txtSymbol_gamma": "Gamma", - "DE.Controllers.Toolbar.txtSymbol_geq": "Major o Igual a", + "DE.Controllers.Toolbar.txtSymbol_geq": "Més gran o igual a", "DE.Controllers.Toolbar.txtSymbol_gg": "Major que", "DE.Controllers.Toolbar.txtSymbol_greater": "Més gran que", "DE.Controllers.Toolbar.txtSymbol_in": "Element de", @@ -1166,30 +1166,30 @@ "DE.Controllers.Toolbar.txtSymbol_ll": "Menor que", "DE.Controllers.Toolbar.txtSymbol_minus": "Menys", "DE.Controllers.Toolbar.txtSymbol_mp": "Menys més", - "DE.Controllers.Toolbar.txtSymbol_mu": "Dim", + "DE.Controllers.Toolbar.txtSymbol_mu": "Mu", "DE.Controllers.Toolbar.txtSymbol_nabla": "Nabla", - "DE.Controllers.Toolbar.txtSymbol_neq": "No igual a", + "DE.Controllers.Toolbar.txtSymbol_neq": "No és igual a", "DE.Controllers.Toolbar.txtSymbol_ni": "Conté com a membre", "DE.Controllers.Toolbar.txtSymbol_not": "Signe de negació", "DE.Controllers.Toolbar.txtSymbol_notexists": "No n'hi ha", - "DE.Controllers.Toolbar.txtSymbol_nu": "Ni", + "DE.Controllers.Toolbar.txtSymbol_nu": "Nu", "DE.Controllers.Toolbar.txtSymbol_o": "Omicron", "DE.Controllers.Toolbar.txtSymbol_omega": "Omega", - "DE.Controllers.Toolbar.txtSymbol_partial": "Derivada parcial", + "DE.Controllers.Toolbar.txtSymbol_partial": "Diferencial parcial", "DE.Controllers.Toolbar.txtSymbol_percent": "Percentatge", - "DE.Controllers.Toolbar.txtSymbol_phi": "Pi", + "DE.Controllers.Toolbar.txtSymbol_phi": "Fi", "DE.Controllers.Toolbar.txtSymbol_pi": "Pi", "DE.Controllers.Toolbar.txtSymbol_plus": "Més", - "DE.Controllers.Toolbar.txtSymbol_pm": "Més menos", + "DE.Controllers.Toolbar.txtSymbol_pm": "Més menys", "DE.Controllers.Toolbar.txtSymbol_propto": "Proporcional a", "DE.Controllers.Toolbar.txtSymbol_psi": "Psi", - "DE.Controllers.Toolbar.txtSymbol_qdrt": "Quart directori", - "DE.Controllers.Toolbar.txtSymbol_qed": "Fi de la prova", + "DE.Controllers.Toolbar.txtSymbol_qdrt": "Arrel quarta", + "DE.Controllers.Toolbar.txtSymbol_qed": "Final de la demostració", "DE.Controllers.Toolbar.txtSymbol_rddots": "El·lipsis en diagonal d'esquerra a dreta", - "DE.Controllers.Toolbar.txtSymbol_rho": "Ro", + "DE.Controllers.Toolbar.txtSymbol_rho": "Rho", "DE.Controllers.Toolbar.txtSymbol_rightarrow": "Fletxa dreta", "DE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", - "DE.Controllers.Toolbar.txtSymbol_sqrt": "Signe de radical", + "DE.Controllers.Toolbar.txtSymbol_sqrt": "Símbol de radical", "DE.Controllers.Toolbar.txtSymbol_tau": "Tau", "DE.Controllers.Toolbar.txtSymbol_therefore": "Per tant", "DE.Controllers.Toolbar.txtSymbol_theta": "Zeta", @@ -1197,26 +1197,26 @@ "DE.Controllers.Toolbar.txtSymbol_uparrow": "Fletxa amunt", "DE.Controllers.Toolbar.txtSymbol_upsilon": "Èpsilon", "DE.Controllers.Toolbar.txtSymbol_varepsilon": "Variant d’èpsilon", - "DE.Controllers.Toolbar.txtSymbol_varphi": "Variant Pi", - "DE.Controllers.Toolbar.txtSymbol_varpi": "Variant Pi", - "DE.Controllers.Toolbar.txtSymbol_varrho": "Variant Ro", - "DE.Controllers.Toolbar.txtSymbol_varsigma": "Variant Sigma", + "DE.Controllers.Toolbar.txtSymbol_varphi": "Variant Fi", + "DE.Controllers.Toolbar.txtSymbol_varpi": "Variant pi", + "DE.Controllers.Toolbar.txtSymbol_varrho": "Variant Rho", + "DE.Controllers.Toolbar.txtSymbol_varsigma": "Variant sigma", "DE.Controllers.Toolbar.txtSymbol_vartheta": "Variant zeta", "DE.Controllers.Toolbar.txtSymbol_vdots": "El·lipsis vertical", "DE.Controllers.Toolbar.txtSymbol_xsi": "Xi", "DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", - "DE.Controllers.Viewport.textFitPage": "Ajusta a Pàgina", - "DE.Controllers.Viewport.textFitWidth": "Ajusta a Amplada", + "DE.Controllers.Viewport.textFitPage": "Ajustar a la pàgina", + "DE.Controllers.Viewport.textFitWidth": "Ajustar a l'amplada", "DE.Views.AddNewCaptionLabelDialog.textLabel": "Etiqueta:", - "DE.Views.AddNewCaptionLabelDialog.textLabelError": "La etiqueta no pot estar buida.", + "DE.Views.AddNewCaptionLabelDialog.textLabelError": "L'etiqueta no pot estar en blanc.", "DE.Views.BookmarksDialog.textAdd": "Afegir", - "DE.Views.BookmarksDialog.textBookmarkName": "Nom del Marcador", + "DE.Views.BookmarksDialog.textBookmarkName": "Nom del marcador", "DE.Views.BookmarksDialog.textClose": "Tancar", "DE.Views.BookmarksDialog.textCopy": "Copiar", - "DE.Views.BookmarksDialog.textDelete": "Esborrar", - "DE.Views.BookmarksDialog.textGetLink": "Obtenir l'Enllaç", + "DE.Views.BookmarksDialog.textDelete": "Suprimir", + "DE.Views.BookmarksDialog.textGetLink": "Obtenir l'enllaç", "DE.Views.BookmarksDialog.textGoto": "Anar a", - "DE.Views.BookmarksDialog.textHidden": "Favorits ocults", + "DE.Views.BookmarksDialog.textHidden": "Marcadors amagats", "DE.Views.BookmarksDialog.textLocation": "Ubicació", "DE.Views.BookmarksDialog.textName": "Nom", "DE.Views.BookmarksDialog.textSort": "Ordenar per", @@ -1225,42 +1225,42 @@ "DE.Views.CaptionDialog.textAdd": "Afegir etiqueta", "DE.Views.CaptionDialog.textAfter": "Després", "DE.Views.CaptionDialog.textBefore": "Abans", - "DE.Views.CaptionDialog.textCaption": "Subtítol", + "DE.Views.CaptionDialog.textCaption": "Llegenda", "DE.Views.CaptionDialog.textChapter": "El capítol comença amb estil", - "DE.Views.CaptionDialog.textChapterInc": "Inclogui el número de capítol", + "DE.Views.CaptionDialog.textChapterInc": "Inclogueu el número de capítol", "DE.Views.CaptionDialog.textColon": "Dos punts", "DE.Views.CaptionDialog.textDash": "guió", - "DE.Views.CaptionDialog.textDelete": "Suprimeix", + "DE.Views.CaptionDialog.textDelete": "Suprimir l'etiqueta", "DE.Views.CaptionDialog.textEquation": "Equació", "DE.Views.CaptionDialog.textExamples": "Exemples: Taula 2-A, Imatge 1.IV", - "DE.Views.CaptionDialog.textExclude": "Exclou l'etiqueta de la llegenda", - "DE.Views.CaptionDialog.textFigure": "Figura", - "DE.Views.CaptionDialog.textHyphen": "hyphen", - "DE.Views.CaptionDialog.textInsert": "Inserta", + "DE.Views.CaptionDialog.textExclude": "Excloure l'etiqueta de la llegenda", + "DE.Views.CaptionDialog.textFigure": "Il·lustració", + "DE.Views.CaptionDialog.textHyphen": "guionet", + "DE.Views.CaptionDialog.textInsert": "Inserir", "DE.Views.CaptionDialog.textLabel": "Etiqueta", "DE.Views.CaptionDialog.textLongDash": "Guió llarg", "DE.Views.CaptionDialog.textNumbering": "Numeració", "DE.Views.CaptionDialog.textPeriod": "període", "DE.Views.CaptionDialog.textSeparator": "Utilitzar separador", "DE.Views.CaptionDialog.textTable": "Taula", - "DE.Views.CaptionDialog.textTitle": "Inseriu Llegenda", + "DE.Views.CaptionDialog.textTitle": "Inseriu llegenda", "DE.Views.CellsAddDialog.textCol": "Columnes", - "DE.Views.CellsAddDialog.textDown": "A sota del cursor", + "DE.Views.CellsAddDialog.textDown": "Per sota del cursor", "DE.Views.CellsAddDialog.textLeft": "A l'esquerra", "DE.Views.CellsAddDialog.textRight": "A la dreta", "DE.Views.CellsAddDialog.textRow": "Files", - "DE.Views.CellsAddDialog.textTitle": "Inserir Diversos", + "DE.Views.CellsAddDialog.textTitle": "Inseriu diversos", "DE.Views.CellsAddDialog.textUp": "Per damunt del cursor", - "DE.Views.ChartSettings.textAdvanced": "Mostra la configuració avançada", + "DE.Views.ChartSettings.textAdvanced": "Mostrar la configuració avançada", "DE.Views.ChartSettings.textChartType": "Canviar el tipus de gràfic", - "DE.Views.ChartSettings.textEditData": "Edita Dades", + "DE.Views.ChartSettings.textEditData": "Editar Dades", "DE.Views.ChartSettings.textHeight": "Alçada", "DE.Views.ChartSettings.textOriginalSize": "Mida real", "DE.Views.ChartSettings.textSize": "Mida", "DE.Views.ChartSettings.textStyle": "Estil", "DE.Views.ChartSettings.textUndock": "Desacoblar del tauler", "DE.Views.ChartSettings.textWidth": "Amplada", - "DE.Views.ChartSettings.textWrap": "Ajustament de l'estil ", + "DE.Views.ChartSettings.textWrap": "Estil d'ajustament", "DE.Views.ChartSettings.txtBehind": "Darrere", "DE.Views.ChartSettings.txtInFront": "Davant", "DE.Views.ChartSettings.txtInline": "En línia", @@ -1272,218 +1272,218 @@ "DE.Views.ControlSettingsDialog.strGeneral": "General", "DE.Views.ControlSettingsDialog.textAdd": "Afegir", "DE.Views.ControlSettingsDialog.textAppearance": "Aparença", - "DE.Views.ControlSettingsDialog.textApplyAll": "Aplicar-se a tot", - "DE.Views.ControlSettingsDialog.textBox": "Límits de celda", - "DE.Views.ControlSettingsDialog.textChange": "Edita", - "DE.Views.ControlSettingsDialog.textCheckbox": "Casella de Selecció", + "DE.Views.ControlSettingsDialog.textApplyAll": "Aplicar-ho a tot", + "DE.Views.ControlSettingsDialog.textBox": "Quadre de limitació", + "DE.Views.ControlSettingsDialog.textChange": "Editar", + "DE.Views.ControlSettingsDialog.textCheckbox": "Casella de selecció", "DE.Views.ControlSettingsDialog.textChecked": "Símbol de selecció", "DE.Views.ControlSettingsDialog.textColor": "Color", - "DE.Views.ControlSettingsDialog.textCombobox": "Quadre de llista desplegable", - "DE.Views.ControlSettingsDialog.textDate": "Format de Data", - "DE.Views.ControlSettingsDialog.textDelete": "Esborrar", - "DE.Views.ControlSettingsDialog.textDisplayName": "Mostra el nom", - "DE.Views.ControlSettingsDialog.textDown": "A baix", - "DE.Views.ControlSettingsDialog.textDropDown": "Drop-Llista desplegable", + "DE.Views.ControlSettingsDialog.textCombobox": "Quadre combinat", + "DE.Views.ControlSettingsDialog.textDate": "Format de data", + "DE.Views.ControlSettingsDialog.textDelete": "Suprimir", + "DE.Views.ControlSettingsDialog.textDisplayName": "Mostrar el nom", + "DE.Views.ControlSettingsDialog.textDown": "Avall", + "DE.Views.ControlSettingsDialog.textDropDown": "Llista desplegable", "DE.Views.ControlSettingsDialog.textFormat": "Mostra la data així", "DE.Views.ControlSettingsDialog.textLang": "Idioma", - "DE.Views.ControlSettingsDialog.textLock": "Tancant", + "DE.Views.ControlSettingsDialog.textLock": "S'està blocant", "DE.Views.ControlSettingsDialog.textName": "Títol", "DE.Views.ControlSettingsDialog.textNone": "Cap", - "DE.Views.ControlSettingsDialog.textPlaceholder": "Posseïdor del lloc", + "DE.Views.ControlSettingsDialog.textPlaceholder": "Marcador de posició", "DE.Views.ControlSettingsDialog.textShowAs": "Mostrar com", "DE.Views.ControlSettingsDialog.textSystemColor": "Sistema", "DE.Views.ControlSettingsDialog.textTag": "Etiqueta", - "DE.Views.ControlSettingsDialog.textTitle": "Configuració de control de contingut", + "DE.Views.ControlSettingsDialog.textTitle": "Configuració del control de contingut", "DE.Views.ControlSettingsDialog.textUnchecked": "Símbol desactivat", "DE.Views.ControlSettingsDialog.textUp": "Amunt", "DE.Views.ControlSettingsDialog.textValue": "Valor", - "DE.Views.ControlSettingsDialog.tipChange": "Canviar símbol", + "DE.Views.ControlSettingsDialog.tipChange": "Canviar el símbol", "DE.Views.ControlSettingsDialog.txtLockDelete": "El control de contingut no es pot suprimir", "DE.Views.ControlSettingsDialog.txtLockEdit": "El contingut no es pot editar", "DE.Views.CrossReferenceDialog.textAboveBelow": "Amunt/avall", "DE.Views.CrossReferenceDialog.textBookmark": "Marcador", - "DE.Views.CrossReferenceDialog.textBookmarkText": "Marcar text", - "DE.Views.CrossReferenceDialog.textCaption": "Títol complert", + "DE.Views.CrossReferenceDialog.textBookmarkText": "Text de marcador", + "DE.Views.CrossReferenceDialog.textCaption": "Llegenda sencera", "DE.Views.CrossReferenceDialog.textEmpty": "La referència de la sol·licitud és buida.", - "DE.Views.CrossReferenceDialog.textEndnote": "Nota al Final", - "DE.Views.CrossReferenceDialog.textEndNoteNum": "Número de Nota al Final", - "DE.Views.CrossReferenceDialog.textEndNoteNumForm": "Número de Nota al Final (formatjat)", + "DE.Views.CrossReferenceDialog.textEndnote": "Nota al final", + "DE.Views.CrossReferenceDialog.textEndNoteNum": "Número de nota al final", + "DE.Views.CrossReferenceDialog.textEndNoteNumForm": "Número de nota al final (amb format)", "DE.Views.CrossReferenceDialog.textEquation": "Equació", - "DE.Views.CrossReferenceDialog.textFigure": "Figura", - "DE.Views.CrossReferenceDialog.textFootnote": "Nota a peu de pàgina", + "DE.Views.CrossReferenceDialog.textFigure": "Il·lustració", + "DE.Views.CrossReferenceDialog.textFootnote": "Nota al peu de pàgina", "DE.Views.CrossReferenceDialog.textHeading": "Capçalera", - "DE.Views.CrossReferenceDialog.textHeadingNum": "Número d'Encapçalament", - "DE.Views.CrossReferenceDialog.textHeadingNumFull": "Número d'encapçalament (context complet)", - "DE.Views.CrossReferenceDialog.textHeadingNumNo": "Número d'encapçalament (sense context)", - "DE.Views.CrossReferenceDialog.textHeadingText": "Número d'Encapçalament", + "DE.Views.CrossReferenceDialog.textHeadingNum": "Número de títol", + "DE.Views.CrossReferenceDialog.textHeadingNumFull": "Número de títol (context sencer)", + "DE.Views.CrossReferenceDialog.textHeadingNumNo": "Número de títol (sense context)", + "DE.Views.CrossReferenceDialog.textHeadingText": "Text de títol", "DE.Views.CrossReferenceDialog.textIncludeAbove": "Incloure amunt/avall", - "DE.Views.CrossReferenceDialog.textInsert": "Insertar", - "DE.Views.CrossReferenceDialog.textInsertAs": "Insereix com a hiperenllaç", + "DE.Views.CrossReferenceDialog.textInsert": "Inserir", + "DE.Views.CrossReferenceDialog.textInsertAs": "Inseriu com a enllaç", "DE.Views.CrossReferenceDialog.textLabelNum": "Només etiqueta i número", - "DE.Views.CrossReferenceDialog.textNoteNum": "Número de nota al peu", - "DE.Views.CrossReferenceDialog.textNoteNumForm": "Número de nota al pau (formatjat)", - "DE.Views.CrossReferenceDialog.textOnlyCaption": "Només text de subtítols", - "DE.Views.CrossReferenceDialog.textPageNum": "Número Pàgina", - "DE.Views.CrossReferenceDialog.textParagraph": "Ítem Numerat", + "DE.Views.CrossReferenceDialog.textNoteNum": "Número de nota a peu de pàgina", + "DE.Views.CrossReferenceDialog.textNoteNumForm": "Número de nota a peu de pàgina (amb format)", + "DE.Views.CrossReferenceDialog.textOnlyCaption": "Només text de llegenda", + "DE.Views.CrossReferenceDialog.textPageNum": "Número de pàgina", + "DE.Views.CrossReferenceDialog.textParagraph": "Element numerat", "DE.Views.CrossReferenceDialog.textParaNum": "Número de paràgraf", "DE.Views.CrossReferenceDialog.textParaNumFull": "Número de paràgraf (context complet)", "DE.Views.CrossReferenceDialog.textParaNumNo": "Número de paràgraf (sense context)", "DE.Views.CrossReferenceDialog.textSeparate": "Separeu els números amb", "DE.Views.CrossReferenceDialog.textTable": "Taula", - "DE.Views.CrossReferenceDialog.textText": "Text de paràgraf", - "DE.Views.CrossReferenceDialog.textWhich": "Per a quin títol", + "DE.Views.CrossReferenceDialog.textText": "Text del paràgraf", + "DE.Views.CrossReferenceDialog.textWhich": "Per a quina llegenda", "DE.Views.CrossReferenceDialog.textWhichBookmark": "Per a quin marcador", "DE.Views.CrossReferenceDialog.textWhichEndnote": "Per a quina nota al final", "DE.Views.CrossReferenceDialog.textWhichHeading": "Per a quin encapçalament", "DE.Views.CrossReferenceDialog.textWhichNote": "Per a quina nota al peu", - "DE.Views.CrossReferenceDialog.textWhichPara": "Per a quin ítem numerat", + "DE.Views.CrossReferenceDialog.textWhichPara": "Per a quin element numerat", "DE.Views.CrossReferenceDialog.txtReference": "Inseriu referència a", "DE.Views.CrossReferenceDialog.txtTitle": "Referència creuada", - "DE.Views.CrossReferenceDialog.txtType": "Tipus de Referència", + "DE.Views.CrossReferenceDialog.txtType": "Tipus de referència", "DE.Views.CustomColumnsDialog.textColumns": "Número de columnes", - "DE.Views.CustomColumnsDialog.textSeparator": "Divisor de Columnes", - "DE.Views.CustomColumnsDialog.textSpacing": "Espai entre columnes", + "DE.Views.CustomColumnsDialog.textSeparator": "Separador de columnes", + "DE.Views.CustomColumnsDialog.textSpacing": "Espaiat entre columnes", "DE.Views.CustomColumnsDialog.textTitle": "Columnes", - "DE.Views.DateTimeDialog.confirmDefault": "Definiu el format predeterminat per a {0}:\"{1}\"", - "DE.Views.DateTimeDialog.textDefault": "Establir com a defecte", + "DE.Views.DateTimeDialog.confirmDefault": "Establir el format predeterminat per a {0}:\"{1}\"", + "DE.Views.DateTimeDialog.textDefault": "Establir per defecte", "DE.Views.DateTimeDialog.textFormat": "Formats", "DE.Views.DateTimeDialog.textLang": "Idioma", "DE.Views.DateTimeDialog.textUpdate": "Actualitza automàticament", "DE.Views.DateTimeDialog.txtTitle": "Data & Hora", "DE.Views.DocumentHolder.aboveText": "A dalt", - "DE.Views.DocumentHolder.addCommentText": "Afegir Comentari", - "DE.Views.DocumentHolder.advancedDropCapText": "Configuració Drop Cap", - "DE.Views.DocumentHolder.advancedFrameText": "Marc Configuració Avançada", - "DE.Views.DocumentHolder.advancedParagraphText": "Paràgraf Configuració Avançada", - "DE.Views.DocumentHolder.advancedTableText": "Taula Configuració Avançada", - "DE.Views.DocumentHolder.advancedText": "Configuracions avançades", + "DE.Views.DocumentHolder.addCommentText": "Afegir comentari", + "DE.Views.DocumentHolder.advancedDropCapText": "Configuració lletra de caixa alta", + "DE.Views.DocumentHolder.advancedFrameText": "Marc configuració avançada", + "DE.Views.DocumentHolder.advancedParagraphText": "Configuració avançada del paràgraf", + "DE.Views.DocumentHolder.advancedTableText": "Configuració avançada de la taula", + "DE.Views.DocumentHolder.advancedText": "Configuració avançada", "DE.Views.DocumentHolder.alignmentText": "Alineació", - "DE.Views.DocumentHolder.belowText": "Abaix", - "DE.Views.DocumentHolder.breakBeforeText": "Salt de pàgina abans", - "DE.Views.DocumentHolder.bulletsText": "Vinyetes i Numeració", - "DE.Views.DocumentHolder.cellAlignText": "Alineament Vertical Cel·la", + "DE.Views.DocumentHolder.belowText": "Més avall", + "DE.Views.DocumentHolder.breakBeforeText": "Salt de pàgina anterior", + "DE.Views.DocumentHolder.bulletsText": "Pics i numeració", + "DE.Views.DocumentHolder.cellAlignText": "Alineació vertical de la cel·la", "DE.Views.DocumentHolder.cellText": "Cel·la", - "DE.Views.DocumentHolder.centerText": "Centre", - "DE.Views.DocumentHolder.chartText": "Configuració Avançada del Gràfic", + "DE.Views.DocumentHolder.centerText": "Centrar", + "DE.Views.DocumentHolder.chartText": "Configuració avançada del gràfic", "DE.Views.DocumentHolder.columnText": "Columna", - "DE.Views.DocumentHolder.deleteColumnText": "Suprimeix la Columna", - "DE.Views.DocumentHolder.deleteRowText": "Suprimeix fila", - "DE.Views.DocumentHolder.deleteTableText": "Esborrar Taula", - "DE.Views.DocumentHolder.deleteText": "Esborrar", - "DE.Views.DocumentHolder.direct270Text": "Girar text cap a munt", + "DE.Views.DocumentHolder.deleteColumnText": "Suprimir la Columna", + "DE.Views.DocumentHolder.deleteRowText": "Suprimir la fila", + "DE.Views.DocumentHolder.deleteTableText": "Suprimir la taula", + "DE.Views.DocumentHolder.deleteText": "Suprimir", + "DE.Views.DocumentHolder.direct270Text": "Girar text cap amunt", "DE.Views.DocumentHolder.direct90Text": "Girar text cap a baix", "DE.Views.DocumentHolder.directHText": "Horitzontal", "DE.Views.DocumentHolder.directionText": "Direcció del text", - "DE.Views.DocumentHolder.editChartText": "Edita Dades", - "DE.Views.DocumentHolder.editFooterText": "Edita el peu de pàgina", - "DE.Views.DocumentHolder.editHeaderText": "Edita la capçalera", - "DE.Views.DocumentHolder.editHyperlinkText": "Edita Hiperenllaç", + "DE.Views.DocumentHolder.editChartText": "Editar Dades", + "DE.Views.DocumentHolder.editFooterText": "Editar el peu de pàgina", + "DE.Views.DocumentHolder.editHeaderText": "Editar la capçalera", + "DE.Views.DocumentHolder.editHyperlinkText": "Editar l'enllaç", "DE.Views.DocumentHolder.guestText": "Convidat", - "DE.Views.DocumentHolder.hyperlinkText": "Hiperenllaç", - "DE.Views.DocumentHolder.ignoreAllSpellText": "Ignorar Tot", + "DE.Views.DocumentHolder.hyperlinkText": "Enllaç", + "DE.Views.DocumentHolder.ignoreAllSpellText": "Ignorar-ho tot", "DE.Views.DocumentHolder.ignoreSpellText": "Ignorar", - "DE.Views.DocumentHolder.imageText": "Imatge Configuració Avançada", - "DE.Views.DocumentHolder.insertColumnLeftText": "Columna Esquerra", - "DE.Views.DocumentHolder.insertColumnRightText": "Columna Dreta", - "DE.Views.DocumentHolder.insertColumnText": "Inseriu Columna", - "DE.Views.DocumentHolder.insertRowAboveText": "Fila de dalt", - "DE.Views.DocumentHolder.insertRowBelowText": "Fila de baix", - "DE.Views.DocumentHolder.insertRowText": "Inserir fila", - "DE.Views.DocumentHolder.insertText": "Inserta", - "DE.Views.DocumentHolder.keepLinesText": "Mantenir les línies unides", - "DE.Views.DocumentHolder.langText": "Seleccionar Idioma", + "DE.Views.DocumentHolder.imageText": "Imatge configuració avançada", + "DE.Views.DocumentHolder.insertColumnLeftText": "Columna esquerra", + "DE.Views.DocumentHolder.insertColumnRightText": "Columna dreta", + "DE.Views.DocumentHolder.insertColumnText": "Inseriu columna", + "DE.Views.DocumentHolder.insertRowAboveText": "Fila a dalt", + "DE.Views.DocumentHolder.insertRowBelowText": "Fila a baix", + "DE.Views.DocumentHolder.insertRowText": "Inseriu fila", + "DE.Views.DocumentHolder.insertText": "Inserir", + "DE.Views.DocumentHolder.keepLinesText": "Conserveu les línies juntes", + "DE.Views.DocumentHolder.langText": "Seleccionar idioma", "DE.Views.DocumentHolder.leftText": "Esquerra", - "DE.Views.DocumentHolder.loadSpellText": "Carregant variants", - "DE.Views.DocumentHolder.mergeCellsText": "Unir Cel·les", + "DE.Views.DocumentHolder.loadSpellText": "S'estan carregant variants", + "DE.Views.DocumentHolder.mergeCellsText": "Combina cel·les", "DE.Views.DocumentHolder.moreText": "Més variants...", "DE.Views.DocumentHolder.noSpellVariantsText": "Sense variants", "DE.Views.DocumentHolder.originalSizeText": "Mida real", "DE.Views.DocumentHolder.paragraphText": "Paràgraf", - "DE.Views.DocumentHolder.removeHyperlinkText": "Esborrar hiperenllaç", + "DE.Views.DocumentHolder.removeHyperlinkText": "Suprimir l'enllaç", "DE.Views.DocumentHolder.rightText": "Dreta", "DE.Views.DocumentHolder.rowText": "Fila", "DE.Views.DocumentHolder.saveStyleText": "Crear nou estil", "DE.Views.DocumentHolder.selectCellText": "Seleccionar cel·la", - "DE.Views.DocumentHolder.selectColumnText": "Seleccionar Columna", - "DE.Views.DocumentHolder.selectRowText": "Seleccionar Fila", - "DE.Views.DocumentHolder.selectTableText": "Seleccionar Taula", - "DE.Views.DocumentHolder.selectText": "Selecciona", - "DE.Views.DocumentHolder.shapeText": "Forma Configuració Avançada", - "DE.Views.DocumentHolder.spellcheckText": "Correcció Ortogràfica", - "DE.Views.DocumentHolder.splitCellsText": "Dividir Cel·la...", - "DE.Views.DocumentHolder.splitCellTitleText": "Dividir Cel·la", - "DE.Views.DocumentHolder.strDelete": "Esborrar la firma", - "DE.Views.DocumentHolder.strDetails": "Detalls de la Firma", - "DE.Views.DocumentHolder.strSetup": "Configuració de la firma", - "DE.Views.DocumentHolder.strSign": "Firmar", - "DE.Views.DocumentHolder.styleText": "Formatant com a estil", + "DE.Views.DocumentHolder.selectColumnText": "Seleccionar columna", + "DE.Views.DocumentHolder.selectRowText": "Seleccionar fila", + "DE.Views.DocumentHolder.selectTableText": "Seleccionar taula", + "DE.Views.DocumentHolder.selectText": "Seleccionar", + "DE.Views.DocumentHolder.shapeText": "Forma configuració avançada", + "DE.Views.DocumentHolder.spellcheckText": "Revisió ortogràfica", + "DE.Views.DocumentHolder.splitCellsText": "Dividir cel·la...", + "DE.Views.DocumentHolder.splitCellTitleText": "Dividir cel·la", + "DE.Views.DocumentHolder.strDelete": "Suprimir la signatura", + "DE.Views.DocumentHolder.strDetails": "Detalls de la signatura", + "DE.Views.DocumentHolder.strSetup": "Configuració de la signatura", + "DE.Views.DocumentHolder.strSign": "Signar", + "DE.Views.DocumentHolder.styleText": "Format d'estil", "DE.Views.DocumentHolder.tableText": "Taula", "DE.Views.DocumentHolder.textAlign": "Alinear", "DE.Views.DocumentHolder.textArrange": "Organitzar", "DE.Views.DocumentHolder.textArrangeBack": "Enviar a un segon pla", - "DE.Views.DocumentHolder.textArrangeBackward": "Envia Endarrere", - "DE.Views.DocumentHolder.textArrangeForward": "Portar Endavant", - "DE.Views.DocumentHolder.textArrangeFront": "Porta a Primer pla", + "DE.Views.DocumentHolder.textArrangeBackward": "Enviar cap endarrere", + "DE.Views.DocumentHolder.textArrangeForward": "Portar endavant", + "DE.Views.DocumentHolder.textArrangeFront": "Portar al primer pla", "DE.Views.DocumentHolder.textCells": "Cel·les", - "DE.Views.DocumentHolder.textCol": "Suprimeix tota la columna", + "DE.Views.DocumentHolder.textCol": "Suprimir tota la columna", "DE.Views.DocumentHolder.textContentControls": "Control de contingut", "DE.Views.DocumentHolder.textContinueNumbering": "Continua la numeració", "DE.Views.DocumentHolder.textCopy": "Copiar", "DE.Views.DocumentHolder.textCrop": "Retallar", "DE.Views.DocumentHolder.textCropFill": "Omplir", - "DE.Views.DocumentHolder.textCropFit": "Ajusta", + "DE.Views.DocumentHolder.textCropFit": "Ajustar", "DE.Views.DocumentHolder.textCut": "Tallar", - "DE.Views.DocumentHolder.textDistributeCols": "Distribuïu les columnes", - "DE.Views.DocumentHolder.textDistributeRows": "Distribuïu les files", - "DE.Views.DocumentHolder.textEditControls": "Configuració de control de contingut", - "DE.Views.DocumentHolder.textEditWrapBoundary": "Edita el límit de l’embolcall", - "DE.Views.DocumentHolder.textFlipH": "Voltejar Horitzontalment", - "DE.Views.DocumentHolder.textFlipV": "Voltejar Verticalment", - "DE.Views.DocumentHolder.textFollow": "Segueix movent-se", + "DE.Views.DocumentHolder.textDistributeCols": "Distribuir les columnes", + "DE.Views.DocumentHolder.textDistributeRows": "Distribuir les files", + "DE.Views.DocumentHolder.textEditControls": "Configuració del control de contingut", + "DE.Views.DocumentHolder.textEditWrapBoundary": "Editar el límit de l’ajustament", + "DE.Views.DocumentHolder.textFlipH": "Capgirar horitzontalment", + "DE.Views.DocumentHolder.textFlipV": "Capgirar verticalment", + "DE.Views.DocumentHolder.textFollow": "Seguir el moviment", "DE.Views.DocumentHolder.textFromFile": "Des d'un fitxer", - "DE.Views.DocumentHolder.textFromStorage": "Des d'Emmagatzematge", - "DE.Views.DocumentHolder.textFromUrl": "Des d'un Enllaç", + "DE.Views.DocumentHolder.textFromStorage": "Des de l’emmagatzematge", + "DE.Views.DocumentHolder.textFromUrl": "Des de l'URL", "DE.Views.DocumentHolder.textJoinList": "Uniu-vos a la llista anterior", - "DE.Views.DocumentHolder.textLeft": "Desplaça les cel·les a l'esquerra", - "DE.Views.DocumentHolder.textNest": "Taula niu", - "DE.Views.DocumentHolder.textNextPage": "Pàgina Següent", - "DE.Views.DocumentHolder.textNumberingValue": "Valor d'inici", - "DE.Views.DocumentHolder.textPaste": "Pegar", + "DE.Views.DocumentHolder.textLeft": "Desplaçar les cel·les cap a l'esquerra", + "DE.Views.DocumentHolder.textNest": "Incrusta la taula", + "DE.Views.DocumentHolder.textNextPage": "Pàgina següent", + "DE.Views.DocumentHolder.textNumberingValue": "Valor de numeració", + "DE.Views.DocumentHolder.textPaste": "Enganxar", "DE.Views.DocumentHolder.textPrevPage": "Pàgina anterior", "DE.Views.DocumentHolder.textRefreshField": "Actualitza el camp", - "DE.Views.DocumentHolder.textRemCheckBox": "Elimina la casella de selecció", - "DE.Views.DocumentHolder.textRemComboBox": "Elimina el quadre de combinació", - "DE.Views.DocumentHolder.textRemDropdown": "Elimina el desplegable", - "DE.Views.DocumentHolder.textRemField": "Eliminar camp de text", - "DE.Views.DocumentHolder.textRemove": "Esborrar", - "DE.Views.DocumentHolder.textRemoveControl": "Esborrar el control de contingut", - "DE.Views.DocumentHolder.textRemPicture": "Suprimir Imatge", - "DE.Views.DocumentHolder.textRemRadioBox": "Eliminar botó de selecció", - "DE.Views.DocumentHolder.textReplace": "Canviar Imatge", + "DE.Views.DocumentHolder.textRemCheckBox": "Suprimir la casella de selecció", + "DE.Views.DocumentHolder.textRemComboBox": "Suprimir el quadre combinat", + "DE.Views.DocumentHolder.textRemDropdown": "Suprimir el desplegable", + "DE.Views.DocumentHolder.textRemField": "Suprimir el camp de text", + "DE.Views.DocumentHolder.textRemove": "Suprimir", + "DE.Views.DocumentHolder.textRemoveControl": "Suprimir el control de contingut", + "DE.Views.DocumentHolder.textRemPicture": "Suprimir la imatge", + "DE.Views.DocumentHolder.textRemRadioBox": "Suprimir el botó de selecció", + "DE.Views.DocumentHolder.textReplace": "Substituir la imatge", "DE.Views.DocumentHolder.textRotate": "Girar", "DE.Views.DocumentHolder.textRotate270": "Girar 90° a l'esquerra", "DE.Views.DocumentHolder.textRotate90": "Girar 90° a la dreta", - "DE.Views.DocumentHolder.textRow": "Suprimeix tota la fila", - "DE.Views.DocumentHolder.textSeparateList": "Separar llista", + "DE.Views.DocumentHolder.textRow": "Suprimir la fila sencera", + "DE.Views.DocumentHolder.textSeparateList": "Llista separada", "DE.Views.DocumentHolder.textSettings": "Configuració", "DE.Views.DocumentHolder.textSeveral": "Diverses Files/Columnes", "DE.Views.DocumentHolder.textShapeAlignBottom": "Alineació inferior", "DE.Views.DocumentHolder.textShapeAlignCenter": "Centrar", - "DE.Views.DocumentHolder.textShapeAlignLeft": "Alinear esquerra", - "DE.Views.DocumentHolder.textShapeAlignMiddle": "Alinear al mig", - "DE.Views.DocumentHolder.textShapeAlignRight": "Alinear dreta", - "DE.Views.DocumentHolder.textShapeAlignTop": "Alinea a la part superior", + "DE.Views.DocumentHolder.textShapeAlignLeft": "Alineació a l'esquerra", + "DE.Views.DocumentHolder.textShapeAlignMiddle": "Alineció al mig", + "DE.Views.DocumentHolder.textShapeAlignRight": "Alineació a la dreta", + "DE.Views.DocumentHolder.textShapeAlignTop": "Alineació a la part superior", "DE.Views.DocumentHolder.textStartNewList": "Iniciar una llista nova", "DE.Views.DocumentHolder.textStartNumberingFrom": "Establir el valor de numeració", - "DE.Views.DocumentHolder.textTitleCellsRemove": "Suprimeix Cel·les", + "DE.Views.DocumentHolder.textTitleCellsRemove": "Suprimir cel·les", "DE.Views.DocumentHolder.textTOC": "Taula de continguts", "DE.Views.DocumentHolder.textTOCSettings": "Configuració de la taula de continguts", "DE.Views.DocumentHolder.textUndo": "Desfer", - "DE.Views.DocumentHolder.textUpdateAll": "Actualitzar tota la taula", - "DE.Views.DocumentHolder.textUpdatePages": "Actualitza només números de pàgina", - "DE.Views.DocumentHolder.textUpdateTOC": "Actualitza la taula de continguts", - "DE.Views.DocumentHolder.textWrap": "Ajustament de l'estil ", - "DE.Views.DocumentHolder.tipIsLocked": "Aquest element està sent editat actualment per un altre usuari.", + "DE.Views.DocumentHolder.textUpdateAll": "Actualitzar la taula sencera", + "DE.Views.DocumentHolder.textUpdatePages": "Actualitzar només els números de pàgina", + "DE.Views.DocumentHolder.textUpdateTOC": "Actualitzar la taula de continguts", + "DE.Views.DocumentHolder.textWrap": "Estil d'ajustament", + "DE.Views.DocumentHolder.tipIsLocked": "Un altre usuari té obert ara aquest element.", "DE.Views.DocumentHolder.toDictionaryText": "Afegir al diccionari", "DE.Views.DocumentHolder.txtAddBottom": "Afegir línia inferior", "DE.Views.DocumentHolder.txtAddFractionBar": "Afegir barra de fracció", @@ -1494,77 +1494,77 @@ "DE.Views.DocumentHolder.txtAddRight": "Afegir vora dreta", "DE.Views.DocumentHolder.txtAddTop": "Afegir vora superior", "DE.Views.DocumentHolder.txtAddVer": "Afegir línia vertical", - "DE.Views.DocumentHolder.txtAlignToChar": "Alinear al caràcter", + "DE.Views.DocumentHolder.txtAlignToChar": "Alineació al caràcter", "DE.Views.DocumentHolder.txtBehind": "Darrere", - "DE.Views.DocumentHolder.txtBorderProps": "Propietats Vora", - "DE.Views.DocumentHolder.txtBottom": "Inferior", - "DE.Views.DocumentHolder.txtColumnAlign": "Alineació de Columnes", + "DE.Views.DocumentHolder.txtBorderProps": "Propietats de la vora", + "DE.Views.DocumentHolder.txtBottom": "Part inferior", + "DE.Views.DocumentHolder.txtColumnAlign": "Alineació de la columna", "DE.Views.DocumentHolder.txtDecreaseArg": "Disminuir la mida de l’argument", - "DE.Views.DocumentHolder.txtDeleteArg": "Suprimeix l'argument", - "DE.Views.DocumentHolder.txtDeleteBreak": "Suprimeix la pausa manual", - "DE.Views.DocumentHolder.txtDeleteChars": "Elimina els caràcters adjunts", - "DE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "Elimina els caràcters i els separadors adjunts", - "DE.Views.DocumentHolder.txtDeleteEq": "Suprimeix l’equació", - "DE.Views.DocumentHolder.txtDeleteGroupChar": "Suprimeix el gràfic", - "DE.Views.DocumentHolder.txtDeleteRadical": "Elimina el radical", - "DE.Views.DocumentHolder.txtDistribHor": "Distribuïu horitzontalment", - "DE.Views.DocumentHolder.txtDistribVert": "Distribuïu verticalment", + "DE.Views.DocumentHolder.txtDeleteArg": "Suprimir l'argument", + "DE.Views.DocumentHolder.txtDeleteBreak": "Suprimir el salt manual", + "DE.Views.DocumentHolder.txtDeleteChars": "Suprimir els caràcters adjunts", + "DE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "Suprimir els caràcters i els separadors adjunts", + "DE.Views.DocumentHolder.txtDeleteEq": "Suprimir l’equació", + "DE.Views.DocumentHolder.txtDeleteGroupChar": "Suprimir el gràfic", + "DE.Views.DocumentHolder.txtDeleteRadical": "Suprimir el radical", + "DE.Views.DocumentHolder.txtDistribHor": "Distribuir horitzontalment", + "DE.Views.DocumentHolder.txtDistribVert": "Distribuir verticalment", "DE.Views.DocumentHolder.txtEmpty": "(Buit)", - "DE.Views.DocumentHolder.txtFractionLinear": "Canvia a fracció lineal", - "DE.Views.DocumentHolder.txtFractionSkewed": "Canviar a la fracció inclinada", - "DE.Views.DocumentHolder.txtFractionStacked": "Canvia a fracció apilada", + "DE.Views.DocumentHolder.txtFractionLinear": "Canviar a fracció lineal", + "DE.Views.DocumentHolder.txtFractionSkewed": "Canviar a fracció inclinada", + "DE.Views.DocumentHolder.txtFractionStacked": "Canviar a fracció apilada", "DE.Views.DocumentHolder.txtGroup": "Agrupar", - "DE.Views.DocumentHolder.txtGroupCharOver": "Carrega el text", - "DE.Views.DocumentHolder.txtGroupCharUnder": "Línia sota el tex", - "DE.Views.DocumentHolder.txtHideBottom": "Amagar vora del botó", - "DE.Views.DocumentHolder.txtHideBottomLimit": "Amagar límit del botó", - "DE.Views.DocumentHolder.txtHideCloseBracket": "Amagar el suport del tancament", + "DE.Views.DocumentHolder.txtGroupCharOver": "Caràcter sobre el text", + "DE.Views.DocumentHolder.txtGroupCharUnder": "Caràcter sota el text", + "DE.Views.DocumentHolder.txtHideBottom": "Amagar la vora inferior", + "DE.Views.DocumentHolder.txtHideBottomLimit": "Amagar el límit inferior", + "DE.Views.DocumentHolder.txtHideCloseBracket": "Amagar el claudàtor del tancament", "DE.Views.DocumentHolder.txtHideDegree": "Amagar el grau", - "DE.Views.DocumentHolder.txtHideHor": "Amagar línia horitzontal", - "DE.Views.DocumentHolder.txtHideLB": "Amagar la línia del botó inferior esquerra", + "DE.Views.DocumentHolder.txtHideHor": "Amagar la línia horitzontal", + "DE.Views.DocumentHolder.txtHideLB": "Amagar la línia inferior esquerra", "DE.Views.DocumentHolder.txtHideLeft": "Amagar la vora esquerra", "DE.Views.DocumentHolder.txtHideLT": "Amagar la línia superior esquerra", - "DE.Views.DocumentHolder.txtHideOpenBracket": "Amagar el suport d’obertura", - "DE.Views.DocumentHolder.txtHidePlaceholder": "Amagar el marcador de lloc", + "DE.Views.DocumentHolder.txtHideOpenBracket": "Amagar el claudàtor d’obertura", + "DE.Views.DocumentHolder.txtHidePlaceholder": "Amagar el marcador de posició", "DE.Views.DocumentHolder.txtHideRight": "Amagar la vora dreta", "DE.Views.DocumentHolder.txtHideTop": "Amagar la vora superior", "DE.Views.DocumentHolder.txtHideTopLimit": "Amagar el límit superior", - "DE.Views.DocumentHolder.txtHideVer": "Amagar línia vertical", - "DE.Views.DocumentHolder.txtIncreaseArg": "Augmenta la mida de l'argument", + "DE.Views.DocumentHolder.txtHideVer": "Amagar la línia vertical", + "DE.Views.DocumentHolder.txtIncreaseArg": "Augmenteu la mida de l'argument", "DE.Views.DocumentHolder.txtInFront": "Davant", "DE.Views.DocumentHolder.txtInline": "En línia", - "DE.Views.DocumentHolder.txtInsertArgAfter": "Inseriu argument després", - "DE.Views.DocumentHolder.txtInsertArgBefore": "Inseriu argument abans", - "DE.Views.DocumentHolder.txtInsertBreak": "Inserir falca manual", - "DE.Views.DocumentHolder.txtInsertCaption": "Inseriu Llegenda", - "DE.Views.DocumentHolder.txtInsertEqAfter": "Inserir equació després de", - "DE.Views.DocumentHolder.txtInsertEqBefore": "Inserir equació abans de", - "DE.Views.DocumentHolder.txtKeepTextOnly": "Mantenir sols text", + "DE.Views.DocumentHolder.txtInsertArgAfter": "Inseriu l'argument després", + "DE.Views.DocumentHolder.txtInsertArgBefore": "Inseriu l'argument abans", + "DE.Views.DocumentHolder.txtInsertBreak": "Inseriu un salt manual", + "DE.Views.DocumentHolder.txtInsertCaption": "Inseriu llegenda", + "DE.Views.DocumentHolder.txtInsertEqAfter": "Inseriu equació després de", + "DE.Views.DocumentHolder.txtInsertEqBefore": "Inseriu equació abans de", + "DE.Views.DocumentHolder.txtKeepTextOnly": "Conserveu només el text", "DE.Views.DocumentHolder.txtLimitChange": "Canviar els límits de la ubicació", - "DE.Views.DocumentHolder.txtLimitOver": "Límit damunt del text", + "DE.Views.DocumentHolder.txtLimitOver": "Límit sobre el text", "DE.Views.DocumentHolder.txtLimitUnder": "Límit sota el text", - "DE.Views.DocumentHolder.txtMatchBrackets": "Relaciona els claudàtors amb l'alçada de l'argument", + "DE.Views.DocumentHolder.txtMatchBrackets": "Assigna els claudàtors a l'alçada de l'argument", "DE.Views.DocumentHolder.txtMatrixAlign": "Alineació de la matriu", "DE.Views.DocumentHolder.txtOverbar": "Barra sobre el text", - "DE.Views.DocumentHolder.txtOverwriteCells": "Sobreescriure les Cel·les", - "DE.Views.DocumentHolder.txtPasteSourceFormat": "Mantenir el format original", - "DE.Views.DocumentHolder.txtPressLink": "Premeu CTRL i feu clic a enllaç", - "DE.Views.DocumentHolder.txtPrintSelection": "Imprimir Selecció", - "DE.Views.DocumentHolder.txtRemFractionBar": "Treure la barra de fracció", - "DE.Views.DocumentHolder.txtRemLimit": "Esborrar límit", - "DE.Views.DocumentHolder.txtRemoveAccentChar": "Treure caràcter d'accent", - "DE.Views.DocumentHolder.txtRemoveBar": "Esborrar barra", - "DE.Views.DocumentHolder.txtRemScripts": "Esborrar text", - "DE.Views.DocumentHolder.txtRemSubscript": "Esborrar subíndexs", - "DE.Views.DocumentHolder.txtRemSuperscript": "Esborrar superíndexs", - "DE.Views.DocumentHolder.txtScriptsAfter": "Lletres després de text", - "DE.Views.DocumentHolder.txtScriptsBefore": "Lletres abans de text", - "DE.Views.DocumentHolder.txtShowBottomLimit": "Mostra el límit inferior", - "DE.Views.DocumentHolder.txtShowCloseBracket": "Mostra el claudàtor de tancament", - "DE.Views.DocumentHolder.txtShowDegree": "Mostrar grau", - "DE.Views.DocumentHolder.txtShowOpenBracket": "Mostra el suport d’obertura", - "DE.Views.DocumentHolder.txtShowPlaceholder": "Mostra el marcador de lloc", - "DE.Views.DocumentHolder.txtShowTopLimit": "Mostra el límit superior", + "DE.Views.DocumentHolder.txtOverwriteCells": "Sobreescriure les cel·les", + "DE.Views.DocumentHolder.txtPasteSourceFormat": "Conserveu el format original", + "DE.Views.DocumentHolder.txtPressLink": "Premeu CTRL i cliqueu a enllaç", + "DE.Views.DocumentHolder.txtPrintSelection": "Imprimir selecció", + "DE.Views.DocumentHolder.txtRemFractionBar": "Suprimir la barra de fracció", + "DE.Views.DocumentHolder.txtRemLimit": "Suprimir el límit", + "DE.Views.DocumentHolder.txtRemoveAccentChar": "Suprimiu el caràcter d'accent", + "DE.Views.DocumentHolder.txtRemoveBar": "Suprimir la barra", + "DE.Views.DocumentHolder.txtRemScripts": "Suprimir els scripts", + "DE.Views.DocumentHolder.txtRemSubscript": "Suprimir el subíndex", + "DE.Views.DocumentHolder.txtRemSuperscript": "Suprimir el superíndex", + "DE.Views.DocumentHolder.txtScriptsAfter": "Scripts després de text", + "DE.Views.DocumentHolder.txtScriptsBefore": "Scripts abans de text", + "DE.Views.DocumentHolder.txtShowBottomLimit": "Mostrar el límit inferior", + "DE.Views.DocumentHolder.txtShowCloseBracket": "Mostrar el claudàtor de tancament", + "DE.Views.DocumentHolder.txtShowDegree": "Mostrar el grau", + "DE.Views.DocumentHolder.txtShowOpenBracket": "Mostrar el claudàtor d’obertura", + "DE.Views.DocumentHolder.txtShowPlaceholder": "Mostrar el marcador de posició", + "DE.Views.DocumentHolder.txtShowTopLimit": "Mostrar el límit superior", "DE.Views.DocumentHolder.txtSquare": "Quadrat", "DE.Views.DocumentHolder.txtStretchBrackets": "Estirar claudàtors", "DE.Views.DocumentHolder.txtThrough": "A través", @@ -1575,73 +1575,73 @@ "DE.Views.DocumentHolder.txtUngroup": "Desagrupar", "DE.Views.DocumentHolder.updateStyleText": "Actualitzar estil %1", "DE.Views.DocumentHolder.vertAlignText": "Alineació vertical", - "DE.Views.DropcapSettingsAdvanced.strBorders": "Vora & Omplir", - "DE.Views.DropcapSettingsAdvanced.strDropcap": "Drop Cap", + "DE.Views.DropcapSettingsAdvanced.strBorders": "Vores & Omplir", + "DE.Views.DropcapSettingsAdvanced.strDropcap": "Lletra de caixa alta", "DE.Views.DropcapSettingsAdvanced.strMargins": "Marges", "DE.Views.DropcapSettingsAdvanced.textAlign": "Alineació", "DE.Views.DropcapSettingsAdvanced.textAtLeast": "Pel cap baix", - "DE.Views.DropcapSettingsAdvanced.textAuto": "Auto", + "DE.Views.DropcapSettingsAdvanced.textAuto": "Automàtic", "DE.Views.DropcapSettingsAdvanced.textBackColor": "Color de fons", - "DE.Views.DropcapSettingsAdvanced.textBorderColor": "Color Vora", - "DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Feu clic al diagrama o utilitzeu els botons per seleccionar les vores", - "DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Mida de la Vora", - "DE.Views.DropcapSettingsAdvanced.textBottom": "Inferior", - "DE.Views.DropcapSettingsAdvanced.textCenter": "Centre", + "DE.Views.DropcapSettingsAdvanced.textBorderColor": "Color de vora", + "DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Cliqueu en el diagrama o utilitzeu els botons per seleccionar les vores", + "DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Mida de la vora", + "DE.Views.DropcapSettingsAdvanced.textBottom": "Part inferior", + "DE.Views.DropcapSettingsAdvanced.textCenter": "Centrar", "DE.Views.DropcapSettingsAdvanced.textColumn": "Columna", "DE.Views.DropcapSettingsAdvanced.textDistance": "Distància del text", "DE.Views.DropcapSettingsAdvanced.textExact": "Exacte", "DE.Views.DropcapSettingsAdvanced.textFlow": "Marc de flux", - "DE.Views.DropcapSettingsAdvanced.textFont": "Font", + "DE.Views.DropcapSettingsAdvanced.textFont": "Tipus de lletra", "DE.Views.DropcapSettingsAdvanced.textFrame": "Marc", "DE.Views.DropcapSettingsAdvanced.textHeight": "Alçada", "DE.Views.DropcapSettingsAdvanced.textHorizontal": "Horitzontal", - "DE.Views.DropcapSettingsAdvanced.textInline": "Marc flotant", + "DE.Views.DropcapSettingsAdvanced.textInline": "Marc inserit", "DE.Views.DropcapSettingsAdvanced.textInMargin": "Al marge", "DE.Views.DropcapSettingsAdvanced.textInText": "Al text", "DE.Views.DropcapSettingsAdvanced.textLeft": "Esquerra", "DE.Views.DropcapSettingsAdvanced.textMargin": "Marge", - "DE.Views.DropcapSettingsAdvanced.textMove": "Moure amb el Text", + "DE.Views.DropcapSettingsAdvanced.textMove": "Moure amb el text", "DE.Views.DropcapSettingsAdvanced.textNone": "Cap", "DE.Views.DropcapSettingsAdvanced.textPage": "Pàgina", "DE.Views.DropcapSettingsAdvanced.textParagraph": "Paràgraf", "DE.Views.DropcapSettingsAdvanced.textParameters": "Paràmetres", "DE.Views.DropcapSettingsAdvanced.textPosition": "Posició", - "DE.Views.DropcapSettingsAdvanced.textRelative": "En relació a", + "DE.Views.DropcapSettingsAdvanced.textRelative": "Respecte a", "DE.Views.DropcapSettingsAdvanced.textRight": "Dreta", - "DE.Views.DropcapSettingsAdvanced.textRowHeight": "Alçada en Files", - "DE.Views.DropcapSettingsAdvanced.textTitle": "Drop Cap - Configuració avançada", - "DE.Views.DropcapSettingsAdvanced.textTitleFrame": "Marc - Configuració Avançada", + "DE.Views.DropcapSettingsAdvanced.textRowHeight": "Alçada de les files", + "DE.Views.DropcapSettingsAdvanced.textTitle": "Lletra de caixa alta - Configuració avançada", + "DE.Views.DropcapSettingsAdvanced.textTitleFrame": "Marc - configuració avançada", "DE.Views.DropcapSettingsAdvanced.textTop": "Superior", "DE.Views.DropcapSettingsAdvanced.textVertical": "Vertical", "DE.Views.DropcapSettingsAdvanced.textWidth": "Amplada", - "DE.Views.DropcapSettingsAdvanced.tipFontName": "Font", + "DE.Views.DropcapSettingsAdvanced.tipFontName": "Tipus de lletra", "DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Sense vores", - "DE.Views.EditListItemDialog.textDisplayName": "Mostra el nom", - "DE.Views.EditListItemDialog.textNameError": "El nom de la pantalla no ha d'estar buit.", + "DE.Views.EditListItemDialog.textDisplayName": "Mostrar el nom", + "DE.Views.EditListItemDialog.textNameError": "El nom de visualització no pot estar buit.", "DE.Views.EditListItemDialog.textValue": "Valor", "DE.Views.EditListItemDialog.textValueError": "Ja existeix un element amb el mateix valor.", - "DE.Views.FileMenu.btnBackCaption": "Obrir ubicació del arxiu", - "DE.Views.FileMenu.btnCloseMenuCaption": "Tancar Menú", - "DE.Views.FileMenu.btnCreateNewCaption": "Crear Nou", - "DE.Views.FileMenu.btnDownloadCaption": "Descarregar a...", + "DE.Views.FileMenu.btnBackCaption": "Obrir la ubicació del fitxer", + "DE.Views.FileMenu.btnCloseMenuCaption": "Tancar el menú", + "DE.Views.FileMenu.btnCreateNewCaption": "Crear nou", + "DE.Views.FileMenu.btnDownloadCaption": "Baixar com a...", "DE.Views.FileMenu.btnHelpCaption": "Ajuda...", "DE.Views.FileMenu.btnHistoryCaption": "Historial de versions", - "DE.Views.FileMenu.btnInfoCaption": "Informació del Document...", + "DE.Views.FileMenu.btnInfoCaption": "Informació del document...", "DE.Views.FileMenu.btnPrintCaption": "Imprimir", "DE.Views.FileMenu.btnProtectCaption": "Protegir", "DE.Views.FileMenu.btnRecentFilesCaption": "Obrir recent...", - "DE.Views.FileMenu.btnRenameCaption": "Canvia el nom ...", + "DE.Views.FileMenu.btnRenameCaption": "Canviar el nom ...", "DE.Views.FileMenu.btnReturnCaption": "Tornar al document", "DE.Views.FileMenu.btnRightsCaption": "Drets d'accés ...", "DE.Views.FileMenu.btnSaveAsCaption": "Desar com", "DE.Views.FileMenu.btnSaveCaption": "Desar", - "DE.Views.FileMenu.btnSaveCopyAsCaption": "Guardar Copia com a...", + "DE.Views.FileMenu.btnSaveCopyAsCaption": "Desar còpia com a...", "DE.Views.FileMenu.btnSettingsCaption": "Configuració avançada...", - "DE.Views.FileMenu.btnToEditCaption": "Editar Document", - "DE.Views.FileMenu.textDownload": "Descarregar", - "DE.Views.FileMenuPanels.CreateNew.fromBlankText": "Des de buit", - "DE.Views.FileMenuPanels.CreateNew.fromTemplateText": "Des d'una Plantilla", - "DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Creeu un document de text en blanc nou que podreu dissenyar i formatar un cop creat aquest durant l’edició. O bé trieu una de les plantilles per iniciar un document d’un determinat tipus o propòsit on ja s’han pre-aplicat alguns estils.", + "DE.Views.FileMenu.btnToEditCaption": "Editar el document", + "DE.Views.FileMenu.textDownload": "Baixar", + "DE.Views.FileMenuPanels.CreateNew.fromBlankText": "Des de zero", + "DE.Views.FileMenuPanels.CreateNew.fromTemplateText": "Des d'una plantilla", + "DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Creeu un nou document de text en blanc que podreu estilitzar i formatar després de crear-lo durant l'edició. O bé escolliu una de les plantilles per iniciar un document d'un determinat tipus o propòsit en què ja s'hagin aplicat prèviament alguns estils.", "DE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nou document de text", "DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "No hi ha plantilles", "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Aplicar", @@ -1652,14 +1652,14 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Canviar els drets d’accés", "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Comentari", "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Creat", - "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Carregant...", - "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Modificat Per", - "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Última Modificació", + "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "S'està carregant...", + "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Darrera modificació feta per", + "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Darrera modificació", "DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Propietari", "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Pàgines", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Paràgrafs", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Ubicació", - "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persones que tinguin drets", + "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persones que tenen drets", "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Símbols amb espais", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Estadístiques", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Assumpte", @@ -1668,197 +1668,197 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "S'ha carregat", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Paraules", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Canviar els drets d’accés", - "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Persones que tinguin drets", - "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Avís", + "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Persones que tenen drets", + "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Advertiment", "DE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Amb contrasenya", - "DE.Views.FileMenuPanels.ProtectDoc.strProtect": "Protegir Document", - "DE.Views.FileMenuPanels.ProtectDoc.strSignature": "Amb Firma", - "DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Editar document", - "DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "L’edició eliminarà les signatures del document.
Esteu segur que voleu continuar?", + "DE.Views.FileMenuPanels.ProtectDoc.strProtect": "Protegir el document", + "DE.Views.FileMenuPanels.ProtectDoc.strSignature": "Amb signatura", + "DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Editar el document", + "DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "L’edició eliminarà les signatures del document.
Segur que voleu continuar?", "DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Aquest document està protegit amb contrasenya", "DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "Aquest document s'ha de signar.", "DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "S'han afegit signatures vàlides al document. El document està protegit de l'edició.", - "DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Algunes de les signatures digitals del document no són vàlides o no s’han pogut verificar. El document està protegit de l'edició.", + "DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Algunes de les signatures digitals del document no són vàlides o no s’han pogut verificar. El document està protegit contra l'edició.", "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Mostra les signatures", "DE.Views.FileMenuPanels.Settings.okButtonText": "Aplicar", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Activa les guies d'alineació", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Activar la recuperació automàtica", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Activar el desament automàtic", - "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Mode de Coedició", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Altres usuaris veuran els canvis alhora", + "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Activa la recuperació automàtica", + "DE.Views.FileMenuPanels.Settings.strAutosave": "Activa el desament automàtic", + "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Mode de coedició", + "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Els altres usuaris veuran els vostres canvis immediatament", "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Haureu d’acceptar els canvis abans de poder-los veure", "DE.Views.FileMenuPanels.Settings.strFast": "Ràpid", - "DE.Views.FileMenuPanels.Settings.strFontRender": "Font Suggerida", + "DE.Views.FileMenuPanels.Settings.strFontRender": "Tipus de lletra suggerides", "DE.Views.FileMenuPanels.Settings.strForcesave": "Afegeix una versió a l'emmagatzematge després de fer clic a Desar o Ctrl+S", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Activar els jeroglífics", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Activar la visualització dels comentaris", - "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Configuració de macros", + "DE.Views.FileMenuPanels.Settings.strInputMode": "Activa els jeroglífics", + "DE.Views.FileMenuPanels.Settings.strLiveComment": "Activa la visualització dels comentaris", + "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Configuració de les macros", "DE.Views.FileMenuPanels.Settings.strPaste": "Tallar, copiar i enganxar", - "DE.Views.FileMenuPanels.Settings.strPasteButton": "Mostra el botó d'opcions d’enganxar quan s’enganxa contingut", + "DE.Views.FileMenuPanels.Settings.strPasteButton": "Mostrar el botó d'opcions d’enganxar quan s’enganxa contingut", "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Activa la visualització dels comentaris resolts", - "DE.Views.FileMenuPanels.Settings.strShowChanges": "Canvis de Col·laboració en temps real", - "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Activar l’opció de correcció ortogràfica", + "DE.Views.FileMenuPanels.Settings.strShowChanges": "Canvis de col·laboració en temps real", + "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Activa l’opció de correcció ortogràfica", "DE.Views.FileMenuPanels.Settings.strStrict": "Estricte", "DE.Views.FileMenuPanels.Settings.strTheme": "Tema de la interfície", "DE.Views.FileMenuPanels.Settings.strUnit": "Unitat de mesura", - "DE.Views.FileMenuPanels.Settings.strZoom": "Valor de Zoom Predeterminat", + "DE.Views.FileMenuPanels.Settings.strZoom": "Valor de zoom predeterminat", "DE.Views.FileMenuPanels.Settings.text10Minutes": "Cada 10 minuts", "DE.Views.FileMenuPanels.Settings.text30Minutes": "Cada 30 minuts", "DE.Views.FileMenuPanels.Settings.text5Minutes": "Cada 5 minuts", - "DE.Views.FileMenuPanels.Settings.text60Minutes": "Cada Hora", - "DE.Views.FileMenuPanels.Settings.textAlignGuides": "Guies d'Alineació", + "DE.Views.FileMenuPanels.Settings.text60Minutes": "Cada hora", + "DE.Views.FileMenuPanels.Settings.textAlignGuides": "Guies d'alineació", "DE.Views.FileMenuPanels.Settings.textAutoRecover": "Recuperació automàtica", - "DE.Views.FileMenuPanels.Settings.textAutoSave": "Desar Automàticament", + "DE.Views.FileMenuPanels.Settings.textAutoSave": "Desament automàtic", "DE.Views.FileMenuPanels.Settings.textCompatible": "Compatibilitat", - "DE.Views.FileMenuPanels.Settings.textDisabled": "Desactivat", - "DE.Views.FileMenuPanels.Settings.textForceSave": "Desant versions intermèdies", - "DE.Views.FileMenuPanels.Settings.textMinute": "Cada Minut", + "DE.Views.FileMenuPanels.Settings.textDisabled": "Inhabilitat", + "DE.Views.FileMenuPanels.Settings.textForceSave": "S'estan desant versions intermèdies", + "DE.Views.FileMenuPanels.Settings.textMinute": "Cada minut", "DE.Views.FileMenuPanels.Settings.textOldVersions": "Feu que els fitxers siguin compatibles amb versions anteriors de MS Word quan els deseu com a DOCX", "DE.Views.FileMenuPanels.Settings.txtAll": "Veure-ho tot", "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Opcions de correcció automàtica ...", "DE.Views.FileMenuPanels.Settings.txtCacheMode": "Mode de memòria cau per defecte", "DE.Views.FileMenuPanels.Settings.txtCm": "Centímetre", - "DE.Views.FileMenuPanels.Settings.txtFitPage": "Ajusta a Pàgina", - "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Ajusta a Amplada", + "DE.Views.FileMenuPanels.Settings.txtFitPage": "Ajustar a la pàgina", + "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Ajustar a l'amplada", "DE.Views.FileMenuPanels.Settings.txtInch": "Polzada", "DE.Views.FileMenuPanels.Settings.txtInput": "Entrada alternativa", "DE.Views.FileMenuPanels.Settings.txtLast": "Mostra l'últim", - "DE.Views.FileMenuPanels.Settings.txtLiveComment": "Visualització de Comentaris", + "DE.Views.FileMenuPanels.Settings.txtLiveComment": "Visualització dels comentaris", "DE.Views.FileMenuPanels.Settings.txtMac": "com a OS X", "DE.Views.FileMenuPanels.Settings.txtNative": "Natiu", - "DE.Views.FileMenuPanels.Settings.txtNone": "No veure cap", + "DE.Views.FileMenuPanels.Settings.txtNone": "No en mostris cap", "DE.Views.FileMenuPanels.Settings.txtProofing": "Prova", "DE.Views.FileMenuPanels.Settings.txtPt": "Punt", - "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Activa tot", + "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Habilitar-ho tot", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Habiliteu totes les macros sense una notificació", - "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Comprovació Ortogràfica", - "DE.Views.FileMenuPanels.Settings.txtStopMacros": "Inhabilita tot", - "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Desactiveu totes les macros sense una notificació", - "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostra la Notificació", - "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Desactiveu totes les macros amb una notificació", + "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Revisió ortogràfica", + "DE.Views.FileMenuPanels.Settings.txtStopMacros": "Inhabilitar-ho tot", + "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Inhabilitar totes les macros sense una notificació", + "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostrar la notificació", + "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Inhabilitar totes les macros amb una notificació", "DE.Views.FileMenuPanels.Settings.txtWin": "com a Windows", "DE.Views.FormSettings.textAlways": "Sempre", - "DE.Views.FormSettings.textAspect": "Blocar relació d'aspecte", + "DE.Views.FormSettings.textAspect": "Bloca la relació d'aspecte", "DE.Views.FormSettings.textAutofit": "Ajusta automàticament", - "DE.Views.FormSettings.textCheckbox": "\nCasella de selecció", - "DE.Views.FormSettings.textColor": "Color Vora", - "DE.Views.FormSettings.textComb": "Pinta de caràcters", + "DE.Views.FormSettings.textCheckbox": "Casella de selecció", + "DE.Views.FormSettings.textColor": "Color de vora", + "DE.Views.FormSettings.textComb": "Combinació de caràcters", "DE.Views.FormSettings.textCombobox": "Quadre combinat", "DE.Views.FormSettings.textConnected": "Camps connectats", - "DE.Views.FormSettings.textDelete": "Suprimeix", + "DE.Views.FormSettings.textDelete": "Suprimir", "DE.Views.FormSettings.textDisconnect": "Desconnectar", - "DE.Views.FormSettings.textDropDown": "Desplegar", + "DE.Views.FormSettings.textDropDown": "Desplegable", "DE.Views.FormSettings.textField": "Camp de text", "DE.Views.FormSettings.textFixed": "Camp de mida fixa", "DE.Views.FormSettings.textFromFile": "Des d'un fitxer", - "DE.Views.FormSettings.textFromStorage": "Des de l'Emmagatzematge", + "DE.Views.FormSettings.textFromStorage": "Des de l’emmagatzematge", "DE.Views.FormSettings.textFromUrl": "Des de l'URL", "DE.Views.FormSettings.textGroupKey": "Clau de grup", "DE.Views.FormSettings.textImage": "Imatge", "DE.Views.FormSettings.textKey": "Clau", - "DE.Views.FormSettings.textLock": "Bloqueja", + "DE.Views.FormSettings.textLock": "Bloca", "DE.Views.FormSettings.textMaxChars": "Límit de caràcters", "DE.Views.FormSettings.textMulti": "Camp multilínia", "DE.Views.FormSettings.textNever": "Mai", "DE.Views.FormSettings.textNoBorder": "Sense vora", "DE.Views.FormSettings.textPlaceholder": "Marcador de posició", "DE.Views.FormSettings.textRadiobox": "Botó d'opció", - "DE.Views.FormSettings.textRequired": "Requerit", - "DE.Views.FormSettings.textScale": "Quan ajusta a escala", + "DE.Views.FormSettings.textRequired": "Necessari", + "DE.Views.FormSettings.textScale": "Quan s'ajusta a escala", "DE.Views.FormSettings.textSelectImage": "Seleccionar imatge", "DE.Views.FormSettings.textTip": "Consell", "DE.Views.FormSettings.textTipAdd": "Afegir un valor nou", - "DE.Views.FormSettings.textTipDelete": "Suprimeix el valor", - "DE.Views.FormSettings.textTipDown": "Mou avall", - "DE.Views.FormSettings.textTipUp": "Mou amunt", - "DE.Views.FormSettings.textTooBig": "La Imatge és Massa Gran", - "DE.Views.FormSettings.textTooSmall": "La Imatge és Massa Petita", + "DE.Views.FormSettings.textTipDelete": "Suprimir el valor", + "DE.Views.FormSettings.textTipDown": "Moure cap avall", + "DE.Views.FormSettings.textTipUp": "Moure cap amunt", + "DE.Views.FormSettings.textTooBig": "La imatge és massa gran", + "DE.Views.FormSettings.textTooSmall": "La imatge és massa peita", "DE.Views.FormSettings.textUnlock": "Desbloquejar", "DE.Views.FormSettings.textValue": "Opcions de valor", - "DE.Views.FormSettings.textWidth": "Ample de cel·la", + "DE.Views.FormSettings.textWidth": "Amplada de la cel·la", "DE.Views.FormsTab.capBtnCheckBox": "Casella de selecció", "DE.Views.FormsTab.capBtnComboBox": "Quadre combinat", "DE.Views.FormsTab.capBtnDropDown": "Desplegable", "DE.Views.FormsTab.capBtnImage": "Imatge", - "DE.Views.FormsTab.capBtnNext": "Camp Següent", + "DE.Views.FormsTab.capBtnNext": "Camp següent", "DE.Views.FormsTab.capBtnPrev": "Camp anterior", "DE.Views.FormsTab.capBtnRadioBox": "Botó d'opció", "DE.Views.FormsTab.capBtnSubmit": "Enviar", "DE.Views.FormsTab.capBtnText": "Camp de text", "DE.Views.FormsTab.capBtnView": "Mostra el formulari", - "DE.Views.FormsTab.textClear": "Neteja els camps", + "DE.Views.FormsTab.textClear": "Esborrar els camps", "DE.Views.FormsTab.textClearFields": "Esborrar tots els camps", - "DE.Views.FormsTab.textHighlight": "Paràmetres de ressaltat", + "DE.Views.FormsTab.textHighlight": "Ressaltar la configuració", "DE.Views.FormsTab.textNewColor": "Afegir un color nou personalitzat", - "DE.Views.FormsTab.textNoHighlight": "Sense ressaltat", - "DE.Views.FormsTab.textRequired": "Ompli tots els camps requerits per enviar el formulari.", + "DE.Views.FormsTab.textNoHighlight": "Sense ressaltar", + "DE.Views.FormsTab.textRequired": "Ompliu tots els camps requerits per enviar el formulari.", "DE.Views.FormsTab.textSubmited": "El formulari s'ha enviat correctament", - "DE.Views.FormsTab.tipCheckBox": "Insereix casella de selecció", - "DE.Views.FormsTab.tipComboBox": "Insereix casella de combinació", - "DE.Views.FormsTab.tipDropDown": "Insereix llista desplegable", - "DE.Views.FormsTab.tipImageField": "Insereix imatge", - "DE.Views.FormsTab.tipNextForm": "Vés al camp següent", - "DE.Views.FormsTab.tipPrevForm": "Vés al camp anterior", - "DE.Views.FormsTab.tipRadioBox": "Insereix botó d'opció", + "DE.Views.FormsTab.tipCheckBox": "Inseriu casella de selecció", + "DE.Views.FormsTab.tipComboBox": "Inseriu quadre combinat", + "DE.Views.FormsTab.tipDropDown": "Inseriu llista desplegable", + "DE.Views.FormsTab.tipImageField": "Inseriu imatge", + "DE.Views.FormsTab.tipNextForm": "Anar al camp següent", + "DE.Views.FormsTab.tipPrevForm": "Anar al camp anterior", + "DE.Views.FormsTab.tipRadioBox": "Inseriu botó d'opció", "DE.Views.FormsTab.tipSubmit": "Enviar formulari", - "DE.Views.FormsTab.tipTextField": "Insereix camp de text", + "DE.Views.FormsTab.tipTextField": "Inseriu camp de text", "DE.Views.FormsTab.tipViewForm": "Mostra el formulari", - "DE.Views.HeaderFooterSettings.textBottomCenter": "Inferior centre", - "DE.Views.HeaderFooterSettings.textBottomLeft": "Inferior esquerra", - "DE.Views.HeaderFooterSettings.textBottomPage": "Al Peu de Pàgina", - "DE.Views.HeaderFooterSettings.textBottomRight": "Inferior dreta", + "DE.Views.HeaderFooterSettings.textBottomCenter": "Part inferior central", + "DE.Views.HeaderFooterSettings.textBottomLeft": "Part inferior esquerra", + "DE.Views.HeaderFooterSettings.textBottomPage": "Final de la pàgina", + "DE.Views.HeaderFooterSettings.textBottomRight": "Part inferior dreta", "DE.Views.HeaderFooterSettings.textDiffFirst": "Primera pàgina diferent", - "DE.Views.HeaderFooterSettings.textDiffOdd": "Diferents pàgines parells", - "DE.Views.HeaderFooterSettings.textFrom": "Comença a", + "DE.Views.HeaderFooterSettings.textDiffOdd": "Pàgines senars i parells diferents", + "DE.Views.HeaderFooterSettings.textFrom": "Començar a", "DE.Views.HeaderFooterSettings.textHeaderFromBottom": "Peu de pàgina inferior", - "DE.Views.HeaderFooterSettings.textHeaderFromTop": "Capçalera de Dalt", - "DE.Views.HeaderFooterSettings.textInsertCurrent": "Inserir en la Posició Actual", + "DE.Views.HeaderFooterSettings.textHeaderFromTop": "Capçalera de dalt", + "DE.Views.HeaderFooterSettings.textInsertCurrent": "Inseriu en la posició actual", "DE.Views.HeaderFooterSettings.textOptions": "Opcions", - "DE.Views.HeaderFooterSettings.textPageNum": "Inserir Número de Pàgina", - "DE.Views.HeaderFooterSettings.textPageNumbering": "Numeració de Pàgines", + "DE.Views.HeaderFooterSettings.textPageNum": "Inseriu número de pàgina", + "DE.Views.HeaderFooterSettings.textPageNumbering": "Numeració de pàgines", "DE.Views.HeaderFooterSettings.textPosition": "Posició", - "DE.Views.HeaderFooterSettings.textPrev": "Continua des de la secció anterior", - "DE.Views.HeaderFooterSettings.textSameAs": "Vista Prèvia Enllaç", + "DE.Views.HeaderFooterSettings.textPrev": "Continuar des de la secció anterior", + "DE.Views.HeaderFooterSettings.textSameAs": "Enllaçar-ho amb l'anterior", "DE.Views.HeaderFooterSettings.textTopCenter": "Superior centre", "DE.Views.HeaderFooterSettings.textTopLeft": "Superior esquerra", "DE.Views.HeaderFooterSettings.textTopPage": "Principi de pàgina", "DE.Views.HeaderFooterSettings.textTopRight": "Superior dret", "DE.Views.HyperlinkSettingsDialog.textDefault": "Fragment de text seleccionat", - "DE.Views.HyperlinkSettingsDialog.textDisplay": "Pantalla", + "DE.Views.HyperlinkSettingsDialog.textDisplay": "Visualització", "DE.Views.HyperlinkSettingsDialog.textExternal": "Enllaç extern", - "DE.Views.HyperlinkSettingsDialog.textInternal": "Lloc en Document", - "DE.Views.HyperlinkSettingsDialog.textTitle": "Característiques de hipervincle", + "DE.Views.HyperlinkSettingsDialog.textInternal": "Col·locar al document", + "DE.Views.HyperlinkSettingsDialog.textTitle": "Configuració de l’enllaç", "DE.Views.HyperlinkSettingsDialog.textTooltip": "Informació en pantalla", "DE.Views.HyperlinkSettingsDialog.textUrl": "Enllaç a", "DE.Views.HyperlinkSettingsDialog.txtBeginning": "Inici del document", "DE.Views.HyperlinkSettingsDialog.txtBookmarks": "Marcadors", "DE.Views.HyperlinkSettingsDialog.txtEmpty": "Aquest camp és obligatori", - "DE.Views.HyperlinkSettingsDialog.txtHeadings": "Rúbriques", + "DE.Views.HyperlinkSettingsDialog.txtHeadings": "Capçaleres", "DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Aquest camp hauria de ser un enllaç amb el format \"http://www.example.com\"", "DE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Aquest camp està limitat a 2083 caràcters", - "DE.Views.ImageSettings.textAdvanced": "Mostra la configuració avançada", + "DE.Views.ImageSettings.textAdvanced": "Mostrar la configuració avançada", "DE.Views.ImageSettings.textCrop": "Retallar", "DE.Views.ImageSettings.textCropFill": "Omplir", "DE.Views.ImageSettings.textCropFit": "Ajusta", - "DE.Views.ImageSettings.textEdit": "Edita", - "DE.Views.ImageSettings.textEditObject": "Edita l'Objecte", - "DE.Views.ImageSettings.textFitMargins": "Ajusta al Marge", - "DE.Views.ImageSettings.textFlip": "Voltejar", + "DE.Views.ImageSettings.textEdit": "Editar", + "DE.Views.ImageSettings.textEditObject": "Editar l'objecte", + "DE.Views.ImageSettings.textFitMargins": "Ajustar al marge", + "DE.Views.ImageSettings.textFlip": "Capgirar", "DE.Views.ImageSettings.textFromFile": "Des d'un fitxer", - "DE.Views.ImageSettings.textFromStorage": "Des d'Emmagatzematge", - "DE.Views.ImageSettings.textFromUrl": "Des d'un Enllaç", + "DE.Views.ImageSettings.textFromStorage": "Des de l’emmagatzematge", + "DE.Views.ImageSettings.textFromUrl": "Des de l'URL", "DE.Views.ImageSettings.textHeight": "Alçada", "DE.Views.ImageSettings.textHint270": "Girar 90° a l'esquerra", "DE.Views.ImageSettings.textHint90": "Girar 90° a la dreta", - "DE.Views.ImageSettings.textHintFlipH": "Voltejar Horitzontalment", - "DE.Views.ImageSettings.textHintFlipV": "Voltejar Verticalment", - "DE.Views.ImageSettings.textInsert": "Canviar Imatge", + "DE.Views.ImageSettings.textHintFlipH": "Capgirar horitzontalment", + "DE.Views.ImageSettings.textHintFlipV": "Capgirar verticalment", + "DE.Views.ImageSettings.textInsert": "Substituir la imatge", "DE.Views.ImageSettings.textOriginalSize": "Mida real", "DE.Views.ImageSettings.textRotate90": "Girar 90°", "DE.Views.ImageSettings.textRotation": "Rotació", "DE.Views.ImageSettings.textSize": "Mida", "DE.Views.ImageSettings.textWidth": "Amplada", - "DE.Views.ImageSettings.textWrap": "Ajustament de l'estil ", + "DE.Views.ImageSettings.textWrap": "Estil d'ajustament", "DE.Views.ImageSettings.txtBehind": "Darrere", "DE.Views.ImageSettings.txtInFront": "Davant", "DE.Views.ImageSettings.txtInline": "En línia", @@ -1875,65 +1875,65 @@ "DE.Views.ImageSettingsAdvanced.textAltTitle": "Títol", "DE.Views.ImageSettingsAdvanced.textAngle": "Angle", "DE.Views.ImageSettingsAdvanced.textArrows": "Fletxes", - "DE.Views.ImageSettingsAdvanced.textAspectRatio": "Bloquejar relació d'aspecte", + "DE.Views.ImageSettingsAdvanced.textAspectRatio": "Bloca la relació d'aspecte", "DE.Views.ImageSettingsAdvanced.textAutofit": "Ajusta automàticament", - "DE.Views.ImageSettingsAdvanced.textBeginSize": "Mida Inicial", - "DE.Views.ImageSettingsAdvanced.textBeginStyle": "Estil d’Inici", - "DE.Views.ImageSettingsAdvanced.textBelow": "abaix", + "DE.Views.ImageSettingsAdvanced.textBeginSize": "Mida inicial", + "DE.Views.ImageSettingsAdvanced.textBeginStyle": "Estil inicial", + "DE.Views.ImageSettingsAdvanced.textBelow": "més avall", "DE.Views.ImageSettingsAdvanced.textBevel": "Bisell", - "DE.Views.ImageSettingsAdvanced.textBottom": "Inferior", + "DE.Views.ImageSettingsAdvanced.textBottom": "Part inferior", "DE.Views.ImageSettingsAdvanced.textBottomMargin": "Inferior al Marge", "DE.Views.ImageSettingsAdvanced.textBtnWrap": "Ajustament del text", - "DE.Views.ImageSettingsAdvanced.textCapType": "Tipus de Cap", - "DE.Views.ImageSettingsAdvanced.textCenter": "Centre", + "DE.Views.ImageSettingsAdvanced.textCapType": "Tipus de majúscules", + "DE.Views.ImageSettingsAdvanced.textCenter": "Centrar", "DE.Views.ImageSettingsAdvanced.textCharacter": "Caràcter", "DE.Views.ImageSettingsAdvanced.textColumn": "Columna", "DE.Views.ImageSettingsAdvanced.textDistance": "Distància del text", "DE.Views.ImageSettingsAdvanced.textEndSize": "Mida final", "DE.Views.ImageSettingsAdvanced.textEndStyle": "Estil final", - "DE.Views.ImageSettingsAdvanced.textFlat": "Flat", - "DE.Views.ImageSettingsAdvanced.textFlipped": "Voltejat", + "DE.Views.ImageSettingsAdvanced.textFlat": "Pla", + "DE.Views.ImageSettingsAdvanced.textFlipped": "Capgirat", "DE.Views.ImageSettingsAdvanced.textHeight": "Alçada", "DE.Views.ImageSettingsAdvanced.textHorizontal": "Horitzontal", "DE.Views.ImageSettingsAdvanced.textHorizontally": "Horitzontalment", "DE.Views.ImageSettingsAdvanced.textJoinType": "Tipus d'unió", - "DE.Views.ImageSettingsAdvanced.textKeepRatio": "Proporcions Constants", + "DE.Views.ImageSettingsAdvanced.textKeepRatio": "Proporcions constants", "DE.Views.ImageSettingsAdvanced.textLeft": "Esquerra", "DE.Views.ImageSettingsAdvanced.textLeftMargin": "Marge esquerra", "DE.Views.ImageSettingsAdvanced.textLine": "Línia", "DE.Views.ImageSettingsAdvanced.textLineStyle": "Estil de línia", "DE.Views.ImageSettingsAdvanced.textMargin": "Marge", - "DE.Views.ImageSettingsAdvanced.textMiter": "Angle", + "DE.Views.ImageSettingsAdvanced.textMiter": "Delimitador", "DE.Views.ImageSettingsAdvanced.textMove": "Moure objecte amb text", "DE.Views.ImageSettingsAdvanced.textOptions": "Opcions", "DE.Views.ImageSettingsAdvanced.textOriginalSize": "Mida real", - "DE.Views.ImageSettingsAdvanced.textOverlap": "Permet la superposició", + "DE.Views.ImageSettingsAdvanced.textOverlap": "Permetre la superposició", "DE.Views.ImageSettingsAdvanced.textPage": "Pàgina", "DE.Views.ImageSettingsAdvanced.textParagraph": "Paràgraf", "DE.Views.ImageSettingsAdvanced.textPosition": "Posició", - "DE.Views.ImageSettingsAdvanced.textPositionPc": "Posició Relativa", - "DE.Views.ImageSettingsAdvanced.textRelative": "en relació a", + "DE.Views.ImageSettingsAdvanced.textPositionPc": "Posició relativa", + "DE.Views.ImageSettingsAdvanced.textRelative": "respecte a", "DE.Views.ImageSettingsAdvanced.textRelativeWH": "Relatiu", - "DE.Views.ImageSettingsAdvanced.textResizeFit": "Redimensiona la forma per adaptar-se al text", + "DE.Views.ImageSettingsAdvanced.textResizeFit": "Canviar la mida de la forma per ajustar-la al text", "DE.Views.ImageSettingsAdvanced.textRight": "Dreta", - "DE.Views.ImageSettingsAdvanced.textRightMargin": "Marge Dret", + "DE.Views.ImageSettingsAdvanced.textRightMargin": "Marge dret", "DE.Views.ImageSettingsAdvanced.textRightOf": "a la dreta de", "DE.Views.ImageSettingsAdvanced.textRotation": "Rotació", "DE.Views.ImageSettingsAdvanced.textRound": "Rodó", - "DE.Views.ImageSettingsAdvanced.textShape": "Configuració de la Forma", + "DE.Views.ImageSettingsAdvanced.textShape": "Configuració de la forma", "DE.Views.ImageSettingsAdvanced.textSize": "Mida", "DE.Views.ImageSettingsAdvanced.textSquare": "Quadrat", "DE.Views.ImageSettingsAdvanced.textTextBox": "Quadre de text", "DE.Views.ImageSettingsAdvanced.textTitle": "Imatge - Configuració Avançada", - "DE.Views.ImageSettingsAdvanced.textTitleChart": "Gràfic-Configuració Avançada", - "DE.Views.ImageSettingsAdvanced.textTitleShape": "Forma - Configuració Avançada", + "DE.Views.ImageSettingsAdvanced.textTitleChart": "Gràfic - Configuració avançada", + "DE.Views.ImageSettingsAdvanced.textTitleShape": "Forma - configuració avançada", "DE.Views.ImageSettingsAdvanced.textTop": "Superior", "DE.Views.ImageSettingsAdvanced.textTopMargin": "Marge superior", "DE.Views.ImageSettingsAdvanced.textVertical": "Vertical", "DE.Views.ImageSettingsAdvanced.textVertically": "Verticalment", "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Gruix i fletxes", "DE.Views.ImageSettingsAdvanced.textWidth": "Amplada", - "DE.Views.ImageSettingsAdvanced.textWrap": "Ajustament de l'estil ", + "DE.Views.ImageSettingsAdvanced.textWrap": "Estil d'ajustament", "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Darrere", "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Davant", "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "En línia", @@ -1945,15 +1945,15 @@ "DE.Views.LeftMenu.tipChat": "Xat", "DE.Views.LeftMenu.tipComments": "Comentaris", "DE.Views.LeftMenu.tipNavigation": "Navegació", - "DE.Views.LeftMenu.tipPlugins": "Connectors", - "DE.Views.LeftMenu.tipSearch": "Cerca", - "DE.Views.LeftMenu.tipSupport": "Opinió & Suport", + "DE.Views.LeftMenu.tipPlugins": "Complements", + "DE.Views.LeftMenu.tipSearch": "Cercar", + "DE.Views.LeftMenu.tipSupport": "Comentaris i servei d'atenció al client", "DE.Views.LeftMenu.tipTitles": "Títols", - "DE.Views.LeftMenu.txtDeveloper": "MODALITAT DE DESENVOLUPADOR", + "DE.Views.LeftMenu.txtDeveloper": "MODE PER A DESENVOLUPADORS", "DE.Views.LeftMenu.txtLimit": "Limitar l'accés", "DE.Views.LeftMenu.txtTrial": "MODE DE PROVA", "DE.Views.LeftMenu.txtTrialDev": "Mode de desenvolupador de prova", - "DE.Views.LineNumbersDialog.textAddLineNumbering": "Afegir numeració de línies", + "DE.Views.LineNumbersDialog.textAddLineNumbering": "Afegir numeració de línia", "DE.Views.LineNumbersDialog.textApplyTo": "Aplicar els canvis a", "DE.Views.LineNumbersDialog.textContinuous": "Contínua", "DE.Views.LineNumbersDialog.textCountBy": "Contar per", @@ -1961,100 +1961,100 @@ "DE.Views.LineNumbersDialog.textForward": "Aquest punt endavant", "DE.Views.LineNumbersDialog.textFromText": "Del text", "DE.Views.LineNumbersDialog.textNumbering": "Numeració", - "DE.Views.LineNumbersDialog.textRestartEachPage": "Reiniciar cada pàgina", - "DE.Views.LineNumbersDialog.textRestartEachSection": "Reiniciar cada secció", + "DE.Views.LineNumbersDialog.textRestartEachPage": "Reinicieu cada pàgina", + "DE.Views.LineNumbersDialog.textRestartEachSection": "Reinicieu cada secció", "DE.Views.LineNumbersDialog.textSection": "Secció actual", "DE.Views.LineNumbersDialog.textStartAt": "Començar a", - "DE.Views.LineNumbersDialog.textTitle": "Números de Línies", + "DE.Views.LineNumbersDialog.textTitle": "Números de línia", "DE.Views.LineNumbersDialog.txtAutoText": "Automàtic", "DE.Views.Links.capBtnBookmarks": "Marcador", - "DE.Views.Links.capBtnCaption": "Subtítol", + "DE.Views.Links.capBtnCaption": "Llegenda", "DE.Views.Links.capBtnContentsUpdate": "Actualitzar", "DE.Views.Links.capBtnCrossRef": "Referència creuada", "DE.Views.Links.capBtnInsContents": "Taula de continguts", - "DE.Views.Links.capBtnInsFootnote": "Nota a peu de pàgina", - "DE.Views.Links.capBtnInsLink": "Hiperenllaç", - "DE.Views.Links.capBtnTOF": "Taula de figures", + "DE.Views.Links.capBtnInsFootnote": "Nota al peu de pàgina", + "DE.Views.Links.capBtnInsLink": "Enllaç", + "DE.Views.Links.capBtnTOF": "Índex d'il·lustracions", "DE.Views.Links.confirmDeleteFootnotes": "Voleu suprimir totes les notes al peu de pàgina?", "DE.Views.Links.confirmReplaceTOF": "Voleu substituir la taula de figures seleccionada?", - "DE.Views.Links.mniConvertNote": "Converteix Totes les Notes", - "DE.Views.Links.mniDelFootnote": "Suprimeix Totes les Notes", - "DE.Views.Links.mniInsEndnote": "Inseriu Nota Final", - "DE.Views.Links.mniInsFootnote": "Inserir Nota Peu Pàgina", - "DE.Views.Links.mniNoteSettings": "Ajust de les notes a peu de pàgina", + "DE.Views.Links.mniConvertNote": "Converteix totes les notes", + "DE.Views.Links.mniDelFootnote": "Suprimir totes les notes", + "DE.Views.Links.mniInsEndnote": "Inseriu nota al final", + "DE.Views.Links.mniInsFootnote": "Inseriu nota al peu de pàgina", + "DE.Views.Links.mniNoteSettings": "Configuració de notes", "DE.Views.Links.textContentsRemove": "Suprimir la taula de continguts", "DE.Views.Links.textContentsSettings": "Configuració", - "DE.Views.Links.textConvertToEndnotes": "Converteix totes les Notes a Peu de pàgina a notes finals", - "DE.Views.Links.textConvertToFootnotes": "Converteix totes les notes finals a Notes al Peu", - "DE.Views.Links.textGotoEndnote": "Anar a Notes al Final", - "DE.Views.Links.textGotoFootnote": "Anar a Peu de Pàgina", - "DE.Views.Links.textSwapNotes": "Intercanviar Notes a Peu de pàgina i Notes Finals", - "DE.Views.Links.textUpdateAll": "Actualitzar tota la taula", - "DE.Views.Links.textUpdatePages": "Actualitza només números de pàgina", + "DE.Views.Links.textConvertToEndnotes": "Converteix totes les notes finals a notes al peu", + "DE.Views.Links.textConvertToFootnotes": "Converteix totes les notes finals a notes al peu", + "DE.Views.Links.textGotoEndnote": "Anar a notes al final", + "DE.Views.Links.textGotoFootnote": "Anar a notes a peu de pàgina", + "DE.Views.Links.textSwapNotes": "Intercanviar notes al peu de pàgina i notes Finals", + "DE.Views.Links.textUpdateAll": "Actualitzar la taula sencera", + "DE.Views.Links.textUpdatePages": "Actualitzar només els números de pàgina", "DE.Views.Links.tipBookmarks": "Crear un marcador", "DE.Views.Links.tipCaption": "Inseriu llegenda", - "DE.Views.Links.tipContents": "Introduir taula de continguts", - "DE.Views.Links.tipContentsUpdate": "Actualitza la taula de continguts", + "DE.Views.Links.tipContents": "Inseriu taula de continguts", + "DE.Views.Links.tipContentsUpdate": "Actualitzar la taula de continguts", "DE.Views.Links.tipCrossRef": "Inseriu referència creuada", "DE.Views.Links.tipInsertHyperlink": "Afegir enllaç", - "DE.Views.Links.tipNotes": "Inseriu o editeu notes a la pàgina de pàgina", - "DE.Views.Links.tipTableFigures": "Insereix taula de figures", - "DE.Views.Links.tipTableFiguresUpdate": "Actualitza la taula de figures", - "DE.Views.Links.titleUpdateTOF": "Actualitza la taula de figures", + "DE.Views.Links.tipNotes": "Inseriu o editeu notes a peu de pàgina", + "DE.Views.Links.tipTableFigures": "Inseriu taula de figures", + "DE.Views.Links.tipTableFiguresUpdate": "Actualitzar l'índex d'il·lustracions", + "DE.Views.Links.titleUpdateTOF": "Actualitzar l'índex d'il·lustracions", "DE.Views.ListSettingsDialog.textAuto": "Automàtic", - "DE.Views.ListSettingsDialog.textCenter": "Centre", + "DE.Views.ListSettingsDialog.textCenter": "Centrar", "DE.Views.ListSettingsDialog.textLeft": "Esquerra", "DE.Views.ListSettingsDialog.textLevel": "Nivell", - "DE.Views.ListSettingsDialog.textPreview": "Vista prèvia", + "DE.Views.ListSettingsDialog.textPreview": "Visualització prèvia", "DE.Views.ListSettingsDialog.textRight": "Dreta", "DE.Views.ListSettingsDialog.txtAlign": "Alineació", "DE.Views.ListSettingsDialog.txtBullet": "Vinyeta", "DE.Views.ListSettingsDialog.txtColor": "Color", - "DE.Views.ListSettingsDialog.txtFont": "Font i Símbol", + "DE.Views.ListSettingsDialog.txtFont": "Tipus de lletra i símbol", "DE.Views.ListSettingsDialog.txtLikeText": "Com un text", "DE.Views.ListSettingsDialog.txtNewBullet": "Nova vinyeta", "DE.Views.ListSettingsDialog.txtNone": "Cap", "DE.Views.ListSettingsDialog.txtSize": "Mida", "DE.Views.ListSettingsDialog.txtSymbol": "Símbol", - "DE.Views.ListSettingsDialog.txtTitle": "Configuració de la Llista", + "DE.Views.ListSettingsDialog.txtTitle": "Configuració de la llista", "DE.Views.ListSettingsDialog.txtType": "Tipus", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", "DE.Views.MailMergeEmailDlg.okButtonText": "Enviar", "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Tema", "DE.Views.MailMergeEmailDlg.textAttachDocx": "Adjunteu com a DOCX", "DE.Views.MailMergeEmailDlg.textAttachPdf": "Adjunteu com a PDF", - "DE.Views.MailMergeEmailDlg.textFileName": "Nom Fitxer", - "DE.Views.MailMergeEmailDlg.textFormat": "Format Correspondència", + "DE.Views.MailMergeEmailDlg.textFileName": "Nom del fitxer", + "DE.Views.MailMergeEmailDlg.textFormat": "Format de correu", "DE.Views.MailMergeEmailDlg.textFrom": "De", "DE.Views.MailMergeEmailDlg.textHTML": "HTML", "DE.Views.MailMergeEmailDlg.textMessage": "Missatge", - "DE.Views.MailMergeEmailDlg.textSubject": "Línia de tema", - "DE.Views.MailMergeEmailDlg.textTitle": "Enviar via correu electrònic", + "DE.Views.MailMergeEmailDlg.textSubject": "Línia d'encapçalament", + "DE.Views.MailMergeEmailDlg.textTitle": "Enviar per correu electrònic", "DE.Views.MailMergeEmailDlg.textTo": "Per a", - "DE.Views.MailMergeEmailDlg.textWarning": "Atenció!", - "DE.Views.MailMergeEmailDlg.textWarningMsg": "Tingueu en compte que la publicació no es pot aturar un cop feu clic al botó \"Enviar\".", - "DE.Views.MailMergeSettings.downloadMergeTitle": "Fusió", - "DE.Views.MailMergeSettings.errorMailMergeSaveFile": "Ha fallat la fusió.", - "DE.Views.MailMergeSettings.notcriticalErrorTitle": "Avís", + "DE.Views.MailMergeEmailDlg.textWarning": "Advertiment!", + "DE.Views.MailMergeEmailDlg.textWarningMsg": "Tingueu en compte que el correu no es pot aturar un cop heu clicat al botó \"Envia\".", + "DE.Views.MailMergeSettings.downloadMergeTitle": "S'està combinant", + "DE.Views.MailMergeSettings.errorMailMergeSaveFile": "No s'ha pogut combinar.", + "DE.Views.MailMergeSettings.notcriticalErrorTitle": "Advertiment", "DE.Views.MailMergeSettings.textAddRecipients": "Afegir primer alguns destinataris a la llista", "DE.Views.MailMergeSettings.textAll": "Tots els registres", "DE.Views.MailMergeSettings.textCurrent": "Registre actual", - "DE.Views.MailMergeSettings.textDataSource": "Font de Dades", + "DE.Views.MailMergeSettings.textDataSource": "Font de dades", "DE.Views.MailMergeSettings.textDocx": "Docx", - "DE.Views.MailMergeSettings.textDownload": "Descarregar", - "DE.Views.MailMergeSettings.textEditData": "Edita la llista de destinataris", + "DE.Views.MailMergeSettings.textDownload": "Baixar", + "DE.Views.MailMergeSettings.textEditData": "Editar la llista de destinataris", "DE.Views.MailMergeSettings.textEmail": "Correu electrònic", "DE.Views.MailMergeSettings.textFrom": "De", - "DE.Views.MailMergeSettings.textGoToMail": "Anar a Correu", + "DE.Views.MailMergeSettings.textGoToMail": "Anar al correu", "DE.Views.MailMergeSettings.textHighlight": "Ressaltar els camps de combinació", - "DE.Views.MailMergeSettings.textInsertField": "Inserir Camp Unit", - "DE.Views.MailMergeSettings.textMaxRecepients": "Màxim 100 receptors", + "DE.Views.MailMergeSettings.textInsertField": "Inserció del camp de combinació", + "DE.Views.MailMergeSettings.textMaxRecepients": "Màxim 100 destinataris.", "DE.Views.MailMergeSettings.textMerge": "Combinar", - "DE.Views.MailMergeSettings.textMergeFields": "Combinar Camps", - "DE.Views.MailMergeSettings.textMergeTo": "Fusió en", + "DE.Views.MailMergeSettings.textMergeFields": "Combinar camps", + "DE.Views.MailMergeSettings.textMergeTo": "Combina-ho a", "DE.Views.MailMergeSettings.textPdf": "PDF", "DE.Views.MailMergeSettings.textPortal": "Desar", - "DE.Views.MailMergeSettings.textPreview": "Vista prèvia de resultats", + "DE.Views.MailMergeSettings.textPreview": "Vista prèvia dels resultats", "DE.Views.MailMergeSettings.textReadMore": "Llegir més", "DE.Views.MailMergeSettings.textSendMsg": "Tots els missatges de correu electrònic són a punt i s'enviaran properament.
La velocitat de l'enviament dependrà del servei de correu.
Podeu continuar treballant amb el document o tancar-lo. Un cop finalitzada l’operació, s'enviarà la notificació a la vostra adreça de correu electrònic de registre.", "DE.Views.MailMergeSettings.textTo": "Per a", @@ -2064,13 +2064,13 @@ "DE.Views.MailMergeSettings.txtNext": "Al registre següent", "DE.Views.MailMergeSettings.txtPrev": "Al registre anterior", "DE.Views.MailMergeSettings.txtUntitled": "Sense títol", - "DE.Views.MailMergeSettings.warnProcessMailMerge": "Ha fallat la fusió inicial", - "DE.Views.Navigation.txtCollapse": "Desplegar tot", - "DE.Views.Navigation.txtDemote": "Deposar", - "DE.Views.Navigation.txtEmpty": "No hi ha cap títol al document.
Apliqueu un estil d’encapçalament al text de manera que aparegui a la taula de contingut.", + "DE.Views.MailMergeSettings.warnProcessMailMerge": "S'ha produït un error en iniciar la combinació", + "DE.Views.Navigation.txtCollapse": "Reduir-ho tot", + "DE.Views.Navigation.txtDemote": "Rebaixar el nivell", + "DE.Views.Navigation.txtEmpty": "No hi ha cap títol al document.
Apliqueu un estil d’encapçalament al text de manera que aparegui a la taula de continguts.", "DE.Views.Navigation.txtEmptyItem": "Encapçalament buit", - "DE.Views.Navigation.txtExpand": "Amplia tot", - "DE.Views.Navigation.txtExpandToLevel": "Amplia a nivell", + "DE.Views.Navigation.txtExpand": "Desplegar-ho tot", + "DE.Views.Navigation.txtExpandToLevel": "Desplegar a nivell", "DE.Views.Navigation.txtHeadingAfter": "Nou títol després", "DE.Views.Navigation.txtHeadingBefore": "Títol nou abans", "DE.Views.Navigation.txtNewHeading": "Subtítol nou", @@ -2079,262 +2079,262 @@ "DE.Views.NoteSettingsDialog.textApply": "Aplicar", "DE.Views.NoteSettingsDialog.textApplyTo": "Aplicar els canvis a", "DE.Views.NoteSettingsDialog.textContinue": "Contínua", - "DE.Views.NoteSettingsDialog.textCustom": "Personalitzar Marca", + "DE.Views.NoteSettingsDialog.textCustom": "Marca personalitzada", "DE.Views.NoteSettingsDialog.textDocEnd": "Final del document", "DE.Views.NoteSettingsDialog.textDocument": "Tot el document", "DE.Views.NoteSettingsDialog.textEachPage": "Reinicieu cada pàgina", "DE.Views.NoteSettingsDialog.textEachSection": "Reinicieu cada secció", - "DE.Views.NoteSettingsDialog.textEndnote": "Nota al Final", - "DE.Views.NoteSettingsDialog.textFootnote": "Nota a peu de pàgina", + "DE.Views.NoteSettingsDialog.textEndnote": "Nota al final", + "DE.Views.NoteSettingsDialog.textFootnote": "Nota al peu de pàgina", "DE.Views.NoteSettingsDialog.textFormat": "Format", - "DE.Views.NoteSettingsDialog.textInsert": "Inserta", + "DE.Views.NoteSettingsDialog.textInsert": "Inserir", "DE.Views.NoteSettingsDialog.textLocation": "Ubicació", "DE.Views.NoteSettingsDialog.textNumbering": "Numeració", "DE.Views.NoteSettingsDialog.textNumFormat": "Format de número", - "DE.Views.NoteSettingsDialog.textPageBottom": "Inferior a la pàgina", - "DE.Views.NoteSettingsDialog.textSectEnd": "Fi de Secció", + "DE.Views.NoteSettingsDialog.textPageBottom": "Final de la pàgina", + "DE.Views.NoteSettingsDialog.textSectEnd": "Fi de la secció", "DE.Views.NoteSettingsDialog.textSection": "Secció actual", - "DE.Views.NoteSettingsDialog.textStart": "Comença a", - "DE.Views.NoteSettingsDialog.textTextBottom": "A sota del text", - "DE.Views.NoteSettingsDialog.textTitle": "Ajust de les notes a peu de pàgina", - "DE.Views.NotesRemoveDialog.textEnd": "Suprimeix Totes les Notes al Final", - "DE.Views.NotesRemoveDialog.textFoot": "Suprimeix totes les notes al peu de pàgina", - "DE.Views.NotesRemoveDialog.textTitle": "Suprimeix Notes", - "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Avís", - "DE.Views.PageMarginsDialog.textBottom": "Inferior", + "DE.Views.NoteSettingsDialog.textStart": "Començar a", + "DE.Views.NoteSettingsDialog.textTextBottom": "Per sota del text", + "DE.Views.NoteSettingsDialog.textTitle": "Configuració de notes", + "DE.Views.NotesRemoveDialog.textEnd": "Suprimir totes les notes al final", + "DE.Views.NotesRemoveDialog.textFoot": "Suprimir totes les notes al peu de pàgina", + "DE.Views.NotesRemoveDialog.textTitle": "Suprimir les notes", + "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Advertiment", + "DE.Views.PageMarginsDialog.textBottom": "Part inferior", "DE.Views.PageMarginsDialog.textGutter": "Canal", - "DE.Views.PageMarginsDialog.textGutterPosition": "Posició Canal", + "DE.Views.PageMarginsDialog.textGutterPosition": "Posició de canaleta", "DE.Views.PageMarginsDialog.textInside": "Dins de", "DE.Views.PageMarginsDialog.textLandscape": "Horitzontal", "DE.Views.PageMarginsDialog.textLeft": "Esquerra", "DE.Views.PageMarginsDialog.textMirrorMargins": "Marges simètrics", - "DE.Views.PageMarginsDialog.textMultiplePages": "Múltiples pàgines", + "DE.Views.PageMarginsDialog.textMultiplePages": "Diverses pàgines", "DE.Views.PageMarginsDialog.textNormal": "Normal", "DE.Views.PageMarginsDialog.textOrientation": "Orientació", "DE.Views.PageMarginsDialog.textOutside": "Exterior", - "DE.Views.PageMarginsDialog.textPortrait": "Vertical", - "DE.Views.PageMarginsDialog.textPreview": "Vista prèvia", + "DE.Views.PageMarginsDialog.textPortrait": "Orientació vertical", + "DE.Views.PageMarginsDialog.textPreview": "Visualització prèvia", "DE.Views.PageMarginsDialog.textRight": "Dreta", "DE.Views.PageMarginsDialog.textTitle": "Marges", "DE.Views.PageMarginsDialog.textTop": "Superior", "DE.Views.PageMarginsDialog.txtMarginsH": "Els marges superior i inferior són massa alts per a una alçada de pàgina determinada", - "DE.Views.PageMarginsDialog.txtMarginsW": "Els marges esquerre i dret són massa amplis per a un ample de pàgina determinat", + "DE.Views.PageMarginsDialog.txtMarginsW": "Els marges esquerre i dret són massa amples per a una amplada de pàgina determinada", "DE.Views.PageSizeDialog.textHeight": "Alçada", - "DE.Views.PageSizeDialog.textPreset": "Preajust", - "DE.Views.PageSizeDialog.textTitle": "Mida de Pàgina", + "DE.Views.PageSizeDialog.textPreset": "Predefinit", + "DE.Views.PageSizeDialog.textTitle": "Mida de la pàgina", "DE.Views.PageSizeDialog.textWidth": "Amplada", "DE.Views.PageSizeDialog.txtCustom": "Personalitzat", "DE.Views.ParagraphSettings.strIndent": "Sagnats", "DE.Views.ParagraphSettings.strIndentsLeftText": "Esquerra", "DE.Views.ParagraphSettings.strIndentsRightText": "Dreta", "DE.Views.ParagraphSettings.strIndentsSpecial": "Especial", - "DE.Views.ParagraphSettings.strLineHeight": "Espai entre Línies", - "DE.Views.ParagraphSettings.strParagraphSpacing": "Espaiat de Paràgraf", + "DE.Views.ParagraphSettings.strLineHeight": "Interlineat", + "DE.Views.ParagraphSettings.strParagraphSpacing": "Espaiat del paràgraf", "DE.Views.ParagraphSettings.strSomeParagraphSpace": "No afegiu interval entre paràgrafs del mateix estil", "DE.Views.ParagraphSettings.strSpacingAfter": "Després", "DE.Views.ParagraphSettings.strSpacingBefore": "Abans", - "DE.Views.ParagraphSettings.textAdvanced": "Mostra la configuració avançada", + "DE.Views.ParagraphSettings.textAdvanced": "Mostrar la configuració avançada", "DE.Views.ParagraphSettings.textAt": "En", "DE.Views.ParagraphSettings.textAtLeast": "Pel cap baix", - "DE.Views.ParagraphSettings.textAuto": "multiplicador", + "DE.Views.ParagraphSettings.textAuto": "Múltiple", "DE.Views.ParagraphSettings.textBackColor": "Color de Fons", "DE.Views.ParagraphSettings.textExact": "Exacte", "DE.Views.ParagraphSettings.textFirstLine": "Primera línia", - "DE.Views.ParagraphSettings.textHanging": "Penjat", + "DE.Views.ParagraphSettings.textHanging": "Sagnia francesa", "DE.Views.ParagraphSettings.textNoneSpecial": "(cap)", - "DE.Views.ParagraphSettings.txtAutoText": "Auto", + "DE.Views.ParagraphSettings.txtAutoText": "Automàtic", "DE.Views.ParagraphSettingsAdvanced.noTabs": "Les pestanyes especificades apareixeran en aquest camp", "DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Majúscules ", - "DE.Views.ParagraphSettingsAdvanced.strBorders": "Vora & Omplir", - "DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Salt de pàgina abans", - "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Doble guia", - "DE.Views.ParagraphSettingsAdvanced.strIndent": "Retirades", + "DE.Views.ParagraphSettingsAdvanced.strBorders": "Vores & Omplir", + "DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Salt de pàgina anterior", + "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Doble ratllat", + "DE.Views.ParagraphSettingsAdvanced.strIndent": "Sagnats", "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Esquerra", - "DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Espai entre Línies", + "DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Interlineat", "DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "Nivell d'esquema", "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Dreta", "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Després", "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Abans", "DE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Especial", - "DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Mantenir les línies unides", - "DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Seguir amb el següent", - "DE.Views.ParagraphSettingsAdvanced.strMargins": "Espaiats interns", - "DE.Views.ParagraphSettingsAdvanced.strOrphan": "Control de línies Orfes", - "DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Font", + "DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Conserveu les línies juntes", + "DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Conserveu amb el següent", + "DE.Views.ParagraphSettingsAdvanced.strMargins": "Espaiats", + "DE.Views.ParagraphSettingsAdvanced.strOrphan": "Control de línies orfes", + "DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Tipus de lletra", "DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Sagnat i Espaiat", - "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Salts de Línia i Salts de Pàgina", + "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Salts de línia i de pàgina", "DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Ubicació", - "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Majúscules petites", + "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Versaletes", "DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "No afegiu interval entre paràgrafs del mateix estil", - "DE.Views.ParagraphSettingsAdvanced.strSpacing": "Espai", - "DE.Views.ParagraphSettingsAdvanced.strStrike": "Ratllar tex", + "DE.Views.ParagraphSettingsAdvanced.strSpacing": "Espaiat", + "DE.Views.ParagraphSettingsAdvanced.strStrike": "Ratllat", "DE.Views.ParagraphSettingsAdvanced.strSubscript": "Subíndex", "DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Superíndex", - "DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "Suprimiu números de línia", - "DE.Views.ParagraphSettingsAdvanced.strTabs": "Pestanya", + "DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "Suprimir els números de línia", + "DE.Views.ParagraphSettingsAdvanced.strTabs": "Tabuladors", "DE.Views.ParagraphSettingsAdvanced.textAlign": "Alineació", "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Pel cap baix", - "DE.Views.ParagraphSettingsAdvanced.textAuto": "Multiplicador", + "DE.Views.ParagraphSettingsAdvanced.textAuto": "Múltiple", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Color de fons", - "DE.Views.ParagraphSettingsAdvanced.textBodyText": "Text Bàsic", - "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Color Vora", - "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Feu clic al diagrama o utilitzeu els botons per seleccionar les vores i apliqueu-los l'estil escollit", - "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Mida de la Vora", - "DE.Views.ParagraphSettingsAdvanced.textBottom": "Inferior", + "DE.Views.ParagraphSettingsAdvanced.textBodyText": "Text bàsic", + "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Color de vora", + "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Cliqueu en el diagrama o utilitzeu els botons per seleccionar les vores i apliqueu-los l'estil escollit", + "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Mida de la vora", + "DE.Views.ParagraphSettingsAdvanced.textBottom": "Part inferior", "DE.Views.ParagraphSettingsAdvanced.textCentered": "Centrat", - "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Caràcter Espai", - "DE.Views.ParagraphSettingsAdvanced.textDefault": "Pestanya predeterminada", + "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espai entre caràcters", + "DE.Views.ParagraphSettingsAdvanced.textDefault": "Tabulació predeterminada", "DE.Views.ParagraphSettingsAdvanced.textEffects": "Efectes", "DE.Views.ParagraphSettingsAdvanced.textExact": "Exacte", - "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Primera Línia", - "DE.Views.ParagraphSettingsAdvanced.textHanging": "Penjat", + "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Primera línia", + "DE.Views.ParagraphSettingsAdvanced.textHanging": "Sagnia francesa", "DE.Views.ParagraphSettingsAdvanced.textJustified": "Justificat", - "DE.Views.ParagraphSettingsAdvanced.textLeader": "Director", + "DE.Views.ParagraphSettingsAdvanced.textLeader": "Guia", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Esquerra", "DE.Views.ParagraphSettingsAdvanced.textLevel": "Nivell", "DE.Views.ParagraphSettingsAdvanced.textNone": "Cap", "DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(cap)", "DE.Views.ParagraphSettingsAdvanced.textPosition": "Posició", - "DE.Views.ParagraphSettingsAdvanced.textRemove": "Esborrar", - "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Esborrar tot", + "DE.Views.ParagraphSettingsAdvanced.textRemove": "Suprimir", + "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Suprimir-ho tot", "DE.Views.ParagraphSettingsAdvanced.textRight": "Dreta", "DE.Views.ParagraphSettingsAdvanced.textSet": "Especificar", - "DE.Views.ParagraphSettingsAdvanced.textSpacing": "Espai", + "DE.Views.ParagraphSettingsAdvanced.textSpacing": "Espaiat", "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Centre", "DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Esquerra", - "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Posició de Pestanya", + "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Posició del tabulador", "DE.Views.ParagraphSettingsAdvanced.textTabRight": "Dreta", "DE.Views.ParagraphSettingsAdvanced.textTitle": "Paràgraf - Configuració Avançada", "DE.Views.ParagraphSettingsAdvanced.textTop": "Superior", "DE.Views.ParagraphSettingsAdvanced.tipAll": "Establir el límit exterior i totes les línies interiors", - "DE.Views.ParagraphSettingsAdvanced.tipBottom": "Definiu només la vora inferior", - "DE.Views.ParagraphSettingsAdvanced.tipInner": "Establir només línies interiors horitzontals", - "DE.Views.ParagraphSettingsAdvanced.tipLeft": "Definir només la vora esquerra", + "DE.Views.ParagraphSettingsAdvanced.tipBottom": "Establir només la vora inferior", + "DE.Views.ParagraphSettingsAdvanced.tipInner": "Establir només les línies interiors horitzontals", + "DE.Views.ParagraphSettingsAdvanced.tipLeft": "Establir només la vora esquerra", "DE.Views.ParagraphSettingsAdvanced.tipNone": "No establir vores", - "DE.Views.ParagraphSettingsAdvanced.tipOuter": "Definir només la vora exterior", - "DE.Views.ParagraphSettingsAdvanced.tipRight": "Definir només la vora dreta", - "DE.Views.ParagraphSettingsAdvanced.tipTop": "Definir només la vora superior", - "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", + "DE.Views.ParagraphSettingsAdvanced.tipOuter": "Establir només la vora exterior", + "DE.Views.ParagraphSettingsAdvanced.tipRight": "Establir només la vora dreta", + "DE.Views.ParagraphSettingsAdvanced.tipTop": "Establir només la vora superior", + "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automàtic", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Sense vores", - "DE.Views.RightMenu.txtChartSettings": "Gràfic Configuració", - "DE.Views.RightMenu.txtFormSettings": "Paràmetres del formulari", + "DE.Views.RightMenu.txtChartSettings": "Configuració del gràfic", + "DE.Views.RightMenu.txtFormSettings": "Configuració del formulari\n\t", "DE.Views.RightMenu.txtHeaderFooterSettings": "Configuració de la capçalera i el peu de pàgina", - "DE.Views.RightMenu.txtImageSettings": "Configuració Imatge", - "DE.Views.RightMenu.txtMailMergeSettings": "Ajusts de fusió", - "DE.Views.RightMenu.txtParagraphSettings": "Ajusts de pàragref", - "DE.Views.RightMenu.txtShapeSettings": "Configuració de la Forma", - "DE.Views.RightMenu.txtSignatureSettings": "Configuració de la Firma", + "DE.Views.RightMenu.txtImageSettings": "Configuració de la imatge", + "DE.Views.RightMenu.txtMailMergeSettings": "Configuració de la combinació de correspondència", + "DE.Views.RightMenu.txtParagraphSettings": "Configuració del paràgraf", + "DE.Views.RightMenu.txtShapeSettings": "Configuració de la forma", + "DE.Views.RightMenu.txtSignatureSettings": "Configuració de la signatura", "DE.Views.RightMenu.txtTableSettings": "Configuració de la taula", "DE.Views.RightMenu.txtTextArtSettings": "Configuració de la galeria de text", "DE.Views.ShapeSettings.strBackground": "Color de fons", - "DE.Views.ShapeSettings.strChange": "Canviar la Forma Automàtica", + "DE.Views.ShapeSettings.strChange": "Canvia la forma automàtica", "DE.Views.ShapeSettings.strColor": "Color", "DE.Views.ShapeSettings.strFill": "Omplir", - "DE.Views.ShapeSettings.strForeground": "Color de Primer Pla", + "DE.Views.ShapeSettings.strForeground": "Color de primer pla", "DE.Views.ShapeSettings.strPattern": "Patró", - "DE.Views.ShapeSettings.strShadow": "Mostra ombra", + "DE.Views.ShapeSettings.strShadow": "Mostrar l'ombra", "DE.Views.ShapeSettings.strSize": "Mida", "DE.Views.ShapeSettings.strStroke": "Línia", "DE.Views.ShapeSettings.strTransparency": "Opacitat", "DE.Views.ShapeSettings.strType": "Tipus", - "DE.Views.ShapeSettings.textAdvanced": "Mostra la configuració avançada", + "DE.Views.ShapeSettings.textAdvanced": "Mostrar la configuració avançada", "DE.Views.ShapeSettings.textAngle": "Angle", "DE.Views.ShapeSettings.textBorderSizeErr": "El valor introduït no és correcte.
Introduïu un valor entre 0 pt i 1584 pt.", - "DE.Views.ShapeSettings.textColor": "Omplir de Color", + "DE.Views.ShapeSettings.textColor": "Color de farcit", "DE.Views.ShapeSettings.textDirection": "Direcció", - "DE.Views.ShapeSettings.textEmptyPattern": "Sense Patró", - "DE.Views.ShapeSettings.textFlip": "Voltejar", + "DE.Views.ShapeSettings.textEmptyPattern": "Sense patró", + "DE.Views.ShapeSettings.textFlip": "Capgirar", "DE.Views.ShapeSettings.textFromFile": "Des d'un fitxer", - "DE.Views.ShapeSettings.textFromStorage": "Des d'Emmagatzematge", - "DE.Views.ShapeSettings.textFromUrl": "Des d'un Enllaç", - "DE.Views.ShapeSettings.textGradient": "Degradat", - "DE.Views.ShapeSettings.textGradientFill": "Omplir Degradat", + "DE.Views.ShapeSettings.textFromStorage": "Des de l’emmagatzematge", + "DE.Views.ShapeSettings.textFromUrl": "Des de l'URL", + "DE.Views.ShapeSettings.textGradient": "Punts de degradat", + "DE.Views.ShapeSettings.textGradientFill": "Omplir el degradat", "DE.Views.ShapeSettings.textHint270": "Girar 90° a l'esquerra", "DE.Views.ShapeSettings.textHint90": "Girar 90° a la dreta", - "DE.Views.ShapeSettings.textHintFlipH": "Voltejar Horitzontalment", - "DE.Views.ShapeSettings.textHintFlipV": "Voltejar Verticalment", - "DE.Views.ShapeSettings.textImageTexture": "Imatge o Textura", + "DE.Views.ShapeSettings.textHintFlipH": "Capgirar horitzontalment", + "DE.Views.ShapeSettings.textHintFlipV": "Capgirar verticalment", + "DE.Views.ShapeSettings.textImageTexture": "Imatge o textura", "DE.Views.ShapeSettings.textLinear": "Lineal", - "DE.Views.ShapeSettings.textNoFill": "Sense Omplir", + "DE.Views.ShapeSettings.textNoFill": "Sense emplenament", "DE.Views.ShapeSettings.textPatternFill": "Patró", "DE.Views.ShapeSettings.textPosition": "Posició", "DE.Views.ShapeSettings.textRadial": "Radial", "DE.Views.ShapeSettings.textRotate90": "Girar 90°", "DE.Views.ShapeSettings.textRotation": "Rotació", - "DE.Views.ShapeSettings.textSelectImage": "Seleccioneu Imatge", - "DE.Views.ShapeSettings.textSelectTexture": "Selecciona", + "DE.Views.ShapeSettings.textSelectImage": "Seleccionar imatge", + "DE.Views.ShapeSettings.textSelectTexture": "Seleccionar", "DE.Views.ShapeSettings.textStretch": "Estirar", "DE.Views.ShapeSettings.textStyle": "Estil", - "DE.Views.ShapeSettings.textTexture": "Des d'un Tex", + "DE.Views.ShapeSettings.textTexture": "Des de la textura", "DE.Views.ShapeSettings.textTile": "Mosaic", - "DE.Views.ShapeSettings.textWrap": "Ajustament de l'estil ", + "DE.Views.ShapeSettings.textWrap": "Estil d'ajustament", "DE.Views.ShapeSettings.tipAddGradientPoint": "Afegir punt de degradat", - "DE.Views.ShapeSettings.tipRemoveGradientPoint": "Elimina el punt de degradat", + "DE.Views.ShapeSettings.tipRemoveGradientPoint": "Suprimir el punt de degradat", "DE.Views.ShapeSettings.txtBehind": "Darrere", - "DE.Views.ShapeSettings.txtBrownPaper": "Paper Marró", + "DE.Views.ShapeSettings.txtBrownPaper": "Paper marró", "DE.Views.ShapeSettings.txtCanvas": "Llenç", "DE.Views.ShapeSettings.txtCarton": "Cartró", "DE.Views.ShapeSettings.txtDarkFabric": "Teixit fosc", "DE.Views.ShapeSettings.txtGrain": "Gra", "DE.Views.ShapeSettings.txtGranite": "Granit", - "DE.Views.ShapeSettings.txtGreyPaper": "Paper Gris", + "DE.Views.ShapeSettings.txtGreyPaper": "Paper gris", "DE.Views.ShapeSettings.txtInFront": "Davant", "DE.Views.ShapeSettings.txtInline": "En línia", "DE.Views.ShapeSettings.txtKnit": "Teixit", "DE.Views.ShapeSettings.txtLeather": "Pell", - "DE.Views.ShapeSettings.txtNoBorders": "Sense Línia", - "DE.Views.ShapeSettings.txtPapyrus": "Papiro", + "DE.Views.ShapeSettings.txtNoBorders": "Sense línia", + "DE.Views.ShapeSettings.txtPapyrus": "Papir", "DE.Views.ShapeSettings.txtSquare": "Quadrat", "DE.Views.ShapeSettings.txtThrough": "A través", "DE.Views.ShapeSettings.txtTight": "Estret", "DE.Views.ShapeSettings.txtTopAndBottom": "Superior i inferior", "DE.Views.ShapeSettings.txtWood": "Fusta", - "DE.Views.SignatureSettings.notcriticalErrorTitle": "Avís", - "DE.Views.SignatureSettings.strDelete": "Esborrar la firma", - "DE.Views.SignatureSettings.strDetails": "Detalls de la Firma", - "DE.Views.SignatureSettings.strInvalid": "Firmes invalides", + "DE.Views.SignatureSettings.notcriticalErrorTitle": "Advertiment", + "DE.Views.SignatureSettings.strDelete": "Suprimir la signatura", + "DE.Views.SignatureSettings.strDetails": "Detalls de la signatura", + "DE.Views.SignatureSettings.strInvalid": "Les signatures no són vàlides", "DE.Views.SignatureSettings.strRequested": "Signatures sol·licitades", - "DE.Views.SignatureSettings.strSetup": "Configuració de la firma", - "DE.Views.SignatureSettings.strSign": "Firmar", - "DE.Views.SignatureSettings.strSignature": "Firma", - "DE.Views.SignatureSettings.strSigner": "Firmant", + "DE.Views.SignatureSettings.strSetup": "Configuració de la signatura", + "DE.Views.SignatureSettings.strSign": "Signar", + "DE.Views.SignatureSettings.strSignature": "Signatura", + "DE.Views.SignatureSettings.strSigner": "Signant", "DE.Views.SignatureSettings.strValid": "Signatures vàlides", - "DE.Views.SignatureSettings.txtContinueEditing": "Edita de totes maneres", - "DE.Views.SignatureSettings.txtEditWarning": "L’edició eliminarà les signatures del document.
Esteu segur que voleu continuar?", - "DE.Views.SignatureSettings.txtRemoveWarning": "Voleu eliminar aquesta signatura?
Això no es podrà desfer.", + "DE.Views.SignatureSettings.txtContinueEditing": "Editar de totes maneres", + "DE.Views.SignatureSettings.txtEditWarning": "L’edició eliminarà les signatures del document.
Segur que voleu continuar?", + "DE.Views.SignatureSettings.txtRemoveWarning": "Voleu eliminar aquesta signatura?
No es pot desfer.", "DE.Views.SignatureSettings.txtRequestedSignatures": "Aquest document s'ha de signar.", "DE.Views.SignatureSettings.txtSigned": "S'han afegit signatures vàlides al document. El document està protegit de l'edició.", - "DE.Views.SignatureSettings.txtSignedInvalid": "Algunes de les signatures digitals del document no són vàlides o no s’han pogut verificar. El document està protegit de l'edició.", - "DE.Views.Statusbar.goToPageText": "Anar a Pàgina", + "DE.Views.SignatureSettings.txtSignedInvalid": "Algunes de les signatures digitals del document no són vàlides o no s’han pogut verificar. El document està protegit contra l'edició.", + "DE.Views.Statusbar.goToPageText": "Anar a la pàgina", "DE.Views.Statusbar.pageIndexText": "Pàgina {0} de {1}", - "DE.Views.Statusbar.tipFitPage": "Ajusta a Pàgina", - "DE.Views.Statusbar.tipFitWidth": "Ajusta a amplada", - "DE.Views.Statusbar.tipSetLang": "Estableix l'idioma de text", - "DE.Views.Statusbar.tipZoomFactor": "Zoom", + "DE.Views.Statusbar.tipFitPage": "Ajustar a la pàgina", + "DE.Views.Statusbar.tipFitWidth": "Ajustar a l'amplada", + "DE.Views.Statusbar.tipSetLang": "Establir l'idioma del text", + "DE.Views.Statusbar.tipZoomFactor": "Ampliar", "DE.Views.Statusbar.tipZoomIn": "Ampliar", "DE.Views.Statusbar.tipZoomOut": "Reduir", - "DE.Views.Statusbar.txtPageNumInvalid": "Número de pàgina no vàlid", - "DE.Views.StyleTitleDialog.textHeader": "Crear Nou Estil", + "DE.Views.Statusbar.txtPageNumInvalid": "El número de pàgina no és vàlid", + "DE.Views.StyleTitleDialog.textHeader": "Crear nou estil", "DE.Views.StyleTitleDialog.textNextStyle": "Estil de paràgraf següent", "DE.Views.StyleTitleDialog.textTitle": "Títol", "DE.Views.StyleTitleDialog.txtEmpty": "Aquest camp és obligatori", - "DE.Views.StyleTitleDialog.txtNotEmpty": "El camp no ha d'estar buit", + "DE.Views.StyleTitleDialog.txtNotEmpty": "El camp no pot estar buit", "DE.Views.StyleTitleDialog.txtSameAs": "Igual que el nou estil creat", - "DE.Views.TableFormulaDialog.textBookmark": "Pegar Marcador", + "DE.Views.TableFormulaDialog.textBookmark": "Enganxar el marcador", "DE.Views.TableFormulaDialog.textFormat": "Format de número", - "DE.Views.TableFormulaDialog.textFormula": "Formula", - "DE.Views.TableFormulaDialog.textInsertFunction": "Funció Pegar", - "DE.Views.TableFormulaDialog.textTitle": "Configuració de Fórmula", - "DE.Views.TableOfContentsSettings.strAlign": "Alineeu a la dreta els números de pàgina", - "DE.Views.TableOfContentsSettings.strFullCaption": "Inclou l'etiqueta i el número", + "DE.Views.TableFormulaDialog.textFormula": "Fórmula", + "DE.Views.TableFormulaDialog.textInsertFunction": "Enganxar la funció", + "DE.Views.TableFormulaDialog.textTitle": "Configuració de la fórmula", + "DE.Views.TableOfContentsSettings.strAlign": "Alinear a la dreta els números de pàgina", + "DE.Views.TableOfContentsSettings.strFullCaption": "Inclogueu l'etiqueta i el número", "DE.Views.TableOfContentsSettings.strLinks": "Format de la taula de continguts com a enllaços", "DE.Views.TableOfContentsSettings.strLinksOF": "Formatar la taula de figures com a enllaços", - "DE.Views.TableOfContentsSettings.strShowPages": "Mostra els números de la pàgina", + "DE.Views.TableOfContentsSettings.strShowPages": "Mostrar els números de la pàgina", "DE.Views.TableOfContentsSettings.textBuildTable": "Crea la taula de continguts a partir de", - "DE.Views.TableOfContentsSettings.textBuildTableOF": "Construir una taula de figures a partir de", + "DE.Views.TableOfContentsSettings.textBuildTableOF": "Crear una taula de figures a partir de", "DE.Views.TableOfContentsSettings.textEquation": "Equació", - "DE.Views.TableOfContentsSettings.textFigure": "Figura", - "DE.Views.TableOfContentsSettings.textLeader": "Director", + "DE.Views.TableOfContentsSettings.textFigure": "Il·lustració", + "DE.Views.TableOfContentsSettings.textLeader": "Guia", "DE.Views.TableOfContentsSettings.textLevel": "Nivell", "DE.Views.TableOfContentsSettings.textLevels": "Nivells", "DE.Views.TableOfContentsSettings.textNone": "Cap", @@ -2346,7 +2346,7 @@ "DE.Views.TableOfContentsSettings.textStyles": "Estils", "DE.Views.TableOfContentsSettings.textTable": "Taula", "DE.Views.TableOfContentsSettings.textTitle": "Taula de continguts", - "DE.Views.TableOfContentsSettings.textTitleTOF": "Taula de figures", + "DE.Views.TableOfContentsSettings.textTitleTOF": "Índex d'il·lustracions", "DE.Views.TableOfContentsSettings.txtCentered": "Centrat", "DE.Views.TableOfContentsSettings.txtClassic": "Clàssic", "DE.Views.TableOfContentsSettings.txtCurrent": "Actual", @@ -2356,33 +2356,33 @@ "DE.Views.TableOfContentsSettings.txtOnline": "En línia", "DE.Views.TableOfContentsSettings.txtSimple": "Simple", "DE.Views.TableOfContentsSettings.txtStandard": "Estàndard", - "DE.Views.TableSettings.deleteColumnText": "Suprimeix la Columna", - "DE.Views.TableSettings.deleteRowText": "Suprimeix fila", - "DE.Views.TableSettings.deleteTableText": "Esborrar Taula", - "DE.Views.TableSettings.insertColumnLeftText": "Inseriu Columna a la Esquerra", - "DE.Views.TableSettings.insertColumnRightText": "Inseriu Columna a la Dreta", - "DE.Views.TableSettings.insertRowAboveText": "Inserir Fila A dalt", - "DE.Views.TableSettings.insertRowBelowText": "Inserir Fila A baix", - "DE.Views.TableSettings.mergeCellsText": "Unir Cel·les", + "DE.Views.TableSettings.deleteColumnText": "Suprimir la columna", + "DE.Views.TableSettings.deleteRowText": "Suprimir la fila", + "DE.Views.TableSettings.deleteTableText": "Suprimir la taula", + "DE.Views.TableSettings.insertColumnLeftText": "Inseriu columna a l'esquerra", + "DE.Views.TableSettings.insertColumnRightText": "Inseriu columna a la dreta", + "DE.Views.TableSettings.insertRowAboveText": "Inseriu fila a dalt", + "DE.Views.TableSettings.insertRowBelowText": "Inseriu fila a baix", + "DE.Views.TableSettings.mergeCellsText": "Combina cel·les", "DE.Views.TableSettings.selectCellText": "Seleccionar cel·la", - "DE.Views.TableSettings.selectColumnText": "Seleccionar Columna", - "DE.Views.TableSettings.selectRowText": "Seleccionar Fila", - "DE.Views.TableSettings.selectTableText": "Seleccionar Taula", - "DE.Views.TableSettings.splitCellsText": "Dividir Cel·la...", - "DE.Views.TableSettings.splitCellTitleText": "Dividir Cel·la", + "DE.Views.TableSettings.selectColumnText": "Seleccionar columna", + "DE.Views.TableSettings.selectRowText": "Seleccionar fila", + "DE.Views.TableSettings.selectTableText": "Seleccionar taula", + "DE.Views.TableSettings.splitCellsText": "Dividir cel·la...", + "DE.Views.TableSettings.splitCellTitleText": "Dividir cel·la", "DE.Views.TableSettings.strRepeatRow": "Repetiu com a fila de capçalera a la part superior de cada pàgina", "DE.Views.TableSettings.textAddFormula": "Afegir fórmula", - "DE.Views.TableSettings.textAdvanced": "Mostra la configuració avançada", + "DE.Views.TableSettings.textAdvanced": "Mostrar la configuració avançada", "DE.Views.TableSettings.textBackColor": "Color de fons", "DE.Views.TableSettings.textBanded": "En bandes", "DE.Views.TableSettings.textBorderColor": "Color", - "DE.Views.TableSettings.textBorders": "Estil de la Vora", - "DE.Views.TableSettings.textCellSize": "Mida de Files i Columnes", + "DE.Views.TableSettings.textBorders": "Estil de les vores", + "DE.Views.TableSettings.textCellSize": "Mida de files i columnes", "DE.Views.TableSettings.textColumns": "Columnes", "DE.Views.TableSettings.textConvert": "Converteix la taula a text", - "DE.Views.TableSettings.textDistributeCols": "Distribuïu les columnes", - "DE.Views.TableSettings.textDistributeRows": "Distribuïu les files", - "DE.Views.TableSettings.textEdit": "Files i Columnes", + "DE.Views.TableSettings.textDistributeCols": "Distribuir les columnes", + "DE.Views.TableSettings.textDistributeRows": "Distribuir les files", + "DE.Views.TableSettings.textEdit": "Files i columnes", "DE.Views.TableSettings.textEmptyTemplate": "Sense plantilles", "DE.Views.TableSettings.textFirst": "Primer", "DE.Views.TableSettings.textHeader": "Capçalera", @@ -2390,107 +2390,107 @@ "DE.Views.TableSettings.textLast": "Últim", "DE.Views.TableSettings.textRows": "Files", "DE.Views.TableSettings.textSelectBorders": "Seleccioneu les vores que vulgueu canviar aplicant l'estil escollit anteriorment", - "DE.Views.TableSettings.textTemplate": "Seleccionar de Plantilla", + "DE.Views.TableSettings.textTemplate": "Seleccionar de plantilla", "DE.Views.TableSettings.textTotal": "Total", "DE.Views.TableSettings.textWidth": "Amplada", "DE.Views.TableSettings.tipAll": "Establir el límit exterior i totes les línies interiors", "DE.Views.TableSettings.tipBottom": "Establir només la vora inferior exterior", - "DE.Views.TableSettings.tipInner": "Establir només línies interiors", - "DE.Views.TableSettings.tipInnerHor": "Establir només línies interiors horitzontals", + "DE.Views.TableSettings.tipInner": "Establir només les línies interiors", + "DE.Views.TableSettings.tipInnerHor": "Establir només les línies interiors horitzontals", "DE.Views.TableSettings.tipInnerVert": "Establir només línies interiors verticals", - "DE.Views.TableSettings.tipLeft": "Definir només la vora exterior esquerra", + "DE.Views.TableSettings.tipLeft": "Establir només la vora exterior esquerra", "DE.Views.TableSettings.tipNone": "No establir vores", - "DE.Views.TableSettings.tipOuter": "Definir només la vora exterior", - "DE.Views.TableSettings.tipRight": "Definir només la vora externa dreta", - "DE.Views.TableSettings.tipTop": "Definir només la vora superior externa", + "DE.Views.TableSettings.tipOuter": "Establir només la vora exterior", + "DE.Views.TableSettings.tipRight": "Establir només la vora exterior dreta", + "DE.Views.TableSettings.tipTop": "Establir només la vora superior externa", "DE.Views.TableSettings.txtNoBorders": "Sense vores", "DE.Views.TableSettings.txtTable_Accent": "Accent", "DE.Views.TableSettings.txtTable_Colorful": "Colorit", "DE.Views.TableSettings.txtTable_Dark": "Fosc", - "DE.Views.TableSettings.txtTable_GridTable": "Taula de Quadrícula", + "DE.Views.TableSettings.txtTable_GridTable": "Taula amb quadrícula", "DE.Views.TableSettings.txtTable_Light": "Clar", - "DE.Views.TableSettings.txtTable_ListTable": "Taula de la Llista", - "DE.Views.TableSettings.txtTable_PlainTable": "Taula Normal", - "DE.Views.TableSettings.txtTable_TableGrid": "Quadricula de Taula", + "DE.Views.TableSettings.txtTable_ListTable": "Taula amb llista", + "DE.Views.TableSettings.txtTable_PlainTable": "Taula senzilla", + "DE.Views.TableSettings.txtTable_TableGrid": "Quadrícula de la taula", "DE.Views.TableSettingsAdvanced.textAlign": "Alineació", "DE.Views.TableSettingsAdvanced.textAlignment": "Alineació", - "DE.Views.TableSettingsAdvanced.textAllowSpacing": "Espai entre cel·les", + "DE.Views.TableSettingsAdvanced.textAllowSpacing": "Espaiat entre cel·les", "DE.Views.TableSettingsAdvanced.textAlt": "Text alternatiu", "DE.Views.TableSettingsAdvanced.textAltDescription": "Descripció", "DE.Views.TableSettingsAdvanced.textAltTip": "La representació de la informació dels objectes visuals que es basa en text alternatiu, es llegirà en veu alta per ajudar les persones amb dificultats de visió o cognició perquè puguin comprendre millor la informació que hi ha a la imatge, autoforma, gràfic o taula.", "DE.Views.TableSettingsAdvanced.textAltTitle": "Títol", "DE.Views.TableSettingsAdvanced.textAnchorText": "Text", - "DE.Views.TableSettingsAdvanced.textAutofit": "Redimensiona automàticament els continguts", - "DE.Views.TableSettingsAdvanced.textBackColor": "Fons de Cel·la", - "DE.Views.TableSettingsAdvanced.textBelow": "abaix", - "DE.Views.TableSettingsAdvanced.textBorderColor": "Color Vora", - "DE.Views.TableSettingsAdvanced.textBorderDesc": "Feu clic al diagrama o utilitzeu els botons per seleccionar les vores i apliqueu-los l'estil escollit", - "DE.Views.TableSettingsAdvanced.textBordersBackgroung": "Vora & Fons", - "DE.Views.TableSettingsAdvanced.textBorderWidth": "Mida de la Vora", - "DE.Views.TableSettingsAdvanced.textBottom": "Inferior", - "DE.Views.TableSettingsAdvanced.textCellOptions": "Opcions de Cel·la", + "DE.Views.TableSettingsAdvanced.textAutofit": "Canvieu la mida automàticament per ajustar-la al contingut", + "DE.Views.TableSettingsAdvanced.textBackColor": "Fons de la cel·la", + "DE.Views.TableSettingsAdvanced.textBelow": "més avall", + "DE.Views.TableSettingsAdvanced.textBorderColor": "Color de vora", + "DE.Views.TableSettingsAdvanced.textBorderDesc": "Cliqueu en el diagrama o utilitzeu els botons per seleccionar les vores i apliqueu-los l'estil escollit", + "DE.Views.TableSettingsAdvanced.textBordersBackgroung": "Vores & Fons", + "DE.Views.TableSettingsAdvanced.textBorderWidth": "Mida de la vora", + "DE.Views.TableSettingsAdvanced.textBottom": "Part inferior", + "DE.Views.TableSettingsAdvanced.textCellOptions": "Opcions de la cel·la", "DE.Views.TableSettingsAdvanced.textCellProps": "Cel·la", - "DE.Views.TableSettingsAdvanced.textCellSize": "Mida Cel·la", - "DE.Views.TableSettingsAdvanced.textCenter": "Centre", - "DE.Views.TableSettingsAdvanced.textCenterTooltip": "Centre", + "DE.Views.TableSettingsAdvanced.textCellSize": "Mida de la cel·la", + "DE.Views.TableSettingsAdvanced.textCenter": "Centrar", + "DE.Views.TableSettingsAdvanced.textCenterTooltip": "Centrar", "DE.Views.TableSettingsAdvanced.textCheckMargins": "Utilitzar marges predeterminats", - "DE.Views.TableSettingsAdvanced.textDefaultMargins": "Marges predeterminats de les cel·les", + "DE.Views.TableSettingsAdvanced.textDefaultMargins": "Marges de cel·la predeterminats", "DE.Views.TableSettingsAdvanced.textDistance": "Distància del text", "DE.Views.TableSettingsAdvanced.textHorizontal": "Horitzontal", "DE.Views.TableSettingsAdvanced.textIndLeft": "Sagnar a l'esquerra", "DE.Views.TableSettingsAdvanced.textLeft": "Esquerra", "DE.Views.TableSettingsAdvanced.textLeftTooltip": "Esquerra", "DE.Views.TableSettingsAdvanced.textMargin": "Marge", - "DE.Views.TableSettingsAdvanced.textMargins": "Marges de Cel·la", + "DE.Views.TableSettingsAdvanced.textMargins": "Marges de la cel·la", "DE.Views.TableSettingsAdvanced.textMeasure": "Mesurar en", "DE.Views.TableSettingsAdvanced.textMove": "Moure objecte amb text", - "DE.Views.TableSettingsAdvanced.textOnlyCells": "Només per a cel·les seleccionades", + "DE.Views.TableSettingsAdvanced.textOnlyCells": "Només per a les cel·les seleccionades", "DE.Views.TableSettingsAdvanced.textOptions": "Opcions", - "DE.Views.TableSettingsAdvanced.textOverlap": "Permet la superposició", + "DE.Views.TableSettingsAdvanced.textOverlap": "Permetre la superposició", "DE.Views.TableSettingsAdvanced.textPage": "Pàgina", "DE.Views.TableSettingsAdvanced.textPosition": "Posició", - "DE.Views.TableSettingsAdvanced.textPrefWidth": "Amplada Preferida", - "DE.Views.TableSettingsAdvanced.textPreview": "Vista prèvia", - "DE.Views.TableSettingsAdvanced.textRelative": "en relació a", + "DE.Views.TableSettingsAdvanced.textPrefWidth": "Amplada preferida", + "DE.Views.TableSettingsAdvanced.textPreview": "Visualització prèvia", + "DE.Views.TableSettingsAdvanced.textRelative": "respecte a", "DE.Views.TableSettingsAdvanced.textRight": "Dreta", "DE.Views.TableSettingsAdvanced.textRightOf": "a la dreta de", "DE.Views.TableSettingsAdvanced.textRightTooltip": "Dreta", "DE.Views.TableSettingsAdvanced.textTable": "Taula", - "DE.Views.TableSettingsAdvanced.textTableBackColor": "Fons de Taula", + "DE.Views.TableSettingsAdvanced.textTableBackColor": "Fons de la taula", "DE.Views.TableSettingsAdvanced.textTablePosition": "Posició de la taula", - "DE.Views.TableSettingsAdvanced.textTableSize": "Mida Taula", - "DE.Views.TableSettingsAdvanced.textTitle": "Taula - Configuració Avançada", + "DE.Views.TableSettingsAdvanced.textTableSize": "Mida de la taula", + "DE.Views.TableSettingsAdvanced.textTitle": "Taula - configuració avançada", "DE.Views.TableSettingsAdvanced.textTop": "Superior", "DE.Views.TableSettingsAdvanced.textVertical": "Vertical", "DE.Views.TableSettingsAdvanced.textWidth": "Amplada", - "DE.Views.TableSettingsAdvanced.textWidthSpaces": "Amplada i Espais", + "DE.Views.TableSettingsAdvanced.textWidthSpaces": "Amplada i espais", "DE.Views.TableSettingsAdvanced.textWrap": "Ajustament del text", "DE.Views.TableSettingsAdvanced.textWrapNoneTooltip": "Taula en línia", - "DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "Taula de Flux", - "DE.Views.TableSettingsAdvanced.textWrappingStyle": "Ajustament de l'estil ", + "DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "Taula de flux", + "DE.Views.TableSettingsAdvanced.textWrappingStyle": "Estil d'ajustament", "DE.Views.TableSettingsAdvanced.textWrapText": "Ajustar el text", "DE.Views.TableSettingsAdvanced.tipAll": "Establir el límit exterior i totes les línies interiors", - "DE.Views.TableSettingsAdvanced.tipCellAll": "Establiu els límits només per a les cel·les interiors", + "DE.Views.TableSettingsAdvanced.tipCellAll": "Establir les vores només per a les cel·les interiors", "DE.Views.TableSettingsAdvanced.tipCellInner": "Establir línies verticals i horitzontals només per a cel·les interiors", - "DE.Views.TableSettingsAdvanced.tipCellOuter": "Establir els límits exteriors només per a cel·les interiors", - "DE.Views.TableSettingsAdvanced.tipInner": "Establir només línies interiors", + "DE.Views.TableSettingsAdvanced.tipCellOuter": "Establir els límits exteriors només per a les cel·les interiors", + "DE.Views.TableSettingsAdvanced.tipInner": "Establir només les línies interiors", "DE.Views.TableSettingsAdvanced.tipNone": "No establir vores", - "DE.Views.TableSettingsAdvanced.tipOuter": "Definir només la vora exterior", - "DE.Views.TableSettingsAdvanced.tipTableOuterCellAll": "Definir el límit exterior i les sanefes de totes les cel·les interiors", + "DE.Views.TableSettingsAdvanced.tipOuter": "Establir només la vora exterior", + "DE.Views.TableSettingsAdvanced.tipTableOuterCellAll": "Establir el límit exterior i les vores de totes les cel·les interiors", "DE.Views.TableSettingsAdvanced.tipTableOuterCellInner": "Establir el límit exterior i les línies verticals i horitzontals per a les cel·les interiors", - "DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter": "Definir els límits exteriors i exteriors de la taula per a les cel·les interiors", + "DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter": "Establir la vora exterior de la taula i les vores exteriors de les cel·les interiors", "DE.Views.TableSettingsAdvanced.txtCm": "Centímetre", "DE.Views.TableSettingsAdvanced.txtInch": "Polzada", "DE.Views.TableSettingsAdvanced.txtNoBorders": "Sense vores", - "DE.Views.TableSettingsAdvanced.txtPercent": "Percentatge", + "DE.Views.TableSettingsAdvanced.txtPercent": "Per cent", "DE.Views.TableSettingsAdvanced.txtPt": "Punt", "DE.Views.TableToTextDialog.textEmpty": "Heu d'introduir un caràcter per al separador personalitzat.", - "DE.Views.TableToTextDialog.textNested": "Converteix les taules niuades", + "DE.Views.TableToTextDialog.textNested": "Converteix les taules imbricades", "DE.Views.TableToTextDialog.textOther": "Altre", "DE.Views.TableToTextDialog.textPara": "Marques de paràgraf", "DE.Views.TableToTextDialog.textSemicolon": "Punts i coma", "DE.Views.TableToTextDialog.textSeparator": "Separar el text amb", - "DE.Views.TableToTextDialog.textTab": "Pestanyes", + "DE.Views.TableToTextDialog.textTab": "Tabuladors", "DE.Views.TableToTextDialog.textTitle": "Converteix la taula a text", "DE.Views.TextArtSettings.strColor": "Color", "DE.Views.TextArtSettings.strFill": "Omplir", @@ -2500,151 +2500,151 @@ "DE.Views.TextArtSettings.strType": "Tipus", "DE.Views.TextArtSettings.textAngle": "Angle", "DE.Views.TextArtSettings.textBorderSizeErr": "El valor introduït no és correcte.
Introduïu un valor entre 0 pt i 1584 pt.", - "DE.Views.TextArtSettings.textColor": "Omplir de Color", + "DE.Views.TextArtSettings.textColor": "Color de farcit", "DE.Views.TextArtSettings.textDirection": "Direcció", - "DE.Views.TextArtSettings.textGradient": "Degradat", - "DE.Views.TextArtSettings.textGradientFill": "Omplir Degradat", + "DE.Views.TextArtSettings.textGradient": "Punts de degradat", + "DE.Views.TextArtSettings.textGradientFill": "Omplir el degradat", "DE.Views.TextArtSettings.textLinear": "Lineal", - "DE.Views.TextArtSettings.textNoFill": "Sense Omplir", + "DE.Views.TextArtSettings.textNoFill": "Sense emplenament", "DE.Views.TextArtSettings.textPosition": "Posició", "DE.Views.TextArtSettings.textRadial": "Radial", - "DE.Views.TextArtSettings.textSelectTexture": "Selecciona", + "DE.Views.TextArtSettings.textSelectTexture": "Seleccionar", "DE.Views.TextArtSettings.textStyle": "Estil", "DE.Views.TextArtSettings.textTemplate": "Plantilla", "DE.Views.TextArtSettings.textTransform": "Transformar", "DE.Views.TextArtSettings.tipAddGradientPoint": "Afegir punt de degradat", - "DE.Views.TextArtSettings.tipRemoveGradientPoint": "Elimina el punt de degradat", - "DE.Views.TextArtSettings.txtNoBorders": "Sense Línia", - "DE.Views.TextToTableDialog.textAutofit": "Comportament d’ajust automàtic", + "DE.Views.TextArtSettings.tipRemoveGradientPoint": "Suprimir el punt de degradat", + "DE.Views.TextArtSettings.txtNoBorders": "Sense línia", + "DE.Views.TextToTableDialog.textAutofit": "Ajustament automàtic", "DE.Views.TextToTableDialog.textColumns": "Columnes", "DE.Views.TextToTableDialog.textContents": "Ajustar automàticament al contingut", "DE.Views.TextToTableDialog.textEmpty": "Heu d'introduir un caràcter per al separador personalitzat.", - "DE.Views.TextToTableDialog.textFixed": "Amplada de columna fixa", + "DE.Views.TextToTableDialog.textFixed": "Amplada fixa de columna", "DE.Views.TextToTableDialog.textOther": "Altre", "DE.Views.TextToTableDialog.textPara": "Paràgrafs", "DE.Views.TextToTableDialog.textRows": "Files", "DE.Views.TextToTableDialog.textSemicolon": "Punts i coma", "DE.Views.TextToTableDialog.textSeparator": "Separar el text a", - "DE.Views.TextToTableDialog.textTab": "Pestanyes", + "DE.Views.TextToTableDialog.textTab": "Tabuladors", "DE.Views.TextToTableDialog.textTableSize": "Mida de la taula", "DE.Views.TextToTableDialog.textTitle": "Converteix el text a taula", "DE.Views.TextToTableDialog.textWindow": "Ajustar automàticament a la finestra", "DE.Views.TextToTableDialog.txtAutoText": "Automàtic", - "DE.Views.Toolbar.capBtnAddComment": "Afegir Comentari", - "DE.Views.Toolbar.capBtnBlankPage": "Pàgina en Blanc", + "DE.Views.Toolbar.capBtnAddComment": "Afegir comentari", + "DE.Views.Toolbar.capBtnBlankPage": "Pàgina en blanc", "DE.Views.Toolbar.capBtnColumns": "Columnes", "DE.Views.Toolbar.capBtnComment": "Comentari", "DE.Views.Toolbar.capBtnDateTime": "Data & Hora", "DE.Views.Toolbar.capBtnInsChart": "Gràfic", - "DE.Views.Toolbar.capBtnInsControls": "Controls de Contingut", - "DE.Views.Toolbar.capBtnInsDropcap": "Drop Cap", + "DE.Views.Toolbar.capBtnInsControls": "Controls de contingut", + "DE.Views.Toolbar.capBtnInsDropcap": "Lletra de caixa alta", "DE.Views.Toolbar.capBtnInsEquation": "Equació", - "DE.Views.Toolbar.capBtnInsHeader": "\nCapçalera/Peu de Pàgina", + "DE.Views.Toolbar.capBtnInsHeader": "Capçalera/Peu de pàgina", "DE.Views.Toolbar.capBtnInsImage": "Imatge", - "DE.Views.Toolbar.capBtnInsPagebreak": "Canvis de línia", + "DE.Views.Toolbar.capBtnInsPagebreak": "Salts", "DE.Views.Toolbar.capBtnInsShape": "Forma", "DE.Views.Toolbar.capBtnInsSymbol": "Símbol", "DE.Views.Toolbar.capBtnInsTable": "Taula", "DE.Views.Toolbar.capBtnInsTextart": "Galeria de text", "DE.Views.Toolbar.capBtnInsTextbox": "Quadre de text", - "DE.Views.Toolbar.capBtnLineNumbers": "Numeració de Línies", + "DE.Views.Toolbar.capBtnLineNumbers": "Números de línia", "DE.Views.Toolbar.capBtnMargins": "Marges", "DE.Views.Toolbar.capBtnPageOrient": "Orientació", "DE.Views.Toolbar.capBtnPageSize": "Mida", - "DE.Views.Toolbar.capBtnWatermark": "Marca d'aigua", + "DE.Views.Toolbar.capBtnWatermark": "Filigrana", "DE.Views.Toolbar.capImgAlign": "Alinear", - "DE.Views.Toolbar.capImgBackward": "Envia Endarrere", - "DE.Views.Toolbar.capImgForward": "Portar Endavant", + "DE.Views.Toolbar.capImgBackward": "Enviar cap endarrere", + "DE.Views.Toolbar.capImgForward": "Portar endavant", "DE.Views.Toolbar.capImgGroup": "Agrupar", "DE.Views.Toolbar.capImgWrapping": "S'està ajustant", "DE.Views.Toolbar.mniCapitalizeWords": "Posar en majúscules cada paraula", - "DE.Views.Toolbar.mniCustomTable": "Inserir Taula Personalitzada", - "DE.Views.Toolbar.mniDrawTable": "Taula de dibuix", + "DE.Views.Toolbar.mniCustomTable": "Inseriu taula personalitzada", + "DE.Views.Toolbar.mniDrawTable": "Dibuixar una taula", "DE.Views.Toolbar.mniEditControls": "Configuració de control", - "DE.Views.Toolbar.mniEditDropCap": "Configuració Drop Cap", - "DE.Views.Toolbar.mniEditFooter": "Edita el peu de pàgina", - "DE.Views.Toolbar.mniEditHeader": "Edita la capçalera", - "DE.Views.Toolbar.mniEraseTable": "Esborrar Taula", - "DE.Views.Toolbar.mniHiddenBorders": "Ocultar Vores de la Taula", - "DE.Views.Toolbar.mniHiddenChars": "Caràcters que no imprimeixen", - "DE.Views.Toolbar.mniHighlightControls": "Configuració de Ressaltar", - "DE.Views.Toolbar.mniImageFromFile": "Imatge d'un Fitxer", - "DE.Views.Toolbar.mniImageFromStorage": "Imatge d'un Magatzem", - "DE.Views.Toolbar.mniImageFromUrl": "Imatge d'un Enllaç", + "DE.Views.Toolbar.mniEditDropCap": "Configuració lletra de caixa alta", + "DE.Views.Toolbar.mniEditFooter": "Editar el peu de pàgina", + "DE.Views.Toolbar.mniEditHeader": "Editar la capçalera", + "DE.Views.Toolbar.mniEraseTable": "Suprimir la taula", + "DE.Views.Toolbar.mniHiddenBorders": "Vores de taules amagades", + "DE.Views.Toolbar.mniHiddenChars": "Caràcters que no es poden imprimir", + "DE.Views.Toolbar.mniHighlightControls": "Ressaltar la configuració", + "DE.Views.Toolbar.mniImageFromFile": "Imatge del fitxer", + "DE.Views.Toolbar.mniImageFromStorage": "Imatge d'emmagatzematge", + "DE.Views.Toolbar.mniImageFromUrl": "Imatge d'URL", "DE.Views.Toolbar.mniLowerCase": "minúscules", - "DE.Views.Toolbar.mniSentenceCase": "Cas de frase", + "DE.Views.Toolbar.mniSentenceCase": "Format de frase.", "DE.Views.Toolbar.mniTextToTable": "Converteix el text a taula", "DE.Views.Toolbar.mniToggleCase": "iNVERTIR mAJÚSCULES", "DE.Views.Toolbar.mniUpperCase": "MAJÚSCULES", - "DE.Views.Toolbar.strMenuNoFill": "Sense Omplir", + "DE.Views.Toolbar.strMenuNoFill": "Sense emplenament", "DE.Views.Toolbar.textAutoColor": "Automàtic", "DE.Views.Toolbar.textBold": "Negreta", - "DE.Views.Toolbar.textBottom": "Inferior:", + "DE.Views.Toolbar.textBottom": "Part inferior:", "DE.Views.Toolbar.textChangeLevel": "Canvia el nivell de llista", - "DE.Views.Toolbar.textCheckboxControl": "Casella de Selecció", - "DE.Views.Toolbar.textColumnsCustom": "Personalitzar Columnes", + "DE.Views.Toolbar.textCheckboxControl": "Casella de selecció", + "DE.Views.Toolbar.textColumnsCustom": "Columnes personalitzades", "DE.Views.Toolbar.textColumnsLeft": "Esquerra", "DE.Views.Toolbar.textColumnsOne": "Un", "DE.Views.Toolbar.textColumnsRight": "Dreta", "DE.Views.Toolbar.textColumnsThree": "Tres", "DE.Views.Toolbar.textColumnsTwo": "Dos", - "DE.Views.Toolbar.textComboboxControl": "Quadre de llista desplegable", + "DE.Views.Toolbar.textComboboxControl": "Quadre combinat", "DE.Views.Toolbar.textContinuous": "Contínua", "DE.Views.Toolbar.textContPage": "Pàgina contínua", - "DE.Views.Toolbar.textCustomLineNumbers": "Opcions de Numeració de Línies", + "DE.Views.Toolbar.textCustomLineNumbers": "Opcions de números de línia", "DE.Views.Toolbar.textDateControl": "Data", - "DE.Views.Toolbar.textDropdownControl": "Drop-Llista desplegable", - "DE.Views.Toolbar.textEditWatermark": "Personalitzar Filigrana", + "DE.Views.Toolbar.textDropdownControl": "Llista desplegable", + "DE.Views.Toolbar.textEditWatermark": "Personalitzar la filigrana", "DE.Views.Toolbar.textEvenPage": "Pàgina parell", - "DE.Views.Toolbar.textInMargin": "Al Marge", - "DE.Views.Toolbar.textInsColumnBreak": "Inseriu la Columna", + "DE.Views.Toolbar.textInMargin": "Al marge", + "DE.Views.Toolbar.textInsColumnBreak": "Inseriu columna", "DE.Views.Toolbar.textInsertPageCount": "Inseriu el nombre de pàgines", - "DE.Views.Toolbar.textInsertPageNumber": "Inserir número de pàgina", + "DE.Views.Toolbar.textInsertPageNumber": "Inseriu número de pàgina", "DE.Views.Toolbar.textInsPageBreak": "Inseriu salt de pàgina", - "DE.Views.Toolbar.textInsSectionBreak": "Inserir salt de secció", + "DE.Views.Toolbar.textInsSectionBreak": "Inseriu salt de secció", "DE.Views.Toolbar.textInText": "Al text", - "DE.Views.Toolbar.textItalic": "Itàlica", + "DE.Views.Toolbar.textItalic": "Cursiva", "DE.Views.Toolbar.textLandscape": "Horitzontal", "DE.Views.Toolbar.textLeft": "Esquerra:", - "DE.Views.Toolbar.textListSettings": "Configuració de la Llista", - "DE.Views.Toolbar.textMarginsLast": "Últim Personalitzat", + "DE.Views.Toolbar.textListSettings": "Configuració de la llista", + "DE.Views.Toolbar.textMarginsLast": "Darrera personalització", "DE.Views.Toolbar.textMarginsModerate": "Moderar", "DE.Views.Toolbar.textMarginsNarrow": "Estret", "DE.Views.Toolbar.textMarginsNormal": "Normal", "DE.Views.Toolbar.textMarginsUsNormal": "US Normal", - "DE.Views.Toolbar.textMarginsWide": "Ampli", + "DE.Views.Toolbar.textMarginsWide": "Ample", "DE.Views.Toolbar.textNewColor": "Afegir un color nou personalitzat", - "DE.Views.Toolbar.textNextPage": "Pàgina Següent", - "DE.Views.Toolbar.textNoHighlight": "No resaltar", + "DE.Views.Toolbar.textNextPage": "Pàgina següent", + "DE.Views.Toolbar.textNoHighlight": "Sense ressaltar", "DE.Views.Toolbar.textNone": "Cap", - "DE.Views.Toolbar.textOddPage": "Pàgina imparell", - "DE.Views.Toolbar.textPageMarginsCustom": "Personalitzar Marges", - "DE.Views.Toolbar.textPageSizeCustom": "Personalitzar Mida Pàgina", + "DE.Views.Toolbar.textOddPage": "Pàgina senar", + "DE.Views.Toolbar.textPageMarginsCustom": "Marges personalitzats", + "DE.Views.Toolbar.textPageSizeCustom": "Personalitzar la mida de la pàgina", "DE.Views.Toolbar.textPictureControl": "Imatge", "DE.Views.Toolbar.textPlainControl": "Text sense format", - "DE.Views.Toolbar.textPortrait": "Vertical", - "DE.Views.Toolbar.textRemoveControl": "Esborrar el Control de Contingut", - "DE.Views.Toolbar.textRemWatermark": "Treure la marca d'aigua", - "DE.Views.Toolbar.textRestartEachPage": "Reiniciar cada pàgina", - "DE.Views.Toolbar.textRestartEachSection": "Reiniciar cada secció", + "DE.Views.Toolbar.textPortrait": "Orientació vertical", + "DE.Views.Toolbar.textRemoveControl": "Suprimir el control de contingut", + "DE.Views.Toolbar.textRemWatermark": "Suprimir la filigrana", + "DE.Views.Toolbar.textRestartEachPage": "Reinicieu cada pàgina", + "DE.Views.Toolbar.textRestartEachSection": "Reinicieu cada secció", "DE.Views.Toolbar.textRichControl": "Text enriquit", "DE.Views.Toolbar.textRight": "Dreta:", - "DE.Views.Toolbar.textStrikeout": "Ratllar tex", - "DE.Views.Toolbar.textStyleMenuDelete": "Suprimeix l'estil", + "DE.Views.Toolbar.textStrikeout": "Ratllat", + "DE.Views.Toolbar.textStyleMenuDelete": "Suprimir l'estil", "DE.Views.Toolbar.textStyleMenuDeleteAll": "Suprimeix tots els estils personalitzats", "DE.Views.Toolbar.textStyleMenuNew": "Nou estil de la selecció", - "DE.Views.Toolbar.textStyleMenuRestore": "Restablir a predeterminat", + "DE.Views.Toolbar.textStyleMenuRestore": "Restaurar als valors predeterminats", "DE.Views.Toolbar.textStyleMenuRestoreAll": "Restaurar tot a estils predeterminats", "DE.Views.Toolbar.textStyleMenuUpdate": "Actualitzar des de la selecció", "DE.Views.Toolbar.textSubscript": "Subíndex", "DE.Views.Toolbar.textSuperscript": "Superíndex", - "DE.Views.Toolbar.textSuppressForCurrentParagraph": "Suprimeix el Paràgraf Actual", + "DE.Views.Toolbar.textSuppressForCurrentParagraph": "Suprimir el paràgraf actual", "DE.Views.Toolbar.textTabCollaboration": "Col·laboració", "DE.Views.Toolbar.textTabFile": "Fitxer", "DE.Views.Toolbar.textTabHome": "Inici", - "DE.Views.Toolbar.textTabInsert": "Inserta", - "DE.Views.Toolbar.textTabLayout": "Maquetació", - "DE.Views.Toolbar.textTabLinks": "Referencies", + "DE.Views.Toolbar.textTabInsert": "Inserir", + "DE.Views.Toolbar.textTabLayout": "Disposició", + "DE.Views.Toolbar.textTabLinks": "Referències", "DE.Views.Toolbar.textTabProtect": "Protecció", "DE.Views.Toolbar.textTabReview": "Revisió", "DE.Views.Toolbar.textTitleError": "Error", @@ -2653,71 +2653,71 @@ "DE.Views.Toolbar.textUnderline": "Subratllar", "DE.Views.Toolbar.tipAlignCenter": "Centrar", "DE.Views.Toolbar.tipAlignJust": "Justificat", - "DE.Views.Toolbar.tipAlignLeft": "Alinear esquerra", - "DE.Views.Toolbar.tipAlignRight": "Alinear dreta", - "DE.Views.Toolbar.tipBack": "Enrere", + "DE.Views.Toolbar.tipAlignLeft": "Alineació a l'esquerra", + "DE.Views.Toolbar.tipAlignRight": "Alineació a la dreta", + "DE.Views.Toolbar.tipBack": "Endarrere", "DE.Views.Toolbar.tipBlankPage": "Inseriu pàgina en blanc", "DE.Views.Toolbar.tipChangeCase": "Canvia el cas", "DE.Views.Toolbar.tipChangeChart": "Canviar el tipus de gràfic", - "DE.Views.Toolbar.tipClearStyle": "Esborrar estil", - "DE.Views.Toolbar.tipColorSchemas": "Canviar el esquema de color", - "DE.Views.Toolbar.tipColumns": "Inserir columnes", - "DE.Views.Toolbar.tipControls": "Inserir controls de contingut", + "DE.Views.Toolbar.tipClearStyle": "Esborrar l'estil", + "DE.Views.Toolbar.tipColorSchemas": "Canviar l'esquema de color", + "DE.Views.Toolbar.tipColumns": "Inseriu columnes", + "DE.Views.Toolbar.tipControls": "Inseriu controls de contingut", "DE.Views.Toolbar.tipCopy": "Copiar", "DE.Views.Toolbar.tipCopyStyle": "Copiar estil", "DE.Views.Toolbar.tipDateTime": "Inseriu la data i l'hora actuals", - "DE.Views.Toolbar.tipDecFont": "Disminució de la mida del tipus de lletra", + "DE.Views.Toolbar.tipDecFont": "Disminuir la mida del tipus de lletra", "DE.Views.Toolbar.tipDecPrLeft": "Disminuir el sagnat", - "DE.Views.Toolbar.tipDropCap": "Inserir Lletra Capital", - "DE.Views.Toolbar.tipEditHeader": "Edita la capçalera o el peu de pàgina", - "DE.Views.Toolbar.tipFontColor": "Color de Font", - "DE.Views.Toolbar.tipFontName": "Font", - "DE.Views.Toolbar.tipFontSize": "Mida de Font", - "DE.Views.Toolbar.tipHighlightColor": "Ressalta el color", + "DE.Views.Toolbar.tipDropCap": "Inseriu lletra de caixa alta", + "DE.Views.Toolbar.tipEditHeader": "Editar la capçalera o el peu de pàgina", + "DE.Views.Toolbar.tipFontColor": "Color del tipus de lletra", + "DE.Views.Toolbar.tipFontName": "Tipus de lletra", + "DE.Views.Toolbar.tipFontSize": "Mida del tipus de lletra", + "DE.Views.Toolbar.tipHighlightColor": "Color de ressaltat", "DE.Views.Toolbar.tipImgAlign": "Alinear objectes", - "DE.Views.Toolbar.tipImgGroup": "Agrupa Objectes", + "DE.Views.Toolbar.tipImgGroup": "Agrupar objectes", "DE.Views.Toolbar.tipImgWrapping": "Ajustar el text", - "DE.Views.Toolbar.tipIncFont": "Increment de la mida del tipus de lletra", - "DE.Views.Toolbar.tipIncPrLeft": "Augmentar el sagnat", - "DE.Views.Toolbar.tipInsertChart": "Inseriu Gràfic", - "DE.Views.Toolbar.tipInsertEquation": "Inserir equació", - "DE.Views.Toolbar.tipInsertImage": "Inserta Imatge", - "DE.Views.Toolbar.tipInsertNum": "Inserir Número de Pàgina", - "DE.Views.Toolbar.tipInsertShape": "Inseriu autoforma", - "DE.Views.Toolbar.tipInsertSymbol": "Inserir Símbol", - "DE.Views.Toolbar.tipInsertTable": "Inserir taula", - "DE.Views.Toolbar.tipInsertText": "Inserir quadre de text", - "DE.Views.Toolbar.tipInsertTextArt": "Inserir Text Art", - "DE.Views.Toolbar.tipLineNumbers": "Mostra números de línia", - "DE.Views.Toolbar.tipLineSpace": "Espai de línia de paràgref", - "DE.Views.Toolbar.tipMailRecepients": "Combinació de Correspondència", - "DE.Views.Toolbar.tipMarkers": "Vinyetes", - "DE.Views.Toolbar.tipMultilevels": "Esquema", + "DE.Views.Toolbar.tipIncFont": "Augmenteu la mida de la lletra", + "DE.Views.Toolbar.tipIncPrLeft": "Augmenteu el sagnat", + "DE.Views.Toolbar.tipInsertChart": "Inseriu gràfic", + "DE.Views.Toolbar.tipInsertEquation": "Inseriu equació", + "DE.Views.Toolbar.tipInsertImage": "Inseriu imatge", + "DE.Views.Toolbar.tipInsertNum": "Inseriu número de pàgina", + "DE.Views.Toolbar.tipInsertShape": "Inseriu forma automàtica", + "DE.Views.Toolbar.tipInsertSymbol": "Inseriu símbol", + "DE.Views.Toolbar.tipInsertTable": "Inseriu taula", + "DE.Views.Toolbar.tipInsertText": "Inseriu quadre de text", + "DE.Views.Toolbar.tipInsertTextArt": "Inseriu text art", + "DE.Views.Toolbar.tipLineNumbers": "Mostrar els números de línia", + "DE.Views.Toolbar.tipLineSpace": "Interlineat del paràgraf", + "DE.Views.Toolbar.tipMailRecepients": "Combinació de correu", + "DE.Views.Toolbar.tipMarkers": "Pics", + "DE.Views.Toolbar.tipMultilevels": "Llista amb diversos nivells", "DE.Views.Toolbar.tipNumbers": "Numeració", - "DE.Views.Toolbar.tipPageBreak": "Inserir salt de pàgina o de secció", - "DE.Views.Toolbar.tipPageMargins": "Marges de Pàgina", - "DE.Views.Toolbar.tipPageOrient": "Orientació de Pàgina", - "DE.Views.Toolbar.tipPageSize": "Mida de Pàgina", - "DE.Views.Toolbar.tipParagraphStyle": "Estil de Paràgraf", - "DE.Views.Toolbar.tipPaste": "Pegar", - "DE.Views.Toolbar.tipPrColor": "Color de Fons de Paràgraf", + "DE.Views.Toolbar.tipPageBreak": "Inseriu salt de pàgina o de secció", + "DE.Views.Toolbar.tipPageMargins": "Marges de la pàgina", + "DE.Views.Toolbar.tipPageOrient": "Orientació de la pàgina", + "DE.Views.Toolbar.tipPageSize": "Mida de la pàgina", + "DE.Views.Toolbar.tipParagraphStyle": "Estil del paràgraf", + "DE.Views.Toolbar.tipPaste": "Enganxar", + "DE.Views.Toolbar.tipPrColor": "Color de fons del paràgraf", "DE.Views.Toolbar.tipPrint": "Imprimir", "DE.Views.Toolbar.tipRedo": "Refer", "DE.Views.Toolbar.tipSave": "Desar", - "DE.Views.Toolbar.tipSaveCoauth": "Desar els canvis per a que altres usuaris els puguin veure.", - "DE.Views.Toolbar.tipSendBackward": "Envia endarrere", + "DE.Views.Toolbar.tipSaveCoauth": "Desar els canvis perquè altres usuaris els puguin veure.", + "DE.Views.Toolbar.tipSendBackward": "Enviar cap endarrere", "DE.Views.Toolbar.tipSendForward": "Portar endavant", - "DE.Views.Toolbar.tipShowHiddenChars": "Caràcters que no imprimeixen", + "DE.Views.Toolbar.tipShowHiddenChars": "Caràcters que no es poden imprimir", "DE.Views.Toolbar.tipSynchronize": "Un altre usuari ha canviat el document. Cliqueu per desar els canvis i carregar les actualitzacions.", "DE.Views.Toolbar.tipUndo": "Desfer", - "DE.Views.Toolbar.tipWatermark": "Edita la filigrana", - "DE.Views.Toolbar.txtDistribHor": "Distribuïu horitzontalment", - "DE.Views.Toolbar.txtDistribVert": "Distribuïu verticalment", - "DE.Views.Toolbar.txtMarginAlign": "Alinear al marge", + "DE.Views.Toolbar.tipWatermark": "Editar la filigrana", + "DE.Views.Toolbar.txtDistribHor": "Distribuir horitzontalment", + "DE.Views.Toolbar.txtDistribVert": "Distribuir verticalment", + "DE.Views.Toolbar.txtMarginAlign": "Alineació al marge", "DE.Views.Toolbar.txtObjectsAlign": "Alinear els objectes seleccionats", "DE.Views.Toolbar.txtPageAlign": "Alinear a la pàgina", - "DE.Views.Toolbar.txtScheme1": "Oficina", - "DE.Views.Toolbar.txtScheme10": "Intermitg", + "DE.Views.Toolbar.txtScheme1": "Office", + "DE.Views.Toolbar.txtScheme10": "Mediana", "DE.Views.Toolbar.txtScheme11": "Metro", "DE.Views.Toolbar.txtScheme12": "Mòdul", "DE.Views.Toolbar.txtScheme13": "Opulent", @@ -2727,40 +2727,40 @@ "DE.Views.Toolbar.txtScheme17": "Solstici", "DE.Views.Toolbar.txtScheme18": "Tècnic", "DE.Views.Toolbar.txtScheme19": "Viatges", - "DE.Views.Toolbar.txtScheme2": "Escala de Gris", + "DE.Views.Toolbar.txtScheme2": "Escala de grisos", "DE.Views.Toolbar.txtScheme20": "Urbà", "DE.Views.Toolbar.txtScheme21": "Inspiració", - "DE.Views.Toolbar.txtScheme22": "Nova Oficina", + "DE.Views.Toolbar.txtScheme22": "Office", "DE.Views.Toolbar.txtScheme3": "Vèrtex", "DE.Views.Toolbar.txtScheme4": "Aspecte", "DE.Views.Toolbar.txtScheme5": "Cívic", - "DE.Views.Toolbar.txtScheme6": "Concurrència", + "DE.Views.Toolbar.txtScheme6": "Esplanada", "DE.Views.Toolbar.txtScheme7": "Equitat", "DE.Views.Toolbar.txtScheme8": "Flux", "DE.Views.Toolbar.txtScheme9": "Fosa", - "DE.Views.WatermarkSettingsDialog.textAuto": "Auto", + "DE.Views.WatermarkSettingsDialog.textAuto": "Automàtic", "DE.Views.WatermarkSettingsDialog.textBold": "Negreta", "DE.Views.WatermarkSettingsDialog.textColor": "Color del text", "DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonal", - "DE.Views.WatermarkSettingsDialog.textFont": "Font", + "DE.Views.WatermarkSettingsDialog.textFont": "Tipus de lletra", "DE.Views.WatermarkSettingsDialog.textFromFile": "Des d'un fitxer", - "DE.Views.WatermarkSettingsDialog.textFromStorage": "Des d'Emmagatzematge", - "DE.Views.WatermarkSettingsDialog.textFromUrl": "Des d'un Enllaç", + "DE.Views.WatermarkSettingsDialog.textFromStorage": "Des de l’emmagatzematge", + "DE.Views.WatermarkSettingsDialog.textFromUrl": "Des de l'URL", "DE.Views.WatermarkSettingsDialog.textHor": "Horitzontal", - "DE.Views.WatermarkSettingsDialog.textImageW": "Filigrana de la Imatge", - "DE.Views.WatermarkSettingsDialog.textItalic": "Itàlica", + "DE.Views.WatermarkSettingsDialog.textImageW": "Filigrana de la imatge", + "DE.Views.WatermarkSettingsDialog.textItalic": "Cursiva", "DE.Views.WatermarkSettingsDialog.textLanguage": "Idioma", - "DE.Views.WatermarkSettingsDialog.textLayout": "Maquetació", + "DE.Views.WatermarkSettingsDialog.textLayout": "Disposició", "DE.Views.WatermarkSettingsDialog.textNewColor": "Afegir un color nou personalitzat", "DE.Views.WatermarkSettingsDialog.textNone": "Cap", "DE.Views.WatermarkSettingsDialog.textScale": "Escala", - "DE.Views.WatermarkSettingsDialog.textSelect": "Seleccionar Imatge", - "DE.Views.WatermarkSettingsDialog.textStrikeout": "Ratllar", + "DE.Views.WatermarkSettingsDialog.textSelect": "Seleccionar imatge", + "DE.Views.WatermarkSettingsDialog.textStrikeout": "Ratllat", "DE.Views.WatermarkSettingsDialog.textText": "Text", - "DE.Views.WatermarkSettingsDialog.textTextW": "Marca d'aigua de text", - "DE.Views.WatermarkSettingsDialog.textTitle": "Configuració de la marca d'aigua", + "DE.Views.WatermarkSettingsDialog.textTextW": "Filigrana de text", + "DE.Views.WatermarkSettingsDialog.textTitle": "Configuració de la filigrana", "DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparent", "DE.Views.WatermarkSettingsDialog.textUnderline": "Subratllar", - "DE.Views.WatermarkSettingsDialog.tipFontName": "Nom de Font", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Mida de Font" + "DE.Views.WatermarkSettingsDialog.tipFontName": "Nom del tipus de lletra", + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Mida del tipus de lletra" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/zh.json b/apps/documenteditor/main/locale/zh.json index ef282743a..ebbeb5f4a 100644 --- a/apps/documenteditor/main/locale/zh.json +++ b/apps/documenteditor/main/locale/zh.json @@ -1988,7 +1988,7 @@ "DE.Views.PageMarginsDialog.textNormal": "正常", "DE.Views.PageMarginsDialog.textOrientation": "方向", "DE.Views.PageMarginsDialog.textOutside": "外面", - "DE.Views.PageMarginsDialog.textPortrait": "肖像", + "DE.Views.PageMarginsDialog.textPortrait": "纵向", "DE.Views.PageMarginsDialog.textPreview": "预览", "DE.Views.PageMarginsDialog.textRight": "右", "DE.Views.PageMarginsDialog.textTitle": "边距", @@ -2458,7 +2458,7 @@ "DE.Views.Toolbar.textPageSizeCustom": "自定义页面大小", "DE.Views.Toolbar.textPictureControl": "图片", "DE.Views.Toolbar.textPlainControl": "插入纯文本内容控件", - "DE.Views.Toolbar.textPortrait": "肖像", + "DE.Views.Toolbar.textPortrait": "纵向", "DE.Views.Toolbar.textRemoveControl": "删除内容控件", "DE.Views.Toolbar.textRemWatermark": "删除水印", "DE.Views.Toolbar.textRichControl": "插入多信息文本内容控件", diff --git a/apps/presentationeditor/embed/locale/ca.json b/apps/presentationeditor/embed/locale/ca.json index cb844e4e5..8f4201a89 100644 --- a/apps/presentationeditor/embed/locale/ca.json +++ b/apps/presentationeditor/embed/locale/ca.json @@ -1,34 +1,35 @@ { - "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", - "PE.ApplicationController.convertationErrorText": "Conversió Fallida", - "PE.ApplicationController.convertationTimeoutText": "Conversió fora de temps", + "PE.ApplicationController.convertationErrorText": "No s'ha pogut convertir", + "PE.ApplicationController.convertationTimeoutText": "S'ha superat el temps de conversió.", "PE.ApplicationController.criticalErrorTitle": "Error", - "PE.ApplicationController.downloadErrorText": "Descàrrega fallida.", - "PE.ApplicationController.downloadTextText": "Descàrrega presentació...", - "PE.ApplicationController.errorAccessDeny": "Intenteu realitzar una acció per la qual no teniu drets.
Poseu-vos en contacte amb l'administrador del servidor de documents.", - "PE.ApplicationController.errorDefaultMessage": "Error codi:%1 ", + "PE.ApplicationController.downloadErrorText": "S'ha produït un error en la baixada", + "PE.ApplicationController.downloadTextText": "S'està baixant la presentació...", + "PE.ApplicationController.errorAccessDeny": "No teniu permisos per realitzar aquesta acció.
Contacteu amb el vostre administrador del servidor de documents.", + "PE.ApplicationController.errorDefaultMessage": "Codi d'error:%1", "PE.ApplicationController.errorFilePassProtect": "El fitxer està protegit amb contrasenya i no es pot obrir.", - "PE.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.", - "PE.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.", - "PE.ApplicationController.errorUserDrop": "Ara no es pot accedir al fitxer.", + "PE.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ó.", + "PE.ApplicationController.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.", + "PE.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.", + "PE.ApplicationController.errorUserDrop": "Ara mateix no es pot accedir al fitxer.", "PE.ApplicationController.notcriticalErrorTitle": "Advertiment", "PE.ApplicationController.scriptLoadError": "La connexió és massa lenta, alguns dels components no s’han pogut carregar. Torneu a carregar la pàgina.", "PE.ApplicationController.textAnonymous": "Anònim", "PE.ApplicationController.textGuest": "Convidat", - "PE.ApplicationController.textLoadingDocument": "Carregant presentació", + "PE.ApplicationController.textLoadingDocument": "S'està carregant la presentació", "PE.ApplicationController.textOf": "de", - "PE.ApplicationController.txtClose": "Tancar", - "PE.ApplicationController.unknownErrorText": "Error Desconegut.", + "PE.ApplicationController.txtClose": "Tanca", + "PE.ApplicationController.unknownErrorText": "Error desconegut.", "PE.ApplicationController.unsupportedBrowserErrorText": "El vostre navegador no és compatible.", - "PE.ApplicationController.waitText": "Si us plau, esperi...", - "PE.ApplicationView.txtDownload": "Descàrrega", - "PE.ApplicationView.txtEmbed": "Incrustar", - "PE.ApplicationView.txtFileLocation": "Obrir ubicació del fitxer", - "PE.ApplicationView.txtFullScreen": "Pantalla Completa", - "PE.ApplicationView.txtPrint": "Imprimir", - "PE.ApplicationView.txtShare": "Compartir" + "PE.ApplicationController.waitText": "Espereu...", + "PE.ApplicationView.txtDownload": "Baixa", + "PE.ApplicationView.txtEmbed": "Incrusta", + "PE.ApplicationView.txtFileLocation": "Obre la ubicació del fitxer", + "PE.ApplicationView.txtFullScreen": "Pantalla sencera", + "PE.ApplicationView.txtPrint": "Imprimeix", + "PE.ApplicationView.txtShare": "Comparteix" } \ No newline at end of file diff --git a/apps/presentationeditor/embed/locale/fr.json b/apps/presentationeditor/embed/locale/fr.json index 9f0063f17..a76eea2d1 100644 --- a/apps/presentationeditor/embed/locale/fr.json +++ b/apps/presentationeditor/embed/locale/fr.json @@ -13,6 +13,7 @@ "PE.ApplicationController.errorDefaultMessage": "Code d'erreur: %1", "PE.ApplicationController.errorFilePassProtect": "Le fichier est protégé par un mot de passe et ne peut pas être ouvert.", "PE.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'information. ", + "PE.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.", "PE.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.", "PE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.", "PE.ApplicationController.notcriticalErrorTitle": "Avertissement", diff --git a/apps/presentationeditor/embed/locale/ro.json b/apps/presentationeditor/embed/locale/ro.json index 33ef83a3f..627bf375b 100644 --- a/apps/presentationeditor/embed/locale/ro.json +++ b/apps/presentationeditor/embed/locale/ro.json @@ -13,6 +13,7 @@ "PE.ApplicationController.errorDefaultMessage": "Codul de eroare: %1", "PE.ApplicationController.errorFilePassProtect": "Fișierul este protejat cu parolă și deaceea nu poate fi deschis.", "PE.ApplicationController.errorFileSizeExceed": "Dimensiunea fișierului depășește limita permisă de serverul Dvs.
Pentru detalii, contactați administratorul dumneavoastră de Server Documente.", + "PE.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.", "PE.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ă.", "PE.ApplicationController.errorUserDrop": "Fișierul nu poate fi accesat deocamdată.", "PE.ApplicationController.notcriticalErrorTitle": "Avertisment", diff --git a/apps/presentationeditor/embed/locale/ru.json b/apps/presentationeditor/embed/locale/ru.json index 0d73058aa..cd8b90e42 100644 --- a/apps/presentationeditor/embed/locale/ru.json +++ b/apps/presentationeditor/embed/locale/ru.json @@ -13,6 +13,7 @@ "PE.ApplicationController.errorDefaultMessage": "Код ошибки: %1", "PE.ApplicationController.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.", "PE.ApplicationController.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.
Обратитесь к администратору Сервера документов для получения дополнительной информации.", + "PE.ApplicationController.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.", "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Подключение к Интернету было восстановлено, и версия файла изменилась.
Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.", "PE.ApplicationController.errorUserDrop": "В настоящий момент файл недоступен.", "PE.ApplicationController.notcriticalErrorTitle": "Внимание", diff --git a/apps/presentationeditor/main/locale/ca.json b/apps/presentationeditor/main/locale/ca.json index 76679ee25..4dc4b0daf 100644 --- a/apps/presentationeditor/main/locale/ca.json +++ b/apps/presentationeditor/main/locale/ca.json @@ -1,10 +1,10 @@ { - "Common.Controllers.Chat.notcriticalErrorTitle": "Avis", - "Common.Controllers.Chat.textEnterMessage": "Introduïu el vostre missatge aquí", + "Common.Controllers.Chat.notcriticalErrorTitle": "Advertiment", + "Common.Controllers.Chat.textEnterMessage": "Introdueix el teu missatge aquí", "Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anònim", - "Common.Controllers.ExternalDiagramEditor.textClose": "Tancar", - "Common.Controllers.ExternalDiagramEditor.warningText": "L’objecte està desactivat perquè està sent editat per un altre usuari.", - "Common.Controllers.ExternalDiagramEditor.warningTitle": "Avis", + "Common.Controllers.ExternalDiagramEditor.textClose": "Tanca", + "Common.Controllers.ExternalDiagramEditor.warningText": "L’objecte s'ha desactivat perquè un altre usuari ja el té obert.", + "Common.Controllers.ExternalDiagramEditor.warningTitle": "Advertiment", "Common.define.chartData.textArea": "Àrea", "Common.define.chartData.textAreaStacked": "Àrea apilada", "Common.define.chartData.textAreaStackedPer": "Àrea apilada al 100%", @@ -15,15 +15,15 @@ "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.textCharts": "Diagrames", + "Common.define.chartData.textBarStackedPer3d": "Columna 3D apilada al 100%", + "Common.define.chartData.textCharts": "Gràfics", "Common.define.chartData.textColumn": "Columna", - "Common.define.chartData.textCombo": "Combo", + "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", @@ -37,7 +37,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,541 +45,541 @@ "Common.define.chartData.textScatterLineMarker": "Dispersió amb línies rectes i marcadors", "Common.define.chartData.textScatterSmooth": "Dispersió amb línies suaus", "Common.define.chartData.textScatterSmoothMarker": "Dispersió amb línies suaus i marcadors", - "Common.define.chartData.textStock": "Existències", + "Common.define.chartData.textStock": "Accions", "Common.define.chartData.textSurface": "Superfície", - "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.UI.ColorButton.textNewColor": "Afegeix un color personalitzat nou ", "Common.UI.ComboBorderSize.txtNoBorders": "Sense vores", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sense vores", - "Common.UI.ComboDataView.emptyComboText": "Sense Estils", + "Common.UI.ComboDataView.emptyComboText": "Sense estils", "Common.UI.ExtendedColorDialog.addButtonText": "Afegir", "Common.UI.ExtendedColorDialog.textCurrent": "Actual", - "Common.UI.ExtendedColorDialog.textHexErr": "El valor introduït és incorrecte.
Introduïu un valor entre 000000 i FFFFFF.", + "Common.UI.ExtendedColorDialog.textHexErr": "El valor introduït no és correcte.
Introduïu un valor entre 000000 i FFFFFF.", "Common.UI.ExtendedColorDialog.textNew": "Nou", - "Common.UI.ExtendedColorDialog.textRGBErr": "El valor introduït és incorrecte.
Introduïu un valor numèric entre 0 i 255.", - "Common.UI.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 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.textApplyText": "Aplicar a mesura que s'escriu", - "Common.Views.AutoCorrectDialog.textAutoCorrect": "Correcció Automàtica", - "Common.Views.AutoCorrectDialog.textAutoFormat": "Format automàtic a mesura que s'escriu", - "Common.Views.AutoCorrectDialog.textBulleted": "Llistes de vinyetes automàtiques", + "Common.Views.AutoCorrectDialog.textApplyText": "Aplicació mentre escriviu", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Correcció automàtica", + "Common.Views.AutoCorrectDialog.textAutoFormat": "Format automàtic a mesura que escriviu", + "Common.Views.AutoCorrectDialog.textBulleted": "Llistes automàtiques de pics", "Common.Views.AutoCorrectDialog.textBy": "Per", - "Common.Views.AutoCorrectDialog.textDelete": "Esborrar", - "Common.Views.AutoCorrectDialog.textFLSentence": "Posa en majúscules la primera lletra de les frases", - "Common.Views.AutoCorrectDialog.textHyphens": "Guions (--) amb guió (—)", - "Common.Views.AutoCorrectDialog.textMathCorrect": "Correcció Automàtica Matemàtica", + "Common.Views.AutoCorrectDialog.textDelete": "Suprimeix", + "Common.Views.AutoCorrectDialog.textFLSentence": "Escriu en majúscules la primera lletra de les frases", + "Common.Views.AutoCorrectDialog.textHyphens": "Guionets (--) per guió llarg (—)", + "Common.Views.AutoCorrectDialog.textMathCorrect": "Autocorrecció de símbols matemàtics", "Common.Views.AutoCorrectDialog.textNumbered": "Llistes numerades automàtiques", "Common.Views.AutoCorrectDialog.textQuotes": "\"Cometes rectes\" amb \"cometes tipogràfiques\"", - "Common.Views.AutoCorrectDialog.textRecognized": "Funcions Reconegudes", - "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Les expressions següents són expressions matemàtiques reconegudes. No es posaran en cursiva automàticament.", + "Common.Views.AutoCorrectDialog.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": "Substitueix mentre s'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.textReplaceType": "Substitueix el text mentre escrius", + "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.Chat.textSend": "Envia", "Common.Views.Comments.textAdd": "Afegir", - "Common.Views.Comments.textAddComment": "Afegir comentari", - "Common.Views.Comments.textAddCommentToDoc": "Afegir Comentari al Document", - "Common.Views.Comments.textAddReply": "Afegir una Resposta", + "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": "Les accions Copia, retalla i enganxa utilitzant els botons de la barra d'eines de l'editor i les accions del menú contextual només es realitzaran dins d'aquesta pestanya de l'editor.

Per copiar o enganxar a o des de les aplicacions fora de la pestanya de l'editor, utilitzeu les següents combinacions de teclat:", - "Common.Views.CopyWarningDialog.textTitle": "Accions de Copiar, Tallar i Enganxar ", - "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.ExternalDiagramEditor.textClose": "Tancar", - "Common.Views.ExternalDiagramEditor.textSave": "Desar i Sortir", - "Common.Views.ExternalDiagramEditor.textTitle": "Editor de Gràfics", + "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 copiar, tallar i enganxar ", + "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.ExternalDiagramEditor.textClose": "Tanca", + "Common.Views.ExternalDiagramEditor.textSave": "Desa i surt", + "Common.Views.ExternalDiagramEditor.textTitle": "Editor de gràfics", "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.textHideNotes": "Ocultar notes", - "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.textHideNotes": "Amaga les notes", + "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.tipDownload": "Baixa el fitxer", + "Common.Views.Header.tipGoEdit": "Edita el fitxer actual", + "Common.Views.Header.tipPrint": "Imprimeix fitxer", + "Common.Views.Header.tipRedo": "Refés", + "Common.Views.Header.tipSave": "Desa", + "Common.Views.Header.tipUndo": "Desfes", "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.History.textCloseHistory": "Tancar Historial", - "Common.Views.History.textHide": "Plegar", + "Common.Views.Header.tipViewUsers": "Mostra els usuaris i gestiona els drets d’accés als documents", + "Common.Views.Header.txtAccessRights": "Canvia els drets d’accés", + "Common.Views.Header.txtRename": "Canvia el nom", + "Common.Views.History.textCloseHistory": "Tanca l'historial", + "Common.Views.History.textHide": "Redueix", "Common.Views.History.textHideAll": "Amagar els canvis detallats", - "Common.Views.History.textRestore": "Restaurar", - "Common.Views.History.textShow": "Desplegar", - "Common.Views.History.textShowAll": "Mostrar els canvis detallats", + "Common.Views.History.textRestore": "Restaura", + "Common.Views.History.textShow": "Expandeix", + "Common.Views.History.textShowAll": "Mostra els canvis al detall", "Common.Views.History.textVer": "ver.", - "Common.Views.ImageFromUrlDialog.textUrl": "Pegar URL d'imatge:", + "Common.Views.ImageFromUrlDialog.textUrl": "Enganxar una URL d'imatge:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Aquest camp és obligatori", - "Common.Views.ImageFromUrlDialog.txtNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.example.com\"", - "Common.Views.InsertTableDialog.textInvalidRowsCols": "Cal que especifiqueu el número de files i columnes vàlids.", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "Aquest camp hauria de ser un enllaç amb el format \"http://www.example.com\"", + "Common.Views.InsertTableDialog.textInvalidRowsCols": "Cal especificar el número de files i columnes vàlids.", "Common.Views.InsertTableDialog.txtColumns": "Número de columnes", "Common.Views.InsertTableDialog.txtMaxText": "El valor màxim per a aquest camp és {0}.", - "Common.Views.InsertTableDialog.txtMinText": "El valor mínim d’aquest camp és {0}.", + "Common.Views.InsertTableDialog.txtMinText": "El valor mínim per aquest camp és {0}.", "Common.Views.InsertTableDialog.txtRows": "Número de files", - "Common.Views.InsertTableDialog.txtTitle": "Mida Taula", - "Common.Views.InsertTableDialog.txtTitleSplit": "Dividir Cel·la", - "Common.Views.LanguageDialog.labelSelect": "Seleccionar l'idioma de document", - "Common.Views.ListSettingsDialog.textBulleted": "Amb vinyetes", - "Common.Views.ListSettingsDialog.textNumbering": "Numerats", - "Common.Views.ListSettingsDialog.tipChange": "Canviar vinyeta", - "Common.Views.ListSettingsDialog.txtBullet": "Vinyeta", + "Common.Views.InsertTableDialog.txtTitle": "Mida de la taula", + "Common.Views.InsertTableDialog.txtTitleSplit": "Divisió de cel·les", + "Common.Views.LanguageDialog.labelSelect": "Selecciona l'idioma de document", + "Common.Views.ListSettingsDialog.textBulleted": "Amb pics", + "Common.Views.ListSettingsDialog.textNumbering": "Numerat", + "Common.Views.ListSettingsDialog.tipChange": "Canvia 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.txtOfText": "% del text", "Common.Views.ListSettingsDialog.txtSize": "Mida", - "Common.Views.ListSettingsDialog.txtStart": "Comença 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 Fitxer", + "Common.Views.OpenDialog.closeButtonText": "Tanca el fitxer", "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.txtPassword": "Contrasenya", - "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.txtProtected": "Un cop introduïu la contrasenya i obriu el fitxer, es restablirà la contrasenya actual del fitxer.", "Common.Views.OpenDialog.txtTitle": "Tria opcions %1", - "Common.Views.OpenDialog.txtTitleProtected": "Arxiu Protegit", - "Common.Views.PasswordDialog.txtDescription": "Establir una contrasenya per protegir el document", + "Common.Views.OpenDialog.txtTitleProtected": "Fitxer 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.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": "Parar", - "Common.Views.Protection.hintAddPwd": "Xifrar amb contrasenya", - "Common.Views.Protection.hintPwd": "Canviar o Suprimir 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.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 de 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 els comentaris", + "Common.Views.ReviewChanges.strStrictDesc": "Fes servir el botó \"Desar\" per sincronitzar els canvis 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.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": "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.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 els 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.txtMarkup": "Tots els canvis (Edició)", - "Common.Views.ReviewChanges.txtMarkupCap": "Cambis", + "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.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": "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.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 proporcionarà 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 la 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.SignSettingsDialog.textAllowComment": "Permet al signant afegir comentaris al diàleg de signatura", - "Common.Views.SignSettingsDialog.textInfo": "Informació de qui Firma", + "Common.Views.SignDialog.tipFontName": "Nom del tipus de lletra", + "Common.Views.SignDialog.tipFontSize": "Mida del tipus de lletra", + "Common.Views.SignSettingsDialog.textAllowComment": "Permetre al signant afegir comentaris al quadre de diàleg de signatura", + "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.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 obligatori", "Common.Views.SymbolTableDialog.textCharacter": "Caràcter", "Common.Views.SymbolTableDialog.textCode": "Valor HEX Unicode", - "Common.Views.SymbolTableDialog.textCopyright": "Signe de copyright", - "Common.Views.SymbolTableDialog.textDCQuote": "S'està tancant una doble cita", - "Common.Views.SymbolTableDialog.textDOQuote": "Obertura de Cotització Doble", + "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": "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.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.textQEmSpace": "1/4 Em Espai", - "Common.Views.SymbolTableDialog.textRange": "Rang", + "Common.Views.SymbolTableDialog.textPilcrow": "Signe de calderó", + "Common.Views.SymbolTableDialog.textQEmSpace": "Espai llarg 1/4 ", + "Common.Views.SymbolTableDialog.textRange": "Interval", "Common.Views.SymbolTableDialog.textRecent": "Símbols utilitzats recentment", - "Common.Views.SymbolTableDialog.textRegistered": "Registre Registrat", - "Common.Views.SymbolTableDialog.textSCQuote": "S'està tancant una única cita", - "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.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 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.", - "PE.Controllers.LeftMenu.leavePageText": "Es perdran tots els canvis no guardats en aquest document.
Feu clic a \"Cancel·lar\" i, a continuació, \"Desa\" per desar-los. Feu clic a \"OK\" per descartar tots els canvis no desats.", + "PE.Controllers.LeftMenu.leavePageText": "Els canvis d'aquest document que no s'hagin desat es perdran.
Cliqueu a \"Cancel·lar\" i, a continuació, \"Desar\" per desar-los. Cliqueu a \"OK\" per descartar tots els canvis no desats.", "PE.Controllers.LeftMenu.newDocumentTitle": "Presentació sense nom", - "PE.Controllers.LeftMenu.notcriticalErrorTitle": "Avis", - "PE.Controllers.LeftMenu.requestEditRightsText": "Sol·licitant drets d’edició ...", - "PE.Controllers.LeftMenu.textLoadHistory": "Carregant historial de versions...", + "PE.Controllers.LeftMenu.notcriticalErrorTitle": "Advertiment", + "PE.Controllers.LeftMenu.requestEditRightsText": "S'estan sol·licitant drets d’edició ...", + "PE.Controllers.LeftMenu.textLoadHistory": "S'està carregant l'historial de versions...", "PE.Controllers.LeftMenu.textNoTextFound": "No s'han trobat les dades que heu cercat. Ajusteu les opcions de cerca.", - "PE.Controllers.LeftMenu.textReplaceSkipped": "La substitució s’ha realitzat. Es van saltar {0} ocurrències.", - "PE.Controllers.LeftMenu.textReplaceSuccess": "La recerca s’ha fet. Es van substituir les coincidències: {0}", + "PE.Controllers.LeftMenu.textReplaceSkipped": "S'ha realitzat la substitució. S'han omès {0} ocurrències.", + "PE.Controllers.LeftMenu.textReplaceSuccess": "S'ha fet la cerca. S'han substituït les coincidències: {0}", "PE.Controllers.LeftMenu.txtUntitled": "Sense títol", - "PE.Controllers.Main.applyChangesTextText": "Carregant dades...", - "PE.Controllers.Main.applyChangesTitleText": "Carregant Dades", + "PE.Controllers.Main.applyChangesTextText": "S'estant carregant les dades...", + "PE.Controllers.Main.applyChangesTitleText": "S'estan carregant les dades", "PE.Controllers.Main.convertationTimeoutText": "S'ha superat el temps de conversió.", - "PE.Controllers.Main.criticalErrorExtText": "Prem \"Acceptar\" per tornar al document.", + "PE.Controllers.Main.criticalErrorExtText": "Prem \"Acceptar\" per tornar a la llista de documents.", "PE.Controllers.Main.criticalErrorTitle": "Error", - "PE.Controllers.Main.downloadErrorText": "Descàrrega fallida.", - "PE.Controllers.Main.downloadTextText": "Descarregant presentació...", - "PE.Controllers.Main.downloadTitleText": "Descarregar Presentació", - "PE.Controllers.Main.errorAccessDeny": "Intenteu realitzar una acció per la qual no teniu drets.
Poseu-vos en contacte amb l'administrador del servidor de documents.", - "PE.Controllers.Main.errorBadImageUrl": "Enllaç de la Imatge Incorrecte", - "PE.Controllers.Main.errorCoAuthoringDisconnect": "S'ha perdut la connexió amb el servidor. El document no es pot editar ara mateix.", - "PE.Controllers.Main.errorComboSeries": "Per crear un diagrama combinat, seleccioneu almenys dues sèries de dades.", - "PE.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.", - "PE.Controllers.Main.errorDatabaseConnection": "Error extern.
Error de connexió de base de dades. Contacteu amb l'assistència en cas que l'error continuï.", + "PE.Controllers.Main.downloadErrorText": "S'ha produït un error en la baixada", + "PE.Controllers.Main.downloadTextText": "S'està baixant la presentació...", + "PE.Controllers.Main.downloadTitleText": "S'està baixant la presentació", + "PE.Controllers.Main.errorAccessDeny": "No teniu permisos per realitzar aquesta acció.
Contacteu amb el vostre administrador del servidor de documents.", + "PE.Controllers.Main.errorBadImageUrl": "L'URL de la imatge no és correcta", + "PE.Controllers.Main.errorCoAuthoringDisconnect": "S'ha perdut la connexió amb el servidor. Ara no es pot editar el document.", + "PE.Controllers.Main.errorComboSeries": "Per crear un gràfic combinat, seleccioneu pel cap baix dues sèries de dades.", + "PE.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.", + "PE.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ï.", "PE.Controllers.Main.errorDataEncrypted": "S'han rebut canvis xifrats, que no es poden desxifrar.", - "PE.Controllers.Main.errorDataRange": "Interval de dades incorrecte.", - "PE.Controllers.Main.errorDefaultMessage": "Codi Error:%1", - "PE.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.", - "PE.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.", - "PE.Controllers.Main.errorEmailClient": "No s'ha pogut trobar cap client de correu electrònic", + "PE.Controllers.Main.errorDataRange": "L'interval de dades no és correcte.", + "PE.Controllers.Main.errorDefaultMessage": "Codi d'error: %1", + "PE.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.", + "PE.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.", + "PE.Controllers.Main.errorEmailClient": "No s'ha trobat cap client de correu electrònic", "PE.Controllers.Main.errorFilePassProtect": "El fitxer està protegit amb contrasenya i no es pot obrir.", - "PE.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.", + "PE.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ó.", "PE.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.", - "PE.Controllers.Main.errorKeyEncrypt": "Descriptor de la clau desconegut", - "PE.Controllers.Main.errorKeyExpire": "El descriptor de la clau ha caducat", - "PE.Controllers.Main.errorProcessSaveResult": "Problemes al guardar.", + "PE.Controllers.Main.errorKeyEncrypt": "Descriptor de claus desconegut", + "PE.Controllers.Main.errorKeyExpire": "El descriptor de claus ha caducat", + "PE.Controllers.Main.errorProcessSaveResult": "S'ha produït un error en desar.", "PE.Controllers.Main.errorServerVersion": "S'ha actualitzat la versió de l'editor. Es tornarà a carregar la pàgina per aplicar els canvis.", "PE.Controllers.Main.errorSessionAbsolute": "La sessió d’edició del document ha caducat. Torneu a carregar la pàgina.", - "PE.Controllers.Main.errorSessionIdle": "El document no s’ha editat des de fa temps. Torneu a carregar la pàgina.", + "PE.Controllers.Main.errorSessionIdle": "Fa temps que no s'obre el document. Torneu a carregar la pàgina.", "PE.Controllers.Main.errorSessionToken": "S'ha interromput la connexió amb el servidor. Torneu a carregar la pàgina.", "PE.Controllers.Main.errorSetPassword": "No s'ha pogut establir la contrasenya.", - "PE.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.", - "PE.Controllers.Main.errorToken": "El testimoni de seguretat del document no està format correctament.
Contacteu l'administrador del servidor de documents.", - "PE.Controllers.Main.errorTokenExpire": "El testimoni de seguretat del document ha caducat.
Contacteu amb l'administrador del Document Server.", - "PE.Controllers.Main.errorUpdateVersion": "La versió del fitxer s'ha canviat. La pàgina es tornarà a carregar.", - "PE.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.", - "PE.Controllers.Main.errorUserDrop": "Ara no es pot accedir al fitxer.", - "PE.Controllers.Main.errorUsersExceed": "S'ha superat el nombre d’usuaris permès pel pla de preus", - "PE.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 re-carregar la pàgina.", - "PE.Controllers.Main.leavePageText": "Heu fet canvis no desats en aquesta presentació. Feu clic a \"Continua en aquesta pàgina\" i, a continuació, \"Desa\" per desar-les. Feu clic a \"Deixa aquesta pàgina\" per descartar tots els canvis no desats.", - "PE.Controllers.Main.leavePageTextOnClose": "Es perdran tots els canvis no desats en aquesta presentació.
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.", - "PE.Controllers.Main.loadFontsTextText": "Carregant dades...", - "PE.Controllers.Main.loadFontsTitleText": "Carregant Dades", - "PE.Controllers.Main.loadFontTextText": "Carregant dades...", - "PE.Controllers.Main.loadFontTitleText": "Carregant Dades", - "PE.Controllers.Main.loadImagesTextText": "Carregant imatges...", - "PE.Controllers.Main.loadImagesTitleText": "Carregant Imatges", - "PE.Controllers.Main.loadImageTextText": "Carregant imatge...", - "PE.Controllers.Main.loadImageTitleText": "Carregant Imatge", - "PE.Controllers.Main.loadingDocumentTextText": "Carregant presentació...", - "PE.Controllers.Main.loadingDocumentTitleText": "Carregant presentació", - "PE.Controllers.Main.loadThemeTextText": "Carregant tema...", - "PE.Controllers.Main.loadThemeTitleText": "Carregant Tema", - "PE.Controllers.Main.notcriticalErrorTitle": "Avis", + "PE.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.", + "PE.Controllers.Main.errorToken": "El testimoni de seguretat del document no s'ha format correctament.
Contacteu amb el vostre administrador del servidor de documents.", + "PE.Controllers.Main.errorTokenExpire": "El testimoni de seguretat del document ha caducat.
Contacteu amb el vostre administrador del servidor de documents.", + "PE.Controllers.Main.errorUpdateVersion": "S'ha canviat la versió del fitxer. La pàgina es tornarà a carregar.", + "PE.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.", + "PE.Controllers.Main.errorUserDrop": "Ara mateix no es pot accedir al fitxer.", + "PE.Controllers.Main.errorUsersExceed": "S'ha superat el nombre d’usuaris que permet el vostre pla", + "PE.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.", + "PE.Controllers.Main.leavePageText": "Teniu canvis no desats en aquesta presentació. Cliqueu a \"Continua en aquesta pàgina\" i, a continuació, a \"Desa\" per desar-los. Cliequeu a \"Deixa aquesta pàgina\" per descartar tots els canvis no desats.", + "PE.Controllers.Main.leavePageTextOnClose": "Es perdran tots els canvis d'aquesta presentació que no s'hagin desat.
Cliqueu a «Cancel·la» i després a «Desa» per desar-los. Cliqueu a \"D'acord\" per descartar tots els canvis no desats.", + "PE.Controllers.Main.loadFontsTextText": "S'estant carregant les dades...", + "PE.Controllers.Main.loadFontsTitleText": "S'estan carregant les dades", + "PE.Controllers.Main.loadFontTextText": "S'estant carregant les dades...", + "PE.Controllers.Main.loadFontTitleText": "S'estan carregant les dades", + "PE.Controllers.Main.loadImagesTextText": "S'estan carregant les imatges...", + "PE.Controllers.Main.loadImagesTitleText": "S'estan carregant les imatges", + "PE.Controllers.Main.loadImageTextText": "S'està carregant la imatge...", + "PE.Controllers.Main.loadImageTitleText": "S'està carregant la imatge", + "PE.Controllers.Main.loadingDocumentTextText": "S'està carregant la presentació...", + "PE.Controllers.Main.loadingDocumentTitleText": "S'està carregant la presentació", + "PE.Controllers.Main.loadThemeTextText": "S'està carregant el tema...", + "PE.Controllers.Main.loadThemeTitleText": "S'està carregant el tema", + "PE.Controllers.Main.notcriticalErrorTitle": "Advertiment", "PE.Controllers.Main.openErrorText": "S'ha produït un error en obrir el fitxer.", - "PE.Controllers.Main.openTextText": "Obrint Presentació...", - "PE.Controllers.Main.openTitleText": "Obrint Presentació", - "PE.Controllers.Main.printTextText": "Imprimint presentació...", - "PE.Controllers.Main.printTitleText": "Imprimint Presentació", - "PE.Controllers.Main.reloadButtonText": "Recarregar Pàgina", - "PE.Controllers.Main.requestEditFailedMessageText": "Algú està editant aquesta presentació ara mateix. Si us plau, intenta-ho més tard.", + "PE.Controllers.Main.openTextText": "S'està obrint la presentació...", + "PE.Controllers.Main.openTitleText": "S'està obrint la presentació", + "PE.Controllers.Main.printTextText": "S'està imprimint la presentació...", + "PE.Controllers.Main.printTitleText": "S'està imprimint la presentació", + "PE.Controllers.Main.reloadButtonText": "Recarrega la pàgina", + "PE.Controllers.Main.requestEditFailedMessageText": "Algú altre edita ara la presentació. Intenta-ho més tard.", "PE.Controllers.Main.requestEditFailedTitleText": "Accés denegat", "PE.Controllers.Main.saveErrorText": "S'ha produït un error en desar el fitxer.", - "PE.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.", - "PE.Controllers.Main.savePreparingText": "Preparant per guardar", - "PE.Controllers.Main.savePreparingTitle": "Preparant per guardar. Si us plau, esperi", - "PE.Controllers.Main.saveTextText": "Guardant presentació...", - "PE.Controllers.Main.saveTitleText": "Guardant Presentació", + "PE.Controllers.Main.saveErrorTextDesktop": "Aquest fitxer no es pot desar o crear.
Les possibles raons són:
1. El fitxer és només de lectura.
2. El fitxer és en aquests moments obert per altres usuaris.
3. El disc és ple o s'ha fet malbé.", + "PE.Controllers.Main.savePreparingText": "S'està preparant per desar", + "PE.Controllers.Main.savePreparingTitle": "S'està preparant per desar. Espereu...", + "PE.Controllers.Main.saveTextText": "S'està desant la presentació...", + "PE.Controllers.Main.saveTitleText": "S'està desant la presentació", "PE.Controllers.Main.scriptLoadError": "La connexió és massa lenta, alguns dels components no s’han pogut carregar. Torneu a carregar la pàgina.", "PE.Controllers.Main.splitDividerErrorText": "El nombre de files ha de ser un divisor de %1.", "PE.Controllers.Main.splitMaxColsErrorText": "El nombre de columnes ha de ser inferior a %1.", "PE.Controllers.Main.splitMaxRowsErrorText": "El nombre de files ha de ser inferior a %1.", "PE.Controllers.Main.textAnonymous": "Anònim", - "PE.Controllers.Main.textBuyNow": "Visita el Lloc Web", - "PE.Controllers.Main.textChangesSaved": "Tots els canvis guardats", - "PE.Controllers.Main.textClose": "Tancar", - "PE.Controllers.Main.textCloseTip": "Clicar per tancar el consell", - "PE.Controllers.Main.textContactUs": "Equip de Vendes", - "PE.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.", + "PE.Controllers.Main.textBuyNow": "Visita el lloc web", + "PE.Controllers.Main.textChangesSaved": "S'han desat tots els canvis", + "PE.Controllers.Main.textClose": "Tanca", + "PE.Controllers.Main.textCloseTip": "Cliqueu per tancar el consell", + "PE.Controllers.Main.textContactUs": "Contacta amb vendes", + "PE.Controllers.Main.textCustomLoader": "Tingueu en compte que, segons els termes de la llicència, no teniu dret a canviar el carregador.
Contacteu amb el nostre departament de vendes per obtenir un pressupost.", "PE.Controllers.Main.textGuest": "Convidat", - "PE.Controllers.Main.textHasMacros": "El fitxer conté macros automàtiques.
Voleu executar macros?", - "PE.Controllers.Main.textLoadingDocument": "Carregant presentació", - "PE.Controllers.Main.textLongName": "Introduïu un nom de menys de 128 caràcters.", - "PE.Controllers.Main.textNoLicenseTitle": "Heu arribat al límit de la llicència", + "PE.Controllers.Main.textHasMacros": "El fitxer conté macros automàtiques.
Voleu executar les macros?", + "PE.Controllers.Main.textLoadingDocument": "S'està carregant la presentació", + "PE.Controllers.Main.textLongName": "Introdueix un nom que tingui menys de 128 caràcters.", + "PE.Controllers.Main.textNoLicenseTitle": "S'ha assolit el límit de llicència", "PE.Controllers.Main.textPaidFeature": "Funció de pagament", - "PE.Controllers.Main.textRemember": "Recordar la meva elecció per a tots els fitxers", - "PE.Controllers.Main.textRenameError": "El nom d'usuari no pot estar buit.", - "PE.Controllers.Main.textRenameLabel": "Introduïu un nom per a la col·laboració", + "PE.Controllers.Main.textRemember": "Recorda la meva elecció per a tots els fitxers", + "PE.Controllers.Main.textRenameError": "El nom d'usuari no pot estar en blanc.", + "PE.Controllers.Main.textRenameLabel": "Introdueix un nom que s'utilitzarà per a la col·laboració", "PE.Controllers.Main.textShape": "Forma", "PE.Controllers.Main.textStrict": "Mode estricte", - "PE.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.", - "PE.Controllers.Main.textTryUndoRedoWarn": "Les funcions Desfer/Refer estan desactivades per al mode de coedició ràpida.", - "PE.Controllers.Main.titleLicenseExp": "Llicència Caducada", + "PE.Controllers.Main.textTryUndoRedo": "S'han desactivat les funcions Desfer/Refer per al mode de coedició ràpida. Cliqueu al botó \"Mode estricte\" per canviar al mode de coedició estricte i editar el fitxer sense que hi hagi interferències d'altres usuaris i enviar els vostres canvis un cop els hagueu desat. Podeu canviar entre els modes de coedició mitjançant l'editor \"Paràmetres avançats\".", + "PE.Controllers.Main.textTryUndoRedoWarn": "S'han desactivat les funcions Desfer/Refer per al mode de coedició ràpida.", + "PE.Controllers.Main.titleLicenseExp": "La llicència ha caducat", "PE.Controllers.Main.titleServerVersion": "S'ha actualitzat l'editor", - "PE.Controllers.Main.txtAddFirstSlide": "Cliqui per a afegir la primera diapositiva", - "PE.Controllers.Main.txtAddNotes": "Faci clic per afegir notes", - "PE.Controllers.Main.txtArt": "El seu text aquí", - "PE.Controllers.Main.txtBasicShapes": "Formes Bàsiques", + "PE.Controllers.Main.txtAddFirstSlide": "Cliqueu per a afegir la primera diapositiva", + "PE.Controllers.Main.txtAddNotes": "Cliqueu per afegir notes", + "PE.Controllers.Main.txtArt": "El vostre text aquí", + "PE.Controllers.Main.txtBasicShapes": "Formes bàsiques", "PE.Controllers.Main.txtButtons": "Botons", "PE.Controllers.Main.txtCallouts": "Crides", - "PE.Controllers.Main.txtCharts": "Diagramas", - "PE.Controllers.Main.txtClipArt": "Imatges Predissenyades", + "PE.Controllers.Main.txtCharts": "Gràfics", + "PE.Controllers.Main.txtClipArt": "Galeria d'imatges", "PE.Controllers.Main.txtDateTime": "Data i hora", - "PE.Controllers.Main.txtDiagram": "Imatge preconfigurada", - "PE.Controllers.Main.txtDiagramTitle": "Títol del Diagrama", - "PE.Controllers.Main.txtEditingMode": "Establir el mode d'edició ...", - "PE.Controllers.Main.txtErrorLoadHistory": "Ha fallat la càrrega de l'historial", - "PE.Controllers.Main.txtFiguredArrows": "Fletxes Figurades", + "PE.Controllers.Main.txtDiagram": "SmartArt", + "PE.Controllers.Main.txtDiagramTitle": "Títol del gràfic", + "PE.Controllers.Main.txtEditingMode": "Estableix el mode d'edició ...", + "PE.Controllers.Main.txtErrorLoadHistory": "L'historial no s'ha pogut carregar", + "PE.Controllers.Main.txtFiguredArrows": "Fletxes de figures", "PE.Controllers.Main.txtFooter": "Peu de pàgina", "PE.Controllers.Main.txtHeader": "Capçalera", "PE.Controllers.Main.txtImage": "Imatge", "PE.Controllers.Main.txtLines": "Línies", - "PE.Controllers.Main.txtLoading": "Carregant...", + "PE.Controllers.Main.txtLoading": "S'està carregant...", "PE.Controllers.Main.txtMath": "Matemàtiques", - "PE.Controllers.Main.txtMedia": "Medis", - "PE.Controllers.Main.txtNeedSynchronize": "Teniu actualitzacions", - "PE.Controllers.Main.txtNone": "cap", + "PE.Controllers.Main.txtMedia": "Multimèdia", + "PE.Controllers.Main.txtNeedSynchronize": "Tens actualitzacions", + "PE.Controllers.Main.txtNone": "Cap", "PE.Controllers.Main.txtPicture": "Imatge", "PE.Controllers.Main.txtRectangles": "Rectangles", "PE.Controllers.Main.txtSeries": "Series", - "PE.Controllers.Main.txtShape_accentBorderCallout1": "Trucada amb línia 1 (vora i barra d'èmfasis)", - "PE.Controllers.Main.txtShape_accentBorderCallout2": "Trucada amb línia 2 (vora i barra d'èmfasis)", - "PE.Controllers.Main.txtShape_accentBorderCallout3": "Trucada amb línia 3 (vora i barra d'èmfasis)", - "PE.Controllers.Main.txtShape_accentCallout1": "Trucada amb línia 1 (barra d'èmfasis)", - "PE.Controllers.Main.txtShape_accentCallout2": "Trucada amb línia 2 (barra d'èmfasis)", - "PE.Controllers.Main.txtShape_accentCallout3": "Trucada amb línia 3 (barra d'èmfasis)", - "PE.Controllers.Main.txtShape_actionButtonBackPrevious": "Enrere o Botó Anterior", - "PE.Controllers.Main.txtShape_actionButtonBeginning": "Botó d’Inici", + "PE.Controllers.Main.txtShape_accentBorderCallout1": "Crida amb línia 1 (vora i barra d'èmfasi)", + "PE.Controllers.Main.txtShape_accentBorderCallout2": "Crida amb línia 2 (vora i barra d'èmfasi)", + "PE.Controllers.Main.txtShape_accentBorderCallout3": "Crida amb línia 3 (vora i barra d'èmfasi)", + "PE.Controllers.Main.txtShape_accentCallout1": "Crida amb línia 1 (barra d'èmfasi)", + "PE.Controllers.Main.txtShape_accentCallout2": "Crida amb línia 2 (barra d'èmfasi)", + "PE.Controllers.Main.txtShape_accentCallout3": "Crida amb línia 3 (barra d'èmfasi)", + "PE.Controllers.Main.txtShape_actionButtonBackPrevious": "Enrere o botó anterior", + "PE.Controllers.Main.txtShape_actionButtonBeginning": "Botó d’inici", "PE.Controllers.Main.txtShape_actionButtonBlank": "Botó en blanc", - "PE.Controllers.Main.txtShape_actionButtonDocument": "Botó de Document", + "PE.Controllers.Main.txtShape_actionButtonDocument": "Botó de document", "PE.Controllers.Main.txtShape_actionButtonEnd": "Botó final", - "PE.Controllers.Main.txtShape_actionButtonForwardNext": "Botó Endavant o Següent", - "PE.Controllers.Main.txtShape_actionButtonHelp": "Botó Ajuda", - "PE.Controllers.Main.txtShape_actionButtonHome": "Botó Inici", - "PE.Controllers.Main.txtShape_actionButtonInformation": "Botó Informació", - "PE.Controllers.Main.txtShape_actionButtonMovie": "Botó Vídeo", - "PE.Controllers.Main.txtShape_actionButtonReturn": "Botó de Retorn", - "PE.Controllers.Main.txtShape_actionButtonSound": "Botó de So", + "PE.Controllers.Main.txtShape_actionButtonForwardNext": "Botó endavant o següent", + "PE.Controllers.Main.txtShape_actionButtonHelp": "Botó d'ajuda", + "PE.Controllers.Main.txtShape_actionButtonHome": "Botó inici", + "PE.Controllers.Main.txtShape_actionButtonInformation": "Botó d'informació", + "PE.Controllers.Main.txtShape_actionButtonMovie": "Botó de vídeo", + "PE.Controllers.Main.txtShape_actionButtonReturn": "Botó de retorn", + "PE.Controllers.Main.txtShape_actionButtonSound": "Botó de so", "PE.Controllers.Main.txtShape_arc": "Arc", - "PE.Controllers.Main.txtShape_bentArrow": "Fletxa Doblada", - "PE.Controllers.Main.txtShape_bentConnector5": "Connector del colze", - "PE.Controllers.Main.txtShape_bentConnector5WithArrow": "Connector de fletxa del colze", - "PE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Connector de doble fletxa del colze", - "PE.Controllers.Main.txtShape_bentUpArrow": "Fletxa Cap Amunt", + "PE.Controllers.Main.txtShape_bentArrow": "Fletxa doblegada", + "PE.Controllers.Main.txtShape_bentConnector5": "Connector angular", + "PE.Controllers.Main.txtShape_bentConnector5WithArrow": "Connector angular de fletxa", + "PE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Connector angular de doble fletxa", + "PE.Controllers.Main.txtShape_bentUpArrow": "Fletxa doblegada cap amunt", "PE.Controllers.Main.txtShape_bevel": "Bisell", "PE.Controllers.Main.txtShape_blockArc": "Arc de bloc", - "PE.Controllers.Main.txtShape_borderCallout1": "Trucada amb línia 1", - "PE.Controllers.Main.txtShape_borderCallout2": "Trucada amb línia 2", - "PE.Controllers.Main.txtShape_borderCallout3": "Trucada amb línia 3", - "PE.Controllers.Main.txtShape_bracePair": "Claus", - "PE.Controllers.Main.txtShape_callout1": "Trucada amb línia 1 (sense vora)", - "PE.Controllers.Main.txtShape_callout2": "Trucada amb línia 2 (sense vora)", - "PE.Controllers.Main.txtShape_callout3": "Trucada amb línia 3 (sense vora)", + "PE.Controllers.Main.txtShape_borderCallout1": "Crida amb línia 1", + "PE.Controllers.Main.txtShape_borderCallout2": "Crida amb línia 2", + "PE.Controllers.Main.txtShape_borderCallout3": "Crida amb línia 3", + "PE.Controllers.Main.txtShape_bracePair": "Clau doble", + "PE.Controllers.Main.txtShape_callout1": "Crida amb línia 1 (sense vora)", + "PE.Controllers.Main.txtShape_callout2": "Crida amb línia 2 (sense vora)", + "PE.Controllers.Main.txtShape_callout3": "Crida amb línia 3 (sense vora)", "PE.Controllers.Main.txtShape_can": "Cilindre", - "PE.Controllers.Main.txtShape_chevron": "Chevron", - "PE.Controllers.Main.txtShape_chord": "Acord", - "PE.Controllers.Main.txtShape_circularArrow": "Fletxa Circular", + "PE.Controllers.Main.txtShape_chevron": "Cometes angulars", + "PE.Controllers.Main.txtShape_chord": "Corda", + "PE.Controllers.Main.txtShape_circularArrow": "Fletxa circular", "PE.Controllers.Main.txtShape_cloud": "Núvol", - "PE.Controllers.Main.txtShape_cloudCallout": "Crida de Núvol", + "PE.Controllers.Main.txtShape_cloudCallout": "Crida de núvol", "PE.Controllers.Main.txtShape_corner": "Cantonada", "PE.Controllers.Main.txtShape_cube": "Cub", "PE.Controllers.Main.txtShape_curvedConnector3": "Connector corbat", - "PE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Conector de fletxa corba", - "PE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Connector de doble fletxa corbat", - "PE.Controllers.Main.txtShape_curvedDownArrow": "Fletxa corba cap avall", - "PE.Controllers.Main.txtShape_curvedLeftArrow": "Fletxa esquerra corba", - "PE.Controllers.Main.txtShape_curvedRightArrow": "Fletxa dreta corba", - "PE.Controllers.Main.txtShape_curvedUpArrow": "Fletxa corba cap amunt", + "PE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Connector de fletxa corba", + "PE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Connector de doble fletxa corbada", + "PE.Controllers.Main.txtShape_curvedDownArrow": "Fletxa cap avall corbada", + "PE.Controllers.Main.txtShape_curvedLeftArrow": "Fletxa esquerra corbada", + "PE.Controllers.Main.txtShape_curvedRightArrow": "Fletxa dreta corbada", + "PE.Controllers.Main.txtShape_curvedUpArrow": "Fletxa corbada cap amunt", "PE.Controllers.Main.txtShape_decagon": "Decàgon", - "PE.Controllers.Main.txtShape_diagStripe": "Banda Diagonal", + "PE.Controllers.Main.txtShape_diagStripe": "Banda diagonal", "PE.Controllers.Main.txtShape_diamond": "Diamant", "PE.Controllers.Main.txtShape_dodecagon": "Dodecàgon", - "PE.Controllers.Main.txtShape_donut": "Anell", - "PE.Controllers.Main.txtShape_doubleWave": "Doble Ona", - "PE.Controllers.Main.txtShape_downArrow": "Fletxa Cap Avall", - "PE.Controllers.Main.txtShape_downArrowCallout": "Trucada de Fletxa Avall", + "PE.Controllers.Main.txtShape_donut": "Anella", + "PE.Controllers.Main.txtShape_doubleWave": "Ona doble", + "PE.Controllers.Main.txtShape_downArrow": "Fletxa cap avall", + "PE.Controllers.Main.txtShape_downArrowCallout": "Crida de fletxa cap avall", "PE.Controllers.Main.txtShape_ellipse": "El·lipse", "PE.Controllers.Main.txtShape_ellipseRibbon": "Cinta cap avall corbada", - "PE.Controllers.Main.txtShape_ellipseRibbon2": "Cinta corbada", - "PE.Controllers.Main.txtShape_flowChartAlternateProcess": "Diagrama de Flux: Procés Alternatiu", - "PE.Controllers.Main.txtShape_flowChartCollate": "Diagrama de Flux: Collar", - "PE.Controllers.Main.txtShape_flowChartConnector": "Diagrama de Flux: Connector", - "PE.Controllers.Main.txtShape_flowChartDecision": "Diagrama de Flux: Decisió", - "PE.Controllers.Main.txtShape_flowChartDelay": "Diagrama de Flux: Retard", - "PE.Controllers.Main.txtShape_flowChartDisplay": "Diagrama de Flux: Visualització", - "PE.Controllers.Main.txtShape_flowChartDocument": "Diagrama de Flux: Document", - "PE.Controllers.Main.txtShape_flowChartExtract": "Diagrama de Flux: Extracte", - "PE.Controllers.Main.txtShape_flowChartInputOutput": "Diagrama de Flux: Dades", - "PE.Controllers.Main.txtShape_flowChartInternalStorage": "Diagrama de Flux: Magatzem Intern", - "PE.Controllers.Main.txtShape_flowChartMagneticDisk": "Diagrama de Flux: Disc Magnètic", - "PE.Controllers.Main.txtShape_flowChartMagneticDrum": "Diagrama de Flux: Accés Directe", - "PE.Controllers.Main.txtShape_flowChartMagneticTape": "Diagrama de Flux: Seqüencial", - "PE.Controllers.Main.txtShape_flowChartManualInput": "Diagrama de Flux: Entrada Manual", - "PE.Controllers.Main.txtShape_flowChartManualOperation": "Diagrama de Flux: Manual", - "PE.Controllers.Main.txtShape_flowChartMerge": "Diagrama de Flux: Combinar", - "PE.Controllers.Main.txtShape_flowChartMultidocument": "Diagrama de Flux: Multi Document", - "PE.Controllers.Main.txtShape_flowChartOffpageConnector": "Diagrama de flux: Connector Fora de Pàgina", - "PE.Controllers.Main.txtShape_flowChartOnlineStorage": "Diagrama de Flux: Dades Emmagatzemades", - "PE.Controllers.Main.txtShape_flowChartOr": "Diagrama de Flux: O", - "PE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Diagrama de flux: Procés Predefinit", - "PE.Controllers.Main.txtShape_flowChartPreparation": "Diagrama de Flux: Preparació", - "PE.Controllers.Main.txtShape_flowChartProcess": "Diagrama de Flux: Procés", - "PE.Controllers.Main.txtShape_flowChartPunchedCard": "Diagrama de Flux: Fitxa", - "PE.Controllers.Main.txtShape_flowChartPunchedTape": "Diagrama de Flux: Cinta Punxada", - "PE.Controllers.Main.txtShape_flowChartSort": "Diagrama de Flux: Ordena", - "PE.Controllers.Main.txtShape_flowChartSummingJunction": "Diagrama de Flux: Resum i Unió", - "PE.Controllers.Main.txtShape_flowChartTerminator": "Diagrama de Flux: Finalització", - "PE.Controllers.Main.txtShape_foldedCorner": "Carpeta Plegada", + "PE.Controllers.Main.txtShape_ellipseRibbon2": "Cinta corbada cap amunt", + "PE.Controllers.Main.txtShape_flowChartAlternateProcess": "Diagrama de flux: procés alternatiu", + "PE.Controllers.Main.txtShape_flowChartCollate": "Diagrama de flux: intercala", + "PE.Controllers.Main.txtShape_flowChartConnector": "Diagrama de flux: connector", + "PE.Controllers.Main.txtShape_flowChartDecision": "Diagrama de flux: decisió", + "PE.Controllers.Main.txtShape_flowChartDelay": "Diagrama de flux: retard", + "PE.Controllers.Main.txtShape_flowChartDisplay": "Diagrama de flux: visualització", + "PE.Controllers.Main.txtShape_flowChartDocument": "Diagrama de flux: document", + "PE.Controllers.Main.txtShape_flowChartExtract": "Diagrama de flux: extracte", + "PE.Controllers.Main.txtShape_flowChartInputOutput": "Diagrama de flux: dades", + "PE.Controllers.Main.txtShape_flowChartInternalStorage": "Diagrama de flux: emmagatzematge intern", + "PE.Controllers.Main.txtShape_flowChartMagneticDisk": "Diagrama de flux: disc magnètic", + "PE.Controllers.Main.txtShape_flowChartMagneticDrum": "Diagrama de flux: emmagatzematge d'accés directe", + "PE.Controllers.Main.txtShape_flowChartMagneticTape": "Diagrama de flux: emmagatzematge d'accés seqüencial", + "PE.Controllers.Main.txtShape_flowChartManualInput": "Diagrama de flux: entrada manual", + "PE.Controllers.Main.txtShape_flowChartManualOperation": "Diagrama de flux: operació manual", + "PE.Controllers.Main.txtShape_flowChartMerge": "Diagrama de flux: combina", + "PE.Controllers.Main.txtShape_flowChartMultidocument": "Diagrama de flux: document múltiple", + "PE.Controllers.Main.txtShape_flowChartOffpageConnector": "Diagrama de flux: connector fora de pàgina", + "PE.Controllers.Main.txtShape_flowChartOnlineStorage": "Diagrama de flux: dades emmagatzemades", + "PE.Controllers.Main.txtShape_flowChartOr": "Diagrama de flux: o", + "PE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Diagrama de flux: procés predefinit", + "PE.Controllers.Main.txtShape_flowChartPreparation": "Diagrama de flux: preparació", + "PE.Controllers.Main.txtShape_flowChartProcess": "Diagrama de flux: procés", + "PE.Controllers.Main.txtShape_flowChartPunchedCard": "Diagrama de flux: fitxa", + "PE.Controllers.Main.txtShape_flowChartPunchedTape": "Diagrama de flux: cinta perforada", + "PE.Controllers.Main.txtShape_flowChartSort": "Diagrama de flux: ordenació", + "PE.Controllers.Main.txtShape_flowChartSummingJunction": "Diagrama de flux: Y", + "PE.Controllers.Main.txtShape_flowChartTerminator": "Diagrama de flux: finalitzador", + "PE.Controllers.Main.txtShape_foldedCorner": "Cantonada plegada", "PE.Controllers.Main.txtShape_frame": "Marc", - "PE.Controllers.Main.txtShape_halfFrame": "Mig Marg", + "PE.Controllers.Main.txtShape_halfFrame": "Mig marc", "PE.Controllers.Main.txtShape_heart": "Cor", "PE.Controllers.Main.txtShape_heptagon": "Heptàgon", "PE.Controllers.Main.txtShape_hexagon": "Hexàgon", @@ -588,284 +588,284 @@ "PE.Controllers.Main.txtShape_irregularSeal1": "Explosió 1", "PE.Controllers.Main.txtShape_irregularSeal2": "Explosió 2", "PE.Controllers.Main.txtShape_leftArrow": "Fletxa esquerra", - "PE.Controllers.Main.txtShape_leftArrowCallout": "Trucada de fletxa a l'esquerra", - "PE.Controllers.Main.txtShape_leftBrace": "Obrir clau", - "PE.Controllers.Main.txtShape_leftBracket": "Obrir claudàtor", + "PE.Controllers.Main.txtShape_leftArrowCallout": "Crida de fletxa a l'esquerra", + "PE.Controllers.Main.txtShape_leftBrace": "Clau d'obertura", + "PE.Controllers.Main.txtShape_leftBracket": "Claudàtor d'obertura", "PE.Controllers.Main.txtShape_leftRightArrow": "Fletxa esquerra i dreta", - "PE.Controllers.Main.txtShape_leftRightArrowCallout": "Fletxa esquerra i dreta", - "PE.Controllers.Main.txtShape_leftRightUpArrow": "Fletxa esquerra, dreta i a dalt", - "PE.Controllers.Main.txtShape_leftUpArrow": "Fletxa esquerra i a dalt", - "PE.Controllers.Main.txtShape_lightningBolt": "Llamp", + "PE.Controllers.Main.txtShape_leftRightArrowCallout": "Crida fletxa esquerra i dreta", + "PE.Controllers.Main.txtShape_leftRightUpArrow": "Fletxa esquerra, dreta i cap amunt", + "PE.Controllers.Main.txtShape_leftUpArrow": "Fletxa esquerra i cap amunt", + "PE.Controllers.Main.txtShape_lightningBolt": "Llampec", "PE.Controllers.Main.txtShape_line": "Línia", "PE.Controllers.Main.txtShape_lineWithArrow": "Fletxa", - "PE.Controllers.Main.txtShape_lineWithTwoArrows": "Fletxa Doble", + "PE.Controllers.Main.txtShape_lineWithTwoArrows": "Fletxa doble", "PE.Controllers.Main.txtShape_mathDivide": "Divisió", "PE.Controllers.Main.txtShape_mathEqual": "Igual", "PE.Controllers.Main.txtShape_mathMinus": "Menys", "PE.Controllers.Main.txtShape_mathMultiply": "Multiplicar", - "PE.Controllers.Main.txtShape_mathNotEqual": "No igual", + "PE.Controllers.Main.txtShape_mathNotEqual": "No és igual", "PE.Controllers.Main.txtShape_mathPlus": "Més", "PE.Controllers.Main.txtShape_moon": "Lluna", "PE.Controllers.Main.txtShape_noSmoking": "Símbol \"No\"", - "PE.Controllers.Main.txtShape_notchedRightArrow": "Fletxa a la dreta encaixada", - "PE.Controllers.Main.txtShape_octagon": "Octagon", - "PE.Controllers.Main.txtShape_parallelogram": "Paral·lelograma", + "PE.Controllers.Main.txtShape_notchedRightArrow": "Fletxa a la dreta oscada", + "PE.Controllers.Main.txtShape_octagon": "Octàgon", + "PE.Controllers.Main.txtShape_parallelogram": "Paral·lelogram", "PE.Controllers.Main.txtShape_pentagon": "Pentàgon", - "PE.Controllers.Main.txtShape_pie": "Sector del cercle", - "PE.Controllers.Main.txtShape_plaque": "Firmar", + "PE.Controllers.Main.txtShape_pie": "Circular", + "PE.Controllers.Main.txtShape_plaque": "Signa", "PE.Controllers.Main.txtShape_plus": "Més", "PE.Controllers.Main.txtShape_polyline1": "Gargot", "PE.Controllers.Main.txtShape_polyline2": "Forma lliure", - "PE.Controllers.Main.txtShape_quadArrow": "Fletxa Quàdruple", - "PE.Controllers.Main.txtShape_quadArrowCallout": "Trucada de Fletxa Quàdruple", + "PE.Controllers.Main.txtShape_quadArrow": "Fletxa quàdruple", + "PE.Controllers.Main.txtShape_quadArrowCallout": "Crida de fletxa quàdruple", "PE.Controllers.Main.txtShape_rect": "Rectangle", - "PE.Controllers.Main.txtShape_ribbon": "Cinta Avall", + "PE.Controllers.Main.txtShape_ribbon": "Cinta cap avall", "PE.Controllers.Main.txtShape_ribbon2": "Cinta cap amunt", - "PE.Controllers.Main.txtShape_rightArrow": "Fletxa Dreta", - "PE.Controllers.Main.txtShape_rightArrowCallout": "Trucada de Fletxa a la Dreta", - "PE.Controllers.Main.txtShape_rightBrace": "Tancar Clau", - "PE.Controllers.Main.txtShape_rightBracket": "Tancar Claudàtor", - "PE.Controllers.Main.txtShape_round1Rect": "Rectangle de cantonada rodona", - "PE.Controllers.Main.txtShape_round2DiagRect": "Rectangle cantoner en diagonal rodó", - "PE.Controllers.Main.txtShape_round2SameRect": "Rectangle cantoner del mateix costat", - "PE.Controllers.Main.txtShape_roundRect": "Rectangle cantoner rodó", - "PE.Controllers.Main.txtShape_rtTriangle": "Triangle Rectangle", - "PE.Controllers.Main.txtShape_smileyFace": "Cara Somrient", - "PE.Controllers.Main.txtShape_snip1Rect": "Retallar rectangle de cantonada senzilla", - "PE.Controllers.Main.txtShape_snip2DiagRect": "Retallar rectangle de cantonada diagonal", - "PE.Controllers.Main.txtShape_snip2SameRect": "Retallar Rectangle de la cantonada del mateix costat", - "PE.Controllers.Main.txtShape_snipRoundRect": "Retallar i rondejar rectangle de cantonada senzilla", + "PE.Controllers.Main.txtShape_rightArrow": "Fletxa dreta", + "PE.Controllers.Main.txtShape_rightArrowCallout": "Crida de fletxa dreta", + "PE.Controllers.Main.txtShape_rightBrace": "Clau de tancament", + "PE.Controllers.Main.txtShape_rightBracket": "Claudàtor de tancament", + "PE.Controllers.Main.txtShape_round1Rect": "Rectangle de cantonada única rodona", + "PE.Controllers.Main.txtShape_round2DiagRect": "Rectangle de cantonada diagonal rodona", + "PE.Controllers.Main.txtShape_round2SameRect": "Rectangle de cantonada lateral igual rodona", + "PE.Controllers.Main.txtShape_roundRect": "Rectangle de cantonada arrodonida", + "PE.Controllers.Main.txtShape_rtTriangle": "Triangle rectangle", + "PE.Controllers.Main.txtShape_smileyFace": "Cara somrient", + "PE.Controllers.Main.txtShape_snip1Rect": "Rectangle de cantonada única retallada", + "PE.Controllers.Main.txtShape_snip2DiagRect": "Rectangle de cantonada diagonal retallada", + "PE.Controllers.Main.txtShape_snip2SameRect": "Rectangle de cantonada retallada del mateix costat", + "PE.Controllers.Main.txtShape_snipRoundRect": "Rectangle amb cantonades rodones i retallades", "PE.Controllers.Main.txtShape_spline": "Corba", - "PE.Controllers.Main.txtShape_star10": "10-Punt Principal", - "PE.Controllers.Main.txtShape_star12": "12-Punt Principal", - "PE.Controllers.Main.txtShape_star16": "16-Punt Principal", - "PE.Controllers.Main.txtShape_star24": "24-Punt Principal", - "PE.Controllers.Main.txtShape_star32": "32-Punt Principal", - "PE.Controllers.Main.txtShape_star4": "4-Punt Principal", - "PE.Controllers.Main.txtShape_star5": "5-Punt Principal", - "PE.Controllers.Main.txtShape_star6": "6-Punt Principal", - "PE.Controllers.Main.txtShape_star7": "7-Punt Principal", - "PE.Controllers.Main.txtShape_star8": "8-Punt Principal", + "PE.Controllers.Main.txtShape_star10": "Estrella de 10 puntes", + "PE.Controllers.Main.txtShape_star12": "Estrella de 12 puntes", + "PE.Controllers.Main.txtShape_star16": "Estrella de 16 puntes", + "PE.Controllers.Main.txtShape_star24": "Estrella de 24 puntes", + "PE.Controllers.Main.txtShape_star32": "Estrella de 32 puntes", + "PE.Controllers.Main.txtShape_star4": "Estrella de 4 puntes", + "PE.Controllers.Main.txtShape_star5": "Estrella de 5 puntes", + "PE.Controllers.Main.txtShape_star6": "Estrella de 6 puntes", + "PE.Controllers.Main.txtShape_star7": "Estrella de 7 puntes", + "PE.Controllers.Main.txtShape_star8": "Estrella de 8 puntes", "PE.Controllers.Main.txtShape_stripedRightArrow": "Fletxa a la dreta amb bandes", - "PE.Controllers.Main.txtShape_sun": "Diu", + "PE.Controllers.Main.txtShape_sun": "dg.", "PE.Controllers.Main.txtShape_teardrop": "Llàgrima", - "PE.Controllers.Main.txtShape_textRect": "Quadre de Text", + "PE.Controllers.Main.txtShape_textRect": "Quadre de text", "PE.Controllers.Main.txtShape_trapezoid": "Trapezi", "PE.Controllers.Main.txtShape_triangle": "Triangle", "PE.Controllers.Main.txtShape_upArrow": "Fletxa amunt", - "PE.Controllers.Main.txtShape_upArrowCallout": "Trucada de fletxa cap amunt", - "PE.Controllers.Main.txtShape_upDownArrow": "Fletxa cap amunt i abaix", + "PE.Controllers.Main.txtShape_upArrowCallout": "Crida de fletxa amunt", + "PE.Controllers.Main.txtShape_upDownArrow": "Fletxa cap amunt i cap avall", "PE.Controllers.Main.txtShape_uturnArrow": "Fletxa en U", - "PE.Controllers.Main.txtShape_verticalScroll": "Desplaçament Vertical", + "PE.Controllers.Main.txtShape_verticalScroll": "Desplaçament vertical", "PE.Controllers.Main.txtShape_wave": "Ona", "PE.Controllers.Main.txtShape_wedgeEllipseCallout": "Trucada ovalada", - "PE.Controllers.Main.txtShape_wedgeRectCallout": "Trucada rectangular", - "PE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Llibre rectangular de punt rodó", + "PE.Controllers.Main.txtShape_wedgeRectCallout": "Crida rectangular", + "PE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Crida rectangular arrodonida", "PE.Controllers.Main.txtSldLtTBlank": "En blanc", "PE.Controllers.Main.txtSldLtTChart": "Gràfic", "PE.Controllers.Main.txtSldLtTChartAndTx": "Gràfic i text", - "PE.Controllers.Main.txtSldLtTClipArtAndTx": "Imatge Predissenyada i Tex", - "PE.Controllers.Main.txtSldLtTClipArtAndVertTx": "Imatge PreDissenyada i Text Vertical", + "PE.Controllers.Main.txtSldLtTClipArtAndTx": "Galeria d'imatges i text", + "PE.Controllers.Main.txtSldLtTClipArtAndVertTx": "Galeria d'imatges i text vertical", "PE.Controllers.Main.txtSldLtTCust": "Personalitzat", "PE.Controllers.Main.txtSldLtTDgm": "Diagrama", - "PE.Controllers.Main.txtSldLtTFourObj": "Quatre Objectes", + "PE.Controllers.Main.txtSldLtTFourObj": "Quatre objectes", "PE.Controllers.Main.txtSldLtTMediaAndTx": "Multimèdia i Text", - "PE.Controllers.Main.txtSldLtTObj": "Títol i Objecte", - "PE.Controllers.Main.txtSldLtTObjAndTwoObj": "Objecte i Dos Objectes", - "PE.Controllers.Main.txtSldLtTObjAndTx": "Objecte i Text", + "PE.Controllers.Main.txtSldLtTObj": "Títol i objecte", + "PE.Controllers.Main.txtSldLtTObjAndTwoObj": "Objecte i dos objectes", + "PE.Controllers.Main.txtSldLtTObjAndTx": "Objecte i text", "PE.Controllers.Main.txtSldLtTObjOnly": "Objecte", - "PE.Controllers.Main.txtSldLtTObjOverTx": "Objecte damunt Text", - "PE.Controllers.Main.txtSldLtTObjTx": "Títol, Objecte, i Subtítol", - "PE.Controllers.Main.txtSldLtTPicTx": "Imatge i Llegenda", - "PE.Controllers.Main.txtSldLtTSecHead": "Secció Capçalera", + "PE.Controllers.Main.txtSldLtTObjOverTx": "Objecte sobre text", + "PE.Controllers.Main.txtSldLtTObjTx": "Títol, objecte, i llegenda", + "PE.Controllers.Main.txtSldLtTPicTx": "Imatge i llegenda", + "PE.Controllers.Main.txtSldLtTSecHead": "Capçalera de la secció", "PE.Controllers.Main.txtSldLtTTbl": "Taula", "PE.Controllers.Main.txtSldLtTTitle": "Títol", - "PE.Controllers.Main.txtSldLtTTitleOnly": "Només Títol", + "PE.Controllers.Main.txtSldLtTTitleOnly": "Només títol", "PE.Controllers.Main.txtSldLtTTwoColTx": "Text de dues columnes", - "PE.Controllers.Main.txtSldLtTTwoObj": "Dos Objectes", - "PE.Controllers.Main.txtSldLtTTwoObjAndObj": "Dos Objectes i Objecte", - "PE.Controllers.Main.txtSldLtTTwoObjAndTx": "Dos Objectes i Text", - "PE.Controllers.Main.txtSldLtTTwoObjOverTx": "Dos Objectes damunt Text", - "PE.Controllers.Main.txtSldLtTTwoTxTwoObj": "Dos Texts i Dos Objectes", + "PE.Controllers.Main.txtSldLtTTwoObj": "Dos objectes", + "PE.Controllers.Main.txtSldLtTTwoObjAndObj": "Dos objectes i objecte", + "PE.Controllers.Main.txtSldLtTTwoObjAndTx": "Dos objectes i text", + "PE.Controllers.Main.txtSldLtTTwoObjOverTx": "Dos objectes per sobre el text", + "PE.Controllers.Main.txtSldLtTTwoTxTwoObj": "Dos textos i dos objectes", "PE.Controllers.Main.txtSldLtTTx": "Text", - "PE.Controllers.Main.txtSldLtTTxAndChart": "Text i Gràfic", - "PE.Controllers.Main.txtSldLtTTxAndClipArt": "Text i Imatge Preconfigurada", - "PE.Controllers.Main.txtSldLtTTxAndMedia": "Text i Multimèdia", - "PE.Controllers.Main.txtSldLtTTxAndObj": "Text i Objecte", - "PE.Controllers.Main.txtSldLtTTxAndTwoObj": "Text i Dos Objectes", - "PE.Controllers.Main.txtSldLtTTxOverObj": "Text sobre Objecte", - "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Títol Vertical i Text", - "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Títol Vertical i Gràfic sobre Text", - "PE.Controllers.Main.txtSldLtTVertTx": "Text Vertical", - "PE.Controllers.Main.txtSlideNumber": "Número Diapositiva", - "PE.Controllers.Main.txtSlideSubtitle": "Subtítol Diapositiva", - "PE.Controllers.Main.txtSlideText": "Text Diapositiva", - "PE.Controllers.Main.txtSlideTitle": "Títol Diapositiva", - "PE.Controllers.Main.txtStarsRibbons": "Estrelles i Cintes", - "PE.Controllers.Main.txtTheme_basic": "Basic", + "PE.Controllers.Main.txtSldLtTTxAndChart": "Text i gràfic", + "PE.Controllers.Main.txtSldLtTTxAndClipArt": "Text i galeria d'imatges", + "PE.Controllers.Main.txtSldLtTTxAndMedia": "Text i multimèdia", + "PE.Controllers.Main.txtSldLtTTxAndObj": "Text i objecte", + "PE.Controllers.Main.txtSldLtTTxAndTwoObj": "Text i dos objectes", + "PE.Controllers.Main.txtSldLtTTxOverObj": "Text per sobre l'objecte", + "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Títol vertical i text", + "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Títol vertical i text sobre gràfic", + "PE.Controllers.Main.txtSldLtTVertTx": "Text vertical", + "PE.Controllers.Main.txtSlideNumber": "Número de diapositiva", + "PE.Controllers.Main.txtSlideSubtitle": "Subtítol de la diapositiva", + "PE.Controllers.Main.txtSlideText": "Text de la diapositiva", + "PE.Controllers.Main.txtSlideTitle": "Títol de la diapositiva", + "PE.Controllers.Main.txtStarsRibbons": "Estrelles i cintes", + "PE.Controllers.Main.txtTheme_basic": "Bàsic", "PE.Controllers.Main.txtTheme_blank": "En blanc", "PE.Controllers.Main.txtTheme_classic": "Clàssic", "PE.Controllers.Main.txtTheme_corner": "Cantonada", - "PE.Controllers.Main.txtTheme_dotted": "De Punts", + "PE.Controllers.Main.txtTheme_dotted": "De punts", "PE.Controllers.Main.txtTheme_green": "Verd", - "PE.Controllers.Main.txtTheme_green_leaf": "Full Verd", + "PE.Controllers.Main.txtTheme_green_leaf": "Fulla verda", "PE.Controllers.Main.txtTheme_lines": "Línies", - "PE.Controllers.Main.txtTheme_office": "Oficina", - "PE.Controllers.Main.txtTheme_office_theme": "Tema d'Oficina", + "PE.Controllers.Main.txtTheme_office": "Office", + "PE.Controllers.Main.txtTheme_office_theme": "Tema d'oficina", "PE.Controllers.Main.txtTheme_official": "Oficial", "PE.Controllers.Main.txtTheme_pixel": "Píxel", "PE.Controllers.Main.txtTheme_safari": "Safari", "PE.Controllers.Main.txtTheme_turtle": "Tortuga", "PE.Controllers.Main.txtXAxis": "Eix X", "PE.Controllers.Main.txtYAxis": "Eix Y", - "PE.Controllers.Main.unknownErrorText": "Error Desconegut.", + "PE.Controllers.Main.unknownErrorText": "Error desconegut.", "PE.Controllers.Main.unsupportedBrowserErrorText": "El vostre navegador no és compatible.", - "PE.Controllers.Main.uploadImageExtMessage": "Format imatge desconegut.", - "PE.Controllers.Main.uploadImageFileCountMessage": "No hi ha imatges pujades.", + "PE.Controllers.Main.uploadImageExtMessage": "Format d'imatge desconegut.", + "PE.Controllers.Main.uploadImageFileCountMessage": "No s'ha carregat cap imatge.", "PE.Controllers.Main.uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB.", - "PE.Controllers.Main.uploadImageTextText": "Pujant imatge...", - "PE.Controllers.Main.uploadImageTitleText": "Pujant Imatge", - "PE.Controllers.Main.waitText": "Si us plau, esperi...", - "PE.Controllers.Main.warnBrowserIE9": "L’aplicació té baixes capacitats en IE9. Utilitzeu IE10 o superior", - "PE.Controllers.Main.warnBrowserZoom": "La configuració del zoom actual del navegador no és totalment compatible. Restabliu el zoom per defecte prement Ctrl+0.", - "PE.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ó.", - "PE.Controllers.Main.warnLicenseExp": "La seva llicencia ha caducat.
Si us plau, actualitzi la llicencia i recarregui la pàgina.", - "PE.Controllers.Main.warnLicenseLimitedNoAccess": "La llicència ha caducat.
No teniu accés a la funcionalitat d'edició de documents.
Si us plau, contacteu amb l'administrador.", - "PE.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", - "PE.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.", - "PE.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.", - "PE.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.", - "PE.Controllers.Main.warnProcessRightsChange": "Se li ha denegat el dret a editar el fitxer.", + "PE.Controllers.Main.uploadImageTextText": "S'està carregant la imatge...", + "PE.Controllers.Main.uploadImageTitleText": "S'està carregant la imatge", + "PE.Controllers.Main.waitText": "Espereu...", + "PE.Controllers.Main.warnBrowserIE9": "L’aplicació té poca capacitat en IE9. Utilitzeu IE10 o superior", + "PE.Controllers.Main.warnBrowserZoom": "La configuració de zoom actual del vostre navegador no és totalment compatible. Restabliu el zoom per defecte prement Ctrl + 0.", + "PE.Controllers.Main.warnLicenseExceeded": "Heu assolit el 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ó.", + "PE.Controllers.Main.warnLicenseExp": "La vostra llicència ha caducat.
Actualitzeu la llicència i recarregueu la pàgina.", + "PE.Controllers.Main.warnLicenseLimitedNoAccess": "La llicència ha caducat.
No teniu accés a la funció d'edició de documents.
Contacteu amb el vostre administrador.", + "PE.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", + "PE.Controllers.Main.warnLicenseUsersExceeded": "Heu arribat al límit d'usuari per a %1 editors. Contacteu amb el vostre administrador per a més informació.", + "PE.Controllers.Main.warnNoLicense": "Heu assolit el límit de connexions simultànies amb% 1 editors. Aquest document només s'obrirà en mode lectura.
Contacteu amb l'equip de vendes de% 1 per obtenir les condicions de millora personals del vostre servei.", + "PE.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.", + "PE.Controllers.Main.warnProcessRightsChange": "No tens permís per editar el fitxer.", "PE.Controllers.Statusbar.zoomText": "Zoom {0}%", - "PE.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 ?", + "PE.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 ?", "PE.Controllers.Toolbar.textAccent": "Accents", - "PE.Controllers.Toolbar.textBracket": "Claudàtor", - "PE.Controllers.Toolbar.textEmptyImgUrl": "Cal que especifiqueu l’enllaç de la imatge.", - "PE.Controllers.Toolbar.textFontSizeErr": "El valor introduït és incorrecte.
Introduïu un valor numèric entre 1 i 300.", + "PE.Controllers.Toolbar.textBracket": "Claudàtors", + "PE.Controllers.Toolbar.textEmptyImgUrl": "Cal especificar l'URL de la imatge.", + "PE.Controllers.Toolbar.textFontSizeErr": "El valor introduït no és correcte.
Introduïu un valor numèric entre 1 i 300.", "PE.Controllers.Toolbar.textFraction": "Fraccions", "PE.Controllers.Toolbar.textFunction": "Funcions", - "PE.Controllers.Toolbar.textInsert": "Insertar", + "PE.Controllers.Toolbar.textInsert": "Insereix", "PE.Controllers.Toolbar.textIntegral": "Integrals", - "PE.Controllers.Toolbar.textLargeOperator": "Operadors Grans", - "PE.Controllers.Toolbar.textLimitAndLog": "Límit i Logaritmes", + "PE.Controllers.Toolbar.textLargeOperator": "Operadors grans", + "PE.Controllers.Toolbar.textLimitAndLog": "Límit i logaritmes", "PE.Controllers.Toolbar.textMatrix": "Matrius", "PE.Controllers.Toolbar.textOperator": "Operadors", "PE.Controllers.Toolbar.textRadical": "Radicals", - "PE.Controllers.Toolbar.textScript": "Índexs", + "PE.Controllers.Toolbar.textScript": "Scripts", "PE.Controllers.Toolbar.textSymbols": "Símbols", - "PE.Controllers.Toolbar.textWarning": "Avis", + "PE.Controllers.Toolbar.textWarning": "Advertiment", "PE.Controllers.Toolbar.txtAccent_Accent": "Agut", "PE.Controllers.Toolbar.txtAccent_ArrowD": "Fletxa dreta-esquerra superior", - "PE.Controllers.Toolbar.txtAccent_ArrowL": "Fletxa superior cap a esquerra", - "PE.Controllers.Toolbar.txtAccent_ArrowR": "Fletxa superior cap a dreta", + "PE.Controllers.Toolbar.txtAccent_ArrowL": "Fletxa esquerra a sobre", + "PE.Controllers.Toolbar.txtAccent_ArrowR": "Fletxa dreta a sobre", "PE.Controllers.Toolbar.txtAccent_Bar": "Barra", - "PE.Controllers.Toolbar.txtAccent_BarBot": "Barra Subjacent", + "PE.Controllers.Toolbar.txtAccent_BarBot": "Barra subjacent", "PE.Controllers.Toolbar.txtAccent_BarTop": "Barra superposada", - "PE.Controllers.Toolbar.txtAccent_BorderBox": "Fórmula encaixada (amb el marcador de posició)", - "PE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Fórmula encaixada (exemple)", - "PE.Controllers.Toolbar.txtAccent_Check": "Comprovar", + "PE.Controllers.Toolbar.txtAccent_BorderBox": "Fórmula emmarcada (amb contenidor)", + "PE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Fórmula emmarcada (exemple)", + "PE.Controllers.Toolbar.txtAccent_Check": "Verifica", "PE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Clau Subjacent", "PE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Clau superposada", "PE.Controllers.Toolbar.txtAccent_Custom_1": "Vector A", - "PE.Controllers.Toolbar.txtAccent_Custom_2": "ABC amb barra", - "PE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR i amb barra sobreposada", + "PE.Controllers.Toolbar.txtAccent_Custom_2": "ABC amb la barra a dalt", + "PE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y amb barra superposada", "PE.Controllers.Toolbar.txtAccent_DDDot": "Tres punts", - "PE.Controllers.Toolbar.txtAccent_DDot": "Doble punt", + "PE.Controllers.Toolbar.txtAccent_DDot": "Dos punts", "PE.Controllers.Toolbar.txtAccent_Dot": "Punt", "PE.Controllers.Toolbar.txtAccent_DoubleBar": "Doble barra superior", "PE.Controllers.Toolbar.txtAccent_Grave": "Accent Greu", "PE.Controllers.Toolbar.txtAccent_GroupBot": "Agrupant el caràcter de sota", "PE.Controllers.Toolbar.txtAccent_GroupTop": "Agrupació del caràcter anterior", - "PE.Controllers.Toolbar.txtAccent_HarpoonL": "Arpon cap a l'esquerra per sobre", - "PE.Controllers.Toolbar.txtAccent_HarpoonR": "Arpon superior cap a dreta", + "PE.Controllers.Toolbar.txtAccent_HarpoonL": "Arpó esquerre a sobre", + "PE.Controllers.Toolbar.txtAccent_HarpoonR": "Arpó dret a sobre", "PE.Controllers.Toolbar.txtAccent_Hat": "Circumflex", - "PE.Controllers.Toolbar.txtAccent_Smile": "Breve", - "PE.Controllers.Toolbar.txtAccent_Tilde": "Tilde", + "PE.Controllers.Toolbar.txtAccent_Smile": "Breu", + "PE.Controllers.Toolbar.txtAccent_Tilde": "Titlla", "PE.Controllers.Toolbar.txtBracket_Angle": "Claudàtor", "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Claudàtors amb separadors", "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Claudàtors amb separadors", - "PE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Claudàtor Únic", - "PE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Claudàtor Únic", + "PE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Claudàtor únic", + "PE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Claudàtor únic", "PE.Controllers.Toolbar.txtBracket_Curve": "Claudàtor", "PE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Claudàtors amb separadors", - "PE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Claudàtor Únic", - "PE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Claudàtor Únic", - "PE.Controllers.Toolbar.txtBracket_Custom_1": "Casos (dos condicions)", + "PE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Claudàtor únic", + "PE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Claudàtor únic", + "PE.Controllers.Toolbar.txtBracket_Custom_1": "Casos (dues condicions)", "PE.Controllers.Toolbar.txtBracket_Custom_2": "Casos (tres condicions)", "PE.Controllers.Toolbar.txtBracket_Custom_3": "Objecte apilat", "PE.Controllers.Toolbar.txtBracket_Custom_4": "Objecte apilat", - "PE.Controllers.Toolbar.txtBracket_Custom_5": "Casos exemple", + "PE.Controllers.Toolbar.txtBracket_Custom_5": "Exemple de casos", "PE.Controllers.Toolbar.txtBracket_Custom_6": "Coeficient binomial", "PE.Controllers.Toolbar.txtBracket_Custom_7": "Coeficient binomial", "PE.Controllers.Toolbar.txtBracket_Line": "Claudàtor", - "PE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Claudàtor Únic", - "PE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Claudàtor Únic", + "PE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Claudàtor únic", + "PE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Claudàtor únic", "PE.Controllers.Toolbar.txtBracket_LineDouble": "Claudàtors", - "PE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Claudàtor Únic", - "PE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Claudàtor Únic", + "PE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Claudàtor únic", + "PE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Claudàtor únic", "PE.Controllers.Toolbar.txtBracket_LowLim": "Claudàtors", - "PE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Claudàtor Únic", - "PE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Claudàtor Únic", + "PE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Claudàtor únic", + "PE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Claudàtor únic", "PE.Controllers.Toolbar.txtBracket_Round": "Claudàtors", "PE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Claudàtors amb separadors", - "PE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Claudàtor Únic", - "PE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Claudàtor Únic", + "PE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Claudàtor únic", + "PE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Claudàtor únic", "PE.Controllers.Toolbar.txtBracket_Square": "Claudàtors", "PE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Claudàtors", "PE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Claudàtors", - "PE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Claudàtor Únic", - "PE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Claudàtor Únic", + "PE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Claudàtor únic", + "PE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Claudàtor únic", "PE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Claudàtors", "PE.Controllers.Toolbar.txtBracket_SquareDouble": "Claudàtors", - "PE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Claudàtor Únic", - "PE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Claudàtor Únic", + "PE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Claudàtor únic", + "PE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Claudàtor únic", "PE.Controllers.Toolbar.txtBracket_UppLim": "Claudàtors", - "PE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Claudàtor Únic", - "PE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Claudàtor Únic", + "PE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Claudàtor únic", + "PE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Claudàtor únic", "PE.Controllers.Toolbar.txtFractionDiagonal": "Fracció inclinada", "PE.Controllers.Toolbar.txtFractionDifferential_1": "Diferencial", "PE.Controllers.Toolbar.txtFractionDifferential_2": "Diferencial", "PE.Controllers.Toolbar.txtFractionDifferential_3": "Diferencial", "PE.Controllers.Toolbar.txtFractionDifferential_4": "Diferencial", "PE.Controllers.Toolbar.txtFractionHorizontal": "Fracció lineal", - "PE.Controllers.Toolbar.txtFractionPi_2": "Pi dividit a 2", + "PE.Controllers.Toolbar.txtFractionPi_2": "Pi sobre 2", "PE.Controllers.Toolbar.txtFractionSmall": "Fracció petita", "PE.Controllers.Toolbar.txtFractionVertical": "Fracció apilada", - "PE.Controllers.Toolbar.txtFunction_1_Cos": "Funció de cosinus inversa", - "PE.Controllers.Toolbar.txtFunction_1_Cosh": "Funció hiperbòlica del cosinus invers", - "PE.Controllers.Toolbar.txtFunction_1_Cot": "Funció de cotangent inversa", - "PE.Controllers.Toolbar.txtFunction_1_Coth": "Funció cotangent inversa hiperbòlic", - "PE.Controllers.Toolbar.txtFunction_1_Csc": "Funció de cosecant inversa", + "PE.Controllers.Toolbar.txtFunction_1_Cos": "Funció cosinus inversa", + "PE.Controllers.Toolbar.txtFunction_1_Cosh": "Funció cosinus inversa hiperbòlica", + "PE.Controllers.Toolbar.txtFunction_1_Cot": "Funció cotangent inversa", + "PE.Controllers.Toolbar.txtFunction_1_Coth": "Funció cotangent inversa hiperbòlica", + "PE.Controllers.Toolbar.txtFunction_1_Csc": "Funció cosecant inversa", "PE.Controllers.Toolbar.txtFunction_1_Csch": "Funció cosecant inversa hiperbòlica", - "PE.Controllers.Toolbar.txtFunction_1_Sec": "Funció de secant inversa", - "PE.Controllers.Toolbar.txtFunction_1_Sech": "Funció secant hiperbòlica", + "PE.Controllers.Toolbar.txtFunction_1_Sec": "Funció secant inversa", + "PE.Controllers.Toolbar.txtFunction_1_Sech": "Funció secant inversa hiperbòlica", "PE.Controllers.Toolbar.txtFunction_1_Sin": "Funció sinus inversa", - "PE.Controllers.Toolbar.txtFunction_1_Sinh": "Funció hiperbòlica del seno invers", - "PE.Controllers.Toolbar.txtFunction_1_Tan": "Funció de tangent inversa", + "PE.Controllers.Toolbar.txtFunction_1_Sinh": "Funció de sinus invers hiperbòlic", + "PE.Controllers.Toolbar.txtFunction_1_Tan": "Funció tangent inversa", "PE.Controllers.Toolbar.txtFunction_1_Tanh": "Funció tangent inversa hiperbòlica", "PE.Controllers.Toolbar.txtFunction_Cos": "funció cosinus", - "PE.Controllers.Toolbar.txtFunction_Cosh": "Funció del cosin hiperbòlic", + "PE.Controllers.Toolbar.txtFunction_Cosh": "Funció cosinus hiperbòlica", "PE.Controllers.Toolbar.txtFunction_Cot": "Funció cotangent", - "PE.Controllers.Toolbar.txtFunction_Coth": "Funció cotangent hiperbòlic", + "PE.Controllers.Toolbar.txtFunction_Coth": "Funció cotangent hiperbòlica", "PE.Controllers.Toolbar.txtFunction_Csc": "Funció cosecant", - "PE.Controllers.Toolbar.txtFunction_Csch": "Funció cosecant hiperbòlic", - "PE.Controllers.Toolbar.txtFunction_Custom_1": "Sinus Zeta", + "PE.Controllers.Toolbar.txtFunction_Csch": "Funció cosecant hiperbòlica", + "PE.Controllers.Toolbar.txtFunction_Custom_1": "Sinus de zeta", "PE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", - "PE.Controllers.Toolbar.txtFunction_Custom_3": "Formula de Tangent", + "PE.Controllers.Toolbar.txtFunction_Custom_3": "Formula de tangent", "PE.Controllers.Toolbar.txtFunction_Sec": "Funció secant", - "PE.Controllers.Toolbar.txtFunction_Sech": "Funció secant hiperbòlic", - "PE.Controllers.Toolbar.txtFunction_Sin": "Funció Sinus", - "PE.Controllers.Toolbar.txtFunction_Sinh": "Funció sinusoïdal hiperbòlica", - "PE.Controllers.Toolbar.txtFunction_Tan": "Funció Tangent", - "PE.Controllers.Toolbar.txtFunction_Tanh": "Funció tangent hiperbòlic", + "PE.Controllers.Toolbar.txtFunction_Sech": "Funció secant hiperbòlica", + "PE.Controllers.Toolbar.txtFunction_Sin": "Funció de sinus", + "PE.Controllers.Toolbar.txtFunction_Sinh": "Funció de sinus hiperbòlica", + "PE.Controllers.Toolbar.txtFunction_Tan": "Funció tangent", + "PE.Controllers.Toolbar.txtFunction_Tanh": "Funció tangent hiperbòlica", "PE.Controllers.Toolbar.txtIntegral": "Integral", - "PE.Controllers.Toolbar.txtIntegral_dtheta": "Theta diferencial", + "PE.Controllers.Toolbar.txtIntegral_dtheta": "Diferencial theta", "PE.Controllers.Toolbar.txtIntegral_dx": "Diferencial x", "PE.Controllers.Toolbar.txtIntegral_dy": "Diferencial y", "PE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integral", - "PE.Controllers.Toolbar.txtIntegralDouble": "Doble integral", - "PE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Doble integral", - "PE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Doble integral", + "PE.Controllers.Toolbar.txtIntegralDouble": "Integral doble", + "PE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Integral doble", + "PE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Integral doble", "PE.Controllers.Toolbar.txtIntegralOriented": "Integral de contorn", "PE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Integral de contorn", "PE.Controllers.Toolbar.txtIntegralOrientedDouble": "Integral de superfície", @@ -884,14 +884,14 @@ "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Falca", "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Falca", "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Falca", - "PE.Controllers.Toolbar.txtLargeOperator_CoProd": "Co-producte", - "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Co-producte", - "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Co-producte", - "PE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Co-producte", - "PE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Co-producte", - "PE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Suma", - "PE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Suma", - "PE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Suma", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd": "Coproducte", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Coproducte", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Coproducte", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Coproducte", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Coproducte", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Sumatori", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Sumatori", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Sumatori", "PE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Producte", "PE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Unió", "PE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Lletra V", @@ -909,11 +909,11 @@ "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Producte", "PE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Producte", "PE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Producte", - "PE.Controllers.Toolbar.txtLargeOperator_Sum": "Suma", - "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Suma", - "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Suma", - "PE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Suma", - "PE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Suma", + "PE.Controllers.Toolbar.txtLargeOperator_Sum": "Sumatori", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Sumatori", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Sumatori", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Sumatori", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Sumatori", "PE.Controllers.Toolbar.txtLargeOperator_Union": "Unió", "PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Unió", "PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Unió", @@ -927,83 +927,83 @@ "PE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritme", "PE.Controllers.Toolbar.txtLimitLog_Max": "Màxim", "PE.Controllers.Toolbar.txtLimitLog_Min": "Mínim", - "PE.Controllers.Toolbar.txtMatrix_1_2": "1x2 matriu buida", - "PE.Controllers.Toolbar.txtMatrix_1_3": "1x3 matriu buida", - "PE.Controllers.Toolbar.txtMatrix_2_1": "2x1 matriu buida", - "PE.Controllers.Toolbar.txtMatrix_2_2": "2x2 matriu buida", + "PE.Controllers.Toolbar.txtMatrix_1_2": "Matriu buida 1x2 ", + "PE.Controllers.Toolbar.txtMatrix_1_3": "Matriu buida 1x3 ", + "PE.Controllers.Toolbar.txtMatrix_2_1": "Matriu buida 2x1", + "PE.Controllers.Toolbar.txtMatrix_2_2": "Matriu buida 2x2", "PE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Matriu buida amb claudàtors", "PE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Matriu buida amb claudàtors", "PE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Matriu buida amb claudàtors", "PE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Matriu buida amb claudàtors", - "PE.Controllers.Toolbar.txtMatrix_2_3": "2x3 matriu buida", - "PE.Controllers.Toolbar.txtMatrix_3_1": "3x1 matriu buida", - "PE.Controllers.Toolbar.txtMatrix_3_2": "3x2 matriu buida", - "PE.Controllers.Toolbar.txtMatrix_3_3": "3s3 matriu buida", + "PE.Controllers.Toolbar.txtMatrix_2_3": "Matriu buida 2x3 ", + "PE.Controllers.Toolbar.txtMatrix_3_1": "Matriu buida 3x1", + "PE.Controllers.Toolbar.txtMatrix_3_2": "Matriu buida 3x2", + "PE.Controllers.Toolbar.txtMatrix_3_3": "Matriu buida 3x3", "PE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Punts de línia base", - "PE.Controllers.Toolbar.txtMatrix_Dots_Center": "Punts en línia mitja", - "PE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Punts en diagonal", - "PE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Punts Verticals", - "PE.Controllers.Toolbar.txtMatrix_Flat_Round": "Matriu escassa", - "PE.Controllers.Toolbar.txtMatrix_Flat_Square": "Matriu escassa", - "PE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 matriu d’identitat", - "PE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 matriu d’identitat", - "PE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 matriu d’identitat", - "PE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 matriu d’identitat", + "PE.Controllers.Toolbar.txtMatrix_Dots_Center": "Punts de la línia del mig", + "PE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Punts diagonals", + "PE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Punts verticals", + "PE.Controllers.Toolbar.txtMatrix_Flat_Round": "Matriu estequiomètrica", + "PE.Controllers.Toolbar.txtMatrix_Flat_Square": "Matriu estequiomètrica", + "PE.Controllers.Toolbar.txtMatrix_Identity_2": "Matriu d’identitat 2x2", + "PE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "Matriu d’identitat 3x3", + "PE.Controllers.Toolbar.txtMatrix_Identity_3": "Matriu d’identitat 3x3", + "PE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "Matriu d’identitat 3x3", "PE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Fletxa dreta-esquerra inferior", "PE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Fletxa dreta-esquerra superior", - "PE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Fletxa inferior cap a esquerra", - "PE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Fletxa superior cap a esquerra", - "PE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Fletxa inferior cap a dreta", - "PE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Fletxa superior cap a dreta", + "PE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Fletxa esquerra a sota", + "PE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Fletxa esquerra a sobre", + "PE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Fletxa dreta a sota", + "PE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Fletxa dreta a sobre", "PE.Controllers.Toolbar.txtOperator_ColonEquals": "Dos punts igual", - "PE.Controllers.Toolbar.txtOperator_Custom_1": "Rendiments", - "PE.Controllers.Toolbar.txtOperator_Custom_2": "Rendiments Delta", + "PE.Controllers.Toolbar.txtOperator_Custom_1": "Rendiment", + "PE.Controllers.Toolbar.txtOperator_Custom_2": "Rendiment delta", "PE.Controllers.Toolbar.txtOperator_Definition": "Igual per definició", "PE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta igual a", "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Fletxa dreta-esquerra inferior", "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Fletxa dreta-esquerra superior", - "PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Fletxa inferior cap a esquerra", - "PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Fletxa superior cap a esquerra", - "PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Fletxa inferior cap a dreta", - "PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Fletxa superior cap a dreta", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Fletxa esquerra a sota", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Fletxa esquerra a sobre", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Fletxa dreta a sota", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Fletxa dreta a sobre", "PE.Controllers.Toolbar.txtOperator_EqualsEquals": "Igual igual", "PE.Controllers.Toolbar.txtOperator_MinusEquals": "Menys igual", "PE.Controllers.Toolbar.txtOperator_PlusEquals": "Més igual", - "PE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Unitat de mesura", + "PE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Mesurat per", "PE.Controllers.Toolbar.txtRadicalCustom_1": "Radical", "PE.Controllers.Toolbar.txtRadicalCustom_2": "Radical", "PE.Controllers.Toolbar.txtRadicalRoot_2": "Arrel quadrada amb grau", "PE.Controllers.Toolbar.txtRadicalRoot_3": "Arrel cúbica", - "PE.Controllers.Toolbar.txtRadicalRoot_n": "Radical amb índex", + "PE.Controllers.Toolbar.txtRadicalRoot_n": "Radical amb grau", "PE.Controllers.Toolbar.txtRadicalSqrt": "Arrel quadrada", - "PE.Controllers.Toolbar.txtScriptCustom_1": "Índex", - "PE.Controllers.Toolbar.txtScriptCustom_2": "Índex", - "PE.Controllers.Toolbar.txtScriptCustom_3": "Índex", - "PE.Controllers.Toolbar.txtScriptCustom_4": "Índex", + "PE.Controllers.Toolbar.txtScriptCustom_1": "Script", + "PE.Controllers.Toolbar.txtScriptCustom_2": "Script", + "PE.Controllers.Toolbar.txtScriptCustom_3": "Script", + "PE.Controllers.Toolbar.txtScriptCustom_4": "Script", "PE.Controllers.Toolbar.txtScriptSub": "Subíndex", - "PE.Controllers.Toolbar.txtScriptSubSup": "Subíndex/Superíndex", + "PE.Controllers.Toolbar.txtScriptSubSup": "Subíndex-superíndex", "PE.Controllers.Toolbar.txtScriptSubSupLeft": "Subíndex-superíndex esquerra", "PE.Controllers.Toolbar.txtScriptSup": "Superíndex", "PE.Controllers.Toolbar.txtSymbol_about": "Aproximadament", "PE.Controllers.Toolbar.txtSymbol_additional": "Complement", "PE.Controllers.Toolbar.txtSymbol_aleph": "Alef", - "PE.Controllers.Toolbar.txtSymbol_alpha": "Alpha", + "PE.Controllers.Toolbar.txtSymbol_alpha": "Alfa", "PE.Controllers.Toolbar.txtSymbol_approx": "Gairebé igual a", "PE.Controllers.Toolbar.txtSymbol_ast": "Operador asterisc", "PE.Controllers.Toolbar.txtSymbol_beta": "Beta", - "PE.Controllers.Toolbar.txtSymbol_beth": "Aposta", - "PE.Controllers.Toolbar.txtSymbol_bullet": "Operador de Vinyeta", + "PE.Controllers.Toolbar.txtSymbol_beth": "Bet", + "PE.Controllers.Toolbar.txtSymbol_bullet": "Operador de pic", "PE.Controllers.Toolbar.txtSymbol_cap": "Intersecció", "PE.Controllers.Toolbar.txtSymbol_cbrt": "Arrel cúbica", "PE.Controllers.Toolbar.txtSymbol_cdots": "El·lipsis horitzontal de línia mitja", - "PE.Controllers.Toolbar.txtSymbol_celsius": "Graus Celsius", - "PE.Controllers.Toolbar.txtSymbol_chi": "Chi", + "PE.Controllers.Toolbar.txtSymbol_celsius": "Graus celsius", + "PE.Controllers.Toolbar.txtSymbol_chi": "Khi", "PE.Controllers.Toolbar.txtSymbol_cong": "Aproximadament igual a", "PE.Controllers.Toolbar.txtSymbol_cup": "Unió", - "PE.Controllers.Toolbar.txtSymbol_ddots": "El·lipsi en diagonal a baix", + "PE.Controllers.Toolbar.txtSymbol_ddots": "El·lipsi en diagonal cap avall", "PE.Controllers.Toolbar.txtSymbol_degree": "Graus", "PE.Controllers.Toolbar.txtSymbol_delta": "Delta", - "PE.Controllers.Toolbar.txtSymbol_div": "Rètol de divisió", + "PE.Controllers.Toolbar.txtSymbol_div": "Signe de divisió", "PE.Controllers.Toolbar.txtSymbol_downarrow": "Fletxa cap avall", "PE.Controllers.Toolbar.txtSymbol_emptyset": "Conjunt buit", "PE.Controllers.Toolbar.txtSymbol_epsilon": "Èpsilon", @@ -1012,11 +1012,11 @@ "PE.Controllers.Toolbar.txtSymbol_eta": "Eta", "PE.Controllers.Toolbar.txtSymbol_exists": "Existeix", "PE.Controllers.Toolbar.txtSymbol_factorial": "Factorial", - "PE.Controllers.Toolbar.txtSymbol_fahrenheit": "Graus Fahrenheit", - "PE.Controllers.Toolbar.txtSymbol_forall": "Per tot", + "PE.Controllers.Toolbar.txtSymbol_fahrenheit": "Graus fahrenheit", + "PE.Controllers.Toolbar.txtSymbol_forall": "Per a tot", "PE.Controllers.Toolbar.txtSymbol_gamma": "Gamma", - "PE.Controllers.Toolbar.txtSymbol_geq": "Major o Igual a", - "PE.Controllers.Toolbar.txtSymbol_gg": "Major que", + "PE.Controllers.Toolbar.txtSymbol_geq": "Més gran o igual a", + "PE.Controllers.Toolbar.txtSymbol_gg": "Molt més gran que", "PE.Controllers.Toolbar.txtSymbol_greater": "Més gran que", "PE.Controllers.Toolbar.txtSymbol_in": "Element de", "PE.Controllers.Toolbar.txtSymbol_inc": "Increment", @@ -1028,961 +1028,961 @@ "PE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Fletxa esquerra-dreta", "PE.Controllers.Toolbar.txtSymbol_leq": "Menor o igual que", "PE.Controllers.Toolbar.txtSymbol_less": "Menor que", - "PE.Controllers.Toolbar.txtSymbol_ll": "Menor que", + "PE.Controllers.Toolbar.txtSymbol_ll": "Molt més petit que", "PE.Controllers.Toolbar.txtSymbol_minus": "Menys", "PE.Controllers.Toolbar.txtSymbol_mp": "Menys més", - "PE.Controllers.Toolbar.txtSymbol_mu": "Dim", + "PE.Controllers.Toolbar.txtSymbol_mu": "Mu", "PE.Controllers.Toolbar.txtSymbol_nabla": "Nabla", - "PE.Controllers.Toolbar.txtSymbol_neq": "No igual a", + "PE.Controllers.Toolbar.txtSymbol_neq": "No és igual a", "PE.Controllers.Toolbar.txtSymbol_ni": "Conté com a membre", "PE.Controllers.Toolbar.txtSymbol_not": "Signe de negació", "PE.Controllers.Toolbar.txtSymbol_notexists": "No existeix", - "PE.Controllers.Toolbar.txtSymbol_nu": "Ni", + "PE.Controllers.Toolbar.txtSymbol_nu": "Nu", "PE.Controllers.Toolbar.txtSymbol_o": "Omicron", "PE.Controllers.Toolbar.txtSymbol_omega": "Omega", - "PE.Controllers.Toolbar.txtSymbol_partial": "Derivada parcial", + "PE.Controllers.Toolbar.txtSymbol_partial": "Diferencial parcial", "PE.Controllers.Toolbar.txtSymbol_percent": "Percentatge", - "PE.Controllers.Toolbar.txtSymbol_phi": "Pi", + "PE.Controllers.Toolbar.txtSymbol_phi": "Fi", "PE.Controllers.Toolbar.txtSymbol_pi": "Pi", "PE.Controllers.Toolbar.txtSymbol_plus": "Més", - "PE.Controllers.Toolbar.txtSymbol_pm": "Més menos", + "PE.Controllers.Toolbar.txtSymbol_pm": "Més menys", "PE.Controllers.Toolbar.txtSymbol_propto": "Proporcional a", "PE.Controllers.Toolbar.txtSymbol_psi": "Psi", - "PE.Controllers.Toolbar.txtSymbol_qdrt": "Quart directori", - "PE.Controllers.Toolbar.txtSymbol_qed": "Fi de la prova", + "PE.Controllers.Toolbar.txtSymbol_qdrt": "Arrel quarta", + "PE.Controllers.Toolbar.txtSymbol_qed": "Final de la demostració", "PE.Controllers.Toolbar.txtSymbol_rddots": "El·lipsis en diagonal d'esquerra a dreta", - "PE.Controllers.Toolbar.txtSymbol_rho": "Ro", - "PE.Controllers.Toolbar.txtSymbol_rightarrow": "Fletxa Dreta", + "PE.Controllers.Toolbar.txtSymbol_rho": "Rho", + "PE.Controllers.Toolbar.txtSymbol_rightarrow": "Fletxa dreta", "PE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", - "PE.Controllers.Toolbar.txtSymbol_sqrt": "Signe de radical", + "PE.Controllers.Toolbar.txtSymbol_sqrt": "Símbol de radical", "PE.Controllers.Toolbar.txtSymbol_tau": "Tau", "PE.Controllers.Toolbar.txtSymbol_therefore": "Per tant", "PE.Controllers.Toolbar.txtSymbol_theta": "Zeta", - "PE.Controllers.Toolbar.txtSymbol_times": "Signe de Multiplicació", + "PE.Controllers.Toolbar.txtSymbol_times": "Signe de multiplicació", "PE.Controllers.Toolbar.txtSymbol_uparrow": "Fletxa amunt", "PE.Controllers.Toolbar.txtSymbol_upsilon": "Èpsilon", "PE.Controllers.Toolbar.txtSymbol_varepsilon": "Variant d’èpsilon", - "PE.Controllers.Toolbar.txtSymbol_varphi": "Variant Pi", - "PE.Controllers.Toolbar.txtSymbol_varpi": "Variant Pi", + "PE.Controllers.Toolbar.txtSymbol_varphi": "Variant Fi", + "PE.Controllers.Toolbar.txtSymbol_varpi": "Variant pi", "PE.Controllers.Toolbar.txtSymbol_varrho": "Variant Rho", - "PE.Controllers.Toolbar.txtSymbol_varsigma": "Variant Sigma", - "PE.Controllers.Toolbar.txtSymbol_vartheta": "Variant Zeta", - "PE.Controllers.Toolbar.txtSymbol_vdots": "El·lipsis Vertical", + "PE.Controllers.Toolbar.txtSymbol_varsigma": "Variant sigma", + "PE.Controllers.Toolbar.txtSymbol_vartheta": "Variant zeta", + "PE.Controllers.Toolbar.txtSymbol_vdots": "El·lipsis vertical", "PE.Controllers.Toolbar.txtSymbol_xsi": "Xi", "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", - "PE.Controllers.Viewport.textFitPage": "Ajustar a la diapositiva", - "PE.Controllers.Viewport.textFitWidth": "Ajusta a Amplada", + "PE.Controllers.Viewport.textFitPage": "Ajusta a la diapositiva", + "PE.Controllers.Viewport.textFitWidth": "Ajusta-ho a l'amplària", "PE.Views.ChartSettings.textAdvanced": "Mostra la configuració avançada", - "PE.Views.ChartSettings.textChartType": "Canviar el tipus de gràfic", - "PE.Views.ChartSettings.textEditData": "Editar Dades", + "PE.Views.ChartSettings.textChartType": "Canvia el tipus de gràfic", + "PE.Views.ChartSettings.textEditData": "Edita les dades", "PE.Views.ChartSettings.textHeight": "Alçada", - "PE.Views.ChartSettings.textKeepRatio": "Proporcions Constants", + "PE.Views.ChartSettings.textKeepRatio": "Proporcions constants", "PE.Views.ChartSettings.textSize": "Mida", "PE.Views.ChartSettings.textStyle": "Estil", "PE.Views.ChartSettings.textWidth": "Amplada", - "PE.Views.ChartSettingsAdvanced.textAlt": "Text Alternatiu", + "PE.Views.ChartSettingsAdvanced.textAlt": "Text alternatiu", "PE.Views.ChartSettingsAdvanced.textAltDescription": "Descripció", - "PE.Views.ChartSettingsAdvanced.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.", + "PE.Views.ChartSettingsAdvanced.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.", "PE.Views.ChartSettingsAdvanced.textAltTitle": "Títol", - "PE.Views.ChartSettingsAdvanced.textTitle": "Diagrama - Configuració avançada", - "PE.Views.DateTimeDialog.confirmDefault": "Definiu el format predeterminat per a {0}:\"{1}\"", - "PE.Views.DateTimeDialog.textDefault": "Establir com a defecte", + "PE.Views.ChartSettingsAdvanced.textTitle": "Gràfic - Configuració avançada", + "PE.Views.DateTimeDialog.confirmDefault": "Estableix el format predeterminat per a {0}:\"{1}\"", + "PE.Views.DateTimeDialog.textDefault": "Estableix per defecte", "PE.Views.DateTimeDialog.textFormat": "Formats", "PE.Views.DateTimeDialog.textLang": "Idioma", "PE.Views.DateTimeDialog.textUpdate": "Actualitza automàticament", - "PE.Views.DateTimeDialog.txtTitle": "Data & Hora", + "PE.Views.DateTimeDialog.txtTitle": "Data i hora", "PE.Views.DocumentHolder.aboveText": "Amunt", - "PE.Views.DocumentHolder.addCommentText": "Afegir comentari", - "PE.Views.DocumentHolder.addToLayoutText": "Afegir a la Maquetació", - "PE.Views.DocumentHolder.advancedImageText": "Imatge Configuració Avançada", - "PE.Views.DocumentHolder.advancedParagraphText": "Configuració Avançada del Paràgraf", - "PE.Views.DocumentHolder.advancedShapeText": "Forma Configuració Avançada", - "PE.Views.DocumentHolder.advancedTableText": "Taula Configuració Avançada", + "PE.Views.DocumentHolder.addCommentText": "Afegeix un comentari", + "PE.Views.DocumentHolder.addToLayoutText": "Afegeix al disseny", + "PE.Views.DocumentHolder.advancedImageText": "Configuració avançada de la imatge", + "PE.Views.DocumentHolder.advancedParagraphText": "Configuració avançada del paràgraf", + "PE.Views.DocumentHolder.advancedShapeText": "Configuració avançada de la forma", + "PE.Views.DocumentHolder.advancedTableText": "Configuració avançada de la taula", "PE.Views.DocumentHolder.alignmentText": "Alineació", - "PE.Views.DocumentHolder.belowText": "Abaix", - "PE.Views.DocumentHolder.cellAlignText": "Alineament Vertical de Cel·la", + "PE.Views.DocumentHolder.belowText": "A sota", + "PE.Views.DocumentHolder.cellAlignText": "Alineació vertical de la cel·la", "PE.Views.DocumentHolder.cellText": "Cel·la", - "PE.Views.DocumentHolder.centerText": "Centre", + "PE.Views.DocumentHolder.centerText": "Centrar", "PE.Views.DocumentHolder.columnText": "Columna", - "PE.Views.DocumentHolder.deleteColumnText": "Suprimeix la Columna", - "PE.Views.DocumentHolder.deleteRowText": "Suprimeix fila", - "PE.Views.DocumentHolder.deleteTableText": "Esborrar Taula", - "PE.Views.DocumentHolder.deleteText": "Esborrar", - "PE.Views.DocumentHolder.direct270Text": "Girar text cap a munt", - "PE.Views.DocumentHolder.direct90Text": "Girar text cap a baix", + "PE.Views.DocumentHolder.deleteColumnText": "Suprimeix la columna", + "PE.Views.DocumentHolder.deleteRowText": "Suprimeix la fila", + "PE.Views.DocumentHolder.deleteTableText": "Suprimeix la taula", + "PE.Views.DocumentHolder.deleteText": "Suprimeix", + "PE.Views.DocumentHolder.direct270Text": "Gira el text cap amunt", + "PE.Views.DocumentHolder.direct90Text": "Gira el text cap avall", "PE.Views.DocumentHolder.directHText": "Horitzontal", - "PE.Views.DocumentHolder.directionText": "Direcció Text", - "PE.Views.DocumentHolder.editChartText": "Editar Dades", - "PE.Views.DocumentHolder.editHyperlinkText": "Editar Hiperenllaç", - "PE.Views.DocumentHolder.hyperlinkText": "Hiperenllaç", - "PE.Views.DocumentHolder.ignoreAllSpellText": "Ignorar Tot", + "PE.Views.DocumentHolder.directionText": "Direcció del text", + "PE.Views.DocumentHolder.editChartText": "Edita les dades", + "PE.Views.DocumentHolder.editHyperlinkText": "Edita l'enllaç", + "PE.Views.DocumentHolder.hyperlinkText": "Enllaç", + "PE.Views.DocumentHolder.ignoreAllSpellText": "Ignora-ho tot", "PE.Views.DocumentHolder.ignoreSpellText": "Ignorar", - "PE.Views.DocumentHolder.insertColumnLeftText": "Columna Esquerra", - "PE.Views.DocumentHolder.insertColumnRightText": "Columna Dreta", - "PE.Views.DocumentHolder.insertColumnText": "Inseriu Columna", - "PE.Views.DocumentHolder.insertRowAboveText": "Fila de dalt", - "PE.Views.DocumentHolder.insertRowBelowText": "Fila de baix", - "PE.Views.DocumentHolder.insertRowText": "Inserir fila", - "PE.Views.DocumentHolder.insertText": "Insertar", - "PE.Views.DocumentHolder.langText": "Seleccionar Idioma", + "PE.Views.DocumentHolder.insertColumnLeftText": "Columna esquerra", + "PE.Views.DocumentHolder.insertColumnRightText": "Columna dreta", + "PE.Views.DocumentHolder.insertColumnText": "Insereix columna", + "PE.Views.DocumentHolder.insertRowAboveText": "Fila a dalt", + "PE.Views.DocumentHolder.insertRowBelowText": "Fila a baix", + "PE.Views.DocumentHolder.insertRowText": "Insereix fila", + "PE.Views.DocumentHolder.insertText": "Insereix", + "PE.Views.DocumentHolder.langText": "Selecciona l'idioma", "PE.Views.DocumentHolder.leftText": "Esquerra", - "PE.Views.DocumentHolder.loadSpellText": "Carregant variants...", - "PE.Views.DocumentHolder.mergeCellsText": "Unir Cel·les", - "PE.Views.DocumentHolder.mniCustomTable": "Inserir Taula Personalitzada", + "PE.Views.DocumentHolder.loadSpellText": "S'estan carregant les variants", + "PE.Views.DocumentHolder.mergeCellsText": "Combina cel·les", + "PE.Views.DocumentHolder.mniCustomTable": "Insereix taula personalitzada", "PE.Views.DocumentHolder.moreText": "Més variants...", "PE.Views.DocumentHolder.noSpellVariantsText": "Sense variants", - "PE.Views.DocumentHolder.originalSizeText": "Mida Actual", - "PE.Views.DocumentHolder.removeHyperlinkText": "Esborrar hiperenllaç", + "PE.Views.DocumentHolder.originalSizeText": "Mida real", + "PE.Views.DocumentHolder.removeHyperlinkText": "Suprimeix l'enllaç", "PE.Views.DocumentHolder.rightText": "Dreta", "PE.Views.DocumentHolder.rowText": "Fila", - "PE.Views.DocumentHolder.selectText": "Seleccionar", - "PE.Views.DocumentHolder.spellcheckText": "Correcció Ortogràfica", - "PE.Views.DocumentHolder.splitCellsText": "Dividir Cel·la...", - "PE.Views.DocumentHolder.splitCellTitleText": "Dividir Cel·la", + "PE.Views.DocumentHolder.selectText": "Selecciona", + "PE.Views.DocumentHolder.spellcheckText": "Revisió ortogràfica", + "PE.Views.DocumentHolder.splitCellsText": "Divisió de cel·les...", + "PE.Views.DocumentHolder.splitCellTitleText": "Divisió de cel·les", "PE.Views.DocumentHolder.tableText": "Taula", - "PE.Views.DocumentHolder.textArrangeBack": "Enviar a un segon pla", - "PE.Views.DocumentHolder.textArrangeBackward": "Envia Endarrere", - "PE.Views.DocumentHolder.textArrangeForward": "Portar Endavant", - "PE.Views.DocumentHolder.textArrangeFront": "Portar a Primer pla", - "PE.Views.DocumentHolder.textCopy": "Copiar", + "PE.Views.DocumentHolder.textArrangeBack": "Envia al fons", + "PE.Views.DocumentHolder.textArrangeBackward": "Envia cap enrere", + "PE.Views.DocumentHolder.textArrangeForward": "Porta endavant", + "PE.Views.DocumentHolder.textArrangeFront": "Porta al primer pla", + "PE.Views.DocumentHolder.textCopy": "Copia", "PE.Views.DocumentHolder.textCrop": "Retallar", - "PE.Views.DocumentHolder.textCropFill": "Omplir", + "PE.Views.DocumentHolder.textCropFill": "Emplena", "PE.Views.DocumentHolder.textCropFit": "Ajusta", - "PE.Views.DocumentHolder.textCut": "Tallar", - "PE.Views.DocumentHolder.textDistributeCols": "Distribuïu les columnes", - "PE.Views.DocumentHolder.textDistributeRows": "Distribuïu les files", - "PE.Views.DocumentHolder.textFlipH": "Voltejar Horitzontalment", - "PE.Views.DocumentHolder.textFlipV": "Voltejar Verticalment", + "PE.Views.DocumentHolder.textCut": "Talla", + "PE.Views.DocumentHolder.textDistributeCols": "Distribueix les columnes", + "PE.Views.DocumentHolder.textDistributeRows": "Distribueix les files", + "PE.Views.DocumentHolder.textFlipH": "Capgira horitzontalment", + "PE.Views.DocumentHolder.textFlipV": "Capgira verticalment", "PE.Views.DocumentHolder.textFromFile": "Des d'un fitxer", - "PE.Views.DocumentHolder.textFromStorage": "Des d'Emmagatzematge", + "PE.Views.DocumentHolder.textFromStorage": "Des de l’emmagatzematge", "PE.Views.DocumentHolder.textFromUrl": "Des d'un Enllaç", - "PE.Views.DocumentHolder.textNextPage": "Següent Diapositiva", - "PE.Views.DocumentHolder.textPaste": "Pegar", - "PE.Views.DocumentHolder.textPrevPage": "Diapositiva Anterior", - "PE.Views.DocumentHolder.textReplace": "Canviar Imatge", + "PE.Views.DocumentHolder.textNextPage": "Diapositiva següent", + "PE.Views.DocumentHolder.textPaste": "Enganxar", + "PE.Views.DocumentHolder.textPrevPage": "Diapositiva anterior", + "PE.Views.DocumentHolder.textReplace": "Substitueix la imatge", "PE.Views.DocumentHolder.textRotate": "Girar", "PE.Views.DocumentHolder.textRotate270": "Girar 90° a l'esquerra", "PE.Views.DocumentHolder.textRotate90": "Girar 90° a la dreta", - "PE.Views.DocumentHolder.textShapeAlignBottom": "Alineació Inferior", - "PE.Views.DocumentHolder.textShapeAlignCenter": "Centrar", - "PE.Views.DocumentHolder.textShapeAlignLeft": "Alineació esquerra", - "PE.Views.DocumentHolder.textShapeAlignMiddle": "Alinear al Mig", - "PE.Views.DocumentHolder.textShapeAlignRight": "Alineació dreta", - "PE.Views.DocumentHolder.textShapeAlignTop": "Alineació superior", - "PE.Views.DocumentHolder.textSlideSettings": "Configuració de la Diapositiva", - "PE.Views.DocumentHolder.textUndo": "Desfer", - "PE.Views.DocumentHolder.tipIsLocked": "Actualment, un altre usuari està editant aquest element.", - "PE.Views.DocumentHolder.toDictionaryText": "Afegir al Diccionari", - "PE.Views.DocumentHolder.txtAddBottom": "Afegir línia inferior", - "PE.Views.DocumentHolder.txtAddFractionBar": "Afegir barra de fracció", - "PE.Views.DocumentHolder.txtAddHor": "Afegir línia horitzontal", - "PE.Views.DocumentHolder.txtAddLB": "Afegir línia inferior esquerra", - "PE.Views.DocumentHolder.txtAddLeft": "Afegiu vora esquerra", - "PE.Views.DocumentHolder.txtAddLT": "Afegir línia superior esquerra", - "PE.Views.DocumentHolder.txtAddRight": "Afegir vora dreta", - "PE.Views.DocumentHolder.txtAddTop": "Afegir vora superior", - "PE.Views.DocumentHolder.txtAddVer": "Afegir línia vertical", + "PE.Views.DocumentHolder.textShapeAlignBottom": "Alinea a baix", + "PE.Views.DocumentHolder.textShapeAlignCenter": "Alinea al centre", + "PE.Views.DocumentHolder.textShapeAlignLeft": "Alinea a l'esquerra", + "PE.Views.DocumentHolder.textShapeAlignMiddle": "Alinea al mig", + "PE.Views.DocumentHolder.textShapeAlignRight": "Alinea a la dreta", + "PE.Views.DocumentHolder.textShapeAlignTop": "Alinea a dalt", + "PE.Views.DocumentHolder.textSlideSettings": "Configuració de la diapositiva", + "PE.Views.DocumentHolder.textUndo": "Desfes", + "PE.Views.DocumentHolder.tipIsLocked": "Un altre usuari té obert ara aquest element.", + "PE.Views.DocumentHolder.toDictionaryText": "Afegeix al diccionari", + "PE.Views.DocumentHolder.txtAddBottom": "Afegeix línia inferior", + "PE.Views.DocumentHolder.txtAddFractionBar": "Afegeix una barra de fracció", + "PE.Views.DocumentHolder.txtAddHor": "Afegeix una línia horitzontal", + "PE.Views.DocumentHolder.txtAddLB": "Afegeix una línia inferior esquerra", + "PE.Views.DocumentHolder.txtAddLeft": "Afegeix una vora a l'esquerra", + "PE.Views.DocumentHolder.txtAddLT": "Afegeix una línia superior esquerra", + "PE.Views.DocumentHolder.txtAddRight": "Afegeix una vora a la dreta", + "PE.Views.DocumentHolder.txtAddTop": "Afegeix vora superior", + "PE.Views.DocumentHolder.txtAddVer": "Afegeix línia vertical", "PE.Views.DocumentHolder.txtAlign": "Alinear", - "PE.Views.DocumentHolder.txtAlignToChar": "Alinear al caràcter", - "PE.Views.DocumentHolder.txtArrange": "Arreglar", + "PE.Views.DocumentHolder.txtAlignToChar": "Alinea al caràcter", + "PE.Views.DocumentHolder.txtArrange": "Organitza", "PE.Views.DocumentHolder.txtBackground": "Fons", - "PE.Views.DocumentHolder.txtBorderProps": "Propietats Vora", + "PE.Views.DocumentHolder.txtBorderProps": "Propietats de la vora", "PE.Views.DocumentHolder.txtBottom": "Inferior", - "PE.Views.DocumentHolder.txtChangeLayout": "Canviar Maquetació", - "PE.Views.DocumentHolder.txtChangeTheme": "Canviar Tema", - "PE.Views.DocumentHolder.txtColumnAlign": "Alineació de Columnes", - "PE.Views.DocumentHolder.txtDecreaseArg": "Disminuir la mida de l’argument", + "PE.Views.DocumentHolder.txtChangeLayout": "Canvia la disposició", + "PE.Views.DocumentHolder.txtChangeTheme": "Canvia el tema", + "PE.Views.DocumentHolder.txtColumnAlign": "Alineació de la columna", + "PE.Views.DocumentHolder.txtDecreaseArg": "Redueix la mida de l'argument", "PE.Views.DocumentHolder.txtDeleteArg": "Suprimeix l'argument", - "PE.Views.DocumentHolder.txtDeleteBreak": "Suprimeix la pausa manual", - "PE.Views.DocumentHolder.txtDeleteChars": "Esborrar els caràcters adjunts", - "PE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "Esborrar els caràcters i els separadors adjunts", + "PE.Views.DocumentHolder.txtDeleteBreak": "Suprimeix el salt manual", + "PE.Views.DocumentHolder.txtDeleteChars": "Suprimeix els caràcters adjunts", + "PE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "Suprimeix els caràcters i els separadors adjunts", "PE.Views.DocumentHolder.txtDeleteEq": "Suprimeix l’equació", "PE.Views.DocumentHolder.txtDeleteGroupChar": "Suprimeix el gràfic", - "PE.Views.DocumentHolder.txtDeleteRadical": "Elimina el radical", - "PE.Views.DocumentHolder.txtDeleteSlide": "Esborrar Diapositiva", - "PE.Views.DocumentHolder.txtDistribHor": "Distribuïu Horitzontalment", - "PE.Views.DocumentHolder.txtDistribVert": "Distribuïu Verticalment", - "PE.Views.DocumentHolder.txtDuplicateSlide": "Duplicar Diapositiva", - "PE.Views.DocumentHolder.txtFractionLinear": "Canviar a fracció lineal", - "PE.Views.DocumentHolder.txtFractionSkewed": "Canviar a fracció inclinada", + "PE.Views.DocumentHolder.txtDeleteRadical": "Suprimeix el radical", + "PE.Views.DocumentHolder.txtDeleteSlide": "Suprimeix la diapositiva", + "PE.Views.DocumentHolder.txtDistribHor": "Distribueix horitzontalment", + "PE.Views.DocumentHolder.txtDistribVert": "Distribueix verticalment", + "PE.Views.DocumentHolder.txtDuplicateSlide": "Duplica la diapositiva", + "PE.Views.DocumentHolder.txtFractionLinear": "Canvia a fracció lineal", + "PE.Views.DocumentHolder.txtFractionSkewed": "Canvia a fracció inclinada", "PE.Views.DocumentHolder.txtFractionStacked": "Canvia a fracció apilada", - "PE.Views.DocumentHolder.txtGroup": "Agrupar", + "PE.Views.DocumentHolder.txtGroup": "Agrupa", "PE.Views.DocumentHolder.txtGroupCharOver": "Caràcter sobre el text", "PE.Views.DocumentHolder.txtGroupCharUnder": "Caràcter sota el text", - "PE.Views.DocumentHolder.txtHideBottom": "Amagar vora del botó", - "PE.Views.DocumentHolder.txtHideBottomLimit": "Amagar límit del botó", - "PE.Views.DocumentHolder.txtHideCloseBracket": "Amagar el claudàtor del tancament", - "PE.Views.DocumentHolder.txtHideDegree": "Amagar el grau", - "PE.Views.DocumentHolder.txtHideHor": "Amagar línia horitzontal", - "PE.Views.DocumentHolder.txtHideLB": "Amagar la línia del botó inferior esquerra", - "PE.Views.DocumentHolder.txtHideLeft": "Amagar la vora esquerra", - "PE.Views.DocumentHolder.txtHideLT": "Amagar la línia superior esquerra", - "PE.Views.DocumentHolder.txtHideOpenBracket": "Amagar el suport d’obertura", - "PE.Views.DocumentHolder.txtHidePlaceholder": "Amagar el marcador de lloc", - "PE.Views.DocumentHolder.txtHideRight": "Amagar la vora dreta", - "PE.Views.DocumentHolder.txtHideTop": "Amagar la vora superior", - "PE.Views.DocumentHolder.txtHideTopLimit": "Amagar el límit superior", - "PE.Views.DocumentHolder.txtHideVer": "Amagar línia vertical", + "PE.Views.DocumentHolder.txtHideBottom": "Amaga la vora inferior", + "PE.Views.DocumentHolder.txtHideBottomLimit": "Amaga el límit inferior", + "PE.Views.DocumentHolder.txtHideCloseBracket": "Amaga el claudàtor de tancament", + "PE.Views.DocumentHolder.txtHideDegree": "Amaga el grau", + "PE.Views.DocumentHolder.txtHideHor": "Amaga la línia horitzontal", + "PE.Views.DocumentHolder.txtHideLB": "Amaga la línia inferior esquerra", + "PE.Views.DocumentHolder.txtHideLeft": "Amaga la vora esquerra", + "PE.Views.DocumentHolder.txtHideLT": "Amaga la línia superior esquerra", + "PE.Views.DocumentHolder.txtHideOpenBracket": "Amaga el claudàtor d’obertura", + "PE.Views.DocumentHolder.txtHidePlaceholder": "Amaga el marcador de posició", + "PE.Views.DocumentHolder.txtHideRight": "Amaga la vora dreta", + "PE.Views.DocumentHolder.txtHideTop": "Amaga la vora superior", + "PE.Views.DocumentHolder.txtHideTopLimit": "Amaga el límit superior", + "PE.Views.DocumentHolder.txtHideVer": "Amaga la línia vertical", "PE.Views.DocumentHolder.txtIncreaseArg": "Augmenta la mida de l'argument", - "PE.Views.DocumentHolder.txtInsertArgAfter": "Inseriu argument després", - "PE.Views.DocumentHolder.txtInsertArgBefore": "Inseriu argument abans", - "PE.Views.DocumentHolder.txtInsertBreak": "Inserir falca manual", - "PE.Views.DocumentHolder.txtInsertEqAfter": "Inserir equació després de", - "PE.Views.DocumentHolder.txtInsertEqBefore": "Inserir equació abans de", - "PE.Views.DocumentHolder.txtKeepTextOnly": "Mantenir sols text", - "PE.Views.DocumentHolder.txtLimitChange": "Canviar límits d'ubicació", + "PE.Views.DocumentHolder.txtInsertArgAfter": "Insereix l'argument després", + "PE.Views.DocumentHolder.txtInsertArgBefore": "Insereix l'argument abans", + "PE.Views.DocumentHolder.txtInsertBreak": "Insereix un salt manual", + "PE.Views.DocumentHolder.txtInsertEqAfter": "Insereix equació després de", + "PE.Views.DocumentHolder.txtInsertEqBefore": "Insereix equació abans de", + "PE.Views.DocumentHolder.txtKeepTextOnly": "Conserva només el text", + "PE.Views.DocumentHolder.txtLimitChange": "Canvia els límits de la ubicació", "PE.Views.DocumentHolder.txtLimitOver": "Límit damunt del text", "PE.Views.DocumentHolder.txtLimitUnder": "Límit sota el text", - "PE.Views.DocumentHolder.txtMatchBrackets": "Relaciona els claudàtors amb l'alçada de l'argument", + "PE.Views.DocumentHolder.txtMatchBrackets": "Assigna els claudàtors a l'alçada de l'argument", "PE.Views.DocumentHolder.txtMatrixAlign": "Alineació de la matriu", - "PE.Views.DocumentHolder.txtNewSlide": "Nova Diapositiva", + "PE.Views.DocumentHolder.txtNewSlide": "Diapositiva nova", "PE.Views.DocumentHolder.txtOverbar": "Barra sobre el text", - "PE.Views.DocumentHolder.txtPasteDestFormat": "Utilitzeu el tema de destinació", + "PE.Views.DocumentHolder.txtPasteDestFormat": "Fes servir el tema de destinació", "PE.Views.DocumentHolder.txtPastePicture": "Imatge", - "PE.Views.DocumentHolder.txtPasteSourceFormat": "Mantenir el format original", - "PE.Views.DocumentHolder.txtPressLink": "Premeu CTRL i feu clic a enllaç", - "PE.Views.DocumentHolder.txtPreview": "Iniciar presentació de diapositives", - "PE.Views.DocumentHolder.txtPrintSelection": "Imprimir Selecció", - "PE.Views.DocumentHolder.txtRemFractionBar": "Treure la barra de fracció", - "PE.Views.DocumentHolder.txtRemLimit": "Esborrar límit", - "PE.Views.DocumentHolder.txtRemoveAccentChar": "Treure caràcter d'accent", - "PE.Views.DocumentHolder.txtRemoveBar": "Esborrar barra", - "PE.Views.DocumentHolder.txtRemScripts": "Esborrar text", - "PE.Views.DocumentHolder.txtRemSubscript": "Esborrar subíndexs", - "PE.Views.DocumentHolder.txtRemSuperscript": "Esborrar superíndexs", - "PE.Views.DocumentHolder.txtResetLayout": "Anular Diapositiva", - "PE.Views.DocumentHolder.txtScriptsAfter": "Índexs després de text", - "PE.Views.DocumentHolder.txtScriptsBefore": "Índexs abans de text", + "PE.Views.DocumentHolder.txtPasteSourceFormat": "Conserva el format original", + "PE.Views.DocumentHolder.txtPressLink": "Prem CTRL i clica a l'enllaç", + "PE.Views.DocumentHolder.txtPreview": "Inicia la presentació de diapositives", + "PE.Views.DocumentHolder.txtPrintSelection": "Imprimeix selecció", + "PE.Views.DocumentHolder.txtRemFractionBar": "Suprimeix la barra de fracció", + "PE.Views.DocumentHolder.txtRemLimit": "Suprimeix el límit", + "PE.Views.DocumentHolder.txtRemoveAccentChar": "Suprimeix el caràcter d'accent", + "PE.Views.DocumentHolder.txtRemoveBar": "Suprimeix la barra", + "PE.Views.DocumentHolder.txtRemScripts": "Suprimeix els scripts", + "PE.Views.DocumentHolder.txtRemSubscript": "Suprimeix el subíndex", + "PE.Views.DocumentHolder.txtRemSuperscript": "Suprimir el superíndex", + "PE.Views.DocumentHolder.txtResetLayout": "Reinicia la diapositiva", + "PE.Views.DocumentHolder.txtScriptsAfter": "Scripts després de text", + "PE.Views.DocumentHolder.txtScriptsBefore": "Scripts abans de text", "PE.Views.DocumentHolder.txtSelectAll": "Selecciona-ho tot ", "PE.Views.DocumentHolder.txtShowBottomLimit": "Mostra el límit inferior", "PE.Views.DocumentHolder.txtShowCloseBracket": "Mostra el claudàtor de tancament", - "PE.Views.DocumentHolder.txtShowDegree": "Mostrar grau", + "PE.Views.DocumentHolder.txtShowDegree": "Mostra el grau", "PE.Views.DocumentHolder.txtShowOpenBracket": "Mostra el claudàtor d’obertura", - "PE.Views.DocumentHolder.txtShowPlaceholder": "Mostra el marcador de lloc", + "PE.Views.DocumentHolder.txtShowPlaceholder": "Mostra el marcador de posició", "PE.Views.DocumentHolder.txtShowTopLimit": "Mostra el límit superior", "PE.Views.DocumentHolder.txtSlide": "Diapositiva", - "PE.Views.DocumentHolder.txtSlideHide": "Amagar Diapositiva", - "PE.Views.DocumentHolder.txtStretchBrackets": "Estirar claudàtors", + "PE.Views.DocumentHolder.txtSlideHide": "Amaga la diapositiva", + "PE.Views.DocumentHolder.txtStretchBrackets": "Estira els claudàtors", "PE.Views.DocumentHolder.txtTop": "Superior", - "PE.Views.DocumentHolder.txtUnderbar": "Barra sota text", - "PE.Views.DocumentHolder.txtUngroup": "Des agrupar", + "PE.Views.DocumentHolder.txtUnderbar": "Barra sota el text", + "PE.Views.DocumentHolder.txtUngroup": "Desagrupar", "PE.Views.DocumentHolder.vertAlignText": "Alineació Vertical", - "PE.Views.DocumentPreview.goToSlideText": "Anar a Diapositiva", + "PE.Views.DocumentPreview.goToSlideText": "Ves a la diapositiva", "PE.Views.DocumentPreview.slideIndexText": "Diapositiva {0} de {1}", - "PE.Views.DocumentPreview.txtClose": "Tancar presentació", - "PE.Views.DocumentPreview.txtEndSlideshow": "Acabar presentació", - "PE.Views.DocumentPreview.txtExitFullScreen": "Sortir de pantalla completa", - "PE.Views.DocumentPreview.txtFinalMessage": "Final de la previsualització de diapositives. Feu clic per sortir.", - "PE.Views.DocumentPreview.txtFullScreen": "Pantalla Completa", - "PE.Views.DocumentPreview.txtNext": "Següent Diapositiva", + "PE.Views.DocumentPreview.txtClose": "Tanca la presentació", + "PE.Views.DocumentPreview.txtEndSlideshow": "Finalitza la presentació de diapositives", + "PE.Views.DocumentPreview.txtExitFullScreen": "Surt de la pantalla sencera", + "PE.Views.DocumentPreview.txtFinalMessage": "Final de la vista prèvia de diapositives. Cliqueu per sortir.", + "PE.Views.DocumentPreview.txtFullScreen": "Pantalla sencera", + "PE.Views.DocumentPreview.txtNext": "Diapositiva següent", "PE.Views.DocumentPreview.txtPageNumInvalid": "El número de diapositiva no és vàlid", - "PE.Views.DocumentPreview.txtPause": "Aturar presentació", - "PE.Views.DocumentPreview.txtPlay": "Iniciar presentació", - "PE.Views.DocumentPreview.txtPrev": "Diapositiva Anterior", - "PE.Views.DocumentPreview.txtReset": "Restablir", - "PE.Views.FileMenu.btnAboutCaption": "Sobre", - "PE.Views.FileMenu.btnBackCaption": "Obrir ubicació del arxiu", - "PE.Views.FileMenu.btnCloseMenuCaption": "Tancar Menú", - "PE.Views.FileMenu.btnCreateNewCaption": "Crear Nou", - "PE.Views.FileMenu.btnDownloadCaption": "Descarregar com a...", + "PE.Views.DocumentPreview.txtPause": "Pausa la presentació", + "PE.Views.DocumentPreview.txtPlay": "Inicia la presentació", + "PE.Views.DocumentPreview.txtPrev": "Diapositiva anterior", + "PE.Views.DocumentPreview.txtReset": "Restableix", + "PE.Views.FileMenu.btnAboutCaption": "Quant a...", + "PE.Views.FileMenu.btnBackCaption": "Obre la ubicació del fitxer", + "PE.Views.FileMenu.btnCloseMenuCaption": "Tanca el menú", + "PE.Views.FileMenu.btnCreateNewCaption": "Crea nou", + "PE.Views.FileMenu.btnDownloadCaption": "Baixar com a...", "PE.Views.FileMenu.btnHelpCaption": "Ajuda...", "PE.Views.FileMenu.btnHistoryCaption": "Historial de versions", - "PE.Views.FileMenu.btnInfoCaption": "Info sobre Presentació...", + "PE.Views.FileMenu.btnInfoCaption": "Informació de la presentació ...", "PE.Views.FileMenu.btnPrintCaption": "Imprimir", - "PE.Views.FileMenu.btnProtectCaption": "Protegir", - "PE.Views.FileMenu.btnRecentFilesCaption": "Obrir recent...", + "PE.Views.FileMenu.btnProtectCaption": "Protegeix", + "PE.Views.FileMenu.btnRecentFilesCaption": "Obre recent...", "PE.Views.FileMenu.btnRenameCaption": "Canvia el nom ...", "PE.Views.FileMenu.btnReturnCaption": "Tornar a la presentació", - "PE.Views.FileMenu.btnRightsCaption": "Drets d'Accés ...", + "PE.Views.FileMenu.btnRightsCaption": "Drets d'accés ...", "PE.Views.FileMenu.btnSaveAsCaption": "Desar com", - "PE.Views.FileMenu.btnSaveCaption": "Desar", - "PE.Views.FileMenu.btnSaveCopyAsCaption": "Guardar Copia com a...", - "PE.Views.FileMenu.btnSettingsCaption": "Configuració Avançada...", - "PE.Views.FileMenu.btnToEditCaption": "Editar Presentació", - "PE.Views.FileMenuPanels.CreateNew.fromBlankText": "De Document en Blanc", - "PE.Views.FileMenuPanels.CreateNew.fromTemplateText": "Des d'una Plantilla", - "PE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Creeu una presentació en blanc nova que podreu estilar i formatar després que es creï durant l'edició. O trieu una de les plantilles per iniciar una presentació d'un cert tipus o propòsit on alguns estils ja s'han aplicat prèviament.", - "PE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nova Presentació", + "PE.Views.FileMenu.btnSaveCaption": "Desa", + "PE.Views.FileMenu.btnSaveCopyAsCaption": "Desa còpia com a...", + "PE.Views.FileMenu.btnSettingsCaption": "Configuració avançada...", + "PE.Views.FileMenu.btnToEditCaption": "Edita la presentació", + "PE.Views.FileMenuPanels.CreateNew.fromBlankText": "Des de zero", + "PE.Views.FileMenuPanels.CreateNew.fromTemplateText": "Des d'una plantilla", + "PE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Creeu una nova presentació en blanc a la qual podreu donar estil i format un cop creada durant l'edició. O bé trieu una de les plantilles per iniciar una presentació d'un determinat tipus o propòsit en la qual ja s'han aplicat prèviament alguns estils.", + "PE.Views.FileMenuPanels.CreateNew.newDocumentText": "Presentació nova", "PE.Views.FileMenuPanels.CreateNew.noTemplatesText": "No hi ha plantilles", - "PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Aplicar", - "PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Afegir Autor", - "PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Afegir Text", + "PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Aplica", + "PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Afegeix l'autor", + "PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Afegeix text", "PE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Aplicació", "PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor", - "PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Canviar els drets d’accés", + "PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Canvia els drets d’accés", "PE.Views.FileMenuPanels.DocumentInfo.txtComment": "Comentari", "PE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Creat", - "PE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Última Modificació Per", + "PE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Última modificació feta per", "PE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Última Modificació", "PE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Propietari", "PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Ubicació", - "PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persones que tinguin drets", + "PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persones que tenen drets", "PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Assumpte", "PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Títol", - "PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Penjat", - "PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Canviar els drets d’accés", - "PE.Views.FileMenuPanels.DocumentRights.txtRights": "Persones que tinguin drets", - "PE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Avis", - "PE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Amb Contrasenya", - "PE.Views.FileMenuPanels.ProtectDoc.strProtect": "Protegir Presentació", - "PE.Views.FileMenuPanels.ProtectDoc.strSignature": "Amb Firma", - "PE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Editar Presentació", - "PE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "L’edició eliminarà les signatures de la presentació.
Esteu segur que voleu continuar?", + "PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "S'ha carregat", + "PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Canvia els drets d’accés", + "PE.Views.FileMenuPanels.DocumentRights.txtRights": "Persones que tenen drets", + "PE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Advertiment", + "PE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Amb contrasenya", + "PE.Views.FileMenuPanels.ProtectDoc.strProtect": "Protegeix la presentació", + "PE.Views.FileMenuPanels.ProtectDoc.strSignature": "Amb signatura", + "PE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Edita la presentació", + "PE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "L’edició eliminarà les signatures de la presentació.
Segur que voleu continuar?", "PE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Aquesta presentació ha estat protegida per contrasenya", - "PE.Views.FileMenuPanels.ProtectDoc.txtSigned": "S'han afegit signatures vàlides a la presentació. La presentació està protegida de l'edició.", - "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Algunes de les signatures digitals presentades no són vàlides o no es van poder verificar. La presentació està protegida de l'edició.", - "PE.Views.FileMenuPanels.ProtectDoc.txtView": "Veure signatures", - "PE.Views.FileMenuPanels.Settings.okButtonText": "Aplicar", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Activeu les guies d'alineació", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Activar la auto recuperació", - "PE.Views.FileMenuPanels.Settings.strAutosave": "Activar l'arxivament automàtic", - "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Mode de Coedició", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Altres usuaris veuran els canvis alhora", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Haureu d’acceptar canvis abans de poder-los veure", + "PE.Views.FileMenuPanels.ProtectDoc.txtSigned": "S'han afegit signatures vàlides a la presentació. La presentació està protegida contra l'edició.", + "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Algunes de les signatures digitals presentades no són vàlides o no s'han pogut verificar. La presentació està protegida i no es pot editar.", + "PE.Views.FileMenuPanels.ProtectDoc.txtView": "Mostra les signatures", + "PE.Views.FileMenuPanels.Settings.okButtonText": "Aplica", + "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Activa les guies d'alineació", + "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Activa la recuperació automàtica", + "PE.Views.FileMenuPanels.Settings.strAutosave": "Activa el desament automàtic", + "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Mode de coedició", + "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Els altres usuaris veuran els vostres canvis immediatament", + "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Hauràs d’acceptar els canvis abans de poder-los veure", "PE.Views.FileMenuPanels.Settings.strFast": "Ràpid", - "PE.Views.FileMenuPanels.Settings.strFontRender": "Font Suggerida", - "PE.Views.FileMenuPanels.Settings.strForcesave": "Afegeix una versió a l'emmagatzematge després de fer clic a Desa o Ctrl+S", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Activar els jeroglífics", - "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Configuració de Macros", - "PE.Views.FileMenuPanels.Settings.strPaste": "Tallar, copiar i enganxar", + "PE.Views.FileMenuPanels.Settings.strFontRender": "Tipus de lletra suggerides", + "PE.Views.FileMenuPanels.Settings.strForcesave": "Afegeix la versió a l'emmagatzematge després de clicar a Desa o Ctrl + S", + "PE.Views.FileMenuPanels.Settings.strInputMode": "Activa els jeroglífics", + "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Configuració de les macros", + "PE.Views.FileMenuPanels.Settings.strPaste": "Tallar copia i enganxa", "PE.Views.FileMenuPanels.Settings.strPasteButton": "Mostra el botó d'opcions d’enganxar quan s’enganxa contingut", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Canvis de Col·laboració en temps real", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Activar l’opció de correcció ortogràfica", + "PE.Views.FileMenuPanels.Settings.strShowChanges": "Canvis de col·laboració en temps real", + "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Activa l’opció de correcció ortogràfica", "PE.Views.FileMenuPanels.Settings.strStrict": "Estricte", "PE.Views.FileMenuPanels.Settings.strTheme": "Tema de la interfície", - "PE.Views.FileMenuPanels.Settings.strUnit": "Unitat de Mesura", - "PE.Views.FileMenuPanels.Settings.strZoom": "Valor de Zoom Predeterminat", + "PE.Views.FileMenuPanels.Settings.strUnit": "Unitat de mesura", + "PE.Views.FileMenuPanels.Settings.strZoom": "Valor de zoom predeterminat", "PE.Views.FileMenuPanels.Settings.text10Minutes": "Cada 10 minuts", "PE.Views.FileMenuPanels.Settings.text30Minutes": "Cada 30 minuts", "PE.Views.FileMenuPanels.Settings.text5Minutes": "Cada 5 minuts", - "PE.Views.FileMenuPanels.Settings.text60Minutes": "Cada Hora", - "PE.Views.FileMenuPanels.Settings.textAlignGuides": "Guies d'Alineació", + "PE.Views.FileMenuPanels.Settings.text60Minutes": "Cada hora", + "PE.Views.FileMenuPanels.Settings.textAlignGuides": "Guies d'alineació", "PE.Views.FileMenuPanels.Settings.textAutoRecover": "Recuperació automàtica", - "PE.Views.FileMenuPanels.Settings.textAutoSave": "Guardar Automàticament", - "PE.Views.FileMenuPanels.Settings.textDisabled": "Desactivat", - "PE.Views.FileMenuPanels.Settings.textForceSave": "Desant versions intermèdies", - "PE.Views.FileMenuPanels.Settings.textMinute": "Cada Minut", - "PE.Views.FileMenuPanels.Settings.txtAll": "Veure Tot", - "PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Opcions de Correcció Automàtica ...", + "PE.Views.FileMenuPanels.Settings.textAutoSave": "Desament automàtic", + "PE.Views.FileMenuPanels.Settings.textDisabled": "Inhabilitat", + "PE.Views.FileMenuPanels.Settings.textForceSave": "S'estan desant versions intermèdies", + "PE.Views.FileMenuPanels.Settings.textMinute": "Cada minut", + "PE.Views.FileMenuPanels.Settings.txtAll": "Mostra-ho tot", + "PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Opcions de correcció automàtica ...", "PE.Views.FileMenuPanels.Settings.txtCacheMode": "Mode de memòria cau per defecte", "PE.Views.FileMenuPanels.Settings.txtCm": "Centímetre", - "PE.Views.FileMenuPanels.Settings.txtFitSlide": "Ajustar a la diapositiva", - "PE.Views.FileMenuPanels.Settings.txtFitWidth": "Ajusta a Amplada", + "PE.Views.FileMenuPanels.Settings.txtFitSlide": "Ajusta a la diapositiva", + "PE.Views.FileMenuPanels.Settings.txtFitWidth": "Ajusta-ho a l'amplària", "PE.Views.FileMenuPanels.Settings.txtInch": "Polzada", - "PE.Views.FileMenuPanels.Settings.txtInput": "Entrada Alternativa", - "PE.Views.FileMenuPanels.Settings.txtLast": "Veure Últims", + "PE.Views.FileMenuPanels.Settings.txtInput": "Entrada alternativa", + "PE.Views.FileMenuPanels.Settings.txtLast": "Mostra l'últim", "PE.Views.FileMenuPanels.Settings.txtMac": "com a OS X", "PE.Views.FileMenuPanels.Settings.txtNative": "Natiu", - "PE.Views.FileMenuPanels.Settings.txtProofing": "Prova", + "PE.Views.FileMenuPanels.Settings.txtProofing": "Correcció", "PE.Views.FileMenuPanels.Settings.txtPt": "Punt", - "PE.Views.FileMenuPanels.Settings.txtRunMacros": "Activa tot", - "PE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Habiliteu totes les macros sense una notificació", - "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Comprovació Ortogràfica", - "PE.Views.FileMenuPanels.Settings.txtStopMacros": "Inhabilita Tot", - "PE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Desactiveu totes les macros sense una notificació", - "PE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostra la Notificació", - "PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Desactiveu totes les macros amb una notificació", + "PE.Views.FileMenuPanels.Settings.txtRunMacros": "Habilita-ho tot", + "PE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Habilita totes les macros sense una notificació", + "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Revisió ortogràfica", + "PE.Views.FileMenuPanels.Settings.txtStopMacros": "Inhabilita-ho tot", + "PE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Inhabilita totes les macros sense una notificació", + "PE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostra la notificació", + "PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Inhabilita totes les macros amb una notificació", "PE.Views.FileMenuPanels.Settings.txtWin": "com a Windows", - "PE.Views.HeaderFooterDialog.applyAllText": "Aplicar a tot", - "PE.Views.HeaderFooterDialog.applyText": "Aplicar", - "PE.Views.HeaderFooterDialog.diffLanguage": "No podeu utilitzar un format de data en un idioma diferent al mestre de diapositives.
Per canviar el màster, feu clic a \"Aplica a tot\" en comptes de \"Aplicar\"", + "PE.Views.HeaderFooterDialog.applyAllText": "Aplica-ho a tot", + "PE.Views.HeaderFooterDialog.applyText": "Aplica", + "PE.Views.HeaderFooterDialog.diffLanguage": "No podeu utilitzar un format de data en un idioma diferent del patró de diapositives.
Per canviar el patró, cliqueu a \"Aplica a tots\" en comptes de \"Aplica\".", "PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Avis", "PE.Views.HeaderFooterDialog.textDateTime": "Data i hora", "PE.Views.HeaderFooterDialog.textFixed": "Fixat", - "PE.Views.HeaderFooterDialog.textFooter": "Text a peu de pàgina", + "PE.Views.HeaderFooterDialog.textFooter": "Text al peu de pàgina", "PE.Views.HeaderFooterDialog.textFormat": "Formats", "PE.Views.HeaderFooterDialog.textLang": "Idioma", - "PE.Views.HeaderFooterDialog.textNotTitle": "No mostrar a diapositiva de títol", - "PE.Views.HeaderFooterDialog.textPreview": "Vista prèvia", - "PE.Views.HeaderFooterDialog.textSlideNum": "Número Diapositiva", + "PE.Views.HeaderFooterDialog.textNotTitle": "No ho mostris al títol de la diapositiva", + "PE.Views.HeaderFooterDialog.textPreview": "Visualització prèvia", + "PE.Views.HeaderFooterDialog.textSlideNum": "Número de diapositiva", "PE.Views.HeaderFooterDialog.textTitle": "Configuració del peu de pàgina", "PE.Views.HeaderFooterDialog.textUpdate": "Actualitza automàticament", - "PE.Views.HyperlinkSettingsDialog.strDisplay": "Mostrar", + "PE.Views.HyperlinkSettingsDialog.strDisplay": "Visualització", "PE.Views.HyperlinkSettingsDialog.strLinkTo": "Enllaç a", "PE.Views.HyperlinkSettingsDialog.textDefault": "Fragment de text seleccionat", - "PE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Introduïu el títol aquí", - "PE.Views.HyperlinkSettingsDialog.textEmptyLink": "Introduïu l'enllaç aquí", - "PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Introduïu informació de eines aquí", + "PE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Introdueix el títol aquí", + "PE.Views.HyperlinkSettingsDialog.textEmptyLink": "Introdueix l'enllaç aquí", + "PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Introdueix la informació sobre l'eina aquí", "PE.Views.HyperlinkSettingsDialog.textExternalLink": "Enllaç extern", - "PE.Views.HyperlinkSettingsDialog.textInternalLink": "Diapositiva en aquesta Presentació", + "PE.Views.HyperlinkSettingsDialog.textInternalLink": "Diapositiva en aquesta presentació", "PE.Views.HyperlinkSettingsDialog.textSlides": "Diapositives", "PE.Views.HyperlinkSettingsDialog.textTipText": "Informació en pantalla", - "PE.Views.HyperlinkSettingsDialog.textTitle": "Característiques de hipervincle", + "PE.Views.HyperlinkSettingsDialog.textTitle": "Configuració de l’enllaç", "PE.Views.HyperlinkSettingsDialog.txtEmpty": "Aquest camp és obligatori", - "PE.Views.HyperlinkSettingsDialog.txtFirst": "Primera Diapositiva", - "PE.Views.HyperlinkSettingsDialog.txtLast": "Última Diapositiva", - "PE.Views.HyperlinkSettingsDialog.txtNext": "Següent Diapositiva", - "PE.Views.HyperlinkSettingsDialog.txtNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.example.com\"", - "PE.Views.HyperlinkSettingsDialog.txtPrev": "Diapositiva Anterior", + "PE.Views.HyperlinkSettingsDialog.txtFirst": "Primera diapositiva", + "PE.Views.HyperlinkSettingsDialog.txtLast": "Última diapositiva", + "PE.Views.HyperlinkSettingsDialog.txtNext": "Diapositiva següent", + "PE.Views.HyperlinkSettingsDialog.txtNotUrl": "Aquest camp hauria de ser un enllaç amb el format \"http://www.example.com\"", + "PE.Views.HyperlinkSettingsDialog.txtPrev": "Diapositiva anterior", "PE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Aquest camp està limitat a 2083 caràcters", "PE.Views.HyperlinkSettingsDialog.txtSlide": "Diapositiva", "PE.Views.ImageSettings.textAdvanced": "Mostra la configuració avançada", "PE.Views.ImageSettings.textCrop": "Retallar", - "PE.Views.ImageSettings.textCropFill": "Omplir", + "PE.Views.ImageSettings.textCropFill": "Emplena", "PE.Views.ImageSettings.textCropFit": "Ajusta", - "PE.Views.ImageSettings.textEdit": "Editar", - "PE.Views.ImageSettings.textEditObject": "Editar l'Objecte", - "PE.Views.ImageSettings.textFitSlide": "Ajustar a la diapositiva", - "PE.Views.ImageSettings.textFlip": "Voltejar", + "PE.Views.ImageSettings.textEdit": "Edita", + "PE.Views.ImageSettings.textEditObject": "Edita l'objecte", + "PE.Views.ImageSettings.textFitSlide": "Ajusta a la diapositiva", + "PE.Views.ImageSettings.textFlip": "Capgira", "PE.Views.ImageSettings.textFromFile": "Des d'un fitxer", - "PE.Views.ImageSettings.textFromStorage": "Des d'Emmagatzematge", - "PE.Views.ImageSettings.textFromUrl": "Des d'un Enllaç", + "PE.Views.ImageSettings.textFromStorage": "Des de l’emmagatzematge", + "PE.Views.ImageSettings.textFromUrl": "Des de l'URL", "PE.Views.ImageSettings.textHeight": "Alçada", "PE.Views.ImageSettings.textHint270": "Girar 90° a l'esquerra", "PE.Views.ImageSettings.textHint90": "Girar 90° a la dreta", - "PE.Views.ImageSettings.textHintFlipH": "Voltejar Horitzontalment", - "PE.Views.ImageSettings.textHintFlipV": "Voltejar Verticalment", - "PE.Views.ImageSettings.textInsert": "Canviar Imatge", - "PE.Views.ImageSettings.textOriginalSize": "Mida Actual", + "PE.Views.ImageSettings.textHintFlipH": "Capgira horitzontalment", + "PE.Views.ImageSettings.textHintFlipV": "Capgira verticalment", + "PE.Views.ImageSettings.textInsert": "Substitueix la imatge", + "PE.Views.ImageSettings.textOriginalSize": "Mida real", "PE.Views.ImageSettings.textRotate90": "Girar 90°", "PE.Views.ImageSettings.textRotation": "Rotació", "PE.Views.ImageSettings.textSize": "Mida", "PE.Views.ImageSettings.textWidth": "Amplada", - "PE.Views.ImageSettingsAdvanced.textAlt": "Text Alternatiu", + "PE.Views.ImageSettingsAdvanced.textAlt": "Text alternatiu", "PE.Views.ImageSettingsAdvanced.textAltDescription": "Descripció", - "PE.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.", + "PE.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.", "PE.Views.ImageSettingsAdvanced.textAltTitle": "Títol", "PE.Views.ImageSettingsAdvanced.textAngle": "Angle", - "PE.Views.ImageSettingsAdvanced.textFlipped": "Voltejat", + "PE.Views.ImageSettingsAdvanced.textFlipped": "Capgirat", "PE.Views.ImageSettingsAdvanced.textHeight": "Alçada", "PE.Views.ImageSettingsAdvanced.textHorizontally": "Horitzontalment", - "PE.Views.ImageSettingsAdvanced.textKeepRatio": "Proporcions Constants", - "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Mida Actual", + "PE.Views.ImageSettingsAdvanced.textKeepRatio": "Proporcions constants", + "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Mida real", "PE.Views.ImageSettingsAdvanced.textPlacement": "Ubicació", "PE.Views.ImageSettingsAdvanced.textPosition": "Posició", "PE.Views.ImageSettingsAdvanced.textRotation": "Rotació", "PE.Views.ImageSettingsAdvanced.textSize": "Mida", - "PE.Views.ImageSettingsAdvanced.textTitle": "Imatge - Configuració Avançada", + "PE.Views.ImageSettingsAdvanced.textTitle": "Imatge - configuració avançada", "PE.Views.ImageSettingsAdvanced.textVertically": "Verticalment", "PE.Views.ImageSettingsAdvanced.textWidth": "Amplada", - "PE.Views.LeftMenu.tipAbout": "Sobre", + "PE.Views.LeftMenu.tipAbout": "Quant a...", "PE.Views.LeftMenu.tipChat": "Xat", "PE.Views.LeftMenu.tipComments": "Comentaris", - "PE.Views.LeftMenu.tipPlugins": "Connectors", + "PE.Views.LeftMenu.tipPlugins": "Complements", "PE.Views.LeftMenu.tipSearch": "Cerca", "PE.Views.LeftMenu.tipSlides": "Diapositives", - "PE.Views.LeftMenu.tipSupport": "Opinió & Suport", + "PE.Views.LeftMenu.tipSupport": "Comentaris i servei d'atenció al client", "PE.Views.LeftMenu.tipTitles": "Títols", - "PE.Views.LeftMenu.txtDeveloper": "MODALITAT DE DESENVOLUPADOR", - "PE.Views.LeftMenu.txtLimit": "Limitar l'accés", - "PE.Views.LeftMenu.txtTrial": "ESTAT DE PROVA", + "PE.Views.LeftMenu.txtDeveloper": "MODE PER A DESENVOLUPADORS", + "PE.Views.LeftMenu.txtLimit": "Limita l'accés", + "PE.Views.LeftMenu.txtTrial": "MODE DE PROVA", "PE.Views.LeftMenu.txtTrialDev": "Mode de desenvolupador de prova", - "PE.Views.ParagraphSettings.strLineHeight": "Espai entre Línies", - "PE.Views.ParagraphSettings.strParagraphSpacing": "Espaiat de Paràgraf", + "PE.Views.ParagraphSettings.strLineHeight": "Interlineat", + "PE.Views.ParagraphSettings.strParagraphSpacing": "Espaiat del paràgraf", "PE.Views.ParagraphSettings.strSpacingAfter": "Després", "PE.Views.ParagraphSettings.strSpacingBefore": "Abans", "PE.Views.ParagraphSettings.textAdvanced": "Mostra la configuració avançada", "PE.Views.ParagraphSettings.textAt": "A", - "PE.Views.ParagraphSettings.textAtLeast": "Al menys", - "PE.Views.ParagraphSettings.textAuto": "Múltiples", - "PE.Views.ParagraphSettings.textExact": "Exacte", + "PE.Views.ParagraphSettings.textAtLeast": "pel cap baix", + "PE.Views.ParagraphSettings.textAuto": "Múltiple", + "PE.Views.ParagraphSettings.textExact": "Exactament", "PE.Views.ParagraphSettings.txtAutoText": "Automàtic", - "PE.Views.ParagraphSettingsAdvanced.noTabs": "Les pestanyes especificades apareixeran en aquest camp", - "PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Tot majúscules", - "PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Doble ratllat", - "PE.Views.ParagraphSettingsAdvanced.strIndent": "Retirades", + "PE.Views.ParagraphSettingsAdvanced.noTabs": "Els tabuladors especificats apareixeran en aquest camp", + "PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Tot en majúscules", + "PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Ratllat doble", + "PE.Views.ParagraphSettingsAdvanced.strIndent": "Sagnies", "PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Esquerra", - "PE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Espai entre Línies", + "PE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Interlineat", "PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Dreta", "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Després", "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Abans", "PE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Especial", - "PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Font", - "PE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Sagnat i Espaiat", - "PE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Majúscules petites", - "PE.Views.ParagraphSettingsAdvanced.strSpacing": "Espai", - "PE.Views.ParagraphSettingsAdvanced.strStrike": "Ratllar", + "PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Tipus de lletra", + "PE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Sagnia i espaiat", + "PE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Versaletes", + "PE.Views.ParagraphSettingsAdvanced.strSpacing": "Espaiat", + "PE.Views.ParagraphSettingsAdvanced.strStrike": "Ratllat", "PE.Views.ParagraphSettingsAdvanced.strSubscript": "Subíndex", "PE.Views.ParagraphSettingsAdvanced.strSuperscript": "Superíndex", - "PE.Views.ParagraphSettingsAdvanced.strTabs": "Pestanya", + "PE.Views.ParagraphSettingsAdvanced.strTabs": "Tabuladors", "PE.Views.ParagraphSettingsAdvanced.textAlign": "Alineació", - "PE.Views.ParagraphSettingsAdvanced.textAuto": "Múltiples", - "PE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espaiat de caràcters", - "PE.Views.ParagraphSettingsAdvanced.textDefault": "Pestanya predeterminada", + "PE.Views.ParagraphSettingsAdvanced.textAuto": "Múltiple", + "PE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espaiat entre caràcters", + "PE.Views.ParagraphSettingsAdvanced.textDefault": "Tabulació predeterminada", "PE.Views.ParagraphSettingsAdvanced.textEffects": "Efectes", "PE.Views.ParagraphSettingsAdvanced.textExact": "Exactament", "PE.Views.ParagraphSettingsAdvanced.textFirstLine": "Primera línia", - "PE.Views.ParagraphSettingsAdvanced.textHanging": "Penjat", + "PE.Views.ParagraphSettingsAdvanced.textHanging": "Sagnia francesa", "PE.Views.ParagraphSettingsAdvanced.textJustified": "Justificat", "PE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(cap)", - "PE.Views.ParagraphSettingsAdvanced.textRemove": "Esborrar", - "PE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Esborrar tot", + "PE.Views.ParagraphSettingsAdvanced.textRemove": "Suprimeix", + "PE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Suprimeix-ho tot", "PE.Views.ParagraphSettingsAdvanced.textSet": "Especificar", "PE.Views.ParagraphSettingsAdvanced.textTabCenter": "Centre", "PE.Views.ParagraphSettingsAdvanced.textTabLeft": "Esquerra", - "PE.Views.ParagraphSettingsAdvanced.textTabPosition": "Posició de Pestanya", + "PE.Views.ParagraphSettingsAdvanced.textTabPosition": "Posició del tabulador", "PE.Views.ParagraphSettingsAdvanced.textTabRight": "Dreta", - "PE.Views.ParagraphSettingsAdvanced.textTitle": "Paràgraf - Configuració Avançada", + "PE.Views.ParagraphSettingsAdvanced.textTitle": "Paràgraf - configuració avançada", "PE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automàtic", - "PE.Views.RightMenu.txtChartSettings": "Paràmetres del diagrama", - "PE.Views.RightMenu.txtImageSettings": "Configuració Imatge", - "PE.Views.RightMenu.txtParagraphSettings": "Configuració de paràgraf", - "PE.Views.RightMenu.txtShapeSettings": "Configuració de la Forma", - "PE.Views.RightMenu.txtSignatureSettings": "Configuració de la Firma", - "PE.Views.RightMenu.txtSlideSettings": "Configuració de la Diapositiva", + "PE.Views.RightMenu.txtChartSettings": "Configuració del gràfic", + "PE.Views.RightMenu.txtImageSettings": "Configuració de la imatge", + "PE.Views.RightMenu.txtParagraphSettings": "Configuració del paràgraf", + "PE.Views.RightMenu.txtShapeSettings": "Configuració de la forma", + "PE.Views.RightMenu.txtSignatureSettings": "Configuració de la signatura", + "PE.Views.RightMenu.txtSlideSettings": "Configuració de la diapositiva", "PE.Views.RightMenu.txtTableSettings": "Configuració de la taula", - "PE.Views.RightMenu.txtTextArtSettings": "Configuració de l'Art de Text", + "PE.Views.RightMenu.txtTextArtSettings": "Configuració de la galeria de text", "PE.Views.ShapeSettings.strBackground": "Color de fons", "PE.Views.ShapeSettings.strChange": "Canvia la forma automàtica", "PE.Views.ShapeSettings.strColor": "Color", - "PE.Views.ShapeSettings.strFill": "Omplir", - "PE.Views.ShapeSettings.strForeground": "Color de Primer Pla", + "PE.Views.ShapeSettings.strFill": "Emplena", + "PE.Views.ShapeSettings.strForeground": "Color de primer pla", "PE.Views.ShapeSettings.strPattern": "Patró", - "PE.Views.ShapeSettings.strShadow": "Mostra ombra", + "PE.Views.ShapeSettings.strShadow": "Mostra l'ombra", "PE.Views.ShapeSettings.strSize": "Mida", "PE.Views.ShapeSettings.strStroke": "Línia", "PE.Views.ShapeSettings.strTransparency": "Opacitat", "PE.Views.ShapeSettings.strType": "Tipus", "PE.Views.ShapeSettings.textAdvanced": "Mostra la configuració avançada", "PE.Views.ShapeSettings.textAngle": "Angle", - "PE.Views.ShapeSettings.textBorderSizeErr": "El valor introduït és incorrecte.
Introduïu un valor entre 0 pt i 1584 pt.", - "PE.Views.ShapeSettings.textColor": "Color de farciment", + "PE.Views.ShapeSettings.textBorderSizeErr": "El valor introduït no és correcte.
Introduïu un valor entre 0 pt i 1584 pt.", + "PE.Views.ShapeSettings.textColor": "Color d'emplenament", "PE.Views.ShapeSettings.textDirection": "Direcció", - "PE.Views.ShapeSettings.textEmptyPattern": "Sense Patró", - "PE.Views.ShapeSettings.textFlip": "Voltejar", + "PE.Views.ShapeSettings.textEmptyPattern": "Sense patró", + "PE.Views.ShapeSettings.textFlip": "Capgira", "PE.Views.ShapeSettings.textFromFile": "Des d'un fitxer", - "PE.Views.ShapeSettings.textFromStorage": "Des d'Emmagatzematge", - "PE.Views.ShapeSettings.textFromUrl": "Des d'un Enllaç", + "PE.Views.ShapeSettings.textFromStorage": "Des de l’emmagatzematge", + "PE.Views.ShapeSettings.textFromUrl": "Des de l'URL", "PE.Views.ShapeSettings.textGradient": "Degradat", - "PE.Views.ShapeSettings.textGradientFill": "Omplir Degradat", + "PE.Views.ShapeSettings.textGradientFill": "Emplenament de gradient", "PE.Views.ShapeSettings.textHint270": "Girar 90° a l'esquerra", "PE.Views.ShapeSettings.textHint90": "Girar 90° a la dreta", - "PE.Views.ShapeSettings.textHintFlipH": "Voltejar Horitzontalment", - "PE.Views.ShapeSettings.textHintFlipV": "Voltejar Verticalment", - "PE.Views.ShapeSettings.textImageTexture": "Imatge o Textura", + "PE.Views.ShapeSettings.textHintFlipH": "Capgira horitzontalment", + "PE.Views.ShapeSettings.textHintFlipV": "Capgira verticalment", + "PE.Views.ShapeSettings.textImageTexture": "Imatge o textura", "PE.Views.ShapeSettings.textLinear": "Lineal", - "PE.Views.ShapeSettings.textNoFill": "Sense Omplir", + "PE.Views.ShapeSettings.textNoFill": "Sense emplenament", "PE.Views.ShapeSettings.textPatternFill": "Patró", "PE.Views.ShapeSettings.textPosition": "Posició", "PE.Views.ShapeSettings.textRadial": "Radial", "PE.Views.ShapeSettings.textRotate90": "Girar 90°", "PE.Views.ShapeSettings.textRotation": "Rotació", - "PE.Views.ShapeSettings.textSelectImage": "Seleccioneu Imatge", - "PE.Views.ShapeSettings.textSelectTexture": "Seleccionar", - "PE.Views.ShapeSettings.textStretch": "Estirar", + "PE.Views.ShapeSettings.textSelectImage": "Selecciona la imatge", + "PE.Views.ShapeSettings.textSelectTexture": "Selecciona", + "PE.Views.ShapeSettings.textStretch": "Estirament", "PE.Views.ShapeSettings.textStyle": "Estil", - "PE.Views.ShapeSettings.textTexture": "Des d'un Tex", + "PE.Views.ShapeSettings.textTexture": "Des de la textura", "PE.Views.ShapeSettings.textTile": "Mosaic", - "PE.Views.ShapeSettings.tipAddGradientPoint": "Afegir punt de degradat", - "PE.Views.ShapeSettings.tipRemoveGradientPoint": "Elimina el punt de degradat", - "PE.Views.ShapeSettings.txtBrownPaper": "Paper Marró", + "PE.Views.ShapeSettings.tipAddGradientPoint": "Afegeix un punt de degradat", + "PE.Views.ShapeSettings.tipRemoveGradientPoint": "Suprimeix el punt de degradat", + "PE.Views.ShapeSettings.txtBrownPaper": "Paper marró", "PE.Views.ShapeSettings.txtCanvas": "Llenç", "PE.Views.ShapeSettings.txtCarton": "Cartró", - "PE.Views.ShapeSettings.txtDarkFabric": "Fosc Fabric", + "PE.Views.ShapeSettings.txtDarkFabric": "Teixit fosc", "PE.Views.ShapeSettings.txtGrain": "Gra", "PE.Views.ShapeSettings.txtGranite": "Granit", - "PE.Views.ShapeSettings.txtGreyPaper": "Paper Gris", + "PE.Views.ShapeSettings.txtGreyPaper": "Paper gris", "PE.Views.ShapeSettings.txtKnit": "Teixit", "PE.Views.ShapeSettings.txtLeather": "Pell", - "PE.Views.ShapeSettings.txtNoBorders": "Sense Línia", - "PE.Views.ShapeSettings.txtPapyrus": "Papiro", + "PE.Views.ShapeSettings.txtNoBorders": "Sense línia", + "PE.Views.ShapeSettings.txtPapyrus": "Papir", "PE.Views.ShapeSettings.txtWood": "Fusta", "PE.Views.ShapeSettingsAdvanced.strColumns": "Columnes", - "PE.Views.ShapeSettingsAdvanced.strMargins": "Marges Interiors", - "PE.Views.ShapeSettingsAdvanced.textAlt": "Text Alternatiu", + "PE.Views.ShapeSettingsAdvanced.strMargins": "Espaiat del text", + "PE.Views.ShapeSettingsAdvanced.textAlt": "Text alternatiu", "PE.Views.ShapeSettingsAdvanced.textAltDescription": "Descripció", - "PE.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.", + "PE.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.", "PE.Views.ShapeSettingsAdvanced.textAltTitle": "Títol", "PE.Views.ShapeSettingsAdvanced.textAngle": "Angle", "PE.Views.ShapeSettingsAdvanced.textArrows": "Fletxes", - "PE.Views.ShapeSettingsAdvanced.textAutofit": "\nAjustar automàticament", - "PE.Views.ShapeSettingsAdvanced.textBeginSize": "Mida Inicial", - "PE.Views.ShapeSettingsAdvanced.textBeginStyle": "Estil d’Inici", + "PE.Views.ShapeSettingsAdvanced.textAutofit": "Ajustar automàticament", + "PE.Views.ShapeSettingsAdvanced.textBeginSize": "Mida inicial", + "PE.Views.ShapeSettingsAdvanced.textBeginStyle": "Estil inicial", "PE.Views.ShapeSettingsAdvanced.textBevel": "Bisell", "PE.Views.ShapeSettingsAdvanced.textBottom": "Inferior", - "PE.Views.ShapeSettingsAdvanced.textCapType": "Tipus de Cap", + "PE.Views.ShapeSettingsAdvanced.textCapType": "Tipus de majúscules", "PE.Views.ShapeSettingsAdvanced.textColNumber": "Número de columnes", "PE.Views.ShapeSettingsAdvanced.textEndSize": "Mida final", "PE.Views.ShapeSettingsAdvanced.textEndStyle": "Estil final", "PE.Views.ShapeSettingsAdvanced.textFlat": "Pla", - "PE.Views.ShapeSettingsAdvanced.textFlipped": "Voltejat", + "PE.Views.ShapeSettingsAdvanced.textFlipped": "Capgirat", "PE.Views.ShapeSettingsAdvanced.textHeight": "Alçada", "PE.Views.ShapeSettingsAdvanced.textHorizontally": "Horitzontalment", "PE.Views.ShapeSettingsAdvanced.textJoinType": "Tipus d'unió", - "PE.Views.ShapeSettingsAdvanced.textKeepRatio": "Proporcions Constants", + "PE.Views.ShapeSettingsAdvanced.textKeepRatio": "Proporcions constants", "PE.Views.ShapeSettingsAdvanced.textLeft": "Esquerra", "PE.Views.ShapeSettingsAdvanced.textLineStyle": "Estil de línia", - "PE.Views.ShapeSettingsAdvanced.textMiter": "Angle", - "PE.Views.ShapeSettingsAdvanced.textNofit": "No fer-ho Automàticament", - "PE.Views.ShapeSettingsAdvanced.textResizeFit": "Redimensiona la forma per adaptar-se al text", + "PE.Views.ShapeSettingsAdvanced.textMiter": "Delimitador", + "PE.Views.ShapeSettingsAdvanced.textNofit": "No ajustis automàticament", + "PE.Views.ShapeSettingsAdvanced.textResizeFit": "Canviar la mida de la forma per ajustar-la al text", "PE.Views.ShapeSettingsAdvanced.textRight": "Dreta", "PE.Views.ShapeSettingsAdvanced.textRotation": "Rotació", - "PE.Views.ShapeSettingsAdvanced.textRound": "arrodonint", - "PE.Views.ShapeSettingsAdvanced.textShrink": "Reduir el text al desbordament", + "PE.Views.ShapeSettingsAdvanced.textRound": "Rodó", + "PE.Views.ShapeSettingsAdvanced.textShrink": "Encongeix el text quan es desbordi", "PE.Views.ShapeSettingsAdvanced.textSize": "Mida", - "PE.Views.ShapeSettingsAdvanced.textSpacing": "Espai entre columnes", + "PE.Views.ShapeSettingsAdvanced.textSpacing": "Espaiat entre columnes", "PE.Views.ShapeSettingsAdvanced.textSquare": "Quadrat", - "PE.Views.ShapeSettingsAdvanced.textTextBox": "Quadre de Text", - "PE.Views.ShapeSettingsAdvanced.textTitle": "Forma - Configuració Avançada", + "PE.Views.ShapeSettingsAdvanced.textTextBox": "Quadre de text", + "PE.Views.ShapeSettingsAdvanced.textTitle": "Forma - configuració avançada", "PE.Views.ShapeSettingsAdvanced.textTop": "Superior", "PE.Views.ShapeSettingsAdvanced.textVertically": "Verticalment", "PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Gruix i fletxes", "PE.Views.ShapeSettingsAdvanced.textWidth": "Amplada", "PE.Views.ShapeSettingsAdvanced.txtNone": "Cap", - "PE.Views.SignatureSettings.notcriticalErrorTitle": "Avis", - "PE.Views.SignatureSettings.strDelete": "Esborrar la firma", - "PE.Views.SignatureSettings.strDetails": "Detalls de la Firma", - "PE.Views.SignatureSettings.strInvalid": "Firmes invalides", - "PE.Views.SignatureSettings.strSign": "Firmar", - "PE.Views.SignatureSettings.strSignature": "Firma", + "PE.Views.SignatureSettings.notcriticalErrorTitle": "Advertiment", + "PE.Views.SignatureSettings.strDelete": "Suprimeix la signatura", + "PE.Views.SignatureSettings.strDetails": "Detalls de la signatura", + "PE.Views.SignatureSettings.strInvalid": "Les signatures no són vàlides", + "PE.Views.SignatureSettings.strSign": "Signa", + "PE.Views.SignatureSettings.strSignature": "Signatura", "PE.Views.SignatureSettings.strValid": "Signatures vàlides", - "PE.Views.SignatureSettings.txtContinueEditing": "Editar de totes maneres", - "PE.Views.SignatureSettings.txtEditWarning": "L’edició eliminarà les signatures de la presentació.
Esteu segur que voleu continuar?", - "PE.Views.SignatureSettings.txtRemoveWarning": "Voleu eliminar aquesta signatura?
Això no es podrà desfer.", - "PE.Views.SignatureSettings.txtSigned": "S'han afegit signatures vàlides a la presentació. La presentació està protegida de l'edició.", - "PE.Views.SignatureSettings.txtSignedInvalid": "Algunes de les signatures digitals presentades no són vàlides o no es van poder verificar. La presentació està protegida de l'edició.", + "PE.Views.SignatureSettings.txtContinueEditing": "Edita de totes maneres", + "PE.Views.SignatureSettings.txtEditWarning": "L’edició eliminarà les signatures de la presentació.
Segur que voleu continuar?", + "PE.Views.SignatureSettings.txtRemoveWarning": "Voleu eliminar aquesta signatura?
No es podrà desfer.", + "PE.Views.SignatureSettings.txtSigned": "S'han afegit signatures vàlides a la presentació. La presentació està protegida contra l'edició.", + "PE.Views.SignatureSettings.txtSignedInvalid": "Algunes de les signatures digitals presentades no són vàlides o no s'han pogut verificar. La presentació està protegida i no es pot editar.", "PE.Views.SlideSettings.strBackground": "Color de fons", "PE.Views.SlideSettings.strColor": "Color", - "PE.Views.SlideSettings.strDateTime": "Mostrar Data i Hora", + "PE.Views.SlideSettings.strDateTime": "Mostra la data i l'hora", "PE.Views.SlideSettings.strDelay": "Retard", - "PE.Views.SlideSettings.strDuration": "Duració", + "PE.Views.SlideSettings.strDuration": "Durada", "PE.Views.SlideSettings.strEffect": "Efecte", "PE.Views.SlideSettings.strFill": "Fons", - "PE.Views.SlideSettings.strForeground": "Color de Primer Pla", + "PE.Views.SlideSettings.strForeground": "Color de primer pla", "PE.Views.SlideSettings.strPattern": "Patró", - "PE.Views.SlideSettings.strSlideNum": "Mostra el Número de Diapositiva", - "PE.Views.SlideSettings.strStartOnClick": "Arrancar Amb Clic", + "PE.Views.SlideSettings.strSlideNum": "Mostra el número de diapositiva", + "PE.Views.SlideSettings.strStartOnClick": "Inicia clicant", "PE.Views.SlideSettings.strTransparency": "Opacitat", "PE.Views.SlideSettings.textAdvanced": "Mostra la configuració avançada", "PE.Views.SlideSettings.textAngle": "Angle", - "PE.Views.SlideSettings.textApplyAll": "Aplicar a Totes les Diapositives", - "PE.Views.SlideSettings.textBlack": "A través del negre", + "PE.Views.SlideSettings.textApplyAll": "Aplica-ho a totes les diapositives", + "PE.Views.SlideSettings.textBlack": "En negre", "PE.Views.SlideSettings.textBottom": "Inferior", "PE.Views.SlideSettings.textBottomLeft": "Inferior esquerra", "PE.Views.SlideSettings.textBottomRight": "Inferior dreta", "PE.Views.SlideSettings.textClock": "Rellotge", "PE.Views.SlideSettings.textClockwise": "En sentit horari", - "PE.Views.SlideSettings.textColor": "Color de farciment", + "PE.Views.SlideSettings.textColor": "Color d'emplenament", "PE.Views.SlideSettings.textCounterclockwise": "En sentit antihorari", - "PE.Views.SlideSettings.textCover": "Cobrir", + "PE.Views.SlideSettings.textCover": "Portada", "PE.Views.SlideSettings.textDirection": "Direcció", - "PE.Views.SlideSettings.textEmptyPattern": "Sense Patró", - "PE.Views.SlideSettings.textFade": "Difuminar", + "PE.Views.SlideSettings.textEmptyPattern": "Sense patró", + "PE.Views.SlideSettings.textFade": "Esvaïment", "PE.Views.SlideSettings.textFromFile": "Des d'un fitxer", - "PE.Views.SlideSettings.textFromStorage": "Des d'Emmagatzematge", - "PE.Views.SlideSettings.textFromUrl": "Des d'un Enllaç", + "PE.Views.SlideSettings.textFromStorage": "Des de l’emmagatzematge", + "PE.Views.SlideSettings.textFromUrl": "Des de l'URL", "PE.Views.SlideSettings.textGradient": "Degradat", - "PE.Views.SlideSettings.textGradientFill": "Omplir Degradat", - "PE.Views.SlideSettings.textHorizontalIn": "Horitzontal Dins", - "PE.Views.SlideSettings.textHorizontalOut": "Horitzontal Fora", - "PE.Views.SlideSettings.textImageTexture": "Imatge o Textura", + "PE.Views.SlideSettings.textGradientFill": "Emplenament de gradient", + "PE.Views.SlideSettings.textHorizontalIn": "Horitzontal entrant", + "PE.Views.SlideSettings.textHorizontalOut": "Horitzontal sortint", + "PE.Views.SlideSettings.textImageTexture": "Imatge o textura", "PE.Views.SlideSettings.textLeft": "Esquerra", "PE.Views.SlideSettings.textLinear": "Lineal", - "PE.Views.SlideSettings.textNoFill": "Sense Omplir", + "PE.Views.SlideSettings.textNoFill": "Sense emplenament", "PE.Views.SlideSettings.textNone": "Cap", "PE.Views.SlideSettings.textPatternFill": "Patró", "PE.Views.SlideSettings.textPosition": "Posició", - "PE.Views.SlideSettings.textPreview": "Vista prèvia", - "PE.Views.SlideSettings.textPush": "Inserció", + "PE.Views.SlideSettings.textPreview": "Visualització prèvia", + "PE.Views.SlideSettings.textPush": "Empeny", "PE.Views.SlideSettings.textRadial": "Radial", - "PE.Views.SlideSettings.textReset": "Anular Canvis", + "PE.Views.SlideSettings.textReset": "Reinicia els canvis", "PE.Views.SlideSettings.textRight": "Dreta", "PE.Views.SlideSettings.textSec": "s", - "PE.Views.SlideSettings.textSelectImage": "Seleccioneu Imatge", - "PE.Views.SlideSettings.textSelectTexture": "Seleccionar", - "PE.Views.SlideSettings.textSmoothly": "Suavitzar", + "PE.Views.SlideSettings.textSelectImage": "Selecciona la imatge", + "PE.Views.SlideSettings.textSelectTexture": "Selecciona", + "PE.Views.SlideSettings.textSmoothly": "Suau", "PE.Views.SlideSettings.textSplit": "Dividir", - "PE.Views.SlideSettings.textStretch": "Estirar", + "PE.Views.SlideSettings.textStretch": "Estirament", "PE.Views.SlideSettings.textStyle": "Estil", - "PE.Views.SlideSettings.textTexture": "Des d'un Tex", + "PE.Views.SlideSettings.textTexture": "Des de la textura", "PE.Views.SlideSettings.textTile": "Mosaic", "PE.Views.SlideSettings.textTop": "Superior", "PE.Views.SlideSettings.textTopLeft": "Superior esquerra", - "PE.Views.SlideSettings.textTopRight": "Superior dret", - "PE.Views.SlideSettings.textUnCover": "Destapar", - "PE.Views.SlideSettings.textVerticalIn": "Vertical Dins", - "PE.Views.SlideSettings.textVerticalOut": "Vertical Fora", + "PE.Views.SlideSettings.textTopRight": "Superior dreta", + "PE.Views.SlideSettings.textUnCover": "Descobreix", + "PE.Views.SlideSettings.textVerticalIn": "Vertical entrant", + "PE.Views.SlideSettings.textVerticalOut": "Vertical sortint", "PE.Views.SlideSettings.textWedge": "Falca", - "PE.Views.SlideSettings.textWipe": "Netejar", + "PE.Views.SlideSettings.textWipe": "Eliminar", "PE.Views.SlideSettings.textZoom": "Zoom", - "PE.Views.SlideSettings.textZoomIn": "Ampliar", - "PE.Views.SlideSettings.textZoomOut": "Reduir", - "PE.Views.SlideSettings.textZoomRotate": "Ampliació i Girar", - "PE.Views.SlideSettings.tipAddGradientPoint": "Afegir punt de degradat", - "PE.Views.SlideSettings.tipRemoveGradientPoint": "Elimina el punt de degradat", - "PE.Views.SlideSettings.txtBrownPaper": "Paper Marró", + "PE.Views.SlideSettings.textZoomIn": "Amplia", + "PE.Views.SlideSettings.textZoomOut": "Redueix", + "PE.Views.SlideSettings.textZoomRotate": "Amplia i gira", + "PE.Views.SlideSettings.tipAddGradientPoint": "Afegeix un punt de degradat", + "PE.Views.SlideSettings.tipRemoveGradientPoint": "Suprimeix el punt de degradat", + "PE.Views.SlideSettings.txtBrownPaper": "Paper marró", "PE.Views.SlideSettings.txtCanvas": "Llenç", "PE.Views.SlideSettings.txtCarton": "Cartró", - "PE.Views.SlideSettings.txtDarkFabric": "Fosc Fabric", + "PE.Views.SlideSettings.txtDarkFabric": "Teixit fosc", "PE.Views.SlideSettings.txtGrain": "Gra", "PE.Views.SlideSettings.txtGranite": "Granit", - "PE.Views.SlideSettings.txtGreyPaper": "Paper Gris", + "PE.Views.SlideSettings.txtGreyPaper": "Paper gris", "PE.Views.SlideSettings.txtKnit": "Teixit", "PE.Views.SlideSettings.txtLeather": "Pell", - "PE.Views.SlideSettings.txtPapyrus": "Papiro", + "PE.Views.SlideSettings.txtPapyrus": "Papir", "PE.Views.SlideSettings.txtWood": "Fusta", - "PE.Views.SlideshowSettings.textLoop": "Repetir contínuament fins que es prem \"Esc\"", - "PE.Views.SlideshowSettings.textTitle": "Mostra la Configuració", + "PE.Views.SlideshowSettings.textLoop": "Bucle continu fins que es premi \"Esc\"", + "PE.Views.SlideshowSettings.textTitle": "Mostra la configuració", "PE.Views.SlideSizeSettings.strLandscape": "Horitzontal", - "PE.Views.SlideSizeSettings.strPortrait": "Vertical", + "PE.Views.SlideSizeSettings.strPortrait": "Orientació vertical", "PE.Views.SlideSizeSettings.textHeight": "Alçada", - "PE.Views.SlideSizeSettings.textSlideOrientation": "Orientació de la Diapositiva", - "PE.Views.SlideSizeSettings.textSlideSize": "Mida Diapositiva", - "PE.Views.SlideSizeSettings.textTitle": "Configuració de la Mida de Diapositiva", + "PE.Views.SlideSizeSettings.textSlideOrientation": "Orientació de la diapositiva", + "PE.Views.SlideSizeSettings.textSlideSize": "Mida de la diapositiva", + "PE.Views.SlideSizeSettings.textTitle": "Configuració de la mida de diapositiva", "PE.Views.SlideSizeSettings.textWidth": "Amplada", - "PE.Views.SlideSizeSettings.txt35": "35 mm Diapositives", - "PE.Views.SlideSizeSettings.txtA3": "A3 Full (297x420 mm)", - "PE.Views.SlideSizeSettings.txtA4": "A4 Full (210x297 mm)", + "PE.Views.SlideSizeSettings.txt35": "Diapositives de 35 mm ", + "PE.Views.SlideSizeSettings.txtA3": "Full A3(297x420 mm)", + "PE.Views.SlideSizeSettings.txtA4": "Full A4(210x297 mm)", "PE.Views.SlideSizeSettings.txtB4": "Paper B4 (ICO)(250x353 mm)", "PE.Views.SlideSizeSettings.txtB5": "Paper B5 (ICO)(176x250 mm)", "PE.Views.SlideSizeSettings.txtBanner": "Bàner", "PE.Views.SlideSizeSettings.txtCustom": "Personalitzat", - "PE.Views.SlideSizeSettings.txtLedger": "Paper de Comptabilitat (11x17 en)", - "PE.Views.SlideSizeSettings.txtLetter": "Paper de Carta (8.5x11 en)", + "PE.Views.SlideSizeSettings.txtLedger": "Paper de doble full (432 x 279 mm)", + "PE.Views.SlideSizeSettings.txtLetter": "Paper de carta (216 x 279 mm)", "PE.Views.SlideSizeSettings.txtOverhead": "Transparència", "PE.Views.SlideSizeSettings.txtStandard": "Estàndard (4:3)", - "PE.Views.SlideSizeSettings.txtWidescreen": "Pantalla ampla", - "PE.Views.Statusbar.goToPageText": "Anar a Diapositiva", + "PE.Views.SlideSizeSettings.txtWidescreen": "Pantalla panoràmica", + "PE.Views.Statusbar.goToPageText": "Ves a la diapositiva", "PE.Views.Statusbar.pageIndexText": "Diapositiva {0} de {1}", - "PE.Views.Statusbar.textShowBegin": "Mostrar presentació des de el principi", - "PE.Views.Statusbar.textShowCurrent": "Mostrar la Diapositiva Actual", - "PE.Views.Statusbar.textShowPresenterView": "Veure Vista del Presentador", + "PE.Views.Statusbar.textShowBegin": "Mostra la presentació des del començament", + "PE.Views.Statusbar.textShowCurrent": "Mostra des de la diapositiva actual", + "PE.Views.Statusbar.textShowPresenterView": "Mostra la visualització del presentador", "PE.Views.Statusbar.tipAccessRights": "Gestiona els drets d’accés al document", - "PE.Views.Statusbar.tipFitPage": "Ajustar a la diapositiva", - "PE.Views.Statusbar.tipFitWidth": "Ajusta a Amplada", - "PE.Views.Statusbar.tipPreview": "Iniciar presentació de diapositives", + "PE.Views.Statusbar.tipFitPage": "Ajusta a la diapositiva", + "PE.Views.Statusbar.tipFitWidth": "Ajusta-ho a l'amplària", + "PE.Views.Statusbar.tipPreview": "Inicia la presentació de diapositives", "PE.Views.Statusbar.tipSetLang": "Estableix l'idioma de text", "PE.Views.Statusbar.tipZoomFactor": "Zoom", - "PE.Views.Statusbar.tipZoomIn": "Ampliar", - "PE.Views.Statusbar.tipZoomOut": "Reduir", + "PE.Views.Statusbar.tipZoomIn": "Amplia", + "PE.Views.Statusbar.tipZoomOut": "Redueix", "PE.Views.Statusbar.txtPageNumInvalid": "El número de diapositiva no és vàlid", - "PE.Views.TableSettings.deleteColumnText": "Suprimeix la Columna", - "PE.Views.TableSettings.deleteRowText": "Suprimeix fila", - "PE.Views.TableSettings.deleteTableText": "Esborrar Taula", - "PE.Views.TableSettings.insertColumnLeftText": "Inseriu Columna a la Esquerra", - "PE.Views.TableSettings.insertColumnRightText": "Inseriu Columna a la Dreta", - "PE.Views.TableSettings.insertRowAboveText": "Inserir Fila A dalt", - "PE.Views.TableSettings.insertRowBelowText": "Inserir Fila A baix", - "PE.Views.TableSettings.mergeCellsText": "Unir Cel·les", - "PE.Views.TableSettings.selectCellText": "Seleccionar cel·la", - "PE.Views.TableSettings.selectColumnText": "Seleccionar Columna", - "PE.Views.TableSettings.selectRowText": "Seleccionar Fila", - "PE.Views.TableSettings.selectTableText": "Seleccionar Taula", - "PE.Views.TableSettings.splitCellsText": "Dividir Cel·la...", - "PE.Views.TableSettings.splitCellTitleText": "Dividir Cel·la", + "PE.Views.TableSettings.deleteColumnText": "Suprimeix la columna", + "PE.Views.TableSettings.deleteRowText": "Suprimeix la fila", + "PE.Views.TableSettings.deleteTableText": "Suprimeix la taula", + "PE.Views.TableSettings.insertColumnLeftText": "Insereix columna a l'esquerra", + "PE.Views.TableSettings.insertColumnRightText": "Insereix columna a la dreta", + "PE.Views.TableSettings.insertRowAboveText": "Insereix fila a dalt", + "PE.Views.TableSettings.insertRowBelowText": "Insereix fila a baix", + "PE.Views.TableSettings.mergeCellsText": "Combina cel·les", + "PE.Views.TableSettings.selectCellText": "Selecciona la cel·la", + "PE.Views.TableSettings.selectColumnText": "Selecciona la columna", + "PE.Views.TableSettings.selectRowText": "Selecciona la fila", + "PE.Views.TableSettings.selectTableText": "Selecciona la taula", + "PE.Views.TableSettings.splitCellsText": "Divisió de cel·les...", + "PE.Views.TableSettings.splitCellTitleText": "Divisió de cel·les", "PE.Views.TableSettings.textAdvanced": "Mostra la configuració avançada", "PE.Views.TableSettings.textBackColor": "Color de fons", - "PE.Views.TableSettings.textBanded": "Bandejat", + "PE.Views.TableSettings.textBanded": "En bandes", "PE.Views.TableSettings.textBorderColor": "Color", - "PE.Views.TableSettings.textBorders": "Estil de Vores", - "PE.Views.TableSettings.textCellSize": "Mida Cel·la", + "PE.Views.TableSettings.textBorders": "Estil de les vores", + "PE.Views.TableSettings.textCellSize": "Mida de la cel·la", "PE.Views.TableSettings.textColumns": "Columnes", - "PE.Views.TableSettings.textDistributeCols": "Distribuïu les columnes", - "PE.Views.TableSettings.textDistributeRows": "Distribuïu les files", - "PE.Views.TableSettings.textEdit": "Files i Columnes", + "PE.Views.TableSettings.textDistributeCols": "Distribueix les columnes", + "PE.Views.TableSettings.textDistributeRows": "Distribueix les files", + "PE.Views.TableSettings.textEdit": "Files i columnes", "PE.Views.TableSettings.textEmptyTemplate": "Sense plantilles", "PE.Views.TableSettings.textFirst": "Primer", "PE.Views.TableSettings.textHeader": "Capçalera", "PE.Views.TableSettings.textHeight": "Alçada", "PE.Views.TableSettings.textLast": "Últim", "PE.Views.TableSettings.textRows": "Files", - "PE.Views.TableSettings.textSelectBorders": "Seleccioneu les vores que vulgueu canviar aplicant l'estil escollit anteriorment", - "PE.Views.TableSettings.textTemplate": "Seleccionar de Plantilla", + "PE.Views.TableSettings.textSelectBorders": "Selecciona les vores que vulguis canviar tot aplicant l'estil escollit anteriorment", + "PE.Views.TableSettings.textTemplate": "Selecciona de plantilla", "PE.Views.TableSettings.textTotal": "Total", "PE.Views.TableSettings.textWidth": "Amplada", - "PE.Views.TableSettings.tipAll": "Establir el límit exterior i totes les línies interiors", - "PE.Views.TableSettings.tipBottom": "Establir només la vora inferior exterior", - "PE.Views.TableSettings.tipInner": "Establir només línies interiors", - "PE.Views.TableSettings.tipInnerHor": "Establir només línies interiors horitzontals", - "PE.Views.TableSettings.tipInnerVert": "Establir només línies interiors verticals", - "PE.Views.TableSettings.tipLeft": "Definir només la vora exterior esquerra", - "PE.Views.TableSettings.tipNone": "No establir vores", - "PE.Views.TableSettings.tipOuter": "Definir només la vora exterior", - "PE.Views.TableSettings.tipRight": "Definir només la vora externa dreta", - "PE.Views.TableSettings.tipTop": "Definir només la vora superior externa", + "PE.Views.TableSettings.tipAll": "Estableix el límit exterior i totes les línies interiors", + "PE.Views.TableSettings.tipBottom": "Estableix només la vora inferior exterior", + "PE.Views.TableSettings.tipInner": "Estableix només les línies interiors", + "PE.Views.TableSettings.tipInnerHor": "Estableix només les línies interiors horitzontals", + "PE.Views.TableSettings.tipInnerVert": "Estableix només línies interiors verticals", + "PE.Views.TableSettings.tipLeft": "Estableix només la vora exterior esquerra", + "PE.Views.TableSettings.tipNone": "No estableixis vores", + "PE.Views.TableSettings.tipOuter": "Estableix només la vora exterior", + "PE.Views.TableSettings.tipRight": "Estableix només la vora exterior dreta", + "PE.Views.TableSettings.tipTop": "Estableix només la vora superior externa", "PE.Views.TableSettings.txtNoBorders": "Sense vores", "PE.Views.TableSettings.txtTable_Accent": "Accent", - "PE.Views.TableSettings.txtTable_DarkStyle": "Estil Fosc", - "PE.Views.TableSettings.txtTable_LightStyle": "Estil Lleuger", - "PE.Views.TableSettings.txtTable_MediumStyle": "Estil Mitjà", - "PE.Views.TableSettings.txtTable_NoGrid": "Sense Quadrícula", - "PE.Views.TableSettings.txtTable_NoStyle": "Sense Estil", - "PE.Views.TableSettings.txtTable_TableGrid": "Quadricula de Taula", - "PE.Views.TableSettings.txtTable_ThemedStyle": "Estil Temàtic", - "PE.Views.TableSettingsAdvanced.textAlt": "Text Alternatiu", + "PE.Views.TableSettings.txtTable_DarkStyle": "Estil fosc", + "PE.Views.TableSettings.txtTable_LightStyle": "Estil clar", + "PE.Views.TableSettings.txtTable_MediumStyle": "Estil mitjà", + "PE.Views.TableSettings.txtTable_NoGrid": "Sense quadrícula", + "PE.Views.TableSettings.txtTable_NoStyle": "Sense estil", + "PE.Views.TableSettings.txtTable_TableGrid": "Quadrícula de la taula", + "PE.Views.TableSettings.txtTable_ThemedStyle": "Estil amb tema", + "PE.Views.TableSettingsAdvanced.textAlt": "Text alternatiu", "PE.Views.TableSettingsAdvanced.textAltDescription": "Descripció", - "PE.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.", + "PE.Views.TableSettingsAdvanced.textAltTip": "La representació de la informació dels objectes visuals, que es basa en text alternatiu, es llegirà en veu alta per ajudar les persones amb dificultats de visió o cognició perquè puguin comprendre millor la informació que hi ha a la imatge, autoforma, gràfic o taula.", "PE.Views.TableSettingsAdvanced.textAltTitle": "Títol", "PE.Views.TableSettingsAdvanced.textBottom": "Inferior", - "PE.Views.TableSettingsAdvanced.textCheckMargins": "Utilitzar marges predeterminats", - "PE.Views.TableSettingsAdvanced.textDefaultMargins": "Marges predeterminats", + "PE.Views.TableSettingsAdvanced.textCheckMargins": "Fes servir els marges predeterminats", + "PE.Views.TableSettingsAdvanced.textDefaultMargins": "Marges per defecte", "PE.Views.TableSettingsAdvanced.textLeft": "Esquerra", - "PE.Views.TableSettingsAdvanced.textMargins": "Marges de Cel·la", + "PE.Views.TableSettingsAdvanced.textMargins": "Marges de la cel·la", "PE.Views.TableSettingsAdvanced.textRight": "Dreta", "PE.Views.TableSettingsAdvanced.textTitle": "Taula - Configuració Avançada", "PE.Views.TableSettingsAdvanced.textTop": "Superior", "PE.Views.TableSettingsAdvanced.textWidthSpaces": "Marges", "PE.Views.TextArtSettings.strBackground": "Color de fons", "PE.Views.TextArtSettings.strColor": "Color", - "PE.Views.TextArtSettings.strFill": "Omplir", - "PE.Views.TextArtSettings.strForeground": "Color de Primer Pla", + "PE.Views.TextArtSettings.strFill": "Emplena", + "PE.Views.TextArtSettings.strForeground": "Color de primer pla", "PE.Views.TextArtSettings.strPattern": "Patró", "PE.Views.TextArtSettings.strSize": "Mida", "PE.Views.TextArtSettings.strStroke": "Línia", "PE.Views.TextArtSettings.strTransparency": "Opacitat", "PE.Views.TextArtSettings.strType": "Tipus", "PE.Views.TextArtSettings.textAngle": "Angle", - "PE.Views.TextArtSettings.textBorderSizeErr": "El valor introduït és incorrecte.
Introduïu un valor entre 0 pt i 1584 pt.", - "PE.Views.TextArtSettings.textColor": "Color de farciment", + "PE.Views.TextArtSettings.textBorderSizeErr": "El valor introduït no és correcte.
Introduïu un valor entre 0 pt i 1584 pt.", + "PE.Views.TextArtSettings.textColor": "Color d'emplenament", "PE.Views.TextArtSettings.textDirection": "Direcció", - "PE.Views.TextArtSettings.textEmptyPattern": "Sense Patró", + "PE.Views.TextArtSettings.textEmptyPattern": "Sense patró", "PE.Views.TextArtSettings.textFromFile": "Des d'un fitxer", - "PE.Views.TextArtSettings.textFromUrl": "Des d'un Enllaç", + "PE.Views.TextArtSettings.textFromUrl": "Des de l'URL", "PE.Views.TextArtSettings.textGradient": "Degradat", - "PE.Views.TextArtSettings.textGradientFill": "Omplir Degradat", - "PE.Views.TextArtSettings.textImageTexture": "Imatge o Textura", + "PE.Views.TextArtSettings.textGradientFill": "Emplenament de gradient", + "PE.Views.TextArtSettings.textImageTexture": "Imatge o textura", "PE.Views.TextArtSettings.textLinear": "Lineal", - "PE.Views.TextArtSettings.textNoFill": "Sense Omplir", + "PE.Views.TextArtSettings.textNoFill": "Sense emplenament", "PE.Views.TextArtSettings.textPatternFill": "Patró", "PE.Views.TextArtSettings.textPosition": "Posició", "PE.Views.TextArtSettings.textRadial": "Radial", - "PE.Views.TextArtSettings.textSelectTexture": "Seleccionar", - "PE.Views.TextArtSettings.textStretch": "Estirar", + "PE.Views.TextArtSettings.textSelectTexture": "Selecciona", + "PE.Views.TextArtSettings.textStretch": "Estirament", "PE.Views.TextArtSettings.textStyle": "Estil", "PE.Views.TextArtSettings.textTemplate": "Plantilla", - "PE.Views.TextArtSettings.textTexture": "Des d'un Tex", + "PE.Views.TextArtSettings.textTexture": "Des de la textura", "PE.Views.TextArtSettings.textTile": "Mosaic", - "PE.Views.TextArtSettings.textTransform": "Transformar", - "PE.Views.TextArtSettings.tipAddGradientPoint": "Afegir punt de degradat", - "PE.Views.TextArtSettings.tipRemoveGradientPoint": "Elimina el punt de degradat", - "PE.Views.TextArtSettings.txtBrownPaper": "Paper Marró", + "PE.Views.TextArtSettings.textTransform": "Transforma", + "PE.Views.TextArtSettings.tipAddGradientPoint": "Afegeix un punt de degradat", + "PE.Views.TextArtSettings.tipRemoveGradientPoint": "Suprimeix el punt de degradat", + "PE.Views.TextArtSettings.txtBrownPaper": "Paper marró", "PE.Views.TextArtSettings.txtCanvas": "Llenç", "PE.Views.TextArtSettings.txtCarton": "Cartró", - "PE.Views.TextArtSettings.txtDarkFabric": "Fosc Fabric", + "PE.Views.TextArtSettings.txtDarkFabric": "Teixit fosc", "PE.Views.TextArtSettings.txtGrain": "Gra", "PE.Views.TextArtSettings.txtGranite": "Granit", - "PE.Views.TextArtSettings.txtGreyPaper": "Paper Gris", + "PE.Views.TextArtSettings.txtGreyPaper": "Paper gris", "PE.Views.TextArtSettings.txtKnit": "Teixit", "PE.Views.TextArtSettings.txtLeather": "Pell", - "PE.Views.TextArtSettings.txtNoBorders": "Sense Línia", - "PE.Views.TextArtSettings.txtPapyrus": "Papiro", + "PE.Views.TextArtSettings.txtNoBorders": "Sense línia", + "PE.Views.TextArtSettings.txtPapyrus": "Papir", "PE.Views.TextArtSettings.txtWood": "Fusta", - "PE.Views.Toolbar.capAddSlide": "Afegir Diapositiva", - "PE.Views.Toolbar.capBtnAddComment": "Afegir Comentari", + "PE.Views.Toolbar.capAddSlide": "Afegeix una diapositiva", + "PE.Views.Toolbar.capBtnAddComment": "Afegeix un comentari", "PE.Views.Toolbar.capBtnComment": "Comentari", - "PE.Views.Toolbar.capBtnDateTime": "Data & Hora", + "PE.Views.Toolbar.capBtnDateTime": "Data i hora", "PE.Views.Toolbar.capBtnInsHeader": "Peu de pàgina", "PE.Views.Toolbar.capBtnInsSymbol": "Símbol", - "PE.Views.Toolbar.capBtnSlideNum": "Número Diapositiva", - "PE.Views.Toolbar.capInsertAudio": "Audio", + "PE.Views.Toolbar.capBtnSlideNum": "Número de diapositiva", + "PE.Views.Toolbar.capInsertAudio": "Àudio", "PE.Views.Toolbar.capInsertChart": "Gràfic", "PE.Views.Toolbar.capInsertEquation": "Equació", - "PE.Views.Toolbar.capInsertHyperlink": "Hiperenllaç", + "PE.Views.Toolbar.capInsertHyperlink": "Enllaç", "PE.Views.Toolbar.capInsertImage": "Imatge", "PE.Views.Toolbar.capInsertShape": "Forma", "PE.Views.Toolbar.capInsertTable": "Taula", - "PE.Views.Toolbar.capInsertText": "Quadre de Text", + "PE.Views.Toolbar.capInsertText": "Quadre de text", "PE.Views.Toolbar.capInsertVideo": "Vídeo", "PE.Views.Toolbar.capTabFile": "Fitxer", "PE.Views.Toolbar.capTabHome": "Inici", - "PE.Views.Toolbar.capTabInsert": "Insertar", - "PE.Views.Toolbar.mniCapitalizeWords": "Posar en majúscules cada paraula", - "PE.Views.Toolbar.mniCustomTable": "Inserir Taula Personalitzada", - "PE.Views.Toolbar.mniImageFromFile": "Imatge d'un Fitxer", - "PE.Views.Toolbar.mniImageFromStorage": "Imatge d'un Magatzem", - "PE.Views.Toolbar.mniImageFromUrl": "Imatge d'un Enllaç", + "PE.Views.Toolbar.capTabInsert": "Insereix", + "PE.Views.Toolbar.mniCapitalizeWords": "Escriu en majúscules cada paraula", + "PE.Views.Toolbar.mniCustomTable": "Insereix taula personalitzada", + "PE.Views.Toolbar.mniImageFromFile": "Imatge del fitxer", + "PE.Views.Toolbar.mniImageFromStorage": "Imatge d'emmagatzematge", + "PE.Views.Toolbar.mniImageFromUrl": "Imatge d'URL", "PE.Views.Toolbar.mniLowerCase": "minúscules", - "PE.Views.Toolbar.mniSentenceCase": "Cas de frase", - "PE.Views.Toolbar.mniSlideAdvanced": "Configuració Avançada", + "PE.Views.Toolbar.mniSentenceCase": "Format de frase.", + "PE.Views.Toolbar.mniSlideAdvanced": "Configuració avançada", "PE.Views.Toolbar.mniSlideStandard": "Estàndard (4:3)", - "PE.Views.Toolbar.mniSlideWide": "Pantalla ampla (16:9)", + "PE.Views.Toolbar.mniSlideWide": "Pantalla panoràmica (16:9)", "PE.Views.Toolbar.mniToggleCase": "iNVERTIR mAJÚSCULES", "PE.Views.Toolbar.mniUpperCase": "MAJÚSCULES", - "PE.Views.Toolbar.strMenuNoFill": "Sense Farciment", - "PE.Views.Toolbar.textAlignBottom": "Alinear text en la part superior", + "PE.Views.Toolbar.strMenuNoFill": "Sense emplenament", + "PE.Views.Toolbar.textAlignBottom": "Alinea el text a baix.", "PE.Views.Toolbar.textAlignCenter": "Centrar text", "PE.Views.Toolbar.textAlignJust": "Justificar", - "PE.Views.Toolbar.textAlignLeft": "Alinear text a l'esquerra", - "PE.Views.Toolbar.textAlignMiddle": "Alinear text al mig", - "PE.Views.Toolbar.textAlignRight": "Alinear text a la dreta", - "PE.Views.Toolbar.textAlignTop": "Alinear text en la part superior", - "PE.Views.Toolbar.textArrangeBack": "Enviar a un segon pla", - "PE.Views.Toolbar.textArrangeBackward": "Envia Endarrere", - "PE.Views.Toolbar.textArrangeForward": "Portar Endavant", - "PE.Views.Toolbar.textArrangeFront": "Portar a Primer pla", + "PE.Views.Toolbar.textAlignLeft": "Alinea el text a l'esquerra", + "PE.Views.Toolbar.textAlignMiddle": "Alinea el text al mig.", + "PE.Views.Toolbar.textAlignRight": "Alinea el text a la dreta", + "PE.Views.Toolbar.textAlignTop": "Alinea el text a dalt.", + "PE.Views.Toolbar.textArrangeBack": "Envia al fons", + "PE.Views.Toolbar.textArrangeBackward": "Envia cap enrere", + "PE.Views.Toolbar.textArrangeForward": "Porta endavant", + "PE.Views.Toolbar.textArrangeFront": "Portar al primer pla", "PE.Views.Toolbar.textBold": "Negreta", - "PE.Views.Toolbar.textColumnsCustom": "Columnes Personalitzades", + "PE.Views.Toolbar.textColumnsCustom": "Columnes personalitzades", "PE.Views.Toolbar.textColumnsOne": "Una columna", "PE.Views.Toolbar.textColumnsThree": "Tres columnes", "PE.Views.Toolbar.textColumnsTwo": "Dues columnes", - "PE.Views.Toolbar.textItalic": "Itàlica", - "PE.Views.Toolbar.textListSettings": "Configuració de la Llista", - "PE.Views.Toolbar.textNewColor": "Afegir Nou Color Personalitzat", - "PE.Views.Toolbar.textShapeAlignBottom": "Alineació Inferior", - "PE.Views.Toolbar.textShapeAlignCenter": "Centrar", - "PE.Views.Toolbar.textShapeAlignLeft": "Alineació esquerra", - "PE.Views.Toolbar.textShapeAlignMiddle": "Alinear al Mig", - "PE.Views.Toolbar.textShapeAlignRight": "Alineació dreta", - "PE.Views.Toolbar.textShapeAlignTop": "Alineació superior", - "PE.Views.Toolbar.textShowBegin": "Mostrar presentació des de el principi", - "PE.Views.Toolbar.textShowCurrent": "Mostrar la Diapositiva Actual", - "PE.Views.Toolbar.textShowPresenterView": "Veure Vista del Presentador", - "PE.Views.Toolbar.textShowSettings": "Mostra la Configuració", - "PE.Views.Toolbar.textStrikeout": "Ratllar", + "PE.Views.Toolbar.textItalic": "Cursiva", + "PE.Views.Toolbar.textListSettings": "Configuració de la llista", + "PE.Views.Toolbar.textNewColor": "Afegeix un color personalitzat nou ", + "PE.Views.Toolbar.textShapeAlignBottom": "Alinea a baix", + "PE.Views.Toolbar.textShapeAlignCenter": "Alinea al centre", + "PE.Views.Toolbar.textShapeAlignLeft": "Alinea a l'esquerra", + "PE.Views.Toolbar.textShapeAlignMiddle": "Alinea al mig", + "PE.Views.Toolbar.textShapeAlignRight": "Alinea a la dreta", + "PE.Views.Toolbar.textShapeAlignTop": "Alinea a dalt", + "PE.Views.Toolbar.textShowBegin": "Mostra la presentació des del començament", + "PE.Views.Toolbar.textShowCurrent": "Mostra des de la diapositiva actual", + "PE.Views.Toolbar.textShowPresenterView": "Mostra la visualització del presentador", + "PE.Views.Toolbar.textShowSettings": "Mostra la configuració", + "PE.Views.Toolbar.textStrikeout": "Ratllat", "PE.Views.Toolbar.textSubscript": "Subíndex", "PE.Views.Toolbar.textSuperscript": "Superíndex", "PE.Views.Toolbar.textTabCollaboration": "Col·laboració", "PE.Views.Toolbar.textTabFile": "Fitxer", "PE.Views.Toolbar.textTabHome": "Inici", - "PE.Views.Toolbar.textTabInsert": "Insertar", + "PE.Views.Toolbar.textTabInsert": "Insereix", "PE.Views.Toolbar.textTabProtect": "Protecció", "PE.Views.Toolbar.textTitleError": "Error", - "PE.Views.Toolbar.textUnderline": "Subratllar", - "PE.Views.Toolbar.tipAddSlide": "Afegir diapositiva", + "PE.Views.Toolbar.textUnderline": "Subratllat", + "PE.Views.Toolbar.tipAddSlide": "Afegeix una diapositiva", "PE.Views.Toolbar.tipBack": "Enrere", - "PE.Views.Toolbar.tipChangeCase": "Canviar el cas", - "PE.Views.Toolbar.tipChangeChart": "Canviar el tipus de gràfic", - "PE.Views.Toolbar.tipChangeSlide": "Canviar disseny de diapositiva", - "PE.Views.Toolbar.tipClearStyle": "Neteja l'estil", - "PE.Views.Toolbar.tipColorSchemas": "Canviar l'esquema de color", - "PE.Views.Toolbar.tipColumns": "Inserir columnes", - "PE.Views.Toolbar.tipCopy": "Copiar", - "PE.Views.Toolbar.tipCopyStyle": "Copiar estil", - "PE.Views.Toolbar.tipDateTime": "Inseriu la data i l'hora actuals", - "PE.Views.Toolbar.tipDecFont": "Reduir la mida de la lletra", - "PE.Views.Toolbar.tipDecPrLeft": "Disminuir el sagnat", - "PE.Views.Toolbar.tipEditHeader": "Editar el peu de pàgina", - "PE.Views.Toolbar.tipFontColor": "Color de Font", - "PE.Views.Toolbar.tipFontName": "Font", - "PE.Views.Toolbar.tipFontSize": "Mida de Font", + "PE.Views.Toolbar.tipChangeCase": "Canvia el cas", + "PE.Views.Toolbar.tipChangeChart": "Canvia el tipus de gràfic", + "PE.Views.Toolbar.tipChangeSlide": "Canvia el disseny de diapositiva", + "PE.Views.Toolbar.tipClearStyle": "Esborrar l'estil", + "PE.Views.Toolbar.tipColorSchemas": "Canvia l'esquema de color", + "PE.Views.Toolbar.tipColumns": "Insereix columnes", + "PE.Views.Toolbar.tipCopy": "Copia", + "PE.Views.Toolbar.tipCopyStyle": "Copia l'estil", + "PE.Views.Toolbar.tipDateTime": "Insereix la data i l'hora actuals", + "PE.Views.Toolbar.tipDecFont": "Redueix la mida del tipus de lletra", + "PE.Views.Toolbar.tipDecPrLeft": "Redueix la mida de la sagnia", + "PE.Views.Toolbar.tipEditHeader": "Edita el peu de pàgina", + "PE.Views.Toolbar.tipFontColor": "Color del tipus de lletra", + "PE.Views.Toolbar.tipFontName": "Tipus de lletra", + "PE.Views.Toolbar.tipFontSize": "Mida del tipus de lletra", "PE.Views.Toolbar.tipHAligh": "Alineació Horitzontal", - "PE.Views.Toolbar.tipHighlightColor": "Color de ressaltat", - "PE.Views.Toolbar.tipIncFont": "Augmentar la mida de la lletra", - "PE.Views.Toolbar.tipIncPrLeft": "Augmentar el sagnat", - "PE.Views.Toolbar.tipInsertAudio": "Inseriu àudio", - "PE.Views.Toolbar.tipInsertChart": "Inseriu Gràfic", - "PE.Views.Toolbar.tipInsertEquation": "Inserir equació", - "PE.Views.Toolbar.tipInsertHyperlink": "Afegir enllaç", - "PE.Views.Toolbar.tipInsertImage": "Inseriu imatge", - "PE.Views.Toolbar.tipInsertShape": "Inseriu autoforma", - "PE.Views.Toolbar.tipInsertSymbol": "Inserir Símbol", - "PE.Views.Toolbar.tipInsertTable": "Inserir taula", - "PE.Views.Toolbar.tipInsertText": "Inserir quadre de text", - "PE.Views.Toolbar.tipInsertTextArt": "Inserir Text Art", - "PE.Views.Toolbar.tipInsertVideo": "Inserir vídeo", - "PE.Views.Toolbar.tipLineSpace": "Espai entre Línies", - "PE.Views.Toolbar.tipMarkers": "Vinyetes", + "PE.Views.Toolbar.tipHighlightColor": "Ressalta el color", + "PE.Views.Toolbar.tipIncFont": "Augmenta la mida del tipus de lletra", + "PE.Views.Toolbar.tipIncPrLeft": "Augmenta el sagnat", + "PE.Views.Toolbar.tipInsertAudio": "Insereix àudio", + "PE.Views.Toolbar.tipInsertChart": "Insereix gràfic", + "PE.Views.Toolbar.tipInsertEquation": "Insereix equació", + "PE.Views.Toolbar.tipInsertHyperlink": "Afegeix un enllaç", + "PE.Views.Toolbar.tipInsertImage": "Insereix imatge", + "PE.Views.Toolbar.tipInsertShape": "Insereix forma automàtica", + "PE.Views.Toolbar.tipInsertSymbol": "Insereix símbol", + "PE.Views.Toolbar.tipInsertTable": "Insereix taula", + "PE.Views.Toolbar.tipInsertText": "Insereix quadre de text", + "PE.Views.Toolbar.tipInsertTextArt": "Insereix art ASCII", + "PE.Views.Toolbar.tipInsertVideo": "Insereix vídeo", + "PE.Views.Toolbar.tipLineSpace": "Interlineat", + "PE.Views.Toolbar.tipMarkers": "Pics", "PE.Views.Toolbar.tipNumbers": "Numeració", - "PE.Views.Toolbar.tipPaste": "Pegar", - "PE.Views.Toolbar.tipPreview": "Iniciar presentació de diapositives", + "PE.Views.Toolbar.tipPaste": "Enganxar", + "PE.Views.Toolbar.tipPreview": "Inicia la presentació de diapositives", "PE.Views.Toolbar.tipPrint": "Imprimir", - "PE.Views.Toolbar.tipRedo": "Refer", - "PE.Views.Toolbar.tipSave": "Desar", - "PE.Views.Toolbar.tipSaveCoauth": "Desar els canvis per a que altres usuaris els puguin veure.", - "PE.Views.Toolbar.tipShapeAlign": "Alinear forma", - "PE.Views.Toolbar.tipShapeArrange": "Arreglar forma", - "PE.Views.Toolbar.tipSlideNum": "Inseriu el número de diapositiva", - "PE.Views.Toolbar.tipSlideSize": "Seleccionar mida de diapositiva", - "PE.Views.Toolbar.tipSlideTheme": "Tema Diapositiva", - "PE.Views.Toolbar.tipUndo": "Desfer", + "PE.Views.Toolbar.tipRedo": "Refés", + "PE.Views.Toolbar.tipSave": "Desa", + "PE.Views.Toolbar.tipSaveCoauth": "Desa els canvis perquè altres usuaris els puguin veure.", + "PE.Views.Toolbar.tipShapeAlign": "Alinea la forma", + "PE.Views.Toolbar.tipShapeArrange": "Organitza les formes", + "PE.Views.Toolbar.tipSlideNum": "Insereix el número de diapositiva", + "PE.Views.Toolbar.tipSlideSize": "Selecciona la mida de diapositiva", + "PE.Views.Toolbar.tipSlideTheme": "Tema de la diapositiva", + "PE.Views.Toolbar.tipUndo": "Desfes", "PE.Views.Toolbar.tipVAligh": "Alineació Vertical", "PE.Views.Toolbar.tipViewSettings": "Mostra la configuració", - "PE.Views.Toolbar.txtDistribHor": "Distribuïu Horitzontalment", - "PE.Views.Toolbar.txtDistribVert": "Distribuïu Verticalment", - "PE.Views.Toolbar.txtGroup": "Agrupar", - "PE.Views.Toolbar.txtObjectsAlign": "Alinear Objectes Seleccionats", - "PE.Views.Toolbar.txtScheme1": "Oficina", - "PE.Views.Toolbar.txtScheme10": "Intermitg", + "PE.Views.Toolbar.txtDistribHor": "Distribueix horitzontalment", + "PE.Views.Toolbar.txtDistribVert": "Distribueix verticalment", + "PE.Views.Toolbar.txtGroup": "Agrupa", + "PE.Views.Toolbar.txtObjectsAlign": "Alinea els objectes seleccionats", + "PE.Views.Toolbar.txtScheme1": "Office", + "PE.Views.Toolbar.txtScheme10": "Mediana", "PE.Views.Toolbar.txtScheme11": "Metro", "PE.Views.Toolbar.txtScheme12": "Mòdul", "PE.Views.Toolbar.txtScheme13": "Opulent", @@ -1991,18 +1991,18 @@ "PE.Views.Toolbar.txtScheme16": "Paper", "PE.Views.Toolbar.txtScheme17": "Solstici", "PE.Views.Toolbar.txtScheme18": "Tècnic", - "PE.Views.Toolbar.txtScheme19": "Viatges", - "PE.Views.Toolbar.txtScheme2": "Escala de Gris", + "PE.Views.Toolbar.txtScheme19": "Excursió", + "PE.Views.Toolbar.txtScheme2": "Escala de grisos", "PE.Views.Toolbar.txtScheme20": "Urbà", - "PE.Views.Toolbar.txtScheme21": "Empenta", - "PE.Views.Toolbar.txtScheme22": "Nova Oficina", - "PE.Views.Toolbar.txtScheme3": "Àpex", + "PE.Views.Toolbar.txtScheme21": "Inspiració", + "PE.Views.Toolbar.txtScheme22": "Office", + "PE.Views.Toolbar.txtScheme3": "Vèrtex", "PE.Views.Toolbar.txtScheme4": "Aspecte", "PE.Views.Toolbar.txtScheme5": "Cívic", - "PE.Views.Toolbar.txtScheme6": "Concurrència", + "PE.Views.Toolbar.txtScheme6": "Esplanada", "PE.Views.Toolbar.txtScheme7": "Equitat", "PE.Views.Toolbar.txtScheme8": "Flux", - "PE.Views.Toolbar.txtScheme9": "Fosa", - "PE.Views.Toolbar.txtSlideAlign": "Alinear amb la Diapositiva", - "PE.Views.Toolbar.txtUngroup": "Des agrupar" + "PE.Views.Toolbar.txtScheme9": "Foneria", + "PE.Views.Toolbar.txtSlideAlign": "Alinea a la diapositiva", + "PE.Views.Toolbar.txtUngroup": "Desagrupar" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/zh.json b/apps/presentationeditor/main/locale/zh.json index 9eae79c5a..17acace94 100644 --- a/apps/presentationeditor/main/locale/zh.json +++ b/apps/presentationeditor/main/locale/zh.json @@ -1653,7 +1653,7 @@ "PE.Views.SlideshowSettings.textLoop": "连续循环,直到按“Esc”", "PE.Views.SlideshowSettings.textTitle": "显示设置", "PE.Views.SlideSizeSettings.strLandscape": "横向", - "PE.Views.SlideSizeSettings.strPortrait": "点", + "PE.Views.SlideSizeSettings.strPortrait": "纵向", "PE.Views.SlideSizeSettings.textHeight": "高度", "PE.Views.SlideSizeSettings.textSlideOrientation": "幻灯片方位", "PE.Views.SlideSizeSettings.textSlideSize": "滑动尺寸", diff --git a/apps/spreadsheeteditor/embed/locale/ca.json b/apps/spreadsheeteditor/embed/locale/ca.json index 9f684b35d..ff5b46632 100644 --- a/apps/spreadsheeteditor/embed/locale/ca.json +++ b/apps/spreadsheeteditor/embed/locale/ca.json @@ -1,34 +1,34 @@ { - "common.view.modals.txtCopy": "Copiat al porta-retalls", + "common.view.modals.txtCopy": "Copia al porta-retalls", "common.view.modals.txtEmbed": "Incrustar", "common.view.modals.txtHeight": "Alçada", - "common.view.modals.txtShare": "Compartir enllaç", + "common.view.modals.txtShare": "Compartir l'enllaç", "common.view.modals.txtWidth": "Amplada", - "SSE.ApplicationController.convertationErrorText": "Conversió Fallida", - "SSE.ApplicationController.convertationTimeoutText": "Conversió fora de temps", + "SSE.ApplicationController.convertationErrorText": "No s'ha pogut convertir", + "SSE.ApplicationController.convertationTimeoutText": "S'ha superat el temps de conversió.", "SSE.ApplicationController.criticalErrorTitle": "Error", - "SSE.ApplicationController.downloadErrorText": "Descàrrega Fallida", - "SSE.ApplicationController.downloadTextText": "Descarregar full de càlcul", - "SSE.ApplicationController.errorAccessDeny": "No teniu permisos per realitzar aquesta acció.
Poseu-vos en contacte amb l'administrador del servidor de documents.", + "SSE.ApplicationController.downloadErrorText": "S'ha produït un error en la baixada", + "SSE.ApplicationController.downloadTextText": "S'està baixant el full de càlcul ...", + "SSE.ApplicationController.errorAccessDeny": "No teniu permisos per realitzar aquesta acció.
Poseu-vos en contacte amb el vostre administrador del servidor de documents.", "SSE.ApplicationController.errorDefaultMessage": "Codi d'error:%1", "SSE.ApplicationController.errorFilePassProtect": "El fitxer està protegit amb contrasenya i no es pot obrir.", - "SSE.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.", - "SSE.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.", - "SSE.ApplicationController.errorUserDrop": "Ara no es pot accedir al fitxer.", + "SSE.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ó.", + "SSE.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.", + "SSE.ApplicationController.errorUserDrop": "Ara mateix no es pot accedir al fitxer.", "SSE.ApplicationController.notcriticalErrorTitle": "Advertiment", "SSE.ApplicationController.scriptLoadError": "La connexió és massa lenta, alguns dels components no s’han pogut carregar. Torneu a carregar la pàgina.", "SSE.ApplicationController.textAnonymous": "Anònim", "SSE.ApplicationController.textGuest": "Convidat", - "SSE.ApplicationController.textLoadingDocument": "Carregant full de càlcul", + "SSE.ApplicationController.textLoadingDocument": "S'està carregant full de càlcul", "SSE.ApplicationController.textOf": "de", "SSE.ApplicationController.txtClose": "Tancar", "SSE.ApplicationController.unknownErrorText": "Error desconegut.", "SSE.ApplicationController.unsupportedBrowserErrorText": "El vostre navegador no és compatible.", - "SSE.ApplicationController.waitText": "Si us plau, esperi...", - "SSE.ApplicationView.txtDownload": "Descàrrega", + "SSE.ApplicationController.waitText": "Espereu...", + "SSE.ApplicationView.txtDownload": "Baixar", "SSE.ApplicationView.txtEmbed": "Incrustar", - "SSE.ApplicationView.txtFileLocation": "Obrir ubicació de l'arxiu", - "SSE.ApplicationView.txtFullScreen": "Pantalla Completa", + "SSE.ApplicationView.txtFileLocation": "Obrir la ubicació del fitxer", + "SSE.ApplicationView.txtFullScreen": "Pantalla completa", "SSE.ApplicationView.txtPrint": "Imprimir", "SSE.ApplicationView.txtShare": "Compartir" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/embed/locale/fr.json b/apps/spreadsheeteditor/embed/locale/fr.json index 503c671a8..df7bbdea8 100644 --- a/apps/spreadsheeteditor/embed/locale/fr.json +++ b/apps/spreadsheeteditor/embed/locale/fr.json @@ -13,6 +13,7 @@ "SSE.ApplicationController.errorDefaultMessage": "Code d'erreur: %1", "SSE.ApplicationController.errorFilePassProtect": "Le fichier est protégé par un mot de passe et ne peut pas être ouvert.", "SSE.ApplicationController.errorFileSizeExceed": "La taille du fichier dépasse les limites paramétrées sur votre serveur.
Veuillez contacter votre administrateur de Document Server pour obtenir plus d'informations. ", + "SSE.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.", "SSE.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.", "SSE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.", "SSE.ApplicationController.notcriticalErrorTitle": "Avertissement", diff --git a/apps/spreadsheeteditor/embed/locale/ro.json b/apps/spreadsheeteditor/embed/locale/ro.json index 0b75aa2df..e03ef4487 100644 --- a/apps/spreadsheeteditor/embed/locale/ro.json +++ b/apps/spreadsheeteditor/embed/locale/ro.json @@ -13,6 +13,7 @@ "SSE.ApplicationController.errorDefaultMessage": "Codul de eroare: %1", "SSE.ApplicationController.errorFilePassProtect": "Fișierul este protejat cu parolă și deaceea nu poate fi deschis.", "SSE.ApplicationController.errorFileSizeExceed": "Dimensiunea fișierului depășește limita permisă de serverul Dvs.
Pentru detalii, contactați administratorul dumneavoastră de Server Documente.", + "SSE.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.", "SSE.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ă.", "SSE.ApplicationController.errorUserDrop": "Fișierul nu poate fi accesat deocamdată.", "SSE.ApplicationController.notcriticalErrorTitle": "Avertisment", diff --git a/apps/spreadsheeteditor/embed/locale/ru.json b/apps/spreadsheeteditor/embed/locale/ru.json index 13cec290b..b965d8034 100644 --- a/apps/spreadsheeteditor/embed/locale/ru.json +++ b/apps/spreadsheeteditor/embed/locale/ru.json @@ -13,6 +13,7 @@ "SSE.ApplicationController.errorDefaultMessage": "Код ошибки: %1", "SSE.ApplicationController.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.", "SSE.ApplicationController.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.
Обратитесь к администратору Сервера документов для получения дополнительной информации.", + "SSE.ApplicationController.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.", "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Подключение к Интернету было восстановлено, и версия файла изменилась.
Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.", "SSE.ApplicationController.errorUserDrop": "В настоящий момент файл недоступен.", "SSE.ApplicationController.notcriticalErrorTitle": "Внимание", diff --git a/apps/spreadsheeteditor/main/locale/ca.json b/apps/spreadsheeteditor/main/locale/ca.json index c7f0225fe..37a5ba52c 100644 --- a/apps/spreadsheeteditor/main/locale/ca.json +++ b/apps/spreadsheeteditor/main/locale/ca.json @@ -12,7 +12,7 @@ "Common.define.chartData.textBarStacked": "Columna apilada", "Common.define.chartData.textBarStacked3d": "Columna 3D apilada", "Common.define.chartData.textBarStackedPer": "Columna apilada al 100%", - "Common.define.chartData.textBarStackedPer3d": "columna 3D apilada al 100%", + "Common.define.chartData.textBarStackedPer3d": "Columna 3D apilada al 100%", "Common.define.chartData.textCharts": "Gràfics", "Common.define.chartData.textColumn": "Columna", "Common.define.chartData.textColumnSpark": "Columna", @@ -56,7 +56,7 @@ "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", @@ -107,7 +107,7 @@ "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.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.textNew": "Nou", @@ -149,7 +149,7 @@ "Common.Views.About.txtPoweredBy": "Impulsat per", "Common.Views.About.txtTel": "tel.: ", "Common.Views.About.txtVersion": "Versió", - "Common.Views.AutoCorrectDialog.textAdd": "Afegir", + "Common.Views.AutoCorrectDialog.textAdd": "Afegeix", "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", @@ -173,17 +173,17 @@ "Common.Views.AutoCorrectDialog.warnReset": "Qualsevol autocorrecció que hàgiu afegit se suprimirà i les modificades es restauraran als seus valors originals. Vols continuar?", "Common.Views.AutoCorrectDialog.warnRestore": "L'entrada de correcció automàtica de %1 es restablirà al seu valor original. Vols continuar?", "Common.Views.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.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.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.textHintAddComment": "Afegeix un comentari", "Common.Views.Comments.textOpenAgain": "Obriu de nou", "Common.Views.Comments.textReply": "Contestar", "Common.Views.Comments.textResolve": "Resol", @@ -274,14 +274,14 @@ "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.hintSignature": "Afegeix una signatura digital o línia de signatura", + "Common.Views.Protection.txtAddPwd": "Afegeix una contrasenya", "Common.Views.Protection.txtChangePwd": "Canviar la contrasenya", "Common.Views.Protection.txtDeletePwd": "Suprimeix la contrasenya", "Common.Views.Protection.txtEncrypt": "Xifrar", - "Common.Views.Protection.txtInvisibleSignature": "Afegir signatura digital", + "Common.Views.Protection.txtInvisibleSignature": "Afegeix una signatura digital", "Common.Views.Protection.txtSignature": "Firma", - "Common.Views.Protection.txtSignatureLine": "Afegir línia de signatura", + "Common.Views.Protection.txtSignatureLine": "Afegeix una línia de signatura", "Common.Views.RenameDialog.textName": "Nom Fitxer", "Common.Views.RenameDialog.txtInvalidName": "El nom del fitxer no pot contenir cap dels caràcters següents:", "Common.Views.ReviewChanges.hintNext": "Al següent canvi", @@ -290,7 +290,7 @@ "Common.Views.ReviewChanges.strFastDesc": "Coedició en temps real. Tots els canvis es guarden 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.tipAcceptCurrent": "Accepta 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", @@ -303,10 +303,10 @@ "Common.Views.ReviewChanges.tipSetDocLang": "Definiu l’idioma del document", "Common.Views.ReviewChanges.tipSetSpelling": "Comprovació 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.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": "Chat", "Common.Views.ReviewChanges.txtClose": "Tancar", "Common.Views.ReviewChanges.txtCoAuthMode": "Mode de Coedició", @@ -338,12 +338,12 @@ "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.textAdd": "Afegeix", + "Common.Views.ReviewPopover.textAddReply": "Afegeix una 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.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", @@ -445,15 +445,15 @@ "SSE.Controllers.DocumentHolder.textSym": "sym", "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.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": "Alinear al caràcter", "SSE.Controllers.DocumentHolder.txtAll": "(Tots)", "SSE.Controllers.DocumentHolder.txtAnd": "i", @@ -667,7 +667,7 @@ "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.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.errorPivotOverlap": "Un informe de la taula de pivot no es pot superposar 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", @@ -900,7 +900,7 @@ "SSE.Controllers.Main.txtShape_mathNotEqual": "No 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_noSmoking": "Símbol \"No\"", "SSE.Controllers.Main.txtShape_notchedRightArrow": "Fletxa a la Dreta Encaixada", "SSE.Controllers.Main.txtShape_octagon": "Octagon", "SSE.Controllers.Main.txtShape_parallelogram": "Paral·lelograma", @@ -986,6 +986,9 @@ "SSE.Controllers.Main.txtYears": "Anys", "SSE.Controllers.Main.unknownErrorText": "Error Desconegut.", "SSE.Controllers.Main.unsupportedBrowserErrorText": "El vostre navegador no és compatible.", + "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 del document.", "SSE.Controllers.Main.uploadImageExtMessage": "Format imatge desconegut.", "SSE.Controllers.Main.uploadImageFileCountMessage": "No hi ha imatges pujades.", "SSE.Controllers.Main.uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB.", @@ -1059,7 +1062,7 @@ "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_2": "ABC amb la barra a dalt", "SSE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR i amb barra sobreposada", "SSE.Controllers.Toolbar.txtAccent_DDDot": "Tres punts", "SSE.Controllers.Toolbar.txtAccent_DDot": "Doble punt", @@ -1384,7 +1387,7 @@ "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.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", @@ -1465,7 +1468,7 @@ "SSE.Views.CellSettings.textThisPivot": "Des d'aquesta taula pivot", "SSE.Views.CellSettings.textThisSheet": "Des d'aquest full de treball", "SSE.Views.CellSettings.textThisTable": "Des d'aquesta taula", - "SSE.Views.CellSettings.tipAddGradientPoint": "Afegir punt de degradat", + "SSE.Views.CellSettings.tipAddGradientPoint": "Afegeix un 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", @@ -1486,7 +1489,7 @@ "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.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", @@ -1580,9 +1583,9 @@ "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", @@ -1642,8 +1645,8 @@ "SSE.Views.ChartSettingsDlg.textSparkRanges": "Rangs 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", @@ -1713,7 +1716,7 @@ "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", @@ -1806,7 +1809,7 @@ "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.originalSizeText": "Mida real", "SSE.Views.DocumentHolder.removeHyperlinkText": "Esborrar hiperenllaç", "SSE.Views.DocumentHolder.selectColumnText": "Columna sencera", "SSE.Views.DocumentHolder.selectDataText": "Dades de Columna", @@ -1860,7 +1863,7 @@ "SSE.Views.DocumentHolder.textVar": "Var", "SSE.Views.DocumentHolder.topCellText": "Alineació Superior", "SSE.Views.DocumentHolder.txtAccounting": "Comptabilitat", - "SSE.Views.DocumentHolder.txtAddComment": "Afegir Comentari", + "SSE.Views.DocumentHolder.txtAddComment": "Afegeix un comentari", "SSE.Views.DocumentHolder.txtAddNamedRange": "Definiu el Nom", "SSE.Views.DocumentHolder.txtArrange": "Arreglar", "SSE.Views.DocumentHolder.txtAscending": "Ascendent", @@ -1963,19 +1966,19 @@ "SSE.Views.FileMenu.btnRecentFilesCaption": "Obrir 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.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.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.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", @@ -2000,7 +2003,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Separador Decimal", "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.strForcesave": "Afegeix la versió a l'emmagatzematge després de clicar a Desa o Ctrl + S", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Llenguatge de Formula", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Exemple: SUM; MIN; MAX; COUNT", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Activa la visualització dels comentaris", @@ -2147,7 +2150,7 @@ "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.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 un percentatge vàlid.", @@ -2315,7 +2318,7 @@ "SSE.Views.HeaderFooterDialog.textItalic": "Itàlica", "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.textNewColor": "Afegeix un color personalitzat nou ", "SSE.Views.HeaderFooterDialog.textOdd": "Pàgina imparell", "SSE.Views.HeaderFooterDialog.textPageCount": "Nombre de Pàgines", "SSE.Views.HeaderFooterDialog.textPageNum": "Número Pàgina", @@ -2369,7 +2372,7 @@ "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.textOriginalSize": "Mida real", "SSE.Views.ImageSettings.textRotate90": "Girar 90°", "SSE.Views.ImageSettings.textRotation": "Rotació", "SSE.Views.ImageSettings.textSize": "Mida", @@ -2412,7 +2415,7 @@ "SSE.Views.MainSettingsPrint.strPrintTitles": "Imprimir 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", @@ -2560,10 +2563,10 @@ "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.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ó de Camp", "SSE.Views.PivotSettings.txtMoveBegin": "Moure al principi", "SSE.Views.PivotSettings.txtMoveColumn": "Moure a la columna", @@ -2639,7 +2642,7 @@ "SSE.Views.PrintSettings.strRight": "Dreta", "SSE.Views.PrintSettings.strShow": "Mostra", "SSE.Views.PrintSettings.strTop": "Superior", - "SSE.Views.PrintSettings.textActualSize": "Mida Actual", + "SSE.Views.PrintSettings.textActualSize": "Mida real", "SSE.Views.PrintSettings.textAllSheets": "Totes les Fulles", "SSE.Views.PrintSettings.textCurrentSheet": "Full Actual", "SSE.Views.PrintSettings.textCustom": "Personalitzat", @@ -2749,7 +2752,7 @@ "SSE.Views.ShapeSettings.textStyle": "Estil", "SSE.Views.ShapeSettings.textTexture": "Des d'un Tex", "SSE.Views.ShapeSettings.textTile": "Mosaic", - "SSE.Views.ShapeSettings.tipAddGradientPoint": "Afegir punt de degradat", + "SSE.Views.ShapeSettings.tipAddGradientPoint": "Afegeix un punt de degradat", "SSE.Views.ShapeSettings.tipRemoveGradientPoint": "Elimina el punt de degradat", "SSE.Views.ShapeSettings.txtBrownPaper": "Paper Marró", "SSE.Views.ShapeSettings.txtCanvas": "Llenç", @@ -2893,9 +2896,9 @@ "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.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", @@ -2933,7 +2936,7 @@ "SSE.Views.SortOptionsDialog.textOrientation": "Orientació", "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", @@ -2960,16 +2963,16 @@ "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.txtAddToDictionary": "Afegeix 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.txtSpelling": "Ortografia", - "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Copiar al final)", - "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Moure al final)", + "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Copia al final)", + "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Mou 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.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", @@ -2992,10 +2995,10 @@ "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.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.tipAddTab": "Afegeix un 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", @@ -3088,7 +3091,7 @@ "SSE.Views.TextArtSettings.textTexture": "Des d'un Tex", "SSE.Views.TextArtSettings.textTile": "Mosaic", "SSE.Views.TextArtSettings.textTransform": "Transformar", - "SSE.Views.TextArtSettings.tipAddGradientPoint": "Afegir punt de degradat", + "SSE.Views.TextArtSettings.tipAddGradientPoint": "Afegeix un punt de degradat", "SSE.Views.TextArtSettings.tipRemoveGradientPoint": "Elimina el punt de degradat", "SSE.Views.TextArtSettings.txtBrownPaper": "Paper Marró", "SSE.Views.TextArtSettings.txtCanvas": "Llenç", @@ -3102,7 +3105,7 @@ "SSE.Views.TextArtSettings.txtNoBorders": "Sense Línia", "SSE.Views.TextArtSettings.txtPapyrus": "Papiro", "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", @@ -3129,7 +3132,7 @@ "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.textAddPrintArea": "Afegeix l'àrea d'impressió", "SSE.Views.Toolbar.textAlignBottom": "Alineació Inferior", "SSE.Views.Toolbar.textAlignCenter": "Centrar", "SSE.Views.Toolbar.textAlignJust": "Justificat", @@ -3178,7 +3181,7 @@ "SSE.Views.Toolbar.textMiddleBorders": "Vores Horitzontals Interns", "SSE.Views.Toolbar.textMoreFormats": "Altres formats", "SSE.Views.Toolbar.textMorePages": "Més pàgines", - "SSE.Views.Toolbar.textNewColor": "Afegir un Nou Color Personalitzat", + "SSE.Views.Toolbar.textNewColor": "Afegeix un color personalitzat nou ", "SSE.Views.Toolbar.textNewRule": "Nova regla", "SSE.Views.Toolbar.textNoBorders": "Sense Vores", "SSE.Views.Toolbar.textOnePage": "pàgina", @@ -3237,7 +3240,7 @@ "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.tipDigStyleAccounting": "Estil de comptabilitat", "SSE.Views.Toolbar.tipDigStyleCurrency": "Estil de Moneda", "SSE.Views.Toolbar.tipDigStylePercent": "Estil Percentual", "SSE.Views.Toolbar.tipEditChart": "Editar Gràfic", @@ -3254,7 +3257,7 @@ "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.tipInsertHyperlink": "Afegeix un enllaç", "SSE.Views.Toolbar.tipInsertImage": "Insertar Imatge", "SSE.Views.Toolbar.tipInsertOpt": "Inserir cel·les", "SSE.Views.Toolbar.tipInsertShape": "Inseriu autoforma", diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 9a318ba51..93bd71a70 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -689,9 +689,6 @@ "SSE.Controllers.Main.errorWrongBracketsCount": "An error in the entered formula.
Wrong number of brackets is used.", "SSE.Controllers.Main.errorWrongOperator": "An error in the entered formula. Wrong operator is used.
Please correct the error.", "SSE.Controllers.Main.errRemDuplicates": "Duplicate values found and deleted: {0}, unique values left: {1}.", - "SSE.Controllers.Main.uploadDocExtMessage": "Unknown document format.", - "SSE.Controllers.Main.uploadDocFileCountMessage": "No documents uploaded.", - "SSE.Controllers.Main.uploadDocSizeMessage": "Maximum document size limit exceeded.", "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...", @@ -989,6 +986,9 @@ "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.", diff --git a/apps/spreadsheeteditor/main/locale/fr.json b/apps/spreadsheeteditor/main/locale/fr.json index 237a898ff..a4d7b5cf7 100644 --- a/apps/spreadsheeteditor/main/locale/fr.json +++ b/apps/spreadsheeteditor/main/locale/fr.json @@ -986,6 +986,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.", diff --git a/apps/spreadsheeteditor/main/locale/ro.json b/apps/spreadsheeteditor/main/locale/ro.json index e61ad775e..5faf8242c 100644 --- a/apps/spreadsheeteditor/main/locale/ro.json +++ b/apps/spreadsheeteditor/main/locale/ro.json @@ -986,6 +986,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ă.", diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json index eb3510481..534848032 100644 --- a/apps/spreadsheeteditor/main/locale/ru.json +++ b/apps/spreadsheeteditor/main/locale/ru.json @@ -986,6 +986,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.", 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": "右", From ba8fd37b3b703fa725a28203a9808566886d74ef Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 13 Aug 2021 22:39:10 +0300 Subject: [PATCH 32/90] For Bug 51938 --- apps/common/main/resources/less/toolbar.less | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/common/main/resources/less/toolbar.less b/apps/common/main/resources/less/toolbar.less index 955825715..9eebc135a 100644 --- a/apps/common/main/resources/less/toolbar.less +++ b/apps/common/main/resources/less/toolbar.less @@ -547,6 +547,12 @@ .icon { width: 22px; height: 22px; + + .pixel-ratio__1_25 &, + .pixel-ratio__1_75 & { + width: 20px; + height: 20px; + } } } } From f71b939ea139111e90da805a3cd8ea2e18128b99 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 13 Aug 2021 23:46:06 +0300 Subject: [PATCH 33/90] For Bug 51938 --- apps/documenteditor/main/app/view/TableSettings.js | 6 +++--- apps/presentationeditor/main/app/view/TableSettings.js | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/documenteditor/main/app/view/TableSettings.js b/apps/documenteditor/main/app/view/TableSettings.js index 559a27e54..dc9f19ca5 100644 --- a/apps/documenteditor/main/app/view/TableSettings.js +++ b/apps/documenteditor/main/app/view/TableSettings.js @@ -486,7 +486,7 @@ define([ this.mnuTableTemplatePicker.selectRecord(rec, true); this.btnTableTemplate.resumeEvents(); - this.$el.find('.icon-template-table').css({'background-image': 'url(' + rec.get("imageUrl") + ')', 'height': '52px', 'width': '72px', 'background-position': 'center', 'background-size': 'auto 50px'}); + this.$el.find('.icon-template-table').css({'background-image': 'url(' + rec.get("imageUrl") + ')', 'height': '52px', 'width': '72px', 'background-position': 'center', 'background-size': 'auto 52px'}); this._state.TemplateId = value; } @@ -695,7 +695,7 @@ define([ cls : 'btn-large-dataview template-table', iconCls : 'icon-template-table', menu : new Common.UI.Menu({ - style: 'width: 575px;', + style: 'width: 588px;', items: [ { template: _.template('') } ] @@ -708,7 +708,7 @@ define([ restoreHeight: 350, groups: new Common.UI.DataViewGroupStore(), store: new Common.UI.DataViewStore(), - itemTemplate: _.template('
'), + itemTemplate: _.template('
'), style: 'max-height: 350px;' }); }); diff --git a/apps/presentationeditor/main/app/view/TableSettings.js b/apps/presentationeditor/main/app/view/TableSettings.js index b2b167674..e0025a957 100644 --- a/apps/presentationeditor/main/app/view/TableSettings.js +++ b/apps/presentationeditor/main/app/view/TableSettings.js @@ -437,7 +437,7 @@ define([ this.mnuTableTemplatePicker.selectRecord(rec, true); this.btnTableTemplate.resumeEvents(); - this.$el.find('.icon-template-table').css({'background-image': 'url(' + rec.get("imageUrl") + ')', 'height': '52px', 'width': '72px', 'background-position': 'center', 'background-size': 'auto 50px'}); + this.$el.find('.icon-template-table').css({'background-image': 'url(' + rec.get("imageUrl") + ')', 'height': '52px', 'width': '72px', 'background-position': 'center', 'background-size': 'auto 52px'}); this._state.TemplateId = value; } @@ -639,7 +639,7 @@ define([ cls : 'btn-large-dataview template-table', iconCls : 'icon-template-table', menu : new Common.UI.Menu({ - style: 'width: 575px;', + style: 'width: 588px;', items: [ { template: _.template('') } ] @@ -652,7 +652,7 @@ define([ restoreHeight: 350, groups: new Common.UI.DataViewGroupStore(), store: new Common.UI.DataViewStore(), - itemTemplate: _.template('
'), + itemTemplate: _.template('
'), style: 'max-height: 350px;' }); }); From b64876f3d21384d07367c1dac6b2d6c7b4002aa3 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 16 Aug 2021 12:29:13 +0300 Subject: [PATCH 34/90] Fix Bug 43987 --- apps/common/main/lib/component/Menu.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); From a461d454e8b067acc7e050c1a344e63577a9c74f Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 16 Aug 2021 15:35:40 +0300 Subject: [PATCH 35/90] [SSE] Fix Bug 50285 --- apps/spreadsheeteditor/main/app/controller/Toolbar.js | 2 +- apps/spreadsheeteditor/main/app/view/TableSettings.js | 6 +++--- apps/spreadsheeteditor/main/app/view/Toolbar.js | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/spreadsheeteditor/main/app/controller/Toolbar.js b/apps/spreadsheeteditor/main/app/controller/Toolbar.js index 7d1a839ea..dc6c66ca1 100644 --- a/apps/spreadsheeteditor/main/app/controller/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/controller/Toolbar.js @@ -1982,7 +1982,7 @@ define([ restoreHeight: 300, style: 'max-height: 300px;', store: me.getCollection('TableTemplates'), - itemTemplate: _.template('
') + itemTemplate: _.template('
') }); picker.on('item:click', function(picker, item, record) { diff --git a/apps/spreadsheeteditor/main/app/view/TableSettings.js b/apps/spreadsheeteditor/main/app/view/TableSettings.js index f247caa3c..5716d7c04 100644 --- a/apps/spreadsheeteditor/main/app/view/TableSettings.js +++ b/apps/spreadsheeteditor/main/app/view/TableSettings.js @@ -452,7 +452,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; } @@ -474,7 +474,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('') } ] @@ -487,7 +487,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 e2b6426d2..3d50e3c6d 100644 --- a/apps/spreadsheeteditor/main/app/view/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/view/Toolbar.js @@ -801,7 +801,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], menu : new Common.UI.Menu({ items: [ - { template: _.template('
') } + { template: _.template('
') } ] }) }); From 2a43b5935d68c906dd375171d308f6441bc6fce3 Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Mon, 16 Aug 2021 16:55:24 +0300 Subject: [PATCH 36/90] [SSE] Fix re-render FilterOptions --- .../mobile/src/view/FilterOptions.jsx | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/src/view/FilterOptions.jsx b/apps/spreadsheeteditor/mobile/src/view/FilterOptions.jsx index 621b5afb9..7e4e30d31 100644 --- a/apps/spreadsheeteditor/mobile/src/view/FilterOptions.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/FilterOptions.jsx @@ -6,17 +6,11 @@ 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); }; @@ -51,7 +45,7 @@ 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)} 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} /> )} From adfe945ff02fd3ca2269dddae64ff2b8c4a4a295 Mon Sep 17 00:00:00 2001 From: evgenykatyshev Date: Mon, 16 Aug 2021 19:11:01 +0300 Subject: [PATCH 37/90] Fix bug --- .../img/controls/common-controls.png | Bin 5365 -> 5357 bytes .../img/controls/common-controls@2x.png | Bin 10944 -> 10965 bytes 2 files changed, 0 insertions(+), 0 deletions(-) diff --git a/apps/common/main/resources/img/controls/common-controls.png b/apps/common/main/resources/img/controls/common-controls.png index c7ef58b2a9ff0128c959c9d9b721a65b25c87aee..ff0d73fd513ef683f85d056fddd26f4577dbdaa7 100755 GIT binary patch delta 5319 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 Date: Tue, 17 Aug 2021 10:37:14 +0300 Subject: [PATCH 38/90] Add assets for 125 and 175% scale Also reduce old assets size --- .../img/combo-border-size/BorderSize@1.25x.png | Bin 0 -> 216 bytes .../img/combo-border-size/BorderSize@1.5x.png | Bin 228 -> 227 bytes .../img/combo-border-size/BorderSize@1.75x.png | Bin 0 -> 612 bytes .../dimension-picker/dimension-highlighted.png | Bin 96 -> 86 bytes .../dimension-highlighted@1.25x.png | Bin 0 -> 89 bytes .../dimension-highlighted@1.5x.png | Bin 124 -> 96 bytes .../dimension-highlighted@1.75x.png | Bin 0 -> 97 bytes .../dimension-highlighted@2x.png | Bin 104 -> 102 bytes .../dimension-unhighlighted.png | Bin 96 -> 85 bytes .../dimension-unhighlighted@1.25x.png | Bin 0 -> 96 bytes .../dimension-unhighlighted@1.5x.png | Bin 124 -> 95 bytes .../dimension-unhighlighted@1.75x.png | Bin 0 -> 97 bytes .../dimension-unhighlighted@2x.png | Bin 104 -> 101 bytes 13 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 apps/common/main/resources/img/combo-border-size/BorderSize@1.25x.png create mode 100644 apps/common/main/resources/img/combo-border-size/BorderSize@1.75x.png create mode 100644 apps/common/main/resources/img/dimension-picker/dimension-highlighted@1.25x.png create mode 100644 apps/common/main/resources/img/dimension-picker/dimension-highlighted@1.75x.png create mode 100644 apps/common/main/resources/img/dimension-picker/dimension-unhighlighted@1.25x.png create mode 100644 apps/common/main/resources/img/dimension-picker/dimension-unhighlighted@1.75x.png diff --git a/apps/common/main/resources/img/combo-border-size/BorderSize@1.25x.png b/apps/common/main/resources/img/combo-border-size/BorderSize@1.25x.png new file mode 100644 index 0000000000000000000000000000000000000000..aac35047de03b9be7cc4dbd58f0b15ea78d59420 GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^9t;eO8BEMTR%b+L7?9!&@Ck7R(h$&`{PF;h#Z(gH z7tD}$$%!)*$gA;maSW-r_4d+6-U9|4tQYmY`XAM9;$OVO#XR+t$44f$pXw?v2S_n!He~gr9k1!@>*HfMdMSkAO1x~on&skin^pKHg52ln>gTe~ HDWM4f8sAKD literal 0 HcmV?d00001 diff --git a/apps/common/main/resources/img/combo-border-size/BorderSize@1.5x.png b/apps/common/main/resources/img/combo-border-size/BorderSize@1.5x.png index 603c64c53f48fa95fcea5ae54b2fd154eb0ca6f5..dd2ed165243ce2511b6f4fb60123a8930a714ab3 100644 GIT binary patch delta 164 zcmV;V09*g$0pkIXM}LP&L_t(|+U?i35ri-R1<^kWDTQXv_d_X!%vO2Pc}3@?*@q`y zkd*h*p=zBLNmR{|I_kNkuB0Eb+Y+gRZtYwhbZh^z&zIjz&Z{M=oBvg{38)l3s`f?f|l}tmUwHv z2uT2pUpD%$XXz2CBT6&UMm>+zMx@T&_U~DCyJ6?DTl<%N{{CI^zgnWY+*LIN6u0}V zo`5R@NDf%Z3DbR6QvgZ$dTh|M>=u#}fGfui=RVo>$$mP}{r6^W(n% zm#cPi&tT?gT)al%)c1>Ri!4h%9TpI0kU3!T#-0smsJlVm^1oNMEdC`0-Z`U|47U%eTHx z+BogZjExV&7#I%l{psJd{_{6!28M=>d%wP{&3RwDr*G{o_xX0KYrlQm_i**BTTA_~ zue|%KVqVnNo&L#NH}-#STkp4ZF>^of|1Tenws^}QUl=NVYwxYK{mZk~*RwJ(d|>X? zd}ZMx+n(`Cz*lzBO6Mzu9ael7uPDy4%6RoY@0CEQ%%VPLlhPGtD!#l73^J=$-cHhQ zfBG&@->fwH&C?Bc?)nD5zjwu-d#}v2-Mcfh7#JRC98>-7_47cr<(%NwqucN6o}K!s z@q3ZQa<1Kb{$9J%%_+mb=kSIVP22AS)qY=Tuf+ab^m^5<`k&udDo38b+~r;Nj4S!R zQCZcRiq*?sZcJLSeEab(CO#ephv4g%fA3MMdOPR)9sXcuo+gEns zzlg$>%cJixGaSfgn)T~^_xGHxgV9&LzvsvsZ`-)ic;5B*j17-}aLci7sb+!oa}r=eXM)ASLVR;uunKD_KEk&98p`L!xsJvAT=$R=TzXGlnuUl!kWg UOz~bh5vY*C)78&qol`;+0LaP}XaE2J delta 76 zcmWGbm>}uS00hNLFLnbdrjj7PU1-21i=Sy@f`6Hre mv8v{YmVBrm&yw18Yz!xvswdoC#4#DDmci52&t;ucLK6UGOc(M1 literal 0 HcmV?d00001 diff --git a/apps/common/main/resources/img/dimension-picker/dimension-highlighted@1.5x.png b/apps/common/main/resources/img/dimension-picker/dimension-highlighted@1.5x.png index 2859225c77ea46cf2d8cdc401ab7cd150ebb62e7..4568ac129c7e09b4a5a7525e7a8c15676afdcac7 100644 GIT binary patch delta 77 zcmb}W7!NS16pnlip9*FXEaSW-rm7KW1I^yemk&Y#AMK%_MNXKsJ&5E|()RYn; ftvR9b9RtJ6)l2(~o_;+D)WYED>gTe~DWM4fB+wl3 delta 105 zcmYeOnIMtE#LU3J@L`wCF(Abg;1lBNlUcZG)vC2?*Pc3c>i)Crn?P~Kk|4ie28U-i z(tsQ}PZ!6Kid)GE4$Ny7Dm*xF;GaB8hI?`FNtqed7a16|or}ER-pJhxRLS7!>gTe~ HDWM4fDlaGL diff --git a/apps/common/main/resources/img/dimension-picker/dimension-highlighted@1.75x.png b/apps/common/main/resources/img/dimension-picker/dimension-highlighted@1.75x.png new file mode 100644 index 0000000000000000000000000000000000000000..7fa5bca27c43c5ba68fcf0e62a4b607409334231 GIT binary patch literal 97 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE0wix1Z>k4U8lEnWAr-fhCCn18)?ZSb#kky~ uc`+MLF|!-5glWQ+hCpVIcAmqm3=BO*s~YqE{LBUFVeoYIb6Mw<&;$To;2Q}5 literal 0 HcmV?d00001 diff --git a/apps/common/main/resources/img/dimension-picker/dimension-highlighted@2x.png b/apps/common/main/resources/img/dimension-picker/dimension-highlighted@2x.png index 6df7cc8888474e05e5aea4e23ef9f11c4de86cf9..f70ca1d69ec9dd6a023c737a943f393ddbd9cf94 100644 GIT binary patch delta 82 zcmc~un;_}S!oa}b%^4sJq;x%9978H@B}>dnxLW^7@hy*)tCfr?hq#Ps#+3zu&2GF> iAjZMy@BK`N7#Kd>(E2aM$!ZJK$l&Sf=d#Wzp$Py3B^piu delta 84 zcmYexm>}uT00c*}kGlXVrjj7PUP1wy%6y;_#xV> jB^7G2s^in9gb7Rxi3+RSQ)cvffQ;~T^>bP0l+XkKAGR80 diff --git a/apps/common/main/resources/img/dimension-picker/dimension-unhighlighted.png b/apps/common/main/resources/img/dimension-picker/dimension-unhighlighted.png index 725da022051f40c45168d993251fa9e9c6f2f1a8..60dffd10c4651dc958180130912d91338ea9d480 100644 GIT binary patch delta 65 zcmYcYogit$!oa}r=eXM)ASL7J;uunKD_KG4&F_BxL!u8^7I(GnQ987;VHE?z{ym$- UI^&h*0@X2iy85}Sb4q9e00hVv>;M1& delta 76 zcmWGdm>}uS00hNLFLnbdrjj7PU1ed7 fSLB34IRnGewG6L98v9j%Iv6}%{an^LB{Ts5?9m#} delta 105 zcma#AnIMtE#LU3J@L`wCF(Abg;1lBNlUcZG)vC2?*Z%+ipYw>9IZ&LjB*-tA!Qt7B zG$2RL)5S5Q;#P8k1M`}N3J(q(_$SYj;a(hkQf5Z=MFs|K=OXX7H*)s^RWf+G`njxg HN@xNA-g_p@ diff --git a/apps/common/main/resources/img/dimension-picker/dimension-unhighlighted@1.75x.png b/apps/common/main/resources/img/dimension-picker/dimension-unhighlighted@1.75x.png new file mode 100644 index 0000000000000000000000000000000000000000..e114299c70f1bd617f47e065d8171202a17c3bc6 GIT binary patch literal 97 zcmeAS@N?(olHy`uVBq!ia0vp^3Lwk`Bp75C+I9jdrjj7PU-YW6FOXhOS3j3^P6dnxL^NC@hy)MbB|ODcaM}w)`b<0i`jZX hj0bCfyE7&-FdX1NQS2HnKNqNv!PC{xWt~$(695Fs8kqn9 delta 84 zcmYezm>}uT00c*}kGlXVrjj7PUgTe~DWM4fLpU2& From ef1a5ffe05f46efff54bcb78f505375127d22fdd Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 17 Aug 2021 12:06:41 +0300 Subject: [PATCH 39/90] [DE] Fix Bug 51752 --- apps/documenteditor/main/app/controller/Main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index 2652d4d7d..721b32075 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -962,7 +962,7 @@ define([ this.loadMask.setTitle(title); if (!this.isShowOpenDialog) - this.loadMask.show(action.id===Asc.c_oAscAsyncAction['Open']); + this.loadMask.show(action.id===Asc.c_oAscAsyncAction['Open'] || action.id===Asc.c_oAscAsyncAction['MailMergeLoadFile']); } else { this.getApplication().getController('Statusbar').setStatusCaption(text, force); } From 9dd6ca7789fc05d2a7f33f53cf803f0b3b8038be Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 17 Aug 2021 12:40:42 +0300 Subject: [PATCH 40/90] [wopi] Fix message origin if undefined --- apps/api/wopi/editor-wopi.ejs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; From bb4bf10adaf01289ca7d1c175b2ce5b5b46b4a5b Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 17 Aug 2021 14:15:53 +0300 Subject: [PATCH 41/90] Fix loader: show mask immediately, but loader on timer (for version history bug, for bug 51752) --- apps/common/main/lib/component/LoadMask.js | 38 ++++++++++++------- .../main/app/controller/Main.js | 2 +- 2 files changed, 25 insertions(+), 15 deletions(-) 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/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index 721b32075..2652d4d7d 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -962,7 +962,7 @@ define([ this.loadMask.setTitle(title); if (!this.isShowOpenDialog) - this.loadMask.show(action.id===Asc.c_oAscAsyncAction['Open'] || action.id===Asc.c_oAscAsyncAction['MailMergeLoadFile']); + this.loadMask.show(action.id===Asc.c_oAscAsyncAction['Open']); } else { this.getApplication().getController('Statusbar').setStatusCaption(text, force); } From d32460ffa833b44c00986fc9847de9e0a555ac63 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Tue, 17 Aug 2021 15:49:06 +0300 Subject: [PATCH 42/90] [DE SSE mobile] Fix Bug 51968 --- apps/documenteditor/mobile/locale/en.json | 1 + apps/documenteditor/mobile/locale/ru.json | 1 + .../src/controller/settings/Download.jsx | 36 +++++++++++-------- apps/spreadsheeteditor/mobile/locale/en.json | 1 + apps/spreadsheeteditor/mobile/locale/ru.json | 3 +- .../src/controller/settings/Download.jsx | 22 ++++++++---- 6 files changed, 42 insertions(+), 22 deletions(-) diff --git a/apps/documenteditor/mobile/locale/en.json b/apps/documenteditor/mobile/locale/en.json index 5db65c176..f176b198f 100644 --- a/apps/documenteditor/mobile/locale/en.json +++ b/apps/documenteditor/mobile/locale/en.json @@ -479,6 +479,7 @@ "textBack": "Back", "textBottom": "Bottom", "textCancel": "Cancel", + "textOk": "Ok", "textCaseSensitive": "Case Sensitive", "textCentimeter": "Centimeter", "textCollaboration": "Collaboration", diff --git a/apps/documenteditor/mobile/locale/ru.json b/apps/documenteditor/mobile/locale/ru.json index 5e84fd246..733d4eba7 100644 --- a/apps/documenteditor/mobile/locale/ru.json +++ b/apps/documenteditor/mobile/locale/ru.json @@ -479,6 +479,7 @@ "textBack": "Назад", "textBottom": "Нижнее", "textCancel": "Отмена", + "textOk": "Ок", "textCaseSensitive": "С учетом регистра", "textCentimeter": "Сантиметр", "textCollaboration": "Совместная работа", diff --git a/apps/documenteditor/mobile/src/controller/settings/Download.jsx b/apps/documenteditor/mobile/src/controller/settings/Download.jsx index d23411208..1e235a74e 100644 --- a/apps/documenteditor/mobile/src/controller/settings/Download.jsx +++ b/apps/documenteditor/mobile/src/controller/settings/Download.jsx @@ -27,21 +27,29 @@ class DownloadController extends Component { if(format) { this.closeModal(); if (format == Asc.c_oAscFileType.TXT || format == Asc.c_oAscFileType.RTF) { - f7.dialog.confirm( - (format === Asc.c_oAscFileType.TXT) ? _t.textDownloadTxt : _t.textDownloadRtf, - _t.notcriticalErrorTitle, - () => { - if (format == Asc.c_oAscFileType.TXT) { - const isDocReady = this.props.storeAppOptions.isDocReady; - onAdvancedOptions(Asc.c_oAscAdvancedOptionsID.TXT, api.asc_getAdvancedOptions(), 2, new Asc.asc_CDownloadOptions(format), _t, isDocReady); + f7.dialog.create({ + title: _t.notcriticalErrorTitle, + text: (format === Asc.c_oAscFileType.TXT) ? _t.textDownloadTxt : _t.textDownloadRtf, + buttons: [ + { + text: _t.textCancel + }, + { + text: _t.textOk, + onClick: () => { + if (format == Asc.c_oAscFileType.TXT) { + const isDocReady = this.props.storeAppOptions.isDocReady; + onAdvancedOptions(Asc.c_oAscAdvancedOptionsID.TXT, api.asc_getAdvancedOptions(), 2, new Asc.asc_CDownloadOptions(format), _t, isDocReady); + } + else { + setTimeout(() => { + api.asc_DownloadAs(new Asc.asc_CDownloadOptions(format)); + }, 400); + } + } } - else { - setTimeout(() => { - api.asc_DownloadAs(new Asc.asc_CDownloadOptions(format)); - }, 400); - } - } - ); + ], + }).open(); } else { setTimeout(() => { diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json index b4771b33e..07771d3b1 100644 --- a/apps/spreadsheeteditor/mobile/locale/en.json +++ b/apps/spreadsheeteditor/mobile/locale/en.json @@ -533,6 +533,7 @@ "textByColumns": "By columns", "textByRows": "By rows", "textCancel": "Cancel", + "textOk": "Ok", "textCentimeter": "Centimeter", "textCollaboration": "Collaboration", "textColorSchemes": "Color Schemes", diff --git a/apps/spreadsheeteditor/mobile/locale/ru.json b/apps/spreadsheeteditor/mobile/locale/ru.json index 2d0b761cf..141ab669a 100644 --- a/apps/spreadsheeteditor/mobile/locale/ru.json +++ b/apps/spreadsheeteditor/mobile/locale/ru.json @@ -253,7 +253,7 @@ "saveTitleText": "Сохранение документа", "textLoadingDocument": "Загрузка документа", "textNo": "Нет", - "textOk": "Ok", + "textOk": "Ок", "textYes": "Да", "txtEditingMode": "Установка режима редактирования...", "uploadImageTextText": "Загрузка рисунка...", @@ -532,6 +532,7 @@ "textByColumns": "По столбцам", "textByRows": "По строкам", "textCancel": "Отмена", + "textOk": "Ок", "textCentimeter": "Сантиметр", "textCollaboration": "Совместная работа", "textColorSchemes": "Цветовые схемы", diff --git a/apps/spreadsheeteditor/mobile/src/controller/settings/Download.jsx b/apps/spreadsheeteditor/mobile/src/controller/settings/Download.jsx index 6e1ed4b25..4ef545efb 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/settings/Download.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/settings/Download.jsx @@ -17,13 +17,21 @@ class DownloadController extends Component { if (format) { if (format == Asc.c_oAscFileType.CSV) { - f7.dialog.confirm( - _t.warnDownloadAs, - _t.notcriticalErrorTitle, - function () { - onAdvancedOptions(Asc.c_oAscAdvancedOptionsID.CSV, api.asc_getAdvancedOptions(), 2, new Asc.asc_CDownloadOptions(format), _t, true); - } - ) + 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 { api.asc_DownloadAs(new Asc.asc_CDownloadOptions(format)); } From 62156fb733a33790a9d65d148a78ea33af65ec65 Mon Sep 17 00:00:00 2001 From: evgenykatyshev Date: Tue, 17 Aug 2021 16:04:59 +0300 Subject: [PATCH 43/90] Add gradients for 125 and 175% scale Change color of gradients in exist sprties --- .../resources/img/right-panels/gradients.png | Bin 13715 -> 10042 bytes .../img/right-panels/gradients@1.25x.png | Bin 0 -> 14760 bytes .../img/right-panels/gradients@1.5x.png | Bin 8226 -> 20840 bytes .../img/right-panels/gradients@1.75x.png | Bin 0 -> 26749 bytes .../img/right-panels/gradients@2x.png | Bin 25997 -> 33737 bytes 5 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 apps/common/main/resources/img/right-panels/gradients@1.25x.png create mode 100644 apps/common/main/resources/img/right-panels/gradients@1.75x.png diff --git a/apps/common/main/resources/img/right-panels/gradients.png b/apps/common/main/resources/img/right-panels/gradients.png index ecb3d99f21f6ea5d104b444b8e703a84b3eb8f87..186a96f4d6b7a2ed089beb1989c39ca8f372d52d 100644 GIT binary patch literal 10042 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 CLBenV 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 0000000000000000000000000000000000000000..b08d9744e14b926848f79843d5b8cd1c7b43aadd GIT binary patch literal 26749 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�oJ4kFDt+t}xYSY{e2bn>ik0 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 z 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 literal 25997 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 Date: Tue, 17 Aug 2021 16:07:42 +0300 Subject: [PATCH 44/90] Fix translation --- apps/documenteditor/mobile/locale/be.json | 3 ++- apps/documenteditor/mobile/locale/bg.json | 3 ++- apps/documenteditor/mobile/locale/ca.json | 3 ++- apps/documenteditor/mobile/locale/cs.json | 3 ++- apps/documenteditor/mobile/locale/da.json | 3 ++- apps/documenteditor/mobile/locale/de.json | 3 ++- apps/documenteditor/mobile/locale/el.json | 3 ++- apps/documenteditor/mobile/locale/es.json | 3 ++- apps/documenteditor/mobile/locale/fi.json | 3 ++- apps/documenteditor/mobile/locale/fr.json | 3 ++- apps/documenteditor/mobile/locale/hu.json | 3 ++- apps/documenteditor/mobile/locale/it.json | 3 ++- apps/documenteditor/mobile/locale/ja.json | 3 ++- apps/documenteditor/mobile/locale/ko.json | 3 ++- apps/documenteditor/mobile/locale/lo.json | 3 ++- apps/documenteditor/mobile/locale/lv.json | 3 ++- apps/documenteditor/mobile/locale/nb.json | 3 ++- apps/documenteditor/mobile/locale/nl.json | 3 ++- apps/documenteditor/mobile/locale/pl.json | 3 ++- apps/documenteditor/mobile/locale/pt.json | 3 ++- apps/documenteditor/mobile/locale/ro.json | 3 ++- apps/documenteditor/mobile/locale/sk.json | 3 ++- apps/documenteditor/mobile/locale/sl.json | 3 ++- apps/documenteditor/mobile/locale/sv.json | 3 ++- apps/documenteditor/mobile/locale/tr.json | 3 ++- apps/documenteditor/mobile/locale/uk.json | 3 ++- apps/documenteditor/mobile/locale/vi.json | 3 ++- apps/documenteditor/mobile/locale/zh.json | 3 ++- apps/spreadsheeteditor/mobile/locale/be.json | 3 ++- apps/spreadsheeteditor/mobile/locale/bg.json | 3 ++- apps/spreadsheeteditor/mobile/locale/ca.json | 3 ++- apps/spreadsheeteditor/mobile/locale/cs.json | 3 ++- apps/spreadsheeteditor/mobile/locale/de.json | 3 ++- apps/spreadsheeteditor/mobile/locale/el.json | 3 ++- apps/spreadsheeteditor/mobile/locale/es.json | 3 ++- apps/spreadsheeteditor/mobile/locale/fr.json | 3 ++- apps/spreadsheeteditor/mobile/locale/hu.json | 3 ++- apps/spreadsheeteditor/mobile/locale/it.json | 3 ++- apps/spreadsheeteditor/mobile/locale/ja.json | 3 ++- apps/spreadsheeteditor/mobile/locale/ko.json | 3 ++- apps/spreadsheeteditor/mobile/locale/lo.json | 3 ++- apps/spreadsheeteditor/mobile/locale/lv.json | 3 ++- apps/spreadsheeteditor/mobile/locale/nb.json | 3 ++- apps/spreadsheeteditor/mobile/locale/nl.json | 3 ++- apps/spreadsheeteditor/mobile/locale/pl.json | 3 ++- apps/spreadsheeteditor/mobile/locale/pt.json | 3 ++- apps/spreadsheeteditor/mobile/locale/ro.json | 3 ++- apps/spreadsheeteditor/mobile/locale/sk.json | 3 ++- apps/spreadsheeteditor/mobile/locale/sl.json | 3 ++- apps/spreadsheeteditor/mobile/locale/tr.json | 3 ++- apps/spreadsheeteditor/mobile/locale/uk.json | 3 ++- apps/spreadsheeteditor/mobile/locale/vi.json | 3 ++- apps/spreadsheeteditor/mobile/locale/zh.json | 3 ++- 53 files changed, 106 insertions(+), 53 deletions(-) diff --git a/apps/documenteditor/mobile/locale/be.json b/apps/documenteditor/mobile/locale/be.json index f1387717c..8c452bf51 100644 --- a/apps/documenteditor/mobile/locale/be.json +++ b/apps/documenteditor/mobile/locale/be.json @@ -566,7 +566,8 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry" + "txtScheme9": "Foundry", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/bg.json b/apps/documenteditor/mobile/locale/bg.json index f1387717c..8c452bf51 100644 --- a/apps/documenteditor/mobile/locale/bg.json +++ b/apps/documenteditor/mobile/locale/bg.json @@ -566,7 +566,8 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry" + "txtScheme9": "Foundry", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/ca.json b/apps/documenteditor/mobile/locale/ca.json index 70c383f72..012e66315 100644 --- a/apps/documenteditor/mobile/locale/ca.json +++ b/apps/documenteditor/mobile/locale/ca.json @@ -566,7 +566,8 @@ "txtScheme6": "Concurs", "txtScheme7": "Patrimoni net", "txtScheme8": "Flux", - "txtScheme9": "Fosa" + "txtScheme9": "Fosa", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "Teniu canvis sense desar. Feu clic a \"Mantingueu-vos en aquesta pàgina\" per esperar al desament automàtic. Feu clic a \"Deixar aquesta pàgina\" per descartar tots els canvis no desats.", diff --git a/apps/documenteditor/mobile/locale/cs.json b/apps/documenteditor/mobile/locale/cs.json index f1387717c..8c452bf51 100644 --- a/apps/documenteditor/mobile/locale/cs.json +++ b/apps/documenteditor/mobile/locale/cs.json @@ -566,7 +566,8 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry" + "txtScheme9": "Foundry", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/da.json b/apps/documenteditor/mobile/locale/da.json index f1387717c..8c452bf51 100644 --- a/apps/documenteditor/mobile/locale/da.json +++ b/apps/documenteditor/mobile/locale/da.json @@ -566,7 +566,8 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry" + "txtScheme9": "Foundry", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/de.json b/apps/documenteditor/mobile/locale/de.json index 48050b14f..6d7fabffc 100644 --- a/apps/documenteditor/mobile/locale/de.json +++ b/apps/documenteditor/mobile/locale/de.json @@ -566,7 +566,8 @@ "txtScheme6": "Halle", "txtScheme7": "Kapital", "txtScheme8": "Fluss", - "txtScheme9": "Gießerei" + "txtScheme9": "Gießerei", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "Sie haben nicht gespeicherte Änderungen. Klicken Sie auf \"Auf dieser Seite bleiben\" und warten Sie, bis die Datei automatisch gespeichert wird. Klicken Sie auf \"Die Seite verlassen\", um nicht gespeicherte Änderungen zu verwerfen.", diff --git a/apps/documenteditor/mobile/locale/el.json b/apps/documenteditor/mobile/locale/el.json index f1387717c..8c452bf51 100644 --- a/apps/documenteditor/mobile/locale/el.json +++ b/apps/documenteditor/mobile/locale/el.json @@ -566,7 +566,8 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry" + "txtScheme9": "Foundry", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/es.json b/apps/documenteditor/mobile/locale/es.json index f9fb33af9..ec2a2e403 100644 --- a/apps/documenteditor/mobile/locale/es.json +++ b/apps/documenteditor/mobile/locale/es.json @@ -566,7 +566,8 @@ "txtScheme6": "Concurrencia", "txtScheme7": "Equidad ", "txtScheme8": "Flujo", - "txtScheme9": "Fundición" + "txtScheme9": "Fundición", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "Tiene cambios sin guardar. Haga clic en \"Permanecer en esta página\" para esperar a que se guarde automáticamente. Haga clic en \"Salir de esta página\" para descartar todos los cambios no guardados.", diff --git a/apps/documenteditor/mobile/locale/fi.json b/apps/documenteditor/mobile/locale/fi.json index f1387717c..8c452bf51 100644 --- a/apps/documenteditor/mobile/locale/fi.json +++ b/apps/documenteditor/mobile/locale/fi.json @@ -566,7 +566,8 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry" + "txtScheme9": "Foundry", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/fr.json b/apps/documenteditor/mobile/locale/fr.json index 86d3a23f4..e32fc9f26 100644 --- a/apps/documenteditor/mobile/locale/fr.json +++ b/apps/documenteditor/mobile/locale/fr.json @@ -566,7 +566,8 @@ "txtScheme6": "Rotonde", "txtScheme7": "Capitaux", "txtScheme8": "Flux", - "txtScheme9": "Fonderie" + "txtScheme9": "Fonderie", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur Rester sur cette page et attendez l'enregistrement automatique. Cliquez sur Quitter cette page pour annuler toutes les modifications non enregistrées.", diff --git a/apps/documenteditor/mobile/locale/hu.json b/apps/documenteditor/mobile/locale/hu.json index f1387717c..8c452bf51 100644 --- a/apps/documenteditor/mobile/locale/hu.json +++ b/apps/documenteditor/mobile/locale/hu.json @@ -566,7 +566,8 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry" + "txtScheme9": "Foundry", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/it.json b/apps/documenteditor/mobile/locale/it.json index f1387717c..8c452bf51 100644 --- a/apps/documenteditor/mobile/locale/it.json +++ b/apps/documenteditor/mobile/locale/it.json @@ -566,7 +566,8 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry" + "txtScheme9": "Foundry", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/ja.json b/apps/documenteditor/mobile/locale/ja.json index 5f41ac0e3..d5b722a1a 100644 --- a/apps/documenteditor/mobile/locale/ja.json +++ b/apps/documenteditor/mobile/locale/ja.json @@ -527,7 +527,8 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry" + "txtScheme9": "Foundry", + "textOk": "Ok" }, "Error": { "convertationTimeoutText": "Conversion timeout exceeded.", diff --git a/apps/documenteditor/mobile/locale/ko.json b/apps/documenteditor/mobile/locale/ko.json index f1387717c..8c452bf51 100644 --- a/apps/documenteditor/mobile/locale/ko.json +++ b/apps/documenteditor/mobile/locale/ko.json @@ -566,7 +566,8 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry" + "txtScheme9": "Foundry", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/lo.json b/apps/documenteditor/mobile/locale/lo.json index f1387717c..8c452bf51 100644 --- a/apps/documenteditor/mobile/locale/lo.json +++ b/apps/documenteditor/mobile/locale/lo.json @@ -566,7 +566,8 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry" + "txtScheme9": "Foundry", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/lv.json b/apps/documenteditor/mobile/locale/lv.json index f1387717c..8c452bf51 100644 --- a/apps/documenteditor/mobile/locale/lv.json +++ b/apps/documenteditor/mobile/locale/lv.json @@ -566,7 +566,8 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry" + "txtScheme9": "Foundry", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/nb.json b/apps/documenteditor/mobile/locale/nb.json index f1387717c..8c452bf51 100644 --- a/apps/documenteditor/mobile/locale/nb.json +++ b/apps/documenteditor/mobile/locale/nb.json @@ -566,7 +566,8 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry" + "txtScheme9": "Foundry", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/nl.json b/apps/documenteditor/mobile/locale/nl.json index 15bec7452..50f24bc49 100644 --- a/apps/documenteditor/mobile/locale/nl.json +++ b/apps/documenteditor/mobile/locale/nl.json @@ -566,7 +566,8 @@ "txtScheme6": "Concours", "txtScheme7": "Vermogen", "txtScheme8": "Stroom", - "txtScheme9": "Gieterij" + "txtScheme9": "Gieterij", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "U heeft nog niet opgeslagen wijzigingen. Klik op 'Blijf op deze pagina' om te wachten op automatisch opslaan. Klik op 'Verlaat deze pagina' om alle niet-opgeslagen wijzigingen te verwijderen.", diff --git a/apps/documenteditor/mobile/locale/pl.json b/apps/documenteditor/mobile/locale/pl.json index f1387717c..8c452bf51 100644 --- a/apps/documenteditor/mobile/locale/pl.json +++ b/apps/documenteditor/mobile/locale/pl.json @@ -566,7 +566,8 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry" + "txtScheme9": "Foundry", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/pt.json b/apps/documenteditor/mobile/locale/pt.json index 17ae58ae6..fb1b37082 100644 --- a/apps/documenteditor/mobile/locale/pt.json +++ b/apps/documenteditor/mobile/locale/pt.json @@ -566,7 +566,8 @@ "txtScheme6": "Concurso", "txtScheme7": "Patrimônio Líquido", "txtScheme8": "Fluxo", - "txtScheme9": "Fundição" + "txtScheme9": "Fundição", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "Você tem mudanças não salvas. Clique em 'Ficar nesta página' para esperar pela auto-salvar. Clique em 'Sair desta página' para descartar todas as mudanças não salvas.", diff --git a/apps/documenteditor/mobile/locale/ro.json b/apps/documenteditor/mobile/locale/ro.json index 66fa41d2b..d417daa40 100644 --- a/apps/documenteditor/mobile/locale/ro.json +++ b/apps/documenteditor/mobile/locale/ro.json @@ -566,7 +566,8 @@ "txtScheme6": "Concurență", "txtScheme7": "Echilibru", "txtScheme8": "Flux", - "txtScheme9": "Forjă" + "txtScheme9": "Forjă", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "Nu ați salvat modificările din documentul. Faceți clic pe Rămâi în pagină și așteptați la salvare automată. Faceți clic pe Părăsește aceasta pagina ca să renunțați la toate modificările nesalvate.", diff --git a/apps/documenteditor/mobile/locale/sk.json b/apps/documenteditor/mobile/locale/sk.json index f1387717c..8c452bf51 100644 --- a/apps/documenteditor/mobile/locale/sk.json +++ b/apps/documenteditor/mobile/locale/sk.json @@ -566,7 +566,8 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry" + "txtScheme9": "Foundry", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/sl.json b/apps/documenteditor/mobile/locale/sl.json index f1387717c..8c452bf51 100644 --- a/apps/documenteditor/mobile/locale/sl.json +++ b/apps/documenteditor/mobile/locale/sl.json @@ -566,7 +566,8 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry" + "txtScheme9": "Foundry", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/sv.json b/apps/documenteditor/mobile/locale/sv.json index f1387717c..8c452bf51 100644 --- a/apps/documenteditor/mobile/locale/sv.json +++ b/apps/documenteditor/mobile/locale/sv.json @@ -566,7 +566,8 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry" + "txtScheme9": "Foundry", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/tr.json b/apps/documenteditor/mobile/locale/tr.json index 6e7de01d7..5b434d997 100644 --- a/apps/documenteditor/mobile/locale/tr.json +++ b/apps/documenteditor/mobile/locale/tr.json @@ -531,7 +531,8 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry" + "txtScheme9": "Foundry", + "textOk": "Ok" }, "LongActions": { "applyChangesTextText": "Loading data...", diff --git a/apps/documenteditor/mobile/locale/uk.json b/apps/documenteditor/mobile/locale/uk.json index f1387717c..8c452bf51 100644 --- a/apps/documenteditor/mobile/locale/uk.json +++ b/apps/documenteditor/mobile/locale/uk.json @@ -566,7 +566,8 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry" + "txtScheme9": "Foundry", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/vi.json b/apps/documenteditor/mobile/locale/vi.json index f1387717c..8c452bf51 100644 --- a/apps/documenteditor/mobile/locale/vi.json +++ b/apps/documenteditor/mobile/locale/vi.json @@ -566,7 +566,8 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry" + "txtScheme9": "Foundry", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/zh.json b/apps/documenteditor/mobile/locale/zh.json index cd6e28cd1..773072e2e 100644 --- a/apps/documenteditor/mobile/locale/zh.json +++ b/apps/documenteditor/mobile/locale/zh.json @@ -566,7 +566,8 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry" + "txtScheme9": "Foundry", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "你有未保存的修改。点击“留在该页”可等待自动保存完成。点击“离开该页”将丢弃全部未经保存的修改。", diff --git a/apps/spreadsheeteditor/mobile/locale/be.json b/apps/spreadsheeteditor/mobile/locale/be.json index 4e6e3ecba..ef09d406b 100644 --- a/apps/spreadsheeteditor/mobile/locale/be.json +++ b/apps/spreadsheeteditor/mobile/locale/be.json @@ -632,7 +632,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 4e6e3ecba..ef09d406b 100644 --- a/apps/spreadsheeteditor/mobile/locale/bg.json +++ b/apps/spreadsheeteditor/mobile/locale/bg.json @@ -632,7 +632,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 0bfccc2a7..f903a9adc 100644 --- a/apps/spreadsheeteditor/mobile/locale/ca.json +++ b/apps/spreadsheeteditor/mobile/locale/ca.json @@ -632,7 +632,8 @@ "txtScheme9": "Fosa", "txtSpace": "Espai", "txtTab": "Pestanya", - "warnDownloadAs": "Si continueu guardant en aquest format, es perdran totes les característiques, excepte el text.
Esteu segur que voleu continuar?" + "warnDownloadAs": "Si continueu guardant en aquest format, es perdran totes les característiques, excepte el text.
Esteu 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 4e6e3ecba..ef09d406b 100644 --- a/apps/spreadsheeteditor/mobile/locale/cs.json +++ b/apps/spreadsheeteditor/mobile/locale/cs.json @@ -632,7 +632,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 8a741d1e3..6a8460e79 100644 --- a/apps/spreadsheeteditor/mobile/locale/de.json +++ b/apps/spreadsheeteditor/mobile/locale/de.json @@ -632,7 +632,8 @@ "txtScheme9": "Gießerei", "txtSpace": "Leerzeichen", "txtTab": "Tab", - "warnDownloadAs": "Wenn Sie mit dem Speichern in diesem Format fortsetzen, werden alle Objekte außer Text verloren gehen.
Möchten Sie wirklich fortsetzen?" + "warnDownloadAs": "Wenn Sie mit dem Speichern in diesem Format fortsetzen, werden alle Objekte außer Text verloren gehen.
Möchten Sie wirklich fortsetzen?", + "textOk": "Ok" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/el.json b/apps/spreadsheeteditor/mobile/locale/el.json index 4e6e3ecba..ef09d406b 100644 --- a/apps/spreadsheeteditor/mobile/locale/el.json +++ b/apps/spreadsheeteditor/mobile/locale/el.json @@ -632,7 +632,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/es.json b/apps/spreadsheeteditor/mobile/locale/es.json index 70e20ca8d..7dd51af50 100644 --- a/apps/spreadsheeteditor/mobile/locale/es.json +++ b/apps/spreadsheeteditor/mobile/locale/es.json @@ -632,7 +632,8 @@ "txtScheme9": "Fundición", "txtSpace": "Espacio", "txtTab": "Pestaña", - "warnDownloadAs": "Si sigue guardando en este formato, todas las características a excepción del texto se perderán.
¿Está seguro de que desea continuar?" + "warnDownloadAs": "Si sigue guardando en este formato, todas las características a excepción del texto se perderán.
¿Está seguro de que desea continuar?", + "textOk": "Ok" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/fr.json b/apps/spreadsheeteditor/mobile/locale/fr.json index bc030f521..abd76be2d 100644 --- a/apps/spreadsheeteditor/mobile/locale/fr.json +++ b/apps/spreadsheeteditor/mobile/locale/fr.json @@ -632,7 +632,8 @@ "txtScheme9": "Fonderie", "txtSpace": "Espace", "txtTab": "Tabulation", - "warnDownloadAs": "Si vous continuez à enregistrer dans ce format toutes les fonctions sauf le texte seront perdues.
Êtes-vous sûr de vouloir continuer?" + "warnDownloadAs": "Si vous continuez à enregistrer dans ce format toutes les fonctions sauf le texte seront perdues.
Êtes-vous sûr de vouloir continuer?", + "textOk": "Ok" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/hu.json b/apps/spreadsheeteditor/mobile/locale/hu.json index 4e6e3ecba..ef09d406b 100644 --- a/apps/spreadsheeteditor/mobile/locale/hu.json +++ b/apps/spreadsheeteditor/mobile/locale/hu.json @@ -632,7 +632,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 4e6e3ecba..ef09d406b 100644 --- a/apps/spreadsheeteditor/mobile/locale/it.json +++ b/apps/spreadsheeteditor/mobile/locale/it.json @@ -632,7 +632,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/ja.json b/apps/spreadsheeteditor/mobile/locale/ja.json index 1863e36ee..b52fca3ac 100644 --- a/apps/spreadsheeteditor/mobile/locale/ja.json +++ b/apps/spreadsheeteditor/mobile/locale/ja.json @@ -632,7 +632,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/ko.json b/apps/spreadsheeteditor/mobile/locale/ko.json index 4e6e3ecba..ef09d406b 100644 --- a/apps/spreadsheeteditor/mobile/locale/ko.json +++ b/apps/spreadsheeteditor/mobile/locale/ko.json @@ -632,7 +632,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 4e6e3ecba..ef09d406b 100644 --- a/apps/spreadsheeteditor/mobile/locale/lo.json +++ b/apps/spreadsheeteditor/mobile/locale/lo.json @@ -632,7 +632,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 4e6e3ecba..ef09d406b 100644 --- a/apps/spreadsheeteditor/mobile/locale/lv.json +++ b/apps/spreadsheeteditor/mobile/locale/lv.json @@ -632,7 +632,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 4e6e3ecba..ef09d406b 100644 --- a/apps/spreadsheeteditor/mobile/locale/nb.json +++ b/apps/spreadsheeteditor/mobile/locale/nb.json @@ -632,7 +632,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 5c5bfbccd..7cff015bf 100644 --- a/apps/spreadsheeteditor/mobile/locale/nl.json +++ b/apps/spreadsheeteditor/mobile/locale/nl.json @@ -632,7 +632,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 4e6e3ecba..ef09d406b 100644 --- a/apps/spreadsheeteditor/mobile/locale/pl.json +++ b/apps/spreadsheeteditor/mobile/locale/pl.json @@ -632,7 +632,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 ba4969b9c..a888af50f 100644 --- a/apps/spreadsheeteditor/mobile/locale/pt.json +++ b/apps/spreadsheeteditor/mobile/locale/pt.json @@ -632,7 +632,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 76d680751..3ee38fe8e 100644 --- a/apps/spreadsheeteditor/mobile/locale/ro.json +++ b/apps/spreadsheeteditor/mobile/locale/ro.json @@ -632,7 +632,8 @@ "txtScheme9": "Forjă", "txtSpace": "Spațiu", "txtTab": "Fila", - "warnDownloadAs": "Dacă salvați în acest format de fișier, este posibil ca unele dintre caracteristici să se piardă, cu excepția textului.
Sunteți sigur că doriți să continuați?" + "warnDownloadAs": "Dacă salvați în acest format de fișier, este posibil ca unele dintre caracteristici să se piardă, cu excepția textului.
Sunteți sigur că doriți să continuați?", + "textOk": "Ok" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/sk.json b/apps/spreadsheeteditor/mobile/locale/sk.json index 4e6e3ecba..ef09d406b 100644 --- a/apps/spreadsheeteditor/mobile/locale/sk.json +++ b/apps/spreadsheeteditor/mobile/locale/sk.json @@ -632,7 +632,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 4e6e3ecba..ef09d406b 100644 --- a/apps/spreadsheeteditor/mobile/locale/sl.json +++ b/apps/spreadsheeteditor/mobile/locale/sl.json @@ -632,7 +632,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 4e6e3ecba..ef09d406b 100644 --- a/apps/spreadsheeteditor/mobile/locale/tr.json +++ b/apps/spreadsheeteditor/mobile/locale/tr.json @@ -632,7 +632,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 4e6e3ecba..ef09d406b 100644 --- a/apps/spreadsheeteditor/mobile/locale/uk.json +++ b/apps/spreadsheeteditor/mobile/locale/uk.json @@ -632,7 +632,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 4e6e3ecba..ef09d406b 100644 --- a/apps/spreadsheeteditor/mobile/locale/vi.json +++ b/apps/spreadsheeteditor/mobile/locale/vi.json @@ -632,7 +632,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 19c8cd795..871f1dd83 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh.json +++ b/apps/spreadsheeteditor/mobile/locale/zh.json @@ -632,7 +632,8 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry" + "txtScheme9": "Foundry", + "textOk": "Ok" } } } \ No newline at end of file From d9622b84eb49066e71354a56cd7b5532d38ba9ea Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Tue, 17 Aug 2021 17:32:38 +0300 Subject: [PATCH 45/90] [PE mobile] Fix Bug 51994 --- apps/common/mobile/resources/less/common.less | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/common/mobile/resources/less/common.less b/apps/common/mobile/resources/less/common.less index d5415fd06..9117f6b5f 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: ''; From 7f0c53fb91979860f4026b61ef25888f0a37d163 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 17 Aug 2021 22:12:29 +0300 Subject: [PATCH 46/90] [DE] Fix Bug 51925 --- apps/documenteditor/main/app/view/FormSettings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/documenteditor/main/app/view/FormSettings.js b/apps/documenteditor/main/app/view/FormSettings.js index 0f88ab454..a89b0b793 100644 --- a/apps/documenteditor/main/app/view/FormSettings.js +++ b/apps/documenteditor/main/app/view/FormSettings.js @@ -747,7 +747,7 @@ define([ rec = (this._state.listValue!==undefined) ? this.list.store.findWhere({value: this._state.listValue}) : this.list.store.at(this._state.listIndex); } if (rec) { - this.list.selectRecord(rec); + this.list.selectRecord(rec, this.txtNewValue._input.is(':focus')); this.list.scrollToRecord(rec); } else if (!this.txtNewValue._input.is(':focus')) { this.txtNewValue.setValue(''); From 352c381869bc051060501735e974abd541f87d8a Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Wed, 18 Aug 2021 11:26:10 +0300 Subject: [PATCH 47/90] [SSE mobile] Fix bug 49025 --- apps/common/mobile/resources/less/common.less | 60 ++++++++++++------- .../mobile/src/view/edit/EditCell.jsx | 3 +- 2 files changed, 40 insertions(+), 23 deletions(-) diff --git a/apps/common/mobile/resources/less/common.less b/apps/common/mobile/resources/less/common.less index 9117f6b5f..cc473cd9e 100644 --- a/apps/common/mobile/resources/less/common.less +++ b/apps/common/mobile/resources/less/common.less @@ -533,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/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx b/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx index e66e49045..e2844bc9f 100644 --- a/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx @@ -100,8 +100,9 @@ const EditCell = props => { {cellStyles.map((elem, index) => { return ( - props.onStyleClick(elem.name)}> +
) })} From efd89c34502b1c320313c7fb1a3b6778fc5c8ed8 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 18 Aug 2021 11:58:45 +0300 Subject: [PATCH 48/90] [DE embedded] Fix Bug 51995 --- apps/common/embed/resources/less/common.less | 6 ++++++ apps/documenteditor/embed/index.html | 4 ++-- apps/documenteditor/embed/index.html.deploy | 4 ++-- apps/documenteditor/embed/index_loader.html | 4 ++-- apps/documenteditor/embed/index_loader.html.deploy | 4 ++-- apps/documenteditor/embed/js/ApplicationController.js | 1 - 6 files changed, 14 insertions(+), 9 deletions(-) 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/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 544f672c6..0a85351a0 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); From 36f63c87b89f0a285ee6321657b285e5ae73b415 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 18 Aug 2021 13:30:42 +0300 Subject: [PATCH 49/90] Fix loading when localStorage is not available --- apps/common/main/lib/util/htmlutils.js | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) 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 ) { From 379c97835abae129251be36c133e268da6a35ece Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 18 Aug 2021 15:18:58 +0300 Subject: [PATCH 50/90] Fix Bug 51845, use 1.25, 1.75 icons --- .../main/resources/less/asc-mixins.less | 47 +++++++++++++++++++ .../main/resources/less/dimension-picker.less | 4 +- .../main/resources/less/rightmenu.less | 2 +- .../main/resources/less/rightmenu.less | 2 +- .../main/resources/less/toolbar.less | 2 +- .../main/resources/less/rightmenu.less | 2 +- 6 files changed, 53 insertions(+), 6 deletions(-) diff --git a/apps/common/main/resources/less/asc-mixins.less b/apps/common/main/resources/less/asc-mixins.less index 66ab63c00..aaa42ed66 100644 --- a/apps/common/main/resources/less/asc-mixins.less +++ b/apps/common/main/resources/less/asc-mixins.less @@ -231,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; 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/documenteditor/main/resources/less/rightmenu.less b/apps/documenteditor/main/resources/less/rightmenu.less index dfd274f36..1ca355255 100644 --- a/apps/documenteditor/main/resources/less/rightmenu.less +++ b/apps/documenteditor/main/resources/less/rightmenu.less @@ -39,7 +39,7 @@ } .item-gradient { - .background-ximage-v2('right-panels/gradients.png', 150px); + .background-ximage-all('right-panels/gradients.png', 150px); width:50px; height:50px; diff --git a/apps/presentationeditor/main/resources/less/rightmenu.less b/apps/presentationeditor/main/resources/less/rightmenu.less index 80eb58d1b..67c9bab9f 100644 --- a/apps/presentationeditor/main/resources/less/rightmenu.less +++ b/apps/presentationeditor/main/resources/less/rightmenu.less @@ -33,7 +33,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; } diff --git a/apps/presentationeditor/main/resources/less/toolbar.less b/apps/presentationeditor/main/resources/less/toolbar.less index 077e47074..68c8b17dd 100644 --- a/apps/presentationeditor/main/resources/less/toolbar.less +++ b/apps/presentationeditor/main/resources/less/toolbar.less @@ -108,7 +108,7 @@ .item-theme { width: 88px; height: 40px; - .background-ximage-v2('../../../../../../sdkjs/common/Images/themes_thumbnail.png', 88px); + .background-ximage-all('../../../../../../sdkjs/common/Images/themes_thumbnail.png', 88px); background-size: cover } diff --git a/apps/spreadsheeteditor/main/resources/less/rightmenu.less b/apps/spreadsheeteditor/main/resources/less/rightmenu.less index d8736eef1..5eb734d6f 100644 --- a/apps/spreadsheeteditor/main/resources/less/rightmenu.less +++ b/apps/spreadsheeteditor/main/resources/less/rightmenu.less @@ -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; } From 18af1660380551cafd1e25b01e97d7d5281b030a Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 18 Aug 2021 15:41:38 +0300 Subject: [PATCH 51/90] Fix Bug 52030 --- apps/common/main/resources/less/slider.less | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/common/main/resources/less/slider.less b/apps/common/main/resources/less/slider.less index fc134d2bf..d4d8789c7 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; } From e6baa3e17d2dc38b9f111fbc9fac801046e61fac Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 18 Aug 2021 17:43:54 +0300 Subject: [PATCH 52/90] For Bug 52028 --- .../img/controls/common-controls.png | Bin 5357 -> 8459 bytes .../img/controls/common-controls@1.5x.png | Bin 8079 -> 8350 bytes .../img/controls/common-controls@2x.png | Bin 10965 -> 9028 bytes 3 files changed, 0 insertions(+), 0 deletions(-) diff --git a/apps/common/main/resources/img/controls/common-controls.png b/apps/common/main/resources/img/controls/common-controls.png index ff0d73fd513ef683f85d056fddd26f4577dbdaa7..b15018e92468007434b1f447084da703669cf392 100755 GIT binary patch literal 8459 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 D@q9Ur literal 5357 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 aWETo6h^f1ifb@-j$4I!Qa;cJK@c#fQ(KhV> diff --git a/apps/common/main/resources/img/controls/common-controls@1.5x.png b/apps/common/main/resources/img/controls/common-controls@1.5x.png index 71fb97bcb60843866cbb213206452d886f1de701..1f8971c0c8d13e29cd8b3a18c78ec24b4b087e6f 100644 GIT binary patch literal 8350 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 literal 8079 zcmb_=cTkgEus0xR=ta6xCA5GP=^{0uBP0X}ozQz%ItUUBM2eK~f)qhOIsv3gGk_o{ zy^4U+i zqP#?s5fO3mX@gbaLB!iRRv!1Kp7jpp6!As&9gk8(e{sPWZ#HPzs>2UP-_e?HzQoc; z8j4d%L5Ndm6WrguDEYt)F@jPj%Y>Kw^9uirvy6%2utyL)tdKjM?dxiQ=A4%H8)CM zEC{fwFZoi9~H-X89d1GMFP9E(pNb;n~ zY3t?tf83?wx7G7ks6?5B=@=?{l3h68G7r?5fZ&FV7NUy4tS)R%ZG8BYdoG=TEmdNV za7#VIFZWE8eT}(Ew4$)OPnamC7{D6!pdtm<<*O>C&mc|$9N7xTniui>j;hp@xKG3B z?p=D?Wh)RGmq^DdhaK&D#xqWLis|Y^!`$??_P7l5Lb2mZ28OxQ3s-AT&Fq2^yt|jZiZZ`c)%F*nqQXK7EI5io+!nWUpF`J<&PQB7DY*Vi zzk=$n;gxWZ)qz3-Ba0MEKem9?qZ^Kv-zTg(lHBSscZcT0qNNLN=-w2@ySeD9G4XfL zID{TK{pzmyII3RrFv&Zao%n%I%u#1Cri<>nISDz;dLJp@#k0ZA#QMGCS`Zt_*0q{O zV^Qf1i!!U*xKC_9&4>+c+zJ-v#+j_vcrs*FPB!Du%oS0$+#NY*V^$Q)W(u8+L5-$hf!HRNhaJ3b=h@C8h=3)eeOSqJcOvp4`?cV zRV0+KEBmw)5mGFTTPgeV2j~Voo}ri>SZUQyCLQm$4px56-}x_R;oa zu;J8)5*5J4_j!*-2^0&f=1)iC%6$Q(WF8nup|Qe6RXPmoik^YlS zzT9!Bs6x4xzEOM=2jZFj>O+Y?Oc~uACJ@_D5!b2m;*UCp8;~u9YZ=NE{7Z+n#Z&|$ zN6YqzzTg2Y1m-IJMcv5^WK7r~pGy-^%uRAl^C*i{`$#20&GI0P_q`D)C7{ZskZ(bz zXe|H1+@PfPew*lSY3)JC`=UZ~_MCe_aYepHgtO^DVWrThTM84rsL926O*4+YbW##i zq55vPn`Lrlf?}pr268@{wW0#~7!j+v0fQ z5xs}q)6O~pf6rc#EGQprhX!ojdJF6I+us?DD5h=p z*UAZR_b(e>lvXCx zody0Wc9ML7&Epb~{@3(Pz7;&KGEaY$(TkH9AdY+T(axT>tWspA2+8|yWzd?^5m`gN zZpMbOw30tnF3v=X@|!OBL_rkwa+w4#9RSWlL+8M!;) zHQUN>UCM;Za;}`U>me8k-`ds65ZP3(x%JFDjYqy!SBl}=jLVFw`PAjEmhgvFm8{9QcrSKnYdItn$!^*N`9HL>F~%hYBw+GN|(r5aBUsUtd`UQe0F{u7IVzfBm+ zhc?bMVE{#opYk4$SRI!M2&r9$t!sJJJjAJR4l^p>)~huvV`PCm6POt;b`0UbJjFZ> zL$-aM?DJEodTR88$r@~%HK=Oa18l){t5q5)d4}=e@C^D0@07Gp*g@Oi$#-shGMd%& zSqUs?AAJ9q4%wrjMYSDc)pfC(@~PvXQRiD@EtBwnvB?o|FzUqpaEY85n_1v?%a<*2 zVu`~D0&MC!AY-hRW{O0H5182?cv9)}yc34aCJdj`puBxL#|pZ?fAL>tR2Jo}{36~! zIpEPDjOO27nfb!TST7y7t&WV_AEeQLDH#hsn65=s)tmFE3+{r94pd1WIMhwxjS3_@ z%qmjk1KZGU8z^9l4_|b-^Nq>(V%%$}YE3+$2^>DRuIjnQU7Y0M^5m!Hw?`Tf#*#0* zpyXp6N*t4Z&B4e{fF&~hcBJYhc!K|9lZe0t3F`~Lf+=^YVW*`w@Pu{=(pN0OPVT-U zGp0=E7GFh4%%+iX*`Mme`3>S5v=jFk%Hb&KA@GF9)a;SY+3Z}hA-g5t_E-WRkD7RK z2b*M~b%s%tdo)118owdBK0SD}WDDYF)#v!oR~SK)_ErX+`#BE6!n=&5x1Wk&fCY5E zaL)1==D6gSCD~&)mHbVpS|bF=OOKBS3P6d~(R>wN(E1GlcC_0G51xWakBY(gEjNKm z1rA7LS8+jV`$%fRJzF4B+`1Fo;yz$RBmR%v^}OQuaPO+!2u}%PWh0JndmoTBdMf>_ z()gXQolviVtY)!qM?Z(?r!cyVvE$*wOgkFHGq3`d4dmbRS)?-V(x`E&kSam@Yd3W2 zkmWGx@D|CfB5?Kao$&(Y`2BpT?(~_l1*MRjhhyP4AC@g+GP2`lbz+8q45m&6qwo(4 z?`6rUvQrMO#k4C86}0K&9#rWq!Q)qhSX=dNe>LGlP~j=eS4tfrXkG@0W#%1aPX+bs zm=9`qeNe!z-8^9{dVppl0=z7Ul zqR6k1;E}IXXvca|W#1J(VFaj4(DP!4>D)9G#Yy)-r zHk_Z1t$bNgtYs{Qp2~!Nob(nhvZlQ7zmAXa9(@;jH6?7}Eo#m#mlQT` zrDvs*8%|=pS%HaSCX(+{z(ueP{*^V|A}?w)c=bQObjj$g5S|KTP6wviwYt&I6)FZ5 zRyZMsY%FD-_2#e6bosl=HH-1083Wh0W+pGGfOEaBQ3?A|>?ZobZ~D)=HB{TT}Me7cqqL)7H4_tDfG)x7|0{-_r6M-%mRJ#B{T4r-O_p zGtMR7wbrSb+%B>Z4Gu5%`V{`Y1s&cBnYOSBsTknLtIC~x2}&d?q19PfgxMG+q8l5t z%{55S1Fb*5J*8YhOG5=qk+qV0|)Lf9%dOC z8Hc|T#tWEh!rRubjF}#pbB3l>mae$nqZ6}J>j+*qi--MpYfR3MQx$wZnN_8Hc91rm zjxb-=H;TQXSh0Ur@m|V8Mi0_|aRgW;R5~fV@sKq8&XlFbub$r?Y@2lsSxYb5oW1kh z^Yb;5IXyY9XVbm1;g`181uia8QA=Z!83U2l{Jq8ia;cKaE_ADD-BTNPGSDA#lLk;x zZluF)PSrsjx&hZ0R?6_P&EcUM4Icm+yS{ddHp-DXy`z5SK=(73$dliJAA^rS4fgYgYn_DJ;46Ndzh6~kJP&50{*(pA`{60mo~Qb`Pd@f?@)^GvB`o!dX}3^0 zb^*PW#3z<$L;i|Ud=)W~L6XoYmnhb9WfxhqnTyHq=wwa0hlhtRcE{bln-U3$y=#GZ z8pKmh#$>L)ns#M4I34m;!l>Rl<(q)}9sNdYf~d*po|^JLwK8LWh&FHD#v}-fQ*#vK zgVb_)Daq@e5pSjQzCo=F-q{SRh=Vxi_-M52h3IxkK2~Z51;IYUx0vSa%qFE)8W|Ka z_S9J@=SOkh5{E1{drvB+Kn{R6B!x3EEa$&txE`)1UkxwwxM}Rq3*F0x5t{)|wR1z8 zEvr&_z?fFuARdq6;~z<(9Si4ZH5h;3iXPVWTP@nI*t*)8iNGQeR{~R3qI64mwbLR} z$o&!^DiVHRWITEtFn#5^tyvWm_Q9*qITv>)@qta1Q}UHKqseAvqW7r5%8)~;oV z7BR}sA9keseaBufz9c3WzmKORh&d#`6x`>d)-w-RoXm zaNsqHVbmIuKw}$Q<0%+WVXSmCJElG+f~Q@rnd=pHqb7^tdTnonNbItfa-aA@sZ1vx zD~d@sZSgfhFjrtzefV#T<>Y8gP6_f&m3P|u;@?R3 z`2wma-0j!xXUigH0l6Lu?`b0cDN#OY(`i-%K2vosJDxKeiyl4y)|KG&Qj!SI&V9~L z`MDN*>WFIOpE*{2)-+Sd8fGbE0MgAdr9ThBFx7cH8CY!560)afy${?HX)a*spFep+ z4>iNKyyKO@1jcIVPE3#LL;E}Jr~yOfm4AY|>dmPs;;14Uio9;eZRST_pRI0P7;x=9 ziFIzK`5-TXx1)~d-YOg?i+}MDa_?`Lfe=;~T6l1L3(rn;z8a-1b9ZcT%lSIc-{0_( zFR;#%+CRJAMl^}w%P&NI+8QYQd+^?E0EkE6X?By( zFI^-g6Gnp9A;P$syNk}k>&+`;&ZsQPU4QsZU(uI8yHEj)ln580CpS1~@$p~3rV4;A zi#*L%H;+QzFE|IGL3Q;MXUiYfa;`$RM-1LUq5mPLT|S{OfGxvYc>4NESl;iu$#Jc$ zh?szuDH`pZW09mg$ewrh01sT}AnNS(UF+#uAD$YgwxKgFqv$fBlvM(E1-hG!gkzCR zIrO%^<4)2!cTM^6B+J}&5HboEW~-^_qlJD%s$kMfDHia4{$hM}^%|K)L!-Q|P=tp4 zYr&?P$Y}19P_J_o-6B;KO%bg2m%YlV>P$f9Irp2B<4M}t;_+1~o{EQ)lau^Cyo7uD$ApG1Mg^E0RUP1jCxkCWk&2SZMcp%*22^=6Fmv{WLMK+kLDZSF8-LF zZlXIAG6Zl~uLs^AnA)713gIsu6U~c!w?S0|h*{~Xcb{_0ZCZ|wYx3HkavSFnhl@)o zGKGI?RWE$6=v(2*As8<{_^EL4b#ZnE>Q5{u&OrK$T}qfxZzjvNaD4q}V_w=H6h)Ed zzwjB~rCzpY0yJ1QPWvTbisBVXDRiU-^*_=aMolZ1RnDA?3$>~IPBgahH*$orq!VG7 zqK_4A*Z-M#f!vaIGE-Eo3_dk+1FhwF)3q-?i^#IHRTaINl>RT)A7MWmJF#cQg?w}! z_a8LA=)w2(^<{!gtE6s}RI)d#KVW6>t4EA~D*WyAS-e{Dy^-QV zZN-m?a#JHwdqAy#H|80J<7i`tYiFiTQvo4Q)|JTdn19>7h_3)p`EAkzi^4wTFi5@^ ze1UjW1aoz@v$K2V>G_?F;YohZ>dF1Qpesz{0P ze4)nLz$IMHI?XMZ`~J-n+kTi2A%A$)e_Kusxsg&pyznV9ydL=uT94H%K0{UShY0b0 z>g-x}q)E%Q&(oQIdpw`l5pksu`#JiJ?s5)FasV&?U7~`Fo{sj_O{{oberOelwqLuV zqfHvS%#|aoA+!!|CbX;gl)sNevg#Hsjt<@zD%8lGT<%ldfwCZyvut$9H!&XD%;MWd z_xF9~)#G%M!wVmf_Esr$QA&E`W|VU4T`<1-h5}wW7bp@4;)u1O*Jm8PZ;y$|-nrxm zm61}YJ~Tk(R+IiOT>D=lD$1~G)sUME!5*18YCgrx!r~10qXT0yv4C&yj?qoU-4!q? z)N?o)N{1!5PgQa7+47YdA8s+Hcd|sDPuJL|fh~E2`VwEYN8gbLcsk5FzXO8t&FLNN!RE6#Ba4`Jxk=&ldUWm-i zXdCZ_Df2X6ac^uIWiVc|VmJ)Zl7E}gw5-@#*)Jm@;hPKNuEn)LCW&42vJ7R?%B+AI~XD8b9vlgyHDh{ZQ; zj=G~qfvI2Khoi`#j=F|`PE8MgHnh%Qp7zp6ECHS*!W!@96Pk1kiJinQM0xP|Te zz;JqVAz8uO?SqfOj#QcGcxSCI2smgtmaXg~P_1{>$M+M18SM@;chT`%Y8_AIr-Jzu;vE z1s-~#K4|bStqKC8hUCB6_$hneU^{I8tALmx7zU!Kz4t4QVAkIGLC7f)W_g;OqLzIT zEWpp7J2O2U)G*<;{T|(EhXPL?#g*_4y!4A1lGm&%@p~eM*`(wZo^4pjXH`M)>|yge zvICW}mU9MzgYRW9sHNQ%Fvz`J{PDva0`7_2?Pa`0g?h4QQY#0%b-Kd@l@_{#FqB-b z*JVPN_{r}c3@LXcT@OAG5x%O+yZV!JvJe@WU>6-$LDc%grgr_^PUWXrK0$Jcgl~Fc zTyyebl$&}}q3vrcR}6V4MH$v1uX7ILj*gD$FfBZ<*&i!RRjxr8fBL-wv$7V&Q`r$E9 z`8CH|X|usVjb|r2RyFWlg5hg z|NJU6U&c^Z5av6$)l=cOG@{AX)^8UP&jruTXNc0MURBl>Lb7jPH-F9)d8=h!D zxcmGTgEEsE;>miv{r8Vc2s4(e-T$O`E2O}T-R0HoEsZlCI!qqtzh2UAZp&c-AU79c zbtElVON5&c&MqSU!AET61t3m#t+iDYQc+L$wsAhhJ;92Y(7Y3NK9&~&#nUm~1%ODc zUj*b^F=hGT?@_P_YWk8(GWIi$wuPQpqd^Y=AU@a?3U#Dk?W*RrM}{qX#1P$g)T*ni zyI?O7Y10jnc!A^fS^AO?91+a`N*VZRb&okiPh%~@x;=9ql&-Vzdz(1wkLqoq{~pBu zLB9b1X^301?@a_|13Igk5Qx8#{R(A>UZ2tt;kzz;|pZuDtTM{>pu{U%PLY=V)e= z24VJ{yw5u#M)DHDy!z&%R-ET+t@x6u+DUm_vh#u(8}lg*XNDv4?%lfv0b-N`6knB{ zp>a(Q2~z?s87N0on)qVJ2}gT=?oz(5%}FiJn$^1oEH`)0Uv4M_nuBgCETmuf&cu8L zG~?Bf|8>>I`%vh<-&YG>tUPbk$OyE?GKu3!NWkJj-u30Ycpk`d`}XdJ9&m`VT9MZsmMd57f&=*6 zi1Uqd?~bcu4#^xG@C6tSvo5(>UpQ-)>Id}5W78B;7K9QUkx(55?a~L;%g~$N!2pr- zIw>hqRfqG)g4u+1t!)gZ9Zn`0Gw6s6{?ek5fm&hP+O%Yz1Wg(PkeR||GXJU@pV@5z z%P*q1Hkbd-F2{;c+WTImHO9RQf6ap3C}1dDrpJ`^)9eWK)88mbw~TxwTc{^{-Ig~~ z=REXD^&-Y^zAYur|H<>rRGuhUF?T_VQwf}Z#tb6_R70}mi&Jp=l{i!-@i7yV`dqL0|NgQ)rLF;SE<=X{~y^W B0D1rb diff --git a/apps/common/main/resources/img/controls/common-controls@2x.png b/apps/common/main/resources/img/controls/common-controls@2x.png index 782ec4ef9a0390944787e3fa2652489f9b8329d9..b76b704699cd38e30039b267dd2dcae2f6c13bad 100755 GIT binary patch literal 9028 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 EA0OwXbN~PV From a39d6c3fecaf3553657c0dcf753946cfea4ad5f9 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Wed, 18 Aug 2021 23:35:42 +0300 Subject: [PATCH 53/90] [all] fix bug 51842 --- apps/documenteditor/mobile/src/controller/Main.jsx | 4 ++-- apps/presentationeditor/mobile/src/controller/Main.jsx | 4 ++-- apps/spreadsheeteditor/mobile/src/controller/Main.jsx | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/documenteditor/mobile/src/controller/Main.jsx b/apps/documenteditor/mobile/src/controller/Main.jsx index 9b88260ed..567861f45 100644 --- a/apps/documenteditor/mobile/src/controller/Main.jsx +++ b/apps/documenteditor/mobile/src/controller/Main.jsx @@ -53,8 +53,8 @@ class MainController extends Component { initSdk() { const on_script_load = () => { - !window.sdk_scripts && (window.sdk_scripts = ['../../../../../../sdkjs/common/AllFonts.js', - '../../../../../../sdkjs/word/sdk-all-min.js']); + !window.sdk_scripts && (window.sdk_scripts = ['../../../../sdkjs/common/AllFonts.js', + '../../../../sdkjs/word/sdk-all-min.js']); let dep_scripts = ['../../../vendor/xregexp/xregexp-all-min.js', '../../../vendor/sockjs/sockjs.min.js', '../../../vendor/jszip/jszip.min.js', diff --git a/apps/presentationeditor/mobile/src/controller/Main.jsx b/apps/presentationeditor/mobile/src/controller/Main.jsx index 3eeefcb3e..dea57e4c6 100644 --- a/apps/presentationeditor/mobile/src/controller/Main.jsx +++ b/apps/presentationeditor/mobile/src/controller/Main.jsx @@ -51,8 +51,8 @@ class MainController extends Component { initSdk () { const on_script_load = () => { - !window.sdk_scripts && (window.sdk_scripts = ['../../../../../../sdkjs/common/AllFonts.js', - '../../../../../../sdkjs/slide/sdk-all-min.js']); + !window.sdk_scripts && (window.sdk_scripts = ['../../../../sdkjs/common/AllFonts.js', + '../../../../sdkjs/slide/sdk-all-min.js']); let dep_scripts = ['../../../vendor/xregexp/xregexp-all-min.js', '../../../vendor/sockjs/sockjs.min.js']; dep_scripts.push(...window.sdk_scripts); diff --git a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx index 12c7b3f83..655ae3030 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx @@ -55,8 +55,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', From 75794623c903bfa0a456dbd3ccc745748fb789ee Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 19 Aug 2021 13:38:41 +0300 Subject: [PATCH 54/90] [DE] Fix layout --- apps/documenteditor/main/app/view/TableToTextDialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/documenteditor/main/app/view/TableToTextDialog.js b/apps/documenteditor/main/app/view/TableToTextDialog.js index 40ac3fa2a..cd573cbaa 100644 --- a/apps/documenteditor/main/app/view/TableToTextDialog.js +++ b/apps/documenteditor/main/app/view/TableToTextDialog.js @@ -46,7 +46,7 @@ define([ DE.Views.TableToTextDialog = Common.UI.Window.extend(_.extend({ options: { - width: 240, + width: 300, height: 254, header: true, style: 'min-width: 240px;', From 824ce12b2d444d1a6aedc7faf03868e376e7dcbd Mon Sep 17 00:00:00 2001 From: evgenykatyshev Date: Thu, 19 Aug 2021 14:27:13 +0300 Subject: [PATCH 55/90] Update sprites --- .../img/controls/common-controls.png | Bin 5357 -> 13240 bytes .../img/controls/common-controls@1.25x.png | Bin 7083 -> 24205 bytes .../img/controls/common-controls@1.5x.png | Bin 8079 -> 15120 bytes .../img/controls/common-controls@1.75x.png | Bin 9581 -> 37737 bytes .../img/controls/common-controls@2x.png | Bin 10965 -> 24809 bytes 5 files changed, 0 insertions(+), 0 deletions(-) diff --git a/apps/common/main/resources/img/controls/common-controls.png b/apps/common/main/resources/img/controls/common-controls.png index ff0d73fd513ef683f85d056fddd26f4577dbdaa7..a6e1609b619ebb030c9448e4fcf3843dec7044b7 100755 GIT binary patch literal 13240 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⪙8!(x#_ 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 Gg8x6W(f7gt delta 5320 zcmai$S5VUnx5dRn$q}SOP`VHa5D3JAB8U)L04V|K%^*bq=}66A2-15M5s@k#q$YF> zReF;uD7|CoJ@=gZy?t|M?ta^|-hO+{S{rY>B^>(9aH+QrgoeJZSl($j#ny zs&HCGLoENHdBwznt5x+d-fXzW(h_H8ACI$cF>!~K^}b0k_~g;1G`yr@;fZAkw|o=!R5f+CxMksU7Z+kxCV+eM zRu3uvwJta|%YI~7fH-Cx_120%SW?|gAza+BTfBzvgL_MVD^-VZX|p$X`So1~ zfT}X9IV(GQRy2cz<$i~UJ0}hYWRKF?tw(LFB5;}@+1L<(%(m1%RU1tS6eOZrN=Kir zU)Q)ACFU{c&!-y0AE;L#mCtMmS3l~C8mv=$+X%}gXeqGaJV6JMyNXPw%BrxoEDJP4 z%eYJG6WOV=gArm;`Z^8iT|}SC>oOpkG2hpSy1;w=mZ^h2XksF;*yIOfE#vg{Z9&=kJx?Y@Iw8%c*1IEK=5aVrdFkH=wjM^W$(@ue1GhoLZs!@>_!0nQD%2? zJ+wkE6)~R^olNNGKuWS{7L)il15gUn#f6;>8sTAPU?U%F!YcD_={%DV(ZYZ8zP0+sPFCZ9bsINu$azVW{_CB+`plN3Q^aazi(-mUZ z?<_NTQ4wy#wMKF{vd_P5gX}y%$6D!vLIiJM5l-ZH5G7g<7mY+sUJ<4%R6INdN!^9Qj`m-?Iz+)y4vJI#6D0>P{re{_)(9y}w>pMXA!pUcigAhh zdIVk4v`6A)6jtpmm3O)T-jQQrg^dVNOvLRQxF=k4^Q6c-8gln((WSV}Jydy@890|@ z38->Tjx?=IzoKW!_9;`#JyO$~-Y;loGu{bgdUHrkO3VrsP(Hwpku86^q|^(A-ODNQ zD|YZz!%9s-5;*#WL5eY-nI&yv`hsWwaJ5~b&kV$4@W(&BLgU~8$f-6K>7!mk@<8L& zMVRs?_t_2Nr^@d%q@YbspRxmcgHTg3AlpDcVgoU6O?8Osx_+GnGLE@cR5i)L`c=*3 zJyh(>rr-{%{!5niq1lWP5v8_@UZknUg|qPBL7!oO!5Uliao{m>>KhDFDU~ak)0ZpW z#n^3`-gOC*({Xiiyr=)tt$-H2!xernr%zN(b1M>YI`(GrscXJad%NaEoU~FG0Ht1! zz8&i^Om#P#qxmQ*lZEgw9^i;5iCd2$hsIqD%!74 z*51X|Ngj|eY}3=zok}3~pegzNNY^rF&Q{EGRxz||L|mFh&0guE%#F5Ha8c;3Sx{kJ zwZ=3Vz(u^A2G8M)!Lw#>eN+ZaJ2+1EkjGJ63CYn zuLM#<($`{Q#7RFzrr7se>OOZ&)tYC@;`BfY3L%Le;DydtRVUerSfbppof9=C7hSM>{rxh=%J|EB=2*Zt zN$RWnWMLxX<=Ih6GLYQ1E_!~nqeE>fX?ipcspj(`STf(Ewe0<~;^?F|i+8b#>)B%_ zCo8E@%!MdnnZ~hk=oW@{U=K;+aca(G^%BcAN*q;6zC7*%VBP- zp(ld+lWU8a$02N2!%zkR z-03Lgy8X3dYK{6xAS~}k`A^d_jyW=NLz9=+gKR7PTEgcq7RF|sC4;yS+FPSsq6N&M zO6SrqT2ys)z-XRYr!YvUBRAGD+K^_1mDeJN&bgWRjTYWuiB`k^to{}Bl$q!+-d<@t zz>`PMG@t-fl+Gs)U0+Un*e5zIMjbmh%e6J}$S=p-ZQkkxRKQ;!*wP$~wndu{62X=g2@1=gbzHMLh zXMP$T18|p}veZO7HP)Y99@&O9UB+|~j}7!kS6_uap%r6~@9J|D&&rA@mJX$+8Mfrt zY!KNAgX3Z!jDxaTqwe-WZ8daOsQ;`iQy;O^-t0{K=iFz218uCCni ztM`Ww(JwqOGSBJmP6_B)h@A#DA~fGTmvm3P^8d}gWGdKwGRCe_`?y2GhIMj;@P3?u&>C*p?4MvFK5Yd4y^ag5})@LQd*r_&tmV%aAYA5!NTIkExZ0MA$^K721$-oCFQWKLqu0N|@E1em9gn)_ z$400zCxe3CG*NeONdo*^gAhQ)Bze4)70Q>Tn$FL%*@H=vG~&zZd&if`WpcbnE0 zt4p`u-1DfFI&szVMKcoC`qeU?4Ggm^6&aLK!-GxBx)L;$AVq(fxdU^mz6vI%3VWLJ zO34-O-Vc;O)>=|@>FwcL?Kb#Xj=!hiW06JTPa|Gni6tISU)_hfV+?(Q7mS?H*AA;v zmW;z4nCjVu#i(VM{Let0`FN_w9b55ArPYldib-Pmu#&wh%zqhXlg4#J(mj4;^RfN* zG+^G~y7ZmuYFKw}r?a1*pSkcsV)1J4^m}U~B8*YrT)mZV=}LslYkPb9$a+19Xm*GH z&pS9AZaBoz)=agKo)$vTRGQU4u1}c-$QL33?7N$~bEvq7UVki+SFc2n=(i5-W2EP= z@Vb6ww82_h{<>xIZRYgUC&~$*GXV2x0-X9I#F+m;z_bLY&wzF!D z!|tl{kxds0D!UbeK=`|Oj5;j$+qb7Q)*Rb!5VVMYD$m?rwwoQ}Qvu3-Y~(Uyu?U6m zRr5u!2x>LXoO^qE7`&drljL@}O%wyf=JBBRELH+mnA9|^ocjE?;6>%NujeR03{-nZ zk*+{=`PN~=p=unJcbJm#0k$)%H=ANoHCfFcp+?s_`DL|A=cZ-Rw`)UBH#eRSHLB)$ zg1{;t{tN8?uF_8m8(_B1(TgU1{}fiq$Hj@Tu(0V*bSgK#Yd88Ftb-`h+KhyFB!i5w zS|~*(K++3XddQ0~kP)n56k_?hdC}{OyRfSX=M!wd>wxGnhivb#xQa5hA!bn9O03=$ z>0&J<0KlQ`v`6NrYA5JjKw81Rjx$q=lS>Q#0*7dpVc+wlLvKvm(sHg@uJM zcF(Y4q^UMj2%m!2WyZj@NBkH; z@w`J$2R3k&>-*qUMpNpB;*ZXx z8(UBzL%LKBq1wH4X^-{#jg1Ys%2vww#|Sgz^76cDAx!i97R_NitYkf6grK*)rKDD) zR|Nm}S!!AF^K^3?S=@NUSPhUr)i4TYQPa?*JeawFs_1q?1vLNRLU{b$WO)z8)c*VU z4ksrk(!!6_KJ5}cSs5TJo)vz+OE2e90VP3JDucby@s_+1I*EHE{be_E*T?n`cmbX> zKNc1itv}l=4mX-h^+akHD@i00ukR57dvVG+%AneOos6G8&yEQJHd*TDGIr`&z2i+h zWL{)UtSp?)PlT}uVfSa;24s1vv??En`&dtJvTfcY$d2GA97sg@g z$K$)288Tb%ve3b;*7d0f`Eg%BSf71DL0MP;y{Oa3Y!UlO_Ip>7r~%f|DA_@&CNLWn zGgs*WB2S>Ogf1yy|EZJ;%!(V65mPJ09fug>pLce?Ab}l(n=gLh7_bYbZZEip!L&1# zDbJoeEeH1ce8?T|U$B1Wl`x4mNC^Gq<{xrAh3%S7ACM!T%kcu|q=Ni#zX7;2yn8Y} zvO^2Ato%_>VefVrC|)b+#Lv(Fh`@6~Wii*0p!N7<+y#hUi%72Py)(d8fG-TIpv1*0 zN@2UV{LTl@!<7i_KN{rE{ucfQRoRWUMlmV>#}jXBLNupjUl?MPy-UNO<09ko5Bbye zcACz%W!Kquxe#2=y@mTLBQOv#bs%$ult~)d zMFGPx;b5_sk)j^O~E2V7}i_1M7kxM!NA~poQ4AgF-~uYbmTxZ`tho}u|GZi8Z-Jsd_T^%ydt#MpUF8VuP57S?uZPQP z=clrpd!)|c1bkZ=__%Un#eVz9Yonz0K5(*RQ=lhZQ&Zy^98qrJ;mEDhJdbLN{W7^l zQkO15PGDU%*PPybp$J170)+ir(#hz&_ml@IvWsJxX z#Bk~3`CTnt|Bf)jz49P_0lSm-#~D_Vsd&GWUET+DfSa%H*?{4Db{)S6SgnvIpqyBj z(X9;=r&lx55L1nm>Aa!l6T4sA!;;<^D`dB>kB zF0DT+(Nt$jSlPItJy|q=;qtpK%pP|8J0FSN5}97NPD2;C*@Ih)sYSQ?~cjyS4=esf$ZArmT^WMt!GdLa9J$ zng8QiX5YYBtQ(W^FzTf4^5Z+NNI9Rhc08}ULw?HAc{%gam9!O^>c7{tR?@su0rzev zr6JbPaUt_(-6TAsb^HJkp>wg@1D`wFAJLK`9y-=fPY3W559hla?xjHGc{le6YdH_g rzgAZtboZr6ISpa2T&(_I$$sTrZdrBm?gS`({a+cSq^Ve{U>W#7lJGwK diff --git a/apps/common/main/resources/img/controls/common-controls@1.25x.png b/apps/common/main/resources/img/controls/common-controls@1.25x.png index 5669c929ee097310d59190bc758531deb89b5d9a..6222d2b2c510aa6e2f7ed12a186d53deca055044 100644 GIT binary patch literal 24205 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 literal 7083 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 diff --git a/apps/common/main/resources/img/controls/common-controls@1.5x.png b/apps/common/main/resources/img/controls/common-controls@1.5x.png index 71fb97bcb60843866cbb213206452d886f1de701..879b9078a5595d93ee403d3a7c71760ddb33d5b2 100644 GIT binary patch literal 15120 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 B0D1rb diff --git a/apps/common/main/resources/img/controls/common-controls@1.75x.png b/apps/common/main/resources/img/controls/common-controls@1.75x.png index d5e961bf570afc32fcf26f4caaccf46c5c826ca9..bc583a2a7ea49b48885575130e31349136e312a0 100644 GIT binary patch literal 37737 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
EFs0Lza-yljR`F+c2jRTwO)$o8&f%k5i1@ioj@ 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 literal 9581 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 a8#RY72&T_P5?ucouA!p)sz&K`^#203^?aBB diff --git a/apps/common/main/resources/img/controls/common-controls@2x.png b/apps/common/main/resources/img/controls/common-controls@2x.png index 782ec4ef9a0390944787e3fa2652489f9b8329d9..3275a09a82f5e878c24d2d6f8adea69f3e02b592 100755 GIT binary patch literal 24809 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

h9u*En3I3; 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 literal 10965 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 EA0OwXbN~PV From 824b680acb13b3812b43ed1b605020930314e8cf Mon Sep 17 00:00:00 2001 From: Oleg Korshul Date: Thu, 19 Aug 2021 15:47:34 +0300 Subject: [PATCH 56/90] Add math images for 1.25/1.75 sizes --- .../main/resources/img/toolbar/math@1.25x.png | Bin 0 -> 40344 bytes .../main/resources/img/toolbar/math@1.75x.png | Bin 0 -> 63137 bytes 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 apps/common/main/resources/img/toolbar/math@1.25x.png create mode 100644 apps/common/main/resources/img/toolbar/math@1.75x.png 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 0000000000000000000000000000000000000000..32925cf56e23f374173381c373a7a4663ee646ab GIT binary patch literal 40344 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 z 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 AR{#J2 literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..d67b677d01cf683643f596f8d73605d86ddab751 GIT binary patch literal 63137 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 GxBmlE5vLXa literal 0 HcmV?d00001 From 24a9b149582eefb6041d1040d5816ca91b777a1f Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 19 Aug 2021 15:50:54 +0300 Subject: [PATCH 57/90] Fix Bug 48962 --- .../main/app/view/DocumentHolder.js | 18 ++++++++++++++++-- apps/documenteditor/main/locale/en.json | 2 ++ apps/documenteditor/main/locale/ru.json | 2 ++ .../main/app/controller/DocumentHolder.js | 16 ++++++++++++++-- apps/spreadsheeteditor/main/locale/en.json | 1 + apps/spreadsheeteditor/main/locale/ru.json | 1 + 6 files changed, 36 insertions(+), 4 deletions(-) diff --git a/apps/documenteditor/main/app/view/DocumentHolder.js b/apps/documenteditor/main/app/view/DocumentHolder.js index 9566d0c48..90bf0416a 100644 --- a/apps/documenteditor/main/app/view/DocumentHolder.js +++ b/apps/documenteditor/main/app/view/DocumentHolder.js @@ -4157,7 +4157,18 @@ define([ Common.NotificationCenter.trigger('protect:signature', 'visible', this._isDisabled, datavalue);//guid, can edit settings for requested signature break; case 3: - this.api.asc_RemoveSignature(datavalue); //guid + var me = this; + Common.UI.warning({ + title: this.notcriticalErrorTitle, + msg: this.txtRemoveWarning, + buttons: ['ok', 'cancel'], + primary: 'ok', + callback: function(btn) { + if (btn == 'ok') { + me.api.asc_RemoveSignature(datavalue); + } + } + }); break; } }, @@ -4644,6 +4655,9 @@ define([ textRemComboBox: 'Remove Combo Box', textRemDropdown: 'Remove Dropdown', textRemPicture: 'Remove Image', - textRemField: 'Remove Text Field' + textRemField: 'Remove Text Field', + txtRemoveWarning: 'Do you want to remove this signature?
It can\'t be undone.', + notcriticalErrorTitle: 'Warning' + }, DE.Views.DocumentHolder || {})); }); \ No newline at end of file diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 1f3fff994..1d65805c3 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -1577,6 +1577,8 @@ "DE.Views.DocumentHolder.txtUngroup": "Ungroup", "DE.Views.DocumentHolder.updateStyleText": "Update %1 style", "DE.Views.DocumentHolder.vertAlignText": "Vertical Alignment", + "DE.Views.DocumentHolder.txtRemoveWarning": "Do you want to remove this signature?
It can't be undone.", + "DE.Views.DocumentHolder.notcriticalErrorTitle": "Warning", "DE.Views.DropcapSettingsAdvanced.strBorders": "Borders & Fill", "DE.Views.DropcapSettingsAdvanced.strDropcap": "Drop Cap", "DE.Views.DropcapSettingsAdvanced.strMargins": "Margins", diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json index 049e84baf..96de84ff3 100644 --- a/apps/documenteditor/main/locale/ru.json +++ b/apps/documenteditor/main/locale/ru.json @@ -1575,6 +1575,8 @@ "DE.Views.DocumentHolder.txtUngroup": "Разгруппировать", "DE.Views.DocumentHolder.updateStyleText": "Обновить стиль %1", "DE.Views.DocumentHolder.vertAlignText": "Вертикальное выравнивание", + "DE.Views.DocumentHolder.txtRemoveWarning": "Вы хотите удалить эту подпись?
Это нельзя отменить.", + "DE.Views.DocumentHolder.notcriticalErrorTitle": "Внимание", "DE.Views.DropcapSettingsAdvanced.strBorders": "Границы и заливка", "DE.Views.DropcapSettingsAdvanced.strDropcap": "Буквица", "DE.Views.DropcapSettingsAdvanced.strMargins": "Поля", diff --git a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js index 23adfc909..e9a8f79c4 100644 --- a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js +++ b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js @@ -3499,7 +3499,18 @@ define([ Common.NotificationCenter.trigger('protect:signature', 'visible', this._isDisabled, datavalue);//guid, can edit settings for requested signature break; case 3: - this.api.asc_RemoveSignature(datavalue); //guid + var me = this; + Common.UI.warning({ + title: this.notcriticalErrorTitle, + msg: this.txtRemoveWarning, + buttons: ['ok', 'cancel'], + primary: 'ok', + callback: function(btn) { + if (btn == 'ok') { + me.api.asc_RemoveSignature(datavalue); + } + } + }); break; } }, @@ -3774,7 +3785,8 @@ define([ txtImportWizard: 'Text Import Wizard', textPasteSpecial: 'Paste special', textStopExpand: 'Stop automatically expanding tables', - textAutoCorrectSettings: 'AutoCorrect options' + textAutoCorrectSettings: 'AutoCorrect options', + txtRemoveWarning: 'Do you want to remove this signature?
It can\'t be undone.' }, SSE.Controllers.DocumentHolder || {})); }); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 93bd71a70..61caf14f9 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -569,6 +569,7 @@ "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Undo table autoexpansion", "SSE.Controllers.DocumentHolder.txtUseTextImport": "Use text import wizard", "SSE.Controllers.DocumentHolder.txtWidth": "Width", + "SSE.Controllers.DocumentHolder.txtRemoveWarning": "Do you want to remove this signature?
It can't be undone.", "SSE.Controllers.FormulaDialog.sCategoryAll": "All", "SSE.Controllers.FormulaDialog.sCategoryCube": "Cube", "SSE.Controllers.FormulaDialog.sCategoryDatabase": "Database", diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json index 534848032..1f79c532e 100644 --- a/apps/spreadsheeteditor/main/locale/ru.json +++ b/apps/spreadsheeteditor/main/locale/ru.json @@ -569,6 +569,7 @@ "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Отменить авторазвертывание таблицы", "SSE.Controllers.DocumentHolder.txtUseTextImport": "Использовать мастер импорта текста", "SSE.Controllers.DocumentHolder.txtWidth": "Ширина", + "SSE.Controllers.DocumentHolder.txtRemoveWarning": "Вы хотите удалить эту подпись?
Это нельзя отменить.", "SSE.Controllers.FormulaDialog.sCategoryAll": "Все", "SSE.Controllers.FormulaDialog.sCategoryCube": "Аналитические", "SSE.Controllers.FormulaDialog.sCategoryDatabase": "Базы данных", From 6e1a6ca1bd21d7be1dd5f268af5a6ed218b1c172 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 19 Aug 2021 15:55:16 +0300 Subject: [PATCH 58/90] Fix Bug 51837 --- apps/common/main/resources/less/toolbar.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common/main/resources/less/toolbar.less b/apps/common/main/resources/less/toolbar.less index 9eebc135a..f12a5cfe1 100644 --- a/apps/common/main/resources/less/toolbar.less +++ b/apps/common/main/resources/less/toolbar.less @@ -586,7 +586,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 & { From 700f58e4db08ef9caafaef6b7cd0159070bc8641 Mon Sep 17 00:00:00 2001 From: evgenykatyshev Date: Thu, 19 Aug 2021 17:11:29 +0300 Subject: [PATCH 59/90] Gradient sprites for 125 and 175% scale --- .../resources/img/right-panels/patterns.png | Bin 848 -> 803 bytes .../img/right-panels/patterns@1.25x.png | Bin 0 -> 934 bytes .../img/right-panels/patterns@1.5x.png | Bin 5424 -> 971 bytes .../img/right-panels/patterns@1.75x.png | Bin 0 -> 1063 bytes .../img/right-panels/patterns@2x.png | Bin 1158 -> 1067 bytes 5 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 apps/common/main/resources/img/right-panels/patterns@1.25x.png create mode 100644 apps/common/main/resources/img/right-panels/patterns@1.75x.png diff --git a/apps/common/main/resources/img/right-panels/patterns.png b/apps/common/main/resources/img/right-panels/patterns.png index c6e09b16b3d0382fac0304395729f8d5b3f65085..ef7f031f434acec3dbd22b75c2d24bb6db3dce49 100644 GIT binary patch delta 774 zcmV+h1Nr>W2BQX$DSrU~0RR900001Fy_Yfo0004WQchCts&ue*VGbYUURbsUIC5i8b)*2O^duokggBGJ1p5PivogBQ`U7H4@{0?`*WYvCxK z_dt|N5#d>Oktm)b!n0y6wwSGm@T|j~ctaw~X*uDUk1|A}Kb#mNw(_oLv_%yVLm(MC^C${*9RYy_oMQ3oP5y za$3%OV755-Hq8c%5b<$|)ZeMZ_ajpOqNjP9XFl}a)7J0a+m&&tmMifBYpKM3|5%9u z;&(h9TV7`@h#z}ePRp4OxHJ=E+&>sMY}!IkQ@GEwhF|nFPxH(NBFPX|;#2ww z`}IM*X@5~V+)|Pjx$yC9rj__aTy)Ael}L?Fx%QMwbjs6}(uojHwp>Rc-1i10>NU?XDI z(hkrf@}@npB3!o+x1Lx_X-}-e>e>-oEm}^?3GoyD0i0;g#L07*qoM6N<$ Ef;X3V&Hw-a delta 820 zcmV-41IzrQ2G9nODSxV}s{jB00002m8vJJf00RO^L_t(|UhSE|YU?l%Mg0>pr27Qw z@3BOZbsW-sk5&5KIti)2^3A{*gM}KX+ShJ0cOjhX(VaU%2wBa;aKkS6cvue_ht*DF z>%2w}X}|JLLbgGpcTrFX)-w$dz)#*6Bm+S8*rU8rjAm=xy*p&^Ns6 zlnXWinMR_?fToe8FoDy=-3V!7PPKv!W@S$Cf}Tvs>a+SR51R4(qH(g-deyizEXAk2 zhOOH6Rb#G}$A9Ik4St!3X%Vr^0!^yTYSQ?;CYjY|^;sTRTJBQ}MzWVN&>17y8}pg$ zpSULThcwwM{%E{GR-e^pd7y&r&QF5-liv%rdD1Dj@AG8)Hwfkv0E1I*>NoKwn3p{r zhg|!s-~-YrckMqQZ&5HNnr21o32$UppVeo1AjbM+4SzEj$--pyCnUe}PD1jyoc(`k z($oi<)o1nj^?ik{E&n+NlGTr+&txt;{fnAavuc*d^1Iqnx}h*MH{mEa7`a@vk28-N z_O;?OnypG6`*O{-O8P_fS$#s52P)lJH8y;d$B=FIaXxF@HpjV4YPG9fw9 zoahowGVz(${867+$@|1g-Y1#(%xnIrPpss9Vx{2!MDy!D%Y(ZB&IN2VJu&iq65NgCo&ZN=nkGHTYp!%wzkh{f9@Av=Pwti>IW(Y2CYse}^;sV7 zH3~*^Gz{@IY@hwR;NG|?3ard^hMeE%f<7Vfo7bdMoYoSO9%nVH&*~HMQTzi9B~zOURtV$(0000jZHz(S;;)*TIa|Q*XY)CmHEF9;P`uTV0I@d-bR_oJdi4q zdm)XcW}Z}u95N}F$fGB7?fKQs5G2||4z(!Lu zPnMZ~lV4LVk^Rsu7fI&-3jeLwiTrw7uSxG^d)Z#L*O-(-oJ6?1c=*x^TDMV9}puV+!|E(nO;7Ridds#2*WxcG|nA`<24`jI}*%hyPuR{4BpZ=^V+LtF>Nm$Y^J=I?PYt}ULW*}GYPN?M1O0oDaVj#s!ecJ+#bnH zJk->#gBwjbNl<^G*I(dS|DuZmbGI}lj1Bg3N#H*788zhvYA+$pr1!GDY%kkuOm5Q= z>eH$fSf>^~6^qov*^%ty3Ep=ezG_OJ9m&JPMc}zu>`3NU)H{KjqGYX<>7{#>eS(=@ zzJraXGQH#io55bPgN^Mq>Ah?(+iOg|rWU$Ha^LeUWCz_k!YY&cAs09gB$xW;J2;Cx zmP?gwf`h%voj~U!%-*^P9PD-5c{p2pm`T}Qlithrvc2BKACY2C_Hf@4YXATM07*qo IM6N<$g2HmpssI20 literal 0 HcmV?d00001 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 3f69c9aa31eff31a124733718489019b700d1e93..9d4ea304471d31961a791911a16fbe97836802d3 100644 GIT binary patch delta 961 zcmdm>b((#GL_HHT0|SHN#Ow_~iZj3`#FdeO;s5{tKwiq;=|(_`u_VYZn8D%MjWh-Z z<^oR_$B>F!Z|6AnJu(n+DehD_IB((uv2T(|+UI8VIOPeR6X>56>CF9W%I2T;>skYs zEk7Qlzbfl;SJ(PSteO()v9(Up>y7-bUh!jPzrM(R^_-et!bT^ASJynOF#l0~aP>$j8doEd-HU9R@>>1v8AgwxnFji9T$Ifukh^6 zSsw91dUIE;ef8pqnXKi0eB`WMBh*HInXJ12qBw2NskYd>nm%=;fQ zSHa5l>YUhl&LUx-46arhx;?x!Kh|h{$X36?h+uw$o zI-2~}eHa|vd}D_~-u~?C3sRRqIO4ky8gw9kOsfsQ+qamjPITRav&+`m-wT}{X!_tv z$(Q@fmW4r0J+y{7Nh2dCZ^+Lwvkt`GcQ^XA>$8wbiV^0Zt&+AVr)q%Gb0H)h5z zv7_rw$2&LiT3^a$d7wD6CfuU+rQ%E{s8>&J?cqzG8rY=&?>~b}V&&XLAFB3*ZYzJJ zmN;{l#yrDUCe=+VAIH`lW;)op@%8cGKMfi+MxTN=I*6QK9eY__*?WNiI1p6pfdR4D z`Mb#Brxn6`Z|n-R3CTQZl{$Y%&)gkrw>?*AYc05Ixp8lGVes2|w;1N_xbrRihsiHAb} zd{f$G(DwI6O-b?hB;oas#DmKNPtUU2y3T!h>RHpS=QUq880=e9dbe8F`lv$QW=LuW gy6(u=_g~q6KVzRcS0Td`m>(HDUHx3vIVCg!0KS#z`Tzg` literal 5424 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 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 0000000000000000000000000000000000000000..99113faba83a0965b8bfc7b880ffbf91b14f8997 GIT binary patch literal 1063 zcmeAS@N?(olHy`uVBq!ia0vp^M;REH>X?{;thysQe}EKcfKP}kBLl<#|Nnu!l)cl9 zfD~g%kY6x^!?PP{3=GU?JY5_^DsH`$XA&yWyi~=H#;D)!+PP2)=r_&4m9CoWq&|Gxy!}RS&<(f-Cw=>; zdNIqd6n5uq^7?g$U+dAtn$>gfZe3vfgZX>K(f!{e&)cZ}mi=Ahmt#0J>=%#LIqpgG z&+Qj1VT*Rt-mesQ^YoeEu!#5fCxJo;hE68sm$Iqycl~AFzIIAiWmUnRq;<#k2F*D2 zBe{2JlGe$*jZ^1uM)LZkqj7y^UA1cr8`yuV%|7*Fx#cl`O;*h?xi$N%PF>$#z>Ppl zP8(@;yQ}6;nR~Y=Q0tl1&n5ddPW>3HwCVJoFOu_uw0@om-dFFPGvTh6!L#ML3&pD# z;UOd5oAm5|nBBVj2XEiJ`E&6jKCiu@X63Rs&f7fw#_;Xil%us+lnyp`L8B+VL*-PNaoTBBsz5@jXSNdx|6N&C@I&)7*VDr&E$(j{FpFz>|lE`h0 z8>cV!Ds2A#H>o~x+HD{`DY5HKZfc2lo8~8zVj%g^4mC-gUaPQ9Fy&SKQdySBiqu6#_o|K@ zWm|b%d-_JFn1D~6T`wfAPdVZ8)T!jm8C~!DO6zhaR4oc}O}RErWzPlfy-;-e`v>;N XHVo&!s~1ZGGdY8&tDnm{r-UW|7b69u literal 0 HcmV?d00001 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 76c030e4746637c7baa64280d55ca3ddf22dbb40..d253529cd7a66ee4090b8b79ecc167f1f085e6f8 100644 GIT binary patch literal 1067 zcmeAS@N?(olHy`uVBq!ia0vp^4;UDjZZI(eSrT8xW&Mx zwr}bEH|JJ|b?iJdd)M^!;og(#{_U_8y0yov?d)om>kcRP9(235qVJ?>z)Dte)fLKr zEq*<8lr1g~e3`vM^m5^M#qBv#MZxak@hg>Y7uFs(e;R1h<^EAa?&#tQk^c7roNPTh zk{M>3R2XtoPBz>;@rftMCzyW)=R4<3T0R%03^u8RD|yWlWhyjf3f_DnJ@}u8A@hcb zZ3DY`V zd9XuahKWA8lU7vn^o8VN4`Dy)zZS0QjnP?meB9%M7T274=4999{!>FP{s7Q}Kz%hK z8^Rr=J-P2*tK98hUQ?4{D4k}PzrxVGL^{%b?T;VP_Pu|0Kbo)1oIOXhNqnA~k3HXu zA07P#k$EdO9=>(LL4NM!*4UDtuQefo1#!cQ8|TzW& z>+C=O+9Z|BHaE6zV*i;{zGtgydrQhH7xb??seJrq#iAd2NNMR&;PV$&n=|GIT#&9= z@%X*`%kMs2Q_|+mNljdL;_a@(SE>)6kXrVFGr~=8^DmxHgYd&$jPYan4ru&I3AqvB=AP z*BGQDi_2Z*G;i&B^{v+Gu4v_g8Oyr2eKmZi$6ns7XDu(BHnFe^NX1NiDklH1%LW)f zuoQLlarx80hdY<;^$?%Szv0gAjP|RpU3E4W;+ABKTsQRJ-LDrIvvc3!<6rMhZMfzZ wx9r9H^W{Hw{NwdHD=GOLl!p)o{r$*(z_Go`xDNC-vt!$hG>%>0%O<=!}CNF*= z=i9}^18+)R-C->|-f-)$V8WMc4L4t#U63-cUawo4e20Cd%>4^H3iL|3Jqj;K9pA{j zFC;HxUpzPMK*he z_0Uh(@jlypD$q{L{bxl`AIN~?$#&^axn1i-7o3T!W;Ce&%fVq`WychyJ;Rpq63Z;R zDN!=A(@m$`%x@0Sn%l(r#l(&U7!v-CbrnJhBJBJ{KLl26KPX%a^b^cAk7wS0zaTT= zvs?CVhgm-)_t>(ooBb(o9>Yo*yO7_GPj_%GxtuKG&J+T)-Vz!lMK&M*_HEO7c;596 zTjdGC8#X#!uk3!ro;S28RdaZ{LT2jXqL98*ftFhCPk$sA+a%o+{Ie%q!jI{Q)1_t8 z59WN^$j!5SR?I6g1HG%_zcgD}e#Baq@gFw$^x*sR3Pw2(He}az+Q}KdUvN0^jP&}c zsVl!bTGj5=8TEa8X0xDJxk9Est1tbG^&$NqAGkR(HusBUq?R#h z${bISoZ$6!?-Z%pr5cQS(Ua|X#UX3Vf<4_awv&D&s`AOj4n z^U92Fg#jy^Ig(nJ$2mwmjurz7KyB*%{A;2#}6*8lGFTf*TQ49h=#oVD`kF$ z>spM*3XhcCVc-Aamqbme6{FmP$C97>((b)TPXFQ-n0eq$srZjiW>Ssenj3BkCv0zh za{H3OjZ<%aJ49!xo?LO|w!(2n_s14xjo$xOXrJ(ZY)iI z&D3*m$LlzaQ!ln%v3l2h_ppPEd;9fSjQaK_8m3)~4`<(HZ!1h#Y0A1!`grToYb?kX zeXg-dzqgU^ZuZY>K{eJ>S$4egjDK3s5u^3=_5*vCs-=IFjygYhec^4|fj9n*`c*+P x=Nt5wEBwm3ru^V_=Cnr@9LN#cXjcc!u;RhypF~u@#(RMZ7*AI}mvv4FO#oN?ACCY4 From d2d85daa827545e96be7f13315ee2701fb69df47 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Thu, 19 Aug 2021 17:22:21 +0300 Subject: [PATCH 60/90] [scaling] apply icons for common controls on 125%/175% scaling --- apps/common/main/resources/less/asc-mixins.less | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/apps/common/main/resources/less/asc-mixins.less b/apps/common/main/resources/less/asc-mixins.less index aaa42ed66..44f8f6593 100644 --- a/apps/common/main/resources/less/asc-mixins.less +++ b/apps/common/main/resources/less/asc-mixins.less @@ -293,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 { @@ -313,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; From a29ab8842852c5f9025c05a154cb73adca5a8ec0 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 19 Aug 2021 20:58:59 +0300 Subject: [PATCH 61/90] For Bug 50233 --- apps/documenteditor/main/app/controller/Main.js | 7 ++++++- apps/documenteditor/main/locale/en.json | 1 + apps/presentationeditor/main/app/controller/Main.js | 9 +++++++-- apps/presentationeditor/main/locale/en.json | 1 + apps/spreadsheeteditor/main/app/controller/Main.js | 9 +++++++-- apps/spreadsheeteditor/main/locale/en.json | 1 + 6 files changed, 23 insertions(+), 5 deletions(-) diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index 2652d4d7d..9003abc89 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -1734,6 +1734,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; @@ -2938,7 +2942,8 @@ define([ txtTableOfFigures: 'Table of figures', txtStyle_endnote_text: 'Endnote Text', txtTOCHeading: 'TOC Heading', - 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/locale/en.json b/apps/documenteditor/main/locale/en.json index 1d65805c3..1d6153624 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -862,6 +862,7 @@ "DE.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.", "DE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", "DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", + "DE.Controllers.Main.errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "DE.Controllers.Navigation.txtBeginning": "Beginning of document", "DE.Controllers.Navigation.txtGotoBeginning": "Go to the beginning of the document", "DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked", diff --git a/apps/presentationeditor/main/app/controller/Main.js b/apps/presentationeditor/main/app/controller/Main.js index 081ca2880..e38599726 100644 --- a/apps/presentationeditor/main/app/controller/Main.js +++ b/apps/presentationeditor/main/app/controller/Main.js @@ -1404,7 +1404,11 @@ define([ case Asc.c_oAscError.ID.Password: config.msg = this.errorSetPassword; 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; @@ -2727,7 +2731,8 @@ define([ txtErrorLoadHistory: 'Loading history failed', leavePageTextOnClose: 'All unsaved changes in this document will be lost.
Click \'Cancel\' then \'Save\' to save them. Click \'OK\' to discard all the unsaved changes.', textTryUndoRedoWarn: 'The Undo/Redo functions are disabled for the Fast co-editing mode.', - txtNone: 'None' + txtNone: 'None', + errorLoadingFont: 'Fonts are not loaded.
Please contact your Document Server administrator.' } })(), PE.Controllers.Main || {})) }); diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json index ea8a32bb6..996eab3ff 100644 --- a/apps/presentationeditor/main/locale/en.json +++ b/apps/presentationeditor/main/locale/en.json @@ -736,6 +736,7 @@ "PE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
Contact %1 sales team for personal upgrade terms.", "PE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", "PE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", + "PE.Controllers.Main.errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "PE.Controllers.Statusbar.zoomText": "Zoom {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.
The text style will be displayed using one of the system fonts, the saved font will be used when it is available.
Do you want to continue?", "PE.Controllers.Toolbar.textAccent": "Accents", diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js index e5da80f55..30efb9aa9 100644 --- a/apps/spreadsheeteditor/main/app/controller/Main.js +++ b/apps/spreadsheeteditor/main/app/controller/Main.js @@ -1711,7 +1711,11 @@ define([ case Asc.c_oAscError.ID.UplDocumentFileCount: config.msg = this.uploadDocFileCountMessage; 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; @@ -2990,7 +2994,8 @@ define([ errorLocationOrDataRangeError: 'The reference for the location or data range is not valid.', uploadDocSizeMessage: 'Maximum document size limit exceeded.', uploadDocExtMessage: 'Unknown document format.', - uploadDocFileCountMessage: 'No documents uploaded.' + uploadDocFileCountMessage: 'No documents uploaded.', + errorLoadingFont: 'Fonts are not loaded.
Please contact your Document Server administrator.' } })(), SSE.Controllers.Main || {})) }); diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 61caf14f9..e0960baf3 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -1006,6 +1006,7 @@ "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.errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "SSE.Controllers.Print.strAllSheets": "All Sheets", "SSE.Controllers.Print.textFirstCol": "First column", "SSE.Controllers.Print.textFirstRow": "First row", From bd326bcdfa76b9c0fae4d6b7aa918026b72142ac Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Thu, 19 Aug 2021 21:12:31 +0300 Subject: [PATCH 62/90] [SSE mobile] Fix Bug 52077 --- apps/spreadsheeteditor/mobile/locale/en.json | 3 ++- apps/spreadsheeteditor/mobile/src/controller/add/AddLink.jsx | 5 ++++- apps/spreadsheeteditor/mobile/src/view/add/AddLink.jsx | 3 ++- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json index 07771d3b1..fe31d4295 100644 --- a/apps/spreadsheeteditor/mobile/locale/en.json +++ b/apps/spreadsheeteditor/mobile/locale/en.json @@ -334,7 +334,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", 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/view/add/AddLink.jsx b/apps/spreadsheeteditor/mobile/src/view/add/AddLink.jsx index 75fbe135d..3882bcf8f 100644 --- a/apps/spreadsheeteditor/mobile/src/view/add/AddLink.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/add/AddLink.jsx @@ -61,6 +61,7 @@ const AddLinkView = props => { let displayText = props.displayText; const displayDisabled = displayText === 'locked'; displayText = displayDisabled ? _t.textSelectedRange : displayText; + const [stateDisplayText, setDisplayText] = useState(displayText); const [stateAutoUpdate, setAutoUpdate] = useState(true); const [screenTip, setScreenTip] = useState(''); @@ -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((!stateDisplayText || stateDisplayText === link) && stateAutoUpdate && !displayDisabled) setDisplayText(event.target.value); }} className={isIos ? 'list-input-right' : ''} /> From 43e4ecc534a7aeb202062bd5e38359c3f49d915f Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 19 Aug 2021 21:55:52 +0300 Subject: [PATCH 63/90] [Mobile] For Bug 50233 --- apps/documenteditor/mobile/locale/be.json | 3 ++- apps/documenteditor/mobile/locale/bg.json | 3 ++- apps/documenteditor/mobile/locale/ca.json | 3 ++- apps/documenteditor/mobile/locale/cs.json | 3 ++- apps/documenteditor/mobile/locale/da.json | 3 ++- apps/documenteditor/mobile/locale/de.json | 3 ++- apps/documenteditor/mobile/locale/el.json | 3 ++- apps/documenteditor/mobile/locale/en.json | 3 ++- apps/documenteditor/mobile/locale/es.json | 3 ++- apps/documenteditor/mobile/locale/fi.json | 3 ++- apps/documenteditor/mobile/locale/fr.json | 3 ++- apps/documenteditor/mobile/locale/hu.json | 3 ++- apps/documenteditor/mobile/locale/it.json | 3 ++- apps/documenteditor/mobile/locale/ja.json | 3 ++- apps/documenteditor/mobile/locale/ko.json | 3 ++- apps/documenteditor/mobile/locale/lo.json | 3 ++- apps/documenteditor/mobile/locale/lv.json | 3 ++- apps/documenteditor/mobile/locale/nb.json | 3 ++- apps/documenteditor/mobile/locale/nl.json | 3 ++- apps/documenteditor/mobile/locale/pl.json | 3 ++- apps/documenteditor/mobile/locale/pt.json | 3 ++- apps/documenteditor/mobile/locale/ro.json | 3 ++- apps/documenteditor/mobile/locale/ru.json | 3 ++- apps/documenteditor/mobile/locale/sk.json | 3 ++- apps/documenteditor/mobile/locale/sl.json | 3 ++- apps/documenteditor/mobile/locale/sv.json | 3 ++- apps/documenteditor/mobile/locale/tr.json | 3 ++- apps/documenteditor/mobile/locale/uk.json | 3 ++- apps/documenteditor/mobile/locale/vi.json | 3 ++- apps/documenteditor/mobile/locale/zh.json | 3 ++- apps/documenteditor/mobile/src/controller/Error.jsx | 6 +++++- apps/presentationeditor/mobile/locale/be.json | 3 ++- apps/presentationeditor/mobile/locale/bg.json | 3 ++- apps/presentationeditor/mobile/locale/ca.json | 3 ++- apps/presentationeditor/mobile/locale/cs.json | 3 ++- apps/presentationeditor/mobile/locale/de.json | 3 ++- apps/presentationeditor/mobile/locale/el.json | 3 ++- apps/presentationeditor/mobile/locale/en.json | 3 ++- apps/presentationeditor/mobile/locale/es.json | 3 ++- apps/presentationeditor/mobile/locale/fr.json | 3 ++- apps/presentationeditor/mobile/locale/hu.json | 3 ++- apps/presentationeditor/mobile/locale/it.json | 3 ++- apps/presentationeditor/mobile/locale/ja.json | 3 ++- apps/presentationeditor/mobile/locale/ko.json | 3 ++- apps/presentationeditor/mobile/locale/lo.json | 3 ++- apps/presentationeditor/mobile/locale/lv.json | 3 ++- apps/presentationeditor/mobile/locale/nb.json | 3 ++- apps/presentationeditor/mobile/locale/nl.json | 3 ++- apps/presentationeditor/mobile/locale/pl.json | 3 ++- apps/presentationeditor/mobile/locale/pt.json | 3 ++- apps/presentationeditor/mobile/locale/ro.json | 3 ++- apps/presentationeditor/mobile/locale/ru.json | 3 ++- apps/presentationeditor/mobile/locale/sk.json | 3 ++- apps/presentationeditor/mobile/locale/sl.json | 3 ++- apps/presentationeditor/mobile/locale/tr.json | 3 ++- apps/presentationeditor/mobile/locale/uk.json | 3 ++- apps/presentationeditor/mobile/locale/vi.json | 3 ++- apps/presentationeditor/mobile/locale/zh.json | 3 ++- apps/presentationeditor/mobile/src/controller/Error.jsx | 6 +++++- apps/spreadsheeteditor/mobile/locale/be.json | 3 ++- apps/spreadsheeteditor/mobile/locale/bg.json | 3 ++- apps/spreadsheeteditor/mobile/locale/ca.json | 3 ++- apps/spreadsheeteditor/mobile/locale/cs.json | 3 ++- apps/spreadsheeteditor/mobile/locale/de.json | 3 ++- apps/spreadsheeteditor/mobile/locale/el.json | 3 ++- apps/spreadsheeteditor/mobile/locale/en.json | 3 ++- apps/spreadsheeteditor/mobile/locale/es.json | 3 ++- apps/spreadsheeteditor/mobile/locale/fr.json | 3 ++- apps/spreadsheeteditor/mobile/locale/hu.json | 3 ++- apps/spreadsheeteditor/mobile/locale/it.json | 3 ++- apps/spreadsheeteditor/mobile/locale/ja.json | 3 ++- apps/spreadsheeteditor/mobile/locale/ko.json | 3 ++- apps/spreadsheeteditor/mobile/locale/lo.json | 3 ++- apps/spreadsheeteditor/mobile/locale/lv.json | 3 ++- apps/spreadsheeteditor/mobile/locale/nb.json | 3 ++- apps/spreadsheeteditor/mobile/locale/nl.json | 3 ++- apps/spreadsheeteditor/mobile/locale/pl.json | 3 ++- apps/spreadsheeteditor/mobile/locale/pt.json | 3 ++- apps/spreadsheeteditor/mobile/locale/ro.json | 3 ++- apps/spreadsheeteditor/mobile/locale/ru.json | 3 ++- apps/spreadsheeteditor/mobile/locale/sk.json | 3 ++- apps/spreadsheeteditor/mobile/locale/sl.json | 3 ++- apps/spreadsheeteditor/mobile/locale/tr.json | 3 ++- apps/spreadsheeteditor/mobile/locale/uk.json | 3 ++- apps/spreadsheeteditor/mobile/locale/vi.json | 3 ++- apps/spreadsheeteditor/mobile/locale/zh.json | 3 ++- apps/spreadsheeteditor/mobile/src/controller/Error.jsx | 6 +++++- 87 files changed, 183 insertions(+), 87 deletions(-) diff --git a/apps/documenteditor/mobile/locale/be.json b/apps/documenteditor/mobile/locale/be.json index 8c452bf51..e732ca444 100644 --- a/apps/documenteditor/mobile/locale/be.json +++ b/apps/documenteditor/mobile/locale/be.json @@ -334,7 +334,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...", diff --git a/apps/documenteditor/mobile/locale/bg.json b/apps/documenteditor/mobile/locale/bg.json index 8c452bf51..e732ca444 100644 --- a/apps/documenteditor/mobile/locale/bg.json +++ b/apps/documenteditor/mobile/locale/bg.json @@ -334,7 +334,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...", diff --git a/apps/documenteditor/mobile/locale/ca.json b/apps/documenteditor/mobile/locale/ca.json index 012e66315..fa9af5306 100644 --- a/apps/documenteditor/mobile/locale/ca.json +++ b/apps/documenteditor/mobile/locale/ca.json @@ -334,7 +334,8 @@ "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." + "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...", diff --git a/apps/documenteditor/mobile/locale/cs.json b/apps/documenteditor/mobile/locale/cs.json index 8c452bf51..e732ca444 100644 --- a/apps/documenteditor/mobile/locale/cs.json +++ b/apps/documenteditor/mobile/locale/cs.json @@ -334,7 +334,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...", diff --git a/apps/documenteditor/mobile/locale/da.json b/apps/documenteditor/mobile/locale/da.json index 8c452bf51..e732ca444 100644 --- a/apps/documenteditor/mobile/locale/da.json +++ b/apps/documenteditor/mobile/locale/da.json @@ -334,7 +334,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...", diff --git a/apps/documenteditor/mobile/locale/de.json b/apps/documenteditor/mobile/locale/de.json index 6d7fabffc..f96122d53 100644 --- a/apps/documenteditor/mobile/locale/de.json +++ b/apps/documenteditor/mobile/locale/de.json @@ -334,7 +334,8 @@ "unknownErrorText": "Unbekannter Fehler.", "uploadImageExtMessage": "Unbekanntes Bildformat.", "uploadImageFileCountMessage": "Keine Bilder hochgeladen.", - "uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten." + "uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Daten werden geladen...", diff --git a/apps/documenteditor/mobile/locale/el.json b/apps/documenteditor/mobile/locale/el.json index 8c452bf51..e732ca444 100644 --- a/apps/documenteditor/mobile/locale/el.json +++ b/apps/documenteditor/mobile/locale/el.json @@ -334,7 +334,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...", diff --git a/apps/documenteditor/mobile/locale/en.json b/apps/documenteditor/mobile/locale/en.json index f176b198f..3632d1187 100644 --- a/apps/documenteditor/mobile/locale/en.json +++ b/apps/documenteditor/mobile/locale/en.json @@ -334,7 +334,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...", diff --git a/apps/documenteditor/mobile/locale/es.json b/apps/documenteditor/mobile/locale/es.json index ec2a2e403..9efebea2a 100644 --- a/apps/documenteditor/mobile/locale/es.json +++ b/apps/documenteditor/mobile/locale/es.json @@ -334,7 +334,8 @@ "unknownErrorText": "Error desconocido.", "uploadImageExtMessage": "Formato de imagen desconocido.", "uploadImageFileCountMessage": "No hay imágenes subidas.", - "uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB." + "uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Cargando datos...", diff --git a/apps/documenteditor/mobile/locale/fi.json b/apps/documenteditor/mobile/locale/fi.json index 8c452bf51..e732ca444 100644 --- a/apps/documenteditor/mobile/locale/fi.json +++ b/apps/documenteditor/mobile/locale/fi.json @@ -334,7 +334,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...", diff --git a/apps/documenteditor/mobile/locale/fr.json b/apps/documenteditor/mobile/locale/fr.json index e32fc9f26..982286b38 100644 --- a/apps/documenteditor/mobile/locale/fr.json +++ b/apps/documenteditor/mobile/locale/fr.json @@ -334,7 +334,8 @@ "unknownErrorText": "Erreur inconnue.", "uploadImageExtMessage": "Format d'image inconnu.", "uploadImageFileCountMessage": "Aucune image chargée.", - "uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo." + "uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Chargement des données en cours...", diff --git a/apps/documenteditor/mobile/locale/hu.json b/apps/documenteditor/mobile/locale/hu.json index 8c452bf51..e732ca444 100644 --- a/apps/documenteditor/mobile/locale/hu.json +++ b/apps/documenteditor/mobile/locale/hu.json @@ -334,7 +334,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...", diff --git a/apps/documenteditor/mobile/locale/it.json b/apps/documenteditor/mobile/locale/it.json index 8c452bf51..e732ca444 100644 --- a/apps/documenteditor/mobile/locale/it.json +++ b/apps/documenteditor/mobile/locale/it.json @@ -334,7 +334,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...", diff --git a/apps/documenteditor/mobile/locale/ja.json b/apps/documenteditor/mobile/locale/ja.json index d5b722a1a..73e5ed580 100644 --- a/apps/documenteditor/mobile/locale/ja.json +++ b/apps/documenteditor/mobile/locale/ja.json @@ -567,7 +567,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." }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/ko.json b/apps/documenteditor/mobile/locale/ko.json index 8c452bf51..e732ca444 100644 --- a/apps/documenteditor/mobile/locale/ko.json +++ b/apps/documenteditor/mobile/locale/ko.json @@ -334,7 +334,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...", diff --git a/apps/documenteditor/mobile/locale/lo.json b/apps/documenteditor/mobile/locale/lo.json index 8c452bf51..e732ca444 100644 --- a/apps/documenteditor/mobile/locale/lo.json +++ b/apps/documenteditor/mobile/locale/lo.json @@ -334,7 +334,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...", diff --git a/apps/documenteditor/mobile/locale/lv.json b/apps/documenteditor/mobile/locale/lv.json index 8c452bf51..e732ca444 100644 --- a/apps/documenteditor/mobile/locale/lv.json +++ b/apps/documenteditor/mobile/locale/lv.json @@ -334,7 +334,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...", diff --git a/apps/documenteditor/mobile/locale/nb.json b/apps/documenteditor/mobile/locale/nb.json index 8c452bf51..e732ca444 100644 --- a/apps/documenteditor/mobile/locale/nb.json +++ b/apps/documenteditor/mobile/locale/nb.json @@ -334,7 +334,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...", diff --git a/apps/documenteditor/mobile/locale/nl.json b/apps/documenteditor/mobile/locale/nl.json index 50f24bc49..1c787e13e 100644 --- a/apps/documenteditor/mobile/locale/nl.json +++ b/apps/documenteditor/mobile/locale/nl.json @@ -334,7 +334,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...", diff --git a/apps/documenteditor/mobile/locale/pl.json b/apps/documenteditor/mobile/locale/pl.json index 8c452bf51..e732ca444 100644 --- a/apps/documenteditor/mobile/locale/pl.json +++ b/apps/documenteditor/mobile/locale/pl.json @@ -334,7 +334,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...", diff --git a/apps/documenteditor/mobile/locale/pt.json b/apps/documenteditor/mobile/locale/pt.json index fb1b37082..53a299453 100644 --- a/apps/documenteditor/mobile/locale/pt.json +++ b/apps/documenteditor/mobile/locale/pt.json @@ -334,7 +334,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...", diff --git a/apps/documenteditor/mobile/locale/ro.json b/apps/documenteditor/mobile/locale/ro.json index d417daa40..2e2fd3c59 100644 --- a/apps/documenteditor/mobile/locale/ro.json +++ b/apps/documenteditor/mobile/locale/ro.json @@ -334,7 +334,8 @@ "unknownErrorText": "Eroare necunoscută.", "uploadImageExtMessage": "Format de imagine nerecunoscut.", "uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.", - "uploadImageSizeMessage": "Imaginea este prea mare. Limita de dimensiune este de 25 MB." + "uploadImageSizeMessage": "Imaginea este prea mare. Limita de dimensiune este de 25 MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Încărcarea datelor...", diff --git a/apps/documenteditor/mobile/locale/ru.json b/apps/documenteditor/mobile/locale/ru.json index 733d4eba7..32b27ceea 100644 --- a/apps/documenteditor/mobile/locale/ru.json +++ b/apps/documenteditor/mobile/locale/ru.json @@ -334,7 +334,8 @@ "unknownErrorText": "Неизвестная ошибка.", "uploadImageExtMessage": "Неизвестный формат рисунка.", "uploadImageFileCountMessage": "Ни одного рисунка не загружено.", - "uploadImageSizeMessage": "Слишком большой рисунок. Максимальный размер - 25 MB." + "uploadImageSizeMessage": "Слишком большой рисунок. Максимальный размер - 25 MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Загрузка данных...", diff --git a/apps/documenteditor/mobile/locale/sk.json b/apps/documenteditor/mobile/locale/sk.json index 8c452bf51..e732ca444 100644 --- a/apps/documenteditor/mobile/locale/sk.json +++ b/apps/documenteditor/mobile/locale/sk.json @@ -334,7 +334,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...", diff --git a/apps/documenteditor/mobile/locale/sl.json b/apps/documenteditor/mobile/locale/sl.json index 8c452bf51..e732ca444 100644 --- a/apps/documenteditor/mobile/locale/sl.json +++ b/apps/documenteditor/mobile/locale/sl.json @@ -334,7 +334,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...", diff --git a/apps/documenteditor/mobile/locale/sv.json b/apps/documenteditor/mobile/locale/sv.json index 8c452bf51..e732ca444 100644 --- a/apps/documenteditor/mobile/locale/sv.json +++ b/apps/documenteditor/mobile/locale/sv.json @@ -334,7 +334,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...", diff --git a/apps/documenteditor/mobile/locale/tr.json b/apps/documenteditor/mobile/locale/tr.json index 5b434d997..b7448f56b 100644 --- a/apps/documenteditor/mobile/locale/tr.json +++ b/apps/documenteditor/mobile/locale/tr.json @@ -334,7 +334,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." }, "Main": { "SDK": { diff --git a/apps/documenteditor/mobile/locale/uk.json b/apps/documenteditor/mobile/locale/uk.json index 8c452bf51..e732ca444 100644 --- a/apps/documenteditor/mobile/locale/uk.json +++ b/apps/documenteditor/mobile/locale/uk.json @@ -334,7 +334,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...", diff --git a/apps/documenteditor/mobile/locale/vi.json b/apps/documenteditor/mobile/locale/vi.json index 8c452bf51..e732ca444 100644 --- a/apps/documenteditor/mobile/locale/vi.json +++ b/apps/documenteditor/mobile/locale/vi.json @@ -334,7 +334,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...", diff --git a/apps/documenteditor/mobile/locale/zh.json b/apps/documenteditor/mobile/locale/zh.json index 773072e2e..5bdf48d79 100644 --- a/apps/documenteditor/mobile/locale/zh.json +++ b/apps/documenteditor/mobile/locale/zh.json @@ -334,7 +334,8 @@ "unknownErrorText": "未知错误。", "uploadImageExtMessage": "未知图像格式。", "uploadImageFileCountMessage": "没有图片上传", - "uploadImageSizeMessage": "图片太大了。最大允许的大小是 25 MB." + "uploadImageSizeMessage": "图片太大了。最大允许的大小是 25 MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "数据加载中…", diff --git a/apps/documenteditor/mobile/src/controller/Error.jsx b/apps/documenteditor/mobile/src/controller/Error.jsx index 647fde4a9..6910f56b6 100644 --- a/apps/documenteditor/mobile/src/controller/Error.jsx +++ b/apps/documenteditor/mobile/src/controller/Error.jsx @@ -28,7 +28,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(); @@ -172,6 +172,10 @@ const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocu config.msg = _t.errorUpdateVersionOnDisconnect; 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/presentationeditor/mobile/locale/be.json b/apps/presentationeditor/mobile/locale/be.json index a6531c874..ac341155d 100644 --- a/apps/presentationeditor/mobile/locale/be.json +++ b/apps/presentationeditor/mobile/locale/be.json @@ -157,7 +157,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...", diff --git a/apps/presentationeditor/mobile/locale/bg.json b/apps/presentationeditor/mobile/locale/bg.json index a6531c874..ac341155d 100644 --- a/apps/presentationeditor/mobile/locale/bg.json +++ b/apps/presentationeditor/mobile/locale/bg.json @@ -157,7 +157,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...", diff --git a/apps/presentationeditor/mobile/locale/ca.json b/apps/presentationeditor/mobile/locale/ca.json index 93085aea7..2b7db7bdd 100644 --- a/apps/presentationeditor/mobile/locale/ca.json +++ b/apps/presentationeditor/mobile/locale/ca.json @@ -157,7 +157,8 @@ "unknownErrorText": "Error Desconegut.", "uploadImageExtMessage": "Format d'imatge desconegut.", "uploadImageFileCountMessage": "No hi ha imatges carregades.", - "uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB." + "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...", diff --git a/apps/presentationeditor/mobile/locale/cs.json b/apps/presentationeditor/mobile/locale/cs.json index a6531c874..ac341155d 100644 --- a/apps/presentationeditor/mobile/locale/cs.json +++ b/apps/presentationeditor/mobile/locale/cs.json @@ -157,7 +157,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...", diff --git a/apps/presentationeditor/mobile/locale/de.json b/apps/presentationeditor/mobile/locale/de.json index 2192defdb..0af256cc3 100644 --- a/apps/presentationeditor/mobile/locale/de.json +++ b/apps/presentationeditor/mobile/locale/de.json @@ -157,7 +157,8 @@ "unknownErrorText": "Unbekannter Fehler.", "uploadImageExtMessage": "Unbekanntes Bildformat.", "uploadImageFileCountMessage": "Keine Bilder hochgeladen.", - "uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten." + "uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Daten werden geladen...", diff --git a/apps/presentationeditor/mobile/locale/el.json b/apps/presentationeditor/mobile/locale/el.json index a6531c874..ac341155d 100644 --- a/apps/presentationeditor/mobile/locale/el.json +++ b/apps/presentationeditor/mobile/locale/el.json @@ -157,7 +157,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...", diff --git a/apps/presentationeditor/mobile/locale/en.json b/apps/presentationeditor/mobile/locale/en.json index a6531c874..ac341155d 100644 --- a/apps/presentationeditor/mobile/locale/en.json +++ b/apps/presentationeditor/mobile/locale/en.json @@ -157,7 +157,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...", diff --git a/apps/presentationeditor/mobile/locale/es.json b/apps/presentationeditor/mobile/locale/es.json index 787dd5215..2dabd42dd 100644 --- a/apps/presentationeditor/mobile/locale/es.json +++ b/apps/presentationeditor/mobile/locale/es.json @@ -157,7 +157,8 @@ "unknownErrorText": "Error desconocido.", "uploadImageExtMessage": "Formato de imagen desconocido.", "uploadImageFileCountMessage": "No hay imágenes subidas.", - "uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB." + "uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Cargando datos...", diff --git a/apps/presentationeditor/mobile/locale/fr.json b/apps/presentationeditor/mobile/locale/fr.json index 465fa06ba..656cc1148 100644 --- a/apps/presentationeditor/mobile/locale/fr.json +++ b/apps/presentationeditor/mobile/locale/fr.json @@ -157,7 +157,8 @@ "unknownErrorText": "Erreur inconnue.", "uploadImageExtMessage": "Format d'image inconnu.", "uploadImageFileCountMessage": "Aucune image chargée.", - "uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo." + "uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Chargement des données en cours...", diff --git a/apps/presentationeditor/mobile/locale/hu.json b/apps/presentationeditor/mobile/locale/hu.json index a6531c874..ac341155d 100644 --- a/apps/presentationeditor/mobile/locale/hu.json +++ b/apps/presentationeditor/mobile/locale/hu.json @@ -157,7 +157,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...", diff --git a/apps/presentationeditor/mobile/locale/it.json b/apps/presentationeditor/mobile/locale/it.json index a6531c874..ac341155d 100644 --- a/apps/presentationeditor/mobile/locale/it.json +++ b/apps/presentationeditor/mobile/locale/it.json @@ -157,7 +157,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...", diff --git a/apps/presentationeditor/mobile/locale/ja.json b/apps/presentationeditor/mobile/locale/ja.json index b95c869ff..801676548 100644 --- a/apps/presentationeditor/mobile/locale/ja.json +++ b/apps/presentationeditor/mobile/locale/ja.json @@ -157,7 +157,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": { "loadImagesTextText": "イメージの読み込み中...", diff --git a/apps/presentationeditor/mobile/locale/ko.json b/apps/presentationeditor/mobile/locale/ko.json index a6531c874..ac341155d 100644 --- a/apps/presentationeditor/mobile/locale/ko.json +++ b/apps/presentationeditor/mobile/locale/ko.json @@ -157,7 +157,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...", diff --git a/apps/presentationeditor/mobile/locale/lo.json b/apps/presentationeditor/mobile/locale/lo.json index a6531c874..ac341155d 100644 --- a/apps/presentationeditor/mobile/locale/lo.json +++ b/apps/presentationeditor/mobile/locale/lo.json @@ -157,7 +157,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...", diff --git a/apps/presentationeditor/mobile/locale/lv.json b/apps/presentationeditor/mobile/locale/lv.json index a6531c874..ac341155d 100644 --- a/apps/presentationeditor/mobile/locale/lv.json +++ b/apps/presentationeditor/mobile/locale/lv.json @@ -157,7 +157,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...", diff --git a/apps/presentationeditor/mobile/locale/nb.json b/apps/presentationeditor/mobile/locale/nb.json index a6531c874..ac341155d 100644 --- a/apps/presentationeditor/mobile/locale/nb.json +++ b/apps/presentationeditor/mobile/locale/nb.json @@ -157,7 +157,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...", diff --git a/apps/presentationeditor/mobile/locale/nl.json b/apps/presentationeditor/mobile/locale/nl.json index 4f09e2ab9..d7ee0fb4e 100644 --- a/apps/presentationeditor/mobile/locale/nl.json +++ b/apps/presentationeditor/mobile/locale/nl.json @@ -157,7 +157,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...", diff --git a/apps/presentationeditor/mobile/locale/pl.json b/apps/presentationeditor/mobile/locale/pl.json index a6531c874..ac341155d 100644 --- a/apps/presentationeditor/mobile/locale/pl.json +++ b/apps/presentationeditor/mobile/locale/pl.json @@ -157,7 +157,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...", diff --git a/apps/presentationeditor/mobile/locale/pt.json b/apps/presentationeditor/mobile/locale/pt.json index c29ddb5cf..570c1a089 100644 --- a/apps/presentationeditor/mobile/locale/pt.json +++ b/apps/presentationeditor/mobile/locale/pt.json @@ -157,7 +157,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...", diff --git a/apps/presentationeditor/mobile/locale/ro.json b/apps/presentationeditor/mobile/locale/ro.json index 03946e9bd..d488ad05c 100644 --- a/apps/presentationeditor/mobile/locale/ro.json +++ b/apps/presentationeditor/mobile/locale/ro.json @@ -157,7 +157,8 @@ "unknownErrorText": "Eroare necunoscută.", "uploadImageExtMessage": "Format de imagine nerecunoscut.", "uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.", - "uploadImageSizeMessage": "Imaginea este prea mare. Limita de dimensiune este de 25 MB." + "uploadImageSizeMessage": "Imaginea este prea mare. Limita de dimensiune este de 25 MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Încărcarea datelor...", diff --git a/apps/presentationeditor/mobile/locale/ru.json b/apps/presentationeditor/mobile/locale/ru.json index 744bb2ceb..c820324f3 100644 --- a/apps/presentationeditor/mobile/locale/ru.json +++ b/apps/presentationeditor/mobile/locale/ru.json @@ -157,7 +157,8 @@ "unknownErrorText": "Неизвестная ошибка.", "uploadImageExtMessage": "Неизвестный формат рисунка.", "uploadImageFileCountMessage": "Ни одного рисунка не загружено.", - "uploadImageSizeMessage": "Слишком большой рисунок. Максимальный размер - 25 MB." + "uploadImageSizeMessage": "Слишком большой рисунок. Максимальный размер - 25 MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Загрузка данных...", diff --git a/apps/presentationeditor/mobile/locale/sk.json b/apps/presentationeditor/mobile/locale/sk.json index a6531c874..ac341155d 100644 --- a/apps/presentationeditor/mobile/locale/sk.json +++ b/apps/presentationeditor/mobile/locale/sk.json @@ -157,7 +157,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...", diff --git a/apps/presentationeditor/mobile/locale/sl.json b/apps/presentationeditor/mobile/locale/sl.json index a6531c874..ac341155d 100644 --- a/apps/presentationeditor/mobile/locale/sl.json +++ b/apps/presentationeditor/mobile/locale/sl.json @@ -157,7 +157,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...", diff --git a/apps/presentationeditor/mobile/locale/tr.json b/apps/presentationeditor/mobile/locale/tr.json index a6531c874..ac341155d 100644 --- a/apps/presentationeditor/mobile/locale/tr.json +++ b/apps/presentationeditor/mobile/locale/tr.json @@ -157,7 +157,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...", diff --git a/apps/presentationeditor/mobile/locale/uk.json b/apps/presentationeditor/mobile/locale/uk.json index a6531c874..ac341155d 100644 --- a/apps/presentationeditor/mobile/locale/uk.json +++ b/apps/presentationeditor/mobile/locale/uk.json @@ -157,7 +157,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...", diff --git a/apps/presentationeditor/mobile/locale/vi.json b/apps/presentationeditor/mobile/locale/vi.json index a6531c874..ac341155d 100644 --- a/apps/presentationeditor/mobile/locale/vi.json +++ b/apps/presentationeditor/mobile/locale/vi.json @@ -157,7 +157,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...", diff --git a/apps/presentationeditor/mobile/locale/zh.json b/apps/presentationeditor/mobile/locale/zh.json index fda1b5902..2fcd1109a 100644 --- a/apps/presentationeditor/mobile/locale/zh.json +++ b/apps/presentationeditor/mobile/locale/zh.json @@ -157,7 +157,8 @@ "unknownErrorText": "未知错误。", "uploadImageExtMessage": "未知图像格式。", "uploadImageFileCountMessage": "没有图片上传", - "uploadImageSizeMessage": "超过了最大图片大小" + "uploadImageSizeMessage": "超过了最大图片大小", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "数据加载中…", diff --git a/apps/presentationeditor/mobile/src/controller/Error.jsx b/apps/presentationeditor/mobile/src/controller/Error.jsx index 3012bb9d2..6fd24f0e2 100644 --- a/apps/presentationeditor/mobile/src/controller/Error.jsx +++ b/apps/presentationeditor/mobile/src/controller/Error.jsx @@ -28,7 +28,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(); @@ -164,6 +164,10 @@ const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocu config.msg = _t.errorUpdateVersionOnDisconnect; 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/locale/be.json b/apps/spreadsheeteditor/mobile/locale/be.json index ef09d406b..27de7317c 100644 --- a/apps/spreadsheeteditor/mobile/locale/be.json +++ b/apps/spreadsheeteditor/mobile/locale/be.json @@ -222,7 +222,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...", diff --git a/apps/spreadsheeteditor/mobile/locale/bg.json b/apps/spreadsheeteditor/mobile/locale/bg.json index ef09d406b..27de7317c 100644 --- a/apps/spreadsheeteditor/mobile/locale/bg.json +++ b/apps/spreadsheeteditor/mobile/locale/bg.json @@ -222,7 +222,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...", diff --git a/apps/spreadsheeteditor/mobile/locale/ca.json b/apps/spreadsheeteditor/mobile/locale/ca.json index f903a9adc..d2c82659e 100644 --- a/apps/spreadsheeteditor/mobile/locale/ca.json +++ b/apps/spreadsheeteditor/mobile/locale/ca.json @@ -222,7 +222,8 @@ "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." + "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...", diff --git a/apps/spreadsheeteditor/mobile/locale/cs.json b/apps/spreadsheeteditor/mobile/locale/cs.json index ef09d406b..27de7317c 100644 --- a/apps/spreadsheeteditor/mobile/locale/cs.json +++ b/apps/spreadsheeteditor/mobile/locale/cs.json @@ -222,7 +222,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...", diff --git a/apps/spreadsheeteditor/mobile/locale/de.json b/apps/spreadsheeteditor/mobile/locale/de.json index 6a8460e79..369e04597 100644 --- a/apps/spreadsheeteditor/mobile/locale/de.json +++ b/apps/spreadsheeteditor/mobile/locale/de.json @@ -222,7 +222,8 @@ "unknownErrorText": "Unbekannter Fehler.", "uploadImageExtMessage": "Unbekanntes Bildformat.", "uploadImageFileCountMessage": "Keine Bilder hochgeladen.", - "uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten." + "uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Daten werden geladen...", diff --git a/apps/spreadsheeteditor/mobile/locale/el.json b/apps/spreadsheeteditor/mobile/locale/el.json index ef09d406b..27de7317c 100644 --- a/apps/spreadsheeteditor/mobile/locale/el.json +++ b/apps/spreadsheeteditor/mobile/locale/el.json @@ -222,7 +222,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...", diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json index 07771d3b1..b3fec3b40 100644 --- a/apps/spreadsheeteditor/mobile/locale/en.json +++ b/apps/spreadsheeteditor/mobile/locale/en.json @@ -222,7 +222,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...", diff --git a/apps/spreadsheeteditor/mobile/locale/es.json b/apps/spreadsheeteditor/mobile/locale/es.json index 7dd51af50..7fa1bae3d 100644 --- a/apps/spreadsheeteditor/mobile/locale/es.json +++ b/apps/spreadsheeteditor/mobile/locale/es.json @@ -222,7 +222,8 @@ "unknownErrorText": "Error desconocido.", "uploadImageExtMessage": "Formato de imagen desconocido.", "uploadImageFileCountMessage": "No hay imágenes subidas.", - "uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB." + "uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Cargando datos...", diff --git a/apps/spreadsheeteditor/mobile/locale/fr.json b/apps/spreadsheeteditor/mobile/locale/fr.json index abd76be2d..3a2127433 100644 --- a/apps/spreadsheeteditor/mobile/locale/fr.json +++ b/apps/spreadsheeteditor/mobile/locale/fr.json @@ -222,7 +222,8 @@ "unknownErrorText": "Erreur inconnue.", "uploadImageExtMessage": "Format d'image inconnu.", "uploadImageFileCountMessage": "Aucune image chargée.", - "uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo." + "uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Chargement des données en cours...", diff --git a/apps/spreadsheeteditor/mobile/locale/hu.json b/apps/spreadsheeteditor/mobile/locale/hu.json index ef09d406b..27de7317c 100644 --- a/apps/spreadsheeteditor/mobile/locale/hu.json +++ b/apps/spreadsheeteditor/mobile/locale/hu.json @@ -222,7 +222,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...", diff --git a/apps/spreadsheeteditor/mobile/locale/it.json b/apps/spreadsheeteditor/mobile/locale/it.json index ef09d406b..27de7317c 100644 --- a/apps/spreadsheeteditor/mobile/locale/it.json +++ b/apps/spreadsheeteditor/mobile/locale/it.json @@ -222,7 +222,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...", diff --git a/apps/spreadsheeteditor/mobile/locale/ja.json b/apps/spreadsheeteditor/mobile/locale/ja.json index b52fca3ac..54ce6626e 100644 --- a/apps/spreadsheeteditor/mobile/locale/ja.json +++ b/apps/spreadsheeteditor/mobile/locale/ja.json @@ -222,7 +222,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": "データを読み込んでいます...", diff --git a/apps/spreadsheeteditor/mobile/locale/ko.json b/apps/spreadsheeteditor/mobile/locale/ko.json index ef09d406b..27de7317c 100644 --- a/apps/spreadsheeteditor/mobile/locale/ko.json +++ b/apps/spreadsheeteditor/mobile/locale/ko.json @@ -222,7 +222,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...", diff --git a/apps/spreadsheeteditor/mobile/locale/lo.json b/apps/spreadsheeteditor/mobile/locale/lo.json index ef09d406b..27de7317c 100644 --- a/apps/spreadsheeteditor/mobile/locale/lo.json +++ b/apps/spreadsheeteditor/mobile/locale/lo.json @@ -222,7 +222,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...", diff --git a/apps/spreadsheeteditor/mobile/locale/lv.json b/apps/spreadsheeteditor/mobile/locale/lv.json index ef09d406b..27de7317c 100644 --- a/apps/spreadsheeteditor/mobile/locale/lv.json +++ b/apps/spreadsheeteditor/mobile/locale/lv.json @@ -222,7 +222,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...", diff --git a/apps/spreadsheeteditor/mobile/locale/nb.json b/apps/spreadsheeteditor/mobile/locale/nb.json index ef09d406b..27de7317c 100644 --- a/apps/spreadsheeteditor/mobile/locale/nb.json +++ b/apps/spreadsheeteditor/mobile/locale/nb.json @@ -222,7 +222,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...", diff --git a/apps/spreadsheeteditor/mobile/locale/nl.json b/apps/spreadsheeteditor/mobile/locale/nl.json index 7cff015bf..8a50cc0b9 100644 --- a/apps/spreadsheeteditor/mobile/locale/nl.json +++ b/apps/spreadsheeteditor/mobile/locale/nl.json @@ -222,7 +222,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...", diff --git a/apps/spreadsheeteditor/mobile/locale/pl.json b/apps/spreadsheeteditor/mobile/locale/pl.json index ef09d406b..27de7317c 100644 --- a/apps/spreadsheeteditor/mobile/locale/pl.json +++ b/apps/spreadsheeteditor/mobile/locale/pl.json @@ -222,7 +222,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...", diff --git a/apps/spreadsheeteditor/mobile/locale/pt.json b/apps/spreadsheeteditor/mobile/locale/pt.json index a888af50f..532f66224 100644 --- a/apps/spreadsheeteditor/mobile/locale/pt.json +++ b/apps/spreadsheeteditor/mobile/locale/pt.json @@ -222,7 +222,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...", diff --git a/apps/spreadsheeteditor/mobile/locale/ro.json b/apps/spreadsheeteditor/mobile/locale/ro.json index 3ee38fe8e..3d753e747 100644 --- a/apps/spreadsheeteditor/mobile/locale/ro.json +++ b/apps/spreadsheeteditor/mobile/locale/ro.json @@ -222,7 +222,8 @@ "unknownErrorText": "Eroare necunoscută.", "uploadImageExtMessage": "Format de imagine nerecunoscut.", "uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.", - "uploadImageSizeMessage": "Imaginea este prea mare. Limita de dimensiune este de 25 MB." + "uploadImageSizeMessage": "Imaginea este prea mare. Limita de dimensiune este de 25 MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Încărcarea datelor...", diff --git a/apps/spreadsheeteditor/mobile/locale/ru.json b/apps/spreadsheeteditor/mobile/locale/ru.json index 5ee87a3d8..f70f80532 100644 --- a/apps/spreadsheeteditor/mobile/locale/ru.json +++ b/apps/spreadsheeteditor/mobile/locale/ru.json @@ -222,7 +222,8 @@ "unknownErrorText": "Неизвестная ошибка.", "uploadImageExtMessage": "Неизвестный формат рисунка.", "uploadImageFileCountMessage": "Ни одного рисунка не загружено.", - "uploadImageSizeMessage": "Слишком большой рисунок. Максимальный размер - 25 MB." + "uploadImageSizeMessage": "Слишком большой рисунок. Максимальный размер - 25 MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Загрузка данных...", diff --git a/apps/spreadsheeteditor/mobile/locale/sk.json b/apps/spreadsheeteditor/mobile/locale/sk.json index ef09d406b..27de7317c 100644 --- a/apps/spreadsheeteditor/mobile/locale/sk.json +++ b/apps/spreadsheeteditor/mobile/locale/sk.json @@ -222,7 +222,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...", diff --git a/apps/spreadsheeteditor/mobile/locale/sl.json b/apps/spreadsheeteditor/mobile/locale/sl.json index ef09d406b..27de7317c 100644 --- a/apps/spreadsheeteditor/mobile/locale/sl.json +++ b/apps/spreadsheeteditor/mobile/locale/sl.json @@ -222,7 +222,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...", diff --git a/apps/spreadsheeteditor/mobile/locale/tr.json b/apps/spreadsheeteditor/mobile/locale/tr.json index ef09d406b..27de7317c 100644 --- a/apps/spreadsheeteditor/mobile/locale/tr.json +++ b/apps/spreadsheeteditor/mobile/locale/tr.json @@ -222,7 +222,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...", diff --git a/apps/spreadsheeteditor/mobile/locale/uk.json b/apps/spreadsheeteditor/mobile/locale/uk.json index ef09d406b..27de7317c 100644 --- a/apps/spreadsheeteditor/mobile/locale/uk.json +++ b/apps/spreadsheeteditor/mobile/locale/uk.json @@ -222,7 +222,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...", diff --git a/apps/spreadsheeteditor/mobile/locale/vi.json b/apps/spreadsheeteditor/mobile/locale/vi.json index ef09d406b..27de7317c 100644 --- a/apps/spreadsheeteditor/mobile/locale/vi.json +++ b/apps/spreadsheeteditor/mobile/locale/vi.json @@ -222,7 +222,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...", diff --git a/apps/spreadsheeteditor/mobile/locale/zh.json b/apps/spreadsheeteditor/mobile/locale/zh.json index 871f1dd83..355dbdd09 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh.json +++ b/apps/spreadsheeteditor/mobile/locale/zh.json @@ -222,7 +222,8 @@ "unknownErrorText": "未知错误。", "uploadImageExtMessage": "未知图像格式。", "uploadImageFileCountMessage": "没有图片上传", - "uploadImageSizeMessage": "图片太大了。最大允许的大小是 25 MB." + "uploadImageSizeMessage": "图片太大了。最大允许的大小是 25 MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "数据加载中…", diff --git a/apps/spreadsheeteditor/mobile/src/controller/Error.jsx b/apps/spreadsheeteditor/mobile/src/controller/Error.jsx index 702300374..7a8a87ede 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(); @@ -303,6 +303,10 @@ const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocu config.msg = _t.errorUpdateVersionOnDisconnect; break; + case Asc.c_oAscError.ID.LoadingFontError: + config.msg = _t.errorLoadingFont; + break; + default: config.msg = _t.errorDefaultMessage.replace('%1', id); break; From 2b4855a407e3bc6b88843da588f4aaa07202990a Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 19 Aug 2021 22:03:44 +0300 Subject: [PATCH 64/90] [Embedded] For Bug 50233 --- apps/documenteditor/embed/js/ApplicationController.js | 7 ++++++- apps/documenteditor/embed/locale/en.json | 1 + apps/presentationeditor/embed/js/ApplicationController.js | 7 ++++++- apps/presentationeditor/embed/locale/en.json | 1 + apps/spreadsheeteditor/embed/js/ApplicationController.js | 7 ++++++- apps/spreadsheeteditor/embed/locale/en.json | 1 + 6 files changed, 21 insertions(+), 3 deletions(-) diff --git a/apps/documenteditor/embed/js/ApplicationController.js b/apps/documenteditor/embed/js/ApplicationController.js index 0a85351a0..098d2f2f1 100644 --- a/apps/documenteditor/embed/js/ApplicationController.js +++ b/apps/documenteditor/embed/js/ApplicationController.js @@ -742,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; @@ -927,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/en.json b/apps/documenteditor/embed/locale/en.json index ce0a6ba1e..d2593f321 100644 --- a/apps/documenteditor/embed/locale/en.json +++ b/apps/documenteditor/embed/locale/en.json @@ -36,6 +36,7 @@ "DE.ApplicationController.unknownErrorText": "Unknown error.", "DE.ApplicationController.unsupportedBrowserErrorText": "Your browser is not supported.", "DE.ApplicationController.waitText": "Please, wait...", + "DE.ApplicationController.errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "DE.ApplicationView.txtDownload": "Download", "DE.ApplicationView.txtDownloadDocx": "Download as docx", "DE.ApplicationView.txtDownloadPdf": "Download as pdf", diff --git a/apps/presentationeditor/embed/js/ApplicationController.js b/apps/presentationeditor/embed/js/ApplicationController.js index 421898910..d1f35d92f 100644 --- a/apps/presentationeditor/embed/js/ApplicationController.js +++ b/apps/presentationeditor/embed/js/ApplicationController.js @@ -573,6 +573,10 @@ PE.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; @@ -718,6 +722,7 @@ PE.ApplicationController = new(function(){ errorUpdateVersionOnDisconnect: 'Internet connection has been restored, and the file version has been changed.
Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.', textGuest: 'Guest', textAnonymous: 'Anonymous', - 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." + 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.", + errorLoadingFont: 'Fonts are not loaded.
Please contact your Document Server administrator.' } })(); diff --git a/apps/presentationeditor/embed/locale/en.json b/apps/presentationeditor/embed/locale/en.json index 21d4323fc..d81cf4eea 100644 --- a/apps/presentationeditor/embed/locale/en.json +++ b/apps/presentationeditor/embed/locale/en.json @@ -26,6 +26,7 @@ "PE.ApplicationController.unknownErrorText": "Unknown error.", "PE.ApplicationController.unsupportedBrowserErrorText": "Your browser is not supported.", "PE.ApplicationController.waitText": "Please, wait...", + "PE.ApplicationController.errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "PE.ApplicationView.txtDownload": "Download", "PE.ApplicationView.txtEmbed": "Embed", "PE.ApplicationView.txtFileLocation": "Open file location", diff --git a/apps/spreadsheeteditor/embed/js/ApplicationController.js b/apps/spreadsheeteditor/embed/js/ApplicationController.js index c2f7cec9a..87c5c17b5 100644 --- a/apps/spreadsheeteditor/embed/js/ApplicationController.js +++ b/apps/spreadsheeteditor/embed/js/ApplicationController.js @@ -486,6 +486,10 @@ SSE.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; @@ -669,6 +673,7 @@ SSE.ApplicationController = new(function(){ errorUpdateVersionOnDisconnect: 'Internet connection has been restored, and the file version has been changed.
Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.', textGuest: 'Guest', textAnonymous: 'Anonymous', - 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." + 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.", + errorLoadingFont: 'Fonts are not loaded.
Please contact your Document Server administrator.' } })(); \ No newline at end of file diff --git a/apps/spreadsheeteditor/embed/locale/en.json b/apps/spreadsheeteditor/embed/locale/en.json index 93eadaf48..234ea61e1 100644 --- a/apps/spreadsheeteditor/embed/locale/en.json +++ b/apps/spreadsheeteditor/embed/locale/en.json @@ -26,6 +26,7 @@ "SSE.ApplicationController.unknownErrorText": "Unknown error.", "SSE.ApplicationController.unsupportedBrowserErrorText": "Your browser is not supported.", "SSE.ApplicationController.waitText": "Please, wait...", + "SSE.ApplicationController.errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "SSE.ApplicationView.txtDownload": "Download", "SSE.ApplicationView.txtEmbed": "Embed", "SSE.ApplicationView.txtFileLocation": "Open file location", From 934d5f8f2ee18fc91a42b49007dc9f9bbfd7f4e4 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Thu, 19 Aug 2021 23:17:56 +0300 Subject: [PATCH 65/90] [DE] fix bug 51945 --- .../resources/img/toolbar/1.25x/huge/.css.handlebars | 9 ++++++--- .../resources/img/toolbar/1.75x/huge/.css.handlebars | 9 ++++++--- 2 files changed, 12 insertions(+), 6 deletions(-) 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/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}} From 43fee71a253c0ca7fd969afb7066149a8031cfe2 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Fri, 20 Aug 2021 01:04:54 +0300 Subject: [PATCH 66/90] [uithemes] fix bug 50448 --- apps/common/main/resources/less/buttons.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/common/main/resources/less/buttons.less b/apps/common/main/resources/less/buttons.less index c875354fc..f493ab265 100644 --- a/apps/common/main/resources/less/buttons.less +++ b/apps/common/main/resources/less/buttons.less @@ -687,8 +687,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; } From 2a0ae0db201ed28afdb97ce078a0879ea64493fa Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Fri, 20 Aug 2021 12:29:31 +0300 Subject: [PATCH 67/90] [DE PE SSE mobile] Fix Bug 51458 --- apps/common/mobile/resources/less/common-material.less | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/common/mobile/resources/less/common-material.less b/apps/common/mobile/resources/less/common-material.less index f299fe9ba..8156a640d 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 { From e11acfa61254d097b2f1d80c79c1dc661d41af35 Mon Sep 17 00:00:00 2001 From: evgenykatyshev Date: Fri, 20 Aug 2021 13:58:42 +0300 Subject: [PATCH 68/90] Border size sprites for Spreadsheets Add sprites for 125 and 175% Reduce sprite sizes --- .../main/resources/img/toolbar/BorderSize.png | Bin 214 -> 141 bytes .../resources/img/toolbar/BorderSize@1.25x.png | Bin 0 -> 163 bytes .../resources/img/toolbar/BorderSize@1.5x.png | Bin 207 -> 173 bytes .../resources/img/toolbar/BorderSize@1.75x.png | Bin 0 -> 264 bytes .../resources/img/toolbar/BorderSize@2x.png | Bin 234 -> 165 bytes 5 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize@1.25x.png create mode 100644 apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize@1.75x.png diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize.png b/apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize.png index 640f0a1b639d3f3eeecd6877ef2519bd6203ef4e..c22e666fb26ab3cc2bf79c473d0216658f9735eb 100644 GIT binary patch delta 123 zcmcb{*vmLUvV;K$SPuV>1yUiNE{-7;w~~MGGs>?x*1)*qgg`=zlf!|4qRoaZ5JL5ffB%D}J{QoDfaHS!Er|!ca|A+N6 te;wxKI5y!#v%(j~gAz_BXQaK9WC+hKEKzj2vkPb&gQu&X%Q~loCIAUuN-+Qc 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 0000000000000000000000000000000000000000..93960c60f9b96ca7ac1ddee6f16ddf3df74c9353 GIT binary patch literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^-V6+k!i+!$L)iRdnLvuEB*-tAfst{_-*rGANA4ds^vlbsVE&0&k!?>I0@yCk_ zjw~k&4WxL5EQGZs9y$gc;B!6Uv*AfbWK-mto@uHa&oUT|G)@aK{ODynu%hE#1ju$z LS3j3^P6{St5JDhIEXTROs~+T!eh0 zacAiZqc=8w4QVDF;ECNX9pH+|r30KXu3!W8QCq3UR5$8yg}I(h2gu{Yv^o-&x+ k=z>2Ibiow~Qm}OwKEIB2vtiGy@Bjb+07*qoM6N<$g1RC)1poj5 delta 165 zcmV;W09ya80nY)DGJl9kL_t(|+GF^S00)>Dkia12V1fbi!YGF!6agFtDi%gLCI~QK zu`tRJLVy8_g;5SmKjV`|%ZL1yEE5K>UKou9OBfo>3xlJLG*GRl(O6(_U_QY3fZ+o} z1)4JY#lmPT@G-^b#sWV-1ABXW1M}g-2Oemg7e>Q+#8d?U3QVVE T7?HZU00000NkvXXu0mjf8i7Ge 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 0000000000000000000000000000000000000000..adaadab324a6732c0d1696d14535a2fd8bbe09f6 GIT binary patch literal 264 zcmeAS@N?(olHy`uVBq!ia0vp^nG6h!jT|gM*7?`ruRxTii(^Q|t+#hK@-`a?I0PQ= zR+$Zg23(7Q$Ra$(akAN=Q8K`IR9W8bs1q2dL=XF6?2jpkpw7u8= zMtfK4^%v^9U8XxE*U5`!=`?2gU*apd$kE%hK5+0U~_khfVu=sUd8nP-b RH`jtBJYD@<);T3K0RXn;P(}a% literal 0 HcmV?d00001 diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize@2x.png b/apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize@2x.png index be0b87b627c748dd019cf88db89aaa5c68a0b0a7..b09a1e5d0bb35a4f2e79f421c6d40c4c0286ba9d 100644 GIT binary patch delta 148 zcmV;F0Bis10i^+u8Gir(005?d9)AD;0BlJ_K~#7F?bZPXfItw1;mIrj9i{`!{cp23 zC`5XqFudS@l0LBT%PxD!aD2~oKE|7R&>wbsr9b?mlm4*Ty2=?j>-?ZUzv-{8H~l${ zyX&5h`TyOY5xR%z&t~p_^yfGCKl;NBTlaoGJ^)QBr8!cd#tl9I0000%koTL7sbuGa;)j!gFE*- z-p_i;ul=|F|F;7oD{a~T9{m1q?WS2vb3(&j@C*L$uU=-q=F7gt`z_V;zgmCJx}IVL PbOD2>tDnm{r-UW|&ihv| From c3477a95449b53af4ec168338d25c1e604cacf9c Mon Sep 17 00:00:00 2001 From: evgenykatyshev Date: Fri, 20 Aug 2021 14:27:04 +0300 Subject: [PATCH 69/90] Fix sprites --- .../main/resources/img/toolbar/BorderSize.png | Bin 141 -> 155 bytes .../resources/img/toolbar/BorderSize@2x.png | Bin 165 -> 179 bytes 2 files changed, 0 insertions(+), 0 deletions(-) diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize.png b/apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize.png index c22e666fb26ab3cc2bf79c473d0216658f9735eb..ca643e2e7a261652eb87e11f5929ad3887599f58 100644 GIT binary patch delta 21 ccmeBWoXt2vg`24)$S;_Ik#Wl3brThH071hBvH$=8 delta 9 QcmbQu*vmLUWuj3g01rh23jhEB diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize@2x.png b/apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize@2x.png index b09a1e5d0bb35a4f2e79f421c6d40c4c0286ba9d..79a421a6f9c39dfdc1b92c141b664a5d6027f119 100644 GIT binary patch delta 21 dcmZ3=xS4T+3O7?pkY6wZBjc36>n19;002ds2KoR1 delta 9 QcmdnYxRh~%%0#0^01({+Qvd(} From e25c7171db3d12e83591815a70fd3d3a20756ca2 Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Fri, 20 Aug 2021 17:01:08 +0300 Subject: [PATCH 70/90] [SSE] Fix Bug 52060 --- .../spreadsheeteditor/mobile/src/less/icons-ios.less | 5 ++++- .../mobile/src/less/icons-material.less | 12 +++++++++++- apps/spreadsheeteditor/mobile/src/view/add/Add.jsx | 10 +++++++--- 3 files changed, 22 insertions(+), 5 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/src/less/icons-ios.less b/apps/spreadsheeteditor/mobile/src/less/icons-ios.less index 719610da7..9f308f240 100644 --- a/apps/spreadsheeteditor/mobile/src/less/icons-ios.less +++ b/apps/spreadsheeteditor/mobile/src/less/icons-ios.less @@ -126,7 +126,7 @@ &.icon-link { width: 22px; height: 22px; - .encoded-svg-background(''); + .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/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 }; From 3c660d468d78c0fdbfbf590771ec10544942edc2 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 20 Aug 2021 18:01:23 +0300 Subject: [PATCH 71/90] Update translation --- apps/documenteditor/embed/locale/ca.json | 37 +- apps/documenteditor/embed/locale/de.json | 4 + apps/documenteditor/embed/locale/en.json | 2 +- apps/documenteditor/embed/locale/fr.json | 1 + apps/documenteditor/embed/locale/it.json | 3 + apps/documenteditor/embed/locale/ro.json | 1 + apps/documenteditor/embed/locale/ru.json | 1 + apps/documenteditor/main/locale/ca.json | 1666 ++++---- apps/documenteditor/main/locale/de.json | 7 +- apps/documenteditor/main/locale/en.json | 12 +- apps/documenteditor/main/locale/fr.json | 15 +- apps/documenteditor/main/locale/ja.json | 12 +- apps/documenteditor/main/locale/ro.json | 5 + apps/documenteditor/main/locale/ru.json | 11 +- apps/presentationeditor/embed/locale/ca.json | 2 +- apps/presentationeditor/embed/locale/de.json | 2 + apps/presentationeditor/embed/locale/en.json | 2 +- apps/presentationeditor/embed/locale/fr.json | 1 + apps/presentationeditor/embed/locale/it.json | 1 + apps/presentationeditor/embed/locale/ro.json | 1 + apps/presentationeditor/embed/locale/ru.json | 1 + apps/presentationeditor/main/locale/ca.json | 128 +- apps/presentationeditor/main/locale/de.json | 3 +- apps/presentationeditor/main/locale/en.json | 4 +- apps/presentationeditor/main/locale/fr.json | 1 + apps/presentationeditor/main/locale/ja.json | 8 +- apps/presentationeditor/main/locale/ro.json | 1 + apps/presentationeditor/main/locale/ru.json | 3 +- apps/spreadsheeteditor/embed/locale/ca.json | 19 +- apps/spreadsheeteditor/embed/locale/de.json | 2 + apps/spreadsheeteditor/embed/locale/en.json | 2 +- apps/spreadsheeteditor/embed/locale/fr.json | 1 + apps/spreadsheeteditor/embed/locale/it.json | 1 + apps/spreadsheeteditor/embed/locale/ro.json | 1 + apps/spreadsheeteditor/embed/locale/ru.json | 1 + apps/spreadsheeteditor/main/locale/ca.json | 3898 +++++++++--------- apps/spreadsheeteditor/main/locale/de.json | 5 + apps/spreadsheeteditor/main/locale/en.json | 4 +- apps/spreadsheeteditor/main/locale/fr.json | 2 + apps/spreadsheeteditor/main/locale/it.json | 3 + apps/spreadsheeteditor/main/locale/ja.json | 12 +- apps/spreadsheeteditor/main/locale/ro.json | 2 + apps/spreadsheeteditor/main/locale/ru.json | 3 +- 43 files changed, 2976 insertions(+), 2915 deletions(-) diff --git a/apps/documenteditor/embed/locale/ca.json b/apps/documenteditor/embed/locale/ca.json index 09f46bead..6655d3459 100644 --- a/apps/documenteditor/embed/locale/ca.json +++ b/apps/documenteditor/embed/locale/ca.json @@ -1,44 +1,47 @@ { - "common.view.modals.txtCopy": "Copiar 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 l'enllaç", + "common.view.modals.txtShare": "Comparteix l'enllaç", "common.view.modals.txtWidth": "Amplada", "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": "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ó.
Poseu-vos en contacte amb el vostre administrador del servidor de documents.", + "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 mentre es treballava amb el document.
Utilitzeu l'opció \"Baixa com a ...\" per desar la còpia de seguretat del fitxer al disc dur del vostre ordinador.", + "DE.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 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": "S'està carregant el document", "DE.ApplicationController.textNext": "Camp següent", "DE.ApplicationController.textOf": "de", - "DE.ApplicationController.textRequired": "Ompliu tots els camps requerits per enviar el formulari.", - "DE.ApplicationController.textSubmit": "Enviar", + "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": "Tancar", + "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": "Espereu...", - "DE.ApplicationView.txtDownload": "Baixar", - "DE.ApplicationView.txtDownloadDocx": "Desar com a .docx", - "DE.ApplicationView.txtDownloadPdf": "Desar com a pdf", - "DE.ApplicationView.txtEmbed": "Incrustar", - "DE.ApplicationView.txtFileLocation": "Obrir la ubicació del fitxer", - "DE.ApplicationView.txtFullScreen": "Pantalla completa", - "DE.ApplicationView.txtPrint": "Imprimir", - "DE.ApplicationView.txtShare": "Compartir" + "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 d2593f321..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.", @@ -36,7 +37,6 @@ "DE.ApplicationController.unknownErrorText": "Unknown error.", "DE.ApplicationController.unsupportedBrowserErrorText": "Your browser is not supported.", "DE.ApplicationController.waitText": "Please, wait...", - "DE.ApplicationController.errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "DE.ApplicationView.txtDownload": "Download", "DE.ApplicationView.txtDownloadDocx": "Download as docx", "DE.ApplicationView.txtDownloadPdf": "Download as pdf", diff --git a/apps/documenteditor/embed/locale/fr.json b/apps/documenteditor/embed/locale/fr.json index 2d94b207c..c824ad31f 100644 --- a/apps/documenteditor/embed/locale/fr.json +++ b/apps/documenteditor/embed/locale/fr.json @@ -15,6 +15,7 @@ "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.", diff --git a/apps/documenteditor/embed/locale/it.json b/apps/documenteditor/embed/locale/it.json index 288d3065c..051e01331 100644 --- a/apps/documenteditor/embed/locale/it.json +++ b/apps/documenteditor/embed/locale/it.json @@ -14,6 +14,7 @@ "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.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 +31,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 9dccf677f..5ca9d3c10 100644 --- a/apps/documenteditor/embed/locale/ro.json +++ b/apps/documenteditor/embed/locale/ro.json @@ -15,6 +15,7 @@ "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ă.", diff --git a/apps/documenteditor/embed/locale/ru.json b/apps/documenteditor/embed/locale/ru.json index 1718980fe..daab5337f 100644 --- a/apps/documenteditor/embed/locale/ru.json +++ b/apps/documenteditor/embed/locale/ru.json @@ -15,6 +15,7 @@ "DE.ApplicationController.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.", "DE.ApplicationController.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.
Обратитесь к администратору Сервера документов для получения дополнительной информации.", "DE.ApplicationController.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.", + "DE.ApplicationController.errorLoadingFont": "Шрифты не загружены.
Пожалуйста, обратитесь к администратору Сервера документов.", "DE.ApplicationController.errorSubmit": "Не удалось отправить.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Подключение к Интернету было восстановлено, и версия файла изменилась.
Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.", "DE.ApplicationController.errorUserDrop": "В настоящий момент файл недоступен.", diff --git a/apps/documenteditor/main/locale/ca.json b/apps/documenteditor/main/locale/ca.json index 3c66af0e6..6644311f1 100644 --- a/apps/documenteditor/main/locale/ca.json +++ b/apps/documenteditor/main/locale/ca.json @@ -1,12 +1,12 @@ { "Common.Controllers.Chat.notcriticalErrorTitle": "Advertiment", - "Common.Controllers.Chat.textEnterMessage": "Introduïu el vostre missatge aquí", + "Common.Controllers.Chat.textEnterMessage": "Introdueix el teu missatge aquí", "Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anònim", - "Common.Controllers.ExternalDiagramEditor.textClose": "Tancar", + "Common.Controllers.ExternalDiagramEditor.textClose": "Tanca", "Common.Controllers.ExternalDiagramEditor.warningText": "L’objecte s'ha desactivat perquè un altre usuari ja el té obert.", "Common.Controllers.ExternalDiagramEditor.warningTitle": "Advertiment", "Common.Controllers.ExternalMergeEditor.textAnonymous": "Anònim", - "Common.Controllers.ExternalMergeEditor.textClose": "Tancar", + "Common.Controllers.ExternalMergeEditor.textClose": "Tanca", "Common.Controllers.ExternalMergeEditor.warningText": "L’objecte s'ha desactivat perquè un altre usuari ja el té obert.", "Common.Controllers.ExternalMergeEditor.warningTitle": "Advertiment", "Common.Controllers.History.notcriticalErrorTitle": "Advertiment", @@ -16,14 +16,14 @@ "Common.Controllers.ReviewChanges.textBaseline": "Línia de base", "Common.Controllers.ReviewChanges.textBold": "Negreta", "Common.Controllers.ReviewChanges.textBreakBefore": "Salt de pàgina anterior", - "Common.Controllers.ReviewChanges.textCaps": "Majúscules ", - "Common.Controllers.ReviewChanges.textCenter": "Centrar", + "Common.Controllers.ReviewChanges.textCaps": "Tot en majúscules", + "Common.Controllers.ReviewChanges.textCenter": "Alinea al centre", "Common.Controllers.ReviewChanges.textChar": "Nivell de caràcter", "Common.Controllers.ReviewChanges.textChart": "Gràfic", "Common.Controllers.ReviewChanges.textColor": "Color del tipus de lletra", - "Common.Controllers.ReviewChanges.textContextual": "No afegiu interval entre paràgrafs del mateix estil", + "Common.Controllers.ReviewChanges.textContextual": "No afegeixis cap interval entre paràgrafs del mateix estil", "Common.Controllers.ReviewChanges.textDeleted": "Suprimit:", - "Common.Controllers.ReviewChanges.textDStrikeout": "Doble ratllat", + "Common.Controllers.ReviewChanges.textDStrikeout": "Ratllat doble", "Common.Controllers.ReviewChanges.textEquation": "Equació", "Common.Controllers.ReviewChanges.textExact": "exacte", "Common.Controllers.ReviewChanges.textFirstLine": "Primera línia", @@ -35,34 +35,34 @@ "Common.Controllers.ReviewChanges.textIndentRight": "Sagnia a la dreta", "Common.Controllers.ReviewChanges.textInserted": "Inserit:", "Common.Controllers.ReviewChanges.textItalic": "Cursiva", - "Common.Controllers.ReviewChanges.textJustify": "Justificar", - "Common.Controllers.ReviewChanges.textKeepLines": "Conserveu les línies juntes", - "Common.Controllers.ReviewChanges.textKeepNext": "Conserveu amb el següent", - "Common.Controllers.ReviewChanges.textLeft": "Alineació a l'esquerra", + "Common.Controllers.ReviewChanges.textJustify": "Justifica", + "Common.Controllers.ReviewChanges.textKeepLines": "Conserva les línies juntes", + "Common.Controllers.ReviewChanges.textKeepNext": "Conserva amb el següent", + "Common.Controllers.ReviewChanges.textLeft": "Alinea a l'esquerra", "Common.Controllers.ReviewChanges.textLineSpacing": "Interlineat:", "Common.Controllers.ReviewChanges.textMultiple": "múltiple", "Common.Controllers.ReviewChanges.textNoBreakBefore": "Sense salt de pàgina anterior", - "Common.Controllers.ReviewChanges.textNoContextual": "Afegir un interval entre els paràgrafs del mateix estil", - "Common.Controllers.ReviewChanges.textNoKeepLines": "No mantingueu les línies unides", - "Common.Controllers.ReviewChanges.textNoKeepNext": "No continueu amb el següent", + "Common.Controllers.ReviewChanges.textNoContextual": "Afegeix un interval entre els paràgrafs del mateix estil", + "Common.Controllers.ReviewChanges.textNoKeepLines": "No mantinguis les línies juntes", + "Common.Controllers.ReviewChanges.textNoKeepNext": "No segueixis amb el següent", "Common.Controllers.ReviewChanges.textNot": "No", - "Common.Controllers.ReviewChanges.textNoWidow": "Sense control de la finestra", - "Common.Controllers.ReviewChanges.textNum": "Canviar la numeració", - "Common.Controllers.ReviewChanges.textOff": "{0} Ja no s'utilitza el seguiment de canvis.", - "Common.Controllers.ReviewChanges.textOffGlobal": "{0} S'ha desactivat el seguiment de canvis per a tothom.", - "Common.Controllers.ReviewChanges.textOn": "{0} està utilitzant ara el seguiment de canvis.", - "Common.Controllers.ReviewChanges.textOnGlobal": "{0} S'ha activat el seguiment de canvis per a tothom.", + "Common.Controllers.ReviewChanges.textNoWidow": "No hi ha control de finestra", + "Common.Controllers.ReviewChanges.textNum": "Canvia la numeració", + "Common.Controllers.ReviewChanges.textOff": "{0} Ja no s'utilitza el control de canvis.", + "Common.Controllers.ReviewChanges.textOffGlobal": "{0} S'ha inhabilitat el control de canvis per a tothom.", + "Common.Controllers.ReviewChanges.textOn": "{0}utilitza ara el control de canvis.", + "Common.Controllers.ReviewChanges.textOnGlobal": "{0} S'ha habilitat el control de canvis per a tothom.", "Common.Controllers.ReviewChanges.textParaDeleted": "Paràgraf suprimit", "Common.Controllers.ReviewChanges.textParaFormatted": "Paràgraf formatat", "Common.Controllers.ReviewChanges.textParaInserted": "Paràgraf inserit", "Common.Controllers.ReviewChanges.textParaMoveFromDown": "S'ha desplaçat cap avall:", "Common.Controllers.ReviewChanges.textParaMoveFromUp": "S'ha desplaçat cap amunt:", - "Common.Controllers.ReviewChanges.textParaMoveTo": "Desplaçat:", + "Common.Controllers.ReviewChanges.textParaMoveTo": "S'ha desplaçat:", "Common.Controllers.ReviewChanges.textPosition": "Posició", - "Common.Controllers.ReviewChanges.textRight": "Alineació a la dreta", + "Common.Controllers.ReviewChanges.textRight": "Alinea a la dreta", "Common.Controllers.ReviewChanges.textShape": "Forma", "Common.Controllers.ReviewChanges.textShd": "Color de fons", - "Common.Controllers.ReviewChanges.textShow": "Mostrar els canvis a", + "Common.Controllers.ReviewChanges.textShow": "Mostra els canvis a", "Common.Controllers.ReviewChanges.textSmallCaps": "Versaletes", "Common.Controllers.ReviewChanges.textSpacing": "Espaiat", "Common.Controllers.ReviewChanges.textSpacingAfter": "Espaiat posterior", @@ -73,10 +73,10 @@ "Common.Controllers.ReviewChanges.textTableChanged": "La configuració de la taula ha canviat", "Common.Controllers.ReviewChanges.textTableRowsAdd": "S'han afegit files a la taula", "Common.Controllers.ReviewChanges.textTableRowsDel": "S'han suprimit files de la taula", - "Common.Controllers.ReviewChanges.textTabs": "Canviar la tabulació", + "Common.Controllers.ReviewChanges.textTabs": "Canvia la tabulació", "Common.Controllers.ReviewChanges.textTitleComparison": "Configuració de comparació", - "Common.Controllers.ReviewChanges.textUnderline": "Subratllar", - "Common.Controllers.ReviewChanges.textUrl": "Enganxar la URL del document", + "Common.Controllers.ReviewChanges.textUnderline": "Subratllat", + "Common.Controllers.ReviewChanges.textUrl": "Enganxa la URL del document", "Common.Controllers.ReviewChanges.textWidow": "Control de finestra", "Common.Controllers.ReviewChanges.textWord": "Nivell de paraules", "Common.define.chartData.textArea": "Àrea", @@ -92,10 +92,10 @@ "Common.define.chartData.textBarStackedPer3d": "Columna 3D apilada al 100%", "Common.define.chartData.textCharts": "Gràfics", "Common.define.chartData.textColumn": "Columna", - "Common.define.chartData.textCombo": "Combinat", + "Common.define.chartData.textCombo": "Quadre combinat", "Common.define.chartData.textComboAreaBar": "Àrea apilada - columna agrupada", "Common.define.chartData.textComboBarLine": "Columna agrupada - línia", - "Common.define.chartData.textComboBarLineSecondary": " Columna agrupada - línia a l'eix secundari", + "Common.define.chartData.textComboBarLineSecondary": "Columna agrupada - línia a l'eix secundari", "Common.define.chartData.textComboCustom": "Combinació personalitzada", "Common.define.chartData.textDoughnut": "Gràfic d'anelles", "Common.define.chartData.textHBarNormal": "Barra agrupada", @@ -119,11 +119,11 @@ "Common.define.chartData.textScatterLineMarker": "Dispersió amb línies rectes i marcadors", "Common.define.chartData.textScatterSmooth": "Dispersió amb línies suaus", "Common.define.chartData.textScatterSmoothMarker": "Dispersió amb línies suaus i marcadors", - "Common.define.chartData.textStock": "Existències", + "Common.define.chartData.textStock": "Accions", "Common.define.chartData.textSurface": "Superfície", "Common.Translation.warnFileLocked": "No podeu editar aquest fitxer perquè és obert en una altra aplicació.", "Common.Translation.warnFileLockedBtnEdit": "Crea una còpia", - "Common.Translation.warnFileLockedBtnView": "Obrir per veure", + "Common.Translation.warnFileLockedBtnView": "Obre per a la seva visualització", "Common.UI.Calendar.textApril": "abril", "Common.UI.Calendar.textAugust": "agost", "Common.UI.Calendar.textDecember": "desembre", @@ -137,7 +137,7 @@ "Common.UI.Calendar.textNovember": "novembre", "Common.UI.Calendar.textOctober": "octubre", "Common.UI.Calendar.textSeptember": "setembre", - "Common.UI.Calendar.textShortApril": "Abr", + "Common.UI.Calendar.textShortApril": "abr", "Common.UI.Calendar.textShortAugust": "ago.", "Common.UI.Calendar.textShortDecember": "dec.", "Common.UI.Calendar.textShortFebruary": "feb.", @@ -147,7 +147,7 @@ "Common.UI.Calendar.textShortJune": "jun.", "Common.UI.Calendar.textShortMarch": "mar.", "Common.UI.Calendar.textShortMay": "maig", - "Common.UI.Calendar.textShortMonday": "dll.", + "Common.UI.Calendar.textShortMonday": "dl.", "Common.UI.Calendar.textShortNovember": "nov.", "Common.UI.Calendar.textShortOctober": "oct.", "Common.UI.Calendar.textShortSaturday": "ds.", @@ -158,39 +158,39 @@ "Common.UI.Calendar.textShortWednesday": "dc.", "Common.UI.Calendar.textYears": "Anys", "Common.UI.ColorButton.textAutoColor": "Automàtic", - "Common.UI.ColorButton.textNewColor": "Afegir un color nou personalitzat", + "Common.UI.ColorButton.textNewColor": "Afegeix un color personalitzat nou ", "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.ExtendedColorDialog.addButtonText": "Afegeix", "Common.UI.ExtendedColorDialog.textCurrent": "Actual", "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 no és correcte.
Introduïu un valor numèric entre 0 i 255.", "Common.UI.HSBColorPicker.textNoColor": "Sense color", - "Common.UI.SearchDialog.textHighlight": "Ressaltar els resultats", + "Common.UI.SearchDialog.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": "Cercar i substituir", - "Common.UI.SearchDialog.textTitle2": "Cercar", + "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": "Amagar substituir", - "Common.UI.SearchDialog.txtBtnReplace": "Substituir", - "Common.UI.SearchDialog.txtBtnReplaceAll": "Substituir-ho tot ", - "Common.UI.SynchronizeTip.textDontShow": "No torneu 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.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 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": "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": "Advertiment", @@ -204,131 +204,131 @@ "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.textApplyText": "Apliqueu mentre escriviu", + "Common.Views.AutoCorrectDialog.textAdd": "Afegeix", + "Common.Views.AutoCorrectDialog.textApplyText": "Aplica-ho a mesura que escric", "Common.Views.AutoCorrectDialog.textAutoCorrect": "Correcció automàtica", - "Common.Views.AutoCorrectDialog.textAutoFormat": "Format automàtic a mesura que escriviu", + "Common.Views.AutoCorrectDialog.textAutoFormat": "Format automàtic a mesura que escric", "Common.Views.AutoCorrectDialog.textBulleted": "Llistes automàtiques de pics", "Common.Views.AutoCorrectDialog.textBy": "Per", - "Common.Views.AutoCorrectDialog.textDelete": "Suprimir", - "Common.Views.AutoCorrectDialog.textFLSentence": "Posa en majúscules la primera lletra de les frases", + "Common.Views.AutoCorrectDialog.textDelete": "Suprimeix", + "Common.Views.AutoCorrectDialog.textFLSentence": "Escriu en majúscules la primera lletra de les frases", "Common.Views.AutoCorrectDialog.textHyphens": "Guionets (--) per guió llarg (—)", "Common.Views.AutoCorrectDialog.textMathCorrect": "Autocorrecció de símbols matemàtics", "Common.Views.AutoCorrectDialog.textNumbered": "Llistes numerades automàtiques", "Common.Views.AutoCorrectDialog.textQuotes": "\"Cometes rectes\" amb \"cometes tipogràfiques\"", "Common.Views.AutoCorrectDialog.textRecognized": "Funcions reconegudes", "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Les expressions següents són expressions matemàtiques reconegudes. No es posaran automàticament en cursiva.", - "Common.Views.AutoCorrectDialog.textReplace": "Substituir", - "Common.Views.AutoCorrectDialog.textReplaceText": "Substituir mentre s'escriu", - "Common.Views.AutoCorrectDialog.textReplaceType": "Substituïu el text mentre escriviu", - "Common.Views.AutoCorrectDialog.textReset": "Restablir", - "Common.Views.AutoCorrectDialog.textResetAll": "Restablir els valors predeterminats", - "Common.Views.AutoCorrectDialog.textRestore": "Restaurar", + "Common.Views.AutoCorrectDialog.textReplace": "Substitueix", + "Common.Views.AutoCorrectDialog.textReplaceText": "Substitueix a mesura que escric", + "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. 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.warnReset": "Qualsevol autocorrecció que hàgiu afegit se suprimirà i les modificades recuperaran els seus valors originals. Voleu continuar?", "Common.Views.AutoCorrectDialog.warnRestore": "L'entrada de correcció automàtica de %1 es restablirà al seu valor original. Voleu continuar?", - "Common.Views.Chat.textSend": "Enviar", - "Common.Views.Comments.textAdd": "Afegir", - "Common.Views.Comments.textAddComment": "Afegir comentari", - "Common.Views.Comments.textAddCommentToDoc": "Afegir comentari al document", - "Common.Views.Comments.textAddReply": "Afegir una 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": "D'acord", - "Common.Views.Comments.textEnterCommentHint": "Introduïu el vostre comentari aquí", - "Common.Views.Comments.textHintAddComment": "Afegir comentari", - "Common.Views.Comments.textOpenAgain": "Torneu-ho a obrir", - "Common.Views.Comments.textReply": "Respondre", - "Common.Views.Comments.textResolve": "Resoldre", + "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": "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 copiar, tallar i enganxar", - "Common.Views.CopyWarningDialog.textToCopy": "Per a copiar", - "Common.Views.CopyWarningDialog.textToCut": "Per a tallar", - "Common.Views.CopyWarningDialog.textToPaste": "Per a enganxar", + "Common.Views.CopyWarningDialog.textDontShow": "No tornis a mostrar aquest missatge", + "Common.Views.CopyWarningDialog.textMsg": "Les accions de copia, talla i enganxa 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.ExternalDiagramEditor.textClose": "Tancar", - "Common.Views.ExternalDiagramEditor.textSave": "Desar i sortir", + "Common.Views.DocumentAccessDialog.textTitle": "Configuració per compartir", + "Common.Views.ExternalDiagramEditor.textClose": "Tanca", + "Common.Views.ExternalDiagramEditor.textSave": "Desa i surt", "Common.Views.ExternalDiagramEditor.textTitle": "Editor de gràfics", - "Common.Views.ExternalMergeEditor.textClose": "Tancar", - "Common.Views.ExternalMergeEditor.textSave": "Desar i sortir", - "Common.Views.ExternalMergeEditor.textTitle": "Destinataris de combinació de la correspondència", + "Common.Views.ExternalMergeEditor.textClose": "Tanca", + "Common.Views.ExternalMergeEditor.textSave": "Desa i surt", + "Common.Views.ExternalMergeEditor.textTitle": "Destinataris de la combinació de la correspondència", "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 la ubicació del fitxer", - "Common.Views.Header.textCompactView": "Amagar la barra d'eines", - "Common.Views.Header.textHideLines": "Amagar els regles", - "Common.Views.Header.textHideStatusBar": "Amagar la barra d'estat", - "Common.Views.Header.textRemoveFavorite": "Suprimir de favorits", - "Common.Views.Header.textZoom": "Ampliar", - "Common.Views.Header.tipAccessRights": "Gestioneu els drets d’accés al document", - "Common.Views.Header.tipDownload": "Baixar fitxer", - "Common.Views.Header.tipGoEdit": "Editar el fitxer actual", - "Common.Views.Header.tipPrint": "Imprimir fitxer", - "Common.Views.Header.tipRedo": "Refer", - "Common.Views.Header.tipSave": "Desar", - "Common.Views.Header.tipUndo": "Desfer", - "Common.Views.Header.tipViewSettings": "Mostra la configuració", - "Common.Views.Header.tipViewUsers": "Mostra els usuaris i gestiona els drets d’accés als documents", - "Common.Views.Header.txtAccessRights": "Canviar els drets d’accés", - "Common.Views.Header.txtRename": "Canviar el nom", - "Common.Views.History.textCloseHistory": "Tancar l'historial", - "Common.Views.History.textHide": "Reduir", - "Common.Views.History.textHideAll": "Amagar els canvis detallats", - "Common.Views.History.textRestore": "Restaurar", - "Common.Views.History.textShow": "Desplegar", - "Common.Views.History.textShowAll": "Mostrar els canvis al detall", + "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.textZoom": "Zoom", + "Common.Views.Header.tipAccessRights": "Gestiona els drets d’accés al document", + "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.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.History.textCloseHistory": "Tanca l'historial", + "Common.Views.History.textHide": "Redueix", + "Common.Views.History.textHideAll": "Amaga els canvis detallats", + "Common.Views.History.textRestore": "Restaura", + "Common.Views.History.textShow": "Expandeix", + "Common.Views.History.textShowAll": "Mostra els canvis al detall", "Common.Views.History.textVer": "ver.", - "Common.Views.ImageFromUrlDialog.textUrl": "Enganxar una URL d'imatge:", - "Common.Views.ImageFromUrlDialog.txtEmpty": "Aquest camp és obligatori", - "Common.Views.ImageFromUrlDialog.txtNotUrl": "Aquest camp hauria de ser un enllaç amb el format \"http://www.example.com\"", + "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.InsertTableDialog.textInvalidRowsCols": "Cal especificar el recompte de files i columnes vàlides.", "Common.Views.InsertTableDialog.txtColumns": "Número de columnes", - "Common.Views.InsertTableDialog.txtMaxText": "El valor màxim per a aquest camp és {0}.", - "Common.Views.InsertTableDialog.txtMinText": "El valor mínim per aquest camp és {0}.", + "Common.Views.InsertTableDialog.txtMaxText": "El valor màxim per a aquest camp és{0}.", + "Common.Views.InsertTableDialog.txtMinText": "El valor mínim per aquest camp és{0}.", "Common.Views.InsertTableDialog.txtRows": "Número de files", "Common.Views.InsertTableDialog.txtTitle": "Mida de la taula", - "Common.Views.InsertTableDialog.txtTitleSplit": "Dividir cel·la", - "Common.Views.LanguageDialog.labelSelect": "Seleccionar l'idioma de document", - "Common.Views.OpenDialog.closeButtonText": "Tancar el fitxer", + "Common.Views.InsertTableDialog.txtTitleSplit": "Divideix la cel·la", + "Common.Views.LanguageDialog.labelSelect": "Selecciona l'idioma de document", + "Common.Views.OpenDialog.closeButtonText": "Tanca el fitxer", "Common.Views.OpenDialog.txtEncoding": "Codificació", "Common.Views.OpenDialog.txtIncorrectPwd": "La contrasenya no és correcta.", - "Common.Views.OpenDialog.txtOpenFile": "Introduïu una contrasenya per obrir el fitxer", + "Common.Views.OpenDialog.txtOpenFile": "Introdueix una contrasenya per obrir el fitxer", "Common.Views.OpenDialog.txtPassword": "Contrasenya", "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.txtTitle": "Trieu les opcions de %1", - "Common.Views.OpenDialog.txtTitleProtected": "Fitxer protegit", - "Common.Views.PasswordDialog.txtDescription": "Establir una contrasenya per protegir aquest document", + "Common.Views.OpenDialog.txtTitle": "Tria les 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": "Repetiu la contrasenya", - "Common.Views.PasswordDialog.txtTitle": "Establir la contrasenya", + "Common.Views.PasswordDialog.txtRepeat": "Repeteix la contrasenya", + "Common.Views.PasswordDialog.txtTitle": "Estableix 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çar", - "Common.Views.Plugins.textStop": "Aturar", - "Common.Views.Protection.hintAddPwd": "Encriptar amb contrasenya", - "Common.Views.Protection.hintPwd": "Canviar o suprimir la 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.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": "Encriptar", - "Common.Views.Protection.txtInvisibleSignature": "Afegir signatura digital", + "Common.Views.Protection.txtEncrypt": "Xifra", + "Common.Views.Protection.txtInvisibleSignature": "Afegeix una signatura digital", "Common.Views.Protection.txtSignature": "Signatura", - "Common.Views.Protection.txtSignatureLine": "Afegir línia de 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 canvi següent", @@ -340,42 +340,42 @@ "Common.Views.ReviewChanges.strFast": "Ràpid", "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": "Utilitzeu el botó \"Desar\" per sincronitzar els canvis que vostè i altres feu.", - "Common.Views.ReviewChanges.textEnable": "Habilitar", + "Common.Views.ReviewChanges.strStrictDesc": "Fes servir el botó \"Desar\" per sincronitzar els canvis que tu i els altres feu.", + "Common.Views.ReviewChanges.textEnable": "Habilita", "Common.Views.ReviewChanges.textWarnTrackChanges": "S'activarà el control de canvis per a tots els usuaris amb accés total. La pròxima vegada que algú obri el document, el control de canvis seguirà activat.", - "Common.Views.ReviewChanges.textWarnTrackChangesTitle": "Voleu habilitar el seguiment de canvis per a tothom?", - "Common.Views.ReviewChanges.tipAcceptCurrent": "Acceptar el canvi actual", - "Common.Views.ReviewChanges.tipCoAuthMode": "Establir el mode de coedició", - "Common.Views.ReviewChanges.tipCommentRem": "Suprimir els comentaris", - "Common.Views.ReviewChanges.tipCommentRemCurrent": "Suprimir els comentaris actuals", - "Common.Views.ReviewChanges.tipCommentResolve": "Resoldre els comentaris", - "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Resoldre els comentaris actuals", - "Common.Views.ReviewChanges.tipCompare": "Comparar el document actual amb un altre", - "Common.Views.ReviewChanges.tipHistory": "Mostrar l'historial de versions", - "Common.Views.ReviewChanges.tipRejectCurrent": "Rebutjar el canvi actual", - "Common.Views.ReviewChanges.tipReview": "Control de Canvis", - "Common.Views.ReviewChanges.tipReviewView": "Seleccioneu la manera que voleu que es mostrin els canvis", - "Common.Views.ReviewChanges.tipSetDocLang": "Establir l’idioma del document", + "Common.Views.ReviewChanges.textWarnTrackChangesTitle": "Vols habilitar el control de canvis per a tothom?", + "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.tipCompare": "Compara el document actual amb un altre", + "Common.Views.ReviewChanges.tipHistory": "Mostra l'historial de versions", + "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": "Gestioneu 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 els canvis", - "Common.Views.ReviewChanges.txtAcceptCurrent": "Acceptar el canvi actual", + "Common.Views.ReviewChanges.tipSharing": "Gestiona els drets d’accés al document", + "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": "Tancar", + "Common.Views.ReviewChanges.txtClose": "Tanca", "Common.Views.ReviewChanges.txtCoAuthMode": "Mode de coedició", - "Common.Views.ReviewChanges.txtCommentRemAll": "Suprimir tots els comentaris", - "Common.Views.ReviewChanges.txtCommentRemCurrent": "Suprimir els comentaris actuals", - "Common.Views.ReviewChanges.txtCommentRemMy": "Suprimir els meus comentaris", - "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Suprimir els meus comentaris actuals", - "Common.Views.ReviewChanges.txtCommentRemove": "Suprimir", - "Common.Views.ReviewChanges.txtCommentResolve": "Resoldre", - "Common.Views.ReviewChanges.txtCommentResolveAll": "Resoldre tots els comentaris", - "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Resoldre els comentaris actuals", - "Common.Views.ReviewChanges.txtCommentResolveMy": "Resoldre els meus comentaris", - "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Resoldre els meus comentaris actuals", - "Common.Views.ReviewChanges.txtCompare": "Comparar", + "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": "Resol", + "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.txtCompare": "Compara", "Common.Views.ReviewChanges.txtDocLang": "Idioma", "Common.Views.ReviewChanges.txtFinal": "S'han acceptat tots el canvis (Previsualitzar)", "Common.Views.ReviewChanges.txtFinalCap": "Final", @@ -385,69 +385,69 @@ "Common.Views.ReviewChanges.txtNext": "Següent", "Common.Views.ReviewChanges.txtOff": "DESACTIVAT per a mi", "Common.Views.ReviewChanges.txtOffGlobal": "DESACTIVAT per a mi i per a tothom", - "Common.Views.ReviewChanges.txtOn": "ACTIU per a mi", - "Common.Views.ReviewChanges.txtOnGlobal": "ACTIU per a mi i per a tothom", + "Common.Views.ReviewChanges.txtOn": "ACTIVAT per a mi", + "Common.Views.ReviewChanges.txtOnGlobal": "ACTIVAT per a mi i per a tothom", "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 els canvis", - "Common.Views.ReviewChanges.txtRejectCurrent": "Rebutjar el canvi actual", - "Common.Views.ReviewChanges.txtSharing": "Compartir", + "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.txtTurnon": "Control de canvis", "Common.Views.ReviewChanges.txtView": "Mode de visualització", - "Common.Views.ReviewChangesDialog.textTitle": "Revisar els canvis", - "Common.Views.ReviewChangesDialog.txtAccept": "Acceptar", - "Common.Views.ReviewChangesDialog.txtAcceptAll": "Acceptar tots els canvis", - "Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Acceptar el canvi actual", + "Common.Views.ReviewChangesDialog.textTitle": "Revisa els canvis", + "Common.Views.ReviewChangesDialog.txtAccept": "Accepta ", + "Common.Views.ReviewChangesDialog.txtAcceptAll": "Accepta tots els canvis", + "Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Accepta el canvi actual", "Common.Views.ReviewChangesDialog.txtNext": "Al canvi següent", "Common.Views.ReviewChangesDialog.txtPrev": "Al canvi anterior", - "Common.Views.ReviewChangesDialog.txtReject": "Rebutjar", - "Common.Views.ReviewChangesDialog.txtRejectAll": "Rebutjar tots els canvis", - "Common.Views.ReviewChangesDialog.txtRejectCurrent": "Rebutjar el canvi actual", - "Common.Views.ReviewPopover.textAdd": "Afegir", - "Common.Views.ReviewPopover.textAddReply": "Afegir una resposta", - "Common.Views.ReviewPopover.textCancel": "Cancel·lar", - "Common.Views.ReviewPopover.textClose": "Tancar", + "Common.Views.ReviewChangesDialog.txtReject": "Rebutja", + "Common.Views.ReviewChangesDialog.txtRejectAll": "Rebutja tots els canvis", + "Common.Views.ReviewChangesDialog.txtRejectCurrent": "Rebutja el canvi actual", + "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.textFollowMove": "Seguir el moviment", - "Common.Views.ReviewPopover.textMention": "+mention proporcionarà accés al document i enviarà un correu electrònic", - "Common.Views.ReviewPopover.textMentionNotify": "+mention notificarà a l'usuari per correu electrònic", - "Common.Views.ReviewPopover.textOpenAgain": "Torneu-ho a obrir", - "Common.Views.ReviewPopover.textReply": "Respondre", - "Common.Views.ReviewPopover.textResolve": "Resoldre", + "Common.Views.ReviewPopover.textFollowMove": "Segueix el moviment", + "Common.Views.ReviewPopover.textMention": "+menció proporcionarà accés al document i enviarà un correu electrònic", + "Common.Views.ReviewPopover.textMentionNotify": "+menció notificarà a l'usuari per correu electrònic", + "Common.Views.ReviewPopover.textOpenAgain": "Torna-ho a obrir", + "Common.Views.ReviewPopover.textReply": "Respon", + "Common.Views.ReviewPopover.textResolve": "Resol", "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": "Seleccionar l'origen de les dades", + "Common.Views.SelectFileDlg.textTitle": "Selecciona l'origen de les dades", "Common.Views.SignDialog.textBold": "Negreta", - "Common.Views.SignDialog.textCertificate": "Certificar", - "Common.Views.SignDialog.textChange": "Canviar", - "Common.Views.SignDialog.textInputName": "Introduiu el nom del signant", + "Common.Views.SignDialog.textCertificate": "Certifica", + "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 es pot quedar en blanc.", - "Common.Views.SignDialog.textPurpose": "Finalitat de signar aquest document", - "Common.Views.SignDialog.textSelect": "Seleccionar", - "Common.Views.SignDialog.textSelectImage": "Seleccionar imatge", + "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": "Signar el document", - "Common.Views.SignDialog.textUseImage": "o cliqueu a \"Selecciona imatge\" per utilitzar una imatge com a signatura", + "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 del tipus de lletra", "Common.Views.SignDialog.tipFontSize": "Mida del tipus de lletra", - "Common.Views.SignSettingsDialog.textAllowComment": "Permetre al signant afegir comentaris al quadre de diàleg de signatura", + "Common.Views.SignSettingsDialog.textAllowComment": "Permet al signant afegir comentaris al diàleg de signatura", "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 del signant", "Common.Views.SignSettingsDialog.textInstructions": "Instruccions per al signant", - "Common.Views.SignSettingsDialog.textShowDate": "Mostrar la data de la signatura a la línia de signatura", + "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 obligatori", + "Common.Views.SignSettingsDialog.txtEmpty": "Aquest camp és necessari", "Common.Views.SymbolTableDialog.textCharacter": "Caràcter", - "Common.Views.SymbolTableDialog.textCode": "Valor HEX Unicode", + "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", @@ -491,7 +491,7 @@ "DE.Controllers.Main.applyChangesTextText": "S'estan carregant els canvis...", "DE.Controllers.Main.applyChangesTitleText": "S'estan carregant els canvis", "DE.Controllers.Main.convertationTimeoutText": "S'ha superat el temps de conversió.", - "DE.Controllers.Main.criticalErrorExtText": "Premeu \"Acceptar\" per tornar al document.", + "DE.Controllers.Main.criticalErrorExtText": "Prem \"Acceptar\" per tornar a la llista de documents.", "DE.Controllers.Main.criticalErrorTitle": "Error", "DE.Controllers.Main.downloadErrorText": "S'ha produït un error en la baixada", "DE.Controllers.Main.downloadMergeText": "S'està baixant...", @@ -499,9 +499,9 @@ "DE.Controllers.Main.downloadTextText": "S'està baixant el document...", "DE.Controllers.Main.downloadTitleText": "S'està baixant el document", "DE.Controllers.Main.errorAccessDeny": "No teniu permisos per realitzar aquesta acció.
Contacteu amb el vostre administrador del servidor de documents.", - "DE.Controllers.Main.errorBadImageUrl": "L'URL de la imatge no és correcte", + "DE.Controllers.Main.errorBadImageUrl": "L'URL de la imatge no és correcta", "DE.Controllers.Main.errorCoAuthoringDisconnect": "S'ha perdut la connexió amb el servidor. Ara no es pot editar el document.", - "DE.Controllers.Main.errorComboSeries": "Per crear un diagrama combinat, seleccioneu pel cap baix dues sèries de dades.", + "DE.Controllers.Main.errorComboSeries": "Per crear un diagrama combinat, seleccioneu com a mínim dues sèries de dades.", "DE.Controllers.Main.errorCompare": "La funció de comparació de documents no està disponible durant la coedició.", "DE.Controllers.Main.errorConnectToServer": "No s'ha pogut desar el document. Comproveu la configuració de la connexió o contacteu amb el vostre administrador.
Quan cliqueu el botó \"D'acord\", se us demanarà que descarregueu el document.", "DE.Controllers.Main.errorDatabaseConnection": "Error extern.
Error de connexió amb la base de dades. Contacteu amb l'assistència tècnica en cas que l'error continuï.", @@ -509,12 +509,12 @@ "DE.Controllers.Main.errorDataRange": "L'interval de dades no és correcte.", "DE.Controllers.Main.errorDefaultMessage": "Codi d'error:%1", "DE.Controllers.Main.errorDirectUrl": "Verifiqueu l'enllaç al document.
Aquest enllaç ha de ser un enllaç directe al fitxer per descarregar-lo.", - "DE.Controllers.Main.errorEditingDownloadas": "S'ha produït un error mentre es treballava amb el document.
Utilitzeu l'opció \"Baixa com a ...\" per desar la còpia de seguretat del fitxer al disc dur del vostre ordinador.", + "DE.Controllers.Main.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.Controllers.Main.errorEditingSaveas": "S'ha produït un error mentre es treballava amb el treball amb el document.
Utilitzeu l'opció \"Desar com a ...\" per desar la còpia de seguretat del fitxer al disc dur de l’ordinador.", "DE.Controllers.Main.errorEmailClient": "No s'ha trobat cap client de correu electrònic", "DE.Controllers.Main.errorFilePassProtect": "El fitxer està protegit amb contrasenya i no es pot obrir.", "DE.Controllers.Main.errorFileSizeExceed": "La mida del fitxer supera el límit establert pel vostre servidor. Contacteu amb el vostre administrador del servidor de documents per obtenir més informació.", - "DE.Controllers.Main.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitzeu l'opció \"Baixa com a\" per desar el fitxer al disc dur de l’ordinador o torneu-ho a provar més endavant.", + "DE.Controllers.Main.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.Controllers.Main.errorKeyEncrypt": "Descriptor de claus desconegut", "DE.Controllers.Main.errorKeyExpire": "El descriptor de claus ha caducat", "DE.Controllers.Main.errorMailMergeLoadFile": "No s'ha pogut carregar el document. Seleccioneu un fitxer diferent.", @@ -533,7 +533,7 @@ "DE.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.", "DE.Controllers.Main.errorUserDrop": "Ara no es pot accedir al fitxer.", "DE.Controllers.Main.errorUsersExceed": "S'ha superat el nombre d’usuaris que permet el vostre pla", - "DE.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 re-carregar la pàgina.", + "DE.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.", "DE.Controllers.Main.leavePageText": "Heu fet canvis en aquest document que no s'han desat. Cliqueu a \"Continuar en aquesta pàgina\" i, a continuació, \"Desar\" per desar-les. Cliqueu a \"Deixar aquesta pàgina\" per descartar tots els canvis que no s'hagin desat.", "DE.Controllers.Main.leavePageTextOnClose": "Els canvis d'aquest document que no s'hagin desat es perdran.
Cliqueu a \"Cancel·lar\" i, a continuació, \"Desar\" per desar-los. Cliqueu a \"OK\" per descartar tots els canvis no desats.", "DE.Controllers.Main.loadFontsTextText": "S'estant carregant les dades...", @@ -554,7 +554,7 @@ "DE.Controllers.Main.openTitleText": "S'està obrint el document", "DE.Controllers.Main.printTextText": "S'està imprimint el document...", "DE.Controllers.Main.printTitleText": "S'està imprimint el document", - "DE.Controllers.Main.reloadButtonText": "Recarregar la pàgina", + "DE.Controllers.Main.reloadButtonText": "Recarrega la pàgina", "DE.Controllers.Main.requestEditFailedMessageText": "Algú té obert ara aquest document. Intenteu-ho més tard.", "DE.Controllers.Main.requestEditFailedTitleText": "Accés denegat", "DE.Controllers.Main.saveErrorText": "S'ha produït un error en desar el fitxer.", @@ -570,28 +570,28 @@ "DE.Controllers.Main.splitMaxColsErrorText": "El nombre de columnes ha de ser inferior a %1.", "DE.Controllers.Main.splitMaxRowsErrorText": "El nombre de files ha de ser inferior a %1.", "DE.Controllers.Main.textAnonymous": "Anònim", - "DE.Controllers.Main.textApplyAll": "Aplicar a totes les equacions", + "DE.Controllers.Main.textApplyAll": "Aplica-ho a totes les equacions", "DE.Controllers.Main.textBuyNow": "Visitar el lloc web", "DE.Controllers.Main.textChangesSaved": "S'han desat tots els canvis", - "DE.Controllers.Main.textClose": "Tancar", - "DE.Controllers.Main.textCloseTip": "Cliqueu per tancar el consell", - "DE.Controllers.Main.textContactUs": "Contacteu amb vendes", + "DE.Controllers.Main.textClose": "Tanca", + "DE.Controllers.Main.textCloseTip": "Clica per tancar el consell", + "DE.Controllers.Main.textContactUs": "Contacta amb vendes", "DE.Controllers.Main.textConvertEquation": "Aquesta equació es va crear amb una versió antiga de l'editor d'equacions que ja no és compatible. Per editar-la, converteixi l’equació al format d’Office Math ML.
Convertir ara?", - "DE.Controllers.Main.textCustomLoader": "Tingueu en compte que, segons els termes de la llicència, no teniu dret per canviar el carregador.
Consulteu el nostre departament de vendes per obtenir un pressupost.", + "DE.Controllers.Main.textCustomLoader": "Tingueu en compte que, segons els termes de la llicència, no teniu dret a canviar el carregador.
Contacteu amb el nostre departament de vendes per obtenir un pressupost.", "DE.Controllers.Main.textGuest": "Convidat", "DE.Controllers.Main.textHasMacros": "El fitxer conté macros automàtiques.
Voleu executar les macros?", "DE.Controllers.Main.textLearnMore": "Més informació", "DE.Controllers.Main.textLoadingDocument": "S'està carregant el document", - "DE.Controllers.Main.textLongName": "Introduïu un nom que sigui inferior a 128 caràcters.", + "DE.Controllers.Main.textLongName": "Introdueix un nom que tingui menys de 128 caràcters.", "DE.Controllers.Main.textNoLicenseTitle": "S'ha assolit el límit de llicència", "DE.Controllers.Main.textPaidFeature": "Funció de pagament", - "DE.Controllers.Main.textRemember": "Recordar la meva elecció per a tots els fitxers", + "DE.Controllers.Main.textRemember": "Recorda la meva elecció per a tots els fitxers", "DE.Controllers.Main.textRenameError": "El nom d'usuari no pot estar buit.", - "DE.Controllers.Main.textRenameLabel": "Introduïu un nom que s'utilitzarà per a la col·laboració", + "DE.Controllers.Main.textRenameLabel": "Introdueix un nom que s'utilitzarà per a la col·laboració", "DE.Controllers.Main.textShape": "Forma", "DE.Controllers.Main.textStrict": "Mode estricte", - "DE.Controllers.Main.textTryUndoRedo": "S'han desactivat les funcions Desfer/Refer per al mode de coedició ràpida. Cliqueu al botó \"Mode estricte\" per canviar al mode de coedició estricte i editar el fitxer sense que hi hagi interferències d'altres usuaris i enviar els vostres canvis un cop els hagueu desat. Podeu canviar entre els modes de coedició mitjançant l'editor \"Paràmetres avançats\".", - "DE.Controllers.Main.textTryUndoRedoWarn": "S'han desactivat les funcions Desfer/Refer per al mode de coedició ràpida.", + "DE.Controllers.Main.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\".", + "DE.Controllers.Main.textTryUndoRedoWarn": "S'han desactivat les funcions desfés/refés per al mode de coedició ràpida.", "DE.Controllers.Main.titleLicenseExp": "La llicència ha caducat", "DE.Controllers.Main.titleServerVersion": "S'ha actualitzat l'editor", "DE.Controllers.Main.titleUpdateVersion": "S'ha canviat la versió", @@ -603,13 +603,13 @@ "DE.Controllers.Main.txtButtons": "Botons", "DE.Controllers.Main.txtCallouts": "Crides", "DE.Controllers.Main.txtCharts": "Gràfics", - "DE.Controllers.Main.txtChoose": "Trieu un element", - "DE.Controllers.Main.txtClickToLoad": "Cliqueu per carregar la imatge", + "DE.Controllers.Main.txtChoose": "Tria un element", + "DE.Controllers.Main.txtClickToLoad": "Clica per carregar la imatge", "DE.Controllers.Main.txtCurrentDocument": "Document actual", "DE.Controllers.Main.txtDiagramTitle": "Títol del gràfic", - "DE.Controllers.Main.txtEditingMode": "Establir el mode d'edició ...", + "DE.Controllers.Main.txtEditingMode": "Estableix el mode d'edició ...", "DE.Controllers.Main.txtEndOfFormula": "Final inesperat de la fórmula", - "DE.Controllers.Main.txtEnterDate": "Introduïu una data", + "DE.Controllers.Main.txtEnterDate": "Introdueix una data", "DE.Controllers.Main.txtErrorLoadHistory": "L'historial no s'ha pogut carregar", "DE.Controllers.Main.txtEvenPage": "Pàgina parell", "DE.Controllers.Main.txtFiguredArrows": "Fletxes figurades", @@ -624,7 +624,7 @@ "DE.Controllers.Main.txtMath": "Matemàtiques", "DE.Controllers.Main.txtMissArg": "Falta l'argument", "DE.Controllers.Main.txtMissOperator": "Falta l'operador", - "DE.Controllers.Main.txtNeedSynchronize": "Teniu actualitzacions", + "DE.Controllers.Main.txtNeedSynchronize": "Tens actualitzacions", "DE.Controllers.Main.txtNone": "Cap", "DE.Controllers.Main.txtNoTableOfContents": "No hi ha cap títol al document. Apliqueu un estil d’encapçalament al text perquè aparegui a la taula de continguts.", "DE.Controllers.Main.txtNoTableOfFigures": "No s'ha trobat cap entrada a l'índex d'il·lustracions.", @@ -643,14 +643,14 @@ "DE.Controllers.Main.txtShape_accentCallout1": "Crida amb línia 1 (barra d'èmfasi)", "DE.Controllers.Main.txtShape_accentCallout2": "Crida amb línia 2 (barra d'èmfasi)", "DE.Controllers.Main.txtShape_accentCallout3": "Crida amb línia 3 (barra d'èmfasi)", - "DE.Controllers.Main.txtShape_actionButtonBackPrevious": "Endarrere o botó anterior", - "DE.Controllers.Main.txtShape_actionButtonBeginning": "Botó d’Inici", + "DE.Controllers.Main.txtShape_actionButtonBackPrevious": "Botó enrere o anterior", + "DE.Controllers.Main.txtShape_actionButtonBeginning": "Botó d’inici", "DE.Controllers.Main.txtShape_actionButtonBlank": "Botó en blanc", "DE.Controllers.Main.txtShape_actionButtonDocument": "Botó de document", "DE.Controllers.Main.txtShape_actionButtonEnd": "Botó final", "DE.Controllers.Main.txtShape_actionButtonForwardNext": "Botó endavant o següent", "DE.Controllers.Main.txtShape_actionButtonHelp": "Botó d'ajuda", - "DE.Controllers.Main.txtShape_actionButtonHome": "Botó Inici", + "DE.Controllers.Main.txtShape_actionButtonHome": "Botó d'inici", "DE.Controllers.Main.txtShape_actionButtonInformation": "Botó d'informació", "DE.Controllers.Main.txtShape_actionButtonMovie": "Botó de vídeo", "DE.Controllers.Main.txtShape_actionButtonReturn": "Botó de retorn", @@ -707,7 +707,7 @@ "DE.Controllers.Main.txtShape_flowChartInputOutput": "Diagrama de flux: dades", "DE.Controllers.Main.txtShape_flowChartInternalStorage": "Diagrama de flux: emmagatzematge intern", "DE.Controllers.Main.txtShape_flowChartMagneticDisk": "Diagrama de flux: disc magnètic", - "DE.Controllers.Main.txtShape_flowChartMagneticDrum": "Diagrama de flux: accés directe", + "DE.Controllers.Main.txtShape_flowChartMagneticDrum": "Diagrama de flux: emmagatzematge d'accés directe", "DE.Controllers.Main.txtShape_flowChartMagneticTape": "Diagrama de flux: emmagatzematge d'accés seqüencial", "DE.Controllers.Main.txtShape_flowChartManualInput": "Diagrama de flux: entrada manual", "DE.Controllers.Main.txtShape_flowChartManualOperation": "Diagrama de flux: operació manual", @@ -722,7 +722,7 @@ "DE.Controllers.Main.txtShape_flowChartPunchedCard": "Diagrama de flux: fitxa", "DE.Controllers.Main.txtShape_flowChartPunchedTape": "Diagrama de flux: cinta perforada", "DE.Controllers.Main.txtShape_flowChartSort": "Diagrama de flux: ordenació", - "DE.Controllers.Main.txtShape_flowChartSummingJunction": "Diagrama de flux: unió de suma", + "DE.Controllers.Main.txtShape_flowChartSummingJunction": "Diagrama de flux: Y", "DE.Controllers.Main.txtShape_flowChartTerminator": "Diagrama de flux: finalitzador", "DE.Controllers.Main.txtShape_foldedCorner": "Cantonada plegada", "DE.Controllers.Main.txtShape_frame": "Marc", @@ -749,17 +749,17 @@ "DE.Controllers.Main.txtShape_mathDivide": "Divisió", "DE.Controllers.Main.txtShape_mathEqual": "Igual", "DE.Controllers.Main.txtShape_mathMinus": "Menys", - "DE.Controllers.Main.txtShape_mathMultiply": "Multiplicar", + "DE.Controllers.Main.txtShape_mathMultiply": "Multiplica", "DE.Controllers.Main.txtShape_mathNotEqual": "No és igual", "DE.Controllers.Main.txtShape_mathPlus": "Més", "DE.Controllers.Main.txtShape_moon": "Lluna", "DE.Controllers.Main.txtShape_noSmoking": "Símbol \"No\"", "DE.Controllers.Main.txtShape_notchedRightArrow": "Fletxa a la dreta oscada", "DE.Controllers.Main.txtShape_octagon": "Octàgon", - "DE.Controllers.Main.txtShape_parallelogram": "Paral·lelograma", + "DE.Controllers.Main.txtShape_parallelogram": "Paral·lelogram", "DE.Controllers.Main.txtShape_pentagon": "Pentàgon", "DE.Controllers.Main.txtShape_pie": "Gràfic circular", - "DE.Controllers.Main.txtShape_plaque": "Signar", + "DE.Controllers.Main.txtShape_plaque": "Signa", "DE.Controllers.Main.txtShape_plus": "Més", "DE.Controllers.Main.txtShape_polyline1": "Gargot", "DE.Controllers.Main.txtShape_polyline2": "Forma lliure", @@ -833,8 +833,8 @@ "DE.Controllers.Main.txtTableOfContents": "Taula de continguts", "DE.Controllers.Main.txtTableOfFigures": "Índex d'il·lustracions", "DE.Controllers.Main.txtTOCHeading": "Capçalera de la taula de continguts", - "DE.Controllers.Main.txtTooLarge": "Número massa gran per atorgar-li format", - "DE.Controllers.Main.txtTypeEquation": "Escriviu una equació aquí.", + "DE.Controllers.Main.txtTooLarge": "El número és massa gran per atorgar-li format", + "DE.Controllers.Main.txtTypeEquation": "Escriu una equació aquí.", "DE.Controllers.Main.txtUndefBookmark": "Marcador no definit", "DE.Controllers.Main.txtXAxis": "Eix X", "DE.Controllers.Main.txtYAxis": "Eix Y", @@ -843,7 +843,7 @@ "DE.Controllers.Main.unsupportedBrowserErrorText": "El vostre navegador no és compatible.", "DE.Controllers.Main.uploadDocExtMessage": "Format de document desconegut.", "DE.Controllers.Main.uploadDocFileCountMessage": "No s'ha carregat cap document.", - "DE.Controllers.Main.uploadDocSizeMessage": "S'ha superat el límit màxim del document.", + "DE.Controllers.Main.uploadDocSizeMessage": "S'ha superat el límit màxim de mida del document.", "DE.Controllers.Main.uploadImageExtMessage": "Format d'imatge desconegut.", "DE.Controllers.Main.uploadImageFileCountMessage": "No s'ha carregat cap imatge.", "DE.Controllers.Main.uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB.", @@ -851,21 +851,21 @@ "DE.Controllers.Main.uploadImageTitleText": "S'està carregant la imatge", "DE.Controllers.Main.waitText": "Espereu...", "DE.Controllers.Main.warnBrowserIE9": "L’aplicació té poca capacitat en IE9. Utilitzeu IE10 o superior", - "DE.Controllers.Main.warnBrowserZoom": "La configuració de zoom actual del navegador no és totalment compatible. Restabliu el zoom per defecte tot prement Ctrl+0.", - "DE.Controllers.Main.warnLicenseExceeded": "Heu assolit el límit de connexions simultànies amb% 1 editors. Aquest document només s'obrirà en mode lectura.
Contacteu amb l'administrador per obtenir més informació.", + "DE.Controllers.Main.warnBrowserZoom": "La configuració de zoom actual del navegador no és compatible del tot. Restabliu el zoom per defecte tot prement Ctrl+0.", + "DE.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ó.", "DE.Controllers.Main.warnLicenseExp": "La vostra llicència ha caducat.
Actualitzeu la llicència i recarregueu la pàgina.", "DE.Controllers.Main.warnLicenseLimitedNoAccess": "La llicència ha caducat.
No teniu accés a la funció d'edició de documents.
Contacteu amb el vostre administrador.", "DE.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", "DE.Controllers.Main.warnLicenseUsersExceeded": "Heu arribat al límit d'usuari per a %1 editors. Contacteu amb el vostre administrador per a més informació.", - "DE.Controllers.Main.warnNoLicense": "Heu assolit el límit de connexions simultànies amb% 1 editors. Aquest document només s'obrirà en mode lectura.
Contacteu amb l'equip de vendes de% 1 per obtenir les condicions de millora personals del vostre servei.", - "DE.Controllers.Main.warnNoLicenseUsers": "Heu arribat al límit d'usuaris per a% 1 editors. Contacteu amb l'equip de vendes de% 1 per obtenir les condicions de millor personals dels vostres serveis.", + "DE.Controllers.Main.warnNoLicense": "Heu arribat al límit de connexions simultànies per als editors %1. Aquest document s'obrirà al mode de només lectura. Contacteu l'equip de vendes %1 per a les condicions personals de millora del servei.", + "DE.Controllers.Main.warnNoLicenseUsers": "Heu arribat al límit d'usuaris per a %1 editors. Contacteu amb l'equip de vendes de %1 per obtenir les condicions de millora personals dels vostres serveis.", "DE.Controllers.Main.warnProcessRightsChange": "No teniu permís per editar el fitxer.", "DE.Controllers.Navigation.txtBeginning": "Inici del document", "DE.Controllers.Navigation.txtGotoBeginning": "Anar al començament del document", "DE.Controllers.Statusbar.textHasChanges": "S'han fet un seguiment dels canvis nous", "DE.Controllers.Statusbar.textSetTrackChanges": "Esteu en mode de control de canvis", "DE.Controllers.Statusbar.textTrackChanges": "El document s'ha obert amb el mode de seguiment de canvis activat", - "DE.Controllers.Statusbar.tipReview": "Control de Canvis", + "DE.Controllers.Statusbar.tipReview": "Control de canvis", "DE.Controllers.Statusbar.zoomText": "Zoom {0}%", "DE.Controllers.Toolbar.confirmAddFontName": "El tipus de lletra que desareu no està disponible al dispositiu actual.
L'estil de text es mostrarà amb un dels tipus de lletra del sistema, el tipus de lletra desat s'utilitzarà quan estigui disponible.
Voleu continuar ?", "DE.Controllers.Toolbar.notcriticalErrorTitle": "Advertiment", @@ -875,8 +875,8 @@ "DE.Controllers.Toolbar.textFontSizeErr": "El valor introduït no és correcte.
Introduïu un valor numèric entre 1 i 300.", "DE.Controllers.Toolbar.textFraction": "Fraccions", "DE.Controllers.Toolbar.textFunction": "Funcions", - "DE.Controllers.Toolbar.textGroup": "Grup", - "DE.Controllers.Toolbar.textInsert": "Inserir", + "DE.Controllers.Toolbar.textGroup": "Agrupa", + "DE.Controllers.Toolbar.textInsert": "Insereix", "DE.Controllers.Toolbar.textIntegral": "Integrals", "DE.Controllers.Toolbar.textLargeOperator": "Operadors grans", "DE.Controllers.Toolbar.textLimitAndLog": "Límit i logaritmes", @@ -896,14 +896,14 @@ "DE.Controllers.Toolbar.txtAccent_BarTop": "Barra superposada", "DE.Controllers.Toolbar.txtAccent_BorderBox": "Fórmula emmarcada (amb contenidor)", "DE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Fórmula emmarcada (exemple)", - "DE.Controllers.Toolbar.txtAccent_Check": "Comprovar", + "DE.Controllers.Toolbar.txtAccent_Check": "Comprova", "DE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Clau subjacent", "DE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Clau superposada", "DE.Controllers.Toolbar.txtAccent_Custom_1": "Vector A", - "DE.Controllers.Toolbar.txtAccent_Custom_2": "ABC amb la barra a dalt", - "DE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR i amb barra sobreposada", + "DE.Controllers.Toolbar.txtAccent_Custom_2": "ABC amb la barra superposada", + "DE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y amb barra superposada", "DE.Controllers.Toolbar.txtAccent_DDDot": "Tres punts", - "DE.Controllers.Toolbar.txtAccent_DDot": "Doble punt", + "DE.Controllers.Toolbar.txtAccent_DDot": "Dos punts", "DE.Controllers.Toolbar.txtAccent_Dot": "Punt", "DE.Controllers.Toolbar.txtAccent_DoubleBar": "Doble barra superior", "DE.Controllers.Toolbar.txtAccent_Grave": "Accent greu", @@ -973,7 +973,7 @@ "DE.Controllers.Toolbar.txtFunction_1_Sec": "Funció secant inversa", "DE.Controllers.Toolbar.txtFunction_1_Sech": "Funció secant inversa hiperbòlica", "DE.Controllers.Toolbar.txtFunction_1_Sin": "Funció sinus inversa", - "DE.Controllers.Toolbar.txtFunction_1_Sinh": "Funció de sinus invers hiperbòlic", + "DE.Controllers.Toolbar.txtFunction_1_Sinh": "Funció de sinus invers hiperbòlica", "DE.Controllers.Toolbar.txtFunction_1_Tan": "Funció tangent inversa", "DE.Controllers.Toolbar.txtFunction_1_Tanh": "Funció tangent inversa hiperbòlica", "DE.Controllers.Toolbar.txtFunction_Cos": "Funció cosinus", @@ -1074,7 +1074,7 @@ "DE.Controllers.Toolbar.txtMatrix_3_1": "Matriu buida 3x1", "DE.Controllers.Toolbar.txtMatrix_3_2": "Matriu buida 3x2", "DE.Controllers.Toolbar.txtMatrix_3_3": "Matriu buida 3x3", - "DE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Punts de línia base", + "DE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Punts de la línia base", "DE.Controllers.Toolbar.txtMatrix_Dots_Center": "Punts de la línia del mig", "DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Punts diagonals", "DE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Punts verticals", @@ -1109,14 +1109,14 @@ "DE.Controllers.Toolbar.txtRadicalCustom_2": "Radical", "DE.Controllers.Toolbar.txtRadicalRoot_2": "Arrel quadrada amb grau", "DE.Controllers.Toolbar.txtRadicalRoot_3": "Arrel cúbica", - "DE.Controllers.Toolbar.txtRadicalRoot_n": "Radical amb índex", + "DE.Controllers.Toolbar.txtRadicalRoot_n": "Radical amb grau", "DE.Controllers.Toolbar.txtRadicalSqrt": "Arrel quadrada", "DE.Controllers.Toolbar.txtScriptCustom_1": "Script", "DE.Controllers.Toolbar.txtScriptCustom_2": "Script", "DE.Controllers.Toolbar.txtScriptCustom_3": "Script", "DE.Controllers.Toolbar.txtScriptCustom_4": "Script", "DE.Controllers.Toolbar.txtScriptSub": "Subíndex", - "DE.Controllers.Toolbar.txtScriptSubSup": "Subíndex/Superíndex", + "DE.Controllers.Toolbar.txtScriptSubSup": "Subíndex-superíndex", "DE.Controllers.Toolbar.txtScriptSubSupLeft": "Subíndex-Superíndex esquerre\n\t", "DE.Controllers.Toolbar.txtScriptSup": "Superíndex", "DE.Controllers.Toolbar.txtSymbol_about": "Aproximadament", @@ -1130,7 +1130,7 @@ "DE.Controllers.Toolbar.txtSymbol_bullet": "Operador de pic", "DE.Controllers.Toolbar.txtSymbol_cap": "Intersecció", "DE.Controllers.Toolbar.txtSymbol_cbrt": "Arrel cúbica", - "DE.Controllers.Toolbar.txtSymbol_cdots": "El·lipsis horitzontal", + "DE.Controllers.Toolbar.txtSymbol_cdots": "El·lipsi horitzontal de línia mitja", "DE.Controllers.Toolbar.txtSymbol_celsius": "Graus celsius", "DE.Controllers.Toolbar.txtSymbol_chi": "Khi", "DE.Controllers.Toolbar.txtSymbol_cong": "Aproximadament igual a", @@ -1145,13 +1145,13 @@ "DE.Controllers.Toolbar.txtSymbol_equals": "Igual", "DE.Controllers.Toolbar.txtSymbol_equiv": "Idèntic a", "DE.Controllers.Toolbar.txtSymbol_eta": "Eta", - "DE.Controllers.Toolbar.txtSymbol_exists": "Hi ha", + "DE.Controllers.Toolbar.txtSymbol_exists": "Existeix", "DE.Controllers.Toolbar.txtSymbol_factorial": "Factorial", "DE.Controllers.Toolbar.txtSymbol_fahrenheit": "Graus fahrenheit", "DE.Controllers.Toolbar.txtSymbol_forall": "Per a tot", "DE.Controllers.Toolbar.txtSymbol_gamma": "Gamma", "DE.Controllers.Toolbar.txtSymbol_geq": "Més gran o igual a", - "DE.Controllers.Toolbar.txtSymbol_gg": "Major que", + "DE.Controllers.Toolbar.txtSymbol_gg": "Molt més gran que", "DE.Controllers.Toolbar.txtSymbol_greater": "Més gran que", "DE.Controllers.Toolbar.txtSymbol_in": "Element de", "DE.Controllers.Toolbar.txtSymbol_inc": "Increment", @@ -1163,7 +1163,7 @@ "DE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Fletxa esquerra-dreta", "DE.Controllers.Toolbar.txtSymbol_leq": "Menor o igual que", "DE.Controllers.Toolbar.txtSymbol_less": "Menor que", - "DE.Controllers.Toolbar.txtSymbol_ll": "Menor que", + "DE.Controllers.Toolbar.txtSymbol_ll": "Molt més petit que", "DE.Controllers.Toolbar.txtSymbol_minus": "Menys", "DE.Controllers.Toolbar.txtSymbol_mp": "Menys més", "DE.Controllers.Toolbar.txtSymbol_mu": "Mu", @@ -1171,9 +1171,9 @@ "DE.Controllers.Toolbar.txtSymbol_neq": "No és igual a", "DE.Controllers.Toolbar.txtSymbol_ni": "Conté com a membre", "DE.Controllers.Toolbar.txtSymbol_not": "Signe de negació", - "DE.Controllers.Toolbar.txtSymbol_notexists": "No n'hi ha", + "DE.Controllers.Toolbar.txtSymbol_notexists": "No existeix", "DE.Controllers.Toolbar.txtSymbol_nu": "Nu", - "DE.Controllers.Toolbar.txtSymbol_o": "Omicron", + "DE.Controllers.Toolbar.txtSymbol_o": "Òmicron", "DE.Controllers.Toolbar.txtSymbol_omega": "Omega", "DE.Controllers.Toolbar.txtSymbol_partial": "Diferencial parcial", "DE.Controllers.Toolbar.txtSymbol_percent": "Percentatge", @@ -1185,7 +1185,7 @@ "DE.Controllers.Toolbar.txtSymbol_psi": "Psi", "DE.Controllers.Toolbar.txtSymbol_qdrt": "Arrel quarta", "DE.Controllers.Toolbar.txtSymbol_qed": "Final de la demostració", - "DE.Controllers.Toolbar.txtSymbol_rddots": "El·lipsis en diagonal d'esquerra a dreta", + "DE.Controllers.Toolbar.txtSymbol_rddots": "El·lipsi en diagonal d'esquerra a dreta", "DE.Controllers.Toolbar.txtSymbol_rho": "Rho", "DE.Controllers.Toolbar.txtSymbol_rightarrow": "Fletxa dreta", "DE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", @@ -1195,70 +1195,70 @@ "DE.Controllers.Toolbar.txtSymbol_theta": "Zeta", "DE.Controllers.Toolbar.txtSymbol_times": "Signe de multiplicació", "DE.Controllers.Toolbar.txtSymbol_uparrow": "Fletxa amunt", - "DE.Controllers.Toolbar.txtSymbol_upsilon": "Èpsilon", + "DE.Controllers.Toolbar.txtSymbol_upsilon": "Ípsilon", "DE.Controllers.Toolbar.txtSymbol_varepsilon": "Variant d’èpsilon", "DE.Controllers.Toolbar.txtSymbol_varphi": "Variant Fi", "DE.Controllers.Toolbar.txtSymbol_varpi": "Variant pi", - "DE.Controllers.Toolbar.txtSymbol_varrho": "Variant Rho", + "DE.Controllers.Toolbar.txtSymbol_varrho": "Variant de Rho", "DE.Controllers.Toolbar.txtSymbol_varsigma": "Variant sigma", "DE.Controllers.Toolbar.txtSymbol_vartheta": "Variant zeta", - "DE.Controllers.Toolbar.txtSymbol_vdots": "El·lipsis vertical", - "DE.Controllers.Toolbar.txtSymbol_xsi": "Xi", + "DE.Controllers.Toolbar.txtSymbol_vdots": "El·lipsi vertical", + "DE.Controllers.Toolbar.txtSymbol_xsi": "Ksi", "DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", - "DE.Controllers.Viewport.textFitPage": "Ajustar a la pàgina", - "DE.Controllers.Viewport.textFitWidth": "Ajustar a l'amplada", + "DE.Controllers.Viewport.textFitPage": "Ajusta a la pàgina", + "DE.Controllers.Viewport.textFitWidth": "Ajusta-ho a l'amplària", "DE.Views.AddNewCaptionLabelDialog.textLabel": "Etiqueta:", "DE.Views.AddNewCaptionLabelDialog.textLabelError": "L'etiqueta no pot estar en blanc.", - "DE.Views.BookmarksDialog.textAdd": "Afegir", + "DE.Views.BookmarksDialog.textAdd": "Afegeix", "DE.Views.BookmarksDialog.textBookmarkName": "Nom del marcador", - "DE.Views.BookmarksDialog.textClose": "Tancar", - "DE.Views.BookmarksDialog.textCopy": "Copiar", - "DE.Views.BookmarksDialog.textDelete": "Suprimir", - "DE.Views.BookmarksDialog.textGetLink": "Obtenir l'enllaç", + "DE.Views.BookmarksDialog.textClose": "Tanca", + "DE.Views.BookmarksDialog.textCopy": "Copia", + "DE.Views.BookmarksDialog.textDelete": "Suprimeix", + "DE.Views.BookmarksDialog.textGetLink": "Obtén l'enllaç", "DE.Views.BookmarksDialog.textGoto": "Anar a", - "DE.Views.BookmarksDialog.textHidden": "Marcadors amagats", + "DE.Views.BookmarksDialog.textHidden": "Els marcadors estan amagats", "DE.Views.BookmarksDialog.textLocation": "Ubicació", "DE.Views.BookmarksDialog.textName": "Nom", - "DE.Views.BookmarksDialog.textSort": "Ordenar per", + "DE.Views.BookmarksDialog.textSort": "Ordena per", "DE.Views.BookmarksDialog.textTitle": "Marcadors", "DE.Views.BookmarksDialog.txtInvalidName": "El nom del marcador només pot contenir lletres, dígits i guions baixos i hauria de començar per la lletra", - "DE.Views.CaptionDialog.textAdd": "Afegir etiqueta", + "DE.Views.CaptionDialog.textAdd": "Afegeix una etiqueta", "DE.Views.CaptionDialog.textAfter": "Després", "DE.Views.CaptionDialog.textBefore": "Abans", "DE.Views.CaptionDialog.textCaption": "Llegenda", "DE.Views.CaptionDialog.textChapter": "El capítol comença amb estil", - "DE.Views.CaptionDialog.textChapterInc": "Inclogueu el número de capítol", + "DE.Views.CaptionDialog.textChapterInc": "Inclou el número de capítol", "DE.Views.CaptionDialog.textColon": "Dos punts", "DE.Views.CaptionDialog.textDash": "guió", - "DE.Views.CaptionDialog.textDelete": "Suprimir l'etiqueta", + "DE.Views.CaptionDialog.textDelete": "Suprimeix l'etiqueta", "DE.Views.CaptionDialog.textEquation": "Equació", "DE.Views.CaptionDialog.textExamples": "Exemples: Taula 2-A, Imatge 1.IV", - "DE.Views.CaptionDialog.textExclude": "Excloure l'etiqueta de la llegenda", + "DE.Views.CaptionDialog.textExclude": "Exclou l'etiqueta de la llegenda", "DE.Views.CaptionDialog.textFigure": "Il·lustració", "DE.Views.CaptionDialog.textHyphen": "guionet", - "DE.Views.CaptionDialog.textInsert": "Inserir", + "DE.Views.CaptionDialog.textInsert": "Insereix", "DE.Views.CaptionDialog.textLabel": "Etiqueta", "DE.Views.CaptionDialog.textLongDash": "Guió llarg", "DE.Views.CaptionDialog.textNumbering": "Numeració", "DE.Views.CaptionDialog.textPeriod": "període", - "DE.Views.CaptionDialog.textSeparator": "Utilitzar separador", + "DE.Views.CaptionDialog.textSeparator": "Fes servir el separador", "DE.Views.CaptionDialog.textTable": "Taula", - "DE.Views.CaptionDialog.textTitle": "Inseriu llegenda", + "DE.Views.CaptionDialog.textTitle": "Insereix una llegenda", "DE.Views.CellsAddDialog.textCol": "Columnes", "DE.Views.CellsAddDialog.textDown": "Per sota del cursor", "DE.Views.CellsAddDialog.textLeft": "A l'esquerra", "DE.Views.CellsAddDialog.textRight": "A la dreta", "DE.Views.CellsAddDialog.textRow": "Files", - "DE.Views.CellsAddDialog.textTitle": "Inseriu diversos", + "DE.Views.CellsAddDialog.textTitle": "Insereix diversos", "DE.Views.CellsAddDialog.textUp": "Per damunt del cursor", - "DE.Views.ChartSettings.textAdvanced": "Mostrar la configuració avançada", - "DE.Views.ChartSettings.textChartType": "Canviar el tipus de gràfic", - "DE.Views.ChartSettings.textEditData": "Editar Dades", + "DE.Views.ChartSettings.textAdvanced": "Mostra la configuració avançada", + "DE.Views.ChartSettings.textChartType": "Canvia el tipus de gràfic", + "DE.Views.ChartSettings.textEditData": "Edita les dades", "DE.Views.ChartSettings.textHeight": "Alçada", "DE.Views.ChartSettings.textOriginalSize": "Mida real", "DE.Views.ChartSettings.textSize": "Mida", "DE.Views.ChartSettings.textStyle": "Estil", - "DE.Views.ChartSettings.textUndock": "Desacoblar del tauler", + "DE.Views.ChartSettings.textUndock": "Desacobla del tauler", "DE.Views.ChartSettings.textWidth": "Amplada", "DE.Views.ChartSettings.textWrap": "Estil d'ajustament", "DE.Views.ChartSettings.txtBehind": "Darrere", @@ -1270,18 +1270,18 @@ "DE.Views.ChartSettings.txtTitle": "Gràfic", "DE.Views.ChartSettings.txtTopAndBottom": "Superior i inferior", "DE.Views.ControlSettingsDialog.strGeneral": "General", - "DE.Views.ControlSettingsDialog.textAdd": "Afegir", + "DE.Views.ControlSettingsDialog.textAdd": "Afegeix", "DE.Views.ControlSettingsDialog.textAppearance": "Aparença", "DE.Views.ControlSettingsDialog.textApplyAll": "Aplicar-ho a tot", "DE.Views.ControlSettingsDialog.textBox": "Quadre de limitació", - "DE.Views.ControlSettingsDialog.textChange": "Editar", + "DE.Views.ControlSettingsDialog.textChange": "Edita", "DE.Views.ControlSettingsDialog.textCheckbox": "Casella de selecció", "DE.Views.ControlSettingsDialog.textChecked": "Símbol de selecció", "DE.Views.ControlSettingsDialog.textColor": "Color", "DE.Views.ControlSettingsDialog.textCombobox": "Quadre combinat", "DE.Views.ControlSettingsDialog.textDate": "Format de data", - "DE.Views.ControlSettingsDialog.textDelete": "Suprimir", - "DE.Views.ControlSettingsDialog.textDisplayName": "Mostrar el nom", + "DE.Views.ControlSettingsDialog.textDelete": "Suprimeix", + "DE.Views.ControlSettingsDialog.textDisplayName": "Mostra el nom", "DE.Views.ControlSettingsDialog.textDown": "Avall", "DE.Views.ControlSettingsDialog.textDropDown": "Llista desplegable", "DE.Views.ControlSettingsDialog.textFormat": "Mostra la data així", @@ -1290,14 +1290,14 @@ "DE.Views.ControlSettingsDialog.textName": "Títol", "DE.Views.ControlSettingsDialog.textNone": "Cap", "DE.Views.ControlSettingsDialog.textPlaceholder": "Marcador de posició", - "DE.Views.ControlSettingsDialog.textShowAs": "Mostrar com", + "DE.Views.ControlSettingsDialog.textShowAs": "Mostra-ho com", "DE.Views.ControlSettingsDialog.textSystemColor": "Sistema", "DE.Views.ControlSettingsDialog.textTag": "Etiqueta", "DE.Views.ControlSettingsDialog.textTitle": "Configuració del control de contingut", "DE.Views.ControlSettingsDialog.textUnchecked": "Símbol desactivat", "DE.Views.ControlSettingsDialog.textUp": "Amunt", "DE.Views.ControlSettingsDialog.textValue": "Valor", - "DE.Views.ControlSettingsDialog.tipChange": "Canviar el símbol", + "DE.Views.ControlSettingsDialog.tipChange": "Canvia el símbol", "DE.Views.ControlSettingsDialog.txtLockDelete": "El control de contingut no es pot suprimir", "DE.Views.ControlSettingsDialog.txtLockEdit": "El contingut no es pot editar", "DE.Views.CrossReferenceDialog.textAboveBelow": "Amunt/avall", @@ -1316,9 +1316,9 @@ "DE.Views.CrossReferenceDialog.textHeadingNumFull": "Número de títol (context sencer)", "DE.Views.CrossReferenceDialog.textHeadingNumNo": "Número de títol (sense context)", "DE.Views.CrossReferenceDialog.textHeadingText": "Text de títol", - "DE.Views.CrossReferenceDialog.textIncludeAbove": "Incloure amunt/avall", - "DE.Views.CrossReferenceDialog.textInsert": "Inserir", - "DE.Views.CrossReferenceDialog.textInsertAs": "Inseriu com a enllaç", + "DE.Views.CrossReferenceDialog.textIncludeAbove": "Inclou amunt/avall", + "DE.Views.CrossReferenceDialog.textInsert": "Insereix", + "DE.Views.CrossReferenceDialog.textInsertAs": "Insereix com a enllaç", "DE.Views.CrossReferenceDialog.textLabelNum": "Només etiqueta i número", "DE.Views.CrossReferenceDialog.textNoteNum": "Número de nota a peu de pàgina", "DE.Views.CrossReferenceDialog.textNoteNumForm": "Número de nota a peu de pàgina (amb format)", @@ -1328,7 +1328,7 @@ "DE.Views.CrossReferenceDialog.textParaNum": "Número de paràgraf", "DE.Views.CrossReferenceDialog.textParaNumFull": "Número de paràgraf (context complet)", "DE.Views.CrossReferenceDialog.textParaNumNo": "Número de paràgraf (sense context)", - "DE.Views.CrossReferenceDialog.textSeparate": "Separeu els números amb", + "DE.Views.CrossReferenceDialog.textSeparate": "Separa els nombres amb", "DE.Views.CrossReferenceDialog.textTable": "Taula", "DE.Views.CrossReferenceDialog.textText": "Text del paràgraf", "DE.Views.CrossReferenceDialog.textWhich": "Per a quina llegenda", @@ -1337,23 +1337,23 @@ "DE.Views.CrossReferenceDialog.textWhichHeading": "Per a quin encapçalament", "DE.Views.CrossReferenceDialog.textWhichNote": "Per a quina nota al peu", "DE.Views.CrossReferenceDialog.textWhichPara": "Per a quin element numerat", - "DE.Views.CrossReferenceDialog.txtReference": "Inseriu referència a", + "DE.Views.CrossReferenceDialog.txtReference": "Insereix una referència a", "DE.Views.CrossReferenceDialog.txtTitle": "Referència creuada", "DE.Views.CrossReferenceDialog.txtType": "Tipus de referència", "DE.Views.CustomColumnsDialog.textColumns": "Número de columnes", "DE.Views.CustomColumnsDialog.textSeparator": "Separador de columnes", "DE.Views.CustomColumnsDialog.textSpacing": "Espaiat entre columnes", "DE.Views.CustomColumnsDialog.textTitle": "Columnes", - "DE.Views.DateTimeDialog.confirmDefault": "Establir el format predeterminat per a {0}:\"{1}\"", - "DE.Views.DateTimeDialog.textDefault": "Establir per defecte", + "DE.Views.DateTimeDialog.confirmDefault": "Estableix el format predeterminat per a {0}:\"{1}\"", + "DE.Views.DateTimeDialog.textDefault": "Estableix per defecte", "DE.Views.DateTimeDialog.textFormat": "Formats", "DE.Views.DateTimeDialog.textLang": "Idioma", "DE.Views.DateTimeDialog.textUpdate": "Actualitza automàticament", - "DE.Views.DateTimeDialog.txtTitle": "Data & Hora", + "DE.Views.DateTimeDialog.txtTitle": "Hora i data", "DE.Views.DocumentHolder.aboveText": "A dalt", - "DE.Views.DocumentHolder.addCommentText": "Afegir comentari", - "DE.Views.DocumentHolder.advancedDropCapText": "Configuració lletra de caixa alta", - "DE.Views.DocumentHolder.advancedFrameText": "Marc configuració avançada", + "DE.Views.DocumentHolder.addCommentText": "Afegeix un comentari", + "DE.Views.DocumentHolder.advancedDropCapText": "Configuració de la lletra de caixa alta", + "DE.Views.DocumentHolder.advancedFrameText": "Configuració avançada del marc", "DE.Views.DocumentHolder.advancedParagraphText": "Configuració avançada del paràgraf", "DE.Views.DocumentHolder.advancedTableText": "Configuració avançada de la taula", "DE.Views.DocumentHolder.advancedText": "Configuració avançada", @@ -1363,230 +1363,230 @@ "DE.Views.DocumentHolder.bulletsText": "Pics i numeració", "DE.Views.DocumentHolder.cellAlignText": "Alineació vertical de la cel·la", "DE.Views.DocumentHolder.cellText": "Cel·la", - "DE.Views.DocumentHolder.centerText": "Centrar", + "DE.Views.DocumentHolder.centerText": "Centra", "DE.Views.DocumentHolder.chartText": "Configuració avançada del gràfic", "DE.Views.DocumentHolder.columnText": "Columna", - "DE.Views.DocumentHolder.deleteColumnText": "Suprimir la Columna", - "DE.Views.DocumentHolder.deleteRowText": "Suprimir la fila", - "DE.Views.DocumentHolder.deleteTableText": "Suprimir la taula", - "DE.Views.DocumentHolder.deleteText": "Suprimir", - "DE.Views.DocumentHolder.direct270Text": "Girar text cap amunt", - "DE.Views.DocumentHolder.direct90Text": "Girar text cap a baix", + "DE.Views.DocumentHolder.deleteColumnText": "Suprimeix la columna", + "DE.Views.DocumentHolder.deleteRowText": "Suprimeix la fila", + "DE.Views.DocumentHolder.deleteTableText": "Suprimeix la taula", + "DE.Views.DocumentHolder.deleteText": "Suprimeix", + "DE.Views.DocumentHolder.direct270Text": "Gira el text cap amunt", + "DE.Views.DocumentHolder.direct90Text": "Gira el text cap avall", "DE.Views.DocumentHolder.directHText": "Horitzontal", "DE.Views.DocumentHolder.directionText": "Direcció del text", - "DE.Views.DocumentHolder.editChartText": "Editar Dades", - "DE.Views.DocumentHolder.editFooterText": "Editar el peu de pàgina", - "DE.Views.DocumentHolder.editHeaderText": "Editar la capçalera", - "DE.Views.DocumentHolder.editHyperlinkText": "Editar l'enllaç", + "DE.Views.DocumentHolder.editChartText": "Edita les dades", + "DE.Views.DocumentHolder.editFooterText": "Edita el peu de pàgina", + "DE.Views.DocumentHolder.editHeaderText": "Edita la capçalera", + "DE.Views.DocumentHolder.editHyperlinkText": "Edita l'enllaç", "DE.Views.DocumentHolder.guestText": "Convidat", "DE.Views.DocumentHolder.hyperlinkText": "Enllaç", - "DE.Views.DocumentHolder.ignoreAllSpellText": "Ignorar-ho tot", - "DE.Views.DocumentHolder.ignoreSpellText": "Ignorar", - "DE.Views.DocumentHolder.imageText": "Imatge configuració avançada", - "DE.Views.DocumentHolder.insertColumnLeftText": "Columna esquerra", - "DE.Views.DocumentHolder.insertColumnRightText": "Columna dreta", - "DE.Views.DocumentHolder.insertColumnText": "Inseriu columna", + "DE.Views.DocumentHolder.ignoreAllSpellText": "Ignora-ho tot", + "DE.Views.DocumentHolder.ignoreSpellText": "Ignora", + "DE.Views.DocumentHolder.imageText": "Configuració avançada de la imatge", + "DE.Views.DocumentHolder.insertColumnLeftText": "Columna a l'esquerra", + "DE.Views.DocumentHolder.insertColumnRightText": "Columna a la dreta", + "DE.Views.DocumentHolder.insertColumnText": "Insereix una columna", "DE.Views.DocumentHolder.insertRowAboveText": "Fila a dalt", "DE.Views.DocumentHolder.insertRowBelowText": "Fila a baix", - "DE.Views.DocumentHolder.insertRowText": "Inseriu fila", - "DE.Views.DocumentHolder.insertText": "Inserir", - "DE.Views.DocumentHolder.keepLinesText": "Conserveu les línies juntes", - "DE.Views.DocumentHolder.langText": "Seleccionar idioma", + "DE.Views.DocumentHolder.insertRowText": "Insereix una fila", + "DE.Views.DocumentHolder.insertText": "Insereix", + "DE.Views.DocumentHolder.keepLinesText": "Conserva les línies juntes", + "DE.Views.DocumentHolder.langText": "Selecciona l'idioma", "DE.Views.DocumentHolder.leftText": "Esquerra", "DE.Views.DocumentHolder.loadSpellText": "S'estan carregant variants", - "DE.Views.DocumentHolder.mergeCellsText": "Combina cel·les", + "DE.Views.DocumentHolder.mergeCellsText": "Combina les cel·les", "DE.Views.DocumentHolder.moreText": "Més variants...", "DE.Views.DocumentHolder.noSpellVariantsText": "Sense variants", "DE.Views.DocumentHolder.originalSizeText": "Mida real", "DE.Views.DocumentHolder.paragraphText": "Paràgraf", - "DE.Views.DocumentHolder.removeHyperlinkText": "Suprimir l'enllaç", + "DE.Views.DocumentHolder.removeHyperlinkText": "Suprimeix l'enllaç", "DE.Views.DocumentHolder.rightText": "Dreta", "DE.Views.DocumentHolder.rowText": "Fila", - "DE.Views.DocumentHolder.saveStyleText": "Crear nou estil", - "DE.Views.DocumentHolder.selectCellText": "Seleccionar cel·la", - "DE.Views.DocumentHolder.selectColumnText": "Seleccionar columna", - "DE.Views.DocumentHolder.selectRowText": "Seleccionar fila", - "DE.Views.DocumentHolder.selectTableText": "Seleccionar taula", - "DE.Views.DocumentHolder.selectText": "Seleccionar", - "DE.Views.DocumentHolder.shapeText": "Forma configuració avançada", + "DE.Views.DocumentHolder.saveStyleText": "Crea un estil nou", + "DE.Views.DocumentHolder.selectCellText": "Selecciona la cel·la", + "DE.Views.DocumentHolder.selectColumnText": "Selecciona la columna", + "DE.Views.DocumentHolder.selectRowText": "Selecciona una fila", + "DE.Views.DocumentHolder.selectTableText": "Selecciona una taula", + "DE.Views.DocumentHolder.selectText": "Selecciona", + "DE.Views.DocumentHolder.shapeText": "Configuració avançada de la forma", "DE.Views.DocumentHolder.spellcheckText": "Revisió ortogràfica", - "DE.Views.DocumentHolder.splitCellsText": "Dividir cel·la...", - "DE.Views.DocumentHolder.splitCellTitleText": "Dividir cel·la", - "DE.Views.DocumentHolder.strDelete": "Suprimir la signatura", + "DE.Views.DocumentHolder.splitCellsText": "Divideix la cel·la...", + "DE.Views.DocumentHolder.splitCellTitleText": "Divideix la cel·la", + "DE.Views.DocumentHolder.strDelete": "Suprimeix la signatura", "DE.Views.DocumentHolder.strDetails": "Detalls de la signatura", "DE.Views.DocumentHolder.strSetup": "Configuració de la signatura", - "DE.Views.DocumentHolder.strSign": "Signar", + "DE.Views.DocumentHolder.strSign": "Signa", "DE.Views.DocumentHolder.styleText": "Format d'estil", "DE.Views.DocumentHolder.tableText": "Taula", - "DE.Views.DocumentHolder.textAlign": "Alinear", - "DE.Views.DocumentHolder.textArrange": "Organitzar", - "DE.Views.DocumentHolder.textArrangeBack": "Enviar a un segon pla", - "DE.Views.DocumentHolder.textArrangeBackward": "Enviar cap endarrere", - "DE.Views.DocumentHolder.textArrangeForward": "Portar endavant", - "DE.Views.DocumentHolder.textArrangeFront": "Portar al primer pla", + "DE.Views.DocumentHolder.textAlign": "Alinea", + "DE.Views.DocumentHolder.textArrange": "Organitza", + "DE.Views.DocumentHolder.textArrangeBack": "Envia al fons", + "DE.Views.DocumentHolder.textArrangeBackward": "Envia cap enrere", + "DE.Views.DocumentHolder.textArrangeForward": "Porta endavant", + "DE.Views.DocumentHolder.textArrangeFront": "Porta al primer pla", "DE.Views.DocumentHolder.textCells": "Cel·les", - "DE.Views.DocumentHolder.textCol": "Suprimir tota la columna", + "DE.Views.DocumentHolder.textCol": "Suprimeix tota la columna", "DE.Views.DocumentHolder.textContentControls": "Control de contingut", "DE.Views.DocumentHolder.textContinueNumbering": "Continua la numeració", - "DE.Views.DocumentHolder.textCopy": "Copiar", - "DE.Views.DocumentHolder.textCrop": "Retallar", - "DE.Views.DocumentHolder.textCropFill": "Omplir", - "DE.Views.DocumentHolder.textCropFit": "Ajustar", - "DE.Views.DocumentHolder.textCut": "Tallar", - "DE.Views.DocumentHolder.textDistributeCols": "Distribuir les columnes", - "DE.Views.DocumentHolder.textDistributeRows": "Distribuir les files", + "DE.Views.DocumentHolder.textCopy": "Copia", + "DE.Views.DocumentHolder.textCrop": "Retalla", + "DE.Views.DocumentHolder.textCropFill": "Emplena", + "DE.Views.DocumentHolder.textCropFit": "Ajusta", + "DE.Views.DocumentHolder.textCut": "Talla", + "DE.Views.DocumentHolder.textDistributeCols": "Distribueix les columnes", + "DE.Views.DocumentHolder.textDistributeRows": "Distribueix les files", "DE.Views.DocumentHolder.textEditControls": "Configuració del control de contingut", - "DE.Views.DocumentHolder.textEditWrapBoundary": "Editar el límit de l’ajustament", - "DE.Views.DocumentHolder.textFlipH": "Capgirar horitzontalment", - "DE.Views.DocumentHolder.textFlipV": "Capgirar verticalment", - "DE.Views.DocumentHolder.textFollow": "Seguir el moviment", + "DE.Views.DocumentHolder.textEditWrapBoundary": "Edita el límit de l’ajustament", + "DE.Views.DocumentHolder.textFlipH": "Capgira horitzontalment", + "DE.Views.DocumentHolder.textFlipV": "Capgira verticalment", + "DE.Views.DocumentHolder.textFollow": "Segueix el moviment", "DE.Views.DocumentHolder.textFromFile": "Des d'un fitxer", "DE.Views.DocumentHolder.textFromStorage": "Des de l’emmagatzematge", "DE.Views.DocumentHolder.textFromUrl": "Des de l'URL", - "DE.Views.DocumentHolder.textJoinList": "Uniu-vos a la llista anterior", - "DE.Views.DocumentHolder.textLeft": "Desplaçar les cel·les cap a l'esquerra", + "DE.Views.DocumentHolder.textJoinList": "Uneix-te a la llista anterior", + "DE.Views.DocumentHolder.textLeft": "Desplaça les cel·les cap a l'esquerra", "DE.Views.DocumentHolder.textNest": "Incrusta la taula", "DE.Views.DocumentHolder.textNextPage": "Pàgina següent", "DE.Views.DocumentHolder.textNumberingValue": "Valor de numeració", - "DE.Views.DocumentHolder.textPaste": "Enganxar", + "DE.Views.DocumentHolder.textPaste": "Enganxa", "DE.Views.DocumentHolder.textPrevPage": "Pàgina anterior", "DE.Views.DocumentHolder.textRefreshField": "Actualitza el camp", - "DE.Views.DocumentHolder.textRemCheckBox": "Suprimir la casella de selecció", - "DE.Views.DocumentHolder.textRemComboBox": "Suprimir el quadre combinat", - "DE.Views.DocumentHolder.textRemDropdown": "Suprimir el desplegable", - "DE.Views.DocumentHolder.textRemField": "Suprimir el camp de text", - "DE.Views.DocumentHolder.textRemove": "Suprimir", - "DE.Views.DocumentHolder.textRemoveControl": "Suprimir el control de contingut", - "DE.Views.DocumentHolder.textRemPicture": "Suprimir la imatge", - "DE.Views.DocumentHolder.textRemRadioBox": "Suprimir el botó de selecció", - "DE.Views.DocumentHolder.textReplace": "Substituir la imatge", - "DE.Views.DocumentHolder.textRotate": "Girar", - "DE.Views.DocumentHolder.textRotate270": "Girar 90° a l'esquerra", - "DE.Views.DocumentHolder.textRotate90": "Girar 90° a la dreta", - "DE.Views.DocumentHolder.textRow": "Suprimir la fila sencera", - "DE.Views.DocumentHolder.textSeparateList": "Llista separada", + "DE.Views.DocumentHolder.textRemCheckBox": "Suprimeix la casella de selecció", + "DE.Views.DocumentHolder.textRemComboBox": "Suprimeix el quadre combinat", + "DE.Views.DocumentHolder.textRemDropdown": "Suprimeix el desplegable", + "DE.Views.DocumentHolder.textRemField": "Suprimeix el camp de text", + "DE.Views.DocumentHolder.textRemove": "Suprimeix", + "DE.Views.DocumentHolder.textRemoveControl": "Suprimeix el control de contingut", + "DE.Views.DocumentHolder.textRemPicture": "Suprimeix la imatge", + "DE.Views.DocumentHolder.textRemRadioBox": "Suprimeix el botó de selecció", + "DE.Views.DocumentHolder.textReplace": "Substitueix la imatge", + "DE.Views.DocumentHolder.textRotate": "Gira", + "DE.Views.DocumentHolder.textRotate270": "Gira 90° a l'esquerra", + "DE.Views.DocumentHolder.textRotate90": "Gira 90° a la dreta", + "DE.Views.DocumentHolder.textRow": "Suprimeix tota la fila", + "DE.Views.DocumentHolder.textSeparateList": "Llista independent", "DE.Views.DocumentHolder.textSettings": "Configuració", "DE.Views.DocumentHolder.textSeveral": "Diverses Files/Columnes", - "DE.Views.DocumentHolder.textShapeAlignBottom": "Alineació inferior", - "DE.Views.DocumentHolder.textShapeAlignCenter": "Centrar", - "DE.Views.DocumentHolder.textShapeAlignLeft": "Alineació a l'esquerra", - "DE.Views.DocumentHolder.textShapeAlignMiddle": "Alineció al mig", - "DE.Views.DocumentHolder.textShapeAlignRight": "Alineació a la dreta", - "DE.Views.DocumentHolder.textShapeAlignTop": "Alineació a la part superior", - "DE.Views.DocumentHolder.textStartNewList": "Iniciar una llista nova", - "DE.Views.DocumentHolder.textStartNumberingFrom": "Establir el valor de numeració", - "DE.Views.DocumentHolder.textTitleCellsRemove": "Suprimir cel·les", + "DE.Views.DocumentHolder.textShapeAlignBottom": "Alinea a baix", + "DE.Views.DocumentHolder.textShapeAlignCenter": "Alinea al centre", + "DE.Views.DocumentHolder.textShapeAlignLeft": "Alinea a l'esquerra", + "DE.Views.DocumentHolder.textShapeAlignMiddle": "Alinea al mig", + "DE.Views.DocumentHolder.textShapeAlignRight": "Alinea a la dreta", + "DE.Views.DocumentHolder.textShapeAlignTop": "Alinea a dalt", + "DE.Views.DocumentHolder.textStartNewList": "Inicia una llista nova", + "DE.Views.DocumentHolder.textStartNumberingFrom": "Estableix el valor de numeració", + "DE.Views.DocumentHolder.textTitleCellsRemove": "Suprimeix les cel·les", "DE.Views.DocumentHolder.textTOC": "Taula de continguts", "DE.Views.DocumentHolder.textTOCSettings": "Configuració de la taula de continguts", - "DE.Views.DocumentHolder.textUndo": "Desfer", - "DE.Views.DocumentHolder.textUpdateAll": "Actualitzar la taula sencera", - "DE.Views.DocumentHolder.textUpdatePages": "Actualitzar només els números de pàgina", - "DE.Views.DocumentHolder.textUpdateTOC": "Actualitzar la taula de continguts", + "DE.Views.DocumentHolder.textUndo": "Desfés", + "DE.Views.DocumentHolder.textUpdateAll": "Actualitza la taula sencera", + "DE.Views.DocumentHolder.textUpdatePages": "Actualitza només els números de pàgina", + "DE.Views.DocumentHolder.textUpdateTOC": "Actualitza la taula de continguts", "DE.Views.DocumentHolder.textWrap": "Estil d'ajustament", "DE.Views.DocumentHolder.tipIsLocked": "Un altre usuari té obert ara aquest element.", - "DE.Views.DocumentHolder.toDictionaryText": "Afegir al diccionari", - "DE.Views.DocumentHolder.txtAddBottom": "Afegir línia inferior", - "DE.Views.DocumentHolder.txtAddFractionBar": "Afegir barra de fracció", - "DE.Views.DocumentHolder.txtAddHor": "Afegir línia horitzontal", - "DE.Views.DocumentHolder.txtAddLB": "Afegir línia inferior esquerra", - "DE.Views.DocumentHolder.txtAddLeft": "Afegir vora esquerra", - "DE.Views.DocumentHolder.txtAddLT": "Afegir línia superior esquerra", - "DE.Views.DocumentHolder.txtAddRight": "Afegir vora dreta", - "DE.Views.DocumentHolder.txtAddTop": "Afegir vora superior", - "DE.Views.DocumentHolder.txtAddVer": "Afegir línia vertical", - "DE.Views.DocumentHolder.txtAlignToChar": "Alineació al caràcter", + "DE.Views.DocumentHolder.toDictionaryText": "Afegeix al diccionari", + "DE.Views.DocumentHolder.txtAddBottom": "Afegeix línia inferior", + "DE.Views.DocumentHolder.txtAddFractionBar": "Afegeix una barra de fracció", + "DE.Views.DocumentHolder.txtAddHor": "Afegeix una línia horitzontal", + "DE.Views.DocumentHolder.txtAddLB": "Afegeix una línia inferior esquerra", + "DE.Views.DocumentHolder.txtAddLeft": "Afegeix una vora a l'esquerra", + "DE.Views.DocumentHolder.txtAddLT": "Afegeix una línia superior esquerra", + "DE.Views.DocumentHolder.txtAddRight": "Afegeix una vora a la dreta", + "DE.Views.DocumentHolder.txtAddTop": "Afegeix vora superior", + "DE.Views.DocumentHolder.txtAddVer": "Afegeix línia vertical", + "DE.Views.DocumentHolder.txtAlignToChar": "Alinea al caràcter", "DE.Views.DocumentHolder.txtBehind": "Darrere", "DE.Views.DocumentHolder.txtBorderProps": "Propietats de la vora", "DE.Views.DocumentHolder.txtBottom": "Part inferior", "DE.Views.DocumentHolder.txtColumnAlign": "Alineació de la columna", - "DE.Views.DocumentHolder.txtDecreaseArg": "Disminuir la mida de l’argument", - "DE.Views.DocumentHolder.txtDeleteArg": "Suprimir l'argument", - "DE.Views.DocumentHolder.txtDeleteBreak": "Suprimir el salt manual", - "DE.Views.DocumentHolder.txtDeleteChars": "Suprimir els caràcters adjunts", - "DE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "Suprimir els caràcters i els separadors adjunts", - "DE.Views.DocumentHolder.txtDeleteEq": "Suprimir l’equació", - "DE.Views.DocumentHolder.txtDeleteGroupChar": "Suprimir el gràfic", - "DE.Views.DocumentHolder.txtDeleteRadical": "Suprimir el radical", - "DE.Views.DocumentHolder.txtDistribHor": "Distribuir horitzontalment", - "DE.Views.DocumentHolder.txtDistribVert": "Distribuir verticalment", + "DE.Views.DocumentHolder.txtDecreaseArg": "Redueix la mida de l'argument", + "DE.Views.DocumentHolder.txtDeleteArg": "Suprimeix l'argument", + "DE.Views.DocumentHolder.txtDeleteBreak": "Suprimeix el salt manual", + "DE.Views.DocumentHolder.txtDeleteChars": "Suprimeix els caràcters adjunts", + "DE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "Suprimeix els caràcters i els separadors adjunts", + "DE.Views.DocumentHolder.txtDeleteEq": "Suprimeix l’equació", + "DE.Views.DocumentHolder.txtDeleteGroupChar": "Suprimeix el gràfic", + "DE.Views.DocumentHolder.txtDeleteRadical": "Suprimeix el radical", + "DE.Views.DocumentHolder.txtDistribHor": "Distribueix horitzontalment", + "DE.Views.DocumentHolder.txtDistribVert": "Distribueix verticalment", "DE.Views.DocumentHolder.txtEmpty": "(Buit)", - "DE.Views.DocumentHolder.txtFractionLinear": "Canviar a fracció lineal", - "DE.Views.DocumentHolder.txtFractionSkewed": "Canviar a fracció inclinada", - "DE.Views.DocumentHolder.txtFractionStacked": "Canviar a fracció apilada", - "DE.Views.DocumentHolder.txtGroup": "Agrupar", + "DE.Views.DocumentHolder.txtFractionLinear": "Canvia a fracció lineal", + "DE.Views.DocumentHolder.txtFractionSkewed": "Canvia a fracció inclinada", + "DE.Views.DocumentHolder.txtFractionStacked": "Canvia a fracció apilada", + "DE.Views.DocumentHolder.txtGroup": "Agrupa", "DE.Views.DocumentHolder.txtGroupCharOver": "Caràcter sobre el text", "DE.Views.DocumentHolder.txtGroupCharUnder": "Caràcter sota el text", - "DE.Views.DocumentHolder.txtHideBottom": "Amagar la vora inferior", - "DE.Views.DocumentHolder.txtHideBottomLimit": "Amagar el límit inferior", - "DE.Views.DocumentHolder.txtHideCloseBracket": "Amagar el claudàtor del tancament", - "DE.Views.DocumentHolder.txtHideDegree": "Amagar el grau", - "DE.Views.DocumentHolder.txtHideHor": "Amagar la línia horitzontal", - "DE.Views.DocumentHolder.txtHideLB": "Amagar la línia inferior esquerra", - "DE.Views.DocumentHolder.txtHideLeft": "Amagar la vora esquerra", - "DE.Views.DocumentHolder.txtHideLT": "Amagar la línia superior esquerra", - "DE.Views.DocumentHolder.txtHideOpenBracket": "Amagar el claudàtor d’obertura", - "DE.Views.DocumentHolder.txtHidePlaceholder": "Amagar el marcador de posició", - "DE.Views.DocumentHolder.txtHideRight": "Amagar la vora dreta", - "DE.Views.DocumentHolder.txtHideTop": "Amagar la vora superior", - "DE.Views.DocumentHolder.txtHideTopLimit": "Amagar el límit superior", - "DE.Views.DocumentHolder.txtHideVer": "Amagar la línia vertical", - "DE.Views.DocumentHolder.txtIncreaseArg": "Augmenteu la mida de l'argument", + "DE.Views.DocumentHolder.txtHideBottom": "Amaga la vora inferior", + "DE.Views.DocumentHolder.txtHideBottomLimit": "Amaga el límit inferior", + "DE.Views.DocumentHolder.txtHideCloseBracket": "Amaga el claudàtor de tancament", + "DE.Views.DocumentHolder.txtHideDegree": "Amaga el grau", + "DE.Views.DocumentHolder.txtHideHor": "Amaga la línia horitzontal", + "DE.Views.DocumentHolder.txtHideLB": "Amaga la línia inferior esquerra", + "DE.Views.DocumentHolder.txtHideLeft": "Amaga la vora esquerra", + "DE.Views.DocumentHolder.txtHideLT": "Amaga la línia superior esquerra", + "DE.Views.DocumentHolder.txtHideOpenBracket": "Amaga el claudàtor d’obertura", + "DE.Views.DocumentHolder.txtHidePlaceholder": "Amaga el marcador de posició", + "DE.Views.DocumentHolder.txtHideRight": "Amaga la vora dreta", + "DE.Views.DocumentHolder.txtHideTop": "Amaga la vora superior", + "DE.Views.DocumentHolder.txtHideTopLimit": "Amaga el límit superior", + "DE.Views.DocumentHolder.txtHideVer": "Amaga la línia vertical", + "DE.Views.DocumentHolder.txtIncreaseArg": "Augmenta la mida de l'argument", "DE.Views.DocumentHolder.txtInFront": "Davant", "DE.Views.DocumentHolder.txtInline": "En línia", - "DE.Views.DocumentHolder.txtInsertArgAfter": "Inseriu l'argument després", - "DE.Views.DocumentHolder.txtInsertArgBefore": "Inseriu l'argument abans", - "DE.Views.DocumentHolder.txtInsertBreak": "Inseriu un salt manual", - "DE.Views.DocumentHolder.txtInsertCaption": "Inseriu llegenda", - "DE.Views.DocumentHolder.txtInsertEqAfter": "Inseriu equació després de", - "DE.Views.DocumentHolder.txtInsertEqBefore": "Inseriu equació abans de", - "DE.Views.DocumentHolder.txtKeepTextOnly": "Conserveu només el text", - "DE.Views.DocumentHolder.txtLimitChange": "Canviar els límits de la ubicació", + "DE.Views.DocumentHolder.txtInsertArgAfter": "Insereix un argument després", + "DE.Views.DocumentHolder.txtInsertArgBefore": "Insereix un argument abans", + "DE.Views.DocumentHolder.txtInsertBreak": "Insereix un salt manual", + "DE.Views.DocumentHolder.txtInsertCaption": "Insereix una llegenda", + "DE.Views.DocumentHolder.txtInsertEqAfter": "Insereix una equació després de", + "DE.Views.DocumentHolder.txtInsertEqBefore": "Insereix una equació abans de", + "DE.Views.DocumentHolder.txtKeepTextOnly": "Conserva només el text", + "DE.Views.DocumentHolder.txtLimitChange": "Canvia els límits de la ubicació", "DE.Views.DocumentHolder.txtLimitOver": "Límit sobre el text", "DE.Views.DocumentHolder.txtLimitUnder": "Límit sota el text", "DE.Views.DocumentHolder.txtMatchBrackets": "Assigna els claudàtors a l'alçada de l'argument", "DE.Views.DocumentHolder.txtMatrixAlign": "Alineació de la matriu", "DE.Views.DocumentHolder.txtOverbar": "Barra sobre el text", - "DE.Views.DocumentHolder.txtOverwriteCells": "Sobreescriure les cel·les", - "DE.Views.DocumentHolder.txtPasteSourceFormat": "Conserveu el format original", - "DE.Views.DocumentHolder.txtPressLink": "Premeu CTRL i cliqueu a enllaç", - "DE.Views.DocumentHolder.txtPrintSelection": "Imprimir selecció", - "DE.Views.DocumentHolder.txtRemFractionBar": "Suprimir la barra de fracció", - "DE.Views.DocumentHolder.txtRemLimit": "Suprimir el límit", - "DE.Views.DocumentHolder.txtRemoveAccentChar": "Suprimiu el caràcter d'accent", - "DE.Views.DocumentHolder.txtRemoveBar": "Suprimir la barra", - "DE.Views.DocumentHolder.txtRemScripts": "Suprimir els scripts", - "DE.Views.DocumentHolder.txtRemSubscript": "Suprimir el subíndex", - "DE.Views.DocumentHolder.txtRemSuperscript": "Suprimir el superíndex", + "DE.Views.DocumentHolder.txtOverwriteCells": "Sobreescriu les cel·les", + "DE.Views.DocumentHolder.txtPasteSourceFormat": "Conserva el format original", + "DE.Views.DocumentHolder.txtPressLink": "Prem CTRL i clica a l'enllaç", + "DE.Views.DocumentHolder.txtPrintSelection": "Imprimeix la selecció", + "DE.Views.DocumentHolder.txtRemFractionBar": "Suprimeix la barra de fracció", + "DE.Views.DocumentHolder.txtRemLimit": "Suprimeix el límit", + "DE.Views.DocumentHolder.txtRemoveAccentChar": "Suprimeix el caràcter d'accent", + "DE.Views.DocumentHolder.txtRemoveBar": "Suprimeix la barra", + "DE.Views.DocumentHolder.txtRemScripts": "Suprimeix els scripts", + "DE.Views.DocumentHolder.txtRemSubscript": "Suprimeix el subíndex", + "DE.Views.DocumentHolder.txtRemSuperscript": "Suprimeix el superíndex", "DE.Views.DocumentHolder.txtScriptsAfter": "Scripts després de text", "DE.Views.DocumentHolder.txtScriptsBefore": "Scripts abans de text", - "DE.Views.DocumentHolder.txtShowBottomLimit": "Mostrar el límit inferior", - "DE.Views.DocumentHolder.txtShowCloseBracket": "Mostrar el claudàtor de tancament", - "DE.Views.DocumentHolder.txtShowDegree": "Mostrar el grau", - "DE.Views.DocumentHolder.txtShowOpenBracket": "Mostrar el claudàtor d’obertura", - "DE.Views.DocumentHolder.txtShowPlaceholder": "Mostrar el marcador de posició", - "DE.Views.DocumentHolder.txtShowTopLimit": "Mostrar el límit superior", + "DE.Views.DocumentHolder.txtShowBottomLimit": "Mostra el límit inferior", + "DE.Views.DocumentHolder.txtShowCloseBracket": "Mostra el claudàtor de tancament", + "DE.Views.DocumentHolder.txtShowDegree": "Mostra el grau", + "DE.Views.DocumentHolder.txtShowOpenBracket": "Mostra el claudàtor d’obertura", + "DE.Views.DocumentHolder.txtShowPlaceholder": "Mostra el marcador de posició", + "DE.Views.DocumentHolder.txtShowTopLimit": "Mostra el límit superior", "DE.Views.DocumentHolder.txtSquare": "Quadrat", - "DE.Views.DocumentHolder.txtStretchBrackets": "Estirar claudàtors", + "DE.Views.DocumentHolder.txtStretchBrackets": "Estira els claudàtors", "DE.Views.DocumentHolder.txtThrough": "A través", "DE.Views.DocumentHolder.txtTight": "Estret", "DE.Views.DocumentHolder.txtTop": "Superior", "DE.Views.DocumentHolder.txtTopAndBottom": "Superior i inferior", "DE.Views.DocumentHolder.txtUnderbar": "Barra sota text", - "DE.Views.DocumentHolder.txtUngroup": "Desagrupar", + "DE.Views.DocumentHolder.txtUngroup": "Desagrupa", "DE.Views.DocumentHolder.updateStyleText": "Actualitzar estil %1", "DE.Views.DocumentHolder.vertAlignText": "Alineació vertical", - "DE.Views.DropcapSettingsAdvanced.strBorders": "Vores & Omplir", + "DE.Views.DropcapSettingsAdvanced.strBorders": "Vores i emplenament", "DE.Views.DropcapSettingsAdvanced.strDropcap": "Lletra de caixa alta", "DE.Views.DropcapSettingsAdvanced.strMargins": "Marges", "DE.Views.DropcapSettingsAdvanced.textAlign": "Alineació", "DE.Views.DropcapSettingsAdvanced.textAtLeast": "Pel cap baix", "DE.Views.DropcapSettingsAdvanced.textAuto": "Automàtic", "DE.Views.DropcapSettingsAdvanced.textBackColor": "Color de fons", - "DE.Views.DropcapSettingsAdvanced.textBorderColor": "Color de vora", - "DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Cliqueu en el diagrama o utilitzeu els botons per seleccionar les vores", + "DE.Views.DropcapSettingsAdvanced.textBorderColor": "Color de la vora", + "DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Clica en el diagrama o utilitza els botons per seleccionar les vores", "DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Mida de la vora", "DE.Views.DropcapSettingsAdvanced.textBottom": "Part inferior", - "DE.Views.DropcapSettingsAdvanced.textCenter": "Centrar", + "DE.Views.DropcapSettingsAdvanced.textCenter": "Centra", "DE.Views.DropcapSettingsAdvanced.textColumn": "Columna", "DE.Views.DropcapSettingsAdvanced.textDistance": "Distància del text", "DE.Views.DropcapSettingsAdvanced.textExact": "Exacte", @@ -1600,7 +1600,7 @@ "DE.Views.DropcapSettingsAdvanced.textInText": "Al text", "DE.Views.DropcapSettingsAdvanced.textLeft": "Esquerra", "DE.Views.DropcapSettingsAdvanced.textMargin": "Marge", - "DE.Views.DropcapSettingsAdvanced.textMove": "Moure amb el text", + "DE.Views.DropcapSettingsAdvanced.textMove": "Mou amb el text", "DE.Views.DropcapSettingsAdvanced.textNone": "Cap", "DE.Views.DropcapSettingsAdvanced.textPage": "Pàgina", "DE.Views.DropcapSettingsAdvanced.textParagraph": "Paràgraf", @@ -1616,40 +1616,40 @@ "DE.Views.DropcapSettingsAdvanced.textWidth": "Amplada", "DE.Views.DropcapSettingsAdvanced.tipFontName": "Tipus de lletra", "DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Sense vores", - "DE.Views.EditListItemDialog.textDisplayName": "Mostrar el nom", + "DE.Views.EditListItemDialog.textDisplayName": "Mostra el nom", "DE.Views.EditListItemDialog.textNameError": "El nom de visualització no pot estar buit.", "DE.Views.EditListItemDialog.textValue": "Valor", "DE.Views.EditListItemDialog.textValueError": "Ja existeix un element amb el mateix valor.", - "DE.Views.FileMenu.btnBackCaption": "Obrir la ubicació del fitxer", - "DE.Views.FileMenu.btnCloseMenuCaption": "Tancar el menú", - "DE.Views.FileMenu.btnCreateNewCaption": "Crear nou", - "DE.Views.FileMenu.btnDownloadCaption": "Baixar com a...", + "DE.Views.FileMenu.btnBackCaption": "Obre la ubicació del fitxer", + "DE.Views.FileMenu.btnCloseMenuCaption": "Tanca el menú", + "DE.Views.FileMenu.btnCreateNewCaption": "Crea'n un de nou", + "DE.Views.FileMenu.btnDownloadCaption": "Baixa-ho com a...", "DE.Views.FileMenu.btnHelpCaption": "Ajuda...", "DE.Views.FileMenu.btnHistoryCaption": "Historial de versions", "DE.Views.FileMenu.btnInfoCaption": "Informació del document...", - "DE.Views.FileMenu.btnPrintCaption": "Imprimir", - "DE.Views.FileMenu.btnProtectCaption": "Protegir", - "DE.Views.FileMenu.btnRecentFilesCaption": "Obrir recent...", - "DE.Views.FileMenu.btnRenameCaption": "Canviar el nom ...", - "DE.Views.FileMenu.btnReturnCaption": "Tornar al document", + "DE.Views.FileMenu.btnPrintCaption": "Imprimeix", + "DE.Views.FileMenu.btnProtectCaption": "Protegeix", + "DE.Views.FileMenu.btnRecentFilesCaption": "Obre recent...", + "DE.Views.FileMenu.btnRenameCaption": "Canvia el nom ...", + "DE.Views.FileMenu.btnReturnCaption": "Torna al document", "DE.Views.FileMenu.btnRightsCaption": "Drets d'accés ...", - "DE.Views.FileMenu.btnSaveAsCaption": "Desar com", - "DE.Views.FileMenu.btnSaveCaption": "Desar", - "DE.Views.FileMenu.btnSaveCopyAsCaption": "Desar còpia com a...", + "DE.Views.FileMenu.btnSaveAsCaption": "Desa-ho com", + "DE.Views.FileMenu.btnSaveCaption": "Desa", + "DE.Views.FileMenu.btnSaveCopyAsCaption": "Desa còpia com a...", "DE.Views.FileMenu.btnSettingsCaption": "Configuració avançada...", - "DE.Views.FileMenu.btnToEditCaption": "Editar el document", - "DE.Views.FileMenu.textDownload": "Baixar", + "DE.Views.FileMenu.btnToEditCaption": "Edita el document", + "DE.Views.FileMenu.textDownload": "Baixa", "DE.Views.FileMenuPanels.CreateNew.fromBlankText": "Des de zero", "DE.Views.FileMenuPanels.CreateNew.fromTemplateText": "Des d'una plantilla", "DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Creeu un nou document de text en blanc que podreu estilitzar i formatar després de crear-lo durant l'edició. O bé escolliu una de les plantilles per iniciar un document d'un determinat tipus o propòsit en què ja s'hagin aplicat prèviament alguns estils.", "DE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nou document de text", "DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "No hi ha plantilles", - "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Aplicar", - "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Afegir autor", - "DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Afegir text", + "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Aplica", + "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Afegeix l'autor", + "DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Afegeix text", "DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Aplicació", "DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor", - "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Canviar els drets d’accés", + "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Canvia els drets d’accés", "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Comentari", "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Creat", "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "S'està carregant...", @@ -1667,34 +1667,34 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Títol", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "S'ha carregat", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Paraules", - "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Canviar els drets d’accés", + "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Canvia els drets d’accés", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Persones que tenen drets", "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Advertiment", "DE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Amb contrasenya", "DE.Views.FileMenuPanels.ProtectDoc.strProtect": "Protegir el document", "DE.Views.FileMenuPanels.ProtectDoc.strSignature": "Amb signatura", - "DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Editar el document", + "DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Edita el document", "DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "L’edició eliminarà les signatures del document.
Segur que voleu continuar?", "DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Aquest document està protegit amb contrasenya", "DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "Aquest document s'ha de signar.", - "DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "S'han afegit signatures vàlides al document. El document està protegit de l'edició.", + "DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "S'han afegit signatures vàlides al document. El document està protegit contra l'edició.", "DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Algunes de les signatures digitals del document no són vàlides o no s’han pogut verificar. El document està protegit contra l'edició.", "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Mostra les signatures", - "DE.Views.FileMenuPanels.Settings.okButtonText": "Aplicar", + "DE.Views.FileMenuPanels.Settings.okButtonText": "Aplica", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Activa les guies d'alineació", "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Activa la recuperació automàtica", "DE.Views.FileMenuPanels.Settings.strAutosave": "Activa el desament automàtic", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Mode de coedició", "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Els altres usuaris veuran els vostres canvis immediatament", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Haureu d’acceptar els canvis abans de poder-los veure", + "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Hauràs d’acceptar els canvis abans de poder-los veure", "DE.Views.FileMenuPanels.Settings.strFast": "Ràpid", "DE.Views.FileMenuPanels.Settings.strFontRender": "Tipus de lletra suggerides", - "DE.Views.FileMenuPanels.Settings.strForcesave": "Afegeix una versió a l'emmagatzematge després de fer clic a Desar o Ctrl+S", + "DE.Views.FileMenuPanels.Settings.strForcesave": "Afegeix la versió a l'emmagatzematge després de clicar a Desa o Ctrl + S", "DE.Views.FileMenuPanels.Settings.strInputMode": "Activa els jeroglífics", "DE.Views.FileMenuPanels.Settings.strLiveComment": "Activa la visualització dels comentaris", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Configuració de les macros", - "DE.Views.FileMenuPanels.Settings.strPaste": "Tallar, copiar i enganxar", - "DE.Views.FileMenuPanels.Settings.strPasteButton": "Mostrar el botó d'opcions d’enganxar quan s’enganxa contingut", + "DE.Views.FileMenuPanels.Settings.strPaste": "Talla copia i enganxa", + "DE.Views.FileMenuPanels.Settings.strPasteButton": "Mostra el botó d'opcions d’enganxar quan s’enganxa contingut", "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Activa la visualització dels comentaris resolts", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Canvis de col·laboració en temps real", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Activa l’opció de correcció ortogràfica", @@ -1713,13 +1713,13 @@ "DE.Views.FileMenuPanels.Settings.textDisabled": "Inhabilitat", "DE.Views.FileMenuPanels.Settings.textForceSave": "S'estan desant versions intermèdies", "DE.Views.FileMenuPanels.Settings.textMinute": "Cada minut", - "DE.Views.FileMenuPanels.Settings.textOldVersions": "Feu que els fitxers siguin compatibles amb versions anteriors de MS Word quan els deseu com a DOCX", - "DE.Views.FileMenuPanels.Settings.txtAll": "Veure-ho tot", + "DE.Views.FileMenuPanels.Settings.textOldVersions": "Fes que els fitxers siguin compatibles amb versions anteriors de MS Word quan es desin com a DOCX", + "DE.Views.FileMenuPanels.Settings.txtAll": "Mostra-ho tot", "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Opcions de correcció automàtica ...", "DE.Views.FileMenuPanels.Settings.txtCacheMode": "Mode de memòria cau per defecte", "DE.Views.FileMenuPanels.Settings.txtCm": "Centímetre", - "DE.Views.FileMenuPanels.Settings.txtFitPage": "Ajustar a la pàgina", - "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Ajustar a l'amplada", + "DE.Views.FileMenuPanels.Settings.txtFitPage": "Ajusta a la pàgina", + "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Ajusta-ho a l'amplària", "DE.Views.FileMenuPanels.Settings.txtInch": "Polzada", "DE.Views.FileMenuPanels.Settings.txtInput": "Entrada alternativa", "DE.Views.FileMenuPanels.Settings.txtLast": "Mostra l'últim", @@ -1727,26 +1727,26 @@ "DE.Views.FileMenuPanels.Settings.txtMac": "com a OS X", "DE.Views.FileMenuPanels.Settings.txtNative": "Natiu", "DE.Views.FileMenuPanels.Settings.txtNone": "No en mostris cap", - "DE.Views.FileMenuPanels.Settings.txtProofing": "Prova", + "DE.Views.FileMenuPanels.Settings.txtProofing": "Correcció", "DE.Views.FileMenuPanels.Settings.txtPt": "Punt", - "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Habilitar-ho tot", - "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Habiliteu totes les macros sense una notificació", + "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Habilita-ho tot", + "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Habilita totes les macros sense una notificació", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Revisió ortogràfica", - "DE.Views.FileMenuPanels.Settings.txtStopMacros": "Inhabilitar-ho tot", - "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Inhabilitar totes les macros sense una notificació", - "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostrar la notificació", - "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Inhabilitar totes les macros amb una notificació", + "DE.Views.FileMenuPanels.Settings.txtStopMacros": "Inhabilita-ho tot", + "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Inhabilita totes les macros sense una notificació", + "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostra la Notificació", + "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Inhabilita totes les macros amb una notificació", "DE.Views.FileMenuPanels.Settings.txtWin": "com a Windows", "DE.Views.FormSettings.textAlways": "Sempre", "DE.Views.FormSettings.textAspect": "Bloca la relació d'aspecte", "DE.Views.FormSettings.textAutofit": "Ajusta automàticament", "DE.Views.FormSettings.textCheckbox": "Casella de selecció", - "DE.Views.FormSettings.textColor": "Color de vora", + "DE.Views.FormSettings.textColor": "Color de la vora", "DE.Views.FormSettings.textComb": "Combinació de caràcters", "DE.Views.FormSettings.textCombobox": "Quadre combinat", "DE.Views.FormSettings.textConnected": "Camps connectats", - "DE.Views.FormSettings.textDelete": "Suprimir", - "DE.Views.FormSettings.textDisconnect": "Desconnectar", + "DE.Views.FormSettings.textDelete": "Suprimeix", + "DE.Views.FormSettings.textDisconnect": "Desconnecta", "DE.Views.FormSettings.textDropDown": "Desplegable", "DE.Views.FormSettings.textField": "Camp de text", "DE.Views.FormSettings.textFixed": "Camp de mida fixa", @@ -1765,15 +1765,15 @@ "DE.Views.FormSettings.textRadiobox": "Botó d'opció", "DE.Views.FormSettings.textRequired": "Necessari", "DE.Views.FormSettings.textScale": "Quan s'ajusta a escala", - "DE.Views.FormSettings.textSelectImage": "Seleccionar imatge", + "DE.Views.FormSettings.textSelectImage": "Selecciona una imatge", "DE.Views.FormSettings.textTip": "Consell", - "DE.Views.FormSettings.textTipAdd": "Afegir un valor nou", - "DE.Views.FormSettings.textTipDelete": "Suprimir el valor", - "DE.Views.FormSettings.textTipDown": "Moure cap avall", - "DE.Views.FormSettings.textTipUp": "Moure cap amunt", + "DE.Views.FormSettings.textTipAdd": "Afegeix un valor nou", + "DE.Views.FormSettings.textTipDelete": "Suprimeix el valor", + "DE.Views.FormSettings.textTipDown": "Mou cap avall", + "DE.Views.FormSettings.textTipUp": "Mou cap amunt", "DE.Views.FormSettings.textTooBig": "La imatge és massa gran", "DE.Views.FormSettings.textTooSmall": "La imatge és massa peita", - "DE.Views.FormSettings.textUnlock": "Desbloquejar", + "DE.Views.FormSettings.textUnlock": "Desbloqueja", "DE.Views.FormSettings.textValue": "Opcions de valor", "DE.Views.FormSettings.textWidth": "Amplada de la cel·la", "DE.Views.FormsTab.capBtnCheckBox": "Casella de selecció", @@ -1783,25 +1783,25 @@ "DE.Views.FormsTab.capBtnNext": "Camp següent", "DE.Views.FormsTab.capBtnPrev": "Camp anterior", "DE.Views.FormsTab.capBtnRadioBox": "Botó d'opció", - "DE.Views.FormsTab.capBtnSubmit": "Enviar", + "DE.Views.FormsTab.capBtnSubmit": "Envia", "DE.Views.FormsTab.capBtnText": "Camp de text", "DE.Views.FormsTab.capBtnView": "Mostra el formulari", - "DE.Views.FormsTab.textClear": "Esborrar els camps", - "DE.Views.FormsTab.textClearFields": "Esborrar tots els camps", - "DE.Views.FormsTab.textHighlight": "Ressaltar la configuració", - "DE.Views.FormsTab.textNewColor": "Afegir un color nou personalitzat", + "DE.Views.FormsTab.textClear": "Esborra els camps", + "DE.Views.FormsTab.textClearFields": "Esborra tots els camps", + "DE.Views.FormsTab.textHighlight": "Ressalta la configuració", + "DE.Views.FormsTab.textNewColor": "Afegeix un color personalitzat nou ", "DE.Views.FormsTab.textNoHighlight": "Sense ressaltar", - "DE.Views.FormsTab.textRequired": "Ompliu tots els camps requerits per enviar el formulari.", + "DE.Views.FormsTab.textRequired": "Emplena tots els camps necessaris per enviar el formulari.", "DE.Views.FormsTab.textSubmited": "El formulari s'ha enviat correctament", - "DE.Views.FormsTab.tipCheckBox": "Inseriu casella de selecció", - "DE.Views.FormsTab.tipComboBox": "Inseriu quadre combinat", - "DE.Views.FormsTab.tipDropDown": "Inseriu llista desplegable", - "DE.Views.FormsTab.tipImageField": "Inseriu imatge", + "DE.Views.FormsTab.tipCheckBox": "Insereix una casella de selecció", + "DE.Views.FormsTab.tipComboBox": "Insereix un quadre combinat", + "DE.Views.FormsTab.tipDropDown": "Insereix una llista desplegable", + "DE.Views.FormsTab.tipImageField": "Insereix una imatge", "DE.Views.FormsTab.tipNextForm": "Anar al camp següent", "DE.Views.FormsTab.tipPrevForm": "Anar al camp anterior", - "DE.Views.FormsTab.tipRadioBox": "Inseriu botó d'opció", - "DE.Views.FormsTab.tipSubmit": "Enviar formulari", - "DE.Views.FormsTab.tipTextField": "Inseriu camp de text", + "DE.Views.FormsTab.tipRadioBox": "Insereix un botó d'opció", + "DE.Views.FormsTab.tipSubmit": "Envia el formulari", + "DE.Views.FormsTab.tipTextField": "Inserix un camp de text", "DE.Views.FormsTab.tipViewForm": "Mostra el formulari", "DE.Views.HeaderFooterSettings.textBottomCenter": "Part inferior central", "DE.Views.HeaderFooterSettings.textBottomLeft": "Part inferior esquerra", @@ -1812,13 +1812,13 @@ "DE.Views.HeaderFooterSettings.textFrom": "Començar a", "DE.Views.HeaderFooterSettings.textHeaderFromBottom": "Peu de pàgina inferior", "DE.Views.HeaderFooterSettings.textHeaderFromTop": "Capçalera de dalt", - "DE.Views.HeaderFooterSettings.textInsertCurrent": "Inseriu en la posició actual", + "DE.Views.HeaderFooterSettings.textInsertCurrent": "Insereix en la posició actual", "DE.Views.HeaderFooterSettings.textOptions": "Opcions", - "DE.Views.HeaderFooterSettings.textPageNum": "Inseriu número de pàgina", + "DE.Views.HeaderFooterSettings.textPageNum": "Insereix un número de pàgina", "DE.Views.HeaderFooterSettings.textPageNumbering": "Numeració de pàgines", "DE.Views.HeaderFooterSettings.textPosition": "Posició", - "DE.Views.HeaderFooterSettings.textPrev": "Continuar des de la secció anterior", - "DE.Views.HeaderFooterSettings.textSameAs": "Enllaçar-ho amb l'anterior", + "DE.Views.HeaderFooterSettings.textPrev": "Continua des de la secció anterior", + "DE.Views.HeaderFooterSettings.textSameAs": "Enllaça-ho amb l'anterior", "DE.Views.HeaderFooterSettings.textTopCenter": "Superior centre", "DE.Views.HeaderFooterSettings.textTopLeft": "Superior esquerra", "DE.Views.HeaderFooterSettings.textTopPage": "Principi de pàgina", @@ -1826,35 +1826,35 @@ "DE.Views.HyperlinkSettingsDialog.textDefault": "Fragment de text seleccionat", "DE.Views.HyperlinkSettingsDialog.textDisplay": "Visualització", "DE.Views.HyperlinkSettingsDialog.textExternal": "Enllaç extern", - "DE.Views.HyperlinkSettingsDialog.textInternal": "Col·locar al document", + "DE.Views.HyperlinkSettingsDialog.textInternal": "Col·loca al document", "DE.Views.HyperlinkSettingsDialog.textTitle": "Configuració de l’enllaç", "DE.Views.HyperlinkSettingsDialog.textTooltip": "Informació en pantalla", "DE.Views.HyperlinkSettingsDialog.textUrl": "Enllaç a", "DE.Views.HyperlinkSettingsDialog.txtBeginning": "Inici del document", "DE.Views.HyperlinkSettingsDialog.txtBookmarks": "Marcadors", - "DE.Views.HyperlinkSettingsDialog.txtEmpty": "Aquest camp és obligatori", + "DE.Views.HyperlinkSettingsDialog.txtEmpty": "Aquest camp és necessari", "DE.Views.HyperlinkSettingsDialog.txtHeadings": "Capçaleres", - "DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Aquest camp hauria de ser un enllaç amb el format \"http://www.example.com\"", + "DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Aquest camp hauria de ser una URL amb el format \"http://www.example.com\"", "DE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Aquest camp està limitat a 2083 caràcters", - "DE.Views.ImageSettings.textAdvanced": "Mostrar la configuració avançada", - "DE.Views.ImageSettings.textCrop": "Retallar", - "DE.Views.ImageSettings.textCropFill": "Omplir", + "DE.Views.ImageSettings.textAdvanced": "Mostra la configuració avançada", + "DE.Views.ImageSettings.textCrop": "Retalla", + "DE.Views.ImageSettings.textCropFill": "Emplena", "DE.Views.ImageSettings.textCropFit": "Ajusta", - "DE.Views.ImageSettings.textEdit": "Editar", - "DE.Views.ImageSettings.textEditObject": "Editar l'objecte", - "DE.Views.ImageSettings.textFitMargins": "Ajustar al marge", - "DE.Views.ImageSettings.textFlip": "Capgirar", + "DE.Views.ImageSettings.textEdit": "Edita", + "DE.Views.ImageSettings.textEditObject": "Edita l'objecte", + "DE.Views.ImageSettings.textFitMargins": "Ajusta al marge", + "DE.Views.ImageSettings.textFlip": "Capgira", "DE.Views.ImageSettings.textFromFile": "Des d'un fitxer", "DE.Views.ImageSettings.textFromStorage": "Des de l’emmagatzematge", "DE.Views.ImageSettings.textFromUrl": "Des de l'URL", "DE.Views.ImageSettings.textHeight": "Alçada", - "DE.Views.ImageSettings.textHint270": "Girar 90° a l'esquerra", - "DE.Views.ImageSettings.textHint90": "Girar 90° a la dreta", - "DE.Views.ImageSettings.textHintFlipH": "Capgirar horitzontalment", - "DE.Views.ImageSettings.textHintFlipV": "Capgirar verticalment", - "DE.Views.ImageSettings.textInsert": "Substituir la imatge", + "DE.Views.ImageSettings.textHint270": "Gira 90° a l'esquerra", + "DE.Views.ImageSettings.textHint90": "Gira 90° a la dreta", + "DE.Views.ImageSettings.textHintFlipH": "Capgira horitzontalment", + "DE.Views.ImageSettings.textHintFlipV": "Capgira verticalment", + "DE.Views.ImageSettings.textInsert": "Substitueix la imatge", "DE.Views.ImageSettings.textOriginalSize": "Mida real", - "DE.Views.ImageSettings.textRotate90": "Girar 90°", + "DE.Views.ImageSettings.textRotate90": "Gira 90°", "DE.Views.ImageSettings.textRotation": "Rotació", "DE.Views.ImageSettings.textSize": "Mida", "DE.Views.ImageSettings.textWidth": "Amplada", @@ -1882,16 +1882,16 @@ "DE.Views.ImageSettingsAdvanced.textBelow": "més avall", "DE.Views.ImageSettingsAdvanced.textBevel": "Bisell", "DE.Views.ImageSettingsAdvanced.textBottom": "Part inferior", - "DE.Views.ImageSettingsAdvanced.textBottomMargin": "Inferior al Marge", + "DE.Views.ImageSettingsAdvanced.textBottomMargin": "Marge inferior", "DE.Views.ImageSettingsAdvanced.textBtnWrap": "Ajustament del text", "DE.Views.ImageSettingsAdvanced.textCapType": "Tipus de majúscules", - "DE.Views.ImageSettingsAdvanced.textCenter": "Centrar", + "DE.Views.ImageSettingsAdvanced.textCenter": "Centra", "DE.Views.ImageSettingsAdvanced.textCharacter": "Caràcter", "DE.Views.ImageSettingsAdvanced.textColumn": "Columna", "DE.Views.ImageSettingsAdvanced.textDistance": "Distància del text", "DE.Views.ImageSettingsAdvanced.textEndSize": "Mida final", "DE.Views.ImageSettingsAdvanced.textEndStyle": "Estil final", - "DE.Views.ImageSettingsAdvanced.textFlat": "Pla", + "DE.Views.ImageSettingsAdvanced.textFlat": "Sense format", "DE.Views.ImageSettingsAdvanced.textFlipped": "Capgirat", "DE.Views.ImageSettingsAdvanced.textHeight": "Alçada", "DE.Views.ImageSettingsAdvanced.textHorizontal": "Horitzontal", @@ -1904,17 +1904,17 @@ "DE.Views.ImageSettingsAdvanced.textLineStyle": "Estil de línia", "DE.Views.ImageSettingsAdvanced.textMargin": "Marge", "DE.Views.ImageSettingsAdvanced.textMiter": "Delimitador", - "DE.Views.ImageSettingsAdvanced.textMove": "Moure objecte amb text", + "DE.Views.ImageSettingsAdvanced.textMove": "Mou objecte amb text", "DE.Views.ImageSettingsAdvanced.textOptions": "Opcions", "DE.Views.ImageSettingsAdvanced.textOriginalSize": "Mida real", - "DE.Views.ImageSettingsAdvanced.textOverlap": "Permetre la superposició", + "DE.Views.ImageSettingsAdvanced.textOverlap": "Permet que se superposin", "DE.Views.ImageSettingsAdvanced.textPage": "Pàgina", "DE.Views.ImageSettingsAdvanced.textParagraph": "Paràgraf", "DE.Views.ImageSettingsAdvanced.textPosition": "Posició", "DE.Views.ImageSettingsAdvanced.textPositionPc": "Posició relativa", "DE.Views.ImageSettingsAdvanced.textRelative": "respecte a", "DE.Views.ImageSettingsAdvanced.textRelativeWH": "Relatiu", - "DE.Views.ImageSettingsAdvanced.textResizeFit": "Canviar la mida de la forma per ajustar-la al text", + "DE.Views.ImageSettingsAdvanced.textResizeFit": "Canvia la mida de la forma per ajustar-la al text", "DE.Views.ImageSettingsAdvanced.textRight": "Dreta", "DE.Views.ImageSettingsAdvanced.textRightMargin": "Marge dret", "DE.Views.ImageSettingsAdvanced.textRightOf": "a la dreta de", @@ -1924,14 +1924,14 @@ "DE.Views.ImageSettingsAdvanced.textSize": "Mida", "DE.Views.ImageSettingsAdvanced.textSquare": "Quadrat", "DE.Views.ImageSettingsAdvanced.textTextBox": "Quadre de text", - "DE.Views.ImageSettingsAdvanced.textTitle": "Imatge - Configuració Avançada", + "DE.Views.ImageSettingsAdvanced.textTitle": "Imatge - configuració avançada", "DE.Views.ImageSettingsAdvanced.textTitleChart": "Gràfic - Configuració avançada", "DE.Views.ImageSettingsAdvanced.textTitleShape": "Forma - configuració avançada", "DE.Views.ImageSettingsAdvanced.textTop": "Superior", "DE.Views.ImageSettingsAdvanced.textTopMargin": "Marge superior", "DE.Views.ImageSettingsAdvanced.textVertical": "Vertical", "DE.Views.ImageSettingsAdvanced.textVertically": "Verticalment", - "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Gruix i fletxes", + "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Pesos i fletxes", "DE.Views.ImageSettingsAdvanced.textWidth": "Amplada", "DE.Views.ImageSettingsAdvanced.textWrap": "Estil d'ajustament", "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Darrere", @@ -1946,30 +1946,30 @@ "DE.Views.LeftMenu.tipComments": "Comentaris", "DE.Views.LeftMenu.tipNavigation": "Navegació", "DE.Views.LeftMenu.tipPlugins": "Complements", - "DE.Views.LeftMenu.tipSearch": "Cercar", + "DE.Views.LeftMenu.tipSearch": "Cerca", "DE.Views.LeftMenu.tipSupport": "Comentaris i servei d'atenció al client", "DE.Views.LeftMenu.tipTitles": "Títols", "DE.Views.LeftMenu.txtDeveloper": "MODE PER A DESENVOLUPADORS", - "DE.Views.LeftMenu.txtLimit": "Limitar l'accés", + "DE.Views.LeftMenu.txtLimit": "Limita l'accés", "DE.Views.LeftMenu.txtTrial": "MODE DE PROVA", - "DE.Views.LeftMenu.txtTrialDev": "Mode de desenvolupador de prova", - "DE.Views.LineNumbersDialog.textAddLineNumbering": "Afegir numeració de línia", - "DE.Views.LineNumbersDialog.textApplyTo": "Aplicar els canvis a", - "DE.Views.LineNumbersDialog.textContinuous": "Contínua", - "DE.Views.LineNumbersDialog.textCountBy": "Contar per", + "DE.Views.LeftMenu.txtTrialDev": "Mode de desenvolupament de prova", + "DE.Views.LineNumbersDialog.textAddLineNumbering": "Afegeix números de línia", + "DE.Views.LineNumbersDialog.textApplyTo": "Aplica els canvis a", + "DE.Views.LineNumbersDialog.textContinuous": "Continu", + "DE.Views.LineNumbersDialog.textCountBy": "Recompte per", "DE.Views.LineNumbersDialog.textDocument": "Tot el document", "DE.Views.LineNumbersDialog.textForward": "Aquest punt endavant", "DE.Views.LineNumbersDialog.textFromText": "Del text", "DE.Views.LineNumbersDialog.textNumbering": "Numeració", - "DE.Views.LineNumbersDialog.textRestartEachPage": "Reinicieu cada pàgina", - "DE.Views.LineNumbersDialog.textRestartEachSection": "Reinicieu cada secció", + "DE.Views.LineNumbersDialog.textRestartEachPage": "Torna a començar a cada pàgina", + "DE.Views.LineNumbersDialog.textRestartEachSection": "Torna a començar a cada secció", "DE.Views.LineNumbersDialog.textSection": "Secció actual", - "DE.Views.LineNumbersDialog.textStartAt": "Començar a", + "DE.Views.LineNumbersDialog.textStartAt": "Comença a", "DE.Views.LineNumbersDialog.textTitle": "Números de línia", "DE.Views.LineNumbersDialog.txtAutoText": "Automàtic", "DE.Views.Links.capBtnBookmarks": "Marcador", "DE.Views.Links.capBtnCaption": "Llegenda", - "DE.Views.Links.capBtnContentsUpdate": "Actualitzar", + "DE.Views.Links.capBtnContentsUpdate": "Actualitza", "DE.Views.Links.capBtnCrossRef": "Referència creuada", "DE.Views.Links.capBtnInsContents": "Taula de continguts", "DE.Views.Links.capBtnInsFootnote": "Nota al peu de pàgina", @@ -1978,84 +1978,84 @@ "DE.Views.Links.confirmDeleteFootnotes": "Voleu suprimir totes les notes al peu de pàgina?", "DE.Views.Links.confirmReplaceTOF": "Voleu substituir la taula de figures seleccionada?", "DE.Views.Links.mniConvertNote": "Converteix totes les notes", - "DE.Views.Links.mniDelFootnote": "Suprimir totes les notes", - "DE.Views.Links.mniInsEndnote": "Inseriu nota al final", - "DE.Views.Links.mniInsFootnote": "Inseriu nota al peu de pàgina", + "DE.Views.Links.mniDelFootnote": "Suprimeix totes les notes", + "DE.Views.Links.mniInsEndnote": "Insereix una nota al final", + "DE.Views.Links.mniInsFootnote": "Insereix una nota al peu de pàgina", "DE.Views.Links.mniNoteSettings": "Configuració de notes", - "DE.Views.Links.textContentsRemove": "Suprimir la taula de continguts", + "DE.Views.Links.textContentsRemove": "Suprimeix la taula de continguts", "DE.Views.Links.textContentsSettings": "Configuració", "DE.Views.Links.textConvertToEndnotes": "Converteix totes les notes finals a notes al peu", "DE.Views.Links.textConvertToFootnotes": "Converteix totes les notes finals a notes al peu", "DE.Views.Links.textGotoEndnote": "Anar a notes al final", - "DE.Views.Links.textGotoFootnote": "Anar a notes a peu de pàgina", - "DE.Views.Links.textSwapNotes": "Intercanviar notes al peu de pàgina i notes Finals", - "DE.Views.Links.textUpdateAll": "Actualitzar la taula sencera", - "DE.Views.Links.textUpdatePages": "Actualitzar només els números de pàgina", - "DE.Views.Links.tipBookmarks": "Crear un marcador", - "DE.Views.Links.tipCaption": "Inseriu llegenda", - "DE.Views.Links.tipContents": "Inseriu taula de continguts", - "DE.Views.Links.tipContentsUpdate": "Actualitzar la taula de continguts", - "DE.Views.Links.tipCrossRef": "Inseriu referència creuada", - "DE.Views.Links.tipInsertHyperlink": "Afegir enllaç", - "DE.Views.Links.tipNotes": "Inseriu o editeu notes a peu de pàgina", - "DE.Views.Links.tipTableFigures": "Inseriu taula de figures", - "DE.Views.Links.tipTableFiguresUpdate": "Actualitzar l'índex d'il·lustracions", - "DE.Views.Links.titleUpdateTOF": "Actualitzar l'índex d'il·lustracions", + "DE.Views.Links.textGotoFootnote": "Anar a notes al peu de pàgina", + "DE.Views.Links.textSwapNotes": "Intercanvia les notes al peu de pàgina i les notes Finals", + "DE.Views.Links.textUpdateAll": "Actualitza la taula sencera", + "DE.Views.Links.textUpdatePages": "Actualitza només els números de pàgina", + "DE.Views.Links.tipBookmarks": "Crea un marcador", + "DE.Views.Links.tipCaption": "Insereix una llegenda", + "DE.Views.Links.tipContents": "Insereix una taula de continguts", + "DE.Views.Links.tipContentsUpdate": "Actualitza la taula de continguts", + "DE.Views.Links.tipCrossRef": "Insereix una referència creuada", + "DE.Views.Links.tipInsertHyperlink": "Afegeix un enllaç", + "DE.Views.Links.tipNotes": "Insereix o edita notes al peu de pàgina", + "DE.Views.Links.tipTableFigures": "Insereix un índex d'il·lustracions", + "DE.Views.Links.tipTableFiguresUpdate": "Actualitza l'índex d'il·lustracions", + "DE.Views.Links.titleUpdateTOF": "Actualitza l'índex d'il·lustracions", "DE.Views.ListSettingsDialog.textAuto": "Automàtic", - "DE.Views.ListSettingsDialog.textCenter": "Centrar", + "DE.Views.ListSettingsDialog.textCenter": "Centra", "DE.Views.ListSettingsDialog.textLeft": "Esquerra", "DE.Views.ListSettingsDialog.textLevel": "Nivell", "DE.Views.ListSettingsDialog.textPreview": "Visualització prèvia", "DE.Views.ListSettingsDialog.textRight": "Dreta", "DE.Views.ListSettingsDialog.txtAlign": "Alineació", - "DE.Views.ListSettingsDialog.txtBullet": "Vinyeta", + "DE.Views.ListSettingsDialog.txtBullet": "Pic", "DE.Views.ListSettingsDialog.txtColor": "Color", "DE.Views.ListSettingsDialog.txtFont": "Tipus de lletra i símbol", "DE.Views.ListSettingsDialog.txtLikeText": "Com un text", - "DE.Views.ListSettingsDialog.txtNewBullet": "Nova vinyeta", + "DE.Views.ListSettingsDialog.txtNewBullet": "Pic nou", "DE.Views.ListSettingsDialog.txtNone": "Cap", "DE.Views.ListSettingsDialog.txtSize": "Mida", "DE.Views.ListSettingsDialog.txtSymbol": "Símbol", "DE.Views.ListSettingsDialog.txtTitle": "Configuració de la llista", "DE.Views.ListSettingsDialog.txtType": "Tipus", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", - "DE.Views.MailMergeEmailDlg.okButtonText": "Enviar", + "DE.Views.MailMergeEmailDlg.okButtonText": "Envia", "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Tema", - "DE.Views.MailMergeEmailDlg.textAttachDocx": "Adjunteu com a DOCX", - "DE.Views.MailMergeEmailDlg.textAttachPdf": "Adjunteu com a PDF", + "DE.Views.MailMergeEmailDlg.textAttachDocx": "Adjunta com a DOCX", + "DE.Views.MailMergeEmailDlg.textAttachPdf": "Adjunta com a PDF", "DE.Views.MailMergeEmailDlg.textFileName": "Nom del fitxer", "DE.Views.MailMergeEmailDlg.textFormat": "Format de correu", "DE.Views.MailMergeEmailDlg.textFrom": "De", "DE.Views.MailMergeEmailDlg.textHTML": "HTML", "DE.Views.MailMergeEmailDlg.textMessage": "Missatge", - "DE.Views.MailMergeEmailDlg.textSubject": "Línia d'encapçalament", - "DE.Views.MailMergeEmailDlg.textTitle": "Enviar per correu electrònic", + "DE.Views.MailMergeEmailDlg.textSubject": "Tema", + "DE.Views.MailMergeEmailDlg.textTitle": "Envia per correu electrònic", "DE.Views.MailMergeEmailDlg.textTo": "Per a", "DE.Views.MailMergeEmailDlg.textWarning": "Advertiment!", - "DE.Views.MailMergeEmailDlg.textWarningMsg": "Tingueu en compte que el correu no es pot aturar un cop heu clicat al botó \"Envia\".", + "DE.Views.MailMergeEmailDlg.textWarningMsg": "Tingueu en compte que el correu no es podrà aturar un cop hagueu clicat el botó \"Envia\".", "DE.Views.MailMergeSettings.downloadMergeTitle": "S'està combinant", "DE.Views.MailMergeSettings.errorMailMergeSaveFile": "No s'ha pogut combinar.", "DE.Views.MailMergeSettings.notcriticalErrorTitle": "Advertiment", - "DE.Views.MailMergeSettings.textAddRecipients": "Afegir primer alguns destinataris a la llista", + "DE.Views.MailMergeSettings.textAddRecipients": "Afegeix primer alguns destinataris a la llista", "DE.Views.MailMergeSettings.textAll": "Tots els registres", "DE.Views.MailMergeSettings.textCurrent": "Registre actual", "DE.Views.MailMergeSettings.textDataSource": "Font de dades", "DE.Views.MailMergeSettings.textDocx": "Docx", - "DE.Views.MailMergeSettings.textDownload": "Baixar", - "DE.Views.MailMergeSettings.textEditData": "Editar la llista de destinataris", + "DE.Views.MailMergeSettings.textDownload": "Baixa", + "DE.Views.MailMergeSettings.textEditData": "Edita la llista de destinataris", "DE.Views.MailMergeSettings.textEmail": "Correu electrònic", "DE.Views.MailMergeSettings.textFrom": "De", "DE.Views.MailMergeSettings.textGoToMail": "Anar al correu", - "DE.Views.MailMergeSettings.textHighlight": "Ressaltar els camps de combinació", - "DE.Views.MailMergeSettings.textInsertField": "Inserció del camp de combinació", + "DE.Views.MailMergeSettings.textHighlight": "Ressalta els camps de combinació", + "DE.Views.MailMergeSettings.textInsertField": "Insereix un camp de combinació", "DE.Views.MailMergeSettings.textMaxRecepients": "Màxim 100 destinataris.", - "DE.Views.MailMergeSettings.textMerge": "Combinar", - "DE.Views.MailMergeSettings.textMergeFields": "Combinar camps", + "DE.Views.MailMergeSettings.textMerge": "Combina", + "DE.Views.MailMergeSettings.textMergeFields": "Combina camps", "DE.Views.MailMergeSettings.textMergeTo": "Combina-ho a", "DE.Views.MailMergeSettings.textPdf": "PDF", - "DE.Views.MailMergeSettings.textPortal": "Desar", - "DE.Views.MailMergeSettings.textPreview": "Vista prèvia dels resultats", - "DE.Views.MailMergeSettings.textReadMore": "Llegir més", + "DE.Views.MailMergeSettings.textPortal": "Desa", + "DE.Views.MailMergeSettings.textPreview": "Visualització prèvia dels resultats", + "DE.Views.MailMergeSettings.textReadMore": "Més informació", "DE.Views.MailMergeSettings.textSendMsg": "Tots els missatges de correu electrònic són a punt i s'enviaran properament.
La velocitat de l'enviament dependrà del servei de correu.
Podeu continuar treballant amb el document o tancar-lo. Un cop finalitzada l’operació, s'enviarà la notificació a la vostra adreça de correu electrònic de registre.", "DE.Views.MailMergeSettings.textTo": "Per a", "DE.Views.MailMergeSettings.txtFirst": "Al primer registre", @@ -2065,29 +2065,29 @@ "DE.Views.MailMergeSettings.txtPrev": "Al registre anterior", "DE.Views.MailMergeSettings.txtUntitled": "Sense títol", "DE.Views.MailMergeSettings.warnProcessMailMerge": "S'ha produït un error en iniciar la combinació", - "DE.Views.Navigation.txtCollapse": "Reduir-ho tot", - "DE.Views.Navigation.txtDemote": "Rebaixar el nivell", + "DE.Views.Navigation.txtCollapse": "Redueix-ho tot", + "DE.Views.Navigation.txtDemote": "Rebaixa de nivell", "DE.Views.Navigation.txtEmpty": "No hi ha cap títol al document.
Apliqueu un estil d’encapçalament al text de manera que aparegui a la taula de continguts.", "DE.Views.Navigation.txtEmptyItem": "Encapçalament buit", - "DE.Views.Navigation.txtExpand": "Desplegar-ho tot", - "DE.Views.Navigation.txtExpandToLevel": "Desplegar a nivell", - "DE.Views.Navigation.txtHeadingAfter": "Nou títol després", + "DE.Views.Navigation.txtExpand": "Expandeix-ho tot", + "DE.Views.Navigation.txtExpandToLevel": "Expandeix al nivell", + "DE.Views.Navigation.txtHeadingAfter": "Títol nou després", "DE.Views.Navigation.txtHeadingBefore": "Títol nou abans", "DE.Views.Navigation.txtNewHeading": "Subtítol nou", - "DE.Views.Navigation.txtPromote": "Promocionar", - "DE.Views.Navigation.txtSelect": "Seleccionar contingut", - "DE.Views.NoteSettingsDialog.textApply": "Aplicar", - "DE.Views.NoteSettingsDialog.textApplyTo": "Aplicar els canvis a", - "DE.Views.NoteSettingsDialog.textContinue": "Contínua", + "DE.Views.Navigation.txtPromote": "Augmenta de nivell", + "DE.Views.Navigation.txtSelect": "Selecciona el contingut", + "DE.Views.NoteSettingsDialog.textApply": "Aplica", + "DE.Views.NoteSettingsDialog.textApplyTo": "Aplica els canvis a", + "DE.Views.NoteSettingsDialog.textContinue": "Continu", "DE.Views.NoteSettingsDialog.textCustom": "Marca personalitzada", "DE.Views.NoteSettingsDialog.textDocEnd": "Final del document", "DE.Views.NoteSettingsDialog.textDocument": "Tot el document", - "DE.Views.NoteSettingsDialog.textEachPage": "Reinicieu cada pàgina", - "DE.Views.NoteSettingsDialog.textEachSection": "Reinicieu cada secció", + "DE.Views.NoteSettingsDialog.textEachPage": "Torna a començar a cada pàgina", + "DE.Views.NoteSettingsDialog.textEachSection": "Torna a començar a cada secció", "DE.Views.NoteSettingsDialog.textEndnote": "Nota al final", "DE.Views.NoteSettingsDialog.textFootnote": "Nota al peu de pàgina", "DE.Views.NoteSettingsDialog.textFormat": "Format", - "DE.Views.NoteSettingsDialog.textInsert": "Inserir", + "DE.Views.NoteSettingsDialog.textInsert": "Insereix", "DE.Views.NoteSettingsDialog.textLocation": "Ubicació", "DE.Views.NoteSettingsDialog.textNumbering": "Numeració", "DE.Views.NoteSettingsDialog.textNumFormat": "Format de número", @@ -2097,15 +2097,15 @@ "DE.Views.NoteSettingsDialog.textStart": "Començar a", "DE.Views.NoteSettingsDialog.textTextBottom": "Per sota del text", "DE.Views.NoteSettingsDialog.textTitle": "Configuració de notes", - "DE.Views.NotesRemoveDialog.textEnd": "Suprimir totes les notes al final", - "DE.Views.NotesRemoveDialog.textFoot": "Suprimir totes les notes al peu de pàgina", - "DE.Views.NotesRemoveDialog.textTitle": "Suprimir les notes", + "DE.Views.NotesRemoveDialog.textEnd": "Suprimeix totes les notes al final", + "DE.Views.NotesRemoveDialog.textFoot": "Suprimeix totes les notes al peu de pàgina", + "DE.Views.NotesRemoveDialog.textTitle": "Suprimeix les notes", "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Advertiment", "DE.Views.PageMarginsDialog.textBottom": "Part inferior", - "DE.Views.PageMarginsDialog.textGutter": "Canal", - "DE.Views.PageMarginsDialog.textGutterPosition": "Posició de canaleta", - "DE.Views.PageMarginsDialog.textInside": "Dins de", - "DE.Views.PageMarginsDialog.textLandscape": "Horitzontal", + "DE.Views.PageMarginsDialog.textGutter": "Enquadernació", + "DE.Views.PageMarginsDialog.textGutterPosition": "Posició del canal", + "DE.Views.PageMarginsDialog.textInside": "Interior", + "DE.Views.PageMarginsDialog.textLandscape": "Orientació horitzontal", "DE.Views.PageMarginsDialog.textLeft": "Esquerra", "DE.Views.PageMarginsDialog.textMirrorMargins": "Marges simètrics", "DE.Views.PageMarginsDialog.textMultiplePages": "Diverses pàgines", @@ -2130,24 +2130,24 @@ "DE.Views.ParagraphSettings.strIndentsSpecial": "Especial", "DE.Views.ParagraphSettings.strLineHeight": "Interlineat", "DE.Views.ParagraphSettings.strParagraphSpacing": "Espaiat del paràgraf", - "DE.Views.ParagraphSettings.strSomeParagraphSpace": "No afegiu interval entre paràgrafs del mateix estil", + "DE.Views.ParagraphSettings.strSomeParagraphSpace": "No afegeixis cap interval entre paràgrafs del mateix estil", "DE.Views.ParagraphSettings.strSpacingAfter": "Després", "DE.Views.ParagraphSettings.strSpacingBefore": "Abans", - "DE.Views.ParagraphSettings.textAdvanced": "Mostrar la configuració avançada", - "DE.Views.ParagraphSettings.textAt": "En", + "DE.Views.ParagraphSettings.textAdvanced": "Mostra la configuració avançada", + "DE.Views.ParagraphSettings.textAt": "A", "DE.Views.ParagraphSettings.textAtLeast": "Pel cap baix", "DE.Views.ParagraphSettings.textAuto": "Múltiple", - "DE.Views.ParagraphSettings.textBackColor": "Color de Fons", + "DE.Views.ParagraphSettings.textBackColor": "Color de fons", "DE.Views.ParagraphSettings.textExact": "Exacte", "DE.Views.ParagraphSettings.textFirstLine": "Primera línia", "DE.Views.ParagraphSettings.textHanging": "Sagnia francesa", "DE.Views.ParagraphSettings.textNoneSpecial": "(cap)", "DE.Views.ParagraphSettings.txtAutoText": "Automàtic", - "DE.Views.ParagraphSettingsAdvanced.noTabs": "Les pestanyes especificades apareixeran en aquest camp", - "DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Majúscules ", - "DE.Views.ParagraphSettingsAdvanced.strBorders": "Vores & Omplir", + "DE.Views.ParagraphSettingsAdvanced.noTabs": "Els tabuladors especificats apareixeran en aquest camp", + "DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Tot en majúscules", + "DE.Views.ParagraphSettingsAdvanced.strBorders": "Vores i emplenament", "DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Salt de pàgina anterior", - "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Doble ratllat", + "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Ratllat doble", "DE.Views.ParagraphSettingsAdvanced.strIndent": "Sagnats", "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Esquerra", "DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Interlineat", @@ -2156,33 +2156,33 @@ "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Després", "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Abans", "DE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Especial", - "DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Conserveu les línies juntes", - "DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Conserveu amb el següent", + "DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Conserva les línies juntes", + "DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Conserva amb el següent", "DE.Views.ParagraphSettingsAdvanced.strMargins": "Espaiats", "DE.Views.ParagraphSettingsAdvanced.strOrphan": "Control de línies orfes", "DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Tipus de lletra", - "DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Sagnat i Espaiat", + "DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Sagnia i espaiat", "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Salts de línia i de pàgina", "DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Ubicació", "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Versaletes", - "DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "No afegiu interval entre paràgrafs del mateix estil", + "DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "No afegeixis cap interval entre paràgrafs del mateix estil", "DE.Views.ParagraphSettingsAdvanced.strSpacing": "Espaiat", "DE.Views.ParagraphSettingsAdvanced.strStrike": "Ratllat", "DE.Views.ParagraphSettingsAdvanced.strSubscript": "Subíndex", "DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Superíndex", - "DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "Suprimir els números de línia", + "DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "Suprimeix els números de línia", "DE.Views.ParagraphSettingsAdvanced.strTabs": "Tabuladors", "DE.Views.ParagraphSettingsAdvanced.textAlign": "Alineació", "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Pel cap baix", "DE.Views.ParagraphSettingsAdvanced.textAuto": "Múltiple", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Color de fons", "DE.Views.ParagraphSettingsAdvanced.textBodyText": "Text bàsic", - "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Color de vora", - "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Cliqueu en el diagrama o utilitzeu els botons per seleccionar les vores i apliqueu-los l'estil escollit", + "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Color de la vora", + "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Clica en el diagrama o utilitza els botons per seleccionar les vores i apliqueu-los l'estil escollit", "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Mida de la vora", "DE.Views.ParagraphSettingsAdvanced.textBottom": "Part inferior", "DE.Views.ParagraphSettingsAdvanced.textCentered": "Centrat", - "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espai entre caràcters", + "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espaiat entre caràcters", "DE.Views.ParagraphSettingsAdvanced.textDefault": "Tabulació predeterminada", "DE.Views.ParagraphSettingsAdvanced.textEffects": "Efectes", "DE.Views.ParagraphSettingsAdvanced.textExact": "Exacte", @@ -2195,25 +2195,25 @@ "DE.Views.ParagraphSettingsAdvanced.textNone": "Cap", "DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(cap)", "DE.Views.ParagraphSettingsAdvanced.textPosition": "Posició", - "DE.Views.ParagraphSettingsAdvanced.textRemove": "Suprimir", - "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Suprimir-ho tot", + "DE.Views.ParagraphSettingsAdvanced.textRemove": "Suprimeix", + "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Suprimeix-ho tot", "DE.Views.ParagraphSettingsAdvanced.textRight": "Dreta", - "DE.Views.ParagraphSettingsAdvanced.textSet": "Especificar", + "DE.Views.ParagraphSettingsAdvanced.textSet": "Especifica", "DE.Views.ParagraphSettingsAdvanced.textSpacing": "Espaiat", - "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Centre", + "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Centra", "DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Esquerra", "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Posició del tabulador", "DE.Views.ParagraphSettingsAdvanced.textTabRight": "Dreta", "DE.Views.ParagraphSettingsAdvanced.textTitle": "Paràgraf - Configuració Avançada", "DE.Views.ParagraphSettingsAdvanced.textTop": "Superior", - "DE.Views.ParagraphSettingsAdvanced.tipAll": "Establir el límit exterior i totes les línies interiors", - "DE.Views.ParagraphSettingsAdvanced.tipBottom": "Establir només la vora inferior", - "DE.Views.ParagraphSettingsAdvanced.tipInner": "Establir només les línies interiors horitzontals", - "DE.Views.ParagraphSettingsAdvanced.tipLeft": "Establir només la vora esquerra", - "DE.Views.ParagraphSettingsAdvanced.tipNone": "No establir vores", - "DE.Views.ParagraphSettingsAdvanced.tipOuter": "Establir només la vora exterior", - "DE.Views.ParagraphSettingsAdvanced.tipRight": "Establir només la vora dreta", - "DE.Views.ParagraphSettingsAdvanced.tipTop": "Establir només la vora superior", + "DE.Views.ParagraphSettingsAdvanced.tipAll": "Estableix el límit exterior i totes les línies interiors", + "DE.Views.ParagraphSettingsAdvanced.tipBottom": "Estableix només la vora inferior", + "DE.Views.ParagraphSettingsAdvanced.tipInner": "Estableix només les línies interiors horitzontals", + "DE.Views.ParagraphSettingsAdvanced.tipLeft": "Estableix només la vora esquerra", + "DE.Views.ParagraphSettingsAdvanced.tipNone": "No estableixis vores", + "DE.Views.ParagraphSettingsAdvanced.tipOuter": "Estableix només la vora exterior", + "DE.Views.ParagraphSettingsAdvanced.tipRight": "Estableix només la vora dreta", + "DE.Views.ParagraphSettingsAdvanced.tipTop": "Estableix només la vora superior", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automàtic", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Sense vores", "DE.Views.RightMenu.txtChartSettings": "Configuració del gràfic", @@ -2229,47 +2229,47 @@ "DE.Views.ShapeSettings.strBackground": "Color de fons", "DE.Views.ShapeSettings.strChange": "Canvia la forma automàtica", "DE.Views.ShapeSettings.strColor": "Color", - "DE.Views.ShapeSettings.strFill": "Omplir", + "DE.Views.ShapeSettings.strFill": "Emplena", "DE.Views.ShapeSettings.strForeground": "Color de primer pla", "DE.Views.ShapeSettings.strPattern": "Patró", - "DE.Views.ShapeSettings.strShadow": "Mostrar l'ombra", + "DE.Views.ShapeSettings.strShadow": "Mostra l'ombra", "DE.Views.ShapeSettings.strSize": "Mida", "DE.Views.ShapeSettings.strStroke": "Línia", "DE.Views.ShapeSettings.strTransparency": "Opacitat", "DE.Views.ShapeSettings.strType": "Tipus", - "DE.Views.ShapeSettings.textAdvanced": "Mostrar la configuració avançada", + "DE.Views.ShapeSettings.textAdvanced": "Mostra la configuració avançada", "DE.Views.ShapeSettings.textAngle": "Angle", "DE.Views.ShapeSettings.textBorderSizeErr": "El valor introduït no és correcte.
Introduïu un valor entre 0 pt i 1584 pt.", - "DE.Views.ShapeSettings.textColor": "Color de farcit", + "DE.Views.ShapeSettings.textColor": "Color d'emplenament", "DE.Views.ShapeSettings.textDirection": "Direcció", "DE.Views.ShapeSettings.textEmptyPattern": "Sense patró", - "DE.Views.ShapeSettings.textFlip": "Capgirar", + "DE.Views.ShapeSettings.textFlip": "Capgira", "DE.Views.ShapeSettings.textFromFile": "Des d'un fitxer", "DE.Views.ShapeSettings.textFromStorage": "Des de l’emmagatzematge", "DE.Views.ShapeSettings.textFromUrl": "Des de l'URL", - "DE.Views.ShapeSettings.textGradient": "Punts de degradat", - "DE.Views.ShapeSettings.textGradientFill": "Omplir el degradat", - "DE.Views.ShapeSettings.textHint270": "Girar 90° a l'esquerra", - "DE.Views.ShapeSettings.textHint90": "Girar 90° a la dreta", + "DE.Views.ShapeSettings.textGradient": "Degradat", + "DE.Views.ShapeSettings.textGradientFill": "Emplenament de gradient", + "DE.Views.ShapeSettings.textHint270": "Gira 90° a l'esquerra", + "DE.Views.ShapeSettings.textHint90": "Gira 90° a la dreta", "DE.Views.ShapeSettings.textHintFlipH": "Capgirar horitzontalment", - "DE.Views.ShapeSettings.textHintFlipV": "Capgirar verticalment", + "DE.Views.ShapeSettings.textHintFlipV": "Capgira verticalment", "DE.Views.ShapeSettings.textImageTexture": "Imatge o textura", "DE.Views.ShapeSettings.textLinear": "Lineal", "DE.Views.ShapeSettings.textNoFill": "Sense emplenament", "DE.Views.ShapeSettings.textPatternFill": "Patró", "DE.Views.ShapeSettings.textPosition": "Posició", "DE.Views.ShapeSettings.textRadial": "Radial", - "DE.Views.ShapeSettings.textRotate90": "Girar 90°", + "DE.Views.ShapeSettings.textRotate90": "Gira 90°", "DE.Views.ShapeSettings.textRotation": "Rotació", - "DE.Views.ShapeSettings.textSelectImage": "Seleccionar imatge", - "DE.Views.ShapeSettings.textSelectTexture": "Seleccionar", - "DE.Views.ShapeSettings.textStretch": "Estirar", + "DE.Views.ShapeSettings.textSelectImage": "Selecciona una imatge", + "DE.Views.ShapeSettings.textSelectTexture": "Selecciona", + "DE.Views.ShapeSettings.textStretch": "Estira", "DE.Views.ShapeSettings.textStyle": "Estil", "DE.Views.ShapeSettings.textTexture": "Des de la textura", "DE.Views.ShapeSettings.textTile": "Mosaic", "DE.Views.ShapeSettings.textWrap": "Estil d'ajustament", - "DE.Views.ShapeSettings.tipAddGradientPoint": "Afegir punt de degradat", - "DE.Views.ShapeSettings.tipRemoveGradientPoint": "Suprimir el punt de degradat", + "DE.Views.ShapeSettings.tipAddGradientPoint": "Afegeix un punt de degradat", + "DE.Views.ShapeSettings.tipRemoveGradientPoint": "Suprimeix el punt de degradat", "DE.Views.ShapeSettings.txtBehind": "Darrere", "DE.Views.ShapeSettings.txtBrownPaper": "Paper marró", "DE.Views.ShapeSettings.txtCanvas": "Llenç", @@ -2290,48 +2290,48 @@ "DE.Views.ShapeSettings.txtTopAndBottom": "Superior i inferior", "DE.Views.ShapeSettings.txtWood": "Fusta", "DE.Views.SignatureSettings.notcriticalErrorTitle": "Advertiment", - "DE.Views.SignatureSettings.strDelete": "Suprimir la signatura", + "DE.Views.SignatureSettings.strDelete": "Suprimeix la signatura", "DE.Views.SignatureSettings.strDetails": "Detalls de la signatura", "DE.Views.SignatureSettings.strInvalid": "Les signatures no són vàlides", "DE.Views.SignatureSettings.strRequested": "Signatures sol·licitades", "DE.Views.SignatureSettings.strSetup": "Configuració de la signatura", - "DE.Views.SignatureSettings.strSign": "Signar", + "DE.Views.SignatureSettings.strSign": "Signa", "DE.Views.SignatureSettings.strSignature": "Signatura", "DE.Views.SignatureSettings.strSigner": "Signant", "DE.Views.SignatureSettings.strValid": "Signatures vàlides", - "DE.Views.SignatureSettings.txtContinueEditing": "Editar de totes maneres", + "DE.Views.SignatureSettings.txtContinueEditing": "Edita de totes maneres", "DE.Views.SignatureSettings.txtEditWarning": "L’edició eliminarà les signatures del document.
Segur que voleu continuar?", - "DE.Views.SignatureSettings.txtRemoveWarning": "Voleu eliminar aquesta signatura?
No es pot desfer.", + "DE.Views.SignatureSettings.txtRemoveWarning": "Voleu eliminar aquesta signatura?
No es podrà desfer.", "DE.Views.SignatureSettings.txtRequestedSignatures": "Aquest document s'ha de signar.", - "DE.Views.SignatureSettings.txtSigned": "S'han afegit signatures vàlides al document. El document està protegit de l'edició.", + "DE.Views.SignatureSettings.txtSigned": "S'han afegit signatures vàlides al document. El document està protegit contra l'edició.", "DE.Views.SignatureSettings.txtSignedInvalid": "Algunes de les signatures digitals del document no són vàlides o no s’han pogut verificar. El document està protegit contra l'edició.", "DE.Views.Statusbar.goToPageText": "Anar a la pàgina", "DE.Views.Statusbar.pageIndexText": "Pàgina {0} de {1}", - "DE.Views.Statusbar.tipFitPage": "Ajustar a la pàgina", - "DE.Views.Statusbar.tipFitWidth": "Ajustar a l'amplada", - "DE.Views.Statusbar.tipSetLang": "Establir l'idioma del text", - "DE.Views.Statusbar.tipZoomFactor": "Ampliar", - "DE.Views.Statusbar.tipZoomIn": "Ampliar", - "DE.Views.Statusbar.tipZoomOut": "Reduir", + "DE.Views.Statusbar.tipFitPage": "Ajusta a la pàgina", + "DE.Views.Statusbar.tipFitWidth": "Ajusta-ho a l'amplària", + "DE.Views.Statusbar.tipSetLang": "Estableix l'idioma de text", + "DE.Views.Statusbar.tipZoomFactor": "Zoom", + "DE.Views.Statusbar.tipZoomIn": "Amplia", + "DE.Views.Statusbar.tipZoomOut": "Redueix", "DE.Views.Statusbar.txtPageNumInvalid": "El número de pàgina no és vàlid", - "DE.Views.StyleTitleDialog.textHeader": "Crear nou estil", + "DE.Views.StyleTitleDialog.textHeader": "Crea un estil nou", "DE.Views.StyleTitleDialog.textNextStyle": "Estil de paràgraf següent", "DE.Views.StyleTitleDialog.textTitle": "Títol", - "DE.Views.StyleTitleDialog.txtEmpty": "Aquest camp és obligatori", + "DE.Views.StyleTitleDialog.txtEmpty": "Aquest camp és necessari", "DE.Views.StyleTitleDialog.txtNotEmpty": "El camp no pot estar buit", "DE.Views.StyleTitleDialog.txtSameAs": "Igual que el nou estil creat", - "DE.Views.TableFormulaDialog.textBookmark": "Enganxar el marcador", + "DE.Views.TableFormulaDialog.textBookmark": "Enganxa el marcador", "DE.Views.TableFormulaDialog.textFormat": "Format de número", "DE.Views.TableFormulaDialog.textFormula": "Fórmula", - "DE.Views.TableFormulaDialog.textInsertFunction": "Enganxar la funció", + "DE.Views.TableFormulaDialog.textInsertFunction": "Enganxa la funció", "DE.Views.TableFormulaDialog.textTitle": "Configuració de la fórmula", - "DE.Views.TableOfContentsSettings.strAlign": "Alinear a la dreta els números de pàgina", - "DE.Views.TableOfContentsSettings.strFullCaption": "Inclogueu l'etiqueta i el número", + "DE.Views.TableOfContentsSettings.strAlign": "Alinea a la dreta els números de pàgina", + "DE.Views.TableOfContentsSettings.strFullCaption": "Inclou l'etiqueta i el número", "DE.Views.TableOfContentsSettings.strLinks": "Format de la taula de continguts com a enllaços", "DE.Views.TableOfContentsSettings.strLinksOF": "Formatar la taula de figures com a enllaços", - "DE.Views.TableOfContentsSettings.strShowPages": "Mostrar els números de la pàgina", - "DE.Views.TableOfContentsSettings.textBuildTable": "Crea la taula de continguts a partir de", - "DE.Views.TableOfContentsSettings.textBuildTableOF": "Crear una taula de figures a partir de", + "DE.Views.TableOfContentsSettings.strShowPages": "Mostra els números de la pàgina", + "DE.Views.TableOfContentsSettings.textBuildTable": "Crea una taula de continguts a partir de", + "DE.Views.TableOfContentsSettings.textBuildTableOF": "Crea una taula de figures a partir de", "DE.Views.TableOfContentsSettings.textEquation": "Equació", "DE.Views.TableOfContentsSettings.textFigure": "Il·lustració", "DE.Views.TableOfContentsSettings.textLeader": "Guia", @@ -2339,9 +2339,9 @@ "DE.Views.TableOfContentsSettings.textLevels": "Nivells", "DE.Views.TableOfContentsSettings.textNone": "Cap", "DE.Views.TableOfContentsSettings.textRadioCaption": "Llegenda", - "DE.Views.TableOfContentsSettings.textRadioLevels": "Nivells de perfil", + "DE.Views.TableOfContentsSettings.textRadioLevels": "Nivell d'esquema", "DE.Views.TableOfContentsSettings.textRadioStyle": "Estil", - "DE.Views.TableOfContentsSettings.textRadioStyles": "Seleccionar estils", + "DE.Views.TableOfContentsSettings.textRadioStyles": "Selecciona els estils", "DE.Views.TableOfContentsSettings.textStyle": "Estil", "DE.Views.TableOfContentsSettings.textStyles": "Estils", "DE.Views.TableOfContentsSettings.textTable": "Taula", @@ -2356,23 +2356,23 @@ "DE.Views.TableOfContentsSettings.txtOnline": "En línia", "DE.Views.TableOfContentsSettings.txtSimple": "Simple", "DE.Views.TableOfContentsSettings.txtStandard": "Estàndard", - "DE.Views.TableSettings.deleteColumnText": "Suprimir la columna", - "DE.Views.TableSettings.deleteRowText": "Suprimir la fila", - "DE.Views.TableSettings.deleteTableText": "Suprimir la taula", - "DE.Views.TableSettings.insertColumnLeftText": "Inseriu columna a l'esquerra", - "DE.Views.TableSettings.insertColumnRightText": "Inseriu columna a la dreta", - "DE.Views.TableSettings.insertRowAboveText": "Inseriu fila a dalt", - "DE.Views.TableSettings.insertRowBelowText": "Inseriu fila a baix", - "DE.Views.TableSettings.mergeCellsText": "Combina cel·les", - "DE.Views.TableSettings.selectCellText": "Seleccionar cel·la", - "DE.Views.TableSettings.selectColumnText": "Seleccionar columna", - "DE.Views.TableSettings.selectRowText": "Seleccionar fila", - "DE.Views.TableSettings.selectTableText": "Seleccionar taula", - "DE.Views.TableSettings.splitCellsText": "Dividir cel·la...", - "DE.Views.TableSettings.splitCellTitleText": "Dividir cel·la", - "DE.Views.TableSettings.strRepeatRow": "Repetiu com a fila de capçalera a la part superior de cada pàgina", - "DE.Views.TableSettings.textAddFormula": "Afegir fórmula", - "DE.Views.TableSettings.textAdvanced": "Mostrar la configuració avançada", + "DE.Views.TableSettings.deleteColumnText": "Suprimeix la columna", + "DE.Views.TableSettings.deleteRowText": "Suprimeix la fila", + "DE.Views.TableSettings.deleteTableText": "Suprimeix la taula", + "DE.Views.TableSettings.insertColumnLeftText": "Insereix una columna a l'esquerra", + "DE.Views.TableSettings.insertColumnRightText": "Insereix una columna a la dreta", + "DE.Views.TableSettings.insertRowAboveText": "Insereix una fila a dalt", + "DE.Views.TableSettings.insertRowBelowText": "Insereix una fila a baix", + "DE.Views.TableSettings.mergeCellsText": "Combina les cel·les", + "DE.Views.TableSettings.selectCellText": "Selecciona la cel·la", + "DE.Views.TableSettings.selectColumnText": "Selecciona la columna", + "DE.Views.TableSettings.selectRowText": "Selecciona una fila", + "DE.Views.TableSettings.selectTableText": "Selecciona una taula", + "DE.Views.TableSettings.splitCellsText": "Divideix la cel·la...", + "DE.Views.TableSettings.splitCellTitleText": "Divideix la cel·la", + "DE.Views.TableSettings.strRepeatRow": "Repeteix com a fila de capçalera al principi de cada pàgina", + "DE.Views.TableSettings.textAddFormula": "Afegeix una fórmula", + "DE.Views.TableSettings.textAdvanced": "Mostra la configuració avançada", "DE.Views.TableSettings.textBackColor": "Color de fons", "DE.Views.TableSettings.textBanded": "En bandes", "DE.Views.TableSettings.textBorderColor": "Color", @@ -2380,8 +2380,8 @@ "DE.Views.TableSettings.textCellSize": "Mida de files i columnes", "DE.Views.TableSettings.textColumns": "Columnes", "DE.Views.TableSettings.textConvert": "Converteix la taula a text", - "DE.Views.TableSettings.textDistributeCols": "Distribuir les columnes", - "DE.Views.TableSettings.textDistributeRows": "Distribuir les files", + "DE.Views.TableSettings.textDistributeCols": "Distribueix les columnes", + "DE.Views.TableSettings.textDistributeRows": "Distribueix les files", "DE.Views.TableSettings.textEdit": "Files i columnes", "DE.Views.TableSettings.textEmptyTemplate": "Sense plantilles", "DE.Views.TableSettings.textFirst": "Primer", @@ -2389,23 +2389,23 @@ "DE.Views.TableSettings.textHeight": "Alçada", "DE.Views.TableSettings.textLast": "Últim", "DE.Views.TableSettings.textRows": "Files", - "DE.Views.TableSettings.textSelectBorders": "Seleccioneu les vores que vulgueu canviar aplicant l'estil escollit anteriorment", - "DE.Views.TableSettings.textTemplate": "Seleccionar de plantilla", + "DE.Views.TableSettings.textSelectBorders": "Selecciona les vores que vulguis canviar tot aplicant l'estil escollit anteriorment", + "DE.Views.TableSettings.textTemplate": "Selecciona de plantilla", "DE.Views.TableSettings.textTotal": "Total", "DE.Views.TableSettings.textWidth": "Amplada", - "DE.Views.TableSettings.tipAll": "Establir el límit exterior i totes les línies interiors", - "DE.Views.TableSettings.tipBottom": "Establir només la vora inferior exterior", - "DE.Views.TableSettings.tipInner": "Establir només les línies interiors", - "DE.Views.TableSettings.tipInnerHor": "Establir només les línies interiors horitzontals", - "DE.Views.TableSettings.tipInnerVert": "Establir només línies interiors verticals", - "DE.Views.TableSettings.tipLeft": "Establir només la vora exterior esquerra", - "DE.Views.TableSettings.tipNone": "No establir vores", - "DE.Views.TableSettings.tipOuter": "Establir només la vora exterior", - "DE.Views.TableSettings.tipRight": "Establir només la vora exterior dreta", - "DE.Views.TableSettings.tipTop": "Establir només la vora superior externa", + "DE.Views.TableSettings.tipAll": "Estableix el límit exterior i totes les línies interiors", + "DE.Views.TableSettings.tipBottom": "Estableix només la vora inferior exterior", + "DE.Views.TableSettings.tipInner": "Estableix només les línies interiors", + "DE.Views.TableSettings.tipInnerHor": "Estableix només les línies interiors horitzontals", + "DE.Views.TableSettings.tipInnerVert": "Estableix només línies interiors verticals", + "DE.Views.TableSettings.tipLeft": "Estableix només la vora exterior esquerra", + "DE.Views.TableSettings.tipNone": "No estableixis vores", + "DE.Views.TableSettings.tipOuter": "Estableix només la vora exterior", + "DE.Views.TableSettings.tipRight": "Estableix només la vora exterior dreta", + "DE.Views.TableSettings.tipTop": "Estableix només la vora superior externa", "DE.Views.TableSettings.txtNoBorders": "Sense vores", "DE.Views.TableSettings.txtTable_Accent": "Accent", - "DE.Views.TableSettings.txtTable_Colorful": "Colorit", + "DE.Views.TableSettings.txtTable_Colorful": "Multicolor", "DE.Views.TableSettings.txtTable_Dark": "Fosc", "DE.Views.TableSettings.txtTable_GridTable": "Taula amb quadrícula", "DE.Views.TableSettings.txtTable_Light": "Clar", @@ -2420,33 +2420,33 @@ "DE.Views.TableSettingsAdvanced.textAltTip": "La representació de la informació dels objectes visuals que es basa en text alternatiu, es llegirà en veu alta per ajudar les persones amb dificultats de visió o cognició perquè puguin comprendre millor la informació que hi ha a la imatge, autoforma, gràfic o taula.", "DE.Views.TableSettingsAdvanced.textAltTitle": "Títol", "DE.Views.TableSettingsAdvanced.textAnchorText": "Text", - "DE.Views.TableSettingsAdvanced.textAutofit": "Canvieu la mida automàticament per ajustar-la al contingut", + "DE.Views.TableSettingsAdvanced.textAutofit": "Canvia la mida automàticament per ajustar-la al contingut", "DE.Views.TableSettingsAdvanced.textBackColor": "Fons de la cel·la", "DE.Views.TableSettingsAdvanced.textBelow": "més avall", - "DE.Views.TableSettingsAdvanced.textBorderColor": "Color de vora", - "DE.Views.TableSettingsAdvanced.textBorderDesc": "Cliqueu en el diagrama o utilitzeu els botons per seleccionar les vores i apliqueu-los l'estil escollit", - "DE.Views.TableSettingsAdvanced.textBordersBackgroung": "Vores & Fons", + "DE.Views.TableSettingsAdvanced.textBorderColor": "Color de la vora", + "DE.Views.TableSettingsAdvanced.textBorderDesc": "Clica en el diagrama o utilitza els botons per seleccionar les vores i apliqueu-los l'estil escollit", + "DE.Views.TableSettingsAdvanced.textBordersBackgroung": "Vores i fons", "DE.Views.TableSettingsAdvanced.textBorderWidth": "Mida de la vora", "DE.Views.TableSettingsAdvanced.textBottom": "Part inferior", "DE.Views.TableSettingsAdvanced.textCellOptions": "Opcions de la cel·la", "DE.Views.TableSettingsAdvanced.textCellProps": "Cel·la", "DE.Views.TableSettingsAdvanced.textCellSize": "Mida de la cel·la", - "DE.Views.TableSettingsAdvanced.textCenter": "Centrar", - "DE.Views.TableSettingsAdvanced.textCenterTooltip": "Centrar", - "DE.Views.TableSettingsAdvanced.textCheckMargins": "Utilitzar marges predeterminats", + "DE.Views.TableSettingsAdvanced.textCenter": "Centra", + "DE.Views.TableSettingsAdvanced.textCenterTooltip": "Centra", + "DE.Views.TableSettingsAdvanced.textCheckMargins": "Fes servir els marges predeterminats", "DE.Views.TableSettingsAdvanced.textDefaultMargins": "Marges de cel·la predeterminats", "DE.Views.TableSettingsAdvanced.textDistance": "Distància del text", "DE.Views.TableSettingsAdvanced.textHorizontal": "Horitzontal", - "DE.Views.TableSettingsAdvanced.textIndLeft": "Sagnar a l'esquerra", + "DE.Views.TableSettingsAdvanced.textIndLeft": "Sagnia des de l'esquerra", "DE.Views.TableSettingsAdvanced.textLeft": "Esquerra", "DE.Views.TableSettingsAdvanced.textLeftTooltip": "Esquerra", "DE.Views.TableSettingsAdvanced.textMargin": "Marge", "DE.Views.TableSettingsAdvanced.textMargins": "Marges de la cel·la", - "DE.Views.TableSettingsAdvanced.textMeasure": "Mesurar en", - "DE.Views.TableSettingsAdvanced.textMove": "Moure objecte amb text", + "DE.Views.TableSettingsAdvanced.textMeasure": "Mesura-ho en", + "DE.Views.TableSettingsAdvanced.textMove": "Mou objecte amb text", "DE.Views.TableSettingsAdvanced.textOnlyCells": "Només per a les cel·les seleccionades", "DE.Views.TableSettingsAdvanced.textOptions": "Opcions", - "DE.Views.TableSettingsAdvanced.textOverlap": "Permetre la superposició", + "DE.Views.TableSettingsAdvanced.textOverlap": "Permet que se superposin", "DE.Views.TableSettingsAdvanced.textPage": "Pàgina", "DE.Views.TableSettingsAdvanced.textPosition": "Posició", "DE.Views.TableSettingsAdvanced.textPrefWidth": "Amplada preferida", @@ -2468,73 +2468,73 @@ "DE.Views.TableSettingsAdvanced.textWrapNoneTooltip": "Taula en línia", "DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "Taula de flux", "DE.Views.TableSettingsAdvanced.textWrappingStyle": "Estil d'ajustament", - "DE.Views.TableSettingsAdvanced.textWrapText": "Ajustar el text", - "DE.Views.TableSettingsAdvanced.tipAll": "Establir el límit exterior i totes les línies interiors", - "DE.Views.TableSettingsAdvanced.tipCellAll": "Establir les vores només per a les cel·les interiors", - "DE.Views.TableSettingsAdvanced.tipCellInner": "Establir línies verticals i horitzontals només per a cel·les interiors", - "DE.Views.TableSettingsAdvanced.tipCellOuter": "Establir els límits exteriors només per a les cel·les interiors", - "DE.Views.TableSettingsAdvanced.tipInner": "Establir només les línies interiors", - "DE.Views.TableSettingsAdvanced.tipNone": "No establir vores", - "DE.Views.TableSettingsAdvanced.tipOuter": "Establir només la vora exterior", - "DE.Views.TableSettingsAdvanced.tipTableOuterCellAll": "Establir el límit exterior i les vores de totes les cel·les interiors", - "DE.Views.TableSettingsAdvanced.tipTableOuterCellInner": "Establir el límit exterior i les línies verticals i horitzontals per a les cel·les interiors", - "DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter": "Establir la vora exterior de la taula i les vores exteriors de les cel·les interiors", + "DE.Views.TableSettingsAdvanced.textWrapText": "Ajusta el text", + "DE.Views.TableSettingsAdvanced.tipAll": "Estableix el límit exterior i totes les línies interiors", + "DE.Views.TableSettingsAdvanced.tipCellAll": "Estableix les vores només per a les cel·les interiors", + "DE.Views.TableSettingsAdvanced.tipCellInner": "Estableix línies verticals i horitzontals només per a cel·les interiors", + "DE.Views.TableSettingsAdvanced.tipCellOuter": "Estableix els límits exteriors només per a les cel·les interiors", + "DE.Views.TableSettingsAdvanced.tipInner": "Estableix només les línies interiors", + "DE.Views.TableSettingsAdvanced.tipNone": "No estableixis vores", + "DE.Views.TableSettingsAdvanced.tipOuter": "Estableix només la vora exterior", + "DE.Views.TableSettingsAdvanced.tipTableOuterCellAll": "Estableix el límit exterior i les vores de totes les cel·les interiors", + "DE.Views.TableSettingsAdvanced.tipTableOuterCellInner": "Estableix el límit exterior i les línies verticals i horitzontals per a les cel·les interiors", + "DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter": "Estableix la vora exterior de la taula i les vores exteriors de les cel·les interiors", "DE.Views.TableSettingsAdvanced.txtCm": "Centímetre", "DE.Views.TableSettingsAdvanced.txtInch": "Polzada", "DE.Views.TableSettingsAdvanced.txtNoBorders": "Sense vores", "DE.Views.TableSettingsAdvanced.txtPercent": "Per cent", "DE.Views.TableSettingsAdvanced.txtPt": "Punt", - "DE.Views.TableToTextDialog.textEmpty": "Heu d'introduir un caràcter per al separador personalitzat.", + "DE.Views.TableToTextDialog.textEmpty": "Has d'introduir un caràcter per al separador personalitzat.", "DE.Views.TableToTextDialog.textNested": "Converteix les taules imbricades", "DE.Views.TableToTextDialog.textOther": "Altre", "DE.Views.TableToTextDialog.textPara": "Marques de paràgraf", "DE.Views.TableToTextDialog.textSemicolon": "Punts i coma", - "DE.Views.TableToTextDialog.textSeparator": "Separar el text amb", + "DE.Views.TableToTextDialog.textSeparator": "Separa el text amb", "DE.Views.TableToTextDialog.textTab": "Tabuladors", "DE.Views.TableToTextDialog.textTitle": "Converteix la taula a text", "DE.Views.TextArtSettings.strColor": "Color", - "DE.Views.TextArtSettings.strFill": "Omplir", + "DE.Views.TextArtSettings.strFill": "Emplena", "DE.Views.TextArtSettings.strSize": "Mida", "DE.Views.TextArtSettings.strStroke": "Línia", "DE.Views.TextArtSettings.strTransparency": "Opacitat", "DE.Views.TextArtSettings.strType": "Tipus", "DE.Views.TextArtSettings.textAngle": "Angle", "DE.Views.TextArtSettings.textBorderSizeErr": "El valor introduït no és correcte.
Introduïu un valor entre 0 pt i 1584 pt.", - "DE.Views.TextArtSettings.textColor": "Color de farcit", + "DE.Views.TextArtSettings.textColor": "Color d'emplenament", "DE.Views.TextArtSettings.textDirection": "Direcció", - "DE.Views.TextArtSettings.textGradient": "Punts de degradat", - "DE.Views.TextArtSettings.textGradientFill": "Omplir el degradat", + "DE.Views.TextArtSettings.textGradient": "Degradat", + "DE.Views.TextArtSettings.textGradientFill": "Emplenament de gradient", "DE.Views.TextArtSettings.textLinear": "Lineal", "DE.Views.TextArtSettings.textNoFill": "Sense emplenament", "DE.Views.TextArtSettings.textPosition": "Posició", "DE.Views.TextArtSettings.textRadial": "Radial", - "DE.Views.TextArtSettings.textSelectTexture": "Seleccionar", + "DE.Views.TextArtSettings.textSelectTexture": "Selecciona", "DE.Views.TextArtSettings.textStyle": "Estil", "DE.Views.TextArtSettings.textTemplate": "Plantilla", - "DE.Views.TextArtSettings.textTransform": "Transformar", - "DE.Views.TextArtSettings.tipAddGradientPoint": "Afegir punt de degradat", - "DE.Views.TextArtSettings.tipRemoveGradientPoint": "Suprimir el punt de degradat", + "DE.Views.TextArtSettings.textTransform": "Transforma", + "DE.Views.TextArtSettings.tipAddGradientPoint": "Afegeix un punt de degradat", + "DE.Views.TextArtSettings.tipRemoveGradientPoint": "Suprimeix el punt de degradat", "DE.Views.TextArtSettings.txtNoBorders": "Sense línia", "DE.Views.TextToTableDialog.textAutofit": "Ajustament automàtic", "DE.Views.TextToTableDialog.textColumns": "Columnes", - "DE.Views.TextToTableDialog.textContents": "Ajustar automàticament al contingut", - "DE.Views.TextToTableDialog.textEmpty": "Heu d'introduir un caràcter per al separador personalitzat.", + "DE.Views.TextToTableDialog.textContents": "Ajusta automàticament al contingut", + "DE.Views.TextToTableDialog.textEmpty": "Has d'introduir un caràcter per al separador personalitzat.", "DE.Views.TextToTableDialog.textFixed": "Amplada fixa de columna", "DE.Views.TextToTableDialog.textOther": "Altre", "DE.Views.TextToTableDialog.textPara": "Paràgrafs", "DE.Views.TextToTableDialog.textRows": "Files", "DE.Views.TextToTableDialog.textSemicolon": "Punts i coma", - "DE.Views.TextToTableDialog.textSeparator": "Separar el text a", + "DE.Views.TextToTableDialog.textSeparator": "Separa el text a", "DE.Views.TextToTableDialog.textTab": "Tabuladors", "DE.Views.TextToTableDialog.textTableSize": "Mida de la taula", "DE.Views.TextToTableDialog.textTitle": "Converteix el text a taula", - "DE.Views.TextToTableDialog.textWindow": "Ajustar automàticament a la finestra", + "DE.Views.TextToTableDialog.textWindow": "Ajusta automàticament a la finestra", "DE.Views.TextToTableDialog.txtAutoText": "Automàtic", - "DE.Views.Toolbar.capBtnAddComment": "Afegir comentari", + "DE.Views.Toolbar.capBtnAddComment": "Afegeix un comentari", "DE.Views.Toolbar.capBtnBlankPage": "Pàgina en blanc", "DE.Views.Toolbar.capBtnColumns": "Columnes", "DE.Views.Toolbar.capBtnComment": "Comentari", - "DE.Views.Toolbar.capBtnDateTime": "Data & Hora", + "DE.Views.Toolbar.capBtnDateTime": "Hora i data", "DE.Views.Toolbar.capBtnInsChart": "Gràfic", "DE.Views.Toolbar.capBtnInsControls": "Controls de contingut", "DE.Views.Toolbar.capBtnInsDropcap": "Lletra de caixa alta", @@ -2552,24 +2552,24 @@ "DE.Views.Toolbar.capBtnPageOrient": "Orientació", "DE.Views.Toolbar.capBtnPageSize": "Mida", "DE.Views.Toolbar.capBtnWatermark": "Filigrana", - "DE.Views.Toolbar.capImgAlign": "Alinear", - "DE.Views.Toolbar.capImgBackward": "Enviar cap endarrere", - "DE.Views.Toolbar.capImgForward": "Portar endavant", - "DE.Views.Toolbar.capImgGroup": "Agrupar", + "DE.Views.Toolbar.capImgAlign": "Alinea", + "DE.Views.Toolbar.capImgBackward": "Envia cap enrere", + "DE.Views.Toolbar.capImgForward": "Porta endavant", + "DE.Views.Toolbar.capImgGroup": "Agrupa", "DE.Views.Toolbar.capImgWrapping": "S'està ajustant", - "DE.Views.Toolbar.mniCapitalizeWords": "Posar en majúscules cada paraula", - "DE.Views.Toolbar.mniCustomTable": "Inseriu taula personalitzada", + "DE.Views.Toolbar.mniCapitalizeWords": "Escriu en majúscules cada paraula", + "DE.Views.Toolbar.mniCustomTable": "Insereix una taula personalitzada", "DE.Views.Toolbar.mniDrawTable": "Dibuixar una taula", "DE.Views.Toolbar.mniEditControls": "Configuració de control", - "DE.Views.Toolbar.mniEditDropCap": "Configuració lletra de caixa alta", - "DE.Views.Toolbar.mniEditFooter": "Editar el peu de pàgina", - "DE.Views.Toolbar.mniEditHeader": "Editar la capçalera", - "DE.Views.Toolbar.mniEraseTable": "Suprimir la taula", - "DE.Views.Toolbar.mniHiddenBorders": "Vores de taules amagades", + "DE.Views.Toolbar.mniEditDropCap": "Configuració de la lletra de caixa alta", + "DE.Views.Toolbar.mniEditFooter": "Edita el peu de pàgina", + "DE.Views.Toolbar.mniEditHeader": "Edita la capçalera", + "DE.Views.Toolbar.mniEraseTable": "Suprimeix la taula", + "DE.Views.Toolbar.mniHiddenBorders": "Les vores de la taula estan amagades", "DE.Views.Toolbar.mniHiddenChars": "Caràcters que no es poden imprimir", - "DE.Views.Toolbar.mniHighlightControls": "Ressaltar la configuració", + "DE.Views.Toolbar.mniHighlightControls": "Ressalta la configuració", "DE.Views.Toolbar.mniImageFromFile": "Imatge del fitxer", - "DE.Views.Toolbar.mniImageFromStorage": "Imatge d'emmagatzematge", + "DE.Views.Toolbar.mniImageFromStorage": "Imatge de l'emmagatzematge", "DE.Views.Toolbar.mniImageFromUrl": "Imatge d'URL", "DE.Views.Toolbar.mniLowerCase": "minúscules", "DE.Views.Toolbar.mniSentenceCase": "Format de frase.", @@ -2589,60 +2589,60 @@ "DE.Views.Toolbar.textColumnsThree": "Tres", "DE.Views.Toolbar.textColumnsTwo": "Dos", "DE.Views.Toolbar.textComboboxControl": "Quadre combinat", - "DE.Views.Toolbar.textContinuous": "Contínua", + "DE.Views.Toolbar.textContinuous": "Continu", "DE.Views.Toolbar.textContPage": "Pàgina contínua", "DE.Views.Toolbar.textCustomLineNumbers": "Opcions de números de línia", "DE.Views.Toolbar.textDateControl": "Data", "DE.Views.Toolbar.textDropdownControl": "Llista desplegable", - "DE.Views.Toolbar.textEditWatermark": "Personalitzar la filigrana", + "DE.Views.Toolbar.textEditWatermark": "Personalitza la filigrana", "DE.Views.Toolbar.textEvenPage": "Pàgina parell", "DE.Views.Toolbar.textInMargin": "Al marge", - "DE.Views.Toolbar.textInsColumnBreak": "Inseriu columna", - "DE.Views.Toolbar.textInsertPageCount": "Inseriu el nombre de pàgines", - "DE.Views.Toolbar.textInsertPageNumber": "Inseriu número de pàgina", - "DE.Views.Toolbar.textInsPageBreak": "Inseriu salt de pàgina", - "DE.Views.Toolbar.textInsSectionBreak": "Inseriu salt de secció", + "DE.Views.Toolbar.textInsColumnBreak": "Insereix un salt de columna", + "DE.Views.Toolbar.textInsertPageCount": "Insereix el nombre de pàgines", + "DE.Views.Toolbar.textInsertPageNumber": "Insereix un número de pàgina", + "DE.Views.Toolbar.textInsPageBreak": "Insereix un salt de pàgina", + "DE.Views.Toolbar.textInsSectionBreak": "Insereix un salt de secció", "DE.Views.Toolbar.textInText": "Al text", "DE.Views.Toolbar.textItalic": "Cursiva", - "DE.Views.Toolbar.textLandscape": "Horitzontal", + "DE.Views.Toolbar.textLandscape": "Orientació horitzontal", "DE.Views.Toolbar.textLeft": "Esquerra:", "DE.Views.Toolbar.textListSettings": "Configuració de la llista", "DE.Views.Toolbar.textMarginsLast": "Darrera personalització", - "DE.Views.Toolbar.textMarginsModerate": "Moderar", + "DE.Views.Toolbar.textMarginsModerate": "Moderada", "DE.Views.Toolbar.textMarginsNarrow": "Estret", "DE.Views.Toolbar.textMarginsNormal": "Normal", "DE.Views.Toolbar.textMarginsUsNormal": "US Normal", "DE.Views.Toolbar.textMarginsWide": "Ample", - "DE.Views.Toolbar.textNewColor": "Afegir un color nou personalitzat", + "DE.Views.Toolbar.textNewColor": "Afegeix un color personalitzat nou ", "DE.Views.Toolbar.textNextPage": "Pàgina següent", "DE.Views.Toolbar.textNoHighlight": "Sense ressaltar", "DE.Views.Toolbar.textNone": "Cap", "DE.Views.Toolbar.textOddPage": "Pàgina senar", "DE.Views.Toolbar.textPageMarginsCustom": "Marges personalitzats", - "DE.Views.Toolbar.textPageSizeCustom": "Personalitzar la mida de la pàgina", + "DE.Views.Toolbar.textPageSizeCustom": "Personalitza la mida de la pàgina", "DE.Views.Toolbar.textPictureControl": "Imatge", "DE.Views.Toolbar.textPlainControl": "Text sense format", "DE.Views.Toolbar.textPortrait": "Orientació vertical", - "DE.Views.Toolbar.textRemoveControl": "Suprimir el control de contingut", - "DE.Views.Toolbar.textRemWatermark": "Suprimir la filigrana", - "DE.Views.Toolbar.textRestartEachPage": "Reinicieu cada pàgina", - "DE.Views.Toolbar.textRestartEachSection": "Reinicieu cada secció", + "DE.Views.Toolbar.textRemoveControl": "Suprimeix el control de contingut", + "DE.Views.Toolbar.textRemWatermark": "Suprimeix la filigrana", + "DE.Views.Toolbar.textRestartEachPage": "Torna a començar a cada pàgina", + "DE.Views.Toolbar.textRestartEachSection": "Torna a començar a cada secció", "DE.Views.Toolbar.textRichControl": "Text enriquit", "DE.Views.Toolbar.textRight": "Dreta:", "DE.Views.Toolbar.textStrikeout": "Ratllat", - "DE.Views.Toolbar.textStyleMenuDelete": "Suprimir l'estil", + "DE.Views.Toolbar.textStyleMenuDelete": "Suprimeix l'estil", "DE.Views.Toolbar.textStyleMenuDeleteAll": "Suprimeix tots els estils personalitzats", - "DE.Views.Toolbar.textStyleMenuNew": "Nou estil de la selecció", - "DE.Views.Toolbar.textStyleMenuRestore": "Restaurar als valors predeterminats", - "DE.Views.Toolbar.textStyleMenuRestoreAll": "Restaurar tot a estils predeterminats", - "DE.Views.Toolbar.textStyleMenuUpdate": "Actualitzar des de la selecció", + "DE.Views.Toolbar.textStyleMenuNew": "Estil nou de la selecció", + "DE.Views.Toolbar.textStyleMenuRestore": "Restaura als valors predeterminats", + "DE.Views.Toolbar.textStyleMenuRestoreAll": "Restaura-ho tot als estils per defecte", + "DE.Views.Toolbar.textStyleMenuUpdate": "Actualitza des de la selecció", "DE.Views.Toolbar.textSubscript": "Subíndex", "DE.Views.Toolbar.textSuperscript": "Superíndex", - "DE.Views.Toolbar.textSuppressForCurrentParagraph": "Suprimir el paràgraf actual", + "DE.Views.Toolbar.textSuppressForCurrentParagraph": "Suprimeix el paràgraf actual", "DE.Views.Toolbar.textTabCollaboration": "Col·laboració", "DE.Views.Toolbar.textTabFile": "Fitxer", "DE.Views.Toolbar.textTabHome": "Inici", - "DE.Views.Toolbar.textTabInsert": "Inserir", + "DE.Views.Toolbar.textTabInsert": "Insereix", "DE.Views.Toolbar.textTabLayout": "Disposició", "DE.Views.Toolbar.textTabLinks": "Referències", "DE.Views.Toolbar.textTabProtect": "Protecció", @@ -2650,72 +2650,72 @@ "DE.Views.Toolbar.textTitleError": "Error", "DE.Views.Toolbar.textToCurrent": "A la posició actual", "DE.Views.Toolbar.textTop": "Superior:", - "DE.Views.Toolbar.textUnderline": "Subratllar", - "DE.Views.Toolbar.tipAlignCenter": "Centrar", + "DE.Views.Toolbar.textUnderline": "Subratllat", + "DE.Views.Toolbar.tipAlignCenter": "Alinea al centre", "DE.Views.Toolbar.tipAlignJust": "Justificat", - "DE.Views.Toolbar.tipAlignLeft": "Alineació a l'esquerra", - "DE.Views.Toolbar.tipAlignRight": "Alineació a la dreta", - "DE.Views.Toolbar.tipBack": "Endarrere", - "DE.Views.Toolbar.tipBlankPage": "Inseriu pàgina en blanc", + "DE.Views.Toolbar.tipAlignLeft": "Alinea a l'esquerra", + "DE.Views.Toolbar.tipAlignRight": "Alinea a la dreta", + "DE.Views.Toolbar.tipBack": "Enrere", + "DE.Views.Toolbar.tipBlankPage": "Insereix una pàgina en blanc", "DE.Views.Toolbar.tipChangeCase": "Canvia el cas", - "DE.Views.Toolbar.tipChangeChart": "Canviar el tipus de gràfic", - "DE.Views.Toolbar.tipClearStyle": "Esborrar l'estil", - "DE.Views.Toolbar.tipColorSchemas": "Canviar l'esquema de color", - "DE.Views.Toolbar.tipColumns": "Inseriu columnes", - "DE.Views.Toolbar.tipControls": "Inseriu controls de contingut", - "DE.Views.Toolbar.tipCopy": "Copiar", - "DE.Views.Toolbar.tipCopyStyle": "Copiar estil", - "DE.Views.Toolbar.tipDateTime": "Inseriu la data i l'hora actuals", - "DE.Views.Toolbar.tipDecFont": "Disminuir la mida del tipus de lletra", - "DE.Views.Toolbar.tipDecPrLeft": "Disminuir el sagnat", - "DE.Views.Toolbar.tipDropCap": "Inseriu lletra de caixa alta", - "DE.Views.Toolbar.tipEditHeader": "Editar la capçalera o el peu de pàgina", + "DE.Views.Toolbar.tipChangeChart": "Canvia el tipus de gràfic", + "DE.Views.Toolbar.tipClearStyle": "Esborra l'estil", + "DE.Views.Toolbar.tipColorSchemas": "Canvia l'esquema de color", + "DE.Views.Toolbar.tipColumns": "Insereix columnes", + "DE.Views.Toolbar.tipControls": "Insereix controls de contingut", + "DE.Views.Toolbar.tipCopy": "Copia", + "DE.Views.Toolbar.tipCopyStyle": "Copia l'estil", + "DE.Views.Toolbar.tipDateTime": "Insereix la data i l'hora actuals", + "DE.Views.Toolbar.tipDecFont": "Redueix la mida del tipus de lletra", + "DE.Views.Toolbar.tipDecPrLeft": "Redueix la mida de la sagnia", + "DE.Views.Toolbar.tipDropCap": "Insereix lletra de caixa alta", + "DE.Views.Toolbar.tipEditHeader": "Edita la capçalera o el peu de pàgina", "DE.Views.Toolbar.tipFontColor": "Color del tipus de lletra", "DE.Views.Toolbar.tipFontName": "Tipus de lletra", "DE.Views.Toolbar.tipFontSize": "Mida del tipus de lletra", "DE.Views.Toolbar.tipHighlightColor": "Color de ressaltat", - "DE.Views.Toolbar.tipImgAlign": "Alinear objectes", - "DE.Views.Toolbar.tipImgGroup": "Agrupar objectes", - "DE.Views.Toolbar.tipImgWrapping": "Ajustar el text", - "DE.Views.Toolbar.tipIncFont": "Augmenteu la mida de la lletra", - "DE.Views.Toolbar.tipIncPrLeft": "Augmenteu el sagnat", - "DE.Views.Toolbar.tipInsertChart": "Inseriu gràfic", - "DE.Views.Toolbar.tipInsertEquation": "Inseriu equació", - "DE.Views.Toolbar.tipInsertImage": "Inseriu imatge", - "DE.Views.Toolbar.tipInsertNum": "Inseriu número de pàgina", - "DE.Views.Toolbar.tipInsertShape": "Inseriu forma automàtica", - "DE.Views.Toolbar.tipInsertSymbol": "Inseriu símbol", - "DE.Views.Toolbar.tipInsertTable": "Inseriu taula", - "DE.Views.Toolbar.tipInsertText": "Inseriu quadre de text", - "DE.Views.Toolbar.tipInsertTextArt": "Inseriu text art", - "DE.Views.Toolbar.tipLineNumbers": "Mostrar els números de línia", + "DE.Views.Toolbar.tipImgAlign": "Alinea objectes", + "DE.Views.Toolbar.tipImgGroup": "Agrupa objectes", + "DE.Views.Toolbar.tipImgWrapping": "Ajusta el text", + "DE.Views.Toolbar.tipIncFont": "Augmenta la mida del tipus de lletra", + "DE.Views.Toolbar.tipIncPrLeft": "Augmenta el sagnat", + "DE.Views.Toolbar.tipInsertChart": "Insereix un gràfic", + "DE.Views.Toolbar.tipInsertEquation": "Insereix una equació", + "DE.Views.Toolbar.tipInsertImage": "Insereix una imatge", + "DE.Views.Toolbar.tipInsertNum": "Insereix un número de pàgina", + "DE.Views.Toolbar.tipInsertShape": "Insereix una forma automàtica", + "DE.Views.Toolbar.tipInsertSymbol": "Insereix un símbol", + "DE.Views.Toolbar.tipInsertTable": "Insereix una taula", + "DE.Views.Toolbar.tipInsertText": "Insereix un quadre de text", + "DE.Views.Toolbar.tipInsertTextArt": "Insereix art ASCII", + "DE.Views.Toolbar.tipLineNumbers": "Mostra els números de línia", "DE.Views.Toolbar.tipLineSpace": "Interlineat del paràgraf", - "DE.Views.Toolbar.tipMailRecepients": "Combinació de correu", + "DE.Views.Toolbar.tipMailRecepients": "Combina la correspondència", "DE.Views.Toolbar.tipMarkers": "Pics", "DE.Views.Toolbar.tipMultilevels": "Llista amb diversos nivells", "DE.Views.Toolbar.tipNumbers": "Numeració", - "DE.Views.Toolbar.tipPageBreak": "Inseriu salt de pàgina o de secció", + "DE.Views.Toolbar.tipPageBreak": "Insereix un salt de pàgina o de secció", "DE.Views.Toolbar.tipPageMargins": "Marges de la pàgina", "DE.Views.Toolbar.tipPageOrient": "Orientació de la pàgina", "DE.Views.Toolbar.tipPageSize": "Mida de la pàgina", "DE.Views.Toolbar.tipParagraphStyle": "Estil del paràgraf", - "DE.Views.Toolbar.tipPaste": "Enganxar", + "DE.Views.Toolbar.tipPaste": "Enganxa", "DE.Views.Toolbar.tipPrColor": "Color de fons del paràgraf", - "DE.Views.Toolbar.tipPrint": "Imprimir", - "DE.Views.Toolbar.tipRedo": "Refer", - "DE.Views.Toolbar.tipSave": "Desar", - "DE.Views.Toolbar.tipSaveCoauth": "Desar els canvis perquè altres usuaris els puguin veure.", - "DE.Views.Toolbar.tipSendBackward": "Enviar cap endarrere", - "DE.Views.Toolbar.tipSendForward": "Portar endavant", + "DE.Views.Toolbar.tipPrint": "Imprimeix", + "DE.Views.Toolbar.tipRedo": "Refés", + "DE.Views.Toolbar.tipSave": "Desa", + "DE.Views.Toolbar.tipSaveCoauth": "Desa els canvis perquè altres usuaris els puguin veure.", + "DE.Views.Toolbar.tipSendBackward": "Envia cap enrere", + "DE.Views.Toolbar.tipSendForward": "Porta endavant", "DE.Views.Toolbar.tipShowHiddenChars": "Caràcters que no es poden imprimir", "DE.Views.Toolbar.tipSynchronize": "Un altre usuari ha canviat el document. Cliqueu per desar els canvis i carregar les actualitzacions.", "DE.Views.Toolbar.tipUndo": "Desfer", - "DE.Views.Toolbar.tipWatermark": "Editar la filigrana", - "DE.Views.Toolbar.txtDistribHor": "Distribuir horitzontalment", - "DE.Views.Toolbar.txtDistribVert": "Distribuir verticalment", - "DE.Views.Toolbar.txtMarginAlign": "Alineació al marge", - "DE.Views.Toolbar.txtObjectsAlign": "Alinear els objectes seleccionats", - "DE.Views.Toolbar.txtPageAlign": "Alinear a la pàgina", + "DE.Views.Toolbar.tipWatermark": "Edita la filigrana", + "DE.Views.Toolbar.txtDistribHor": "Distribueix horitzontalment", + "DE.Views.Toolbar.txtDistribVert": "Distribueix verticalment", + "DE.Views.Toolbar.txtMarginAlign": "Alinea-ho al marge", + "DE.Views.Toolbar.txtObjectsAlign": "Alinea els objectes seleccionats", + "DE.Views.Toolbar.txtPageAlign": "Alinea-ho a la pàgina", "DE.Views.Toolbar.txtScheme1": "Office", "DE.Views.Toolbar.txtScheme10": "Mediana", "DE.Views.Toolbar.txtScheme11": "Metro", @@ -2726,7 +2726,7 @@ "DE.Views.Toolbar.txtScheme16": "Paper", "DE.Views.Toolbar.txtScheme17": "Solstici", "DE.Views.Toolbar.txtScheme18": "Tècnic", - "DE.Views.Toolbar.txtScheme19": "Viatges", + "DE.Views.Toolbar.txtScheme19": "Excursió", "DE.Views.Toolbar.txtScheme2": "Escala de grisos", "DE.Views.Toolbar.txtScheme20": "Urbà", "DE.Views.Toolbar.txtScheme21": "Inspiració", @@ -2737,7 +2737,7 @@ "DE.Views.Toolbar.txtScheme6": "Esplanada", "DE.Views.Toolbar.txtScheme7": "Equitat", "DE.Views.Toolbar.txtScheme8": "Flux", - "DE.Views.Toolbar.txtScheme9": "Fosa", + "DE.Views.Toolbar.txtScheme9": "Foneria", "DE.Views.WatermarkSettingsDialog.textAuto": "Automàtic", "DE.Views.WatermarkSettingsDialog.textBold": "Negreta", "DE.Views.WatermarkSettingsDialog.textColor": "Color del text", @@ -2751,16 +2751,16 @@ "DE.Views.WatermarkSettingsDialog.textItalic": "Cursiva", "DE.Views.WatermarkSettingsDialog.textLanguage": "Idioma", "DE.Views.WatermarkSettingsDialog.textLayout": "Disposició", - "DE.Views.WatermarkSettingsDialog.textNewColor": "Afegir un color nou personalitzat", + "DE.Views.WatermarkSettingsDialog.textNewColor": "Afegeix un color personalitzat nou ", "DE.Views.WatermarkSettingsDialog.textNone": "Cap", "DE.Views.WatermarkSettingsDialog.textScale": "Escala", - "DE.Views.WatermarkSettingsDialog.textSelect": "Seleccionar imatge", + "DE.Views.WatermarkSettingsDialog.textSelect": "Selecciona una imatge", "DE.Views.WatermarkSettingsDialog.textStrikeout": "Ratllat", "DE.Views.WatermarkSettingsDialog.textText": "Text", "DE.Views.WatermarkSettingsDialog.textTextW": "Filigrana de text", "DE.Views.WatermarkSettingsDialog.textTitle": "Configuració de la filigrana", "DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparent", - "DE.Views.WatermarkSettingsDialog.textUnderline": "Subratllar", + "DE.Views.WatermarkSettingsDialog.textUnderline": "Subratllat", "DE.Views.WatermarkSettingsDialog.tipFontName": "Nom del tipus de lletra", "DE.Views.WatermarkSettingsDialog.tipFontSize": "Mida del tipus de lletra" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/de.json b/apps/documenteditor/main/locale/de.json index ecfbca9c6..54885acc5 100644 --- a/apps/documenteditor/main/locale/de.json +++ b/apps/documenteditor/main/locale/de.json @@ -206,7 +206,7 @@ "Common.Views.About.txtVersion": "Version ", "Common.Views.AutoCorrectDialog.textAdd": "Hinzufügen", "Common.Views.AutoCorrectDialog.textApplyText": "Bei der Eingabe anwenden", - "Common.Views.AutoCorrectDialog.textAutoCorrect": "Autokorrektur", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Autokorrektur für Text", "Common.Views.AutoCorrectDialog.textAutoFormat": "AutoFormat während der Eingabe", "Common.Views.AutoCorrectDialog.textBulleted": "Automatische Aufzählungen", "Common.Views.AutoCorrectDialog.textBy": "Nach", @@ -382,6 +382,8 @@ "Common.Views.ReviewChanges.txtHistory": "Versionshistorie", "Common.Views.ReviewChanges.txtMarkup": "Alle Änderungen (Bearbeitung)", "Common.Views.ReviewChanges.txtMarkupCap": "Markup", + "Common.Views.ReviewChanges.txtMarkupSimple": "Alle Änderungen (Bearbeitung)
Sprechblasen ausblenden", + "Common.Views.ReviewChanges.txtMarkupSimpleCap": "Einfaches Markup", "Common.Views.ReviewChanges.txtNext": "Zur nächsten Änderung", "Common.Views.ReviewChanges.txtOff": "DEAKTIVIERT für mich", "Common.Views.ReviewChanges.txtOffGlobal": "DEAKTIVIERT für alle", @@ -517,6 +519,7 @@ "DE.Controllers.Main.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.Controllers.Main.errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor", "DE.Controllers.Main.errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen", + "DE.Controllers.Main.errorLoadingFont": "Schriftarten nicht hochgeladen.
Bitte wenden Sie sich an Administratoren von Ihrem Document Server.", "DE.Controllers.Main.errorMailMergeLoadFile": "Fehler beim Laden des Dokuments. Bitte wählen Sie eine andere Datei.", "DE.Controllers.Main.errorMailMergeSaveFile": "Merge ist fehlgeschlagen.", "DE.Controllers.Main.errorProcessSaveResult": "Speichern ist fehlgeschlagen.", @@ -1397,6 +1400,7 @@ "DE.Views.DocumentHolder.mergeCellsText": "Zellen verbinden", "DE.Views.DocumentHolder.moreText": "Mehr Varianten...", "DE.Views.DocumentHolder.noSpellVariantsText": "Keine Varianten", + "DE.Views.DocumentHolder.notcriticalErrorTitle": "Warnung", "DE.Views.DocumentHolder.originalSizeText": "Tatsächliche Größe", "DE.Views.DocumentHolder.paragraphText": "Absatz", "DE.Views.DocumentHolder.removeHyperlinkText": "Hyperlink entfernen", @@ -1554,6 +1558,7 @@ "DE.Views.DocumentHolder.txtRemLimit": "Grenzwert entfernen", "DE.Views.DocumentHolder.txtRemoveAccentChar": "Akzentzeichen entfernen", "DE.Views.DocumentHolder.txtRemoveBar": "Leiste entfernen", + "DE.Views.DocumentHolder.txtRemoveWarning": "Möchten Sie diese Signatur wirklich entfernen?
Dies kann nicht rückgängig gemacht werden.", "DE.Views.DocumentHolder.txtRemScripts": "Skripts entfernen", "DE.Views.DocumentHolder.txtRemSubscript": "Tiefstellung entfernen", "DE.Views.DocumentHolder.txtRemSuperscript": "Hochstellung entfernen", diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 1d6153624..f313f76af 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -206,7 +206,7 @@ "Common.Views.About.txtVersion": "Version ", "Common.Views.AutoCorrectDialog.textAdd": "Add", "Common.Views.AutoCorrectDialog.textApplyText": "Apply As You Type", - "Common.Views.AutoCorrectDialog.textAutoCorrect": "AutoCorrect", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Text AutoCorrect", "Common.Views.AutoCorrectDialog.textAutoFormat": "AutoFormat As You Type", "Common.Views.AutoCorrectDialog.textBulleted": "Automatic bulleted lists", "Common.Views.AutoCorrectDialog.textBy": "By", @@ -382,6 +382,8 @@ "Common.Views.ReviewChanges.txtHistory": "Version History", "Common.Views.ReviewChanges.txtMarkup": "All changes (Editing)", "Common.Views.ReviewChanges.txtMarkupCap": "Markup", + "Common.Views.ReviewChanges.txtMarkupSimple": "All changes (Editing)
Turn off balloons", + "Common.Views.ReviewChanges.txtMarkupSimpleCap": "Simple Markup", "Common.Views.ReviewChanges.txtNext": "Next", "Common.Views.ReviewChanges.txtOff": "OFF for me", "Common.Views.ReviewChanges.txtOffGlobal": "OFF for me and everyone", @@ -398,8 +400,6 @@ "Common.Views.ReviewChanges.txtSpelling": "Spell Checking", "Common.Views.ReviewChanges.txtTurnon": "Track Changes", "Common.Views.ReviewChanges.txtView": "Display Mode", - "Common.Views.ReviewChanges.txtMarkupSimpleCap": "Simple Markup", - "Common.Views.ReviewChanges.txtMarkupSimple": "All changes (Editing)
Turn off balloons", "Common.Views.ReviewChangesDialog.textTitle": "Review Changes", "Common.Views.ReviewChangesDialog.txtAccept": "Accept", "Common.Views.ReviewChangesDialog.txtAcceptAll": "Accept All Changes", @@ -519,6 +519,7 @@ "DE.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.", "DE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor", "DE.Controllers.Main.errorKeyExpire": "Key descriptor expired", + "DE.Controllers.Main.errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "DE.Controllers.Main.errorMailMergeLoadFile": "Loading the document failed. Please select a different file.", "DE.Controllers.Main.errorMailMergeSaveFile": "Merge failed.", "DE.Controllers.Main.errorProcessSaveResult": "Saving failed.", @@ -862,7 +863,6 @@ "DE.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.", "DE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", "DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", - "DE.Controllers.Main.errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "DE.Controllers.Navigation.txtBeginning": "Beginning of document", "DE.Controllers.Navigation.txtGotoBeginning": "Go to the beginning of the document", "DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked", @@ -1400,6 +1400,7 @@ "DE.Views.DocumentHolder.mergeCellsText": "Merge Cells", "DE.Views.DocumentHolder.moreText": "More variants...", "DE.Views.DocumentHolder.noSpellVariantsText": "No variants", + "DE.Views.DocumentHolder.notcriticalErrorTitle": "Warning", "DE.Views.DocumentHolder.originalSizeText": "Actual Size", "DE.Views.DocumentHolder.paragraphText": "Paragraph", "DE.Views.DocumentHolder.removeHyperlinkText": "Remove Hyperlink", @@ -1557,6 +1558,7 @@ "DE.Views.DocumentHolder.txtRemLimit": "Remove limit", "DE.Views.DocumentHolder.txtRemoveAccentChar": "Remove accent character", "DE.Views.DocumentHolder.txtRemoveBar": "Remove bar", + "DE.Views.DocumentHolder.txtRemoveWarning": "Do you want to remove this signature?
It can't be undone.", "DE.Views.DocumentHolder.txtRemScripts": "Remove scripts", "DE.Views.DocumentHolder.txtRemSubscript": "Remove subscript", "DE.Views.DocumentHolder.txtRemSuperscript": "Remove superscript", @@ -1578,8 +1580,6 @@ "DE.Views.DocumentHolder.txtUngroup": "Ungroup", "DE.Views.DocumentHolder.updateStyleText": "Update %1 style", "DE.Views.DocumentHolder.vertAlignText": "Vertical Alignment", - "DE.Views.DocumentHolder.txtRemoveWarning": "Do you want to remove this signature?
It can't be undone.", - "DE.Views.DocumentHolder.notcriticalErrorTitle": "Warning", "DE.Views.DropcapSettingsAdvanced.strBorders": "Borders & Fill", "DE.Views.DropcapSettingsAdvanced.strDropcap": "Drop Cap", "DE.Views.DropcapSettingsAdvanced.strMargins": "Margins", diff --git a/apps/documenteditor/main/locale/fr.json b/apps/documenteditor/main/locale/fr.json index 96adefc70..a95e906f7 100644 --- a/apps/documenteditor/main/locale/fr.json +++ b/apps/documenteditor/main/locale/fr.json @@ -49,9 +49,9 @@ "Common.Controllers.ReviewChanges.textNoWidow": "Pas de contrôle des veuves", "Common.Controllers.ReviewChanges.textNum": "Changer la numérotation", "Common.Controllers.ReviewChanges.textOff": "{0} n'utilise plus le suivi des modifications. ", - "Common.Controllers.ReviewChanges.textOffGlobal": "{0}Désactiver le suivi des modifications pour tout le monde.", + "Common.Controllers.ReviewChanges.textOffGlobal": "{0} a désactivé le suivi des modifications pour tout le monde.", "Common.Controllers.ReviewChanges.textOn": "{0} utilise désormais le suivi des modifications.", - "Common.Controllers.ReviewChanges.textOnGlobal": "{0} Activer le suivi des modifications pour tout le monde.", + "Common.Controllers.ReviewChanges.textOnGlobal": "{0} a activé le suivi des modifications pour tout le monde.", "Common.Controllers.ReviewChanges.textParaDeleted": "Paragraphe supprimé ", "Common.Controllers.ReviewChanges.textParaFormatted": "Paragraphe formaté", "Common.Controllers.ReviewChanges.textParaInserted": "Paragraphe inséré", @@ -377,11 +377,13 @@ "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Marquer mes commentaires comme résolus", "Common.Views.ReviewChanges.txtCompare": "Comparer", "Common.Views.ReviewChanges.txtDocLang": "Langue", - "Common.Views.ReviewChanges.txtFinal": "Toutes les modifications acceptées (aperçu)", + "Common.Views.ReviewChanges.txtFinal": "Toutes les modifications acceptées (Aperçu)", "Common.Views.ReviewChanges.txtFinalCap": "Final", "Common.Views.ReviewChanges.txtHistory": "Historique des versions", - "Common.Views.ReviewChanges.txtMarkup": "Toutes les modifications (édition)", + "Common.Views.ReviewChanges.txtMarkup": "Toutes les modifications (Édition)", "Common.Views.ReviewChanges.txtMarkupCap": "Balisage", + "Common.Views.ReviewChanges.txtMarkupSimple": "Toutes les modifications(Éditions)
Désactiver les bulles", + "Common.Views.ReviewChanges.txtMarkupSimpleCap": "Marques simples", "Common.Views.ReviewChanges.txtNext": "À la modification suivante", "Common.Views.ReviewChanges.txtOff": "OFF pour moi ", "Common.Views.ReviewChanges.txtOffGlobal": "OFF pour moi et tout le monde", @@ -517,6 +519,7 @@ "DE.Controllers.Main.errorForceSave": "Une erreur est survenue lors de l'enregistrement du fichier. Veuillez utiliser l'option «Télécharger en tant que» pour enregistrer le fichier sur le disque dur de votre ordinateur ou réessayer plus tard.", "DE.Controllers.Main.errorKeyEncrypt": "Descripteur de clés inconnu", "DE.Controllers.Main.errorKeyExpire": "Descripteur de clés expiré", + "DE.Controllers.Main.errorLoadingFont": "Les polices ne sont pas téléchargées.
Veuillez contacter l'administrateur de Document Server.", "DE.Controllers.Main.errorMailMergeLoadFile": "Échec de chargement du document. Merci de choisir un autre fichier.", "DE.Controllers.Main.errorMailMergeSaveFile": "Fusion a échoué.", "DE.Controllers.Main.errorProcessSaveResult": "Échec de l'enregistrement", @@ -1397,6 +1400,7 @@ "DE.Views.DocumentHolder.mergeCellsText": "Fusionner les cellules", "DE.Views.DocumentHolder.moreText": "Plus de variantes...", "DE.Views.DocumentHolder.noSpellVariantsText": "Pas de variantes", + "DE.Views.DocumentHolder.notcriticalErrorTitle": "Attention", "DE.Views.DocumentHolder.originalSizeText": "Taille actuelle", "DE.Views.DocumentHolder.paragraphText": "Paragraphe", "DE.Views.DocumentHolder.removeHyperlinkText": "Supprimer le lien hypertexte", @@ -1554,6 +1558,7 @@ "DE.Views.DocumentHolder.txtRemLimit": "Supprimer la limite", "DE.Views.DocumentHolder.txtRemoveAccentChar": "Supprimer le caractère d'accent", "DE.Views.DocumentHolder.txtRemoveBar": "Supprimer la barre", + "DE.Views.DocumentHolder.txtRemoveWarning": "Voulez-vous supprimer cette signature?
Cette action ne peut pas être annulée.", "DE.Views.DocumentHolder.txtRemScripts": "Supprimer les scripts", "DE.Views.DocumentHolder.txtRemSubscript": "Supprimer la souscription", "DE.Views.DocumentHolder.txtRemSuperscript": "Supprimer la suscription", @@ -2059,7 +2064,7 @@ "DE.Views.MailMergeSettings.textSendMsg": "Tous les messages sont prêts et seront envoyés dans un certain temps.
La vitesse de diffusion dépendent de vos services de messagerie.
Vous pouvez continuer à travailler avec le document ou le fermer.Lorsque l'opération est terminée la notification sera envoyé à votre adresse email d'inscription.", "DE.Views.MailMergeSettings.textTo": "à", "DE.Views.MailMergeSettings.txtFirst": "Au premier enregistrement", - "DE.Views.MailMergeSettings.txtFromToError": "La valeur de \"De\" doit être inférieure à la valeur de \"A\"", + "DE.Views.MailMergeSettings.txtFromToError": "La valeur de \"De\" doit être inférieure à la valeur de \"À\"", "DE.Views.MailMergeSettings.txtLast": "Au dernier enregistrement", "DE.Views.MailMergeSettings.txtNext": "A l'enregistrement suivant", "DE.Views.MailMergeSettings.txtPrev": "A l'enregistrement précédent", diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json index 4f71a3329..894141014 100644 --- a/apps/documenteditor/main/locale/ja.json +++ b/apps/documenteditor/main/locale/ja.json @@ -1673,23 +1673,23 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "文書のデジタル署名の一部が無効であるか、検証できませんでした。 文書は編集できないように保護されています。", "DE.Views.FileMenuPanels.ProtectDoc.txtView": "署名の表示", "DE.Views.FileMenuPanels.Settings.okButtonText": "適用", - "DE.Views.FileMenuPanels.Settings.strAlignGuides": "配置ガイドターンにします。", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "自動バックアップをターンにします。", - "DE.Views.FileMenuPanels.Settings.strAutosave": "自動保存をターンにします。", + "DE.Views.FileMenuPanels.Settings.strAlignGuides": "配置ガイドをオンにします。", + "DE.Views.FileMenuPanels.Settings.strAutoRecover": "自動バックアップをオンにします。", + "DE.Views.FileMenuPanels.Settings.strAutosave": "自動保存をオンにします。", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "共同編集のモード", "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "他のユーザーにすぐに変更が表示されます", "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "変更を見れる前に、変更を受け入れる必要があります。", "DE.Views.FileMenuPanels.Settings.strFast": "ファスト", "DE.Views.FileMenuPanels.Settings.strFontRender": "フォントのヒント", "DE.Views.FileMenuPanels.Settings.strForcesave": "保存またはCtrl + Sを押した後、バージョンをサーバーに保存する。", - "DE.Views.FileMenuPanels.Settings.strInputMode": "漢字をターンにします。", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "テキストコメントの表示をターンにします。", + "DE.Views.FileMenuPanels.Settings.strInputMode": "漢字をオンにします。", + "DE.Views.FileMenuPanels.Settings.strLiveComment": "テキストコメントの表示をオンにします。", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "マクロの設定", "DE.Views.FileMenuPanels.Settings.strPaste": "切り取り、コピー、貼り付け", "DE.Views.FileMenuPanels.Settings.strPasteButton": "貼り付けるときに[貼り付けオプション]ボタンを表示する", "DE.Views.FileMenuPanels.Settings.strResolvedComment": "解決されたコメントの表示をオンにする", "DE.Views.FileMenuPanels.Settings.strShowChanges": "リアルタイム共同編集の変更を表示します。", - "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "スペル チェックの機能をターンにします。", + "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "スペル・チェックの機能を有効にする", "DE.Views.FileMenuPanels.Settings.strStrict": "高レベル", "DE.Views.FileMenuPanels.Settings.strTheme": "テーマ", "DE.Views.FileMenuPanels.Settings.strUnit": "測定単位", diff --git a/apps/documenteditor/main/locale/ro.json b/apps/documenteditor/main/locale/ro.json index ecc7e1f32..060753879 100644 --- a/apps/documenteditor/main/locale/ro.json +++ b/apps/documenteditor/main/locale/ro.json @@ -382,6 +382,8 @@ "Common.Views.ReviewChanges.txtHistory": "Istoricul versiune", "Common.Views.ReviewChanges.txtMarkup": "Toate modificările (Editare)", "Common.Views.ReviewChanges.txtMarkupCap": "Marcaj", + "Common.Views.ReviewChanges.txtMarkupSimple": "Toate modificările (Editare)
Dezactivare baloane", + "Common.Views.ReviewChanges.txtMarkupSimpleCap": "Marcare simplă", "Common.Views.ReviewChanges.txtNext": "Următorul", "Common.Views.ReviewChanges.txtOff": "Dezactivează pentru mine", "Common.Views.ReviewChanges.txtOffGlobal": "Dezactivează tuturor", @@ -517,6 +519,7 @@ "DE.Controllers.Main.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.Controllers.Main.errorKeyEncrypt": "Descriptor cheie nerecunoscut", "DE.Controllers.Main.errorKeyExpire": "Descriptor cheie a expirat", + "DE.Controllers.Main.errorLoadingFont": "Fonturile nu sunt încărcate.
Contactați administratorul dvs de Server Documente.", "DE.Controllers.Main.errorMailMergeLoadFile": "Încărcarea fișierului eșuată. Selectați un alt fișier.", "DE.Controllers.Main.errorMailMergeSaveFile": "Îmbinarea eșuată.", "DE.Controllers.Main.errorProcessSaveResult": "Salvarea nu a reușit.", @@ -1397,6 +1400,7 @@ "DE.Views.DocumentHolder.mergeCellsText": "Îmbinare celule", "DE.Views.DocumentHolder.moreText": "Mai multe variante...", "DE.Views.DocumentHolder.noSpellVariantsText": "Fără variante", + "DE.Views.DocumentHolder.notcriticalErrorTitle": "Avertisment", "DE.Views.DocumentHolder.originalSizeText": "Dimensiunea reală", "DE.Views.DocumentHolder.paragraphText": "Paragraf", "DE.Views.DocumentHolder.removeHyperlinkText": "Eliminare hyperlink", @@ -1554,6 +1558,7 @@ "DE.Views.DocumentHolder.txtRemLimit": "Eliminare limită", "DE.Views.DocumentHolder.txtRemoveAccentChar": "Eliminare caracter cu accent", "DE.Views.DocumentHolder.txtRemoveBar": "Eliminare bară", + "DE.Views.DocumentHolder.txtRemoveWarning": "Doriți să eliminați aceasta semnătura?
Va fi imposibil să anulați acțiunea.", "DE.Views.DocumentHolder.txtRemScripts": "Eliminare scripturi", "DE.Views.DocumentHolder.txtRemSubscript": "Eliminare indice", "DE.Views.DocumentHolder.txtRemSuperscript": "Eliminare exponent", diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json index 96de84ff3..f3d4a043f 100644 --- a/apps/documenteditor/main/locale/ru.json +++ b/apps/documenteditor/main/locale/ru.json @@ -206,7 +206,7 @@ "Common.Views.About.txtVersion": "Версия ", "Common.Views.AutoCorrectDialog.textAdd": "Добавить", "Common.Views.AutoCorrectDialog.textApplyText": "Применять при вводе", - "Common.Views.AutoCorrectDialog.textAutoCorrect": "Автозамена", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Автозамена текста", "Common.Views.AutoCorrectDialog.textAutoFormat": "Автоформат при вводе", "Common.Views.AutoCorrectDialog.textBulleted": "Стили маркированных списков", "Common.Views.AutoCorrectDialog.textBy": "На", @@ -381,7 +381,9 @@ "Common.Views.ReviewChanges.txtFinalCap": "Измененный документ", "Common.Views.ReviewChanges.txtHistory": "История версий", "Common.Views.ReviewChanges.txtMarkup": "Все изменения (редактирование)", - "Common.Views.ReviewChanges.txtMarkupCap": "Изменения", + "Common.Views.ReviewChanges.txtMarkupCap": "Все исправления", + "Common.Views.ReviewChanges.txtMarkupSimple": "Все изменения (редактирование)
Отключить выноски", + "Common.Views.ReviewChanges.txtMarkupSimpleCap": "Исправления", "Common.Views.ReviewChanges.txtNext": "К следующему", "Common.Views.ReviewChanges.txtOff": "ОТКЛ. для меня", "Common.Views.ReviewChanges.txtOffGlobal": "ОТКЛ. для меня и для всех", @@ -517,6 +519,7 @@ "DE.Controllers.Main.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.", "DE.Controllers.Main.errorKeyEncrypt": "Неизвестный дескриптор ключа", "DE.Controllers.Main.errorKeyExpire": "Срок действия дескриптора ключа истек", + "DE.Controllers.Main.errorLoadingFont": "Шрифты не загружены.
Пожалуйста, обратитесь к администратору Сервера документов.", "DE.Controllers.Main.errorMailMergeLoadFile": "Загрузка документа не удалась. Выберите другой файл.", "DE.Controllers.Main.errorMailMergeSaveFile": "Не удалось выполнить слияние.", "DE.Controllers.Main.errorProcessSaveResult": "Сбой при сохранении.", @@ -1397,6 +1400,7 @@ "DE.Views.DocumentHolder.mergeCellsText": "Объединить ячейки", "DE.Views.DocumentHolder.moreText": "Больше вариантов...", "DE.Views.DocumentHolder.noSpellVariantsText": "Нет вариантов", + "DE.Views.DocumentHolder.notcriticalErrorTitle": "Внимание", "DE.Views.DocumentHolder.originalSizeText": "Реальный размер", "DE.Views.DocumentHolder.paragraphText": "Абзац", "DE.Views.DocumentHolder.removeHyperlinkText": "Удалить гиперссылку", @@ -1554,6 +1558,7 @@ "DE.Views.DocumentHolder.txtRemLimit": "Удалить предел", "DE.Views.DocumentHolder.txtRemoveAccentChar": "Удалить диакритический знак", "DE.Views.DocumentHolder.txtRemoveBar": "Удалить черту", + "DE.Views.DocumentHolder.txtRemoveWarning": "Вы хотите удалить эту подпись?
Это нельзя отменить.", "DE.Views.DocumentHolder.txtRemScripts": "Удалить индексы", "DE.Views.DocumentHolder.txtRemSubscript": "Удалить нижний индекс", "DE.Views.DocumentHolder.txtRemSuperscript": "Удалить верхний индекс", @@ -1575,8 +1580,6 @@ "DE.Views.DocumentHolder.txtUngroup": "Разгруппировать", "DE.Views.DocumentHolder.updateStyleText": "Обновить стиль %1", "DE.Views.DocumentHolder.vertAlignText": "Вертикальное выравнивание", - "DE.Views.DocumentHolder.txtRemoveWarning": "Вы хотите удалить эту подпись?
Это нельзя отменить.", - "DE.Views.DocumentHolder.notcriticalErrorTitle": "Внимание", "DE.Views.DropcapSettingsAdvanced.strBorders": "Границы и заливка", "DE.Views.DropcapSettingsAdvanced.strDropcap": "Буквица", "DE.Views.DropcapSettingsAdvanced.strMargins": "Поля", diff --git a/apps/presentationeditor/embed/locale/ca.json b/apps/presentationeditor/embed/locale/ca.json index 8f4201a89..66f2720ce 100644 --- a/apps/presentationeditor/embed/locale/ca.json +++ b/apps/presentationeditor/embed/locale/ca.json @@ -13,7 +13,7 @@ "PE.ApplicationController.errorDefaultMessage": "Codi d'error:%1", "PE.ApplicationController.errorFilePassProtect": "El fitxer està protegit amb contrasenya i no es pot obrir.", "PE.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ó.", - "PE.ApplicationController.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.", + "PE.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.", "PE.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.", "PE.ApplicationController.errorUserDrop": "Ara mateix no es pot accedir al fitxer.", "PE.ApplicationController.notcriticalErrorTitle": "Advertiment", diff --git a/apps/presentationeditor/embed/locale/de.json b/apps/presentationeditor/embed/locale/de.json index bb6a7f753..a63601f1b 100644 --- a/apps/presentationeditor/embed/locale/de.json +++ b/apps/presentationeditor/embed/locale/de.json @@ -13,6 +13,8 @@ "PE.ApplicationController.errorDefaultMessage": "Fehlercode: %1", "PE.ApplicationController.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.", "PE.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.", + "PE.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.", + "PE.ApplicationController.errorLoadingFont": "Schriftarten nicht hochgeladen.
Bitte wenden Sie sich an Administratoren von Ihrem Document Server.", "PE.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.", "PE.ApplicationController.errorUserDrop": "Kein Zugriff auf diese Datei ist möglich.", "PE.ApplicationController.notcriticalErrorTitle": "Warnung", diff --git a/apps/presentationeditor/embed/locale/en.json b/apps/presentationeditor/embed/locale/en.json index d81cf4eea..8ee3a58b1 100644 --- a/apps/presentationeditor/embed/locale/en.json +++ b/apps/presentationeditor/embed/locale/en.json @@ -14,6 +14,7 @@ "PE.ApplicationController.errorFilePassProtect": "The file is password protected and cannot be opened.", "PE.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server.
Please contact your Document Server administrator for details.", "PE.ApplicationController.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", + "PE.ApplicationController.errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", "PE.ApplicationController.errorUserDrop": "The file cannot be accessed right now.", "PE.ApplicationController.notcriticalErrorTitle": "Warning", @@ -26,7 +27,6 @@ "PE.ApplicationController.unknownErrorText": "Unknown error.", "PE.ApplicationController.unsupportedBrowserErrorText": "Your browser is not supported.", "PE.ApplicationController.waitText": "Please, wait...", - "PE.ApplicationController.errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "PE.ApplicationView.txtDownload": "Download", "PE.ApplicationView.txtEmbed": "Embed", "PE.ApplicationView.txtFileLocation": "Open file location", diff --git a/apps/presentationeditor/embed/locale/fr.json b/apps/presentationeditor/embed/locale/fr.json index a76eea2d1..cc440bb38 100644 --- a/apps/presentationeditor/embed/locale/fr.json +++ b/apps/presentationeditor/embed/locale/fr.json @@ -14,6 +14,7 @@ "PE.ApplicationController.errorFilePassProtect": "Le fichier est protégé par un mot de passe et ne peut pas être ouvert.", "PE.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'information. ", "PE.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.", + "PE.ApplicationController.errorLoadingFont": "Les polices ne sont pas téléchargées.
Veuillez contacter l'administrateur de Document Server.", "PE.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.", "PE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.", "PE.ApplicationController.notcriticalErrorTitle": "Avertissement", diff --git a/apps/presentationeditor/embed/locale/it.json b/apps/presentationeditor/embed/locale/it.json index c18e7ba7d..f166b7888 100644 --- a/apps/presentationeditor/embed/locale/it.json +++ b/apps/presentationeditor/embed/locale/it.json @@ -13,6 +13,7 @@ "PE.ApplicationController.errorDefaultMessage": "Codice errore: %1", "PE.ApplicationController.errorFilePassProtect": "Il file è protetto da una password. Impossibile aprirlo.", "PE.ApplicationController.errorFileSizeExceed": "La dimensione del file supera la limitazione impostata per il tuo server.
Per i dettagli, contatta l'amministratore del Document server.", + "PE.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.", "PE.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.", "PE.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.", "PE.ApplicationController.notcriticalErrorTitle": "Avviso", diff --git a/apps/presentationeditor/embed/locale/ro.json b/apps/presentationeditor/embed/locale/ro.json index 627bf375b..48a399037 100644 --- a/apps/presentationeditor/embed/locale/ro.json +++ b/apps/presentationeditor/embed/locale/ro.json @@ -14,6 +14,7 @@ "PE.ApplicationController.errorFilePassProtect": "Fișierul este protejat cu parolă și deaceea nu poate fi deschis.", "PE.ApplicationController.errorFileSizeExceed": "Dimensiunea fișierului depășește limita permisă de serverul Dvs.
Pentru detalii, contactați administratorul dumneavoastră de Server Documente.", "PE.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.", + "PE.ApplicationController.errorLoadingFont": "Fonturile nu sunt încărcate.
Contactați administratorul dvs de Server Documente.", "PE.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ă.", "PE.ApplicationController.errorUserDrop": "Fișierul nu poate fi accesat deocamdată.", "PE.ApplicationController.notcriticalErrorTitle": "Avertisment", diff --git a/apps/presentationeditor/embed/locale/ru.json b/apps/presentationeditor/embed/locale/ru.json index cd8b90e42..1fc134710 100644 --- a/apps/presentationeditor/embed/locale/ru.json +++ b/apps/presentationeditor/embed/locale/ru.json @@ -14,6 +14,7 @@ "PE.ApplicationController.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.", "PE.ApplicationController.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.
Обратитесь к администратору Сервера документов для получения дополнительной информации.", "PE.ApplicationController.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.", + "PE.ApplicationController.errorLoadingFont": "Шрифты не загружены.
Пожалуйста, обратитесь к администратору Сервера документов.", "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Подключение к Интернету было восстановлено, и версия файла изменилась.
Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.", "PE.ApplicationController.errorUserDrop": "В настоящий момент файл недоступен.", "PE.ApplicationController.notcriticalErrorTitle": "Внимание", diff --git a/apps/presentationeditor/main/locale/ca.json b/apps/presentationeditor/main/locale/ca.json index 4dc4b0daf..eacf6ddda 100644 --- a/apps/presentationeditor/main/locale/ca.json +++ b/apps/presentationeditor/main/locale/ca.json @@ -98,7 +98,7 @@ "Common.Views.About.txtTel": "tel.: ", "Common.Views.About.txtVersion": "Versió", "Common.Views.AutoCorrectDialog.textAdd": "Afegir", - "Common.Views.AutoCorrectDialog.textApplyText": "Aplicació mentre escriviu", + "Common.Views.AutoCorrectDialog.textApplyText": "Aplica-ho a mesura que escric", "Common.Views.AutoCorrectDialog.textAutoCorrect": "Correcció automàtica", "Common.Views.AutoCorrectDialog.textAutoFormat": "Format automàtic a mesura que escriviu", "Common.Views.AutoCorrectDialog.textBulleted": "Llistes automàtiques de pics", @@ -113,7 +113,7 @@ "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Les expressions següents són expressions matemàtiques reconegudes. No es posaran automàticament en cursiva.", "Common.Views.AutoCorrectDialog.textReplace": "Substitueix", "Common.Views.AutoCorrectDialog.textReplaceText": "Substitueix mentre s'escriu", - "Common.Views.AutoCorrectDialog.textReplaceType": "Substitueix el text mentre escrius", + "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", @@ -170,7 +170,7 @@ "Common.Views.Header.tipPrint": "Imprimeix fitxer", "Common.Views.Header.tipRedo": "Refés", "Common.Views.Header.tipSave": "Desa", - "Common.Views.Header.tipUndo": "Desfes", + "Common.Views.Header.tipUndo": "Desfés", "Common.Views.Header.tipUndock": "Desacoblar en una finestra independent", "Common.Views.Header.tipViewSettings": "Mostra la configuració", "Common.Views.Header.tipViewUsers": "Mostra els usuaris i gestiona els drets d’accés als documents", @@ -184,7 +184,7 @@ "Common.Views.History.textShowAll": "Mostra els canvis al detall", "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "Enganxar una URL d'imatge:", - "Common.Views.ImageFromUrlDialog.txtEmpty": "Aquest camp és obligatori", + "Common.Views.ImageFromUrlDialog.txtEmpty": "Aquest camp és necessari", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Aquest camp hauria de ser un enllaç amb el format \"http://www.example.com\"", "Common.Views.InsertTableDialog.textInvalidRowsCols": "Cal especificar el número de files i columnes vàlids.", "Common.Views.InsertTableDialog.txtColumns": "Número de columnes", @@ -192,7 +192,7 @@ "Common.Views.InsertTableDialog.txtMinText": "El valor mínim per aquest camp és {0}.", "Common.Views.InsertTableDialog.txtRows": "Número de files", "Common.Views.InsertTableDialog.txtTitle": "Mida de la taula", - "Common.Views.InsertTableDialog.txtTitleSplit": "Divisió de cel·les", + "Common.Views.InsertTableDialog.txtTitleSplit": "Divideix la cel·la", "Common.Views.LanguageDialog.labelSelect": "Selecciona l'idioma de document", "Common.Views.ListSettingsDialog.textBulleted": "Amb pics", "Common.Views.ListSettingsDialog.textNumbering": "Numerat", @@ -214,7 +214,7 @@ "Common.Views.OpenDialog.txtPassword": "Contrasenya", "Common.Views.OpenDialog.txtProtected": "Un cop introduïu la contrasenya i obriu el fitxer, es restablirà la contrasenya actual del fitxer.", "Common.Views.OpenDialog.txtTitle": "Tria opcions %1", - "Common.Views.OpenDialog.txtTitleProtected": "Fitxer protegit", + "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", @@ -330,7 +330,7 @@ "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 obligatori", + "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": "Símbol del copyright", @@ -381,18 +381,18 @@ "PE.Controllers.Main.errorAccessDeny": "No teniu permisos per realitzar aquesta acció.
Contacteu amb el vostre administrador del servidor de documents.", "PE.Controllers.Main.errorBadImageUrl": "L'URL de la imatge no és correcta", "PE.Controllers.Main.errorCoAuthoringDisconnect": "S'ha perdut la connexió amb el servidor. Ara no es pot editar el document.", - "PE.Controllers.Main.errorComboSeries": "Per crear un gràfic combinat, seleccioneu pel cap baix dues sèries de dades.", + "PE.Controllers.Main.errorComboSeries": "Per crear un diagrama combinat, seleccioneu com a mínim dues sèries de dades.", "PE.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.", "PE.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ï.", "PE.Controllers.Main.errorDataEncrypted": "S'han rebut canvis xifrats, que no es poden desxifrar.", "PE.Controllers.Main.errorDataRange": "L'interval de dades no és correcte.", "PE.Controllers.Main.errorDefaultMessage": "Codi d'error: %1", - "PE.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.", + "PE.Controllers.Main.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.", "PE.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.", "PE.Controllers.Main.errorEmailClient": "No s'ha trobat cap client de correu electrònic", "PE.Controllers.Main.errorFilePassProtect": "El fitxer està protegit amb contrasenya i no es pot obrir.", "PE.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ó.", - "PE.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.", + "PE.Controllers.Main.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.", "PE.Controllers.Main.errorKeyEncrypt": "Descriptor de claus desconegut", "PE.Controllers.Main.errorKeyExpire": "El descriptor de claus ha caducat", "PE.Controllers.Main.errorProcessSaveResult": "S'ha produït un error en desar.", @@ -460,8 +460,8 @@ "PE.Controllers.Main.textRenameLabel": "Introdueix un nom que s'utilitzarà per a la col·laboració", "PE.Controllers.Main.textShape": "Forma", "PE.Controllers.Main.textStrict": "Mode estricte", - "PE.Controllers.Main.textTryUndoRedo": "S'han desactivat les funcions Desfer/Refer per al mode de coedició ràpida. Cliqueu al botó \"Mode estricte\" per canviar al mode de coedició estricte i editar el fitxer sense que hi hagi interferències d'altres usuaris i enviar els vostres canvis un cop els hagueu desat. Podeu canviar entre els modes de coedició mitjançant l'editor \"Paràmetres avançats\".", - "PE.Controllers.Main.textTryUndoRedoWarn": "S'han desactivat les funcions Desfer/Refer per al mode de coedició ràpida.", + "PE.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\".", + "PE.Controllers.Main.textTryUndoRedoWarn": "S'han desactivat les funcions desfés/refés per al mode de coedició ràpida.", "PE.Controllers.Main.titleLicenseExp": "La llicència ha caducat", "PE.Controllers.Main.titleServerVersion": "S'ha actualitzat l'editor", "PE.Controllers.Main.txtAddFirstSlide": "Cliqueu per a afegir la primera diapositiva", @@ -472,7 +472,7 @@ "PE.Controllers.Main.txtCallouts": "Crides", "PE.Controllers.Main.txtCharts": "Gràfics", "PE.Controllers.Main.txtClipArt": "Galeria d'imatges", - "PE.Controllers.Main.txtDateTime": "Data i hora", + "PE.Controllers.Main.txtDateTime": "Hora i data", "PE.Controllers.Main.txtDiagram": "SmartArt", "PE.Controllers.Main.txtDiagramTitle": "Títol del gràfic", "PE.Controllers.Main.txtEditingMode": "Estableix el mode d'edició ...", @@ -727,14 +727,14 @@ "PE.Controllers.Main.uploadImageTitleText": "S'està carregant la imatge", "PE.Controllers.Main.waitText": "Espereu...", "PE.Controllers.Main.warnBrowserIE9": "L’aplicació té poca capacitat en IE9. Utilitzeu IE10 o superior", - "PE.Controllers.Main.warnBrowserZoom": "La configuració de zoom actual del vostre navegador no és totalment compatible. Restabliu el zoom per defecte prement Ctrl + 0.", - "PE.Controllers.Main.warnLicenseExceeded": "Heu assolit el 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ó.", + "PE.Controllers.Main.warnBrowserZoom": "La configuració de zoom actual del navegador no és compatible del tot. Restabliu el zoom per defecte tot prement Ctrl+0.", + "PE.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ó.", "PE.Controllers.Main.warnLicenseExp": "La vostra llicència ha caducat.
Actualitzeu la llicència i recarregueu la pàgina.", "PE.Controllers.Main.warnLicenseLimitedNoAccess": "La llicència ha caducat.
No teniu accés a la funció d'edició de documents.
Contacteu amb el vostre administrador.", "PE.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", "PE.Controllers.Main.warnLicenseUsersExceeded": "Heu arribat al límit d'usuari per a %1 editors. Contacteu amb el vostre administrador per a més informació.", - "PE.Controllers.Main.warnNoLicense": "Heu assolit el límit de connexions simultànies amb% 1 editors. Aquest document només s'obrirà en mode lectura.
Contacteu amb l'equip de vendes de% 1 per obtenir les condicions de millora personals del vostre servei.", - "PE.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.", + "PE.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.", + "PE.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.", "PE.Controllers.Main.warnProcessRightsChange": "No tens permís per editar el fitxer.", "PE.Controllers.Statusbar.zoomText": "Zoom {0}%", "PE.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 ?", @@ -840,7 +840,7 @@ "PE.Controllers.Toolbar.txtFunction_1_Sec": "Funció secant inversa", "PE.Controllers.Toolbar.txtFunction_1_Sech": "Funció secant inversa hiperbòlica", "PE.Controllers.Toolbar.txtFunction_1_Sin": "Funció sinus inversa", - "PE.Controllers.Toolbar.txtFunction_1_Sinh": "Funció de sinus invers hiperbòlic", + "PE.Controllers.Toolbar.txtFunction_1_Sinh": "Funció de sinus invers hiperbòlica", "PE.Controllers.Toolbar.txtFunction_1_Tan": "Funció tangent inversa", "PE.Controllers.Toolbar.txtFunction_1_Tanh": "Funció tangent inversa hiperbòlica", "PE.Controllers.Toolbar.txtFunction_Cos": "funció cosinus", @@ -995,7 +995,7 @@ "PE.Controllers.Toolbar.txtSymbol_bullet": "Operador de pic", "PE.Controllers.Toolbar.txtSymbol_cap": "Intersecció", "PE.Controllers.Toolbar.txtSymbol_cbrt": "Arrel cúbica", - "PE.Controllers.Toolbar.txtSymbol_cdots": "El·lipsis horitzontal de línia mitja", + "PE.Controllers.Toolbar.txtSymbol_cdots": "El·lipsi horitzontal de línia mitja", "PE.Controllers.Toolbar.txtSymbol_celsius": "Graus celsius", "PE.Controllers.Toolbar.txtSymbol_chi": "Khi", "PE.Controllers.Toolbar.txtSymbol_cong": "Aproximadament igual a", @@ -1050,7 +1050,7 @@ "PE.Controllers.Toolbar.txtSymbol_psi": "Psi", "PE.Controllers.Toolbar.txtSymbol_qdrt": "Arrel quarta", "PE.Controllers.Toolbar.txtSymbol_qed": "Final de la demostració", - "PE.Controllers.Toolbar.txtSymbol_rddots": "El·lipsis en diagonal d'esquerra a dreta", + "PE.Controllers.Toolbar.txtSymbol_rddots": "El·lipsi en diagonal d'esquerra a dreta", "PE.Controllers.Toolbar.txtSymbol_rho": "Rho", "PE.Controllers.Toolbar.txtSymbol_rightarrow": "Fletxa dreta", "PE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", @@ -1067,7 +1067,7 @@ "PE.Controllers.Toolbar.txtSymbol_varrho": "Variant Rho", "PE.Controllers.Toolbar.txtSymbol_varsigma": "Variant sigma", "PE.Controllers.Toolbar.txtSymbol_vartheta": "Variant zeta", - "PE.Controllers.Toolbar.txtSymbol_vdots": "El·lipsis vertical", + "PE.Controllers.Toolbar.txtSymbol_vdots": "El·lipsi vertical", "PE.Controllers.Toolbar.txtSymbol_xsi": "Xi", "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "PE.Controllers.Viewport.textFitPage": "Ajusta a la diapositiva", @@ -1090,7 +1090,7 @@ "PE.Views.DateTimeDialog.textFormat": "Formats", "PE.Views.DateTimeDialog.textLang": "Idioma", "PE.Views.DateTimeDialog.textUpdate": "Actualitza automàticament", - "PE.Views.DateTimeDialog.txtTitle": "Data i hora", + "PE.Views.DateTimeDialog.txtTitle": "Hora i data", "PE.Views.DocumentHolder.aboveText": "Amunt", "PE.Views.DocumentHolder.addCommentText": "Afegeix un comentari", "PE.Views.DocumentHolder.addToLayoutText": "Afegeix al disseny", @@ -1117,18 +1117,18 @@ "PE.Views.DocumentHolder.hyperlinkText": "Enllaç", "PE.Views.DocumentHolder.ignoreAllSpellText": "Ignora-ho tot", "PE.Views.DocumentHolder.ignoreSpellText": "Ignorar", - "PE.Views.DocumentHolder.insertColumnLeftText": "Columna esquerra", - "PE.Views.DocumentHolder.insertColumnRightText": "Columna dreta", - "PE.Views.DocumentHolder.insertColumnText": "Insereix columna", + "PE.Views.DocumentHolder.insertColumnLeftText": "Columna a l'esquerra", + "PE.Views.DocumentHolder.insertColumnRightText": "Columna a la dreta", + "PE.Views.DocumentHolder.insertColumnText": "Insereix una columna", "PE.Views.DocumentHolder.insertRowAboveText": "Fila a dalt", "PE.Views.DocumentHolder.insertRowBelowText": "Fila a baix", - "PE.Views.DocumentHolder.insertRowText": "Insereix fila", + "PE.Views.DocumentHolder.insertRowText": "Insereix una fila", "PE.Views.DocumentHolder.insertText": "Insereix", "PE.Views.DocumentHolder.langText": "Selecciona l'idioma", "PE.Views.DocumentHolder.leftText": "Esquerra", "PE.Views.DocumentHolder.loadSpellText": "S'estan carregant les variants", "PE.Views.DocumentHolder.mergeCellsText": "Combina cel·les", - "PE.Views.DocumentHolder.mniCustomTable": "Insereix taula personalitzada", + "PE.Views.DocumentHolder.mniCustomTable": "Insereix una taula personalitzada", "PE.Views.DocumentHolder.moreText": "Més variants...", "PE.Views.DocumentHolder.noSpellVariantsText": "Sense variants", "PE.Views.DocumentHolder.originalSizeText": "Mida real", @@ -1137,8 +1137,8 @@ "PE.Views.DocumentHolder.rowText": "Fila", "PE.Views.DocumentHolder.selectText": "Selecciona", "PE.Views.DocumentHolder.spellcheckText": "Revisió ortogràfica", - "PE.Views.DocumentHolder.splitCellsText": "Divisió de cel·les...", - "PE.Views.DocumentHolder.splitCellTitleText": "Divisió de cel·les", + "PE.Views.DocumentHolder.splitCellsText": "Divideix la cel·la...", + "PE.Views.DocumentHolder.splitCellTitleText": "Divideix la cel·la", "PE.Views.DocumentHolder.tableText": "Taula", "PE.Views.DocumentHolder.textArrangeBack": "Envia al fons", "PE.Views.DocumentHolder.textArrangeBackward": "Envia cap enrere", @@ -1170,7 +1170,7 @@ "PE.Views.DocumentHolder.textShapeAlignRight": "Alinea a la dreta", "PE.Views.DocumentHolder.textShapeAlignTop": "Alinea a dalt", "PE.Views.DocumentHolder.textSlideSettings": "Configuració de la diapositiva", - "PE.Views.DocumentHolder.textUndo": "Desfes", + "PE.Views.DocumentHolder.textUndo": "Desfés", "PE.Views.DocumentHolder.tipIsLocked": "Un altre usuari té obert ara aquest element.", "PE.Views.DocumentHolder.toDictionaryText": "Afegeix al diccionari", "PE.Views.DocumentHolder.txtAddBottom": "Afegeix línia inferior", @@ -1224,11 +1224,11 @@ "PE.Views.DocumentHolder.txtHideTopLimit": "Amaga el límit superior", "PE.Views.DocumentHolder.txtHideVer": "Amaga la línia vertical", "PE.Views.DocumentHolder.txtIncreaseArg": "Augmenta la mida de l'argument", - "PE.Views.DocumentHolder.txtInsertArgAfter": "Insereix l'argument després", - "PE.Views.DocumentHolder.txtInsertArgBefore": "Insereix l'argument abans", + "PE.Views.DocumentHolder.txtInsertArgAfter": "Insereix un argument després", + "PE.Views.DocumentHolder.txtInsertArgBefore": "Insereix un argument abans", "PE.Views.DocumentHolder.txtInsertBreak": "Insereix un salt manual", - "PE.Views.DocumentHolder.txtInsertEqAfter": "Insereix equació després de", - "PE.Views.DocumentHolder.txtInsertEqBefore": "Insereix equació abans de", + "PE.Views.DocumentHolder.txtInsertEqAfter": "Insereix una equació després de", + "PE.Views.DocumentHolder.txtInsertEqBefore": "Insereix una equació abans de", "PE.Views.DocumentHolder.txtKeepTextOnly": "Conserva només el text", "PE.Views.DocumentHolder.txtLimitChange": "Canvia els límits de la ubicació", "PE.Views.DocumentHolder.txtLimitOver": "Límit damunt del text", @@ -1242,7 +1242,7 @@ "PE.Views.DocumentHolder.txtPasteSourceFormat": "Conserva el format original", "PE.Views.DocumentHolder.txtPressLink": "Prem CTRL i clica a l'enllaç", "PE.Views.DocumentHolder.txtPreview": "Inicia la presentació de diapositives", - "PE.Views.DocumentHolder.txtPrintSelection": "Imprimeix selecció", + "PE.Views.DocumentHolder.txtPrintSelection": "Imprimeix la selecció", "PE.Views.DocumentHolder.txtRemFractionBar": "Suprimeix la barra de fracció", "PE.Views.DocumentHolder.txtRemLimit": "Suprimeix el límit", "PE.Views.DocumentHolder.txtRemoveAccentChar": "Suprimeix el caràcter d'accent", @@ -1265,7 +1265,7 @@ "PE.Views.DocumentHolder.txtStretchBrackets": "Estira els claudàtors", "PE.Views.DocumentHolder.txtTop": "Superior", "PE.Views.DocumentHolder.txtUnderbar": "Barra sota el text", - "PE.Views.DocumentHolder.txtUngroup": "Desagrupar", + "PE.Views.DocumentHolder.txtUngroup": "Desagrupa", "PE.Views.DocumentHolder.vertAlignText": "Alineació Vertical", "PE.Views.DocumentPreview.goToSlideText": "Ves a la diapositiva", "PE.Views.DocumentPreview.slideIndexText": "Diapositiva {0} de {1}", @@ -1283,8 +1283,8 @@ "PE.Views.FileMenu.btnAboutCaption": "Quant a...", "PE.Views.FileMenu.btnBackCaption": "Obre la ubicació del fitxer", "PE.Views.FileMenu.btnCloseMenuCaption": "Tanca el menú", - "PE.Views.FileMenu.btnCreateNewCaption": "Crea nou", - "PE.Views.FileMenu.btnDownloadCaption": "Baixar com a...", + "PE.Views.FileMenu.btnCreateNewCaption": "Crea'n un de nou", + "PE.Views.FileMenu.btnDownloadCaption": "Baixa-ho com a...", "PE.Views.FileMenu.btnHelpCaption": "Ajuda...", "PE.Views.FileMenu.btnHistoryCaption": "Historial de versions", "PE.Views.FileMenu.btnInfoCaption": "Informació de la presentació ...", @@ -1387,7 +1387,7 @@ "PE.Views.HeaderFooterDialog.applyText": "Aplica", "PE.Views.HeaderFooterDialog.diffLanguage": "No podeu utilitzar un format de data en un idioma diferent del patró de diapositives.
Per canviar el patró, cliqueu a \"Aplica a tots\" en comptes de \"Aplica\".", "PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Avis", - "PE.Views.HeaderFooterDialog.textDateTime": "Data i hora", + "PE.Views.HeaderFooterDialog.textDateTime": "Hora i data", "PE.Views.HeaderFooterDialog.textFixed": "Fixat", "PE.Views.HeaderFooterDialog.textFooter": "Text al peu de pàgina", "PE.Views.HeaderFooterDialog.textFormat": "Formats", @@ -1408,7 +1408,7 @@ "PE.Views.HyperlinkSettingsDialog.textSlides": "Diapositives", "PE.Views.HyperlinkSettingsDialog.textTipText": "Informació en pantalla", "PE.Views.HyperlinkSettingsDialog.textTitle": "Configuració de l’enllaç", - "PE.Views.HyperlinkSettingsDialog.txtEmpty": "Aquest camp és obligatori", + "PE.Views.HyperlinkSettingsDialog.txtEmpty": "Aquest camp és necessari", "PE.Views.HyperlinkSettingsDialog.txtFirst": "Primera diapositiva", "PE.Views.HyperlinkSettingsDialog.txtLast": "Última diapositiva", "PE.Views.HyperlinkSettingsDialog.txtNext": "Diapositiva següent", @@ -1633,7 +1633,7 @@ "PE.Views.SignatureSettings.txtSignedInvalid": "Algunes de les signatures digitals presentades no són vàlides o no s'han pogut verificar. La presentació està protegida i no es pot editar.", "PE.Views.SlideSettings.strBackground": "Color de fons", "PE.Views.SlideSettings.strColor": "Color", - "PE.Views.SlideSettings.strDateTime": "Mostra la data i l'hora", + "PE.Views.SlideSettings.strDateTime": "Mostra l'hora i la data", "PE.Views.SlideSettings.strDelay": "Retard", "PE.Views.SlideSettings.strDuration": "Durada", "PE.Views.SlideSettings.strEffect": "Efecte", @@ -1654,7 +1654,7 @@ "PE.Views.SlideSettings.textClockwise": "En sentit horari", "PE.Views.SlideSettings.textColor": "Color d'emplenament", "PE.Views.SlideSettings.textCounterclockwise": "En sentit antihorari", - "PE.Views.SlideSettings.textCover": "Portada", + "PE.Views.SlideSettings.textCover": "Cobreix", "PE.Views.SlideSettings.textDirection": "Direcció", "PE.Views.SlideSettings.textEmptyPattern": "Sense patró", "PE.Views.SlideSettings.textFade": "Esvaïment", @@ -1713,7 +1713,7 @@ "PE.Views.SlideSettings.txtWood": "Fusta", "PE.Views.SlideshowSettings.textLoop": "Bucle continu fins que es premi \"Esc\"", "PE.Views.SlideshowSettings.textTitle": "Mostra la configuració", - "PE.Views.SlideSizeSettings.strLandscape": "Horitzontal", + "PE.Views.SlideSizeSettings.strLandscape": "Orientació horitzontal", "PE.Views.SlideSizeSettings.strPortrait": "Orientació vertical", "PE.Views.SlideSizeSettings.textHeight": "Alçada", "PE.Views.SlideSizeSettings.textSlideOrientation": "Orientació de la diapositiva", @@ -1749,17 +1749,17 @@ "PE.Views.TableSettings.deleteColumnText": "Suprimeix la columna", "PE.Views.TableSettings.deleteRowText": "Suprimeix la fila", "PE.Views.TableSettings.deleteTableText": "Suprimeix la taula", - "PE.Views.TableSettings.insertColumnLeftText": "Insereix columna a l'esquerra", - "PE.Views.TableSettings.insertColumnRightText": "Insereix columna a la dreta", - "PE.Views.TableSettings.insertRowAboveText": "Insereix fila a dalt", - "PE.Views.TableSettings.insertRowBelowText": "Insereix fila a baix", + "PE.Views.TableSettings.insertColumnLeftText": "Insereix una columna a l'esquerra", + "PE.Views.TableSettings.insertColumnRightText": "Insereix una columna a la dreta", + "PE.Views.TableSettings.insertRowAboveText": "Insereix una fila a dalt", + "PE.Views.TableSettings.insertRowBelowText": "Insereix una fila a baix", "PE.Views.TableSettings.mergeCellsText": "Combina cel·les", "PE.Views.TableSettings.selectCellText": "Selecciona la cel·la", "PE.Views.TableSettings.selectColumnText": "Selecciona la columna", "PE.Views.TableSettings.selectRowText": "Selecciona la fila", "PE.Views.TableSettings.selectTableText": "Selecciona la taula", - "PE.Views.TableSettings.splitCellsText": "Divisió de cel·les...", - "PE.Views.TableSettings.splitCellTitleText": "Divisió de cel·les", + "PE.Views.TableSettings.splitCellsText": "Divideix la cel·la...", + "PE.Views.TableSettings.splitCellTitleText": "Divideix la cel·la", "PE.Views.TableSettings.textAdvanced": "Mostra la configuració avançada", "PE.Views.TableSettings.textBackColor": "Color de fons", "PE.Views.TableSettings.textBanded": "En bandes", @@ -1860,7 +1860,7 @@ "PE.Views.Toolbar.capAddSlide": "Afegeix una diapositiva", "PE.Views.Toolbar.capBtnAddComment": "Afegeix un comentari", "PE.Views.Toolbar.capBtnComment": "Comentari", - "PE.Views.Toolbar.capBtnDateTime": "Data i hora", + "PE.Views.Toolbar.capBtnDateTime": "Hora i data", "PE.Views.Toolbar.capBtnInsHeader": "Peu de pàgina", "PE.Views.Toolbar.capBtnInsSymbol": "Símbol", "PE.Views.Toolbar.capBtnSlideNum": "Número de diapositiva", @@ -1877,9 +1877,9 @@ "PE.Views.Toolbar.capTabHome": "Inici", "PE.Views.Toolbar.capTabInsert": "Insereix", "PE.Views.Toolbar.mniCapitalizeWords": "Escriu en majúscules cada paraula", - "PE.Views.Toolbar.mniCustomTable": "Insereix taula personalitzada", + "PE.Views.Toolbar.mniCustomTable": "Insereix una taula personalitzada", "PE.Views.Toolbar.mniImageFromFile": "Imatge del fitxer", - "PE.Views.Toolbar.mniImageFromStorage": "Imatge d'emmagatzematge", + "PE.Views.Toolbar.mniImageFromStorage": "Imatge de l'emmagatzematge", "PE.Views.Toolbar.mniImageFromUrl": "Imatge d'URL", "PE.Views.Toolbar.mniLowerCase": "minúscules", "PE.Views.Toolbar.mniSentenceCase": "Format de frase.", @@ -1949,17 +1949,17 @@ "PE.Views.Toolbar.tipHighlightColor": "Ressalta el color", "PE.Views.Toolbar.tipIncFont": "Augmenta la mida del tipus de lletra", "PE.Views.Toolbar.tipIncPrLeft": "Augmenta el sagnat", - "PE.Views.Toolbar.tipInsertAudio": "Insereix àudio", - "PE.Views.Toolbar.tipInsertChart": "Insereix gràfic", - "PE.Views.Toolbar.tipInsertEquation": "Insereix equació", + "PE.Views.Toolbar.tipInsertAudio": "Insereix un àudio", + "PE.Views.Toolbar.tipInsertChart": "Insereix un gràfic", + "PE.Views.Toolbar.tipInsertEquation": "Insereix una equació", "PE.Views.Toolbar.tipInsertHyperlink": "Afegeix un enllaç", - "PE.Views.Toolbar.tipInsertImage": "Insereix imatge", - "PE.Views.Toolbar.tipInsertShape": "Insereix forma automàtica", - "PE.Views.Toolbar.tipInsertSymbol": "Insereix símbol", - "PE.Views.Toolbar.tipInsertTable": "Insereix taula", - "PE.Views.Toolbar.tipInsertText": "Insereix quadre de text", + "PE.Views.Toolbar.tipInsertImage": "Insereix una imatge", + "PE.Views.Toolbar.tipInsertShape": "Insereix una forma automàtica", + "PE.Views.Toolbar.tipInsertSymbol": "Insereix un símbol", + "PE.Views.Toolbar.tipInsertTable": "Insereix una taula", + "PE.Views.Toolbar.tipInsertText": "Insereix un quadre de text", "PE.Views.Toolbar.tipInsertTextArt": "Insereix art ASCII", - "PE.Views.Toolbar.tipInsertVideo": "Insereix vídeo", + "PE.Views.Toolbar.tipInsertVideo": "Insereix un vídeo", "PE.Views.Toolbar.tipLineSpace": "Interlineat", "PE.Views.Toolbar.tipMarkers": "Pics", "PE.Views.Toolbar.tipNumbers": "Numeració", @@ -1971,10 +1971,10 @@ "PE.Views.Toolbar.tipSaveCoauth": "Desa els canvis perquè altres usuaris els puguin veure.", "PE.Views.Toolbar.tipShapeAlign": "Alinea la forma", "PE.Views.Toolbar.tipShapeArrange": "Organitza les formes", - "PE.Views.Toolbar.tipSlideNum": "Insereix el número de diapositiva", + "PE.Views.Toolbar.tipSlideNum": "Insereix un número de diapositiva", "PE.Views.Toolbar.tipSlideSize": "Selecciona la mida de diapositiva", "PE.Views.Toolbar.tipSlideTheme": "Tema de la diapositiva", - "PE.Views.Toolbar.tipUndo": "Desfes", + "PE.Views.Toolbar.tipUndo": "Desfés", "PE.Views.Toolbar.tipVAligh": "Alineació Vertical", "PE.Views.Toolbar.tipViewSettings": "Mostra la configuració", "PE.Views.Toolbar.txtDistribHor": "Distribueix horitzontalment", @@ -2004,5 +2004,5 @@ "PE.Views.Toolbar.txtScheme8": "Flux", "PE.Views.Toolbar.txtScheme9": "Foneria", "PE.Views.Toolbar.txtSlideAlign": "Alinea a la diapositiva", - "PE.Views.Toolbar.txtUngroup": "Desagrupar" + "PE.Views.Toolbar.txtUngroup": "Desagrupa" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/de.json b/apps/presentationeditor/main/locale/de.json index 5ff8ca1af..92ee221a1 100644 --- a/apps/presentationeditor/main/locale/de.json +++ b/apps/presentationeditor/main/locale/de.json @@ -99,7 +99,7 @@ "Common.Views.About.txtVersion": "Version ", "Common.Views.AutoCorrectDialog.textAdd": "Hinzufügen", "Common.Views.AutoCorrectDialog.textApplyText": "Bei der Eingabe anwenden", - "Common.Views.AutoCorrectDialog.textAutoCorrect": "Autokorrektur", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Autokorrektur für Text", "Common.Views.AutoCorrectDialog.textAutoFormat": "AutoFormat während der Eingabe", "Common.Views.AutoCorrectDialog.textBulleted": "Automatische Aufzählungen", "Common.Views.AutoCorrectDialog.textBy": "Nach", @@ -395,6 +395,7 @@ "PE.Controllers.Main.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.", "PE.Controllers.Main.errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor", "PE.Controllers.Main.errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen", + "PE.Controllers.Main.errorLoadingFont": "Schriftarten nicht hochgeladen.
Bitte wenden Sie sich an Administratoren von Ihrem Document Server.", "PE.Controllers.Main.errorProcessSaveResult": "Speichern ist fehlgeschlagen.", "PE.Controllers.Main.errorServerVersion": "Editor-Version wurde aktualisiert. Die Seite wird neu geladen, um die Änderungen zu übernehmen.", "PE.Controllers.Main.errorSessionAbsolute": "Die Bearbeitungssitzung des Dokumentes ist abgelaufen. Laden Sie die Seite neu.", diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json index 996eab3ff..5794e0609 100644 --- a/apps/presentationeditor/main/locale/en.json +++ b/apps/presentationeditor/main/locale/en.json @@ -99,7 +99,7 @@ "Common.Views.About.txtVersion": "Version ", "Common.Views.AutoCorrectDialog.textAdd": "Add", "Common.Views.AutoCorrectDialog.textApplyText": "Apply As You Type", - "Common.Views.AutoCorrectDialog.textAutoCorrect": "AutoCorrect", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Text AutoCorrect", "Common.Views.AutoCorrectDialog.textAutoFormat": "AutoFormat As You Type", "Common.Views.AutoCorrectDialog.textBulleted": "Automatic bulleted lists", "Common.Views.AutoCorrectDialog.textBy": "By", @@ -395,6 +395,7 @@ "PE.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.", "PE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor", "PE.Controllers.Main.errorKeyExpire": "Key descriptor expired", + "PE.Controllers.Main.errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "PE.Controllers.Main.errorProcessSaveResult": "Saving failed.", "PE.Controllers.Main.errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", "PE.Controllers.Main.errorSessionAbsolute": "The document editing session has expired. Please reload the page.", @@ -736,7 +737,6 @@ "PE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
Contact %1 sales team for personal upgrade terms.", "PE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", "PE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", - "PE.Controllers.Main.errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "PE.Controllers.Statusbar.zoomText": "Zoom {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.
The text style will be displayed using one of the system fonts, the saved font will be used when it is available.
Do you want to continue?", "PE.Controllers.Toolbar.textAccent": "Accents", diff --git a/apps/presentationeditor/main/locale/fr.json b/apps/presentationeditor/main/locale/fr.json index 9ae61db57..fb1e020dc 100644 --- a/apps/presentationeditor/main/locale/fr.json +++ b/apps/presentationeditor/main/locale/fr.json @@ -395,6 +395,7 @@ "PE.Controllers.Main.errorForceSave": "Une erreur est survenue lors de l'enregistrement du fichier. Veuillez utiliser l'option «Télécharger en tant que» pour enregistrer le fichier sur le disque dur de votre ordinateur ou réessayer plus tard.", "PE.Controllers.Main.errorKeyEncrypt": "Descripteur de clés inconnu", "PE.Controllers.Main.errorKeyExpire": "Descripteur de clés expiré", + "PE.Controllers.Main.errorLoadingFont": "Les polices ne sont pas téléchargées.
Veuillez contacter l'administrateur de Document Server.", "PE.Controllers.Main.errorProcessSaveResult": "Échec de l'enregistrement", "PE.Controllers.Main.errorServerVersion": "La version de l'éditeur a été mise à jour. La page sera rechargée pour appliquer les modifications.", "PE.Controllers.Main.errorSessionAbsolute": "Votre session a expiré. Veuillez recharger la page.", diff --git a/apps/presentationeditor/main/locale/ja.json b/apps/presentationeditor/main/locale/ja.json index 6a2ae095e..246368f54 100644 --- a/apps/presentationeditor/main/locale/ja.json +++ b/apps/presentationeditor/main/locale/ja.json @@ -1329,16 +1329,16 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "プレゼンテーションのデジタル署名の一部が無効であるか、検証できませんでした。 プレゼンテーションは編集から保護されています。", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "署名の表示", "PE.Views.FileMenuPanels.Settings.okButtonText": "適用", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "配置ガイドターンにします。", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "自動バックアップをターンにします。", - "PE.Views.FileMenuPanels.Settings.strAutosave": "自動保存をターンにします。", + "PE.Views.FileMenuPanels.Settings.strAlignGuides": "配置ガイドをオンにします。", + "PE.Views.FileMenuPanels.Settings.strAutoRecover": "自動バックアップをオンにします。", + "PE.Views.FileMenuPanels.Settings.strAutosave": "自動保存をオンにします。", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "共同編集のモード", "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "他のユーザーにすぐに変更が表示されます", "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "変更を見れる前に、変更を受け入れる必要があります。", "PE.Views.FileMenuPanels.Settings.strFast": "速い", "PE.Views.FileMenuPanels.Settings.strFontRender": "フォント・ヒンティング", "PE.Views.FileMenuPanels.Settings.strForcesave": "常にサーバーに保存する(もしくは、文書を閉じる後、サーバーに保存する)", - "PE.Views.FileMenuPanels.Settings.strInputMode": "漢字をターンにします。", + "PE.Views.FileMenuPanels.Settings.strInputMode": "漢字をオンにします。", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "マクロの設定", "PE.Views.FileMenuPanels.Settings.strPaste": "切り取り、コピー、貼り付け", "PE.Views.FileMenuPanels.Settings.strPasteButton": "貼り付けるときに[貼り付けオプション]ボタンを表示する", diff --git a/apps/presentationeditor/main/locale/ro.json b/apps/presentationeditor/main/locale/ro.json index 3cd38d486..be0af47e2 100644 --- a/apps/presentationeditor/main/locale/ro.json +++ b/apps/presentationeditor/main/locale/ro.json @@ -395,6 +395,7 @@ "PE.Controllers.Main.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.", "PE.Controllers.Main.errorKeyEncrypt": "Descriptor cheie nerecunoscut", "PE.Controllers.Main.errorKeyExpire": "Descriptor cheie a expirat", + "PE.Controllers.Main.errorLoadingFont": "Fonturile nu sunt încărcate.
Contactați administratorul dvs de Server Documente.", "PE.Controllers.Main.errorProcessSaveResult": "Salvarea nu a reușit.", "PE.Controllers.Main.errorServerVersion": "Editorul a fost actualizat. Pagina va fi reîmprospătată pentru a aplica această actualizare.", "PE.Controllers.Main.errorSessionAbsolute": "Sesiunea de editare a expirat. Încercați să reîmprospătați pagina.", diff --git a/apps/presentationeditor/main/locale/ru.json b/apps/presentationeditor/main/locale/ru.json index c36e9242a..4031d105c 100644 --- a/apps/presentationeditor/main/locale/ru.json +++ b/apps/presentationeditor/main/locale/ru.json @@ -99,7 +99,7 @@ "Common.Views.About.txtVersion": "Версия ", "Common.Views.AutoCorrectDialog.textAdd": "Добавить", "Common.Views.AutoCorrectDialog.textApplyText": "Применять при вводе", - "Common.Views.AutoCorrectDialog.textAutoCorrect": "Автозамена", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Автозамена текста", "Common.Views.AutoCorrectDialog.textAutoFormat": "Автоформат при вводе", "Common.Views.AutoCorrectDialog.textBulleted": "Стили маркированных списков", "Common.Views.AutoCorrectDialog.textBy": "На", @@ -395,6 +395,7 @@ "PE.Controllers.Main.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.", "PE.Controllers.Main.errorKeyEncrypt": "Неизвестный дескриптор ключа", "PE.Controllers.Main.errorKeyExpire": "Срок действия дескриптора ключа истек", + "PE.Controllers.Main.errorLoadingFont": "Шрифты не загружены.
Пожалуйста, обратитесь к администратору Сервера документов.", "PE.Controllers.Main.errorProcessSaveResult": "Сбой при сохранении.", "PE.Controllers.Main.errorServerVersion": "Версия редактора была обновлена. Страница будет перезагружена, чтобы применить изменения.", "PE.Controllers.Main.errorSessionAbsolute": "Время сеанса редактирования документа истекло. Пожалуйста, обновите страницу.", diff --git a/apps/spreadsheeteditor/embed/locale/ca.json b/apps/spreadsheeteditor/embed/locale/ca.json index ff5b46632..7970cd612 100644 --- a/apps/spreadsheeteditor/embed/locale/ca.json +++ b/apps/spreadsheeteditor/embed/locale/ca.json @@ -1,8 +1,8 @@ { "common.view.modals.txtCopy": "Copia al porta-retalls", - "common.view.modals.txtEmbed": "Incrustar", + "common.view.modals.txtEmbed": "Incrusta", "common.view.modals.txtHeight": "Alçada", - "common.view.modals.txtShare": "Compartir l'enllaç", + "common.view.modals.txtShare": "Comparteix l'enllaç", "common.view.modals.txtWidth": "Amplada", "SSE.ApplicationController.convertationErrorText": "No s'ha pogut convertir", "SSE.ApplicationController.convertationTimeoutText": "S'ha superat el temps de conversió.", @@ -13,6 +13,7 @@ "SSE.ApplicationController.errorDefaultMessage": "Codi d'error:%1", "SSE.ApplicationController.errorFilePassProtect": "El fitxer està protegit amb contrasenya i no es pot obrir.", "SSE.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ó.", + "SSE.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.", "SSE.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.", "SSE.ApplicationController.errorUserDrop": "Ara mateix no es pot accedir al fitxer.", "SSE.ApplicationController.notcriticalErrorTitle": "Advertiment", @@ -21,14 +22,14 @@ "SSE.ApplicationController.textGuest": "Convidat", "SSE.ApplicationController.textLoadingDocument": "S'està carregant full de càlcul", "SSE.ApplicationController.textOf": "de", - "SSE.ApplicationController.txtClose": "Tancar", + "SSE.ApplicationController.txtClose": "Tanca", "SSE.ApplicationController.unknownErrorText": "Error desconegut.", "SSE.ApplicationController.unsupportedBrowserErrorText": "El vostre navegador no és compatible.", "SSE.ApplicationController.waitText": "Espereu...", - "SSE.ApplicationView.txtDownload": "Baixar", - "SSE.ApplicationView.txtEmbed": "Incrustar", - "SSE.ApplicationView.txtFileLocation": "Obrir la ubicació del fitxer", - "SSE.ApplicationView.txtFullScreen": "Pantalla completa", - "SSE.ApplicationView.txtPrint": "Imprimir", - "SSE.ApplicationView.txtShare": "Compartir" + "SSE.ApplicationView.txtDownload": "Baixa", + "SSE.ApplicationView.txtEmbed": "Incrusta", + "SSE.ApplicationView.txtFileLocation": "Obre la ubicació del fitxer", + "SSE.ApplicationView.txtFullScreen": "Pantalla sencera", + "SSE.ApplicationView.txtPrint": "Imprimeix", + "SSE.ApplicationView.txtShare": "Comparteix" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/embed/locale/de.json b/apps/spreadsheeteditor/embed/locale/de.json index 30fc78019..09c2e14a8 100644 --- a/apps/spreadsheeteditor/embed/locale/de.json +++ b/apps/spreadsheeteditor/embed/locale/de.json @@ -13,6 +13,8 @@ "SSE.ApplicationController.errorDefaultMessage": "Fehlercode: %1", "SSE.ApplicationController.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.", "SSE.ApplicationController.errorFileSizeExceed": "Die Dateigröße überschreitet die für Ihren Server festgelegte Größe.
Weitere Informationen können Sie von Ihrem Document Server-Administrator erhalten.", + "SSE.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.", + "SSE.ApplicationController.errorLoadingFont": "Schriftarten nicht hochgeladen.
Bitte wenden Sie sich an Administratoren von Ihrem Document Server.", "SSE.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.", "SSE.ApplicationController.errorUserDrop": "Kein Zugriff auf diese Datei möglich.", "SSE.ApplicationController.notcriticalErrorTitle": "Warnung", diff --git a/apps/spreadsheeteditor/embed/locale/en.json b/apps/spreadsheeteditor/embed/locale/en.json index 234ea61e1..730f84d67 100644 --- a/apps/spreadsheeteditor/embed/locale/en.json +++ b/apps/spreadsheeteditor/embed/locale/en.json @@ -14,6 +14,7 @@ "SSE.ApplicationController.errorFilePassProtect": "The file is password protected and cannot be opened.", "SSE.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server.
Please contact your Document Server administrator for details.", "SSE.ApplicationController.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", + "SSE.ApplicationController.errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", "SSE.ApplicationController.errorUserDrop": "The file cannot be accessed right now.", "SSE.ApplicationController.notcriticalErrorTitle": "Warning", @@ -26,7 +27,6 @@ "SSE.ApplicationController.unknownErrorText": "Unknown error.", "SSE.ApplicationController.unsupportedBrowserErrorText": "Your browser is not supported.", "SSE.ApplicationController.waitText": "Please, wait...", - "SSE.ApplicationController.errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "SSE.ApplicationView.txtDownload": "Download", "SSE.ApplicationView.txtEmbed": "Embed", "SSE.ApplicationView.txtFileLocation": "Open file location", diff --git a/apps/spreadsheeteditor/embed/locale/fr.json b/apps/spreadsheeteditor/embed/locale/fr.json index df7bbdea8..105bc49a8 100644 --- a/apps/spreadsheeteditor/embed/locale/fr.json +++ b/apps/spreadsheeteditor/embed/locale/fr.json @@ -14,6 +14,7 @@ "SSE.ApplicationController.errorFilePassProtect": "Le fichier est protégé par un mot de passe et ne peut pas être ouvert.", "SSE.ApplicationController.errorFileSizeExceed": "La taille du fichier dépasse les limites paramétrées sur votre serveur.
Veuillez contacter votre administrateur de Document Server pour obtenir plus d'informations. ", "SSE.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.", + "SSE.ApplicationController.errorLoadingFont": "Les polices ne sont pas téléchargées.
Veuillez contacter l'administrateur de Document Server.", "SSE.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.", "SSE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.", "SSE.ApplicationController.notcriticalErrorTitle": "Avertissement", diff --git a/apps/spreadsheeteditor/embed/locale/it.json b/apps/spreadsheeteditor/embed/locale/it.json index b008e8923..a934bb3d3 100644 --- a/apps/spreadsheeteditor/embed/locale/it.json +++ b/apps/spreadsheeteditor/embed/locale/it.json @@ -13,6 +13,7 @@ "SSE.ApplicationController.errorDefaultMessage": "Codice errore: %1", "SSE.ApplicationController.errorFilePassProtect": "Il file è protetto da una password. Impossibile aprirlo.", "SSE.ApplicationController.errorFileSizeExceed": "La dimensione del file supera la limitazione impostata per il tuo server.
Per i dettagli, contatta l'amministratore del Document server.", + "SSE.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.", "SSE.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.", "SSE.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.", "SSE.ApplicationController.notcriticalErrorTitle": "Avviso", diff --git a/apps/spreadsheeteditor/embed/locale/ro.json b/apps/spreadsheeteditor/embed/locale/ro.json index e03ef4487..918f74a97 100644 --- a/apps/spreadsheeteditor/embed/locale/ro.json +++ b/apps/spreadsheeteditor/embed/locale/ro.json @@ -14,6 +14,7 @@ "SSE.ApplicationController.errorFilePassProtect": "Fișierul este protejat cu parolă și deaceea nu poate fi deschis.", "SSE.ApplicationController.errorFileSizeExceed": "Dimensiunea fișierului depășește limita permisă de serverul Dvs.
Pentru detalii, contactați administratorul dumneavoastră de Server Documente.", "SSE.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.", + "SSE.ApplicationController.errorLoadingFont": "Fonturile nu sunt încărcate.
Contactați administratorul dvs de Server Documente.", "SSE.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ă.", "SSE.ApplicationController.errorUserDrop": "Fișierul nu poate fi accesat deocamdată.", "SSE.ApplicationController.notcriticalErrorTitle": "Avertisment", diff --git a/apps/spreadsheeteditor/embed/locale/ru.json b/apps/spreadsheeteditor/embed/locale/ru.json index b965d8034..6dd272e82 100644 --- a/apps/spreadsheeteditor/embed/locale/ru.json +++ b/apps/spreadsheeteditor/embed/locale/ru.json @@ -14,6 +14,7 @@ "SSE.ApplicationController.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.", "SSE.ApplicationController.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.
Обратитесь к администратору Сервера документов для получения дополнительной информации.", "SSE.ApplicationController.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.", + "SSE.ApplicationController.errorLoadingFont": "Шрифты не загружены.
Пожалуйста, обратитесь к администратору Сервера документов.", "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Подключение к Интернету было восстановлено, и версия файла изменилась.
Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.", "SSE.ApplicationController.errorUserDrop": "В настоящий момент файл недоступен.", "SSE.ApplicationController.notcriticalErrorTitle": "Внимание", diff --git a/apps/spreadsheeteditor/main/locale/ca.json b/apps/spreadsheeteditor/main/locale/ca.json index 37a5ba52c..051a17161 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%", @@ -16,12 +16,12 @@ "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.", @@ -60,14 +60,14 @@ "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,350 +99,350 @@ "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.UI.ComboBorderSize.txtNoBorders": "Sense vores", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sense vores", - "Common.UI.ComboDataView.emptyComboText": "Sense Estils", + "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": "Afegeix", - "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.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.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.textEdit": "D'acord", + "Common.Views.Comments.textEnterCommentHint": "Introdueix el teu comentari aquí", "Common.Views.Comments.textHintAddComment": "Afegeix un comentari", - "Common.Views.Comments.textOpenAgain": "Obriu de nou", - "Common.Views.Comments.textReply": "Contestar", + "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.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": "Canviar la contrasenya", + "Common.Views.Protection.txtChangePwd": "Canvia la contrasenya", "Common.Views.Protection.txtDeletePwd": "Suprimeix la contrasenya", - "Common.Views.Protection.txtEncrypt": "Xifrar", + "Common.Views.Protection.txtEncrypt": "Xifra", "Common.Views.Protection.txtInvisibleSignature": "Afegeix una signatura digital", - "Common.Views.Protection.txtSignature": "Firma", + "Common.Views.Protection.txtSignature": "Signatura", "Common.Views.Protection.txtSignatureLine": "Afegeix una línia de signatura", - "Common.Views.RenameDialog.textName": "Nom Fitxer", + "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.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": "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.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": "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": "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.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.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·lar", - "Common.Views.ReviewPopover.textClose": "Tancar", - "Common.Views.ReviewPopover.textEdit": "Acceptar", + "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": "Afegeix línia inferior", @@ -454,426 +454,426 @@ "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": "Alinear al caràcter", + "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 es pot superposar 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.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", @@ -882,53 +882,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": "Símbol \"No\"", - "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_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", @@ -941,236 +941,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.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 del document.", - "SSE.Controllers.Main.uploadImageExtMessage": "Format imatge desconegut.", - "SSE.Controllers.Main.uploadImageFileCountMessage": "No hi ha imatges pujades.", + "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 la barra a dalt", - "SSE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR i amb barra sobreposada", + "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", @@ -1178,7 +1178,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", @@ -1189,9 +1189,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", @@ -1209,20 +1209,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", @@ -1239,73 +1239,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", @@ -1314,11 +1314,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", @@ -1330,212 +1330,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.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": "Afegeix un 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.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.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.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", @@ -1543,172 +1543,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.textHundreds": "Centenars", "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.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.", @@ -1719,32 +1719,32 @@ "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", @@ -1753,284 +1753,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.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": "Esborrar hiperenllaç", - "SSE.Views.DocumentHolder.selectColumnText": "Columna sencera", - "SSE.Views.DocumentHolder.selectDataText": "Dades de Columna", + "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": "Afegeix un comentari", - "SSE.Views.DocumentHolder.txtAddNamedRange": "Definiu el Nom", - "SSE.Views.DocumentHolder.txtArrange": "Arreglar", + "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.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.btnSaveCaption": "Desa", + "SSE.Views.FileMenu.btnSaveCopyAsCaption": "Desa còpia 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.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.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 Formula", + "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à", @@ -2050,153 +2050,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": "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 un percentatge vàlid.", + "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.", @@ -2205,7 +2205,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}", @@ -2214,10 +2214,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", @@ -2230,37 +2230,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", @@ -2270,285 +2270,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.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 imparell", - "SSE.Views.HeaderFooterDialog.textPageCount": "Nombre de Pàgines", - "SSE.Views.HeaderFooterDialog.textPageNum": "Número Pàgina", + "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.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": "Girar 90°", + "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 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", @@ -2559,7 +2559,7 @@ "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", @@ -2567,272 +2567,272 @@ "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ó 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.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 real", - "SSE.Views.PrintSettings.textAllSheets": "Totes les Fulles", - "SSE.Views.PrintSettings.textCurrentSheet": "Full Actual", + "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": "Afegeix un punt de degradat", - "SSE.Views.ShapeSettings.tipRemoveGradientPoint": "Elimina el punt de degradat", - "SSE.Views.ShapeSettings.txtBrownPaper": "Paper Marró", + "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", @@ -2841,14 +2841,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", @@ -2856,185 +2856,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.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": "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.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": "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.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": "(Copia al final)", - "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Mou al final)", - "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Copiar abans de full", - "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Desplaçar abans del full", + "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.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.textNoColor": "Sense color", "SSE.Views.Statusbar.textSum": "Suma", "SSE.Views.Statusbar.tipAddTab": "Afegeix un 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.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", @@ -3043,162 +3043,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.textTransform": "Transforma", "SSE.Views.TextArtSettings.tipAddGradientPoint": "Afegeix un punt de degradat", - "SSE.Views.TextArtSettings.tipRemoveGradientPoint": "Elimina el punt de degradat", - "SSE.Views.TextArtSettings.txtBrownPaper": "Paper Marró", + "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": "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.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": "Alineació Inferior", - "SSE.Views.Toolbar.textAlignCenter": "Centrar", + "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": "Afegeix un color personalitzat nou ", - "SSE.Views.Toolbar.textNewRule": "Nova regla", - "SSE.Views.Toolbar.textNoBorders": "Sense Vores", + "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", @@ -3207,125 +3207,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.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": "Editar Gràfic", - "SSE.Views.Toolbar.tipEditChartData": "Seleccionar Dades", - "SSE.Views.Toolbar.tipEditChartType": "Canviar el tipus de gràfic", + "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.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": "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.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", @@ -3334,97 +3334,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 e0960baf3..758156576 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -549,6 +549,7 @@ "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", @@ -569,7 +570,6 @@ "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Undo table autoexpansion", "SSE.Controllers.DocumentHolder.txtUseTextImport": "Use text import wizard", "SSE.Controllers.DocumentHolder.txtWidth": "Width", - "SSE.Controllers.DocumentHolder.txtRemoveWarning": "Do you want to remove this signature?
It can't be undone.", "SSE.Controllers.FormulaDialog.sCategoryAll": "All", "SSE.Controllers.FormulaDialog.sCategoryCube": "Cube", "SSE.Controllers.FormulaDialog.sCategoryDatabase": "Database", @@ -653,6 +653,7 @@ "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.", @@ -1006,7 +1007,6 @@ "SSE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
Contact %1 sales team for personal upgrade terms.", "SSE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", "SSE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", - "SSE.Controllers.Main.errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "SSE.Controllers.Print.strAllSheets": "All Sheets", "SSE.Controllers.Print.textFirstCol": "First column", "SSE.Controllers.Print.textFirstRow": "First row", diff --git a/apps/spreadsheeteditor/main/locale/fr.json b/apps/spreadsheeteditor/main/locale/fr.json index a4d7b5cf7..193d82a9d 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.", diff --git a/apps/spreadsheeteditor/main/locale/it.json b/apps/spreadsheeteditor/main/locale/it.json index 0b8919b47..9faa1e460 100644 --- a/apps/spreadsheeteditor/main/locale/it.json +++ b/apps/spreadsheeteditor/main/locale/it.json @@ -986,6 +986,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 5faf8242c..98f1d7c92 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.", diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json index 1f79c532e..ac330f50f 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": "Удалить верхний индекс", @@ -569,7 +570,6 @@ "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Отменить авторазвертывание таблицы", "SSE.Controllers.DocumentHolder.txtUseTextImport": "Использовать мастер импорта текста", "SSE.Controllers.DocumentHolder.txtWidth": "Ширина", - "SSE.Controllers.DocumentHolder.txtRemoveWarning": "Вы хотите удалить эту подпись?
Это нельзя отменить.", "SSE.Controllers.FormulaDialog.sCategoryAll": "Все", "SSE.Controllers.FormulaDialog.sCategoryCube": "Аналитические", "SSE.Controllers.FormulaDialog.sCategoryDatabase": "Базы данных", @@ -653,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": "Нельзя изменить данные в сводной таблице.", From 5ea6b266a1edd3ebc4d18db33ae89cbfe8b393a0 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 20 Aug 2021 18:15:43 +0300 Subject: [PATCH 72/90] Update translation --- apps/documenteditor/mobile/locale/ca.json | 674 +++++++++--------- apps/documenteditor/mobile/locale/de.json | 8 +- apps/documenteditor/mobile/locale/en.json | 8 +- apps/documenteditor/mobile/locale/fr.json | 8 +- apps/documenteditor/mobile/locale/ja.json | 10 +- apps/documenteditor/mobile/locale/ro.json | 8 +- apps/documenteditor/mobile/locale/ru.json | 8 +- apps/documenteditor/mobile/locale/tr.json | 38 +- apps/documenteditor/mobile/locale/zh.json | 4 +- apps/presentationeditor/mobile/locale/ca.json | 560 +++++++-------- apps/presentationeditor/mobile/locale/de.json | 4 +- apps/presentationeditor/mobile/locale/en.json | 6 +- apps/presentationeditor/mobile/locale/fr.json | 4 +- apps/presentationeditor/mobile/locale/ja.json | 12 +- apps/presentationeditor/mobile/locale/ro.json | 4 +- apps/presentationeditor/mobile/locale/ru.json | 6 +- 16 files changed, 681 insertions(+), 681 deletions(-) diff --git a/apps/documenteditor/mobile/locale/ca.json b/apps/documenteditor/mobile/locale/ca.json index fa9af5306..7e97327ad 100644 --- a/apps/documenteditor/mobile/locale/ca.json +++ b/apps/documenteditor/mobile/locale/ca.json @@ -4,325 +4,325 @@ "textAddress": "Adreça", "textBack": "Enrere", "textEmail": "Correu electrònic", - "textPoweredBy": "Impulsat Per", + "textPoweredBy": "Amb tecnologia de", "textTel": "Tel.", "textVersion": "Versió" }, "Add": { - "notcriticalErrorTitle": "avís", - "textAddLink": "Afegir enllaç", + "notcriticalErrorTitle": "Advertiment", + "textAddLink": "Afegeix un enllaç", "textAddress": "Adreça", "textBack": "Enrere", "textBelowText": "A sota del text", - "textBottomOfPage": "Al Peu de pàgina", + "textBottomOfPage": "Final de la pàgina", "textBreak": "Salt", - "textCancel": "Cancel·lar", - "textCenterBottom": "Inferior Centrat", - "textCenterTop": "Centrat Superior", - "textColumnBreak": "Salt de Columna", + "textCancel": "Cancel·la", + "textCenterBottom": "Alineació central inferior", + "textCenterTop": "Alineació central superior", + "textColumnBreak": "Salt de columna", "textColumns": "Columnes", "textComment": "Comentari", - "textContinuousPage": "Pàgina Contínua", - "textCurrentPosition": "Posició Actual", - "textDisplay": "Mostrar", + "textContinuousPage": "Pàgina contínua", + "textCurrentPosition": "Posició actual", + "textDisplay": "Visualització", "textEmptyImgUrl": "Cal que especifiqueu l’URL d'enllaç de la imatge.", "textEvenPage": "Pàgina parell", - "textFootnote": "Nota a peu de pàgina", + "textFootnote": "Nota al peu de pàgina", "textFormat": "Format", "textImage": "Imatge", "textImageURL": "URL de la imatge ", - "textInsert": "Insertar", - "textInsertFootnote": "Inserir Nota a Peu de Pàgina", - "textInsertImage": "Inserir Imatge", - "textLeftBottom": "Inferior Esquerra", - "textLeftTop": "Superior Esquerra", + "textInsert": "Insereix", + "textInsertFootnote": "Insereix una nota al peu de pàgina", + "textInsertImage": "Insereix una imatge", + "textLeftBottom": "Inferior esquerre", + "textLeftTop": "Superior esquerra", "textLink": "Enllaç", - "textLinkSettings": "Propietats de Enllaç", + "textLinkSettings": "Configuració de l'enllaç", "textLocation": "Ubicació", - "textNextPage": "Pàgina Següent", - "textOddPage": "Pàgina sanar.", + "textNextPage": "Pàgina següent", + "textOddPage": "Pàgina senar", "textOther": "Altre", - "textPageBreak": "Salt de Pàgina", - "textPageNumber": "Número de Pàgina", - "textPictureFromLibrary": "Imatge de la Llibreria", + "textPageBreak": "Salt de pàgina", + "textPageNumber": "Número de pàgina", + "textPictureFromLibrary": "Imatge de la biblioteca", "textPictureFromURL": "Imatge de l'URL", "textPosition": "Posició", - "textRightBottom": "Inferior Dreta", - "textRightTop": "Superior Dreta", + "textRightBottom": "Dreta Inferior", + "textRightTop": "Dreta superior", "textRows": "Files", - "textScreenTip": "Consells de Pantalla", - "textSectionBreak": "Salt de Secció", + "textScreenTip": "Consell de pantalla", + "textSectionBreak": "Salt de secció", "textShape": "Forma", - "textStartAt": "Començar A", + "textStartAt": "Comença a", "textTable": "Taula", - "textTableSize": "Mida de la Taula", - "txtNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.exemple.com\"" + "textTableSize": "Mida de la taula", + "txtNotUrl": "Aquest camp hauria de ser una URL amb el format \"http://www.exemple.com\"" }, "Common": { "Collaboration": { "notcriticalErrorTitle": "Advertiment", - "textAccept": "Acceptar", - "textAcceptAllChanges": "Acceptar tots els canvis", - "textAddComment": "Afegir comentari", - "textAddReply": "Afegir resposta", - "textAllChangesAcceptedPreview": "Tots el canvis acceptats (Previsualitzar)", + "textAccept": "Accepta ", + "textAcceptAllChanges": "Accepta tots els canvis", + "textAddComment": "Afegeix un comentari", + "textAddReply": "Afegeix una resposta", + "textAllChangesAcceptedPreview": "S'han acceptat tots el canvis (Previsualitzar)", "textAllChangesEditing": "Tots els canvis (Edició)", - "textAllChangesRejectedPreview": "Tots els canvis rebutjats (Previsualitzar)", - "textAtLeast": "al menys", - "textAuto": "Automàtic", + "textAllChangesRejectedPreview": "S'han rebutjat tots els canvis (Previsualitzar)", + "textAtLeast": "pel cap baix", + "textAuto": "automàtic", "textBack": "Enrere", - "textBaseline": "Línia base", + "textBaseline": "Línia de base", "textBold": "Negreta", - "textBreakBefore": "Salt de pàgina abans", - "textCancel": "Cancel·lar", - "textCaps": "Tot majúscules", - "textCenter": "Centrar", + "textBreakBefore": "Salt de pàgina anterior", + "textCancel": "Cancel·la", + "textCaps": "Tot en majúscules", + "textCenter": "Alinea al centre", "textChart": "Gràfic", "textCollaboration": "Col·laboració", - "textColor": "Color de Font", + "textColor": "Color del tipus de lletra", "textComments": "Comentaris", - "textContextual": "No afegir intervals entre paràgrafs del mateix estil", - "textDelete": "Suprimir", - "textDeleteComment": "Suprimir comentari", + "textContextual": "No afegeixis intervals entre paràgrafs del mateix estil", + "textDelete": "Suprimeix", + "textDeleteComment": "Suprimeix el comentari", "textDeleted": "Suprimit:", - "textDeleteReply": "Suprimir resposta", + "textDeleteReply": "Suprimeix la resposta", "textDisplayMode": "Mode de visualització", "textDone": "Fet", - "textDStrikeout": "Doble ratllat", - "textEdit": "Editar", - "textEditComment": "Editar Comentari", - "textEditReply": "Editar Resposta", + "textDStrikeout": "Ratllat doble", + "textEdit": "Edita", + "textEditComment": "Edita el comentari", + "textEditReply": "Edita la resposta", "textEditUser": "Usuaris que editen el fitxer:", "textEquation": "Equació", - "textExact": "exactament", + "textExact": "exacte", "textFinal": "Final", "textFirstLine": "Primera línia", "textFormatted": "Formatat", "textHighlight": "Color de ressaltat", "textImage": "Imatge", - "textIndentLeft": "Sagnat a l'esquerra", - "textIndentRight": "Sagnat a la dreta", + "textIndentLeft": "Sagnia a l'esquerra", + "textIndentRight": "Sagnia a la dreta", "textInserted": "Inserit:", - "textItalic": "Itàlica", - "textJustify": "Justificar", - "textKeepLines": "Mantenir les línies unides", - "textKeepNext": "Mantenir amb el següent", - "textLeft": "Alineació esquerra", - "textLineSpacing": "Espaiat Entre Línies:", - "textMarkup": "Cambis", + "textItalic": "Cursiva", + "textJustify": "Justifica", + "textKeepLines": "Conserva les línies juntes", + "textKeepNext": "Conserva amb el següent", + "textLeft": "Alinea a l'esquerra", + "textLineSpacing": "Interlineat:", + "textMarkup": "Etiquetatge", "textMessageDeleteComment": "Segur que voleu suprimir aquest comentari?", "textMessageDeleteReply": "Segur que voleu suprimir aquesta resposta?", - "textMultiple": "Múltiple", - "textNoBreakBefore": "Sense salt de pàgina abans", + "textMultiple": "múltiple", + "textNoBreakBefore": "Sense salt de pàgina anterior", "textNoChanges": "No hi ha canvis.", "textNoComments": "Aquest document no conté comentaris", - "textNoContextual": "Afegir un interval entre els paràgrafs del mateix estil", - "textNoKeepLines": "No mantingueu línies unides", - "textNoKeepNext": "No mantingueu amb el següent", + "textNoContextual": "Afegeix un interval entre els paràgrafs del mateix estil", + "textNoKeepLines": "No mantinguis les línies juntes", + "textNoKeepNext": "No segueixis amb el següent", "textNot": "No", - "textNoWidow": "Sense control de finestra", - "textNum": "Canviar numeració", + "textNoWidow": "No hi ha control de finestra", + "textNum": "Canvia la numeració", "textOriginal": "Original", - "textParaDeleted": "Paràgraf Suprimit ", - "textParaFormatted": "Paràgraf Formatat", - "textParaInserted": "Paràgraf Inserit", - "textParaMoveFromDown": "Mogut Avall:", - "textParaMoveFromUp": "Mogut Amunt:", - "textParaMoveTo": "Mogut:", + "textParaDeleted": "Paràgraf suprimit ", + "textParaFormatted": "Paràgraf formatat", + "textParaInserted": "Paràgraf inserit", + "textParaMoveFromDown": "S'ha desplaçat cap avall:", + "textParaMoveFromUp": "S'ha desplaçat cap amunt:", + "textParaMoveTo": "S'ha desplaçat:", "textPosition": "Posició", - "textReject": "Rebutjar", - "textRejectAllChanges": "Rebutjar Tots els Canvis", - "textReopen": "Reobrir", - "textResolve": "Resoldre", + "textReject": "Rebutja", + "textRejectAllChanges": "Rebutja tots els canvis", + "textReopen": "Torna a obrir", + "textResolve": "Resol", "textReview": "Revisió", - "textReviewChange": "Revisar Canvis", - "textRight": "Alineació dreta", + "textReviewChange": "Revisa el canvi", + "textRight": "Alinea a la dreta", "textShape": "Forma", "textShd": "Color de fons", - "textSmallCaps": "Majúscules petites", + "textSmallCaps": "Versaletes", "textSpacing": "Espaiat", - "textSpacingAfter": "Espai després", - "textSpacingBefore": "Espai abans", - "textStrikeout": "Ratllar", + "textSpacingAfter": "Espaiat posterior", + "textSpacingBefore": "Espaiat anterior", + "textStrikeout": "Ratllat", "textSubScript": "Subíndex", "textSuperScript": "Superíndex", - "textTableChanged": "S'ha Canviat la Configuració de la Taula", - "textTableRowsAdd": "S'han afegit files de taula", - "textTableRowsDel": "S'han Suprimit les Files de la Taula", - "textTabs": "Canviar tabulacions", - "textTrackChanges": "Control de Canvis", - "textTryUndoRedo": "Les funcions Desfer/Refer estan desactivades per al mode de coedició ràpida.", - "textUnderline": "Subratllar", + "textTableChanged": "S'ha canviat la configuració de la taula", + "textTableRowsAdd": "S'han afegit files a la taula", + "textTableRowsDel": "S'han suprimit files de la taula", + "textTabs": "Canvia la tabulació", + "textTrackChanges": "Control de canvis", + "textTryUndoRedo": "S'han desactivat les funcions desfés/refés per al mode de coedició ràpida.", + "textUnderline": "Subratllat", "textUsers": "Usuaris", "textWidow": "Control de finestra" }, "ThemeColorPalette": { - "textCustomColors": "Colors Personalitzats", - "textStandartColors": "Colors Estàndards", - "textThemeColors": "Colors del Tema" + "textCustomColors": "Colors personalitzats", + "textStandartColors": "Colors estàndard", + "textThemeColors": "Colors del tema" } }, "ContextMenu": { "errorCopyCutPaste": "Les accions de copiar, tallar i enganxar mitjançant el menú contextual només es realitzaran en el fitxer actual.", - "menuAddComment": "Afegir comentari", - "menuAddLink": "Afegir enllaç", - "menuCancel": "Cancel·lar", - "menuDelete": "Suprimir", - "menuDeleteTable": "Suprimir Taula", - "menuEdit": "Editar", - "menuMerge": "Combinar", + "menuAddComment": "Afegeix un comentari", + "menuAddLink": "Afegeix un enllaç", + "menuCancel": "Cancel·la", + "menuDelete": "Suprimeix", + "menuDeleteTable": "Suprimeix la taula", + "menuEdit": "Edita", + "menuMerge": "Combina", "menuMore": "Més", - "menuOpenLink": "Obrir Enllaç", + "menuOpenLink": "Obre l'enllaç", "menuReview": "Revisió", - "menuReviewChange": "Revisar Canvis", - "menuSplit": "Dividir", - "menuViewComment": "Veure Comentari", + "menuReviewChange": "Revisa el canvi", + "menuSplit": "Divideix", + "menuViewComment": "Mostra el comentari", "textColumns": "Columnes", - "textCopyCutPasteActions": "Accions de Copiar, Tallar i Enganxar ", - "textDoNotShowAgain": "No ho tornis a mostrar", + "textCopyCutPasteActions": "Accions de copia, talla i enganxa ", + "textDoNotShowAgain": "No ho mostris més", "textRows": "Files" }, "Edit": { "notcriticalErrorTitle": "Advertiment", - "textActualSize": "Mida actual", - "textAddCustomColor": "Afegir color personalitzat", + "textActualSize": "Mida real", + "textAddCustomColor": "Afegeix un color personalitzat", "textAdditional": "Addicional", "textAdditionalFormatting": "Format addicional", "textAddress": "Adreça", "textAdvanced": "Avançat", "textAdvancedSettings": "Configuració avançada", - "textAfter": "després", - "textAlign": "Alinear", - "textAllCaps": "Tot majúscules", + "textAfter": "Després", + "textAlign": "Alineació", + "textAllCaps": "Tot en majúscules", "textAllowOverlap": "Permet que se superposin", "textAuto": "Automàtic", "textAutomatic": "Automàtic", "textBack": "Enrere", "textBackground": "Fons", - "textBandedColumn": "Columna amb bandes", - "textBandedRow": "Fila amb bandes", + "textBandedColumn": "Columna en bandes", + "textBandedRow": "Fila en bandes", "textBefore": "Abans", "textBehind": "Darrere", "textBorder": "Vora", - "textBringToForeground": "Portar a primer pla", - "textBullets": "Vinyetes", - "textBulletsAndNumbers": "Vinyetes i números", - "textCellMargins": "Marges de cel·la", + "textBringToForeground": "Porta al primer pla", + "textBullets": "Pics", + "textBulletsAndNumbers": "Pics i números", + "textCellMargins": "Marges de la cel·la", "textChart": "Gràfic", - "textClose": "Tancar", + "textClose": "Tanca", "textColor": "Color", - "textContinueFromPreviousSection": "Continuar des de la secció anterior", - "textCustomColor": "Color Personalitzat", + "textContinueFromPreviousSection": "Continua des de la secció anterior", + "textCustomColor": "Color personalitzat", "textDifferentFirstPage": "Primera pàgina diferent", - "textDifferentOddAndEvenPages": "Pàgines senars i parelles diferents", - "textDisplay": "Mostrar", - "textDistanceFromText": "Distància des del text", - "textDoubleStrikethrough": "Ratllat Doble", - "textEditLink": "Editar Enllaç", + "textDifferentOddAndEvenPages": "Pàgines senars i parells diferents", + "textDisplay": "Visualització", + "textDistanceFromText": "Distància del text", + "textDoubleStrikethrough": "Ratllat doble", + "textEditLink": "Edita l'enllaç", "textEffects": "Efectes", "textEmptyImgUrl": "Cal que especifiqueu l’URL d'enllaç de la imatge.", - "textFill": "Omplir", - "textFirstColumn": "Primera Columna", - "textFirstLine": "PrimeraLínia", + "textFill": "Emplena", + "textFirstColumn": "Primera columna", + "textFirstLine": "Primera línia", "textFlow": "Flux", - "textFontColor": "Color de Font", - "textFontColors": "Colors de Font", - "textFonts": "Fonts", + "textFontColor": "Color del tipus de lletra", + "textFontColors": "Colors del tipus de lletra", + "textFonts": "Tipus de lletra", "textFooter": "Peu de pàgina", "textHeader": "Capçalera", - "textHeaderRow": "Fila de Capçalera", - "textHighlightColor": "Color de ressaltat", - "textHyperlink": "Hiperenllaç", + "textHeaderRow": "Fila de capçalera", + "textHighlightColor": "Ressalta el color", + "textHyperlink": "Enllaç", "textImage": "Imatge", "textImageURL": "URL de la imatge ", "textInFront": "Davant", - "textInline": "Alineat", - "textKeepLinesTogether": "Mantenir les Línies Unides", - "textKeepWithNext": "Mantenir amb el següent", - "textLastColumn": "Última Columna", - "textLetterSpacing": "Espaiat de Lletres", - "textLineSpacing": "Espaiat Entre Línies", + "textInline": "En línia", + "textKeepLinesTogether": "Conserva les línies juntes", + "textKeepWithNext": "Conserva amb el següent", + "textLastColumn": "Última columna", + "textLetterSpacing": "Espaiat de les lletres", + "textLineSpacing": "Interlineat", "textLink": "Enllaç", - "textLinkSettings": "Propietats de Enllaç", - "textLinkToPrevious": "Enllaçar a l'anterior", - "textMoveBackward": "Moure Enrere", - "textMoveForward": "Moure Endavant", - "textMoveWithText": "Moure amb el Text", - "textNone": "cap", - "textNoStyles": "No hi ha estils per a aquest tipus de diagrames.", - "textNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.exemple.com\"", + "textLinkSettings": "Configuració de l'enllaç", + "textLinkToPrevious": "Enllaça-ho amb l'anterior", + "textMoveBackward": "Torna enrere", + "textMoveForward": "Avança", + "textMoveWithText": "Mou amb el text", + "textNone": "Cap", + "textNoStyles": "No hi ha estils per a aquest tipus de gràfics.", + "textNotUrl": "Aquest camp hauria de ser una URL amb el format \"http://www.exemple.com\"", "textNumbers": "Nombres", "textOpacity": "Opacitat", "textOptions": "Opcions", - "textOrphanControl": "Control de línies Orfes", - "textPageBreakBefore": "Salt de pàgina abans", - "textPageNumbering": "Numeració de Pàgines", + "textOrphanControl": "Control de línies orfes", + "textPageBreakBefore": "Salt de pàgina anterior", + "textPageNumbering": "Numeració de pàgines", "textParagraph": "Paràgraf", - "textParagraphStyles": "Estils de Paràgraf", - "textPictureFromLibrary": "Imatge de la Biblioteca", + "textParagraphStyles": "Estils de paràgraf", + "textPictureFromLibrary": "Imatge de la biblioteca", "textPictureFromURL": "Imatge de l'URL", "textPt": "pt", - "textRemoveChart": "Eliminar Diagrama", - "textRemoveImage": "Suprimir Imatge", - "textRemoveLink": "Suprimir Enllaç", - "textRemoveShape": "Suprimir forma", - "textRemoveTable": "Suprimir Taula", - "textReorder": "Reordenar", - "textRepeatAsHeaderRow": "Repetir com a Fila de Capçalera", + "textRemoveChart": "Suprimeix el gràfic", + "textRemoveImage": "Suprimeix la imatge", + "textRemoveLink": "Suprimeix l'enllaç", + "textRemoveShape": "Suprimeix la forma", + "textRemoveTable": "Suprimeix la taula", + "textReorder": "Reordena", + "textRepeatAsHeaderRow": "Repeteix com a fila de capçalera", "textReplace": "Substitueix", - "textReplaceImage": "Substituir Imatge", - "textResizeToFitContent": "Redimensionar per ajustar el contingut", - "textScreenTip": "Consells de Pantalla", - "textSelectObjectToEdit": "Seleccionar l'objecte a editar", - "textSendToBackground": "Enviar al fons", + "textReplaceImage": "Substitueix la imatge", + "textResizeToFitContent": "Canvia la mida per ajustar el contingut", + "textScreenTip": "Consell de pantalla", + "textSelectObjectToEdit": "Selecciona l'objecte a editar", + "textSendToBackground": "Envia al fons", "textSettings": "Configuració", "textShape": "Forma", "textSize": "Mida", - "textSmallCaps": "Majúscules petites", - "textSpaceBetweenParagraphs": "Espai entre Paràgrafs", + "textSmallCaps": "Versaletes", + "textSpaceBetweenParagraphs": "Espaiat entre paràgrafs", "textSquare": "Quadrat", - "textStartAt": "Començar a", + "textStartAt": "Comença a", "textStrikethrough": "Ratllat", "textStyle": "Estil", "textStyleOptions": "Opcions d'estil", "textSubscript": "Subíndex", "textSuperscript": "Superíndex", "textTable": "Taula", - "textTableOptions": "Opcions de Taula", + "textTableOptions": "Opcions de la taula", "textText": "Text", "textThrough": "A través", "textTight": "Estret", - "textTopAndBottom": "Superior e Inferior", - "textTotalRow": "Fila Total", + "textTopAndBottom": "Superior i inferior", + "textTotalRow": "Fila de total", "textType": "Tipus", - "textWrap": "Embolcall" + "textWrap": "Ajustament" }, "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": "Descàrrega fallida.", - "errorAccessDeny": "Esteu intentant realitzar una acció per la qual no teniu drets.
Si us plau, poseu-vos en contacte amb el vostre administrador.", - "errorBadImageUrl": "L'enllaç de la imatge es incorrecte", - "errorConnectToServer": "No es pot desar aquest doc. Comproveu la configuració de la connexió o poseu-vos en contacte amb l'administrador.
Quan feu clic a D'acord, se us demanarà que baixeu el document.", - "errorDatabaseConnection": "Error extern.
Error de connexió a la base de dades. Si us plau, poseu-vos en contacte amb el servei d'assistència.", + "downloadErrorText": "S'ha produït un error en la baixada", + "errorAccessDeny": "No teniu permís per realitzar aquesta acció.
Contacteu amb el vostre administrador.", + "errorBadImageUrl": "L'URL de la imatge no és correcta", + "errorConnectToServer": "No es pot desar aquest doc. Comproveu la configuració de la connexió o poseu-vos en contacte amb l'administrador.
Quan cliqueu a D'acord, se us demanarà que baixeu el document.", + "errorDatabaseConnection": "Error extern.
Error de connexió amb la base de dades. Contacteu amb el servei d'assistència tècnica.", "errorDataEncrypted": "S'han rebut canvis xifrats, que no es poden desxifrar.", - "errorDataRange": "Interval de dades incorrecte.", - "errorDefaultMessage": "Codi d'error: %1", - "errorEditingDownloadas": "S'ha produït un error durant el treball amb el document.
Baixeu-lo per desar la còpia de seguretat del fitxer localment.", + "errorDataRange": "L'interval de dades no és correcte.", + "errorDefaultMessage": "Codi d'error:%1", + "errorEditingDownloadas": "S'ha produït un error mentre es treballava amb el document.
Baixeu-lo per desar la còpia de seguretat del fitxer localment.", "errorFilePassProtect": "El fitxer està protegit amb contrasenya i no s'ha pogut obrir.", - "errorFileSizeExceed": "La mida del fitxer supera el límit del vostre servidor.
Si us plau, poseu-vos en contacte amb l'administrador.", - "errorKeyEncrypt": "Descriptor de la clau desconegut", - "errorKeyExpire": "El descriptor de la clau ha caducat", - "errorMailMergeLoadFile": "Ha fallat la càrrega", - "errorMailMergeSaveFile": "Ha fallat la fusió.", + "errorFileSizeExceed": "La mida del fitxer supera el límit del vostre servidor.
Contacteu amb el vostre administrador.", + "errorKeyEncrypt": "Descriptor de claus desconegut", + "errorKeyExpire": "El descriptor de claus ha caducat", + "errorMailMergeLoadFile": "No s'ha pogut carregar", + "errorMailMergeSaveFile": "No s'ha pogut combinar.", "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.", - "errorUpdateVersionOnDisconnect": "La connexió a Internet s'ha restaurat i la versió del fitxer s'ha canviat.
Abans de continuar treballant, heu de descarregar el fitxer o copiar-ne el contingut per assegurar-vos que no es perdi res i, després, tornar a carregar aquesta pàgina.", - "errorUserDrop": "No es pot accedir al fitxer ara mateix.", - "errorUsersExceed": "S'ha superat el nombre d’usuaris permès pel vostre pla", + "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.", + "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 que permet el 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.", "notcriticalErrorTitle": "Advertiment", "openErrorText": "S'ha produït un error en obrir el fitxer", @@ -333,73 +333,73 @@ "splitMaxRowsErrorText": "El nombre de files ha de ser inferior a %1", "unknownErrorText": "Error desconegut.", "uploadImageExtMessage": "Format d'imatge desconegut.", - "uploadImageFileCountMessage": "Cap imatge carregada.", + "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", - "downloadMergeText": "Descarregant...", - "downloadMergeTitle": "Descarregant", - "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", - "mailMergeLoadFileText": "Carregant l'origen de dades...", - "mailMergeLoadFileTitle": "Carregant l'origen de dades", - "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", - "sendMergeText": "S'està enviant la Combinació...", - "sendMergeTitle": "S'està enviant la Combinació", - "textLoadingDocument": "Carregant document", - "txtEditingMode": "Establir el mode d'edició ...", - "uploadImageTextText": "Pujant imatge...", - "uploadImageTitleText": "Pujant Imatge", - "waitText": "Si us plau, esperi..." + "applyChangesTextText": "S'estant carregant les dades...", + "applyChangesTitleText": "S'estan carregant les dades", + "downloadMergeText": "S'està baixant...", + "downloadMergeTitle": "S'està baixant", + "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", + "mailMergeLoadFileText": "S'està carregant l'origen de dades...", + "mailMergeLoadFileTitle": "S'està carregant l'origen de dades", + "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", + "sendMergeText": "S'està enviant la combinació...", + "sendMergeTitle": "S'està enviant la combinació", + "textLoadingDocument": "S'està carregant el document", + "txtEditingMode": "Estableix el mode d'edició ...", + "uploadImageTextText": "S'està carregant la imatge...", + "uploadImageTitleText": "S'està carregant la imatge", + "waitText": "Espereu..." }, "Main": { "criticalErrorTitle": "Error", - "errorAccessDeny": "Esteu intentant realitzar una acció per a la que no teniu drets.
Si us plau, poseu-vos en contacte amb l'administrador.", - "errorOpensource": "Utilitzant la versió comunitària lliure, només podeu obrir documents per a la seva visualització. Per accedir als editors web mòbils, es requereix una llicència comercial.", - "errorProcessSaveResult": "Error en desar", + "errorAccessDeny": "No teniu permís per fer aquesta acció. Contacteu amb el vostre administrador.", + "errorOpensource": "Amb la versió gratuïta de la Comunitat, només podeu obrir els documents en mode lectura. Per accedir als editors de web per a mòbils, cal una llicència comercial.", + "errorProcessSaveResult": "S'ha produït un error en desar.", "errorServerVersion": "S'ha actualitzat la versió de l'editor. Es tornarà a carregar la pàgina per aplicar els canvis.", - "errorUpdateVersion": "La versió del fitxer s'ha canviat. La pàgina es tornarà a carregar.", - "leavePageText": "Teniu canvis sense desar. Feu clic a \"Mantingueu-vos en aquesta pàgina\" per esperar al desament automàtic. Feu clic a \"Deixar aquesta pàgina\" per descartar tots els canvis no desats.", + "errorUpdateVersion": "S'ha canviat la versió del fitxer. La pàgina es tornarà a carregar.", + "leavePageText": "Teniu canvis sense desar. Cliqueu a \"Mantingueu-vos en aquesta pàgina\" per esperar al desament automàtic. Cliqueu a \"Deixar aquesta pàgina\" per descartar tots els canvis no desats.", "notcriticalErrorTitle": "Advertiment", "SDK": { " -Section ": "-Secció", - "above": "Damunt", - "below": "Sota", + "above": "a dalt", + "below": "A sota", "Caption": "Llegenda", "Choose an item": "Tria un element", - "Click to load image": "Clicar per carregar la imatge", - "Current Document": "Document Actual", - "Diagram Title": "Títol del Gràfic", - "endnote text": "Final de Nota de Text", - "Enter a date": "Introduïu una data", - "Error! Bookmark not defined": "Error! Marcador no definit.", - "Error! Main Document Only": "Error! Només Document Principal.", + "Click to load image": "Clica per carregar la imatge", + "Current Document": "Document actual", + "Diagram Title": "Títol del gràfic", + "endnote text": "Text de nota al final", + "Enter a date": "Introdueix una data", + "Error! Bookmark not defined": "Error! No s'ha definit el marcador.", + "Error! Main Document Only": "Error! Només el document principal.", "Error! No text of specified style in document": "Error! No hi ha cap text de l'estil especificat al document.", - "Error! Not a valid bookmark self-reference": "Error! No és una autoreferència vàlida d'adreces d'interès.", + "Error! Not a valid bookmark self-reference": "Error! No és una autoreferència de marcador vàlida.", "Even Page ": "Pàgina parell", - "First Page ": "Primera Pàgina", + "First Page ": "Primera pàgina", "Footer": "Peu de pàgina", - "footnote text": "Text de Nota al Peu de Pàgina", + "footnote text": "Text de nota al peu de pàgina", "Header": "Capçalera", "Heading 1": "Títol 1", "Heading 2": "Títol 2", @@ -410,144 +410,144 @@ "Heading 7": "Títol 7", "Heading 8": "Títol 8", "Heading 9": "Títol 9", - "Hyperlink": "Hiperenllaç", - "Index Too Large": "L'índex és Massa Gran", - "Intense Quote": "Cita Destacada", - "Is Not In Table": "No És a la Taula", - "List Paragraph": "Paràgraf de la Llista", - "Missing Argument": "Falta Argument", - "Missing Operator": "Falta Operador", - "No Spacing": "Sense Espai", - "No table of contents entries found": "No hi ha capçaleres en el document. Aplica un estil d'encapçalament al text perquè aparegui a la taula de continguts.", - "No table of figures entries found": "No s'ha trobat cap entrada a la taula de figures.", + "Hyperlink": "Enllaç", + "Index Too Large": "L'índex és massa gran", + "Intense Quote": "Cita intensa", + "Is Not In Table": "No hi és a la taula", + "List Paragraph": "Paràgraf de llista", + "Missing Argument": "Falta l'argument", + "Missing Operator": "Falta l'operador", + "No Spacing": "Sense espaiat", + "No table of contents entries found": "No hi ha cap títol al document. Apliqueu un estil d’encapçalament al text perquè aparegui a la taula de continguts.", + "No table of figures entries found": "No s'ha trobat cap entrada a l'índex d'il·lustracions.", "None": "Cap", "Normal": "Normal", - "Number Too Large To Format": "Nombre Massa Gran Per Formatar", - "Odd Page ": "Pàgina Sanar.", + "Number Too Large To Format": "El número és massa gran per atorgar-li format", + "Odd Page ": "Pàgina senar", "Quote": "Cita", - "Same as Previous": "Igual al Anterior", - "Series": "Sèrie", + "Same as Previous": "Igual a l'anterior", + "Series": "Sèries", "Subtitle": "Subtítol", - "Syntax Error": "Error de Sintaxi", - "Table Index Cannot be Zero": "L'índex de la Taula No pot ser Zero", - "Table of Contents": "Taula de Continguts", - "table of figures": "Taula de figures", - "The Formula Not In Table": "La Fórmula No es a la Taula", - "Title": "Nom", + "Syntax Error": "Error de sintaxi", + "Table Index Cannot be Zero": "L'índex de la taula no pot ser zero", + "Table of Contents": "Taula de continguts", + "table of figures": "Índex d'il·lustracions", + "The Formula Not In Table": "La fórmula no és a la taula", + "Title": "Títol", "TOC Heading": "Capçalera de la taula de continguts", "Type equation here": "Escriu l'equació aquí", "Undefined Bookmark": "Marcador no definit", "Unexpected End of Formula": "Final inesperat de la fórmula", "X Axis": "Eix X XAS", "Y Axis": "Eix Y", - "Your text here": "El seu text aquí", + "Your text here": "El vostre text aquí", "Zero Divide": "Divideix per zero" }, "textAnonymous": "Anònim", - "textBuyNow": "Visita lloc web", - "textClose": "Tancar", - "textContactUs": "Equip de vendes", + "textBuyNow": "Visitar el lloc web", + "textClose": "Tanca", + "textContactUs": "Contacta amb vendes", "textCustomLoader": "No teniu 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í", - "titleLicenseExp": "Llicència Caducada", - "titleServerVersion": "Editor actualitzat", - "titleUpdateVersion": "Versió canviada", - "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.", - "warnLicenseExp": "La vostra llicència ha caducat. Si us plau, actualitzeu la vostra llicència i actualitzeu la pàgina.", - "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'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.", + "titleLicenseExp": "La llicència ha caducat", + "titleServerVersion": "S'ha actualitzat l'editor", + "titleUpdateVersion": "S'ha canviat la versió", + "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ó.", + "warnLicenseExp": "La vostra llicència ha caducat. Actualitzeu la vostra llicència i la pàgina.", + "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 total", + "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 aquest fitxer." }, "Settings": { - "advDRMOptions": "Fitxer Protegit", + "advDRMOptions": "El fitxer està protegit", "advDRMPassword": "Contrasenya", - "advTxtOptions": "Trieu opcions d'arxiu TXT", - "closeButtonText": "Tancar fitxer", + "advTxtOptions": "Tria les opcions de fitxer TXT", + "closeButtonText": "Tanca el fitxer", "notcriticalErrorTitle": "Advertiment", "textAbout": "Quant a...", "textApplication": "Aplicació", "textApplicationSettings": "Configuració de l'aplicació", "textAuthor": "Autor", "textBack": "Enrere", - "textBottom": "Part inferior", - "textCancel": "Cancel·lar", + "textBottom": "Inferior", + "textCancel": "Cancel·la", "textCaseSensitive": "Sensible a majúscules i minúscules", "textCentimeter": "Centímetre", "textCollaboration": "Col·laboració", - "textColorSchemes": "Esquema de Color", + "textColorSchemes": "Combinacions de colors", "textComment": "Comentari", "textComments": "Comentaris", - "textCommentsDisplay": "Mostrar comentaris", + "textCommentsDisplay": "Visualització de comentaris", "textCreated": "Creat", - "textCustomSize": "Mida Personalitzada", - "textDisableAll": "Desactivar-ho tot", - "textDisableAllMacrosWithNotification": "Desactivar totes les macros amb notificació", - "textDisableAllMacrosWithoutNotification": "Desactivar totes les macros sense notificació", - "textDocumentInfo": "Informació del Document", - "textDocumentSettings": "Paràmetres del Document", - "textDocumentTitle": "Nom del document", + "textCustomSize": "Mida personalitzada", + "textDisableAll": "Inhabilita-ho tot", + "textDisableAllMacrosWithNotification": "Inhabilita totes les macros amb notificació", + "textDisableAllMacrosWithoutNotification": "Inhabilita totes les macros sense notificació", + "textDocumentInfo": "Informació del document", + "textDocumentSettings": "Configuració dels documents", + "textDocumentTitle": "Títol del document", "textDone": "Fet", - "textDownload": "Descarregar", - "textDownloadAs": "Baixar com a", + "textDownload": "Baixa", + "textDownloadAs": "Baixa-ho com a", "textDownloadRtf": "Si continueu desant en aquest format, es podrien perdre alguns dels formats. Segur que voleu continuar?", - "textDownloadTxt": "\nSi continueu desant en aquest format, es perdran totes les característiques excepte el text. Segur que voleu continuar?", - "textEnableAll": "Activar-ho tot", - "textEnableAllMacrosWithoutNotification": "Activar totes les macros sense notificació", + "textDownloadTxt": "Si continueu desant en aquest format, es perdran totes les característiques excepte el text. Segur que voleu continuar?", + "textEnableAll": "Habilita-ho tot", + "textEnableAllMacrosWithoutNotification": "Habilita totes les macros sense notificació", "textEncoding": "Codificació", - "textFind": "Cercar", - "textFindAndReplace": "Cercar i substituir", - "textFindAndReplaceAll": "Cercar i Substituir Tot", + "textFind": "Cerca", + "textFindAndReplace": "Cerca i substitueix", + "textFindAndReplaceAll": "Cerca i substitueix-ho tot", "textFormat": "Format", "textHelp": "Ajuda", - "textHiddenTableBorders": "Amagar Vores de la Taula", - "textHighlightResults": "Ressaltar els resultats", + "textHiddenTableBorders": "Les vores de la taula estan amagades", + "textHighlightResults": "Ressalta els resultats", "textInch": "Polzada", - "textLandscape": "Horitzontal", - "textLastModified": "Última Modificació", - "textLastModifiedBy": "Última Modificació Per", + "textLandscape": "Orientació horitzontal", + "textLastModified": "Última modificació", + "textLastModifiedBy": "Última modificació feta per", "textLeft": "Esquerra", - "textLoading": "Carregant...", + "textLoading": "S'està carregant...", "textLocation": "Ubicació", - "textMacrosSettings": "Configuració de Macros", + "textMacrosSettings": "Configuració de les macros", "textMargins": "Marges", "textMarginsH": "Els marges superior i inferior són massa alts per a una alçada de pàgina determinada", - "textMarginsW": "Els marges esquerre i dret són massa amplis per a un ample de pàgina determinat", - "textNoCharacters": "Caràcters no Imprimibles", - "textNoTextFound": "Text no Trobat", - "textOpenFile": "Introduïu una contrasenya per obrir el fitxer", + "textMarginsW": "Els marges esquerre i dret són massa amples per a una amplada de pàgina determinada", + "textNoCharacters": "Caràcters que no es poden imprimir", + "textNoTextFound": "No s'ha trobat el text", + "textOpenFile": "Introdueix una contrasenya per obrir el fitxer", "textOrientation": "Orientació", "textOwner": "Propietari", "textPoint": "Punt", - "textPortrait": "Retrat Vertical", - "textPrint": "Imprimir", + "textPortrait": "Orientació vertical", + "textPrint": "Imprimeix", "textReaderMode": "Mode de lectura", "textReplace": "Substitueix", "textReplaceAll": "Substituir-ho Tot ", - "textResolvedComments": "Comentaris Resolts", + "textResolvedComments": "Comentaris resolts", "textRight": "Dreta", - "textSearch": "Cercar", + "textSearch": "Cerca", "textSettings": "Configuració", - "textShowNotification": "Mostra la Notificació", - "textSpellcheck": "Comprovació Ortogràfica", + "textShowNotification": "Mostra la notificació", + "textSpellcheck": "Revisió ortogràfica", "textStatistic": "Estadístiques", "textSubject": "Assumpte", - "textTitle": "Nom", + "textTitle": "Títol", "textTop": "Superior", - "textUnitOfMeasurement": "Unitat de Mesura", - "textUploaded": "Penjat", - "txtIncorrectPwd": "La contrasenya és incorrecta", - "txtProtected": "Una vegada entreu la contrasenya i obriu el fitxer, es restablirà la contrasenya actual", - "txtScheme1": "Oficina", - "txtScheme10": "Mitjana", + "textUnitOfMeasurement": "Unitat de mesura", + "textUploaded": "S'ha carregat", + "txtIncorrectPwd": "La contrasenya no és correcta", + "txtProtected": "Una vegada introduïu la contrasenya i obriu el fitxer, es restablirà la contrasenya actual", + "txtScheme1": "Office", + "txtScheme10": "Mediana", "txtScheme11": "Metro", "txtScheme12": "Mòdul", "txtScheme13": "Opulent", @@ -559,21 +559,21 @@ "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", "textOk": "Ok" }, "Toolbar": { - "dlgLeaveMsgText": "Teniu canvis sense desar. Feu clic a \"Mantingueu-vos en aquesta pàgina\" per esperar al desament automàtic. Feu clic a \"Deixar aquesta pàgina\" per descartar tots els canvis no desats.", - "dlgLeaveTitleText": "Deixeu l'aplicació", - "leaveButtonText": "Sortir d'aquesta Pàgina", - "stayButtonText": "Queda't en aquesta pàgina" + "dlgLeaveMsgText": "Teniu canvis sense desar. Cliqueu a \"Mantingueu-vos en aquesta pàgina\" per esperar al desament automàtic. Cliqueu a \"Deixar 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" } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/de.json b/apps/documenteditor/mobile/locale/de.json index f96122d53..bdad7ab02 100644 --- a/apps/documenteditor/mobile/locale/de.json +++ b/apps/documenteditor/mobile/locale/de.json @@ -314,6 +314,7 @@ "errorFileSizeExceed": "Die Dateigröße ist zu hoch für Ihren Server.
Bitte wenden Sie sich an Administratoren.", "errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor", "errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen", + "errorLoadingFont": "Schriftarten nicht hochgeladen.
Bitte wenden Sie sich an Administratoren von Ihrem Document Server.", "errorMailMergeLoadFile": "Fehler beim Laden", "errorMailMergeSaveFile": "Verbinden ist fehlgeschlagen.", "errorSessionAbsolute": "Die Bearbeitungssitzung ist abgelaufen. Bitte die Seite neu laden.", @@ -334,8 +335,7 @@ "unknownErrorText": "Unbekannter Fehler.", "uploadImageExtMessage": "Unbekanntes Bildformat.", "uploadImageFileCountMessage": "Keine Bilder hochgeladen.", - "uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten." }, "LongActions": { "applyChangesTextText": "Daten werden geladen...", @@ -523,6 +523,7 @@ "textMarginsW": "Linke und rechte Ränder sind zu hoch für gültige Seitenhöhe", "textNoCharacters": "Formatierungszeichen", "textNoTextFound": "Der Text wurde nicht gefunden", + "textOk": "OK", "textOpenFile": "Kennwort zum Öffnen der Datei eingeben", "textOrientation": "Orientierung", "textOwner": "Besitzer", @@ -567,8 +568,7 @@ "txtScheme6": "Halle", "txtScheme7": "Kapital", "txtScheme8": "Fluss", - "txtScheme9": "Gießerei", - "textOk": "Ok" + "txtScheme9": "Gießerei" }, "Toolbar": { "dlgLeaveMsgText": "Sie haben nicht gespeicherte Änderungen. Klicken Sie auf \"Auf dieser Seite bleiben\" und warten Sie, bis die Datei automatisch gespeichert wird. Klicken Sie auf \"Die Seite verlassen\", um nicht gespeicherte Änderungen zu verwerfen.", diff --git a/apps/documenteditor/mobile/locale/en.json b/apps/documenteditor/mobile/locale/en.json index 3632d1187..dc48c0184 100644 --- a/apps/documenteditor/mobile/locale/en.json +++ b/apps/documenteditor/mobile/locale/en.json @@ -314,6 +314,7 @@ "errorFileSizeExceed": "The file size exceeds your server limit.
Please, contact your admin.", "errorKeyEncrypt": "Unknown key descriptor", "errorKeyExpire": "Key descriptor expired", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "errorMailMergeLoadFile": "Loading failed", "errorMailMergeSaveFile": "Merge failed.", "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", @@ -323,7 +324,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 can't be accessed right now.", "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download it until the connection is restored and the page is reloaded.", + "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.", "notcriticalErrorTitle": "Warning", "openErrorText": "An error has occurred while opening the file", "saveErrorText": "An error has occurred while saving the file", @@ -334,8 +335,7 @@ "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." }, "LongActions": { "applyChangesTextText": "Loading data...", @@ -480,7 +480,6 @@ "textBack": "Back", "textBottom": "Bottom", "textCancel": "Cancel", - "textOk": "Ok", "textCaseSensitive": "Case Sensitive", "textCentimeter": "Centimeter", "textCollaboration": "Collaboration", @@ -524,6 +523,7 @@ "textMarginsW": "Left and right margins are too wide for a given page width", "textNoCharacters": "Nonprinting Characters", "textNoTextFound": "Text not found", + "textOk": "Ok", "textOpenFile": "Enter a password to open the file", "textOrientation": "Orientation", "textOwner": "Owner", diff --git a/apps/documenteditor/mobile/locale/fr.json b/apps/documenteditor/mobile/locale/fr.json index 982286b38..5bf81c13c 100644 --- a/apps/documenteditor/mobile/locale/fr.json +++ b/apps/documenteditor/mobile/locale/fr.json @@ -314,6 +314,7 @@ "errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.
Veuillez contacter votre administrateur. ", "errorKeyEncrypt": "Descripteur de clé inconnu", "errorKeyExpire": "Descripteur de clés expiré", + "errorLoadingFont": "Les polices ne sont pas téléchargées.
Veuillez contacter l'administrateur de Document Server.", "errorMailMergeLoadFile": "Échec du chargement", "errorMailMergeSaveFile": "Fusion a échoué.", "errorSessionAbsolute": "Votre session a expiré. Veuillez recharger la page.", @@ -334,8 +335,7 @@ "unknownErrorText": "Erreur inconnue.", "uploadImageExtMessage": "Format d'image inconnu.", "uploadImageFileCountMessage": "Aucune image chargée.", - "uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo." }, "LongActions": { "applyChangesTextText": "Chargement des données en cours...", @@ -523,6 +523,7 @@ "textMarginsW": "Les marges gauche et droite sont trop larges pour une largeur de page donnée", "textNoCharacters": "Caractères non imprimables", "textNoTextFound": "Le texte est introuvable", + "textOk": "OK", "textOpenFile": "Entrer le mot de passe pour ouvrir le fichier", "textOrientation": "Orientation", "textOwner": "Propriétaire", @@ -567,8 +568,7 @@ "txtScheme6": "Rotonde", "txtScheme7": "Capitaux", "txtScheme8": "Flux", - "txtScheme9": "Fonderie", - "textOk": "Ok" + "txtScheme9": "Fonderie" }, "Toolbar": { "dlgLeaveMsgText": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur Rester sur cette page et attendez l'enregistrement automatique. Cliquez sur Quitter cette page pour annuler toutes les modifications non enregistrées.", diff --git a/apps/documenteditor/mobile/locale/ja.json b/apps/documenteditor/mobile/locale/ja.json index 73e5ed580..6fafc5830 100644 --- a/apps/documenteditor/mobile/locale/ja.json +++ b/apps/documenteditor/mobile/locale/ja.json @@ -483,6 +483,7 @@ "textMarginsW": "Left and right margins are too wide for a given page width", "textNoCharacters": "Nonprinting Characters", "textNoTextFound": "Text not found", + "textOk": "Ok", "textOpenFile": "Enter a password to open the file", "textOrientation": "Orientation", "textOwner": "Owner", @@ -527,8 +528,7 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry", - "textOk": "Ok" + "txtScheme9": "Foundry" }, "Error": { "convertationTimeoutText": "Conversion timeout exceeded.", @@ -547,6 +547,7 @@ "errorFileSizeExceed": "The file size exceeds your server limit.
Please, contact your admin.", "errorKeyEncrypt": "Unknown key descriptor", "errorKeyExpire": "Key descriptor expired", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "errorMailMergeLoadFile": "Loading failed", "errorMailMergeSaveFile": "Merge failed.", "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", @@ -556,7 +557,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 can't be accessed right now.", "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download it until the connection is restored and the page is reloaded.", + "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.", "notcriticalErrorTitle": "Warning", "openErrorText": "An error has occurred while opening the file", "saveErrorText": "An error has occurred while saving the file", @@ -567,8 +568,7 @@ "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/ro.json b/apps/documenteditor/mobile/locale/ro.json index 2e2fd3c59..5f4716379 100644 --- a/apps/documenteditor/mobile/locale/ro.json +++ b/apps/documenteditor/mobile/locale/ro.json @@ -314,6 +314,7 @@ "errorFileSizeExceed": "Dimensiunea fișierului depășește limita permisă de serverul Dvs.
Pentru detalii, contactați administratorul dvs.", "errorKeyEncrypt": "Descriptor cheie nerecunoscut", "errorKeyExpire": "Descriptor cheie a expirat", + "errorLoadingFont": "Fonturile nu sunt încărcate.
Contactați administratorul dvs de Server Documente.", "errorMailMergeLoadFile": "Încărcarea eșuată", "errorMailMergeSaveFile": "Îmbinarea eșuată.", "errorSessionAbsolute": "Sesiunea de editare a expirat. Încercați să reîmprospătați pagina.", @@ -334,8 +335,7 @@ "unknownErrorText": "Eroare necunoscută.", "uploadImageExtMessage": "Format de imagine nerecunoscut.", "uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.", - "uploadImageSizeMessage": "Imaginea este prea mare. Limita de dimensiune este de 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "Imaginea este prea mare. Limita de dimensiune este de 25 MB." }, "LongActions": { "applyChangesTextText": "Încărcarea datelor...", @@ -523,6 +523,7 @@ "textMarginsW": "Marginile stânga și dreapta sunt prea late pentru această pagină", "textNoCharacters": "Caractere neimprimate", "textNoTextFound": "Textul nu a fost găsit", + "textOk": "OK", "textOpenFile": "Introduceți parola pentru deschidere fișier", "textOrientation": "Orientare", "textOwner": "Proprietar", @@ -567,8 +568,7 @@ "txtScheme6": "Concurență", "txtScheme7": "Echilibru", "txtScheme8": "Flux", - "txtScheme9": "Forjă", - "textOk": "Ok" + "txtScheme9": "Forjă" }, "Toolbar": { "dlgLeaveMsgText": "Nu ați salvat modificările din documentul. Faceți clic pe Rămâi în pagină și așteptați la salvare automată. Faceți clic pe Părăsește aceasta pagina ca să renunțați la toate modificările nesalvate.", diff --git a/apps/documenteditor/mobile/locale/ru.json b/apps/documenteditor/mobile/locale/ru.json index 32b27ceea..436b2d89e 100644 --- a/apps/documenteditor/mobile/locale/ru.json +++ b/apps/documenteditor/mobile/locale/ru.json @@ -314,6 +314,7 @@ "errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.
Пожалуйста, обратитесь к администратору.", "errorKeyEncrypt": "Неизвестный дескриптор ключа", "errorKeyExpire": "Срок действия дескриптора ключа истек", + "errorLoadingFont": "Шрифты не загружены.
Пожалуйста, обратитесь к администратору Сервера документов.", "errorMailMergeLoadFile": "Сбой при загрузке", "errorMailMergeSaveFile": "Не удалось выполнить слияние.", "errorSessionAbsolute": "Время сеанса редактирования документа истекло. Пожалуйста, обновите страницу.", @@ -323,7 +324,7 @@ "errorUpdateVersionOnDisconnect": "Подключение к Интернету было восстановлено, и версия файла изменилась.
Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.", "errorUserDrop": "В настоящий момент файл недоступен.", "errorUsersExceed": "Превышено количество пользователей, разрешенных согласно тарифному плану", - "errorViewerDisconnect": "Подключение прервано. Вы можете просматривать документ,
но не сможете скачать его до восстановления подключения и обновления страницы.", + "errorViewerDisconnect": "Подключение прервано. Вы можете просматривать документ,
но не сможете скачать или напечатать его до восстановления подключения и обновления страницы.", "notcriticalErrorTitle": "Внимание", "openErrorText": "При открытии файла произошла ошибка", "saveErrorText": "При сохранении файла произошла ошибка", @@ -334,8 +335,7 @@ "unknownErrorText": "Неизвестная ошибка.", "uploadImageExtMessage": "Неизвестный формат рисунка.", "uploadImageFileCountMessage": "Ни одного рисунка не загружено.", - "uploadImageSizeMessage": "Слишком большой рисунок. Максимальный размер - 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "Слишком большой рисунок. Максимальный размер - 25 MB." }, "LongActions": { "applyChangesTextText": "Загрузка данных...", @@ -480,7 +480,6 @@ "textBack": "Назад", "textBottom": "Нижнее", "textCancel": "Отмена", - "textOk": "Ок", "textCaseSensitive": "С учетом регистра", "textCentimeter": "Сантиметр", "textCollaboration": "Совместная работа", @@ -524,6 +523,7 @@ "textMarginsW": "Левое и правое поля слишком широкие для заданной ширины страницы", "textNoCharacters": "Непечатаемые символы", "textNoTextFound": "Текст не найден", + "textOk": "Ok", "textOpenFile": "Введите пароль для открытия файла", "textOrientation": "Ориентация", "textOwner": "Владелец", diff --git a/apps/documenteditor/mobile/locale/tr.json b/apps/documenteditor/mobile/locale/tr.json index b7448f56b..ec96215a7 100644 --- a/apps/documenteditor/mobile/locale/tr.json +++ b/apps/documenteditor/mobile/locale/tr.json @@ -17,11 +17,11 @@ "textBreak": "Yeni Sayfa", "textCancel": "İptal Et", "textCenterBottom": "Orta Alt", + "textCenterTop": "Orta Üst", "textColumnBreak": "Sütun Sonu", + "textColumns": "Sütunlar", + "textComment": "Yorum", "notcriticalErrorTitle": "Warning", - "textCenterTop": "Center Top", - "textColumns": "Columns", - "textComment": "Comment", "textContinuousPage": "Continuous Page", "textCurrentPosition": "Current Position", "textDisplay": "Display", @@ -62,9 +62,11 @@ "Collaboration": { "textAccept": "Onayla", "textAcceptAllChanges": "Tüm Değişikliği Onayla", + "textAddComment": "Yorum Ekle", "textAddReply": "Cevap ekle", "textAllChangesAcceptedPreview": "Tüm değişiklikler onaylandı (Önizleme)", "textAllChangesEditing": "Tüm değişiklikler (Düzenleme)", + "textAllChangesRejectedPreview": "Tüm değişiklikler reddedildi (Önizleme)", "textAtLeast": "En az", "textAuto": "Otomatik", "textBack": "Geri", @@ -78,11 +80,11 @@ "textJustify": "İki yana hizala", "textLeft": "Sola Hizala", "textNoContextual": "Aynı stildeki paragraflar arasına aralık ekle", + "textNum": "Numaralandırmayı değiştir", "textRight": "Sağa Hizala", "textShd": "Arka plan rengi", + "textTabs": "Sekmeleri değiştir", "notcriticalErrorTitle": "Warning", - "textAddComment": "Add comment", - "textAllChangesRejectedPreview": "All changes rejected (Preview)", "textBreakBefore": "Page break before", "textColor": "Font color", "textComments": "Comments", @@ -123,7 +125,6 @@ "textNoKeepNext": "Don't keep with next", "textNot": "Not ", "textNoWidow": "No widow control", - "textNum": "Change numbering", "textOriginal": "Original", "textParaDeleted": "Paragraph Deleted", "textParaFormatted": "Paragraph Formatted", @@ -149,7 +150,6 @@ "textTableChanged": "Table Settings Changed", "textTableRowsAdd": "Table Rows Added", "textTableRowsDel": "Table Rows Deleted", - "textTabs": "Change tabs", "textTrackChanges": "Track Changes", "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "textUnderline": "Underline", @@ -163,10 +163,11 @@ } }, "ContextMenu": { + "menuAddComment": "Yorum Ekle", "menuAddLink": "Bağlantı Ekle", "menuCancel": "İptal Et", + "textColumns": "Sütunlar", "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add comment", "menuDelete": "Delete", "menuDeleteTable": "Delete Table", "menuEdit": "Edit", @@ -177,7 +178,6 @@ "menuReviewChange": "Review Change", "menuSplit": "Split", "menuViewComment": "View Comment", - "textColumns": "Columns", "textCopyCutPasteActions": "Copy, Cut and Paste Actions", "textDoNotShowAgain": "Don't show again", "textRows": "Rows" @@ -193,6 +193,7 @@ "textAfter": "sonra", "textAlign": "Hizala", "textAllCaps": "Tümü büyük harf", + "textAllowOverlap": "Çakışmaya izin ver", "textAuto": "Otomatik", "textAutomatic": "Otomatik", "textBack": "Geri", @@ -203,14 +204,13 @@ "textBehind": "Arkada", "textBorder": "Sınır", "textBringToForeground": "Önplana Getir", + "textBullets": "İmler", "textBulletsAndNumbers": "madde imleri ve numaralandırma", "textCellMargins": "Hücre Kenar Boşluğu", "textChart": "Grafik", "textClose": "Kapat", "textColor": "Renk", "notcriticalErrorTitle": "Warning", - "textAllowOverlap": "Allow overlap", - "textBullets": "Bullets", "textContinueFromPreviousSection": "Continue from previous section", "textCustomColor": "Custom Color", "textDifferentFirstPage": "Different first page", @@ -316,6 +316,7 @@ "errorFileSizeExceed": "The file size exceeds your server limit.
Please, contact your admin.", "errorKeyEncrypt": "Unknown key descriptor", "errorKeyExpire": "Key descriptor expired", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "errorMailMergeLoadFile": "Loading failed", "errorMailMergeSaveFile": "Merge failed.", "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", @@ -325,7 +326,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 can't be accessed right now.", "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download it until the connection is restored and the page is reloaded.", + "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.", "notcriticalErrorTitle": "Warning", "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", "splitDividerErrorText": "The number of rows must be a divisor of %1", @@ -334,17 +335,16 @@ "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." }, "Main": { "SDK": { + "above": "Yukarıda", + "below": "Altında", + "Choose an item": "Bir öğe seçin", "Diagram Title": "Grafik başlığı", " -Section ": " -Section ", - "above": "above", - "below": "below", "Caption": "Caption", - "Choose an item": "Choose an item", "Click to load image": "Click to load image", "Current Document": "Current Document", "endnote text": "Endnote Text", @@ -488,6 +488,7 @@ "textMarginsW": "Left and right margins are too wide for a given page width", "textNoCharacters": "Nonprinting Characters", "textNoTextFound": "Text not found", + "textOk": "Ok", "textOpenFile": "Enter a password to open the file", "textOrientation": "Orientation", "textOwner": "Owner", @@ -532,8 +533,7 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry", - "textOk": "Ok" + "txtScheme9": "Foundry" }, "LongActions": { "applyChangesTextText": "Loading data...", diff --git a/apps/documenteditor/mobile/locale/zh.json b/apps/documenteditor/mobile/locale/zh.json index 5bdf48d79..0c2e1c8ae 100644 --- a/apps/documenteditor/mobile/locale/zh.json +++ b/apps/documenteditor/mobile/locale/zh.json @@ -546,6 +546,7 @@ "textUploaded": "已上传", "txtIncorrectPwd": "密码有误", "txtProtected": "输入密码并打开文件后,当前密码将会被重设。", + "textOk": "Ok", "txtScheme1": "Office", "txtScheme10": "Median", "txtScheme11": "Metro", @@ -567,8 +568,7 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry", - "textOk": "Ok" + "txtScheme9": "Foundry" }, "Toolbar": { "dlgLeaveMsgText": "你有未保存的修改。点击“留在该页”可等待自动保存完成。点击“离开该页”将丢弃全部未经保存的修改。", diff --git a/apps/presentationeditor/mobile/locale/ca.json b/apps/presentationeditor/mobile/locale/ca.json index 2b7db7bdd..16b83a178 100644 --- a/apps/presentationeditor/mobile/locale/ca.json +++ b/apps/presentationeditor/mobile/locale/ca.json @@ -4,148 +4,148 @@ "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 vol 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.", + "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" }, "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 de copiar, tallar i enganxar mitjançant el menú contextual només es realitzaran en el fitxer actual.", - "menuAddComment": "Afegir comentari", - "menuAddLink": "Afegir Enllaç", - "menuCancel": "Cancel·lar", - "menuDelete": "Suprimir", - "menuDeleteTable": "Suprimir Taula", - "menuEdit": "Editar", - "menuMerge": "Combinar", + "menuAddComment": "Afegeix un comentari", + "menuAddLink": "Afegeix un enllaç", + "menuCancel": "Cancel·la", + "menuDelete": "Suprimeix", + "menuDeleteTable": "Suprimeix la taula", + "menuEdit": "Edita", + "menuMerge": "Combina", "menuMore": "Més", - "menuOpenLink": "Obrir Enllaç", - "menuSplit": "Dividir", - "menuViewComment": "Veure Comentari", + "menuOpenLink": "Obre l'enllaç", + "menuSplit": "Divideix", + "menuViewComment": "Mostra el comentari", "textColumns": "Columnes", - "textCopyCutPasteActions": "Accions de Copiar, Tallar i Enganxar ", - "textDoNotShowAgain": "No ho tornis a mostrar", + "textCopyCutPasteActions": "Accions de copiar, tallar i enganxar ", + "textDoNotShowAgain": "No ho mostris més", "textRows": "Files" }, "Controller": { "Main": { - "advDRMOptions": "Fitxer Protegit", + "advDRMOptions": "El fitxer està protegit", "advDRMPassword": "Contrasenya", - "closeButtonText": "Tancar Fitxer", + "closeButtonText": "Tanca el fitxer", "criticalErrorTitle": "Error", - "errorAccessDeny": "Esteu intentant realitzar una acció per a la qual no teniu drets.
Poseu-vos en contacte amb l'administrador.", - "errorOpensource": "Utilitzant la versió comunitària lliure, només podeu obrir documents per a la seva visualització. Per accedir als editors web mòbils, es requereix una llicència comercial.", - "errorProcessSaveResult": "Error en desar", + "errorAccessDeny": "No teniu permís per realitzar aquesta acció.
Contacteu amb el vostre administrador.", + "errorOpensource": "Amb la versió gratuïta de la Comunitat, només podeu obrir els documents en mode lectura. Per accedir als editors de web per a mòbils, cal una llicència comercial.", + "errorProcessSaveResult": "S'ha produït un error en desar.", "errorServerVersion": "S'ha actualitzat la versió de l'editor. Es tornarà a carregar la pàgina per aplicar els canvis.", - "errorUpdateVersion": "La versió del fitxer s'ha canviat. La pàgina es tornarà a carregar.", - "leavePageText": "Teniu canvis no desats en aquest document. Feu clic a \"Mantingueu-vos en aquesta pàgina\" per esperar al desament automàtic. Feu clic a \"Deixa aquesta pàgina\" per descartar tots els canvis no desats.", + "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": { "Chart": "Gràfic", - "Click to add first slide": "Feu clic per afegir la primera diapositiva", - "Click to add notes": "Feu clic per afegir notes", - "ClipArt": "Imatges Predissenyades", - "Date and time": "Data i hora", + "Click to add first slide": "Clica per afegir la primera diapositiva", + "Click to add notes": "Clica per afegir notes", + "ClipArt": "Galeria d'imatges", + "Date and time": "Hora i data", "Diagram": "Diagrama", - "Diagram Title": "Títol del Gràfic", + "Diagram Title": "Títol del gràfic", "Footer": "Peu de pàgina", "Header": "Capçalera", "Image": "Imatge", - "Loading": "Carregant", - "Media": "Mitjans", + "Loading": "S'està carregant", + "Media": "Multimèdia", "None": "Cap", "Picture": "Imatge", - "Series": "Sèrie", - "Slide number": "Número de Diapositiva", - "Slide subtitle": "Subtítol de Diapositiva", - "Slide text": "Text de Diapositiva", - "Slide title": "Títol de Diapositiva", + "Series": "Sèries", + "Slide number": "Número de diapositiva", + "Slide subtitle": "Subtítol de la diapositiva", + "Slide text": "Text de la diapositiva", + "Slide title": "Títol de la diapositiva", "Table": "Taula", "X Axis": "Eix X XAS", "Y Axis": "Eix Y", - "Your text here": "El seu text aquí" + "Your text here": "El vostre text aquí" }, "textAnonymous": "Anònim", - "textBuyNow": "Visitar lloc web", - "textClose": "Tancar", - "textContactUs": "Contacte de 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", - "textOpenFile": "Introduïu una contrasenya per obrir el fitxer", + "textNoLicenseTitle": "S'ha assolit el límit de llicència", + "textOpenFile": "Introdueix una contrasenya per obrir el fitxer", "textPaidFeature": "Funció de pagament", - "textRemember": "Recordar la meva elecció", + "textRemember": "Recorda la meva elecció", "textYes": "Sí", - "titleLicenseExp": "Llicència caducada", - "titleServerVersion": "Editor actualitzat", - "titleUpdateVersion": "Versió canviada", - "txtIncorrectPwd": "La contrasenya és incorrecta", + "titleLicenseExp": "La llicència ha caducat", + "titleServerVersion": "S'ha actualitzat l'editor", + "titleUpdateVersion": "S'ha canviat la versió", + "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", - "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.", - "warnLicenseExp": "La vostra llicència ha caducat. Si us plau, actualitzeu-la i recarregueu la pàgina.", - "warnLicenseLimitedNoAccess": "La llicència ha caducat. No teniu accés a la funcionalitat d'edició de documents. Contacteu amb l'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'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ó.", + "warnLicenseExp": "La vostra llicència ha caducat. Actualitzeu-la i recarregueu la pàgina.", + "warnLicenseLimitedNoAccess": "La llicència ha caducat. No podeu editar 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 total", + "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 dur a terme una acció per a la qual no teniu drets.
Poseu-vos en contacte amb l'administrador.", - "errorBadImageUrl": "L'enllaç de la imatge es incorrecte", - "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.", - "errorDatabaseConnection": "Error extern.
Error de connexió a la base de dades. Si us plau, poseu-vos en contacte amb el servei d'assistència.", + "downloadErrorText": "S'ha produït un error en la baixada", + "errorAccessDeny": "No teniu permís per realitzar aquesta acció.
Contacteu amb el vostre administrador.", + "errorBadImageUrl": "L'URL de la imatge no és correcta", + "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.", + "errorDatabaseConnection": "Error extern.
Error de connexió a la base de dades. Contacteu amb el servei d'assistència tècnica.", "errorDataEncrypted": "S'han rebut canvis xifrats, que no es poden desxifrar.", - "errorDataRange": "Interval de dades incorrecte.", + "errorDataRange": "L'interval de dades no és correcte.", "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.", - "errorFileSizeExceed": "La mida del fitxer supera la limitació del servidor.
Si us plau, poseu-vos en contacte amb l'administrador.", - "errorKeyEncrypt": "Descriptor de la clau desconegut", - "errorKeyExpire": "El descriptor de la clau ha caducat", + "errorFileSizeExceed": "La mida del fitxer supera la el límit del vostre servidor.
Contacteu amb el vostre administrador.", + "errorKeyEncrypt": "Descriptor de claus desconegut", + "errorKeyExpire": "El descriptor de claus ha caducat", "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.", - "errorUpdateVersionOnDisconnect": "S'ha restaurat la connexió a Internet i s'ha canviat la versió del fitxer.
Abans de continuar treballant, descarregueu el fitxer o copieu el seu contingut per assegurar-vos que no es perd res i torneu a carregar aquesta pàgina.", - "errorUserDrop": "Ara no es pot accedir al fitxer.", - "errorUsersExceed": "S'ha superat el nombre d’usuaris permès pel vostre pla", + "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.", + "errorUpdateVersionOnDisconnect": "S'ha restaurat la connexió a Internet i s'ha canviat la versió del fitxer.
Abans de continuar treballant, descarregueu el fitxer o copieu el seu contingut per assegurar-vos que no s'ha perdut res i torneu a carregar aquesta pàgina.", + "errorUserDrop": "Ara mateix no es pot accedir al fitxer.", + "errorUsersExceed": "S'ha superat el nombre d’usuaris que permet el 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.", "notcriticalErrorTitle": "Advertiment", "openErrorText": "S'ha produït un error en obrir el fitxer", @@ -154,234 +154,234 @@ "splitDividerErrorText": "El nombre de files ha de ser un divisor de %1", "splitMaxColsErrorText": "El nombre de columnes ha de ser inferior a %1", "splitMaxRowsErrorText": "El nombre de files ha de ser inferior a %1", - "unknownErrorText": "Error Desconegut.", + "unknownErrorText": "Error desconegut.", "uploadImageExtMessage": "Format d'imatge desconegut.", - "uploadImageFileCountMessage": "No hi ha imatges carregades.", + "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", - "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", - "loadThemeTextText": "Carregant tema...", - "loadThemeTitleText": "Carregant Tema", - "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", - "txtEditingMode": "Establir el mode d'edició ...", - "uploadImageTextText": "Carregant imatge...", - "uploadImageTitleText": "Carregant Imatge", - "waitText": "Si us plau, esperi..." + "applyChangesTextText": "S'estant carregant les dades...", + "applyChangesTitleText": "S'estan carregant les dades", + "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", + "loadThemeTextText": "S'està carregant el tema...", + "loadThemeTitleText": "S'està carregant el tema", + "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", + "txtEditingMode": "Estableix el mode d'edició ...", + "uploadImageTextText": "S'està carregant la imatge...", + "uploadImageTitleText": "S'està carregant la imatge", + "waitText": "Espereu..." }, "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", + "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 en aquesta Pàgina" }, "View": { "Add": { "notcriticalErrorTitle": "Advertiment", - "textAddLink": "Afegir Enllaç", + "textAddLink": "Afegeix un enllaç", "textAddress": "Adreça", "textBack": "Enrere", - "textCancel": "Cancel·lar", + "textCancel": "Cancel·la", "textColumns": "Columnes", "textComment": "Comentari", - "textDefault": "Text Seleccionat", - "textDisplay": "Mostrar", - "textEmptyImgUrl": "Heu d'especificar l'URL de la imatge.", - "textExternalLink": "Enllaç Extern", - "textFirstSlide": "Primera Diapositiva", + "textDefault": "Text seleccionat", + "textDisplay": "Visualització", + "textEmptyImgUrl": "Has d'especificar l'URL de la imatge.", + "textExternalLink": "Enllaç extern", + "textFirstSlide": "Primera diapositiva", "textImage": "Imatge", - "textImageURL": "URL de la Imatge ", - "textInsert": "Insertar", - "textInsertImage": "Insertar Imatge", - "textLastSlide": "Última Diapositiva", + "textImageURL": "URL de la imatge ", + "textInsert": "Insereix", + "textInsertImage": "Insereix una imatge", + "textLastSlide": "Última diapositiva", "textLink": "Enllaç", - "textLinkSettings": "Propietats d'Enllaç", + "textLinkSettings": "Configuració de l'enllaç", "textLinkTo": "Enllaç a", - "textLinkType": "Tipus d'Enllaç", - "textNextSlide": "Següent Diapositiva", + "textLinkType": "Tipus d'enllaç", + "textNextSlide": "Diapositiva següent", "textOther": "Altre", - "textPictureFromLibrary": "Imatge de la Biblioteca", + "textPictureFromLibrary": "Imatge de la biblioteca", "textPictureFromURL": "Imatge de l'URL", - "textPreviousSlide": "Diapositiva Anterior", + "textPreviousSlide": "Diapositiva anterior", "textRows": "Files", - "textScreenTip": "Consell de Pantalla", + "textScreenTip": "Consells de pantalla", "textShape": "Forma", "textSlide": "Diapositiva", - "textSlideInThisPresentation": "Diapositiva en aquesta Presentació", - "textSlideNumber": "Número de Diapositiva", + "textSlideInThisPresentation": "Diapositiva en aquesta presentació", + "textSlideNumber": "Número de diapositiva", "textTable": "Taula", - "textTableSize": "Mida de la Taula", - "txtNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.exemple.com\"" + "textTableSize": "Mida de la taula", + "txtNotUrl": "Aquest camp hauria de ser una URL amb el format \"http://www.exemple.com\"" }, "Edit": { "notcriticalErrorTitle": "Advertiment", - "textActualSize": "Mida Real", - "textAddCustomColor": "Afegir Color Personalitzat", + "textActualSize": "Mida real", + "textAddCustomColor": "Afegeix un color personalitzat", "textAdditional": "Addicional", - "textAdditionalFormatting": "Format Addicional", + "textAdditionalFormatting": "Format addicional", "textAddress": "Adreça", - "textAfter": "després", - "textAlign": "Alinear", - "textAlignBottom": "Alineació Inferior", - "textAlignCenter": "Centrar", - "textAlignLeft": "Alineació esquerra", - "textAlignMiddle": "Alinear al Mig", - "textAlignRight": "Alineació Dreta", - "textAlignTop": "Alineació Superior", - "textAllCaps": "Tot Majúscules", - "textApplyAll": "Aplicar a totes les diapositives", - "textAuto": "Auto", + "textAfter": "Després", + "textAlign": "Alineació", + "textAlignBottom": "Alineació inferior", + "textAlignCenter": "Alineació al centre", + "textAlignLeft": "Alineació a l'esquerra", + "textAlignMiddle": "Alineació al mig", + "textAlignRight": "Alineació a la dreta", + "textAlignTop": "Alineació a la part superior", + "textAllCaps": "Tot en majúscules", + "textApplyAll": "Aplica-ho a totes les diapositives", + "textAuto": "Automàtic", "textBack": "Enrere", - "textBandedColumn": "Columna amb bandes", - "textBandedRow": "Fila amb bandes", + "textBandedColumn": "Columna en bandes", + "textBandedRow": "Fila en bandes", "textBefore": "Abans", "textBlack": "En negre", "textBorder": "Vora", - "textBottom": "Inferior", - "textBottomLeft": "Inferior-Esquerra", - "textBottomRight": "Inferior-Dreta", - "textBringToForeground": "Portar a Primer pla", - "textBullets": "Vinyetes", - "textBulletsAndNumbers": "Vinyetes i números", - "textCaseSensitive": "Sensible a Majúscules i Minúscules", - "textCellMargins": "Marges de Cel·la", + "textBottom": "Part inferior", + "textBottomLeft": "Part inferior-Esquerra", + "textBottomRight": "Part inferior-dreta", + "textBringToForeground": "Portar al primer pla", + "textBullets": "Pics", + "textBulletsAndNumbers": "Pics i números", + "textCaseSensitive": "Sensible a majúscules i minúscules", + "textCellMargins": "Marges de la cel·la", "textChart": "Gràfic", "textClock": "Rellotge", "textClockwise": "En sentit horari", "textColor": "Color", "textCounterclockwise": "En sentit antihorari", - "textCover": "Cobrir", - "textCustomColor": "Color Personalitzat", - "textDefault": "Text Seleccionat", + "textCover": "Cobreix", + "textCustomColor": "Color personalitzat", + "textDefault": "Text seleccionat", "textDelay": "Retard", - "textDeleteSlide": "Suprimir Diapositiva", - "textDisplay": "Mostrar", - "textDistanceFromText": "Distància Des Del Text", - "textDistributeHorizontally": "Distribuir Horitzontalment", - "textDistributeVertically": "Distribuir Verticalment", + "textDeleteSlide": "Suprimeix la diapositiva", + "textDisplay": "Visualització", + "textDistanceFromText": "Distància del text", + "textDistributeHorizontally": "Distribueix horitzontalment", + "textDistributeVertically": "Distribueix verticalment", "textDone": "Fet", - "textDoubleStrikethrough": "Doble Ratllat", - "textDuplicateSlide": "Diapositiva Duplicada", - "textDuration": "Duració", - "textEditLink": "Editar Enllaç", + "textDoubleStrikethrough": "Ratllat doble", + "textDuplicateSlide": "Duplica la diapositiva", + "textDuration": "Durada", + "textEditLink": "Edita l'enllaç", "textEffect": "Efecte", "textEffects": "Efectes", - "textEmptyImgUrl": "Heu d'especificar l'URL de la imatge.", - "textExternalLink": "Enllaç Extern", - "textFade": "Difuminar", - "textFill": "Omplir", - "textFinalMessage": "Final de la previsualització de diapositives. Feu clic per sortir.", - "textFind": "Cercar", - "textFindAndReplace": "Cercar i Substituir", - "textFirstColumn": "Primera Columna", - "textFirstSlide": "Primera Diapositiva", - "textFontColor": "Color de Font", - "textFontColors": "Colors de Font", - "textFonts": "Fonts", - "textFromLibrary": "Imatge de la Biblioteca", + "textEmptyImgUrl": "Has d'especificar l'URL de la imatge.", + "textExternalLink": "Enllaç extern", + "textFade": "Esvaïment", + "textFill": "Emplena", + "textFinalMessage": "Final de la vista prèvia de diapositives. Cliqueu per sortir.", + "textFind": "Cerca", + "textFindAndReplace": "Cerca i substitueix", + "textFirstColumn": "Primera columna", + "textFirstSlide": "Primera diapositiva", + "textFontColor": "Color del tipus de lletra", + "textFontColors": "Colors de de les lletres", + "textFonts": "Tipus de lletra", + "textFromLibrary": "Imatge de la biblioteca", "textFromURL": "Imatge de l'URL", - "textHeaderRow": "Fila de Capçalera", - "textHighlight": "Ressaltar els resultats", + "textHeaderRow": "Fila de capçalera", + "textHighlight": "Ressalta els resultats", "textHighlightColor": "Color de ressaltat", - "textHorizontalIn": "Horitzontal Entrant", - "textHorizontalOut": "Horitzontal Sortint", - "textHyperlink": "Hiperenllaç", + "textHorizontalIn": "Horitzontal entrant", + "textHorizontalOut": "Horitzontal sortint", + "textHyperlink": "Enllaç", "textImage": "Imatge", - "textImageURL": "URL de la Imatge ", - "textLastColumn": "Última Columna", - "textLastSlide": "Última Diapositiva", - "textLayout": "Maquetació", + "textImageURL": "URL de la imatge ", + "textLastColumn": "Última columna", + "textLastSlide": "Última diapositiva", + "textLayout": "Disposició", "textLeft": "Esquerra", - "textLetterSpacing": "Espaiat de Lletres", - "textLineSpacing": "Espaiat Entre Línies", + "textLetterSpacing": "Espaiat de les lletres", + "textLineSpacing": "Interlineat", "textLink": "Enllaç", - "textLinkSettings": "Propietats d'Enllaç", + "textLinkSettings": "Configuració de l'enllaç", "textLinkTo": "Enllaç a", - "textLinkType": "Tipus d'Enllaç", - "textMoveBackward": "Moure Enrere", - "textMoveForward": "Moure Endavant", - "textNextSlide": "Següent Diapositiva", - "textNone": "cap", - "textNoStyles": "No hi ha estils per a aquest tipus de diagrama.", + "textLinkType": "Tipus d'enllaç", + "textMoveBackward": "Torna enrere", + "textMoveForward": "Avança", + "textNextSlide": "Diapositiva següent", + "textNone": "Cap", + "textNoStyles": "Aquest tipus de diagrama no té cap estil.", "textNoTextFound": "No s'ha trobat el text", - "textNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.exemple.com\"", + "textNotUrl": "Aquest camp hauria de ser una URL amb el format \"http://www.exemple.com\"", "textNumbers": "Nombres", "textOpacity": "Opacitat", "textOptions": "Opcions", - "textPictureFromLibrary": "Imatge de la Biblioteca", + "textPictureFromLibrary": "Imatge de la biblioteca", "textPictureFromURL": "Imatge de l'URL", - "textPreviousSlide": "Diapositiva Anterior", + "textPreviousSlide": "Diapositiva anterior", "textPt": "pt", - "textPush": "Empenyi", - "textRemoveChart": "Eliminar Diagrama", - "textRemoveImage": "Eliminar Imatge", - "textRemoveLink": "Eliminar Enllaç", - "textRemoveShape": "Eliminar forma", - "textRemoveTable": "Eliminar Taula", - "textReorder": "Reordenar", - "textReplace": "Substituir", - "textReplaceAll": "Substituir-ho Tot ", - "textReplaceImage": "Substituir Imatge", + "textPush": "Empeny", + "textRemoveChart": "Suprimeix el gràfic", + "textRemoveImage": "Suprimeix la imatge", + "textRemoveLink": "Suprimeix l'enllaç", + "textRemoveShape": "Suprimeix la forma", + "textRemoveTable": "Suprimeix la taula", + "textReorder": "Reordena", + "textReplace": "Substitueix", + "textReplaceAll": "Substitueix-ho tot ", + "textReplaceImage": "Substitueix la imatge", "textRight": "Dreta", - "textScreenTip": "Consell de Pantalla", - "textSearch": "Cercar", + "textScreenTip": "Consell de pantalla", + "textSearch": "Cerca", "textSec": "S", - "textSelectObjectToEdit": "Seleccionar l'objecte a editar", - "textSendToBackground": "Enviar al fons", + "textSelectObjectToEdit": "Selecciona l'objecte a editar", + "textSendToBackground": "Envia al fons", "textShape": "Forma", "textSize": "Mida", "textSlide": "Diapositiva", - "textSlideInThisPresentation": "Diapositiva en aquesta Presentació", - "textSlideNumber": "Número de Diapositiva", - "textSmallCaps": "Majúscules petites", - "textSmoothly": "Suavitzar", - "textSplit": "Dividir", - "textStartOnClick": "Iniciar en Fer Clic", + "textSlideInThisPresentation": "Diapositiva en aquesta presentació", + "textSlideNumber": "Número de diapositiva", + "textSmallCaps": "Versaletes", + "textSmoothly": "Suau", + "textSplit": "Divideix", + "textStartOnClick": "Inicia clicant", "textStrikethrough": "Ratllat", "textStyle": "Estil", - "textStyleOptions": "Opcions d'Estil", + "textStyleOptions": "Opcions d'estil", "textSubscript": "Subíndex", "textSuperscript": "Superíndex", "textTable": "Taula", "textText": "Text", "textTheme": "Tema", "textTop": "Superior", - "textTopLeft": "Superior-Esquerra", - "textTopRight": "Superior-Dreta", - "textTotalRow": "Fila de Total", + "textTopLeft": "Superior-esquerra", + "textTopRight": "Superior-dreta", + "textTotalRow": "Fila de total", "textTransition": "Transició", "textType": "Tipus", - "textUnCover": "Descobrir", - "textVerticalIn": "Vertical Entrant", - "textVerticalOut": "Vertical Sortint", + "textUnCover": "Descobreix", + "textVerticalIn": "Vertical entrant", + "textVerticalOut": "Vertical sortint", "textWedge": "Falca", - "textWipe": "Netejar", + "textWipe": "Elimina", "textZoom": "Zoom", - "textZoomIn": "Ampliar", - "textZoomOut": "Reduir", - "textZoomRotate": "Ampliar i Girar" + "textZoomIn": "Amplia", + "textZoomOut": "Redueix", + "textZoomRotate": "Amplia i gira" }, "Settings": { "mniSlideStandard": "Estàndard (4:3)", @@ -392,55 +392,55 @@ "textApplicationSettings": "Configuració de l'aplicació", "textAuthor": "Autor", "textBack": "Enrere", - "textCaseSensitive": "Sensible a Majúscules i Minúscules", + "textCaseSensitive": "Sensible a majúscules i minúscules", "textCentimeter": "Centímetre", "textCollaboration": "Col·laboració", - "textColorSchemes": "Esquemes de Color", + "textColorSchemes": "Combinacions de colors", "textComment": "Comentari", "textCreated": "Creat", - "textDisableAll": "Desactivar-ho tot", - "textDisableAllMacrosWithNotification": "Desactivar totes les macros amb notificació", - "textDisableAllMacrosWithoutNotification": "Desactivar totes les macros sense notificació", + "textDisableAll": "Inhabilita-ho tot", + "textDisableAllMacrosWithNotification": "Inhabilita totes les macros amb notificació", + "textDisableAllMacrosWithoutNotification": "Inhabilita totes les macros sense notificació", "textDone": "Fet", - "textDownload": "Descarregar", - "textDownloadAs": "Descarregar Com a...", - "textEmail": "email:", - "textEnableAll": "Activar-ho tot", - "textEnableAllMacrosWithoutNotification": "Activar totes les macros sense notificació", - "textFind": "Cercar", - "textFindAndReplace": "Cercar i Substituir", - "textFindAndReplaceAll": "Cercar i Substituir-ho Tot", + "textDownload": "Baixa", + "textDownloadAs": "Baixa-ho com a...", + "textEmail": "correu electrònic:", + "textEnableAll": "Habilita-ho tot", + "textEnableAllMacrosWithoutNotification": "Habilita totes les macros sense notificació", + "textFind": "Cerca", + "textFindAndReplace": "Cerca i substitueix", + "textFindAndReplaceAll": "Cerca i substitueix-ho tot", "textHelp": "Ajuda", - "textHighlight": "Ressaltar els resultats", + "textHighlight": "Ressalta els resultats", "textInch": "Polzada", - "textLastModified": "Última Modificació", - "textLastModifiedBy": "Modificat per Últim cop Per", - "textLoading": "Carregant...", + "textLastModified": "Última modificació", + "textLastModifiedBy": "Última modificació feta per", + "textLoading": "S'està carregant...", "textLocation": "Ubicació", - "textMacrosSettings": "Configuració de macros", + "textMacrosSettings": "Configuració de les macros", "textNoTextFound": "No s'ha trobat el text", "textOwner": "Propietari", "textPoint": "Punt", - "textPoweredBy": "Impulsat per", - "textPresentationInfo": "Informació de la Presentació", - "textPresentationSettings": "Configuració de Presentació", - "textPresentationTitle": "Títol Presentació", - "textPrint": "Imprimir", - "textReplace": "Substituir", - "textReplaceAll": "Substituir-ho Tot ", - "textSearch": "Cercar", + "textPoweredBy": "Amb tecnologia de", + "textPresentationInfo": "Informació de la presentació", + "textPresentationSettings": "Configuració de la presentació", + "textPresentationTitle": "Títol de la presentació", + "textPrint": "Imprimeix", + "textReplace": "Substitueix", + "textReplaceAll": "Substitueix-ho tot ", + "textSearch": "Cerca", "textSettings": "Configuració", - "textShowNotification": "Mostra la Notificació", - "textSlideSize": "Mida de la Diapositiva", - "textSpellcheck": "Comprovació Ortogràfica", + "textShowNotification": "Mostra la notificació", + "textSlideSize": "Mida de la diapositiva", + "textSpellcheck": "Revisió ortogràfica", "textSubject": "Assumpte", "textTel": "tel:", - "textTitle": "Nom", - "textUnitOfMeasurement": "Unitat de Mesura", - "textUploaded": "Carregat", + "textTitle": "Títol", + "textUnitOfMeasurement": "Unitat de mesura", + "textUploaded": "S'ha carregat", "textVersion": "Versió", - "txtScheme1": "Oficina", - "txtScheme10": "Mitjana", + "txtScheme1": "Office", + "txtScheme10": "Mediana", "txtScheme11": "Metro", "txtScheme12": "Mòdul", "txtScheme13": "Opulent", @@ -452,15 +452,15 @@ "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" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/de.json b/apps/presentationeditor/mobile/locale/de.json index 0af256cc3..e26eca1cc 100644 --- a/apps/presentationeditor/mobile/locale/de.json +++ b/apps/presentationeditor/mobile/locale/de.json @@ -139,6 +139,7 @@ "errorFileSizeExceed": "Die Dateigröße ist zu hoch für Ihren Server.
Bitte wenden Sie sich an Administratoren.", "errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor", "errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen", + "errorLoadingFont": "Schriftarten nicht hochgeladen.
Bitte wenden Sie sich an Administratoren von Ihrem Document Server.", "errorSessionAbsolute": "Die Bearbeitungssitzung ist abgelaufen. Bitte die Seite neu laden.", "errorSessionIdle": "Das Dokument wurde schon für lange Zeit nicht bearbeitet. Bitte die Seite neu laden.", "errorSessionToken": "Die Verbindung mit dem Server wurde unterbrochen. Bitte die Seite neu laden.", @@ -157,8 +158,7 @@ "unknownErrorText": "Unbekannter Fehler.", "uploadImageExtMessage": "Unbekanntes Bildformat.", "uploadImageFileCountMessage": "Keine Bilder hochgeladen.", - "uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten." }, "LongActions": { "applyChangesTextText": "Daten werden geladen...", diff --git a/apps/presentationeditor/mobile/locale/en.json b/apps/presentationeditor/mobile/locale/en.json index ac341155d..d79b901c8 100644 --- a/apps/presentationeditor/mobile/locale/en.json +++ b/apps/presentationeditor/mobile/locale/en.json @@ -139,6 +139,7 @@ "errorFileSizeExceed": "The file size exceeds your server limitation.
Please, contact your admin.", "errorKeyEncrypt": "Unknown key descriptor", "errorKeyExpire": "Key descriptor expired", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", @@ -146,7 +147,7 @@ "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.", "errorUserDrop": "The file cannot be accessed right now.", "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download it until the connection is restored and the page is reloaded.", + "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.", "notcriticalErrorTitle": "Warning", "openErrorText": "An error has occurred while opening the file", "saveErrorText": "An error has occurred while saving the file", @@ -157,8 +158,7 @@ "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." }, "LongActions": { "applyChangesTextText": "Loading data...", diff --git a/apps/presentationeditor/mobile/locale/fr.json b/apps/presentationeditor/mobile/locale/fr.json index 656cc1148..e5af06f36 100644 --- a/apps/presentationeditor/mobile/locale/fr.json +++ b/apps/presentationeditor/mobile/locale/fr.json @@ -139,6 +139,7 @@ "errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.
Veuillez contacter votre administrateur.", "errorKeyEncrypt": "Descripteur de clé inconnu", "errorKeyExpire": "Descripteur de clés expiré", + "errorLoadingFont": "Les polices ne sont pas téléchargées.
Veuillez contacter l'administrateur de Document Server.", "errorSessionAbsolute": "Votre session a expiré. Veuillez recharger la page.", "errorSessionIdle": "Le document n'a pas été modifié depuis trop longtemps. Veuillez recharger la page.", "errorSessionToken": "La connexion au serveur a été interrompue. Veuillez recharger la page.", @@ -157,8 +158,7 @@ "unknownErrorText": "Erreur inconnue.", "uploadImageExtMessage": "Format d'image inconnu.", "uploadImageFileCountMessage": "Aucune image chargée.", - "uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo." }, "LongActions": { "applyChangesTextText": "Chargement des données en cours...", diff --git a/apps/presentationeditor/mobile/locale/ja.json b/apps/presentationeditor/mobile/locale/ja.json index 801676548..9d74a8a34 100644 --- a/apps/presentationeditor/mobile/locale/ja.json +++ b/apps/presentationeditor/mobile/locale/ja.json @@ -143,12 +143,13 @@ "errorEditingDownloadas": "An error occurred during the work with the document.
Use the 'Download' option to save the file backup copy locally.", "errorKeyEncrypt": "Unknown key descriptor", "errorKeyExpire": "Key descriptor expired", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
opening price, max price, min price, closing price.", "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download it until the connection is restored and the page is reloaded.", + "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.", "saveErrorText": "An error has occurred while saving the file", "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", "splitDividerErrorText": "The number of rows must be a divisor of %1", @@ -157,8 +158,7 @@ "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." }, "LongActions": { "loadImagesTextText": "イメージの読み込み中...", @@ -197,6 +197,8 @@ "textAddLink": "リンクを追加", "textAddress": "アドレス", "textBack": "戻る", + "textInsert": "挿入", + "textInsertImage": "画像の挿入", "textCancel": "Cancel", "textColumns": "Columns", "textComment": "Comment", @@ -207,8 +209,6 @@ "textFirstSlide": "First Slide", "textImage": "Image", "textImageURL": "Image URL", - "textInsert": "Insert", - "textInsertImage": "Insert Image", "textLastSlide": "Last Slide", "textLink": "Link", "textLinkSettings": "Link Settings", @@ -384,6 +384,7 @@ "textBack": "戻る", "textLoading": "読み込み中...", "textSettings": "設定", + "textUnitOfMeasurement": "測定単位", "textVersion": "バージョン", "mniSlideStandard": "Standard (4:3)", "mniSlideWide": "Widescreen (16:9)", @@ -431,7 +432,6 @@ "textSubject": "Subject", "textTel": "tel:", "textTitle": "Title", - "textUnitOfMeasurement": "Unit Of Measurement", "textUploaded": "Uploaded", "txtScheme1": "Office", "txtScheme10": "Median", diff --git a/apps/presentationeditor/mobile/locale/ro.json b/apps/presentationeditor/mobile/locale/ro.json index d488ad05c..1d9082257 100644 --- a/apps/presentationeditor/mobile/locale/ro.json +++ b/apps/presentationeditor/mobile/locale/ro.json @@ -139,6 +139,7 @@ "errorFileSizeExceed": "Dimensiunea fișierului depășește limita permisă de serverul Dvs.
Contactați administratorul dvs.", "errorKeyEncrypt": "Descriptor cheie nerecunoscut", "errorKeyExpire": "Descriptor cheie a expirat", + "errorLoadingFont": "Fonturile nu sunt încărcate.
Contactați administratorul dvs de Server Documente.", "errorSessionAbsolute": "Sesiunea de editare a expirat. Încercați să reîmprospătați pagina.", "errorSessionIdle": "Acțiunile de editare a documentului nu s-au efectuat de ceva timp. Încercați să reîmprospătați pagina.", "errorSessionToken": "Conexeunea la server s-a întrerupt. Încercați să reîmprospătati pagina.", @@ -157,8 +158,7 @@ "unknownErrorText": "Eroare necunoscută.", "uploadImageExtMessage": "Format de imagine nerecunoscut.", "uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.", - "uploadImageSizeMessage": "Imaginea este prea mare. Limita de dimensiune este de 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "Imaginea este prea mare. Limita de dimensiune este de 25 MB." }, "LongActions": { "applyChangesTextText": "Încărcarea datelor...", diff --git a/apps/presentationeditor/mobile/locale/ru.json b/apps/presentationeditor/mobile/locale/ru.json index c820324f3..6e99a815d 100644 --- a/apps/presentationeditor/mobile/locale/ru.json +++ b/apps/presentationeditor/mobile/locale/ru.json @@ -139,6 +139,7 @@ "errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.
Пожалуйста, обратитесь к администратору.", "errorKeyEncrypt": "Неизвестный дескриптор ключа", "errorKeyExpire": "Срок действия дескриптора ключа истек", + "errorLoadingFont": "Шрифты не загружены.
Пожалуйста, обратитесь к администратору Сервера документов.", "errorSessionAbsolute": "Время сеанса редактирования документа истекло. Пожалуйста, обновите страницу.", "errorSessionIdle": "Документ долгое время не редактировался. Пожалуйста, обновите страницу.", "errorSessionToken": "Подключение к серверу было прервано. Пожалуйста, обновите страницу.", @@ -146,7 +147,7 @@ "errorUpdateVersionOnDisconnect": "Подключение к Интернету было восстановлено, и версия файла изменилась.
Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.", "errorUserDrop": "В настоящий момент файл недоступен.", "errorUsersExceed": "Превышено количество пользователей, разрешенных согласно тарифному плану", - "errorViewerDisconnect": "Подключение прервано. Вы можете просматривать документ,
но не сможете скачать его до восстановления подключения и обновления страницы.", + "errorViewerDisconnect": "Подключение прервано. Вы можете просматривать документ,
но не сможете скачать или напечатать его до восстановления подключения и обновления страницы.", "notcriticalErrorTitle": "Внимание", "openErrorText": "При открытии файла произошла ошибка", "saveErrorText": "При сохранении файла произошла ошибка", @@ -157,8 +158,7 @@ "unknownErrorText": "Неизвестная ошибка.", "uploadImageExtMessage": "Неизвестный формат рисунка.", "uploadImageFileCountMessage": "Ни одного рисунка не загружено.", - "uploadImageSizeMessage": "Слишком большой рисунок. Максимальный размер - 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "Слишком большой рисунок. Максимальный размер - 25 MB." }, "LongActions": { "applyChangesTextText": "Загрузка данных...", From e60915c95ac682e5d3a6f50955812ece23d90335 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 20 Aug 2021 18:33:24 +0300 Subject: [PATCH 73/90] Update translation --- apps/spreadsheeteditor/mobile/locale/be.json | 3 +- apps/spreadsheeteditor/mobile/locale/bg.json | 3 +- apps/spreadsheeteditor/mobile/locale/ca.json | 713 ++++++++++--------- apps/spreadsheeteditor/mobile/locale/cs.json | 3 +- apps/spreadsheeteditor/mobile/locale/de.json | 15 +- apps/spreadsheeteditor/mobile/locale/el.json | 3 +- apps/spreadsheeteditor/mobile/locale/en.json | 14 +- apps/spreadsheeteditor/mobile/locale/es.json | 3 +- apps/spreadsheeteditor/mobile/locale/fr.json | 15 +- apps/spreadsheeteditor/mobile/locale/hu.json | 3 +- apps/spreadsheeteditor/mobile/locale/it.json | 203 +++--- apps/spreadsheeteditor/mobile/locale/ja.json | 25 +- apps/spreadsheeteditor/mobile/locale/ko.json | 3 +- apps/spreadsheeteditor/mobile/locale/lo.json | 3 +- apps/spreadsheeteditor/mobile/locale/lv.json | 3 +- apps/spreadsheeteditor/mobile/locale/nb.json | 3 +- apps/spreadsheeteditor/mobile/locale/nl.json | 3 +- apps/spreadsheeteditor/mobile/locale/pl.json | 3 +- apps/spreadsheeteditor/mobile/locale/pt.json | 3 +- apps/spreadsheeteditor/mobile/locale/ro.json | 15 +- apps/spreadsheeteditor/mobile/locale/ru.json | 17 +- apps/spreadsheeteditor/mobile/locale/sk.json | 3 +- apps/spreadsheeteditor/mobile/locale/sl.json | 3 +- apps/spreadsheeteditor/mobile/locale/tr.json | 3 +- apps/spreadsheeteditor/mobile/locale/uk.json | 3 +- apps/spreadsheeteditor/mobile/locale/vi.json | 3 +- apps/spreadsheeteditor/mobile/locale/zh.json | 7 +- 27 files changed, 552 insertions(+), 526 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/locale/be.json b/apps/spreadsheeteditor/mobile/locale/be.json index 27de7317c..b4672d420 100644 --- a/apps/spreadsheeteditor/mobile/locale/be.json +++ b/apps/spreadsheeteditor/mobile/locale/be.json @@ -335,7 +335,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", diff --git a/apps/spreadsheeteditor/mobile/locale/bg.json b/apps/spreadsheeteditor/mobile/locale/bg.json index 27de7317c..b4672d420 100644 --- a/apps/spreadsheeteditor/mobile/locale/bg.json +++ b/apps/spreadsheeteditor/mobile/locale/bg.json @@ -335,7 +335,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", diff --git a/apps/spreadsheeteditor/mobile/locale/ca.json b/apps/spreadsheeteditor/mobile/locale/ca.json index d2c82659e..efb687349 100644 --- a/apps/spreadsheeteditor/mobile/locale/ca.json +++ b/apps/spreadsheeteditor/mobile/locale/ca.json @@ -4,127 +4,127 @@ "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.", + "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" }, "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,396 +133,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.", + "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", @@ -530,87 +531,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", @@ -622,18 +623,18 @@ "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" } } diff --git a/apps/spreadsheeteditor/mobile/locale/cs.json b/apps/spreadsheeteditor/mobile/locale/cs.json index 27de7317c..b4672d420 100644 --- a/apps/spreadsheeteditor/mobile/locale/cs.json +++ b/apps/spreadsheeteditor/mobile/locale/cs.json @@ -335,7 +335,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", diff --git a/apps/spreadsheeteditor/mobile/locale/de.json b/apps/spreadsheeteditor/mobile/locale/de.json index 369e04597..ea33917a4 100644 --- a/apps/spreadsheeteditor/mobile/locale/de.json +++ b/apps/spreadsheeteditor/mobile/locale/de.json @@ -193,6 +193,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.", @@ -222,8 +223,7 @@ "unknownErrorText": "Unbekannter Fehler.", "uploadImageExtMessage": "Unbekanntes Bildformat.", "uploadImageFileCountMessage": "Keine Bilder hochgeladen.", - "uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten." }, "LongActions": { "applyChangesTextText": "Daten werden geladen...", @@ -273,13 +273,13 @@ "textErrorRemoveSheet": "Arbeitsblatt kann nicht gelöscht werden. ", "textHide": "Ausblenden", "textMore": "Mehr", + "textOk": "OK", "textRename": "Umbenennen", "textRenameSheet": "Tabelle umbenennen", "textSheet": "Blatt", "textSheetName": "Blattname", "textUnhide": "Einblenden", - "textWarnDeleteSheet": "Das Arbeitsblatt kann Daten enthalten. Möchten Sie fortsetzen?", - "textOk": "Ok" + "textWarnDeleteSheet": "Das Arbeitsblatt kann Daten enthalten. Möchten Sie fortsetzen?" }, "Toolbar": { "dlgLeaveMsgText": "Sie haben nicht gespeicherte Änderungen. Klicken Sie auf \"Auf dieser Seite bleiben\" und warten Sie, bis die Datei automatisch gespeichert wird. Klicken Sie auf \"Seite verlassen\", um nicht gespeicherte Änderungen zu verwerfen.", @@ -335,7 +335,8 @@ "txtExpandSort": "Die Daten neben der Auswahl werden nicht sortiert. Möchten Sie die Auswahl um die angrenzenden Daten erweitern oder nur mit der Sortierung der aktuell ausgewählten Zellen fortfahren?", "txtNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.", "txtSorting": "Sortierung", - "txtSortSelected": "Ausgewählte sortieren" + "txtSortSelected": "Ausgewählte sortieren", + "textSelectedRange": "Selected Range" }, "Edit": { "notcriticalErrorTitle": "Warnung", @@ -573,6 +574,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", @@ -633,8 +635,7 @@ "txtScheme9": "Gießerei", "txtSpace": "Leerzeichen", "txtTab": "Tab", - "warnDownloadAs": "Wenn Sie mit dem Speichern in diesem Format fortsetzen, werden alle Objekte außer Text verloren gehen.
Möchten Sie wirklich fortsetzen?", - "textOk": "Ok" + "warnDownloadAs": "Wenn Sie mit dem Speichern in diesem Format fortsetzen, werden alle Objekte außer Text verloren gehen.
Möchten Sie wirklich fortsetzen?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/el.json b/apps/spreadsheeteditor/mobile/locale/el.json index 27de7317c..b4672d420 100644 --- a/apps/spreadsheeteditor/mobile/locale/el.json +++ b/apps/spreadsheeteditor/mobile/locale/el.json @@ -335,7 +335,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", diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json index f475ffc46..86cee406e 100644 --- a/apps/spreadsheeteditor/mobile/locale/en.json +++ b/apps/spreadsheeteditor/mobile/locale/en.json @@ -193,6 +193,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 +212,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", @@ -222,8 +223,7 @@ "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." }, "LongActions": { "applyChangesTextText": "Loading data...", @@ -264,7 +264,6 @@ "Statusbar": { "notcriticalErrorTitle": "Warning", "textCancel": "Cancel", - "textOk": "Ok", "textDelete": "Delete", "textDuplicate": "Duplicate", "textErrNameExists": "Worksheet with this name already exists.", @@ -274,6 +273,7 @@ "textErrorRemoveSheet": "Can't delete the worksheet.", "textHide": "Hide", "textMore": "More", + "textOk": "Ok", "textRename": "Rename", "textRenameSheet": "Rename Sheet", "textSheet": "Sheet", @@ -335,8 +335,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", - "textSelectedRange": "Selected Range" + "textSelectedRange": "Selected Range", + "txtSortSelected": "Sort selected" }, "Edit": { "notcriticalErrorTitle": "Warning", @@ -535,7 +535,6 @@ "textByColumns": "By columns", "textByRows": "By rows", "textCancel": "Cancel", - "textOk": "Ok", "textCentimeter": "Centimeter", "textCollaboration": "Collaboration", "textColorSchemes": "Color Schemes", @@ -575,6 +574,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 7fa1bae3d..c4492f7bf 100644 --- a/apps/spreadsheeteditor/mobile/locale/es.json +++ b/apps/spreadsheeteditor/mobile/locale/es.json @@ -335,7 +335,8 @@ "txtExpandSort": "Los datos al lado del rango seleccionado no serán ordenados. ¿Quiere Usted expandir el rango seleccionado para incluir datos de las celdas adyacentes o continuar la ordenación del rango seleccionado?", "txtNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\"", "txtSorting": "Ordenación", - "txtSortSelected": "Ordenar los objetos seleccionados" + "txtSortSelected": "Ordenar los objetos seleccionados", + "textSelectedRange": "Selected Range" }, "Edit": { "notcriticalErrorTitle": "Advertencia", diff --git a/apps/spreadsheeteditor/mobile/locale/fr.json b/apps/spreadsheeteditor/mobile/locale/fr.json index 3a2127433..9381d7944 100644 --- a/apps/spreadsheeteditor/mobile/locale/fr.json +++ b/apps/spreadsheeteditor/mobile/locale/fr.json @@ -193,6 +193,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", @@ -222,8 +223,7 @@ "unknownErrorText": "Erreur inconnue.", "uploadImageExtMessage": "Format d'image inconnu.", "uploadImageFileCountMessage": "Aucune image chargée.", - "uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo." }, "LongActions": { "applyChangesTextText": "Chargement des données en cours...", @@ -273,13 +273,13 @@ "textErrorRemoveSheet": "Impossible de supprimer la feuille de calcul.", "textHide": "Masquer", "textMore": "Plus", + "textOk": "OK", "textRename": "Renommer", "textRenameSheet": "Renommer la feuille", "textSheet": "Feuille", "textSheetName": "Nom de la feuille", "textUnhide": "Afficher", - "textWarnDeleteSheet": "La feuille de calcul peut contenir des données. Êtes-vous sûr de vouloir continuer?", - "textOk": "Ok" + "textWarnDeleteSheet": "La feuille de calcul peut contenir des données. Êtes-vous sûr de vouloir continuer?" }, "Toolbar": { "dlgLeaveMsgText": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur Rester sur cette page et attendez l'enregistrement automatique. Cliquez sur Quitter cette page pour annuler toutes les modifications non enregistrées.", @@ -335,7 +335,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", @@ -573,6 +574,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", @@ -633,8 +635,7 @@ "txtScheme9": "Fonderie", "txtSpace": "Espace", "txtTab": "Tabulation", - "warnDownloadAs": "Si vous continuez à enregistrer dans ce format toutes les fonctions sauf le texte seront perdues.
Êtes-vous sûr de vouloir continuer?", - "textOk": "Ok" + "warnDownloadAs": "Si vous continuez à enregistrer dans ce format toutes les fonctions sauf le texte seront perdues.
Êtes-vous sûr de vouloir continuer?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/hu.json b/apps/spreadsheeteditor/mobile/locale/hu.json index 27de7317c..b4672d420 100644 --- a/apps/spreadsheeteditor/mobile/locale/hu.json +++ b/apps/spreadsheeteditor/mobile/locale/hu.json @@ -335,7 +335,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", diff --git a/apps/spreadsheeteditor/mobile/locale/it.json b/apps/spreadsheeteditor/mobile/locale/it.json index 27de7317c..20d4b3f8b 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", @@ -62,99 +155,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 +193,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 +212,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", @@ -222,8 +223,7 @@ "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." }, "LongActions": { "applyChangesTextText": "Loading data...", @@ -273,13 +273,13 @@ "textErrorRemoveSheet": "Can't delete the worksheet.", "textHide": "Hide", "textMore": "More", + "textOk": "Ok", "textRename": "Rename", "textRenameSheet": "Rename Sheet", "textSheet": "Sheet", "textSheetName": "Sheet Name", "textUnhide": "Unhide", - "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?", - "textOk": "Ok" + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", @@ -335,7 +335,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", @@ -573,6 +574,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", @@ -633,8 +635,7 @@ "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?", - "textOk": "Ok" + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/ja.json b/apps/spreadsheeteditor/mobile/locale/ja.json index 54ce6626e..5d1cf6bbd 100644 --- a/apps/spreadsheeteditor/mobile/locale/ja.json +++ b/apps/spreadsheeteditor/mobile/locale/ja.json @@ -194,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", @@ -212,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.", "openErrorText": "An error has occurred while opening the file", @@ -222,8 +223,7 @@ "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." }, "LongActions": { "applyChangesTextText": "データを読み込んでいます...", @@ -274,12 +274,12 @@ "textErrorRemoveSheet": "Can't delete the worksheet.", "textHide": "Hide", "textMore": "More", + "textOk": "Ok", "textRenameSheet": "Rename Sheet", "textSheet": "Sheet", "textSheetName": "Sheet Name", "textUnhide": "Unhide", - "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?", - "textOk": "Ok" + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" }, "Toolbar": { "dlgLeaveTitleText": "アプリケーションを終了します", @@ -294,6 +294,8 @@ "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", @@ -315,8 +317,6 @@ "textFilter": "Filter", "textFunction": "Function", "textGroups": "CATEGORIES", - "textInsert": "Insert", - "textInsertImage": "Insert Image", "textInternalDataRange": "Internal Data Range", "textInvalidRange": "ERROR! Invalid cells range", "textLink": "Link", @@ -335,7 +335,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": " 警告", @@ -343,6 +344,7 @@ "textBillions": "十億", "textColor": "色", "textDesign": "デザイン", + "textDisplayUnits": "表示単位", "textDollar": "ドル", "textErrorMsg": "少なくとも1つの値を選択する必要があります", "textErrorTitle": " 警告", @@ -406,7 +408,6 @@ "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.", @@ -535,6 +536,7 @@ "textSearch": "検索", "textSearchBy": "検索", "textTitle": "タイトル", + "textUnitOfMeasurement": "測定単位", "textValues": "値", "advCSVOptions": "Choose CSV options", "advDRMOptions": "Protected File", @@ -579,6 +581,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", @@ -601,7 +604,6 @@ "textSubject": "Subject", "textTel": "Tel", "textTop": "Top", - "textUnitOfMeasurement": "Unit Of Measurement", "textUploaded": "Uploaded", "textVersion": "Version", "textWorkbook": "Workbook", @@ -633,8 +635,7 @@ "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?", - "textOk": "Ok" + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/ko.json b/apps/spreadsheeteditor/mobile/locale/ko.json index 27de7317c..b4672d420 100644 --- a/apps/spreadsheeteditor/mobile/locale/ko.json +++ b/apps/spreadsheeteditor/mobile/locale/ko.json @@ -335,7 +335,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", diff --git a/apps/spreadsheeteditor/mobile/locale/lo.json b/apps/spreadsheeteditor/mobile/locale/lo.json index 27de7317c..b4672d420 100644 --- a/apps/spreadsheeteditor/mobile/locale/lo.json +++ b/apps/spreadsheeteditor/mobile/locale/lo.json @@ -335,7 +335,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", diff --git a/apps/spreadsheeteditor/mobile/locale/lv.json b/apps/spreadsheeteditor/mobile/locale/lv.json index 27de7317c..b4672d420 100644 --- a/apps/spreadsheeteditor/mobile/locale/lv.json +++ b/apps/spreadsheeteditor/mobile/locale/lv.json @@ -335,7 +335,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", diff --git a/apps/spreadsheeteditor/mobile/locale/nb.json b/apps/spreadsheeteditor/mobile/locale/nb.json index 27de7317c..b4672d420 100644 --- a/apps/spreadsheeteditor/mobile/locale/nb.json +++ b/apps/spreadsheeteditor/mobile/locale/nb.json @@ -335,7 +335,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", diff --git a/apps/spreadsheeteditor/mobile/locale/nl.json b/apps/spreadsheeteditor/mobile/locale/nl.json index 8a50cc0b9..015dc671e 100644 --- a/apps/spreadsheeteditor/mobile/locale/nl.json +++ b/apps/spreadsheeteditor/mobile/locale/nl.json @@ -335,7 +335,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", diff --git a/apps/spreadsheeteditor/mobile/locale/pl.json b/apps/spreadsheeteditor/mobile/locale/pl.json index 27de7317c..b4672d420 100644 --- a/apps/spreadsheeteditor/mobile/locale/pl.json +++ b/apps/spreadsheeteditor/mobile/locale/pl.json @@ -335,7 +335,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", diff --git a/apps/spreadsheeteditor/mobile/locale/pt.json b/apps/spreadsheeteditor/mobile/locale/pt.json index 532f66224..fb0f6c560 100644 --- a/apps/spreadsheeteditor/mobile/locale/pt.json +++ b/apps/spreadsheeteditor/mobile/locale/pt.json @@ -335,7 +335,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", diff --git a/apps/spreadsheeteditor/mobile/locale/ro.json b/apps/spreadsheeteditor/mobile/locale/ro.json index 3d753e747..184b0793f 100644 --- a/apps/spreadsheeteditor/mobile/locale/ro.json +++ b/apps/spreadsheeteditor/mobile/locale/ro.json @@ -193,6 +193,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", @@ -222,8 +223,7 @@ "unknownErrorText": "Eroare necunoscută.", "uploadImageExtMessage": "Format de imagine nerecunoscut.", "uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.", - "uploadImageSizeMessage": "Imaginea este prea mare. Limita de dimensiune este de 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "Imaginea este prea mare. Limita de dimensiune este de 25 MB." }, "LongActions": { "applyChangesTextText": "Încărcarea datelor...", @@ -273,13 +273,13 @@ "textErrorRemoveSheet": "Foaia de calcul nu poate fi ștearsă.", "textHide": "Ascunde", "textMore": "Mai multe", + "textOk": "OK", "textRename": "Redenumire", "textRenameSheet": "Redenumire foaie", "textSheet": "Foaie", "textSheetName": "Numele foii", "textUnhide": "Reafișare", - "textWarnDeleteSheet": "Foaie de calcul poate conține datele. Sigur doriți să continuați?", - "textOk": "Ok" + "textWarnDeleteSheet": "Foaie de calcul poate conține datele. Sigur doriți să continuați?" }, "Toolbar": { "dlgLeaveMsgText": "Nu ați salvat modificările din documentul. Faceți clic pe Rămâi în pagină și așteptați la salvare automată. Faceți clic pe Părăsește aceasta pagina ca să renunțați la toate modificările nesalvate.", @@ -335,7 +335,8 @@ "txtExpandSort": "Datele lângă selecție vor fi sortate. Doriți să extindeți selecția pentru a include datele adiacente sau doriți să continuați cu selecția curentă?", "txtNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\"", "txtSorting": "Sortare", - "txtSortSelected": "Sortarea selecției" + "txtSortSelected": "Sortarea selecției", + "textSelectedRange": "Selected Range" }, "Edit": { "notcriticalErrorTitle": "Avertisment", @@ -573,6 +574,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", @@ -633,8 +635,7 @@ "txtScheme9": "Forjă", "txtSpace": "Spațiu", "txtTab": "Fila", - "warnDownloadAs": "Dacă salvați în acest format de fișier, este posibil ca unele dintre caracteristici să se piardă, cu excepția textului.
Sunteți sigur că doriți să continuați?", - "textOk": "Ok" + "warnDownloadAs": "Dacă salvați în acest format de fișier, este posibil ca unele dintre caracteristici să se piardă, cu excepția textului.
Sunteți sigur că doriți să continuați?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/ru.json b/apps/spreadsheeteditor/mobile/locale/ru.json index f70f80532..3e6025695 100644 --- a/apps/spreadsheeteditor/mobile/locale/ru.json +++ b/apps/spreadsheeteditor/mobile/locale/ru.json @@ -193,6 +193,7 @@ "errorInvalidRef": "Введите корректное имя для выделенного диапазона или допустимую ссылку для перехода.", "errorKeyEncrypt": "Неизвестный дескриптор ключа", "errorKeyExpire": "Срок действия дескриптора ключа истек", + "errorLoadingFont": "Шрифты не загружены.
Пожалуйста, обратитесь к администратору Сервера документов.", "errorLockedAll": "Операция не может быть произведена, так как лист заблокирован другим пользователем.", "errorLockedCellPivot": "Нельзя изменить данные в сводной таблице.", "errorLockedWorksheetRename": "В настоящее время лист нельзя переименовать, так как его переименовывает другой пользователь", @@ -211,7 +212,7 @@ "errorUpdateVersionOnDisconnect": "Подключение к Интернету было восстановлено, и версия файла изменилась.
Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.", "errorUserDrop": "В настоящий момент файл недоступен.", "errorUsersExceed": "Превышено количество пользователей, разрешенных согласно тарифному плану", - "errorViewerDisconnect": "Подключение прервано. Вы можете просматривать документ,
но не сможете скачать его до восстановления подключения и обновления страницы.", + "errorViewerDisconnect": "Подключение прервано. Вы можете просматривать документ,
но не сможете скачать или напечатать его до восстановления подключения и обновления страницы.", "errorWrongBracketsCount": "Ошибка в формуле.
Неверное количество скобок.", "errorWrongOperator": "Ошибка во введенной формуле. Использован неправильный оператор.
Исправьте ошибку или используйте клавишу Esc для отмены редактирования формулы.", "notcriticalErrorTitle": "Внимание", @@ -222,8 +223,7 @@ "unknownErrorText": "Неизвестная ошибка.", "uploadImageExtMessage": "Неизвестный формат рисунка.", "uploadImageFileCountMessage": "Ни одного рисунка не загружено.", - "uploadImageSizeMessage": "Слишком большой рисунок. Максимальный размер - 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "Слишком большой рисунок. Максимальный размер - 25 MB." }, "LongActions": { "applyChangesTextText": "Загрузка данных...", @@ -254,7 +254,7 @@ "saveTitleText": "Сохранение документа", "textLoadingDocument": "Загрузка документа", "textNo": "Нет", - "textOk": "Ок", + "textOk": "Ok", "textYes": "Да", "txtEditingMode": "Установка режима редактирования...", "uploadImageTextText": "Загрузка рисунка...", @@ -273,13 +273,13 @@ "textErrorRemoveSheet": "Не удалось удалить лист.", "textHide": "Скрыть", "textMore": "Ещё", + "textOk": "Ok", "textRename": "Переименовать", "textRenameSheet": "Переименовать лист", "textSheet": "Лист", "textSheetName": "Имя листа", "textUnhide": "Показать", - "textWarnDeleteSheet": "Лист может содержать данные. Продолжить операцию?", - "textOk": "Ok" + "textWarnDeleteSheet": "Лист может содержать данные. Продолжить операцию?" }, "Toolbar": { "dlgLeaveMsgText": "В документе есть несохраненные изменения. Нажмите 'Остаться на странице', чтобы дождаться автосохранения. Нажмите 'Уйти со страницы', чтобы сбросить все несохраненные изменения.", @@ -335,7 +335,8 @@ "txtExpandSort": "Данные рядом с выделенным диапазоном не будут отсортированы. Вы хотите расширить выделенный диапазон, чтобы включить данные из смежных ячеек, или продолжить сортировку только выделенного диапазона?", "txtNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"", "txtSorting": "Сортировка", - "txtSortSelected": "Сортировать выделенное" + "txtSortSelected": "Сортировать выделенное", + "textSelectedRange": "Selected Range" }, "Edit": { "notcriticalErrorTitle": "Внимание", @@ -534,7 +535,6 @@ "textByColumns": "По столбцам", "textByRows": "По строкам", "textCancel": "Отмена", - "textOk": "Ок", "textCentimeter": "Сантиметр", "textCollaboration": "Совместная работа", "textColorSchemes": "Цветовые схемы", @@ -574,6 +574,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 27de7317c..b4672d420 100644 --- a/apps/spreadsheeteditor/mobile/locale/sk.json +++ b/apps/spreadsheeteditor/mobile/locale/sk.json @@ -335,7 +335,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", diff --git a/apps/spreadsheeteditor/mobile/locale/sl.json b/apps/spreadsheeteditor/mobile/locale/sl.json index 27de7317c..b4672d420 100644 --- a/apps/spreadsheeteditor/mobile/locale/sl.json +++ b/apps/spreadsheeteditor/mobile/locale/sl.json @@ -335,7 +335,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", diff --git a/apps/spreadsheeteditor/mobile/locale/tr.json b/apps/spreadsheeteditor/mobile/locale/tr.json index 27de7317c..b4672d420 100644 --- a/apps/spreadsheeteditor/mobile/locale/tr.json +++ b/apps/spreadsheeteditor/mobile/locale/tr.json @@ -335,7 +335,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", diff --git a/apps/spreadsheeteditor/mobile/locale/uk.json b/apps/spreadsheeteditor/mobile/locale/uk.json index 27de7317c..b4672d420 100644 --- a/apps/spreadsheeteditor/mobile/locale/uk.json +++ b/apps/spreadsheeteditor/mobile/locale/uk.json @@ -335,7 +335,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", diff --git a/apps/spreadsheeteditor/mobile/locale/vi.json b/apps/spreadsheeteditor/mobile/locale/vi.json index 27de7317c..b4672d420 100644 --- a/apps/spreadsheeteditor/mobile/locale/vi.json +++ b/apps/spreadsheeteditor/mobile/locale/vi.json @@ -335,7 +335,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", diff --git a/apps/spreadsheeteditor/mobile/locale/zh.json b/apps/spreadsheeteditor/mobile/locale/zh.json index 355dbdd09..ac76ee55b 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh.json +++ b/apps/spreadsheeteditor/mobile/locale/zh.json @@ -335,7 +335,8 @@ "txtExpand": "Expand and sort", "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", "txtSorting": "Sorting", - "txtSortSelected": "Sort selected" + "txtSortSelected": "Sort selected", + "textSelectedRange": "Selected Range" }, "Edit": { "notcriticalErrorTitle": "警告", @@ -612,6 +613,7 @@ "txtSpace": "空格", "txtTab": "标签", "warnDownloadAs": "如果您继续以此格式保存,除文本之外的所有功能将丢失。
您确定要继续吗?", + "textOk": "Ok", "txtScheme1": "Office", "txtScheme10": "Median", "txtScheme11": "Metro", @@ -633,8 +635,7 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry", - "textOk": "Ok" + "txtScheme9": "Foundry" } } } \ No newline at end of file From 369a285d021799d8041c53a4764e9573edb63afe Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 20 Aug 2021 18:46:10 +0300 Subject: [PATCH 74/90] Update translation --- apps/spreadsheeteditor/mobile/locale/it.json | 4 ++-- apps/spreadsheeteditor/mobile/locale/ja.json | 4 ++-- apps/spreadsheeteditor/mobile/locale/zh.json | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/locale/it.json b/apps/spreadsheeteditor/mobile/locale/it.json index 20d4b3f8b..e05f7ba0b 100644 --- a/apps/spreadsheeteditor/mobile/locale/it.json +++ b/apps/spreadsheeteditor/mobile/locale/it.json @@ -335,8 +335,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", - "textSelectedRange": "Selected Range" + "textSelectedRange": "Selected Range", + "txtSortSelected": "Sort selected" }, "Edit": { "notcriticalErrorTitle": "Warning", diff --git a/apps/spreadsheeteditor/mobile/locale/ja.json b/apps/spreadsheeteditor/mobile/locale/ja.json index 5d1cf6bbd..17f5b1e1c 100644 --- a/apps/spreadsheeteditor/mobile/locale/ja.json +++ b/apps/spreadsheeteditor/mobile/locale/ja.json @@ -335,8 +335,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", - "textSelectedRange": "Selected Range" + "textSelectedRange": "Selected Range", + "txtSortSelected": "Sort selected" }, "Edit": { "notcriticalErrorTitle": " 警告", diff --git a/apps/spreadsheeteditor/mobile/locale/zh.json b/apps/spreadsheeteditor/mobile/locale/zh.json index ac76ee55b..bb5a94e92 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh.json +++ b/apps/spreadsheeteditor/mobile/locale/zh.json @@ -335,8 +335,8 @@ "txtExpand": "Expand and sort", "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", "txtSorting": "Sorting", - "txtSortSelected": "Sort selected", - "textSelectedRange": "Selected Range" + "textSelectedRange": "Selected Range", + "txtSortSelected": "Sort selected" }, "Edit": { "notcriticalErrorTitle": "警告", From 1552d322715a7e2819a558f3e20344ee9cd77c59 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 20 Aug 2021 18:48:18 +0300 Subject: [PATCH 75/90] [DE] Hide forms tab --- apps/documenteditor/main/app/controller/Main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index 9003abc89..5e4cfbe02 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -395,7 +395,7 @@ define([ this.appOptions.compatibleFeatures = (typeof (this.appOptions.customization) == 'object') && !!this.appOptions.customization.compatibleFeatures; this.appOptions.canFeatureComparison = !!this.api.asc_isSupportFeature("comparison"); this.appOptions.canFeatureContentControl = !!this.api.asc_isSupportFeature("content-controls"); - this.appOptions.canFeatureForms = true; + this.appOptions.canFeatureForms = false; this.appOptions.mentionShare = !((typeof (this.appOptions.customization) == 'object') && (this.appOptions.customization.mentionShare==false)); this.appOptions.user.guest && this.appOptions.canRenameAnonymous && Common.NotificationCenter.on('user:rename', _.bind(this.showRenameUserDialog, this)); From 190f614f71f6c0bca84985454522ddf4a5161747 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 20 Aug 2021 21:16:16 +0300 Subject: [PATCH 76/90] [DE] Show full version of viewer for fill form mode --- apps/api/documents/api.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/api/documents/api.js b/apps/api/documents/api.js index c1a9abf26..1309760c5 100644 --- a/apps/api/documents/api.js +++ b/apps/api/documents/api.js @@ -870,8 +870,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"; From 0b1168b64eb32226826d2f3251983efcb95eaa6d Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Mon, 23 Aug 2021 00:15:51 +0300 Subject: [PATCH 77/90] [scaling] apply icons for 125% and 175% --- apps/common/main/resources/less/combo-border-size.less | 8 ++++++++ apps/documenteditor/main/resources/less/rightmenu.less | 2 +- .../main/resources/less/rightmenu.less | 2 +- .../main/resources/less/rightmenu.less | 10 +++++++++- .../spreadsheeteditor/main/resources/less/toolbar.less | 8 ++++++++ 5 files changed, 27 insertions(+), 3 deletions(-) diff --git a/apps/common/main/resources/less/combo-border-size.less b/apps/common/main/resources/less/combo-border-size.less index 0d1422789..2bd95281c 100644 --- a/apps/common/main/resources/less/combo-border-size.less +++ b/apps/common/main/resources/less/combo-border-size.less @@ -43,10 +43,18 @@ 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/documenteditor/main/resources/less/rightmenu.less b/apps/documenteditor/main/resources/less/rightmenu.less index 1ca355255..41cc75453 100644 --- a/apps/documenteditor/main/resources/less/rightmenu.less +++ b/apps/documenteditor/main/resources/less/rightmenu.less @@ -21,7 +21,7 @@ } .combo-pattern-item { - .background-ximage-v2('right-panels/patterns.png', 112px); + .background-ximage-all('right-panels/patterns.png', 112px); } .combo-dataview-menu { diff --git a/apps/presentationeditor/main/resources/less/rightmenu.less b/apps/presentationeditor/main/resources/less/rightmenu.less index 67c9bab9f..0a576902f 100644 --- a/apps/presentationeditor/main/resources/less/rightmenu.less +++ b/apps/presentationeditor/main/resources/less/rightmenu.less @@ -15,7 +15,7 @@ } .combo-pattern-item { - .background-ximage-v2('right-panels/patterns.png', 112px); + .background-ximage-all('right-panels/patterns.png', 112px); } .combo-dataview-menu { diff --git a/apps/spreadsheeteditor/main/resources/less/rightmenu.less b/apps/spreadsheeteditor/main/resources/less/rightmenu.less index 5eb734d6f..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 { @@ -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/toolbar.less b/apps/spreadsheeteditor/main/resources/less/toolbar.less index 796548586..cad840a6d 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)"; } From 88a2406080e098293f08c06243390545fa9e35e3 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Mon, 23 Aug 2021 13:13:47 +0300 Subject: [PATCH 78/90] [DE PE SSE mobile] Fix Bug 52109 --- apps/documenteditor/mobile/src/view/add/AddLink.jsx | 6 +++--- apps/presentationeditor/mobile/src/view/add/AddLink.jsx | 4 ++-- apps/spreadsheeteditor/mobile/src/view/add/AddLink.jsx | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/apps/documenteditor/mobile/src/view/add/AddLink.jsx b/apps/documenteditor/mobile/src/view/add/AddLink.jsx index 1dade24c8..f2bc4712b 100644 --- a/apps/documenteditor/mobile/src/view/add/AddLink.jsx +++ b/apps/documenteditor/mobile/src/view/add/AddLink.jsx @@ -13,8 +13,8 @@ const PageLink = props => { const [stateLink, setLink] = useState(''); const [stateDisplay, setDisplay] = useState(display); const [stateTip, setTip] = useState(''); - const [stateAutoUpdate, setAutoUpdate] = useState(true); - + const [stateAutoUpdate, setAutoUpdate] = useState(!stateDisplay ? true : false); + return ( {!props.noNavbar && } @@ -26,7 +26,7 @@ const PageLink = props => { value={stateLink} onChange={(event) => { setLink(event.target.value); - if((!stateDisplay || stateDisplay === stateLink) && stateAutoUpdate) setDisplay(event.target.value); + if(stateAutoUpdate) setDisplay(event.target.value); }} > { const display = props.getTextDisplay(); const displayDisabled = display !== false && display === null; const [stateDisplay, setDisplay] = useState(display !== false ? ((display !== null) ? display : _t.textDefault) : ""); - const [stateAutoUpdate, setAutoUpdate] = useState(true); + const [stateAutoUpdate, setAutoUpdate] = useState(!stateDisplay ? true : false); const [screenTip, setScreenTip] = useState(''); return ( @@ -117,7 +117,7 @@ const PageLink = props => { value={link} onChange={(event) => { setLink(event.target.value); - if((!stateDisplay || stateDisplay === link) && stateAutoUpdate) setDisplay(event.target.value); + if(stateAutoUpdate) setDisplay(event.target.value); }} /> : { 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; @@ -90,7 +90,7 @@ const AddLinkView = props => { value={link} onChange={(event) => { setLink(event.target.value); - if((!stateDisplayText || stateDisplayText === link) && stateAutoUpdate && !displayDisabled) setDisplayText(event.target.value); + if(stateAutoUpdate && !displayDisabled) setDisplayText(event.target.value); }} className={isIos ? 'list-input-right' : ''} /> From 055027594465753feae5ac5ed4cb457abc2bb894 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Mon, 23 Aug 2021 13:47:41 +0300 Subject: [PATCH 79/90] [DE PE SSE mobile] Fix Bug 52098 --- .../lib/controller/collaboration/Comments.jsx | 40 ++++++++++++------- apps/documenteditor/mobile/locale/en.json | 1 + apps/presentationeditor/mobile/locale/en.json | 1 + apps/spreadsheeteditor/mobile/locale/en.json | 1 + 4 files changed, 29 insertions(+), 14 deletions(-) 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/documenteditor/mobile/locale/en.json b/apps/documenteditor/mobile/locale/en.json index f176b198f..835fcc1a2 100644 --- a/apps/documenteditor/mobile/locale/en.json +++ b/apps/documenteditor/mobile/locale/en.json @@ -75,6 +75,7 @@ "textBold": "Bold", "textBreakBefore": "Page break before", "textCancel": "Cancel", + "textOk": "Ok", "textCaps": "All caps", "textCenter": "Align center", "textChart": "Chart", diff --git a/apps/presentationeditor/mobile/locale/en.json b/apps/presentationeditor/mobile/locale/en.json index a6531c874..ef3fc1ef5 100644 --- a/apps/presentationeditor/mobile/locale/en.json +++ b/apps/presentationeditor/mobile/locale/en.json @@ -15,6 +15,7 @@ "textAddReply": "Add Reply", "textBack": "Back", "textCancel": "Cancel", + "textOk": "Ok", "textCollaboration": "Collaboration", "textComments": "Comments", "textDeleteComment": "Delete Comment", diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json index fe31d4295..95ec3e6ad 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", From 25bf1065a218bfaa8c372a71c7d794412754e792 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 23 Aug 2021 14:08:25 +0300 Subject: [PATCH 80/90] Fix button size --- apps/common/main/lib/view/OpenDialog.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/common/main/lib/view/OpenDialog.js b/apps/common/main/lib/view/OpenDialog.js index fce9a2ee1..c8fff9f36 100644 --- a/apps/common/main/lib/view/OpenDialog.js +++ b/apps/common/main/lib/view/OpenDialog.js @@ -160,10 +160,10 @@ define([ '

' ].join(''); From d9644082774d36f22bfd4e97b26fd26dc2a43b8c Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 23 Aug 2021 15:20:34 +0300 Subject: [PATCH 81/90] [PE] Fix Bug 52113 --- apps/presentationeditor/main/app/view/ChartSettings.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/presentationeditor/main/app/view/ChartSettings.js b/apps/presentationeditor/main/app/view/ChartSettings.js index 798578eac..f4b0f0f46 100644 --- a/apps/presentationeditor/main/app/view/ChartSettings.js +++ b/apps/presentationeditor/main/app/view/ChartSettings.js @@ -350,7 +350,8 @@ define([ if (this.api && !this._noApply) { var props = new Asc.CAscChartProp(); - props.putStyle(record.get('data')); + this.chartProps.putStyle(record.get('data')); + props.put_ChartProperties(this.chartProps); this.api.ChartApply(props); } this.fireEvent('editcomplete', this); From f48e77b9efbbe0bccd9f5eb551951069947d5b64 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 23 Aug 2021 15:26:03 +0300 Subject: [PATCH 82/90] [Mobile] Update translation --- apps/documenteditor/mobile/locale/be.json | 3 ++- apps/documenteditor/mobile/locale/bg.json | 3 ++- apps/documenteditor/mobile/locale/ca.json | 3 ++- apps/documenteditor/mobile/locale/cs.json | 3 ++- apps/documenteditor/mobile/locale/da.json | 3 ++- apps/documenteditor/mobile/locale/de.json | 3 ++- apps/documenteditor/mobile/locale/el.json | 3 ++- apps/documenteditor/mobile/locale/es.json | 3 ++- apps/documenteditor/mobile/locale/fi.json | 3 ++- apps/documenteditor/mobile/locale/fr.json | 3 ++- apps/documenteditor/mobile/locale/hu.json | 3 ++- apps/documenteditor/mobile/locale/it.json | 3 ++- apps/documenteditor/mobile/locale/ja.json | 3 ++- apps/documenteditor/mobile/locale/ko.json | 3 ++- apps/documenteditor/mobile/locale/lo.json | 3 ++- apps/documenteditor/mobile/locale/lv.json | 3 ++- apps/documenteditor/mobile/locale/nb.json | 3 ++- apps/documenteditor/mobile/locale/nl.json | 3 ++- apps/documenteditor/mobile/locale/pl.json | 3 ++- apps/documenteditor/mobile/locale/pt.json | 3 ++- apps/documenteditor/mobile/locale/ro.json | 3 ++- apps/documenteditor/mobile/locale/ru.json | 3 ++- apps/documenteditor/mobile/locale/sk.json | 3 ++- apps/documenteditor/mobile/locale/sl.json | 3 ++- apps/documenteditor/mobile/locale/sv.json | 3 ++- apps/documenteditor/mobile/locale/tr.json | 3 ++- apps/documenteditor/mobile/locale/uk.json | 3 ++- apps/documenteditor/mobile/locale/vi.json | 3 ++- apps/documenteditor/mobile/locale/zh.json | 3 ++- apps/presentationeditor/mobile/locale/be.json | 3 ++- apps/presentationeditor/mobile/locale/bg.json | 3 ++- apps/presentationeditor/mobile/locale/ca.json | 3 ++- apps/presentationeditor/mobile/locale/cs.json | 3 ++- apps/presentationeditor/mobile/locale/de.json | 3 ++- apps/presentationeditor/mobile/locale/el.json | 3 ++- apps/presentationeditor/mobile/locale/es.json | 3 ++- apps/presentationeditor/mobile/locale/fr.json | 3 ++- apps/presentationeditor/mobile/locale/hu.json | 3 ++- apps/presentationeditor/mobile/locale/it.json | 3 ++- apps/presentationeditor/mobile/locale/ja.json | 3 ++- apps/presentationeditor/mobile/locale/ko.json | 3 ++- apps/presentationeditor/mobile/locale/lo.json | 3 ++- apps/presentationeditor/mobile/locale/lv.json | 3 ++- apps/presentationeditor/mobile/locale/nb.json | 3 ++- apps/presentationeditor/mobile/locale/nl.json | 3 ++- apps/presentationeditor/mobile/locale/pl.json | 3 ++- apps/presentationeditor/mobile/locale/pt.json | 3 ++- apps/presentationeditor/mobile/locale/ro.json | 3 ++- apps/presentationeditor/mobile/locale/ru.json | 3 ++- apps/presentationeditor/mobile/locale/sk.json | 3 ++- apps/presentationeditor/mobile/locale/sl.json | 3 ++- apps/presentationeditor/mobile/locale/tr.json | 3 ++- apps/presentationeditor/mobile/locale/uk.json | 3 ++- apps/presentationeditor/mobile/locale/vi.json | 3 ++- apps/presentationeditor/mobile/locale/zh.json | 3 ++- apps/spreadsheeteditor/mobile/locale/be.json | 3 ++- apps/spreadsheeteditor/mobile/locale/bg.json | 3 ++- apps/spreadsheeteditor/mobile/locale/ca.json | 3 ++- apps/spreadsheeteditor/mobile/locale/cs.json | 3 ++- apps/spreadsheeteditor/mobile/locale/de.json | 3 ++- apps/spreadsheeteditor/mobile/locale/el.json | 3 ++- apps/spreadsheeteditor/mobile/locale/es.json | 3 ++- apps/spreadsheeteditor/mobile/locale/fr.json | 3 ++- apps/spreadsheeteditor/mobile/locale/hu.json | 3 ++- apps/spreadsheeteditor/mobile/locale/it.json | 3 ++- apps/spreadsheeteditor/mobile/locale/ja.json | 3 ++- apps/spreadsheeteditor/mobile/locale/ko.json | 3 ++- apps/spreadsheeteditor/mobile/locale/lo.json | 3 ++- apps/spreadsheeteditor/mobile/locale/lv.json | 3 ++- apps/spreadsheeteditor/mobile/locale/nb.json | 3 ++- apps/spreadsheeteditor/mobile/locale/nl.json | 3 ++- apps/spreadsheeteditor/mobile/locale/pl.json | 3 ++- apps/spreadsheeteditor/mobile/locale/pt.json | 3 ++- apps/spreadsheeteditor/mobile/locale/ro.json | 3 ++- apps/spreadsheeteditor/mobile/locale/ru.json | 3 ++- apps/spreadsheeteditor/mobile/locale/sk.json | 3 ++- apps/spreadsheeteditor/mobile/locale/sl.json | 3 ++- apps/spreadsheeteditor/mobile/locale/tr.json | 3 ++- apps/spreadsheeteditor/mobile/locale/uk.json | 3 ++- apps/spreadsheeteditor/mobile/locale/vi.json | 3 ++- apps/spreadsheeteditor/mobile/locale/zh.json | 3 ++- 81 files changed, 162 insertions(+), 81 deletions(-) diff --git a/apps/documenteditor/mobile/locale/be.json b/apps/documenteditor/mobile/locale/be.json index e732ca444..8940a60fe 100644 --- a/apps/documenteditor/mobile/locale/be.json +++ b/apps/documenteditor/mobile/locale/be.json @@ -154,7 +154,8 @@ "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "textUnderline": "Underline", "textUsers": "Users", - "textWidow": "Widow control" + "textWidow": "Widow control", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", diff --git a/apps/documenteditor/mobile/locale/bg.json b/apps/documenteditor/mobile/locale/bg.json index e732ca444..8940a60fe 100644 --- a/apps/documenteditor/mobile/locale/bg.json +++ b/apps/documenteditor/mobile/locale/bg.json @@ -154,7 +154,8 @@ "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "textUnderline": "Underline", "textUsers": "Users", - "textWidow": "Widow control" + "textWidow": "Widow control", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", diff --git a/apps/documenteditor/mobile/locale/ca.json b/apps/documenteditor/mobile/locale/ca.json index 7e97327ad..83849e340 100644 --- a/apps/documenteditor/mobile/locale/ca.json +++ b/apps/documenteditor/mobile/locale/ca.json @@ -154,7 +154,8 @@ "textTryUndoRedo": "S'han desactivat les funcions desfés/refés per al mode de coedició ràpida.", "textUnderline": "Subratllat", "textUsers": "Usuaris", - "textWidow": "Control de finestra" + "textWidow": "Control de finestra", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Colors personalitzats", diff --git a/apps/documenteditor/mobile/locale/cs.json b/apps/documenteditor/mobile/locale/cs.json index e732ca444..8940a60fe 100644 --- a/apps/documenteditor/mobile/locale/cs.json +++ b/apps/documenteditor/mobile/locale/cs.json @@ -154,7 +154,8 @@ "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "textUnderline": "Underline", "textUsers": "Users", - "textWidow": "Widow control" + "textWidow": "Widow control", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", diff --git a/apps/documenteditor/mobile/locale/da.json b/apps/documenteditor/mobile/locale/da.json index e732ca444..8940a60fe 100644 --- a/apps/documenteditor/mobile/locale/da.json +++ b/apps/documenteditor/mobile/locale/da.json @@ -154,7 +154,8 @@ "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "textUnderline": "Underline", "textUsers": "Users", - "textWidow": "Widow control" + "textWidow": "Widow control", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", diff --git a/apps/documenteditor/mobile/locale/de.json b/apps/documenteditor/mobile/locale/de.json index bdad7ab02..0415b88a0 100644 --- a/apps/documenteditor/mobile/locale/de.json +++ b/apps/documenteditor/mobile/locale/de.json @@ -154,7 +154,8 @@ "textTryUndoRedo": "Die Optionen Rückgängig machen/Wiederholen sind für den Schnellmodus deaktiviert.", "textUnderline": "Unterstrichen", "textUsers": "Benutzer", - "textWidow": "Absatzkontrolle" + "textWidow": "Absatzkontrolle", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Benutzerdefinierte Farben", diff --git a/apps/documenteditor/mobile/locale/el.json b/apps/documenteditor/mobile/locale/el.json index e732ca444..8940a60fe 100644 --- a/apps/documenteditor/mobile/locale/el.json +++ b/apps/documenteditor/mobile/locale/el.json @@ -154,7 +154,8 @@ "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "textUnderline": "Underline", "textUsers": "Users", - "textWidow": "Widow control" + "textWidow": "Widow control", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", diff --git a/apps/documenteditor/mobile/locale/es.json b/apps/documenteditor/mobile/locale/es.json index 9efebea2a..ca4884cca 100644 --- a/apps/documenteditor/mobile/locale/es.json +++ b/apps/documenteditor/mobile/locale/es.json @@ -154,7 +154,8 @@ "textTryUndoRedo": "Las funciones Deshacer/Rehacer están desactivadas en el modo de co-edición rápido.", "textUnderline": "Subrayar", "textUsers": "Usuarios", - "textWidow": "Control de viudas" + "textWidow": "Control de viudas", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Colores personalizados", diff --git a/apps/documenteditor/mobile/locale/fi.json b/apps/documenteditor/mobile/locale/fi.json index e732ca444..8940a60fe 100644 --- a/apps/documenteditor/mobile/locale/fi.json +++ b/apps/documenteditor/mobile/locale/fi.json @@ -154,7 +154,8 @@ "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "textUnderline": "Underline", "textUsers": "Users", - "textWidow": "Widow control" + "textWidow": "Widow control", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", diff --git a/apps/documenteditor/mobile/locale/fr.json b/apps/documenteditor/mobile/locale/fr.json index 5bf81c13c..7fff82875 100644 --- a/apps/documenteditor/mobile/locale/fr.json +++ b/apps/documenteditor/mobile/locale/fr.json @@ -154,7 +154,8 @@ "textTryUndoRedo": "Les fonctions Annuler/Rétablir sont désactivées pour le mode de co-édition rapide.", "textUnderline": "Souligné", "textUsers": "Utilisateurs", - "textWidow": "Contrôle des veuves" + "textWidow": "Contrôle des veuves", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Couleurs personnalisées", diff --git a/apps/documenteditor/mobile/locale/hu.json b/apps/documenteditor/mobile/locale/hu.json index e732ca444..8940a60fe 100644 --- a/apps/documenteditor/mobile/locale/hu.json +++ b/apps/documenteditor/mobile/locale/hu.json @@ -154,7 +154,8 @@ "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "textUnderline": "Underline", "textUsers": "Users", - "textWidow": "Widow control" + "textWidow": "Widow control", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", diff --git a/apps/documenteditor/mobile/locale/it.json b/apps/documenteditor/mobile/locale/it.json index e732ca444..8940a60fe 100644 --- a/apps/documenteditor/mobile/locale/it.json +++ b/apps/documenteditor/mobile/locale/it.json @@ -154,7 +154,8 @@ "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "textUnderline": "Underline", "textUsers": "Users", - "textWidow": "Widow control" + "textWidow": "Widow control", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", diff --git a/apps/documenteditor/mobile/locale/ja.json b/apps/documenteditor/mobile/locale/ja.json index 6fafc5830..b186ac485 100644 --- a/apps/documenteditor/mobile/locale/ja.json +++ b/apps/documenteditor/mobile/locale/ja.json @@ -154,7 +154,8 @@ "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "textUnderline": "Underline", "textUsers": "Users", - "textWidow": "Widow control" + "textWidow": "Widow control", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", diff --git a/apps/documenteditor/mobile/locale/ko.json b/apps/documenteditor/mobile/locale/ko.json index e732ca444..8940a60fe 100644 --- a/apps/documenteditor/mobile/locale/ko.json +++ b/apps/documenteditor/mobile/locale/ko.json @@ -154,7 +154,8 @@ "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "textUnderline": "Underline", "textUsers": "Users", - "textWidow": "Widow control" + "textWidow": "Widow control", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", diff --git a/apps/documenteditor/mobile/locale/lo.json b/apps/documenteditor/mobile/locale/lo.json index e732ca444..8940a60fe 100644 --- a/apps/documenteditor/mobile/locale/lo.json +++ b/apps/documenteditor/mobile/locale/lo.json @@ -154,7 +154,8 @@ "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "textUnderline": "Underline", "textUsers": "Users", - "textWidow": "Widow control" + "textWidow": "Widow control", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", diff --git a/apps/documenteditor/mobile/locale/lv.json b/apps/documenteditor/mobile/locale/lv.json index e732ca444..8940a60fe 100644 --- a/apps/documenteditor/mobile/locale/lv.json +++ b/apps/documenteditor/mobile/locale/lv.json @@ -154,7 +154,8 @@ "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "textUnderline": "Underline", "textUsers": "Users", - "textWidow": "Widow control" + "textWidow": "Widow control", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", diff --git a/apps/documenteditor/mobile/locale/nb.json b/apps/documenteditor/mobile/locale/nb.json index e732ca444..8940a60fe 100644 --- a/apps/documenteditor/mobile/locale/nb.json +++ b/apps/documenteditor/mobile/locale/nb.json @@ -154,7 +154,8 @@ "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "textUnderline": "Underline", "textUsers": "Users", - "textWidow": "Widow control" + "textWidow": "Widow control", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", diff --git a/apps/documenteditor/mobile/locale/nl.json b/apps/documenteditor/mobile/locale/nl.json index 1c787e13e..bdb36e7cc 100644 --- a/apps/documenteditor/mobile/locale/nl.json +++ b/apps/documenteditor/mobile/locale/nl.json @@ -154,7 +154,8 @@ "textTryUndoRedo": "De functies Ongedaan maken/Annuleren zijn uitgeschakeld in de Modus Gezamenlijk bewerken.", "textUnderline": "Onderstrepen", "textUsers": "Gebruikers", - "textWidow": "Zwevende regels voorkomen" + "textWidow": "Zwevende regels voorkomen", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Aangepaste kleuren", diff --git a/apps/documenteditor/mobile/locale/pl.json b/apps/documenteditor/mobile/locale/pl.json index e732ca444..8940a60fe 100644 --- a/apps/documenteditor/mobile/locale/pl.json +++ b/apps/documenteditor/mobile/locale/pl.json @@ -154,7 +154,8 @@ "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "textUnderline": "Underline", "textUsers": "Users", - "textWidow": "Widow control" + "textWidow": "Widow control", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", diff --git a/apps/documenteditor/mobile/locale/pt.json b/apps/documenteditor/mobile/locale/pt.json index 53a299453..7a03aee36 100644 --- a/apps/documenteditor/mobile/locale/pt.json +++ b/apps/documenteditor/mobile/locale/pt.json @@ -154,7 +154,8 @@ "textTryUndoRedo": "As funções Desfazer/Refazer estão desabilitadas para o modo de coedição rápido", "textUnderline": "Sublinhado", "textUsers": "Usuários", - "textWidow": "Controle de linhas órfãs/viúvas." + "textWidow": "Controle de linhas órfãs/viúvas.", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Cores personalizadas", diff --git a/apps/documenteditor/mobile/locale/ro.json b/apps/documenteditor/mobile/locale/ro.json index 5f4716379..f064a4ce4 100644 --- a/apps/documenteditor/mobile/locale/ro.json +++ b/apps/documenteditor/mobile/locale/ro.json @@ -154,7 +154,8 @@ "textTryUndoRedo": "Funcții Anulare/Refacere sunt dezactivate în modul Rapid de editare colaborativă.", "textUnderline": "Subliniat", "textUsers": "Utilizatori", - "textWidow": "Control văduvă" + "textWidow": "Control văduvă", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Culori particularizate", diff --git a/apps/documenteditor/mobile/locale/ru.json b/apps/documenteditor/mobile/locale/ru.json index 436b2d89e..166688a8e 100644 --- a/apps/documenteditor/mobile/locale/ru.json +++ b/apps/documenteditor/mobile/locale/ru.json @@ -154,7 +154,8 @@ "textTryUndoRedo": "Функции отмены и повтора действий отключены в Быстром режиме совместного редактирования.", "textUnderline": "Подчёркнутый", "textUsers": "Пользователи", - "textWidow": "Запрет висячих строк" + "textWidow": "Запрет висячих строк", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Пользовательские цвета", diff --git a/apps/documenteditor/mobile/locale/sk.json b/apps/documenteditor/mobile/locale/sk.json index e732ca444..8940a60fe 100644 --- a/apps/documenteditor/mobile/locale/sk.json +++ b/apps/documenteditor/mobile/locale/sk.json @@ -154,7 +154,8 @@ "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "textUnderline": "Underline", "textUsers": "Users", - "textWidow": "Widow control" + "textWidow": "Widow control", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", diff --git a/apps/documenteditor/mobile/locale/sl.json b/apps/documenteditor/mobile/locale/sl.json index e732ca444..8940a60fe 100644 --- a/apps/documenteditor/mobile/locale/sl.json +++ b/apps/documenteditor/mobile/locale/sl.json @@ -154,7 +154,8 @@ "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "textUnderline": "Underline", "textUsers": "Users", - "textWidow": "Widow control" + "textWidow": "Widow control", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", diff --git a/apps/documenteditor/mobile/locale/sv.json b/apps/documenteditor/mobile/locale/sv.json index e732ca444..8940a60fe 100644 --- a/apps/documenteditor/mobile/locale/sv.json +++ b/apps/documenteditor/mobile/locale/sv.json @@ -154,7 +154,8 @@ "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "textUnderline": "Underline", "textUsers": "Users", - "textWidow": "Widow control" + "textWidow": "Widow control", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", diff --git a/apps/documenteditor/mobile/locale/tr.json b/apps/documenteditor/mobile/locale/tr.json index ec96215a7..bfb3504f6 100644 --- a/apps/documenteditor/mobile/locale/tr.json +++ b/apps/documenteditor/mobile/locale/tr.json @@ -154,7 +154,8 @@ "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "textUnderline": "Underline", "textUsers": "Users", - "textWidow": "Widow control" + "textWidow": "Widow control", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", diff --git a/apps/documenteditor/mobile/locale/uk.json b/apps/documenteditor/mobile/locale/uk.json index e732ca444..8940a60fe 100644 --- a/apps/documenteditor/mobile/locale/uk.json +++ b/apps/documenteditor/mobile/locale/uk.json @@ -154,7 +154,8 @@ "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "textUnderline": "Underline", "textUsers": "Users", - "textWidow": "Widow control" + "textWidow": "Widow control", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", diff --git a/apps/documenteditor/mobile/locale/vi.json b/apps/documenteditor/mobile/locale/vi.json index e732ca444..8940a60fe 100644 --- a/apps/documenteditor/mobile/locale/vi.json +++ b/apps/documenteditor/mobile/locale/vi.json @@ -154,7 +154,8 @@ "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "textUnderline": "Underline", "textUsers": "Users", - "textWidow": "Widow control" + "textWidow": "Widow control", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", diff --git a/apps/documenteditor/mobile/locale/zh.json b/apps/documenteditor/mobile/locale/zh.json index 0c2e1c8ae..2396e9a0f 100644 --- a/apps/documenteditor/mobile/locale/zh.json +++ b/apps/documenteditor/mobile/locale/zh.json @@ -154,7 +154,8 @@ "textTryUndoRedo": "快速共同编辑模式下,撤销/重做功能被禁用。", "textUnderline": "下划线", "textUsers": "用户", - "textWidow": "单独控制" + "textWidow": "单独控制", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "自定义颜色", diff --git a/apps/presentationeditor/mobile/locale/be.json b/apps/presentationeditor/mobile/locale/be.json index ac341155d..737efc64f 100644 --- a/apps/presentationeditor/mobile/locale/be.json +++ b/apps/presentationeditor/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", diff --git a/apps/presentationeditor/mobile/locale/bg.json b/apps/presentationeditor/mobile/locale/bg.json index ac341155d..737efc64f 100644 --- a/apps/presentationeditor/mobile/locale/bg.json +++ b/apps/presentationeditor/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", diff --git a/apps/presentationeditor/mobile/locale/ca.json b/apps/presentationeditor/mobile/locale/ca.json index 16b83a178..94a7750ff 100644 --- a/apps/presentationeditor/mobile/locale/ca.json +++ b/apps/presentationeditor/mobile/locale/ca.json @@ -30,7 +30,8 @@ "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" + "textUsers": "Usuaris", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Colors personalitzats", diff --git a/apps/presentationeditor/mobile/locale/cs.json b/apps/presentationeditor/mobile/locale/cs.json index ac341155d..737efc64f 100644 --- a/apps/presentationeditor/mobile/locale/cs.json +++ b/apps/presentationeditor/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", diff --git a/apps/presentationeditor/mobile/locale/de.json b/apps/presentationeditor/mobile/locale/de.json index e26eca1cc..b997a69da 100644 --- a/apps/presentationeditor/mobile/locale/de.json +++ b/apps/presentationeditor/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", diff --git a/apps/presentationeditor/mobile/locale/el.json b/apps/presentationeditor/mobile/locale/el.json index ac341155d..737efc64f 100644 --- a/apps/presentationeditor/mobile/locale/el.json +++ b/apps/presentationeditor/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", diff --git a/apps/presentationeditor/mobile/locale/es.json b/apps/presentationeditor/mobile/locale/es.json index 2dabd42dd..b271a4010 100644 --- a/apps/presentationeditor/mobile/locale/es.json +++ b/apps/presentationeditor/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", diff --git a/apps/presentationeditor/mobile/locale/fr.json b/apps/presentationeditor/mobile/locale/fr.json index e5af06f36..6a543a1b3 100644 --- a/apps/presentationeditor/mobile/locale/fr.json +++ b/apps/presentationeditor/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", diff --git a/apps/presentationeditor/mobile/locale/hu.json b/apps/presentationeditor/mobile/locale/hu.json index ac341155d..737efc64f 100644 --- a/apps/presentationeditor/mobile/locale/hu.json +++ b/apps/presentationeditor/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", diff --git a/apps/presentationeditor/mobile/locale/it.json b/apps/presentationeditor/mobile/locale/it.json index ac341155d..737efc64f 100644 --- a/apps/presentationeditor/mobile/locale/it.json +++ b/apps/presentationeditor/mobile/locale/it.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", diff --git a/apps/presentationeditor/mobile/locale/ja.json b/apps/presentationeditor/mobile/locale/ja.json index 9d74a8a34..fff971629 100644 --- a/apps/presentationeditor/mobile/locale/ja.json +++ b/apps/presentationeditor/mobile/locale/ja.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", diff --git a/apps/presentationeditor/mobile/locale/ko.json b/apps/presentationeditor/mobile/locale/ko.json index ac341155d..737efc64f 100644 --- a/apps/presentationeditor/mobile/locale/ko.json +++ b/apps/presentationeditor/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", diff --git a/apps/presentationeditor/mobile/locale/lo.json b/apps/presentationeditor/mobile/locale/lo.json index ac341155d..737efc64f 100644 --- a/apps/presentationeditor/mobile/locale/lo.json +++ b/apps/presentationeditor/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", diff --git a/apps/presentationeditor/mobile/locale/lv.json b/apps/presentationeditor/mobile/locale/lv.json index ac341155d..737efc64f 100644 --- a/apps/presentationeditor/mobile/locale/lv.json +++ b/apps/presentationeditor/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", diff --git a/apps/presentationeditor/mobile/locale/nb.json b/apps/presentationeditor/mobile/locale/nb.json index ac341155d..737efc64f 100644 --- a/apps/presentationeditor/mobile/locale/nb.json +++ b/apps/presentationeditor/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", diff --git a/apps/presentationeditor/mobile/locale/nl.json b/apps/presentationeditor/mobile/locale/nl.json index d7ee0fb4e..ab724708b 100644 --- a/apps/presentationeditor/mobile/locale/nl.json +++ b/apps/presentationeditor/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", diff --git a/apps/presentationeditor/mobile/locale/pl.json b/apps/presentationeditor/mobile/locale/pl.json index ac341155d..737efc64f 100644 --- a/apps/presentationeditor/mobile/locale/pl.json +++ b/apps/presentationeditor/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", diff --git a/apps/presentationeditor/mobile/locale/pt.json b/apps/presentationeditor/mobile/locale/pt.json index 570c1a089..02164ba25 100644 --- a/apps/presentationeditor/mobile/locale/pt.json +++ b/apps/presentationeditor/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", diff --git a/apps/presentationeditor/mobile/locale/ro.json b/apps/presentationeditor/mobile/locale/ro.json index 1d9082257..dab536df2 100644 --- a/apps/presentationeditor/mobile/locale/ro.json +++ b/apps/presentationeditor/mobile/locale/ro.json @@ -30,7 +30,8 @@ "textReopen": "Redeschide", "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", diff --git a/apps/presentationeditor/mobile/locale/ru.json b/apps/presentationeditor/mobile/locale/ru.json index 6e99a815d..a79fcb38d 100644 --- a/apps/presentationeditor/mobile/locale/ru.json +++ b/apps/presentationeditor/mobile/locale/ru.json @@ -30,7 +30,8 @@ "textReopen": "Переоткрыть", "textResolve": "Решить", "textTryUndoRedo": "Функции отмены и повтора действий отключены в Быстром режиме совместного редактирования.", - "textUsers": "Пользователи" + "textUsers": "Пользователи", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Пользовательские цвета", diff --git a/apps/presentationeditor/mobile/locale/sk.json b/apps/presentationeditor/mobile/locale/sk.json index ac341155d..737efc64f 100644 --- a/apps/presentationeditor/mobile/locale/sk.json +++ b/apps/presentationeditor/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", diff --git a/apps/presentationeditor/mobile/locale/sl.json b/apps/presentationeditor/mobile/locale/sl.json index ac341155d..737efc64f 100644 --- a/apps/presentationeditor/mobile/locale/sl.json +++ b/apps/presentationeditor/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", diff --git a/apps/presentationeditor/mobile/locale/tr.json b/apps/presentationeditor/mobile/locale/tr.json index ac341155d..737efc64f 100644 --- a/apps/presentationeditor/mobile/locale/tr.json +++ b/apps/presentationeditor/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", diff --git a/apps/presentationeditor/mobile/locale/uk.json b/apps/presentationeditor/mobile/locale/uk.json index ac341155d..737efc64f 100644 --- a/apps/presentationeditor/mobile/locale/uk.json +++ b/apps/presentationeditor/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", diff --git a/apps/presentationeditor/mobile/locale/vi.json b/apps/presentationeditor/mobile/locale/vi.json index ac341155d..737efc64f 100644 --- a/apps/presentationeditor/mobile/locale/vi.json +++ b/apps/presentationeditor/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", diff --git a/apps/presentationeditor/mobile/locale/zh.json b/apps/presentationeditor/mobile/locale/zh.json index 2fcd1109a..baa43b29b 100644 --- a/apps/presentationeditor/mobile/locale/zh.json +++ b/apps/presentationeditor/mobile/locale/zh.json @@ -30,7 +30,8 @@ "textReopen": "重新打开", "textResolve": "解决", "textTryUndoRedo": "快速共同编辑模式下,撤销/重做功能被禁用。", - "textUsers": "用户" + "textUsers": "用户", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "自定义颜色", diff --git a/apps/spreadsheeteditor/mobile/locale/be.json b/apps/spreadsheeteditor/mobile/locale/be.json index b4672d420..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", diff --git a/apps/spreadsheeteditor/mobile/locale/bg.json b/apps/spreadsheeteditor/mobile/locale/bg.json index b4672d420..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", diff --git a/apps/spreadsheeteditor/mobile/locale/ca.json b/apps/spreadsheeteditor/mobile/locale/ca.json index efb687349..e077fd1fa 100644 --- a/apps/spreadsheeteditor/mobile/locale/ca.json +++ b/apps/spreadsheeteditor/mobile/locale/ca.json @@ -30,7 +30,8 @@ "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" + "textUsers": "Usuaris", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Colors personalitzats", diff --git a/apps/spreadsheeteditor/mobile/locale/cs.json b/apps/spreadsheeteditor/mobile/locale/cs.json index b4672d420..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", diff --git a/apps/spreadsheeteditor/mobile/locale/de.json b/apps/spreadsheeteditor/mobile/locale/de.json index ea33917a4..24a46e040 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", diff --git a/apps/spreadsheeteditor/mobile/locale/el.json b/apps/spreadsheeteditor/mobile/locale/el.json index b4672d420..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", diff --git a/apps/spreadsheeteditor/mobile/locale/es.json b/apps/spreadsheeteditor/mobile/locale/es.json index c4492f7bf..a5c071860 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", diff --git a/apps/spreadsheeteditor/mobile/locale/fr.json b/apps/spreadsheeteditor/mobile/locale/fr.json index 9381d7944..3a9401db5 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", diff --git a/apps/spreadsheeteditor/mobile/locale/hu.json b/apps/spreadsheeteditor/mobile/locale/hu.json index b4672d420..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", diff --git a/apps/spreadsheeteditor/mobile/locale/it.json b/apps/spreadsheeteditor/mobile/locale/it.json index e05f7ba0b..82c1ea642 100644 --- a/apps/spreadsheeteditor/mobile/locale/it.json +++ b/apps/spreadsheeteditor/mobile/locale/it.json @@ -123,7 +123,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", diff --git a/apps/spreadsheeteditor/mobile/locale/ja.json b/apps/spreadsheeteditor/mobile/locale/ja.json index 17f5b1e1c..b5e279c71 100644 --- a/apps/spreadsheeteditor/mobile/locale/ja.json +++ b/apps/spreadsheeteditor/mobile/locale/ja.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": { "textThemeColors": "テーマカラー", diff --git a/apps/spreadsheeteditor/mobile/locale/ko.json b/apps/spreadsheeteditor/mobile/locale/ko.json index b4672d420..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", diff --git a/apps/spreadsheeteditor/mobile/locale/lo.json b/apps/spreadsheeteditor/mobile/locale/lo.json index b4672d420..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", diff --git a/apps/spreadsheeteditor/mobile/locale/lv.json b/apps/spreadsheeteditor/mobile/locale/lv.json index b4672d420..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", diff --git a/apps/spreadsheeteditor/mobile/locale/nb.json b/apps/spreadsheeteditor/mobile/locale/nb.json index b4672d420..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", diff --git a/apps/spreadsheeteditor/mobile/locale/nl.json b/apps/spreadsheeteditor/mobile/locale/nl.json index 015dc671e..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", diff --git a/apps/spreadsheeteditor/mobile/locale/pl.json b/apps/spreadsheeteditor/mobile/locale/pl.json index b4672d420..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", diff --git a/apps/spreadsheeteditor/mobile/locale/pt.json b/apps/spreadsheeteditor/mobile/locale/pt.json index fb0f6c560..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", diff --git a/apps/spreadsheeteditor/mobile/locale/ro.json b/apps/spreadsheeteditor/mobile/locale/ro.json index 184b0793f..f0c6548d5 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", diff --git a/apps/spreadsheeteditor/mobile/locale/ru.json b/apps/spreadsheeteditor/mobile/locale/ru.json index 3e6025695..273d3ad60 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": "Пользовательские цвета", diff --git a/apps/spreadsheeteditor/mobile/locale/sk.json b/apps/spreadsheeteditor/mobile/locale/sk.json index b4672d420..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", diff --git a/apps/spreadsheeteditor/mobile/locale/sl.json b/apps/spreadsheeteditor/mobile/locale/sl.json index b4672d420..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", diff --git a/apps/spreadsheeteditor/mobile/locale/tr.json b/apps/spreadsheeteditor/mobile/locale/tr.json index b4672d420..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", diff --git a/apps/spreadsheeteditor/mobile/locale/uk.json b/apps/spreadsheeteditor/mobile/locale/uk.json index b4672d420..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", diff --git a/apps/spreadsheeteditor/mobile/locale/vi.json b/apps/spreadsheeteditor/mobile/locale/vi.json index b4672d420..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", diff --git a/apps/spreadsheeteditor/mobile/locale/zh.json b/apps/spreadsheeteditor/mobile/locale/zh.json index bb5a94e92..92df088c0 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": "自定义颜色", From e7cfb129c2135a7ba783f2581a419d8ee7c5db43 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 23 Aug 2021 17:47:10 +0300 Subject: [PATCH 83/90] Fix Bug 51838 --- apps/documenteditor/main/app/view/Toolbar.js | 4 ++-- apps/documenteditor/main/resources/less/toolbar.less | 4 ++-- apps/presentationeditor/main/app/view/Toolbar.js | 4 ++-- .../main/resources/less/toolbar.less | 4 ++-- .../main/app/view/DocumentHolder.js | 2 +- .../main/resources/less/toolbar.less | 12 +++++++++--- 6 files changed, 18 insertions(+), 12 deletions(-) diff --git a/apps/documenteditor/main/app/view/Toolbar.js b/apps/documenteditor/main/app/view/Toolbar.js index 8c4ea904a..d56509cd0 100644 --- a/apps/documenteditor/main/app/view/Toolbar.js +++ b/apps/documenteditor/main/app/view/Toolbar.js @@ -1700,9 +1700,9 @@ define([ this.btnMarkers.setMenu( new Common.UI.Menu({ cls: 'shifted-left', - style: 'min-width: 139px', + style: 'min-width: 145px', items: [ - {template: _.template('')}, + {template: _.template('')}, {caption: '--'}, this.mnuMarkerChangeLevel = new Common.UI.MenuItem({ caption: this.textChangeLevel, diff --git a/apps/documenteditor/main/resources/less/toolbar.less b/apps/documenteditor/main/resources/less/toolbar.less index 27de5cba2..2bcb39ba2 100644 --- a/apps/documenteditor/main/resources/less/toolbar.less +++ b/apps/documenteditor/main/resources/less/toolbar.less @@ -33,8 +33,8 @@ } .item-markerlist { - width: 38px; - height: 38px; + width: 40px; + height: 40px; } .item-multilevellist { diff --git a/apps/presentationeditor/main/app/view/Toolbar.js b/apps/presentationeditor/main/app/view/Toolbar.js index 6ce55b484..8f6058693 100644 --- a/apps/presentationeditor/main/app/view/Toolbar.js +++ b/apps/presentationeditor/main/app/view/Toolbar.js @@ -1218,9 +1218,9 @@ define([ this.btnMarkers.setMenu( new Common.UI.Menu({ cls: 'shifted-left', - style: 'min-width: 139px', + style: 'min-width: 145px', items: [ - {template: _.template('')}, + {template: _.template('')}, this.mnuMarkerSettings = new Common.UI.MenuItem({ caption: this.textListSettings, value: 'settings' diff --git a/apps/presentationeditor/main/resources/less/toolbar.less b/apps/presentationeditor/main/resources/less/toolbar.less index 68c8b17dd..337be3340 100644 --- a/apps/presentationeditor/main/resources/less/toolbar.less +++ b/apps/presentationeditor/main/resources/less/toolbar.less @@ -49,8 +49,8 @@ } .item-markerlist { - width: 38px; - height: 38px; + width: 40px; + height: 40px; } .item-multilevellist { 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/resources/less/toolbar.less b/apps/spreadsheeteditor/main/resources/less/toolbar.less index cad840a6d..1b70b7237 100644 --- a/apps/spreadsheeteditor/main/resources/less/toolbar.less +++ b/apps/spreadsheeteditor/main/resources/less/toolbar.less @@ -134,8 +134,8 @@ } .item-markerlist { - width: 38px; - height: 38px; + width: 40px; + height: 40px; } .item-multilevellist { @@ -145,7 +145,7 @@ #menu-list-number-group { .item { - margin-right: 9px; + margin-right: 10px; margin-bottom: 9px; } .group-items-container { @@ -153,6 +153,12 @@ } } +#menu-list-bullet-group { + .item { + margin-right: 2px; + } +} + #slot-field-zoom { float: left; min-width: 46px; From bbdb119ddd9a8d7ee7edc9ba4d808d61dd3f98d2 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Mon, 23 Aug 2021 17:55:01 +0300 Subject: [PATCH 84/90] [scaling] fix bug 52135 --- .../common/main/resources/img/toolbar/1.25x/big/.css.handlebars | 2 +- .../common/main/resources/img/toolbar/1.75x/big/.css.handlebars | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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.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; } From 2b2b4abec5a5b87757bfbc1354ecf150fa9f46f9 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Mon, 23 Aug 2021 19:02:32 +0300 Subject: [PATCH 85/90] [PE] fix bug 52102 --- apps/common/main/lib/controller/Themes.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/apps/common/main/lib/controller/Themes.js b/apps/common/main/lib/controller/Themes.js index ea1207f29..deac83858 100644 --- a/apps/common/main/lib/controller/Themes.js +++ b/apps/common/main/lib/controller/Themes.js @@ -225,6 +225,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; From a9212b73ca542411a54521cb33328e445379b678 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 23 Aug 2021 20:51:56 +0300 Subject: [PATCH 86/90] Update translation. Fix Bug 51479 --- apps/documenteditor/embed/locale/es.json | 4 ++++ apps/documenteditor/embed/locale/it.json | 1 + apps/documenteditor/main/locale/es.json | 7 ++++++- apps/documenteditor/main/locale/fr.json | 2 +- apps/documenteditor/main/locale/it.json | 7 ++++++- apps/documenteditor/main/locale/ja.json | 1 + apps/presentationeditor/embed/locale/es.json | 2 ++ apps/presentationeditor/embed/locale/it.json | 1 + apps/presentationeditor/main/locale/es.json | 3 ++- apps/presentationeditor/main/locale/fr.json | 2 +- apps/presentationeditor/main/locale/it.json | 3 ++- apps/spreadsheeteditor/embed/locale/es.json | 2 ++ apps/spreadsheeteditor/embed/locale/it.json | 1 + apps/spreadsheeteditor/main/locale/en.json | 6 +++--- apps/spreadsheeteditor/main/locale/es.json | 11 ++++++++--- apps/spreadsheeteditor/main/locale/fr.json | 6 +++--- apps/spreadsheeteditor/main/locale/it.json | 2 ++ apps/spreadsheeteditor/main/locale/ro.json | 6 +++--- apps/spreadsheeteditor/main/locale/ru.json | 6 +++--- 19 files changed, 52 insertions(+), 21 deletions(-) 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/it.json b/apps/documenteditor/embed/locale/it.json index 051e01331..f288348a8 100644 --- a/apps/documenteditor/embed/locale/it.json +++ b/apps/documenteditor/embed/locale/it.json @@ -15,6 +15,7 @@ "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.", diff --git a/apps/documenteditor/main/locale/es.json b/apps/documenteditor/main/locale/es.json index 8de0d19a9..c8656096b 100644 --- a/apps/documenteditor/main/locale/es.json +++ b/apps/documenteditor/main/locale/es.json @@ -206,7 +206,7 @@ "Common.Views.About.txtVersion": "Versión ", "Common.Views.AutoCorrectDialog.textAdd": "Añadir", "Common.Views.AutoCorrectDialog.textApplyText": "Aplicar mientras escribe", - "Common.Views.AutoCorrectDialog.textAutoCorrect": "Autocorrección", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Autocorrección de texto", "Common.Views.AutoCorrectDialog.textAutoFormat": "Autoformato mientras escribe", "Common.Views.AutoCorrectDialog.textBulleted": "Listas con viñetas automáticas", "Common.Views.AutoCorrectDialog.textBy": "Por", @@ -382,6 +382,8 @@ "Common.Views.ReviewChanges.txtHistory": "Historial de versiones", "Common.Views.ReviewChanges.txtMarkup": "Todos los cambios (Edición)", "Common.Views.ReviewChanges.txtMarkupCap": "Margen", + "Common.Views.ReviewChanges.txtMarkupSimple": "Todos los cambios (Edición)
Desactivar los globos", + "Common.Views.ReviewChanges.txtMarkupSimpleCap": "Revisiones simples", "Common.Views.ReviewChanges.txtNext": "Al siguiente cambio", "Common.Views.ReviewChanges.txtOff": "Desactivar para mí", "Common.Views.ReviewChanges.txtOffGlobal": "Desactivar para mí y para todos", @@ -517,6 +519,7 @@ "DE.Controllers.Main.errorForceSave": "Ha ocurrido un error mientras", "DE.Controllers.Main.errorKeyEncrypt": "Descriptor de clave desconocido", "DE.Controllers.Main.errorKeyExpire": "Descriptor de clave ha expirado", + "DE.Controllers.Main.errorLoadingFont": "Las fuentes no están cargadas.
Por favor, póngase en contacto con el administrador del Document Server.", "DE.Controllers.Main.errorMailMergeLoadFile": "La carga del documento ha fallado. Por favor, seleccione un archivo diferente.", "DE.Controllers.Main.errorMailMergeSaveFile": "Error de fusión.", "DE.Controllers.Main.errorProcessSaveResult": "Problemas al guardar", @@ -1397,6 +1400,7 @@ "DE.Views.DocumentHolder.mergeCellsText": "Unir celdas", "DE.Views.DocumentHolder.moreText": "Más variantes...", "DE.Views.DocumentHolder.noSpellVariantsText": "Sin variantes ", + "DE.Views.DocumentHolder.notcriticalErrorTitle": "Advertencia", "DE.Views.DocumentHolder.originalSizeText": "Tamaño actual", "DE.Views.DocumentHolder.paragraphText": "Párrafo", "DE.Views.DocumentHolder.removeHyperlinkText": "Eliminar hiperenlace", @@ -1554,6 +1558,7 @@ "DE.Views.DocumentHolder.txtRemLimit": "Eliminar límite", "DE.Views.DocumentHolder.txtRemoveAccentChar": "Quitar carácter de acento", "DE.Views.DocumentHolder.txtRemoveBar": "Eliminar barra", + "DE.Views.DocumentHolder.txtRemoveWarning": "¿Desea eliminar esta firma?
No se puede deshacer.", "DE.Views.DocumentHolder.txtRemScripts": "Eliminar texto", "DE.Views.DocumentHolder.txtRemSubscript": "Eliminar subíndice", "DE.Views.DocumentHolder.txtRemSuperscript": "Eliminar subíndice", diff --git a/apps/documenteditor/main/locale/fr.json b/apps/documenteditor/main/locale/fr.json index a95e906f7..4feca73a0 100644 --- a/apps/documenteditor/main/locale/fr.json +++ b/apps/documenteditor/main/locale/fr.json @@ -206,7 +206,7 @@ "Common.Views.About.txtVersion": "Version ", "Common.Views.AutoCorrectDialog.textAdd": "Ajouter", "Common.Views.AutoCorrectDialog.textApplyText": "Appliquer pendant la frappe", - "Common.Views.AutoCorrectDialog.textAutoCorrect": "Correction automatique", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Correction automatique de texte", "Common.Views.AutoCorrectDialog.textAutoFormat": "Mise en forme automatique au cours de la frappe", "Common.Views.AutoCorrectDialog.textBulleted": "Listes à puces automatiques", "Common.Views.AutoCorrectDialog.textBy": "Par", diff --git a/apps/documenteditor/main/locale/it.json b/apps/documenteditor/main/locale/it.json index 26c42f8d4..957f6a994 100644 --- a/apps/documenteditor/main/locale/it.json +++ b/apps/documenteditor/main/locale/it.json @@ -206,7 +206,7 @@ "Common.Views.About.txtVersion": "Versione ", "Common.Views.AutoCorrectDialog.textAdd": "Aggiungi", "Common.Views.AutoCorrectDialog.textApplyText": "Applica durante la digitazione", - "Common.Views.AutoCorrectDialog.textAutoCorrect": "Correzione automatica", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Correzione automatica di testo", "Common.Views.AutoCorrectDialog.textAutoFormat": "Formattazione automatica durante la scrittura", "Common.Views.AutoCorrectDialog.textBulleted": "Elenchi puntati automatici", "Common.Views.AutoCorrectDialog.textBy": "Di", @@ -382,6 +382,8 @@ "Common.Views.ReviewChanges.txtHistory": "Cronologia delle versioni", "Common.Views.ReviewChanges.txtMarkup": "Tutte le modifiche (Modifica)", "Common.Views.ReviewChanges.txtMarkupCap": "Marcatura", + "Common.Views.ReviewChanges.txtMarkupSimple": "Tutti cambiamenti (Modifiche)
Disattivare le notifiche balloons", + "Common.Views.ReviewChanges.txtMarkupSimpleCap": "Markup semplici", "Common.Views.ReviewChanges.txtNext": "Successivo", "Common.Views.ReviewChanges.txtOff": "Disattiva per me", "Common.Views.ReviewChanges.txtOffGlobal": "Disattiva per me e per tutti", @@ -517,6 +519,7 @@ "DE.Controllers.Main.errorForceSave": "Si è verificato un errore durante il salvataggio del file. Utilizzare l'opzione 'Scarica come' per salvare il file sul disco rigido del computer o riprovare più tardi.", "DE.Controllers.Main.errorKeyEncrypt": "Descrittore di chiave sconosciuto", "DE.Controllers.Main.errorKeyExpire": "Descrittore di chiave scaduto", + "DE.Controllers.Main.errorLoadingFont": "I caratteri non sono caricati.
Si prega di contattare il tuo amministratore di Document Server.", "DE.Controllers.Main.errorMailMergeLoadFile": "Caricamento del documento non riuscito. Si prega di selezionare un altro file.", "DE.Controllers.Main.errorMailMergeSaveFile": "Unione non riuscita", "DE.Controllers.Main.errorProcessSaveResult": "Salvataggio non riuscito", @@ -1397,6 +1400,7 @@ "DE.Views.DocumentHolder.mergeCellsText": "Unisci celle", "DE.Views.DocumentHolder.moreText": "Più varianti...", "DE.Views.DocumentHolder.noSpellVariantsText": "Nessuna variante", + "DE.Views.DocumentHolder.notcriticalErrorTitle": "Avvertimento", "DE.Views.DocumentHolder.originalSizeText": "Dimensione reale", "DE.Views.DocumentHolder.paragraphText": "Paragrafo", "DE.Views.DocumentHolder.removeHyperlinkText": "Elimina collegamento ipertestuale", @@ -1554,6 +1558,7 @@ "DE.Views.DocumentHolder.txtRemLimit": "Rimuovi limite", "DE.Views.DocumentHolder.txtRemoveAccentChar": "Rimuovi accento carattere", "DE.Views.DocumentHolder.txtRemoveBar": "Elimina barra", + "DE.Views.DocumentHolder.txtRemoveWarning": "Vuoi rimuovere questa firma?
Non può essere annullata.", "DE.Views.DocumentHolder.txtRemScripts": "Rimuovi gli script", "DE.Views.DocumentHolder.txtRemSubscript": "Elimina pedice", "DE.Views.DocumentHolder.txtRemSuperscript": "Elimina apice", diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json index 894141014..072c9c3b0 100644 --- a/apps/documenteditor/main/locale/ja.json +++ b/apps/documenteditor/main/locale/ja.json @@ -1389,6 +1389,7 @@ "DE.Views.DocumentHolder.mergeCellsText": "セルの結合", "DE.Views.DocumentHolder.moreText": "以上のバリエーション...", "DE.Views.DocumentHolder.noSpellVariantsText": "バリエーションなし", + "DE.Views.DocumentHolder.notcriticalErrorTitle": "警告", "DE.Views.DocumentHolder.originalSizeText": "実際のサイズ", "DE.Views.DocumentHolder.paragraphText": "段落", "DE.Views.DocumentHolder.removeHyperlinkText": "ハイパーリンクの削除", diff --git a/apps/presentationeditor/embed/locale/es.json b/apps/presentationeditor/embed/locale/es.json index 98c392ab3..4ec9e156f 100644 --- a/apps/presentationeditor/embed/locale/es.json +++ b/apps/presentationeditor/embed/locale/es.json @@ -13,6 +13,8 @@ "PE.ApplicationController.errorDefaultMessage": "Código de error: %1", "PE.ApplicationController.errorFilePassProtect": "El archivo está protegido por una contraseña y no puede ser abierto.", "PE.ApplicationController.errorFileSizeExceed": "El tamaño del archivo excede la limitación establecida para su servidor. Póngase en contacto con el administrador del Servidor de documentos para obtener más información.", + "PE.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.", + "PE.ApplicationController.errorLoadingFont": "Las fuentes no están cargadas.
Por favor, póngase en contacto con el administrador del Document Server.", "PE.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. ", "PE.ApplicationController.errorUserDrop": "No se puede acceder al archivo ahora mismo.", "PE.ApplicationController.notcriticalErrorTitle": "Aviso", diff --git a/apps/presentationeditor/embed/locale/it.json b/apps/presentationeditor/embed/locale/it.json index f166b7888..9ad5dce50 100644 --- a/apps/presentationeditor/embed/locale/it.json +++ b/apps/presentationeditor/embed/locale/it.json @@ -14,6 +14,7 @@ "PE.ApplicationController.errorFilePassProtect": "Il file è protetto da una password. Impossibile aprirlo.", "PE.ApplicationController.errorFileSizeExceed": "La dimensione del file supera la limitazione impostata per il tuo server.
Per i dettagli, contatta l'amministratore del Document server.", "PE.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.", + "PE.ApplicationController.errorLoadingFont": "I caratteri non sono caricati.
Si prega di contattare il tuo amministratore di Document Server.", "PE.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.", "PE.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.", "PE.ApplicationController.notcriticalErrorTitle": "Avviso", diff --git a/apps/presentationeditor/main/locale/es.json b/apps/presentationeditor/main/locale/es.json index a019a0aaf..ddb13ce81 100644 --- a/apps/presentationeditor/main/locale/es.json +++ b/apps/presentationeditor/main/locale/es.json @@ -99,7 +99,7 @@ "Common.Views.About.txtVersion": "Versión ", "Common.Views.AutoCorrectDialog.textAdd": "Añadir", "Common.Views.AutoCorrectDialog.textApplyText": "Aplicar mientras escribe", - "Common.Views.AutoCorrectDialog.textAutoCorrect": "Autocorrección", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Autocorrección de texto", "Common.Views.AutoCorrectDialog.textAutoFormat": "Autoformato mientras escribe", "Common.Views.AutoCorrectDialog.textBulleted": "Listas con viñetas automáticas", "Common.Views.AutoCorrectDialog.textBy": "Por", @@ -395,6 +395,7 @@ "PE.Controllers.Main.errorForceSave": "Ha ocurrido un error mientras guardaba el archivo. Por favor use la opción \"Descargar\" para guardar el archivo en el disco duro de su ordenador o inténtelo de nuevo más tarde.", "PE.Controllers.Main.errorKeyEncrypt": "Descriptor de clave desconocido", "PE.Controllers.Main.errorKeyExpire": "Descriptor de clave ha expirado", + "PE.Controllers.Main.errorLoadingFont": "Las fuentes no están cargadas.
Por favor, póngase en contacto con el administrador del Document Server.", "PE.Controllers.Main.errorProcessSaveResult": "Problemas al guardar", "PE.Controllers.Main.errorServerVersion": "La versión del editor ha sido actualizada. La página será recargada para aplicar los cambios.", "PE.Controllers.Main.errorSessionAbsolute": "Sesión de editar el documento ha expirado. Por favor, recargue la página.", diff --git a/apps/presentationeditor/main/locale/fr.json b/apps/presentationeditor/main/locale/fr.json index fb1e020dc..e06d8a66f 100644 --- a/apps/presentationeditor/main/locale/fr.json +++ b/apps/presentationeditor/main/locale/fr.json @@ -99,7 +99,7 @@ "Common.Views.About.txtVersion": "Version ", "Common.Views.AutoCorrectDialog.textAdd": "Ajouter", "Common.Views.AutoCorrectDialog.textApplyText": "Appliquer pendant la frappe", - "Common.Views.AutoCorrectDialog.textAutoCorrect": "Correction automatique", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Correction automatique de texte", "Common.Views.AutoCorrectDialog.textAutoFormat": "Mise en forme automatique au cours de la frappe", "Common.Views.AutoCorrectDialog.textBulleted": "Listes à puces automatiques", "Common.Views.AutoCorrectDialog.textBy": "Par", diff --git a/apps/presentationeditor/main/locale/it.json b/apps/presentationeditor/main/locale/it.json index acc2393c1..1a63d41b9 100644 --- a/apps/presentationeditor/main/locale/it.json +++ b/apps/presentationeditor/main/locale/it.json @@ -99,7 +99,7 @@ "Common.Views.About.txtVersion": "Versione ", "Common.Views.AutoCorrectDialog.textAdd": "Aggiungi", "Common.Views.AutoCorrectDialog.textApplyText": "Applica durante la digitazione", - "Common.Views.AutoCorrectDialog.textAutoCorrect": "Correzione automatica", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Correzione automatica di testo", "Common.Views.AutoCorrectDialog.textAutoFormat": "Formattazione automatica durante la scrittura", "Common.Views.AutoCorrectDialog.textBulleted": "Elenchi puntati automatici", "Common.Views.AutoCorrectDialog.textBy": "Di", @@ -395,6 +395,7 @@ "PE.Controllers.Main.errorForceSave": "Si è verificato un errore durante il salvataggio del file. Utilizzare l'opzione 'Scarica come' per salvare il file sul disco rigido del computer o riprovare più tardi.", "PE.Controllers.Main.errorKeyEncrypt": "Descrittore di chiave sconosciuto", "PE.Controllers.Main.errorKeyExpire": "Descrittore di chiave scaduto", + "PE.Controllers.Main.errorLoadingFont": "I caratteri non sono caricati.
Si prega di contattare il tuo amministratore di Document Server.", "PE.Controllers.Main.errorProcessSaveResult": "Salvataggio non riuscito", "PE.Controllers.Main.errorServerVersion": "La versione dell'editor è stata aggiornata. La pagina verrà ricaricata per applicare le modifiche.", "PE.Controllers.Main.errorSessionAbsolute": "La sessione di modifica del documento è scaduta. Si prega di ricaricare la pagina.", diff --git a/apps/spreadsheeteditor/embed/locale/es.json b/apps/spreadsheeteditor/embed/locale/es.json index e89e0fc28..62d960645 100644 --- a/apps/spreadsheeteditor/embed/locale/es.json +++ b/apps/spreadsheeteditor/embed/locale/es.json @@ -13,6 +13,8 @@ "SSE.ApplicationController.errorDefaultMessage": "Código de error: %1", "SSE.ApplicationController.errorFilePassProtect": "El archivo está protegido por una contraseña y no puede ser abierto.", "SSE.ApplicationController.errorFileSizeExceed": "El tamaño del archivo excede la limitación establecida para su servidor. Póngase en contacto con el administrador del Servidor de documentos para obtener más información.", + "SSE.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.", + "SSE.ApplicationController.errorLoadingFont": "Las fuentes no están cargadas.
Por favor, póngase en contacto con el administrador del Document Server.", "SSE.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.", "SSE.ApplicationController.errorUserDrop": "No se puede acceder al archivo ahora mismo.", "SSE.ApplicationController.notcriticalErrorTitle": "Aviso", diff --git a/apps/spreadsheeteditor/embed/locale/it.json b/apps/spreadsheeteditor/embed/locale/it.json index a934bb3d3..b63c3c0b0 100644 --- a/apps/spreadsheeteditor/embed/locale/it.json +++ b/apps/spreadsheeteditor/embed/locale/it.json @@ -14,6 +14,7 @@ "SSE.ApplicationController.errorFilePassProtect": "Il file è protetto da una password. Impossibile aprirlo.", "SSE.ApplicationController.errorFileSizeExceed": "La dimensione del file supera la limitazione impostata per il tuo server.
Per i dettagli, contatta l'amministratore del Document server.", "SSE.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.", + "SSE.ApplicationController.errorLoadingFont": "I caratteri non sono caricati.
Si prega di contattare il tuo amministratore di Document Server.", "SSE.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.", "SSE.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.", "SSE.ApplicationController.notcriticalErrorTitle": "Avviso", diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 758156576..9713bb6fe 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -1693,9 +1693,9 @@ "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.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", 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 193d82a9d..9c3da55e7 100644 --- a/apps/spreadsheeteditor/main/locale/fr.json +++ b/apps/spreadsheeteditor/main/locale/fr.json @@ -1693,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 9faa1e460..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.", diff --git a/apps/spreadsheeteditor/main/locale/ro.json b/apps/spreadsheeteditor/main/locale/ro.json index 98f1d7c92..e6e963724 100644 --- a/apps/spreadsheeteditor/main/locale/ro.json +++ b/apps/spreadsheeteditor/main/locale/ro.json @@ -1693,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 ac330f50f..8a3a22ecc 100644 --- a/apps/spreadsheeteditor/main/locale/ru.json +++ b/apps/spreadsheeteditor/main/locale/ru.json @@ -1693,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": "Разгруппировать столбцы", From 4fdafc9d369ddf1d45a733dfc0627b370f0ce28d Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 23 Aug 2021 21:37:45 +0300 Subject: [PATCH 87/90] Update translation --- apps/documenteditor/mobile/locale/es.json | 10 +-- apps/documenteditor/mobile/locale/ja.json | 4 +- apps/documenteditor/mobile/locale/tr.json | 4 +- apps/presentationeditor/mobile/locale/es.json | 6 +- apps/presentationeditor/mobile/locale/ja.json | 4 +- apps/spreadsheeteditor/mobile/locale/de.json | 4 +- apps/spreadsheeteditor/mobile/locale/en.json | 2 +- apps/spreadsheeteditor/mobile/locale/es.json | 18 ++--- apps/spreadsheeteditor/mobile/locale/it.json | 6 +- apps/spreadsheeteditor/mobile/locale/ja.json | 66 +++++++++---------- apps/spreadsheeteditor/mobile/locale/ro.json | 4 +- apps/spreadsheeteditor/mobile/locale/ru.json | 4 +- apps/spreadsheeteditor/mobile/locale/zh.json | 2 +- 13 files changed, 67 insertions(+), 67 deletions(-) diff --git a/apps/documenteditor/mobile/locale/es.json b/apps/documenteditor/mobile/locale/es.json index ca4884cca..5b9b57f80 100644 --- a/apps/documenteditor/mobile/locale/es.json +++ b/apps/documenteditor/mobile/locale/es.json @@ -315,6 +315,7 @@ "errorFileSizeExceed": "El tamaño del archivo excede el límite de su servidor.
Por favor, contacte con su administrador.", "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.", "errorMailMergeLoadFile": "Error de carga", "errorMailMergeSaveFile": "Error de combinar.", "errorSessionAbsolute": "La sesión de edición del documento ha expirado. Por favor, vuelva a cargar la página.", @@ -324,7 +325,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 en este momento.", "errorUsersExceed": "El número de usuarios permitido según su plan de precios fue excedido", - "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.", "notcriticalErrorTitle": "Advertencia", "openErrorText": "Se ha producido un error al abrir el archivo ", "saveErrorText": "Se ha producido un error al guardar el archivo ", @@ -335,8 +336,7 @@ "unknownErrorText": "Error desconocido.", "uploadImageExtMessage": "Formato de imagen desconocido.", "uploadImageFileCountMessage": "No hay imágenes subidas.", - "uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB." }, "LongActions": { "applyChangesTextText": "Cargando datos...", @@ -524,6 +524,7 @@ "textMarginsW": "Los márgenes izquierdo y derecho son demasiado amplios para un ancho de página determinado", "textNoCharacters": "Caracteres no imprimibles", "textNoTextFound": "Texto no encontrado", + "textOk": "OK", "textOpenFile": "Introduzca la contraseña para abrir el archivo", "textOrientation": "Orientación ", "textOwner": "Propietario", @@ -568,8 +569,7 @@ "txtScheme6": "Concurrencia", "txtScheme7": "Equidad ", "txtScheme8": "Flujo", - "txtScheme9": "Fundición", - "textOk": "Ok" + "txtScheme9": "Fundición" }, "Toolbar": { "dlgLeaveMsgText": "Tiene cambios sin guardar. Haga clic en \"Permanecer en esta página\" para esperar a que se guarde automáticamente. Haga clic en \"Salir de esta página\" para descartar todos los cambios no guardados.", diff --git a/apps/documenteditor/mobile/locale/ja.json b/apps/documenteditor/mobile/locale/ja.json index b186ac485..de76f446c 100644 --- a/apps/documenteditor/mobile/locale/ja.json +++ b/apps/documenteditor/mobile/locale/ja.json @@ -81,6 +81,7 @@ "textBaseline": "Baseline", "textBold": "Bold", "textBreakBefore": "Page break before", + "textOk": "Ok", "textCaps": "All caps", "textChart": "Chart", "textCollaboration": "Collaboration", @@ -154,8 +155,7 @@ "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "textUnderline": "Underline", "textUsers": "Users", - "textWidow": "Widow control", - "textOk": "Ok" + "textWidow": "Widow control" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", diff --git a/apps/documenteditor/mobile/locale/tr.json b/apps/documenteditor/mobile/locale/tr.json index bfb3504f6..e562dc217 100644 --- a/apps/documenteditor/mobile/locale/tr.json +++ b/apps/documenteditor/mobile/locale/tr.json @@ -86,6 +86,7 @@ "textTabs": "Sekmeleri değiştir", "notcriticalErrorTitle": "Warning", "textBreakBefore": "Page break before", + "textOk": "Ok", "textColor": "Font color", "textComments": "Comments", "textContextual": "Don't add intervals between paragraphs of the same style", @@ -154,8 +155,7 @@ "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "textUnderline": "Underline", "textUsers": "Users", - "textWidow": "Widow control", - "textOk": "Ok" + "textWidow": "Widow control" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", diff --git a/apps/presentationeditor/mobile/locale/es.json b/apps/presentationeditor/mobile/locale/es.json index b271a4010..22a462365 100644 --- a/apps/presentationeditor/mobile/locale/es.json +++ b/apps/presentationeditor/mobile/locale/es.json @@ -140,6 +140,7 @@ "errorFileSizeExceed": "El tamaño del archivo excede la limitación del servidor.
Por favor, póngase en contacto con su administrador.", "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.", "errorSessionAbsolute": "La sesión de edición del documento ha expirado. Por favor, vuelva a cargar la página.", "errorSessionIdle": "El documento no ha sido editado desde hace mucho tiempo. Por favor, vuelva a cargar la página.", "errorSessionToken": "La conexión con el servidor se ha interrumpido. Por favor, vuelva a cargar la página.", @@ -147,7 +148,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.", "notcriticalErrorTitle": "Advertencia", "openErrorText": "Se ha producido un error al abrir el archivo ", "saveErrorText": "Se ha producido un error al guardar el archivo ", @@ -158,8 +159,7 @@ "unknownErrorText": "Error desconocido.", "uploadImageExtMessage": "Formato de imagen desconocido.", "uploadImageFileCountMessage": "No hay imágenes subidas.", - "uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB." }, "LongActions": { "applyChangesTextText": "Cargando datos...", diff --git a/apps/presentationeditor/mobile/locale/ja.json b/apps/presentationeditor/mobile/locale/ja.json index fff971629..6b7b2e27d 100644 --- a/apps/presentationeditor/mobile/locale/ja.json +++ b/apps/presentationeditor/mobile/locale/ja.json @@ -16,6 +16,7 @@ "textBack": "戻る", "textEditUser": "ファイルを編集しているユーザー:", "textCancel": "Cancel", + "textOk": "Ok", "textCollaboration": "Collaboration", "textComments": "Comments", "textDeleteComment": "Delete Comment", @@ -30,8 +31,7 @@ "textReopen": "Reopen", "textResolve": "Resolve", "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users", - "textOk": "Ok" + "textUsers": "Users" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", diff --git a/apps/spreadsheeteditor/mobile/locale/de.json b/apps/spreadsheeteditor/mobile/locale/de.json index 24a46e040..7e85a82d7 100644 --- a/apps/spreadsheeteditor/mobile/locale/de.json +++ b/apps/spreadsheeteditor/mobile/locale/de.json @@ -329,6 +329,7 @@ "textRange": "Bereich", "textRequired": "Erforderlich", "textScreenTip": "QuickInfo", + "textSelectedRange": "Ausgewählter Bereich", "textShape": "Form", "textSheet": "Blatt", "textSortAndFilter": "Sortieren und Filtern", @@ -336,8 +337,7 @@ "txtExpandSort": "Die Daten neben der Auswahl werden nicht sortiert. Möchten Sie die Auswahl um die angrenzenden Daten erweitern oder nur mit der Sortierung der aktuell ausgewählten Zellen fortfahren?", "txtNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.", "txtSorting": "Sortierung", - "txtSortSelected": "Ausgewählte sortieren", - "textSelectedRange": "Selected Range" + "txtSortSelected": "Ausgewählte sortieren" }, "Edit": { "notcriticalErrorTitle": "Warnung", diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json index 747f51931..1fa1fe9d0 100644 --- a/apps/spreadsheeteditor/mobile/locale/en.json +++ b/apps/spreadsheeteditor/mobile/locale/en.json @@ -329,6 +329,7 @@ "textRange": "Range", "textRequired": "Required", "textScreenTip": "Screen Tip", + "textSelectedRange": "Selected Range", "textShape": "Shape", "textSheet": "Sheet", "textSortAndFilter": "Sort and Filter", @@ -336,7 +337,6 @@ "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", - "textSelectedRange": "Selected Range", "txtSortSelected": "Sort selected" }, "Edit": { diff --git a/apps/spreadsheeteditor/mobile/locale/es.json b/apps/spreadsheeteditor/mobile/locale/es.json index a5c071860..27437f58a 100644 --- a/apps/spreadsheeteditor/mobile/locale/es.json +++ b/apps/spreadsheeteditor/mobile/locale/es.json @@ -194,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", @@ -212,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", @@ -223,8 +224,7 @@ "unknownErrorText": "Error desconocido.", "uploadImageExtMessage": "Formato de imagen desconocido.", "uploadImageFileCountMessage": "No hay imágenes subidas.", - "uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB." }, "LongActions": { "applyChangesTextText": "Cargando datos...", @@ -274,13 +274,13 @@ "textErrorRemoveSheet": "No se puede eliminar la hoja de cálculo.", "textHide": "Ocultar", "textMore": "Más", + "textOk": "OK", "textRename": "Renombrar", "textRenameSheet": "Renombrar hoja", "textSheet": "Hoja", "textSheetName": "Nombre de hoja", "textUnhide": "Volver a mostrar", - "textWarnDeleteSheet": "La hoja de cálculo puede tener datos. ¿Continuar con la operación?", - "textOk": "Ok" + "textWarnDeleteSheet": "La hoja de cálculo puede tener datos. ¿Continuar con la operación?" }, "Toolbar": { "dlgLeaveMsgText": "Tiene cambios no guardados en este documento. Haga clic en \"Quedarse en esta página\" para esperar hasta que se guarden automáticamente. Haga clic en \"Salir de esta página\" para descartar todos los cambios no guardados.", @@ -329,6 +329,7 @@ "textRange": "Rango", "textRequired": "Requerido", "textScreenTip": "Consejo de pantalla", + "textSelectedRange": "Rango seleccionado", "textShape": "Forma", "textSheet": "Hoja", "textSortAndFilter": "Ordenar y filtrar", @@ -336,8 +337,7 @@ "txtExpandSort": "Los datos al lado del rango seleccionado no serán ordenados. ¿Quiere Usted expandir el rango seleccionado para incluir datos de las celdas adyacentes o continuar la ordenación del rango seleccionado?", "txtNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\"", "txtSorting": "Ordenación", - "txtSortSelected": "Ordenar los objetos seleccionados", - "textSelectedRange": "Selected Range" + "txtSortSelected": "Ordenar los objetos seleccionados" }, "Edit": { "notcriticalErrorTitle": "Advertencia", @@ -575,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", @@ -635,8 +636,7 @@ "txtScheme9": "Fundición", "txtSpace": "Espacio", "txtTab": "Pestaña", - "warnDownloadAs": "Si sigue guardando en este formato, todas las características a excepción del texto se perderán.
¿Está seguro de que desea continuar?", - "textOk": "Ok" + "warnDownloadAs": "Si sigue guardando en este formato, todas las características a excepción del texto se perderán.
¿Está seguro de que desea continuar?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/it.json b/apps/spreadsheeteditor/mobile/locale/it.json index 82c1ea642..d10cc1140 100644 --- a/apps/spreadsheeteditor/mobile/locale/it.json +++ b/apps/spreadsheeteditor/mobile/locale/it.json @@ -108,6 +108,7 @@ "textAddReply": "Add Reply", "textBack": "Back", "textCancel": "Cancel", + "textOk": "Ok", "textCollaboration": "Collaboration", "textComments": "Comments", "textDeleteComment": "Delete Comment", @@ -123,8 +124,7 @@ "textReopen": "Reopen", "textResolve": "Resolve", "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users", - "textOk": "Ok" + "textUsers": "Users" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", @@ -329,6 +329,7 @@ "textRange": "Range", "textRequired": "Required", "textScreenTip": "Screen Tip", + "textSelectedRange": "Selected Range", "textShape": "Shape", "textSheet": "Sheet", "textSortAndFilter": "Sort and Filter", @@ -336,7 +337,6 @@ "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", - "textSelectedRange": "Selected Range", "txtSortSelected": "Sort selected" }, "Edit": { diff --git a/apps/spreadsheeteditor/mobile/locale/ja.json b/apps/spreadsheeteditor/mobile/locale/ja.json index b5e279c71..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", @@ -30,8 +31,7 @@ "textReopen": "Reopen", "textResolve": "Resolve", "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users", - "textOk": "Ok" + "textUsers": "Users" }, "ThemeColorPalette": { "textThemeColors": "テーマカラー", @@ -40,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", @@ -67,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", @@ -79,9 +83,6 @@ "txtTable": "テーブル", "txtValues": "値", "txtYears": "年", - "txtAccent": "Accent", - "txtAll": "(All)", - "txtByField": "%1 of %2", "txtClearFilter": "Clear Filter (Alt+C)", "txtColLbls": "Column Labels", "txtColumn": "Column", @@ -95,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", @@ -158,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.", @@ -216,10 +219,7 @@ "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 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.", @@ -268,8 +268,8 @@ "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.", @@ -291,6 +291,8 @@ "View": { "Add": { "notcriticalErrorTitle": " 警告", + "textAddLink": "リンクを追加する", + "textAddress": "アドレス", "textCancel": "キャンセル", "textComment": "コメント", "textImage": "画像", @@ -308,8 +310,6 @@ "sCatMathematic": "Math and trigonometry", "sCatStatistical": "Statistical", "sCatTextAndData": "Text and data", - "textAddLink": "Add Link", - "textAddress": "Address", "textBack": "Back", "textChart": "Chart", "textDisplay": "Display", @@ -329,6 +329,7 @@ "textRange": "Range", "textRequired": "Required", "textScreenTip": "Screen Tip", + "textSelectedRange": "Selected Range", "textShape": "Shape", "textSheet": "Sheet", "textSortAndFilter": "Sort and Filter", @@ -336,17 +337,29 @@ "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", - "textSelectedRange": "Selected Range", "txtSortSelected": "Sort selected" }, "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": "ユーロ", @@ -367,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", @@ -412,7 +413,6 @@ "textEditLink": "Edit Link", "textEffects": "Effects", "textEmptyImgUrl": "You need to specify the image URL.", - "textEmptyItem": "{Blanks}", "textExternalLink": "External Link", "textFill": "Fill", "textFillColor": "Fill Color", @@ -524,6 +524,7 @@ "advDRMPassword": "パスワード", "notcriticalErrorTitle": " 警告", "textAbout": "詳細情報", + "textAddress": "アドレス", "textApplication": "アプリケーション", "textAuthor": "作成者", "textCancel": "キャンセル", @@ -542,7 +543,6 @@ "advCSVOptions": "Choose CSV options", "advDRMOptions": "Protected File", "closeButtonText": "Close File", - "textAddress": "Address", "textApplicationSettings": "Application Settings", "textBack": "Back", "textBottom": "Bottom", diff --git a/apps/spreadsheeteditor/mobile/locale/ro.json b/apps/spreadsheeteditor/mobile/locale/ro.json index f0c6548d5..5da47baa2 100644 --- a/apps/spreadsheeteditor/mobile/locale/ro.json +++ b/apps/spreadsheeteditor/mobile/locale/ro.json @@ -329,6 +329,7 @@ "textRange": "Zona", "textRequired": "Obligatoriu", "textScreenTip": "Sfaturi ecran", + "textSelectedRange": "Zona selectată", "textShape": "Forma", "textSheet": "Foaie", "textSortAndFilter": "Sortare și filtrare", @@ -336,8 +337,7 @@ "txtExpandSort": "Datele lângă selecție vor fi sortate. Doriți să extindeți selecția pentru a include datele adiacente sau doriți să continuați cu selecția curentă?", "txtNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\"", "txtSorting": "Sortare", - "txtSortSelected": "Sortarea selecției", - "textSelectedRange": "Selected Range" + "txtSortSelected": "Sortarea selecției" }, "Edit": { "notcriticalErrorTitle": "Avertisment", diff --git a/apps/spreadsheeteditor/mobile/locale/ru.json b/apps/spreadsheeteditor/mobile/locale/ru.json index 273d3ad60..04d1a1637 100644 --- a/apps/spreadsheeteditor/mobile/locale/ru.json +++ b/apps/spreadsheeteditor/mobile/locale/ru.json @@ -329,6 +329,7 @@ "textRange": "Диапазон", "textRequired": "Обязательно", "textScreenTip": "Подсказка", + "textSelectedRange": "Выбранный диапазон", "textShape": "Фигура", "textSheet": "Лист", "textSortAndFilter": "Сортировка и фильтрация", @@ -336,8 +337,7 @@ "txtExpandSort": "Данные рядом с выделенным диапазоном не будут отсортированы. Вы хотите расширить выделенный диапазон, чтобы включить данные из смежных ячеек, или продолжить сортировку только выделенного диапазона?", "txtNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"", "txtSorting": "Сортировка", - "txtSortSelected": "Сортировать выделенное", - "textSelectedRange": "Selected Range" + "txtSortSelected": "Сортировать выделенное" }, "Edit": { "notcriticalErrorTitle": "Внимание", diff --git a/apps/spreadsheeteditor/mobile/locale/zh.json b/apps/spreadsheeteditor/mobile/locale/zh.json index 92df088c0..f0b05a183 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh.json +++ b/apps/spreadsheeteditor/mobile/locale/zh.json @@ -333,10 +333,10 @@ "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", - "textSelectedRange": "Selected Range", "txtSortSelected": "Sort selected" }, "Edit": { From 7434d944fb5e91d6dbb2f444d7560239fa79cc2f Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Tue, 24 Aug 2021 00:50:46 +0300 Subject: [PATCH 88/90] [scaling] fix bug 51943 --- apps/common/main/resources/less/combo-border-size.less | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/common/main/resources/less/combo-border-size.less b/apps/common/main/resources/less/combo-border-size.less index 2bd95281c..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,6 +38,7 @@ display: inline-block; background-color: transparent; margin: 0 0 0 -3px; + image-rendering: pixelated; } img, .image { From 6272524079358f4c523f3b097ac0ae59f1d7772f Mon Sep 17 00:00:00 2001 From: maxkadushkin Date: Tue, 24 Aug 2021 12:40:37 +0300 Subject: [PATCH 89/90] Update package.json (#1119) --- vendor/framework7-react/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" From 3e30b66193940d61e21fb5a0cf537cbe2eae69dd Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 24 Aug 2021 16:59:23 +0300 Subject: [PATCH 90/90] [DE] Fix Bug 52165 (#1121) --- apps/common/main/lib/controller/ReviewChanges.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common/main/lib/controller/ReviewChanges.js b/apps/common/main/lib/controller/ReviewChanges.js index 94356c9b6..34c0c6ad1 100644 --- a/apps/common/main/lib/controller/ReviewChanges.js +++ b/apps/common/main/lib/controller/ReviewChanges.js @@ -763,7 +763,7 @@ define([ app.getController('DocumentHolder').getView().SetDisabled(disable); if (this.appConfig.canReview) { - app.getController('RightMenu').getView('RightMenu').clearSelection(); + disable && app.getController('RightMenu').getView('RightMenu').clearSelection(); app.getController('RightMenu').SetDisabled(disable, false); app.getController('Statusbar').getView('Statusbar').SetDisabled(disable); app.getController('Navigation') && app.getController('Navigation').SetDisabled(disable);