From 7a08143234e1e12afadbeaeb213e874e73f2f336 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Wed, 12 Jan 2022 02:49:22 +0400 Subject: [PATCH 001/217] [DE mobile] For Bug 54019 --- .../documenteditor/mobile/src/view/settings/Download.jsx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/apps/documenteditor/mobile/src/view/settings/Download.jsx b/apps/documenteditor/mobile/src/view/settings/Download.jsx index 82d2ded93..4e822fd2e 100644 --- a/apps/documenteditor/mobile/src/view/settings/Download.jsx +++ b/apps/documenteditor/mobile/src/view/settings/Download.jsx @@ -17,6 +17,15 @@ const Download = props => { props.onSaveFormat(Asc.c_oAscFileType.DOCX)}> + {dataDoc.fileType === 'docxf' || dataDoc.fileType === 'docx' ? [ + props.onSaveFormat(Asc.c_oAscFileType.DOCXF)}> + + , + props.onSaveFormat(Asc.c_oAscFileType.OFORM)}> + + + ] + : null} props.onSaveFormat(Asc.c_oAscFileType.PDF)}> From eaab1e2fa325a465d44f7fd3e0140c2107e0c6f3 Mon Sep 17 00:00:00 2001 From: OVSharova Date: Wed, 12 Jan 2022 04:32:04 +0300 Subject: [PATCH 002/217] Change numRepeat --- .../main/app/controller/Animation.js | 66 ++++++++++++------- .../main/app/template/Toolbar.template | 2 +- .../main/app/view/Animation.js | 48 ++++++++++---- 3 files changed, 78 insertions(+), 38 deletions(-) diff --git a/apps/presentationeditor/main/app/controller/Animation.js b/apps/presentationeditor/main/app/controller/Animation.js index 0cf112e03..1754ff442 100644 --- a/apps/presentationeditor/main/app/controller/Animation.js +++ b/apps/presentationeditor/main/app/controller/Animation.js @@ -63,21 +63,24 @@ define([ this.addListeners({ 'PE.Views.Animation': { - 'animation:preview': _.bind(this.onPreviewClick, this), - 'animation:parameters': _.bind(this.onParameterClick, this), - 'animation:duration': _.bind(this.onDurationChange, this), - 'animation:selecteffect': _.bind(this.onEffectSelect, this), - 'animation:delay': _.bind(this.onDelayChange, this), - 'animation:animationpane': _.bind(this.onAnimationPane, this), - 'animation:addanimation': _.bind(this.onAddAnimation, this), - 'animation:startselect': _.bind(this.onStartSelect, this), - 'animation:checkrewind': _.bind(this.onCheckRewindChange,this), - 'animation:repeat': _.bind(this.onRepeatChange, this), - 'animation:additional': _.bind(this.onAnimationAdditional, this), - 'animation:trigger': _.bind(this.onTriggerClick, this), - 'animation:triggerclickof': _.bind(this.onTriggerClickOfClick, this), - 'animation:moveearlier': _.bind(this.onMoveEarlier, this), - 'animation:movelater': _.bind(this.onMoveLater, this) + 'animation:preview': _.bind(this.onPreviewClick, this), + 'animation:parameters': _.bind(this.onParameterClick, this), + 'animation:duration': _.bind(this.onDurationChange, this), + 'animation:selecteffect': _.bind(this.onEffectSelect, this), + 'animation:delay': _.bind(this.onDelayChange, this), + 'animation:animationpane': _.bind(this.onAnimationPane, this), + 'animation:addanimation': _.bind(this.onAddAnimation, this), + 'animation:startselect': _.bind(this.onStartSelect, this), + 'animation:checkrewind': _.bind(this.onCheckRewindChange,this), + 'animation:repeat': _.bind(this.onRepeatChange, this), + 'animation:additional': _.bind(this.onAnimationAdditional, this), + 'animation:trigger': _.bind(this.onTriggerClick, this), + 'animation:triggerclickof': _.bind(this.onTriggerClickOfClick, this), + 'animation:moveearlier': _.bind(this.onMoveEarlier, this), + 'animation:movelater': _.bind(this.onMoveLater, this), + 'animation:repeatchangebefore': _.bind(this.onRepeatChange, this), + 'animation:repeatchangeafter': _.bind(this.onRepeatChange, this), + 'animation:repeatselected': _.bind(this.onRepeatSelected, this) }, 'Toolbar': { 'tab:active': _.bind(this.onActiveTab, this) @@ -197,14 +200,32 @@ define([ this.api.asc_SetAnimationProperties(this.AnimationProperties); } }, + onRepeatChange: function (before,combo, record, e){ + var value, + me = this; + if(before) + { - onRepeatChange: function (field, newValue, oldValue, eOpts){ + } else { + + } + }, + + onRepeatSelected: function (combo, record) { if (this.api) { - this.AnimationProperties.asc_putRepeatCount(field.getNumberValue() * 1000); + this.AnimationProperties.asc_putRepeatCount(record.value); this.api.asc_SetAnimationProperties(this.AnimationProperties); } }, + onRepeatComboOpen: function(needfocus, combo) { + _.delay(function() { + var input = $('input', combo.cmpEl).select(); + if (needfocus) input.focus(); + else if (!combo.isMenuOpen()) input.one('mouseup', function (e) { e.preventDefault(); }); + }, 10); + }, + onMoveEarlier: function () { if(this.api) { this.api.asc_moveAnimationEarlier(); @@ -250,6 +271,8 @@ define([ } }, + + onCheckRewindChange: function (field, newValue, oldValue, eOpts) { if (this.api && this.AnimationProperties) { this.AnimationProperties.asc_putRewind(field.getValue() == 'checked'); @@ -359,13 +382,8 @@ define([ this._state.Delay = value; view.numDelay.setValue((this._state.Delay !== null && this._state.Delay !== undefined) ? this._state.Delay / 1000. : '', true); } - value = this.AnimationProperties.asc_getRepeatCount(); - if (Math.abs(this._state.Repeat - value) > 0.001 || - (this._state.Repeat === null || value === null) && (this._state.Repeat !== value) || - (this._state.Repeat === undefined || value === undefined) && (this._state.Repeat !== value)) { - this._state.Repeat = value; - view.numRepeat.setValue((this._state.Repeat !== null && this._state.Repeat !== undefined) ? this._state.Repeat / 1000. : '', true); - } + this._state.Repeat = this.AnimationProperties.asc_getRepeatCount(); + view.cmbRepeat.setValue((this._state.Repeat !== null && this._state.Repeat !== undefined) ? this._state.Repeat/1000. : 1); this._state.StartSelect = this.AnimationProperties.asc_getStartType(); view.cmbStart.setValue(this._state.StartSelect!==undefined ? this._state.StartSelect : AscFormat.NODE_TYPE_CLICKEFFECT); diff --git a/apps/presentationeditor/main/app/template/Toolbar.template b/apps/presentationeditor/main/app/template/Toolbar.template index 6842594d2..c9c617790 100644 --- a/apps/presentationeditor/main/app/template/Toolbar.template +++ b/apps/presentationeditor/main/app/template/Toolbar.template @@ -260,7 +260,7 @@
- +
diff --git a/apps/presentationeditor/main/app/view/Animation.js b/apps/presentationeditor/main/app/view/Animation.js index 6a9e273a3..1dceb8b58 100644 --- a/apps/presentationeditor/main/app/view/Animation.js +++ b/apps/presentationeditor/main/app/view/Animation.js @@ -117,9 +117,21 @@ define([ }); } - if (me.numRepeat) { - me.numRepeat.on('change', function(bth) { - me.fireEvent('animation:repeat', [me.numRepeat]); + if (me.cmbRepeat) { + me.cmbRepeat.on('change:before', function (combo, record) { + me.fireEvent('animation:repeatchangebefore', [true, combo, record]); + }, me); + me.cmbRepeat.on('change:after', function (combo, record) { + me.fireEvent('animation:repeatchangeafter', [false, combo, record]); + }, me); + me.cmbRepeat.on('selected', function (combo, record) { + me.fireEvent('animation:repeatselected', [combo, record]); + }, me); + me.cmbRepeat.on('show:after', function (needfocus, combo) { + me.fireEvent('animation:repeatopen', [needfocus, combo]); + }, me); + me.cmbRepeat.on('combo:focusin', function (needfocus, combo) { + me.fireEvent('animation:repeatopen', [needfocus, combo]); }, me); } @@ -344,20 +356,27 @@ define([ }); this.lockedControls.push(this.chRewind); - this.numRepeat = new Common.UI.MetricSpinner({ + this.cmbRepeat = new Common.UI.ComboBox({ el: this.$el.find('#animation-spin-repeat'), - step: 1, - width: 55, - value: '', - maxValue: 1000, - minValue: 0, - defaultUnit: '', + cls: 'input-group-nr', + menuStyle: 'min-width: 100%;', + editable: true, lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation], + data: [ + {value: 1, displayValue: this.textNoRepeat}, + {value: 2, displayValue: "2"}, + {value: 3, displayValue: "3"}, + {value: 4, displayValue: "4"}, + {value: 5, displayValue: "5"}, + {value: 10, displayValue: "10"}, + {value: AscFormat.untilNextClick, displayValue: this.textUntilNextClick}, + {value: AscFormat.untilNextSlide, displayValue: this.textUntilEndOfSlide} + ], dataHint: '1', dataHintDirection: 'top', dataHintOffset: 'small' }); - this.lockedControls.push(this.numRepeat); + this.lockedControls.push(this.cmbRepeat); this.btnMoveEarlier = new Common.UI.Button({ parentEl: $('#animation-moveearlier'), @@ -457,7 +476,7 @@ define([ this.cmbStart && this.cmbStart.render(this.$el.find('#animation-start')); this.renderComponent('#animation-spin-duration', this.numDuration); this.renderComponent('#animation-spin-delay', this.numDelay); - this.renderComponent('#animation-spin-repeat', this.numRepeat); + this.renderComponent('#animation-spin-repeat', this.cmbRepeat); this.$el.find("#animation-duration").innerText = this.strDuration; this.$el.find("#animation-delay").innerText = this.strDelay; this.$el.find("#animation-label-start").innerText = this.strStart; @@ -534,7 +553,10 @@ define([ textMultiple: 'Multiple', textMoreEffects: 'Show More Effects', textMoveEarlier: 'Move Earlier', - textMoveLater: 'Move Later' + textMoveLater: 'Move Later', + textNoRepeat: '(none)', + textUntilNextClick: 'Until Next Click', + textUntilEndOfSlide: 'Until End of Slide' } }()), PE.Views.Animation || {})); From a9f254522edc4f296a354a509cfecdbdc848687f Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Thu, 13 Jan 2022 01:05:31 +0400 Subject: [PATCH 003/217] [DE mobile] Fix Bug 54406 --- .../mobile/src/view/edit/EditText.jsx | 39 +++++++++++-------- 1 file changed, 23 insertions(+), 16 deletions(-) diff --git a/apps/documenteditor/mobile/src/view/edit/EditText.jsx b/apps/documenteditor/mobile/src/view/edit/EditText.jsx index 6a21df4b2..d3351fad1 100644 --- a/apps/documenteditor/mobile/src/view/edit/EditText.jsx +++ b/apps/documenteditor/mobile/src/view/edit/EditText.jsx @@ -188,7 +188,7 @@ const PageAdditionalFormatting = props => { ) }; -const PageBullets = props => { +const PageBullets = observer(props => { const { t } = useTranslation(); const bulletArrays = [ [ @@ -217,9 +217,10 @@ const PageBullets = props => { onClick={() => { if (bullet.type === -1) { storeTextSettings.resetBullets(-1); + } else { + storeTextSettings.resetBullets(bullet.type); } - props.onBullet(bullet.type) - props.f7router.back(); + props.onBullet(bullet.type); }}> {bullet.thumb.length < 1 ? @@ -233,9 +234,9 @@ const PageBullets = props => { ))} ) -}; +}); -const PageNumbers = props => { +const PageNumbers = observer(props => { const { t } = useTranslation(); const numberArrays = [ [ @@ -265,9 +266,10 @@ const PageNumbers = props => { onClick={() => { if (number.type === -1) { storeTextSettings.resetNumbers(-1); + } else { + storeTextSettings.resetNumbers(number.type); } - props.onNumber(number.type) - props.f7router.back(); + props.onNumber(number.type); }}> {number.thumb.length < 1 ? @@ -281,9 +283,9 @@ const PageNumbers = props => { ))} ) -}; +}); -const PageMultiLevel = props => { +const PageMultiLevel = observer(props => { const { t } = useTranslation(); const arrayMultiLevel = [ @@ -302,9 +304,8 @@ const PageMultiLevel = props => { {arrayMultiLevel.map((item) => ( { - item.type === -1 ? storeTextSettings.resetMultiLevel(-1) : storeTextSettings.resetMultiLevel(null); - props.onMultiLevelList(item.type); - props.f7router.back(); + item.type === -1 ? storeTextSettings.resetMultiLevel(-1) : storeTextSettings.resetMultiLevel(null); + props.onMultiLevelList(item.type); }}> {item.thumb.length < 1 ? @@ -318,7 +319,7 @@ const PageMultiLevel = props => { ) -} +}); const PageBulletsAndNumbers = props => { const { t } = useTranslation(); @@ -336,9 +337,15 @@ const PageBulletsAndNumbers = props => { } - - - + + + + + + + + + ) From 789314a777ed207856c66d6c61750a778baa08a6 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Thu, 13 Jan 2022 01:20:57 +0400 Subject: [PATCH 004/217] [DE mobile] Fix Bug 54001 --- .../mobile/src/view/settings/DocumentSettings.jsx | 1 - apps/documenteditor/mobile/src/view/settings/Settings.jsx | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/documenteditor/mobile/src/view/settings/DocumentSettings.jsx b/apps/documenteditor/mobile/src/view/settings/DocumentSettings.jsx index 6f641b534..6a8ee5c28 100644 --- a/apps/documenteditor/mobile/src/view/settings/DocumentSettings.jsx +++ b/apps/documenteditor/mobile/src/view/settings/DocumentSettings.jsx @@ -69,7 +69,6 @@ const PageDocumentMargins = props => { } if(errorMsg) { - f7.popover.close('#settings-popover'); f7.dialog.alert(errorMsg, _t.notcriticalErrorTitle); return; } diff --git a/apps/documenteditor/mobile/src/view/settings/Settings.jsx b/apps/documenteditor/mobile/src/view/settings/Settings.jsx index 654004353..5802f473e 100644 --- a/apps/documenteditor/mobile/src/view/settings/Settings.jsx +++ b/apps/documenteditor/mobile/src/view/settings/Settings.jsx @@ -195,7 +195,7 @@ class SettingsView extends Component { const show_popover = this.props.usePopover; return ( show_popover ? - this.props.onclosed()}> + this.props.onclosed()}> : this.props.onclosed()}> From 078c7123dd6cc4d25c99896a1ecf5ea8bd45caba Mon Sep 17 00:00:00 2001 From: OVSharova Date: Thu, 13 Jan 2022 05:33:27 +0300 Subject: [PATCH 005/217] Add actions for cmbRepeat --- .../main/app/controller/Animation.js | 33 +++++++++++++++++-- .../main/app/view/Animation.js | 12 +++---- 2 files changed, 37 insertions(+), 8 deletions(-) diff --git a/apps/presentationeditor/main/app/controller/Animation.js b/apps/presentationeditor/main/app/controller/Animation.js index 1754ff442..07e94d2bd 100644 --- a/apps/presentationeditor/main/app/controller/Animation.js +++ b/apps/presentationeditor/main/app/controller/Animation.js @@ -72,7 +72,7 @@ define([ 'animation:addanimation': _.bind(this.onAddAnimation, this), 'animation:startselect': _.bind(this.onStartSelect, this), 'animation:checkrewind': _.bind(this.onCheckRewindChange,this), - 'animation:repeat': _.bind(this.onRepeatChange, this), + //'animation:repeat': _.bind(this.onRepeatChange, this), 'animation:additional': _.bind(this.onAnimationAdditional, this), 'animation:trigger': _.bind(this.onTriggerClick, this), 'animation:triggerclickof': _.bind(this.onTriggerClickOfClick, this), @@ -80,7 +80,10 @@ define([ 'animation:movelater': _.bind(this.onMoveLater, this), 'animation:repeatchangebefore': _.bind(this.onRepeatChange, this), 'animation:repeatchangeafter': _.bind(this.onRepeatChange, this), + 'animation:repeatshow': _.bind(this.onRepeatComboOpen, this), + 'animation:repeatfocusin': _.bind(this.onRepeatComboOpen, this), 'animation:repeatselected': _.bind(this.onRepeatSelected, this) + }, 'Toolbar': { 'tab:active': _.bind(this.onActiveTab, this) @@ -205,9 +208,35 @@ define([ me = this; if(before) { + var item = combo.store.findWhere({ + displayValue: record.value + }); + + if (!item) { + value = /^\+?(\d*(\.|,).?\d+)$|^\+?(\d+(\.|,)?\d*)$/.exec(record.value); + + if (!value) { + value = this._state.Repeat; + combo.setRawValue(value); + if(!_.isNumber(record.value)) + record.value = value; + + return false; + } + } } else { + value = Common.Utils.String.parseFloat(record.value); + if(!record.displayValue) + value = value > 9999 ? 9999 : + value < 1 ? 1 : Math.floor((value+0.4)*2)/2; + combo.setValue(value); + + if (this.api) { + this.AnimationProperties.asc_putRepeatCount(value); + this.api.asc_SetAnimationProperties(this.AnimationProperties); + } } }, @@ -383,7 +412,7 @@ define([ view.numDelay.setValue((this._state.Delay !== null && this._state.Delay !== undefined) ? this._state.Delay / 1000. : '', true); } this._state.Repeat = this.AnimationProperties.asc_getRepeatCount(); - view.cmbRepeat.setValue((this._state.Repeat !== null && this._state.Repeat !== undefined) ? this._state.Repeat/1000. : 1); + view.cmbRepeat.setValue( this._state.Repeat !== undefined ? this._state.Repeat : 1); this._state.StartSelect = this.AnimationProperties.asc_getStartType(); view.cmbStart.setValue(this._state.StartSelect!==undefined ? this._state.StartSelect : AscFormat.NODE_TYPE_CLICKEFFECT); diff --git a/apps/presentationeditor/main/app/view/Animation.js b/apps/presentationeditor/main/app/view/Animation.js index 1dceb8b58..1dc9bf6e1 100644 --- a/apps/presentationeditor/main/app/view/Animation.js +++ b/apps/presentationeditor/main/app/view/Animation.js @@ -118,20 +118,20 @@ define([ } if (me.cmbRepeat) { - me.cmbRepeat.on('change:before', function (combo, record) { + me.cmbRepeat.on('changed:before', function (combo, record) { me.fireEvent('animation:repeatchangebefore', [true, combo, record]); }, me); - me.cmbRepeat.on('change:after', function (combo, record) { + me.cmbRepeat.on('changed:after', function (combo, record) { me.fireEvent('animation:repeatchangeafter', [false, combo, record]); }, me); me.cmbRepeat.on('selected', function (combo, record) { me.fireEvent('animation:repeatselected', [combo, record]); }, me); - me.cmbRepeat.on('show:after', function (needfocus, combo) { - me.fireEvent('animation:repeatopen', [needfocus, combo]); + me.cmbRepeat.on('show:after', function (combo) { + me.fireEvent('animation:repeatshow', [true, combo]); }, me); - me.cmbRepeat.on('combo:focusin', function (needfocus, combo) { - me.fireEvent('animation:repeatopen', [needfocus, combo]); + me.cmbRepeat.on('combo:focusin', function (combo) { + me.fireEvent('animation:repeatfocusin', [false, combo]); }, me); } From eede2b9b06d75cac57770545887aeab3d6e4dcf4 Mon Sep 17 00:00:00 2001 From: OVSharova Date: Thu, 13 Jan 2022 17:44:20 +0300 Subject: [PATCH 006/217] Refactoring --- .../main/app/controller/Animation.js | 11 +++++------ apps/presentationeditor/main/app/view/Animation.js | 6 +++--- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/apps/presentationeditor/main/app/controller/Animation.js b/apps/presentationeditor/main/app/controller/Animation.js index 07e94d2bd..307e81906 100644 --- a/apps/presentationeditor/main/app/controller/Animation.js +++ b/apps/presentationeditor/main/app/controller/Animation.js @@ -72,15 +72,12 @@ define([ 'animation:addanimation': _.bind(this.onAddAnimation, this), 'animation:startselect': _.bind(this.onStartSelect, this), 'animation:checkrewind': _.bind(this.onCheckRewindChange,this), - //'animation:repeat': _.bind(this.onRepeatChange, this), 'animation:additional': _.bind(this.onAnimationAdditional, this), 'animation:trigger': _.bind(this.onTriggerClick, this), 'animation:triggerclickof': _.bind(this.onTriggerClickOfClick, this), 'animation:moveearlier': _.bind(this.onMoveEarlier, this), 'animation:movelater': _.bind(this.onMoveLater, this), - 'animation:repeatchangebefore': _.bind(this.onRepeatChange, this), - 'animation:repeatchangeafter': _.bind(this.onRepeatChange, this), - 'animation:repeatshow': _.bind(this.onRepeatComboOpen, this), + 'animation:repeatchange': _.bind(this.onRepeatChange, this), 'animation:repeatfocusin': _.bind(this.onRepeatComboOpen, this), 'animation:repeatselected': _.bind(this.onRepeatSelected, this) @@ -218,9 +215,11 @@ define([ if (!value) { value = this._state.Repeat; combo.setRawValue(value); - if(!_.isNumber(record.value)) + if(isNaN(record.value)) { record.value = value; - + if(value < 0) + record.displayValue = combo.store.findWhere({value: value}).get('displayValue'); + } return false; } } diff --git a/apps/presentationeditor/main/app/view/Animation.js b/apps/presentationeditor/main/app/view/Animation.js index 1dc9bf6e1..4b59e08c8 100644 --- a/apps/presentationeditor/main/app/view/Animation.js +++ b/apps/presentationeditor/main/app/view/Animation.js @@ -119,16 +119,16 @@ define([ if (me.cmbRepeat) { me.cmbRepeat.on('changed:before', function (combo, record) { - me.fireEvent('animation:repeatchangebefore', [true, combo, record]); + me.fireEvent('animation:repeatchange', [true, combo, record]); }, me); me.cmbRepeat.on('changed:after', function (combo, record) { - me.fireEvent('animation:repeatchangeafter', [false, combo, record]); + me.fireEvent('animation:repeatchange', [false, combo, record]); }, me); me.cmbRepeat.on('selected', function (combo, record) { me.fireEvent('animation:repeatselected', [combo, record]); }, me); me.cmbRepeat.on('show:after', function (combo) { - me.fireEvent('animation:repeatshow', [true, combo]); + me.fireEvent('animation:repeatfocusin', [true, combo]); }, me); me.cmbRepeat.on('combo:focusin', function (combo) { me.fireEvent('animation:repeatfocusin', [false, combo]); From 5776e8329bf4e555f53752fc253448000a42dacb Mon Sep 17 00:00:00 2001 From: OVSharova Date: Thu, 13 Jan 2022 18:24:53 +0300 Subject: [PATCH 007/217] Fix bug --- apps/common/main/lib/util/define.js | 24 ++++++++++----------- apps/presentationeditor/main/locale/en.json | 8 +++---- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/apps/common/main/lib/util/define.js b/apps/common/main/lib/util/define.js index ccb7b75ac..3e98d66a2 100644 --- a/apps/common/main/lib/util/define.js +++ b/apps/common/main/lib/util/define.js @@ -774,10 +774,10 @@ define(function(){ 'use strict'; textToRight: 'To Right', textToBottomRight: 'To Bottom-Right', textSpoke1: '1 Spoke', - textSpoke2: '2 Spoke', - textSpoke3: '3 Spoke', - textSpoke4: '4 Spoke', - textSpoke8: '8 Spoke', + textSpoke2: '2 Spokes', + textSpoke3: '3 Spokes', + textSpoke4: '4 Spokes', + textSpoke8: '8 Spokes', textCustomPath: 'Custom Path', textHorizontalIn: 'Horizontal In', textHorizontalOut: 'Horizontal Out', @@ -1132,10 +1132,10 @@ define(function(){ 'use strict'; case AscFormat.ENTRANCE_WHEEL: return [ {value: AscFormat.ENTRANCE_WHEEL_1_SPOKE, caption: this.textSpoke1}, - {value: AscFormat.ENTRANCE_WHEEL_2_SPOKE, caption: this.textSpoke2}, - {value: AscFormat.ENTRANCE_WHEEL_3_SPOKE, caption: this.textSpoke3}, - {value: AscFormat.ENTRANCE_WHEEL_4_SPOKE, caption: this.textSpoke4}, - {value: AscFormat.ENTRANCE_WHEEL_8_SPOKE, caption: this.textSpoke8} + {value: AscFormat.ENTRANCE_WHEEL_2_SPOKES, caption: this.textSpoke2}, + {value: AscFormat.ENTRANCE_WHEEL_3_SPOKES, caption: this.textSpoke3}, + {value: AscFormat.ENTRANCE_WHEEL_4_SPOKES, caption: this.textSpoke4}, + {value: AscFormat.ENTRANCE_WHEEL_8_SPOKES, caption: this.textSpoke8} ]; case AscFormat.ENTRANCE_WIPE_FROM: return [ @@ -1248,10 +1248,10 @@ define(function(){ 'use strict'; case AscFormat.EXIT_WHEEL: return [ {value: AscFormat.EXIT_WHEEL_1_SPOKE, caption: this.textSpoke1}, - {value: AscFormat.EXIT_WHEEL_2_SPOKE, caption: this.textSpoke2}, - {value: AscFormat.EXIT_WHEEL_3_SPOKE, caption: this.textSpoke3}, - {value: AscFormat.EXIT_WHEEL_4_SPOKE, caption: this.textSpoke4}, - {value: AscFormat.EXIT_WHEEL_8_SPOKE, caption: this.textSpoke8} + {value: AscFormat.EXIT_WHEEL_2_SPOKES, caption: this.textSpoke2}, + {value: AscFormat.EXIT_WHEEL_3_SPOKES, caption: this.textSpoke3}, + {value: AscFormat.EXIT_WHEEL_4_SPOKES, caption: this.textSpoke4}, + {value: AscFormat.EXIT_WHEEL_8_SPOKES, caption: this.textSpoke8} ]; case AscFormat.EXIT_WIPE_FROM: return [ diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json index 303c9a7b0..02a737a24 100644 --- a/apps/presentationeditor/main/locale/en.json +++ b/apps/presentationeditor/main/locale/en.json @@ -194,10 +194,10 @@ "Common.define.effectData.textSpiralRight": "Spiral Right", "Common.define.effectData.textSplit": "Split", "Common.define.effectData.textSpoke1": "1 Spoke", - "Common.define.effectData.textSpoke2": "2 Spoke", - "Common.define.effectData.textSpoke3": "3 Spoke", - "Common.define.effectData.textSpoke4": "4 Spoke", - "Common.define.effectData.textSpoke8": "8 Spoke", + "Common.define.effectData.textSpoke2": "2 Spokes", + "Common.define.effectData.textSpoke3": "3 Spokes", + "Common.define.effectData.textSpoke4": "4 Spokes", + "Common.define.effectData.textSpoke8": "8 Spokes", "Common.define.effectData.textSpring": "Spring", "Common.define.effectData.textSquare": "Square", "Common.define.effectData.textStairsDown": "Stairs Down", From b712c6a0ade8b8fccfc7c32b20bdc6b5a695b255 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 13 Jan 2022 18:42:31 +0300 Subject: [PATCH 008/217] [SSE] Bug 54851 --- apps/spreadsheeteditor/embed/index.html | 1 + apps/spreadsheeteditor/embed/index_loader.html | 1 + apps/spreadsheeteditor/embed/js/ApplicationController.js | 7 +++++++ build/spreadsheeteditor.json | 1 + 4 files changed, 10 insertions(+) diff --git a/apps/spreadsheeteditor/embed/index.html b/apps/spreadsheeteditor/embed/index.html index 94cf225af..4ae0f8326 100644 --- a/apps/spreadsheeteditor/embed/index.html +++ b/apps/spreadsheeteditor/embed/index.html @@ -276,6 +276,7 @@ + diff --git a/apps/spreadsheeteditor/embed/index_loader.html b/apps/spreadsheeteditor/embed/index_loader.html index 18b700b25..9aa8b85ad 100644 --- a/apps/spreadsheeteditor/embed/index_loader.html +++ b/apps/spreadsheeteditor/embed/index_loader.html @@ -343,6 +343,7 @@ + diff --git a/apps/spreadsheeteditor/embed/js/ApplicationController.js b/apps/spreadsheeteditor/embed/js/ApplicationController.js index 5e0d7bcf4..ca6f42650 100644 --- a/apps/spreadsheeteditor/embed/js/ApplicationController.js +++ b/apps/spreadsheeteditor/embed/js/ApplicationController.js @@ -88,6 +88,13 @@ SSE.ApplicationController = new(function(){ config.canBackToFolder = (config.canBackToFolder!==false) && config.customization && config.customization.goback && (config.customization.goback.url || config.customization.goback.requestClose && config.canRequestClose); + var reg = (typeof (config.region) == 'string') ? config.region.toLowerCase() : config.region; + reg = Common.util.LanguageInfo.getLanguages().hasOwnProperty(reg) ? reg : Common.util.LanguageInfo.getLocalLanguageCode(reg); + if (reg!==null) + reg = parseInt(reg); + else + reg = (config.lang) ? parseInt(Common.util.LanguageInfo.getLocalLanguageCode(config.lang)) : 0x0409; + api.asc_setLocale(reg); } function loadDocument(data) { diff --git a/build/spreadsheeteditor.json b/build/spreadsheeteditor.json index c0b8bddb8..06fb6d5f0 100644 --- a/build/spreadsheeteditor.json +++ b/build/spreadsheeteditor.json @@ -346,6 +346,7 @@ "../apps/common/locale.js", "../apps/common/Gateway.js", "../apps/common/Analytics.js", + "../apps/common/main/lib/util/LanguageInfo.js", "../apps/common/embed/lib/util/LocalStorage.js", "../apps/common/embed/lib/util/utils.js", "../apps/common/embed/lib/view/LoadMask.js", From bb978b5e90906f6c81df6cc15f7b718a4abc229d Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Thu, 13 Jan 2022 21:18:42 +0300 Subject: [PATCH 009/217] [DE] Make select and hand tools --- .../main/app/controller/Main.js | 2 +- .../main/app/controller/Statusbar.js | 11 ++++++++ .../main/app/template/StatusBar.template | 4 +++ .../documenteditor/main/app/view/Statusbar.js | 26 ++++++++++++++++++- .../main/resources/less/statusbar.less | 8 ++++++ 5 files changed, 49 insertions(+), 2 deletions(-) diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index 38b419858..27fb9c8b5 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -1464,7 +1464,7 @@ define([ var type = /^(?:(djvu))$/.exec(this.document.fileType); this.appOptions.canDownloadOrigin = this.permissions.download !== false && (type && typeof type[1] === 'string'); this.appOptions.canDownload = this.permissions.download !== false && (!type || typeof type[1] !== 'string'); - this.appOptions.canUseThumbnails = this.appOptions.canUseViwerNavigation = /^(?:(pdf|djvu|xps|oxps))$/.test(this.document.fileType); + this.appOptions.canUseSelectHandTools = this.appOptions.canUseThumbnails = this.appOptions.canUseViwerNavigation = /^(?:(pdf|djvu|xps|oxps))$/.test(this.document.fileType); this.appOptions.canDownloadForms = this.appOptions.canLicense && this.appOptions.canDownload; this.appOptions.fileKey = this.document.key; diff --git a/apps/documenteditor/main/app/controller/Statusbar.js b/apps/documenteditor/main/app/controller/Statusbar.js index 2418b501d..b7d0a8466 100644 --- a/apps/documenteditor/main/app/controller/Statusbar.js +++ b/apps/documenteditor/main/app/controller/Statusbar.js @@ -119,6 +119,9 @@ define([ } else { me.statusbar.$el.find('.el-edit, .el-review').hide(); } + if (cfg.canUseSelectHandTools) { + me.statusbar.$el.find('.hide-select-tools').removeClass('hide-select-tools'); + } }); Common.NotificationCenter.on('app:ready', me.onAppReady.bind(me)); @@ -131,6 +134,10 @@ define([ resolve(); })).then(function () { me.bindViewEvents(me.statusbar, me.events); + if (config.canUseSelectHandTools) { + me.statusbar.btnSelectTool.on('click', _.bind(me.onSelectTool, me, 'select')); + me.statusbar.btnHandTool.on('click', _.bind(me.onSelectTool, me, 'hand')); + } var statusbarIsHidden = Common.localStorage.getBool("de-hidden-status"); if ( config.canReview && !statusbarIsHidden ) { @@ -344,6 +351,10 @@ define([ this.disconnectTip = null; }, + onSelectTool: function (type, btn, e) { + + }, + zoomText : 'Zoom {0}%', textHasChanges : 'New changes have been tracked', textTrackChanges: 'The document is opened with the Track Changes mode enabled', diff --git a/apps/documenteditor/main/app/template/StatusBar.template b/apps/documenteditor/main/app/template/StatusBar.template index 9025b74a2..22702f8bc 100644 --- a/apps/documenteditor/main/app/template/StatusBar.template +++ b/apps/documenteditor/main/app/template/StatusBar.template @@ -19,6 +19,10 @@
+
+ + +
diff --git a/apps/documenteditor/main/app/view/Statusbar.js b/apps/documenteditor/main/app/view/Statusbar.js index 18a661d7b..5961dc957 100644 --- a/apps/documenteditor/main/app/view/Statusbar.js +++ b/apps/documenteditor/main/app/view/Statusbar.js @@ -79,6 +79,11 @@ define([ me.btnZoomDown.updateHint(me.tipZoomOut + Common.Utils.String.platformKey('Ctrl+-')); me.btnZoomUp.updateHint(me.tipZoomIn + Common.Utils.String.platformKey('Ctrl++')); + if (config.canUseSelectHandTools) { + me.btnSelectTool.updateHint(me.tipSelectTool); + me.btnHandTool.updateHint(me.tipHandTool); + } + if (me.btnLanguage && me.btnLanguage.cmpEl) { me.btnLanguage.updateHint(me.tipSetLang); me.langMenu.on('item:click', _.bind(_clickLanguage, this)); @@ -179,6 +184,18 @@ define([ textPageNumber: Common.Utils.String.format(this.pageIndexText, 1, 1) })); + this.btnSelectTool = new Common.UI.Button({ + hintAnchor: 'top', + toggleGroup: 'select-tools', + enableToggle: true + }); + + this.btnHandTool = new Common.UI.Button({ + hintAnchor: 'top', + toggleGroup: 'select-tools', + enableToggle: true + }); + this.btnZoomToPage = new Common.UI.Button({ hintAnchor: 'top', toggleGroup: 'status-zoom', @@ -292,6 +309,11 @@ define([ me.langMenu.prevTip = 'en'; } + if (config.canUseSelectHandTools) { + _btn_render(me.btnSelectTool, $('#btn-select-tool', me.$layout)); + _btn_render(me.btnHandTool, $('#btn-hand-tool', me.$layout)); + } + me.zoomMenu.render($('.cnt-zoom',me.$layout)); me.zoomMenu.cmpEl.attr({tabindex: -1}); @@ -394,7 +416,9 @@ define([ tipSetLang : 'Set Text Language', txtPageNumInvalid : 'Page number invalid', textTrackChanges : 'Track Changes', - textChangesPanel : 'Changes panel' + textChangesPanel : 'Changes panel', + tipSelectTool : 'Select tool', + tipHandTool : 'Hand tool' }, DE.Views.Statusbar || {})); } ); \ No newline at end of file diff --git a/apps/documenteditor/main/resources/less/statusbar.less b/apps/documenteditor/main/resources/less/statusbar.less index 73a76acb8..a20d7e158 100644 --- a/apps/documenteditor/main/resources/less/statusbar.less +++ b/apps/documenteditor/main/resources/less/statusbar.less @@ -164,4 +164,12 @@ } } } + + .hide-select-tools { + display: none; + } + + #btn-select-tool { + margin-right: 8px; + } } From 2c64c74979c37f1ba5603ed2cf2402dc12d16c67 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Fri, 14 Jan 2022 02:11:02 +0400 Subject: [PATCH 010/217] [DE PE SSE mobile] Change formats icons --- .../mobile/src/less/icons-ios.less | 66 ++++++++++-------- .../mobile/src/less/icons-material.less | 67 +++++++++++-------- .../mobile/src/less/icons-ios.less | 36 +++++----- .../mobile/src/less/icons-material.less | 37 +++++----- .../mobile/src/less/icons-common.less | 47 +++++++++++++ .../mobile/src/less/icons-ios.less | 38 +---------- .../mobile/src/less/icons-material.less | 38 +---------- 7 files changed, 163 insertions(+), 166 deletions(-) diff --git a/apps/documenteditor/mobile/src/less/icons-ios.less b/apps/documenteditor/mobile/src/less/icons-ios.less index 99205059b..fedae260a 100644 --- a/apps/documenteditor/mobile/src/less/icons-ios.less +++ b/apps/documenteditor/mobile/src/less/icons-ios.less @@ -85,57 +85,69 @@ // Download &.icon-format-docx { - width: 30px; - height: 30px; - .encoded-svg-mask('') + width: 22px; + height: 22px; + .encoded-svg-background(''); } &.icon-format-pdf { - width: 30px; - height: 30px; - .encoded-svg-mask('') + width: 22px; + height: 22px; + .encoded-svg-background(''); } &.icon-format-pdfa { - width: 30px; - height: 30px; - .encoded-svg-mask('') + width: 22px; + height: 22px; + .encoded-svg-background(''); + } + + &.icon-format-docxf { + width: 22px; + height: 22px; + .encoded-svg-background(''); + } + + &.icon-format-oform { + width: 22px; + height: 22px; + .encoded-svg-background(''); } &.icon-format-txt { - width: 24px; - height: 24px; - .encoded-svg-mask('') + width: 22px; + height: 22px; + .encoded-svg-background(''); } &.icon-format-rtf { - width: 24px; - height: 24px; - .encoded-svg-mask('') + width: 22px; + height: 22px; + .encoded-svg-background(''); } &.icon-format-odt { - width: 30px; - height: 30px; - .encoded-svg-mask('') + width: 22px; + height: 22px; + .encoded-svg-background(''); } &.icon-format-html { - width: 30px; - height: 30px; - .encoded-svg-mask('') + width: 22px; + height: 22px; + .encoded-svg-background(''); } &.icon-format-dotx { - width: 30px; - height: 30px; - .encoded-svg-mask('') + width: 22px; + height: 22px; + .encoded-svg-background(''); } &.icon-format-ott { - width: 30px; - height: 30px; - .encoded-svg-mask('') + width: 22px; + height: 22px; + .encoded-svg-background(''); } diff --git a/apps/documenteditor/mobile/src/less/icons-material.less b/apps/documenteditor/mobile/src/less/icons-material.less index bc3b9c640..1a4eddbe1 100644 --- a/apps/documenteditor/mobile/src/less/icons-material.less +++ b/apps/documenteditor/mobile/src/less/icons-material.less @@ -140,60 +140,71 @@ // Download &.icon-format-docx { - width: 30px; - height: 30px; - .encoded-svg-mask('') + width: 22px; + height: 22px; + .encoded-svg-background(''); } &.icon-format-pdf { - width: 30px; - height: 30px; - .encoded-svg-mask('') + width: 22px; + height: 22px; + .encoded-svg-background(''); } &.icon-format-pdfa { - width: 30px; - height: 30px; - .encoded-svg-mask('') + width: 22px; + height: 22px; + .encoded-svg-background(''); + } + + &.icon-format-docxf { + width: 22px; + height: 22px; + .encoded-svg-background(''); + } + + &.icon-format-oform { + width: 22px; + height: 22px; + .encoded-svg-background(''); } &.icon-format-txt { - width: 24px; - height: 24px; - .encoded-svg-mask('') + width: 22px; + height: 22px; + .encoded-svg-background(''); } &.icon-format-rtf { - width: 24px; - height: 24px; - .encoded-svg-mask('') + width: 22px; + height: 22px; + .encoded-svg-background(''); } &.icon-format-odt { - width: 30px; - height: 30px; - .encoded-svg-mask('') + width: 22px; + height: 22px; + .encoded-svg-background(''); } &.icon-format-html { - width: 30px; - height: 30px; - .encoded-svg-mask('') + width: 22px; + height: 22px; + .encoded-svg-background(''); } &.icon-format-dotx { - width: 30px; - height: 30px; - .encoded-svg-mask('') + width: 22px; + height: 22px; + .encoded-svg-background(''); } &.icon-format-ott { - width: 30px; - height: 30px; - .encoded-svg-mask('') + width: 22px; + height: 22px; + .encoded-svg-background(''); } - //Edit &.icon-text-align-left { diff --git a/apps/presentationeditor/mobile/src/less/icons-ios.less b/apps/presentationeditor/mobile/src/less/icons-ios.less index 3c7a619c5..9cdc5b5bc 100644 --- a/apps/presentationeditor/mobile/src/less/icons-ios.less +++ b/apps/presentationeditor/mobile/src/less/icons-ios.less @@ -410,39 +410,39 @@ // Formats &.icon-format-pdf { - width: 30px; - height: 30px; - .encoded-svg-mask(''); + width: 22px; + height: 22px; + .encoded-svg-background('') } &.icon-format-pdfa { - width: 30px; - height: 30px; - .encoded-svg-mask(''); + width: 22px; + height: 22px; + .encoded-svg-background(''); } &.icon-format-pptx { - width: 30px; - height: 30px; - .encoded-svg-mask(''); + width: 22px; + height: 22px; + .encoded-svg-background(''); } &.icon-format-potx { - width: 30px; - height: 30px; - .encoded-svg-mask(''); + width: 22px; + height: 22px; + .encoded-svg-background(''); } &.icon-format-odp { - width: 30px; - height: 30px; - .encoded-svg-mask(''); + width: 22px; + height: 22px; + .encoded-svg-background(''); } &.icon-format-otp { - width: 30px; - height: 30px; - .encoded-svg-mask('') + width: 22px; + height: 22px; + .encoded-svg-background(''); } // Collaboration diff --git a/apps/presentationeditor/mobile/src/less/icons-material.less b/apps/presentationeditor/mobile/src/less/icons-material.less index 23488b3a3..a28757a7a 100644 --- a/apps/presentationeditor/mobile/src/less/icons-material.less +++ b/apps/presentationeditor/mobile/src/less/icons-material.less @@ -380,40 +380,39 @@ // Formats &.icon-format-pdf { - width: 30px; - height: 30px; - .encoded-svg-mask(''); + width: 22px; + height: 22px; + .encoded-svg-background('') } &.icon-format-pdfa { - width: 30px; - height: 30px; - .encoded-svg-mask(''); + width: 22px; + height: 22px; + .encoded-svg-background(''); } &.icon-format-pptx { - width: 30px; - height: 30px; - // xml:space="preserve" - .encoded-svg-mask(''); + width: 22px; + height: 22px; + .encoded-svg-background(''); } &.icon-format-potx { - width: 30px; - height: 30px; - .encoded-svg-mask(''); + width: 22px; + height: 22px; + .encoded-svg-background(''); } &.icon-format-odp { - width: 30px; - height: 30px; - .encoded-svg-mask(''); + width: 22px; + height: 22px; + .encoded-svg-background(''); } &.icon-format-otp { - width: 30px; - height: 30px; - .encoded-svg-mask('') + width: 22px; + height: 22px; + .encoded-svg-background(''); } // Collaboration diff --git a/apps/spreadsheeteditor/mobile/src/less/icons-common.less b/apps/spreadsheeteditor/mobile/src/less/icons-common.less index a1992c022..f91971a58 100644 --- a/apps/spreadsheeteditor/mobile/src/less/icons-common.less +++ b/apps/spreadsheeteditor/mobile/src/less/icons-common.less @@ -77,3 +77,50 @@ background-image: url('@{app-image-path}/charts/chart-20.png'); } } + +// Formats + +i.icon { + &.icon-format-pdf { + width: 22px; + height: 22px; + // .encoded-svg-mask(''); + .encoded-svg-background(''); + } + &.icon-format-pdfa { + width: 22px; + height: 22px; + // .encoded-svg-mask(''); + .encoded-svg-background(''); + } + &.icon-format-xlsx { + width: 22px; + height: 22px; + // .encoded-svg-mask(''); + .encoded-svg-background(''); + } + &.icon-format-xltx { + width: 22px; + height: 22px; + // .encoded-svg-mask(''); + .encoded-svg-background(''); + } + &.icon-format-ods { + width: 22px; + height: 22px; + // .encoded-svg-mask(''); + .encoded-svg-background(''); + } + &.icon-format-ots { + width: 22px; + height: 22px; + // .encoded-svg-mask(''); + .encoded-svg-background(''); + } + &.icon-format-csv { + width: 22px; + height: 22px; + // .encoded-svg-mask(''); + .encoded-svg-background(''); + } +} diff --git a/apps/spreadsheeteditor/mobile/src/less/icons-ios.less b/apps/spreadsheeteditor/mobile/src/less/icons-ios.less index 142989494..47acba9e6 100644 --- a/apps/spreadsheeteditor/mobile/src/less/icons-ios.less +++ b/apps/spreadsheeteditor/mobile/src/less/icons-ios.less @@ -302,44 +302,8 @@ .encoded-svg-mask(''); } - // Formats - - &.icon-format-pdf { - width: 30px; - height: 30px; - .encoded-svg-mask(''); - } - &.icon-format-pdfa { - width: 30px; - height: 30px; - .encoded-svg-mask(''); - } - &.icon-format-xlsx { - width: 30px; - height: 30px; - .encoded-svg-mask(''); - } - &.icon-format-xltx { - width: 30px; - height: 30px; - .encoded-svg-mask(''); - } - &.icon-format-ods { - width: 30px; - height: 30px; - .encoded-svg-mask(''); - } - &.icon-format-ots { - width: 30px; - height: 30px; - .encoded-svg-mask(''); - } - &.icon-format-csv { - width: 24px; - height: 24px; - .encoded-svg-mask(''); - } // Collaboration + &.icon-users { width: 24px; height: 24px; diff --git a/apps/spreadsheeteditor/mobile/src/less/icons-material.less b/apps/spreadsheeteditor/mobile/src/less/icons-material.less index 70a6e5c9d..4e393b6e2 100644 --- a/apps/spreadsheeteditor/mobile/src/less/icons-material.less +++ b/apps/spreadsheeteditor/mobile/src/less/icons-material.less @@ -286,44 +286,8 @@ .encoded-svg-mask(''); } - // Formats - - &.icon-format-pdf { - width: 30px; - height: 30px; - .encoded-svg-mask(''); - } - &.icon-format-pdfa { - width: 30px; - height: 30px; - .encoded-svg-mask(''); - } - &.icon-format-xlsx { - width: 30px; - height: 30px; - .encoded-svg-mask(''); - } - &.icon-format-xltx { - width: 30px; - height: 30px; - .encoded-svg-mask(''); - } - &.icon-format-ods { - width: 30px; - height: 30px; - .encoded-svg-mask(''); - } - &.icon-format-ots { - width: 30px; - height: 30px; - .encoded-svg-mask(''); - } - &.icon-format-csv { - width: 24px; - height: 24px; - .encoded-svg-mask(''); - } // Collaboration + &.icon-users { width: 24px; height: 24px; From 318dc3c66fde0766c506be46b8b3b72ef72d6611 Mon Sep 17 00:00:00 2001 From: OVSharova Date: Fri, 14 Jan 2022 01:51:26 +0300 Subject: [PATCH 011/217] Update template --- apps/presentationeditor/main/app/template/Toolbar.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/presentationeditor/main/app/template/Toolbar.template b/apps/presentationeditor/main/app/template/Toolbar.template index c9c617790..3491bd548 100644 --- a/apps/presentationeditor/main/app/template/Toolbar.template +++ b/apps/presentationeditor/main/app/template/Toolbar.template @@ -260,7 +260,7 @@
-
+
From aa9b19879db9c77750582c03107d7fa3de03510c Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 14 Jan 2022 14:02:27 +0300 Subject: [PATCH 012/217] Update translation --- apps/documenteditor/embed/locale/hu.json | 21 +- apps/documenteditor/forms/locale/el.json | 48 + apps/documenteditor/forms/locale/hu.json | 142 ++- apps/documenteditor/forms/locale/nl.json | 13 + apps/documenteditor/forms/locale/pt.json | 3 + apps/documenteditor/forms/locale/ru.json | 2 + apps/documenteditor/forms/locale/tr.json | 8 + apps/documenteditor/main/locale/ca.json | 208 +-- apps/documenteditor/main/locale/cs.json | 3 +- apps/documenteditor/main/locale/en.json | 32 +- apps/documenteditor/main/locale/es.json | 66 +- apps/documenteditor/main/locale/hu.json | 233 +++- apps/documenteditor/main/locale/ja.json | 4 +- apps/documenteditor/main/locale/nl.json | 3 +- apps/documenteditor/main/locale/pl.json | 1 + apps/documenteditor/main/locale/pt.json | 29 + apps/documenteditor/main/locale/tr.json | 76 +- apps/documenteditor/main/locale/uk.json | 1184 ++++++++++++++++-- apps/documenteditor/main/locale/zh.json | 2 +- apps/presentationeditor/embed/locale/hu.json | 9 +- apps/presentationeditor/main/locale/ca.json | 53 +- apps/presentationeditor/main/locale/hu.json | 147 ++- apps/presentationeditor/main/locale/pl.json | 99 ++ apps/presentationeditor/main/locale/pt.json | 47 +- apps/presentationeditor/main/locale/tr.json | 47 +- apps/presentationeditor/main/locale/uk.json | 699 ++++++++++- apps/spreadsheeteditor/embed/locale/hu.json | 9 +- apps/spreadsheeteditor/main/locale/el.json | 14 +- apps/spreadsheeteditor/main/locale/en.json | 4 +- apps/spreadsheeteditor/main/locale/hu.json | 630 ++++++++-- apps/spreadsheeteditor/main/locale/ja.json | 5 + apps/spreadsheeteditor/main/locale/nl.json | 5 + apps/spreadsheeteditor/main/locale/pt.json | 70 ++ apps/spreadsheeteditor/main/locale/ru.json | 26 + apps/spreadsheeteditor/main/locale/tr.json | 3 + apps/spreadsheeteditor/main/locale/uk.json | 239 +++- apps/spreadsheeteditor/main/locale/zh.json | 2 +- 37 files changed, 3692 insertions(+), 494 deletions(-) diff --git a/apps/documenteditor/embed/locale/hu.json b/apps/documenteditor/embed/locale/hu.json index b11971151..93d8935e2 100644 --- a/apps/documenteditor/embed/locale/hu.json +++ b/apps/documenteditor/embed/locale/hu.json @@ -11,20 +11,39 @@ "DE.ApplicationController.downloadTextText": "Dokumentum letöltése...", "DE.ApplicationController.errorAccessDeny": "Olyan műveletet próbál végrehajtani, melyre nincs jogosultsága.
Vegye fel a kapcsolatot a Document Server adminisztrátorával.", "DE.ApplicationController.errorDefaultMessage": "Hibakód: %1", + "DE.ApplicationController.errorEditingDownloadas": "Hiba történt a dokumentummal végzett munka során.
Használja a 'Letöltés másként...' opciót, hogy mentse a fájl biztonsági másolatát a számítógép merevlemezére.", "DE.ApplicationController.errorFilePassProtect": "A dokumentum jelszóval védett, és nem nyitható meg.", "DE.ApplicationController.errorFileSizeExceed": "A fájlméret meghaladja a szerverre beállított korlátozást.
Kérjük, forduljon a Document Server rendszergazdájához a részletekért.", - "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Az internet kapcsolat helyreállt, és a fájl verziója megváltozott.
Mielőtt folytatná a munkát, töltse le a fájlt, vagy másolja vágólapra annak tartalmát, hogy megbizonyosodjon arról, hogy semmi nem veszik el, majd töltse újra az oldalt.", + "DE.ApplicationController.errorForceSave": "Hiba történt a fájl mentése közben. Kérjük, használja a 'Letöltés másként' opciót, hogy a fájlt a számítógépére mentse, vagy próbálkozzon később.", + "DE.ApplicationController.errorLoadingFont": "A betűtípusok nincsenek betöltve.
Kérjük forduljon a dokumentumszerver rendszergazdájához.", + "DE.ApplicationController.errorSubmit": "A beküldés nem sikerült.", + "DE.ApplicationController.errorTokenExpire": "A dokumentum biztonsági tokenje lejárt.
Kérjük, lépjen kapcsolatba a dokumentumszerver rendszergazdájával.", + "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Az internetkapcsolat helyreállt és a fájl verziója megváltozott.
Mielőtt folytatná a munkát, töltse le a fájlt vagy másolja át annak tartalmát megbizonyosodva arról, hogy semmi sem veszett el, végül töltse újra ezt az oldalt.", "DE.ApplicationController.errorUserDrop": "A dokumentum jelenleg nem elérhető.", "DE.ApplicationController.notcriticalErrorTitle": "Figyelmeztetés", + "DE.ApplicationController.openErrorText": "Hiba történt a fájl megnyitásakor", "DE.ApplicationController.scriptLoadError": "A kapcsolat túl lassú, néhány komponens nem töltődött be. Frissítse az oldalt.", + "DE.ApplicationController.textAnonymous": "Névtelen", + "DE.ApplicationController.textClear": "Az összes mező törlése", + "DE.ApplicationController.textGotIt": "OK", + "DE.ApplicationController.textGuest": "Vendég", "DE.ApplicationController.textLoadingDocument": "Dokumentum betöltése", + "DE.ApplicationController.textNext": "Következő mező", "DE.ApplicationController.textOf": "of", + "DE.ApplicationController.textRequired": "Töltse ki az összes szükséges mezőt az űrlap elküldéséhez.", + "DE.ApplicationController.textSubmit": "Beküldés", + "DE.ApplicationController.textSubmited": "Az űrlap sikeresen elküldve
Kattintson a tipp bezárásához", "DE.ApplicationController.txtClose": "Bezárás", + "DE.ApplicationController.txtEmpty": "(Üres)", + "DE.ApplicationController.txtPressLink": "Nyomja meg a CTRL billentyűt és kattintson a hivatkozásra", "DE.ApplicationController.unknownErrorText": "Ismeretlen hiba.", "DE.ApplicationController.unsupportedBrowserErrorText": "A böngészője nem támogatott.", "DE.ApplicationController.waitText": "Kérjük, várjon...", "DE.ApplicationView.txtDownload": "Letöltés", + "DE.ApplicationView.txtDownloadDocx": "Letöltés DOCX-ként", + "DE.ApplicationView.txtDownloadPdf": "Letöltés PDF-ként", "DE.ApplicationView.txtEmbed": "Beágyazás", + "DE.ApplicationView.txtFileLocation": "Fájl helyének megnyitása", "DE.ApplicationView.txtFullScreen": "Teljes képernyő", "DE.ApplicationView.txtPrint": "Nyomtatás", "DE.ApplicationView.txtShare": "Megosztás" diff --git a/apps/documenteditor/forms/locale/el.json b/apps/documenteditor/forms/locale/el.json index 136a17ccd..a69483140 100644 --- a/apps/documenteditor/forms/locale/el.json +++ b/apps/documenteditor/forms/locale/el.json @@ -11,6 +11,7 @@ "Common.UI.Calendar.textMonths": "Μήνες", "Common.UI.Calendar.textNovember": "Νοέμβριος", "Common.UI.Calendar.textOctober": "Οκτώβριος", + "Common.UI.Calendar.textSeptember": "Σεπτέμβριος", "Common.UI.Calendar.textShortApril": "Απρ", "Common.UI.Calendar.textShortAugust": "Αυγ", "Common.UI.Calendar.textShortDecember": "Δεκ", @@ -24,16 +25,26 @@ "Common.UI.Calendar.textShortMonday": "Δευ", "Common.UI.Calendar.textShortNovember": "Νοέ", "Common.UI.Calendar.textShortOctober": "Οκτ", + "Common.UI.Calendar.textShortSaturday": "Σαβ", + "Common.UI.Calendar.textShortSeptember": "Σεπτ", + "Common.UI.Calendar.textShortSunday": "Κυρ", + "Common.UI.Calendar.textShortThursday": "Πεμ", + "Common.UI.Calendar.textShortTuesday": "Τρι", + "Common.UI.Calendar.textShortWednesday": "Τετ", + "Common.UI.Calendar.textYears": "Έτη", "Common.UI.Themes.txtThemeClassicLight": "Κλασικό Ανοιχτό", "Common.UI.Themes.txtThemeDark": "Σκούρο", "Common.UI.Themes.txtThemeLight": "Ανοιχτό", "Common.UI.Window.cancelButtonText": "Ακύρωση", "Common.UI.Window.closeButtonText": "Κλείσιμο", "Common.UI.Window.noButtonText": "Όχι", + "Common.UI.Window.okButtonText": "Εντάξει", "Common.UI.Window.textConfirmation": "Επιβεβαίωση", "Common.UI.Window.textDontShow": "Να μην εμφανιστεί ξανά αυτό το μήνυμα", "Common.UI.Window.textError": "Σφάλμα", "Common.UI.Window.textInformation": "Πληροφορίες", + "Common.UI.Window.textWarning": "Προειδοποίηση", + "Common.UI.Window.yesButtonText": "Ναι", "Common.Views.CopyWarningDialog.textDontShow": "Να μην εμφανιστεί ξανά αυτό το μήνυμα", "Common.Views.CopyWarningDialog.textMsg": "Ενέργειες αντιγραφής, αποκοπής και επικόλλησης με χρήση ενεργειών μενού θα γίνονται εντός της παρούσας καρτέλας συντάκτη μόνο.

Για αντιγραφή ή επικόλληση σε ή από εφαρμογές εκτός της καρτέλας συντάκτη χρησιμοποιήστε τους ακόλουθους συνδυασμούς πλήκτρων:", "Common.Views.CopyWarningDialog.textTitle": "Ενέργειες Αντιγραφής, Αποκοπής και Επικόλλησης", @@ -42,15 +53,26 @@ "Common.Views.CopyWarningDialog.textToPaste": "για Επικόλληση", "Common.Views.EmbedDialog.textHeight": "Ύψος", "Common.Views.EmbedDialog.textTitle": "Ενσωμάτωση", + "Common.Views.EmbedDialog.textWidth": "Πλάτος", "Common.Views.EmbedDialog.txtCopy": "Αντιγραφή στο πρόχειρο", "Common.Views.EmbedDialog.warnCopy": "Σφάλμα φυλλομετρητή! Χρησιμοποιείστε τη συντόμευση [Ctrl]+[C]", + "Common.Views.ImageFromUrlDialog.textUrl": "Επικόλληση URL εικόνας:", + "Common.Views.ImageFromUrlDialog.txtEmpty": "Αυτό το πεδίο είναι υποχρεωτικό", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "Αυτό το πεδίο πρέπει να είναι διεύθυνση URL με τη μορφή «http://www.example.com»", "Common.Views.OpenDialog.closeButtonText": "Κλείσιμο Αρχείου", "Common.Views.OpenDialog.txtEncoding": "Κωδικοποίηση", + "Common.Views.OpenDialog.txtIncorrectPwd": "Το συνθηματικό είναι εσφαλμένο.", "Common.Views.OpenDialog.txtOpenFile": "Εισάγετε συνθηματικό για να ανοίξετε το αρχείο", + "Common.Views.OpenDialog.txtPassword": "Συνθηματικό", + "Common.Views.OpenDialog.txtPreview": "Προεπισκόπηση", + "Common.Views.OpenDialog.txtProtected": "Μόλις βάλετε το συνθηματικό και ανοίξετε το αρχείο, το τρέχον συνθηματικό αρχείου θα αρχικοποιηθεί.", "Common.Views.OpenDialog.txtTitle": "Διαλέξτε %1 επιλογές", + "Common.Views.OpenDialog.txtTitleProtected": "Προστατευμένο Αρχείο", "Common.Views.SaveAsDlg.textLoading": "Γίνεται φόρτωση", "Common.Views.SaveAsDlg.textTitle": "Φάκελος για αποθήκευση", "Common.Views.SelectFileDlg.textLoading": "Γίνεται φόρτωση", + "Common.Views.SelectFileDlg.textTitle": "Επιλογή Πηγής Δεδομένων", + "Common.Views.ShareDialog.textTitle": "Διαμοιρασμός Συνδέσμου", "Common.Views.ShareDialog.txtCopy": "Αντιγραφή στο πρόχειρο", "Common.Views.ShareDialog.warnCopy": "Σφάλμα φυλλομετρητή! Χρησιμοποιείστε τη συντόμευση [Ctrl]+[C]", "DE.Controllers.ApplicationController.convertationErrorText": "Αποτυχία μετατροπής.", @@ -60,6 +82,7 @@ "DE.Controllers.ApplicationController.downloadTextText": "Γίνεται λήψη εγγράφου...", "DE.Controllers.ApplicationController.errorAccessDeny": "Προσπαθείτε να εκτελέσετε μια ενέργεια για την οποία δεν έχετε δικαιώματα.
Παρακαλούμε να επικοινωνήστε με τον διαχειριστή του διακομιστή εγγράφων.", "DE.Controllers.ApplicationController.errorBadImageUrl": "Εσφαλμένη διεύθυνση URL εικόνας", + "DE.Controllers.ApplicationController.errorConnectToServer": "Δεν ήταν δυνατή η αποθήκευση του εγγράφου. Ελέγξτε τις ρυθμίσεις σύνδεσης ή επικοινωνήστε με τον διαχειριστή σας.
Όταν πατήσετε 'Εντάξει', θα μπορέσετε να κατεβάσετε το έγγραφο.", "DE.Controllers.ApplicationController.errorDataEncrypted": "Ελήφθησαν κρυπτογραφημένες αλλαγές, δεν μπορούν να αποκρυπτογραφηθούν.", "DE.Controllers.ApplicationController.errorDefaultMessage": "Κωδικός σφάλματος: %1", "DE.Controllers.ApplicationController.errorEditingDownloadas": "Παρουσιάστηκε σφάλμα κατά την εργασία με το έγγραφο.
Χρησιμοποιήστε την επιλογή «Λήψη ως...» για να αποθηκεύσετε το αντίγραφο ασφαλείας στον σκληρό δίσκο του υπολογιστή σας.", @@ -68,7 +91,14 @@ "DE.Controllers.ApplicationController.errorFileSizeExceed": "Το μέγεθος του αρχείου υπερβαίνει το όριο που έχει οριστεί για τον διακομιστή σας.
Παρακαλούμε επικοινωνήστε με τον διαχειριστή του διακομιστή εγγράφων για λεπτομέρειες.", "DE.Controllers.ApplicationController.errorForceSave": "Παρουσιάστηκε σφάλμα κατά την αποθήκευση του αρχείου. Χρησιμοποιήστε την επιλογή «Λήψη ως» για να αποθηκεύσετε το αρχείο στον σκληρό δίσκο του υπολογιστή σας ή δοκιμάστε ξανά αργότερα.", "DE.Controllers.ApplicationController.errorLoadingFont": "Οι γραμματοσειρές δεν έχουν φορτωθεί.
Παρακαλούμε επικοινωνήστε με τον διαχειριστή του Εξυπηρετητή Εγγράφων σας.", + "DE.Controllers.ApplicationController.errorServerVersion": "Αναβαθμίστηκε η έκδοση του συντάκτη. Η σελίδα θα φορτωθεί ξανά για να εφαρμοστούν οι αλλαγές.", + "DE.Controllers.ApplicationController.errorSessionAbsolute": "Η σύνοδος επεξεργασίας του εγγράφου έληξε. Παρακαλούμε φορτώστε ξανά τη σελίδα.", + "DE.Controllers.ApplicationController.errorSessionIdle": "Το έγγραφο δεν έχει επεξεργαστεί εδώ και πολύ ώρα. Παρακαλούμε φορτώστε ξανά τη σελίδα.", + "DE.Controllers.ApplicationController.errorSessionToken": "Η σύνδεση με το διακομιστή έχει διακοπεί. Παρακαλούμε φορτώστε ξανά τη σελίδα.", "DE.Controllers.ApplicationController.errorSubmit": "Η υποβολή απέτυχε.", + "DE.Controllers.ApplicationController.errorToken": "Το κλειδί ασφαλείας του εγγράφου δεν είναι σωστά σχηματισμένο.
Παρακαλούμε επικοινωνήστε με τον διαχειριστή του Εξυπηρετητή Εγγράφων.", + "DE.Controllers.ApplicationController.errorTokenExpire": "Το κλειδί ασφαλείας του εγγράφου έληξε.
Παρακαλούμε επικοινωνήστε με τον διαχειριστή του Εξυπηρετητή Εγγράφων.", + "DE.Controllers.ApplicationController.errorUpdateVersion": "Η έκδοση του αρχείου έχει αλλάξει. Η σελίδα θα φορτωθεί ξανά.", "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "Η σύνδεση στο Διαδίκτυο έχει αποκατασταθεί και η έκδοση του αρχείου έχει αλλάξει.
Προτού συνεχίσετε να εργάζεστε, πρέπει να κατεβάσετε το αρχείο ή να αντιγράψετε το περιεχόμενό του για να βεβαιωθείτε ότι δεν έχει χαθεί τίποτα και, στη συνέχεια, φορτώστε ξανά αυτήν τη σελίδα.", "DE.Controllers.ApplicationController.errorUserDrop": "Δεν είναι δυνατή η πρόσβαση στο αρχείο αυτήν τη στιγμή.", "DE.Controllers.ApplicationController.errorViewerDisconnect": "Η σύνδεση χάθηκε. Μπορείτε να συνεχίσετε να βλέπετε το έγγραφο,
αλλά δεν θα μπορείτε να το λάβετε ή να το εκτυπώσετε έως ότου αποκατασταθεί η σύνδεση και ανανεωθεί η σελίδα.", @@ -78,8 +108,10 @@ "DE.Controllers.ApplicationController.notcriticalErrorTitle": "Προειδοποίηση", "DE.Controllers.ApplicationController.openErrorText": "Παρουσιάστηκε σφάλμα κατά το άνοιγμα του αρχείου.", "DE.Controllers.ApplicationController.saveErrorText": "Παρουσιάστηκε σφάλμα κατά την αποθήκευση του αρχείου.", + "DE.Controllers.ApplicationController.saveErrorTextDesktop": "Δεν είναι δυνατή η αποθήκευση ή η δημιουργία αυτού του αρχείου.
Πιθανοί λόγοι είναι:
1. Το αρχείο είναι μόνο για ανάγνωση.
2. Το αρχείο τελεί υπό επεξεργασία από άλλους χρήστες.
3. Ο δίσκος είναι γεμάτος ή κατεστραμμένος.", "DE.Controllers.ApplicationController.scriptLoadError": "Η σύνδεση είναι πολύ αργή, δεν ήταν δυνατή η φόρτωση ορισμένων στοιχείων. Φορτώστε ξανά τη σελίδα.", "DE.Controllers.ApplicationController.textAnonymous": "Ανώνυμος", + "DE.Controllers.ApplicationController.textBuyNow": "Επισκεφθείτε την ιστοσελίδα", "DE.Controllers.ApplicationController.textCloseTip": "Κάντε κλικ να κλείσετε τη συμβουλή.", "DE.Controllers.ApplicationController.textContactUs": "Επικοινωνήστε με το τμήμα πωλήσεων", "DE.Controllers.ApplicationController.textGotIt": "Ελήφθη", @@ -88,23 +120,39 @@ "DE.Controllers.ApplicationController.textNoLicenseTitle": "Το όριο της άδειας προσεγγίσθηκε", "DE.Controllers.ApplicationController.textOf": "του", "DE.Controllers.ApplicationController.textRequired": "Συμπληρώστε όλα τα απαιτούμενα πεδία για την αποστολή της φόρμας.", + "DE.Controllers.ApplicationController.textSaveAs": "Αποθήκευση ως PDF", + "DE.Controllers.ApplicationController.textSaveAsDesktop": "Αποθήκευση ως...", "DE.Controllers.ApplicationController.textSubmited": "Η φόρμα υποβλήθηκε με επιτυχία
Κάντε κλικ για να κλείσετε τη συμβουλή ", "DE.Controllers.ApplicationController.titleServerVersion": "Ο συντάκτης ενημερώθηκε", + "DE.Controllers.ApplicationController.titleUpdateVersion": "Η έκδοση άλλαξε", + "DE.Controllers.ApplicationController.txtArt": "Το κείμενό σας εδώ", "DE.Controllers.ApplicationController.txtChoose": "Επιλέξτε ένα αντικείμενο", "DE.Controllers.ApplicationController.txtClickToLoad": "Κάντε κλικ για φόρτωση εικόνας", "DE.Controllers.ApplicationController.txtClose": "Κλείσιμο", "DE.Controllers.ApplicationController.txtEmpty": "(Κενό)", "DE.Controllers.ApplicationController.txtEnterDate": "Εισάγετε μια ημερομηνία", "DE.Controllers.ApplicationController.txtPressLink": "Πατήστε Ctrl και κάντε κλικ στο σύνδεσμο", + "DE.Controllers.ApplicationController.txtUntitled": "Άτιτλο", "DE.Controllers.ApplicationController.unknownErrorText": "Άγνωστο σφάλμα.", "DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "Ο περιηγητής σας δεν υποστηρίζεται.", + "DE.Controllers.ApplicationController.uploadImageExtMessage": "Άγνωστη μορφή εικόνας.", + "DE.Controllers.ApplicationController.uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB.", "DE.Controllers.ApplicationController.waitText": "Παρακαλούμε, περιμένετε...", + "DE.Controllers.ApplicationController.warnLicenseExceeded": "Έχετε φτάσει το όριο για ταυτόχρονες συνδέσεις με συντάκτες %1. Αυτό το έγγραφο θα ανοιχτεί μόνο για προβολή.​​
Παρακαλούμε επικοινωνήστε με τον διαχειριστή σας για περισσότερες πληροφορίες.", "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "Η άδεια έληξε.
Δεν έχετε πρόσβαση στη δυνατότητα επεξεργασίας εγγράφων.
Επικοινωνήστε με τον διαχειριστή σας.", "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "Η άδεια πρέπει να ανανεωθεί.
Έχετε περιορισμένη πρόσβαση στη λειτουργία επεξεργασίας εγγράφων.
Επικοινωνήστε με τον διαχειριστή σας για πλήρη πρόσβαση", + "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "Έχετε φτάσει το όριο χρήστη για συντάκτες %1.
Επικοινωνήστε με τον διαχειριστή σας για περισσότερες πληροφορίες.", + "DE.Controllers.ApplicationController.warnNoLicense": "Έχετε φτάσει το όριο για ταυτόχρονες συνδέσεις με συντάκτες %1. Αυτό το έγγραφο θα ανοιχτεί μόνο για προβολή.​​
Επικοινωνήστε με την ομάδα πωλήσεων %1 για προσωπικούς όρους αναβάθμισης.", + "DE.Controllers.ApplicationController.warnNoLicenseUsers": "Έχετε φτάσει το όριο χρήστη για συντάκτες %1.
Επικοινωνήστε με την ομάδα πωλήσεων %1 για προσωπικούς όρους αναβάθμισης.", "DE.Views.ApplicationView.textClear": "Εκκαθάριση Όλων των Πεδίων", "DE.Views.ApplicationView.textCopy": "Αντιγραφή", "DE.Views.ApplicationView.textCut": "Αποκοπή", "DE.Views.ApplicationView.textNext": "Επόμενο Πεδίο", + "DE.Views.ApplicationView.textPaste": "Επικόλληση", + "DE.Views.ApplicationView.textPrintSel": "Εκτύπωση Επιλογής", + "DE.Views.ApplicationView.textRedo": "Επανάληψη", + "DE.Views.ApplicationView.textSubmit": "Υποβολή", + "DE.Views.ApplicationView.textUndo": "Αναίρεση", "DE.Views.ApplicationView.txtDarkMode": "Σκούρο θέμα", "DE.Views.ApplicationView.txtDownload": "Λήψη", "DE.Views.ApplicationView.txtDownloadDocx": "Λήψη ως docx", diff --git a/apps/documenteditor/forms/locale/hu.json b/apps/documenteditor/forms/locale/hu.json index 538dd8642..773315cb9 100644 --- a/apps/documenteditor/forms/locale/hu.json +++ b/apps/documenteditor/forms/locale/hu.json @@ -1,26 +1,166 @@ { + "Common.UI.Calendar.textApril": "április", + "Common.UI.Calendar.textAugust": "augusztus", + "Common.UI.Calendar.textDecember": "December", + "Common.UI.Calendar.textFebruary": "február", + "Common.UI.Calendar.textJanuary": "Január ", + "Common.UI.Calendar.textJuly": "Július ", + "Common.UI.Calendar.textJune": "Június", + "Common.UI.Calendar.textMarch": "Március", + "Common.UI.Calendar.textMay": "Máj", + "Common.UI.Calendar.textMonths": "hónapok", + "Common.UI.Calendar.textNovember": "November", + "Common.UI.Calendar.textOctober": "Október", + "Common.UI.Calendar.textSeptember": "szeptember", + "Common.UI.Calendar.textShortApril": "Ápr", + "Common.UI.Calendar.textShortAugust": "Aug", + "Common.UI.Calendar.textShortDecember": "Dec", + "Common.UI.Calendar.textShortFebruary": "Feb", + "Common.UI.Calendar.textShortFriday": "Fr", + "Common.UI.Calendar.textShortJanuary": "Jan", + "Common.UI.Calendar.textShortJuly": "Júl", + "Common.UI.Calendar.textShortJune": "Jún", + "Common.UI.Calendar.textShortMarch": "Márc", + "Common.UI.Calendar.textShortMay": "Május", + "Common.UI.Calendar.textShortMonday": "Hó", + "Common.UI.Calendar.textShortNovember": "Nov", + "Common.UI.Calendar.textShortOctober": "Okt", + "Common.UI.Calendar.textShortSaturday": "Szo", + "Common.UI.Calendar.textShortSeptember": "Szept", + "Common.UI.Calendar.textShortSunday": "Vas", + "Common.UI.Calendar.textShortThursday": "Csüt", + "Common.UI.Calendar.textShortTuesday": "Ke", + "Common.UI.Calendar.textShortWednesday": "Sze", + "Common.UI.Calendar.textYears": "Évek", + "Common.UI.Themes.txtThemeClassicLight": "Klasszikus Világos", + "Common.UI.Themes.txtThemeDark": "Sötét", + "Common.UI.Themes.txtThemeLight": "Világos", + "Common.UI.Window.cancelButtonText": "Mégse", + "Common.UI.Window.closeButtonText": "Bezár", + "Common.UI.Window.noButtonText": "Nem", + "Common.UI.Window.okButtonText": "OK", + "Common.UI.Window.textConfirmation": "Megerősítés", + "Common.UI.Window.textDontShow": "Ne mutassa újra ezt az üzenetet", + "Common.UI.Window.textError": "Hiba", + "Common.UI.Window.textInformation": "Információ", + "Common.UI.Window.textWarning": "Figyelmeztetés", + "Common.UI.Window.yesButtonText": "Igen", + "Common.Views.CopyWarningDialog.textDontShow": "Ne mutassa újra ezt az üzenetet", + "Common.Views.CopyWarningDialog.textMsg": "A helyi menüvel végzett másolási, kivágási és beillesztési műveletek csak ezen a szerkesztőlapon hajthatók végre.

A szerkesztő lapon kívüli alkalmazásokba vagy alkalmazásokból történő másoláshoz vagy beillesztéshez használja a következő billentyűkombinációkat:", + "Common.Views.CopyWarningDialog.textTitle": "Másolás, kivágás és beillesztés", + "Common.Views.CopyWarningDialog.textToCopy": "Másolásra", + "Common.Views.CopyWarningDialog.textToCut": "Kivágásra", + "Common.Views.CopyWarningDialog.textToPaste": "Beillesztésre", + "Common.Views.EmbedDialog.textHeight": "Magasság", + "Common.Views.EmbedDialog.textTitle": "Beágyazás", + "Common.Views.EmbedDialog.textWidth": "Szélesség", + "Common.Views.EmbedDialog.txtCopy": "Másolás vágólapra", + "Common.Views.EmbedDialog.warnCopy": "Böngésző hiba! Használja a [Ctrl] + [C] billentyűparancsot", + "Common.Views.ImageFromUrlDialog.textUrl": "Illesszen be egy kép hivatkozást:", + "Common.Views.ImageFromUrlDialog.txtEmpty": "Ez egy szükséges mező", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "Ennek a mezőnek URL formátumúnak kell lennie, pl.: „http://www.pelda.hu”", + "Common.Views.OpenDialog.closeButtonText": "Fájl bezárása", + "Common.Views.OpenDialog.txtEncoding": "Kódolás", + "Common.Views.OpenDialog.txtIncorrectPwd": "Hibás jelszó.", + "Common.Views.OpenDialog.txtOpenFile": "Írja be a megnyitáshoz szükséges jelszót", + "Common.Views.OpenDialog.txtPassword": "Jelszó", + "Common.Views.OpenDialog.txtPreview": "Előnézet", + "Common.Views.OpenDialog.txtProtected": "Miután megadta a jelszót és megnyitotta a fájlt, annak jelenlegi jelszava visszaállítódik.", + "Common.Views.OpenDialog.txtTitle": "Válassza a %1 opciót", + "Common.Views.OpenDialog.txtTitleProtected": "Védett fájl", + "Common.Views.SaveAsDlg.textLoading": "Betöltés", + "Common.Views.SaveAsDlg.textTitle": "Mentési mappa", + "Common.Views.SelectFileDlg.textLoading": "Betöltés", + "Common.Views.SelectFileDlg.textTitle": "Adatforrás kiválasztása", + "Common.Views.ShareDialog.textTitle": "Hivatkozás megosztása", + "Common.Views.ShareDialog.txtCopy": "Másolás vágólapra", + "Common.Views.ShareDialog.warnCopy": "Böngésző hiba! Használja a [Ctrl] + [C] billentyűparancsot", "DE.Controllers.ApplicationController.convertationErrorText": "Az átalakítás nem sikerült.", "DE.Controllers.ApplicationController.convertationTimeoutText": "Időtúllépés az átalakítás során.", "DE.Controllers.ApplicationController.criticalErrorTitle": "Hiba", "DE.Controllers.ApplicationController.downloadErrorText": "Sikertelen letöltés.", "DE.Controllers.ApplicationController.downloadTextText": "Dokumentum letöltése...", "DE.Controllers.ApplicationController.errorAccessDeny": "Olyan műveletet próbál végrehajtani, melyre nincs jogosultsága.
Vegye fel a kapcsolatot a Document Server adminisztrátorával.", + "DE.Controllers.ApplicationController.errorBadImageUrl": "Hibás kép URL", + "DE.Controllers.ApplicationController.errorConnectToServer": "A dokumentumot nem sikerült menteni. Kérjük, ellenőrizze a csatlakozási beállításokat, vagy lépjen kapcsolatba a rendszergazdával.
Amikor az 'OK' gombra kattint, a rendszer kéri a dokumentum letöltését.", + "DE.Controllers.ApplicationController.errorDataEncrypted": "Titkosított változások érkeztek, melyek feloldása sikertelen.", "DE.Controllers.ApplicationController.errorDefaultMessage": "Hibakód: %1", + "DE.Controllers.ApplicationController.errorEditingDownloadas": "Hiba történt a dokumentummal végzett munka során.
Használja a 'Letöltés másként...' opciót, hogy mentse a fájl biztonsági másolatát a számítógép merevlemezére.", + "DE.Controllers.ApplicationController.errorEditingSaveas": "Hiba történt a dokumentummal végzett munka során.
Használja a 'Mentés másként...' opciót, hogy mentse a fájl biztonsági másolatát a számítógép merevlemezére.", "DE.Controllers.ApplicationController.errorFilePassProtect": "A dokumentum jelszóval védett, és nem nyitható meg.", "DE.Controllers.ApplicationController.errorFileSizeExceed": "A fájlméret meghaladja a szerverre beállított korlátozást.
Kérjük, forduljon a Document Server rendszergazdájához a részletekért.", + "DE.Controllers.ApplicationController.errorForceSave": "Hiba történt a fájl mentése közben. Kérjük, használja a 'Letöltés másként' opciót, hogy a fájlt a számítógépére mentse, vagy próbálkozzon később.", + "DE.Controllers.ApplicationController.errorLoadingFont": "A betűtípusok nincsenek betöltve.
Kérjük forduljon a dokumentumszerver rendszergazdájához.", + "DE.Controllers.ApplicationController.errorServerVersion": "A szerkesztő verziója frissült. Az oldal újratöltésre kerül a módosítások alkalmazásához.", + "DE.Controllers.ApplicationController.errorSessionAbsolute": "A dokumentumszerkesztési munkamenet lejárt. Kérjük, töltse újra az oldalt.", + "DE.Controllers.ApplicationController.errorSessionIdle": "A dokumentumot sokáig nem szerkesztették. Kérjük, töltse újra az oldalt.", + "DE.Controllers.ApplicationController.errorSessionToken": "A szerverrel való kapcsolat megszakadt. Töltse újra az oldalt.", + "DE.Controllers.ApplicationController.errorSubmit": "A beküldés nem sikerült.", + "DE.Controllers.ApplicationController.errorToken": "A dokumentum biztonsági tokenje nem megfelelő.
Kérjük, lépjen kapcsolatba a Dokumentumszerver rendszergazdájával.", + "DE.Controllers.ApplicationController.errorTokenExpire": "A dokumentum biztonsági tokenje lejárt.
Kérjük, lépjen kapcsolatba a dokumentumszerver rendszergazdájával.", + "DE.Controllers.ApplicationController.errorUpdateVersion": "A dokumentum verziója megváltozott. Az oldal újratöltődik.", "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "Az internet kapcsolat helyreállt, és a fájl verziója megváltozott.
Mielőtt folytatná a munkát, töltse le a fájlt, vagy másolja vágólapra annak tartalmát, hogy megbizonyosodjon arról, hogy semmi nem veszik el, majd töltse újra az oldalt.", "DE.Controllers.ApplicationController.errorUserDrop": "A dokumentum jelenleg nem elérhető.", + "DE.Controllers.ApplicationController.errorViewerDisconnect": "A kapcsolat megszakadt. Továbbra is megtekinthető a dokumentum,
de a kapcsolat helyreálltáig és az oldal újratöltéséig nem lehet letölteni.", + "DE.Controllers.ApplicationController.mniImageFromFile": "Kép fájlból", + "DE.Controllers.ApplicationController.mniImageFromStorage": "Kép a tárolóból", + "DE.Controllers.ApplicationController.mniImageFromUrl": "Kép hivatkozásból", "DE.Controllers.ApplicationController.notcriticalErrorTitle": "Figyelmeztetés", + "DE.Controllers.ApplicationController.openErrorText": "Hiba történt a fájl megnyitásakor.", + "DE.Controllers.ApplicationController.saveErrorText": "Hiba történt a fájl mentése során.", + "DE.Controllers.ApplicationController.saveErrorTextDesktop": "Ezt a fájlt nem lehet menteni vagy létrehozni.
Lehetséges okok:
1. A fájl csak olvasható.
2. A fájlt más felhasználók szerkesztik.
3. A lemez megtelt vagy sérült.", "DE.Controllers.ApplicationController.scriptLoadError": "A kapcsolat túl lassú, néhány komponens nem töltődött be. Frissítse az oldalt.", + "DE.Controllers.ApplicationController.textAnonymous": "Névtelen", + "DE.Controllers.ApplicationController.textBuyNow": "Weboldal megnyitása", + "DE.Controllers.ApplicationController.textCloseTip": "Kattintson a tipp bezáráshoz.", + "DE.Controllers.ApplicationController.textContactUs": "Kapcsolatba lépés az értékesítéssel", + "DE.Controllers.ApplicationController.textGotIt": "OK", + "DE.Controllers.ApplicationController.textGuest": "Vendég", "DE.Controllers.ApplicationController.textLoadingDocument": "Dokumentum betöltése", + "DE.Controllers.ApplicationController.textNoLicenseTitle": "Elérte a licenckorlátot", "DE.Controllers.ApplicationController.textOf": "of", + "DE.Controllers.ApplicationController.textRequired": "Töltse ki az összes szükséges mezőt az űrlap elküldéséhez.", + "DE.Controllers.ApplicationController.textSaveAs": "Mentés PDF-ként", + "DE.Controllers.ApplicationController.textSaveAsDesktop": "Mentés másként...", + "DE.Controllers.ApplicationController.textSubmited": "Az űrlap sikeresen elküldve
Kattintson a tipp bezárásához", + "DE.Controllers.ApplicationController.titleServerVersion": "Szerkesztő frissítve", + "DE.Controllers.ApplicationController.titleUpdateVersion": "A verzió megváltozott", + "DE.Controllers.ApplicationController.txtArt": "Írja a szöveget ide", + "DE.Controllers.ApplicationController.txtChoose": "Válassz egy elemet", + "DE.Controllers.ApplicationController.txtClickToLoad": "Kattintson a kép betöltéséhez", "DE.Controllers.ApplicationController.txtClose": "Bezárás", + "DE.Controllers.ApplicationController.txtEmpty": "(Üres)", + "DE.Controllers.ApplicationController.txtEnterDate": "Adjon meg egy dátumot", + "DE.Controllers.ApplicationController.txtPressLink": "Nyomja meg a CTRL billentyűt és kattintson a hivatkozásra", + "DE.Controllers.ApplicationController.txtUntitled": "Névtelen", "DE.Controllers.ApplicationController.unknownErrorText": "Ismeretlen hiba.", "DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "A böngészője nem támogatott.", + "DE.Controllers.ApplicationController.uploadImageExtMessage": "Ismeretlen képformátum.", + "DE.Controllers.ApplicationController.uploadImageSizeMessage": "A kép túl nagy. A maximális méret 25 MB.", "DE.Controllers.ApplicationController.waitText": "Kérjük, várjon...", + "DE.Controllers.ApplicationController.warnLicenseExceeded": "Elérte a(z) %1 szerkesztőhöz tartozó egyidejű csatlakozás korlátját. Ez a dokumentum csak megtekintésre nyílik meg.
További információért forduljon rendszergazdájához.", + "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "A licenc lejárt.
Nincs hozzáférése a dokumentumszerkesztő funkciókhoz.
Kérjük, lépjen kapcsolatba a rendszergazdával.", + "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "A licencet meg kell újítani.
Korlátozott hozzáférése van a dokumentumszerkesztési funkciókhoz.
A teljes hozzáférésért forduljon rendszergazdájához", + "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "Elérte a(z) %1 szerkesztőhöz tartozó felhasználói korlátját. További információért forduljon rendszergazdájához.", + "DE.Controllers.ApplicationController.warnNoLicense": "Elérte a(z) %1 szerkesztőhöz tartozó egyidejű csatlakozás korlátját. Ez a dokumentum csak megtekintésre nyílik meg.
Vegye fel a kapcsolatot a(z) %1 értékesítési csapattal a személyes frissítési feltételekért.", + "DE.Controllers.ApplicationController.warnNoLicenseUsers": "Elérte a(z) %1 szerkesztőhöz tartozó felhasználói korlátját. Vegye fel a kapcsolatot a(z) %1 értékesítési csapattal a személyes frissítési feltételekért.", + "DE.Views.ApplicationView.textClear": "Az összes mező törlése", + "DE.Views.ApplicationView.textCopy": "Másol", + "DE.Views.ApplicationView.textCut": "Kivág", + "DE.Views.ApplicationView.textNext": "Következő mező", + "DE.Views.ApplicationView.textPaste": "Beillesztés", + "DE.Views.ApplicationView.textPrintSel": "Nyomtató kiválasztás", + "DE.Views.ApplicationView.textRedo": "Újra", + "DE.Views.ApplicationView.textSubmit": "Beküldés", + "DE.Views.ApplicationView.textUndo": "Vissza", + "DE.Views.ApplicationView.txtDarkMode": "Sötét mód", "DE.Views.ApplicationView.txtDownload": "Letöltés", + "DE.Views.ApplicationView.txtDownloadDocx": "Letöltés DOCX-ként", + "DE.Views.ApplicationView.txtDownloadPdf": "Letöltés PDF-ként", "DE.Views.ApplicationView.txtEmbed": "Beágyazás", + "DE.Views.ApplicationView.txtFileLocation": "Fájl helyének megnyitása", "DE.Views.ApplicationView.txtFullScreen": "Teljes képernyő", "DE.Views.ApplicationView.txtPrint": "Nyomtatás", - "DE.Views.ApplicationView.txtShare": "Megosztás" + "DE.Views.ApplicationView.txtShare": "Megosztás", + "DE.Views.ApplicationView.txtTheme": "Felhasználói felület témája" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/nl.json b/apps/documenteditor/forms/locale/nl.json index c0f7c37e9..447feb1d5 100644 --- a/apps/documenteditor/forms/locale/nl.json +++ b/apps/documenteditor/forms/locale/nl.json @@ -57,6 +57,8 @@ "Common.Views.EmbedDialog.txtCopy": "Kopieer naar klembord", "Common.Views.EmbedDialog.warnCopy": "Browserfout! Gebruik de sneltoets [Ctrl] + [C]. ", "Common.Views.ImageFromUrlDialog.textUrl": "URL van een afbeelding plakken:", + "Common.Views.ImageFromUrlDialog.txtEmpty": "Dit veld is vereist", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "Dit veld moet een URL in de notatie \"http://www.voorbeeld.com\" bevatten", "Common.Views.OpenDialog.closeButtonText": "Bestand sluiten", "Common.Views.OpenDialog.txtEncoding": "Codering", "Common.Views.OpenDialog.txtIncorrectPwd": "Wachtwoord is onjuist.", @@ -69,6 +71,7 @@ "Common.Views.SaveAsDlg.textLoading": "Laden", "Common.Views.SaveAsDlg.textTitle": "Map voor opslaan", "Common.Views.SelectFileDlg.textLoading": "Laden", + "Common.Views.SelectFileDlg.textTitle": "Gegevensbron selecteren", "Common.Views.ShareDialog.textTitle": "Link delen", "Common.Views.ShareDialog.txtCopy": "Kopieer naar klembord", "Common.Views.ShareDialog.warnCopy": "Browserfout! Gebruik de sneltoets [Ctrl] + [C]. ", @@ -89,7 +92,11 @@ "DE.Controllers.ApplicationController.errorForceSave": "Er is een fout opgetreden bij het opslaan van het bestand. Gebruik de 'Download als' knop om het bestand op te slaan op uw computer of probeer het later nog eens.", "DE.Controllers.ApplicationController.errorLoadingFont": "Lettertypes zijn niet geladen.\nNeem alstublieft contact op met de beheerder van de documentserver.", "DE.Controllers.ApplicationController.errorServerVersion": "De versie van de editor is bijgewerkt. De pagina wordt opnieuw geladen om de wijzigingen toe te passen.", + "DE.Controllers.ApplicationController.errorSessionAbsolute": "De bewerksessie voor het document is verlopen. Laad de pagina opnieuw.", + "DE.Controllers.ApplicationController.errorSessionIdle": "Het document is al lang niet meer bewerkt. Laad de pagina opnieuw.", + "DE.Controllers.ApplicationController.errorSessionToken": "De verbinding met de server is onderbroken. Laad de pagina opnieuw.", "DE.Controllers.ApplicationController.errorSubmit": "Verzenden mislukt. ", + "DE.Controllers.ApplicationController.errorToken": "Het token voor de documentbeveiliging heeft niet de juiste indeling.
Neem alstublieft contact op met de beheerder van de documentserver.", "DE.Controllers.ApplicationController.errorTokenExpire": "Het token voor de documentbeveiliging is vervallen.
Neem alstublieft contact op met de beheerder van de documentserver.", "DE.Controllers.ApplicationController.errorUpdateVersion": "De bestandsversie is gewijzigd. De pagina wordt opnieuw geladen.", "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "De internetverbinding is hersteld en de bestandsversie is gewijzigd.
Voordat u verder kunt werken, moet u het bestand downloaden of de inhoud kopiëren om er zeker van te zijn dat er niets verloren gaat, en deze pagina vervolgens opnieuw laden.", @@ -101,6 +108,7 @@ "DE.Controllers.ApplicationController.notcriticalErrorTitle": "Waarschuwing", "DE.Controllers.ApplicationController.openErrorText": "Er is een fout opgetreden bij het openen van het bestand", "DE.Controllers.ApplicationController.saveErrorText": "Er is een fout opgetreden bij het opslaan van het bestand", + "DE.Controllers.ApplicationController.saveErrorTextDesktop": "Dit bestand kan niet worden opgeslagen of gemaakt.
Mogelijke redenen zijn:
1. Het bestand is alleen-lezen.
2. Het bestand wordt bewerkt door andere gebruikers.
3. De schijf is vol of beschadigd.", "DE.Controllers.ApplicationController.scriptLoadError": "De verbinding is te langzaam, sommige componenten konden niet geladen worden. Laad de pagina opnieuw.", "DE.Controllers.ApplicationController.textAnonymous": "Anoniem", "DE.Controllers.ApplicationController.textBuyNow": "Website bezoeken", @@ -112,6 +120,8 @@ "DE.Controllers.ApplicationController.textNoLicenseTitle": "Licentielimiet bereikt", "DE.Controllers.ApplicationController.textOf": "van", "DE.Controllers.ApplicationController.textRequired": "Vul alle verplichte velden in om het formulier te verzenden.", + "DE.Controllers.ApplicationController.textSaveAs": "Opslaan als PDF", + "DE.Controllers.ApplicationController.textSaveAsDesktop": "Opslaan als...", "DE.Controllers.ApplicationController.textSubmited": "Formulier succesvol ingediend
Klik om de tip te sluiten", "DE.Controllers.ApplicationController.titleServerVersion": "Editor bijgewerkt", "DE.Controllers.ApplicationController.titleUpdateVersion": "Versie gewijzigd", @@ -122,6 +132,7 @@ "DE.Controllers.ApplicationController.txtEmpty": "(Leeg)", "DE.Controllers.ApplicationController.txtEnterDate": "Vul een datum in", "DE.Controllers.ApplicationController.txtPressLink": "Druk op Ctrl en klik op koppeling", + "DE.Controllers.ApplicationController.txtUntitled": "Naamloos", "DE.Controllers.ApplicationController.unknownErrorText": "Onbekende fout.", "DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "Uw browser wordt niet ondersteund.", "DE.Controllers.ApplicationController.uploadImageExtMessage": "Onbekende afbeeldingsindeling.", @@ -139,7 +150,9 @@ "DE.Views.ApplicationView.textNext": "Volgende veld ", "DE.Views.ApplicationView.textPaste": "Plakken", "DE.Views.ApplicationView.textPrintSel": "Selectie afdrukken", + "DE.Views.ApplicationView.textRedo": "Opnieuw", "DE.Views.ApplicationView.textSubmit": "Indienen", + "DE.Views.ApplicationView.textUndo": "Ongedaan maken", "DE.Views.ApplicationView.txtDarkMode": "Donkere modus", "DE.Views.ApplicationView.txtDownload": "Downloaden", "DE.Views.ApplicationView.txtDownloadDocx": "Downloaden als docx", diff --git a/apps/documenteditor/forms/locale/pt.json b/apps/documenteditor/forms/locale/pt.json index 1d69d59ca..b08cf9f4d 100644 --- a/apps/documenteditor/forms/locale/pt.json +++ b/apps/documenteditor/forms/locale/pt.json @@ -147,12 +147,15 @@ "DE.Views.ApplicationView.textClear": "Limpar todos os campos", "DE.Views.ApplicationView.textCopy": "Copiar", "DE.Views.ApplicationView.textCut": "Cortar", + "DE.Views.ApplicationView.textFitToPage": "Ajustar a página", + "DE.Views.ApplicationView.textFitToWidth": "Ajustar largura", "DE.Views.ApplicationView.textNext": "Próximo campo", "DE.Views.ApplicationView.textPaste": "Colar", "DE.Views.ApplicationView.textPrintSel": "Imprimir seleção", "DE.Views.ApplicationView.textRedo": "Refazer", "DE.Views.ApplicationView.textSubmit": "Enviar", "DE.Views.ApplicationView.textUndo": "Desfazer", + "DE.Views.ApplicationView.textZoom": "Zoom", "DE.Views.ApplicationView.txtDarkMode": "Modo escuro", "DE.Views.ApplicationView.txtDownload": "Download", "DE.Views.ApplicationView.txtDownloadDocx": "Baixar como docx", diff --git a/apps/documenteditor/forms/locale/ru.json b/apps/documenteditor/forms/locale/ru.json index 8d1f63bf9..7c0b40bf2 100644 --- a/apps/documenteditor/forms/locale/ru.json +++ b/apps/documenteditor/forms/locale/ru.json @@ -147,6 +147,8 @@ "DE.Views.ApplicationView.textClear": "Очистить все поля", "DE.Views.ApplicationView.textCopy": "Копировать", "DE.Views.ApplicationView.textCut": "Вырезать", + "DE.Views.ApplicationView.textFitToPage": "По размеру страницы", + "DE.Views.ApplicationView.textFitToWidth": "По ширине", "DE.Views.ApplicationView.textNext": "Следующее поле", "DE.Views.ApplicationView.textPaste": "Вставить", "DE.Views.ApplicationView.textPrintSel": "Напечатать выделенное", diff --git a/apps/documenteditor/forms/locale/tr.json b/apps/documenteditor/forms/locale/tr.json index 42f4d0f3e..c317dee4a 100644 --- a/apps/documenteditor/forms/locale/tr.json +++ b/apps/documenteditor/forms/locale/tr.json @@ -57,8 +57,11 @@ "Common.Views.EmbedDialog.txtCopy": "Panoya kopyala", "Common.Views.EmbedDialog.warnCopy": "Tarayıcı hatası! [Ctrl] + [C] klavye kısayolunu kullanın", "Common.Views.OpenDialog.closeButtonText": "Dosyayı Kapat", + "Common.Views.OpenDialog.txtEncoding": "Kodlama", + "Common.Views.OpenDialog.txtIncorrectPwd": "Şifre hatalı.", "Common.Views.OpenDialog.txtOpenFile": "Dosyayı Açmak için Parola Girin", "Common.Views.OpenDialog.txtPassword": "Şifre", + "Common.Views.OpenDialog.txtProtected": "Şifreyi girip dosyayı açtığınızda, dosyanın mevcut şifresi sıfırlanacaktır.", "Common.Views.OpenDialog.txtTitle": "%1 seçenekleri seçin", "Common.Views.SaveAsDlg.textLoading": "Yükleniyor", "Common.Views.SaveAsDlg.textTitle": "Kaydetmek için klasör", @@ -72,6 +75,7 @@ "DE.Controllers.ApplicationController.downloadErrorText": "Yükleme başarısız oldu.", "DE.Controllers.ApplicationController.downloadTextText": "Döküman yükleniyor...", "DE.Controllers.ApplicationController.errorAccessDeny": "Hakkınız olmayan bir eylem gerçekleştirmeye çalışıyorsunuz.
Lütfen Belge Sunucu yöneticinize başvurun.", + "DE.Controllers.ApplicationController.errorBadImageUrl": "Resim URL'si yanlış", "DE.Controllers.ApplicationController.errorConnectToServer": "Belge kaydedilemedi. Lütfen internet bağlantınızı kontrol edin veya yöneticiniz ile iletişime geçin.
'TAMAM' tuşuna tıkladığınızda belgeyi indirebileceksiniz.", "DE.Controllers.ApplicationController.errorDataEncrypted": "Şifreli değişiklikler alındı, deşifre edilemezler.", "DE.Controllers.ApplicationController.errorDefaultMessage": "Hata kodu: %1", @@ -89,6 +93,8 @@ "DE.Controllers.ApplicationController.errorUserDrop": "Belgeye şu an erişilemiyor.", "DE.Controllers.ApplicationController.errorViewerDisconnect": "Bağlantı kayboldu. Belgeyi yine de görüntüleyebilirsiniz,
ancak bağlantı yeniden kurulana ve sayfa yeniden yüklenene kadar indiremez veya yazdıramazsınız.", "DE.Controllers.ApplicationController.mniImageFromFile": "Dosyadan resim", + "DE.Controllers.ApplicationController.mniImageFromStorage": "Depolamadan Resim", + "DE.Controllers.ApplicationController.mniImageFromUrl": "URL'den resim", "DE.Controllers.ApplicationController.notcriticalErrorTitle": "Uyarı", "DE.Controllers.ApplicationController.openErrorText": "Dosya açılırken bir hata oluştu.", "DE.Controllers.ApplicationController.saveErrorText": "Dosya kaydedilirken bir hata oluştu", @@ -128,6 +134,8 @@ "DE.Views.ApplicationView.textClear": "Tüm alanları temizle", "DE.Views.ApplicationView.textCopy": "Kopyala", "DE.Views.ApplicationView.textCut": "Kes", + "DE.Views.ApplicationView.textFitToPage": "Sayfaya Sığdır", + "DE.Views.ApplicationView.textFitToWidth": "Genişliğe Sığdır", "DE.Views.ApplicationView.textNext": "Sonraki alan", "DE.Views.ApplicationView.textPaste": "Yapıştır", "DE.Views.ApplicationView.textPrintSel": "Seçimi Yazdır", diff --git a/apps/documenteditor/main/locale/ca.json b/apps/documenteditor/main/locale/ca.json index 16415dee9..58d8509dc 100644 --- a/apps/documenteditor/main/locale/ca.json +++ b/apps/documenteditor/main/locale/ca.json @@ -1,6 +1,6 @@ { "Common.Controllers.Chat.notcriticalErrorTitle": "Advertiment", - "Common.Controllers.Chat.textEnterMessage": "Introdueix el teu missatge aquí", + "Common.Controllers.Chat.textEnterMessage": "Introduïu el missatge aquí", "Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anònim", "Common.Controllers.ExternalDiagramEditor.textClose": "Tanca", "Common.Controllers.ExternalDiagramEditor.warningText": "L’objecte s'ha desactivat perquè un altre usuari ja el té obert.", @@ -164,14 +164,16 @@ "Common.UI.ComboDataView.emptyComboText": "Sense estils", "Common.UI.ExtendedColorDialog.addButtonText": "Afegeix", "Common.UI.ExtendedColorDialog.textCurrent": "Actual", - "Common.UI.ExtendedColorDialog.textHexErr": "El valor introduït no és correcte.
Introdueix 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": "Crea", - "Common.UI.ExtendedColorDialog.textRGBErr": "El valor introduït no és correcte.
Introdueix un valor numèric entre 0 i 255.", + "Common.UI.ExtendedColorDialog.textRGBErr": "El valor introduït no és correcte.
Introduïu un valor numèric entre 0 i 255.", "Common.UI.HSBColorPicker.textNoColor": "Sense color", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Amaga la contrasenya", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Mostra la contrasenya", "Common.UI.SearchDialog.textHighlight": "Ressalta els resultats", "Common.UI.SearchDialog.textMatchCase": "Sensible a majúscules i minúscules", - "Common.UI.SearchDialog.textReplaceDef": "Introdueix el text de substitució", - "Common.UI.SearchDialog.textSearchStart": "Introdueix el teu text aquí", + "Common.UI.SearchDialog.textReplaceDef": "Introduïu el text de substitució", + "Common.UI.SearchDialog.textSearchStart": "Introduïu el text aquí", "Common.UI.SearchDialog.textTitle": "Cerca i substitueix", "Common.UI.SearchDialog.textTitle2": "Cerca", "Common.UI.SearchDialog.textWholeWords": "Només paraules senceres", @@ -179,7 +181,7 @@ "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.
Fes clic per desar els canvis i carregar les actualitzacions.", + "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àndard", "Common.UI.ThemeColorPalette.textThemeColors": "Colors del tema", "Common.UI.Themes.txtThemeClassicLight": "Llum clàssica", @@ -211,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Llistes automàtiques de pics", "Common.Views.AutoCorrectDialog.textBy": "Per", "Common.Views.AutoCorrectDialog.textDelete": "Suprimeix", + "Common.Views.AutoCorrectDialog.textFLCells": "Posa en majúscula la primera lletra de les cel·les de la taula", "Common.Views.AutoCorrectDialog.textFLSentence": "Escriu en majúscules la primera lletra de les frases", "Common.Views.AutoCorrectDialog.textHyperlink": "Camins de xarxa i d'Internet per enllaços", "Common.Views.AutoCorrectDialog.textHyphens": "Guionets (--) per guió llarg (—)", @@ -227,36 +230,39 @@ "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 hagis afegit se suprimirà i es restabliran les eliminades. 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 vols substituir?", - "Common.Views.AutoCorrectDialog.warnReset": "Qualsevol autocorrecció que hagis afegit se suprimirà i les modificades recuperaran els seus valors originals. Vols continuar?", + "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": "Envia", "Common.Views.Comments.mniAuthorAsc": "Autor de la A a la Z", "Common.Views.Comments.mniAuthorDesc": "Autor de la Z a la A", "Common.Views.Comments.mniDateAsc": "Més antic", "Common.Views.Comments.mniDateDesc": "Més recent", + "Common.Views.Comments.mniFilterGroups": "Filtra per grup", "Common.Views.Comments.mniPositionAsc": "Des de dalt", "Common.Views.Comments.mniPositionDesc": "Des de baix", "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.textAll": "Tot", "Common.Views.Comments.textAnonym": "Convidat", "Common.Views.Comments.textCancel": "Cancel·la", "Common.Views.Comments.textClose": "Tanca", - "Common.Views.Comments.textClosePanel": "Tanca els comentaris", + "Common.Views.Comments.textClosePanel": "Tanqueu els comentaris", "Common.Views.Comments.textComments": "Comentaris", "Common.Views.Comments.textEdit": "D'acord", - "Common.Views.Comments.textEnterCommentHint": "Introdueix el teu comentari aquí", + "Common.Views.Comments.textEnterCommentHint": "Introduïu el 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": "S'ha resolt", "Common.Views.Comments.textSort": "Ordena els comentaris", + "Common.Views.Comments.textViewResolved": "No teniu permís per tornar a obrir el comentari", "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, utilitza les combinacions de teclat següents:", + "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", @@ -310,10 +316,10 @@ "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": "Introdueix una contrasenya per obrir el fitxer", + "Common.Views.OpenDialog.txtOpenFile": "Introduïu una contrasenya per obrir el fitxer", "Common.Views.OpenDialog.txtPassword": "Contrasenya", "Common.Views.OpenDialog.txtPreview": "Visualització prèvia", - "Common.Views.OpenDialog.txtProtected": "Un cop introdueixis la contrasenya i obris 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 les opcions %1", "Common.Views.OpenDialog.txtTitleProtected": "El fitxer està protegit", "Common.Views.PasswordDialog.txtDescription": "Estableix una contrasenya per protegir aquest document", @@ -352,7 +358,7 @@ "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": "Vols habilitar el control de canvis per a tothom?", + "Common.Views.ReviewChanges.textWarnTrackChangesTitle": "Voleu 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", @@ -431,6 +437,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Torna-ho a obrir", "Common.Views.ReviewPopover.textReply": "Respon", "Common.Views.ReviewPopover.textResolve": "Resol", + "Common.Views.ReviewPopover.textViewResolved": "No teniu permís per tornar a obrir el comentari", "Common.Views.ReviewPopover.txtAccept": "Accepta ", "Common.Views.ReviewPopover.txtDeleteTip": "Suprimeix", "Common.Views.ReviewPopover.txtEditTip": "Edita", @@ -498,17 +505,17 @@ "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. Ajusta les opcions de cerca.", + "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'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às utilitzar totes les funcions de l'editor, però podria afectar la disposició del document.
Usa l'opció 'Compatibilitat' de la configuració avançada si vols 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.
Useu 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 continues i deses en aquest format, es perdran totes les característiques, excepte el text.
Vols continuar?", - "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Si continues i deses en aquest format, es pot perdre part del format.
Vols continuar?", + "DE.Controllers.LeftMenu.warnDownloadAs": "Si continueu i deseu en aquest format, es perdran totes les característiques, excepte el text.
Voleu continuar?", + "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Si continueu i deseu en aquest format, es pot perdre part del format.
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": "Prem \"Acceptar\" per tornar a la llista de documents.", + "DE.Controllers.Main.criticalErrorExtText": "Premeu \"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...", @@ -520,18 +527,18 @@ "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, selecciona 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. Comprova la configuració de la connexió o contacta amb el teu administrador.
Quan facis clic en e botó \"D'acord\", et demanarà que descarreguis el document.", - "DE.Controllers.Main.errorDatabaseConnection": "Error extern.
Error de connexió amb la base de dades. Contacta amb l'assistència tècnica en cas que l'error continuï.", + "DE.Controllers.Main.errorConnectToServer": "No s'ha pogut desar el document. Comproveu la configuració de la connexió o contacteu amb l'administrador.
Quan feu clic al 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ï.", "DE.Controllers.Main.errorDataEncrypted": "S'han rebut canvis xifrats, que no es poden desxifrar.", "DE.Controllers.Main.errorDataRange": "L'interval de dades no és correcte.", "DE.Controllers.Main.errorDefaultMessage": "Codi d'error:%1", - "DE.Controllers.Main.errorDirectUrl": "Verifica l'enllaç al document.
Aquest enllaç ha de ser un enllaç directe al fitxer per baixar-lo.", - "DE.Controllers.Main.errorEditingDownloadas": "S'ha produït un error mentre es treballava amb el document.
Utilitza l'opció \"Baixa-ho com a ...\" per desar la còpia de seguretat del fitxer al disc dur de l'ordinador.", - "DE.Controllers.Main.errorEditingSaveas": "S'ha produït un error mentre es treballava amb el document.
Utilitza l'opció \"Desa com a ...\" per desar la còpia de seguretat del fitxer al disc dur de l’ordinador.", + "DE.Controllers.Main.errorDirectUrl": "Verifiqueu l'enllaç al document.
Aquest enllaç ha de ser un enllaç directe al fitxer per baixar-lo.", + "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 de l'ordinador.", + "DE.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.", "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 teu servidor. Contacta amb el teu administrador del servidor de documents per obtenir més informació.", - "DE.Controllers.Main.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitza l'opció \"Baixa-ho com a\" per desar el fitxer al disc dur de l’ordinador o torna-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.errorLoadingFont": "No s'han carregat els tipus de lletra.
Contacta amb l'administrador del Servidor de Documents.", @@ -539,19 +546,19 @@ "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. Torna a carregar la pàgina.", - "DE.Controllers.Main.errorSessionIdle": "Fa temps que no s'obre el document. Torna a carregar la pàgina.", - "DE.Controllers.Main.errorSessionToken": "S'ha interromput la connexió amb el servidor. Torna a carregar la pàgina.", + "DE.Controllers.Main.errorSessionAbsolute": "La sessió d’edició del document ha caducat. 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": "L'ordre de fila no és correcte. Per crear un gràfic de valors, col·loca les dades del full en l’ordre següent:
preu d’obertura, preu màxim, preu mínim, preu de tancament.", + "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.
Contacta amb el teu administrador del servidor de documents.", - "DE.Controllers.Main.errorTokenExpire": "El testimoni de seguretat del document ha caducat.
Contacta amb l'administrador del servidor de documents.", + "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 l'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": "S'ha restaurat la connexió a internet i la versió del fitxer ha canviat.
Abans de continuar treballant, has de baixar el fitxer o copiar-ne el contingut per assegurar-te que no es perdi res i, després, torna 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 teu pla", - "DE.Controllers.Main.errorViewerDisconnect": "S'ha perdut la connexió. Encara pots visualitzar el document,
però no el podràs baixar ni imprimir fins que no es restableixi la connexió i es torni a carregar la pàgina.", + "DE.Controllers.Main.errorViewerDisconnect": "S'ha perdut la connexió. Encara podeu visualitzar el document,
però no el podreu baixar ni imprimir fins que no es restableixi la connexió i es torni a carregar la pàgina.", "DE.Controllers.Main.leavePageText": "Has fet canvis en aquest document que no s'han desat. Fes clic a \"Queda't en aquesta pàgina\" i, a continuació, \"Desar\" per desar-les. Fes clic 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.
Fes clic a \"Cancel·lar\" i, a continuació, \"Desar\" per desar-los. Fes clic a \"D'acord\" per descartar tots els canvis que no s'hagin desat.", "DE.Controllers.Main.loadFontsTextText": "S'estan carregant les dades...", @@ -573,13 +580,13 @@ "DE.Controllers.Main.printTextText": "S'està imprimint el document...", "DE.Controllers.Main.printTitleText": "S'està imprimint el document", "DE.Controllers.Main.reloadButtonText": "Torna a carregar la pàgina", - "DE.Controllers.Main.requestEditFailedMessageText": "Algú té obert ara aquest document. Intenta-ho més tard.", + "DE.Controllers.Main.requestEditFailedMessageText": "Algú té obert 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.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. Torna a carregar la pàgina.", + "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.splitDividerErrorText": "El nombre de files ha de ser un divisor de %1.", @@ -590,21 +597,22 @@ "DE.Controllers.Main.textBuyNow": "Visitar el lloc web", "DE.Controllers.Main.textChangesSaved": "S'han desat tots els canvis", "DE.Controllers.Main.textClose": "Tanca", - "DE.Controllers.Main.textCloseTip": "Fes clic per tancar el consell", + "DE.Controllers.Main.textCloseTip": "Feu clic 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, converteix l’equació al format d’Office Math ML.
Vols convertir-ho ara?", - "DE.Controllers.Main.textCustomLoader": "Tingues en compte que, segons els termes de la llicència, no tens dret a canviar el carregador.
Contacta amb 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.textDisconnect": "S'ha perdut la connexió", "DE.Controllers.Main.textGuest": "Convidat", "DE.Controllers.Main.textHasMacros": "El fitxer conté macros automàtiques.
Les vols executar?", "DE.Controllers.Main.textLearnMore": "Més informació", "DE.Controllers.Main.textLoadingDocument": "S'està carregant el document", - "DE.Controllers.Main.textLongName": "Introdueix un nom que tingui menys de 128 caràcters.", + "DE.Controllers.Main.textLongName": "Introduïu 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.textReconnect": "S'ha restablert la connexió", "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": "Introdueix un nom que s'utilitzarà 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 desfés/refés per al mode de coedició ràpida. Fes clic 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 hagis desat. Pots canviar entre els modes de coedició mitjançant l'editor \"Paràmetres avançats\".", @@ -621,7 +629,7 @@ "DE.Controllers.Main.txtCallouts": "Crides", "DE.Controllers.Main.txtCharts": "Gràfics", "DE.Controllers.Main.txtChoose": "Tria un element", - "DE.Controllers.Main.txtClickToLoad": "Fes clic per carregar la imatge", + "DE.Controllers.Main.txtClickToLoad": "Feu clic per carregar la imatge", "DE.Controllers.Main.txtCurrentDocument": "Document actual", "DE.Controllers.Main.txtDiagramTitle": "Títol del gràfic", "DE.Controllers.Main.txtEditingMode": "Estableix el mode d'edició ...", @@ -866,19 +874,20 @@ "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": "Espera...", + "DE.Controllers.Main.waitText": "Espereu...", "DE.Controllers.Main.warnBrowserIE9": "L’aplicació té poca capacitat en IE9. Utilitza IE10 o superior", "DE.Controllers.Main.warnBrowserZoom": "La configuració de zoom actual del navegador no és compatible del tot. Restableix el zoom per defecte tot prement Ctrl+0.", "DE.Controllers.Main.warnLicenseExceeded": "Has arribat al límit de connexions simultànies amb %1 editors. Aquest document només s'obrirà en mode lectura.
Contacta amb el teu administrador per obtenir més informació.", "DE.Controllers.Main.warnLicenseExp": "La teva llicència ha caducat.
Actualitza la llicència i torna a carregar la pàgina.", - "DE.Controllers.Main.warnLicenseLimitedNoAccess": "La llicència ha caducat.
No tens accés a la funció d'edició de documents.
Contacta amb el teu administrador.", - "DE.Controllers.Main.warnLicenseLimitedRenewed": "Cal renovar la llicència.
Tens un accés limitat a la funció d'edició de documents.
Contacta amb el teu administrador per obtenir accés total", + "DE.Controllers.Main.warnLicenseLimitedNoAccess": "La llicència ha caducat.
No teniu accés a la funció d'edició de documents.
Contacteu amb l'administrador.", + "DE.Controllers.Main.warnLicenseLimitedRenewed": "Cal renovar la llicència.
Teniu accés limitat a la funció d'edició de documents.
Contacteu amb l'administrador per obtenir accés total", "DE.Controllers.Main.warnLicenseUsersExceeded": "Has arribat al límit d'usuari per a %1 editors. Contacta amb el teu administrador per a més informació.", "DE.Controllers.Main.warnNoLicense": "Has arribat al límit de connexions simultànies per als editors %1. Aquest document s'obrirà al mode de només lectura. Contacta l'equip de vendes %1 per a les condicions personals de millora del servei.", "DE.Controllers.Main.warnNoLicenseUsers": "Has arribat al límit d'usuaris per a %1 editors. Contacta amb l'equip de vendes de %1 per obtenir les condicions de millora personals dels teus serveis.", "DE.Controllers.Main.warnProcessRightsChange": "No tens permís per editar el fitxer.", "DE.Controllers.Navigation.txtBeginning": "Inici del document", "DE.Controllers.Navigation.txtGotoBeginning": "Ves al començament del document", + "DE.Controllers.Statusbar.textDisconnect": "S'ha perdut la connexió. S'està intentat connectar. Comproveu la configuració de connexió", "DE.Controllers.Statusbar.textHasChanges": "S'ha fet un seguiment dels canvis nous", "DE.Controllers.Statusbar.textSetTrackChanges": "Ets en mode de control de canvis", "DE.Controllers.Statusbar.textTrackChanges": "El document s'ha obert amb el mode de seguiment de canvis activat", @@ -891,7 +900,7 @@ "DE.Controllers.Toolbar.textBracket": "Claudàtors", "DE.Controllers.Toolbar.textEmptyImgUrl": "Cal especificar l'URL de la imatge.", "DE.Controllers.Toolbar.textEmptyMMergeUrl": "Cal especificar l’URL.", - "DE.Controllers.Toolbar.textFontSizeErr": "El valor introduït no és correcte.
Introdueix un valor numèric entre 1 i 300.", + "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": "Agrupa", @@ -902,10 +911,22 @@ "DE.Controllers.Toolbar.textMatrix": "Matrius", "DE.Controllers.Toolbar.textOperator": "Operadors", "DE.Controllers.Toolbar.textRadical": "Radicals", + "DE.Controllers.Toolbar.textRecentlyUsed": "S'ha utilitzat recentment", "DE.Controllers.Toolbar.textScript": "Scripts", "DE.Controllers.Toolbar.textSymbols": "Símbols", "DE.Controllers.Toolbar.textTabForms": "Formularis", "DE.Controllers.Toolbar.textWarning": "Advertiment", + "DE.Controllers.Toolbar.tipMarkersArrow": "Pics de fletxa", + "DE.Controllers.Toolbar.tipMarkersCheckmark": "Pics de marca de selecció", + "DE.Controllers.Toolbar.tipMarkersDash": "Pics de guió", + "DE.Controllers.Toolbar.tipMarkersFRhombus": "Pics de rombes plens", + "DE.Controllers.Toolbar.tipMarkersFRound": "Pics rodons plens", + "DE.Controllers.Toolbar.tipMarkersFSquare": "Pics quadrats plens", + "DE.Controllers.Toolbar.tipMarkersHRound": "Pics rodons buits", + "DE.Controllers.Toolbar.tipMarkersStar": "Pics d'estrella", + "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Pics numerats multinivell ", + "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Pics de símbols multinivell", + "DE.Controllers.Toolbar.tipMultiLevelVarious": "Pics numerats de diferents nivells", "DE.Controllers.Toolbar.txtAccent_Accent": "Agut", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Fletxa dreta-esquerra superior", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Fletxa esquerra a sobre", @@ -1224,7 +1245,7 @@ "DE.Controllers.Toolbar.txtSymbol_vdots": "El·lipsi vertical", "DE.Controllers.Toolbar.txtSymbol_xsi": "Ksi", "DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", - "DE.Controllers.Viewport.textFitPage": "Ajusta a la pàgina", + "DE.Controllers.Viewport.textFitPage": "Ajusta-ho a la pàgina", "DE.Controllers.Viewport.textFitWidth": "Ajusta-ho a l'amplària", "DE.Controllers.Viewport.txtDarkMode": "Mode fosc", "DE.Views.AddNewCaptionLabelDialog.textLabel": "Etiqueta:", @@ -1281,9 +1302,9 @@ "DE.Views.ChartSettings.textUndock": "Desacobla del tauler", "DE.Views.ChartSettings.textWidth": "Amplada", "DE.Views.ChartSettings.textWrap": "Estil d'ajustament", - "DE.Views.ChartSettings.txtBehind": "Darrere", - "DE.Views.ChartSettings.txtInFront": "Davant", - "DE.Views.ChartSettings.txtInline": "En línia", + "DE.Views.ChartSettings.txtBehind": "Darrere el text", + "DE.Views.ChartSettings.txtInFront": "Davant del text", + "DE.Views.ChartSettings.txtInline": "En línia amb el text", "DE.Views.ChartSettings.txtSquare": "Quadrat", "DE.Views.ChartSettings.txtThrough": "A través", "DE.Views.ChartSettings.txtTight": "Estret", @@ -1457,6 +1478,7 @@ "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.textEditPoints": "Edita els punts", "DE.Views.DocumentHolder.textEditWrapBoundary": "Edita el límit de l’ajustament", "DE.Views.DocumentHolder.textFlipH": "Capgira horitzontalment", "DE.Views.DocumentHolder.textFlipV": "Capgira verticalment", @@ -1505,6 +1527,14 @@ "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.tipMarkersArrow": "Pics de fletxa", + "DE.Views.DocumentHolder.tipMarkersCheckmark": "Pics de marca de selecció", + "DE.Views.DocumentHolder.tipMarkersDash": "Pics de guió", + "DE.Views.DocumentHolder.tipMarkersFRhombus": "Pics de rombes plens", + "DE.Views.DocumentHolder.tipMarkersFRound": "Pics rodons plens", + "DE.Views.DocumentHolder.tipMarkersFSquare": "Pics quadrats plens", + "DE.Views.DocumentHolder.tipMarkersHRound": "Pics rodons buits", + "DE.Views.DocumentHolder.tipMarkersStar": "Pics d'estrella", "DE.Views.DocumentHolder.toDictionaryText": "Afegeix al diccionari", "DE.Views.DocumentHolder.txtAddBottom": "Afegeix una línia inferior", "DE.Views.DocumentHolder.txtAddFractionBar": "Afegeix una barra de fracció", @@ -1516,7 +1546,7 @@ "DE.Views.DocumentHolder.txtAddTop": "Afegeix una vora superior", "DE.Views.DocumentHolder.txtAddVer": "Afegeix una línia vertical", "DE.Views.DocumentHolder.txtAlignToChar": "Alineació al caràcter", - "DE.Views.DocumentHolder.txtBehind": "Darrere", + "DE.Views.DocumentHolder.txtBehind": "Darrere el text", "DE.Views.DocumentHolder.txtBorderProps": "Propietats de la vora", "DE.Views.DocumentHolder.txtBottom": "Part inferior", "DE.Views.DocumentHolder.txtColumnAlign": "Alineació de la columna", @@ -1552,8 +1582,8 @@ "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.txtInFront": "Davant del text", + "DE.Views.DocumentHolder.txtInline": "En línia amb el text", "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", @@ -1569,13 +1599,13 @@ "DE.Views.DocumentHolder.txtOverbar": "Barra sobre el text", "DE.Views.DocumentHolder.txtOverwriteCells": "Sobreescriu les cel·les", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Conserva el format original", - "DE.Views.DocumentHolder.txtPressLink": "Prem CTRL i fes clic a l'enllaç", + "DE.Views.DocumentHolder.txtPressLink": "Premeu CTRL i feu clic a l'enllaç", "DE.Views.DocumentHolder.txtPrintSelection": "Imprimeix la selecció", "DE.Views.DocumentHolder.txtRemFractionBar": "Suprimeix la barra de fracció", "DE.Views.DocumentHolder.txtRemLimit": "Suprimeix el límit", "DE.Views.DocumentHolder.txtRemoveAccentChar": "Suprimeix el caràcter d'accent", "DE.Views.DocumentHolder.txtRemoveBar": "Suprimeix la barra", - "DE.Views.DocumentHolder.txtRemoveWarning": "Vols eliminar aquesta signatura?
No es podrà desfer.", + "DE.Views.DocumentHolder.txtRemoveWarning": "Voleu eliminar aquesta signatura?
No es podrà desfer.", "DE.Views.DocumentHolder.txtRemScripts": "Suprimeix els scripts", "DE.Views.DocumentHolder.txtRemSubscript": "Suprimeix el subíndex", "DE.Views.DocumentHolder.txtRemSuperscript": "Suprimeix el superíndex", @@ -1595,7 +1625,7 @@ "DE.Views.DocumentHolder.txtTopAndBottom": "Superior i inferior", "DE.Views.DocumentHolder.txtUnderbar": "Barra sota el text", "DE.Views.DocumentHolder.txtUngroup": "Desagrupa", - "DE.Views.DocumentHolder.txtWarnUrl": "Si fas clic en aquest enllaç, pots perjudicar el dispositiu i les dades.
Segur que vols continuar?", + "DE.Views.DocumentHolder.txtWarnUrl": "Si feu clic en aquest enllaç podeu perjudicar el dispositiu i les dades.
Segur que voleu continuar?", "DE.Views.DocumentHolder.updateStyleText": "Actualitzar estil %1", "DE.Views.DocumentHolder.vertAlignText": "Alineació vertical", "DE.Views.DropcapSettingsAdvanced.strBorders": "Vores i emplenament", @@ -1606,7 +1636,7 @@ "DE.Views.DropcapSettingsAdvanced.textAuto": "Automàtic", "DE.Views.DropcapSettingsAdvanced.textBackColor": "Color de fons", "DE.Views.DropcapSettingsAdvanced.textBorderColor": "Color de la vora", - "DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Fes clic en el diagrama o utilitza els botons per seleccionar les vores", + "DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Feu clic 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": "Centra", @@ -1696,7 +1726,7 @@ "DE.Views.FileMenuPanels.ProtectDoc.strProtect": "Protegeix el document", "DE.Views.FileMenuPanels.ProtectDoc.strSignature": "Amb signatura", "DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Edita el document", - "DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "L’edició eliminarà les signatures del document.
Segur que vols continuar?", + "DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "L’edició eliminarà les signatures del document.
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 contra l'edició.", @@ -1744,7 +1774,7 @@ "DE.Views.FileMenuPanels.Settings.txtChangesTip": "Mostra en passar el cursor per damunt dels indicadors de funció", "DE.Views.FileMenuPanels.Settings.txtCm": "Centímetre", "DE.Views.FileMenuPanels.Settings.txtDarkMode": "Activa el mode fosc del document", - "DE.Views.FileMenuPanels.Settings.txtFitPage": "Ajusta a la pàgina", + "DE.Views.FileMenuPanels.Settings.txtFitPage": "Ajusta-ho 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", @@ -1820,7 +1850,7 @@ "DE.Views.FormsTab.textGotIt": "Ho tinc", "DE.Views.FormsTab.textHighlight": "Ressalta la configuració", "DE.Views.FormsTab.textNoHighlight": "Sense ressaltar", - "DE.Views.FormsTab.textRequired": "Emplena tots els camps necessaris per enviar el formulari.", + "DE.Views.FormsTab.textRequired": "Empleneu tots els camps necessaris per enviar el formulari.", "DE.Views.FormsTab.textSubmited": "El formulari s'ha enviat correctament", "DE.Views.FormsTab.tipCheckBox": "Insereix una casella de selecció", "DE.Views.FormsTab.tipComboBox": "Insereix un quadre combinat", @@ -1871,9 +1901,10 @@ "DE.Views.ImageSettings.textCrop": "Retalla", "DE.Views.ImageSettings.textCropFill": "Emplena", "DE.Views.ImageSettings.textCropFit": "Ajusta", + "DE.Views.ImageSettings.textCropToShape": "Escapça per donar forma", "DE.Views.ImageSettings.textEdit": "Edita", "DE.Views.ImageSettings.textEditObject": "Edita l'objecte", - "DE.Views.ImageSettings.textFitMargins": "Ajusta al marge", + "DE.Views.ImageSettings.textFitMargins": "Ajusta-ho al marge", "DE.Views.ImageSettings.textFlip": "Capgira", "DE.Views.ImageSettings.textFromFile": "Des d'un fitxer", "DE.Views.ImageSettings.textFromStorage": "Des de l’emmagatzematge", @@ -1885,14 +1916,15 @@ "DE.Views.ImageSettings.textHintFlipV": "Capgira verticalment", "DE.Views.ImageSettings.textInsert": "Substitueix la imatge", "DE.Views.ImageSettings.textOriginalSize": "Mida real", + "DE.Views.ImageSettings.textRecentlyUsed": "S'ha utilitzat recentment", "DE.Views.ImageSettings.textRotate90": "Gira 90°", "DE.Views.ImageSettings.textRotation": "Rotació", "DE.Views.ImageSettings.textSize": "Mida", "DE.Views.ImageSettings.textWidth": "Amplada", "DE.Views.ImageSettings.textWrap": "Estil d'ajustament", - "DE.Views.ImageSettings.txtBehind": "Darrere", - "DE.Views.ImageSettings.txtInFront": "Davant", - "DE.Views.ImageSettings.txtInline": "En línia", + "DE.Views.ImageSettings.txtBehind": "Darrere el text", + "DE.Views.ImageSettings.txtInFront": "Davant del text", + "DE.Views.ImageSettings.txtInline": "En línia amb el text", "DE.Views.ImageSettings.txtSquare": "Quadrat", "DE.Views.ImageSettings.txtThrough": "A través", "DE.Views.ImageSettings.txtTight": "Estret", @@ -1965,9 +1997,9 @@ "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Pesos i fletxes", "DE.Views.ImageSettingsAdvanced.textWidth": "Amplada", "DE.Views.ImageSettingsAdvanced.textWrap": "Estil d'ajustament", - "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Darrere", - "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Davant", - "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "En línia", + "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Darrere el text", + "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Davant del text", + "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "En línia amb el text", "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Quadrat", "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "A través", "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Estret", @@ -2006,8 +2038,8 @@ "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": "Vols suprimir totes les notes al peu de pàgina?", - "DE.Views.Links.confirmReplaceTOF": "Vols substituir la taula de figures seleccionada?", + "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": "Insereix una nota al final", @@ -2063,7 +2095,7 @@ "DE.Views.MailMergeEmailDlg.textTitle": "Envia per correu electrònic", "DE.Views.MailMergeEmailDlg.textTo": "Per a", "DE.Views.MailMergeEmailDlg.textWarning": "Advertiment!", - "DE.Views.MailMergeEmailDlg.textWarningMsg": "Tingues en compte que el correu no es podrà aturar un cop hagis fet clic en el botó \"Envia\".", + "DE.Views.MailMergeEmailDlg.textWarningMsg": "Tingueu en compte que el correu no es podrà aturar un cop hàgiu fet clic en el botó \"Envia\".", "DE.Views.MailMergeSettings.downloadMergeTitle": "S'està combinant", "DE.Views.MailMergeSettings.errorMailMergeSaveFile": "No s'ha pogut combinar.", "DE.Views.MailMergeSettings.notcriticalErrorTitle": "Advertiment", @@ -2087,7 +2119,7 @@ "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 aviat.
La velocitat de l'enviament dependrà del servei de correu.
Pots continuar treballant amb el document o tancar-lo. Un cop finalitzada l’operació, es trametrà la notificació a la teva adreça de correu electrònic de registre.", + "DE.Views.MailMergeSettings.textSendMsg": "Tots els missatges de correu electrònic són a punt i s'enviaran aviat.
La velocitat de l'enviament dependrà del servei de correu.
Podeu continuar treballant amb el document o tancar-lo. Un cop finalitzada l’operació, es trametrà la notificació a la vostra adreça de correu electrònic.", "DE.Views.MailMergeSettings.textTo": "Per a", "DE.Views.MailMergeSettings.txtFirst": "Al primer registre", "DE.Views.MailMergeSettings.txtFromToError": "El valor «De» ha de ser més petit que el valor «Fins a»", @@ -2155,6 +2187,11 @@ "DE.Views.PageSizeDialog.textTitle": "Mida de la pàgina", "DE.Views.PageSizeDialog.textWidth": "Amplada", "DE.Views.PageSizeDialog.txtCustom": "Personalitzat", + "DE.Views.PageThumbnails.textClosePanel": "Tanca les presentacions de miniatures de la pàgina", + "DE.Views.PageThumbnails.textHighlightVisiblePart": "Ressalta la part visible de la pàgina", + "DE.Views.PageThumbnails.textPageThumbnails": "Miniatures de la pàgina", + "DE.Views.PageThumbnails.textThumbnailsSettings": "Configuració de les miniatures", + "DE.Views.PageThumbnails.textThumbnailsSize": "Mida de les miniatures", "DE.Views.ParagraphSettings.strIndent": "Sagnats", "DE.Views.ParagraphSettings.strIndentsLeftText": "Esquerra", "DE.Views.ParagraphSettings.strIndentsRightText": "Dreta", @@ -2209,7 +2246,7 @@ "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Color de fons", "DE.Views.ParagraphSettingsAdvanced.textBodyText": "Text bàsic", "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Color de la vora", - "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Fes clic en el diagrama o utilitza els botons per seleccionar les vores i aplica-ho l'estil escollit", + "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Feu clic en el diagrama o utilitzeu els botons per seleccionar les vores i apliqueu-ho l'estil escollit", "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Mida de la vora", "DE.Views.ParagraphSettingsAdvanced.textBottom": "Part inferior", "DE.Views.ParagraphSettingsAdvanced.textCentered": "Centrat", @@ -2270,7 +2307,7 @@ "DE.Views.ShapeSettings.strType": "Tipus", "DE.Views.ShapeSettings.textAdvanced": "Mostra la configuració avançada", "DE.Views.ShapeSettings.textAngle": "Angle", - "DE.Views.ShapeSettings.textBorderSizeErr": "El valor introduït no és correcte.
Introdueix un valor entre 0 pt i 1584 pt.", + "DE.Views.ShapeSettings.textBorderSizeErr": "El valor introduït no és correcte.
Introduïu un valor entre 0 pt i 1584 pt.", "DE.Views.ShapeSettings.textColor": "Color d'emplenament", "DE.Views.ShapeSettings.textDirection": "Direcció", "DE.Views.ShapeSettings.textEmptyPattern": "Sense patró", @@ -2282,7 +2319,7 @@ "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.textHintFlipH": "Capgira horitzontalment", "DE.Views.ShapeSettings.textHintFlipV": "Capgira verticalment", "DE.Views.ShapeSettings.textImageTexture": "Imatge o textura", "DE.Views.ShapeSettings.textLinear": "Lineal", @@ -2290,6 +2327,7 @@ "DE.Views.ShapeSettings.textPatternFill": "Patró", "DE.Views.ShapeSettings.textPosition": "Posició", "DE.Views.ShapeSettings.textRadial": "Radial", + "DE.Views.ShapeSettings.textRecentlyUsed": "S'ha utilitzat recentment", "DE.Views.ShapeSettings.textRotate90": "Gira 90°", "DE.Views.ShapeSettings.textRotation": "Rotació", "DE.Views.ShapeSettings.textSelectImage": "Selecciona una imatge", @@ -2301,7 +2339,7 @@ "DE.Views.ShapeSettings.textWrap": "Estil d'ajustament", "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.txtBehind": "Darrere el text", "DE.Views.ShapeSettings.txtBrownPaper": "Paper marró", "DE.Views.ShapeSettings.txtCanvas": "Llenç", "DE.Views.ShapeSettings.txtCarton": "Cartró", @@ -2309,8 +2347,8 @@ "DE.Views.ShapeSettings.txtGrain": "Gra", "DE.Views.ShapeSettings.txtGranite": "Granit", "DE.Views.ShapeSettings.txtGreyPaper": "Paper gris", - "DE.Views.ShapeSettings.txtInFront": "Davant", - "DE.Views.ShapeSettings.txtInline": "En línia", + "DE.Views.ShapeSettings.txtInFront": "Davant del text", + "DE.Views.ShapeSettings.txtInline": "En línia amb el text", "DE.Views.ShapeSettings.txtKnit": "Teixit", "DE.Views.ShapeSettings.txtLeather": "Pell", "DE.Views.ShapeSettings.txtNoBorders": "Sense línia", @@ -2331,14 +2369,14 @@ "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.
Segur que vols continuar?", - "DE.Views.SignatureSettings.txtRemoveWarning": "Vols eliminar aquesta signatura?
No es podrà desfer.", + "DE.Views.SignatureSettings.txtEditWarning": "L’edició eliminarà les signatures del document.
Voleu continuar?", + "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 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": "Ves a la pàgina", "DE.Views.Statusbar.pageIndexText": "Pàgina {0} de {1}", - "DE.Views.Statusbar.tipFitPage": "Ajusta a la pàgina", + "DE.Views.Statusbar.tipFitPage": "Ajusta-ho a la pàgina", "DE.Views.Statusbar.tipFitWidth": "Ajusta-ho a l'amplària", "DE.Views.Statusbar.tipSetLang": "Estableix l'idioma del text", "DE.Views.Statusbar.tipZoomFactor": "Zoom", @@ -2455,7 +2493,7 @@ "DE.Views.TableSettingsAdvanced.textBackColor": "Fons de la cel·la", "DE.Views.TableSettingsAdvanced.textBelow": "més avall", "DE.Views.TableSettingsAdvanced.textBorderColor": "Color de la vora", - "DE.Views.TableSettingsAdvanced.textBorderDesc": "Fes clic en el diagrama o utilitza els botons per seleccionar les vores i aplica-ho l'estil escollit", + "DE.Views.TableSettingsAdvanced.textBorderDesc": "Feu clic en el diagrama o utilitzeu els botons per seleccionar les vores i apliqueu-ho l'estil escollit", "DE.Views.TableSettingsAdvanced.textBordersBackgroung": "Vores i fons", "DE.Views.TableSettingsAdvanced.textBorderWidth": "Mida de la vora", "DE.Views.TableSettingsAdvanced.textBottom": "Part inferior", @@ -2530,7 +2568,7 @@ "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.
Introdueix un valor entre 0 pt i 1584 pt.", + "DE.Views.TextArtSettings.textBorderSizeErr": "El valor introduït no és correcte.
Introduïu un valor entre 0 pt i 1584 pt.", "DE.Views.TextArtSettings.textColor": "Color d'emplenament", "DE.Views.TextArtSettings.textDirection": "Direcció", "DE.Views.TextArtSettings.textGradient": "Degradat", @@ -2681,6 +2719,7 @@ "DE.Views.Toolbar.textTabLinks": "Referències", "DE.Views.Toolbar.textTabProtect": "Protecció", "DE.Views.Toolbar.textTabReview": "Revisió", + "DE.Views.Toolbar.textTabView": "Visualització", "DE.Views.Toolbar.textTitleError": "Error", "DE.Views.Toolbar.textToCurrent": "A la posició actual", "DE.Views.Toolbar.textTop": "Superior:", @@ -2742,7 +2781,7 @@ "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. Fes clic per desar els canvis i carregar les actualitzacions.", + "DE.Views.Toolbar.tipSynchronize": "Un altre usuari ha canviat el document. Feu clic per desar els canvis i carregar les actualitzacions.", "DE.Views.Toolbar.tipUndo": "Desfer", "DE.Views.Toolbar.tipWatermark": "Edita la filigrana", "DE.Views.Toolbar.txtDistribHor": "Distribueix horitzontalment", @@ -2772,6 +2811,15 @@ "DE.Views.Toolbar.txtScheme7": "Equitat", "DE.Views.Toolbar.txtScheme8": "Flux", "DE.Views.Toolbar.txtScheme9": "Foneria", + "DE.Views.ViewTab.textAlwaysShowToolbar": "Mostra sempre la barra", + "DE.Views.ViewTab.textDarkDocument": "Document fosc", + "DE.Views.ViewTab.textFitToPage": "Ajusta-ho a la pàgina", + "DE.Views.ViewTab.textFitToWidth": "Ajusta-ho a l'amplària", + "DE.Views.ViewTab.textInterfaceTheme": "Tema de la interfície", + "DE.Views.ViewTab.textNavigation": "Navegació", + "DE.Views.ViewTab.textRulers": "Regles", + "DE.Views.ViewTab.textStatusBar": "Barra d'estat", + "DE.Views.ViewTab.textZoom": "Zoom", "DE.Views.WatermarkSettingsDialog.textAuto": "Automàtic", "DE.Views.WatermarkSettingsDialog.textBold": "Negreta", "DE.Views.WatermarkSettingsDialog.textColor": "Color del text", diff --git a/apps/documenteditor/main/locale/cs.json b/apps/documenteditor/main/locale/cs.json index cd9344126..e5ba7afef 100644 --- a/apps/documenteditor/main/locale/cs.json +++ b/apps/documenteditor/main/locale/cs.json @@ -1743,6 +1743,7 @@ "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "Zobrazit kliknutím do bublin", "DE.Views.FileMenuPanels.Settings.txtChangesTip": "Zobrazit najetím na popisky", "DE.Views.FileMenuPanels.Settings.txtCm": "Centimetr", + "DE.Views.FileMenuPanels.Settings.txtDarkMode": "Zapnout pro dokument tmavý režim", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Přizpůsobit stránce", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Přizpůsobit šířce", "DE.Views.FileMenuPanels.Settings.txtInch": "Palce", @@ -1809,7 +1810,7 @@ "DE.Views.FormsTab.capBtnNext": "Následující pole", "DE.Views.FormsTab.capBtnPrev": "Předchozí pole", "DE.Views.FormsTab.capBtnRadioBox": "Přepínač", - "DE.Views.FormsTab.capBtnSaveForm": "Uložit jako formulář", + "DE.Views.FormsTab.capBtnSaveForm": "Uložit jako oform", "DE.Views.FormsTab.capBtnSubmit": "Potvrdit", "DE.Views.FormsTab.capBtnText": "Textové pole", "DE.Views.FormsTab.capBtnView": "Zobrazit formulář", diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 852b600e1..039aa5f8c 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -1302,9 +1302,9 @@ "DE.Views.ChartSettings.textUndock": "Undock from panel", "DE.Views.ChartSettings.textWidth": "Width", "DE.Views.ChartSettings.textWrap": "Wrapping Style", - "DE.Views.ChartSettings.txtBehind": "Behind", - "DE.Views.ChartSettings.txtInFront": "In front", - "DE.Views.ChartSettings.txtInline": "Inline", + "DE.Views.ChartSettings.txtBehind": "Behind Text", + "DE.Views.ChartSettings.txtInFront": "In Front of Text", + "DE.Views.ChartSettings.txtInline": "In Line with Text", "DE.Views.ChartSettings.txtSquare": "Square", "DE.Views.ChartSettings.txtThrough": "Through", "DE.Views.ChartSettings.txtTight": "Tight", @@ -1546,7 +1546,7 @@ "DE.Views.DocumentHolder.txtAddTop": "Add top border", "DE.Views.DocumentHolder.txtAddVer": "Add vertical line", "DE.Views.DocumentHolder.txtAlignToChar": "Align to character", - "DE.Views.DocumentHolder.txtBehind": "Behind", + "DE.Views.DocumentHolder.txtBehind": "Behind Text", "DE.Views.DocumentHolder.txtBorderProps": "Border properties", "DE.Views.DocumentHolder.txtBottom": "Bottom", "DE.Views.DocumentHolder.txtColumnAlign": "Column alignment", @@ -1582,8 +1582,8 @@ "DE.Views.DocumentHolder.txtHideTopLimit": "Hide top limit", "DE.Views.DocumentHolder.txtHideVer": "Hide vertical line", "DE.Views.DocumentHolder.txtIncreaseArg": "Increase argument size", - "DE.Views.DocumentHolder.txtInFront": "In front", - "DE.Views.DocumentHolder.txtInline": "Inline", + "DE.Views.DocumentHolder.txtInFront": "In Front of Text", + "DE.Views.DocumentHolder.txtInline": "In Line with Text", "DE.Views.DocumentHolder.txtInsertArgAfter": "Insert argument after", "DE.Views.DocumentHolder.txtInsertArgBefore": "Insert argument before", "DE.Views.DocumentHolder.txtInsertBreak": "Insert manual break", @@ -1922,9 +1922,9 @@ "DE.Views.ImageSettings.textSize": "Size", "DE.Views.ImageSettings.textWidth": "Width", "DE.Views.ImageSettings.textWrap": "Wrapping Style", - "DE.Views.ImageSettings.txtBehind": "Behind", - "DE.Views.ImageSettings.txtInFront": "In front", - "DE.Views.ImageSettings.txtInline": "Inline", + "DE.Views.ImageSettings.txtBehind": "Behind Text", + "DE.Views.ImageSettings.txtInFront": "In Front of Text", + "DE.Views.ImageSettings.txtInline": "In Line with Text", "DE.Views.ImageSettings.txtSquare": "Square", "DE.Views.ImageSettings.txtThrough": "Through", "DE.Views.ImageSettings.txtTight": "Tight", @@ -1997,9 +1997,9 @@ "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Weights & Arrows", "DE.Views.ImageSettingsAdvanced.textWidth": "Width", "DE.Views.ImageSettingsAdvanced.textWrap": "Wrapping Style", - "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Behind", - "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "In front", - "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "Inline", + "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Behind Text", + "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "In Front of Text", + "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "In Line with Text", "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Square", "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Through", "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Tight", @@ -2339,7 +2339,7 @@ "DE.Views.ShapeSettings.textWrap": "Wrapping Style", "DE.Views.ShapeSettings.tipAddGradientPoint": "Add gradient point", "DE.Views.ShapeSettings.tipRemoveGradientPoint": "Remove gradient point", - "DE.Views.ShapeSettings.txtBehind": "Behind", + "DE.Views.ShapeSettings.txtBehind": "Behind Text", "DE.Views.ShapeSettings.txtBrownPaper": "Brown Paper", "DE.Views.ShapeSettings.txtCanvas": "Canvas", "DE.Views.ShapeSettings.txtCarton": "Carton", @@ -2347,8 +2347,8 @@ "DE.Views.ShapeSettings.txtGrain": "Grain", "DE.Views.ShapeSettings.txtGranite": "Granite", "DE.Views.ShapeSettings.txtGreyPaper": "Gray Paper", - "DE.Views.ShapeSettings.txtInFront": "In front", - "DE.Views.ShapeSettings.txtInline": "Inline", + "DE.Views.ShapeSettings.txtInFront": "In Front of Text", + "DE.Views.ShapeSettings.txtInline": "In Line with Text", "DE.Views.ShapeSettings.txtKnit": "Knit", "DE.Views.ShapeSettings.txtLeather": "Leather", "DE.Views.ShapeSettings.txtNoBorders": "No Line", @@ -2608,7 +2608,7 @@ "DE.Views.Toolbar.capBtnInsControls": "Content Controls", "DE.Views.Toolbar.capBtnInsDropcap": "Drop Cap", "DE.Views.Toolbar.capBtnInsEquation": "Equation", - "DE.Views.Toolbar.capBtnInsHeader": "Header/Footer", + "DE.Views.Toolbar.capBtnInsHeader": "Header & Footer", "DE.Views.Toolbar.capBtnInsImage": "Image", "DE.Views.Toolbar.capBtnInsPagebreak": "Breaks", "DE.Views.Toolbar.capBtnInsShape": "Shape", diff --git a/apps/documenteditor/main/locale/es.json b/apps/documenteditor/main/locale/es.json index 19c2e7ade..662510ecc 100644 --- a/apps/documenteditor/main/locale/es.json +++ b/apps/documenteditor/main/locale/es.json @@ -52,9 +52,9 @@ "Common.Controllers.ReviewChanges.textOffGlobal": "{0} ha deshabilitado el seguimiento de cambios para todos.", "Common.Controllers.ReviewChanges.textOn": "{0} está usando ahora el seguimiento de cambios.", "Common.Controllers.ReviewChanges.textOnGlobal": "{0} ha habilitado el seguimiento de cambios para todos.", - "Common.Controllers.ReviewChanges.textParaDeleted": "Párrafo Eliminado", + "Common.Controllers.ReviewChanges.textParaDeleted": "Párrafo eliminado", "Common.Controllers.ReviewChanges.textParaFormatted": "Paragraph Formatted", - "Common.Controllers.ReviewChanges.textParaInserted": "Párrafo Insertado", + "Common.Controllers.ReviewChanges.textParaInserted": "Párrafo insertado", "Common.Controllers.ReviewChanges.textParaMoveFromDown": "Bajado:", "Common.Controllers.ReviewChanges.textParaMoveFromUp": "Subido:", "Common.Controllers.ReviewChanges.textParaMoveTo": "Movido:", @@ -70,9 +70,9 @@ "Common.Controllers.ReviewChanges.textStrikeout": "Tachado", "Common.Controllers.ReviewChanges.textSubScript": "Subíndice", "Common.Controllers.ReviewChanges.textSuperScript": "Sobreíndice", - "Common.Controllers.ReviewChanges.textTableChanged": "Se cambió configuración de la tabla", - "Common.Controllers.ReviewChanges.textTableRowsAdd": "Se añadieron filas de la tabla", - "Common.Controllers.ReviewChanges.textTableRowsDel": "Se eliminaron filas de la tabla", + "Common.Controllers.ReviewChanges.textTableChanged": "Se ha cambiado la configuración de la tabla", + "Common.Controllers.ReviewChanges.textTableRowsAdd": "Se han añadido filas a la tabla", + "Common.Controllers.ReviewChanges.textTableRowsDel": "Se han eliminado filas de la tabla", "Common.Controllers.ReviewChanges.textTabs": "Cambiar tabuladores", "Common.Controllers.ReviewChanges.textTitleComparison": "Ajustes de comparación", "Common.Controllers.ReviewChanges.textUnderline": "Subrayado", @@ -239,8 +239,8 @@ "Common.Views.Comments.mniPositionAsc": "Desde arriba", "Common.Views.Comments.mniPositionDesc": "Desde abajo", "Common.Views.Comments.textAdd": "Añadir", - "Common.Views.Comments.textAddComment": "Añadir", - "Common.Views.Comments.textAddCommentToDoc": "Añadir comentario a documento", + "Common.Views.Comments.textAddComment": "Añadir comentario", + "Common.Views.Comments.textAddCommentToDoc": "Añadir comentario al documento", "Common.Views.Comments.textAddReply": "Añadir respuesta", "Common.Views.Comments.textAnonym": "Visitante", "Common.Views.Comments.textCancel": "Cancelar", @@ -271,7 +271,7 @@ "Common.Views.ExternalMergeEditor.textTitle": "Receptores de Fusión de Correo", "Common.Views.Header.labelCoUsersDescr": "Usuarios que están editando el archivo:", "Common.Views.Header.textAddFavorite": "Marcar como favorito", - "Common.Views.Header.textAdvSettings": "Ajustes avanzados", + "Common.Views.Header.textAdvSettings": "Configuración avanzada", "Common.Views.Header.textBack": "Abrir ubicación del archivo", "Common.Views.Header.textCompactView": "Esconder barra de herramientas", "Common.Views.Header.textHideLines": "Ocultar reglas", @@ -330,7 +330,7 @@ "Common.Views.Plugins.textStop": "Detener", "Common.Views.Protection.hintAddPwd": "Encriptar con contraseña", "Common.Views.Protection.hintPwd": "Cambie o elimine la contraseña", - "Common.Views.Protection.hintSignature": "Añadir firma digital o", + "Common.Views.Protection.hintSignature": "Añadir firma digital o línea de firma", "Common.Views.Protection.txtAddPwd": "Añadir contraseña", "Common.Views.Protection.txtChangePwd": "Cambie la contraseña", "Common.Views.Protection.txtDeletePwd": "Eliminar contraseña", @@ -368,9 +368,9 @@ "Common.Views.ReviewChanges.tipSetSpelling": "Сorrección ortográfica", "Common.Views.ReviewChanges.tipSharing": "Gestionar derechos de acceso al documento", "Common.Views.ReviewChanges.txtAccept": "Aceptar", - "Common.Views.ReviewChanges.txtAcceptAll": "Aceptar Todos los Cambios", + "Common.Views.ReviewChanges.txtAcceptAll": "Aceptar todos los cambios", "Common.Views.ReviewChanges.txtAcceptChanges": "Aceptar cambios", - "Common.Views.ReviewChanges.txtAcceptCurrent": "Aceptar Cambios Actuales", + "Common.Views.ReviewChanges.txtAcceptCurrent": "Aceptar cambio actual", "Common.Views.ReviewChanges.txtChat": "Chat", "Common.Views.ReviewChanges.txtClose": "Cerrar", "Common.Views.ReviewChanges.txtCoAuthMode": "Modo de co-edición", @@ -413,8 +413,8 @@ "Common.Views.ReviewChanges.txtView": "Modo de visualización", "Common.Views.ReviewChangesDialog.textTitle": "Revisar cambios", "Common.Views.ReviewChangesDialog.txtAccept": "Aceptar", - "Common.Views.ReviewChangesDialog.txtAcceptAll": "Aceptar Todos los Cambios", - "Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Aceptar Cambio Actual", + "Common.Views.ReviewChangesDialog.txtAcceptAll": "Aceptar todos los cambios", + "Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Aceptar cambio actual", "Common.Views.ReviewChangesDialog.txtNext": "Al siguiente cambio", "Common.Views.ReviewChangesDialog.txtPrev": "Al cambio anterior", "Common.Views.ReviewChangesDialog.txtReject": "Rechazar", @@ -427,7 +427,7 @@ "Common.Views.ReviewPopover.textEdit": "OK", "Common.Views.ReviewPopover.textFollowMove": "Seguir movimiento", "Common.Views.ReviewPopover.textMention": "+mención proporcionará acceso al documento y enviará un correo electrónico", - "Common.Views.ReviewPopover.textMentionNotify": "+mention notificará al usuario por correo electrónico", + "Common.Views.ReviewPopover.textMentionNotify": "+mención notificará al usuario por correo electrónico", "Common.Views.ReviewPopover.textOpenAgain": "Abrir de nuevo", "Common.Views.ReviewPopover.textReply": "Responder", "Common.Views.ReviewPopover.textResolve": "Resolver", @@ -574,7 +574,7 @@ "DE.Controllers.Main.printTitleText": "Imprimiendo documento", "DE.Controllers.Main.reloadButtonText": "Recargar página", "DE.Controllers.Main.requestEditFailedMessageText": "Alguien está editando este documento en este momento. Por favor, inténtelo de nuevo más tarde.", - "DE.Controllers.Main.requestEditFailedTitleText": "Acceso negado", + "DE.Controllers.Main.requestEditFailedTitleText": "Acceso denegado", "DE.Controllers.Main.saveErrorText": "Ha ocurrido un error al guardar el archivo. ", "DE.Controllers.Main.saveErrorTextDesktop": "Este archivo no se puede guardar o crear.
Las razones posibles son:
1. El archivo es sólo para leer.
2. El archivo está siendo editado por otros usuarios.
3. El disco está lleno o corrupto.", "DE.Controllers.Main.saveTextText": "Guardando documento...", @@ -770,7 +770,7 @@ "DE.Controllers.Main.txtShape_mathNotEqual": "No igual", "DE.Controllers.Main.txtShape_mathPlus": "Más", "DE.Controllers.Main.txtShape_moon": "Luna", - "DE.Controllers.Main.txtShape_noSmoking": "Señal de prohibición", + "DE.Controllers.Main.txtShape_noSmoking": "Señal de prohibido", "DE.Controllers.Main.txtShape_notchedRightArrow": "Flecha a la derecha con muesca", "DE.Controllers.Main.txtShape_octagon": "Octágono", "DE.Controllers.Main.txtShape_parallelogram": "Paralelogramo", @@ -906,7 +906,7 @@ "DE.Controllers.Toolbar.textSymbols": "Símbolos", "DE.Controllers.Toolbar.textTabForms": "Formularios", "DE.Controllers.Toolbar.textWarning": "Aviso", - "DE.Controllers.Toolbar.txtAccent_Accent": "Agudo", + "DE.Controllers.Toolbar.txtAccent_Accent": "Acento agudo", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Flecha derecha-izquierda superior", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Flecha superior hacia izquierda", "DE.Controllers.Toolbar.txtAccent_ArrowR": "Flecha superior hacia derecha", @@ -1242,7 +1242,7 @@ "DE.Views.BookmarksDialog.textSort": "Ordenar por", "DE.Views.BookmarksDialog.textTitle": "Marcadores", "DE.Views.BookmarksDialog.txtInvalidName": "Nombre de marcador sólo puede contener letras, dígitos y barras bajas y debe comenzar con la letra", - "DE.Views.CaptionDialog.textAdd": "Añadir", + "DE.Views.CaptionDialog.textAdd": "Añadir etiqueta", "DE.Views.CaptionDialog.textAfter": "Después", "DE.Views.CaptionDialog.textBefore": "Antes", "DE.Views.CaptionDialog.textCaption": "Leyenda", @@ -1275,7 +1275,7 @@ "DE.Views.ChartSettings.textChartType": "Cambiar tipo de gráfico", "DE.Views.ChartSettings.textEditData": "Editar datos", "DE.Views.ChartSettings.textHeight": "Altura", - "DE.Views.ChartSettings.textOriginalSize": "Tamaño actual", + "DE.Views.ChartSettings.textOriginalSize": "Tamaño real", "DE.Views.ChartSettings.textSize": "Tamaño", "DE.Views.ChartSettings.textStyle": "Estilo", "DE.Views.ChartSettings.textUndock": "Desacoplar de panel", @@ -1370,13 +1370,13 @@ "DE.Views.DateTimeDialog.textLang": "Idioma", "DE.Views.DateTimeDialog.textUpdate": "Actualizar automáticamente", "DE.Views.DateTimeDialog.txtTitle": "Fecha y hora", - "DE.Views.DocumentHolder.aboveText": "Arriba", + "DE.Views.DocumentHolder.aboveText": "Encima", "DE.Views.DocumentHolder.addCommentText": "Añadir comentario", "DE.Views.DocumentHolder.advancedDropCapText": "Configuración de Capitalización", "DE.Views.DocumentHolder.advancedFrameText": "Ajustes avanzados de marco", "DE.Views.DocumentHolder.advancedParagraphText": "Ajustes avanzados de párrafo", "DE.Views.DocumentHolder.advancedTableText": "Ajustes avanzados de tabla", - "DE.Views.DocumentHolder.advancedText": "Ajustes avanzados", + "DE.Views.DocumentHolder.advancedText": "Configuración avanzada", "DE.Views.DocumentHolder.alignmentText": "Alineación", "DE.Views.DocumentHolder.belowText": "Abajo", "DE.Views.DocumentHolder.breakBeforeText": "Salto de página antes", @@ -1418,7 +1418,7 @@ "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.originalSizeText": "Tamaño real", "DE.Views.DocumentHolder.paragraphText": "Párrafo", "DE.Views.DocumentHolder.removeHyperlinkText": "Eliminar hiperenlace", "DE.Views.DocumentHolder.rightText": "Derecho", @@ -1505,8 +1505,8 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Actualize la tabla de contenidos", "DE.Views.DocumentHolder.textWrap": "Ajuste de texto", "DE.Views.DocumentHolder.tipIsLocked": "Otro usuario está editando este elemento ahora.", - "DE.Views.DocumentHolder.toDictionaryText": "Añadir a Diccionario", - "DE.Views.DocumentHolder.txtAddBottom": "Add bottom border", + "DE.Views.DocumentHolder.toDictionaryText": "Añadir al diccionario", + "DE.Views.DocumentHolder.txtAddBottom": "Añadir borde inferior", "DE.Views.DocumentHolder.txtAddFractionBar": "Añadir barra de fracción", "DE.Views.DocumentHolder.txtAddHor": "Añadir línea horizontal", "DE.Views.DocumentHolder.txtAddLB": "Añadir línea inferior izquierda", @@ -1661,7 +1661,7 @@ "DE.Views.FileMenu.btnSaveAsCaption": "Guardar como", "DE.Views.FileMenu.btnSaveCaption": "Guardar", "DE.Views.FileMenu.btnSaveCopyAsCaption": "Guardar Copia como...", - "DE.Views.FileMenu.btnSettingsCaption": "Ajustes avanzados...", + "DE.Views.FileMenu.btnSettingsCaption": "Configuración avanzada...", "DE.Views.FileMenu.btnToEditCaption": "Editar documento", "DE.Views.FileMenu.textDownload": "Descargar", "DE.Views.FileMenuPanels.CreateNew.txtBlank": "Documento en blanco", @@ -1794,7 +1794,7 @@ "DE.Views.FormSettings.textScale": "Cuándo escalar", "DE.Views.FormSettings.textSelectImage": "Seleccionar Imagen", "DE.Views.FormSettings.textTip": "Sugerencia", - "DE.Views.FormSettings.textTipAdd": "Agregar nuevo valor", + "DE.Views.FormSettings.textTipAdd": "Añadir valor nuevo", "DE.Views.FormSettings.textTipDelete": "Eliminar valor", "DE.Views.FormSettings.textTipDown": "Mover hacia abajo", "DE.Views.FormSettings.textTipUp": "Mover hacia arriba", @@ -1884,7 +1884,7 @@ "DE.Views.ImageSettings.textHintFlipH": "Volteo Horizontal", "DE.Views.ImageSettings.textHintFlipV": "Volteo Vertical", "DE.Views.ImageSettings.textInsert": "Reemplazar imagen", - "DE.Views.ImageSettings.textOriginalSize": "Tamaño actual", + "DE.Views.ImageSettings.textOriginalSize": "Tamaño real", "DE.Views.ImageSettings.textRotate90": "Girar 90°", "DE.Views.ImageSettings.textRotation": "Rotación", "DE.Views.ImageSettings.textSize": "Tamaño", @@ -1937,7 +1937,7 @@ "DE.Views.ImageSettingsAdvanced.textMiter": "Ángulo", "DE.Views.ImageSettingsAdvanced.textMove": "Desplazar objeto con texto", "DE.Views.ImageSettingsAdvanced.textOptions": "Opciones", - "DE.Views.ImageSettingsAdvanced.textOriginalSize": "Tamaño actual", + "DE.Views.ImageSettingsAdvanced.textOriginalSize": "Tamaño real", "DE.Views.ImageSettingsAdvanced.textOverlap": "Superposición", "DE.Views.ImageSettingsAdvanced.textPage": "Página", "DE.Views.ImageSettingsAdvanced.textParagraph": "Párrafo", @@ -1972,7 +1972,7 @@ "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "A través", "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Estrecho", "DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip": "Superior e inferior", - "DE.Views.LeftMenu.tipAbout": "Acerca de programa", + "DE.Views.LeftMenu.tipAbout": "Acerca de", "DE.Views.LeftMenu.tipChat": "Chat", "DE.Views.LeftMenu.tipComments": "Comentarios", "DE.Views.LeftMenu.tipNavigation": "Navegación", @@ -2027,7 +2027,7 @@ "DE.Views.Links.tipContents": "Introducir tabla de contenidos", "DE.Views.Links.tipContentsUpdate": "Actualize la tabla de contenidos", "DE.Views.Links.tipCrossRef": "Insertar referencia cruzada", - "DE.Views.Links.tipInsertHyperlink": "Añadir hiperenlace", + "DE.Views.Links.tipInsertHyperlink": "Añadir hipervínculo", "DE.Views.Links.tipNotes": "Introducir o editar notas a pie de página", "DE.Views.Links.tipTableFigures": "Insertar tabla de ilustraciones", "DE.Views.Links.tipTableFiguresUpdate": "Actualizar tabla de ilustraciones", @@ -2067,7 +2067,7 @@ "DE.Views.MailMergeSettings.downloadMergeTitle": "Fusión", "DE.Views.MailMergeSettings.errorMailMergeSaveFile": "Error de fusión.", "DE.Views.MailMergeSettings.notcriticalErrorTitle": "Aviso", - "DE.Views.MailMergeSettings.textAddRecipients": "Primero añadir unos destinatarios a la lista ", + "DE.Views.MailMergeSettings.textAddRecipients": "Primero añadir algunos destinatarios a la lista ", "DE.Views.MailMergeSettings.textAll": "Todos registros", "DE.Views.MailMergeSettings.textCurrent": "Registro actual", "DE.Views.MailMergeSettings.textDataSource": "Fuente de datos", @@ -2435,7 +2435,7 @@ "DE.Views.TableSettings.tipRight": "Fijar sólo borde exterior derecho", "DE.Views.TableSettings.tipTop": "Fijar sólo borde exterior superior", "DE.Views.TableSettings.txtNoBorders": "Sin bordes", - "DE.Views.TableSettings.txtTable_Accent": "Acentuación", + "DE.Views.TableSettings.txtTable_Accent": "Acento", "DE.Views.TableSettings.txtTable_Colorful": "Colorido", "DE.Views.TableSettings.txtTable_Dark": "Oscuro", "DE.Views.TableSettings.txtTable_GridTable": "Tabla de rejilla", @@ -2647,7 +2647,7 @@ "DE.Views.Toolbar.textMarginsNormal": "Normal", "DE.Views.Toolbar.textMarginsUsNormal": "US Normal", "DE.Views.Toolbar.textMarginsWide": "Amplio", - "DE.Views.Toolbar.textNewColor": "Color personalizado", + "DE.Views.Toolbar.textNewColor": "Añadir nuevo color personalizado", "DE.Views.Toolbar.textNextPage": "Página siguiente", "DE.Views.Toolbar.textNoHighlight": "No resaltar", "DE.Views.Toolbar.textNone": "Ningún", diff --git a/apps/documenteditor/main/locale/hu.json b/apps/documenteditor/main/locale/hu.json index 8044560ea..593959f94 100644 --- a/apps/documenteditor/main/locale/hu.json +++ b/apps/documenteditor/main/locale/hu.json @@ -15,7 +15,7 @@ "Common.Controllers.ReviewChanges.textAuto": "Auto", "Common.Controllers.ReviewChanges.textBaseline": "Alapvonal", "Common.Controllers.ReviewChanges.textBold": "Félkövér", - "Common.Controllers.ReviewChanges.textBreakBefore": "Oldaltörés elötte", + "Common.Controllers.ReviewChanges.textBreakBefore": "Oldaltörés előtte", "Common.Controllers.ReviewChanges.textCaps": "Minden nagybetű", "Common.Controllers.ReviewChanges.textCenter": "Középre rendez", "Common.Controllers.ReviewChanges.textChar": "Karakter szint", @@ -35,7 +35,7 @@ "Common.Controllers.ReviewChanges.textIndentRight": "Francia bekezdés jobb", "Common.Controllers.ReviewChanges.textInserted": "Beillesztve:", "Common.Controllers.ReviewChanges.textItalic": "Dőlt", - "Common.Controllers.ReviewChanges.textJustify": "Sorkizáart", + "Common.Controllers.ReviewChanges.textJustify": "Igazítás sorkizártra", "Common.Controllers.ReviewChanges.textKeepLines": "Sorok egyben tartása", "Common.Controllers.ReviewChanges.textKeepNext": "Következővel együtt tartás", "Common.Controllers.ReviewChanges.textLeft": "Balra rendez", @@ -124,6 +124,8 @@ "Common.Translation.warnFileLocked": "Nem szerkesztheti ezt a fájlt, mert egy másik alkalmazásban szerkesztik.", "Common.Translation.warnFileLockedBtnEdit": "Másolat létrehozása", "Common.Translation.warnFileLockedBtnView": "Megnyitva megtekintésre", + "Common.UI.ButtonColored.textAutoColor": "Automatikus", + "Common.UI.ButtonColored.textNewColor": "Új egyéni szín hozzáadása", "Common.UI.Calendar.textApril": "Április", "Common.UI.Calendar.textAugust": "Augusztus", "Common.UI.Calendar.textDecember": "December", @@ -180,6 +182,9 @@ "Common.UI.SynchronizeTip.textSynchronize": "A dokumentumot egy másik felhasználó módosította.
Kattintson a gombra a módosítások mentéséhez és a frissítések újratöltéséhez.", "Common.UI.ThemeColorPalette.textStandartColors": "Alapértelmezett színek", "Common.UI.ThemeColorPalette.textThemeColors": "Téma színek", + "Common.UI.Themes.txtThemeClassicLight": "Klasszikus Világos", + "Common.UI.Themes.txtThemeDark": "Sötét", + "Common.UI.Themes.txtThemeLight": "Világos", "Common.UI.Window.cancelButtonText": "Mégsem", "Common.UI.Window.closeButtonText": "Bezár", "Common.UI.Window.noButtonText": "Nem", @@ -195,16 +200,19 @@ "Common.Views.About.txtAddress": "Cím:", "Common.Views.About.txtLicensee": "LICENC VÁSÁRLÓ", "Common.Views.About.txtLicensor": "LICENCTULAJDONOS", - "Common.Views.About.txtMail": "email:", + "Common.Views.About.txtMail": "e-mail:", "Common.Views.About.txtPoweredBy": "Powered by", "Common.Views.About.txtTel": "Tel.: ", "Common.Views.About.txtVersion": "Verzió", "Common.Views.AutoCorrectDialog.textAdd": "Hozzáadás", "Common.Views.AutoCorrectDialog.textApplyText": "Alkalmazás gépelés közben", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Szöveg automatikus javítása", "Common.Views.AutoCorrectDialog.textAutoFormat": "Automatikus formázás gépelés közben", "Common.Views.AutoCorrectDialog.textBulleted": "Automatikus felsorolásos listák", "Common.Views.AutoCorrectDialog.textBy": "Által", "Common.Views.AutoCorrectDialog.textDelete": "Törlés", + "Common.Views.AutoCorrectDialog.textFLSentence": "A mondatok nagy betűvel kezdődjenek", + "Common.Views.AutoCorrectDialog.textHyperlink": "Internet és hálózati utak hiperhivatkozásokkal", "Common.Views.AutoCorrectDialog.textHyphens": "Kötőjelek (--) gondolatjellel (—)", "Common.Views.AutoCorrectDialog.textMathCorrect": "Matematikai automatikus javítás", "Common.Views.AutoCorrectDialog.textNumbered": "Automatikus számozott listák", @@ -224,21 +232,29 @@ "Common.Views.AutoCorrectDialog.warnReset": "Minden hozzáadott automatikus javítást eltávolítunk, és a megváltozottakat visszaállítjuk eredeti értékükre. Folytassuk?", "Common.Views.AutoCorrectDialog.warnRestore": "%1 automatikus javítása visszaáll az eredeti értékére. Folytassuk?", "Common.Views.Chat.textSend": "Küldés", + "Common.Views.Comments.mniAuthorAsc": "Szerző (A-Z)", + "Common.Views.Comments.mniAuthorDesc": "Szerző (Z-A)", + "Common.Views.Comments.mniDateAsc": "Legöregebb először", + "Common.Views.Comments.mniDateDesc": "Legújabb először", + "Common.Views.Comments.mniPositionAsc": "Felülről", + "Common.Views.Comments.mniPositionDesc": "Alulról", "Common.Views.Comments.textAdd": "Hozzáad", - "Common.Views.Comments.textAddComment": "Hozzászólás hozzáadása", - "Common.Views.Comments.textAddCommentToDoc": "Hozzászólás hozzáadása a dokumentumhoz", + "Common.Views.Comments.textAddComment": "Megjegyzés hozzáadása", + "Common.Views.Comments.textAddCommentToDoc": "Megyjegyzés hozzáadása a dokumentumhoz", "Common.Views.Comments.textAddReply": "Válasz hozzáadása", "Common.Views.Comments.textAnonym": "Vendég", "Common.Views.Comments.textCancel": "Mégsem", "Common.Views.Comments.textClose": "Bezár", - "Common.Views.Comments.textComments": "Hozzászólások", + "Common.Views.Comments.textClosePanel": "Megjegyzések bezárása", + "Common.Views.Comments.textComments": "Megjegyzések", "Common.Views.Comments.textEdit": "OK", - "Common.Views.Comments.textEnterCommentHint": "Írjon hozzászólást", - "Common.Views.Comments.textHintAddComment": "Hozzászólás hozzáadása", + "Common.Views.Comments.textEnterCommentHint": "Megjegyzés beírása itt", + "Common.Views.Comments.textHintAddComment": "Megjegyzés hozzáadása", "Common.Views.Comments.textOpenAgain": "Ismét megnyit", "Common.Views.Comments.textReply": "Ismétel", "Common.Views.Comments.textResolve": "Felold", "Common.Views.Comments.textResolved": "Feloldott", + "Common.Views.Comments.textSort": "Megjegyzések rendezése", "Common.Views.CopyWarningDialog.textDontShow": "Ne mutassa újra ezt az üzenetet", "Common.Views.CopyWarningDialog.textMsg": "A szerkesztés eszköztár gombjaival és a helyi menüvel végzett másolás, kivágás és beillesztés műveletek csak a szerkesztő oldalon használhatóak.

A szerkesztő lapon kívüli alkalmazásokba való másoláshoz vagy beillesztéshez az alábbi billentyűzetkombinációkat használja:", "Common.Views.CopyWarningDialog.textTitle": "Másolás, kivágás és beillesztés", @@ -297,7 +313,7 @@ "Common.Views.OpenDialog.txtOpenFile": "Írja be a megnyitáshoz szükséges jelszót", "Common.Views.OpenDialog.txtPassword": "Jelszó", "Common.Views.OpenDialog.txtPreview": "Előnézet", - "Common.Views.OpenDialog.txtProtected": "Miután megadta a jelszót és megnyitotta a fájlt, az aktuális jelszó visszaáll.", + "Common.Views.OpenDialog.txtProtected": "Miután megadta a jelszót és megnyitotta a fájlt, annak jelenlegi jelszava visszaállítódik.", "Common.Views.OpenDialog.txtTitle": "Válassza a %1 opciót", "Common.Views.OpenDialog.txtTitleProtected": "Védett fájl", "Common.Views.PasswordDialog.txtDescription": "Állítson be jelszót a dokumentum védelmére", @@ -339,8 +355,10 @@ "Common.Views.ReviewChanges.textWarnTrackChangesTitle": "Engedélyezzük a változások követését mindenki számára?", "Common.Views.ReviewChanges.tipAcceptCurrent": "Utolsó változás elfogadása", "Common.Views.ReviewChanges.tipCoAuthMode": "Együttes szerkesztés beállítása", - "Common.Views.ReviewChanges.tipCommentRem": "Hozzászólások eltávolítása", - "Common.Views.ReviewChanges.tipCommentRemCurrent": "Jelenlegi hosszászólások eltávolítása", + "Common.Views.ReviewChanges.tipCommentRem": "Megjegyzések eltávolítása", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "Jelenlegi megjegyzések eltávolítása", + "Common.Views.ReviewChanges.tipCommentResolve": "Megjegyzések megoldása", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Aktuális megjegyzések megoldása", "Common.Views.ReviewChanges.tipCompare": "A jelenlegi dokumentum összehasonlítása egy másikkal", "Common.Views.ReviewChanges.tipHistory": "Verziótörténet mutatása", "Common.Views.ReviewChanges.tipRejectCurrent": "Az aktuális változás elutasítása", @@ -356,11 +374,16 @@ "Common.Views.ReviewChanges.txtChat": "Chat", "Common.Views.ReviewChanges.txtClose": "Bezár", "Common.Views.ReviewChanges.txtCoAuthMode": "Együttes szerkesztési mód", - "Common.Views.ReviewChanges.txtCommentRemAll": "Minden hozzászólás eltávolítása", - "Common.Views.ReviewChanges.txtCommentRemCurrent": "Jelenlegi hosszászólások eltávolítása", - "Common.Views.ReviewChanges.txtCommentRemMy": "Hozzászólásaim eltávolítása", - "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Jelenlegi hozzászólásaim eltávolítása", + "Common.Views.ReviewChanges.txtCommentRemAll": "Minden megjegyzés eltávolítása", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Jelenlegi megjegyzések eltávolítása", + "Common.Views.ReviewChanges.txtCommentRemMy": "Megjegyzéseim eltávolítása", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Jelenlegi megjegyzéseim eltávolítása", "Common.Views.ReviewChanges.txtCommentRemove": "Eltávolítás", + "Common.Views.ReviewChanges.txtCommentResolve": "Megold", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Összes megjegyzés megoldása", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Aktuális Megjegyzések Megoldása", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Saját Megjegyzések Megoldása", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Aktuális Megjegyzéseim Megoldása", "Common.Views.ReviewChanges.txtCompare": "Összehasonlítás", "Common.Views.ReviewChanges.txtDocLang": "Nyelv", "Common.Views.ReviewChanges.txtEditing": "szerkesztés", @@ -368,7 +391,9 @@ "Common.Views.ReviewChanges.txtFinalCap": "Végső", "Common.Views.ReviewChanges.txtHistory": "Verziótörténet", "Common.Views.ReviewChanges.txtMarkup": "Minden módosítás {0}", - "Common.Views.ReviewChanges.txtMarkupCap": "Haszonkulcs", + "Common.Views.ReviewChanges.txtMarkupCap": "Jelölések és szövegbuborékok", + "Common.Views.ReviewChanges.txtMarkupSimple": "Minden változtatás {0}
Szövegbuborékok eltűntetése", + "Common.Views.ReviewChanges.txtMarkupSimpleCap": "Csak jelölés", "Common.Views.ReviewChanges.txtNext": "Következő", "Common.Views.ReviewChanges.txtOff": "Kikapcsolva nekem", "Common.Views.ReviewChanges.txtOffGlobal": "Kikapcsolva nekem és mindenkinek", @@ -379,7 +404,7 @@ "Common.Views.ReviewChanges.txtPrev": "Előző", "Common.Views.ReviewChanges.txtPreview": "Előnézet", "Common.Views.ReviewChanges.txtReject": "Elutasít", - "Common.Views.ReviewChanges.txtRejectAll": "Elutasít minden módosítást", + "Common.Views.ReviewChanges.txtRejectAll": "Minden módosítást elvetése", "Common.Views.ReviewChanges.txtRejectChanges": "Elutasítja a módosításokat", "Common.Views.ReviewChanges.txtRejectCurrent": "Az aktuális változás elutasítása", "Common.Views.ReviewChanges.txtSharing": "Megosztás", @@ -393,7 +418,7 @@ "Common.Views.ReviewChangesDialog.txtNext": "A következő változáshoz", "Common.Views.ReviewChangesDialog.txtPrev": "A korábbi változáshoz", "Common.Views.ReviewChangesDialog.txtReject": "Elutasít", - "Common.Views.ReviewChangesDialog.txtRejectAll": "Elutasít minden módosítást", + "Common.Views.ReviewChangesDialog.txtRejectAll": "Minden módosítást elvetése", "Common.Views.ReviewChangesDialog.txtRejectCurrent": "Az aktuális változás elutasítása", "Common.Views.ReviewPopover.textAdd": "Hozzáad", "Common.Views.ReviewPopover.textAddReply": "Válasz hozzáadása", @@ -401,11 +426,15 @@ "Common.Views.ReviewPopover.textClose": "Bezár", "Common.Views.ReviewPopover.textEdit": "OK", "Common.Views.ReviewPopover.textFollowMove": "Mozgás követése", - "Common.Views.ReviewPopover.textMention": "+megemlítés hozzáférést ad a dokumentumhoz, és emailt küld", - "Common.Views.ReviewPopover.textMentionNotify": "+megemlítés értesíti a felhasználót emailben", + "Common.Views.ReviewPopover.textMention": "+megemlítés hozzáférést ad a dokumentumhoz, és e-mailt küld", + "Common.Views.ReviewPopover.textMentionNotify": "+megemlítés értesíti a felhasználót e-mailben", "Common.Views.ReviewPopover.textOpenAgain": "Ismét megnyit", "Common.Views.ReviewPopover.textReply": "Ismétel", "Common.Views.ReviewPopover.textResolve": "Resolve", + "Common.Views.ReviewPopover.txtAccept": "Elfogad", + "Common.Views.ReviewPopover.txtDeleteTip": "Törlés", + "Common.Views.ReviewPopover.txtEditTip": "Szerkesztés", + "Common.Views.ReviewPopover.txtReject": "Elvetés", "Common.Views.SaveAsDlg.textLoading": "Betöltés", "Common.Views.SaveAsDlg.textTitle": "Mentési mappa", "Common.Views.SelectFileDlg.textLoading": "Betöltés", @@ -425,7 +454,7 @@ "Common.Views.SignDialog.textValid": "Érvényes %1 és %2 között", "Common.Views.SignDialog.tipFontName": "Betűtípus neve", "Common.Views.SignDialog.tipFontSize": "Betűméret", - "Common.Views.SignSettingsDialog.textAllowComment": "Engedélyezi az aláírónak hozzászólás hozzáadását az aláírási párbeszédablakban", + "Common.Views.SignSettingsDialog.textAllowComment": "Engedélyezi az aláírónak megjegyzés hozzáadását az aláírási párbeszédablakban", "Common.Views.SignSettingsDialog.textInfo": "Aláíró infó", "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", "Common.Views.SignSettingsDialog.textInfoName": "Név", @@ -497,14 +526,15 @@ "DE.Controllers.Main.errorDataRange": "Hibás adattartomány.", "DE.Controllers.Main.errorDefaultMessage": "Hibakód: %1", "DE.Controllers.Main.errorDirectUrl": "Kérjük, ellenőrizze a dokumentumra mutató hivatkozást.
Ennek a hivatkozásnak a letöltéshez közvetlen hivatkozásnak kell lennie.", - "DE.Controllers.Main.errorEditingDownloadas": "Hiba történt a dokumentummal végzett munka során.
Használja a 'Letöltés mint...' opciót, hogy mentse a fájl biztonsági másolatát a számítógép merevlemezére.", + "DE.Controllers.Main.errorEditingDownloadas": "Hiba történt a dokumentummal végzett munka során.
Használja a 'Letöltés másként...' opciót, hogy mentse a fájl biztonsági másolatát a számítógép merevlemezére.", "DE.Controllers.Main.errorEditingSaveas": "Hiba történt a dokumentummal végzett munka során.
Használja a 'Mentés másként...' opciót, hogy mentse a fájl biztonsági másolatát a számítógép merevlemezére.", - "DE.Controllers.Main.errorEmailClient": "Nem található email kliens.", + "DE.Controllers.Main.errorEmailClient": "Nem található e-mail kliens.", "DE.Controllers.Main.errorFilePassProtect": "A dokumentum jelszóval védett, és nem nyitható meg.", "DE.Controllers.Main.errorFileSizeExceed": "A fájlméret meghaladja a szerverre beállított korlátozást.
Kérjük, forduljon a Document Server rendszergazdájához a részletekért.", - "DE.Controllers.Main.errorForceSave": "Hiba történt a fájl mentése közben. Kérjük, használja a 'Letöltés mint' opciót, hogy a fájlt a számítógépére mentse, vagy próbálkozzon később.", + "DE.Controllers.Main.errorForceSave": "Hiba történt a fájl mentése közben. Kérjük, használja a 'Letöltés másként' opciót, hogy a fájlt a számítógépére mentse, vagy próbálkozzon később.", "DE.Controllers.Main.errorKeyEncrypt": "Ismeretlen kulcsleíró", "DE.Controllers.Main.errorKeyExpire": "Lejárt kulcsleíró", + "DE.Controllers.Main.errorLoadingFont": "A betűtípusok nincsenek betöltve.
Kérjük forduljon a dokumentumszerver rendszergazdájához.", "DE.Controllers.Main.errorMailMergeLoadFile": "A dokumentum megnyitása sikertelen. Kérjük, válasszon egy másik fájlt.", "DE.Controllers.Main.errorMailMergeSaveFile": "Sikertelen összevonás.", "DE.Controllers.Main.errorProcessSaveResult": "Sikertelen mentés.", @@ -518,11 +548,12 @@ "DE.Controllers.Main.errorToken": "A dokumentum biztonsági tokenje nem megfelelő.
Kérjük, lépjen kapcsolatba a Dokumentumszerver rendszergazdájával.", "DE.Controllers.Main.errorTokenExpire": "A dokumentum biztonsági tokenje lejárt.
Kérjük, lépjen kapcsolatba a dokumentumszerver rendszergazdájával.", "DE.Controllers.Main.errorUpdateVersion": "A dokumentum verziója megváltozott. Az oldal újratöltődik.", - "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Az internet kapcsolat helyreállt, és a fájl verziója megváltozott.
Mielőtt folytatná a munkát, töltse le a fájlt, vagy másolja vágólapra annak tartalmát, hogy megbizonyosodjon arról, hogy semmi nem veszik el, majd töltse újra az oldalt.", + "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Az internetkapcsolat helyreállt és a fájl verziója megváltozott.
Mielőtt folytatná a munkát, töltse le a fájlt vagy másolja át annak tartalmát megbizonyosodva arról, hogy semmi sem veszett el, végül töltse újra ezt az oldalt.", "DE.Controllers.Main.errorUserDrop": "A dokumentum jelenleg nem elérhető", "DE.Controllers.Main.errorUsersExceed": "Túllépte a csomagja által engedélyezett felhasználók számát", "DE.Controllers.Main.errorViewerDisconnect": "A kapcsolat megszakadt. Továbbra is megtekinthető a dokumentum,
de a kapcsolat helyreálltáig és az oldal újratöltéséig nem lehet letölteni.", "DE.Controllers.Main.leavePageText": "El nem mentett változtatások vannak a dokumentumban. Kattintson a \"Maradás az oldalon\"-ra majd a \"Mentés\"-re hogy elmentse azokat. Kattintson a \"Az oldal elhagyása\"-ra a változások elvetéséhez.", + "DE.Controllers.Main.leavePageTextOnClose": "A dokumentumban lévő összes nem mentett módosítás elveszik.
Kattintson a \"Mégse\", majd a \"Mentés\" gombra a mentésükhöz. Kattintson az „OK” gombra az összes nem mentett módosítás elvetéséhez.", "DE.Controllers.Main.loadFontsTextText": "Adatok betöltése...", "DE.Controllers.Main.loadFontsTitleText": "Adatok betöltése", "DE.Controllers.Main.loadFontTextText": "Adatok betöltése...", @@ -549,20 +580,21 @@ "DE.Controllers.Main.saveTextText": "Dokumentum mentése...", "DE.Controllers.Main.saveTitleText": "Dokumentum mentése", "DE.Controllers.Main.scriptLoadError": "A kapcsolat túl lassú, néhány komponens nem töltődött be. Frissítse az oldalt.", - "DE.Controllers.Main.sendMergeText": "Összevont küldés...", - "DE.Controllers.Main.sendMergeTitle": "Összevont küldés", + "DE.Controllers.Main.sendMergeText": "Összevonás küldése...", + "DE.Controllers.Main.sendMergeTitle": "Összevonás küldése", "DE.Controllers.Main.splitDividerErrorText": "A sorok számának oszthatónak kell lennie az alábbi értékkel: %1.", "DE.Controllers.Main.splitMaxColsErrorText": "Hasábok száma kevesebb lehet mint %1.", "DE.Controllers.Main.splitMaxRowsErrorText": "A sorok száma kevesebb kell legyen, mint %1.", "DE.Controllers.Main.textAnonymous": "Névtelen", "DE.Controllers.Main.textApplyAll": "Alkalmazza az összes egyenletre", - "DE.Controllers.Main.textBuyNow": "Weboldalt meglátogat", + "DE.Controllers.Main.textBuyNow": "Weboldal megnyitása", "DE.Controllers.Main.textChangesSaved": "Minden módosítás elmentve", "DE.Controllers.Main.textClose": "Bezár", "DE.Controllers.Main.textCloseTip": "Kattintson, a tippek bezárásához", "DE.Controllers.Main.textContactUs": "Értékesítés elérhetősége", "DE.Controllers.Main.textConvertEquation": "Ez az egyenlet az egyenletszerkesztő régi verziójával lett létrehozva, amely már nem támogatott. A szerkesztéshez alakítsa az egyenletet Office Math ML formátumra.
Konvertáljuk most?", - "DE.Controllers.Main.textCustomLoader": "Kérjük, vegye figyelembe, hogy az engedély feltételei szerint nem jogosult a betöltő cseréjére.
Kérjük, forduljon értékesítési osztályunkhoz, hogy árajánlatot kapjon.", + "DE.Controllers.Main.textCustomLoader": "Kérjük, vegye figyelembe, hogy a licence feltételei szerint nem jogosult a betöltő cseréjére.
Kérjük, forduljon értékesítési osztályunkhoz, hogy árajánlatot kapjon.", + "DE.Controllers.Main.textDisconnect": "A kapcsolat megszakadt", "DE.Controllers.Main.textGuest": "Vendég", "DE.Controllers.Main.textHasMacros": "A fájl automatikus makrókat tartalmaz.
Szeretne makrókat futtatni?", "DE.Controllers.Main.textLearnMore": "Tudjon meg többet", @@ -576,6 +608,7 @@ "DE.Controllers.Main.textShape": "Alakzat", "DE.Controllers.Main.textStrict": "Biztonságos mód", "DE.Controllers.Main.textTryUndoRedo": "A Visszavonás / Újra funkciók le vannak tiltva a Gyors együttes szerkesztés módban.
A \"Biztonságos mód\" gombra kattintva válthat a Biztonságos együttes szerkesztés módra, hogy a dokumentumot más felhasználókkal való interferencia nélkül tudja szerkeszteni, mentés után küldve el a módosításokat. A szerkesztési módok között a Speciális beállítások segítségével válthat.", + "DE.Controllers.Main.textTryUndoRedoWarn": "A Visszavonás/Újra funkciók le vannak tiltva a Gyors társszerkesztés módban.", "DE.Controllers.Main.titleLicenseExp": "Lejárt licenc", "DE.Controllers.Main.titleServerVersion": "Szerkesztő frissítve", "DE.Controllers.Main.titleUpdateVersion": "A verzió megváltozott", @@ -588,17 +621,18 @@ "DE.Controllers.Main.txtCallouts": "Feliratok", "DE.Controllers.Main.txtCharts": "Bonyolult alakzatok", "DE.Controllers.Main.txtChoose": "Válassz egy elemet", + "DE.Controllers.Main.txtClickToLoad": "Kattintson a kép betöltéséhez", "DE.Controllers.Main.txtCurrentDocument": "Aktuális dokumentum", "DE.Controllers.Main.txtDiagramTitle": "Diagram címe", "DE.Controllers.Main.txtEditingMode": "Szerkesztési mód beállítása...", - "DE.Controllers.Main.txtEndOfFormula": "Váratlan képlet vég", + "DE.Controllers.Main.txtEndOfFormula": "Váratlan függvény vég", "DE.Controllers.Main.txtEnterDate": "Adjon meg egy dátumot", "DE.Controllers.Main.txtErrorLoadHistory": "Napló betöltése sikertelen", "DE.Controllers.Main.txtEvenPage": "Páros oldal", "DE.Controllers.Main.txtFiguredArrows": "Nyíl formák", "DE.Controllers.Main.txtFirstPage": "Első oldal", "DE.Controllers.Main.txtFooter": "Lábléc", - "DE.Controllers.Main.txtFormulaNotInTable": "A képlet nincs a táblázatban", + "DE.Controllers.Main.txtFormulaNotInTable": "A függvény nincs a táblázatban", "DE.Controllers.Main.txtHeader": "Fejléc", "DE.Controllers.Main.txtHyperlink": "Hivatkozás", "DE.Controllers.Main.txtIndTooLarge": "Az index túl nagy", @@ -607,8 +641,10 @@ "DE.Controllers.Main.txtMath": "Matematika", "DE.Controllers.Main.txtMissArg": "Hiányzó paraméter", "DE.Controllers.Main.txtMissOperator": "Hiányzó operátor", - "DE.Controllers.Main.txtNeedSynchronize": "Frissítés elérhető", + "DE.Controllers.Main.txtNeedSynchronize": "Frissítések érhetőek el", + "DE.Controllers.Main.txtNone": "Egyik sem", "DE.Controllers.Main.txtNoTableOfContents": "Nincsenek címsorok a dokumentumban. Vigyen fel egy fejlécstílust a szövegre, hogy az megjelenjen a tartalomjegyzékben.", + "DE.Controllers.Main.txtNoTableOfFigures": "Nem található bejegyzéseket tartalmazó táblázat.", "DE.Controllers.Main.txtNoText": "Hiba! Nincs a megadott stílusnak megfelelő szöveg a dokumentumban.", "DE.Controllers.Main.txtNotInTable": "nincs benne a táblázatban", "DE.Controllers.Main.txtNotValidBookmark": "Hiba! Nem valós könyvjező referencia.", @@ -791,6 +827,7 @@ "DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Lekerekített téglalap alakú szövegbuborék", "DE.Controllers.Main.txtStarsRibbons": "Csillagok és szalagok", "DE.Controllers.Main.txtStyle_Caption": "Felirat", + "DE.Controllers.Main.txtStyle_endnote_text": "Végjegyzet szövege", "DE.Controllers.Main.txtStyle_footnote_text": "Lábjegyzet szövege", "DE.Controllers.Main.txtStyle_Heading_1": "Címsor 1", "DE.Controllers.Main.txtStyle_Heading_2": "Címsor 2", @@ -808,9 +845,11 @@ "DE.Controllers.Main.txtStyle_Quote": "Idézet", "DE.Controllers.Main.txtStyle_Subtitle": "Alcím", "DE.Controllers.Main.txtStyle_Title": "Cím", - "DE.Controllers.Main.txtSyntaxError": "Szintakszis hiba", + "DE.Controllers.Main.txtSyntaxError": "Szintaktikai hiba", "DE.Controllers.Main.txtTableInd": "Táblázat index nem lehet nulla", "DE.Controllers.Main.txtTableOfContents": "Tartalomjegyzék", + "DE.Controllers.Main.txtTableOfFigures": "Ábrajegyzék", + "DE.Controllers.Main.txtTOCHeading": "Tartalomjegyzék címsor", "DE.Controllers.Main.txtTooLarge": "Túl nagy szám a formázáshoz", "DE.Controllers.Main.txtTypeEquation": "Írjon be ide egy egyenletet.", "DE.Controllers.Main.txtUndefBookmark": "Ismeretlen könyvjelző", @@ -824,7 +863,7 @@ "DE.Controllers.Main.uploadDocSizeMessage": "A maximális dokumentum méret elérve.", "DE.Controllers.Main.uploadImageExtMessage": "Ismeretlen képformátum.", "DE.Controllers.Main.uploadImageFileCountMessage": "Nincs kép feltöltve.", - "DE.Controllers.Main.uploadImageSizeMessage": "A maximális képmérethatár túllépve.", + "DE.Controllers.Main.uploadImageSizeMessage": "A kép túl nagy. A maximális méret 25 MB.", "DE.Controllers.Main.uploadImageTextText": "Kép feltöltése...", "DE.Controllers.Main.uploadImageTitleText": "Kép feltöltése", "DE.Controllers.Main.waitText": "Kérjük, várjon...", @@ -846,13 +885,16 @@ "DE.Controllers.Statusbar.tipReview": "Módosítások követése", "DE.Controllers.Statusbar.zoomText": "Zoom {0}%", "DE.Controllers.Toolbar.confirmAddFontName": "A menteni kívánt betűkészlet nem érhető el az aktuális eszközön.
A szövegstílus a rendszer egyik betűkészletével jelenik meg, a mentett betűtípust akkor használja, ha elérhető.
Folytatni szeretné?", + "DE.Controllers.Toolbar.dataUrl": "Illesszen be egy adat URL-t", "DE.Controllers.Toolbar.notcriticalErrorTitle": "Figyelmeztetés", "DE.Controllers.Toolbar.textAccent": "Accents", "DE.Controllers.Toolbar.textBracket": "Zárójelben", "DE.Controllers.Toolbar.textEmptyImgUrl": "Meg kell adni a kép URL linkjét.", + "DE.Controllers.Toolbar.textEmptyMMergeUrl": "Meg kell adni az URL-t.", "DE.Controllers.Toolbar.textFontSizeErr": "A megadott érték helytelen.
Kérjük, adjon meg egy számértéket 1 és 300 között", "DE.Controllers.Toolbar.textFraction": "Törtek", "DE.Controllers.Toolbar.textFunction": "Függévenyek", + "DE.Controllers.Toolbar.textGroup": "Csoport", "DE.Controllers.Toolbar.textInsert": "Beszúrás", "DE.Controllers.Toolbar.textIntegral": "Integrálok", "DE.Controllers.Toolbar.textLargeOperator": "Nagy operátorok", @@ -871,8 +913,8 @@ "DE.Controllers.Toolbar.txtAccent_Bar": "Sáv", "DE.Controllers.Toolbar.txtAccent_BarBot": "Aláhúzás", "DE.Controllers.Toolbar.txtAccent_BarTop": "Felső sáv", - "DE.Controllers.Toolbar.txtAccent_BorderBox": "Dobozos képlet (pozicionálóval)", - "DE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Dobozos képlet (példa)", + "DE.Controllers.Toolbar.txtAccent_BorderBox": "Dobozos függvény (pozicionálóval)", + "DE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Dobozos függvény (példa)", "DE.Controllers.Toolbar.txtAccent_Check": "Ellenőriz", "DE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Alsó zárójel", "DE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Felső összekötő", @@ -961,7 +1003,7 @@ "DE.Controllers.Toolbar.txtFunction_Csch": "Hiperbolikus koszekáns függvény", "DE.Controllers.Toolbar.txtFunction_Custom_1": "Szinusz théta", "DE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", - "DE.Controllers.Toolbar.txtFunction_Custom_3": "Tangens képlet", + "DE.Controllers.Toolbar.txtFunction_Custom_3": "Tangens függvény", "DE.Controllers.Toolbar.txtFunction_Sec": "Szekáns függvény", "DE.Controllers.Toolbar.txtFunction_Sech": "Hiperbolikus szekáns függvény", "DE.Controllers.Toolbar.txtFunction_Sin": "Szinusz függvény", @@ -1184,6 +1226,7 @@ "DE.Controllers.Toolbar.txtSymbol_zeta": "Dzéta", "DE.Controllers.Viewport.textFitPage": "Oldalhoz igazít", "DE.Controllers.Viewport.textFitWidth": "Szélességhez igazít", + "DE.Controllers.Viewport.txtDarkMode": "Sötét mód", "DE.Views.AddNewCaptionLabelDialog.textLabel": "Címke:", "DE.Views.AddNewCaptionLabelDialog.textLabelError": "A címke nem lehet üres.", "DE.Views.BookmarksDialog.textAdd": "Hozzáad", @@ -1328,15 +1371,15 @@ "DE.Views.DateTimeDialog.textUpdate": "Automatikus frissítés", "DE.Views.DateTimeDialog.txtTitle": "Dátum és idő", "DE.Views.DocumentHolder.aboveText": "Felett", - "DE.Views.DocumentHolder.addCommentText": "Hozzászólás hozzáadása", + "DE.Views.DocumentHolder.addCommentText": "Megjegyzés hozzáadása", "DE.Views.DocumentHolder.advancedDropCapText": "Iniciálé beállításai", "DE.Views.DocumentHolder.advancedFrameText": "Speciális keret beállítások", - "DE.Views.DocumentHolder.advancedParagraphText": "Bekezdés haladó beállítások", + "DE.Views.DocumentHolder.advancedParagraphText": "Haladó bekezdés beállítások", "DE.Views.DocumentHolder.advancedTableText": "Haladó táblázatbeállítások", "DE.Views.DocumentHolder.advancedText": "Haladó beállítások", "DE.Views.DocumentHolder.alignmentText": "Elrendezés", "DE.Views.DocumentHolder.belowText": "Alatt", - "DE.Views.DocumentHolder.breakBeforeText": "Oldaltörés elötte", + "DE.Views.DocumentHolder.breakBeforeText": "Oldaltörés előtte", "DE.Views.DocumentHolder.bulletsText": "Felsorolás és számozás", "DE.Views.DocumentHolder.cellAlignText": "Cella vízszintes elrendezése", "DE.Views.DocumentHolder.cellText": "Cella", @@ -1374,6 +1417,7 @@ "DE.Views.DocumentHolder.mergeCellsText": "Cellák összevonása", "DE.Views.DocumentHolder.moreText": "Több változat...", "DE.Views.DocumentHolder.noSpellVariantsText": "Nincsenek változatok", + "DE.Views.DocumentHolder.notcriticalErrorTitle": "Figyelmeztetés", "DE.Views.DocumentHolder.originalSizeText": "Valódi méret", "DE.Views.DocumentHolder.paragraphText": "Bekezdés", "DE.Views.DocumentHolder.removeHyperlinkText": "Hivatkozás eltávolítása", @@ -1441,7 +1485,7 @@ "DE.Views.DocumentHolder.textRotate270": "Elforgat balra 90 fokkal", "DE.Views.DocumentHolder.textRotate90": "Elforgat jobbra 90 fokkal", "DE.Views.DocumentHolder.textRow": "Teljes sor törlése", - "DE.Views.DocumentHolder.textSeparateList": "Szeparált lista", + "DE.Views.DocumentHolder.textSeparateList": "Külön lista", "DE.Views.DocumentHolder.textSettings": "Beállítások", "DE.Views.DocumentHolder.textSeveral": "Több sor/oszlop", "DE.Views.DocumentHolder.textShapeAlignBottom": "Alulra rendez", @@ -1531,6 +1575,7 @@ "DE.Views.DocumentHolder.txtRemLimit": "Limit eltávolítása", "DE.Views.DocumentHolder.txtRemoveAccentChar": "Ékezet eltávolítása", "DE.Views.DocumentHolder.txtRemoveBar": "Sáv eltávolítása", + "DE.Views.DocumentHolder.txtRemoveWarning": "El szeretné távolítani ezt az aláírást?
Nem lehet visszavonni.", "DE.Views.DocumentHolder.txtRemScripts": "Szkriptek eltávolítása", "DE.Views.DocumentHolder.txtRemSubscript": "Alsó index eltávolítása", "DE.Views.DocumentHolder.txtRemSuperscript": "Felső index eltávolítása", @@ -1550,6 +1595,7 @@ "DE.Views.DocumentHolder.txtTopAndBottom": "Felül - alul", "DE.Views.DocumentHolder.txtUnderbar": "Sáv a szöveg alatt", "DE.Views.DocumentHolder.txtUngroup": "Csoport szétválasztása", + "DE.Views.DocumentHolder.txtWarnUrl": "A link megnyitása káros lehet az eszközére és adataira.
Biztosan folytatja?", "DE.Views.DocumentHolder.updateStyleText": "%1 stílust frissít", "DE.Views.DocumentHolder.vertAlignText": "Függőleges rendezés", "DE.Views.DropcapSettingsAdvanced.strBorders": "Szegélyek és kitöltés", @@ -1600,7 +1646,9 @@ "DE.Views.FileMenu.btnBackCaption": "Fájl helyének megnyitása", "DE.Views.FileMenu.btnCloseMenuCaption": "Menü bezárása", "DE.Views.FileMenu.btnCreateNewCaption": "Új létrehozása", - "DE.Views.FileMenu.btnDownloadCaption": "Letöltés mint...", + "DE.Views.FileMenu.btnDownloadCaption": "Letöltés másként...", + "DE.Views.FileMenu.btnExitCaption": "Kilépés", + "DE.Views.FileMenu.btnFileOpenCaption": "Megnyitás...", "DE.Views.FileMenu.btnHelpCaption": "Súgó...", "DE.Views.FileMenu.btnHistoryCaption": "Verziótörténet", "DE.Views.FileMenu.btnInfoCaption": "Dokumentum infó...", @@ -1616,13 +1664,15 @@ "DE.Views.FileMenu.btnSettingsCaption": "Haladó beállítások...", "DE.Views.FileMenu.btnToEditCaption": "Dokumentum szerkesztése", "DE.Views.FileMenu.textDownload": "Letöltés", + "DE.Views.FileMenuPanels.CreateNew.txtBlank": "Üres Dokumentum", + "DE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Új létrehozása", "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Alkalmaz", "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Szerző hozzáadása", "DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Szöveg hozzáadása", "DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Applikáció", "DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Szerző", "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Hozzáférési jogok módosítása", - "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Hozzászólás", + "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Megjegyzés", "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Létrehozva", "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Betöltés...", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Utoljára módosította", @@ -1661,17 +1711,18 @@ "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "El kell fogadnia a módosításokat mielőtt meg tudná nézni", "DE.Views.FileMenuPanels.Settings.strFast": "Gyors", "DE.Views.FileMenuPanels.Settings.strFontRender": "Betűtípus ajánlás", - "DE.Views.FileMenuPanels.Settings.strForcesave": "Mindig mentse a szerverre (egyébként mentse a szerverre a dokumentum bezárásakor)", + "DE.Views.FileMenuPanels.Settings.strForcesave": "A Mentés vagy a Ctrl+S gomb megnyomása után adja hozzá a verziót a tárhelyhez", "DE.Views.FileMenuPanels.Settings.strInputMode": "Hieroglifák bekapcsolása", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Kapcsolja be a hozzászólások megjelenítését", + "DE.Views.FileMenuPanels.Settings.strLiveComment": "Kapcsolja be a megjegyzések megjelenítését", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Makró beállítások", "DE.Views.FileMenuPanels.Settings.strPaste": "Kivágás, másolás és beillesztés", "DE.Views.FileMenuPanels.Settings.strPasteButton": "A tartalom beillesztésekor jelenítse meg a beillesztési beállítások gombot", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Kapcsolja be a megoldott hozzászólások megjelenítését", + "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Kapcsolja be a megoldott megjegyzések megjelenítését", + "DE.Views.FileMenuPanels.Settings.strReviewHover": "Változások követésének megjelenése", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Valós idejű együttműködés módosításai", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Helyesírás-ellenőrzés bekapcsolása", "DE.Views.FileMenuPanels.Settings.strStrict": "Biztonságos", - "DE.Views.FileMenuPanels.Settings.strTheme": "Téma", + "DE.Views.FileMenuPanels.Settings.strTheme": "Felhasználói felület témája", "DE.Views.FileMenuPanels.Settings.strUnit": "Mérési egység", "DE.Views.FileMenuPanels.Settings.strZoom": "Alapértelmezett zoom érték", "DE.Views.FileMenuPanels.Settings.text10Minutes": "10 percenként", @@ -1683,19 +1734,22 @@ "DE.Views.FileMenuPanels.Settings.textAutoSave": "Automatikus mentés", "DE.Views.FileMenuPanels.Settings.textCompatible": "Kompatibilitás", "DE.Views.FileMenuPanels.Settings.textDisabled": "Letiltott", - "DE.Views.FileMenuPanels.Settings.textForceSave": "Mentés a szerverre", + "DE.Views.FileMenuPanels.Settings.textForceSave": "Köztes verziók mentése", "DE.Views.FileMenuPanels.Settings.textMinute": "Minden perc", "DE.Views.FileMenuPanels.Settings.textOldVersions": "A fájlok legyenek kompatibilisek a régebbi MS Word verziókkal, amikor DOCX fájlként menti őket", "DE.Views.FileMenuPanels.Settings.txtAll": "Mindent mutat", "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Automatikus javítás beállításai...", "DE.Views.FileMenuPanels.Settings.txtCacheMode": "Alapértelmezett cache mód", + "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "Megjelenítés a szövegbuborékokba kattintáskor", + "DE.Views.FileMenuPanels.Settings.txtChangesTip": "Megjelenítés az eszköztippekben ha az egér rámutat", "DE.Views.FileMenuPanels.Settings.txtCm": "Centiméter", + "DE.Views.FileMenuPanels.Settings.txtDarkMode": "Kapcsolja be a dokumentum sötét módot", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Oldalhoz igazít", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Szélességhez igazít", "DE.Views.FileMenuPanels.Settings.txtInch": "Hüvelyk", "DE.Views.FileMenuPanels.Settings.txtInput": "Alternatív bemenet", "DE.Views.FileMenuPanels.Settings.txtLast": "Az utolsót mutat", - "DE.Views.FileMenuPanels.Settings.txtLiveComment": "Hozzászólások megjelenítése", + "DE.Views.FileMenuPanels.Settings.txtLiveComment": "Megjegyzések megjelenítése", "DE.Views.FileMenuPanels.Settings.txtMac": "OS X-ként", "DE.Views.FileMenuPanels.Settings.txtNative": "Natív", "DE.Views.FileMenuPanels.Settings.txtNone": "Semmit nem mutat", @@ -1706,9 +1760,13 @@ "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Helyesírás-ellenőrzés", "DE.Views.FileMenuPanels.Settings.txtStopMacros": "Összes letiltása", "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Minden értesítés nélküli makró letiltása", - "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Értesítés mutatása", + "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Értesítés megjelenítése", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Minden értesítéssel rendelkező makró letiltása", "DE.Views.FileMenuPanels.Settings.txtWin": "Windows-ként", + "DE.Views.FormSettings.textAlways": "Mindig", + "DE.Views.FormSettings.textAspect": "Képarány zárolása", + "DE.Views.FormSettings.textAutofit": "Automatikus igazítás", + "DE.Views.FormSettings.textBackgroundColor": "Háttérszín", "DE.Views.FormSettings.textCheckbox": "Jelölőnégyzet", "DE.Views.FormSettings.textColor": "Szegély színe", "DE.Views.FormSettings.textComb": "Karakterfésű", @@ -1718,6 +1776,7 @@ "DE.Views.FormSettings.textDisconnect": "Kapcsolat bontása", "DE.Views.FormSettings.textDropDown": "Legördülő", "DE.Views.FormSettings.textField": "Szövegmező", + "DE.Views.FormSettings.textFixed": "Fix méretű mező", "DE.Views.FormSettings.textFromFile": "Fájlból", "DE.Views.FormSettings.textFromStorage": "Tárolóból", "DE.Views.FormSettings.textFromUrl": "Hivatkozásból", @@ -1726,15 +1785,21 @@ "DE.Views.FormSettings.textKey": "Kulcs", "DE.Views.FormSettings.textLock": "Lezárás", "DE.Views.FormSettings.textMaxChars": "Karakter limit", + "DE.Views.FormSettings.textMulti": "Többsoros mező", + "DE.Views.FormSettings.textNever": "Újabb", "DE.Views.FormSettings.textNoBorder": "Nincs szegély", "DE.Views.FormSettings.textPlaceholder": "Helyőrző", "DE.Views.FormSettings.textRadiobox": "Rádiógomb", + "DE.Views.FormSettings.textRequired": "Kötelező", + "DE.Views.FormSettings.textScale": "Mikor méretezze át", "DE.Views.FormSettings.textSelectImage": "Kép kiválasztása", "DE.Views.FormSettings.textTip": "Tipp", "DE.Views.FormSettings.textTipAdd": "Új érték hozzáadása", "DE.Views.FormSettings.textTipDelete": "Érték törlése", "DE.Views.FormSettings.textTipDown": "Lefelé mozgat", "DE.Views.FormSettings.textTipUp": "Felfelé mozgat", + "DE.Views.FormSettings.textTooBig": "A kép túl nagy", + "DE.Views.FormSettings.textTooSmall": "A kép túl kicsi", "DE.Views.FormSettings.textUnlock": "Kinyitás", "DE.Views.FormSettings.textValue": "Értékopciók", "DE.Views.FormSettings.textWidth": "Cella szélesség", @@ -1745,13 +1810,17 @@ "DE.Views.FormsTab.capBtnNext": "Következő mező", "DE.Views.FormsTab.capBtnPrev": "Előző mező", "DE.Views.FormsTab.capBtnRadioBox": "Rádiógomb", + "DE.Views.FormsTab.capBtnSaveForm": "Mentés OFORM-ként", "DE.Views.FormsTab.capBtnSubmit": "Beküldés", "DE.Views.FormsTab.capBtnText": "Szövegmező", "DE.Views.FormsTab.capBtnView": "Űrlap megtekintése", "DE.Views.FormsTab.textClear": "Mezők törlése", "DE.Views.FormsTab.textClearFields": "Az összes mező törlése", + "DE.Views.FormsTab.textCreateForm": "Mezők hozzáadása és kitölthető OFORM dokumentumot létrehozása", + "DE.Views.FormsTab.textGotIt": "OK", "DE.Views.FormsTab.textHighlight": "Kiemelés beállításai", "DE.Views.FormsTab.textNoHighlight": "Nincs kiemelés", + "DE.Views.FormsTab.textRequired": "Töltse ki az összes szükséges mezőt az űrlap elküldéséhez.", "DE.Views.FormsTab.textSubmited": "Az űrlap sikeresen elküldve", "DE.Views.FormsTab.tipCheckBox": "Jelölőnégyzet beszúrása", "DE.Views.FormsTab.tipComboBox": "Legördülő beszúrása", @@ -1760,9 +1829,11 @@ "DE.Views.FormsTab.tipNextForm": "Ugrás a következő mezőre", "DE.Views.FormsTab.tipPrevForm": "Ugrás az előző mezőre", "DE.Views.FormsTab.tipRadioBox": "Rádiógomb beszúrása", + "DE.Views.FormsTab.tipSaveForm": "Fájl mentése kitölthető OFORM dokumentumként", "DE.Views.FormsTab.tipSubmit": "Űrlap beküldése", "DE.Views.FormsTab.tipTextField": "Szövegmező beszúrása", - "DE.Views.FormsTab.tipViewForm": "Űrlap kitöltési mód", + "DE.Views.FormsTab.tipViewForm": "Űrlap megtekintése", + "DE.Views.FormsTab.txtUntitled": "Névtelen", "DE.Views.HeaderFooterSettings.textBottomCenter": "Alul középen", "DE.Views.HeaderFooterSettings.textBottomLeft": "Bal alsó", "DE.Views.HeaderFooterSettings.textBottomPage": "Az oldal alja", @@ -1789,12 +1860,13 @@ "DE.Views.HyperlinkSettingsDialog.textInternal": "Helyezze a dokumentumba", "DE.Views.HyperlinkSettingsDialog.textTitle": "Hivatkozás beállítások", "DE.Views.HyperlinkSettingsDialog.textTooltip": "Gyorstipp szöveg", - "DE.Views.HyperlinkSettingsDialog.textUrl": "Hivatkozás", + "DE.Views.HyperlinkSettingsDialog.textUrl": "Hivatkozás erre", "DE.Views.HyperlinkSettingsDialog.txtBeginning": "Dokumentum eleje", "DE.Views.HyperlinkSettingsDialog.txtBookmarks": "Könyvjelzők", "DE.Views.HyperlinkSettingsDialog.txtEmpty": "Ez egy szükséges mező", "DE.Views.HyperlinkSettingsDialog.txtHeadings": "Címsorok", "DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Ennek a mezőnek hivatkozásnak kell lennie a \"http://www.example.com\" formátumban", + "DE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Ez a mező legfeljebb 2083 karakterből állhat", "DE.Views.ImageSettings.textAdvanced": "Speciális beállítások megjelenítése", "DE.Views.ImageSettings.textCrop": "Levág", "DE.Views.ImageSettings.textCropFill": "Kitölt", @@ -1835,7 +1907,7 @@ "DE.Views.ImageSettingsAdvanced.textAngle": "Szög", "DE.Views.ImageSettingsAdvanced.textArrows": "Nyilak", "DE.Views.ImageSettingsAdvanced.textAspectRatio": "Méretarány rögzítése", - "DE.Views.ImageSettingsAdvanced.textAutofit": "Automatikus helykitöltés", + "DE.Views.ImageSettingsAdvanced.textAutofit": "Automatikus igazítás", "DE.Views.ImageSettingsAdvanced.textBeginSize": "Kezdő méret", "DE.Views.ImageSettingsAdvanced.textBeginStyle": "Kezdő stílus", "DE.Views.ImageSettingsAdvanced.textBelow": "alatt", @@ -1902,7 +1974,7 @@ "DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip": "Teteje és alja", "DE.Views.LeftMenu.tipAbout": "Névjegy", "DE.Views.LeftMenu.tipChat": "Chat", - "DE.Views.LeftMenu.tipComments": "Hozzászólások", + "DE.Views.LeftMenu.tipComments": "Megjegyzések", "DE.Views.LeftMenu.tipNavigation": "Navigáció", "DE.Views.LeftMenu.tipPlugins": "Kiegészítők", "DE.Views.LeftMenu.tipSearch": "Keresés", @@ -2002,7 +2074,7 @@ "DE.Views.MailMergeSettings.textDocx": "Docx", "DE.Views.MailMergeSettings.textDownload": "Letöltés", "DE.Views.MailMergeSettings.textEditData": "Címzettek szerkesztése", - "DE.Views.MailMergeSettings.textEmail": "Email", + "DE.Views.MailMergeSettings.textEmail": "E-mail", "DE.Views.MailMergeSettings.textFrom": "Tól", "DE.Views.MailMergeSettings.textGoToMail": "Ugorj a levelezésre", "DE.Views.MailMergeSettings.textHighlight": "Egyesítési mezők kiemelése", @@ -2018,7 +2090,7 @@ "DE.Views.MailMergeSettings.textSendMsg": "Az összes e-mail üzenet készen áll, és hamarosan elküldésre kerül.
A küldés sebessége az Ön e-mail szolgáltatásától függ.
Folytathatja a munkát a dokumentummal vagy be is zárhatja. Miután a művelet befejeződött, értesítést küldünk a regisztráció során használt e-mail címére.", "DE.Views.MailMergeSettings.textTo": "ig", "DE.Views.MailMergeSettings.txtFirst": "Első rekord", - "DE.Views.MailMergeSettings.txtFromToError": "A \"tól\" értéke kevesebb kell, hogy legyen, mint az \"ig\" értéke", + "DE.Views.MailMergeSettings.txtFromToError": "A \"-tól\" értéke kevesebb kell, hogy legyen, mint az \"-ig\" értéke", "DE.Views.MailMergeSettings.txtLast": "Utolsó rekord", "DE.Views.MailMergeSettings.txtNext": "A következő rekordhoz", "DE.Views.MailMergeSettings.txtPrev": "A korábbi rekordhoz", @@ -2105,7 +2177,7 @@ "DE.Views.ParagraphSettingsAdvanced.noTabs": "A megadott lapok ezen a területen jelennek meg.", "DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Minden nagybetű", "DE.Views.ParagraphSettingsAdvanced.strBorders": "Szegélyek és kitöltés", - "DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Oldaltörés elötte", + "DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Oldaltörés előtte", "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Duplán áthúzott", "DE.Views.ParagraphSettingsAdvanced.strIndent": "Behúzások", "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Bal", @@ -2193,7 +2265,7 @@ "DE.Views.ShapeSettings.strPattern": "Minta", "DE.Views.ShapeSettings.strShadow": "Árnyék mutatása", "DE.Views.ShapeSettings.strSize": "Méret", - "DE.Views.ShapeSettings.strStroke": "Körvonal", + "DE.Views.ShapeSettings.strStroke": "Vonal", "DE.Views.ShapeSettings.strTransparency": "Átlátszóság", "DE.Views.ShapeSettings.strType": "Típus", "DE.Views.ShapeSettings.textAdvanced": "Speciális beállítások megjelenítése", @@ -2269,9 +2341,9 @@ "DE.Views.Statusbar.tipFitPage": "Oldalhoz igazít", "DE.Views.Statusbar.tipFitWidth": "Szélességhez igazít", "DE.Views.Statusbar.tipSetLang": "Szöveg nyelvének beállítása", - "DE.Views.Statusbar.tipZoomFactor": "Zoom", - "DE.Views.Statusbar.tipZoomIn": "Zoom be", - "DE.Views.Statusbar.tipZoomOut": "Zoom ki", + "DE.Views.Statusbar.tipZoomFactor": "Nagyítás", + "DE.Views.Statusbar.tipZoomIn": "Nagyítás", + "DE.Views.Statusbar.tipZoomOut": "Kicsinyítés", "DE.Views.Statusbar.txtPageNumInvalid": "Hibás oldalszám", "DE.Views.StyleTitleDialog.textHeader": "Új stílus létrehozása", "DE.Views.StyleTitleDialog.textNextStyle": "Következő bekezdésstílus", @@ -2330,7 +2402,7 @@ "DE.Views.TableSettings.splitCellsText": "Cella felosztása...", "DE.Views.TableSettings.splitCellTitleText": "Cella felosztása", "DE.Views.TableSettings.strRepeatRow": "Ismételje fejléc-sorként az egyes oldalak tetején", - "DE.Views.TableSettings.textAddFormula": "Képlet hozzáadása", + "DE.Views.TableSettings.textAddFormula": "Függvény hozzáadása", "DE.Views.TableSettings.textAdvanced": "Speciális beállítások megjelenítése", "DE.Views.TableSettings.textBackColor": "Háttérszín", "DE.Views.TableSettings.textBanded": "Csíkos", @@ -2338,6 +2410,7 @@ "DE.Views.TableSettings.textBorders": "Szegély stílus", "DE.Views.TableSettings.textCellSize": "Sorok és cellák mérete", "DE.Views.TableSettings.textColumns": "Oszlopok", + "DE.Views.TableSettings.textConvert": "Táblázat konvertálása szövegbe", "DE.Views.TableSettings.textDistributeCols": "Oszlopok elosztása", "DE.Views.TableSettings.textDistributeRows": "Sorok elosztása", "DE.Views.TableSettings.textEdit": "Sorok és oszlopok", @@ -2442,10 +2515,18 @@ "DE.Views.TableSettingsAdvanced.txtNoBorders": "Nincsenek szegélyek", "DE.Views.TableSettingsAdvanced.txtPercent": "Százalék", "DE.Views.TableSettingsAdvanced.txtPt": "Pont", + "DE.Views.TableToTextDialog.textEmpty": "Be kell írnia egy karaktert az egyéni elválasztóhoz.", + "DE.Views.TableToTextDialog.textNested": "Beágyazott táblázatok konvertálása", + "DE.Views.TableToTextDialog.textOther": "Egyéb", + "DE.Views.TableToTextDialog.textPara": "Bekezdésjelek", + "DE.Views.TableToTextDialog.textSemicolon": "Pontosvesszők", + "DE.Views.TableToTextDialog.textSeparator": "Szöveg elválasztása ezzel:", + "DE.Views.TableToTextDialog.textTab": "Lapok", + "DE.Views.TableToTextDialog.textTitle": "Táblázat konvertálása szövegbe", "DE.Views.TextArtSettings.strColor": "Szín", "DE.Views.TextArtSettings.strFill": "Kitölt", "DE.Views.TextArtSettings.strSize": "Méret", - "DE.Views.TextArtSettings.strStroke": "Körvonal", + "DE.Views.TextArtSettings.strStroke": "Vonal", "DE.Views.TextArtSettings.strTransparency": "Átlátszóság", "DE.Views.TextArtSettings.strType": "Típus", "DE.Views.TextArtSettings.textAngle": "Szög", @@ -2465,10 +2546,25 @@ "DE.Views.TextArtSettings.tipAddGradientPoint": "Színátmenet pont hozzáadása", "DE.Views.TextArtSettings.tipRemoveGradientPoint": "Színátmenet pont eltávolítása", "DE.Views.TextArtSettings.txtNoBorders": "Nincs vonal", - "DE.Views.Toolbar.capBtnAddComment": "Hozzászólás írása", + "DE.Views.TextToTableDialog.textAutofit": "Automatikus igazítás beállításai", + "DE.Views.TextToTableDialog.textColumns": "Oszlopok", + "DE.Views.TextToTableDialog.textContents": "Automatikus igazítás a tartalomhoz", + "DE.Views.TextToTableDialog.textEmpty": "Be kell írnia egy karaktert az egyéni elválasztóhoz.", + "DE.Views.TextToTableDialog.textFixed": "Rögzített oszlopszélesség", + "DE.Views.TextToTableDialog.textOther": "Egyéb", + "DE.Views.TextToTableDialog.textPara": "Bekezdések", + "DE.Views.TextToTableDialog.textRows": "Sorok", + "DE.Views.TextToTableDialog.textSemicolon": "Pontosvesszők", + "DE.Views.TextToTableDialog.textSeparator": "Szöveg elválasztása ennél:", + "DE.Views.TextToTableDialog.textTab": "Lapok", + "DE.Views.TextToTableDialog.textTableSize": "Táblázat mérete", + "DE.Views.TextToTableDialog.textTitle": "Szöveg konvertálása táblázatba", + "DE.Views.TextToTableDialog.textWindow": "Automatikus igazítás az ablakhoz", + "DE.Views.TextToTableDialog.txtAutoText": "Automatikus", + "DE.Views.Toolbar.capBtnAddComment": "Megjegyzés hozzáadása", "DE.Views.Toolbar.capBtnBlankPage": "Üres oldal", "DE.Views.Toolbar.capBtnColumns": "Hasábok", - "DE.Views.Toolbar.capBtnComment": "Hozzászólás", + "DE.Views.Toolbar.capBtnComment": "Megjegyzés", "DE.Views.Toolbar.capBtnDateTime": "Dátum és idő", "DE.Views.Toolbar.capBtnInsChart": "Diagram", "DE.Views.Toolbar.capBtnInsControls": "Tartalomkezelők", @@ -2500,6 +2596,9 @@ "DE.Views.Toolbar.mniEditFooter": "Lábléc szerkesztése", "DE.Views.Toolbar.mniEditHeader": "Fejléc szerkesztése", "DE.Views.Toolbar.mniEraseTable": "Táblázat törlése", + "DE.Views.Toolbar.mniFromFile": "Fájlból", + "DE.Views.Toolbar.mniFromStorage": "Tárolóból", + "DE.Views.Toolbar.mniFromUrl": "URL-ből", "DE.Views.Toolbar.mniHiddenBorders": "Rejtett táblázat szegélyek", "DE.Views.Toolbar.mniHiddenChars": "Tabulátorok", "DE.Views.Toolbar.mniHighlightControls": "Kiemelés beállításai", @@ -2508,6 +2607,7 @@ "DE.Views.Toolbar.mniImageFromUrl": "Kép hivatkozásból", "DE.Views.Toolbar.mniLowerCase": "kisbetűs", "DE.Views.Toolbar.mniSentenceCase": "Mondatkezdő.", + "DE.Views.Toolbar.mniTextToTable": "Szöveg konvertálása táblázatba", "DE.Views.Toolbar.mniToggleCase": "kIS- éS nAGYBETŰ vÁLTÁSA", "DE.Views.Toolbar.mniUpperCase": "NAGYBETŰS", "DE.Views.Toolbar.strMenuNoFill": "Nincs kitöltés", @@ -2655,7 +2755,7 @@ "DE.Views.Toolbar.txtScheme11": "Metro", "DE.Views.Toolbar.txtScheme12": "Modul", "DE.Views.Toolbar.txtScheme13": "Gazdag", - "DE.Views.Toolbar.txtScheme14": "Oriel", + "DE.Views.Toolbar.txtScheme14": "Ablakfülke", "DE.Views.Toolbar.txtScheme15": "Eredet", "DE.Views.Toolbar.txtScheme16": "Papír", "DE.Views.Toolbar.txtScheme17": "Napforduló", @@ -2664,6 +2764,7 @@ "DE.Views.Toolbar.txtScheme2": "Szürkeárnyalatos", "DE.Views.Toolbar.txtScheme20": "Városi", "DE.Views.Toolbar.txtScheme21": "Lelkesedés", + "DE.Views.Toolbar.txtScheme22": "Új Office", "DE.Views.Toolbar.txtScheme3": "Apex", "DE.Views.Toolbar.txtScheme4": "Nézőpont", "DE.Views.Toolbar.txtScheme5": "Polgári", diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json index 7c238d0dd..b9b088f18 100644 --- a/apps/documenteditor/main/locale/ja.json +++ b/apps/documenteditor/main/locale/ja.json @@ -434,6 +434,7 @@ "Common.Views.ReviewPopover.txtAccept": "同意する", "Common.Views.ReviewPopover.txtDeleteTip": "削除", "Common.Views.ReviewPopover.txtEditTip": "編集", + "Common.Views.ReviewPopover.txtReject": "拒否する", "Common.Views.SaveAsDlg.textLoading": "読み込み中", "Common.Views.SaveAsDlg.textTitle": "保存先のフォルダ", "Common.Views.SelectFileDlg.textLoading": "読み込み中", @@ -1742,6 +1743,7 @@ "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "バルーンをクリックで表示する", "DE.Views.FileMenuPanels.Settings.txtChangesTip": "ヒントをクリックで表示する", "DE.Views.FileMenuPanels.Settings.txtCm": "センチ", + "DE.Views.FileMenuPanels.Settings.txtDarkMode": "ドキュメントをダークモードに変更", "DE.Views.FileMenuPanels.Settings.txtFitPage": "ページに合わせる", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "幅を合わせる", "DE.Views.FileMenuPanels.Settings.txtInch": "インチ", @@ -1808,7 +1810,7 @@ "DE.Views.FormsTab.capBtnNext": "新しいフィールド", "DE.Views.FormsTab.capBtnPrev": "前のフィールド", "DE.Views.FormsTab.capBtnRadioBox": "ラジオボタン", - "DE.Views.FormsTab.capBtnSaveForm": "フォームとして保存", + "DE.Views.FormsTab.capBtnSaveForm": "オリジナルフォームとして保存", "DE.Views.FormsTab.capBtnSubmit": "送信", "DE.Views.FormsTab.capBtnText": "テキストフィールド", "DE.Views.FormsTab.capBtnView": "フォームを表示する", diff --git a/apps/documenteditor/main/locale/nl.json b/apps/documenteditor/main/locale/nl.json index 7f5232fe3..0eda9e811 100644 --- a/apps/documenteditor/main/locale/nl.json +++ b/apps/documenteditor/main/locale/nl.json @@ -1743,6 +1743,7 @@ "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "Geef weer door klik in ballons", "DE.Views.FileMenuPanels.Settings.txtChangesTip": "Geef weer in tooltips door cursor over item te bewegen.", "DE.Views.FileMenuPanels.Settings.txtCm": "Centimeter", + "DE.Views.FileMenuPanels.Settings.txtDarkMode": "Donkere modus voor document inschakelen", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Aan pagina aanpassen", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Aan breedte aanpassen", "DE.Views.FileMenuPanels.Settings.txtInch": "Inch", @@ -1809,7 +1810,7 @@ "DE.Views.FormsTab.capBtnNext": "Volgend veld ", "DE.Views.FormsTab.capBtnPrev": "Vorig veld", "DE.Views.FormsTab.capBtnRadioBox": "Radial knop", - "DE.Views.FormsTab.capBtnSaveForm": "Opslaan als formulier", + "DE.Views.FormsTab.capBtnSaveForm": "Opslaan als OFORM", "DE.Views.FormsTab.capBtnSubmit": "Verzenden ", "DE.Views.FormsTab.capBtnText": "Tekstvak", "DE.Views.FormsTab.capBtnView": "Bekijk formulier", diff --git a/apps/documenteditor/main/locale/pl.json b/apps/documenteditor/main/locale/pl.json index fc58ff1f7..b34c0a933 100644 --- a/apps/documenteditor/main/locale/pl.json +++ b/apps/documenteditor/main/locale/pl.json @@ -1743,6 +1743,7 @@ "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "Pokaż po kliknięciu w objaśnieniach", "DE.Views.FileMenuPanels.Settings.txtChangesTip": "Pokaż po najechaniu na podpowiedzi", "DE.Views.FileMenuPanels.Settings.txtCm": "Centymetr", + "DE.Views.FileMenuPanels.Settings.txtDarkMode": "Włącz tryb ciemny dla dokumentu", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Dopasuj do strony", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Dopasuj do szerokości", "DE.Views.FileMenuPanels.Settings.txtInch": "Cale", diff --git a/apps/documenteditor/main/locale/pt.json b/apps/documenteditor/main/locale/pt.json index 8341466a7..ae6cec4af 100644 --- a/apps/documenteditor/main/locale/pt.json +++ b/apps/documenteditor/main/locale/pt.json @@ -168,6 +168,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Novo", "Common.UI.ExtendedColorDialog.textRGBErr": "O valor inserido está incorreto.
Insira um valor numérico entre 0 e 255.", "Common.UI.HSBColorPicker.textNoColor": "Sem cor", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Ocultar palavra-chave", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Mostrar senha", "Common.UI.SearchDialog.textHighlight": "Destacar resultados", "Common.UI.SearchDialog.textMatchCase": "Diferenciar maiúsculas de minúsculas", "Common.UI.SearchDialog.textReplaceDef": "Inserir o texto de substituição", @@ -211,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Listas com marcadores automáticas", "Common.Views.AutoCorrectDialog.textBy": "Por", "Common.Views.AutoCorrectDialog.textDelete": "Excluir", + "Common.Views.AutoCorrectDialog.textFLCells": "Capitalizar a primeira letra das células da tabela", "Common.Views.AutoCorrectDialog.textFLSentence": "Capitalizar a primeira carta de sentenças", "Common.Views.AutoCorrectDialog.textHyperlink": "Internet e caminhos de rede com hyperlinks", "Common.Views.AutoCorrectDialog.textHyphens": "Hífens (--) com traço (-)", @@ -236,12 +239,14 @@ "Common.Views.Comments.mniAuthorDesc": "Autor Z a A", "Common.Views.Comments.mniDateAsc": "Mais antigo", "Common.Views.Comments.mniDateDesc": "Novidades", + "Common.Views.Comments.mniFilterGroups": "Filtrar por grupo", "Common.Views.Comments.mniPositionAsc": "De cima", "Common.Views.Comments.mniPositionDesc": "Do fundo", "Common.Views.Comments.textAdd": "Incluir", "Common.Views.Comments.textAddComment": "Adicionar", "Common.Views.Comments.textAddCommentToDoc": "Adicionar comentário ao documento", "Common.Views.Comments.textAddReply": "Adicionar resposta", + "Common.Views.Comments.textAll": "Todos", "Common.Views.Comments.textAnonym": "Visitante", "Common.Views.Comments.textCancel": "Cancelar", "Common.Views.Comments.textClose": "Fechar", @@ -255,6 +260,7 @@ "Common.Views.Comments.textResolve": "Resolver", "Common.Views.Comments.textResolved": "Resolvido", "Common.Views.Comments.textSort": "Ordenar comentários", + "Common.Views.Comments.textViewResolved": "Não tem permissão para reabrir comentários", "Common.Views.CopyWarningDialog.textDontShow": "Não exibir esta mensagem novamente", "Common.Views.CopyWarningDialog.textMsg": "As ações copiar, cortar e colar usando os botões da barra de ferramentas do editor e as ações de menu de contexto serão realizadas apenas nesta aba do editor.

Para copiar ou colar para ou de aplicativos externos a aba do editor, use as seguintes combinações do teclado:", "Common.Views.CopyWarningDialog.textTitle": "Ações copiar, cortar e colar", @@ -431,6 +437,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Abrir Novamente", "Common.Views.ReviewPopover.textReply": "Responder", "Common.Views.ReviewPopover.textResolve": "Resolver", + "Common.Views.ReviewPopover.textViewResolved": "Não tem permissão para reabrir comentários", "Common.Views.ReviewPopover.txtAccept": "Aceitar", "Common.Views.ReviewPopover.txtDeleteTip": "Excluir", "Common.Views.ReviewPopover.txtEditTip": "Editar", @@ -602,6 +609,7 @@ "DE.Controllers.Main.textLongName": "Insira um nome com menos de 128 caracteres.", "DE.Controllers.Main.textNoLicenseTitle": "Limite de licença atingido", "DE.Controllers.Main.textPaidFeature": "Recurso pago", + "DE.Controllers.Main.textReconnect": "A conexão é restaurada", "DE.Controllers.Main.textRemember": "Lembrar da minha escolha para todos os arquivos. ", "DE.Controllers.Main.textRenameError": "O nome de usuário não pode estar vazio.", "DE.Controllers.Main.textRenameLabel": "Insira um nome a ser usado para colaboração", @@ -879,6 +887,7 @@ "DE.Controllers.Main.warnProcessRightsChange": "Foi negado a você o direito de editar o arquivo.", "DE.Controllers.Navigation.txtBeginning": "Início do documento", "DE.Controllers.Navigation.txtGotoBeginning": "Ir para o início do documento", + "DE.Controllers.Statusbar.textDisconnect": "A conexão foi perdida
Tentando conectar. Verifique as configurações de conexão.", "DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked", "DE.Controllers.Statusbar.textSetTrackChanges": "Você está em modo de rastreamento de alterações", "DE.Controllers.Statusbar.textTrackChanges": "The document is opened with the Track Changes mode enabled", @@ -902,6 +911,7 @@ "DE.Controllers.Toolbar.textMatrix": "Matrizes", "DE.Controllers.Toolbar.textOperator": "Operadores", "DE.Controllers.Toolbar.textRadical": "Radicais", + "DE.Controllers.Toolbar.textRecentlyUsed": "Usado recentemente", "DE.Controllers.Toolbar.textScript": "Scripts", "DE.Controllers.Toolbar.textSymbols": "Símbolos", "DE.Controllers.Toolbar.textTabForms": "Formulários", @@ -1457,6 +1467,7 @@ "DE.Views.DocumentHolder.textDistributeCols": "Distribuir colunas", "DE.Views.DocumentHolder.textDistributeRows": "Distribuir linhas", "DE.Views.DocumentHolder.textEditControls": "Propriedades do controle de conteúdo", + "DE.Views.DocumentHolder.textEditPoints": "Editar Pontos", "DE.Views.DocumentHolder.textEditWrapBoundary": "Editar limite de disposição", "DE.Views.DocumentHolder.textFlipH": "Virar horizontalmente", "DE.Views.DocumentHolder.textFlipV": "Virar verticalmente", @@ -1871,6 +1882,7 @@ "DE.Views.ImageSettings.textCrop": "Cortar", "DE.Views.ImageSettings.textCropFill": "Preencher", "DE.Views.ImageSettings.textCropFit": "Ajustar", + "DE.Views.ImageSettings.textCropToShape": "Cortar para dar forma", "DE.Views.ImageSettings.textEdit": "Editar", "DE.Views.ImageSettings.textEditObject": "Editar objeto", "DE.Views.ImageSettings.textFitMargins": "Ajustar à margem", @@ -1885,6 +1897,7 @@ "DE.Views.ImageSettings.textHintFlipV": "Virar verticalmente", "DE.Views.ImageSettings.textInsert": "Substituir imagem", "DE.Views.ImageSettings.textOriginalSize": "Tamanho padrão", + "DE.Views.ImageSettings.textRecentlyUsed": "Usado recentemente", "DE.Views.ImageSettings.textRotate90": "Girar 90º", "DE.Views.ImageSettings.textRotation": "Rotação", "DE.Views.ImageSettings.textSize": "Tamanho", @@ -2155,6 +2168,11 @@ "DE.Views.PageSizeDialog.textTitle": "Tamanho da página", "DE.Views.PageSizeDialog.textWidth": "Largura", "DE.Views.PageSizeDialog.txtCustom": "Personalizar", + "DE.Views.PageThumbnails.textClosePanel": "Fechar miniaturas de página", + "DE.Views.PageThumbnails.textHighlightVisiblePart": "Realçar parte visível da página", + "DE.Views.PageThumbnails.textPageThumbnails": "Miniaturas de página", + "DE.Views.PageThumbnails.textThumbnailsSettings": "Configurações de miniaturas", + "DE.Views.PageThumbnails.textThumbnailsSize": "Tamanho das miniaturas", "DE.Views.ParagraphSettings.strIndent": "Recuos", "DE.Views.ParagraphSettings.strIndentsLeftText": "Esquerda", "DE.Views.ParagraphSettings.strIndentsRightText": "Direita", @@ -2290,6 +2308,7 @@ "DE.Views.ShapeSettings.textPatternFill": "Padrão", "DE.Views.ShapeSettings.textPosition": "Posição", "DE.Views.ShapeSettings.textRadial": "Radial", + "DE.Views.ShapeSettings.textRecentlyUsed": "Usado recentemente", "DE.Views.ShapeSettings.textRotate90": "Girar 90º", "DE.Views.ShapeSettings.textRotation": "Rotação", "DE.Views.ShapeSettings.textSelectImage": "Selecionar imagem", @@ -2681,6 +2700,7 @@ "DE.Views.Toolbar.textTabLinks": "Referências", "DE.Views.Toolbar.textTabProtect": "Proteção", "DE.Views.Toolbar.textTabReview": "Revisar", + "DE.Views.Toolbar.textTabView": "Ver", "DE.Views.Toolbar.textTitleError": "Erro", "DE.Views.Toolbar.textToCurrent": "Para posição atual", "DE.Views.Toolbar.textTop": "Parte superior: ", @@ -2772,6 +2792,15 @@ "DE.Views.Toolbar.txtScheme7": "Patrimônio Líquido", "DE.Views.Toolbar.txtScheme8": "Fluxo", "DE.Views.Toolbar.txtScheme9": "Fundição", + "DE.Views.ViewTab.textAlwaysShowToolbar": "Sempre mostrar a barra de ferramentas", + "DE.Views.ViewTab.textDarkDocument": "Documento escuro", + "DE.Views.ViewTab.textFitToPage": "Ajustar a página", + "DE.Views.ViewTab.textFitToWidth": "Ajustar largura", + "DE.Views.ViewTab.textInterfaceTheme": "Tema de interface", + "DE.Views.ViewTab.textNavigation": "Navegação", + "DE.Views.ViewTab.textRulers": "Regras", + "DE.Views.ViewTab.textStatusBar": "Barra de status", + "DE.Views.ViewTab.textZoom": "Zoom", "DE.Views.WatermarkSettingsDialog.textAuto": "Automático", "DE.Views.WatermarkSettingsDialog.textBold": "Negrito", "DE.Views.WatermarkSettingsDialog.textColor": "Cor do texto", diff --git a/apps/documenteditor/main/locale/tr.json b/apps/documenteditor/main/locale/tr.json index 33a69f934..e203e13b9 100644 --- a/apps/documenteditor/main/locale/tr.json +++ b/apps/documenteditor/main/locale/tr.json @@ -168,6 +168,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Yeni", "Common.UI.ExtendedColorDialog.textRGBErr": "Girilen değer yanlış.
Lütfen 0 ile 255 arasında sayısal değer giriniz.", "Common.UI.HSBColorPicker.textNoColor": "Renk yok", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Parolayı gizle", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Parolayı göster", "Common.UI.SearchDialog.textHighlight": "Vurgu sonuçları", "Common.UI.SearchDialog.textMatchCase": "Büyük küçük harfe duyarlı", "Common.UI.SearchDialog.textReplaceDef": "Yerine geçecek metini giriniz", @@ -211,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Otomatik madde listesi", "Common.Views.AutoCorrectDialog.textBy": "Tarafından", "Common.Views.AutoCorrectDialog.textDelete": "Sil", + "Common.Views.AutoCorrectDialog.textFLCells": "Tablo hücrelerinin ilk harfini büyük harf yap", "Common.Views.AutoCorrectDialog.textFLSentence": "Cümlelerin ilk harfini büyük yaz", "Common.Views.AutoCorrectDialog.textHyperlink": "Köprülü internet ve ağ yolları", "Common.Views.AutoCorrectDialog.textHyphens": "Kısa çizgi (--) ve tire (—) ", @@ -236,12 +239,14 @@ "Common.Views.Comments.mniAuthorDesc": "Yazar Z'den A'ya", "Common.Views.Comments.mniDateAsc": "En eski", "Common.Views.Comments.mniDateDesc": "En yeni", + "Common.Views.Comments.mniFilterGroups": "Gruba göre Filtrele", "Common.Views.Comments.mniPositionAsc": "Üstten", "Common.Views.Comments.mniPositionDesc": "Alttan", "Common.Views.Comments.textAdd": "Ekle", "Common.Views.Comments.textAddComment": "Yorum Ekle", "Common.Views.Comments.textAddCommentToDoc": "Dökümana yorum ekle", "Common.Views.Comments.textAddReply": "Cevap ekle", + "Common.Views.Comments.textAll": "Tümü", "Common.Views.Comments.textAnonym": "Misafir", "Common.Views.Comments.textCancel": "İptal Et", "Common.Views.Comments.textClose": "Kapat", @@ -255,6 +260,7 @@ "Common.Views.Comments.textResolve": "Çöz", "Common.Views.Comments.textResolved": "Çözüldü", "Common.Views.Comments.textSort": "Yorumları sırala", + "Common.Views.Comments.textViewResolved": "Yorumu yeniden açma izniniz yok", "Common.Views.CopyWarningDialog.textDontShow": "Bu mesajı bir daha gösterme", "Common.Views.CopyWarningDialog.textMsg": "Editör araç çubuğu tuşlarını kullanarak eylemleri kopyala,kes ve yapıştır ve içerik menüsü eylemleri sadece bu editör sekmesiyle yapılabilir.

Editör sekmesi dışındaki uygulamalara/dan kopyalamak yada yapıştırmak için şu klavye kombinasyonlarını kullanınız:", "Common.Views.CopyWarningDialog.textTitle": "Eylemler Kopyala,Kes ve Yapıştır", @@ -431,6 +437,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Tekrar Aç", "Common.Views.ReviewPopover.textReply": "Yanıtla", "Common.Views.ReviewPopover.textResolve": "Çöz", + "Common.Views.ReviewPopover.textViewResolved": "Yorumu yeniden açma izniniz yok", "Common.Views.ReviewPopover.txtAccept": "Kabul Et", "Common.Views.ReviewPopover.txtDeleteTip": "Sil", "Common.Views.ReviewPopover.txtEditTip": "Düzenle", @@ -601,6 +608,7 @@ "DE.Controllers.Main.textLongName": "128 Karakterden kısa bir ad girin.", "DE.Controllers.Main.textNoLicenseTitle": "Lisans limitine ulaşıldı.", "DE.Controllers.Main.textPaidFeature": "Ücretli Özellik", + "DE.Controllers.Main.textReconnect": "Yeniden bağlanıldı", "DE.Controllers.Main.textRemember": "Seçimimi tüm dosyalar için hatırla", "DE.Controllers.Main.textRenameError": "Kullanıcı adı boş bırakılmamalıdır.", "DE.Controllers.Main.textRenameLabel": "İşbirliği için kullanılacak bir ad girin", @@ -878,6 +886,7 @@ "DE.Controllers.Main.warnProcessRightsChange": "Dosyayı düzenleme hakkınız reddedildi", "DE.Controllers.Navigation.txtBeginning": "Belge başlangıcı", "DE.Controllers.Navigation.txtGotoBeginning": "Belgenin başlangıcına git", + "DE.Controllers.Statusbar.textDisconnect": "Bağlantı kesildi
Bağlanmayı deneyin. Lütfen bağlantı ayarlarını kontrol edin.", "DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked", "DE.Controllers.Statusbar.textSetTrackChanges": "Değişiklikleri İzle modundasınız", "DE.Controllers.Statusbar.textTrackChanges": "The document is opened with the Track Changes mode enabled", @@ -901,10 +910,22 @@ "DE.Controllers.Toolbar.textMatrix": "Matris", "DE.Controllers.Toolbar.textOperator": "İşleç", "DE.Controllers.Toolbar.textRadical": "Kök", + "DE.Controllers.Toolbar.textRecentlyUsed": "Son Kullanılanlar", "DE.Controllers.Toolbar.textScript": "Simge", "DE.Controllers.Toolbar.textSymbols": "Simgeler", "DE.Controllers.Toolbar.textTabForms": "Formlar", "DE.Controllers.Toolbar.textWarning": "Dikkat", + "DE.Controllers.Toolbar.tipMarkersArrow": "Ok işaretleri", + "DE.Controllers.Toolbar.tipMarkersCheckmark": "Onay işaretleri", + "DE.Controllers.Toolbar.tipMarkersDash": "Çizgi işaretleri", + "DE.Controllers.Toolbar.tipMarkersFRhombus": "Dolu eşkenar dörtgen işaretler", + "DE.Controllers.Toolbar.tipMarkersFRound": "Dolu yuvarlak işaretler", + "DE.Controllers.Toolbar.tipMarkersFSquare": "Dolu kare işaretler", + "DE.Controllers.Toolbar.tipMarkersHRound": "İçi boş daire işaretler", + "DE.Controllers.Toolbar.tipMarkersStar": "Yıldız işaretleri", + "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Çok düzeyli numaralı işaretler", + "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Çok düzeyli sembol işaretleri", + "DE.Controllers.Toolbar.tipMultiLevelVarious": "Çok düzeyli çeşitli numaralı işaretler", "DE.Controllers.Toolbar.txtAccent_Accent": "Akut", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Right-Left Arrow Above", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Leftwards Arrow Above", @@ -1281,8 +1302,8 @@ "DE.Views.ChartSettings.textWidth": "Genişlik", "DE.Views.ChartSettings.textWrap": "Kaydırma Stili", "DE.Views.ChartSettings.txtBehind": "Arkada", - "DE.Views.ChartSettings.txtInFront": "Önde", - "DE.Views.ChartSettings.txtInline": "Satıriçi", + "DE.Views.ChartSettings.txtInFront": "Yazının Önünde", + "DE.Views.ChartSettings.txtInline": "Satıriçi Yazı", "DE.Views.ChartSettings.txtSquare": "Kare", "DE.Views.ChartSettings.txtThrough": "Sonu", "DE.Views.ChartSettings.txtTight": "Sıkı", @@ -1456,6 +1477,7 @@ "DE.Views.DocumentHolder.textDistributeCols": "Sütunları dağıt", "DE.Views.DocumentHolder.textDistributeRows": "Satırları dağıt", "DE.Views.DocumentHolder.textEditControls": "İçerik kontrol ayarları", + "DE.Views.DocumentHolder.textEditPoints": "Noktaları Düzenle", "DE.Views.DocumentHolder.textEditWrapBoundary": "Sargı Sınırı Düzenle", "DE.Views.DocumentHolder.textFlipH": "Yatay olarak çevir", "DE.Views.DocumentHolder.textFlipV": "Dikey Çevir", @@ -1504,6 +1526,14 @@ "DE.Views.DocumentHolder.textUpdateTOC": "İçindekiler tablosunu yenile", "DE.Views.DocumentHolder.textWrap": "Kaydırma Stili", "DE.Views.DocumentHolder.tipIsLocked": "Bu element şu an başka bir kullanıcı tarafından düzenleniyor.", + "DE.Views.DocumentHolder.tipMarkersArrow": "Ok işaretleri", + "DE.Views.DocumentHolder.tipMarkersCheckmark": "Onay işaretleri", + "DE.Views.DocumentHolder.tipMarkersDash": "Çizgi işaretleri", + "DE.Views.DocumentHolder.tipMarkersFRhombus": "Dolu eşkenar dörtgen işaretler", + "DE.Views.DocumentHolder.tipMarkersFRound": "Dolu yuvarlak işaretler", + "DE.Views.DocumentHolder.tipMarkersFSquare": "Dolu kare işaretler", + "DE.Views.DocumentHolder.tipMarkersHRound": "İçi boş daire işaretler", + "DE.Views.DocumentHolder.tipMarkersStar": "Yıldız işaretleri", "DE.Views.DocumentHolder.toDictionaryText": "Sözlüğe ekle", "DE.Views.DocumentHolder.txtAddBottom": "Alt kenarlık ekle", "DE.Views.DocumentHolder.txtAddFractionBar": "Kesir çubuğu ekle", @@ -1515,7 +1545,7 @@ "DE.Views.DocumentHolder.txtAddTop": "Üst kenarlık ekle", "DE.Views.DocumentHolder.txtAddVer": "Dikey çizgi ekle", "DE.Views.DocumentHolder.txtAlignToChar": "Karaktere uyarla", - "DE.Views.DocumentHolder.txtBehind": "Arkada", + "DE.Views.DocumentHolder.txtBehind": "Yazının Arkasında", "DE.Views.DocumentHolder.txtBorderProps": "Kenarlık özellikleri", "DE.Views.DocumentHolder.txtBottom": "Alt", "DE.Views.DocumentHolder.txtColumnAlign": "Sütun hizalama", @@ -1551,8 +1581,8 @@ "DE.Views.DocumentHolder.txtHideTopLimit": "Hide top limit", "DE.Views.DocumentHolder.txtHideVer": "Hide vertical line", "DE.Views.DocumentHolder.txtIncreaseArg": "Increase argument size", - "DE.Views.DocumentHolder.txtInFront": "Önde", - "DE.Views.DocumentHolder.txtInline": "Satıriçi", + "DE.Views.DocumentHolder.txtInFront": "Yazının Önünde", + "DE.Views.DocumentHolder.txtInline": "Satıriçi Yazı", "DE.Views.DocumentHolder.txtInsertArgAfter": "Insert argument after", "DE.Views.DocumentHolder.txtInsertArgBefore": "Insert argument before", "DE.Views.DocumentHolder.txtInsertBreak": "Insert manual break", @@ -1870,6 +1900,7 @@ "DE.Views.ImageSettings.textCrop": "Kırpmak", "DE.Views.ImageSettings.textCropFill": "Doldur", "DE.Views.ImageSettings.textCropFit": "Sığdır", + "DE.Views.ImageSettings.textCropToShape": "Şekillendirmek için kırp", "DE.Views.ImageSettings.textEdit": "Düzenle", "DE.Views.ImageSettings.textEditObject": "Nesneyi düzenle", "DE.Views.ImageSettings.textFitMargins": "Kenarlara Sığdır", @@ -1884,14 +1915,15 @@ "DE.Views.ImageSettings.textHintFlipV": "Dikey Çevir", "DE.Views.ImageSettings.textInsert": "Resimi Değiştir", "DE.Views.ImageSettings.textOriginalSize": "Gerçek Boyut", + "DE.Views.ImageSettings.textRecentlyUsed": "Son Kullanılanlar", "DE.Views.ImageSettings.textRotate90": "Döndür 90°", "DE.Views.ImageSettings.textRotation": "Döndürme", "DE.Views.ImageSettings.textSize": "Boyut", "DE.Views.ImageSettings.textWidth": "Genişlik", "DE.Views.ImageSettings.textWrap": "Kaydırma Stili", - "DE.Views.ImageSettings.txtBehind": "Arkada", - "DE.Views.ImageSettings.txtInFront": "Önde", - "DE.Views.ImageSettings.txtInline": "Satıriçi", + "DE.Views.ImageSettings.txtBehind": "Yazının Arkasında", + "DE.Views.ImageSettings.txtInFront": "Yazının Önünde", + "DE.Views.ImageSettings.txtInline": "Satıriçi Yazı", "DE.Views.ImageSettings.txtSquare": "Kare", "DE.Views.ImageSettings.txtThrough": "Sonu", "DE.Views.ImageSettings.txtTight": "Sıkı", @@ -1964,9 +1996,9 @@ "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Ağırlık & Oklar", "DE.Views.ImageSettingsAdvanced.textWidth": "Genişlik", "DE.Views.ImageSettingsAdvanced.textWrap": "Kaydırma Stili", - "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Arkada", - "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Önde", - "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "Satıriçi", + "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Yazının Arkasında", + "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Yazının Önünde", + "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "Satıriçi Yazı", "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Kare", "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Sonu", "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Sıkı", @@ -2154,6 +2186,11 @@ "DE.Views.PageSizeDialog.textTitle": "Page Size", "DE.Views.PageSizeDialog.textWidth": "Width", "DE.Views.PageSizeDialog.txtCustom": "Özel", + "DE.Views.PageThumbnails.textClosePanel": "Sayfa küçük resimlerini kapat", + "DE.Views.PageThumbnails.textHighlightVisiblePart": "Sayfanın görünen kısmını vurgula", + "DE.Views.PageThumbnails.textPageThumbnails": "Sayfa Küçük Resimleri", + "DE.Views.PageThumbnails.textThumbnailsSettings": "Küçük resim ayarları", + "DE.Views.PageThumbnails.textThumbnailsSize": "Küçük resim boyutu", "DE.Views.ParagraphSettings.strIndent": "Girintiler", "DE.Views.ParagraphSettings.strIndentsLeftText": "Sol", "DE.Views.ParagraphSettings.strIndentsRightText": "Sağ", @@ -2289,6 +2326,7 @@ "DE.Views.ShapeSettings.textPatternFill": "Desen", "DE.Views.ShapeSettings.textPosition": "Pozisyon", "DE.Views.ShapeSettings.textRadial": "Radyal", + "DE.Views.ShapeSettings.textRecentlyUsed": "Son Kullanılanlar", "DE.Views.ShapeSettings.textRotate90": "Döndür 90°", "DE.Views.ShapeSettings.textRotation": "Döndürme", "DE.Views.ShapeSettings.textSelectImage": "Resim Seç", @@ -2300,7 +2338,7 @@ "DE.Views.ShapeSettings.textWrap": "Kaydırma Stili", "DE.Views.ShapeSettings.tipAddGradientPoint": "Gradyan noktası ekle", "DE.Views.ShapeSettings.tipRemoveGradientPoint": "Gradyan noktasını kaldır", - "DE.Views.ShapeSettings.txtBehind": "Arkada", + "DE.Views.ShapeSettings.txtBehind": "Yazının Arkasında", "DE.Views.ShapeSettings.txtBrownPaper": "Kahverengi Kağıt", "DE.Views.ShapeSettings.txtCanvas": "Tuval", "DE.Views.ShapeSettings.txtCarton": "Karton", @@ -2308,8 +2346,8 @@ "DE.Views.ShapeSettings.txtGrain": "Tane", "DE.Views.ShapeSettings.txtGranite": "Granit", "DE.Views.ShapeSettings.txtGreyPaper": "Gri Kağıt", - "DE.Views.ShapeSettings.txtInFront": "Önde", - "DE.Views.ShapeSettings.txtInline": "Satıriçi", + "DE.Views.ShapeSettings.txtInFront": "Yazının Önünde", + "DE.Views.ShapeSettings.txtInline": "Satıriçi Yazı", "DE.Views.ShapeSettings.txtKnit": "Birleştir", "DE.Views.ShapeSettings.txtLeather": "Deri", "DE.Views.ShapeSettings.txtNoBorders": "Çizgi yok", @@ -2680,6 +2718,7 @@ "DE.Views.Toolbar.textTabLinks": "Başvurular", "DE.Views.Toolbar.textTabProtect": "Koruma", "DE.Views.Toolbar.textTabReview": "İnceleme", + "DE.Views.Toolbar.textTabView": "Görüntüle", "DE.Views.Toolbar.textTitleError": "Hata", "DE.Views.Toolbar.textToCurrent": "Mevcut pozisyona", "DE.Views.Toolbar.textTop": "Top: ", @@ -2771,6 +2810,15 @@ "DE.Views.Toolbar.txtScheme7": "Net Değer", "DE.Views.Toolbar.txtScheme8": "Yayılma", "DE.Views.Toolbar.txtScheme9": "Döküm", + "DE.Views.ViewTab.textAlwaysShowToolbar": "Her zaman araç çubuğunu göster", + "DE.Views.ViewTab.textDarkDocument": "Koyu belge", + "DE.Views.ViewTab.textFitToPage": "Sayfaya Sığdır", + "DE.Views.ViewTab.textFitToWidth": "Genişliğe Sığdır", + "DE.Views.ViewTab.textInterfaceTheme": "Arayüz teması", + "DE.Views.ViewTab.textNavigation": "Gezinti", + "DE.Views.ViewTab.textRulers": "Cetveller", + "DE.Views.ViewTab.textStatusBar": "Durum Çubuğu", + "DE.Views.ViewTab.textZoom": "Yakınlaştırma", "DE.Views.WatermarkSettingsDialog.textAuto": "Otomatik", "DE.Views.WatermarkSettingsDialog.textBold": "Kalın", "DE.Views.WatermarkSettingsDialog.textColor": "Renk", diff --git a/apps/documenteditor/main/locale/uk.json b/apps/documenteditor/main/locale/uk.json index a426e5306..8c164e72f 100644 --- a/apps/documenteditor/main/locale/uk.json +++ b/apps/documenteditor/main/locale/uk.json @@ -10,6 +10,7 @@ "Common.Controllers.ExternalMergeEditor.warningText": "Об'єкт вимкнено, оскільки його редагує інший користувач.", "Common.Controllers.ExternalMergeEditor.warningTitle": "Застереження", "Common.Controllers.History.notcriticalErrorTitle": "Застереження", + "Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Для порівняння документів всі відстежувані зміни в них будуть вважатись прийнятими. Ви бажаєте продовжити?", "Common.Controllers.ReviewChanges.textAtLeast": "принаймн", "Common.Controllers.ReviewChanges.textAuto": "Авто", "Common.Controllers.ReviewChanges.textBaseline": "Базова лінія", @@ -17,6 +18,7 @@ "Common.Controllers.ReviewChanges.textBreakBefore": "розрив сторінки", "Common.Controllers.ReviewChanges.textCaps": "Усі великі", "Common.Controllers.ReviewChanges.textCenter": "Вирівняти центр", + "Common.Controllers.ReviewChanges.textChar": "За знаками", "Common.Controllers.ReviewChanges.textChart": "Діаграма", "Common.Controllers.ReviewChanges.textColor": "Колір шрифту", "Common.Controllers.ReviewChanges.textContextual": "Не додавайте інтервал між абзацами того ж стилю", @@ -25,7 +27,7 @@ "Common.Controllers.ReviewChanges.textEquation": "Рівняння", "Common.Controllers.ReviewChanges.textExact": "Точно", "Common.Controllers.ReviewChanges.textFirstLine": "Перша лінія", - "Common.Controllers.ReviewChanges.textFontSize": "Розмір шрифта", + "Common.Controllers.ReviewChanges.textFontSize": "Розмір шрифту", "Common.Controllers.ReviewChanges.textFormatted": "Форматований", "Common.Controllers.ReviewChanges.textHighlight": "Колір позначення", "Common.Controllers.ReviewChanges.textImage": "Зображення", @@ -33,7 +35,7 @@ "Common.Controllers.ReviewChanges.textIndentRight": "Відступ зправа", "Common.Controllers.ReviewChanges.textInserted": "Вставлено", "Common.Controllers.ReviewChanges.textItalic": "Курсив", - "Common.Controllers.ReviewChanges.textJustify": "Вирівняти по ширині", + "Common.Controllers.ReviewChanges.textJustify": "Вирівнювання по ширині", "Common.Controllers.ReviewChanges.textKeepLines": "Тримайте лінії разом", "Common.Controllers.ReviewChanges.textKeepNext": "Зберегати з текстом", "Common.Controllers.ReviewChanges.textLeft": "Вирівняти зліва", @@ -46,13 +48,21 @@ "Common.Controllers.ReviewChanges.textNot": "Не", "Common.Controllers.ReviewChanges.textNoWidow": "Немає лишнього контролю", "Common.Controllers.ReviewChanges.textNum": "Зміна нумерації", + "Common.Controllers.ReviewChanges.textOff": "{0} більше не використовує відстеження змін.", + "Common.Controllers.ReviewChanges.textOffGlobal": "{0} відключив(ла) відстеження змін для всіх.", + "Common.Controllers.ReviewChanges.textOn": "{0} використовує відстеження змін.", + "Common.Controllers.ReviewChanges.textOnGlobal": "{0} включив(ла) відстеження змін для всіх.", "Common.Controllers.ReviewChanges.textParaDeleted": "Параграф вилучено", "Common.Controllers.ReviewChanges.textParaFormatted": "Абзац форматований", "Common.Controllers.ReviewChanges.textParaInserted": "Вставлений абзац", + "Common.Controllers.ReviewChanges.textParaMoveFromDown": "Переміщено вниз:", + "Common.Controllers.ReviewChanges.textParaMoveFromUp": "Переміщено вверх:", + "Common.Controllers.ReviewChanges.textParaMoveTo": "Переміщено:", "Common.Controllers.ReviewChanges.textPosition": "Посада", "Common.Controllers.ReviewChanges.textRight": "Вирівняти справа", "Common.Controllers.ReviewChanges.textShape": "Форма", "Common.Controllers.ReviewChanges.textShd": "Колір тла", + "Common.Controllers.ReviewChanges.textShow": "Показувати зміни:", "Common.Controllers.ReviewChanges.textSmallCaps": "Зменшені великі", "Common.Controllers.ReviewChanges.textSpacing": "інтервал", "Common.Controllers.ReviewChanges.textSpacingAfter": "Інтервал після", @@ -60,18 +70,95 @@ "Common.Controllers.ReviewChanges.textStrikeout": "Перекреслений", "Common.Controllers.ReviewChanges.textSubScript": "Підрядковий", "Common.Controllers.ReviewChanges.textSuperScript": "Надрядковий", + "Common.Controllers.ReviewChanges.textTableChanged": "Налаштування таблиці змінені", + "Common.Controllers.ReviewChanges.textTableRowsAdd": "Рядки таблиці додані", + "Common.Controllers.ReviewChanges.textTableRowsDel": "Рядки таблиці видалені", "Common.Controllers.ReviewChanges.textTabs": "Змінити вкладки", - "Common.Controllers.ReviewChanges.textTitleComparison": "Налаштування порівняння", + "Common.Controllers.ReviewChanges.textTitleComparison": "Налаштування порівняння ", "Common.Controllers.ReviewChanges.textUnderline": "Підкреслений", + "Common.Controllers.ReviewChanges.textUrl": "Вставте URL-адресу документу", "Common.Controllers.ReviewChanges.textWidow": "Контроль над", + "Common.Controllers.ReviewChanges.textWord": "По словах", "Common.define.chartData.textArea": "Площа", - "Common.define.chartData.textBar": "Вставити", - "Common.define.chartData.textColumn": "Колона", + "Common.define.chartData.textAreaStacked": "Діаграма з областями з накопиченням", + "Common.define.chartData.textAreaStackedPer": "Нормована з областями та накопиченням", + "Common.define.chartData.textBar": "Лінійчата", + "Common.define.chartData.textBarNormal": "Гістограма з групуванням", + "Common.define.chartData.textBarNormal3d": "Тривимірна гістограма з групуванням", + "Common.define.chartData.textBarNormal3dPerspective": "Тривимірна гістограма", + "Common.define.chartData.textBarStacked": "Гістограма з накопиченням", + "Common.define.chartData.textBarStacked3d": "Тривимірна гістограма з накопиченням", + "Common.define.chartData.textBarStackedPer": "Нормована гістограма з накопиченням", + "Common.define.chartData.textBarStackedPer3d": "Тривимірна нормована гістограма з накопиченням", + "Common.define.chartData.textCharts": "Діаграми", + "Common.define.chartData.textColumn": "Гістограма", + "Common.define.chartData.textCombo": "Комбінування", + "Common.define.chartData.textComboAreaBar": "З областями з накопиченням та гістограма з групуванням", + "Common.define.chartData.textComboBarLine": "Гістограма з групуванням та графік", + "Common.define.chartData.textComboBarLineSecondary": "Гістограма з групуванням та графік на допоміжній осі", + "Common.define.chartData.textComboCustom": "Користувацька комбінація", + "Common.define.chartData.textDoughnut": "Кільцева діаграма", + "Common.define.chartData.textHBarNormal": "Лінійчата з групуванням", + "Common.define.chartData.textHBarNormal3d": "Тривимірна лінійчата з групуванням", + "Common.define.chartData.textHBarStacked": "Лінійчата з накопиченням", + "Common.define.chartData.textHBarStacked3d": "Тривимірна лінійчата з накопиченням", + "Common.define.chartData.textHBarStackedPer": "Нормована лінійчата з накопиченням", + "Common.define.chartData.textHBarStackedPer3d": "Тривимірна нормована лінійчата з накопиченням", "Common.define.chartData.textLine": "Лінія", + "Common.define.chartData.textLine3d": "Тривимірний графік", + "Common.define.chartData.textLineMarker": "Графік з маркерами", + "Common.define.chartData.textLineStacked": "Графік з накопиченням", + "Common.define.chartData.textLineStackedMarker": "Графік з накопиченням і маркерами", + "Common.define.chartData.textLineStackedPer": "Нормований графік з накопиченням", + "Common.define.chartData.textLineStackedPerMarker": "Нормований графік з маркерами та накопиченням", "Common.define.chartData.textPie": "Пиріг", + "Common.define.chartData.textPie3d": "Тривимірна кругова діаграма", "Common.define.chartData.textPoint": "XY (розсіювання)", + "Common.define.chartData.textScatter": "Точкова діаграма", + "Common.define.chartData.textScatterLine": "Точкова з прямими відрізками", + "Common.define.chartData.textScatterLineMarker": "Точкова з прямими відрізками та маркерами", + "Common.define.chartData.textScatterSmooth": "Точкова з гладкими кривими", + "Common.define.chartData.textScatterSmoothMarker": "Точкова з гладкими кривими та маркерами", "Common.define.chartData.textStock": "Запас", "Common.define.chartData.textSurface": "Поверхня", + "Common.Translation.warnFileLocked": "Ви не можете редагувати цей файл, тому що він вже редагується в іншій програмі.", + "Common.Translation.warnFileLockedBtnEdit": "Створити копію", + "Common.Translation.warnFileLockedBtnView": "Відкрити на перегляд", + "Common.UI.ButtonColored.textAutoColor": "Автоматичний", + "Common.UI.ButtonColored.textNewColor": "Додати новий спеціальний колір", + "Common.UI.Calendar.textApril": "Квітень", + "Common.UI.Calendar.textAugust": "Серпень", + "Common.UI.Calendar.textDecember": "Грудень", + "Common.UI.Calendar.textFebruary": "Лютий", + "Common.UI.Calendar.textJanuary": "Січень", + "Common.UI.Calendar.textJuly": "Липень", + "Common.UI.Calendar.textJune": "Червень", + "Common.UI.Calendar.textMarch": "Березень", + "Common.UI.Calendar.textMay": "Трав", + "Common.UI.Calendar.textMonths": "Місяці", + "Common.UI.Calendar.textNovember": "Листопад", + "Common.UI.Calendar.textOctober": "Жовтень", + "Common.UI.Calendar.textSeptember": "Вересень", + "Common.UI.Calendar.textShortApril": "Квіт", + "Common.UI.Calendar.textShortAugust": "Серп", + "Common.UI.Calendar.textShortDecember": "Груд", + "Common.UI.Calendar.textShortFebruary": "Лют", + "Common.UI.Calendar.textShortFriday": "Пт", + "Common.UI.Calendar.textShortJanuary": "Січ", + "Common.UI.Calendar.textShortJuly": "Лип", + "Common.UI.Calendar.textShortJune": "Чер", + "Common.UI.Calendar.textShortMarch": "Бер", + "Common.UI.Calendar.textShortMay": "Травень", + "Common.UI.Calendar.textShortMonday": "Пн", + "Common.UI.Calendar.textShortNovember": "Лис", + "Common.UI.Calendar.textShortOctober": "Жов", + "Common.UI.Calendar.textShortSaturday": "Сб", + "Common.UI.Calendar.textShortSeptember": "Вер", + "Common.UI.Calendar.textShortSunday": "Нд", + "Common.UI.Calendar.textShortThursday": "Чт", + "Common.UI.Calendar.textShortTuesday": "Вт", + "Common.UI.Calendar.textShortWednesday": "Ср", + "Common.UI.Calendar.textYears": "Роки", "Common.UI.ComboBorderSize.txtNoBorders": "Немає кордонів", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Немає кордонів", "Common.UI.ComboDataView.emptyComboText": "Немає стилів", @@ -95,6 +182,9 @@ "Common.UI.SynchronizeTip.textSynchronize": "Документ був змінений іншим користувачем.
Будь ласка, натисніть, щоб зберегти зміни та завантажити оновлення.", "Common.UI.ThemeColorPalette.textStandartColors": "Стандартні кольори", "Common.UI.ThemeColorPalette.textThemeColors": "Колірна тема", + "Common.UI.Themes.txtThemeClassicLight": "Класична світла", + "Common.UI.Themes.txtThemeDark": "Темна", + "Common.UI.Themes.txtThemeLight": "Світла", "Common.UI.Window.cancelButtonText": "Скасувати", "Common.UI.Window.closeButtonText": "Закрити", "Common.UI.Window.noButtonText": "Немає", @@ -114,7 +204,40 @@ "Common.Views.About.txtPoweredBy": "Під керуванням", "Common.Views.About.txtTel": "Тел.:", "Common.Views.About.txtVersion": "Версія", + "Common.Views.AutoCorrectDialog.textAdd": "Додати", + "Common.Views.AutoCorrectDialog.textApplyText": "Застосовувати під час введення", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Автозаміна тексту", + "Common.Views.AutoCorrectDialog.textAutoFormat": "Автоформат під час введення", + "Common.Views.AutoCorrectDialog.textBulleted": "Стилі маркованих списків", + "Common.Views.AutoCorrectDialog.textBy": "На", + "Common.Views.AutoCorrectDialog.textDelete": "Видалити", + "Common.Views.AutoCorrectDialog.textFLSentence": "Писати речення з великої літери", + "Common.Views.AutoCorrectDialog.textHyperlink": "Адреси в інтернеті та мережі гіперпосиланнями", + "Common.Views.AutoCorrectDialog.textHyphens": "Дефіси (--) на тире (—)", + "Common.Views.AutoCorrectDialog.textMathCorrect": "Автозаміна математичними символами", + "Common.Views.AutoCorrectDialog.textNumbered": "Стилі нумерованих списків", + "Common.Views.AutoCorrectDialog.textQuotes": "Автоматичні лапки", + "Common.Views.AutoCorrectDialog.textRecognized": "Розпізнані функції", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Наступні вирази є розпізнаними математичними функціями. Вони не будуть автоматично виділятися.", + "Common.Views.AutoCorrectDialog.textReplace": "Замінити", + "Common.Views.AutoCorrectDialog.textReplaceText": "Заміняти при вводі", + "Common.Views.AutoCorrectDialog.textReplaceType": "Заміняти текст при вводі", + "Common.Views.AutoCorrectDialog.textReset": "Скинути", + "Common.Views.AutoCorrectDialog.textResetAll": "Скинути налаштування", + "Common.Views.AutoCorrectDialog.textRestore": "Відновити", + "Common.Views.AutoCorrectDialog.textTitle": "Автозаміна", + "Common.Views.AutoCorrectDialog.textWarnAddRec": "Розпізнані функції повинні містити тільки прописні букви від А до Я.", + "Common.Views.AutoCorrectDialog.textWarnResetRec": "Всі додані вирази будуть видалені, а видалені - відновлені. Ви хочете продовжити?", + "Common.Views.AutoCorrectDialog.warnReplace": "Елемент автозаміни для %1 вже існує. Ви хочете його замінити?", + "Common.Views.AutoCorrectDialog.warnReset": "Будь-які додані вами автозаміни будуть видалені, а змінені будуть відновлені до початкових. Бажаєте продовжити?", + "Common.Views.AutoCorrectDialog.warnRestore": "Елемент автозаміни для %1 буде скинутий на початкове значення. Ви хочете продовжити?", "Common.Views.Chat.textSend": "Надіслати", + "Common.Views.Comments.mniAuthorAsc": "За автором від А до Я", + "Common.Views.Comments.mniAuthorDesc": "За автором від Я до А", + "Common.Views.Comments.mniDateAsc": "Від старих до нових", + "Common.Views.Comments.mniDateDesc": "Від нових до старих", + "Common.Views.Comments.mniPositionAsc": "Зверху вниз", + "Common.Views.Comments.mniPositionDesc": "Знизу вверх", "Common.Views.Comments.textAdd": "Додати", "Common.Views.Comments.textAddComment": "Добавити коментар", "Common.Views.Comments.textAddCommentToDoc": "Додати коментар до документа", @@ -122,6 +245,7 @@ "Common.Views.Comments.textAnonym": "Гість", "Common.Views.Comments.textCancel": "Скасувати", "Common.Views.Comments.textClose": "Закрити", + "Common.Views.Comments.textClosePanel": "Закрити коментарі", "Common.Views.Comments.textComments": "Коментарі", "Common.Views.Comments.textEdit": "OК", "Common.Views.Comments.textEnterCommentHint": "Введіть свій коментар тут", @@ -130,8 +254,9 @@ "Common.Views.Comments.textReply": "Відповісти", "Common.Views.Comments.textResolve": "Вирішити", "Common.Views.Comments.textResolved": "Вирішено", + "Common.Views.Comments.textSort": "Сортувати коментарі", "Common.Views.CopyWarningDialog.textDontShow": "Не показувати це повідомлення знову", - "Common.Views.CopyWarningDialog.textMsg": "Копіювання, вирізання та вставлення дій за допомогою кнопок панелі інструментів редактора та дій контекстного меню буде виконуватися тільки на цій вкладці редактора.

Щоб скопіювати або вставити до або із застосунку за межами вкладки редактора, використовуйте такі комбінації клавіш:", + "Common.Views.CopyWarningDialog.textMsg": "Копіювання, вирізання та вставка за допомогою кнопок панелі інструментів редактора та дій контекстного меню буде виконуватися тільки на цій вкладці редактора.

Щоб скопіювати або вставити в або з застосунку за межами вкладки редактора, використовуйте такі комбінації клавіш:", "Common.Views.CopyWarningDialog.textTitle": "Копіювати, вирізати та вставити дії", "Common.Views.CopyWarningDialog.textToCopy": "Для копії", "Common.Views.CopyWarningDialog.textToCut": "для вирізання", @@ -144,18 +269,21 @@ "Common.Views.ExternalMergeEditor.textClose": "Закрити", "Common.Views.ExternalMergeEditor.textSave": "Зберегти і вийти", "Common.Views.ExternalMergeEditor.textTitle": "Отримувачі ел.поштою", - "Common.Views.Header.labelCoUsersDescr": "В даний час документ редагується кількома користувачами.", + "Common.Views.Header.labelCoUsersDescr": "Користувачі, що редагують документ:", + "Common.Views.Header.textAddFavorite": "Додати в обране", "Common.Views.Header.textAdvSettings": "Додаткові налаштування", - "Common.Views.Header.textBack": "Перейти до документів", + "Common.Views.Header.textBack": "Відкрити розташування файлу", "Common.Views.Header.textCompactView": "Сховати панель інструментів", "Common.Views.Header.textHideLines": "Сховати лінійки", - "Common.Views.Header.textHideStatusBar": "Сховати панель стану", + "Common.Views.Header.textHideStatusBar": "Сховати панель статусу", + "Common.Views.Header.textRemoveFavorite": "Видалити з вибраного", "Common.Views.Header.textZoom": "Масштаб", "Common.Views.Header.tipAccessRights": "Управління правами доступу до документів", "Common.Views.Header.tipDownload": "Звантажити файл", "Common.Views.Header.tipGoEdit": "Редагувати поточний файл", "Common.Views.Header.tipPrint": "Роздрукувати файл", "Common.Views.Header.tipRedo": "Повторити", + "Common.Views.Header.tipSave": "Зберегти", "Common.Views.Header.tipUndo": "Скасувати", "Common.Views.Header.tipViewSettings": "Налаштування перегляду", "Common.Views.Header.tipViewUsers": "Переглядайте користувачів та керуйте правами доступу до документів", @@ -167,11 +295,12 @@ "Common.Views.History.textRestore": "Відновити", "Common.Views.History.textShow": "Розгорнути", "Common.Views.History.textShowAll": "Показати детальні зміни", + "Common.Views.History.textVer": "вер.", "Common.Views.ImageFromUrlDialog.textUrl": "Вставити URL зображення:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Це поле є обов'язковим", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com\"", - "Common.Views.InsertTableDialog.textInvalidRowsCols": "Потрібно вказати дійсні рядки та стовпці.", - "Common.Views.InsertTableDialog.txtColumns": "Номер стовпчиків", + "Common.Views.InsertTableDialog.textInvalidRowsCols": "Потрібно вказати дійсну кількість рядків та стовпчиків.", + "Common.Views.InsertTableDialog.txtColumns": "Кількість стовпчиків", "Common.Views.InsertTableDialog.txtMaxText": "Максимальне значення для цього поля - {0}.", "Common.Views.InsertTableDialog.txtMinText": "Мінімальне значення для цього поля - {0}.", "Common.Views.InsertTableDialog.txtRows": "Номер рядків", @@ -180,10 +309,18 @@ "Common.Views.LanguageDialog.labelSelect": "Виберіть мову документа", "Common.Views.OpenDialog.closeButtonText": "Закрити файл", "Common.Views.OpenDialog.txtEncoding": "Кодування", + "Common.Views.OpenDialog.txtIncorrectPwd": "Введений хибний пароль.", "Common.Views.OpenDialog.txtOpenFile": "Введіть пароль для відкриття файлу", "Common.Views.OpenDialog.txtPassword": "Пароль", + "Common.Views.OpenDialog.txtPreview": "Перегляд", + "Common.Views.OpenDialog.txtProtected": "Після введення пароля та відкриття файла поточний пароль до нього буде скинутий.", "Common.Views.OpenDialog.txtTitle": "Виберіть параметри% 1", "Common.Views.OpenDialog.txtTitleProtected": "Захищений файл", + "Common.Views.PasswordDialog.txtDescription": "Встановіть пароль для захисту цього документу", + "Common.Views.PasswordDialog.txtIncorrectPwd": "Пароль та його підтвердження не співпадають", + "Common.Views.PasswordDialog.txtPassword": "Пароль", + "Common.Views.PasswordDialog.txtRepeat": "Повторити пароль", + "Common.Views.PasswordDialog.txtTitle": "Встановлення паролю", "Common.Views.PasswordDialog.txtWarning": "Увага! Якщо ви втратили або не можете пригадати пароль, відновити його неможливо. Зберігайте його в надійному місці.", "Common.Views.PluginDlg.textLoading": "Завантаження", "Common.Views.Plugins.groupCaption": "Плагіни", @@ -191,27 +328,50 @@ "Common.Views.Plugins.textLoading": "Завантаження", "Common.Views.Plugins.textStart": "Початок", "Common.Views.Plugins.textStop": "Зупинитись", + "Common.Views.Protection.hintAddPwd": "Зашифрувати за допомогою пароля", + "Common.Views.Protection.hintPwd": "Змінити чи видалити пароль", + "Common.Views.Protection.hintSignature": "Додати цифровий підпис або рядок підпису", "Common.Views.Protection.txtAddPwd": "Додати пароль", + "Common.Views.Protection.txtChangePwd": "Змінити пароль", + "Common.Views.Protection.txtDeletePwd": "Видалити пароль", + "Common.Views.Protection.txtEncrypt": "Шифрувати", "Common.Views.Protection.txtInvisibleSignature": "Додати цифровий підпис", + "Common.Views.Protection.txtSignature": "Підпис", + "Common.Views.Protection.txtSignatureLine": "Додати рядок підпису", "Common.Views.RenameDialog.textName": "Ім'я файлу", "Common.Views.RenameDialog.txtInvalidName": "Ім'я файлу не може містити жодного з наступних символів:", "Common.Views.ReviewChanges.hintNext": "До наступної зміни", "Common.Views.ReviewChanges.hintPrev": "До попередньої зміни", + "Common.Views.ReviewChanges.mniFromFile": "Документ з файлу", + "Common.Views.ReviewChanges.mniFromStorage": "Документ з сховища", + "Common.Views.ReviewChanges.mniFromUrl": "Документ з URL адреси", "Common.Views.ReviewChanges.mniSettings": "Налаштування порівняння", + "Common.Views.ReviewChanges.strFast": "Швидкий", + "Common.Views.ReviewChanges.strFastDesc": "Спільне редагування в режимі реального часу. Всі зміни зберігаються автоматично.", + "Common.Views.ReviewChanges.strStrict": "Строгий", + "Common.Views.ReviewChanges.strStrictDesc": "Використовуйте кнопку 'Зберегти' для синхронізації змін, які вносите ви та інші користувачі.", + "Common.Views.ReviewChanges.textEnable": "Увімкнути", + "Common.Views.ReviewChanges.textWarnTrackChanges": "Відстеження змін буде УВІМКНЕНО для всіх користувачів з повним доступом. Після наступного відкриття документу відстеження змін залишиться увімкненим.", + "Common.Views.ReviewChanges.textWarnTrackChangesTitle": "Увімкнути відстежування змін для всіх?", "Common.Views.ReviewChanges.tipAcceptCurrent": "Прийняти поточну зміну", "Common.Views.ReviewChanges.tipCoAuthMode": "Встановити режим спільного редагування", "Common.Views.ReviewChanges.tipCommentRem": "Вилучити коментарі", "Common.Views.ReviewChanges.tipCommentRemCurrent": "Вилучити поточні коментарі", + "Common.Views.ReviewChanges.tipCommentResolve": "Вирішити коментарі", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Вирішити поточні коментарі", "Common.Views.ReviewChanges.tipCompare": "Порівняти поточний документ з іншим", + "Common.Views.ReviewChanges.tipHistory": "Показати історію версій", "Common.Views.ReviewChanges.tipRejectCurrent": "Відхилити поточну зміну", "Common.Views.ReviewChanges.tipReview": "Відстежувати зміни", "Common.Views.ReviewChanges.tipReviewView": "Виберіть режим показу змін", "Common.Views.ReviewChanges.tipSetDocLang": "Виберіть мову документу", "Common.Views.ReviewChanges.tipSetSpelling": "Перевірка орфографії", + "Common.Views.ReviewChanges.tipSharing": "Керування правами доступу до документів", "Common.Views.ReviewChanges.txtAccept": "Прийняти", "Common.Views.ReviewChanges.txtAcceptAll": "Прийняти усі зміни", "Common.Views.ReviewChanges.txtAcceptChanges": "Прийняти зміни", "Common.Views.ReviewChanges.txtAcceptCurrent": "Прийняти поточну зміну", + "Common.Views.ReviewChanges.txtChat": "Чат", "Common.Views.ReviewChanges.txtClose": "Закрити", "Common.Views.ReviewChanges.txtCoAuthMode": "Спільне редагування", "Common.Views.ReviewChanges.txtCommentRemAll": "Вилучити усі коментарі", @@ -219,14 +379,26 @@ "Common.Views.ReviewChanges.txtCommentRemMy": "Вилучити мої коментарі", "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Вилучити мій поточний коментар", "Common.Views.ReviewChanges.txtCommentRemove": "Вилучити", + "Common.Views.ReviewChanges.txtCommentResolve": "Вирішити", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Вирішити всі коментарі", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Вирішити поточні коментарі", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Вирішити мої коментарі", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Вирішити мої поточні коментарі", "Common.Views.ReviewChanges.txtCompare": "Порівняти", "Common.Views.ReviewChanges.txtDocLang": "Мова", "Common.Views.ReviewChanges.txtEditing": "редагування", "Common.Views.ReviewChanges.txtFinal": "Усі зміни прийняті {0}", "Common.Views.ReviewChanges.txtFinalCap": "Фіналізований", + "Common.Views.ReviewChanges.txtHistory": "Історія версій", "Common.Views.ReviewChanges.txtMarkup": "Усі зміни {0}", - "Common.Views.ReviewChanges.txtMarkupCap": "Чернетка", + "Common.Views.ReviewChanges.txtMarkupCap": "Виправлення та виноски", + "Common.Views.ReviewChanges.txtMarkupSimple": "Всі зміни {0}
Довідки вимкнені", + "Common.Views.ReviewChanges.txtMarkupSimpleCap": "Тільки виправлення", "Common.Views.ReviewChanges.txtNext": "Наступний", + "Common.Views.ReviewChanges.txtOff": "ВИКЛ. для мене", + "Common.Views.ReviewChanges.txtOffGlobal": "ВИКЛ. для мене і для всіх", + "Common.Views.ReviewChanges.txtOn": "ВКЛ. для мене", + "Common.Views.ReviewChanges.txtOnGlobal": "ВКЛ. для мене і для всіх", "Common.Views.ReviewChanges.txtOriginal": "Усі зміни відхилено {0}", "Common.Views.ReviewChanges.txtOriginalCap": "Початковий", "Common.Views.ReviewChanges.txtPrev": "Попередній", @@ -235,6 +407,7 @@ "Common.Views.ReviewChanges.txtRejectAll": "Відхилити усі зміни", "Common.Views.ReviewChanges.txtRejectChanges": "Відхилити зміни", "Common.Views.ReviewChanges.txtRejectCurrent": "Відхилити поточну зміну", + "Common.Views.ReviewChanges.txtSharing": "Спільний доступ", "Common.Views.ReviewChanges.txtSpelling": "Перевірка орфографії", "Common.Views.ReviewChanges.txtTurnon": "Відстежувати зміни", "Common.Views.ReviewChanges.txtView": "Режим показу", @@ -252,20 +425,86 @@ "Common.Views.ReviewPopover.textCancel": "Скасувати", "Common.Views.ReviewPopover.textClose": "Закрити", "Common.Views.ReviewPopover.textEdit": "Гаразд", + "Common.Views.ReviewPopover.textFollowMove": "Перейти на попереднє місце", + "Common.Views.ReviewPopover.textMention": "+згадка надасть доступ до документа і відправить сповіщення поштою", + "Common.Views.ReviewPopover.textMentionNotify": "+згадка відправить користувачу сповіщення поштою", + "Common.Views.ReviewPopover.textOpenAgain": "Відкрити знову", + "Common.Views.ReviewPopover.textReply": "Відповісти", + "Common.Views.ReviewPopover.textResolve": "Вирішити", + "Common.Views.ReviewPopover.txtAccept": "Прийняти", + "Common.Views.ReviewPopover.txtDeleteTip": "Видалити", + "Common.Views.ReviewPopover.txtEditTip": "Редагувати", + "Common.Views.ReviewPopover.txtReject": "Відхилити", + "Common.Views.SaveAsDlg.textLoading": "Завантаження", + "Common.Views.SaveAsDlg.textTitle": "Каталог для збереження", + "Common.Views.SelectFileDlg.textLoading": "Завантаження", + "Common.Views.SelectFileDlg.textTitle": "Вибрати джерело даних", "Common.Views.SignDialog.textBold": "Грубий", + "Common.Views.SignDialog.textCertificate": "Сертифікат", + "Common.Views.SignDialog.textChange": "Змінити", + "Common.Views.SignDialog.textInputName": "Введіть ім'я підписанта", "Common.Views.SignDialog.textItalic": "Курсив", + "Common.Views.SignDialog.textNameError": "Ім'я підписанта не має бути пустим.", + "Common.Views.SignDialog.textPurpose": "Ціль підписання документу", + "Common.Views.SignDialog.textSelect": "Вибрати", + "Common.Views.SignDialog.textSelectImage": "Вибрати зображення", + "Common.Views.SignDialog.textSignature": "Вигляд підпису:", + "Common.Views.SignDialog.textTitle": "Підписання документу", + "Common.Views.SignDialog.textUseImage": "або натисніть 'Обрати зображення', щоб використовувати зображення як підпис", + "Common.Views.SignDialog.textValid": "Дійсний з %1 по %2", + "Common.Views.SignDialog.tipFontName": "Шрифт", + "Common.Views.SignDialog.tipFontSize": "Розмір шрифту", "Common.Views.SignSettingsDialog.textAllowComment": "Дозволити автору додавати коментар у вікні діалогу додавання підпису", + "Common.Views.SignSettingsDialog.textInfo": "Інформація про підписанта", "Common.Views.SignSettingsDialog.textInfoEmail": "Ел.пошта", + "Common.Views.SignSettingsDialog.textInfoName": "Ім'я", + "Common.Views.SignSettingsDialog.textInfoTitle": "Посада підписанта", + "Common.Views.SignSettingsDialog.textInstructions": "Інструкції для підписанта", + "Common.Views.SignSettingsDialog.textShowDate": "Показувати дату підпису в рядку підпису", + "Common.Views.SignSettingsDialog.textTitle": "Налаштування підпису", + "Common.Views.SignSettingsDialog.txtEmpty": "Це поле необхідно заповнити", + "Common.Views.SymbolTableDialog.textCharacter": "Символ", + "Common.Views.SymbolTableDialog.textCode": "Код знака з Юнікод (шістн.)", + "Common.Views.SymbolTableDialog.textCopyright": "Знак авторського права", + "Common.Views.SymbolTableDialog.textDCQuote": "Закриваючі подвійні лапки", + "Common.Views.SymbolTableDialog.textDOQuote": "Відкриваючі подвійні лапки", + "Common.Views.SymbolTableDialog.textEllipsis": "Горизонтальна трикрапка", + "Common.Views.SymbolTableDialog.textEmDash": "Довге тире", + "Common.Views.SymbolTableDialog.textEmSpace": "Довгий пробіл", + "Common.Views.SymbolTableDialog.textEnDash": "Коротке тире", + "Common.Views.SymbolTableDialog.textEnSpace": "Короткий пробіл", + "Common.Views.SymbolTableDialog.textFont": "Шрифт", + "Common.Views.SymbolTableDialog.textNBHyphen": "Нерозривний дефіс", + "Common.Views.SymbolTableDialog.textNBSpace": "Нерозривний пробіл", + "Common.Views.SymbolTableDialog.textPilcrow": "Знак абзацу", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 пробілу", + "Common.Views.SymbolTableDialog.textRange": "Діапазон", + "Common.Views.SymbolTableDialog.textRecent": "Раніше вживані символи", + "Common.Views.SymbolTableDialog.textRegistered": "Зареєстрований товарний знак", + "Common.Views.SymbolTableDialog.textSCQuote": "Закриваючі лапки", + "Common.Views.SymbolTableDialog.textSection": "Знак розділу", + "Common.Views.SymbolTableDialog.textShortcut": "Поєднання клавіш", + "Common.Views.SymbolTableDialog.textSHyphen": "М'який дефіс", + "Common.Views.SymbolTableDialog.textSOQuote": "Відкриваючі лапки", + "Common.Views.SymbolTableDialog.textSpecial": "Спеціальні символи", + "Common.Views.SymbolTableDialog.textSymbols": "Символи", + "Common.Views.SymbolTableDialog.textTitle": "Символ", + "Common.Views.SymbolTableDialog.textTradeMark": "Символ товарного знаку", + "Common.Views.UserNameDialog.textDontShow": "Більше не запитувати", + "Common.Views.UserNameDialog.textLabel": "Підпис:", + "Common.Views.UserNameDialog.textLabelError": "Підпис не повинен бути пустий", "DE.Controllers.LeftMenu.leavePageText": "Усі незбережені зміни в цьому документі будуть втрачені.
Клацніть \"Скасувати\", потім \"Зберегти\", щоб зберегти їх. Натисніть \"Гаразд\", щоб відхилити усі незбережені зміни.", "DE.Controllers.LeftMenu.newDocumentTitle": "Документ без назви", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Застереження", "DE.Controllers.LeftMenu.requestEditRightsText": "Запит на права редагування ...", - "DE.Controllers.LeftMenu.textLoadHistory": "Завантаження історії змін ...", + "DE.Controllers.LeftMenu.textLoadHistory": "Завантаження історії версій...", "DE.Controllers.LeftMenu.textNoTextFound": "Не вдалося знайти дані, які ви шукали. Будь ласка, налаштуйте параметри пошуку.", "DE.Controllers.LeftMenu.textReplaceSkipped": "Заміна була зроблена. {0} угоди були пропущені.", "DE.Controllers.LeftMenu.textReplaceSuccess": "Пошук виконано. Угоди замінено: {0}", "DE.Controllers.LeftMenu.txtCompatible": "Документ буде збережено у новому форматі. Це дозволить використовувати усі можливості редактора, проте це може вплинути на макет документу.
Використовуйте параметр \"Сумісність\" додаткових налаштувань, якщо ви хочете забезпечити сумісність зі старими версіями MS Word.", + "DE.Controllers.LeftMenu.txtUntitled": "Без назви", "DE.Controllers.LeftMenu.warnDownloadAs": "Якщо ви продовжите збереження в цьому форматі, всі функції, окрім тексту, буде втрачено.
Ви впевнені, що хочете продовжити?", + "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Якщо продовжите зберігати у цьому форматі, частина форматування може бути втрачена.
Ви впевнені, що бажаєте продовжити?", "DE.Controllers.Main.applyChangesTextText": "Завантаження змін...", "DE.Controllers.Main.applyChangesTitleText": "Завантаження змін", "DE.Controllers.Main.convertationTimeoutText": "Термін переходу перевищено.", @@ -279,32 +518,42 @@ "DE.Controllers.Main.errorAccessDeny": "Ви намагаєтеся виконати дію, у якої у вас немає прав.
Будь ласка, зв'яжіться з адміністратором вашого Сервера документів.", "DE.Controllers.Main.errorBadImageUrl": "URL-адреса зображення невірна", "DE.Controllers.Main.errorCoAuthoringDisconnect": "З'єднання з сервером втрачено. Документ не можна редагувати прямо зараз.", + "DE.Controllers.Main.errorComboSeries": "Для створення комбінованої діаграми виберіть щонайменше два ряди даних.", "DE.Controllers.Main.errorCompare": "Функція порівняння документів недоступна під час спільного редагування.", - "DE.Controllers.Main.errorConnectToServer": "Не вдалося зберегти документ. Будь ласка, перевірте налаштування з'єднання або сконтактуйте з адміністратором.
Після натискання на кнопку \"Гаразд\" ви зможете звантажити документ.", + "DE.Controllers.Main.errorConnectToServer": "Не вдається зберегти документ. Будь ласка, перевірте налаштування з'єднання або зверніться до адміністратора.
Після натискання кнопки 'Ок', вам буде запропоновано звантажити документ.", "DE.Controllers.Main.errorDatabaseConnection": "Зовнішня помилка.
Помилка підключення до бази даних. Будь ласка, зв'яжіться зі службою підтримки, якщо помилка не зникне.", + "DE.Controllers.Main.errorDataEncrypted": "Отримані зашифровані зміни, їх неможливо розшифрувати.", "DE.Controllers.Main.errorDataRange": "Неправильний діапазон даних.", "DE.Controllers.Main.errorDefaultMessage": "Код помилки: %1 ", "DE.Controllers.Main.errorDirectUrl": "Будь ласка, перевірте посилання на документ.
Це посилання має бути прямим лінком на файл для звантаження.", "DE.Controllers.Main.errorEditingDownloadas": "Помилка під час роботи з документом.
Будь ласка, скористайтеся пунктом \"Завантажити як...\" для збереження резервної копії на ваш локальний диск.", - "DE.Controllers.Main.errorFilePassProtect": "Документ захищений паролем і його неможливо відкрити.", + "DE.Controllers.Main.errorEditingSaveas": "В ході роботі з документом виникла помилка.
Використовуйте опцію 'Зберегти як...' щоб зберегти резервну копію файлу на диск комп'ютера.", + "DE.Controllers.Main.errorEmailClient": "Не знайдений поштовий клієнт", + "DE.Controllers.Main.errorFilePassProtect": "Файл захищений паролем і його неможливо відкрити.", + "DE.Controllers.Main.errorFileSizeExceed": "Розмір файлу перевищує обмеження, встановлені для вашого сервера.
Для детальної інформації зверніться до адміністратора сервера документів.", "DE.Controllers.Main.errorForceSave": "Помилка під час збереження файлу. Будь ласка, скористайтеся пунктом \"Звантажити як\" для збереження файлу на ваш диск або спробуйте пізніше.", "DE.Controllers.Main.errorKeyEncrypt": "Невідомий дескриптор ключа", "DE.Controllers.Main.errorKeyExpire": "Ключовий дескриптор закінчився", - "DE.Controllers.Main.errorMailMergeLoadFile": "Завантаження не вдалося", + "DE.Controllers.Main.errorLoadingFont": "Шрифти не завантажені.
Будь ласка, зверніться до адміністратора Сервера документів.", + "DE.Controllers.Main.errorMailMergeLoadFile": "Завантаження не вдалося. Оберіть інший файл.", "DE.Controllers.Main.errorMailMergeSaveFile": "Помилка Об'єднання", "DE.Controllers.Main.errorProcessSaveResult": "Помилка збереження", "DE.Controllers.Main.errorServerVersion": "Версія редактора була оновлена. Сторінка буде перезавантажена, щоб застосувати зміни.", "DE.Controllers.Main.errorSessionAbsolute": "Сесія редагування документа закінчилася. Будь ласка, перезавантажте сторінку.", "DE.Controllers.Main.errorSessionIdle": "Цей документ не редагувався протягом тривалого часу. Перезавантажте сторінку.", "DE.Controllers.Main.errorSessionToken": "З'єднання з сервером було перервано. Перезавантажте сторінку", + "DE.Controllers.Main.errorSetPassword": "Не вдалось задати пароль", "DE.Controllers.Main.errorStockChart": "Невірний порядок рядків. Щоб побудувати фондову діаграму, помістіть дані на аркуші в наступному порядку: ціна відкриття, максимальна ціна, мінімальна ціна, ціна закриття.", + "DE.Controllers.Main.errorSubmit": "Не вдалося відправити.", "DE.Controllers.Main.errorToken": "Токен безпеки документа не правильно сформовано.
Будь ласка, сконтактуйте з адміністратором вашого сервера документів.", "DE.Controllers.Main.errorTokenExpire": "Термін дії токену безпеки документа закінчився.
Будь ласка, сконтактуйте з адміністратором сервера документів.", "DE.Controllers.Main.errorUpdateVersion": "Версія файлу була змінена. Сторінка буде перезавантажена.", + "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Підключення до Інтернету було відновлено, а версія файлу змінена.
Перш ніж продовжувати роботу, потрібно завантажити файл або скопіювати його вміст, щоб забезпечити цілісність даних, а потім перезавантажити дану сторінку.", "DE.Controllers.Main.errorUserDrop": "На даний момент файл не доступний.", "DE.Controllers.Main.errorUsersExceed": "Перевищено кількість користувачів, дозволених планом ціноутворення", - "DE.Controllers.Main.errorViewerDisconnect": "З'єднання втрачено. Ви все ще можете переглядати документ
, але не зможете завантажувати чи роздруковувати, доки не буде відновлено з'єднання.", - "DE.Controllers.Main.leavePageText": "У цьому документі є незбережені зміни. Натисніть \"Залишитись на цій сторінці\", а потім \"Зберегти\", щоб зберегти їх. Натисніть кнопку \"Отримати цю сторінку\", щоб відхилити всі незбережені зміни.", + "DE.Controllers.Main.errorViewerDisconnect": "Підключення втрачено. Ви, як і раніше, можете переглядати документ, але не зможете звантажити або надрукувати його до відновлення підключення та оновлення сторінки.", + "DE.Controllers.Main.leavePageText": "У цьому документі є незбережені зміни. Натисніть \"Залишитись на цій сторінці\", а потім \"Зберегти\", щоб зберегти їх. Натисніть кнопку \"Покинути цю сторінку\", щоб відхилити всі незбережені зміни.", + "DE.Controllers.Main.leavePageTextOnClose": "Всі незбережені зміни в цьому документі будуть втрачені.
Натисніть \"Скасувати\", потім \"Зберегти\", щоб зберегти їх. Натисніть \"OK\", щоб відхилити всі незбережені зміни.", "DE.Controllers.Main.loadFontsTextText": "Завантаження дати...", "DE.Controllers.Main.loadFontsTitleText": "Дата завантаження", "DE.Controllers.Main.loadFontTextText": "Завантаження дати...", @@ -327,51 +576,258 @@ "DE.Controllers.Main.requestEditFailedMessageText": "Хтось редагує цей документ прямо зараз. Будь-ласка спробуйте пізніше.", "DE.Controllers.Main.requestEditFailedTitleText": "Доступ заборонено", "DE.Controllers.Main.saveErrorText": "Під час збереження файлу сталася помилка", + "DE.Controllers.Main.saveErrorTextDesktop": "Неможливо зберегти або створити цей файл.
Можливі причини:
1. Файл доступний лише для читання.
2. Файл редагується іншими користувачами.
3. Диск заповнено або пошкоджено.", "DE.Controllers.Main.saveTextText": "Збереження документа...", "DE.Controllers.Main.saveTitleText": "Збереження документа", + "DE.Controllers.Main.scriptLoadError": "З'єднання занадто повільне, деякі компоненти не вдалося завантажити. Перезавантажте сторінку.", "DE.Controllers.Main.sendMergeText": "Відправлення злиття...", "DE.Controllers.Main.sendMergeTitle": "Відправлення злиття", "DE.Controllers.Main.splitDividerErrorText": "Кількість рядків повинна бути дільником% 1.", - "DE.Controllers.Main.splitMaxColsErrorText": "Кількість стовпців повинно бути менше% 1.", + "DE.Controllers.Main.splitMaxColsErrorText": "Кількість стовпчиків повинна бути менше ніж 1%.", "DE.Controllers.Main.splitMaxRowsErrorText": "Кількість рядків повинна бути менше% 1.", "DE.Controllers.Main.textAnonymous": "Гість", + "DE.Controllers.Main.textApplyAll": "Застосувати до всіх рівнянь", "DE.Controllers.Main.textBuyNow": "Відвідати сайт", "DE.Controllers.Main.textChangesSaved": "Усі зміни збережено", "DE.Controllers.Main.textClose": "Закрити", "DE.Controllers.Main.textCloseTip": "Натисніть, щоб закрити підказку", "DE.Controllers.Main.textContactUs": "Зв'язатися з відділом продажів", + "DE.Controllers.Main.textConvertEquation": "Це рівняння створено у старій версії редактора рівнянь, яка більше не підтримується. Щоб змінити це рівняння, його необхідно перетворити на формат Office Math ML.
Перетворити зараз?", + "DE.Controllers.Main.textCustomLoader": "Зверніть увагу, що згідно з умовами ліцензії ви не маєте права змінювати екран завантаження.
Будь ласка, зв'яжіться з нашим відділом продажів, щоб отримати ціну.", + "DE.Controllers.Main.textDisconnect": "З'єднання втрачено", + "DE.Controllers.Main.textGuest": "Гість", + "DE.Controllers.Main.textHasMacros": "Файл містить автоматичні макроси.
Запустити макроси?", + "DE.Controllers.Main.textLearnMore": "Детальніше", "DE.Controllers.Main.textLoadingDocument": "Завантаження документа", - "DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE відкрита версія", + "DE.Controllers.Main.textLongName": "Введіть ім'я не довше ніж 128 символів.", + "DE.Controllers.Main.textNoLicenseTitle": "Ліцензійне обмеження", + "DE.Controllers.Main.textPaidFeature": "Платна функція", + "DE.Controllers.Main.textRemember": "Запам’ятати мій вибір для всіх файлів", + "DE.Controllers.Main.textRenameError": "Ім'я користувача не повинно бути порожнім.", + "DE.Controllers.Main.textRenameLabel": "Введіть ім'я, що буде використовуватись для спільної роботи", "DE.Controllers.Main.textShape": "Форма", "DE.Controllers.Main.textStrict": "суворий режим", "DE.Controllers.Main.textTryUndoRedo": "Функції Скасування/Повторення дій вимкнено у режимі швидкого спільного редагування.
Клацніть на кнопку \"Суворий режим\", щоб перейти до режиму суворого спільного редагування, який означатиме, що інші користувачі зможуть внести правки після того, яки ви збережете документ. Між режимами спільного редагування можна перемикатися у \"Додаткових параметрах\" редактора.", + "DE.Controllers.Main.textTryUndoRedoWarn": "Функції скасування і повтору дій відключені для режиму швидкого спільного редагування.", "DE.Controllers.Main.titleLicenseExp": "Термін дії ліцензії закінчився", "DE.Controllers.Main.titleServerVersion": "Редактор оновлено", "DE.Controllers.Main.titleUpdateVersion": "Версію змінено", - "DE.Controllers.Main.txtArt": "Ваш текст тут", + "DE.Controllers.Main.txtAbove": "вище", + "DE.Controllers.Main.txtArt": "Введіть ваш текст", "DE.Controllers.Main.txtBasicShapes": "Основні форми", + "DE.Controllers.Main.txtBelow": "нижче", + "DE.Controllers.Main.txtBookmarkError": "Помилка! Закладка не визначена.", "DE.Controllers.Main.txtButtons": "Кнопки", "DE.Controllers.Main.txtCallouts": "Виноски", "DE.Controllers.Main.txtCharts": "Діаграми", + "DE.Controllers.Main.txtChoose": "Оберіть елемент", + "DE.Controllers.Main.txtClickToLoad": "Натисніть для завантаження зображення", "DE.Controllers.Main.txtCurrentDocument": "Поточний документ", "DE.Controllers.Main.txtDiagramTitle": "Назва діграми", "DE.Controllers.Main.txtEditingMode": "Встановити режим редагування ...", + "DE.Controllers.Main.txtEndOfFormula": "Непередбачене закінчення формули", + "DE.Controllers.Main.txtEnterDate": "Введіть дату", "DE.Controllers.Main.txtErrorLoadHistory": "Помилка завантаження історії", + "DE.Controllers.Main.txtEvenPage": "Парна сторінка", "DE.Controllers.Main.txtFiguredArrows": "Фігурні стрілки", + "DE.Controllers.Main.txtFirstPage": "Перша сторінка", + "DE.Controllers.Main.txtFooter": "Нижній колонтитул", + "DE.Controllers.Main.txtFormulaNotInTable": "Формула не в таблиці", + "DE.Controllers.Main.txtHeader": "Верхній колонтитул", "DE.Controllers.Main.txtHyperlink": "Гіперпосилання", + "DE.Controllers.Main.txtIndTooLarge": "Індекс занадто великий", "DE.Controllers.Main.txtLines": "Рядки", + "DE.Controllers.Main.txtMainDocOnly": "Помилка! Тільки основний документ.", "DE.Controllers.Main.txtMath": "Математика", - "DE.Controllers.Main.txtNeedSynchronize": "У вас є оновлення", + "DE.Controllers.Main.txtMissArg": "Відсутній аргумент", + "DE.Controllers.Main.txtMissOperator": "Відсутній оператор", + "DE.Controllers.Main.txtNeedSynchronize": "Є оновлення", + "DE.Controllers.Main.txtNone": "Немає", "DE.Controllers.Main.txtNoTableOfContents": "У документі відсутні заголовки. Застосуйте стиль заголовків до тексту, щоби він з'явився у змісті.", + "DE.Controllers.Main.txtNoTableOfFigures": "Елементи списку ілюстрацій не знайдені", + "DE.Controllers.Main.txtNoText": "Помилка! В документі відсутній текст вказаного стилю.", + "DE.Controllers.Main.txtNotInTable": "Не в таблиці", + "DE.Controllers.Main.txtNotValidBookmark": "Помилка! Не правильне посилання закладки.", + "DE.Controllers.Main.txtOddPage": "Непарна сторінка", + "DE.Controllers.Main.txtOnPage": "на сторінці", "DE.Controllers.Main.txtRectangles": "Прямокутники", + "DE.Controllers.Main.txtSameAsPrev": "Як в попередньому", + "DE.Controllers.Main.txtSection": "-Розділ", "DE.Controllers.Main.txtSeries": "Серії", + "DE.Controllers.Main.txtShape_accentBorderCallout1": "Виноска 1 (межа і лінія)", + "DE.Controllers.Main.txtShape_accentBorderCallout2": "Виноска 2 (межа і лінія)", + "DE.Controllers.Main.txtShape_accentBorderCallout3": "Виноска 3 (межа і лінія)", + "DE.Controllers.Main.txtShape_accentCallout1": "Виноска 1 (лінія)", + "DE.Controllers.Main.txtShape_accentCallout2": "Виноска 2 (лінія)", + "DE.Controllers.Main.txtShape_accentCallout3": "Виноска 3 (лінія)", + "DE.Controllers.Main.txtShape_actionButtonBackPrevious": "Кнопка \"Назад\"", + "DE.Controllers.Main.txtShape_actionButtonBeginning": "Кнопка \"На початок\"", + "DE.Controllers.Main.txtShape_actionButtonBlank": "Пуста кнопка", + "DE.Controllers.Main.txtShape_actionButtonDocument": "Кнопка документу", + "DE.Controllers.Main.txtShape_actionButtonEnd": "Кнопка \"В кінець\"", + "DE.Controllers.Main.txtShape_actionButtonForwardNext": "Кнопка \"Вперед\"", + "DE.Controllers.Main.txtShape_actionButtonHelp": "Кнопка \"Довідка\"", "DE.Controllers.Main.txtShape_actionButtonHome": "Кнопка Домівка", + "DE.Controllers.Main.txtShape_actionButtonInformation": "Інформаційна кнопка", + "DE.Controllers.Main.txtShape_actionButtonMovie": "Кнопка відео", + "DE.Controllers.Main.txtShape_actionButtonReturn": "Кнопка повернення", + "DE.Controllers.Main.txtShape_actionButtonSound": "Кнопка звуку", "DE.Controllers.Main.txtShape_arc": "Дуга", + "DE.Controllers.Main.txtShape_bentArrow": "Зігнута стрілка", + "DE.Controllers.Main.txtShape_bentConnector5": "Колінчате з'єднання", + "DE.Controllers.Main.txtShape_bentConnector5WithArrow": "Колінчате з'єднання зі стрілкою", + "DE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Колінчате з'єднання з двома стрілками", + "DE.Controllers.Main.txtShape_bentUpArrow": "Загнута стрілка вгору", + "DE.Controllers.Main.txtShape_bevel": "Багетна рамка", + "DE.Controllers.Main.txtShape_blockArc": "Арка", + "DE.Controllers.Main.txtShape_borderCallout1": "Виноска 1", + "DE.Controllers.Main.txtShape_borderCallout2": "Виноска 2", + "DE.Controllers.Main.txtShape_borderCallout3": "Виноска 3", + "DE.Controllers.Main.txtShape_bracePair": "Подвійні фігурні дужки", + "DE.Controllers.Main.txtShape_callout1": "Виноска 1 (без межі)", + "DE.Controllers.Main.txtShape_callout2": "Виноска 2(без межі)", + "DE.Controllers.Main.txtShape_callout3": "Виноска 3 (без межі)", + "DE.Controllers.Main.txtShape_can": "Циліндр", + "DE.Controllers.Main.txtShape_chevron": "Шеврон", + "DE.Controllers.Main.txtShape_chord": "Хорда", + "DE.Controllers.Main.txtShape_circularArrow": "Кругова стрілка", "DE.Controllers.Main.txtShape_cloud": "Хмара", + "DE.Controllers.Main.txtShape_cloudCallout": "Виноска хмарка", "DE.Controllers.Main.txtShape_corner": "Кут", "DE.Controllers.Main.txtShape_cube": "Куб", + "DE.Controllers.Main.txtShape_curvedConnector3": "Округлена сполучна лінія", + "DE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Округлена лінія зі стрілкою", + "DE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Округлена лінія з двома стрілками", + "DE.Controllers.Main.txtShape_curvedDownArrow": "Вигнута вверх стрілка", + "DE.Controllers.Main.txtShape_curvedLeftArrow": "Вигнута ліворуч стрілка", + "DE.Controllers.Main.txtShape_curvedRightArrow": "Вигнута праворуч стрілка", + "DE.Controllers.Main.txtShape_curvedUpArrow": "Вигнута вниз стрілка", + "DE.Controllers.Main.txtShape_decagon": "Десятикутник", + "DE.Controllers.Main.txtShape_diagStripe": "Діагональна смуга", + "DE.Controllers.Main.txtShape_diamond": "Ромб", + "DE.Controllers.Main.txtShape_dodecagon": "Дванадцятикутник", + "DE.Controllers.Main.txtShape_donut": "Кільце", + "DE.Controllers.Main.txtShape_doubleWave": "Подвійна хвиля", + "DE.Controllers.Main.txtShape_downArrow": "Стрілка вниз", + "DE.Controllers.Main.txtShape_downArrowCallout": "Виноска зі стрілкою вниз", + "DE.Controllers.Main.txtShape_ellipse": "Еліпс", + "DE.Controllers.Main.txtShape_ellipseRibbon": "Вигнута вниз стрічка", + "DE.Controllers.Main.txtShape_ellipseRibbon2": "Вигнута вверх стрічка", + "DE.Controllers.Main.txtShape_flowChartAlternateProcess": "Блок-схема: альтернативний процес", + "DE.Controllers.Main.txtShape_flowChartCollate": "Блок-схема: зіставлення", + "DE.Controllers.Main.txtShape_flowChartConnector": "Блок-схема: з'єднувач", + "DE.Controllers.Main.txtShape_flowChartDecision": "Блок-схема: рішення", + "DE.Controllers.Main.txtShape_flowChartDelay": "Блок-схема: затримка", + "DE.Controllers.Main.txtShape_flowChartDisplay": "Блок-схема: дисплей", + "DE.Controllers.Main.txtShape_flowChartDocument": "Блок-схема: документ", + "DE.Controllers.Main.txtShape_flowChartExtract": "Блок-схема: витяг", + "DE.Controllers.Main.txtShape_flowChartInputOutput": "Блок-схема: дані", + "DE.Controllers.Main.txtShape_flowChartInternalStorage": "Блок-схема: внутрішня пам'ять", + "DE.Controllers.Main.txtShape_flowChartMagneticDisk": "Блок-схема: магнітний диск", + "DE.Controllers.Main.txtShape_flowChartMagneticDrum": "Блок-схема: пам'ять з прямим доступом", + "DE.Controllers.Main.txtShape_flowChartMagneticTape": "Блок-схема: пам'ять з послідовним доступом", + "DE.Controllers.Main.txtShape_flowChartManualInput": "Блок-схема: ручне введення", + "DE.Controllers.Main.txtShape_flowChartManualOperation": "Блок-схема: ручне керування", + "DE.Controllers.Main.txtShape_flowChartMerge": "Блок-схема: об'єднання", + "DE.Controllers.Main.txtShape_flowChartMultidocument": "Блок-схема: декілька документів", + "DE.Controllers.Main.txtShape_flowChartOffpageConnector": "Блок-схема: посилання на іншу сторінку", + "DE.Controllers.Main.txtShape_flowChartOnlineStorage": "Блок-схема: збережені дані", + "DE.Controllers.Main.txtShape_flowChartOr": "Блок-схема: АБО", + "DE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Блок-схема: типовий процес", + "DE.Controllers.Main.txtShape_flowChartPreparation": "Блок-схема: підготовка", + "DE.Controllers.Main.txtShape_flowChartProcess": "Блок-схема: процес", + "DE.Controllers.Main.txtShape_flowChartPunchedCard": "Блок-схема: картка", + "DE.Controllers.Main.txtShape_flowChartPunchedTape": "Блок-схема: перфострічка", + "DE.Controllers.Main.txtShape_flowChartSort": "Блок-схема: сортування", + "DE.Controllers.Main.txtShape_flowChartSummingJunction": "Блок-схема: вузол суми", + "DE.Controllers.Main.txtShape_flowChartTerminator": "Блок-схема: знак закінчення", + "DE.Controllers.Main.txtShape_foldedCorner": "Загнутий кут", + "DE.Controllers.Main.txtShape_frame": "Рамка", + "DE.Controllers.Main.txtShape_halfFrame": "Половина рамки", + "DE.Controllers.Main.txtShape_heart": "Серце", + "DE.Controllers.Main.txtShape_heptagon": "Семикутник", + "DE.Controllers.Main.txtShape_hexagon": "Шестикутник", + "DE.Controllers.Main.txtShape_homePlate": "П'ятикутник", + "DE.Controllers.Main.txtShape_horizontalScroll": "Горизонтальний сувій", + "DE.Controllers.Main.txtShape_irregularSeal1": "Спалах 1", + "DE.Controllers.Main.txtShape_irregularSeal2": "Спалах 2", + "DE.Controllers.Main.txtShape_leftArrow": "Стрілка ліворуч", + "DE.Controllers.Main.txtShape_leftArrowCallout": "Виноска зі стрілкою ліворуч", + "DE.Controllers.Main.txtShape_leftBrace": "Ліва фігурна дужка", + "DE.Controllers.Main.txtShape_leftBracket": "Ліва дужка", + "DE.Controllers.Main.txtShape_leftRightArrow": "Подвійна стрілка ліворуч-праворуч", + "DE.Controllers.Main.txtShape_leftRightArrowCallout": "Виноска зі стрілками ліворуч-праворуч", + "DE.Controllers.Main.txtShape_leftRightUpArrow": "Потрійна стрілка ліворуч-праворуч-вверх", + "DE.Controllers.Main.txtShape_leftUpArrow": "Подвійна стрілка ліворуч-вверх", + "DE.Controllers.Main.txtShape_lightningBolt": "Блискавка", + "DE.Controllers.Main.txtShape_line": "Лінія", + "DE.Controllers.Main.txtShape_lineWithArrow": "Стрілка", + "DE.Controllers.Main.txtShape_lineWithTwoArrows": "Подвійна стрілка", + "DE.Controllers.Main.txtShape_mathDivide": "Ділення", + "DE.Controllers.Main.txtShape_mathEqual": "Дорівнює", + "DE.Controllers.Main.txtShape_mathMinus": "Мінус", + "DE.Controllers.Main.txtShape_mathMultiply": "Множення", + "DE.Controllers.Main.txtShape_mathNotEqual": "Не дорівнює", + "DE.Controllers.Main.txtShape_mathPlus": "Плюс", + "DE.Controllers.Main.txtShape_moon": "Місяць", + "DE.Controllers.Main.txtShape_noSmoking": "Заборонено", + "DE.Controllers.Main.txtShape_notchedRightArrow": "Стрілка праворуч з вирізом", + "DE.Controllers.Main.txtShape_octagon": "Восьмикутник", + "DE.Controllers.Main.txtShape_parallelogram": "Паралелограм", + "DE.Controllers.Main.txtShape_pentagon": "П'ятикутник", + "DE.Controllers.Main.txtShape_pie": "Сектор круга", + "DE.Controllers.Main.txtShape_plaque": "Табличка", + "DE.Controllers.Main.txtShape_plus": "Плюс", + "DE.Controllers.Main.txtShape_polyline1": "Крива", + "DE.Controllers.Main.txtShape_polyline2": "Довільна форма", + "DE.Controllers.Main.txtShape_quadArrow": "Зчетверена стрілка", + "DE.Controllers.Main.txtShape_quadArrowCallout": "Виноска з чотирма стрілками", + "DE.Controllers.Main.txtShape_rect": "Прямокутник", + "DE.Controllers.Main.txtShape_ribbon": "Стрічка вниз", + "DE.Controllers.Main.txtShape_ribbon2": "Стрічка вверх", + "DE.Controllers.Main.txtShape_rightArrow": "Стрілка праворуч", + "DE.Controllers.Main.txtShape_rightArrowCallout": "Виноска зі стрілкою вправоруч", + "DE.Controllers.Main.txtShape_rightBrace": "Права фігурна дужка", + "DE.Controllers.Main.txtShape_rightBracket": "Права дужка", + "DE.Controllers.Main.txtShape_round1Rect": "Прямокутник з одним закругленим кутом", + "DE.Controllers.Main.txtShape_round2DiagRect": "Прямокутник із двома закругленими протилежними кутами", + "DE.Controllers.Main.txtShape_round2SameRect": "Прямокутник із двома закругленими сусідніми кутами", + "DE.Controllers.Main.txtShape_roundRect": "Прямокутник з закругленими кутами", + "DE.Controllers.Main.txtShape_rtTriangle": "Прямокутний трикутник", + "DE.Controllers.Main.txtShape_smileyFace": "Усміхнене обличчя", + "DE.Controllers.Main.txtShape_snip1Rect": "Прямокутник з одним вирізаним кутом", + "DE.Controllers.Main.txtShape_snip2DiagRect": "Прямокутник з двома вирізаними протилежними кутами", + "DE.Controllers.Main.txtShape_snip2SameRect": "Прямокутник з двома вирізаними сусідніми кутами", + "DE.Controllers.Main.txtShape_snipRoundRect": "Прямокутник з одним вирізаним закругленим кутом", "DE.Controllers.Main.txtShape_spline": "Крива", + "DE.Controllers.Main.txtShape_star10": "10-кінцева зірка", + "DE.Controllers.Main.txtShape_star12": "12-кінцева зірка", + "DE.Controllers.Main.txtShape_star16": "16-кінцева зірка", + "DE.Controllers.Main.txtShape_star24": "24-кінцева зірка", + "DE.Controllers.Main.txtShape_star32": "32-кінцева зірка", + "DE.Controllers.Main.txtShape_star4": "4-кінцева зірка", + "DE.Controllers.Main.txtShape_star5": "5-кінцева зірка", + "DE.Controllers.Main.txtShape_star6": "6-кінцева зірка", + "DE.Controllers.Main.txtShape_star7": "7-кінцева зірка", + "DE.Controllers.Main.txtShape_star8": "8-кінцева зірка", + "DE.Controllers.Main.txtShape_stripedRightArrow": "Штрихована стрілка праворуч", + "DE.Controllers.Main.txtShape_sun": "Сонце", + "DE.Controllers.Main.txtShape_teardrop": "Крапля", + "DE.Controllers.Main.txtShape_textRect": "Напис", + "DE.Controllers.Main.txtShape_trapezoid": "Трапеція", + "DE.Controllers.Main.txtShape_triangle": "Трикутник", + "DE.Controllers.Main.txtShape_upArrow": "Стрілка вгору", + "DE.Controllers.Main.txtShape_upArrowCallout": "Виноска зі стрілкою вверх", + "DE.Controllers.Main.txtShape_upDownArrow": "Подвійна стрілка вверх-вниз", + "DE.Controllers.Main.txtShape_uturnArrow": "Розвернута стрілка", + "DE.Controllers.Main.txtShape_verticalScroll": "Вертикальний сувій", + "DE.Controllers.Main.txtShape_wave": "Хвиля", + "DE.Controllers.Main.txtShape_wedgeEllipseCallout": "Овальна виноска", + "DE.Controllers.Main.txtShape_wedgeRectCallout": "Прямокутна виноска", + "DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Закруглена прямокутна виноска", "DE.Controllers.Main.txtStarsRibbons": "Зірки та стрічки", + "DE.Controllers.Main.txtStyle_Caption": "Назва", + "DE.Controllers.Main.txtStyle_endnote_text": "Текст кінцевої зноски", "DE.Controllers.Main.txtStyle_footnote_text": "Текст виноски", "DE.Controllers.Main.txtStyle_Heading_1": "Заголовок 1", "DE.Controllers.Main.txtStyle_Heading_2": "Заголовок 2", @@ -389,35 +845,57 @@ "DE.Controllers.Main.txtStyle_Quote": "Цитувати", "DE.Controllers.Main.txtStyle_Subtitle": "Субтитри", "DE.Controllers.Main.txtStyle_Title": "Заголовок", + "DE.Controllers.Main.txtSyntaxError": "Синтаксична помилка", + "DE.Controllers.Main.txtTableInd": "Індекс таблиці не може бути нульовим", "DE.Controllers.Main.txtTableOfContents": "Зміст", + "DE.Controllers.Main.txtTableOfFigures": "Список ілюстрацій", + "DE.Controllers.Main.txtTOCHeading": "Заголовок змісту", + "DE.Controllers.Main.txtTooLarge": "Число завелике для форматування", + "DE.Controllers.Main.txtTypeEquation": "Місце для рівняння.", "DE.Controllers.Main.txtUndefBookmark": "Невизначена закладка", "DE.Controllers.Main.txtXAxis": "X Ось", "DE.Controllers.Main.txtYAxis": "Y ось", + "DE.Controllers.Main.txtZeroDivide": "Ділення на нуль", "DE.Controllers.Main.unknownErrorText": "Невідома помилка.", "DE.Controllers.Main.unsupportedBrowserErrorText": "Ваш браузер не підтримується", + "DE.Controllers.Main.uploadDocExtMessage": "Невідомий формат документу.", "DE.Controllers.Main.uploadDocFileCountMessage": "Жодного документу не завантажено.", + "DE.Controllers.Main.uploadDocSizeMessage": "Перевищений максимальний розмір документу", "DE.Controllers.Main.uploadImageExtMessage": "Невідомий формат зображення.", "DE.Controllers.Main.uploadImageFileCountMessage": "Жодного зображення не завантажено.", - "DE.Controllers.Main.uploadImageSizeMessage": "Максимальний розмір зображення перевищено.", + "DE.Controllers.Main.uploadImageSizeMessage": "Занадто велике зображення. Максимальний розмір – 25 MB.", "DE.Controllers.Main.uploadImageTextText": "Завантаження зображення...", "DE.Controllers.Main.uploadImageTitleText": "Завантаження зображення", + "DE.Controllers.Main.waitText": "Будь ласка, зачекайте...", "DE.Controllers.Main.warnBrowserIE9": "Застосунок має низьку ефективність при роботі з-під IE9. Використовувати IE10 або вище", - "DE.Controllers.Main.warnBrowserZoom": "Налаштування масштабу вашого браузера не підтримується повністю. Змініть стандартний масштаб, натиснувши Ctrl + 0.", + "DE.Controllers.Main.warnBrowserZoom": "Наявне масштабування сторінки браузеру повністю не підтримується. Поверніться до стандартного масштабу, натиснувши Ctrl+0.", + "DE.Controllers.Main.warnLicenseExceeded": "Ви досягли ліміту одночасного підключення до редакторів %1. Цей документ буде відкритий лише для перегляду.
Щоб дізнатися більше, зв’яжіться з адміністратором.", "DE.Controllers.Main.warnLicenseExp": "Термін дії вашої ліцензії минув.
Будь ласка, оновіть свою ліцензію та оновіть сторінку.", - "DE.Controllers.Main.warnNoLicense": "Ви використовуєте відкриту версію %1. Ця версія має обмеження для одночасного підключення до сервера документів (20 підключень за один раз).
Якщо вам потрібно більше, подумайте про придбання комерційної ліцензії.", + "DE.Controllers.Main.warnLicenseLimitedNoAccess": "Термін дії ліцензії закінчився.
Немає доступ до функцій редагування документів.
Будь ласка, зверніться до адміністратора.", + "DE.Controllers.Main.warnLicenseLimitedRenewed": "Потрібно поновити ліцензію.
У вас обмежений доступ до функцій редагування документів.
Будь ласка, зверніться до свого адміністратора, щоб отримати повний доступ", + "DE.Controllers.Main.warnLicenseUsersExceeded": "Ви досягли ліміту на кількість користувачів редакторів %1.
Зв'яжіться з адміністратором, щоб дізнатися більше.", + "DE.Controllers.Main.warnNoLicense": "Ви досягли ліміту на одночасне підключення до редакторів %1. Цей документ буде відкрито для перегляду.
Напишіть у відділ продажу %1, щоб обговорити індивідуальні умови ліцензування.", + "DE.Controllers.Main.warnNoLicenseUsers": "Ви досягли ліміту на одночасне підключення до редакторів %1.
Напишіть у відділ продаж %1, для обговорення індивідуальних умов ліцензування.", "DE.Controllers.Main.warnProcessRightsChange": "Вам відмовлено у наданні права редагувати файл.", + "DE.Controllers.Navigation.txtBeginning": "Початок документа", + "DE.Controllers.Navigation.txtGotoBeginning": "Перейти до початку документу", "DE.Controllers.Statusbar.textHasChanges": "Нові зміни були відстежені", + "DE.Controllers.Statusbar.textSetTrackChanges": "Ви перебуваєте в режимі відстеження змін", "DE.Controllers.Statusbar.textTrackChanges": "Документ відкривається за допомогою режиму відстеження змін", "DE.Controllers.Statusbar.tipReview": "Відстежувати зміни", - "DE.Controllers.Statusbar.zoomText": "Збільшити {0}%", + "DE.Controllers.Statusbar.zoomText": "Масштаб {0}%", "DE.Controllers.Toolbar.confirmAddFontName": "Шрифт, який ви збираєтеся зберегти, недоступний на поточному пристрої.
Стиль тексту відображатиметься за допомогою одного з системних шрифтів, збережений шрифт буде використовуватися, коли він стане доступний.
Продовжити?", + "DE.Controllers.Toolbar.dataUrl": "Вставте URL-адресу даних", "DE.Controllers.Toolbar.notcriticalErrorTitle": "Застереження", "DE.Controllers.Toolbar.textAccent": "Акценти", "DE.Controllers.Toolbar.textBracket": "дужки", "DE.Controllers.Toolbar.textEmptyImgUrl": "Потрібно вказати URL-адресу зображення.", + "DE.Controllers.Toolbar.textEmptyMMergeUrl": "Необхідно вказати URL.", "DE.Controllers.Toolbar.textFontSizeErr": "Введене значення невірно.
Будь ласка, введіть числове значення від 1 до 300", "DE.Controllers.Toolbar.textFraction": "Дроби", "DE.Controllers.Toolbar.textFunction": "Функції", + "DE.Controllers.Toolbar.textGroup": "Група", + "DE.Controllers.Toolbar.textInsert": "Вставити", "DE.Controllers.Toolbar.textIntegral": "Інтеграли", "DE.Controllers.Toolbar.textLargeOperator": "Великі оператори", "DE.Controllers.Toolbar.textLimitAndLog": "Межі та логарифми", @@ -426,14 +904,15 @@ "DE.Controllers.Toolbar.textRadical": "Радикали", "DE.Controllers.Toolbar.textScript": "Рукописи", "DE.Controllers.Toolbar.textSymbols": "Символи", + "DE.Controllers.Toolbar.textTabForms": "Форми", "DE.Controllers.Toolbar.textWarning": "Застереження", "DE.Controllers.Toolbar.txtAccent_Accent": "Гострий", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Стрілка праворуч вліво вище", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Стрілка вліво вгору", "DE.Controllers.Toolbar.txtAccent_ArrowR": "Стрілка праворуч вгорі", - "DE.Controllers.Toolbar.txtAccent_Bar": "Вставити", + "DE.Controllers.Toolbar.txtAccent_Bar": "Риска", "DE.Controllers.Toolbar.txtAccent_BarBot": "Підкреслення", - "DE.Controllers.Toolbar.txtAccent_BarTop": "риса", + "DE.Controllers.Toolbar.txtAccent_BarTop": "Риска зверху", "DE.Controllers.Toolbar.txtAccent_BorderBox": "Формула (з місцем розташування)", "DE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Формула(приклад)", "DE.Controllers.Toolbar.txtAccent_Check": "Перевірити", @@ -441,11 +920,11 @@ "DE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Перевершити", "DE.Controllers.Toolbar.txtAccent_Custom_1": "Вектор А", "DE.Controllers.Toolbar.txtAccent_Custom_2": "ABC з надбавкою", - "DE.Controllers.Toolbar.txtAccent_Custom_3": "X XOR у з рискою", + "DE.Controllers.Toolbar.txtAccent_Custom_3": "X XOR у з рискою зверху", "DE.Controllers.Toolbar.txtAccent_DDDot": "Три крапки", "DE.Controllers.Toolbar.txtAccent_DDot": "Двокрапка", "DE.Controllers.Toolbar.txtAccent_Dot": "Крапка", - "DE.Controllers.Toolbar.txtAccent_DoubleBar": "Подвійна риска", + "DE.Controllers.Toolbar.txtAccent_DoubleBar": "Подвійна риска зверху", "DE.Controllers.Toolbar.txtAccent_Grave": "Гравіювати", "DE.Controllers.Toolbar.txtAccent_GroupBot": "Згрупувати символи нижче", "DE.Controllers.Toolbar.txtAccent_GroupTop": "Згрупувати символи вище", @@ -744,26 +1223,59 @@ "DE.Controllers.Toolbar.txtSymbol_vartheta": "тета варіант", "DE.Controllers.Toolbar.txtSymbol_vdots": "Вертикальний Еліпсіс", "DE.Controllers.Toolbar.txtSymbol_xsi": "ксі", - "DE.Controllers.Toolbar.txtSymbol_zeta": "Зета", + "DE.Controllers.Toolbar.txtSymbol_zeta": "Дзета", "DE.Controllers.Viewport.textFitPage": "За розміром сторінки", "DE.Controllers.Viewport.textFitWidth": "По ширині", + "DE.Controllers.Viewport.txtDarkMode": "Темний режим", + "DE.Views.AddNewCaptionLabelDialog.textLabel": "Підпис:", + "DE.Views.AddNewCaptionLabelDialog.textLabelError": "Підпис не повинен бути пустий", "DE.Views.BookmarksDialog.textAdd": "Додати", "DE.Views.BookmarksDialog.textBookmarkName": "Назва закладки", "DE.Views.BookmarksDialog.textClose": "Закрити", "DE.Views.BookmarksDialog.textCopy": "Копіювати", "DE.Views.BookmarksDialog.textDelete": "Вилучити", + "DE.Views.BookmarksDialog.textGetLink": "Отримати посилання", "DE.Views.BookmarksDialog.textGoto": "Перейти", "DE.Views.BookmarksDialog.textHidden": "Приховані закладки", + "DE.Views.BookmarksDialog.textLocation": "Розташування", + "DE.Views.BookmarksDialog.textName": "Ім'я", + "DE.Views.BookmarksDialog.textSort": "Порядок", "DE.Views.BookmarksDialog.textTitle": "Закладки", + "DE.Views.BookmarksDialog.txtInvalidName": "Назва закладки може містити лише літери, цифри та знаки підкреслення та має починатися з літери", "DE.Views.CaptionDialog.textAdd": "Додати мітку", "DE.Views.CaptionDialog.textAfter": "Після", + "DE.Views.CaptionDialog.textBefore": "Перед", + "DE.Views.CaptionDialog.textCaption": "Назва", + "DE.Views.CaptionDialog.textChapter": "Починається зі стилю:", + "DE.Views.CaptionDialog.textChapterInc": "Включити номер розділу", + "DE.Views.CaptionDialog.textColon": "Двокрапка", "DE.Views.CaptionDialog.textDash": "тире", + "DE.Views.CaptionDialog.textDelete": "Видалити", + "DE.Views.CaptionDialog.textEquation": "Рівняння", + "DE.Views.CaptionDialog.textExamples": "Приклади: Таблиця 2-A, Зображення 1.IV", + "DE.Views.CaptionDialog.textExclude": "Виключити підпис з назви", + "DE.Views.CaptionDialog.textFigure": "Малюнок", + "DE.Views.CaptionDialog.textHyphen": "дефіс", + "DE.Views.CaptionDialog.textInsert": "Вставити", + "DE.Views.CaptionDialog.textLabel": "Підпис", + "DE.Views.CaptionDialog.textLongDash": "довге тире", + "DE.Views.CaptionDialog.textNumbering": "Нумерація", + "DE.Views.CaptionDialog.textPeriod": "крапка", + "DE.Views.CaptionDialog.textSeparator": "Використати роздільник", + "DE.Views.CaptionDialog.textTable": "Таблиця", + "DE.Views.CaptionDialog.textTitle": "Вставити назву", + "DE.Views.CellsAddDialog.textCol": "Стовпчики", + "DE.Views.CellsAddDialog.textDown": "Під курсором", + "DE.Views.CellsAddDialog.textLeft": "Ліворуч", + "DE.Views.CellsAddDialog.textRight": "Праворуч", + "DE.Views.CellsAddDialog.textRow": "Рядки", + "DE.Views.CellsAddDialog.textTitle": "Вставити декілька", "DE.Views.CellsAddDialog.textUp": "Над курсором", "DE.Views.ChartSettings.textAdvanced": "Показати додаткові налаштування", "DE.Views.ChartSettings.textChartType": "Змінити тип діаграми", "DE.Views.ChartSettings.textEditData": "Редагувати дату", "DE.Views.ChartSettings.textHeight": "Висота", - "DE.Views.ChartSettings.textOriginalSize": "За замовчуванням", + "DE.Views.ChartSettings.textOriginalSize": "Реальний розмір", "DE.Views.ChartSettings.textSize": "Розмір", "DE.Views.ChartSettings.textStyle": "Стиль", "DE.Views.ChartSettings.textUndock": "Скасувати з панелі", @@ -777,21 +1289,90 @@ "DE.Views.ChartSettings.txtTight": "Тісно", "DE.Views.ChartSettings.txtTitle": "Діаграма", "DE.Views.ChartSettings.txtTopAndBottom": "Верх і низ", + "DE.Views.ControlSettingsDialog.strGeneral": "Загальні", "DE.Views.ControlSettingsDialog.textAdd": "Додати", + "DE.Views.ControlSettingsDialog.textAppearance": "Вигляд", "DE.Views.ControlSettingsDialog.textApplyAll": "Застосувати до всього", + "DE.Views.ControlSettingsDialog.textBox": "Обмежувальна рамка", "DE.Views.ControlSettingsDialog.textChange": "Редагувати", + "DE.Views.ControlSettingsDialog.textCheckbox": "Прапорець", + "DE.Views.ControlSettingsDialog.textChecked": "Символ встановленого прапорця", "DE.Views.ControlSettingsDialog.textColor": "Колір", + "DE.Views.ControlSettingsDialog.textCombobox": "Поле зі списком", + "DE.Views.ControlSettingsDialog.textDate": "Формат дати", "DE.Views.ControlSettingsDialog.textDelete": "Вилучити", "DE.Views.ControlSettingsDialog.textDisplayName": "Ім'я для показу", + "DE.Views.ControlSettingsDialog.textDown": "Вниз", + "DE.Views.ControlSettingsDialog.textDropDown": "Випадаючий список", "DE.Views.ControlSettingsDialog.textFormat": "Показувати дату як", - "DE.Views.CustomColumnsDialog.textColumns": "Номер стовпчиків", - "DE.Views.CustomColumnsDialog.textSeparator": "Дільник колонки", - "DE.Views.CustomColumnsDialog.textSpacing": "Розміщення між стовпцями", - "DE.Views.CustomColumnsDialog.textTitle": "Колонки", + "DE.Views.ControlSettingsDialog.textLang": "Мова", + "DE.Views.ControlSettingsDialog.textLock": "Блокування", + "DE.Views.ControlSettingsDialog.textName": "Заголовок", + "DE.Views.ControlSettingsDialog.textNone": "Без рамки", + "DE.Views.ControlSettingsDialog.textPlaceholder": "Заповнювач", + "DE.Views.ControlSettingsDialog.textShowAs": "Зображати як", + "DE.Views.ControlSettingsDialog.textSystemColor": "Системний", + "DE.Views.ControlSettingsDialog.textTag": "Тег", + "DE.Views.ControlSettingsDialog.textTitle": "Параметри елемента керування вмістом", + "DE.Views.ControlSettingsDialog.textUnchecked": "Символ прибраного прапорця", + "DE.Views.ControlSettingsDialog.textUp": "Вверх", + "DE.Views.ControlSettingsDialog.textValue": "Значення", + "DE.Views.ControlSettingsDialog.tipChange": "Змінити символ", + "DE.Views.ControlSettingsDialog.txtLockDelete": "Елемент керування вмістом не можна видалити", + "DE.Views.ControlSettingsDialog.txtLockEdit": "Вміст не можна редагувати", + "DE.Views.CrossReferenceDialog.textAboveBelow": "Вище/нижче", + "DE.Views.CrossReferenceDialog.textBookmark": "Закладка", + "DE.Views.CrossReferenceDialog.textBookmarkText": "Текст закладки", + "DE.Views.CrossReferenceDialog.textCaption": "Назва повністю", + "DE.Views.CrossReferenceDialog.textEmpty": "Посилання на запит порожнє.", + "DE.Views.CrossReferenceDialog.textEndnote": "Кінцева зноска", + "DE.Views.CrossReferenceDialog.textEndNoteNum": "Номер кінцевої зноски", + "DE.Views.CrossReferenceDialog.textEndNoteNumForm": "Номер кінцевої зноски (форм.)", + "DE.Views.CrossReferenceDialog.textEquation": "Рівняння", + "DE.Views.CrossReferenceDialog.textFigure": "Малюнок", + "DE.Views.CrossReferenceDialog.textFootnote": "Виноска", + "DE.Views.CrossReferenceDialog.textHeading": "Заголовок", + "DE.Views.CrossReferenceDialog.textHeadingNum": "Номер заголовку", + "DE.Views.CrossReferenceDialog.textHeadingNumFull": "Номер заголовку (повний)", + "DE.Views.CrossReferenceDialog.textHeadingNumNo": "Номер заголовку (короткий)", + "DE.Views.CrossReferenceDialog.textHeadingText": "Текст заголовку", + "DE.Views.CrossReferenceDialog.textIncludeAbove": "Додати слово \"вище\" чи \"нижче\"", + "DE.Views.CrossReferenceDialog.textInsert": "Вставити", + "DE.Views.CrossReferenceDialog.textInsertAs": "Вставити як посилання", + "DE.Views.CrossReferenceDialog.textLabelNum": "Постійна частина і номер", + "DE.Views.CrossReferenceDialog.textNoteNum": "Номер виноски", + "DE.Views.CrossReferenceDialog.textNoteNumForm": "Номер виноски (форм.)", + "DE.Views.CrossReferenceDialog.textOnlyCaption": "Тільки текст назви", + "DE.Views.CrossReferenceDialog.textPageNum": "Номер сторінки", + "DE.Views.CrossReferenceDialog.textParagraph": "Нумерований список", + "DE.Views.CrossReferenceDialog.textParaNum": "Номер абзацу", + "DE.Views.CrossReferenceDialog.textParaNumFull": "Номер абзацу (повний)", + "DE.Views.CrossReferenceDialog.textParaNumNo": "Номер абзацу (короткий)", + "DE.Views.CrossReferenceDialog.textSeparate": "Роздільник номерів", + "DE.Views.CrossReferenceDialog.textTable": "Таблиця", + "DE.Views.CrossReferenceDialog.textText": "Текст абзацу", + "DE.Views.CrossReferenceDialog.textWhich": "Для якої назви", + "DE.Views.CrossReferenceDialog.textWhichBookmark": "Для якої закладки", + "DE.Views.CrossReferenceDialog.textWhichEndnote": "Для якої кінцевої зноски", + "DE.Views.CrossReferenceDialog.textWhichHeading": "Для якого заголовка", + "DE.Views.CrossReferenceDialog.textWhichNote": "Для якої зноски", + "DE.Views.CrossReferenceDialog.textWhichPara": "Для якого абзацу", + "DE.Views.CrossReferenceDialog.txtReference": "Вставити посилання на", + "DE.Views.CrossReferenceDialog.txtTitle": "Перехресне посилання", + "DE.Views.CrossReferenceDialog.txtType": "Тип посилання", + "DE.Views.CustomColumnsDialog.textColumns": "Кількість стовпчиків", + "DE.Views.CustomColumnsDialog.textSeparator": "Роздільник", + "DE.Views.CustomColumnsDialog.textSpacing": "Інтервал між стовпчиками", + "DE.Views.CustomColumnsDialog.textTitle": "Стовпчики", "DE.Views.DateTimeDialog.confirmDefault": "Встановити типовий формат для {0}: \"{1}\"", "DE.Views.DateTimeDialog.textDefault": "Встановити типовим", + "DE.Views.DateTimeDialog.textFormat": "Формати", + "DE.Views.DateTimeDialog.textLang": "Мова", + "DE.Views.DateTimeDialog.textUpdate": "Оновлювати автоматично", + "DE.Views.DateTimeDialog.txtTitle": "Дата та час", "DE.Views.DocumentHolder.aboveText": "Вище", "DE.Views.DocumentHolder.addCommentText": "Добавити коментар", + "DE.Views.DocumentHolder.advancedDropCapText": "Налаштування буквиці", "DE.Views.DocumentHolder.advancedFrameText": "Рамка розширені налаштування", "DE.Views.DocumentHolder.advancedParagraphText": "Параграф розширені налаштування", "DE.Views.DocumentHolder.advancedTableText": "Таблиця розширені налаштування", @@ -799,12 +1380,13 @@ "DE.Views.DocumentHolder.alignmentText": "Вирівнювання", "DE.Views.DocumentHolder.belowText": "Нижче", "DE.Views.DocumentHolder.breakBeforeText": "Розрив сторінки перед", + "DE.Views.DocumentHolder.bulletsText": "Маркери та нумерація", "DE.Views.DocumentHolder.cellAlignText": "Вертикальне вирівнювання комірки", "DE.Views.DocumentHolder.cellText": "Комірка", "DE.Views.DocumentHolder.centerText": "Центр", "DE.Views.DocumentHolder.chartText": "Діаграма Розширені налаштування", - "DE.Views.DocumentHolder.columnText": "Колона", - "DE.Views.DocumentHolder.deleteColumnText": "Вилучити стовпчик", + "DE.Views.DocumentHolder.columnText": "Стовпчик", + "DE.Views.DocumentHolder.deleteColumnText": "Видалити стовпчик", "DE.Views.DocumentHolder.deleteRowText": "Вилучити рядок", "DE.Views.DocumentHolder.deleteTableText": "Вилучити таблицю", "DE.Views.DocumentHolder.deleteText": "Вилучити", @@ -821,9 +1403,9 @@ "DE.Views.DocumentHolder.ignoreAllSpellText": "Ігнорувати все", "DE.Views.DocumentHolder.ignoreSpellText": "Ігнорувати", "DE.Views.DocumentHolder.imageText": "Зображення розширені налаштування", - "DE.Views.DocumentHolder.insertColumnLeftText": "Колонка ліворуч", - "DE.Views.DocumentHolder.insertColumnRightText": "Колонка праворуч", - "DE.Views.DocumentHolder.insertColumnText": "Вставити колонку", + "DE.Views.DocumentHolder.insertColumnLeftText": "Стовпчик ліворуч", + "DE.Views.DocumentHolder.insertColumnRightText": "Стовпчик праворуч", + "DE.Views.DocumentHolder.insertColumnText": "Вставити стовпчик", "DE.Views.DocumentHolder.insertRowAboveText": "Рядок вгорі", "DE.Views.DocumentHolder.insertRowBelowText": "Рядок внизу", "DE.Views.DocumentHolder.insertRowText": "Вставити рядок", @@ -835,14 +1417,15 @@ "DE.Views.DocumentHolder.mergeCellsText": "Об'єднати комірки", "DE.Views.DocumentHolder.moreText": "Більше варіантів...", "DE.Views.DocumentHolder.noSpellVariantsText": "Немає варіантів", - "DE.Views.DocumentHolder.originalSizeText": "За замовчуванням", + "DE.Views.DocumentHolder.notcriticalErrorTitle": "Увага", + "DE.Views.DocumentHolder.originalSizeText": "Реальний розмір", "DE.Views.DocumentHolder.paragraphText": "Параграф", "DE.Views.DocumentHolder.removeHyperlinkText": "Вилучити гіперпосилання", "DE.Views.DocumentHolder.rightText": "Право", "DE.Views.DocumentHolder.rowText": "Рядок", "DE.Views.DocumentHolder.saveStyleText": "Створити новий стиль", "DE.Views.DocumentHolder.selectCellText": "Виберіть комірку", - "DE.Views.DocumentHolder.selectColumnText": "Виберіть колонку", + "DE.Views.DocumentHolder.selectColumnText": "Виберіть стовпчик", "DE.Views.DocumentHolder.selectRowText": "Виберіть рядок", "DE.Views.DocumentHolder.selectTableText": "Виберіть таблицю", "DE.Views.DocumentHolder.selectText": "Обрати", @@ -851,6 +1434,9 @@ "DE.Views.DocumentHolder.splitCellsText": "Розділити комірки...", "DE.Views.DocumentHolder.splitCellTitleText": "Розділити комірки", "DE.Views.DocumentHolder.strDelete": "Вилучити підпис", + "DE.Views.DocumentHolder.strDetails": "Склад підпису", + "DE.Views.DocumentHolder.strSetup": "Налаштування підпису", + "DE.Views.DocumentHolder.strSign": "Підписати", "DE.Views.DocumentHolder.styleText": "Форматування в стилі", "DE.Views.DocumentHolder.tableText": "Таблиця", "DE.Views.DocumentHolder.textAlign": "Вирівняти", @@ -860,25 +1446,57 @@ "DE.Views.DocumentHolder.textArrangeForward": "Висувати", "DE.Views.DocumentHolder.textArrangeFront": "Перенести на передній план", "DE.Views.DocumentHolder.textCells": "Комірки", + "DE.Views.DocumentHolder.textCol": "Видалити весь стовпчик", + "DE.Views.DocumentHolder.textContentControls": "Елемент керування вмістом", + "DE.Views.DocumentHolder.textContinueNumbering": "Продовжити нумерацію", "DE.Views.DocumentHolder.textCopy": "Копіювати", "DE.Views.DocumentHolder.textCrop": "Обрізати", + "DE.Views.DocumentHolder.textCropFill": "Заливка", "DE.Views.DocumentHolder.textCropFit": "Вмістити", "DE.Views.DocumentHolder.textCut": "Вирізати", + "DE.Views.DocumentHolder.textDistributeCols": "Вирівняти ширину стовпчиків", + "DE.Views.DocumentHolder.textDistributeRows": "Вирівняти висоту рядків", + "DE.Views.DocumentHolder.textEditControls": "Параметри елемента керування вмістом", "DE.Views.DocumentHolder.textEditWrapBoundary": "Редагувати обтікання кордону", - "DE.Views.DocumentHolder.textLeft": "Пересунути комірки ліворуч", + "DE.Views.DocumentHolder.textFlipH": "Перевернути горизонтально", + "DE.Views.DocumentHolder.textFlipV": "Перевернути вертикально", + "DE.Views.DocumentHolder.textFollow": "Перейти на попереднє місце", + "DE.Views.DocumentHolder.textFromFile": "З файлу", + "DE.Views.DocumentHolder.textFromStorage": "Зі сховища", + "DE.Views.DocumentHolder.textFromUrl": "За URL", + "DE.Views.DocumentHolder.textJoinList": "Об'єднати з попереднім списком", + "DE.Views.DocumentHolder.textLeft": "Клітинки зі зсувом ліворуч", + "DE.Views.DocumentHolder.textNest": "Вставити як вкладену таблицю", "DE.Views.DocumentHolder.textNextPage": "Наступна сторінка", + "DE.Views.DocumentHolder.textNumberingValue": "Початкове значення", "DE.Views.DocumentHolder.textPaste": "Вставити", "DE.Views.DocumentHolder.textPrevPage": "Попередня сторінка", "DE.Views.DocumentHolder.textRefreshField": "Оновити поле", + "DE.Views.DocumentHolder.textRemCheckBox": "Видалити прапорець", + "DE.Views.DocumentHolder.textRemComboBox": "Видалити поле зі списком", + "DE.Views.DocumentHolder.textRemDropdown": "Видалити випадаючий список", + "DE.Views.DocumentHolder.textRemField": "Видалити текстове поле", "DE.Views.DocumentHolder.textRemove": "Вилучити", "DE.Views.DocumentHolder.textRemoveControl": "Вилучити контроль вмісту", + "DE.Views.DocumentHolder.textRemPicture": "Видалити зображення", + "DE.Views.DocumentHolder.textRemRadioBox": "Видалити перемикач", + "DE.Views.DocumentHolder.textReplace": "Замінити зображення", + "DE.Views.DocumentHolder.textRotate": "Поворот", + "DE.Views.DocumentHolder.textRotate270": "Повернути на 90° проти годинникової стрілки", + "DE.Views.DocumentHolder.textRotate90": "Повернути на 90° за годинниковою стрілкою", + "DE.Views.DocumentHolder.textRow": "Видалити весь рядок", + "DE.Views.DocumentHolder.textSeparateList": "Окремий список", + "DE.Views.DocumentHolder.textSettings": "Налаштування", + "DE.Views.DocumentHolder.textSeveral": "Декілька рядків/стовпчиків", "DE.Views.DocumentHolder.textShapeAlignBottom": "Вирівняти знизу", "DE.Views.DocumentHolder.textShapeAlignCenter": "Вирівняти центр", "DE.Views.DocumentHolder.textShapeAlignLeft": "Вирівняти зліва", "DE.Views.DocumentHolder.textShapeAlignMiddle": "Вирівняти посередині", "DE.Views.DocumentHolder.textShapeAlignRight": "Вирівняти справа", "DE.Views.DocumentHolder.textShapeAlignTop": "Вирівняти догори", - "DE.Views.DocumentHolder.textTitleCellsRemove": "Вилучити комірки", + "DE.Views.DocumentHolder.textStartNewList": "Почати новий список", + "DE.Views.DocumentHolder.textStartNumberingFrom": "Встановити початкове значення", + "DE.Views.DocumentHolder.textTitleCellsRemove": "Видалити клітинки", "DE.Views.DocumentHolder.textTOC": "Зміст", "DE.Views.DocumentHolder.textTOCSettings": "Налаштування змісту", "DE.Views.DocumentHolder.textUndo": "Скасувати", @@ -887,6 +1505,7 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Оновити зміст", "DE.Views.DocumentHolder.textWrap": "Стиль упаковки", "DE.Views.DocumentHolder.tipIsLocked": "Цей елемент в даний час редагує інший користувач.", + "DE.Views.DocumentHolder.toDictionaryText": "Додати в словник", "DE.Views.DocumentHolder.txtAddBottom": "Додати нижню межу", "DE.Views.DocumentHolder.txtAddFractionBar": "Додати фракційну панель", "DE.Views.DocumentHolder.txtAddHor": "Додати горизонтальну лінію", @@ -900,7 +1519,7 @@ "DE.Views.DocumentHolder.txtBehind": "Позаду", "DE.Views.DocumentHolder.txtBorderProps": "Прикордонні властивості", "DE.Views.DocumentHolder.txtBottom": "Внизу", - "DE.Views.DocumentHolder.txtColumnAlign": "Вирівнювання колонки", + "DE.Views.DocumentHolder.txtColumnAlign": "Вирівнювання стовпчика", "DE.Views.DocumentHolder.txtDecreaseArg": "Зменшити розмір документу", "DE.Views.DocumentHolder.txtDeleteArg": "Вилучити аргумент", "DE.Views.DocumentHolder.txtDeleteBreak": "Вилучити ручний розрив", @@ -909,6 +1528,8 @@ "DE.Views.DocumentHolder.txtDeleteEq": "Вилучити рівняння", "DE.Views.DocumentHolder.txtDeleteGroupChar": "Вилучити символ", "DE.Views.DocumentHolder.txtDeleteRadical": "Вилучити корінь", + "DE.Views.DocumentHolder.txtDistribHor": "Розподілити горизонтально", + "DE.Views.DocumentHolder.txtDistribVert": "Розподілити вертикально", "DE.Views.DocumentHolder.txtEmpty": "(Пусто)", "DE.Views.DocumentHolder.txtFractionLinear": "Зміна до лінійної фракції", "DE.Views.DocumentHolder.txtFractionSkewed": "Зміна перекошеної фракції", @@ -936,6 +1557,7 @@ "DE.Views.DocumentHolder.txtInsertArgAfter": "Вставити аргумент після", "DE.Views.DocumentHolder.txtInsertArgBefore": "Вставити аргумент перед", "DE.Views.DocumentHolder.txtInsertBreak": "Вставити ручне переривання", + "DE.Views.DocumentHolder.txtInsertCaption": "Вставити назву", "DE.Views.DocumentHolder.txtInsertEqAfter": "Вставити рівняння після", "DE.Views.DocumentHolder.txtInsertEqBefore": "Вставити рівняння перед", "DE.Views.DocumentHolder.txtKeepTextOnly": "Зберігати тільки текст", @@ -944,13 +1566,16 @@ "DE.Views.DocumentHolder.txtLimitUnder": "Обмеження під текстом", "DE.Views.DocumentHolder.txtMatchBrackets": "Відповідність дужок до висоти аргументів", "DE.Views.DocumentHolder.txtMatrixAlign": "Вирівнювання матриці", - "DE.Views.DocumentHolder.txtOverbar": "Вставте текст", + "DE.Views.DocumentHolder.txtOverbar": "Риска над текстом", "DE.Views.DocumentHolder.txtOverwriteCells": "Перезаписати комірки", - "DE.Views.DocumentHolder.txtPressLink": "Натисніть CTRL та натисніть посилання", + "DE.Views.DocumentHolder.txtPasteSourceFormat": "Зберегти початкове форматування", + "DE.Views.DocumentHolder.txtPressLink": "Натисніть CTRL та клацніть по посиланню", + "DE.Views.DocumentHolder.txtPrintSelection": "Надрукувати виділене", "DE.Views.DocumentHolder.txtRemFractionBar": "Видалити фракційну стрічку", "DE.Views.DocumentHolder.txtRemLimit": "Вилучити обмеження", "DE.Views.DocumentHolder.txtRemoveAccentChar": "Вилучити знак наголосу", - "DE.Views.DocumentHolder.txtRemoveBar": "Вилучити панель", + "DE.Views.DocumentHolder.txtRemoveBar": "Видалити панель", + "DE.Views.DocumentHolder.txtRemoveWarning": "Ви хочете видалити цей підпис?
Це не можна скасувати.", "DE.Views.DocumentHolder.txtRemScripts": "Вилучити скрипти", "DE.Views.DocumentHolder.txtRemSubscript": "Вилучити нижній індекс", "DE.Views.DocumentHolder.txtRemSuperscript": "Вилучити верхній індекс", @@ -968,8 +1593,9 @@ "DE.Views.DocumentHolder.txtTight": "Тісно", "DE.Views.DocumentHolder.txtTop": "Верх", "DE.Views.DocumentHolder.txtTopAndBottom": "Верх і низ", - "DE.Views.DocumentHolder.txtUnderbar": "Вставте над текстом", + "DE.Views.DocumentHolder.txtUnderbar": "Риска під текстом", "DE.Views.DocumentHolder.txtUngroup": "Розпакувати", + "DE.Views.DocumentHolder.txtWarnUrl": "Перехід за цим посиланням може завдати шкоди вашому пристрою та даним.
Ви дійсно хочете продовжити?", "DE.Views.DocumentHolder.updateStyleText": "Оновити стиль %1", "DE.Views.DocumentHolder.vertAlignText": "Вертикальне вирівнювання", "DE.Views.DropcapSettingsAdvanced.strBorders": "Межі та заповнення", @@ -984,7 +1610,7 @@ "DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Розмір кордону", "DE.Views.DropcapSettingsAdvanced.textBottom": "Внизу", "DE.Views.DropcapSettingsAdvanced.textCenter": "Центр", - "DE.Views.DropcapSettingsAdvanced.textColumn": "Колона", + "DE.Views.DropcapSettingsAdvanced.textColumn": "Стовпчика", "DE.Views.DropcapSettingsAdvanced.textDistance": "Відстань від тексту", "DE.Views.DropcapSettingsAdvanced.textExact": "Точно", "DE.Views.DropcapSettingsAdvanced.textFlow": "Розтянути рамку", @@ -1015,14 +1641,19 @@ "DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Немає кордонів", "DE.Views.EditListItemDialog.textDisplayName": "Ім'я для показу", "DE.Views.EditListItemDialog.textNameError": "Ім'я для показу не може бути порожнім", - "DE.Views.FileMenu.btnBackCaption": "Перейти до документів", + "DE.Views.EditListItemDialog.textValue": "Значення", + "DE.Views.EditListItemDialog.textValueError": "Елемент з таким значенням вже існує.", + "DE.Views.FileMenu.btnBackCaption": "Відкрити розташування файлу", "DE.Views.FileMenu.btnCloseMenuCaption": "Закрити меню", "DE.Views.FileMenu.btnCreateNewCaption": "Додати", "DE.Views.FileMenu.btnDownloadCaption": "Звантажити як...", + "DE.Views.FileMenu.btnExitCaption": "Вийти", + "DE.Views.FileMenu.btnFileOpenCaption": "Відкрити...", "DE.Views.FileMenu.btnHelpCaption": "Допомога...", "DE.Views.FileMenu.btnHistoryCaption": "Історія версій", "DE.Views.FileMenu.btnInfoCaption": "Інформація про документ...", "DE.Views.FileMenu.btnPrintCaption": "Роздрукувати", + "DE.Views.FileMenu.btnProtectCaption": "Захистити", "DE.Views.FileMenu.btnRecentFilesCaption": "Відкрити останні ...", "DE.Views.FileMenu.btnRenameCaption": "Перейменувати...", "DE.Views.FileMenu.btnReturnCaption": "Назад до Документа", @@ -1033,6 +1664,8 @@ "DE.Views.FileMenu.btnSettingsCaption": "Розширені налаштування...", "DE.Views.FileMenu.btnToEditCaption": "Редагувати документ", "DE.Views.FileMenu.textDownload": "Звантажити", + "DE.Views.FileMenuPanels.CreateNew.txtBlank": "Пустий документ", + "DE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Створити новий", "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Застосувати", "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Додати автора", "DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Додати текст", @@ -1044,6 +1677,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Завантаження...", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Змінено", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Змінено", + "DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Власник", "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Сторінки", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Параграфи", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Місцезнаходження", @@ -1052,11 +1686,22 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Статистика", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Тема", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Символи", - "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Назва документу", + "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Назва", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Завантажено", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Слова", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Змінити права доступу", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Особи, які мають права", + "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Увага", + "DE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "За допомогою паролю", + "DE.Views.FileMenuPanels.ProtectDoc.strProtect": "Захистити документ", + "DE.Views.FileMenuPanels.ProtectDoc.strSignature": "За допомогою підпису", + "DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Редагувати документ", + "DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "При редагуванні з документа будуть видалені підписи.
Продовжити?", + "DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Цей документ захищений паролем", + "DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "Цей документ необхідно підписати.", + "DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "До документа додано дійсні підписи. Документ захищений від редагування.", + "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": "Увімкніть автозапуск", @@ -1066,13 +1711,18 @@ "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Вам потрібно буде прийняти зміни, перш ніж побачити їх", "DE.Views.FileMenuPanels.Settings.strFast": "Швидко", "DE.Views.FileMenuPanels.Settings.strFontRender": "Підказки шрифта", - "DE.Views.FileMenuPanels.Settings.strForcesave": "Завжди зберігати на сервері (в іншому випадку зберегти на сервері закритий документ)", + "DE.Views.FileMenuPanels.Settings.strForcesave": "Додавати версію до сховища після натискання кнопки Зберегти або Ctrl+S", "DE.Views.FileMenuPanels.Settings.strInputMode": "Увімкніть ієрогліфи", "DE.Views.FileMenuPanels.Settings.strLiveComment": "Показувати коментарі", + "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Налаштування макросів", + "DE.Views.FileMenuPanels.Settings.strPaste": "Вирізання, копіювання та вставка", + "DE.Views.FileMenuPanels.Settings.strPasteButton": "Показувати кнопку Налаштування ставки при вставці вмісту", "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Показувати вирішені зауваження", + "DE.Views.FileMenuPanels.Settings.strReviewHover": "Показ змін під час рецензування", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Зміни у співпраці в реальному часі", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Увімкніть параметр перевірки орфографії", "DE.Views.FileMenuPanels.Settings.strStrict": "Суворий", + "DE.Views.FileMenuPanels.Settings.strTheme": "Тема інтерфейсу", "DE.Views.FileMenuPanels.Settings.strUnit": "Одиниця виміру", "DE.Views.FileMenuPanels.Settings.strZoom": "Типовий масштаб", "DE.Views.FileMenuPanels.Settings.text10Minutes": "Кожні 10 хвилин", @@ -1084,12 +1734,16 @@ "DE.Views.FileMenuPanels.Settings.textAutoSave": "Автозбереження", "DE.Views.FileMenuPanels.Settings.textCompatible": "Сумісність", "DE.Views.FileMenuPanels.Settings.textDisabled": "Заблокований", - "DE.Views.FileMenuPanels.Settings.textForceSave": "Зберегти на сервері", + "DE.Views.FileMenuPanels.Settings.textForceSave": "Збереження проміжних версій", "DE.Views.FileMenuPanels.Settings.textMinute": "Кожну хвилину", "DE.Views.FileMenuPanels.Settings.textOldVersions": "Підтримка сумісності зі старими версіями MS Work при збереженні у форматі DOCX", "DE.Views.FileMenuPanels.Settings.txtAll": "Показати усе", + "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Параметри автозаміни...", "DE.Views.FileMenuPanels.Settings.txtCacheMode": "Типовий режим кешу", + "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "Показувати при кліці на виносках", + "DE.Views.FileMenuPanels.Settings.txtChangesTip": "Показувати при наведенні в підказках", "DE.Views.FileMenuPanels.Settings.txtCm": "Сантиметр", + "DE.Views.FileMenuPanels.Settings.txtDarkMode": "Увімкнути темний режим", "DE.Views.FileMenuPanels.Settings.txtFitPage": "За розміром сторінки", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "По ширині", "DE.Views.FileMenuPanels.Settings.txtInch": "Дюйм", @@ -1099,42 +1753,139 @@ "DE.Views.FileMenuPanels.Settings.txtMac": "як OS X", "DE.Views.FileMenuPanels.Settings.txtNative": "Рідний", "DE.Views.FileMenuPanels.Settings.txtNone": "Не переглядувати нічого", + "DE.Views.FileMenuPanels.Settings.txtProofing": "Правопис", "DE.Views.FileMenuPanels.Settings.txtPt": "Визначити", + "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Увімкнути все", + "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Увімкнути всі макроси без сповіщення", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Перевірка орфографії", + "DE.Views.FileMenuPanels.Settings.txtStopMacros": "Вимкнути все", + "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Вимкнути всі макроси без сповіщення", + "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Показати сповіщення", + "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Вимкнути всі макроси зі сповіщенням", "DE.Views.FileMenuPanels.Settings.txtWin": "як Windows", + "DE.Views.FormSettings.textAlways": "Завжди", + "DE.Views.FormSettings.textAspect": "Зберігати пропорції", + "DE.Views.FormSettings.textAutofit": "Автопідбір", + "DE.Views.FormSettings.textBackgroundColor": "Колір фону", + "DE.Views.FormSettings.textCheckbox": "Прапорець", + "DE.Views.FormSettings.textColor": "Колір меж", + "DE.Views.FormSettings.textComb": "Комбінувати символи", + "DE.Views.FormSettings.textCombobox": "Поле зі списком", + "DE.Views.FormSettings.textConnected": "Підключені поля", + "DE.Views.FormSettings.textDelete": "Видалити", + "DE.Views.FormSettings.textDisconnect": "Відключити", + "DE.Views.FormSettings.textDropDown": "Випадаючий список", + "DE.Views.FormSettings.textField": "Текстове поле", + "DE.Views.FormSettings.textFixed": "Поле фіксованого розміру", + "DE.Views.FormSettings.textFromFile": "З файлу", + "DE.Views.FormSettings.textFromStorage": "Зі сховища", + "DE.Views.FormSettings.textFromUrl": "За URL", + "DE.Views.FormSettings.textGroupKey": "Ключ групи", + "DE.Views.FormSettings.textImage": "Зображення", + "DE.Views.FormSettings.textKey": "Ключ", + "DE.Views.FormSettings.textLock": "Заблокувати", + "DE.Views.FormSettings.textMaxChars": "Максимальна кількість знаків", + "DE.Views.FormSettings.textMulti": "Багаторядкове поле", + "DE.Views.FormSettings.textNever": "Ніколи", + "DE.Views.FormSettings.textNoBorder": "Без меж", + "DE.Views.FormSettings.textPlaceholder": "Заповнювач", + "DE.Views.FormSettings.textRadiobox": "Перемикач", + "DE.Views.FormSettings.textRequired": "Обов'язково", + "DE.Views.FormSettings.textScale": "Коли масштабувати", + "DE.Views.FormSettings.textSelectImage": "Вибрати зображення", + "DE.Views.FormSettings.textTip": "Підказка", + "DE.Views.FormSettings.textTipAdd": "Додати нове значення", + "DE.Views.FormSettings.textTipDelete": "Видалити значення", + "DE.Views.FormSettings.textTipDown": "Перенести вниз", + "DE.Views.FormSettings.textTipUp": "Перенести вверх", + "DE.Views.FormSettings.textTooBig": "Зображення завелике", + "DE.Views.FormSettings.textTooSmall": "Зображення замаленьке", + "DE.Views.FormSettings.textUnlock": "Розблокувати", + "DE.Views.FormSettings.textValue": "Налаштування значень", + "DE.Views.FormSettings.textWidth": "Ширина клітинки", + "DE.Views.FormsTab.capBtnCheckBox": "Прапорець", + "DE.Views.FormsTab.capBtnComboBox": "Поле зі списком", + "DE.Views.FormsTab.capBtnDropDown": "Випадаючий список", + "DE.Views.FormsTab.capBtnImage": "Зображення", + "DE.Views.FormsTab.capBtnNext": "Наступне поле", + "DE.Views.FormsTab.capBtnPrev": "Попереднє поле", + "DE.Views.FormsTab.capBtnRadioBox": "Перемикач", + "DE.Views.FormsTab.capBtnSaveForm": "Зберегти як oform", + "DE.Views.FormsTab.capBtnSubmit": "Відправити", + "DE.Views.FormsTab.capBtnText": "Текстове поле", + "DE.Views.FormsTab.capBtnView": "Переглянути форму", + "DE.Views.FormsTab.textClear": "Очистити поля", + "DE.Views.FormsTab.textClearFields": "Очистити всі поля", + "DE.Views.FormsTab.textCreateForm": "Додайте поля і створіть документ для заповнення OFORM", + "DE.Views.FormsTab.textGotIt": "ОК", + "DE.Views.FormsTab.textHighlight": "Колір підсвітки", + "DE.Views.FormsTab.textNoHighlight": "Без виділення", + "DE.Views.FormsTab.textRequired": "Заповніть всі обов'язкові поля для відправлення форми.", + "DE.Views.FormsTab.textSubmited": "Форма успішно надіслана", + "DE.Views.FormsTab.tipCheckBox": "Вставити прапорець", + "DE.Views.FormsTab.tipComboBox": "Вставити поле зі списком", + "DE.Views.FormsTab.tipDropDown": "Вставити випадаючий список", + "DE.Views.FormsTab.tipImageField": "Вставити зображення", + "DE.Views.FormsTab.tipNextForm": "Перейти до наступного поля", + "DE.Views.FormsTab.tipPrevForm": "Перейти до попереднього поля", + "DE.Views.FormsTab.tipRadioBox": "Вставити перемикач", + "DE.Views.FormsTab.tipSaveForm": "Зберегти файл як заповнюваний документ OFORM", + "DE.Views.FormsTab.tipSubmit": "Відправити форму", + "DE.Views.FormsTab.tipTextField": "Вставити текстове поле", + "DE.Views.FormsTab.tipViewForm": "Переглянути форму", + "DE.Views.FormsTab.txtUntitled": "Без ім'я", "DE.Views.HeaderFooterSettings.textBottomCenter": "Нижній центр", "DE.Views.HeaderFooterSettings.textBottomLeft": "Внизу зліва", + "DE.Views.HeaderFooterSettings.textBottomPage": "Внизу сторінки", "DE.Views.HeaderFooterSettings.textBottomRight": "Внизу справа", "DE.Views.HeaderFooterSettings.textDiffFirst": "Різна перша сторінка", "DE.Views.HeaderFooterSettings.textDiffOdd": "Різні непарні та рівноцінні сторінки", + "DE.Views.HeaderFooterSettings.textFrom": "Почати з", "DE.Views.HeaderFooterSettings.textHeaderFromBottom": "Нижній колонтитул знизу", "DE.Views.HeaderFooterSettings.textHeaderFromTop": "Заголовок згори", + "DE.Views.HeaderFooterSettings.textInsertCurrent": "Вставити в поточну позицію", "DE.Views.HeaderFooterSettings.textOptions": "Опції", "DE.Views.HeaderFooterSettings.textPageNum": "Вставити номер сторінки", + "DE.Views.HeaderFooterSettings.textPageNumbering": "Нумерація сторінок", "DE.Views.HeaderFooterSettings.textPosition": "Посада", + "DE.Views.HeaderFooterSettings.textPrev": "Продовжити", "DE.Views.HeaderFooterSettings.textSameAs": "З'єднатися з попереднім", "DE.Views.HeaderFooterSettings.textTopCenter": "Центр зверху", "DE.Views.HeaderFooterSettings.textTopLeft": "Верх зліва", + "DE.Views.HeaderFooterSettings.textTopPage": "Зверху сторінки", "DE.Views.HeaderFooterSettings.textTopRight": "Верх справа", "DE.Views.HyperlinkSettingsDialog.textDefault": "Виберіть текстовий фрагмент", "DE.Views.HyperlinkSettingsDialog.textDisplay": "Показ", + "DE.Views.HyperlinkSettingsDialog.textExternal": "Зовнішнє посилання", + "DE.Views.HyperlinkSettingsDialog.textInternal": "Місце в документі", "DE.Views.HyperlinkSettingsDialog.textTitle": "Налаштування гіперпосилання", "DE.Views.HyperlinkSettingsDialog.textTooltip": "Текст ScreenTip", "DE.Views.HyperlinkSettingsDialog.textUrl": "З'єднатися з", + "DE.Views.HyperlinkSettingsDialog.txtBeginning": "Початок документу", "DE.Views.HyperlinkSettingsDialog.txtBookmarks": "Закладки", "DE.Views.HyperlinkSettingsDialog.txtEmpty": "Це поле є обов'язковим", + "DE.Views.HyperlinkSettingsDialog.txtHeadings": "Заголовки", "DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com\"", + "DE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Це поле може містити не більше 2083 символів", "DE.Views.ImageSettings.textAdvanced": "Показати додаткові налаштування", "DE.Views.ImageSettings.textCrop": "Обрізати", + "DE.Views.ImageSettings.textCropFill": "Заливка", "DE.Views.ImageSettings.textCropFit": "Вмістити", "DE.Views.ImageSettings.textEdit": "Редагувати", "DE.Views.ImageSettings.textEditObject": "Редагувати об'єкт", "DE.Views.ImageSettings.textFitMargins": "За розміром меж", + "DE.Views.ImageSettings.textFlip": "Перевернути", "DE.Views.ImageSettings.textFromFile": "З файлу", + "DE.Views.ImageSettings.textFromStorage": "Зі сховища", "DE.Views.ImageSettings.textFromUrl": "З URL", "DE.Views.ImageSettings.textHeight": "Висота", + "DE.Views.ImageSettings.textHint270": "Повернути на 90° проти годинникової стрілки", + "DE.Views.ImageSettings.textHint90": "Повернути на 90° за годинниковою стрілкою", + "DE.Views.ImageSettings.textHintFlipH": "Перевернути горизонтально", + "DE.Views.ImageSettings.textHintFlipV": "Перевернути вертикально", "DE.Views.ImageSettings.textInsert": "Замінити зображення", - "DE.Views.ImageSettings.textOriginalSize": "За замовчуванням", + "DE.Views.ImageSettings.textOriginalSize": "Реальний розмір", + "DE.Views.ImageSettings.textRotate90": "Повернути на 90°", "DE.Views.ImageSettings.textRotation": "Поворот", "DE.Views.ImageSettings.textSize": "Розмір", "DE.Views.ImageSettings.textWidth": "Ширина", @@ -1151,7 +1902,7 @@ "DE.Views.ImageSettingsAdvanced.textAlignment": "Вирівнювання", "DE.Views.ImageSettingsAdvanced.textAlt": "Альтернативний текст", "DE.Views.ImageSettingsAdvanced.textAltDescription": "Опис", - "DE.Views.ImageSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація знаходиться в зображенні, автошопі, діаграмі або таблиці.", + "DE.Views.ImageSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація міститься в зображенні, автофігурі, діаграмі або таблиці.", "DE.Views.ImageSettingsAdvanced.textAltTitle": "Назва", "DE.Views.ImageSettingsAdvanced.textAngle": "Нахил", "DE.Views.ImageSettingsAdvanced.textArrows": "Стрілки", @@ -1167,7 +1918,7 @@ "DE.Views.ImageSettingsAdvanced.textCapType": "Тип великої літери", "DE.Views.ImageSettingsAdvanced.textCenter": "Центр", "DE.Views.ImageSettingsAdvanced.textCharacter": "Символ", - "DE.Views.ImageSettingsAdvanced.textColumn": "Колона", + "DE.Views.ImageSettingsAdvanced.textColumn": "Стовпчика", "DE.Views.ImageSettingsAdvanced.textDistance": "Відстань від тексту", "DE.Views.ImageSettingsAdvanced.textEndSize": "Кінець розміру", "DE.Views.ImageSettingsAdvanced.textEndStyle": "Кінець стилю", @@ -1186,7 +1937,7 @@ "DE.Views.ImageSettingsAdvanced.textMiter": "Мітер", "DE.Views.ImageSettingsAdvanced.textMove": "Перемістити об'єкт з текстом", "DE.Views.ImageSettingsAdvanced.textOptions": "Опції", - "DE.Views.ImageSettingsAdvanced.textOriginalSize": "За замовчуванням", + "DE.Views.ImageSettingsAdvanced.textOriginalSize": "Реальний розмір", "DE.Views.ImageSettingsAdvanced.textOverlap": "Дозволити перекриття", "DE.Views.ImageSettingsAdvanced.textPage": "Сторінка", "DE.Views.ImageSettingsAdvanced.textParagraph": "Параграф", @@ -1203,6 +1954,7 @@ "DE.Views.ImageSettingsAdvanced.textShape": "Параметри форми", "DE.Views.ImageSettingsAdvanced.textSize": "Розмір", "DE.Views.ImageSettingsAdvanced.textSquare": "Площа", + "DE.Views.ImageSettingsAdvanced.textTextBox": "Текстове поле", "DE.Views.ImageSettingsAdvanced.textTitle": "Зображення - розширені налаштування", "DE.Views.ImageSettingsAdvanced.textTitleChart": "Діаграма - Розширені налаштування", "DE.Views.ImageSettingsAdvanced.textTitleShape": "Форма - розширені налаштування", @@ -1229,24 +1981,74 @@ "DE.Views.LeftMenu.tipSupport": "Відгуки і підтримка", "DE.Views.LeftMenu.tipTitles": "Назви", "DE.Views.LeftMenu.txtDeveloper": "Режим розробника", + "DE.Views.LeftMenu.txtLimit": "Обмежений доступ", + "DE.Views.LeftMenu.txtTrial": "ПРОБНИЙ РЕЖИМ", + "DE.Views.LeftMenu.txtTrialDev": "Пробний режим розробника", + "DE.Views.LineNumbersDialog.textAddLineNumbering": "Додати нумерацію рядків", + "DE.Views.LineNumbersDialog.textApplyTo": "Застосовувати зміни до", + "DE.Views.LineNumbersDialog.textContinuous": "Безперервний", + "DE.Views.LineNumbersDialog.textCountBy": "Крок", + "DE.Views.LineNumbersDialog.textDocument": "До всього документа", + "DE.Views.LineNumbersDialog.textForward": "До кінця документу", + "DE.Views.LineNumbersDialog.textFromText": "З тексту", + "DE.Views.LineNumbersDialog.textNumbering": "Нумерація", + "DE.Views.LineNumbersDialog.textRestartEachPage": "На кожній сторінці", + "DE.Views.LineNumbersDialog.textRestartEachSection": "В кожному розділі", + "DE.Views.LineNumbersDialog.textSection": "До поточного розділу", + "DE.Views.LineNumbersDialog.textStartAt": "Почати з", + "DE.Views.LineNumbersDialog.textTitle": "Нумерація рядків", + "DE.Views.LineNumbersDialog.txtAutoText": "Авто", "DE.Views.Links.capBtnBookmarks": "Закладка", + "DE.Views.Links.capBtnCaption": "Назва", "DE.Views.Links.capBtnContentsUpdate": "Оновити", + "DE.Views.Links.capBtnCrossRef": "Перехресне посилання", "DE.Views.Links.capBtnInsContents": "Зміст", "DE.Views.Links.capBtnInsFootnote": "Виноска", "DE.Views.Links.capBtnInsLink": "Гіперпосилання", + "DE.Views.Links.capBtnTOF": "Список ілюстрацій", "DE.Views.Links.confirmDeleteFootnotes": "Дійсно вилучити усі виноски?", - "DE.Views.Links.mniDelFootnote": "Вилучити усі виноски", + "DE.Views.Links.confirmReplaceTOF": "Замінити виділений список ілюстрацій?", + "DE.Views.Links.mniConvertNote": "Перетворити всі виноски", + "DE.Views.Links.mniDelFootnote": "Видалити всі виноски", + "DE.Views.Links.mniInsEndnote": "Вставити кінцеву зноску", "DE.Views.Links.mniInsFootnote": "Вставити виноску", + "DE.Views.Links.mniNoteSettings": "Налаштування зносок", "DE.Views.Links.textContentsRemove": "Вилучити зміст", + "DE.Views.Links.textContentsSettings": "Налаштування", + "DE.Views.Links.textConvertToEndnotes": "Перетворити всі звичайні зноски у кінцеві", + "DE.Views.Links.textConvertToFootnotes": "Перетворити всі кінцеві зноски у звичайні", + "DE.Views.Links.textGotoEndnote": "Перейти до кінцевих зносок", "DE.Views.Links.textGotoFootnote": "Перейти до виносок", + "DE.Views.Links.textSwapNotes": "Змінити зноски", "DE.Views.Links.textUpdateAll": "Оновити всю таблицю", "DE.Views.Links.textUpdatePages": "Оновити лише номери сторінок", "DE.Views.Links.tipBookmarks": "Додати закладку", + "DE.Views.Links.tipCaption": "Вставити назву", "DE.Views.Links.tipContents": "Вставити зміст", "DE.Views.Links.tipContentsUpdate": "Оновити зміст", + "DE.Views.Links.tipCrossRef": "Вставити перехресне посилання", "DE.Views.Links.tipInsertHyperlink": "Додати гіперпосилання", "DE.Views.Links.tipNotes": "Вставити або відредагувати виноски", + "DE.Views.Links.tipTableFigures": "Вставити список ілюстрацій", + "DE.Views.Links.tipTableFiguresUpdate": "Оновити список ілюстрацій", + "DE.Views.Links.titleUpdateTOF": "Оновити список ілюстрацій", + "DE.Views.ListSettingsDialog.textAuto": "Автоматично", + "DE.Views.ListSettingsDialog.textCenter": "По центру", + "DE.Views.ListSettingsDialog.textLeft": "По лівому краю", + "DE.Views.ListSettingsDialog.textLevel": "Рівень", + "DE.Views.ListSettingsDialog.textPreview": "Перегляд", + "DE.Views.ListSettingsDialog.textRight": "По правому краю", + "DE.Views.ListSettingsDialog.txtAlign": "Вирівнювання", + "DE.Views.ListSettingsDialog.txtBullet": "Маркер", "DE.Views.ListSettingsDialog.txtColor": "Колір", + "DE.Views.ListSettingsDialog.txtFont": "Шрифт і символ", + "DE.Views.ListSettingsDialog.txtLikeText": "Як текст", + "DE.Views.ListSettingsDialog.txtNewBullet": "Новий маркер", + "DE.Views.ListSettingsDialog.txtNone": "Немає", + "DE.Views.ListSettingsDialog.txtSize": "Розмір", + "DE.Views.ListSettingsDialog.txtSymbol": "Символ", + "DE.Views.ListSettingsDialog.txtTitle": "Налаштування списку", + "DE.Views.ListSettingsDialog.txtType": "Тип", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", "DE.Views.MailMergeEmailDlg.okButtonText": "Надіслати", "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Тема", @@ -1294,14 +2096,26 @@ "DE.Views.MailMergeSettings.txtPrev": "До попередньої зміни", "DE.Views.MailMergeSettings.txtUntitled": "Без назви", "DE.Views.MailMergeSettings.warnProcessMailMerge": "Початок злиття не вдався", + "DE.Views.Navigation.txtCollapse": "Згорнути все", + "DE.Views.Navigation.txtDemote": "Понизити рівень", "DE.Views.Navigation.txtEmpty": "У документі відсутні заголовки.
Застосуйте стиль заголовків до тексту, щоби він з'явився у змісті.", + "DE.Views.Navigation.txtEmptyItem": "Пустий заголовок", + "DE.Views.Navigation.txtExpand": "Розгорнути все", + "DE.Views.Navigation.txtExpandToLevel": "Розгорнути до рівня", + "DE.Views.Navigation.txtHeadingAfter": "Новий заголовок після", + "DE.Views.Navigation.txtHeadingBefore": "Новий заголовок перед", + "DE.Views.Navigation.txtNewHeading": "Новий підзаголовок", + "DE.Views.Navigation.txtPromote": "Підвищити рівень", + "DE.Views.Navigation.txtSelect": "Виділити вміст", "DE.Views.NoteSettingsDialog.textApply": "Застосувати", "DE.Views.NoteSettingsDialog.textApplyTo": "Застосувати зміни до", "DE.Views.NoteSettingsDialog.textContinue": "Безперервний", "DE.Views.NoteSettingsDialog.textCustom": "Користувальницький знак", + "DE.Views.NoteSettingsDialog.textDocEnd": "В кінці документу", "DE.Views.NoteSettingsDialog.textDocument": "Весь документ", "DE.Views.NoteSettingsDialog.textEachPage": "Перезапустити кожну сторінку", "DE.Views.NoteSettingsDialog.textEachSection": "Перезапустити кожну секцію", + "DE.Views.NoteSettingsDialog.textEndnote": "Кінцева зноска", "DE.Views.NoteSettingsDialog.textFootnote": "Виноска", "DE.Views.NoteSettingsDialog.textFormat": "Формат", "DE.Views.NoteSettingsDialog.textInsert": "Вставити", @@ -1309,21 +2123,42 @@ "DE.Views.NoteSettingsDialog.textNumbering": "Нумерація", "DE.Views.NoteSettingsDialog.textNumFormat": "Номер формату", "DE.Views.NoteSettingsDialog.textPageBottom": "Внизу сторінки", + "DE.Views.NoteSettingsDialog.textSectEnd": "В кінці розділу", "DE.Views.NoteSettingsDialog.textSection": "Поточний розділ", "DE.Views.NoteSettingsDialog.textStart": "Розпочати з", "DE.Views.NoteSettingsDialog.textTextBottom": "Нижче тексту", "DE.Views.NoteSettingsDialog.textTitle": "Налаштування приміток", + "DE.Views.NotesRemoveDialog.textEnd": "Видалити всі кінцеві зноски", + "DE.Views.NotesRemoveDialog.textFoot": "Видалити всі виноски", + "DE.Views.NotesRemoveDialog.textTitle": "Видалити виноски", "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Застереження", "DE.Views.PageMarginsDialog.textBottom": "Внизу", + "DE.Views.PageMarginsDialog.textGutter": "Палітурка", + "DE.Views.PageMarginsDialog.textGutterPosition": "Позиція палітурки", + "DE.Views.PageMarginsDialog.textInside": "Внутрішнє", + "DE.Views.PageMarginsDialog.textLandscape": "Альбомна", "DE.Views.PageMarginsDialog.textLeft": "Лівий", + "DE.Views.PageMarginsDialog.textMirrorMargins": "Дзеркальні поля", + "DE.Views.PageMarginsDialog.textMultiplePages": "Декілька сторінок", + "DE.Views.PageMarginsDialog.textNormal": "Звичайні", + "DE.Views.PageMarginsDialog.textOrientation": "Орієнтація", + "DE.Views.PageMarginsDialog.textOutside": "Зовнішнє", + "DE.Views.PageMarginsDialog.textPortrait": "Книжна", + "DE.Views.PageMarginsDialog.textPreview": "Перегляд", "DE.Views.PageMarginsDialog.textRight": "Право", "DE.Views.PageMarginsDialog.textTitle": "Поля", "DE.Views.PageMarginsDialog.textTop": "Верх", "DE.Views.PageMarginsDialog.txtMarginsH": "Верхні та нижні поля занадто високі для заданої висоти сторінки", "DE.Views.PageMarginsDialog.txtMarginsW": "Ліве та праве поля занадто широкі для заданої ширини сторінки", "DE.Views.PageSizeDialog.textHeight": "Висота", + "DE.Views.PageSizeDialog.textPreset": "Попереднє встановлення", "DE.Views.PageSizeDialog.textTitle": "Розмір сторінки", "DE.Views.PageSizeDialog.textWidth": "Ширина", + "DE.Views.PageSizeDialog.txtCustom": "Особливий", + "DE.Views.ParagraphSettings.strIndent": "Відступи", + "DE.Views.ParagraphSettings.strIndentsLeftText": "Ліворуч", + "DE.Views.ParagraphSettings.strIndentsRightText": "Праворуч", + "DE.Views.ParagraphSettings.strIndentsSpecial": "Перший рядок", "DE.Views.ParagraphSettings.strLineHeight": "Лінія інтервалу", "DE.Views.ParagraphSettings.strParagraphSpacing": "Параметр інтервалу", "DE.Views.ParagraphSettings.strSomeParagraphSpace": "Не додавайте інтервал між абзацами того ж стилю", @@ -1335,38 +2170,61 @@ "DE.Views.ParagraphSettings.textAuto": "Багаторазовий", "DE.Views.ParagraphSettings.textBackColor": "Колір тла", "DE.Views.ParagraphSettings.textExact": "Точно", + "DE.Views.ParagraphSettings.textFirstLine": "Відступ", + "DE.Views.ParagraphSettings.textHanging": "Виступ", + "DE.Views.ParagraphSettings.textNoneSpecial": "(немає)", "DE.Views.ParagraphSettings.txtAutoText": "Авто", "DE.Views.ParagraphSettingsAdvanced.noTabs": "Вказані вкладки з'являться в цьому полі", "DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Усі великі", "DE.Views.ParagraphSettingsAdvanced.strBorders": "Межі та заповнення", "DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Розрив сторінки перед", "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Подвійне перекреслення", + "DE.Views.ParagraphSettingsAdvanced.strIndent": "Відступи", "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Лівий", + "DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Міжрядковий інтервал", + "DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "Рівень структури", "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Право", "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Після", "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Перед", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Перший рядок", "DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Тримайте лінії разом", "DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Зберегати з текстом", "DE.Views.ParagraphSettingsAdvanced.strMargins": "Набивання", "DE.Views.ParagraphSettingsAdvanced.strOrphan": "Сирітський контроль", "DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Шрифт", - "DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Відступи та розміщення", + "DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Відступи та інтервали", + "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Позиція на сторінці", "DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Розміщення", "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Зменшені великі", + "DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "Не додавати інтервал між абзацами того ж стилю", + "DE.Views.ParagraphSettingsAdvanced.strSpacing": "Інтервал між абзацами", "DE.Views.ParagraphSettingsAdvanced.strStrike": "Перекреслений", "DE.Views.ParagraphSettingsAdvanced.strSubscript": "Підрядковий", "DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Надрядковий", + "DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "Заборонити нумерацію рядків", "DE.Views.ParagraphSettingsAdvanced.strTabs": "Вкладка", "DE.Views.ParagraphSettingsAdvanced.textAlign": "Вирівнювання", + "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Мінімально", + "DE.Views.ParagraphSettingsAdvanced.textAuto": "Множник", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Колір тла", + "DE.Views.ParagraphSettingsAdvanced.textBodyText": "Основний текст", "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Колір меж", "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Клацніть по діаграмі або використовуйте кнопки, щоб вибрати кордони та застосувати до них вибраний стиль", "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Розмір кордону", "DE.Views.ParagraphSettingsAdvanced.textBottom": "Внизу", + "DE.Views.ParagraphSettingsAdvanced.textCentered": "По центру", "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Пробіл між символами", "DE.Views.ParagraphSettingsAdvanced.textDefault": "Типова вкладка", "DE.Views.ParagraphSettingsAdvanced.textEffects": "Ефекти", + "DE.Views.ParagraphSettingsAdvanced.textExact": "Точно", + "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Відступ", + "DE.Views.ParagraphSettingsAdvanced.textHanging": "Виступ", + "DE.Views.ParagraphSettingsAdvanced.textJustified": "По ширині", + "DE.Views.ParagraphSettingsAdvanced.textLeader": "Заповнювач", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Лівий", + "DE.Views.ParagraphSettingsAdvanced.textLevel": "Рівень", + "DE.Views.ParagraphSettingsAdvanced.textNone": "Немає", + "DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(немає)", "DE.Views.ParagraphSettingsAdvanced.textPosition": "Позиція", "DE.Views.ParagraphSettingsAdvanced.textRemove": "Вилучити", "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Вилучити все", @@ -1390,11 +2248,13 @@ "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Авто", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Немає кордонів", "DE.Views.RightMenu.txtChartSettings": "Налаштування діаграми", + "DE.Views.RightMenu.txtFormSettings": "Параметри форми", "DE.Views.RightMenu.txtHeaderFooterSettings": "Параметри заголовка та нижнього колонтитула", "DE.Views.RightMenu.txtImageSettings": "Налаштування зображення", "DE.Views.RightMenu.txtMailMergeSettings": "Параметри надсилання ел.поштою", "DE.Views.RightMenu.txtParagraphSettings": "Налаштування параграфа", "DE.Views.RightMenu.txtShapeSettings": "Параметри форми", + "DE.Views.RightMenu.txtSignatureSettings": "Налаштування підпису", "DE.Views.RightMenu.txtTableSettings": "Налаштування таблиці", "DE.Views.RightMenu.txtTextArtSettings": "Налаштування текст Art", "DE.Views.ShapeSettings.strBackground": "Колір тла", @@ -1403,31 +2263,44 @@ "DE.Views.ShapeSettings.strFill": "Заповнити", "DE.Views.ShapeSettings.strForeground": "Колір переднього плану", "DE.Views.ShapeSettings.strPattern": "Візерунок", + "DE.Views.ShapeSettings.strShadow": "Зображати тінь", "DE.Views.ShapeSettings.strSize": "Розмір", - "DE.Views.ShapeSettings.strStroke": "Штрих", + "DE.Views.ShapeSettings.strStroke": "Контур", "DE.Views.ShapeSettings.strTransparency": "Непрозорість", "DE.Views.ShapeSettings.strType": "Тип", "DE.Views.ShapeSettings.textAdvanced": "Показати додаткові налаштування", + "DE.Views.ShapeSettings.textAngle": "Кут", "DE.Views.ShapeSettings.textBorderSizeErr": "Введене значення невірно.
Будь ласка, введіть значення від 0 pt до 1584 pt.", "DE.Views.ShapeSettings.textColor": "Колір заповнення", "DE.Views.ShapeSettings.textDirection": "Напрямок", "DE.Views.ShapeSettings.textEmptyPattern": "Немає шаблону", + "DE.Views.ShapeSettings.textFlip": "Перевернути", "DE.Views.ShapeSettings.textFromFile": "З файлу", + "DE.Views.ShapeSettings.textFromStorage": "Зі сховища", "DE.Views.ShapeSettings.textFromUrl": "З URL", "DE.Views.ShapeSettings.textGradient": "Градієнт", "DE.Views.ShapeSettings.textGradientFill": "Заповнити градієнт", + "DE.Views.ShapeSettings.textHint270": "Повернути на 90° проти годинникової стрілки", + "DE.Views.ShapeSettings.textHint90": "Повернути на 90° за годинниковою стрілкою", + "DE.Views.ShapeSettings.textHintFlipH": "Перевернути горизонтально", + "DE.Views.ShapeSettings.textHintFlipV": "Перевернути вертикально", "DE.Views.ShapeSettings.textImageTexture": "Зображення або текстура", "DE.Views.ShapeSettings.textLinear": "Лінійний", "DE.Views.ShapeSettings.textNoFill": "Немає заповнення", "DE.Views.ShapeSettings.textPatternFill": "Візерунок", + "DE.Views.ShapeSettings.textPosition": "Положення", "DE.Views.ShapeSettings.textRadial": "Радіальний", + "DE.Views.ShapeSettings.textRotate90": "Повернути на 90°", "DE.Views.ShapeSettings.textRotation": "Поворот", + "DE.Views.ShapeSettings.textSelectImage": "Вибрати зображення", "DE.Views.ShapeSettings.textSelectTexture": "Обрати", "DE.Views.ShapeSettings.textStretch": "Розтягнути", "DE.Views.ShapeSettings.textStyle": "Стиль", "DE.Views.ShapeSettings.textTexture": "З текстури", "DE.Views.ShapeSettings.textTile": "Забеспечити таємність", "DE.Views.ShapeSettings.textWrap": "Стиль упаковки", + "DE.Views.ShapeSettings.tipAddGradientPoint": "Додати точку градієнта", + "DE.Views.ShapeSettings.tipRemoveGradientPoint": "Видалити точку градієнта", "DE.Views.ShapeSettings.txtBehind": "Позаду", "DE.Views.ShapeSettings.txtBrownPaper": "Коричневий папір", "DE.Views.ShapeSettings.txtCanvas": "Полотно", @@ -1447,55 +2320,110 @@ "DE.Views.ShapeSettings.txtTight": "Тісно", "DE.Views.ShapeSettings.txtTopAndBottom": "Верх і низ", "DE.Views.ShapeSettings.txtWood": "Дерево", + "DE.Views.SignatureSettings.notcriticalErrorTitle": "Увага", "DE.Views.SignatureSettings.strDelete": "Вилучити підпис", + "DE.Views.SignatureSettings.strDetails": "Склад підпису", + "DE.Views.SignatureSettings.strInvalid": "Недійсні підписи", + "DE.Views.SignatureSettings.strRequested": "Запрошені підписи", + "DE.Views.SignatureSettings.strSetup": "Налаштування підпису", + "DE.Views.SignatureSettings.strSign": "Підписати", + "DE.Views.SignatureSettings.strSignature": "Підпис", + "DE.Views.SignatureSettings.strSigner": "Підписант", + "DE.Views.SignatureSettings.strValid": "Дійсні підписи", + "DE.Views.SignatureSettings.txtContinueEditing": "Все одно редагувати", + "DE.Views.SignatureSettings.txtEditWarning": "При редагуванні з документа будуть видалені підписи.
Продовжити?", + "DE.Views.SignatureSettings.txtRemoveWarning": "Ви хочете видалити цей підпис?
Цю дію не можна скасувати.", + "DE.Views.SignatureSettings.txtRequestedSignatures": "Цей документ необхідно підписати.", + "DE.Views.SignatureSettings.txtSigned": "До документа додано дійсні підписи. Документ захищений від редагування.", + "DE.Views.SignatureSettings.txtSignedInvalid": "Деякі з цифрових підписів у документі є недійсними або їх не можна перевірити. Документ захищений від редагування.", "DE.Views.Statusbar.goToPageText": "Перейти до сторінки", "DE.Views.Statusbar.pageIndexText": "Сторінка {0} з {1}", "DE.Views.Statusbar.tipFitPage": "За розміром сторінки", "DE.Views.Statusbar.tipFitWidth": "По ширині", "DE.Views.Statusbar.tipSetLang": "вибрати мову тексту", "DE.Views.Statusbar.tipZoomFactor": "Масштаб", - "DE.Views.Statusbar.tipZoomIn": "Збільшити зображення", - "DE.Views.Statusbar.tipZoomOut": "Зменшити зображення", + "DE.Views.Statusbar.tipZoomIn": "Збільшити", + "DE.Views.Statusbar.tipZoomOut": "Зменшити", "DE.Views.Statusbar.txtPageNumInvalid": "Номер сторінки недійсний", "DE.Views.StyleTitleDialog.textHeader": "Створити новий стиль", "DE.Views.StyleTitleDialog.textNextStyle": "Наступний стиль абзацу", "DE.Views.StyleTitleDialog.textTitle": "Назва", "DE.Views.StyleTitleDialog.txtEmpty": "Це поле є обов'язковим", "DE.Views.StyleTitleDialog.txtNotEmpty": "Поля не повинні бути пустими", + "DE.Views.StyleTitleDialog.txtSameAs": "Такий самий, як створюваний стиль", + "DE.Views.TableFormulaDialog.textBookmark": "Вставити закладку", + "DE.Views.TableFormulaDialog.textFormat": "Формат числа", + "DE.Views.TableFormulaDialog.textFormula": "Формула", + "DE.Views.TableFormulaDialog.textInsertFunction": "Вставити функцію", + "DE.Views.TableFormulaDialog.textTitle": "Налаштування форми", + "DE.Views.TableOfContentsSettings.strAlign": "Номери сторінок по правому краю", + "DE.Views.TableOfContentsSettings.strFullCaption": "Повна назва", "DE.Views.TableOfContentsSettings.strLinks": "Форматувати зміст за допомогою посилань", + "DE.Views.TableOfContentsSettings.strLinksOF": "Форматувати список ілюстрацій як посилання", + "DE.Views.TableOfContentsSettings.strShowPages": "Показувати номери сторінок", "DE.Views.TableOfContentsSettings.textBuildTable": "Побудувати зміст з", + "DE.Views.TableOfContentsSettings.textBuildTableOF": "Зібрати список ілюстрацій, використовуючи:", + "DE.Views.TableOfContentsSettings.textEquation": "Рівняння", + "DE.Views.TableOfContentsSettings.textFigure": "Малюнок", + "DE.Views.TableOfContentsSettings.textLeader": "Заповнювач", + "DE.Views.TableOfContentsSettings.textLevel": "Рівень", + "DE.Views.TableOfContentsSettings.textLevels": "Рівні", + "DE.Views.TableOfContentsSettings.textNone": "Немає", + "DE.Views.TableOfContentsSettings.textRadioCaption": "Назва", + "DE.Views.TableOfContentsSettings.textRadioLevels": "Рівні структури", + "DE.Views.TableOfContentsSettings.textRadioStyle": "Стиль", + "DE.Views.TableOfContentsSettings.textRadioStyles": "Виділені стилі", + "DE.Views.TableOfContentsSettings.textStyle": "Стиль", + "DE.Views.TableOfContentsSettings.textStyles": "Стилі", + "DE.Views.TableOfContentsSettings.textTable": "Таблиця", "DE.Views.TableOfContentsSettings.textTitle": "Зміст", + "DE.Views.TableOfContentsSettings.textTitleTOF": "Список ілюстрацій", + "DE.Views.TableOfContentsSettings.txtCentered": "По центру", + "DE.Views.TableOfContentsSettings.txtClassic": "Класичний", "DE.Views.TableOfContentsSettings.txtCurrent": "Поточний", - "DE.Views.TableSettings.deleteColumnText": "Вилучити стовпчик", + "DE.Views.TableOfContentsSettings.txtDistinctive": "Вишуканий", + "DE.Views.TableOfContentsSettings.txtFormal": "Офіційний", + "DE.Views.TableOfContentsSettings.txtModern": "Сучасний", + "DE.Views.TableOfContentsSettings.txtOnline": "Онлайн", + "DE.Views.TableOfContentsSettings.txtSimple": "Простий", + "DE.Views.TableOfContentsSettings.txtStandard": "Стандартний", + "DE.Views.TableSettings.deleteColumnText": "Видалити стовпчик", "DE.Views.TableSettings.deleteRowText": "Вилучити рядок", "DE.Views.TableSettings.deleteTableText": "Видалити таблицю", - "DE.Views.TableSettings.insertColumnLeftText": "Вставити стопчик зліва", - "DE.Views.TableSettings.insertColumnRightText": "Вставити стопчик справа", + "DE.Views.TableSettings.insertColumnLeftText": "Вставити стовпчик зліва", + "DE.Views.TableSettings.insertColumnRightText": "Вставити стовпчик справа", "DE.Views.TableSettings.insertRowAboveText": "Вставити рядок вище", "DE.Views.TableSettings.insertRowBelowText": "Вставити рядок нижче", "DE.Views.TableSettings.mergeCellsText": "Об'єднати комірки", "DE.Views.TableSettings.selectCellText": "Виберіть комірку", - "DE.Views.TableSettings.selectColumnText": "Виберіть колонку", + "DE.Views.TableSettings.selectColumnText": "Виберіть стовпчик", "DE.Views.TableSettings.selectRowText": "Виберіть рядок", "DE.Views.TableSettings.selectTableText": "Виберіть таблицю", "DE.Views.TableSettings.splitCellsText": "Розділити комірки...", "DE.Views.TableSettings.splitCellTitleText": "Розділити комірки", "DE.Views.TableSettings.strRepeatRow": "Повторити як рядок заголовка у верхній частині кожної сторінки", + "DE.Views.TableSettings.textAddFormula": "Додати формулу", "DE.Views.TableSettings.textAdvanced": "Показати додаткові налаштування", "DE.Views.TableSettings.textBackColor": "Колір тла", "DE.Views.TableSettings.textBanded": "У смужку", "DE.Views.TableSettings.textBorderColor": "Колір", "DE.Views.TableSettings.textBorders": "Стиль меж", - "DE.Views.TableSettings.textColumns": "Колонки", - "DE.Views.TableSettings.textEdit": "Рядки і колони", + "DE.Views.TableSettings.textCellSize": "Розміри рядків і стовпчиків", + "DE.Views.TableSettings.textColumns": "Стовпчики", + "DE.Views.TableSettings.textConvert": "Перетворити таблицю в текст", + "DE.Views.TableSettings.textDistributeCols": "Вирівняти ширину стовпчиків", + "DE.Views.TableSettings.textDistributeRows": "Вирівняти висоту рядків", + "DE.Views.TableSettings.textEdit": "Рядки і стовпчики", "DE.Views.TableSettings.textEmptyTemplate": "Немає шаблонів", "DE.Views.TableSettings.textFirst": "перший", "DE.Views.TableSettings.textHeader": "Заголовок", + "DE.Views.TableSettings.textHeight": "Висота", "DE.Views.TableSettings.textLast": "Останній", "DE.Views.TableSettings.textRows": "Рядки", "DE.Views.TableSettings.textSelectBorders": "Виберіть кордони, які ви хочете змінити, застосувавши обраний вище стиль", "DE.Views.TableSettings.textTemplate": "Виберіть з шаблону", "DE.Views.TableSettings.textTotal": "Загалом", + "DE.Views.TableSettings.textWidth": "Ширина", "DE.Views.TableSettings.tipAll": "Встановити зовнішній край та всі внутрішні лінії", "DE.Views.TableSettings.tipBottom": "Встановити лише зовнішню нижню межу", "DE.Views.TableSettings.tipInner": "Встановити лише внутрішні лінії", @@ -1507,14 +2435,20 @@ "DE.Views.TableSettings.tipRight": "Встановити лише зовнішній правий кордон", "DE.Views.TableSettings.tipTop": "Встановити лише зовнішній верхній край", "DE.Views.TableSettings.txtNoBorders": "Немає кордонів", + "DE.Views.TableSettings.txtTable_Accent": "Акцент", "DE.Views.TableSettings.txtTable_Colorful": "Кольоровий", "DE.Views.TableSettings.txtTable_Dark": "Темний", + "DE.Views.TableSettings.txtTable_GridTable": "Таблиця-сітка", + "DE.Views.TableSettings.txtTable_Light": "світла", + "DE.Views.TableSettings.txtTable_ListTable": "Список-таблиця", + "DE.Views.TableSettings.txtTable_PlainTable": "Проста таблиця", + "DE.Views.TableSettings.txtTable_TableGrid": "Сітка таблиці", "DE.Views.TableSettingsAdvanced.textAlign": "Вирівнювання", "DE.Views.TableSettingsAdvanced.textAlignment": "Вирівнювання", "DE.Views.TableSettingsAdvanced.textAllowSpacing": "Відстань між комірками", "DE.Views.TableSettingsAdvanced.textAlt": "Альтернативний текст", "DE.Views.TableSettingsAdvanced.textAltDescription": "Опис", - "DE.Views.TableSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація знаходиться в зображенні, автошопі, діаграмі або таблиці.", + "DE.Views.TableSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація міститься в зображенні, автофігурі, діаграмі або таблиці.", "DE.Views.TableSettingsAdvanced.textAltTitle": "Назва", "DE.Views.TableSettingsAdvanced.textAnchorText": "Текст", "DE.Views.TableSettingsAdvanced.textAutofit": "Автоматично змінювати розмір відповідно до вмісту", @@ -1581,12 +2515,21 @@ "DE.Views.TableSettingsAdvanced.txtNoBorders": "Немає кордонів", "DE.Views.TableSettingsAdvanced.txtPercent": "Відсоток", "DE.Views.TableSettingsAdvanced.txtPt": "Визначити", + "DE.Views.TableToTextDialog.textEmpty": "Варто ввести знак, який буде використовуватись як роздільник.", + "DE.Views.TableToTextDialog.textNested": "Перетворення вкладених таблиць", + "DE.Views.TableToTextDialog.textOther": "Інший", + "DE.Views.TableToTextDialog.textPara": "Знаки абзацу", + "DE.Views.TableToTextDialog.textSemicolon": "Крапки з комою", + "DE.Views.TableToTextDialog.textSeparator": "Роздільник", + "DE.Views.TableToTextDialog.textTab": "Табуляція", + "DE.Views.TableToTextDialog.textTitle": "Перетворити таблицю в текст", "DE.Views.TextArtSettings.strColor": "Колір", "DE.Views.TextArtSettings.strFill": "Заповнити", "DE.Views.TextArtSettings.strSize": "Розмір", - "DE.Views.TextArtSettings.strStroke": "Штрих", + "DE.Views.TextArtSettings.strStroke": "Контур", "DE.Views.TextArtSettings.strTransparency": "Непрозорість", "DE.Views.TextArtSettings.strType": "Тип", + "DE.Views.TextArtSettings.textAngle": "Кут", "DE.Views.TextArtSettings.textBorderSizeErr": "Введене значення невірно.
Будь ласка, введіть значення від 0 pt до 1584 pt.", "DE.Views.TextArtSettings.textColor": "Колір заповнення", "DE.Views.TextArtSettings.textDirection": "Напрямок", @@ -1594,54 +2537,98 @@ "DE.Views.TextArtSettings.textGradientFill": "Заповнити градієнт", "DE.Views.TextArtSettings.textLinear": "Лінійний", "DE.Views.TextArtSettings.textNoFill": "Немає заповнення", + "DE.Views.TextArtSettings.textPosition": "Положення", "DE.Views.TextArtSettings.textRadial": "Радіальний", "DE.Views.TextArtSettings.textSelectTexture": "Обрати", "DE.Views.TextArtSettings.textStyle": "Стиль", "DE.Views.TextArtSettings.textTemplate": "Шаблон", "DE.Views.TextArtSettings.textTransform": "Перетворення", + "DE.Views.TextArtSettings.tipAddGradientPoint": "Додати точку градієнта", + "DE.Views.TextArtSettings.tipRemoveGradientPoint": "Видалити точку градієнта", "DE.Views.TextArtSettings.txtNoBorders": "Немає лінії", + "DE.Views.TextToTableDialog.textAutofit": "Автопідбір ширини стовпців", + "DE.Views.TextToTableDialog.textColumns": "Стовпчики", + "DE.Views.TextToTableDialog.textContents": "Автопідбір по змісту", + "DE.Views.TextToTableDialog.textEmpty": "Варто ввести знак, який буде використовуватись як роздільник.", + "DE.Views.TextToTableDialog.textFixed": "Фіксована ширина стовпчика", + "DE.Views.TextToTableDialog.textOther": "Інший", + "DE.Views.TextToTableDialog.textPara": "Абзаци", + "DE.Views.TextToTableDialog.textRows": "Рядки", + "DE.Views.TextToTableDialog.textSemicolon": "Крапки з комою", + "DE.Views.TextToTableDialog.textSeparator": "Роздільник тексту", + "DE.Views.TextToTableDialog.textTab": "Табуляція", + "DE.Views.TextToTableDialog.textTableSize": "Розмір таблиці", + "DE.Views.TextToTableDialog.textTitle": "Перетворити текст в таблицю ", + "DE.Views.TextToTableDialog.textWindow": "Автопідбір по ширині вікна", + "DE.Views.TextToTableDialog.txtAutoText": "Авто", "DE.Views.Toolbar.capBtnAddComment": "Додати коментар", - "DE.Views.Toolbar.capBtnColumns": "Колонки", + "DE.Views.Toolbar.capBtnBlankPage": "Пуста сторінка", + "DE.Views.Toolbar.capBtnColumns": "Стовпчики", "DE.Views.Toolbar.capBtnComment": "Коментар", "DE.Views.Toolbar.capBtnDateTime": "Дата та час", "DE.Views.Toolbar.capBtnInsChart": "Діаграма", + "DE.Views.Toolbar.capBtnInsControls": "Елементи керування вмістом", "DE.Views.Toolbar.capBtnInsDropcap": "Буквиця", "DE.Views.Toolbar.capBtnInsEquation": "Рівняння", "DE.Views.Toolbar.capBtnInsHeader": "Заголовок / нижній колонтитул", "DE.Views.Toolbar.capBtnInsImage": "Картинка", "DE.Views.Toolbar.capBtnInsPagebreak": "Перерви", "DE.Views.Toolbar.capBtnInsShape": "Форма", + "DE.Views.Toolbar.capBtnInsSymbol": "Символ", "DE.Views.Toolbar.capBtnInsTable": "Таблиця", "DE.Views.Toolbar.capBtnInsTextart": "Text Art", - "DE.Views.Toolbar.capBtnInsTextbox": "Текст", + "DE.Views.Toolbar.capBtnInsTextbox": "Напис", + "DE.Views.Toolbar.capBtnLineNumbers": "Нумерація рядків", "DE.Views.Toolbar.capBtnMargins": "Поля", "DE.Views.Toolbar.capBtnPageOrient": "Орієнтація", "DE.Views.Toolbar.capBtnPageSize": "Розмір", + "DE.Views.Toolbar.capBtnWatermark": "Підкладка", "DE.Views.Toolbar.capImgAlign": "Вирівняти", "DE.Views.Toolbar.capImgBackward": "Відправити назад", "DE.Views.Toolbar.capImgForward": "Висувати", "DE.Views.Toolbar.capImgGroup": "Група", "DE.Views.Toolbar.capImgWrapping": "Обгортання", + "DE.Views.Toolbar.mniCapitalizeWords": "Кожне слово з великої літери", "DE.Views.Toolbar.mniCustomTable": "Вставити спеціальну таблицю", + "DE.Views.Toolbar.mniDrawTable": "Намалювати таблицю", + "DE.Views.Toolbar.mniEditControls": "Параметри елемента керування", "DE.Views.Toolbar.mniEditDropCap": "Буквиця налаштування", "DE.Views.Toolbar.mniEditFooter": "Змінити нижній колонтитул", "DE.Views.Toolbar.mniEditHeader": "Редагувати заголовок", + "DE.Views.Toolbar.mniEraseTable": "Очистити таблицю", + "DE.Views.Toolbar.mniFromFile": "З файлу", + "DE.Views.Toolbar.mniFromStorage": "Зі сховища", + "DE.Views.Toolbar.mniFromUrl": "За URL", "DE.Views.Toolbar.mniHiddenBorders": "Приховані границі таблиці", "DE.Views.Toolbar.mniHiddenChars": "недруковані символи", + "DE.Views.Toolbar.mniHighlightControls": "Колір підсвітки", "DE.Views.Toolbar.mniImageFromFile": "Картинка з файлу", + "DE.Views.Toolbar.mniImageFromStorage": "Зображення зі сховища", "DE.Views.Toolbar.mniImageFromUrl": "Зображення з URL", + "DE.Views.Toolbar.mniLowerCase": "нижній регістр", + "DE.Views.Toolbar.mniSentenceCase": "Як в реченнях.", + "DE.Views.Toolbar.mniTextToTable": " Перетворити текст в таблицю", + "DE.Views.Toolbar.mniToggleCase": "зМІНИТИ рЕГІСТР", + "DE.Views.Toolbar.mniUpperCase": "ВЕРХНІЙ РЕГІСТР", "DE.Views.Toolbar.strMenuNoFill": "Немає заповнення", "DE.Views.Toolbar.textAutoColor": "Автоматично", "DE.Views.Toolbar.textBold": "Грубий", "DE.Views.Toolbar.textBottom": "Внизу:", - "DE.Views.Toolbar.textColumnsCustom": "Спеціальні стовпці", + "DE.Views.Toolbar.textChangeLevel": "Змінити рівень списку", + "DE.Views.Toolbar.textCheckboxControl": "Прапорець", + "DE.Views.Toolbar.textColumnsCustom": "Спеціальні стовпчики", "DE.Views.Toolbar.textColumnsLeft": "Лівий", "DE.Views.Toolbar.textColumnsOne": "Один", "DE.Views.Toolbar.textColumnsRight": "Право", "DE.Views.Toolbar.textColumnsThree": "Три", "DE.Views.Toolbar.textColumnsTwo": "Два", + "DE.Views.Toolbar.textComboboxControl": "Поле зі списком", + "DE.Views.Toolbar.textContinuous": "Безперервний", "DE.Views.Toolbar.textContPage": "Неперервна Сторінка", + "DE.Views.Toolbar.textCustomLineNumbers": "Варіанти нумерації рядків", "DE.Views.Toolbar.textDateControl": "Дата", + "DE.Views.Toolbar.textDropdownControl": "Випадаючий список", + "DE.Views.Toolbar.textEditWatermark": "Довільна підкладка", "DE.Views.Toolbar.textEvenPage": "Навіть сторінка", "DE.Views.Toolbar.textInMargin": "на полях", "DE.Views.Toolbar.textInsColumnBreak": "Вставити розрив стовпчика", @@ -1653,6 +2640,7 @@ "DE.Views.Toolbar.textItalic": "Курсив", "DE.Views.Toolbar.textLandscape": "ландшафт", "DE.Views.Toolbar.textLeft": "Вліво:", + "DE.Views.Toolbar.textListSettings": "Налаштування списку", "DE.Views.Toolbar.textMarginsLast": "Останній користувач", "DE.Views.Toolbar.textMarginsModerate": "Помірний", "DE.Views.Toolbar.textMarginsNarrow": "Вузький", @@ -1661,13 +2649,19 @@ "DE.Views.Toolbar.textMarginsWide": "Широкий", "DE.Views.Toolbar.textNewColor": "Додати новий власний колір", "DE.Views.Toolbar.textNextPage": "Наступна сторінка", + "DE.Views.Toolbar.textNoHighlight": "Без виділення", "DE.Views.Toolbar.textNone": "Жоден", "DE.Views.Toolbar.textOddPage": "Непарна сторінка", "DE.Views.Toolbar.textPageMarginsCustom": "Користувацькі поля", "DE.Views.Toolbar.textPageSizeCustom": "Спеціальний розмір сторінки", + "DE.Views.Toolbar.textPictureControl": "Малюнок", + "DE.Views.Toolbar.textPlainControl": "Звичайний текст", "DE.Views.Toolbar.textPortrait": "Портрет", "DE.Views.Toolbar.textRemoveControl": "Вилучити контроль вмісту", "DE.Views.Toolbar.textRemWatermark": "Вилучити водяний знак", + "DE.Views.Toolbar.textRestartEachPage": "На кожній сторінці", + "DE.Views.Toolbar.textRestartEachSection": "В кожному розділі", + "DE.Views.Toolbar.textRichControl": "Форматований текст", "DE.Views.Toolbar.textRight": "Право:", "DE.Views.Toolbar.textStrikeout": "Перекреслений", "DE.Views.Toolbar.textStyleMenuDelete": "Вилучити стиль", @@ -1678,12 +2672,14 @@ "DE.Views.Toolbar.textStyleMenuUpdate": "Оновлення від вибору", "DE.Views.Toolbar.textSubscript": "Підрядковий", "DE.Views.Toolbar.textSuperscript": "Надрядковий", + "DE.Views.Toolbar.textSuppressForCurrentParagraph": "Відключити для поточного абзацу", "DE.Views.Toolbar.textTabCollaboration": "Співпраця", "DE.Views.Toolbar.textTabFile": "Файл", "DE.Views.Toolbar.textTabHome": "Домівка", "DE.Views.Toolbar.textTabInsert": "Вставити", "DE.Views.Toolbar.textTabLayout": "Макет", "DE.Views.Toolbar.textTabLinks": "Посилання", + "DE.Views.Toolbar.textTabProtect": "Захист", "DE.Views.Toolbar.textTabReview": "Перевірити", "DE.Views.Toolbar.textTitleError": "Помилка", "DE.Views.Toolbar.textToCurrent": "До поточної позиції", @@ -1695,19 +2691,22 @@ "DE.Views.Toolbar.tipAlignRight": "Вирівняти справа", "DE.Views.Toolbar.tipBack": "Назад", "DE.Views.Toolbar.tipBlankPage": "Вставити чисту сторінку", + "DE.Views.Toolbar.tipChangeCase": "Змінити регістр", "DE.Views.Toolbar.tipChangeChart": "Змінити тип діаграми", "DE.Views.Toolbar.tipClearStyle": "Очистити стиль", "DE.Views.Toolbar.tipColorSchemas": "Змінити колірну схему", - "DE.Views.Toolbar.tipColumns": "Вставити стопчики", + "DE.Views.Toolbar.tipColumns": "Вставити стовпчики", + "DE.Views.Toolbar.tipControls": "Вставити елемент керуванням змістом", "DE.Views.Toolbar.tipCopy": "Копіювати", "DE.Views.Toolbar.tipCopyStyle": "Копіювати стиль", + "DE.Views.Toolbar.tipDateTime": "Вставити поточну дату і час", "DE.Views.Toolbar.tipDecFont": "Зменшення розміру шрифту", "DE.Views.Toolbar.tipDecPrLeft": "Зменшити відступ", "DE.Views.Toolbar.tipDropCap": "Вставити буквицю", "DE.Views.Toolbar.tipEditHeader": "Редагувати верхній або нижній колонтитул", "DE.Views.Toolbar.tipFontColor": "Колір шрифту", "DE.Views.Toolbar.tipFontName": "Шрифт", - "DE.Views.Toolbar.tipFontSize": "Розмір шрифта", + "DE.Views.Toolbar.tipFontSize": "Розмір шрифту", "DE.Views.Toolbar.tipHighlightColor": "Колір позначення", "DE.Views.Toolbar.tipImgAlign": "Вирівняти об'єкти", "DE.Views.Toolbar.tipImgGroup": "Група об'єктів", @@ -1719,9 +2718,11 @@ "DE.Views.Toolbar.tipInsertImage": "Вставити зображення", "DE.Views.Toolbar.tipInsertNum": "Вставити номер сторінки", "DE.Views.Toolbar.tipInsertShape": "вставити автофігури", + "DE.Views.Toolbar.tipInsertSymbol": "Вставити символ", "DE.Views.Toolbar.tipInsertTable": "Вставити таблицю", - "DE.Views.Toolbar.tipInsertText": "Вставити текст", + "DE.Views.Toolbar.tipInsertText": "Вставити напис", "DE.Views.Toolbar.tipInsertTextArt": "Вставити текст Art", + "DE.Views.Toolbar.tipLineNumbers": "Показувати номери рядків", "DE.Views.Toolbar.tipLineSpace": "Розмітка міжрядкових інтервалів", "DE.Views.Toolbar.tipMailRecepients": "Надіслати ел.поштою", "DE.Views.Toolbar.tipMarkers": "Кулі", @@ -1743,7 +2744,12 @@ "DE.Views.Toolbar.tipShowHiddenChars": "недруковані символи", "DE.Views.Toolbar.tipSynchronize": "Документ був змінений іншим користувачем. Будь ласка, натисніть, щоб зберегти зміни та перезавантажити оновлення.", "DE.Views.Toolbar.tipUndo": "Скасувати", + "DE.Views.Toolbar.tipWatermark": "Змінити підкладку", + "DE.Views.Toolbar.txtDistribHor": "Розподілити горизонтально", + "DE.Views.Toolbar.txtDistribVert": "Розподілити вертикально", "DE.Views.Toolbar.txtMarginAlign": "Вирівняти відносно поля", + "DE.Views.Toolbar.txtObjectsAlign": "Вирівняти виділені об'єкти", + "DE.Views.Toolbar.txtPageAlign": "Вирівняти відносно сторінки", "DE.Views.Toolbar.txtScheme1": "Офіс", "DE.Views.Toolbar.txtScheme10": "Медіана", "DE.Views.Toolbar.txtScheme11": "Метро", @@ -1758,6 +2764,7 @@ "DE.Views.Toolbar.txtScheme2": "Градація сірого", "DE.Views.Toolbar.txtScheme20": "Міський", "DE.Views.Toolbar.txtScheme21": "Здібність", + "DE.Views.Toolbar.txtScheme22": "Нова офісна", "DE.Views.Toolbar.txtScheme3": "Верх", "DE.Views.Toolbar.txtScheme4": "Аспект", "DE.Views.Toolbar.txtScheme5": "Громадянський", @@ -1768,6 +2775,25 @@ "DE.Views.WatermarkSettingsDialog.textAuto": "Авто", "DE.Views.WatermarkSettingsDialog.textBold": "Грубий", "DE.Views.WatermarkSettingsDialog.textColor": "Колір тексту", + "DE.Views.WatermarkSettingsDialog.textDiagonal": "По діагоналі", + "DE.Views.WatermarkSettingsDialog.textFont": "Шрифт", + "DE.Views.WatermarkSettingsDialog.textFromFile": "З файлу", + "DE.Views.WatermarkSettingsDialog.textFromStorage": "Зі сховища", + "DE.Views.WatermarkSettingsDialog.textFromUrl": "За URL", + "DE.Views.WatermarkSettingsDialog.textHor": "По горизонталі", + "DE.Views.WatermarkSettingsDialog.textImageW": "Графічна підкладка", "DE.Views.WatermarkSettingsDialog.textItalic": "Курсив", - "DE.Views.WatermarkSettingsDialog.textStrikeout": "Викреслений" + "DE.Views.WatermarkSettingsDialog.textLanguage": "Мова", + "DE.Views.WatermarkSettingsDialog.textLayout": "Макет", + "DE.Views.WatermarkSettingsDialog.textNone": "Немає", + "DE.Views.WatermarkSettingsDialog.textScale": "Масштаб", + "DE.Views.WatermarkSettingsDialog.textSelect": "Вибрати зображення", + "DE.Views.WatermarkSettingsDialog.textStrikeout": "Викреслений", + "DE.Views.WatermarkSettingsDialog.textText": "Текст", + "DE.Views.WatermarkSettingsDialog.textTextW": "Текстова підкладка", + "DE.Views.WatermarkSettingsDialog.textTitle": "Налаштування підкладки", + "DE.Views.WatermarkSettingsDialog.textTransparency": "Напівпрозорий", + "DE.Views.WatermarkSettingsDialog.textUnderline": "Підкреслений", + "DE.Views.WatermarkSettingsDialog.tipFontName": "Шрифт", + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Розмір шрифту" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/zh.json b/apps/documenteditor/main/locale/zh.json index 039c14464..fd2af8d49 100644 --- a/apps/documenteditor/main/locale/zh.json +++ b/apps/documenteditor/main/locale/zh.json @@ -380,7 +380,7 @@ "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "移除我的当前批注", "Common.Views.ReviewChanges.txtCommentRemove": "删除", "Common.Views.ReviewChanges.txtCommentResolve": "解决", - "Common.Views.ReviewChanges.txtCommentResolveAll": "解决全体评论", + "Common.Views.ReviewChanges.txtCommentResolveAll": "解决所有评论", "Common.Views.ReviewChanges.txtCommentResolveCurrent": "解决该评论", "Common.Views.ReviewChanges.txtCommentResolveMy": "解决我的评论", "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "解决我当前的评论", diff --git a/apps/presentationeditor/embed/locale/hu.json b/apps/presentationeditor/embed/locale/hu.json index 1d2896d22..5737cc1a3 100644 --- a/apps/presentationeditor/embed/locale/hu.json +++ b/apps/presentationeditor/embed/locale/hu.json @@ -13,10 +13,16 @@ "PE.ApplicationController.errorDefaultMessage": "Hibakód: %1", "PE.ApplicationController.errorFilePassProtect": "A dokumentum jelszóval védett, és nem nyitható meg.", "PE.ApplicationController.errorFileSizeExceed": "A fájlméret meghaladja a szerverre beállított korlátozást.
Kérjük, forduljon a Document Server rendszergazdájához a részletekért.", - "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Az internet kapcsolat helyreállt, és a fájl verziója megváltozott.
Mielőtt folytatná a munkát, töltse le a fájlt, vagy másolja vágólapra annak tartalmát, hogy megbizonyosodjon arról, hogy semmi nem veszik el, majd töltse újra az oldalt.", + "PE.ApplicationController.errorForceSave": "Hiba történt a fájl mentése közben. Kérjük, használja a 'Letöltés másként' opciót, hogy a fájlt a számítógépére mentse, vagy próbálkozzon később.", + "PE.ApplicationController.errorLoadingFont": "A betűtípusok nincsenek betöltve.
Kérjük forduljon a dokumentumszerver rendszergazdájához.", + "PE.ApplicationController.errorTokenExpire": "A dokumentum biztonsági tokenje lejárt.
Kérjük, lépjen kapcsolatba a dokumentumszerver rendszergazdájával.", + "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Az internetkapcsolat helyreállt és a fájl verziója megváltozott.
Mielőtt folytatná a munkát, töltse le a fájlt vagy másolja át annak tartalmát megbizonyosodva arról, hogy semmi sem veszett el, végül töltse újra ezt az oldalt.", "PE.ApplicationController.errorUserDrop": "A dokumentum jelenleg nem elérhető", "PE.ApplicationController.notcriticalErrorTitle": "Figyelmeztetés", + "PE.ApplicationController.openErrorText": "Hiba történt a fájl megnyitásakor", "PE.ApplicationController.scriptLoadError": "A kapcsolat túl lassú, néhány komponens nem töltődött be. Frissítse az oldalt.", + "PE.ApplicationController.textAnonymous": "Névtelen", + "PE.ApplicationController.textGuest": "Vendég", "PE.ApplicationController.textLoadingDocument": "Prezentáció betöltése", "PE.ApplicationController.textOf": "of", "PE.ApplicationController.txtClose": "Bezárás", @@ -25,6 +31,7 @@ "PE.ApplicationController.waitText": "Kérjük várjon...", "PE.ApplicationView.txtDownload": "Letöltés", "PE.ApplicationView.txtEmbed": "Beágyazás", + "PE.ApplicationView.txtFileLocation": "Fájl helyének megnyitása", "PE.ApplicationView.txtFullScreen": "Teljes képernyő", "PE.ApplicationView.txtPrint": "Nyomtatás", "PE.ApplicationView.txtShare": "Megosztás" diff --git a/apps/presentationeditor/main/locale/ca.json b/apps/presentationeditor/main/locale/ca.json index ca8637a0b..2392a1b2d 100644 --- a/apps/presentationeditor/main/locale/ca.json +++ b/apps/presentationeditor/main/locale/ca.json @@ -47,6 +47,48 @@ "Common.define.chartData.textScatterSmoothMarker": "Dispersió amb línies suaus i marcadors", "Common.define.chartData.textStock": "Accions", "Common.define.chartData.textSurface": "Superfície", + "Common.define.effectData.textAcross": "Horitzontal", + "Common.define.effectData.textAppear": "Aparèixer", + "Common.define.effectData.textArcDown": "Arc cap avall", + "Common.define.effectData.textArcLeft": "Arc cap a l'esquerra", + "Common.define.effectData.textArcRight": "Arc cap a la dreta", + "Common.define.effectData.textArcUp": "Arc cap amunt", + "Common.define.effectData.textBasic": "Bàsic", + "Common.define.effectData.textBasicSwivel": "Gir bàsic", + "Common.define.effectData.textBasicZoom": "Zoom bàsic", + "Common.define.effectData.textBean": "Mongeta", + "Common.define.effectData.textBlinds": "Persianes", + "Common.define.effectData.textBlink": "Intermitent", + "Common.define.effectData.textBoldFlash": "Parpelleig en negreta", + "Common.define.effectData.textBoldReveal": "Revelar en negreta", + "Common.define.effectData.textBoomerang": "Bumerang", + "Common.define.effectData.textBounce": "Bot", + "Common.define.effectData.textBounceLeft": "Bot cap a l'esquerra", + "Common.define.effectData.textBounceRight": "Bot cap a la dreta", + "Common.define.effectData.textBox": "Quadre", + "Common.define.effectData.textBrushColor": "Color del pinzell", + "Common.define.effectData.textCenterRevolve": "Girar pel centre", + "Common.define.effectData.textCheckerboard": "Tauler d'escacs", + "Common.define.effectData.textCircle": "Cercel", + "Common.define.effectData.textCollapse": "Redueix", + "Common.define.effectData.textColorPulse": "Batec de color", + "Common.define.effectData.textComplementaryColor": "Color complementari", + "Common.define.effectData.textComplementaryColor2": "Color complementari 2", + "Common.define.effectData.textCompress": "Comprimir", + "Common.define.effectData.textContrast": "Contrast", + "Common.define.effectData.textLeftDown": "Esquerra i avall", + "Common.define.effectData.textLeftUp": "Esquerra i amunt", + "Common.define.effectData.textPointStar4": "Estrella de 4 puntes", + "Common.define.effectData.textPointStar5": "Estrella de 5 puntes", + "Common.define.effectData.textPointStar6": "Estrella de 6 puntes", + "Common.define.effectData.textPointStar8": "Estrella de 8 puntes", + "Common.define.effectData.textRightDown": "Dreta i avall", + "Common.define.effectData.textRightUp": "Dreta i amunt", + "Common.define.effectData.textSpoke1": "1 radi", + "Common.define.effectData.textSpoke2": "2 radis", + "Common.define.effectData.textSpoke3": "3 radis", + "Common.define.effectData.textSpoke4": "4 radis", + "Common.define.effectData.textSpoke8": "8 radis", "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": "Obre per a la seva visualització", @@ -104,6 +146,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Llistes automàtiques de pics", "Common.Views.AutoCorrectDialog.textBy": "Per", "Common.Views.AutoCorrectDialog.textDelete": "Suprimeix", + "Common.Views.AutoCorrectDialog.textFLCells": "Posa en majúscula la primera lletra de les cel·les de la taula", "Common.Views.AutoCorrectDialog.textFLSentence": "Escriu en majúscules la primera lletra de les frases", "Common.Views.AutoCorrectDialog.textHyperlink": "Camins de xarxa i d'Internet per enllaços", "Common.Views.AutoCorrectDialog.textHyphens": "Guionets (--) per guió llarg (—)", @@ -135,6 +178,7 @@ "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.textAll": "Tot", "Common.Views.Comments.textAnonym": "Convidat", "Common.Views.Comments.textCancel": "Cancel·la", "Common.Views.Comments.textClose": "Tanca", @@ -469,6 +513,7 @@ "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.textReconnect": "S'ha restablert la connexió", "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ó", @@ -750,6 +795,7 @@ "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.textDisconnect": "S'ha perdut la connexió. S'està intentat connectar. Comproveu la configuració de connexió", "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 ?", "PE.Controllers.Toolbar.textAccent": "Accents", @@ -1086,6 +1132,9 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "PE.Controllers.Viewport.textFitPage": "Ajusta a la diapositiva", "PE.Controllers.Viewport.textFitWidth": "Ajusta-ho a l'amplària", + "PE.Views.Animation.textStartAfterPrevious": "Després de l'anterior", + "PE.Views.Animation.txtAddEffect": "Afegeix una animació", + "PE.Views.Animation.txtAnimationPane": "Subfinestra d'animacions", "PE.Views.ChartSettings.textAdvanced": "Mostra la configuració avançada", "PE.Views.ChartSettings.textChartType": "Canvia el tipus de gràfic", "PE.Views.ChartSettings.textEditData": "Edita les dades", @@ -1898,6 +1947,7 @@ "PE.Views.Toolbar.textStrikeout": "Ratllat", "PE.Views.Toolbar.textSubscript": "Subíndex", "PE.Views.Toolbar.textSuperscript": "Superíndex", + "PE.Views.Toolbar.textTabAnimation": "Animació", "PE.Views.Toolbar.textTabCollaboration": "Col·laboració", "PE.Views.Toolbar.textTabFile": "Fitxer", "PE.Views.Toolbar.textTabHome": "Inici", @@ -2018,5 +2068,6 @@ "PE.Views.Transitions.txtApplyToAll": "Aplica-ho a totes les diapositives", "PE.Views.Transitions.txtParameters": "Paràmetres", "PE.Views.Transitions.txtPreview": "Visualització prèvia", - "PE.Views.Transitions.txtSec": "S" + "PE.Views.Transitions.txtSec": "S", + "PE.Views.ViewTab.textAlwaysShowToolbar": "Mostra sempre la barra" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/hu.json b/apps/presentationeditor/main/locale/hu.json index e85f1398c..f63fd3844 100644 --- a/apps/presentationeditor/main/locale/hu.json +++ b/apps/presentationeditor/main/locale/hu.json @@ -49,7 +49,9 @@ "Common.define.chartData.textSurface": "Felület", "Common.Translation.warnFileLocked": "A fájlt egy másik alkalmazásban szerkesztik. Folytathatja a szerkesztést és elmentheti másolatként.", "Common.Translation.warnFileLockedBtnEdit": "Másolat létrehozása", + "Common.Translation.warnFileLockedBtnView": "Megnyitás megtekintéshez", "Common.UI.ButtonColored.textAutoColor": "Automatikus", + "Common.UI.ButtonColored.textNewColor": "Új egyéni szín hozzáadása", "Common.UI.ComboBorderSize.txtNoBorders": "Nincsenek szegélyek", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Nincsenek szegélyek", "Common.UI.ComboDataView.emptyComboText": "Nincsenek stílusok", @@ -73,6 +75,9 @@ "Common.UI.SynchronizeTip.textSynchronize": "A dokumentumot egy másik felhasználó módosította.
Kattintson a gombra a módosítások mentéséhez és a frissítések újratöltéséhez.", "Common.UI.ThemeColorPalette.textStandartColors": "Sztenderd színek", "Common.UI.ThemeColorPalette.textThemeColors": "Téma színek", + "Common.UI.Themes.txtThemeClassicLight": "Klasszikus Világos", + "Common.UI.Themes.txtThemeDark": "Sötét", + "Common.UI.Themes.txtThemeLight": "Világos", "Common.UI.Window.cancelButtonText": "Mégse", "Common.UI.Window.closeButtonText": "Bezár", "Common.UI.Window.noButtonText": "Nem", @@ -88,16 +93,19 @@ "Common.Views.About.txtAddress": "Cím:", "Common.Views.About.txtLicensee": "LICENC VÁSÁRLÓ", "Common.Views.About.txtLicensor": "LICENCTULAJDONOS", - "Common.Views.About.txtMail": "email:", + "Common.Views.About.txtMail": "e-mail:", "Common.Views.About.txtPoweredBy": "Powered by", "Common.Views.About.txtTel": "Tel.: ", "Common.Views.About.txtVersion": "Verzió", "Common.Views.AutoCorrectDialog.textAdd": "Hozzáadás", "Common.Views.AutoCorrectDialog.textApplyText": "Alkalmazás gépelés közben", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Szöveg automatikus javítása", "Common.Views.AutoCorrectDialog.textAutoFormat": "Automatikus formázás gépelés közben", "Common.Views.AutoCorrectDialog.textBulleted": "Automatikus felsorolásos listák", "Common.Views.AutoCorrectDialog.textBy": "Által", "Common.Views.AutoCorrectDialog.textDelete": "Törlés", + "Common.Views.AutoCorrectDialog.textFLSentence": "A mondatok nagy betűvel kezdődjenek", + "Common.Views.AutoCorrectDialog.textHyperlink": "Internet és hálózati utak hiperhivatkozásokkal", "Common.Views.AutoCorrectDialog.textHyphens": "Kötőjelek (--) gondolatjellel (—)", "Common.Views.AutoCorrectDialog.textMathCorrect": "Matematikai automatikus javítás", "Common.Views.AutoCorrectDialog.textNumbered": "Automatikus számozott listák", @@ -117,21 +125,29 @@ "Common.Views.AutoCorrectDialog.warnReset": "Minden hozzáadott automatikus javítást eltávolítunk, és a megváltozottakat visszaállítjuk eredeti értékükre. Folytassuk?", "Common.Views.AutoCorrectDialog.warnRestore": "%1 automatikus javítása visszaáll az eredeti értékére. Folytassuk?", "Common.Views.Chat.textSend": "Küldés", + "Common.Views.Comments.mniAuthorAsc": "Szerző (A-Z)", + "Common.Views.Comments.mniAuthorDesc": "Szerző (Z-A)", + "Common.Views.Comments.mniDateAsc": "Legöregebb először", + "Common.Views.Comments.mniDateDesc": "Legújabb először", + "Common.Views.Comments.mniPositionAsc": "Felülről", + "Common.Views.Comments.mniPositionDesc": "Alulról", "Common.Views.Comments.textAdd": "Hozzáad", - "Common.Views.Comments.textAddComment": "Hozzászólás hozzáadása", - "Common.Views.Comments.textAddCommentToDoc": "Hozzászólás hozzáadása a dokumentumhoz", + "Common.Views.Comments.textAddComment": "Megjegyzés hozzáadása", + "Common.Views.Comments.textAddCommentToDoc": "Megjegyzés hozzáadása a dokumentumhoz", "Common.Views.Comments.textAddReply": "Válasz hozzáadása", "Common.Views.Comments.textAnonym": "Vendég", "Common.Views.Comments.textCancel": "Mégse", "Common.Views.Comments.textClose": "Bezár", - "Common.Views.Comments.textComments": "Hozzászólások", + "Common.Views.Comments.textClosePanel": "Megjegyzések bezárása", + "Common.Views.Comments.textComments": "Megjegyzések", "Common.Views.Comments.textEdit": "OK", - "Common.Views.Comments.textEnterCommentHint": "Írjon hozzászólást", - "Common.Views.Comments.textHintAddComment": "Hozzászólás hozzáadása", + "Common.Views.Comments.textEnterCommentHint": "Megjegyzés beírása itt", + "Common.Views.Comments.textHintAddComment": "Megjegyzés hozzáadása", "Common.Views.Comments.textOpenAgain": "Ismét megnyit", "Common.Views.Comments.textReply": "Ismétel", "Common.Views.Comments.textResolve": "Felold", "Common.Views.Comments.textResolved": "Feloldott", + "Common.Views.Comments.textSort": "Megjegyzések rendezése", "Common.Views.CopyWarningDialog.textDontShow": "Ne mutassa újra ezt az üzenetet", "Common.Views.CopyWarningDialog.textMsg": "A szerkesztés eszköztár gombjaival és a helyi menüvel végzett másolás, kivágás és beillesztés műveletek csak a szerkesztő oldalon használhatóak.

A szerkesztő lapon kívüli alkalmazásokba való másoláshoz vagy beillesztéshez az alábbi billentyűzetkombinációkat használja:", "Common.Views.CopyWarningDialog.textTitle": "Másolás, kivágás és beillesztés", @@ -149,6 +165,7 @@ "Common.Views.Header.textBack": "Fájl helyének megnyitása", "Common.Views.Header.textCompactView": "Eszköztár elrejtése", "Common.Views.Header.textHideLines": "Vonalzók elrejtése", + "Common.Views.Header.textHideNotes": "Jegyzetek elrejtése", "Common.Views.Header.textHideStatusBar": "Állapotsor elrejtése", "Common.Views.Header.textRemoveFavorite": "Eltávolítás a kedvencekből", "Common.Views.Header.textSaveBegin": "Mentés...", @@ -169,7 +186,9 @@ "Common.Views.Header.txtAccessRights": "Hozzáférési jogok módosítása", "Common.Views.Header.txtRename": "Név változtatása", "Common.Views.History.textCloseHistory": "Napló bezárása", + "Common.Views.History.textHide": "Minimalizálás", "Common.Views.History.textHideAll": "Részletes módosítások elrejtése", + "Common.Views.History.textRestore": "Visszaállítás", "Common.Views.History.textShow": "Kibont", "Common.Views.History.textShowAll": "Módosítások részletes megjelenítése", "Common.Views.History.textVer": "ver.", @@ -202,7 +221,7 @@ "Common.Views.OpenDialog.txtIncorrectPwd": "Hibás jelszó.", "Common.Views.OpenDialog.txtOpenFile": "Írja be a megnyitáshoz szükséges jelszót", "Common.Views.OpenDialog.txtPassword": "Jelszó", - "Common.Views.OpenDialog.txtProtected": "Miután megadta a jelszót és megnyitotta a fájlt, az aktuális jelszó visszaáll.", + "Common.Views.OpenDialog.txtProtected": "Miután megadta a jelszót és megnyitotta a fájlt, annak jelenlegi jelszava visszaállítódik.", "Common.Views.OpenDialog.txtTitle": "Válassza a %1 opciót", "Common.Views.OpenDialog.txtTitleProtected": "Védett fájl", "Common.Views.PasswordDialog.txtDescription": "Állítson be jelszót a dokumentum védelmére", @@ -237,8 +256,10 @@ "Common.Views.ReviewChanges.strStrictDesc": "A „Mentés” gomb segítségével szinkronizálhatja az Ön és mások által végrehajtott módosításokat.", "Common.Views.ReviewChanges.tipAcceptCurrent": "Utolsó változás elfogadása", "Common.Views.ReviewChanges.tipCoAuthMode": "Együttes szerkesztés beállítása", - "Common.Views.ReviewChanges.tipCommentRem": "Hozzászólások eltávolítása", - "Common.Views.ReviewChanges.tipCommentRemCurrent": "Jelenlegi hosszászólások eltávolítása", + "Common.Views.ReviewChanges.tipCommentRem": "Megjegyzések eltávolítása", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "Jelenlegi megjegyzések eltávolítása", + "Common.Views.ReviewChanges.tipCommentResolve": "Megjegyzések megoldása", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Aktuális megjegyzések megoldása", "Common.Views.ReviewChanges.tipHistory": "Verziótörténet mutatása", "Common.Views.ReviewChanges.tipRejectCurrent": "Az aktuális változás elutasítása", "Common.Views.ReviewChanges.tipReview": "Módosítások követése", @@ -253,11 +274,16 @@ "Common.Views.ReviewChanges.txtChat": "Chat", "Common.Views.ReviewChanges.txtClose": "Bezár", "Common.Views.ReviewChanges.txtCoAuthMode": "Együttes szerkesztési mód", - "Common.Views.ReviewChanges.txtCommentRemAll": "Minden hozzászólás eltávolítása", - "Common.Views.ReviewChanges.txtCommentRemCurrent": "Jelenlegi hosszászólások eltávolítása", - "Common.Views.ReviewChanges.txtCommentRemMy": "Hozzászólásaim eltávolítása", - "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Jelenlegi hozzászólásaim eltávolítása", + "Common.Views.ReviewChanges.txtCommentRemAll": "Minden megjegyzés eltávolítása", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Jelenlegi megjegyzések eltávolítása", + "Common.Views.ReviewChanges.txtCommentRemMy": "Megjegyzéseim eltávolítása", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Jelenlegi megjegyzéseim eltávolítása", "Common.Views.ReviewChanges.txtCommentRemove": "Eltávolítás", + "Common.Views.ReviewChanges.txtCommentResolve": "Megold", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Összes megjegyzés megoldása", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Aktuális Megjegyzések Megoldása", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Saját Megjegyzések Megoldása", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Aktuális Megjegyzéseim Megoldása", "Common.Views.ReviewChanges.txtDocLang": "Nyelv", "Common.Views.ReviewChanges.txtFinal": "Minden módosítás elfogadva (Előnézet)", "Common.Views.ReviewChanges.txtFinalCap": "Végső", @@ -269,7 +295,7 @@ "Common.Views.ReviewChanges.txtOriginalCap": "Eredeti", "Common.Views.ReviewChanges.txtPrev": "Előző", "Common.Views.ReviewChanges.txtReject": "Elutasít", - "Common.Views.ReviewChanges.txtRejectAll": "Elutasít minden módosítást", + "Common.Views.ReviewChanges.txtRejectAll": "Minden módosítást elvetése", "Common.Views.ReviewChanges.txtRejectChanges": "Elutasítja a módosításokat", "Common.Views.ReviewChanges.txtRejectCurrent": "Az aktuális változás elutasítása", "Common.Views.ReviewChanges.txtSharing": "Megosztás", @@ -281,11 +307,13 @@ "Common.Views.ReviewPopover.textCancel": "Mégse", "Common.Views.ReviewPopover.textClose": "Bezár", "Common.Views.ReviewPopover.textEdit": "OK", - "Common.Views.ReviewPopover.textMention": "+megemlítés hozzáférést ad a dokumentumhoz, és emailt küld", - "Common.Views.ReviewPopover.textMentionNotify": "+megemlítés értesíti a felhasználót emailben", + "Common.Views.ReviewPopover.textMention": "+megemlítés hozzáférést ad a dokumentumhoz, és e-mailt küld", + "Common.Views.ReviewPopover.textMentionNotify": "+megemlítés értesíti a felhasználót e-mailben", "Common.Views.ReviewPopover.textOpenAgain": "Ismét megnyit", "Common.Views.ReviewPopover.textReply": "Ismétel", "Common.Views.ReviewPopover.textResolve": "Felold", + "Common.Views.ReviewPopover.txtDeleteTip": "Törlés", + "Common.Views.ReviewPopover.txtEditTip": "Szerkesztés", "Common.Views.SaveAsDlg.textLoading": "Betöltés", "Common.Views.SaveAsDlg.textTitle": "Mentési mappa", "Common.Views.SelectFileDlg.textLoading": "Betöltés", @@ -305,7 +333,7 @@ "Common.Views.SignDialog.textValid": "Érvényes %1 és %2 között", "Common.Views.SignDialog.tipFontName": "Betűtípus neve", "Common.Views.SignDialog.tipFontSize": "Betűméret", - "Common.Views.SignSettingsDialog.textAllowComment": "Engedélyezi az aláírónak hozzászólás hozzáadását az aláírási párbeszédablakban", + "Common.Views.SignSettingsDialog.textAllowComment": "Engedélyezi az aláírónak megjegyzés hozzáadását az aláírási párbeszédablakban", "Common.Views.SignSettingsDialog.textInfo": "Aláíró infó", "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", "Common.Views.SignSettingsDialog.textInfoName": "Név", @@ -344,6 +372,7 @@ "Common.Views.UserNameDialog.textDontShow": "Ne kérdezze újra", "Common.Views.UserNameDialog.textLabel": "Címke:", "Common.Views.UserNameDialog.textLabelError": "A címke nem lehet üres.", + "PE.Controllers.LeftMenu.leavePageText": "A dokumentumban lévő összes nem mentett módosítás el fog veszni.
Kattintson a \"Mégse\", majd a \"Mentés\" gombra a mentésükhöz. Kattintson az „OK” gombra az összes nem mentett módosítás elvetéséhez.", "PE.Controllers.LeftMenu.newDocumentTitle": "Névtelen prezentáció", "PE.Controllers.LeftMenu.notcriticalErrorTitle": "Figyelmeztetés", "PE.Controllers.LeftMenu.requestEditRightsText": "Szerkesztési jogok kérése...", @@ -369,14 +398,15 @@ "PE.Controllers.Main.errorDataEncrypted": "Titkosított változások érkeztek, melyek feloldása sikertelen.", "PE.Controllers.Main.errorDataRange": "Hibás adattartomány.", "PE.Controllers.Main.errorDefaultMessage": "Hibakód: %1", - "PE.Controllers.Main.errorEditingDownloadas": "Hiba történt a dokumentummal végzett munka során.
Használja a 'Letöltés mint...' opciót, hogy mentse a fájl biztonsági másolatát a számítógép merevlemezére.", + "PE.Controllers.Main.errorEditingDownloadas": "Hiba történt a dokumentummal végzett munka során.
Használja a 'Letöltés másként...' opciót, hogy mentse a fájl biztonsági másolatát a számítógép merevlemezére.", "PE.Controllers.Main.errorEditingSaveas": "Hiba történt a dokumentummal végzett munka során.
Használja a 'Mentés másként...' opciót, hogy mentse a fájl biztonsági másolatát a számítógép merevlemezére.", - "PE.Controllers.Main.errorEmailClient": "Nem található email kliens.", + "PE.Controllers.Main.errorEmailClient": "Nem található e-mail kliens.", "PE.Controllers.Main.errorFilePassProtect": "A dokumentum jelszóval védett, és nem nyitható meg.", "PE.Controllers.Main.errorFileSizeExceed": "A fájlméret meghaladja a szerverre beállított korlátozást.
Kérjük, forduljon a Document Server rendszergazdájához a részletekért.", - "PE.Controllers.Main.errorForceSave": "Hiba történt a fájl mentése közben. Kérjük, használja a 'Letöltés mint' opciót, hogy a fájlt a számítógépére mentse, vagy próbálkozzon később.", + "PE.Controllers.Main.errorForceSave": "Hiba történt a fájl mentése közben. Kérjük, használja a 'Letöltés másként' opciót, hogy a fájlt a számítógépére mentse, vagy próbálkozzon később.", "PE.Controllers.Main.errorKeyEncrypt": "Ismeretlen kulcsleíró", "PE.Controllers.Main.errorKeyExpire": "Lejárt kulcsleíró", + "PE.Controllers.Main.errorLoadingFont": "A betűtípusok nincsenek betöltve.
Kérjük forduljon a dokumentumszerver rendszergazdájához.", "PE.Controllers.Main.errorProcessSaveResult": "Sikertelen mentés.", "PE.Controllers.Main.errorServerVersion": "A szerkesztő verziója frissült. Az oldal újratöltésre kerül a módosítások alkalmazásához.", "PE.Controllers.Main.errorSessionAbsolute": "A dokumentumszerkesztési munkamenet lejárt. Kérjük, töltse be újra az oldalt.", @@ -387,11 +417,12 @@ "PE.Controllers.Main.errorToken": "A dokumentum biztonsági tokenje nem megfelelő.
Kérjük, lépjen kapcsolatba a Dokumentumszerver rendszergazdájával.", "PE.Controllers.Main.errorTokenExpire": "A dokumentum biztonsági tokenje lejárt.
Kérjük, lépjen kapcsolatba a dokumentumszerver rendszergazdájával.", "PE.Controllers.Main.errorUpdateVersion": "A dokumentum verziója megváltozott. Az oldal újratöltődik.", - "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "Az internet kapcsolat helyreállt, és a fájl verziója megváltozott.
Mielőtt folytatná a munkát, töltse le a fájlt, vagy másolja vágólapra annak tartalmát, hogy megbizonyosodjon arról, hogy semmi nem veszik el, majd töltse újra az oldalt.", + "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "Az internetkapcsolat helyreállt és a fájl verziója megváltozott.
Mielőtt folytatná a munkát, töltse le a fájlt vagy másolja át annak tartalmát megbizonyosodva arról, hogy semmi sem veszett el, végül töltse újra ezt az oldalt.", "PE.Controllers.Main.errorUserDrop": "A dokumentum jelenleg nem elérhető", "PE.Controllers.Main.errorUsersExceed": "Túllépte a csomagja által engedélyezett felhasználók számát", "PE.Controllers.Main.errorViewerDisconnect": "A kapcsolat megszakadt. Továbbra is megtekinthető a dokumentum,
de a kapcsolat helyreálltáig és az oldal újratöltéséig nem lehet letölteni.", "PE.Controllers.Main.leavePageText": "El nem mentett változtatások vannak a prezentációban. Kattintson a \"Maradás az oldalon\"-ra majd a \"Mentés\"-re hogy elmentse azokat. Kattintson a \"Az oldal elhagyása\"-ra a változások elvetéséhez.", + "PE.Controllers.Main.leavePageTextOnClose": "A prezentációban lévő összes nem mentett módosítás el fog veszni.
Kattintson a \"Mégse\", majd a \"Mentés\" gombra a mentésükhöz. Kattintson az „OK” gombra az összes nem mentett módosítás elvetéséhez.", "PE.Controllers.Main.loadFontsTextText": "Adatok betöltése...", "PE.Controllers.Main.loadFontsTitleText": "Adatok betöltése", "PE.Controllers.Main.loadFontTextText": "Adatok betöltése...", @@ -423,16 +454,17 @@ "PE.Controllers.Main.splitMaxRowsErrorText": "A sorok száma kevesebb kell legyen, mint %1.", "PE.Controllers.Main.textAnonymous": "Névtelen", "PE.Controllers.Main.textApplyAll": "Alkalmazza az összes egyenletre", - "PE.Controllers.Main.textBuyNow": "Weboldalt meglátogat", + "PE.Controllers.Main.textBuyNow": "Weboldal megnyitása", "PE.Controllers.Main.textChangesSaved": "Minden módosítás elmentve", "PE.Controllers.Main.textClose": "Bezár", "PE.Controllers.Main.textCloseTip": "Kattintson, a tippek bezárásához", "PE.Controllers.Main.textContactUs": "Értékesítés elérhetősége", "PE.Controllers.Main.textConvertEquation": "Ez az egyenlet az egyenletszerkesztő régi verziójával lett létrehozva, amely már nem támogatott. A szerkesztéshez alakítsa az egyenletet Office Math ML formátumra.
Konvertáljuk most?", - "PE.Controllers.Main.textCustomLoader": "Kérjük, vegye figyelembe, hogy az engedély feltételei szerint nem jogosult a betöltő cseréjére.
Kérjük, forduljon értékesítési osztályunkhoz, hogy árajánlatot kapjon.", + "PE.Controllers.Main.textCustomLoader": "Kérjük, vegye figyelembe, hogy a licence feltételei szerint nem jogosult a betöltő cseréjére.
Kérjük, forduljon értékesítési osztályunkhoz, hogy árajánlatot kapjon.", "PE.Controllers.Main.textDisconnect": "A kapcsolat megszakadt", "PE.Controllers.Main.textGuest": "Vendég", "PE.Controllers.Main.textHasMacros": "A fájl automatikus makrókat tartalmaz.
Szeretne makrókat futtatni?", + "PE.Controllers.Main.textLearnMore": "Tudjon meg többet", "PE.Controllers.Main.textLoadingDocument": "Prezentáció betöltése", "PE.Controllers.Main.textLongName": "Írjon be egy 128 karakternél rövidebb nevet.", "PE.Controllers.Main.textNoLicenseTitle": "Elérte a licenckorlátot", @@ -443,6 +475,7 @@ "PE.Controllers.Main.textShape": "Alakzat", "PE.Controllers.Main.textStrict": "Biztonságos mód", "PE.Controllers.Main.textTryUndoRedo": "A Visszavonás / Újra funkciók le vannak tiltva a Gyors együttes szerkesztés módban.
A \"Biztonságos mód\" gombra kattintva válthat a Biztonságos együttes szerkesztés módra, hogy a dokumentumot más felhasználókkal való interferencia nélkül tudja szerkeszteni, mentés után küldve el a módosításokat. A szerkesztési módok között a Speciális beállítások segítségével válthat.", + "PE.Controllers.Main.textTryUndoRedoWarn": "A Visszavonás/Újra funkciók le vannak tiltva a Gyors társszerkesztés módban.", "PE.Controllers.Main.titleLicenseExp": "Lejárt licenc", "PE.Controllers.Main.titleServerVersion": "Szerkesztő frissítve", "PE.Controllers.Main.txtAddFirstSlide": "Kattintson az első dia hozzáadásához", @@ -466,7 +499,8 @@ "PE.Controllers.Main.txtLoading": "Betöltés...", "PE.Controllers.Main.txtMath": "Matematika", "PE.Controllers.Main.txtMedia": "Média", - "PE.Controllers.Main.txtNeedSynchronize": "Frissítés elérhető", + "PE.Controllers.Main.txtNeedSynchronize": "Frissítések érhetőek el", + "PE.Controllers.Main.txtNone": "Nincs", "PE.Controllers.Main.txtPicture": "Kép", "PE.Controllers.Main.txtRectangles": "Négyszögek", "PE.Controllers.Main.txtSeries": "Sorozatok", @@ -702,7 +736,7 @@ "PE.Controllers.Main.unsupportedBrowserErrorText": "A böngészője nem támogatott.", "PE.Controllers.Main.uploadImageExtMessage": "Ismeretlen képformátum.", "PE.Controllers.Main.uploadImageFileCountMessage": "Nincs kép feltöltve.", - "PE.Controllers.Main.uploadImageSizeMessage": "A maximális képmérethatár túllépve.", + "PE.Controllers.Main.uploadImageSizeMessage": "A kép túl nagy. A maximális méret 25 MB.", "PE.Controllers.Main.uploadImageTextText": "Kép feltöltése...", "PE.Controllers.Main.uploadImageTitleText": "Kép feltöltése", "PE.Controllers.Main.waitText": "Kérjük, várjon...", @@ -723,7 +757,7 @@ "PE.Controllers.Toolbar.textEmptyImgUrl": "Meg kell adni a kép URL linkjét.", "PE.Controllers.Toolbar.textFontSizeErr": "A megadott érték helytelen.
Kérjük, adjon meg egy számértéket 1 és 300 között", "PE.Controllers.Toolbar.textFraction": "Törtek", - "PE.Controllers.Toolbar.textFunction": "Függévenyek", + "PE.Controllers.Toolbar.textFunction": "Függvények", "PE.Controllers.Toolbar.textInsert": "Beszúrás", "PE.Controllers.Toolbar.textIntegral": "Integrálok", "PE.Controllers.Toolbar.textLargeOperator": "Nagy operátorok", @@ -741,8 +775,8 @@ "PE.Controllers.Toolbar.txtAccent_Bar": "Sáv", "PE.Controllers.Toolbar.txtAccent_BarBot": "Aláhúzott", "PE.Controllers.Toolbar.txtAccent_BarTop": "Felső sáv", - "PE.Controllers.Toolbar.txtAccent_BorderBox": "Dobozos képlet (pozicionálóval)", - "PE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Dobozos képlet (példa)", + "PE.Controllers.Toolbar.txtAccent_BorderBox": "Dobozos függvény (pozicionálóval)", + "PE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Dobozos függvény (példa)", "PE.Controllers.Toolbar.txtAccent_Check": "Ellenőriz", "PE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Alsó zárójel", "PE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Felső összekötő", @@ -831,7 +865,7 @@ "PE.Controllers.Toolbar.txtFunction_Csch": "Hiperbolikus koszekáns függvény", "PE.Controllers.Toolbar.txtFunction_Custom_1": "Szinusz théta", "PE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", - "PE.Controllers.Toolbar.txtFunction_Custom_3": "Tangens képlet", + "PE.Controllers.Toolbar.txtFunction_Custom_3": "Tangens függvény", "PE.Controllers.Toolbar.txtFunction_Sec": "Szekáns függvény", "PE.Controllers.Toolbar.txtFunction_Sech": "Hiperbolikus szekáns függvény", "PE.Controllers.Toolbar.txtFunction_Sin": "Szinusz függvény", @@ -1072,10 +1106,10 @@ "PE.Views.DateTimeDialog.textUpdate": "Automatikus frissítés", "PE.Views.DateTimeDialog.txtTitle": "Dátum és idő", "PE.Views.DocumentHolder.aboveText": "felett", - "PE.Views.DocumentHolder.addCommentText": "Hozzászólás hozzáadása", + "PE.Views.DocumentHolder.addCommentText": "Megjegyzés hozzáadása", "PE.Views.DocumentHolder.addToLayoutText": "Elrendezés hozzáadása", "PE.Views.DocumentHolder.advancedImageText": "Haladó képbeállítások", - "PE.Views.DocumentHolder.advancedParagraphText": "Haladó szövegbeállítások", + "PE.Views.DocumentHolder.advancedParagraphText": "Haladó bekezdés beállítások", "PE.Views.DocumentHolder.advancedShapeText": "Haladó alakzatbeállítások", "PE.Views.DocumentHolder.advancedTableText": "Haladó táblázatbeállítások", "PE.Views.DocumentHolder.alignmentText": "Elrendezés", @@ -1246,6 +1280,7 @@ "PE.Views.DocumentHolder.txtTop": "Felső", "PE.Views.DocumentHolder.txtUnderbar": "Sáv a szöveg alatt", "PE.Views.DocumentHolder.txtUngroup": "Csoport szétválasztása", + "PE.Views.DocumentHolder.txtWarnUrl": "A link megnyitása káros lehet az eszközére és adataira.
Biztosan folytatja?", "PE.Views.DocumentHolder.vertAlignText": "Függőleges rendezés", "PE.Views.DocumentPreview.goToSlideText": "Diára ugrás", "PE.Views.DocumentPreview.slideIndexText": "Dia {0}. - {1}.", @@ -1264,7 +1299,9 @@ "PE.Views.FileMenu.btnBackCaption": "Fájl helyének megnyitása", "PE.Views.FileMenu.btnCloseMenuCaption": "Menü bezárása", "PE.Views.FileMenu.btnCreateNewCaption": "Új létrehozása", - "PE.Views.FileMenu.btnDownloadCaption": "Letöltés mint...", + "PE.Views.FileMenu.btnDownloadCaption": "Letöltés másként...", + "PE.Views.FileMenu.btnExitCaption": "Kilépés", + "PE.Views.FileMenu.btnFileOpenCaption": "Megnyitás...", "PE.Views.FileMenu.btnHelpCaption": "Súgó...", "PE.Views.FileMenu.btnHistoryCaption": "Verziótörténet", "PE.Views.FileMenu.btnInfoCaption": "Prezentáció infó...", @@ -1279,6 +1316,7 @@ "PE.Views.FileMenu.btnSaveCopyAsCaption": "Másolat mentése mint...", "PE.Views.FileMenu.btnSettingsCaption": "Haladó beállítások...", "PE.Views.FileMenu.btnToEditCaption": "Prezentáció szerkesztése", + "PE.Views.FileMenuPanels.CreateNew.txtBlank": "Üres Prezentáció", "PE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Új létrehozása", "PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Alkalmaz", "PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Szerző hozzáadása", @@ -1286,7 +1324,7 @@ "PE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Applikáció", "PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Szerző", "PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Hozzáférési jogok módosítása", - "PE.Views.FileMenuPanels.DocumentInfo.txtComment": "Hozzászólás", + "PE.Views.FileMenuPanels.DocumentInfo.txtComment": "Megjegyzés", "PE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Létrehozva", "PE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Utoljára módosította", "PE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Utoljára módosított", @@ -1317,7 +1355,7 @@ "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "El kell fogadnia a módosításokat mielőtt meg tudná nézni", "PE.Views.FileMenuPanels.Settings.strFast": "Gyors", "PE.Views.FileMenuPanels.Settings.strFontRender": "Betűtípus ajánlás", - "PE.Views.FileMenuPanels.Settings.strForcesave": "Mindig mentse a szerverre (egyébként mentse a szerverre a dokumentum bezárásakor)", + "PE.Views.FileMenuPanels.Settings.strForcesave": "A Mentés vagy a Ctrl+S gomb megnyomása után adja hozzá a verziót a tárhelyhez", "PE.Views.FileMenuPanels.Settings.strInputMode": "Hieroglifák bekapcsolása", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Makró beállítások", "PE.Views.FileMenuPanels.Settings.strPaste": "Kivágás, másolás és beillesztés", @@ -1325,7 +1363,7 @@ "PE.Views.FileMenuPanels.Settings.strShowChanges": "Valós idejű együttműködés módosításai", "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Helyesírás-ellenőrzés bekapcsolása", "PE.Views.FileMenuPanels.Settings.strStrict": "Biztonságos", - "PE.Views.FileMenuPanels.Settings.strTheme": "Téma", + "PE.Views.FileMenuPanels.Settings.strTheme": "Felhasználói felület témája", "PE.Views.FileMenuPanels.Settings.strUnit": "Mérési egység", "PE.Views.FileMenuPanels.Settings.strZoom": "Alapértelmezett zoom érték", "PE.Views.FileMenuPanels.Settings.text10Minutes": "10 percenként", @@ -1336,7 +1374,7 @@ "PE.Views.FileMenuPanels.Settings.textAutoRecover": "Automatikus visszaállítás", "PE.Views.FileMenuPanels.Settings.textAutoSave": "Automatikus mentés", "PE.Views.FileMenuPanels.Settings.textDisabled": "Letiltott", - "PE.Views.FileMenuPanels.Settings.textForceSave": "Mentés a szerverre", + "PE.Views.FileMenuPanels.Settings.textForceSave": "Köztes verziók mentése", "PE.Views.FileMenuPanels.Settings.textMinute": "Minden perc", "PE.Views.FileMenuPanels.Settings.txtAll": "Mindent mutat", "PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Automatikus javítás beállításai...", @@ -1356,7 +1394,7 @@ "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Helyesírás-ellenőrzés", "PE.Views.FileMenuPanels.Settings.txtStopMacros": "Összes letiltása", "PE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Minden értesítés nélküli makró letiltása", - "PE.Views.FileMenuPanels.Settings.txtWarnMacros": "Értesítés mutatása", + "PE.Views.FileMenuPanels.Settings.txtWarnMacros": "Értesítés megjelenítése", "PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Minden értesítéssel rendelkező makró letiltása", "PE.Views.FileMenuPanels.Settings.txtWin": "Windows-ként", "PE.Views.HeaderFooterDialog.applyAllText": "Mindenre alkalmaz", @@ -1374,13 +1412,13 @@ "PE.Views.HeaderFooterDialog.textTitle": "Lábléc beállítások", "PE.Views.HeaderFooterDialog.textUpdate": "Automatikus frissítés", "PE.Views.HyperlinkSettingsDialog.strDisplay": "Megjelenít", - "PE.Views.HyperlinkSettingsDialog.strLinkTo": "Hivatkozás", + "PE.Views.HyperlinkSettingsDialog.strLinkTo": "Hivatkozás erre", "PE.Views.HyperlinkSettingsDialog.textDefault": "Kiválasztott szövegrészlet", "PE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Itt adja meg a feliratot", "PE.Views.HyperlinkSettingsDialog.textEmptyLink": "Itt adja meg a hivatkozást", "PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Itt adja meg a Gyorsinfót", "PE.Views.HyperlinkSettingsDialog.textExternalLink": "Külső hivatkozás", - "PE.Views.HyperlinkSettingsDialog.textInternalLink": "Csúsztassa be ezt a prezentációt", + "PE.Views.HyperlinkSettingsDialog.textInternalLink": "Dia ebben a prezentációban", "PE.Views.HyperlinkSettingsDialog.textSlides": "Diák", "PE.Views.HyperlinkSettingsDialog.textTipText": "Gyorstipp szöveg", "PE.Views.HyperlinkSettingsDialog.textTitle": "Hivatkozás beállítások", @@ -1390,6 +1428,7 @@ "PE.Views.HyperlinkSettingsDialog.txtNext": "Következő dia", "PE.Views.HyperlinkSettingsDialog.txtNotUrl": "Ennek a mezőnek hivatkozásnak kell lennie a \"http://www.example.com\" formátumban", "PE.Views.HyperlinkSettingsDialog.txtPrev": "Korábbi dia", + "PE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Ez a mező legfeljebb 2083 karakterből állhat", "PE.Views.HyperlinkSettingsDialog.txtSlide": "Dia", "PE.Views.ImageSettings.textAdvanced": "Speciális beállítások megjelenítése", "PE.Views.ImageSettings.textCrop": "Levág", @@ -1432,7 +1471,7 @@ "PE.Views.ImageSettingsAdvanced.textWidth": "Szélesség", "PE.Views.LeftMenu.tipAbout": "Névjegy", "PE.Views.LeftMenu.tipChat": "Chat", - "PE.Views.LeftMenu.tipComments": "Hozzászólások", + "PE.Views.LeftMenu.tipComments": "Megjegyzések", "PE.Views.LeftMenu.tipPlugins": "Kiegészítők", "PE.Views.LeftMenu.tipSearch": "Keresés", "PE.Views.LeftMenu.tipSlides": "Diák", @@ -1491,7 +1530,7 @@ "PE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", "PE.Views.RightMenu.txtChartSettings": "Diagram beállítások", "PE.Views.RightMenu.txtImageSettings": "Képbeállítások", - "PE.Views.RightMenu.txtParagraphSettings": "Szövegbeállítások", + "PE.Views.RightMenu.txtParagraphSettings": "Bekezdés beállítások", "PE.Views.RightMenu.txtShapeSettings": "Alakzat beállítások", "PE.Views.RightMenu.txtSignatureSettings": "Aláírás beállítások", "PE.Views.RightMenu.txtSlideSettings": "Dia beállítása", @@ -1505,7 +1544,7 @@ "PE.Views.ShapeSettings.strPattern": "Minta", "PE.Views.ShapeSettings.strShadow": "Árnyék mutatása", "PE.Views.ShapeSettings.strSize": "Méret", - "PE.Views.ShapeSettings.strStroke": "Körvonal", + "PE.Views.ShapeSettings.strStroke": "Vonal", "PE.Views.ShapeSettings.strTransparency": "Átlátszóság", "PE.Views.ShapeSettings.strType": "Típus", "PE.Views.ShapeSettings.textAdvanced": "Speciális beállítások megjelenítése", @@ -1757,7 +1796,7 @@ "PE.Views.TextArtSettings.strForeground": "Előtér színe", "PE.Views.TextArtSettings.strPattern": "Minta", "PE.Views.TextArtSettings.strSize": "Méret", - "PE.Views.TextArtSettings.strStroke": "Körvonal", + "PE.Views.TextArtSettings.strStroke": "Vonal", "PE.Views.TextArtSettings.strTransparency": "Átlátszóság", "PE.Views.TextArtSettings.strType": "Típus", "PE.Views.TextArtSettings.textAngle": "Szög", @@ -1797,8 +1836,8 @@ "PE.Views.TextArtSettings.txtPapyrus": "Papirusz", "PE.Views.TextArtSettings.txtWood": "Fa", "PE.Views.Toolbar.capAddSlide": "Minden dia", - "PE.Views.Toolbar.capBtnAddComment": "Hozzászólás írása", - "PE.Views.Toolbar.capBtnComment": "Hozzászólás", + "PE.Views.Toolbar.capBtnAddComment": "Megjegyzés hozzáadása", + "PE.Views.Toolbar.capBtnComment": "Megjegyzés", "PE.Views.Toolbar.capBtnDateTime": "Dátum és idő", "PE.Views.Toolbar.capBtnInsHeader": "Lábléc", "PE.Views.Toolbar.capBtnInsSymbol": "Szimbólum", @@ -1864,6 +1903,7 @@ "PE.Views.Toolbar.textTabHome": "Kezdőlap", "PE.Views.Toolbar.textTabInsert": "Beszúr", "PE.Views.Toolbar.textTabProtect": "Védelem", + "PE.Views.Toolbar.textTabTransitions": "Átmenetek", "PE.Views.Toolbar.textTitleError": "Hiba", "PE.Views.Toolbar.textUnderline": "Aláhúzott", "PE.Views.Toolbar.tipAddSlide": "Minden dia", @@ -1924,7 +1964,7 @@ "PE.Views.Toolbar.txtScheme11": "Metro", "PE.Views.Toolbar.txtScheme12": "Modul", "PE.Views.Toolbar.txtScheme13": "Gazdag", - "PE.Views.Toolbar.txtScheme14": "Oriel", + "PE.Views.Toolbar.txtScheme14": "Ablakfülke", "PE.Views.Toolbar.txtScheme15": "Eredet", "PE.Views.Toolbar.txtScheme16": "Papír", "PE.Views.Toolbar.txtScheme17": "Napforduló", @@ -1933,6 +1973,7 @@ "PE.Views.Toolbar.txtScheme2": "Szürkeárnyalatos", "PE.Views.Toolbar.txtScheme20": "Városi", "PE.Views.Toolbar.txtScheme21": "Lelkesedés", + "PE.Views.Toolbar.txtScheme22": "Új Office", "PE.Views.Toolbar.txtScheme3": "Apex", "PE.Views.Toolbar.txtScheme4": "Nézőpont", "PE.Views.Toolbar.txtScheme5": "Polgári", @@ -1942,15 +1983,22 @@ "PE.Views.Toolbar.txtScheme9": "Öntöde", "PE.Views.Toolbar.txtSlideAlign": "Diához igazítás", "PE.Views.Toolbar.txtUngroup": "Csoport szétválasztása", + "PE.Views.Transitions.strDelay": "Késleltetés", "PE.Views.Transitions.strDuration": "Időtartam", + "PE.Views.Transitions.strStartOnClick": "Kattintásra elindít", + "PE.Views.Transitions.textBlack": "Feketén keresztül", + "PE.Views.Transitions.textBottom": "Alsó", "PE.Views.Transitions.textBottomLeft": "Bal alsó", "PE.Views.Transitions.textBottomRight": "Jobb alsó", "PE.Views.Transitions.textClock": "Óra", "PE.Views.Transitions.textClockwise": "Óramutató járásával megegyezően", "PE.Views.Transitions.textCounterclockwise": "Óramutató járásával ellenkezően", "PE.Views.Transitions.textCover": "Fed", - "PE.Views.Transitions.textFade": "Áttűnés", + "PE.Views.Transitions.textFade": "Elhalványít", + "PE.Views.Transitions.textHorizontalIn": "Vízszintes be", + "PE.Views.Transitions.textHorizontalOut": "Vízszintes ki", "PE.Views.Transitions.textLeft": "Bal", + "PE.Views.Transitions.textNone": "Egyik sem", "PE.Views.Transitions.textPush": "Nyom", "PE.Views.Transitions.textRight": "Jobb", "PE.Views.Transitions.textSmoothly": "Simán", @@ -1961,6 +2009,11 @@ "PE.Views.Transitions.textUnCover": "Felfed", "PE.Views.Transitions.textVerticalIn": "Függőlegesen befele", "PE.Views.Transitions.textVerticalOut": "Függőlegesen kifele", + "PE.Views.Transitions.textWedge": "Ék", + "PE.Views.Transitions.textWipe": "Törlés", + "PE.Views.Transitions.textZoom": "Zoom", + "PE.Views.Transitions.textZoomIn": "Nagyítás", + "PE.Views.Transitions.textZoomOut": "Kicsinyítés", "PE.Views.Transitions.textZoomRotate": "Zoom és elforgatás", "PE.Views.Transitions.txtApplyToAll": "Minden diára alkalmaz", "PE.Views.Transitions.txtParameters": "Paraméterek", diff --git a/apps/presentationeditor/main/locale/pl.json b/apps/presentationeditor/main/locale/pl.json index 7c7f2bf28..602e62b5d 100644 --- a/apps/presentationeditor/main/locale/pl.json +++ b/apps/presentationeditor/main/locale/pl.json @@ -7,12 +7,22 @@ "Common.Controllers.ExternalDiagramEditor.warningTitle": "Ostrzeżenie", "Common.define.chartData.textArea": "Obszar", "Common.define.chartData.textBar": "Pasek", + "Common.define.chartData.textBarNormal3dPerspective": "Kolumnowy 3D", + "Common.define.chartData.textBarStacked3d": "Skumulowany kolumnowy 3D", + "Common.define.chartData.textBarStackedPer3d": "100% skumulowany kolumnowy 3D", + "Common.define.chartData.textCharts": "Wykresy", "Common.define.chartData.textColumn": "Kolumna", + "Common.define.chartData.textHBarStacked3d": "Skumulowany słupkowy 3D", + "Common.define.chartData.textHBarStackedPer3d": "100% skumulowany słupkowy 3D", "Common.define.chartData.textLine": "Liniowy", + "Common.define.chartData.textLine3d": "Liniowy 3D", "Common.define.chartData.textPie": "Kołowe", + "Common.define.chartData.textPie3d": "Kołowy 3D", "Common.define.chartData.textPoint": "XY (Punktowy)", "Common.define.chartData.textStock": "Zbiory", "Common.define.chartData.textSurface": "Powierzchnia", + "Common.UI.ButtonColored.textAutoColor": "Automatyczny", + "Common.UI.ButtonColored.textNewColor": "Dodaj Nowy Niestandardowy Kolor", "Common.UI.ComboBorderSize.txtNoBorders": "Bez krawędzi", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez krawędzi", "Common.UI.ComboDataView.emptyComboText": "Brak styli", @@ -36,6 +46,7 @@ "Common.UI.SynchronizeTip.textSynchronize": "Dokument został zmieniony przez innego użytkownika.
Proszę kliknij, aby zapisać swoje zmiany i ponownie załadować zmiany.", "Common.UI.ThemeColorPalette.textStandartColors": "Kolory standardowe", "Common.UI.ThemeColorPalette.textThemeColors": "Kolory motywu", + "Common.UI.Themes.txtThemeClassicLight": "Klasyczny Jasny", "Common.UI.Window.cancelButtonText": "Anulować", "Common.UI.Window.closeButtonText": "Zamknąć", "Common.UI.Window.noButtonText": "Nie", @@ -56,10 +67,12 @@ "Common.Views.About.txtTel": "tel.:", "Common.Views.About.txtVersion": "Wersja", "Common.Views.AutoCorrectDialog.textAdd": "Dodaj", + "Common.Views.AutoCorrectDialog.textApplyText": "Zastosuj Podczas Pisania", "Common.Views.AutoCorrectDialog.textAutoFormat": "Formatuj automatycznie podczas pisania", "Common.Views.AutoCorrectDialog.textBulleted": "Listy punktowane automatycznie", "Common.Views.AutoCorrectDialog.textBy": "Na", "Common.Views.AutoCorrectDialog.textDelete": "Usuń", + "Common.Views.AutoCorrectDialog.textFLSentence": "Zamień pierwszą literę w zdaniach na wielką", "Common.Views.AutoCorrectDialog.textMathCorrect": "Autokorekta matematyczna", "Common.Views.AutoCorrectDialog.textNumbered": "Listy numerowane automatycznie", "Common.Views.AutoCorrectDialog.textRecognized": "Rozpoznawane funkcje", @@ -67,7 +80,11 @@ "Common.Views.AutoCorrectDialog.textReplace": "Zamień", "Common.Views.AutoCorrectDialog.textResetAll": "Przywróć ustawienia domyślne", "Common.Views.AutoCorrectDialog.textTitle": "Autokorekta", + "Common.Views.AutoCorrectDialog.textWarnResetRec": "Każde dodane wyrażenie zostanie usunięte, a te, które były usunięte zostaną przywrócone. Czy chcesz kontynuować?", + "Common.Views.AutoCorrectDialog.warnReset": "Wszelkie dodane autokorekty zostaną usunięte, a dla zmienionych zostaną przywrócone oryginalne wartości. Czy chcesz kontynuować?", "Common.Views.Chat.textSend": "Wyslać", + "Common.Views.Comments.mniAuthorAsc": "Autor od A do Z", + "Common.Views.Comments.mniAuthorDesc": "Autor od Z do A", "Common.Views.Comments.textAdd": "Dodać", "Common.Views.Comments.textAddComment": "Dodaj komentarz", "Common.Views.Comments.textAddCommentToDoc": "Dodaj komentarz do dokumentu", @@ -75,6 +92,7 @@ "Common.Views.Comments.textAnonym": "Gość", "Common.Views.Comments.textCancel": "Anulować", "Common.Views.Comments.textClose": "Zamknąć", + "Common.Views.Comments.textClosePanel": "Zamknij komentarze", "Common.Views.Comments.textComments": "Komentarze", "Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEnterCommentHint": "Wprowadź twój komentarz tutaj", @@ -95,6 +113,7 @@ "Common.Views.ExternalDiagramEditor.textSave": "Zapisz i wyjdź", "Common.Views.ExternalDiagramEditor.textTitle": "Edytor wykresu", "Common.Views.Header.labelCoUsersDescr": "Dokument jest obecnie edytowany przez kilku użytkowników.", + "Common.Views.Header.textAdvSettings": "Ustawienia zaawansowane", "Common.Views.Header.textBack": "Przejdź do Dokumentów", "Common.Views.Header.textCompactView": "Ukryj pasek narzędzi", "Common.Views.Header.textHideLines": "Ukryj linijki", @@ -113,6 +132,7 @@ "Common.Views.Header.tipViewUsers": "Wyświetl użytkowników i zarządzaj prawami dostępu do dokumentu", "Common.Views.Header.txtAccessRights": "Zmień prawa dostępu", "Common.Views.Header.txtRename": "Zmień nazwę", + "Common.Views.History.textCloseHistory": "Zamknij Historię", "Common.Views.ImageFromUrlDialog.textUrl": "Wklej link URL do obrazu:", "Common.Views.ImageFromUrlDialog.txtEmpty": "To pole jest wymagane", "Common.Views.ImageFromUrlDialog.txtNotUrl": "To pole powinno być adresem URL w formacie \"http://www.example.com\"", @@ -124,8 +144,12 @@ "Common.Views.InsertTableDialog.txtTitle": "Rozmiar tablicy", "Common.Views.InsertTableDialog.txtTitleSplit": "Podziel komórkę", "Common.Views.LanguageDialog.labelSelect": "Wybierz język dokumentu", + "Common.Views.ListSettingsDialog.textBulleted": "Punktowane", + "Common.Views.ListSettingsDialog.tipChange": "Zmień znacznik", + "Common.Views.ListSettingsDialog.txtBullet": "Znak punktora", "Common.Views.ListSettingsDialog.txtOfText": "% tekstu", "Common.Views.ListSettingsDialog.txtSymbol": "Symbole", + "Common.Views.OpenDialog.closeButtonText": "Zamknij Plik", "Common.Views.OpenDialog.txtEncoding": "Kodowanie", "Common.Views.OpenDialog.txtIncorrectPwd": "Hasło jest nieprawidłowe.", "Common.Views.OpenDialog.txtOpenFile": "Wprowadź hasło, aby otworzyć plik", @@ -139,19 +163,35 @@ "Common.Views.Plugins.textLoading": "Ładowanie", "Common.Views.Plugins.textStart": "Start", "Common.Views.Plugins.textStop": "Zatrzymać", + "Common.Views.Protection.hintPwd": "Zmień lub usuń hasło", + "Common.Views.Protection.hintSignature": "Dodaj podpis cyfrowy lub linię do podpisu", "Common.Views.Protection.txtAddPwd": "Dodaj hasło", + "Common.Views.Protection.txtChangePwd": "Zmień hasło", "Common.Views.Protection.txtInvisibleSignature": "Dodaj podpis cyfrowy", + "Common.Views.Protection.txtSignatureLine": "Dodaj linię do podpisu", "Common.Views.RenameDialog.textName": "Nazwa pliku", "Common.Views.RenameDialog.txtInvalidName": "Nazwa pliku nie może zawierać żadnego z następujących znaków:", + "Common.Views.ReviewChanges.tipAcceptCurrent": "Zaakceptuj bieżącą zmianę", "Common.Views.ReviewChanges.txtAccept": "Akceptuj", "Common.Views.ReviewChanges.txtAcceptAll": "Zaakceptuj wszystkie zmiany", "Common.Views.ReviewChanges.txtAcceptChanges": "Zaakceptuj zmiany", + "Common.Views.ReviewChanges.txtAcceptCurrent": "Zaakceptuj Bieżącą Zmianę", + "Common.Views.ReviewChanges.txtChat": "Czat", + "Common.Views.ReviewChanges.txtClose": "Zamknij", + "Common.Views.ReviewChanges.txtFinal": "Wszystkie zmiany zaakceptowane (Podgląd)", + "Common.Views.ReviewChanges.txtMarkup": "Wszystkie zmiany (Edycja)", "Common.Views.ReviewChanges.txtMarkupCap": "Zmiany", + "Common.Views.ReviewChanges.txtOriginal": "Wszystkie zmiany odrzucone (Podgląd)", "Common.Views.ReviewPopover.textAdd": "Dodaj", "Common.Views.ReviewPopover.textAddReply": "Dodaj odpowiedź", + "Common.Views.ReviewPopover.textCancel": "Anuluj", + "Common.Views.ReviewPopover.textClose": "Zamknij", "Common.Views.ReviewPopover.textMentionNotify": "+wzmianka powiadomi użytkownika e-mailem", "Common.Views.SaveAsDlg.textTitle": "Folder do zapisu", "Common.Views.SignDialog.textBold": "Pogrubienie", + "Common.Views.SignDialog.textCertificate": "Certyfikat", + "Common.Views.SignDialog.textChange": "Zmień", + "Common.Views.SignSettingsDialog.textAllowComment": "Zezwól podpisującemu na dodanie komentarza w oknie podpisu", "Common.Views.SymbolTableDialog.textCharacter": "Znak", "Common.Views.SymbolTableDialog.textCode": "Nazwa Unicode", "Common.Views.SymbolTableDialog.textCopyright": "Znak zastrzeżenia prawa autorskiego", @@ -199,7 +239,10 @@ "PE.Controllers.Main.errorDatabaseConnection": "Błąd zewnętrzny.
Błąd połączenia z bazą danych. W przypadku wystąpienia błędu należy skontaktować się z pomocą techniczną.", "PE.Controllers.Main.errorDataRange": "Błędny zakres danych.", "PE.Controllers.Main.errorDefaultMessage": "Kod błędu: %1", + "PE.Controllers.Main.errorEditingDownloadas": "Wystąpił błąd podczas pracy z dokumentem.
Użyj opcji \"Pobierz jako...\", aby zapisać kopię zapasową pliku na dysku twardym komputera.", + "PE.Controllers.Main.errorEditingSaveas": "Wystąpił błąd podczas pracy z dokumentem.
Użyj opcji \"Zapisz kopię jako...\", aby zapisać kopię zapasową pliku na dysku twardym komputera.", "PE.Controllers.Main.errorFilePassProtect": "Dokument jest chroniony hasłem i nie można go otworzyć.", + "PE.Controllers.Main.errorForceSave": "Wystąpił błąd podczas zapisywania pliku. Użyj opcji \"Pobierz jako\", aby zapisać plik na dysku twardym komputera lub spróbuj zapisać plik ponownie poźniej.", "PE.Controllers.Main.errorKeyEncrypt": "Nieznany deskryptor klucza", "PE.Controllers.Main.errorKeyExpire": "Okres ważności deskryptora klucza wygasł", "PE.Controllers.Main.errorProcessSaveResult": "Zapisywanie nie powiodło się.", @@ -215,6 +258,7 @@ "PE.Controllers.Main.errorUsersExceed": "Przekroczono liczbę dozwolonych użytkowników określonych przez plan cenowy wersji", "PE.Controllers.Main.errorViewerDisconnect": "Połączenie zostało utracone. Nadal możesz przeglądać dokument, ale nie będziesz mógł pobrać ani wydrukować dokumentu do momentu przywrócenia połączenia.", "PE.Controllers.Main.leavePageText": "W tej prezentacji masz niezapisane zmiany. Kliknij przycisk \"Zostań na te stronie\", a następnie \"Zapisz\", aby je zapisać. Kliknij przycisk \"Pozostaw tę stronę\", aby usunąć wszystkie niezapisane zmiany.", + "PE.Controllers.Main.leavePageTextOnClose": "Wszystkie niezapisane zmiany zostaną utracone.
Kliknij \"Anuluj\", a następnie \"Zapisz\" aby je zapisać. Kliknij \"OK\" aby odrzucić wszystkie niezapisane zmiany.", "PE.Controllers.Main.loadFontsTextText": "Ładowanie danych...", "PE.Controllers.Main.loadFontsTitleText": "Ładowanie danych", "PE.Controllers.Main.loadFontTextText": "Ładowanie danych...", @@ -243,8 +287,10 @@ "PE.Controllers.Main.splitMaxColsErrorText": "Liczba kolumn musi być mniejsza niż %1.", "PE.Controllers.Main.splitMaxRowsErrorText": "Liczba wierszy musi być mniejsza niż %1.", "PE.Controllers.Main.textAnonymous": "Anonimowy użytkownik ", + "PE.Controllers.Main.textApplyAll": "Zastosuj do wszystkich równań", "PE.Controllers.Main.textBuyNow": "Odwiedź stronę web", "PE.Controllers.Main.textChangesSaved": "Wszystkie zmiany zapisane", + "PE.Controllers.Main.textClose": "Zamknij", "PE.Controllers.Main.textCloseTip": "Kliknij, żeby zamknąć wskazówkę", "PE.Controllers.Main.textContactUs": "Skontaktuj się z działem sprzedaży", "PE.Controllers.Main.textLoadingDocument": "Ładowanie prezentacji", @@ -256,6 +302,8 @@ "PE.Controllers.Main.textTryUndoRedoWarn": "Funkcje Cofnij/Ponów są wyłączone w trybie Szybkim współtworzenia.", "PE.Controllers.Main.titleLicenseExp": "Upłynął okres ważności licencji", "PE.Controllers.Main.titleServerVersion": "Zaktualizowano edytor", + "PE.Controllers.Main.txtAddFirstSlide": "Kliknij, aby dodać pierwszy slajd", + "PE.Controllers.Main.txtAddNotes": "Kliknij aby dodać notatki", "PE.Controllers.Main.txtArt": "Twój tekst tutaj", "PE.Controllers.Main.txtBasicShapes": "Kształty podstawowe", "PE.Controllers.Main.txtButtons": "Przyciski", @@ -278,17 +326,39 @@ "PE.Controllers.Main.txtPicture": "Obraz", "PE.Controllers.Main.txtRectangles": "Prostokąty", "PE.Controllers.Main.txtSeries": "Serie", + "PE.Controllers.Main.txtShape_actionButtonBackPrevious": "Przycisk wstecz lub wcześniej", + "PE.Controllers.Main.txtShape_actionButtonBeginning": "Przycisk Rozpoczęcia", + "PE.Controllers.Main.txtShape_actionButtonBlank": "Pusty Przycisk", + "PE.Controllers.Main.txtShape_arc": "Łuk", + "PE.Controllers.Main.txtShape_bentArrow": "Strzałka Wygięta", "PE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Łącznik: łamany z podwójną strzałką", + "PE.Controllers.Main.txtShape_bentUpArrow": "Strzałka Wygięta w Górę", + "PE.Controllers.Main.txtShape_blockArc": "Łuk Blokowy", "PE.Controllers.Main.txtShape_bracePair": "Para nawiasów klamrowych", + "PE.Controllers.Main.txtShape_can": "Cylinder", + "PE.Controllers.Main.txtShape_chevron": "Strzałka Pagon", + "PE.Controllers.Main.txtShape_circularArrow": "Strzałka Kolista", + "PE.Controllers.Main.txtShape_cloud": "Chmura", "PE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Łącznik: zakrzywiony z podwójną strzałką", "PE.Controllers.Main.txtShape_donut": "Okrąg: pusty", "PE.Controllers.Main.txtShape_doubleWave": "Podwójna fala", "PE.Controllers.Main.txtShape_horizontalScroll": "Zwój: poziomy", + "PE.Controllers.Main.txtShape_lineWithArrow": "Strzałka", "PE.Controllers.Main.txtShape_lineWithTwoArrows": "Strzałka liniowa: podwójna", "PE.Controllers.Main.txtShape_mathMinus": "Minus", "PE.Controllers.Main.txtShape_mathMultiply": "Znak mnożenia", "PE.Controllers.Main.txtShape_moon": "Księżyc", "PE.Controllers.Main.txtShape_noSmoking": "Symbol \"nie\"", + "PE.Controllers.Main.txtShape_star10": "Gwiazda 10-ramienna", + "PE.Controllers.Main.txtShape_star12": "Gwiazda 12-ramienna", + "PE.Controllers.Main.txtShape_star16": "Gwiazda 16-ramienna", + "PE.Controllers.Main.txtShape_star24": "Gwiazda 24-ramienna", + "PE.Controllers.Main.txtShape_star32": "Gwiazda 32-ramienna", + "PE.Controllers.Main.txtShape_star4": "Gwiazda 4-ramienna", + "PE.Controllers.Main.txtShape_star5": "Gwiazda 5-ramienna", + "PE.Controllers.Main.txtShape_star6": "Gwiazda 6-ramienna", + "PE.Controllers.Main.txtShape_star7": "Gwiazda 7-ramienna", + "PE.Controllers.Main.txtShape_star8": "Gwiazda 8-ramienna", "PE.Controllers.Main.txtShape_wave": "Fala", "PE.Controllers.Main.txtSldLtTBlank": "Pusty", "PE.Controllers.Main.txtSldLtTChart": "Wykres", @@ -331,6 +401,9 @@ "PE.Controllers.Main.txtSlideText": "Treść slajdu", "PE.Controllers.Main.txtSlideTitle": "Tytuł slajdu", "PE.Controllers.Main.txtStarsRibbons": "Gwiazdy i wstążki", + "PE.Controllers.Main.txtTheme_basic": "Podstawowy", + "PE.Controllers.Main.txtTheme_blank": "Pusty", + "PE.Controllers.Main.txtTheme_classic": "Klasyczny", "PE.Controllers.Main.txtXAxis": "Oś X", "PE.Controllers.Main.txtYAxis": "Oś Y", "PE.Controllers.Main.unknownErrorText": "Nieznany błąd.", @@ -695,6 +768,7 @@ "PE.Views.ChartSettingsAdvanced.textTitle": "Wykres - zaawansowane ustawienia", "PE.Views.DocumentHolder.aboveText": "Nad", "PE.Views.DocumentHolder.addCommentText": "Dodaj komentarz", + "PE.Views.DocumentHolder.addToLayoutText": "Dodaj do rozkładu", "PE.Views.DocumentHolder.advancedImageText": "Zaawansowane ustawienia obrazu", "PE.Views.DocumentHolder.advancedParagraphText": "Zaawansowane ustawienia tekstu", "PE.Views.DocumentHolder.advancedShapeText": "Zaawansowane ustawienia kształtu", @@ -849,6 +923,7 @@ "PE.Views.DocumentHolder.txtTop": "Góra", "PE.Views.DocumentHolder.txtUnderbar": "Pasek pod tekstem", "PE.Views.DocumentHolder.txtUngroup": "Rozgrupuj", + "PE.Views.DocumentHolder.txtWarnUrl": "Kliknięcie tego linku może być szkodliwe dla urządzenia i danych.
Czy na pewno chcesz kontynuować?", "PE.Views.DocumentHolder.vertAlignText": "Wyrównaj pionowo", "PE.Views.DocumentPreview.goToSlideText": "Idź do slajdu", "PE.Views.DocumentPreview.slideIndexText": "Slajd {0} z {1}", @@ -880,8 +955,11 @@ "PE.Views.FileMenu.btnSaveCopyAsCaption": "Zapisz kopię jako…", "PE.Views.FileMenu.btnSettingsCaption": "Zaawansowane ustawienia...", "PE.Views.FileMenu.btnToEditCaption": "Edytuj prezentację", + "PE.Views.FileMenuPanels.CreateNew.txtBlank": "Pusta Prezentacja", + "PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Zastosuj", "PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Dodaj autora", "PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Dodaj tekst", + "PE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Aplikacja", "PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor", "PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Zmień prawa dostępu", "PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokalizacja", @@ -922,12 +1000,16 @@ "PE.Views.FileMenuPanels.Settings.txtInch": "Cale", "PE.Views.FileMenuPanels.Settings.txtInput": "Alternatywne wejście", "PE.Views.FileMenuPanels.Settings.txtLast": "Pokaż ostatni", + "PE.Views.FileMenuPanels.Settings.txtMac": "jako OS X", "PE.Views.FileMenuPanels.Settings.txtProofing": "Sprawdzanie", "PE.Views.FileMenuPanels.Settings.txtPt": "Punkt", "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Sprawdzanie pisowni", "PE.Views.FileMenuPanels.Settings.txtStopMacros": "Wyłącz Wszystkie", "PE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Wyłącz wszystkie makra bez powiadomienia", "PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Wyłącz wszystkie makra z powiadomieniem", + "PE.Views.FileMenuPanels.Settings.txtWin": "jako Windows", + "PE.Views.HeaderFooterDialog.applyAllText": "Zastosuj do wszystkich", + "PE.Views.HeaderFooterDialog.applyText": "Zastosuj", "PE.Views.HyperlinkSettingsDialog.strDisplay": "Pokaż", "PE.Views.HyperlinkSettingsDialog.strLinkTo": "Link do", "PE.Views.HyperlinkSettingsDialog.textDefault": "Wybrany fragment tekstu", @@ -960,6 +1042,7 @@ "PE.Views.ImageSettingsAdvanced.textAltDescription": "Opis", "PE.Views.ImageSettingsAdvanced.textAltTip": "Alternatywna prezentacja wizualnych informacji o obiektach, które będą czytane osobom z wadami wzroku lub zmysłu poznawczego, aby lepiej zrozumieć, jakie informacje znajdują się na obrazie, kształtach, wykresie lub tabeli.", "PE.Views.ImageSettingsAdvanced.textAltTitle": "Tytuł", + "PE.Views.ImageSettingsAdvanced.textAngle": "Kąt", "PE.Views.ImageSettingsAdvanced.textHeight": "Wysokość", "PE.Views.ImageSettingsAdvanced.textHorizontally": "Poziomo ", "PE.Views.ImageSettingsAdvanced.textKeepRatio": "Stałe proporcje", @@ -993,6 +1076,8 @@ "PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Podwójne przekreślenie", "PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Lewy", "PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Prawy", + "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Po", + "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Przed", "PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Czcionka", "PE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Wcięcia i miejsca docelowe", "PE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Małe litery", @@ -1012,6 +1097,7 @@ "PE.Views.ParagraphSettingsAdvanced.textTabPosition": "Pozycja", "PE.Views.ParagraphSettingsAdvanced.textTabRight": "Prawy", "PE.Views.ParagraphSettingsAdvanced.textTitle": "Akapit - Ustawienia zaawansowane", + "PE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automatyczny", "PE.Views.RightMenu.txtChartSettings": "Ustawienia wykresu", "PE.Views.RightMenu.txtImageSettings": "Ustawienia obrazu", "PE.Views.RightMenu.txtParagraphSettings": "Ustawienia tekstu", @@ -1030,6 +1116,7 @@ "PE.Views.ShapeSettings.strTransparency": "Nieprzezroczystość", "PE.Views.ShapeSettings.strType": "Typ", "PE.Views.ShapeSettings.textAdvanced": "Pokaż ustawienia zaawansowane", + "PE.Views.ShapeSettings.textAngle": "Kąt", "PE.Views.ShapeSettings.textBorderSizeErr": "Wprowadzona wartość jest nieprawidłowa.
Wprowadź wartość w zakresie od 0 do 1584 pt.", "PE.Views.ShapeSettings.textColor": "Kolor wypełnienia", "PE.Views.ShapeSettings.textDirection": "Kierunek", @@ -1068,7 +1155,9 @@ "PE.Views.ShapeSettingsAdvanced.textAltDescription": "Opis", "PE.Views.ShapeSettingsAdvanced.textAltTip": "Alternatywna prezentacja wizualnych informacji o obiektach, które będą czytane osobom z wadami wzroku lub zmysłu poznawczego, aby lepiej zrozumieć, jakie informacje znajdują się na obrazie, kształtach, wykresie lub tabeli.", "PE.Views.ShapeSettingsAdvanced.textAltTitle": "Tytuł", + "PE.Views.ShapeSettingsAdvanced.textAngle": "Kąt", "PE.Views.ShapeSettingsAdvanced.textArrows": "Strzałki", + "PE.Views.ShapeSettingsAdvanced.textAutofit": "Autodopasowanie", "PE.Views.ShapeSettingsAdvanced.textBeginSize": "Początkowy rozmiar", "PE.Views.ShapeSettingsAdvanced.textBeginStyle": "Styl początkowy", "PE.Views.ShapeSettingsAdvanced.textBevel": "Ukos", @@ -1102,6 +1191,7 @@ "PE.Views.SlideSettings.strForeground": "Kolor pierwszoplanowy", "PE.Views.SlideSettings.strPattern": "Wzór", "PE.Views.SlideSettings.textAdvanced": "Pokaż ustawienia zaawansowane", + "PE.Views.SlideSettings.textAngle": "Kąt", "PE.Views.SlideSettings.textColor": "Kolor wypełnienia", "PE.Views.SlideSettings.textDirection": "Kierunek", "PE.Views.SlideSettings.textEmptyPattern": "Brak wzorca", @@ -1182,6 +1272,7 @@ "PE.Views.TableSettings.textBanded": "Na przemian", "PE.Views.TableSettings.textBorderColor": "Kolor", "PE.Views.TableSettings.textBorders": "Style obramowań", + "PE.Views.TableSettings.textCellSize": "Rozmiar Komórki", "PE.Views.TableSettings.textColumns": "Kolumny", "PE.Views.TableSettings.textEdit": "Wiersze i Kolumny", "PE.Views.TableSettings.textEmptyTemplate": "Brak szablonów", @@ -1229,6 +1320,7 @@ "PE.Views.TextArtSettings.strStroke": "Obrys", "PE.Views.TextArtSettings.strTransparency": "Nieprzezroczystość", "PE.Views.TextArtSettings.strType": "Typ", + "PE.Views.TextArtSettings.textAngle": "Kąt", "PE.Views.TextArtSettings.textBorderSizeErr": "Wprowadzona wartość jest nieprawidłowa.
Wprowadź wartość w zakresie od 0 do 1584 pt.", "PE.Views.TextArtSettings.textColor": "Kolor wypełnienia", "PE.Views.TextArtSettings.textDirection": "Kierunek", @@ -1249,6 +1341,7 @@ "PE.Views.TextArtSettings.textTexture": "Z tekstury", "PE.Views.TextArtSettings.textTile": "Płytka", "PE.Views.TextArtSettings.textTransform": "Przekształcenie", + "PE.Views.TextArtSettings.tipAddGradientPoint": "Dodaj punkt gradientu", "PE.Views.TextArtSettings.txtBrownPaper": "Papier pakowy", "PE.Views.TextArtSettings.txtCanvas": "Płótno", "PE.Views.TextArtSettings.txtCarton": "Karton", @@ -1265,6 +1358,7 @@ "PE.Views.Toolbar.capBtnAddComment": "Dodaj komentarz", "PE.Views.Toolbar.capBtnComment": "Komentarz", "PE.Views.Toolbar.capBtnInsSymbol": "Symbole", + "PE.Views.Toolbar.capInsertAudio": "Dźwięk", "PE.Views.Toolbar.capInsertChart": "Wykres", "PE.Views.Toolbar.capInsertEquation": "Równanie", "PE.Views.Toolbar.capInsertHyperlink": "Hiperlink", @@ -1275,6 +1369,7 @@ "PE.Views.Toolbar.capTabFile": "Plik", "PE.Views.Toolbar.capTabHome": "Narzędzia główne", "PE.Views.Toolbar.capTabInsert": "Wstawianie", + "PE.Views.Toolbar.mniCapitalizeWords": "Wyrazy Z Dużej Litery", "PE.Views.Toolbar.mniCustomTable": "Wstaw tabelę niestandardową", "PE.Views.Toolbar.mniImageFromFile": "Obraz z pliku", "PE.Views.Toolbar.mniImageFromUrl": "Obraz z URL", @@ -1315,6 +1410,7 @@ "PE.Views.Toolbar.textUnderline": "Podkreśl", "PE.Views.Toolbar.tipAddSlide": "Dodaj slajd", "PE.Views.Toolbar.tipBack": "Powrót", + "PE.Views.Toolbar.tipChangeCase": "Zmień wielkość liter", "PE.Views.Toolbar.tipChangeChart": "Zmień typ wykresu", "PE.Views.Toolbar.tipChangeSlide": "Zmień układ slajdów", "PE.Views.Toolbar.tipClearStyle": "Wyczyść style", @@ -1357,6 +1453,7 @@ "PE.Views.Toolbar.txtDistribHor": "Rozdziel poziomo", "PE.Views.Toolbar.txtDistribVert": "Rozdziel pionowo", "PE.Views.Toolbar.txtGroup": "Grupa", + "PE.Views.Toolbar.txtObjectsAlign": "Wyrównaj Zaznaczone Obiekty", "PE.Views.Toolbar.txtScheme1": "Biuro", "PE.Views.Toolbar.txtScheme10": "Mediana", "PE.Views.Toolbar.txtScheme11": "Metro", @@ -1378,9 +1475,11 @@ "PE.Views.Toolbar.txtScheme7": "Kapitał", "PE.Views.Toolbar.txtScheme8": "Przepływ", "PE.Views.Toolbar.txtScheme9": "Odlewnia", + "PE.Views.Toolbar.txtSlideAlign": "Wyrównaj do slajdu", "PE.Views.Toolbar.txtUngroup": "Rozgrupuj", "PE.Views.Transitions.strDelay": "Opóźnienie", "PE.Views.Transitions.textBlack": "Przez czarne", + "PE.Views.Transitions.textBottom": "Dół", "PE.Views.Transitions.textBottomLeft": "Na dole po lewej", "PE.Views.Transitions.textBottomRight": "Prawy dolny", "PE.Views.Transitions.textClock": "Zegar", diff --git a/apps/presentationeditor/main/locale/pt.json b/apps/presentationeditor/main/locale/pt.json index ef26116c7..635a62d56 100644 --- a/apps/presentationeditor/main/locale/pt.json +++ b/apps/presentationeditor/main/locale/pt.json @@ -47,6 +47,43 @@ "Common.define.chartData.textScatterSmoothMarker": "Dispersão com linhas suaves e marcadores", "Common.define.chartData.textStock": "Gráfico de ações", "Common.define.chartData.textSurface": "Superfície", + "Common.define.effectData.textAcross": "Através", + "Common.define.effectData.textAppear": "Aparecer", + "Common.define.effectData.textArcDown": "Arco para baixo", + "Common.define.effectData.textArcLeft": "Arco Esquerdo", + "Common.define.effectData.textArcRight": "Arco direito", + "Common.define.effectData.textArcUp": "Arco para cima", + "Common.define.effectData.textBasic": "Básico", + "Common.define.effectData.textBasicSwivel": "Giratório Básico", + "Common.define.effectData.textBasicZoom": "Zoom básico", + "Common.define.effectData.textBean": "Feijão", + "Common.define.effectData.textBlinds": "Persianas", + "Common.define.effectData.textBlink": "Piscar", + "Common.define.effectData.textBoldFlash": "Flash arrojado", + "Common.define.effectData.textBoldReveal": "Revelação ousada", + "Common.define.effectData.textBoomerang": "Bumerangue", + "Common.define.effectData.textBounce": "Quicar", + "Common.define.effectData.textBounceLeft": "Salto à esquerda", + "Common.define.effectData.textBounceRight": "Saltar para a direita", + "Common.define.effectData.textBox": "Caixa", + "Common.define.effectData.textBrushColor": "Cor do pincel", + "Common.define.effectData.textCircle": "Círculo", + "Common.define.effectData.textCollapse": "Colapso", + "Common.define.effectData.textContrast": "Contraste", + "Common.define.effectData.textCredits": "Créditos", + "Common.define.effectData.textLeftDown": "Esquerda para baixo", + "Common.define.effectData.textLeftUp": "Esquerda para cima", + "Common.define.effectData.textPointStar4": "Estrela de 4 pontos", + "Common.define.effectData.textPointStar5": "Estrela de 5 pontos", + "Common.define.effectData.textPointStar6": "Estrela de 6 pontos", + "Common.define.effectData.textPointStar8": "Estrela de 8 pontos", + "Common.define.effectData.textRightDown": "Direita para baixo", + "Common.define.effectData.textRightUp": "Direita para cima", + "Common.define.effectData.textSpoke1": "1 Falou", + "Common.define.effectData.textSpoke2": "2 Falaram", + "Common.define.effectData.textSpoke3": "3 Falaram", + "Common.define.effectData.textSpoke4": "4 Falaram", + "Common.define.effectData.textSpoke8": "8 Falaram", "Common.Translation.warnFileLocked": "Documento está em uso por outra aplicação. Você pode continuar editando e salvá-lo como uma cópia.", "Common.Translation.warnFileLockedBtnEdit": "Criar uma cópia", "Common.Translation.warnFileLockedBtnView": "Aberto para visualização", @@ -104,6 +141,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Listas com marcadores automáticas", "Common.Views.AutoCorrectDialog.textBy": "Por", "Common.Views.AutoCorrectDialog.textDelete": "Excluir", + "Common.Views.AutoCorrectDialog.textFLCells": "Capitalizar a primeira letra das células da tabela", "Common.Views.AutoCorrectDialog.textFLSentence": "Capitalizar a primeira carta de sentenças", "Common.Views.AutoCorrectDialog.textHyperlink": "Internet e caminhos de rede com hyperlinks", "Common.Views.AutoCorrectDialog.textHyphens": "Hífens (--) com traço (-)", @@ -135,6 +173,7 @@ "Common.Views.Comments.textAddComment": "Adicionar", "Common.Views.Comments.textAddCommentToDoc": "Adicionar comentário ao documento", "Common.Views.Comments.textAddReply": "Adicionar resposta", + "Common.Views.Comments.textAll": "Tudo", "Common.Views.Comments.textAnonym": "Visitante", "Common.Views.Comments.textCancel": "Cancelar", "Common.Views.Comments.textClose": "Fechar", @@ -750,6 +789,7 @@ "PE.Controllers.Main.warnNoLicense": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.
Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", "PE.Controllers.Main.warnNoLicenseUsers": "Você atingiu o limite de usuários para editores %1.
Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", "PE.Controllers.Main.warnProcessRightsChange": "Foi negado a você o direito de editar o arquivo.", + "PE.Controllers.Statusbar.textDisconnect": "A conexão foi perdida
Tentando conectar. Verifique as configurações de conexão.", "PE.Controllers.Statusbar.zoomText": "Zoom {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.
The text style will be displayed using one of the device fonts, the saved font will be used when it is available.
Do you want to continue?", "PE.Controllers.Toolbar.textAccent": "Destaques", @@ -1086,6 +1126,9 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "PE.Controllers.Viewport.textFitPage": "Ajustar slide", "PE.Controllers.Viewport.textFitWidth": "Ajustar à Largura", + "PE.Views.Animation.textStartAfterPrevious": "Após o anterior", + "PE.Views.Animation.txtAddEffect": "Adicionar animação", + "PE.Views.Animation.txtAnimationPane": "Painel de animação", "PE.Views.ChartSettings.textAdvanced": "Exibir configurações avançadas", "PE.Views.ChartSettings.textChartType": "Alterar tipo de gráfico", "PE.Views.ChartSettings.textEditData": "Editar dados", @@ -1898,6 +1941,7 @@ "PE.Views.Toolbar.textStrikeout": "Riscado", "PE.Views.Toolbar.textSubscript": "Subscrito", "PE.Views.Toolbar.textSuperscript": "Sobrescrito", + "PE.Views.Toolbar.textTabAnimation": "Animação", "PE.Views.Toolbar.textTabCollaboration": "Colaboração", "PE.Views.Toolbar.textTabFile": "Arquivo", "PE.Views.Toolbar.textTabHome": "Página Inicial", @@ -2018,5 +2062,6 @@ "PE.Views.Transitions.txtApplyToAll": "Aplicar a todos os slides", "PE.Views.Transitions.txtParameters": "Parâmetros", "PE.Views.Transitions.txtPreview": "Pré-visualizar", - "PE.Views.Transitions.txtSec": "S" + "PE.Views.Transitions.txtSec": "S", + "PE.Views.ViewTab.textAlwaysShowToolbar": "Sempre mostrar a barra de ferramentas" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/tr.json b/apps/presentationeditor/main/locale/tr.json index b69fc37dc..86396b6b9 100644 --- a/apps/presentationeditor/main/locale/tr.json +++ b/apps/presentationeditor/main/locale/tr.json @@ -47,6 +47,29 @@ "Common.define.chartData.textScatterSmoothMarker": "Yumuşak çizgiler ve işaretleyicilerle dağılım", "Common.define.chartData.textStock": "Stok Grafiği", "Common.define.chartData.textSurface": "Yüzey", + "Common.define.effectData.textAcross": "Karşısında", + "Common.define.effectData.textAppear": "Görün", + "Common.define.effectData.textArcDown": "Aşağı Yay", + "Common.define.effectData.textArcLeft": "Sol Yay", + "Common.define.effectData.textArcRight": "Sağ Yay", + "Common.define.effectData.textArcUp": "Yukarı Yay", + "Common.define.effectData.textBasic": "Temel", + "Common.define.effectData.textBasicSwivel": "Temel Döner", + "Common.define.effectData.textBasicZoom": "Temel Yakınlaştırma", + "Common.define.effectData.textBean": "Fasulye", + "Common.define.effectData.textBlinds": "Güneşlik", + "Common.define.effectData.textBlink": "Parlama", + "Common.define.effectData.textBoldFlash": "Kalın Flaş", + "Common.define.effectData.textLeftDown": "Sol Alt", + "Common.define.effectData.textLeftUp": "Sol Üst", + "Common.define.effectData.textRightDown": "Sağ Alt", + "Common.define.effectData.textRightUp": "Sağ Üst", + "Common.define.effectData.textSpoke1": "1 Konuştu", + "Common.define.effectData.textSpoke2": "2 Konuştu", + "Common.define.effectData.textSpoke3": "3 Konuştu", + "Common.define.effectData.textSpoke4": "4 Konuştu", + "Common.define.effectData.textSpoke8": "8 Konuştu", + "Common.define.effectData.textZoom": "Yakınlaştırma", "Common.Translation.warnFileLocked": "Dosya başka bir uygulamada düzenleniyor. Düzenlemeye devam edebilir ve kopya olarak kaydedebilirsiniz.", "Common.Translation.warnFileLockedBtnEdit": "Kopya oluştur", "Common.Translation.warnFileLockedBtnView": "Görüntülemek için aç", @@ -61,6 +84,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Yeni", "Common.UI.ExtendedColorDialog.textRGBErr": "Girilen değer yanlış.
Lütfen 0 ile 255 arasında sayısal değer giriniz.", "Common.UI.HSBColorPicker.textNoColor": "Renk yok", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Parolayı gizle", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Parolayı göster", "Common.UI.SearchDialog.textHighlight": "Vurgu sonuçları", "Common.UI.SearchDialog.textMatchCase": "Büyük küçük harfe duyarlı", "Common.UI.SearchDialog.textReplaceDef": "Yerine geçecek metini giriniz", @@ -135,6 +160,7 @@ "Common.Views.Comments.textAddComment": "Yorum Ekle", "Common.Views.Comments.textAddCommentToDoc": "Dökümana yorum ekle", "Common.Views.Comments.textAddReply": "Cevap ekle", + "Common.Views.Comments.textAll": "Tümü", "Common.Views.Comments.textAnonym": "Ziyaretçi", "Common.Views.Comments.textCancel": "İptal", "Common.Views.Comments.textClose": "Kapat", @@ -220,13 +246,13 @@ "Common.Views.OpenDialog.txtEncoding": "Kodlama", "Common.Views.OpenDialog.txtIncorrectPwd": "Şifre hatalı.", "Common.Views.OpenDialog.txtOpenFile": "Dosyayı Açmak için Parola Girin", - "Common.Views.OpenDialog.txtPassword": "Şifre", + "Common.Views.OpenDialog.txtPassword": "Parola", "Common.Views.OpenDialog.txtProtected": "Şifreyi girip dosyayı açtığınızda, dosyanın mevcut şifresi sıfırlanacaktır.", "Common.Views.OpenDialog.txtTitle": "%1 seçenekleri seçin", "Common.Views.OpenDialog.txtTitleProtected": "Korumalı dosya", "Common.Views.PasswordDialog.txtDescription": "Bu belgeyi korumak için bir şifre belirleyin", "Common.Views.PasswordDialog.txtIncorrectPwd": "Onay şifresi aynı değil", - "Common.Views.PasswordDialog.txtPassword": "Şifre", + "Common.Views.PasswordDialog.txtPassword": "Parola", "Common.Views.PasswordDialog.txtRepeat": "Şifreyi tekrar girin", "Common.Views.PasswordDialog.txtTitle": "Şifreyi belirle", "Common.Views.PasswordDialog.txtWarning": "Dikkat: Parolayı kaybeder veya unutursanız, kurtarılamaz.", @@ -237,10 +263,10 @@ "Common.Views.Plugins.textStart": "Başlat", "Common.Views.Plugins.textStop": "Durdur", "Common.Views.Protection.hintAddPwd": "Parola ile şifreleyin", - "Common.Views.Protection.hintPwd": "Şifreyi değiştir veya sil", + "Common.Views.Protection.hintPwd": "Parolayı değiştir veya sil", "Common.Views.Protection.hintSignature": "Dijital imza veya imza satırı ekleyin", - "Common.Views.Protection.txtAddPwd": "Şifre ekle", - "Common.Views.Protection.txtChangePwd": "Şifre Değiştir", + "Common.Views.Protection.txtAddPwd": "Parola ekle", + "Common.Views.Protection.txtChangePwd": "Parolayı Değiştir", "Common.Views.Protection.txtDeletePwd": "Şifreyi sil", "Common.Views.Protection.txtEncrypt": "Şifrele", "Common.Views.Protection.txtInvisibleSignature": "Dijital imza ekle", @@ -750,7 +776,8 @@ "PE.Controllers.Main.warnNoLicense": "Düzenleyiciler %1 eşzamanlı bağlantı sınırına ulaştı. Bu belge yalnızca görüntüleme için açılacaktır.
Kişisel yükseltme koşulları için %1 satış ekibiyle iletişime geçin.", "PE.Controllers.Main.warnNoLicenseUsers": "%1 düzenleyici için kullanıcı sınırına ulaştınız. Kişisel yükseltme koşulları için %1 satış ekibiyle iletişime geçin.", "PE.Controllers.Main.warnProcessRightsChange": "Dosyayı düzenleme hakkınız reddedildi", - "PE.Controllers.Statusbar.zoomText": "Zum {0}%", + "PE.Controllers.Statusbar.textDisconnect": "Bağlantı kesildi
Bağlanmayı deneyin. Lütfen bağlantı ayarlarını kontrol edin.", + "PE.Controllers.Statusbar.zoomText": "Büyütme {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "Kaydedeceğiniz yazı tipi kullandığınız cihazda mevcut değil.
Yazı tipi, şimdilik cihazınızda bulunan yazı tiplerinden biri ile gösterilecektir, tercih ettiğiniz yazı tipi cihaza yüklendiğinde kullanılacaktır.
Devam etmek istiyor musunuz?", "PE.Controllers.Toolbar.textAccent": "Aksanlar", "PE.Controllers.Toolbar.textBracket": "Köşeli Ayraç", @@ -1086,6 +1113,9 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "PE.Controllers.Viewport.textFitPage": "Slayta sığdır", "PE.Controllers.Viewport.textFitWidth": "Genişliğe Sığdır", + "PE.Views.Animation.textStartAfterPrevious": "Öncekinden Sonra", + "PE.Views.Animation.txtAddEffect": "Animasyon ekle", + "PE.Views.Animation.txtAnimationPane": "Animasyon Bölmesi", "PE.Views.ChartSettings.textAdvanced": "Gelişmiş Ayarları Göster", "PE.Views.ChartSettings.textChartType": "Grafik Tipini Değiştir", "PE.Views.ChartSettings.textEditData": "Veri düzenle", @@ -1898,6 +1928,7 @@ "PE.Views.Toolbar.textStrikeout": "Üstü çizili", "PE.Views.Toolbar.textSubscript": "Altsimge", "PE.Views.Toolbar.textSuperscript": "Üstsimge", + "PE.Views.Toolbar.textTabAnimation": "Animasyon", "PE.Views.Toolbar.textTabCollaboration": "Ortak çalışma", "PE.Views.Toolbar.textTabFile": "Dosya", "PE.Views.Toolbar.textTabHome": "Ana Sayfa", @@ -2018,5 +2049,7 @@ "PE.Views.Transitions.txtApplyToAll": "Tüm Slaytlara Uygula", "PE.Views.Transitions.txtParameters": "Parametreler", "PE.Views.Transitions.txtPreview": "Önizleme", - "PE.Views.Transitions.txtSec": "s" + "PE.Views.Transitions.txtSec": "s", + "PE.Views.ViewTab.textAlwaysShowToolbar": "Her zaman araç çubuğunu göster", + "PE.Views.ViewTab.textZoom": "Yakınlaştırma" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/uk.json b/apps/presentationeditor/main/locale/uk.json index 174b2d989..3b4fabdff 100644 --- a/apps/presentationeditor/main/locale/uk.json +++ b/apps/presentationeditor/main/locale/uk.json @@ -6,13 +6,52 @@ "Common.Controllers.ExternalDiagramEditor.warningText": "Об'єкт вимкнено, оскільки його редагує інший користувач.", "Common.Controllers.ExternalDiagramEditor.warningTitle": "Застереження", "Common.define.chartData.textArea": "Площа", + "Common.define.chartData.textAreaStacked": "Діаграма з областями із накопиченням", + "Common.define.chartData.textAreaStackedPer": "Нормована з областями та накопиченням", "Common.define.chartData.textBar": "Вставити", + "Common.define.chartData.textBarNormal": "Гістограма з групуванням", + "Common.define.chartData.textBarNormal3d": "Тривимірна гістограма з групуванням", + "Common.define.chartData.textBarNormal3dPerspective": "Тривимірна гістограма", + "Common.define.chartData.textBarStacked": "Гістограма з накопиченням", + "Common.define.chartData.textBarStacked3d": "Тривимірна гістограма з накопиченням", + "Common.define.chartData.textBarStackedPer": "Нормована гістограма з накопиченням", + "Common.define.chartData.textBarStackedPer3d": "Тривимірна нормована гістограма з накопиченням", + "Common.define.chartData.textCharts": "Діаграми", "Common.define.chartData.textColumn": "Колона", + "Common.define.chartData.textCombo": "Комбінування", + "Common.define.chartData.textComboAreaBar": "Діаграма з областями із накопиченням та гістограма з групуванням", + "Common.define.chartData.textComboBarLine": "Гістограма з групуванням та графік", + "Common.define.chartData.textComboBarLineSecondary": "Гістограма з групуванням та графік на допоміжній осі", + "Common.define.chartData.textComboCustom": "Користувацька комбінація", + "Common.define.chartData.textDoughnut": "Кільцева діаграма", + "Common.define.chartData.textHBarNormal": "Лінійчата з групуванням", + "Common.define.chartData.textHBarNormal3d": "Тривимірна лінійчата з групуванням", + "Common.define.chartData.textHBarStacked": "Лінійчаста з накопиченням", + "Common.define.chartData.textHBarStacked3d": "Тривимірна лінійчата з накопиченням", + "Common.define.chartData.textHBarStackedPer": "Нормована лінійчата з накопиченням", + "Common.define.chartData.textHBarStackedPer3d": "Тривимірна нормована лінійчата з накопиченням", "Common.define.chartData.textLine": "Лінія", + "Common.define.chartData.textLine3d": "Тривимірний графік", + "Common.define.chartData.textLineMarker": "Графік з маркерами", + "Common.define.chartData.textLineStacked": "Графік з накопиченням", + "Common.define.chartData.textLineStackedMarker": "Графік з накопиченням і маркерами", + "Common.define.chartData.textLineStackedPer": "Нормований графік з накопиченням", + "Common.define.chartData.textLineStackedPerMarker": "Нормований графік з маркерами та накопиченням", "Common.define.chartData.textPie": "Пиріг", + "Common.define.chartData.textPie3d": "Тривимірна кругова діаграма", "Common.define.chartData.textPoint": "XY (розсіювання)", + "Common.define.chartData.textScatter": "Точкова діаграма", + "Common.define.chartData.textScatterLine": "Точкова з прямими відрізками", + "Common.define.chartData.textScatterLineMarker": "Точкова з прямими відрізками та маркерами", + "Common.define.chartData.textScatterSmooth": "Точкова з гладкими кривими", + "Common.define.chartData.textScatterSmoothMarker": "Точкова з гладкими кривими та маркерами", "Common.define.chartData.textStock": "Запас", "Common.define.chartData.textSurface": "Поверхня", + "Common.Translation.warnFileLocked": "Файл редагується в іншій програмі. Ви можете продовжити редагування та зберегти його як копію.", + "Common.Translation.warnFileLockedBtnEdit": "Створити копію", + "Common.Translation.warnFileLockedBtnView": "Відкрити на перегляд", + "Common.UI.ButtonColored.textAutoColor": "Автоматичний", + "Common.UI.ButtonColored.textNewColor": "Додати новий спеціальний колір", "Common.UI.ComboBorderSize.txtNoBorders": "Немає кордонів", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Немає кордонів", "Common.UI.ComboDataView.emptyComboText": "Немає стилів", @@ -36,6 +75,9 @@ "Common.UI.SynchronizeTip.textSynchronize": "Документ був змінений іншим користувачем.
Будь ласка, натисніть, щоб зберегти зміни та завантажити оновлення.", "Common.UI.ThemeColorPalette.textStandartColors": "Стандартні кольори", "Common.UI.ThemeColorPalette.textThemeColors": "Кольорові теми", + "Common.UI.Themes.txtThemeClassicLight": "Класична світла", + "Common.UI.Themes.txtThemeDark": "Темна", + "Common.UI.Themes.txtThemeLight": "Світла", "Common.UI.Window.cancelButtonText": "Скасувати", "Common.UI.Window.closeButtonText": "Закрити", "Common.UI.Window.noButtonText": "Немає", @@ -55,7 +97,40 @@ "Common.Views.About.txtPoweredBy": "Під керуванням", "Common.Views.About.txtTel": "Тел.:", "Common.Views.About.txtVersion": "Версія", + "Common.Views.AutoCorrectDialog.textAdd": "Додати", + "Common.Views.AutoCorrectDialog.textApplyText": "Застосовувати під час введення", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Автозаміна тексту", + "Common.Views.AutoCorrectDialog.textAutoFormat": "Автоформат під час введення", + "Common.Views.AutoCorrectDialog.textBulleted": "Стилі маркованих списків", + "Common.Views.AutoCorrectDialog.textBy": "На", + "Common.Views.AutoCorrectDialog.textDelete": "Видалити", + "Common.Views.AutoCorrectDialog.textFLSentence": "Писати речення з великої літери", + "Common.Views.AutoCorrectDialog.textHyperlink": "Адреси в інтернеті та мережі гіперпосиланнями", + "Common.Views.AutoCorrectDialog.textHyphens": "Дефіси (--) на тире (—)", + "Common.Views.AutoCorrectDialog.textMathCorrect": "Автозаміна математичними символами", + "Common.Views.AutoCorrectDialog.textNumbered": "Стилі нумерованих списків", + "Common.Views.AutoCorrectDialog.textQuotes": "Автоматичні лапки", + "Common.Views.AutoCorrectDialog.textRecognized": "Розпізнані функції", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Наступні вирази є розпізнаними математичними функціями. Вони не будуть автоматично виділятися курсивом.", + "Common.Views.AutoCorrectDialog.textReplace": "Замінити", + "Common.Views.AutoCorrectDialog.textReplaceText": "Заміняти при вводі", + "Common.Views.AutoCorrectDialog.textReplaceType": "Заміняти текст при вводі", + "Common.Views.AutoCorrectDialog.textReset": "Скинути", + "Common.Views.AutoCorrectDialog.textResetAll": "Скинути налаштування", + "Common.Views.AutoCorrectDialog.textRestore": "Відновити", + "Common.Views.AutoCorrectDialog.textTitle": "Автозаміна", + "Common.Views.AutoCorrectDialog.textWarnAddRec": "Розпізнані функції повинні містити тільки прописні букви від А до Я.", + "Common.Views.AutoCorrectDialog.textWarnResetRec": "Всі додані вирази будуть видалені, а видалені - відновлені. Ви хочете продовжити?", + "Common.Views.AutoCorrectDialog.warnReplace": "Елемент автозаміни для 1% вже існує. Ви хочете його замінити?", + "Common.Views.AutoCorrectDialog.warnReset": "Будь-які додані вами автозаміни будуть видалені, а змінені будуть відновлені до початкових. Бажаєте продовжити?", + "Common.Views.AutoCorrectDialog.warnRestore": "Елемент автозаміни для 1% буде скинутий до початкового значення. Ви хочете продовжити?", "Common.Views.Chat.textSend": "Надіслати", + "Common.Views.Comments.mniAuthorAsc": "За автором від А до Я", + "Common.Views.Comments.mniAuthorDesc": "За автором від Я до А", + "Common.Views.Comments.mniDateAsc": "Від старих до нових", + "Common.Views.Comments.mniDateDesc": "Від нових до старих", + "Common.Views.Comments.mniPositionAsc": "Зверху вниз", + "Common.Views.Comments.mniPositionDesc": "Знизу вверх", "Common.Views.Comments.textAdd": "Додати", "Common.Views.Comments.textAddComment": "Добавити коментар", "Common.Views.Comments.textAddCommentToDoc": "Додати коментар до документа", @@ -63,6 +138,7 @@ "Common.Views.Comments.textAnonym": "Гість", "Common.Views.Comments.textCancel": "Скасувати", "Common.Views.Comments.textClose": "Закрити", + "Common.Views.Comments.textClosePanel": "Закрити коментарі", "Common.Views.Comments.textComments": "Коментарі", "Common.Views.Comments.textEdit": "OК", "Common.Views.Comments.textEnterCommentHint": "Введіть свій коментар тут", @@ -71,6 +147,7 @@ "Common.Views.Comments.textReply": "Відповісти", "Common.Views.Comments.textResolve": "Вирішити", "Common.Views.Comments.textResolved": "Вирішено", + "Common.Views.Comments.textSort": "Сортувати коментарі", "Common.Views.CopyWarningDialog.textDontShow": "Не показувати це повідомлення знову", "Common.Views.CopyWarningDialog.textMsg": "Копіювання, вирізання та вставлення дій за допомогою кнопок панелі інструментів редактора та дій контекстного меню буде виконуватися тільки на цій вкладці редактора.

Щоб скопіювати або вставити до або з додатків за межами вкладки редактора, використовуйте такі комбінації клавіш:", "Common.Views.CopyWarningDialog.textTitle": "Копіювати, вирізати та вставити дії", @@ -82,9 +159,15 @@ "Common.Views.ExternalDiagramEditor.textClose": "Закрити", "Common.Views.ExternalDiagramEditor.textSave": "Зберегти і вийти", "Common.Views.ExternalDiagramEditor.textTitle": "редагування діаграми", - "Common.Views.Header.labelCoUsersDescr": "В даний час документ редагується кількома користувачами.", + "Common.Views.Header.labelCoUsersDescr": "Користувачі, що редагують документ:", + "Common.Views.Header.textAddFavorite": "Додати в обране", "Common.Views.Header.textAdvSettings": "Додаткові налаштування", - "Common.Views.Header.textBack": "Перейти до документів", + "Common.Views.Header.textBack": "Відкрити розташування файлу", + "Common.Views.Header.textCompactView": "Сховати панель інструментів", + "Common.Views.Header.textHideLines": "Приховати лінійки", + "Common.Views.Header.textHideNotes": "Приховати нотатки", + "Common.Views.Header.textHideStatusBar": "Сховати панель статусу", + "Common.Views.Header.textRemoveFavorite": "Видалити з вибраного", "Common.Views.Header.textSaveBegin": "Збереження ...", "Common.Views.Header.textSaveChanged": "Модифікований", "Common.Views.Header.textSaveEnd": "Усі зміни збережено", @@ -94,12 +177,21 @@ "Common.Views.Header.tipDownload": "Завантажити файл", "Common.Views.Header.tipGoEdit": "Редагувати поточний файл", "Common.Views.Header.tipPrint": "Роздрукувати файл", + "Common.Views.Header.tipRedo": "Повторити", "Common.Views.Header.tipSave": "Зберегти", "Common.Views.Header.tipUndo": "Скасувати", + "Common.Views.Header.tipUndock": "Відкріпити в окремому вікні", "Common.Views.Header.tipViewSettings": "Налаштування перегляду", "Common.Views.Header.tipViewUsers": "Переглядайте користувачів та керуйте правами доступу до документів", "Common.Views.Header.txtAccessRights": "Змінити права доступу", "Common.Views.Header.txtRename": "Перейменування", + "Common.Views.History.textCloseHistory": "Закрити історію", + "Common.Views.History.textHide": "Згорнути", + "Common.Views.History.textHideAll": "Сховати детальні зміни", + "Common.Views.History.textRestore": "Відновити", + "Common.Views.History.textShow": "Розгорнути", + "Common.Views.History.textShowAll": "Показати детальні зміни", + "Common.Views.History.textVer": "вер.", "Common.Views.ImageFromUrlDialog.textUrl": "Вставити URL зображення:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Це поле є обов'язковим", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com\"", @@ -111,17 +203,32 @@ "Common.Views.InsertTableDialog.txtTitle": "Розмір таблиці", "Common.Views.InsertTableDialog.txtTitleSplit": "Розщеплені клітини", "Common.Views.LanguageDialog.labelSelect": "Виберіть мову документа", + "Common.Views.ListSettingsDialog.textBulleted": "Маркований", + "Common.Views.ListSettingsDialog.textNumbering": "Нумерований", + "Common.Views.ListSettingsDialog.tipChange": "Змінити маркер", + "Common.Views.ListSettingsDialog.txtBullet": "Маркер", "Common.Views.ListSettingsDialog.txtColor": "Колір", + "Common.Views.ListSettingsDialog.txtNewBullet": "Новий маркер", "Common.Views.ListSettingsDialog.txtNone": "Ні", "Common.Views.ListSettingsDialog.txtOfText": "% текста", + "Common.Views.ListSettingsDialog.txtSize": "Розмір", + "Common.Views.ListSettingsDialog.txtStart": "Почати з", + "Common.Views.ListSettingsDialog.txtSymbol": "Символ", + "Common.Views.ListSettingsDialog.txtTitle": "Налаштування списку", "Common.Views.ListSettingsDialog.txtType": "Тип", "Common.Views.OpenDialog.closeButtonText": "Закрити файл", "Common.Views.OpenDialog.txtEncoding": "Кодування", + "Common.Views.OpenDialog.txtIncorrectPwd": "Введений хибний пароль.", "Common.Views.OpenDialog.txtOpenFile": "Введіть пароль для відкриття файлу", "Common.Views.OpenDialog.txtPassword": "Пароль", "Common.Views.OpenDialog.txtProtected": "Після введення пароля та відкриття файла поточний пароль до нього буде скинутий.", "Common.Views.OpenDialog.txtTitle": "Виберіть параметри% 1", "Common.Views.OpenDialog.txtTitleProtected": "Захищений файл", + "Common.Views.PasswordDialog.txtDescription": "Встановіть пароль для захисту цього документу", + "Common.Views.PasswordDialog.txtIncorrectPwd": "Пароль та його підтвердження не збігаються", + "Common.Views.PasswordDialog.txtPassword": "Пароль", + "Common.Views.PasswordDialog.txtRepeat": "Повторити пароль", + "Common.Views.PasswordDialog.txtTitle": "Встановлення паролю", "Common.Views.PasswordDialog.txtWarning": "Увага! Якщо ви втратили або не можете пригадати пароль, відновити його неможливо. Зберігайте його в надійному місці.", "Common.Views.PluginDlg.textLoading": "Завантаження", "Common.Views.Plugins.groupCaption": "Плагіни", @@ -129,29 +236,151 @@ "Common.Views.Plugins.textLoading": "Завантаження", "Common.Views.Plugins.textStart": "Початок", "Common.Views.Plugins.textStop": "Зупинитись", + "Common.Views.Protection.hintAddPwd": "Зашифрувати за допомогою пароля", + "Common.Views.Protection.hintPwd": "Змінити чи видалити пароль", + "Common.Views.Protection.hintSignature": "Додати цифровий підпис або рядок підпису", "Common.Views.Protection.txtAddPwd": "Додати пароль", + "Common.Views.Protection.txtChangePwd": "Змінити пароль", + "Common.Views.Protection.txtDeletePwd": "Видалити пароль", + "Common.Views.Protection.txtEncrypt": "Шифрувати", "Common.Views.Protection.txtInvisibleSignature": "Додати цифровий підпис", + "Common.Views.Protection.txtSignature": "Підпис", + "Common.Views.Protection.txtSignatureLine": "Додати рядок підпису", "Common.Views.RenameDialog.textName": "Ім'я файлу", "Common.Views.RenameDialog.txtInvalidName": "Ім'я файлу не може містити жодного з наступних символів:", + "Common.Views.ReviewChanges.hintNext": "До наступної зміни", + "Common.Views.ReviewChanges.hintPrev": "До попередньої зміни", + "Common.Views.ReviewChanges.strFast": "Швидкий", + "Common.Views.ReviewChanges.strFastDesc": "Спільне редагування в режимі реального часу. Всі зміни зберігаються автоматично.", + "Common.Views.ReviewChanges.strStrict": "Строгий", + "Common.Views.ReviewChanges.strStrictDesc": "Використовуйте кнопку 'Зберегти' для синхронізації змін, які вносите ви та інші користувачі.", + "Common.Views.ReviewChanges.tipAcceptCurrent": "Прийняти поточну зміну", + "Common.Views.ReviewChanges.tipCoAuthMode": "Встановити режим спільного редагування", + "Common.Views.ReviewChanges.tipCommentRem": "Вилучити коментарі", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "Вилучити поточні коментарі", + "Common.Views.ReviewChanges.tipCommentResolve": "Вирішити коментарі", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Вирішити поточні коментарі", + "Common.Views.ReviewChanges.tipHistory": "Показати історію версій", + "Common.Views.ReviewChanges.tipRejectCurrent": "Відхилити поточну зміну", + "Common.Views.ReviewChanges.tipReview": "Відстежувати зміни", + "Common.Views.ReviewChanges.tipReviewView": "Виберіть режим показу змін", + "Common.Views.ReviewChanges.tipSetDocLang": "Задати мову документу", + "Common.Views.ReviewChanges.tipSetSpelling": "Перевірка орфографії", + "Common.Views.ReviewChanges.tipSharing": "Керування правами доступу до документів", "Common.Views.ReviewChanges.txtAccept": "Прийняти", + "Common.Views.ReviewChanges.txtAcceptAll": "Прийняти усі зміни", + "Common.Views.ReviewChanges.txtAcceptChanges": "Прийняти зміни", + "Common.Views.ReviewChanges.txtAcceptCurrent": "Прийняти поточну зміну", + "Common.Views.ReviewChanges.txtChat": "Чат", + "Common.Views.ReviewChanges.txtClose": "Закрити", + "Common.Views.ReviewChanges.txtCoAuthMode": "Режим спільного редагування", + "Common.Views.ReviewChanges.txtCommentRemAll": "Вилучити усі коментарі", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Вилучити поточні коментарі", + "Common.Views.ReviewChanges.txtCommentRemMy": "Вилучити мої коментарі", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Вилучити мій поточний коментар", + "Common.Views.ReviewChanges.txtCommentRemove": "Видалити", + "Common.Views.ReviewChanges.txtCommentResolve": "Вирішити", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Вирішити всі коментарі", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Вирішити поточні коментарі", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Вирішити мої коментарі", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Вирішити мої поточні коментарі", + "Common.Views.ReviewChanges.txtDocLang": "Мова", + "Common.Views.ReviewChanges.txtFinal": "Усі зміни прийняті (попередній перегляд)", "Common.Views.ReviewChanges.txtFinalCap": "Фінальний", + "Common.Views.ReviewChanges.txtHistory": "Історія версій", + "Common.Views.ReviewChanges.txtMarkup": "Усі зміни (редагування)", "Common.Views.ReviewChanges.txtMarkupCap": "Зміни", "Common.Views.ReviewChanges.txtNext": "Далі", + "Common.Views.ReviewChanges.txtOriginal": "Усі зміни відхилено (попередній перегляд)", "Common.Views.ReviewChanges.txtOriginalCap": "Початковий", + "Common.Views.ReviewChanges.txtPrev": "До попереднього", + "Common.Views.ReviewChanges.txtReject": "Відхилити", + "Common.Views.ReviewChanges.txtRejectAll": "Відхилити усі зміни", + "Common.Views.ReviewChanges.txtRejectChanges": "Відхилити зміни", + "Common.Views.ReviewChanges.txtRejectCurrent": "Відхилити поточну зміну", + "Common.Views.ReviewChanges.txtSharing": "Спільний доступ", + "Common.Views.ReviewChanges.txtSpelling": "Перевірка орфографії", "Common.Views.ReviewChanges.txtTurnon": "Відстежувати зміни", + "Common.Views.ReviewChanges.txtView": "Показ", "Common.Views.ReviewPopover.textAdd": "Додати", + "Common.Views.ReviewPopover.textAddReply": "Додати відповідь", + "Common.Views.ReviewPopover.textCancel": "Скасування", "Common.Views.ReviewPopover.textClose": "Закрити", "Common.Views.ReviewPopover.textEdit": "Ок", + "Common.Views.ReviewPopover.textMention": "+згадка надасть доступ до документа і відправить сповіщення поштою", + "Common.Views.ReviewPopover.textMentionNotify": "+згадка відправить користувачу сповіщення поштою", + "Common.Views.ReviewPopover.textOpenAgain": "Відкрити знову", + "Common.Views.ReviewPopover.textReply": "Відповісти", + "Common.Views.ReviewPopover.textResolve": "Вирішити", + "Common.Views.ReviewPopover.txtDeleteTip": "Видалити", + "Common.Views.ReviewPopover.txtEditTip": "Редагувати", "Common.Views.SaveAsDlg.textLoading": "Завантаження", + "Common.Views.SaveAsDlg.textTitle": "Каталог для збереження", "Common.Views.SelectFileDlg.textLoading": "Завантаження", "Common.Views.SelectFileDlg.textTitle": "Виберати джерело даних", + "Common.Views.SignDialog.textBold": "Напівжирний", "Common.Views.SignDialog.textCertificate": "Сертифікат", + "Common.Views.SignDialog.textChange": "Змінити", + "Common.Views.SignDialog.textInputName": "Введіть ім'я підписанта", + "Common.Views.SignDialog.textItalic": "Курсив", + "Common.Views.SignDialog.textNameError": "Ім'я підписанта не має бути пустим.", + "Common.Views.SignDialog.textPurpose": "Ціль підписання документу", "Common.Views.SignDialog.textSelect": "Вибрати", + "Common.Views.SignDialog.textSelectImage": "Вибрати зображення", + "Common.Views.SignDialog.textSignature": "Вигляд підпису:", + "Common.Views.SignDialog.textTitle": "Підписання документу", + "Common.Views.SignDialog.textUseImage": "або натисніть 'Обрати зображення', щоб використовувати зображення як підпис", + "Common.Views.SignDialog.textValid": "Дійсний з %1 по %2", + "Common.Views.SignDialog.tipFontName": "Шрифт", + "Common.Views.SignDialog.tipFontSize": "Розмір шрифту", + "Common.Views.SignSettingsDialog.textAllowComment": "Дозволити підписанту додавати коментар у вікні підпису", + "Common.Views.SignSettingsDialog.textInfo": "Інформація про підписанта", + "Common.Views.SignSettingsDialog.textInfoEmail": "Адреса електронної пошти", + "Common.Views.SignSettingsDialog.textInfoName": "Ім'я", + "Common.Views.SignSettingsDialog.textInfoTitle": "Посада підписанта", + "Common.Views.SignSettingsDialog.textInstructions": "Інструкції для підписанта", + "Common.Views.SignSettingsDialog.textShowDate": "Показувати дату підпису в рядку підпису", + "Common.Views.SignSettingsDialog.textTitle": "Налаштування підпису", + "Common.Views.SignSettingsDialog.txtEmpty": "Це поле необхідно заповнити", + "Common.Views.SymbolTableDialog.textCharacter": "Символ", + "Common.Views.SymbolTableDialog.textCode": "Код знака з Юнікод (шістн.)", + "Common.Views.SymbolTableDialog.textCopyright": "Знак авторського права", + "Common.Views.SymbolTableDialog.textDCQuote": "Закриваючі подвійні лапки", + "Common.Views.SymbolTableDialog.textDOQuote": "Відкриваючі подвійні лапки", + "Common.Views.SymbolTableDialog.textEllipsis": "Горизонтальна трикрапка", + "Common.Views.SymbolTableDialog.textEmDash": "Довге тире", + "Common.Views.SymbolTableDialog.textEmSpace": "Довгий пробіл", + "Common.Views.SymbolTableDialog.textEnDash": "Коротке тире", + "Common.Views.SymbolTableDialog.textEnSpace": "Короткий пробіл", "Common.Views.SymbolTableDialog.textFont": "Шрифт", + "Common.Views.SymbolTableDialog.textNBHyphen": "Нерозривний дефіс", + "Common.Views.SymbolTableDialog.textNBSpace": "Нерозривний пробіл", + "Common.Views.SymbolTableDialog.textPilcrow": "Знак абзацу", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 пробілу", + "Common.Views.SymbolTableDialog.textRange": "Діапазон", + "Common.Views.SymbolTableDialog.textRecent": "Раніше вживані символи", + "Common.Views.SymbolTableDialog.textRegistered": "Зареєстрований товарний знак", + "Common.Views.SymbolTableDialog.textSCQuote": "Закриваючі лапки", + "Common.Views.SymbolTableDialog.textSection": "Знак розділу", + "Common.Views.SymbolTableDialog.textShortcut": "Поєднання клавіш", + "Common.Views.SymbolTableDialog.textSHyphen": "М'який дефіс", + "Common.Views.SymbolTableDialog.textSOQuote": "Відкриваючі лапки", + "Common.Views.SymbolTableDialog.textSpecial": "Спеціальні символи", + "Common.Views.SymbolTableDialog.textSymbols": "Символи", + "Common.Views.SymbolTableDialog.textTitle": "Символ", + "Common.Views.SymbolTableDialog.textTradeMark": "Символ товарного знаку", + "Common.Views.UserNameDialog.textDontShow": "Більше не запитувати", + "Common.Views.UserNameDialog.textLabel": "Підпис:", + "Common.Views.UserNameDialog.textLabelError": "Підпис не повинен бути пустий", + "PE.Controllers.LeftMenu.leavePageText": "Всі незбережені зміни в цьому документі будуть втрачені.
Натисніть \"Скасувати\", потім \"Зберегти\", щоб зберегти їх. Натисніть \"OK\", щоб відхилити всі незбережені зміни.", "PE.Controllers.LeftMenu.newDocumentTitle": "Презентація без назви", "PE.Controllers.LeftMenu.notcriticalErrorTitle": "Увага", "PE.Controllers.LeftMenu.requestEditRightsText": "Запит на права редагування ...", + "PE.Controllers.LeftMenu.textLoadHistory": "Завантаження історії версій...", "PE.Controllers.LeftMenu.textNoTextFound": "Не вдалося знайти дані, які ви шукали. Будь ласка, налаштуйте параметри пошуку.", + "PE.Controllers.LeftMenu.textReplaceSkipped": "Заміна виконана. Пропущено {0} випадків.", + "PE.Controllers.LeftMenu.textReplaceSuccess": "Пошук виконано. Змін зроблено: {0}", + "PE.Controllers.LeftMenu.txtUntitled": "Без ім'я", "PE.Controllers.Main.applyChangesTextText": "Завантаження дати...", "PE.Controllers.Main.applyChangesTitleText": "Дата завантаження", "PE.Controllers.Main.convertationTimeoutText": "Термін переходу перевищено.", @@ -163,26 +392,37 @@ "PE.Controllers.Main.errorAccessDeny": "Ви намагаєтеся виконати дію, на яку у вас немає прав.
Будь ласка, зв'яжіться з адміністратором вашого Сервера документів.", "PE.Controllers.Main.errorBadImageUrl": "URL-адреса зображення невірна", "PE.Controllers.Main.errorCoAuthoringDisconnect": "З'єднання з сервером втрачено. Документ не можна редагувати прямо зараз.", + "PE.Controllers.Main.errorComboSeries": "Для створення комбінованої діаграми виберіть щонайменше два ряди даних.", "PE.Controllers.Main.errorConnectToServer": "Не вдалося зберегти документ. Будь ласка, перевірте налаштування з'єднання або зверніться до свого адміністратора.
Після натискання кнопки «ОК» вам буде запропоновано завантажити документ.", "PE.Controllers.Main.errorDatabaseConnection": "Зовнішня помилка.
Помилка підключення до бази даних. Будь ласка, зв'яжіться зі службою підтримки, якщо помилка не зникне.", + "PE.Controllers.Main.errorDataEncrypted": "Отримані зашифровані зміни, їх неможливо розшифрувати.", "PE.Controllers.Main.errorDataRange": "Неправильний діапазон даних.", "PE.Controllers.Main.errorDefaultMessage": "Код помилки: %1 ", - "PE.Controllers.Main.errorFilePassProtect": "Документ захищений паролем і його неможливо відкрити.", + "PE.Controllers.Main.errorEditingDownloadas": "Під час роботи з документом сталася помилка.
Використовуйте опцію 'Завантажити як...', щоб зберегти резервну копію файлу на жорсткий диск комп'ютера.", + "PE.Controllers.Main.errorEditingSaveas": "Під час роботи з документом сталася помилка.
Використовуйте опцію 'Зберегти як...', щоб зберегти резервну копію файлу на жорсткий диск комп'ютера.", + "PE.Controllers.Main.errorEmailClient": "Не знайдений поштовий клієнт", + "PE.Controllers.Main.errorFilePassProtect": "Файл захищений паролем і його неможливо відкрити.", + "PE.Controllers.Main.errorFileSizeExceed": "Розмір файлу перевищує обмеження, встановлені для вашого сервера.
Для детальної інформації зверніться до адміністратора сервера документів.", + "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": "Сесія редагування документа закінчилася. Будь ласка, перезавантажте сторінку.", "PE.Controllers.Main.errorSessionIdle": "Цей документ не редагувався протягом тривалого часу. Перезавантажте сторінку.", "PE.Controllers.Main.errorSessionToken": "З'єднання з сервером було перервано. Перезавантажте сторінку", + "PE.Controllers.Main.errorSetPassword": "Не вдалось задати пароль", "PE.Controllers.Main.errorStockChart": "Невірний порядок рядків. Щоб побудувати фондову діаграму, помістіть дані на аркуші в наступному порядку: ціна відкриття, максимальна ціна, мінімальна ціна, ціна закриття.", "PE.Controllers.Main.errorToken": "Токен безпеки документа не правильно сформовано.
Будь ласка, зв'яжіться з адміністратором вашого Сервера документів.", "PE.Controllers.Main.errorTokenExpire": "Термін дії токену безпеки документа закінчився.
Будь ласка, зв'яжіться зі своїм адміністратором сервера документів.", "PE.Controllers.Main.errorUpdateVersion": "Версія файлу була змінена. Сторінка буде перезавантажена.", + "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "Підключення до Інтернету було відновлено, а версія файлу змінена.
Перш ніж продовжувати роботу, потрібно завантажити файл або скопіювати його вміст, щоб забезпечити цілісність даних, а потім перезавантажити дану сторінку.", "PE.Controllers.Main.errorUserDrop": "На даний момент файл не доступний.", "PE.Controllers.Main.errorUsersExceed": "Перевищено кількість користувачів, дозволених планом ціноутворення", - "PE.Controllers.Main.errorViewerDisconnect": "З'єднання втрачено. Ви все ще можете переглядати документ
, але не зможете завантажувати чи роздруковувати, доки не буде відновлено з'єднання.", + "PE.Controllers.Main.errorViewerDisconnect": "Підключення втрачено. Ви, як і раніше, можете переглядати документ, але не зможете звантажити або надрукувати його до відновлення підключення та оновлення сторінки.", "PE.Controllers.Main.leavePageText": "У вас є незбережені зміни в цій презентації. Натисніть \"Залишатися на цій сторінці\", а потім \"Зберегти\", щоб зберегти їх. Натисніть \"Залишити цю сторінку\", щоб відхилити всі незбережені зміни.", + "PE.Controllers.Main.leavePageTextOnClose": "Всі незбережені зміни в цій презентації будуть втрачені.
Натисніть кнопку \"Скасувати\", а потім натисніть кнопку \"Зберегти\", щоб зберегти їх. Натисніть кнопку \"OK\", щоб скинути всі незбережені зміни.", "PE.Controllers.Main.loadFontsTextText": "Завантаження дати...", "PE.Controllers.Main.loadFontsTitleText": "Дата завантаження", "PE.Controllers.Main.loadFontTextText": "Завантаження дати...", @@ -196,7 +436,7 @@ "PE.Controllers.Main.loadThemeTextText": "Завантаження теми...", "PE.Controllers.Main.loadThemeTitleText": "Завантаження теми", "PE.Controllers.Main.notcriticalErrorTitle": "Застереження", - "PE.Controllers.Main.openErrorText": "Під час відкриття файлу сталася помилка", + "PE.Controllers.Main.openErrorText": "Під час відкриття файлу сталася помилка.", "PE.Controllers.Main.openTextText": "Відкриття презентації...", "PE.Controllers.Main.openTitleText": "Відкриття презентації", "PE.Controllers.Main.printTextText": "Роздрукування презентації...", @@ -204,25 +444,42 @@ "PE.Controllers.Main.reloadButtonText": "Перезавантажити сторінку", "PE.Controllers.Main.requestEditFailedMessageText": "Хтось редагує цю презентацію прямо зараз. Будь-ласка спробуйте пізніше.", "PE.Controllers.Main.requestEditFailedTitleText": "Доступ заборонено", - "PE.Controllers.Main.saveErrorText": "Під час збереження файлу сталася помилка", + "PE.Controllers.Main.saveErrorText": "Під час збереження файлу сталася помилка.", + "PE.Controllers.Main.saveErrorTextDesktop": "Неможливо зберегти або створити цей файл.
Можливі причини:
1. Файл доступний лише для читання.
2. Файл редагується іншими користувачами.
3. Диск заповнено або пошкоджено.", "PE.Controllers.Main.saveTextText": "Збереження презентації...", "PE.Controllers.Main.saveTitleText": "Збереження презентації", + "PE.Controllers.Main.scriptLoadError": "З'єднання занадто повільне, деякі компоненти не вдалося завантажити. Перезавантажте сторінку.", "PE.Controllers.Main.splitDividerErrorText": "Кількість рядків повинна бути дільником% 1.", "PE.Controllers.Main.splitMaxColsErrorText": "Кількість стовпців повинно бути менше% 1.", "PE.Controllers.Main.splitMaxRowsErrorText": "Кількість рядків повинна бути менше% 1.", "PE.Controllers.Main.textAnonymous": "Aнонім", + "PE.Controllers.Main.textApplyAll": "Застосувати до всіх рівнянь", "PE.Controllers.Main.textBuyNow": "Відвідати сайт", "PE.Controllers.Main.textChangesSaved": "Усі зміни збережено", "PE.Controllers.Main.textClose": "Закрити", "PE.Controllers.Main.textCloseTip": "Натисніть, щоб закрити підказку", "PE.Controllers.Main.textContactUs": "Зв'язатися з відділом продажів", + "PE.Controllers.Main.textConvertEquation": "Це рівняння створено у старій версії редактора рівнянь, яка більше не підтримується. Щоб змінити це рівняння, його необхідно перетворити на формат Office Math ML.
Перетворити зараз?", + "PE.Controllers.Main.textCustomLoader": "Зверніть увагу, що згідно з умовами ліцензії ви не маєте права змінювати екран завантаження.
Будь ласка, зв'яжіться з нашим відділом продажів, щоб отримати ціну.", + "PE.Controllers.Main.textDisconnect": "З'єднання втрачено", + "PE.Controllers.Main.textGuest": "Гість", + "PE.Controllers.Main.textHasMacros": "Файл містить автоматичні макроси.
Запустити макроси?", + "PE.Controllers.Main.textLearnMore": "Детальніше", "PE.Controllers.Main.textLoadingDocument": "Завантаження презентації", - "PE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE відкрита версія", + "PE.Controllers.Main.textLongName": "Введіть ім'я не довше ніж 128 символів.", + "PE.Controllers.Main.textNoLicenseTitle": "Ліцензійне обмеження", + "PE.Controllers.Main.textPaidFeature": "Платна функція", + "PE.Controllers.Main.textRemember": "Запам’ятати мій вибір для всіх файлів", + "PE.Controllers.Main.textRenameError": "Ім'я користувача не повинно бути порожнім.", + "PE.Controllers.Main.textRenameLabel": "Введіть ім'я, що буде використовуватись для спільної роботи", "PE.Controllers.Main.textShape": "Форма", "PE.Controllers.Main.textStrict": "суворий режим", "PE.Controllers.Main.textTryUndoRedo": "Функції Undo / Redo відключені для режиму швидкого редагування.
Натисніть кнопку \"Суворий режим\", щоб перейти до режиму суворого редагування, щоб редагувати файл без втручання інших користувачів та відправляти зміни лише після збереження. Ви можете переключатися між режимами спільного редагування за допомогою редактора Додаткові параметри.", + "PE.Controllers.Main.textTryUndoRedoWarn": "Функції скасування і повтору дій відключені для режиму швидкого спільного редагування.", "PE.Controllers.Main.titleLicenseExp": "Термін дії ліцензії закінчився", "PE.Controllers.Main.titleServerVersion": "Редактор оновлено", + "PE.Controllers.Main.txtAddFirstSlide": "Натисніть, щоб додати перший слайд", + "PE.Controllers.Main.txtAddNotes": "Натисніть, щоб додати нотатки", "PE.Controllers.Main.txtArt": "Ваш текст тут", "PE.Controllers.Main.txtBasicShapes": "Основні форми", "PE.Controllers.Main.txtButtons": "Кнопки", @@ -233,6 +490,7 @@ "PE.Controllers.Main.txtDiagram": "SmartArt", "PE.Controllers.Main.txtDiagramTitle": "Назва діграми", "PE.Controllers.Main.txtEditingMode": "Встановити режим редагування ...", + "PE.Controllers.Main.txtErrorLoadHistory": "Помилка завантаження історії", "PE.Controllers.Main.txtFiguredArrows": "Фігурні стрілки", "PE.Controllers.Main.txtFooter": "Нижній колонтитул", "PE.Controllers.Main.txtHeader": "Заголовок", @@ -242,13 +500,181 @@ "PE.Controllers.Main.txtMath": "Математика", "PE.Controllers.Main.txtMedia": "Медіа", "PE.Controllers.Main.txtNeedSynchronize": "У вас є оновлення", + "PE.Controllers.Main.txtNone": "Немає", "PE.Controllers.Main.txtPicture": "Картинка", "PE.Controllers.Main.txtRectangles": "Прямокутники", "PE.Controllers.Main.txtSeries": "Серії", + "PE.Controllers.Main.txtShape_accentBorderCallout1": "Виноска 1 (межа і лінія)", + "PE.Controllers.Main.txtShape_accentBorderCallout2": "Виноска 2 (межа і лінія)", + "PE.Controllers.Main.txtShape_accentBorderCallout3": "Виноска 3 (межа і лінія)", + "PE.Controllers.Main.txtShape_accentCallout1": "Виноска 1 (лінія)", + "PE.Controllers.Main.txtShape_accentCallout2": "Виноска 2 (лінія)", + "PE.Controllers.Main.txtShape_accentCallout3": "Виноска 3 (лінія)", + "PE.Controllers.Main.txtShape_actionButtonBackPrevious": "Кнопка \"Назад\"", + "PE.Controllers.Main.txtShape_actionButtonBeginning": "Кнопка \"На початок\"", + "PE.Controllers.Main.txtShape_actionButtonBlank": "Пуста кнопка", + "PE.Controllers.Main.txtShape_actionButtonDocument": "Кнопка документу", + "PE.Controllers.Main.txtShape_actionButtonEnd": "Кнопка \"В кінець\"", + "PE.Controllers.Main.txtShape_actionButtonForwardNext": "Кнопка \"Вперед\"", + "PE.Controllers.Main.txtShape_actionButtonHelp": "Кнопка \"Довідка\"", + "PE.Controllers.Main.txtShape_actionButtonHome": "Кнопка \"Додому\"", + "PE.Controllers.Main.txtShape_actionButtonInformation": "Кнопка інформації", + "PE.Controllers.Main.txtShape_actionButtonMovie": "Кнопка відео", + "PE.Controllers.Main.txtShape_actionButtonReturn": "Кнопка повернення", + "PE.Controllers.Main.txtShape_actionButtonSound": "Кнопка звуку", + "PE.Controllers.Main.txtShape_arc": "Дуга", + "PE.Controllers.Main.txtShape_bentArrow": "Зігнута стрілка", + "PE.Controllers.Main.txtShape_bentConnector5": "Колінчате з'єднання", + "PE.Controllers.Main.txtShape_bentConnector5WithArrow": "Колінчате з'єднання зі стрілкою", + "PE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Колінчате з'єднання з двома стрілками", + "PE.Controllers.Main.txtShape_bentUpArrow": "Загнута стрілка вгору", + "PE.Controllers.Main.txtShape_bevel": "Багетна рамка", + "PE.Controllers.Main.txtShape_blockArc": "Арка", + "PE.Controllers.Main.txtShape_borderCallout1": "Виноска 1", + "PE.Controllers.Main.txtShape_borderCallout2": "Виноска 2", + "PE.Controllers.Main.txtShape_borderCallout3": "Виноска 3", + "PE.Controllers.Main.txtShape_bracePair": "Подвійні фігурні дужки", + "PE.Controllers.Main.txtShape_callout1": "Виноска 1 (без межі)", + "PE.Controllers.Main.txtShape_callout2": "Виноска 2(без межі)", + "PE.Controllers.Main.txtShape_callout3": "Виноска 3 (без межі)", + "PE.Controllers.Main.txtShape_can": "Циліндр", + "PE.Controllers.Main.txtShape_chevron": "Шеврон", + "PE.Controllers.Main.txtShape_chord": "Хорда", + "PE.Controllers.Main.txtShape_circularArrow": "Кругова стрілка", "PE.Controllers.Main.txtShape_cloud": "Хмара", + "PE.Controllers.Main.txtShape_cloudCallout": "Виноска хмарка", + "PE.Controllers.Main.txtShape_corner": "Кут", + "PE.Controllers.Main.txtShape_cube": "Куб", + "PE.Controllers.Main.txtShape_curvedConnector3": "Округлена сполучна лінія", + "PE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Округлена лінія зі стрілкою", + "PE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Округлена лінія з двома стрілками", + "PE.Controllers.Main.txtShape_curvedDownArrow": "Вигнута вверх стрілка", + "PE.Controllers.Main.txtShape_curvedLeftArrow": "Вигнута праворуч стрілка", + "PE.Controllers.Main.txtShape_curvedRightArrow": "Вигнута ліворуч стрілка", + "PE.Controllers.Main.txtShape_curvedUpArrow": "Вигнута вниз стрілка", + "PE.Controllers.Main.txtShape_decagon": "Десятикутник", + "PE.Controllers.Main.txtShape_diagStripe": "Діагональна смуга", + "PE.Controllers.Main.txtShape_diamond": "Ромб", + "PE.Controllers.Main.txtShape_dodecagon": "Дванадцятикутник", + "PE.Controllers.Main.txtShape_donut": "Кільце", + "PE.Controllers.Main.txtShape_doubleWave": "Подвійна хвиля", + "PE.Controllers.Main.txtShape_downArrow": "Стрілка вниз", + "PE.Controllers.Main.txtShape_downArrowCallout": "Виноска зі стрілкою вниз", + "PE.Controllers.Main.txtShape_ellipse": "Еліпс", + "PE.Controllers.Main.txtShape_ellipseRibbon": "Вигнута вниз стрічка", + "PE.Controllers.Main.txtShape_ellipseRibbon2": "Вигнута вверх стрічка", + "PE.Controllers.Main.txtShape_flowChartAlternateProcess": "Блок-схема: альтернативний процес", + "PE.Controllers.Main.txtShape_flowChartCollate": "Блок-схема: зіставлення", + "PE.Controllers.Main.txtShape_flowChartConnector": "Блок-схема: з'єднувач", + "PE.Controllers.Main.txtShape_flowChartDecision": "Блок-схема: рішення", + "PE.Controllers.Main.txtShape_flowChartDelay": "Блок-схема: затримка", + "PE.Controllers.Main.txtShape_flowChartDisplay": "Блок-схема: дисплей", + "PE.Controllers.Main.txtShape_flowChartDocument": "Блок-схема: документ", + "PE.Controllers.Main.txtShape_flowChartExtract": "Блок-схема: витяг", + "PE.Controllers.Main.txtShape_flowChartInputOutput": "Блок-схема: дані", + "PE.Controllers.Main.txtShape_flowChartInternalStorage": "Блок-схема: внутрішня пам'ять", + "PE.Controllers.Main.txtShape_flowChartMagneticDisk": "Блок-схема: магнітний диск", + "PE.Controllers.Main.txtShape_flowChartMagneticDrum": "Блок-схема: пам'ять з прямим доступом", + "PE.Controllers.Main.txtShape_flowChartMagneticTape": "Блок-схема: пам'ять з послідовним доступом", + "PE.Controllers.Main.txtShape_flowChartManualInput": "Блок-схема: ручне введення", + "PE.Controllers.Main.txtShape_flowChartManualOperation": "Блок-схема: ручне керування", + "PE.Controllers.Main.txtShape_flowChartMerge": "Блок-схема: об'єднання", + "PE.Controllers.Main.txtShape_flowChartMultidocument": "Блок-схема: декілька документів", + "PE.Controllers.Main.txtShape_flowChartOffpageConnector": "Блок-схема: посилання на іншу сторінку", + "PE.Controllers.Main.txtShape_flowChartOnlineStorage": "Блок-схема: збережені дані", + "PE.Controllers.Main.txtShape_flowChartOr": "Блок-схема: АБО", + "PE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Блок-схема: типовий процес", + "PE.Controllers.Main.txtShape_flowChartPreparation": "Блок-схема: підготовка", + "PE.Controllers.Main.txtShape_flowChartProcess": "Блок-схема: процес", + "PE.Controllers.Main.txtShape_flowChartPunchedCard": "Блок-схема: картка", + "PE.Controllers.Main.txtShape_flowChartPunchedTape": "Блок-схема: перфострічка", + "PE.Controllers.Main.txtShape_flowChartSort": "Блок-схема: сортування", + "PE.Controllers.Main.txtShape_flowChartSummingJunction": "Блок-схема: вузол суми", + "PE.Controllers.Main.txtShape_flowChartTerminator": "Блок-схема: знак закінчення", + "PE.Controllers.Main.txtShape_foldedCorner": "Загнутий кут", + "PE.Controllers.Main.txtShape_frame": "Рамка", + "PE.Controllers.Main.txtShape_halfFrame": "Половина рамки", + "PE.Controllers.Main.txtShape_heart": "Серце", + "PE.Controllers.Main.txtShape_heptagon": "Семикутник", + "PE.Controllers.Main.txtShape_hexagon": "Шестикутник", + "PE.Controllers.Main.txtShape_homePlate": "П'ятикутник", + "PE.Controllers.Main.txtShape_horizontalScroll": "Горизонтальний сувій", + "PE.Controllers.Main.txtShape_irregularSeal1": "Спалах 1", + "PE.Controllers.Main.txtShape_irregularSeal2": "Спалах 2", + "PE.Controllers.Main.txtShape_leftArrow": "Стрілка ліворуч", + "PE.Controllers.Main.txtShape_leftArrowCallout": "Виноска зі стрілкою ліворуч", + "PE.Controllers.Main.txtShape_leftBrace": "Ліва фігурна дужка", + "PE.Controllers.Main.txtShape_leftBracket": "Ліва дужка", + "PE.Controllers.Main.txtShape_leftRightArrow": "Подвійна стрілка ліворуч-праворуч", + "PE.Controllers.Main.txtShape_leftRightArrowCallout": "Виноска зі стрілками ліворуч-праворуч", + "PE.Controllers.Main.txtShape_leftRightUpArrow": "Потрійна стрілка ліворуч-праворуч-вверх", + "PE.Controllers.Main.txtShape_leftUpArrow": "Подвійна стрілка ліворуч-вверх", + "PE.Controllers.Main.txtShape_lightningBolt": "Блискавка", "PE.Controllers.Main.txtShape_line": "Лінія", + "PE.Controllers.Main.txtShape_lineWithArrow": "Стрілка", + "PE.Controllers.Main.txtShape_lineWithTwoArrows": "Подвійна стрілка", + "PE.Controllers.Main.txtShape_mathDivide": "Ділення", + "PE.Controllers.Main.txtShape_mathEqual": "Дорівнює", "PE.Controllers.Main.txtShape_mathMinus": "Мінус", + "PE.Controllers.Main.txtShape_mathMultiply": "Множення", + "PE.Controllers.Main.txtShape_mathNotEqual": "Не дорівнює", + "PE.Controllers.Main.txtShape_mathPlus": "Плюс", + "PE.Controllers.Main.txtShape_moon": "Місяць", + "PE.Controllers.Main.txtShape_noSmoking": "Заборонено", + "PE.Controllers.Main.txtShape_notchedRightArrow": "Стрілка праворуч з вирізом", + "PE.Controllers.Main.txtShape_octagon": "Восьмикутник", + "PE.Controllers.Main.txtShape_parallelogram": "Паралелограм", + "PE.Controllers.Main.txtShape_pentagon": "П'ятикутник", + "PE.Controllers.Main.txtShape_pie": "Сектор круга", + "PE.Controllers.Main.txtShape_plaque": "Табличка", + "PE.Controllers.Main.txtShape_plus": "Плюс", + "PE.Controllers.Main.txtShape_polyline1": "Крива", + "PE.Controllers.Main.txtShape_polyline2": "Довільна форма", + "PE.Controllers.Main.txtShape_quadArrow": "Зчетверена стрілка", + "PE.Controllers.Main.txtShape_quadArrowCallout": "Виноска з чотирма стрілками", + "PE.Controllers.Main.txtShape_rect": "Прямокутник", + "PE.Controllers.Main.txtShape_ribbon": "Стрічка вниз", + "PE.Controllers.Main.txtShape_ribbon2": "Стрічка вверх", + "PE.Controllers.Main.txtShape_rightArrow": "Стрілка праворуч", + "PE.Controllers.Main.txtShape_rightArrowCallout": "Виноска зі стрілкою вправоруч", + "PE.Controllers.Main.txtShape_rightBrace": "Права фігурна дужка", + "PE.Controllers.Main.txtShape_rightBracket": "Права дужка", + "PE.Controllers.Main.txtShape_round1Rect": "Прямокутник з одним закругленим кутом", + "PE.Controllers.Main.txtShape_round2DiagRect": "Прямокутник із двома закругленими протилежними кутами", + "PE.Controllers.Main.txtShape_round2SameRect": "Прямокутник із двома закругленими сусідніми кутами", + "PE.Controllers.Main.txtShape_roundRect": "Прямокутник з закругленими кутами", + "PE.Controllers.Main.txtShape_rtTriangle": "Прямокутний трикутник", + "PE.Controllers.Main.txtShape_smileyFace": "Усміхнене обличчя", + "PE.Controllers.Main.txtShape_snip1Rect": "Прямокутник з одним вирізаним кутом", + "PE.Controllers.Main.txtShape_snip2DiagRect": "Прямокутник з двома вирізаними протилежними кутами", + "PE.Controllers.Main.txtShape_snip2SameRect": "Прямокутник з двома вирізаними сусідніми кутами", + "PE.Controllers.Main.txtShape_snipRoundRect": "Прямокутник з одним вирізаним закругленим кутом", + "PE.Controllers.Main.txtShape_spline": "Крива", + "PE.Controllers.Main.txtShape_star10": "10-кінцева зірка", + "PE.Controllers.Main.txtShape_star12": "12-кінцева зірка", + "PE.Controllers.Main.txtShape_star16": "16-кінцева зірка", + "PE.Controllers.Main.txtShape_star24": "24-кінцева зірка", + "PE.Controllers.Main.txtShape_star32": "32-кінцева зірка", + "PE.Controllers.Main.txtShape_star4": "4-кінцева зірка", + "PE.Controllers.Main.txtShape_star5": "5-кінцева зірка", + "PE.Controllers.Main.txtShape_star6": "6-кінцева зірка", + "PE.Controllers.Main.txtShape_star7": "7-кінцева зірка", + "PE.Controllers.Main.txtShape_star8": "8-кінцева зірка", + "PE.Controllers.Main.txtShape_stripedRightArrow": "Штрихпунктирна стрілка праворуч", + "PE.Controllers.Main.txtShape_sun": "Сонце", + "PE.Controllers.Main.txtShape_teardrop": "Крапля", + "PE.Controllers.Main.txtShape_textRect": "Текстове вікно", + "PE.Controllers.Main.txtShape_trapezoid": "Трапеція", "PE.Controllers.Main.txtShape_triangle": "Трикутник", + "PE.Controllers.Main.txtShape_upArrow": "Стрілка вгору", + "PE.Controllers.Main.txtShape_upArrowCallout": "Виноска зі стрілкою вверх", + "PE.Controllers.Main.txtShape_upDownArrow": "Подвійна стрілка вверх-вниз", + "PE.Controllers.Main.txtShape_uturnArrow": "Розвернута стрілка", + "PE.Controllers.Main.txtShape_verticalScroll": "Вертикальний сувій", + "PE.Controllers.Main.txtShape_wave": "Хвиля", + "PE.Controllers.Main.txtShape_wedgeEllipseCallout": "Овальна виноска", + "PE.Controllers.Main.txtShape_wedgeRectCallout": "Прямокутна виноска", + "PE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Закруглена прямокутна виноска", "PE.Controllers.Main.txtSldLtTBlank": "Бланк", "PE.Controllers.Main.txtSldLtTChart": "Діаграма", "PE.Controllers.Main.txtSldLtTChartAndTx": "Графік та текст", @@ -290,24 +716,39 @@ "PE.Controllers.Main.txtSlideText": "Текст слайду", "PE.Controllers.Main.txtSlideTitle": "назва слайду", "PE.Controllers.Main.txtStarsRibbons": "Зірки та стрічки", + "PE.Controllers.Main.txtTheme_basic": "Базова", + "PE.Controllers.Main.txtTheme_blank": "Пустий слайд", + "PE.Controllers.Main.txtTheme_classic": "Класична", + "PE.Controllers.Main.txtTheme_corner": "Кутова", + "PE.Controllers.Main.txtTheme_dotted": "Точкова", "PE.Controllers.Main.txtTheme_green": "Зелений", + "PE.Controllers.Main.txtTheme_green_leaf": "Зелений лист", "PE.Controllers.Main.txtTheme_lines": "Рядки", "PE.Controllers.Main.txtTheme_office": "Офіс", "PE.Controllers.Main.txtTheme_office_theme": "Тема офісу", "PE.Controllers.Main.txtTheme_official": "Офіціальна", + "PE.Controllers.Main.txtTheme_pixel": "Піксельна", + "PE.Controllers.Main.txtTheme_safari": "Сафарі", + "PE.Controllers.Main.txtTheme_turtle": "Черепаха", "PE.Controllers.Main.txtXAxis": "X Ось", "PE.Controllers.Main.txtYAxis": "Y ось", "PE.Controllers.Main.unknownErrorText": "Невідома помилка.", "PE.Controllers.Main.unsupportedBrowserErrorText": "Ваш браузер не підтримується", "PE.Controllers.Main.uploadImageExtMessage": "Невідомий формат зображення.", "PE.Controllers.Main.uploadImageFileCountMessage": "Не завантажено жодного зображення.", - "PE.Controllers.Main.uploadImageSizeMessage": "Максимальний розмір зображення перевищено.", + "PE.Controllers.Main.uploadImageSizeMessage": "Занадто велике зображення. Максимальний розмір – 25 MB.", "PE.Controllers.Main.uploadImageTextText": "Завантаження зображення...", "PE.Controllers.Main.uploadImageTitleText": "Завантаження зображення", + "PE.Controllers.Main.waitText": "Будь ласка, зачекайте...", "PE.Controllers.Main.warnBrowserIE9": "Програма має низькі можливості для IE9. Використовувати IE10 або вище", "PE.Controllers.Main.warnBrowserZoom": "Налаштування масштабу вашого браузера не підтримується повністю. Змініть стандартний масштаб, натиснувши Ctrl + 0.", + "PE.Controllers.Main.warnLicenseExceeded": "Ви досягли ліміту на одночасне підключення до редакторів %1. Цей документ буде відкритий тільки на перегляд.
Зверніться до адміністратора, щоб дізнатися більше.", "PE.Controllers.Main.warnLicenseExp": "Термін дії вашої ліцензії минув.
Будь ласка, оновіть свою ліцензію та оновіть сторінку.", - "PE.Controllers.Main.warnNoLicense": "Ви використовуєте відкриту версію %1. Ця версія має обмеження для одночасного підключення до сервера документів (20 підключень за один раз).
Якщо вам потрібно більше, подумайте про придбання комерційної ліцензії.", + "PE.Controllers.Main.warnLicenseLimitedNoAccess": "Термін дії ліцензії закінчився.
Немає доступ до функцій редагування документів.
Будь ласка, зверніться до адміністратора.", + "PE.Controllers.Main.warnLicenseLimitedRenewed": "Потрібно поновити ліцензію.
У вас обмежений доступ до функцій редагування документів.
Будь ласка, зверніться до свого адміністратора, щоб отримати повний доступ", + "PE.Controllers.Main.warnLicenseUsersExceeded": "Ви досягли ліміту на кількість користувачів редакторів %1.
Зв'яжіться з адміністратором, щоб дізнатися більше.", + "PE.Controllers.Main.warnNoLicense": "Ви досягли ліміту на одночасне підключення до редакторів %1. Цей документ буде відкрито для перегляду.
Напишіть у відділ продажу %1, щоб обговорити індивідуальні умови ліцензування.", + "PE.Controllers.Main.warnNoLicenseUsers": "Ви досягли ліміту на одночасне підключення до редакторів %1.
Напишіть у відділ продаж %1, для обговорення індивідуальних умов ліцензування.", "PE.Controllers.Main.warnProcessRightsChange": "Вам відмовлено у наданні права редагувати файл.", "PE.Controllers.Statusbar.zoomText": "Збільшити {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "Шрифт, який ви збираєтеся зберегти, недоступний на поточному пристрої.
Текстовий стиль відображатиметься за допомогою одного з системних шрифтів, збережений шрифт буде використовуватися, коли він буде доступний.
Ви хочете продовжити ?", @@ -317,6 +758,7 @@ "PE.Controllers.Toolbar.textFontSizeErr": "Введене значення невірно.
Будь ласка, введіть числове значення від 1 до 300", "PE.Controllers.Toolbar.textFraction": "Дроби", "PE.Controllers.Toolbar.textFunction": "Функції", + "PE.Controllers.Toolbar.textInsert": "Вставити", "PE.Controllers.Toolbar.textIntegral": "Інтеграли", "PE.Controllers.Toolbar.textLargeOperator": "Великі оператори", "PE.Controllers.Toolbar.textLimitAndLog": "Межі та логарифми", @@ -642,6 +1084,8 @@ "PE.Controllers.Toolbar.txtSymbol_vdots": "Вертикальний Еліпсіс", "PE.Controllers.Toolbar.txtSymbol_xsi": "ксі", "PE.Controllers.Toolbar.txtSymbol_zeta": "Зета", + "PE.Controllers.Viewport.textFitPage": "За розміром слайду", + "PE.Controllers.Viewport.textFitWidth": "По ширині", "PE.Views.ChartSettings.textAdvanced": "Показати додаткові налаштування", "PE.Views.ChartSettings.textChartType": "Змінити тип діаграми", "PE.Views.ChartSettings.textEditData": "Редагувати дату", @@ -652,15 +1096,20 @@ "PE.Views.ChartSettings.textWidth": "Ширина", "PE.Views.ChartSettingsAdvanced.textAlt": "Альтернативний текст", "PE.Views.ChartSettingsAdvanced.textAltDescription": "Опис", - "PE.Views.ChartSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація знаходиться в зображенні, автошопі, діаграмі або таблиці.", + "PE.Views.ChartSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація міститься в зображенні, автофігурі, діаграмі або таблиці.", "PE.Views.ChartSettingsAdvanced.textAltTitle": "Назва", "PE.Views.ChartSettingsAdvanced.textTitle": "Діаграма - Розширені налаштування", + "PE.Views.DateTimeDialog.confirmDefault": "Встановити типовий формат для {0}: \"{1}\"", + "PE.Views.DateTimeDialog.textDefault": "Встановити типовим", "PE.Views.DateTimeDialog.textFormat": "Формат", + "PE.Views.DateTimeDialog.textLang": "Мова", + "PE.Views.DateTimeDialog.textUpdate": "Оновлювати автоматично", "PE.Views.DateTimeDialog.txtTitle": "Дата та час", "PE.Views.DocumentHolder.aboveText": "Вище", "PE.Views.DocumentHolder.addCommentText": "Додати коментар", + "PE.Views.DocumentHolder.addToLayoutText": "Додати в макет", "PE.Views.DocumentHolder.advancedImageText": "Зображення розширені налаштування", - "PE.Views.DocumentHolder.advancedParagraphText": "Розширенні налаштування тексту", + "PE.Views.DocumentHolder.advancedParagraphText": "Додаткові параметри абзацу", "PE.Views.DocumentHolder.advancedShapeText": "Форма розширені налаштування", "PE.Views.DocumentHolder.advancedTableText": "Таблиця розширені налаштування", "PE.Views.DocumentHolder.alignmentText": "Вирівнювання", @@ -693,9 +1142,10 @@ "PE.Views.DocumentHolder.leftText": "Лівий", "PE.Views.DocumentHolder.loadSpellText": "Завантаження варіантів...", "PE.Views.DocumentHolder.mergeCellsText": "Об'єднати клітинки", + "PE.Views.DocumentHolder.mniCustomTable": "Вставити спеціальну таблицю", "PE.Views.DocumentHolder.moreText": "Більше варіантів...", "PE.Views.DocumentHolder.noSpellVariantsText": "Немає варіантів", - "PE.Views.DocumentHolder.originalSizeText": "За замовчуванням", + "PE.Views.DocumentHolder.originalSizeText": "Реальний розмір", "PE.Views.DocumentHolder.removeHyperlinkText": "Видалити гіперпосилання", "PE.Views.DocumentHolder.rightText": "Право", "PE.Views.DocumentHolder.rowText": "Рядок", @@ -709,10 +1159,24 @@ "PE.Views.DocumentHolder.textArrangeForward": "Висувати", "PE.Views.DocumentHolder.textArrangeFront": "Перенести на передній план", "PE.Views.DocumentHolder.textCopy": "Копіювати", + "PE.Views.DocumentHolder.textCrop": "Обрізати", + "PE.Views.DocumentHolder.textCropFill": "Заливка", + "PE.Views.DocumentHolder.textCropFit": "Вписати", "PE.Views.DocumentHolder.textCut": "Вирізати", + "PE.Views.DocumentHolder.textDistributeCols": "Вирівняти ширину стовпчиків", + "PE.Views.DocumentHolder.textDistributeRows": "Вирівняти висоту рядків", + "PE.Views.DocumentHolder.textFlipH": "Перевернути горизонтально", + "PE.Views.DocumentHolder.textFlipV": "Перевернути вертикально", + "PE.Views.DocumentHolder.textFromFile": "З файлу", + "PE.Views.DocumentHolder.textFromStorage": "Зі сховища", + "PE.Views.DocumentHolder.textFromUrl": "За URL", "PE.Views.DocumentHolder.textNextPage": "Наступний слайд", "PE.Views.DocumentHolder.textPaste": "Вставити", "PE.Views.DocumentHolder.textPrevPage": "Попередній слайд", + "PE.Views.DocumentHolder.textReplace": "Замінити зображення", + "PE.Views.DocumentHolder.textRotate": "Поворот", + "PE.Views.DocumentHolder.textRotate270": "Повернути на 90° проти годинникової стрілки", + "PE.Views.DocumentHolder.textRotate90": "Повернути на 90° за годинниковою стрілкою", "PE.Views.DocumentHolder.textShapeAlignBottom": "Вирівняти знизу", "PE.Views.DocumentHolder.textShapeAlignCenter": "Вирівняти центр", "PE.Views.DocumentHolder.textShapeAlignLeft": "Вирівняти зліва", @@ -779,6 +1243,7 @@ "PE.Views.DocumentHolder.txtInsertBreak": "Вставити ручне переривання", "PE.Views.DocumentHolder.txtInsertEqAfter": "Вставити рівняння після", "PE.Views.DocumentHolder.txtInsertEqBefore": "Вставити рівняння перед", + "PE.Views.DocumentHolder.txtKeepTextOnly": "Зберегти тільки текст", "PE.Views.DocumentHolder.txtLimitChange": "Зміна меж розташування", "PE.Views.DocumentHolder.txtLimitOver": "Обмеження над текстом", "PE.Views.DocumentHolder.txtLimitUnder": "Обмеження під текстом", @@ -786,8 +1251,12 @@ "PE.Views.DocumentHolder.txtMatrixAlign": "Вирівнювання матриці", "PE.Views.DocumentHolder.txtNewSlide": "Новий слайд", "PE.Views.DocumentHolder.txtOverbar": "Риска над текстом", - "PE.Views.DocumentHolder.txtPressLink": "Натисніть CTRL та натисніть посилання", + "PE.Views.DocumentHolder.txtPasteDestFormat": "Використовувати кінцеву тему", + "PE.Views.DocumentHolder.txtPastePicture": "Зображення", + "PE.Views.DocumentHolder.txtPasteSourceFormat": "Зберегти початкове форматування", + "PE.Views.DocumentHolder.txtPressLink": "Натисніть CTRL та клацніть по посиланню", "PE.Views.DocumentHolder.txtPreview": "Розпочати слайдшоу", + "PE.Views.DocumentHolder.txtPrintSelection": "Надрукувати виділене", "PE.Views.DocumentHolder.txtRemFractionBar": "Видалити фракційну стрічку", "PE.Views.DocumentHolder.txtRemLimit": "Видалити ліміт", "PE.Views.DocumentHolder.txtRemoveAccentChar": "видалити наголоси", @@ -795,6 +1264,7 @@ "PE.Views.DocumentHolder.txtRemScripts": "Видалити скрипти", "PE.Views.DocumentHolder.txtRemSubscript": "Видалити підписку", "PE.Views.DocumentHolder.txtRemSuperscript": "Видалити верхній індекс", + "PE.Views.DocumentHolder.txtResetLayout": "Скинути макет слайду", "PE.Views.DocumentHolder.txtScriptsAfter": "Рукописи після тексту", "PE.Views.DocumentHolder.txtScriptsBefore": "Рукописи перед текстом", "PE.Views.DocumentHolder.txtSelectAll": "Виділити все", @@ -810,6 +1280,7 @@ "PE.Views.DocumentHolder.txtTop": "Верх", "PE.Views.DocumentHolder.txtUnderbar": "Риска після тексту", "PE.Views.DocumentHolder.txtUngroup": "Розпакувати", + "PE.Views.DocumentHolder.txtWarnUrl": "Перехід за цим посиланням може нашкодити вашому пристрою та даним.
Ви дійсно бажаєте продовжити?", "PE.Views.DocumentHolder.vertAlignText": "Вертикальне вирівнювання", "PE.Views.DocumentPreview.goToSlideText": "Перейти до слайду", "PE.Views.DocumentPreview.slideIndexText": "Слайд {0} з {1}", @@ -825,13 +1296,17 @@ "PE.Views.DocumentPreview.txtPrev": "Попередній слайд", "PE.Views.DocumentPreview.txtReset": "Скасувати", "PE.Views.FileMenu.btnAboutCaption": "Про", - "PE.Views.FileMenu.btnBackCaption": "Перейти до документів", + "PE.Views.FileMenu.btnBackCaption": "Відкрити розташування файлу", "PE.Views.FileMenu.btnCloseMenuCaption": "Закрити меню", "PE.Views.FileMenu.btnCreateNewCaption": "Створити новий", "PE.Views.FileMenu.btnDownloadCaption": "Завантажити як...", + "PE.Views.FileMenu.btnExitCaption": "Вийти", + "PE.Views.FileMenu.btnFileOpenCaption": "Відкрити...", "PE.Views.FileMenu.btnHelpCaption": "Допомога...", + "PE.Views.FileMenu.btnHistoryCaption": "Історія версій", "PE.Views.FileMenu.btnInfoCaption": "Інформація про презентацію...", "PE.Views.FileMenu.btnPrintCaption": "Роздрукувати", + "PE.Views.FileMenu.btnProtectCaption": "Захистити", "PE.Views.FileMenu.btnRecentFilesCaption": "Відкрити останні ...", "PE.Views.FileMenu.btnRenameCaption": "Перейменувати...", "PE.Views.FileMenu.btnReturnCaption": "Назад до презентації", @@ -841,20 +1316,36 @@ "PE.Views.FileMenu.btnSaveCopyAsCaption": "Зберегти копію як...", "PE.Views.FileMenu.btnSettingsCaption": "Розширені налаштування...", "PE.Views.FileMenu.btnToEditCaption": "Редагувати презентацію", + "PE.Views.FileMenuPanels.CreateNew.txtBlank": "Пуста презентація", + "PE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Створити нову", "PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Застосувати", "PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Додати автора", "PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Додати текст", "PE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Додаток", "PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Автор", "PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Змінити права доступу", + "PE.Views.FileMenuPanels.DocumentInfo.txtComment": "Коментар", + "PE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Створена", + "PE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Автор останньої зміни", + "PE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Остання зміна", + "PE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Власник", "PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Місцезнаходження", "PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Особи, які мають права", "PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Тема", - "PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Назва презентації", + "PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Назва", "PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Завантажено", "PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Змінити права доступу", "PE.Views.FileMenuPanels.DocumentRights.txtRights": "Особи, які мають права", "PE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Увага", + "PE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "За допомогою паролю", + "PE.Views.FileMenuPanels.ProtectDoc.strProtect": "Захистити презентацію", + "PE.Views.FileMenuPanels.ProtectDoc.strSignature": "За допомогою підпису", + "PE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Редагувати презентацію", + "PE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Під час редагування з презентації буде видалено підписи.
Продовжити?", + "PE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Ця презентація захищена паролем", + "PE.Views.FileMenuPanels.ProtectDoc.txtSigned": "До презентації додано дійсні підписи. Презентація захищена від редагування.", + "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": "Увімкніть автозапуск", @@ -863,11 +1354,16 @@ "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Інші користувачі побачать ваші зміни одразу", "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Вам потрібно буде прийняти зміни, перш ніж побачити їх", "PE.Views.FileMenuPanels.Settings.strFast": "Швидко", - "PE.Views.FileMenuPanels.Settings.strForcesave": "Завжди зберігати на сервері (в іншому випадку зберегти на сервері закритий документ)", + "PE.Views.FileMenuPanels.Settings.strFontRender": "Хінтинг шрифтів", + "PE.Views.FileMenuPanels.Settings.strForcesave": "Додавати версію до сховища після натискання кнопки Зберегти або Ctrl+S", "PE.Views.FileMenuPanels.Settings.strInputMode": "Увімкніть ієрогліфи", + "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Налаштування макросів", + "PE.Views.FileMenuPanels.Settings.strPaste": "Вирізання, копіювання та вставка", + "PE.Views.FileMenuPanels.Settings.strPasteButton": "Показувати кнопку Налаштування вставки при вставці вмісту", "PE.Views.FileMenuPanels.Settings.strShowChanges": "Зміни у співпраці в реальному часі", "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Увімкніть параметр перевірки орфографії", "PE.Views.FileMenuPanels.Settings.strStrict": "Суворий", + "PE.Views.FileMenuPanels.Settings.strTheme": "Тема інтерфейсу", "PE.Views.FileMenuPanels.Settings.strUnit": "Одиниця виміру", "PE.Views.FileMenuPanels.Settings.strZoom": "Зменшити значення за замовчуванням", "PE.Views.FileMenuPanels.Settings.text10Minutes": "Кожні 10 хвилин", @@ -878,9 +1374,11 @@ "PE.Views.FileMenuPanels.Settings.textAutoRecover": "Автовідновлення", "PE.Views.FileMenuPanels.Settings.textAutoSave": "Автозбереження", "PE.Views.FileMenuPanels.Settings.textDisabled": "Заблокований", - "PE.Views.FileMenuPanels.Settings.textForceSave": "Зберегти на сервері", + "PE.Views.FileMenuPanels.Settings.textForceSave": "Збереження проміжних версій", "PE.Views.FileMenuPanels.Settings.textMinute": "Кожну хвилину", "PE.Views.FileMenuPanels.Settings.txtAll": "Показати усе", + "PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Параметри автозаміни...", + "PE.Views.FileMenuPanels.Settings.txtCacheMode": "Режим кешування за замовчуванням", "PE.Views.FileMenuPanels.Settings.txtCm": "Сантиметр", "PE.Views.FileMenuPanels.Settings.txtFitSlide": "Пристосувати до слайду", "PE.Views.FileMenuPanels.Settings.txtFitWidth": "Придатний до ширини", @@ -888,13 +1386,31 @@ "PE.Views.FileMenuPanels.Settings.txtInput": "Альтернативний ввід", "PE.Views.FileMenuPanels.Settings.txtLast": "Переглянути останнє", "PE.Views.FileMenuPanels.Settings.txtMac": "як OS X", + "PE.Views.FileMenuPanels.Settings.txtNative": "Власний", + "PE.Views.FileMenuPanels.Settings.txtProofing": "Правопис", "PE.Views.FileMenuPanels.Settings.txtPt": "Визначити", + "PE.Views.FileMenuPanels.Settings.txtRunMacros": "Увімкнути все", + "PE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Увімкнути всі макроси без сповіщення", "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Перевірка орфографії", "PE.Views.FileMenuPanels.Settings.txtStopMacros": "Вимкнути все", + "PE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Вимкнути всі макроси без сповіщення", + "PE.Views.FileMenuPanels.Settings.txtWarnMacros": "Показати сповіщення", + "PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Вимкнути всі макроси зі сповіщенням", "PE.Views.FileMenuPanels.Settings.txtWin": "як Windows", + "PE.Views.HeaderFooterDialog.applyAllText": "Застосувати до всіх", "PE.Views.HeaderFooterDialog.applyText": "Застосувати", + "PE.Views.HeaderFooterDialog.diffLanguage": "Формат дати повинен використовувати ту ж мову, що й зразок слайдів.
Щоб змінити зразок, замість кнопки 'Застосувати' натисніть кнопку 'Застосувати до всіх'", "PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Увага", "PE.Views.HeaderFooterDialog.textDateTime": "Дата і час", + "PE.Views.HeaderFooterDialog.textFixed": "Фіксовано", + "PE.Views.HeaderFooterDialog.textFooter": "Текст у нижньому колонтитулі", + "PE.Views.HeaderFooterDialog.textFormat": "Формати", + "PE.Views.HeaderFooterDialog.textLang": "Мова", + "PE.Views.HeaderFooterDialog.textNotTitle": "Не показувати на титульному слайді", + "PE.Views.HeaderFooterDialog.textPreview": "Перегляд", + "PE.Views.HeaderFooterDialog.textSlideNum": "Номер слайду", + "PE.Views.HeaderFooterDialog.textTitle": "Параметри нижнього колонтитула", + "PE.Views.HeaderFooterDialog.textUpdate": "Оновлювати автоматично", "PE.Views.HyperlinkSettingsDialog.strDisplay": "Дісплей", "PE.Views.HyperlinkSettingsDialog.strLinkTo": "З'єднатися з", "PE.Views.HyperlinkSettingsDialog.textDefault": "Виберіть текстовий фрагмент", @@ -903,6 +1419,7 @@ "PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Введіть підказку тут", "PE.Views.HyperlinkSettingsDialog.textExternalLink": "Зовнішнє посилання", "PE.Views.HyperlinkSettingsDialog.textInternalLink": "Слайд у цій Презентації", + "PE.Views.HyperlinkSettingsDialog.textSlides": "Слайди", "PE.Views.HyperlinkSettingsDialog.textTipText": "Текст ScreenTip", "PE.Views.HyperlinkSettingsDialog.textTitle": "Налаштування гіперсилки", "PE.Views.HyperlinkSettingsDialog.txtEmpty": "Це поле є обов'язковим", @@ -911,33 +1428,46 @@ "PE.Views.HyperlinkSettingsDialog.txtNext": "Наступний слайд", "PE.Views.HyperlinkSettingsDialog.txtNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com\"", "PE.Views.HyperlinkSettingsDialog.txtPrev": "Попередній слайд", + "PE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Це поле може містити не більше 2083 символів", "PE.Views.HyperlinkSettingsDialog.txtSlide": "слайд", "PE.Views.ImageSettings.textAdvanced": "Показати додаткові налаштування", + "PE.Views.ImageSettings.textCrop": "Обрізати", + "PE.Views.ImageSettings.textCropFill": "Заливка", + "PE.Views.ImageSettings.textCropFit": "Вписати", "PE.Views.ImageSettings.textEdit": "Редагувати", "PE.Views.ImageSettings.textEditObject": "Редагувати об'єкт", + "PE.Views.ImageSettings.textFitSlide": "За розміром слайду", + "PE.Views.ImageSettings.textFlip": "Перевернути", "PE.Views.ImageSettings.textFromFile": "З файлу", + "PE.Views.ImageSettings.textFromStorage": "Зі сховища", "PE.Views.ImageSettings.textFromUrl": "З URL", "PE.Views.ImageSettings.textHeight": "Висота", + "PE.Views.ImageSettings.textHint270": "Повернути на 90° проти годинникової стрілки", + "PE.Views.ImageSettings.textHint90": "Повернути на 90° за годинниковою стрілкою", + "PE.Views.ImageSettings.textHintFlipH": "Перевернути горизонтально", + "PE.Views.ImageSettings.textHintFlipV": "Перевернути вертикально", "PE.Views.ImageSettings.textInsert": "Замінити зображення", - "PE.Views.ImageSettings.textOriginalSize": "За замовчуванням", + "PE.Views.ImageSettings.textOriginalSize": "Реальний розмір", "PE.Views.ImageSettings.textRotate90": "Повернути на 90°", "PE.Views.ImageSettings.textRotation": "Поворот", "PE.Views.ImageSettings.textSize": "Розмір", "PE.Views.ImageSettings.textWidth": "Ширина", "PE.Views.ImageSettingsAdvanced.textAlt": "Альтернативний текст", "PE.Views.ImageSettingsAdvanced.textAltDescription": "Опис", - "PE.Views.ImageSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація знаходиться в зображенні, автошопі, діаграмі або таблиці.", + "PE.Views.ImageSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація міститься в зображенні, автофігурі, діаграмі або таблиці.", "PE.Views.ImageSettingsAdvanced.textAltTitle": "Назва", "PE.Views.ImageSettingsAdvanced.textAngle": "Нахил", "PE.Views.ImageSettingsAdvanced.textFlipped": "Віддзеркалено", "PE.Views.ImageSettingsAdvanced.textHeight": "Висота", + "PE.Views.ImageSettingsAdvanced.textHorizontally": "По горизонталі", "PE.Views.ImageSettingsAdvanced.textKeepRatio": "Сталі пропорції", - "PE.Views.ImageSettingsAdvanced.textOriginalSize": "За замовчуванням", + "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Реальний розмір", "PE.Views.ImageSettingsAdvanced.textPlacement": "Розміщення", "PE.Views.ImageSettingsAdvanced.textPosition": "Позиція", "PE.Views.ImageSettingsAdvanced.textRotation": "Поворот", "PE.Views.ImageSettingsAdvanced.textSize": "Розмір", "PE.Views.ImageSettingsAdvanced.textTitle": "Зображення - розширені налаштування", + "PE.Views.ImageSettingsAdvanced.textVertically": "По вертикалі", "PE.Views.ImageSettingsAdvanced.textWidth": "Ширина", "PE.Views.LeftMenu.tipAbout": "Про", "PE.Views.LeftMenu.tipChat": "Чат", @@ -948,7 +1478,9 @@ "PE.Views.LeftMenu.tipSupport": "Відгуки і підтримка", "PE.Views.LeftMenu.tipTitles": "Назви", "PE.Views.LeftMenu.txtDeveloper": "Режим розробника", + "PE.Views.LeftMenu.txtLimit": "Обмежений доступ", "PE.Views.LeftMenu.txtTrial": "ПРОБНИЙ РЕЖИМ", + "PE.Views.LeftMenu.txtTrialDev": "Пробний режим розробника", "PE.Views.ParagraphSettings.strLineHeight": "Лінія інтервалу", "PE.Views.ParagraphSettings.strParagraphSpacing": "Параметр інтервалу", "PE.Views.ParagraphSettings.strSpacingAfter": "після", @@ -962,19 +1494,31 @@ "PE.Views.ParagraphSettingsAdvanced.noTabs": "Вказані вкладки з'являться в цьому полі", "PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Усі великі", "PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Подвійне перекреслення", + "PE.Views.ParagraphSettingsAdvanced.strIndent": "Відступи", "PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Лівий", + "PE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Міжрядковий інтервал", "PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Право", + "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Після", + "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Перед", + "PE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Перший рядок", "PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Шрифт", - "PE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Відступи та розміщення", + "PE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Відступи та інтервали", "PE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Зменшені великі", + "PE.Views.ParagraphSettingsAdvanced.strSpacing": "Інтервал між абзацами", "PE.Views.ParagraphSettingsAdvanced.strStrike": "Перекреслення", "PE.Views.ParagraphSettingsAdvanced.strSubscript": "Підрядковий", "PE.Views.ParagraphSettingsAdvanced.strSuperscript": "Надрядковий", "PE.Views.ParagraphSettingsAdvanced.strTabs": "Вкладка", "PE.Views.ParagraphSettingsAdvanced.textAlign": "Вирівнювання", + "PE.Views.ParagraphSettingsAdvanced.textAuto": "Множник", "PE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Пробіл між символами", "PE.Views.ParagraphSettingsAdvanced.textDefault": "Вкладка за умовчанням", "PE.Views.ParagraphSettingsAdvanced.textEffects": "Ефекти", + "PE.Views.ParagraphSettingsAdvanced.textExact": "Точно", + "PE.Views.ParagraphSettingsAdvanced.textFirstLine": "Відступ", + "PE.Views.ParagraphSettingsAdvanced.textHanging": "Виступ", + "PE.Views.ParagraphSettingsAdvanced.textJustified": "По ширині", + "PE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(немає)", "PE.Views.ParagraphSettingsAdvanced.textRemove": "Видалити", "PE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Видалити усе", "PE.Views.ParagraphSettingsAdvanced.textSet": "Вказати", @@ -983,10 +1527,12 @@ "PE.Views.ParagraphSettingsAdvanced.textTabPosition": "Положення вкладки", "PE.Views.ParagraphSettingsAdvanced.textTabRight": "Право", "PE.Views.ParagraphSettingsAdvanced.textTitle": "Параграф - розширені налаштування", + "PE.Views.ParagraphSettingsAdvanced.txtAutoText": "Авто", "PE.Views.RightMenu.txtChartSettings": "Налаштування діаграми", "PE.Views.RightMenu.txtImageSettings": "Налаштування зображення", - "PE.Views.RightMenu.txtParagraphSettings": "Налаштування тексту", + "PE.Views.RightMenu.txtParagraphSettings": "Параметри абзацу", "PE.Views.RightMenu.txtShapeSettings": "Параметри форми", + "PE.Views.RightMenu.txtSignatureSettings": "Налаштування підпису", "PE.Views.RightMenu.txtSlideSettings": "Налаштування слайду", "PE.Views.RightMenu.txtTableSettings": "Налаштування таблиці", "PE.Views.RightMenu.txtTextArtSettings": "Налаштування текст Art", @@ -996,31 +1542,43 @@ "PE.Views.ShapeSettings.strFill": "Заповнити", "PE.Views.ShapeSettings.strForeground": "Колір переднього плану", "PE.Views.ShapeSettings.strPattern": "Візерунок", + "PE.Views.ShapeSettings.strShadow": "Зображати тінь", "PE.Views.ShapeSettings.strSize": "Розмір", - "PE.Views.ShapeSettings.strStroke": "Штрих", + "PE.Views.ShapeSettings.strStroke": "Контур", "PE.Views.ShapeSettings.strTransparency": "Непрозорість", "PE.Views.ShapeSettings.strType": "Тип", "PE.Views.ShapeSettings.textAdvanced": "Показати додаткові налаштування", + "PE.Views.ShapeSettings.textAngle": "Кут", "PE.Views.ShapeSettings.textBorderSizeErr": "Введене значення невірно.
Будь ласка, введіть значення від 0 pt до 1584 pt.", "PE.Views.ShapeSettings.textColor": "Заповнити колір", "PE.Views.ShapeSettings.textDirection": "Напрямок", "PE.Views.ShapeSettings.textEmptyPattern": "Немає шаблону", + "PE.Views.ShapeSettings.textFlip": "Перевернути", "PE.Views.ShapeSettings.textFromFile": "З файлу", + "PE.Views.ShapeSettings.textFromStorage": "Зі сховища", "PE.Views.ShapeSettings.textFromUrl": "З URL", "PE.Views.ShapeSettings.textGradient": "Градієнт", "PE.Views.ShapeSettings.textGradientFill": "Заповнити градієнт", + "PE.Views.ShapeSettings.textHint270": "Повернути на 90° проти годинникової стрілки", + "PE.Views.ShapeSettings.textHint90": "Повернути на 90° за годинниковою стрілкою", + "PE.Views.ShapeSettings.textHintFlipH": "Перевернути горизонтально", + "PE.Views.ShapeSettings.textHintFlipV": "Перевернути вертикально", "PE.Views.ShapeSettings.textImageTexture": "Зображення або текстура", "PE.Views.ShapeSettings.textLinear": "Лінійний", "PE.Views.ShapeSettings.textNoFill": "Немає заповнення", "PE.Views.ShapeSettings.textPatternFill": "Візерунок", + "PE.Views.ShapeSettings.textPosition": "Положення", "PE.Views.ShapeSettings.textRadial": "Радіальний", "PE.Views.ShapeSettings.textRotate90": "Повернути на 90°", "PE.Views.ShapeSettings.textRotation": "Поворот", + "PE.Views.ShapeSettings.textSelectImage": "Вибрати зображення", "PE.Views.ShapeSettings.textSelectTexture": "Обрати", "PE.Views.ShapeSettings.textStretch": "Розтягнути", "PE.Views.ShapeSettings.textStyle": "Стиль", "PE.Views.ShapeSettings.textTexture": "З текстури", "PE.Views.ShapeSettings.textTile": "Забеспечити таємність", + "PE.Views.ShapeSettings.tipAddGradientPoint": "Додати точку градієнта", + "PE.Views.ShapeSettings.tipRemoveGradientPoint": "Видалити точку градієнта", "PE.Views.ShapeSettings.txtBrownPaper": "Коричневий папір", "PE.Views.ShapeSettings.txtCanvas": "Полотно", "PE.Views.ShapeSettings.txtCarton": "Картинка", @@ -1037,7 +1595,7 @@ "PE.Views.ShapeSettingsAdvanced.strMargins": "Текстове накладення тексту", "PE.Views.ShapeSettingsAdvanced.textAlt": "Альтернативний текст", "PE.Views.ShapeSettingsAdvanced.textAltDescription": "Опис", - "PE.Views.ShapeSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація знаходиться в зображенні, автошопі, діаграмі або таблиці.", + "PE.Views.ShapeSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація міститься в зображенні, автофігурі, діаграмі або таблиці.", "PE.Views.ShapeSettingsAdvanced.textAltTitle": "Назва", "PE.Views.ShapeSettingsAdvanced.textAngle": "Нахил", "PE.Views.ShapeSettingsAdvanced.textArrows": "Стрілки", @@ -1053,34 +1611,55 @@ "PE.Views.ShapeSettingsAdvanced.textFlat": "Площина", "PE.Views.ShapeSettingsAdvanced.textFlipped": "Віддзеркалено", "PE.Views.ShapeSettingsAdvanced.textHeight": "Висота", + "PE.Views.ShapeSettingsAdvanced.textHorizontally": "По горизонталі", "PE.Views.ShapeSettingsAdvanced.textJoinType": "Приєднати тип", "PE.Views.ShapeSettingsAdvanced.textKeepRatio": "Сталі пропорції", "PE.Views.ShapeSettingsAdvanced.textLeft": "Лівий", "PE.Views.ShapeSettingsAdvanced.textLineStyle": "Стиль лінії", "PE.Views.ShapeSettingsAdvanced.textMiter": "Мітер", + "PE.Views.ShapeSettingsAdvanced.textNofit": "Без автопідбору", + "PE.Views.ShapeSettingsAdvanced.textResizeFit": "Вмістити текст у фігурі", "PE.Views.ShapeSettingsAdvanced.textRight": "Право", "PE.Views.ShapeSettingsAdvanced.textRotation": "Поворот", "PE.Views.ShapeSettingsAdvanced.textRound": "Круглий", + "PE.Views.ShapeSettingsAdvanced.textShrink": "Стиснути текст при переповненні", "PE.Views.ShapeSettingsAdvanced.textSize": "Розмір", "PE.Views.ShapeSettingsAdvanced.textSpacing": "Розміщення між стовпцями", "PE.Views.ShapeSettingsAdvanced.textSquare": "Площа", + "PE.Views.ShapeSettingsAdvanced.textTextBox": "Текстове вікно", "PE.Views.ShapeSettingsAdvanced.textTitle": "Форма - розширені налаштування", "PE.Views.ShapeSettingsAdvanced.textTop": "Верх", + "PE.Views.ShapeSettingsAdvanced.textVertically": "По вертикалі", "PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Ваги та стрілки", "PE.Views.ShapeSettingsAdvanced.textWidth": "Ширина", "PE.Views.ShapeSettingsAdvanced.txtNone": "немає", "PE.Views.SignatureSettings.notcriticalErrorTitle": "Увага", + "PE.Views.SignatureSettings.strDelete": "Вилучити підпис", + "PE.Views.SignatureSettings.strDetails": "Склад підпису", + "PE.Views.SignatureSettings.strInvalid": "Недійсні підписи", + "PE.Views.SignatureSettings.strSign": "Підписати", + "PE.Views.SignatureSettings.strSignature": "Підпис", + "PE.Views.SignatureSettings.strValid": "Дійсні підписи", + "PE.Views.SignatureSettings.txtContinueEditing": "Все одно редагувати", + "PE.Views.SignatureSettings.txtEditWarning": "Під час редагування з презентації буде видалено підписи.
Продовжити?", + "PE.Views.SignatureSettings.txtRemoveWarning": "Ви хочете видалити цей підпис?
Це не можна скасувати.", + "PE.Views.SignatureSettings.txtSigned": "До презентації додано дійсні підписи. Презентація захищена від редагування.", + "PE.Views.SignatureSettings.txtSignedInvalid": "Деякі з цифрових підписів у презентації недійсні або їх не можна перевірити. Презентація захищена від редагування.", "PE.Views.SlideSettings.strBackground": "Колір фону", "PE.Views.SlideSettings.strColor": "Колір", + "PE.Views.SlideSettings.strDateTime": "Показувати дату та час", "PE.Views.SlideSettings.strFill": "Задній фон", "PE.Views.SlideSettings.strForeground": "Колір переднього плану", "PE.Views.SlideSettings.strPattern": "Візерунок", + "PE.Views.SlideSettings.strSlideNum": "Показувати номер слайду", "PE.Views.SlideSettings.strTransparency": "Непрозорість", "PE.Views.SlideSettings.textAdvanced": "Показати додаткові налаштування", + "PE.Views.SlideSettings.textAngle": "Кут", "PE.Views.SlideSettings.textColor": "Заповнити колір", "PE.Views.SlideSettings.textDirection": "Напрямок", "PE.Views.SlideSettings.textEmptyPattern": "Немає шаблону", "PE.Views.SlideSettings.textFromFile": "З файлу", + "PE.Views.SlideSettings.textFromStorage": "Зі сховища", "PE.Views.SlideSettings.textFromUrl": "З URL", "PE.Views.SlideSettings.textGradient": "Градієнт", "PE.Views.SlideSettings.textGradientFill": "Заповнити градієнт", @@ -1088,13 +1667,17 @@ "PE.Views.SlideSettings.textLinear": "Лінійний", "PE.Views.SlideSettings.textNoFill": "Немає заповнення", "PE.Views.SlideSettings.textPatternFill": "Візерунок", + "PE.Views.SlideSettings.textPosition": "Положення", "PE.Views.SlideSettings.textRadial": "Радіальний", "PE.Views.SlideSettings.textReset": "Встановити зміни", + "PE.Views.SlideSettings.textSelectImage": "Вибрати зображення", "PE.Views.SlideSettings.textSelectTexture": "Обрати", "PE.Views.SlideSettings.textStretch": "Розтягнути", "PE.Views.SlideSettings.textStyle": "Стиль", "PE.Views.SlideSettings.textTexture": "З текстури", "PE.Views.SlideSettings.textTile": "Забеспечити таємність", + "PE.Views.SlideSettings.tipAddGradientPoint": "Додати точку градієнта", + "PE.Views.SlideSettings.tipRemoveGradientPoint": "Видалити точку градієнта", "PE.Views.SlideSettings.txtBrownPaper": "Коричневий папір", "PE.Views.SlideSettings.txtCanvas": "Полотно", "PE.Views.SlideSettings.txtCarton": "Картинка", @@ -1126,8 +1709,12 @@ "PE.Views.SlideSizeSettings.txtLetter": "Листовий папір (8,5x11 дюйма)", "PE.Views.SlideSizeSettings.txtOverhead": "Накладні витрати", "PE.Views.SlideSizeSettings.txtStandard": "Стандартний (4: 3)", + "PE.Views.SlideSizeSettings.txtWidescreen": "Широкоекранний", "PE.Views.Statusbar.goToPageText": "Перейти до слайду", "PE.Views.Statusbar.pageIndexText": "Слайд {0} з {1}", + "PE.Views.Statusbar.textShowBegin": "Показ слайдів від початку", + "PE.Views.Statusbar.textShowCurrent": "Показ слайдів із поточного слайду", + "PE.Views.Statusbar.textShowPresenterView": "Показ слайдів в режимі доповідача", "PE.Views.Statusbar.tipAccessRights": "Управління правами доступу до документів", "PE.Views.Statusbar.tipFitPage": "Пристосувати до слайду", "PE.Views.Statusbar.tipFitWidth": "Придатний до ширини", @@ -1156,16 +1743,21 @@ "PE.Views.TableSettings.textBanded": "У смужку", "PE.Views.TableSettings.textBorderColor": "Колір", "PE.Views.TableSettings.textBorders": "Стиль меж", + "PE.Views.TableSettings.textCellSize": "Розмір клітини", "PE.Views.TableSettings.textColumns": "Колонки", + "PE.Views.TableSettings.textDistributeCols": "Вирівняти ширину стовпчиків", + "PE.Views.TableSettings.textDistributeRows": "Вирівняти висоту рядків", "PE.Views.TableSettings.textEdit": "Рядки і колони", "PE.Views.TableSettings.textEmptyTemplate": "Немає шаблонів", "PE.Views.TableSettings.textFirst": "перший", "PE.Views.TableSettings.textHeader": "Заголовок", + "PE.Views.TableSettings.textHeight": "Висота", "PE.Views.TableSettings.textLast": "Останній", "PE.Views.TableSettings.textRows": "Рядки", "PE.Views.TableSettings.textSelectBorders": "Виберіть кордони, які ви хочете змінити, застосувавши обраний вище стиль", "PE.Views.TableSettings.textTemplate": "Виберіть з шаблону", "PE.Views.TableSettings.textTotal": "Загалом", + "PE.Views.TableSettings.textWidth": "Ширина", "PE.Views.TableSettings.tipAll": "Встановити зовнішній край та всі внутрішні лінії", "PE.Views.TableSettings.tipBottom": "Встановити лише зовнішню нижню межу", "PE.Views.TableSettings.tipInner": "Встановити лише внутрішні лінії", @@ -1178,10 +1770,16 @@ "PE.Views.TableSettings.tipTop": "Встановити лише зовнішній верхній край", "PE.Views.TableSettings.txtNoBorders": "Немає кордонів", "PE.Views.TableSettings.txtTable_Accent": "акцент", + "PE.Views.TableSettings.txtTable_DarkStyle": "Темний стиль", + "PE.Views.TableSettings.txtTable_LightStyle": "Світлий стиль", + "PE.Views.TableSettings.txtTable_MediumStyle": "Середній стиль", "PE.Views.TableSettings.txtTable_NoGrid": "Немає Сітки", + "PE.Views.TableSettings.txtTable_NoStyle": "Немає стилю", + "PE.Views.TableSettings.txtTable_TableGrid": "Сітка таблиці", + "PE.Views.TableSettings.txtTable_ThemedStyle": "Стиль із теми", "PE.Views.TableSettingsAdvanced.textAlt": "Альтернативний текст", "PE.Views.TableSettingsAdvanced.textAltDescription": "Опис", - "PE.Views.TableSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація знаходиться в зображенні, автошопі, діаграмі або таблиці.", + "PE.Views.TableSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація міститься в зображенні, автофігурі, діаграмі або таблиці.", "PE.Views.TableSettingsAdvanced.textAltTitle": "Назва", "PE.Views.TableSettingsAdvanced.textBottom": "Внизу", "PE.Views.TableSettingsAdvanced.textCheckMargins": "Використовувати поля за замовчуванням", @@ -1198,9 +1796,10 @@ "PE.Views.TextArtSettings.strForeground": "Колір переднього плану", "PE.Views.TextArtSettings.strPattern": "Візерунок", "PE.Views.TextArtSettings.strSize": "Розмір", - "PE.Views.TextArtSettings.strStroke": "Штрих", + "PE.Views.TextArtSettings.strStroke": "Контур", "PE.Views.TextArtSettings.strTransparency": "Непрозорість", "PE.Views.TextArtSettings.strType": "Тип", + "PE.Views.TextArtSettings.textAngle": "Кут", "PE.Views.TextArtSettings.textBorderSizeErr": "Введене значення невірно.
Будь ласка, введіть значення від 0 pt до 1584 pt.", "PE.Views.TextArtSettings.textColor": "Заповнити колір", "PE.Views.TextArtSettings.textDirection": "Напрямок", @@ -1213,6 +1812,7 @@ "PE.Views.TextArtSettings.textLinear": "Лінійний", "PE.Views.TextArtSettings.textNoFill": "Немає заповнення", "PE.Views.TextArtSettings.textPatternFill": "Візерунок", + "PE.Views.TextArtSettings.textPosition": "Положення", "PE.Views.TextArtSettings.textRadial": "Радіальний", "PE.Views.TextArtSettings.textSelectTexture": "Обрати", "PE.Views.TextArtSettings.textStretch": "Розтягнути", @@ -1221,6 +1821,8 @@ "PE.Views.TextArtSettings.textTexture": "З текстури", "PE.Views.TextArtSettings.textTile": "Забеспечити таємність", "PE.Views.TextArtSettings.textTransform": "Перетворення", + "PE.Views.TextArtSettings.tipAddGradientPoint": "Додати точку градієнта", + "PE.Views.TextArtSettings.tipRemoveGradientPoint": "Видалити точку градієнта", "PE.Views.TextArtSettings.txtBrownPaper": "Коричневий папір", "PE.Views.TextArtSettings.txtCanvas": "Полотно", "PE.Views.TextArtSettings.txtCarton": "Картинка", @@ -1237,6 +1839,10 @@ "PE.Views.Toolbar.capBtnAddComment": "Додати коментар", "PE.Views.Toolbar.capBtnComment": "Коментар", "PE.Views.Toolbar.capBtnDateTime": "Дата та час", + "PE.Views.Toolbar.capBtnInsHeader": "Колонтитул", + "PE.Views.Toolbar.capBtnInsSymbol": "Символ", + "PE.Views.Toolbar.capBtnSlideNum": "Номер слайду", + "PE.Views.Toolbar.capInsertAudio": "Аудіо", "PE.Views.Toolbar.capInsertChart": "Діаграма", "PE.Views.Toolbar.capInsertEquation": "Рівняння", "PE.Views.Toolbar.capInsertHyperlink": "Гіперсилка", @@ -1248,12 +1854,19 @@ "PE.Views.Toolbar.capTabFile": "Файл", "PE.Views.Toolbar.capTabHome": "Головна", "PE.Views.Toolbar.capTabInsert": "Вставити", + "PE.Views.Toolbar.mniCapitalizeWords": "Кожне слово з великої літери", "PE.Views.Toolbar.mniCustomTable": "Вставити спеціальну таблицю", "PE.Views.Toolbar.mniImageFromFile": "Картинка з файлу", + "PE.Views.Toolbar.mniImageFromStorage": "Зображення зі сховища", "PE.Views.Toolbar.mniImageFromUrl": "Зображення з URL", + "PE.Views.Toolbar.mniLowerCase": "нижній регістр", + "PE.Views.Toolbar.mniSentenceCase": "Як в реченнях.", "PE.Views.Toolbar.mniSlideAdvanced": "Розширені налаштування", "PE.Views.Toolbar.mniSlideStandard": "Стандартний (4: 3)", "PE.Views.Toolbar.mniSlideWide": "Широкоекранний (16: 9)", + "PE.Views.Toolbar.mniToggleCase": "зМІНИТИ рЕГІСТР", + "PE.Views.Toolbar.mniUpperCase": "ВЕРХНІЙ РЕГІСТР", + "PE.Views.Toolbar.strMenuNoFill": "Без заливки", "PE.Views.Toolbar.textAlignBottom": "Вирівняти текст донизу", "PE.Views.Toolbar.textAlignCenter": "Центральний текст", "PE.Views.Toolbar.textAlignJust": "Вирівняти", @@ -1266,7 +1879,12 @@ "PE.Views.Toolbar.textArrangeForward": "Висувати", "PE.Views.Toolbar.textArrangeFront": "Перенести на передній план", "PE.Views.Toolbar.textBold": "Жирний", + "PE.Views.Toolbar.textColumnsCustom": "Спеціальні стовпчики", + "PE.Views.Toolbar.textColumnsOne": "Один стовпчик", + "PE.Views.Toolbar.textColumnsThree": "Три стовпчики", + "PE.Views.Toolbar.textColumnsTwo": "Два стовпчики", "PE.Views.Toolbar.textItalic": "Курсив", + "PE.Views.Toolbar.textListSettings": "Налаштування списку", "PE.Views.Toolbar.textShapeAlignBottom": "Вирівняти знизу", "PE.Views.Toolbar.textShapeAlignCenter": "Вирівняти центр", "PE.Views.Toolbar.textShapeAlignLeft": "Вирівняти зліва", @@ -1284,30 +1902,42 @@ "PE.Views.Toolbar.textTabFile": "Файл", "PE.Views.Toolbar.textTabHome": "Домашній", "PE.Views.Toolbar.textTabInsert": "Вставити", + "PE.Views.Toolbar.textTabProtect": "Захист", + "PE.Views.Toolbar.textTabTransitions": "Переходи", "PE.Views.Toolbar.textTitleError": "Помилка", "PE.Views.Toolbar.textUnderline": "Підкреслений", "PE.Views.Toolbar.tipAddSlide": "Додати слайд", "PE.Views.Toolbar.tipBack": "Назад", + "PE.Views.Toolbar.tipChangeCase": "Змінити регістр", "PE.Views.Toolbar.tipChangeChart": "Змінити тип діаграми", "PE.Views.Toolbar.tipChangeSlide": "Змінити розміщення слайду", "PE.Views.Toolbar.tipClearStyle": "Очистити стиль", "PE.Views.Toolbar.tipColorSchemas": "Змінити кольорову схему", + "PE.Views.Toolbar.tipColumns": "Вставити стовпчики", "PE.Views.Toolbar.tipCopy": "Копіювати", "PE.Views.Toolbar.tipCopyStyle": "Копіювати стиль", + "PE.Views.Toolbar.tipDateTime": "Вставити поточну дату і час", + "PE.Views.Toolbar.tipDecFont": "Зменшити розмір шрифту", "PE.Views.Toolbar.tipDecPrLeft": "Зменшити відступ", + "PE.Views.Toolbar.tipEditHeader": "Змінити нижній колонтитул", "PE.Views.Toolbar.tipFontColor": "Колір шрифту", "PE.Views.Toolbar.tipFontName": "Шрифт", "PE.Views.Toolbar.tipFontSize": "Розмір шрифта", "PE.Views.Toolbar.tipHAligh": "Горизонтальне вирівнювання", + "PE.Views.Toolbar.tipHighlightColor": "Колір позначення", + "PE.Views.Toolbar.tipIncFont": "Збільшити розміру шрифту", "PE.Views.Toolbar.tipIncPrLeft": "Збільшити відступ", + "PE.Views.Toolbar.tipInsertAudio": "Вставити аудіо", "PE.Views.Toolbar.tipInsertChart": "Вставити діаграму", "PE.Views.Toolbar.tipInsertEquation": "Вставити рівняння", "PE.Views.Toolbar.tipInsertHyperlink": "Додати гіперсилку", "PE.Views.Toolbar.tipInsertImage": "Вставити зображення", "PE.Views.Toolbar.tipInsertShape": "вставити автофігури", + "PE.Views.Toolbar.tipInsertSymbol": "Вставити символ", "PE.Views.Toolbar.tipInsertTable": "Вставити таблицю", - "PE.Views.Toolbar.tipInsertText": "Вставити текст", + "PE.Views.Toolbar.tipInsertText": "Вставити напис", "PE.Views.Toolbar.tipInsertTextArt": "Вставити текст Art", + "PE.Views.Toolbar.tipInsertVideo": "Вставити відео", "PE.Views.Toolbar.tipLineSpace": "Лінія інтервалу", "PE.Views.Toolbar.tipMarkers": "Кулі", "PE.Views.Toolbar.tipNumbers": "Нумерація", @@ -1319,6 +1949,7 @@ "PE.Views.Toolbar.tipSaveCoauth": "Збережіть свої зміни, щоб інші користувачі могли їх переглянути.", "PE.Views.Toolbar.tipShapeAlign": "Вирівняти форму", "PE.Views.Toolbar.tipShapeArrange": "Упорядкувати форму", + "PE.Views.Toolbar.tipSlideNum": "Вставити номер слайду", "PE.Views.Toolbar.tipSlideSize": "Виберіть розмір слайду", "PE.Views.Toolbar.tipSlideTheme": "Тема слайду", "PE.Views.Toolbar.tipUndo": "Скасувати", @@ -1327,6 +1958,7 @@ "PE.Views.Toolbar.txtDistribHor": "Розподілити горизонтально", "PE.Views.Toolbar.txtDistribVert": "Розподілити вертикально", "PE.Views.Toolbar.txtGroup": "Група", + "PE.Views.Toolbar.txtObjectsAlign": "Вирівняти виділені об'єкти", "PE.Views.Toolbar.txtScheme1": "Офіс", "PE.Views.Toolbar.txtScheme10": "Медіана", "PE.Views.Toolbar.txtScheme11": "Метро", @@ -1341,6 +1973,7 @@ "PE.Views.Toolbar.txtScheme2": "Градація сірого", "PE.Views.Toolbar.txtScheme20": "Міський", "PE.Views.Toolbar.txtScheme21": "Здібність", + "PE.Views.Toolbar.txtScheme22": "Нова офісна", "PE.Views.Toolbar.txtScheme3": "Верх", "PE.Views.Toolbar.txtScheme4": "Аспект", "PE.Views.Toolbar.txtScheme5": "Громадянський", @@ -1348,11 +1981,15 @@ "PE.Views.Toolbar.txtScheme7": "Власний", "PE.Views.Toolbar.txtScheme8": "Розпливатися", "PE.Views.Toolbar.txtScheme9": "Ливарня", + "PE.Views.Toolbar.txtSlideAlign": "Вирівняти відносно слайду", "PE.Views.Toolbar.txtUngroup": "Розпакувати", "PE.Views.Transitions.strDelay": "Затримка", "PE.Views.Transitions.strDuration": "Тривалість", "PE.Views.Transitions.strStartOnClick": "Натисніть на старт", "PE.Views.Transitions.textBlack": "Через Чорний", + "PE.Views.Transitions.textBottom": "Внизу", + "PE.Views.Transitions.textBottomLeft": "Внизу ліворуч", + "PE.Views.Transitions.textBottomRight": "Внизу праворуч", "PE.Views.Transitions.textClock": "Годинник", "PE.Views.Transitions.textClockwise": "За годинниковою стрілкою", "PE.Views.Transitions.textCounterclockwise": "Проти годинникової стрілки", @@ -1361,8 +1998,12 @@ "PE.Views.Transitions.textHorizontalIn": "Горизонтально в", "PE.Views.Transitions.textHorizontalOut": "Горизонтальний вихід", "PE.Views.Transitions.textLeft": "Лівий", + "PE.Views.Transitions.textNone": "Немає", "PE.Views.Transitions.textPush": "Натиснути", "PE.Views.Transitions.textRight": "Право", + "PE.Views.Transitions.textSmoothly": "Плавно", + "PE.Views.Transitions.textSplit": "Панорама", + "PE.Views.Transitions.textTop": "Зверху", "PE.Views.Transitions.textTopLeft": "Вгорі зліва", "PE.Views.Transitions.textTopRight": "Вгорі справа", "PE.Views.Transitions.textUnCover": "Розкрий", @@ -1375,5 +2016,7 @@ "PE.Views.Transitions.textZoomOut": "Зменшити", "PE.Views.Transitions.textZoomRotate": "Збільшити і обертати", "PE.Views.Transitions.txtApplyToAll": "Додати до усіх слайдів", - "PE.Views.Transitions.txtParameters": "Параметри" + "PE.Views.Transitions.txtParameters": "Параметри", + "PE.Views.Transitions.txtPreview": "Перегляд", + "PE.Views.Transitions.txtSec": "сек" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/embed/locale/hu.json b/apps/spreadsheeteditor/embed/locale/hu.json index e72028cc3..70e745b88 100644 --- a/apps/spreadsheeteditor/embed/locale/hu.json +++ b/apps/spreadsheeteditor/embed/locale/hu.json @@ -13,10 +13,16 @@ "SSE.ApplicationController.errorDefaultMessage": "Hibakód: %1", "SSE.ApplicationController.errorFilePassProtect": "A dokumentum jelszóval védett, és nem nyitható meg.", "SSE.ApplicationController.errorFileSizeExceed": "A fájlméret meghaladja a szerverre beállított korlátozást.
Kérjük, forduljon a Document Server rendszergazdájához a részletekért.", - "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Az internet kapcsolat helyreállt, és a fájl verziója megváltozott.
Mielőtt folytatná a munkát, töltse le a fájlt, vagy másolja vágólapra annak tartalmát, hogy megbizonyosodjon arról, hogy semmi nem veszik el, majd töltse újra az oldalt.", + "SSE.ApplicationController.errorForceSave": "Hiba történt a fájl mentése közben. Kérjük, használja a 'Letöltés másként' opciót, hogy a fájlt a számítógépére mentse, vagy próbálkozzon később.", + "SSE.ApplicationController.errorLoadingFont": "A betűtípusok nincsenek betöltve.
Kérjük forduljon a dokumentumszerver rendszergazdájához.", + "SSE.ApplicationController.errorTokenExpire": "A dokumentum biztonsági tokenje lejárt.
Kérjük, lépjen kapcsolatba a dokumentumszerver rendszergazdájával.", + "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Az internetkapcsolat helyreállt és a fájl verziója megváltozott.
Mielőtt folytatná a munkát, töltse le a fájlt vagy másolja át annak tartalmát megbizonyosodva arról, hogy semmi sem veszett el, végül töltse újra ezt az oldalt.", "SSE.ApplicationController.errorUserDrop": "A dokumentum jelenleg nem elérhető.", "SSE.ApplicationController.notcriticalErrorTitle": "Figyelmeztetés", + "SSE.ApplicationController.openErrorText": "Hiba történt a fájl megnyitásakor.", "SSE.ApplicationController.scriptLoadError": "A kapcsolat túl lassú, néhány komponens nem töltődött be. Frissítse az oldalt.", + "SSE.ApplicationController.textAnonymous": "Névtelen", + "SSE.ApplicationController.textGuest": "Vendég", "SSE.ApplicationController.textLoadingDocument": "Munkafüzet betöltése", "SSE.ApplicationController.textOf": "of", "SSE.ApplicationController.txtClose": "Bezárás", @@ -25,6 +31,7 @@ "SSE.ApplicationController.waitText": "Kérjük, várjon...", "SSE.ApplicationView.txtDownload": "Letöltés", "SSE.ApplicationView.txtEmbed": "Beágyazás", + "SSE.ApplicationView.txtFileLocation": "Fájl helyének megnyitása", "SSE.ApplicationView.txtFullScreen": "Teljes képernyő", "SSE.ApplicationView.txtPrint": "Nyomtatás", "SSE.ApplicationView.txtShare": "Megosztás" diff --git a/apps/spreadsheeteditor/main/locale/el.json b/apps/spreadsheeteditor/main/locale/el.json index e1fa08516..97de6cc4f 100644 --- a/apps/spreadsheeteditor/main/locale/el.json +++ b/apps/spreadsheeteditor/main/locale/el.json @@ -20,7 +20,7 @@ "Common.define.chartData.textCombo": "Συνδυασμός", "Common.define.chartData.textComboAreaBar": "Σωρευμένη στήλη ομαδοποιημένη ανά περιοχή", "Common.define.chartData.textComboBarLine": "Ομαδοποιημένη γραμμή - στήλης", - "Common.define.chartData.textComboBarLineSecondary": "Ομαδοποιημένη γραμμή - στήλης σε δευτερεύοντα άξονα", + "Common.define.chartData.textComboBarLineSecondary": "Ομαδοποιημένη γραμμή - στήλη σε δευτερεύοντα άξονα", "Common.define.chartData.textComboCustom": "Προσαρμοσμένος συνδυασμός", "Common.define.chartData.textDoughnut": "Ντόνατ", "Common.define.chartData.textHBarNormal": "Ομαδοποιημένη μπάρα", @@ -270,7 +270,7 @@ "Common.Views.OpenDialog.txtOther": "Άλλο", "Common.Views.OpenDialog.txtPassword": "Συνθηματικό", "Common.Views.OpenDialog.txtPreview": "Προεπισκόπηση", - "Common.Views.OpenDialog.txtProtected": "Μόλις βάλετε το συνθηματικό και ανοίξετε το αρχείο, το τρέχον συνθηματικό αρχείου θα αρχικοποιηθεί.", + "Common.Views.OpenDialog.txtProtected": "Μόλις βάλετε το συνθηματικό και ανοίξετε το αρχείο, θα γίνει επαναφορά του τρέχοντος συνθηματικού.", "Common.Views.OpenDialog.txtSemicolon": "Άνω τελεία", "Common.Views.OpenDialog.txtSpace": "Κενό διάστημα", "Common.Views.OpenDialog.txtTab": "Καρτέλα", @@ -789,7 +789,7 @@ "SSE.Controllers.Main.txtCallouts": "Επεξηγήσεις", "SSE.Controllers.Main.txtCharts": "Γραφήματα", "SSE.Controllers.Main.txtClearFilter": "Εκκαθάριση Φίλτρου (Alt+C)", - "SSE.Controllers.Main.txtColLbls": "Ετικέτες Κελιών", + "SSE.Controllers.Main.txtColLbls": "Ετικέτες Στηλών", "SSE.Controllers.Main.txtColumn": "Στήλη", "SSE.Controllers.Main.txtConfidential": "Εμπιστευτικό", "SSE.Controllers.Main.txtDate": "Ημερομηνία", @@ -1554,7 +1554,7 @@ "SSE.Views.ChartDataRangeDialog.txtAxisLabel": "Εύρος ετικέτας άξονα", "SSE.Views.ChartDataRangeDialog.txtChoose": "Επιλέξτε εύρος", "SSE.Views.ChartDataRangeDialog.txtSeriesName": "Όνομα σειράς", - "SSE.Views.ChartDataRangeDialog.txtTitleCategory": "Ετικέτες Αξόνων", + "SSE.Views.ChartDataRangeDialog.txtTitleCategory": "Ετικέτες Άξονα", "SSE.Views.ChartDataRangeDialog.txtTitleSeries": "Επεξεργασία Σειράς", "SSE.Views.ChartDataRangeDialog.txtValues": "Τιμές", "SSE.Views.ChartDataRangeDialog.txtXValues": "Τιμές Χ", @@ -1593,9 +1593,9 @@ "SSE.Views.ChartSettingsDlg.textAuto": "Αυτόματα", "SSE.Views.ChartSettingsDlg.textAutoEach": "Αυτόματο για Κάθε", "SSE.Views.ChartSettingsDlg.textAxisCrosses": "Διασχίσεις Άξονα", - "SSE.Views.ChartSettingsDlg.textAxisOptions": "Επιλογές Αξόνων", - "SSE.Views.ChartSettingsDlg.textAxisPos": "Θέση Αξόνων", - "SSE.Views.ChartSettingsDlg.textAxisSettings": "Ρυθμίσεις Αξόνων", + "SSE.Views.ChartSettingsDlg.textAxisOptions": "Επιλογές Άξονα", + "SSE.Views.ChartSettingsDlg.textAxisPos": "Θέση Άξονα", + "SSE.Views.ChartSettingsDlg.textAxisSettings": "Ρυθμίσεις Άξονα", "SSE.Views.ChartSettingsDlg.textAxisTitle": "Τίτλος", "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Μεταξύ Διαβαθμίσεων", "SSE.Views.ChartSettingsDlg.textBillions": "Δισεκατομμύρια", diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index d0dbcab7f..7c9036c81 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -3157,9 +3157,9 @@ "SSE.Views.Statusbar.textNoColor": "No Color", "SSE.Views.Statusbar.textSum": "Sum", "SSE.Views.Statusbar.tipAddTab": "Add worksheet", - "SSE.Views.Statusbar.tipListOfSheets": "List of Sheets", "SSE.Views.Statusbar.tipFirst": "Scroll to first sheet", "SSE.Views.Statusbar.tipLast": "Scroll to last sheet", + "SSE.Views.Statusbar.tipListOfSheets": "List of Sheets", "SSE.Views.Statusbar.tipNext": "Scroll sheet list right", "SSE.Views.Statusbar.tipPrev": "Scroll sheet list left", "SSE.Views.Statusbar.tipZoomFactor": "Zoom", @@ -3267,7 +3267,7 @@ "SSE.Views.Toolbar.capBtnAddComment": "Add Comment", "SSE.Views.Toolbar.capBtnColorSchemas": "Color Scheme", "SSE.Views.Toolbar.capBtnComment": "Comment", - "SSE.Views.Toolbar.capBtnInsHeader": "Header/Footer", + "SSE.Views.Toolbar.capBtnInsHeader": "Header & Footer", "SSE.Views.Toolbar.capBtnInsSlicer": "Slicer", "SSE.Views.Toolbar.capBtnInsSymbol": "Symbol", "SSE.Views.Toolbar.capBtnMargins": "Margins", diff --git a/apps/spreadsheeteditor/main/locale/hu.json b/apps/spreadsheeteditor/main/locale/hu.json index d1fc1ef98..3728297bf 100644 --- a/apps/spreadsheeteditor/main/locale/hu.json +++ b/apps/spreadsheeteditor/main/locale/hu.json @@ -2,6 +2,7 @@ "cancelButtonText": "Mégse", "Common.Controllers.Chat.notcriticalErrorTitle": "Figyelmeztetés", "Common.Controllers.Chat.textEnterMessage": "Írja be ide az üzenetet", + "Common.Controllers.History.notcriticalErrorTitle": "Figyelmeztetés", "Common.define.chartData.textArea": "Terület", "Common.define.chartData.textAreaStacked": "Halmozott terület", "Common.define.chartData.textAreaStackedPer": "100% halmozott terület", @@ -48,7 +49,62 @@ "Common.define.chartData.textStock": "Részvény", "Common.define.chartData.textSurface": "Felület", "Common.define.chartData.textWinLossSpark": "Nyereség/veszteség", + "Common.define.conditionalData.exampleText": "AaBbCcYyZz", + "Common.define.conditionalData.noFormatText": "Nincs megadva formátum", + "Common.define.conditionalData.text1Above": "1 std eltérés ha több mint:", + "Common.define.conditionalData.text1Below": "1 std eltérés ha kevesebb mint:", + "Common.define.conditionalData.text2Above": "2 std eltérés ha több mint:", + "Common.define.conditionalData.text2Below": "2 std eltérés ha kevesebb mint:", + "Common.define.conditionalData.text3Above": "3 std eltérés ha több mint:", + "Common.define.conditionalData.text3Below": "3 std eltérés ha kevesebb mint:", + "Common.define.conditionalData.textAbove": "Felett", + "Common.define.conditionalData.textAverage": "Átlag", + "Common.define.conditionalData.textBegins": "Kezdődik", + "Common.define.conditionalData.textBelow": "Alatt", + "Common.define.conditionalData.textBetween": "Között", + "Common.define.conditionalData.textBlank": "Üres", + "Common.define.conditionalData.textBlanks": "Tartalmaz üres karaktereket", + "Common.define.conditionalData.textBottom": "Alul", + "Common.define.conditionalData.textContains": "tartalmaz", + "Common.define.conditionalData.textDataBar": "Adatsáv", + "Common.define.conditionalData.textDate": "Dátum", + "Common.define.conditionalData.textDuplicate": "Kettőzés", + "Common.define.conditionalData.textEnds": "Ezzel záródik:", + "Common.define.conditionalData.textEqAbove": "Egyenlő vagy nagyobb", + "Common.define.conditionalData.textEqBelow": "Egyenlő vagy kevesebb", + "Common.define.conditionalData.textEqual": "Egyenlő", + "Common.define.conditionalData.textError": "Hiba", + "Common.define.conditionalData.textErrors": "Tartalmaz hibákat", + "Common.define.conditionalData.textFormula": "Függvény", + "Common.define.conditionalData.textGreater": "Nagyobb mint", + "Common.define.conditionalData.textGreaterEq": "Nagyobb vagy egyenlő", + "Common.define.conditionalData.textIconSets": "Ikon készletek", + "Common.define.conditionalData.textLast7days": "Az elmúlt 7 napban", + "Common.define.conditionalData.textLastMonth": "Legutolsó hónap", + "Common.define.conditionalData.textLastWeek": "Múlt hét", + "Common.define.conditionalData.textLess": "Kevesebb mint", + "Common.define.conditionalData.textLessEq": "Kisebb vagy egyenlő mint", + "Common.define.conditionalData.textNextMonth": "Következő hónap", + "Common.define.conditionalData.textNextWeek": "Következő hét", + "Common.define.conditionalData.textNotBetween": "Nem közötte", + "Common.define.conditionalData.textNotBlanks": "Nem tartalmaz üres karaktereket", + "Common.define.conditionalData.textNotContains": "Nem tartalmaz", + "Common.define.conditionalData.textNotEqual": "Nem egyenlő", + "Common.define.conditionalData.textNotErrors": "Nem tartalmaz hibákat", + "Common.define.conditionalData.textText": "Szöveg", + "Common.define.conditionalData.textThisMonth": "Ez a hónap", + "Common.define.conditionalData.textThisWeek": "Ez a hét", + "Common.define.conditionalData.textToday": "Ma", + "Common.define.conditionalData.textTomorrow": "Holnap", + "Common.define.conditionalData.textTop": "Felső", + "Common.define.conditionalData.textUnique": "Egyedi", + "Common.define.conditionalData.textValue": "Az érték", + "Common.define.conditionalData.textYesterday": "Tegnap", "Common.Translation.warnFileLocked": "A fájlt egy másik alkalmazásban szerkesztik. Folytathatja a szerkesztést és elmentheti másolatként.", + "Common.Translation.warnFileLockedBtnEdit": "Másolat létrehozása", + "Common.Translation.warnFileLockedBtnView": "Megnyitás megtekintéshez", + "Common.UI.ButtonColored.textAutoColor": "Automatikus", + "Common.UI.ButtonColored.textNewColor": "Új egyéni szín hozzáadása", "Common.UI.ComboBorderSize.txtNoBorders": "Nincsenek szegélyek", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Nincsenek szegélyek", "Common.UI.ComboDataView.emptyComboText": "Nincsenek stílusok", @@ -72,6 +128,9 @@ "Common.UI.SynchronizeTip.textSynchronize": "A dokumentumot egy másik felhasználó módosította.
Kattintson a gombra a módosítások mentéséhez és a frissítések újratöltéséhez.", "Common.UI.ThemeColorPalette.textStandartColors": "Sztenderd színek", "Common.UI.ThemeColorPalette.textThemeColors": "Téma színek", + "Common.UI.Themes.txtThemeClassicLight": "Klasszikus Világos", + "Common.UI.Themes.txtThemeDark": "Sötét", + "Common.UI.Themes.txtThemeLight": "Világos", "Common.UI.Window.cancelButtonText": "Mégse", "Common.UI.Window.closeButtonText": "Bezár", "Common.UI.Window.noButtonText": "Nem", @@ -87,20 +146,23 @@ "Common.Views.About.txtAddress": "Cím:", "Common.Views.About.txtLicensee": "LICENC VÁSÁRLÓ", "Common.Views.About.txtLicensor": "LICENCTULAJDONOS", - "Common.Views.About.txtMail": "email:", + "Common.Views.About.txtMail": "e-mail:", "Common.Views.About.txtPoweredBy": "Powered by", "Common.Views.About.txtTel": "Tel.: ", "Common.Views.About.txtVersion": "Verzió", "Common.Views.AutoCorrectDialog.textAdd": "Hozzáadás", "Common.Views.AutoCorrectDialog.textApplyAsWork": "Alkalmazza ahogy dolgozik", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Automatikus javítás", "Common.Views.AutoCorrectDialog.textAutoFormat": "Automatikus formázás gépelés közben", "Common.Views.AutoCorrectDialog.textBy": "Által", "Common.Views.AutoCorrectDialog.textDelete": "Törlés", + "Common.Views.AutoCorrectDialog.textHyperlink": "Internet és hálózati utak hiperhivatkozásokkal", "Common.Views.AutoCorrectDialog.textMathCorrect": "Matematikai automatikus javítás", "Common.Views.AutoCorrectDialog.textNewRowCol": "Új sorok és oszlopok felvétele a táblázatba", "Common.Views.AutoCorrectDialog.textRecognized": "Felismert függvények", "Common.Views.AutoCorrectDialog.textRecognizedDesc": "A következő kifejezések felismert matematikai kifejezések. Nem lesznek automatikusan dőlt betűkkel.", "Common.Views.AutoCorrectDialog.textReplace": "Cserélje ki", + "Common.Views.AutoCorrectDialog.textReplaceText": "Cserélje gépelés közben", "Common.Views.AutoCorrectDialog.textReplaceType": "Szöveg cseréje gépelés közben", "Common.Views.AutoCorrectDialog.textReset": "Visszaállítás", "Common.Views.AutoCorrectDialog.textResetAll": "Alapbeállítások visszaállítása", @@ -112,21 +174,29 @@ "Common.Views.AutoCorrectDialog.warnReset": "Minden hozzáadott automatikus javítást eltávolítunk, és a megváltozottakat visszaállítjuk eredeti értékükre. Folytassuk?", "Common.Views.AutoCorrectDialog.warnRestore": "%1 automatikus javítása visszaáll az eredeti értékére. Folytassuk?", "Common.Views.Chat.textSend": "Küldés", + "Common.Views.Comments.mniAuthorAsc": "Szerző (A-Z)", + "Common.Views.Comments.mniAuthorDesc": "Szerző (Z-A)", + "Common.Views.Comments.mniDateAsc": "Legöregebb először", + "Common.Views.Comments.mniDateDesc": "Legújabb először", + "Common.Views.Comments.mniPositionAsc": "Felülről", + "Common.Views.Comments.mniPositionDesc": "Alulról", "Common.Views.Comments.textAdd": "Hozzáad", - "Common.Views.Comments.textAddComment": "Hozzáad", - "Common.Views.Comments.textAddCommentToDoc": "Hozzászólás hozzáadása a dokumentumhoz", + "Common.Views.Comments.textAddComment": "Megjegyzés hozzáadása", + "Common.Views.Comments.textAddCommentToDoc": "Megjegyzés hozzáadása a dokumentumhoz", "Common.Views.Comments.textAddReply": "Válasz hozzáadása", "Common.Views.Comments.textAnonym": "Vendég", "Common.Views.Comments.textCancel": "Mégse", "Common.Views.Comments.textClose": "Bezár", - "Common.Views.Comments.textComments": "Hozzászólások", + "Common.Views.Comments.textClosePanel": "Megjegyzések bezárása", + "Common.Views.Comments.textComments": "Megjegyzések", "Common.Views.Comments.textEdit": "OK", - "Common.Views.Comments.textEnterCommentHint": "Írjon hozzászólást", - "Common.Views.Comments.textHintAddComment": "Hozzászólás hozzáadása", + "Common.Views.Comments.textEnterCommentHint": "Megjegyzés beírása itt", + "Common.Views.Comments.textHintAddComment": "Megjegyzés hozzáadása", "Common.Views.Comments.textOpenAgain": "Ismét megnyit", "Common.Views.Comments.textReply": "Ismétel", "Common.Views.Comments.textResolve": "Felold", "Common.Views.Comments.textResolved": "Feloldott", + "Common.Views.Comments.textSort": "Megjegyzések rendezése", "Common.Views.CopyWarningDialog.textDontShow": "Ne mutassa újra ezt az üzenetet", "Common.Views.CopyWarningDialog.textMsg": "A szerkesztés eszköztár gombjaival és a helyi menüvel végzett másolás, kivágás és beillesztés műveletek csak a szerkesztő oldalon használhatóak.

A szerkesztő lapon kívüli alkalmazásokba való másoláshoz vagy beillesztéshez az alábbi billentyűzetkombinációkat használja:", "Common.Views.CopyWarningDialog.textTitle": "Másolás, kivágás és beillesztés", @@ -143,7 +213,7 @@ "Common.Views.Header.textBack": "Fájl helyének megnyitása", "Common.Views.Header.textCompactView": "Eszköztár elrejtése", "Common.Views.Header.textHideLines": "Vonalzók elrejtése", - "Common.Views.Header.textHideStatusBar": "Állapotsor elrejtése", + "Common.Views.Header.textHideStatusBar": "A munkalap és az állapotsorok kombinálása", "Common.Views.Header.textRemoveFavorite": "Eltávolítás a kedvencekből", "Common.Views.Header.textSaveBegin": "Mentés...", "Common.Views.Header.textSaveChanged": "Módosított", @@ -162,6 +232,13 @@ "Common.Views.Header.tipViewUsers": "A felhasználók megtekintése és a dokumentumokhoz való hozzáférési jogok kezelése", "Common.Views.Header.txtAccessRights": "Hozzáférési jogok módosítása", "Common.Views.Header.txtRename": "Név változtatása", + "Common.Views.History.textCloseHistory": "Napló bezárása", + "Common.Views.History.textHide": "Minimalizálás", + "Common.Views.History.textHideAll": "Részletes módosítások elrejtése", + "Common.Views.History.textRestore": "Visszaállítás", + "Common.Views.History.textShow": "Kibont", + "Common.Views.History.textShowAll": "Módosítások részletes megjelenítése", + "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "Illesszen be egy kép hivatkozást:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Ez egy szükséges mező", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Ennek a mezőnek hivatkozásnak kell lennie a \"http://www.example.com\" formátumban", @@ -179,17 +256,21 @@ "Common.Views.ListSettingsDialog.txtTitle": "Lista beállítások", "Common.Views.ListSettingsDialog.txtType": "Típus", "Common.Views.OpenDialog.closeButtonText": "Fájl bezárása", + "Common.Views.OpenDialog.textInvalidRange": "Érvénytelen cellatartomány", + "Common.Views.OpenDialog.textSelectData": "Adatok kiválasztása", "Common.Views.OpenDialog.txtAdvanced": "Haladó", "Common.Views.OpenDialog.txtColon": "Kettőspont", "Common.Views.OpenDialog.txtComma": "Vessző", - "Common.Views.OpenDialog.txtDelimiter": "Határolójel", + "Common.Views.OpenDialog.txtDelimiter": "Elválasztó", + "Common.Views.OpenDialog.txtDestData": "Válassza ki, hová helyezze az adatokat", + "Common.Views.OpenDialog.txtEmpty": "Ez egy szükséges mező", "Common.Views.OpenDialog.txtEncoding": "Kódol", "Common.Views.OpenDialog.txtIncorrectPwd": "Hibás jelszó.", "Common.Views.OpenDialog.txtOpenFile": "Írja be a megnyitáshoz szükséges jelszót", "Common.Views.OpenDialog.txtOther": "Egyéb", "Common.Views.OpenDialog.txtPassword": "Jelszó", "Common.Views.OpenDialog.txtPreview": "Előnézet", - "Common.Views.OpenDialog.txtProtected": "Miután megadta a jelszót és megnyitotta a fájlt, az aktuális jelszó visszaáll.", + "Common.Views.OpenDialog.txtProtected": "Miután megadta a jelszót és megnyitotta a fájlt, annak jelenlegi jelszava visszaállítódik.", "Common.Views.OpenDialog.txtSemicolon": "Pontosvessző", "Common.Views.OpenDialog.txtSpace": "Hely", "Common.Views.OpenDialog.txtTab": "Lap", @@ -227,8 +308,10 @@ "Common.Views.ReviewChanges.strStrictDesc": "A „Mentés” gomb segítségével szinkronizálhatja az Ön és mások által végrehajtott módosításokat.", "Common.Views.ReviewChanges.tipAcceptCurrent": "Utolsó változás elfogadása", "Common.Views.ReviewChanges.tipCoAuthMode": "Együttes szerkesztés beállítása", - "Common.Views.ReviewChanges.tipCommentRem": "Hozzászólások eltávolítása", - "Common.Views.ReviewChanges.tipCommentRemCurrent": "Jelenlegi hosszászólások eltávolítása", + "Common.Views.ReviewChanges.tipCommentRem": "Megjegyzések eltávolítása", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "Jelenlegi megjegyzések eltávolítása", + "Common.Views.ReviewChanges.tipCommentResolve": "Megjegyzések megoldása", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Aktuális megjegyzések megoldása", "Common.Views.ReviewChanges.tipHistory": "Verziótörténet mutatása", "Common.Views.ReviewChanges.tipRejectCurrent": "Az aktuális változás elutasítása", "Common.Views.ReviewChanges.tipReview": "Módosítások követése", @@ -243,11 +326,16 @@ "Common.Views.ReviewChanges.txtChat": "Chat", "Common.Views.ReviewChanges.txtClose": "Bezár", "Common.Views.ReviewChanges.txtCoAuthMode": "Együttes szerkesztési mód", - "Common.Views.ReviewChanges.txtCommentRemAll": "Minden hozzászólás eltávolítása", - "Common.Views.ReviewChanges.txtCommentRemCurrent": "Jelenlegi hosszászólások eltávolítása", - "Common.Views.ReviewChanges.txtCommentRemMy": "Hozzászólásaim eltávolítása", - "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Jelenlegi hozzászólásaim eltávolítása", + "Common.Views.ReviewChanges.txtCommentRemAll": "Minden megjegyzés eltávolítása", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Jelenlegi megjegyzések eltávolítása", + "Common.Views.ReviewChanges.txtCommentRemMy": "Megjegyzéseim eltávolítása", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Jelenlegi megjegyzéseim eltávolítása", "Common.Views.ReviewChanges.txtCommentRemove": "Eltávolítás", + "Common.Views.ReviewChanges.txtCommentResolve": "Megold", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Összes megjegyzés megoldása", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Aktuális Megjegyzések Megoldása", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Saját Megjegyzések Megoldása", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Aktuális Megjegyzéseim Megoldása", "Common.Views.ReviewChanges.txtDocLang": "Nyelv", "Common.Views.ReviewChanges.txtFinal": "Minden módosítás elfogadva (Előnézet)", "Common.Views.ReviewChanges.txtFinalCap": "Végső", @@ -259,7 +347,7 @@ "Common.Views.ReviewChanges.txtOriginalCap": "Eredeti", "Common.Views.ReviewChanges.txtPrev": "Előző", "Common.Views.ReviewChanges.txtReject": "Elutasít", - "Common.Views.ReviewChanges.txtRejectAll": "Elutasít minden módosítást", + "Common.Views.ReviewChanges.txtRejectAll": "Minden módosítást elvetése", "Common.Views.ReviewChanges.txtRejectChanges": "Elutasítja a módosításokat", "Common.Views.ReviewChanges.txtRejectCurrent": "Az aktuális változás elutasítása", "Common.Views.ReviewChanges.txtSharing": "Megosztás", @@ -271,11 +359,13 @@ "Common.Views.ReviewPopover.textCancel": "Mégse", "Common.Views.ReviewPopover.textClose": "Bezár", "Common.Views.ReviewPopover.textEdit": "OK", - "Common.Views.ReviewPopover.textMention": "+megemlítés hozzáférést ad a dokumentumhoz, és emailt küld", - "Common.Views.ReviewPopover.textMentionNotify": "+megemlítés értesíti a felhasználót emailben", + "Common.Views.ReviewPopover.textMention": "+megemlítés hozzáférést ad a dokumentumhoz, és e-mailt küld", + "Common.Views.ReviewPopover.textMentionNotify": "+megemlítés értesíti a felhasználót e-mailben", "Common.Views.ReviewPopover.textOpenAgain": "Ismét megnyit", "Common.Views.ReviewPopover.textReply": "Ismétel", "Common.Views.ReviewPopover.textResolve": "Felold", + "Common.Views.ReviewPopover.txtDeleteTip": "Törlés", + "Common.Views.ReviewPopover.txtEditTip": "Szerkesztés", "Common.Views.SaveAsDlg.textLoading": "Betöltés", "Common.Views.SaveAsDlg.textTitle": "Mentési mappa", "Common.Views.SelectFileDlg.textLoading": "Betöltés", @@ -295,7 +385,7 @@ "Common.Views.SignDialog.textValid": "Érvényes %1 és %2 között", "Common.Views.SignDialog.tipFontName": "Betűtípus neve", "Common.Views.SignDialog.tipFontSize": "Betűméret", - "Common.Views.SignSettingsDialog.textAllowComment": "Engedélyezi az aláírónak hozzászólás hozzáadását az aláírási párbeszédablakban", + "Common.Views.SignSettingsDialog.textAllowComment": "Engedélyezi az aláírónak megjegyzés hozzáadását az aláírási párbeszédablakban", "Common.Views.SignSettingsDialog.textInfo": "Aláíró infó", "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", "Common.Views.SignSettingsDialog.textInfoName": "Név", @@ -335,15 +425,18 @@ "Common.Views.UserNameDialog.textLabel": "Címke:", "Common.Views.UserNameDialog.textLabelError": "A címke nem lehet üres.", "SSE.Controllers.DataTab.textColumns": "Oszlopok", + "SSE.Controllers.DataTab.textEmptyUrl": "Meg kell adni az URL-t.", "SSE.Controllers.DataTab.textRows": "Sorok", "SSE.Controllers.DataTab.textWizard": "Szöveg oszlopokká", "SSE.Controllers.DataTab.txtDataValidation": "Adatellenőrzés", "SSE.Controllers.DataTab.txtExpand": "Kibont", "SSE.Controllers.DataTab.txtExpandRemDuplicates": "A kiválasztás melletti adatokat nem távolítjuk el. Kibővíti a kijelölést a szomszédos adatokra, vagy csak az éppen kijelölt cellákkal folytatja?", "SSE.Controllers.DataTab.txtExtendDataValidation": "A kiválasztás tartalmaz néhány cellát, amelyek nem tartalmazzák az adatellenőrzés beállításait.
Kiterjesszük az adatellenőrzést ezekre a cellákra is?", + "SSE.Controllers.DataTab.txtImportWizard": "Szöveg importálás varázsló", "SSE.Controllers.DataTab.txtRemDuplicates": "Ismétlődések eltávolítása", "SSE.Controllers.DataTab.txtRemoveDataValidation": "A kiválasztás többféle ellenőrzést tartalmaz.
Töröljük az aktuális beállításokat és folytassuk?", "SSE.Controllers.DataTab.txtRemSelected": "Eltávolítás a kiválasztottból", + "SSE.Controllers.DataTab.txtUrlTitle": "Illesszen be egy adat URL-t", "SSE.Controllers.DocumentHolder.alignmentText": "Elrendezés", "SSE.Controllers.DocumentHolder.centerText": "Közép", "SSE.Controllers.DocumentHolder.deleteColumnText": "Oszlop törlése", @@ -438,10 +531,11 @@ "SSE.Controllers.DocumentHolder.txtItems": "tételek", "SSE.Controllers.DocumentHolder.txtKeepTextOnly": "Csak szöveg megtartása", "SSE.Controllers.DocumentHolder.txtLess": "Kevesebb mint", - "SSE.Controllers.DocumentHolder.txtLessEquals": "Kisebb vagy egyenlő", + "SSE.Controllers.DocumentHolder.txtLessEquals": "Kisebb vagy egyenlő mint", "SSE.Controllers.DocumentHolder.txtLimitChange": "Helylimitek módosítása", "SSE.Controllers.DocumentHolder.txtLimitOver": "Szöveg fölötti limit", "SSE.Controllers.DocumentHolder.txtLimitUnder": "Szöveg alatti limit", + "SSE.Controllers.DocumentHolder.txtLockSort": "Adatok találhatók a kijelölés mellett, de nincs elegendő engedélye a cellák módosításához.
Szeretné folytatni a jelenlegi kijelöléssel?", "SSE.Controllers.DocumentHolder.txtMatchBrackets": "Zárójelek és argumentum egyenlő magasságú", "SSE.Controllers.DocumentHolder.txtMatrixAlign": "Mátrix elrendezés", "SSE.Controllers.DocumentHolder.txtNoChoices": "Nincs lehetőség a cellának kitöltésére.
Csak az oszlopból származó szövegértékek választhatók ki cserére.", @@ -452,13 +546,13 @@ "SSE.Controllers.DocumentHolder.txtOr": "vagy", "SSE.Controllers.DocumentHolder.txtOverbar": "Sáv a szöveg fölött", "SSE.Controllers.DocumentHolder.txtPaste": "Beilleszt", - "SSE.Controllers.DocumentHolder.txtPasteBorders": "Formula szegélyek nélkül", - "SSE.Controllers.DocumentHolder.txtPasteColWidths": "Képlet + oszlop szélesség", + "SSE.Controllers.DocumentHolder.txtPasteBorders": "Függvény szegélyek nélkül", + "SSE.Controllers.DocumentHolder.txtPasteColWidths": "Függvény + oszlop szélesség", "SSE.Controllers.DocumentHolder.txtPasteDestFormat": "Cél formázása", "SSE.Controllers.DocumentHolder.txtPasteFormat": "Csak formázás beillesztése", - "SSE.Controllers.DocumentHolder.txtPasteFormulaNumFormat": "Képlet + számformátum", - "SSE.Controllers.DocumentHolder.txtPasteFormulas": "Csak képlet beillesztése", - "SSE.Controllers.DocumentHolder.txtPasteKeepSourceFormat": "Képlet + minden formázás", + "SSE.Controllers.DocumentHolder.txtPasteFormulaNumFormat": "Függvény + számformátum", + "SSE.Controllers.DocumentHolder.txtPasteFormulas": "Csak függvény beillesztése", + "SSE.Controllers.DocumentHolder.txtPasteKeepSourceFormat": "Függvény + minden formázás", "SSE.Controllers.DocumentHolder.txtPasteLink": "Link beillesztése", "SSE.Controllers.DocumentHolder.txtPasteLinkPicture": "Hivatkozott kép", "SSE.Controllers.DocumentHolder.txtPasteMerge": "Feltételes formázás egyesítése", @@ -474,6 +568,7 @@ "SSE.Controllers.DocumentHolder.txtRemLimit": "Limit eltávolítása", "SSE.Controllers.DocumentHolder.txtRemoveAccentChar": "Ékezet eltávolítása", "SSE.Controllers.DocumentHolder.txtRemoveBar": "Sáv eltávolítása", + "SSE.Controllers.DocumentHolder.txtRemoveWarning": "El szeretné távolítani ezt az aláírást?
Nem lehet visszavonni.", "SSE.Controllers.DocumentHolder.txtRemScripts": "Szkriptek eltávolítása", "SSE.Controllers.DocumentHolder.txtRemSubscript": "Alsó index eltávolítása", "SSE.Controllers.DocumentHolder.txtRemSuperscript": "Felső index eltávolítása", @@ -493,6 +588,7 @@ "SSE.Controllers.DocumentHolder.txtUnderbar": "Sáv a szöveg alatt", "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Táblázat automatikus bővítésének visszaállítása", "SSE.Controllers.DocumentHolder.txtUseTextImport": "Használja a szöveg importálás varázslót", + "SSE.Controllers.DocumentHolder.txtWarnUrl": "A link megnyitása káros lehet az eszközére és adataira.
Biztosan folytatja?", "SSE.Controllers.DocumentHolder.txtWidth": "Szélesség", "SSE.Controllers.FormulaDialog.sCategoryAll": "Összes", "SSE.Controllers.FormulaDialog.sCategoryCube": "Kocka", @@ -510,8 +606,9 @@ "SSE.Controllers.LeftMenu.newDocumentTitle": "Névtelen munkafüzet", "SSE.Controllers.LeftMenu.textByColumns": "Oszlopoktól", "SSE.Controllers.LeftMenu.textByRows": "Soroktól", - "SSE.Controllers.LeftMenu.textFormulas": "Képletek", + "SSE.Controllers.LeftMenu.textFormulas": "Függvények", "SSE.Controllers.LeftMenu.textItemEntireCell": "Teljes cellatartalom", + "SSE.Controllers.LeftMenu.textLoadHistory": "Verzióelőzmények betöltése...", "SSE.Controllers.LeftMenu.textLookin": "Keres", "SSE.Controllers.LeftMenu.textNoTextFound": "A keresett adatok nem találhatók. Kérjük, állítson a keresési beállításokon.", "SSE.Controllers.LeftMenu.textReplaceSkipped": "A csere megtörtént. {0} események kihagyásra kerültek.", @@ -526,6 +623,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Ha ebbe a formátumba ment, a nyers szövegen kívül minden elveszik.
Biztos benne, hogy folytatni akarja?", "SSE.Controllers.Main.confirmMoveCellRange": "A cél cella tartomány tartalmazhat adatokat. Folytassa a műveletet?", "SSE.Controllers.Main.confirmPutMergeRange": "A forrásadatok összevont cellákat tartalmaztak.
A cellák szétválasztásra kerültek a beillesztés előtt.", + "SSE.Controllers.Main.confirmReplaceFormulaInTable": "A fejlécsorban lévő függvények el lesznek távolítva, majd statikus szöveggé alakítva.
Folytatja?", "SSE.Controllers.Main.convertationTimeoutText": "Időtúllépés az átalakítás során.", "SSE.Controllers.Main.criticalErrorExtText": "Nyomja meg az \"OK\" gombot a dokumentumlistához való visszatéréshez.", "SSE.Controllers.Main.criticalErrorTitle": "Hiba", @@ -534,7 +632,7 @@ "SSE.Controllers.Main.downloadTitleText": "Munkafüzet letöltése", "SSE.Controllers.Main.errNoDuplicates": "Nem található ismétlődő érték.", "SSE.Controllers.Main.errorAccessDeny": "Olyan műveletet próbál végrehajtani, melyre nincs jogosultsága.
Vegye fel a kapcsolatot a Document Server adminisztrátorával.", - "SSE.Controllers.Main.errorArgsRange": "Hiba a megadott képletben.
Helytelen argumentumtartomány került alkalmazásra.", + "SSE.Controllers.Main.errorArgsRange": "Hiba a megadott függvényben.
Helytelen argumentumtartomány került alkalmazásra.", "SSE.Controllers.Main.errorAutoFilterChange": "A művelet nem megengedett, mivel megpróbálja a cellákat a munkalapon lévő táblázatban eltolni.", "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "A műveletet nem lehetett elvégezni a kiválasztott cellák esetében, mivel nem tudunk mozgatni a táblázat egy részét.
Válasszon másik adattartományt, hogy az egész asztal eltolódjon, és próbálja újra.", "SSE.Controllers.Main.errorAutoFilterDataRange": "A műveletet nem lehetett elvégezni a kiválasztott cellatartományban.
Válasszon egy egységes adattartományt, amely eltér a meglévő cellától, és próbálja újra.", @@ -543,32 +641,35 @@ "SSE.Controllers.Main.errorCannotUngroup": "Nem lehet kibontani. Körvonal elindításához válassza ki a részletek sorát vagy oszlopát, és csoportosítsa őket.", "SSE.Controllers.Main.errorChangeArray": "Nem módosíthatja a tömb egy részét.", "SSE.Controllers.Main.errorChangeFilteredRange": "Ez megváltoztat a munkalapon egy szűrt tartományt.
A feladat végrehajtásához távolítsa el az automatikus szűrőket.", + "SSE.Controllers.Main.errorChangeOnProtectedSheet": "A módosítani kívánt cella vagy diagram egy védett munkalapon található.
Módosításhoz szüntesse meg a munkalap védelmét. Előfordulhat, hogy ehhez jelszót kell megadnia.", "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Elveszett a kapcsolat a szerverrel. A dokumentum jelenleg nem szerkeszthető.", "SSE.Controllers.Main.errorConnectToServer": "A dokumentum mentése nem lehetséges. Kérjük ellenőrizze a kapcsolódási beállításokat vagy lépjen kapcsolatba a rendszer adminisztrátorral.
Ha az 'OK'-ra kattint letöltheti a dokumentumot.", "SSE.Controllers.Main.errorCopyMultiselectArea": "Ez a parancs nem használható többes kiválasztással.
Válasszon ki egy tartományt és próbálja újra.", - "SSE.Controllers.Main.errorCountArg": "Hiba a megadott képletben.
Nem megfelelő számú argumentum használata.", - "SSE.Controllers.Main.errorCountArgExceed": "Hiba a megadott képletben.
Az argumentumok száma túllépve.", + "SSE.Controllers.Main.errorCountArg": "Hiba a megadott függvényben.
Nem megfelelő számú argumentum használata.", + "SSE.Controllers.Main.errorCountArgExceed": "Hiba a megadott függvényben.
Az argumentumok száma túllépve.", "SSE.Controllers.Main.errorCreateDefName": "A meglévő tartományok nem szerkeszthetők, és az újakat nem lehet létrehozni
jelenleg némely szerkesztés alatt áll.", "SSE.Controllers.Main.errorDatabaseConnection": "Külső hiba.
Adatbázis-kapcsolati hiba. Ha a hiba továbbra is fennáll, lépjen kapcsolatba a rendszer támogatással.", "SSE.Controllers.Main.errorDataEncrypted": "Titkosított változások érkeztek, melyek feloldása sikertelen.", "SSE.Controllers.Main.errorDataRange": "Hibás adattartomány.", "SSE.Controllers.Main.errorDataValidate": "A megadott érték nem érvényes.
A felhasználónak korlátozott értékei vannak, amelyeket be lehet írni a cellába.", "SSE.Controllers.Main.errorDefaultMessage": "Hibakód: %1", - "SSE.Controllers.Main.errorEditingDownloadas": "Hiba történt a dokumentummal végzett munka során.
Használja a 'Letöltés mint...' opciót, hogy mentse a fájl biztonsági másolatát a számítógép merevlemezére.", + "SSE.Controllers.Main.errorDeleteColumnContainsLockedCell": "Olyan oszlopot próbál törölni, amely zárolt cellát tartalmaz. A zárolt cellák nem törölhetők, amíg a munkalap védett.
Zárolt cella törléséhez szüntesse meg a munkalap védelmét. Előfordulhat, hogy ehhez jelszót kell megadnia.", + "SSE.Controllers.Main.errorDeleteRowContainsLockedCell": "Olyan sort próbál törölni, amely zárolt cellát tartalmaz. A zárolt cellák nem törölhetők, amíg a munkalap védett.
Zárolt cella törléséhez szüntesse meg a munkalap védelmét. Előfordulhat, hogy ehhez jelszót kell megadnia.", + "SSE.Controllers.Main.errorEditingDownloadas": "Hiba történt a dokumentummal végzett munka során.
Használja a 'Letöltés másként...' opciót, hogy mentse a fájl biztonsági másolatát a számítógép merevlemezére.", "SSE.Controllers.Main.errorEditingSaveas": "Hiba történt a dokumentummal végzett munka során.
Használja a 'Mentés másként...' opciót, hogy mentse a fájl biztonsági másolatát a számítógép merevlemezére.", "SSE.Controllers.Main.errorEditView": "A meglévő lapnézet nem szerkeszthető, és újak nem hozhatók létre jelenleg, mivel néhányukat szerkesztik.", - "SSE.Controllers.Main.errorEmailClient": "Nem található email kliens.", + "SSE.Controllers.Main.errorEmailClient": "Nem található e-mail kliens.", "SSE.Controllers.Main.errorFilePassProtect": "A dokumentum jelszóval védett, és nem nyitható meg.", "SSE.Controllers.Main.errorFileRequest": "Külső hiba.
Fájl kérési hiba. Ha a hiba továbbra is fennáll, lépjen kapcsolatba a támogatással.", "SSE.Controllers.Main.errorFileSizeExceed": "A fájlméret meghaladja a szerverre beállított korlátozást.
Kérjük, forduljon a Document Server rendszergazdájához a részletekért.", "SSE.Controllers.Main.errorFileVKey": "Külső hiba.
Helytelen biztonsági kulcs. Ha a hiba továbbra is fennáll, lépjen kapcsolatba a támogatással.", "SSE.Controllers.Main.errorFillRange": "Nem sikerült kitölteni a kiválasztott cellatartományt.
Minden egyesített cellának azonos méretűnek kell lennie.", - "SSE.Controllers.Main.errorForceSave": "Hiba történt a fájl mentése közben. Kérjük, használja a 'Letöltés mint' opciót, hogy a fájlt a számítógépére mentse, vagy próbálkozzon később.", - "SSE.Controllers.Main.errorFormulaName": "Hiba a bevitt képletben.
Helytelen képletnév.", - "SSE.Controllers.Main.errorFormulaParsing": "Belső hiba a képlet elemzése közben.", - "SSE.Controllers.Main.errorFrmlMaxLength": "A képlet hossza meghaladja a 8192 karakteres korlátot.
Kérjük, módosítsa és próbálja újra.", - "SSE.Controllers.Main.errorFrmlMaxReference": "Nem adhatja meg ezt a képletet, mert túl sok értéke,
cellahivatkozása és/vagy neve van.", - "SSE.Controllers.Main.errorFrmlMaxTextLength": "A képletekben a szövegértékek legfeljebb 255 karakterre korlátozódhatnak.
Használja a CONCATENATE funkciót vagy az összefűző operátort (&).", + "SSE.Controllers.Main.errorForceSave": "Hiba történt a fájl mentése közben. Kérjük, használja a 'Letöltés másként' opciót, hogy a fájlt a számítógépére mentse, vagy próbálkozzon később.", + "SSE.Controllers.Main.errorFormulaName": "Hiba a bevitt függvényben.
Helytelen függvénynév.", + "SSE.Controllers.Main.errorFormulaParsing": "Belső hiba a függvény elemzése közben.", + "SSE.Controllers.Main.errorFrmlMaxLength": "A függvény hossza meghaladja a 8192 karakteres korlátot.
Kérjük, módosítsa és próbálja újra.", + "SSE.Controllers.Main.errorFrmlMaxReference": "Nem adhatja meg ezt a függvényt, mert túl sok értéke,
cellahivatkozása és/vagy neve van.", + "SSE.Controllers.Main.errorFrmlMaxTextLength": "A függvényben a szövegértékek legfeljebb 255 karakterre korlátozódhatnak.
Használja a CONCATENATE funkciót vagy az összefűző operátort (&).", "SSE.Controllers.Main.errorFrmlWrongReferences": "A függvény nem létező munkalapra vonatkozik.
Kérjük, ellenőrizze az adatokat és próbálja újra.", "SSE.Controllers.Main.errorFTChangeTableRangeError": "A műveletet nem sikerült befejezni a kiválasztott cellatartományban.
Válasszon ki egy tartományt, hogy az első táblázat sora ugyanabban a sorban legyen, és az eredményül kapott táblázat átfedje az aktuális sort.", "SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "A műveletet nem sikerült befejezni a kiválasztott cellatartományban.
Válasszon ki egy olyan tartományt, amely nem tartalmaz más táblákat.", @@ -576,20 +677,25 @@ "SSE.Controllers.Main.errorKeyEncrypt": "Ismeretlen kulcsleíró", "SSE.Controllers.Main.errorKeyExpire": "Lejárt kulcsleíró", "SSE.Controllers.Main.errorLabledColumnsPivot": "Kimutatás tábla létrehozásához használjon listaként rendezett adatokat címkézett oszlopokkal.", + "SSE.Controllers.Main.errorLoadingFont": "A betűtípusok nincsenek betöltve.
Kérjük forduljon a dokumentumszerver rendszergazdájához.", + "SSE.Controllers.Main.errorLocationOrDataRangeError": "A hely vagy adattartomány hivatkozása nem érvényes.", "SSE.Controllers.Main.errorLockedAll": "A műveletet nem lehetett végrehajtani, mivel a munkalapot egy másik felhasználó zárolta.", "SSE.Controllers.Main.errorLockedCellPivot": "Nem módosíthatja az adatokat a pivot táblában.", "SSE.Controllers.Main.errorLockedWorksheetRename": "A lapot nem lehet átnevezni, egy másik felhasználó éppen átnevezte azt", "SSE.Controllers.Main.errorMaxPoints": "A soronkénti maximális pontszám diagramonként 4096.", "SSE.Controllers.Main.errorMoveRange": "Nem lehet módosítani az egyesített cellák egy részét", "SSE.Controllers.Main.errorMoveSlicerError": "A táblázat elválasztói nem másolhatók át egyik munkafüzetből a másikba.
Próbálja meg újra a teljes táblázat és az elválasztók kiválasztásával.", - "SSE.Controllers.Main.errorMultiCellFormula": "A multi-cella tömb függvények nem engedélyezettek a táblázatokban.", + "SSE.Controllers.Main.errorMultiCellFormula": "A táblázatokban nem használhatók többcellás tömbfüggvények.", "SSE.Controllers.Main.errorNoDataToParse": "Nem volt feldolgozásra kiválasztott adat.", - "SSE.Controllers.Main.errorOpenWarning": "Az egyik fájlképlet meghaladja a 8192 karakteres korlátot.
A képletet eltávolítottuk.", + "SSE.Controllers.Main.errorOpenWarning": "Az egyik fájlfüggvény meghaladja a 8192 karakteres korlátot.
A függvényt eltávolítottuk.", "SSE.Controllers.Main.errorOperandExpected": "A bevitt függvényszintaxis nem megfelelő. Kérjük, ellenőrizze, hogy hiányzik-e az egyik zárójel - '(' vagy ')'.", + "SSE.Controllers.Main.errorPasswordIsNotCorrect": "A megadott jelszó helytelen.
Győződjön meg arról, hogy a CAPS LOCK billentyű ki van kapcsolva, és ügyeljen arra, hogy a megfelelő nagybetűket használja.", "SSE.Controllers.Main.errorPasteMaxRange": "A másolási és beillesztési terület nem egyezik.
Válasszon ki egy azonos méretű területet, vagy kattintson a sorban lévő első cellára a másolt cellák beillesztéséhez.", + "SSE.Controllers.Main.errorPasteMultiSelect": "Ez a művelet nem hajtható végre több tartomány kiválasztása esetén.
Válasszon ki egy tartományt, és próbálja újra.", "SSE.Controllers.Main.errorPasteSlicerError": "A táblázat elválasztói nem másolhatók át egyik munkafüzetből a másikba.", "SSE.Controllers.Main.errorPivotGroup": "A kijelölés nem csoportosítható.", "SSE.Controllers.Main.errorPivotOverlap": "A tábla jelentés nem fedheti át a táblázatot.", + "SSE.Controllers.Main.errorPivotWithoutUnderlying": "A pivot táblázat jelentést a mögöttes adatok nélkül mentette.
A jelentés frissítéséhez használja a \"Frissítés\" gombot.", "SSE.Controllers.Main.errorPrintMaxPagesCount": "Sajnos nem lehet több mint 1500 oldalt egyszerre kinyomtatni az aktuális programverzióban.
Ez a korlátozás eltávolításra kerül a következő kiadásokban.", "SSE.Controllers.Main.errorProcessSaveResult": "Sikertelen mentés", "SSE.Controllers.Main.errorServerVersion": "A szerkesztő verziója frissült. Az oldal újratöltésre kerül a módosítások alkalmazásához.", @@ -597,19 +703,22 @@ "SSE.Controllers.Main.errorSessionIdle": "A dokumentumot sokáig nem szerkesztették. Kérjük, töltse be újra az oldalt.", "SSE.Controllers.Main.errorSessionToken": "A szerverrel való kapcsolat megszakadt. Töltse be újra az oldalt.", "SSE.Controllers.Main.errorSetPassword": "A jelszót nem lehet beállítani.", + "SSE.Controllers.Main.errorSingleColumnOrRowError": "A helyhivatkozás nem érvényes, mert a cellák nem mindegyike ugyanabban az oszlopban vagy sorban található.
Válassza ki azokat a cellákat, amelyek mindegyike egyetlen oszlopban vagy sorban található.", "SSE.Controllers.Main.errorStockChart": "Helytelen sor sorrend. Tőzsdei diagram létrehozásához az adatokat az alábbi sorrendben vigye fel:
nyitó ár, maximum ár, minimum ár, záró ár.", "SSE.Controllers.Main.errorToken": "A dokumentum biztonsági tokenje nem megfelelő.
Kérjük, lépjen kapcsolatba a Dokumentumszerver rendszergazdájával.", "SSE.Controllers.Main.errorTokenExpire": "A dokumentum biztonsági tokenje lejárt.
Kérjük, lépjen kapcsolatba a dokumentumszerver rendszergazdájával.", "SSE.Controllers.Main.errorUnexpectedGuid": "Külső hiba.
Váratlan GUID. Ha a hiba továbbra is fennáll, lépjen kapcsolatba a támogatással.", "SSE.Controllers.Main.errorUpdateVersion": "A dokumentum verziója megváltozott. Az oldal újratöltődik.", - "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "Az internet kapcsolat helyreállt, és a fájl verziója megváltozott.
Mielőtt folytatná a munkát, töltse le a fájlt, vagy másolja vágólapra annak tartalmát, hogy megbizonyosodjon arról, hogy semmi nem veszik el, majd töltse újra az oldalt.", + "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "Az internetkapcsolat helyreállt és a fájl verziója megváltozott.
Mielőtt folytatná a munkát, töltse le a fájlt vagy másolja át annak tartalmát megbizonyosodva arról, hogy semmi sem veszett el, végül töltse újra ezt az oldalt.", "SSE.Controllers.Main.errorUserDrop": "A dokumentum jelenleg nem elérhető", "SSE.Controllers.Main.errorUsersExceed": "Túllépte a csomagja által engedélyezett felhasználók számát", "SSE.Controllers.Main.errorViewerDisconnect": "A kapcsolat megszakadt. Továbbra is megtekinthető a dokumentum,
de a kapcsolat helyreálltáig és az oldal újratöltéséig nem lehet letölteni.", - "SSE.Controllers.Main.errorWrongBracketsCount": "Hiba a bevitt képletben.
A zárójelek száma hibás.", - "SSE.Controllers.Main.errorWrongOperator": "Hiba a megadott képletben. Hibás operátor használata.
Kérjük, javítsa ki a hibát.", + "SSE.Controllers.Main.errorWrongBracketsCount": "Hiba a bevitt függvényben.
A zárójelek száma hibás.", + "SSE.Controllers.Main.errorWrongOperator": "Hiba a megadott függvényben. Hibás operátor használata.
Kérjük, javítsa ki a hibát.", + "SSE.Controllers.Main.errorWrongPassword": "A megadott jelszó nem megfelelő.", "SSE.Controllers.Main.errRemDuplicates": "Ismétlődő értékek voltak és törlésre kerültek: {0}, egyedi értékek maradtak: {1}.", "SSE.Controllers.Main.leavePageText": "El nem mentett változások vannak a munkafüzetben. A mentéshez kattintson a \"Maradjon ezen az oldalon\", majd a \"Mentés\" gombra. Az elmentett módosítások elvetéséhez kattintson az \"Oldal elhagyása\" gombra.", + "SSE.Controllers.Main.leavePageTextOnClose": "A táblázatban lévő összes nem mentett módosítás elveszik.
Kattintson a „Mégse”, majd a „Mentés” gombra a mentésükhöz. Kattintson az „OK” gombra az összes nem mentett módosítás elvetéséhez.", "SSE.Controllers.Main.loadFontsTextText": "Adatok betöltése...", "SSE.Controllers.Main.loadFontsTitleText": "Adatok betöltése", "SSE.Controllers.Main.loadFontTextText": "Adatok betöltése...", @@ -635,16 +744,27 @@ "SSE.Controllers.Main.saveTitleText": "Munkafüzet mentése", "SSE.Controllers.Main.scriptLoadError": "A kapcsolat túl lassú, néhány komponens nem töltődött be. Frissítse az oldalt.", "SSE.Controllers.Main.textAnonymous": "Névtelen", - "SSE.Controllers.Main.textBuyNow": "Weboldalt meglátogat", + "SSE.Controllers.Main.textApplyAll": "Alkalmazás az összes egyenletre", + "SSE.Controllers.Main.textBuyNow": "Weboldal megnyitása", + "SSE.Controllers.Main.textChangesSaved": "Minden módosítás elmentve", "SSE.Controllers.Main.textClose": "Bezár", "SSE.Controllers.Main.textCloseTip": "Kattintson, a tippek bezárásához", "SSE.Controllers.Main.textConfirm": "Megerősítés", "SSE.Controllers.Main.textContactUs": "Értékesítés elérhetősége", - "SSE.Controllers.Main.textCustomLoader": "Kérjük, vegye figyelembe, hogy az engedély feltételei szerint nem jogosult a betöltő cseréjére.
Kérjük, forduljon értékesítési osztályunkhoz, hogy árajánlatot kapjon.", + "SSE.Controllers.Main.textConvertEquation": "Ez az egyenlet az egyenletszerkesztő régi verziójával lett létrehozva, amely már nem támogatott. A szerkesztéshez alakítsa az egyenletet Office Math ML formátumra.
Konvertáljuk most?", + "SSE.Controllers.Main.textCustomLoader": "Kérjük, vegye figyelembe, hogy a licence feltételei szerint nem jogosult a betöltő cseréjére.
Kérjük, forduljon értékesítési osztályunkhoz, hogy árajánlatot kapjon.", + "SSE.Controllers.Main.textDisconnect": "A kapcsolat megszakadt", + "SSE.Controllers.Main.textFillOtherRows": "Többi sor kitöltése", + "SSE.Controllers.Main.textFormulaFilledAllRows": "Függvénnyel kitöltött {0} sor tartalmaz adatokat. A többi üres sor kitöltése eltarthat néhány percig.", + "SSE.Controllers.Main.textFormulaFilledAllRowsWithEmpty": "A függvény kitöltötte az első {0} sort. A többi üres sor kitöltése eltarthat néhány percig.", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherHaveData": "A függvény csak az első {0} sort töltötte ki memóriamentési okokból. A munkalapon a további {1} sor is tartalmaz adatokat. Ezeket manuálisan is kitöltheti.", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherIsEmpty": "A függvény csak az első {0} sort töltötte ki memóriamentési okokból. A munkalap többi sora nem tartalmaz adatokat.", "SSE.Controllers.Main.textGuest": "Vendég", "SSE.Controllers.Main.textHasMacros": "A fájl automatikus makrókat tartalmaz.
Szeretne makrókat futtatni?", + "SSE.Controllers.Main.textLearnMore": "Tudjon meg többet", "SSE.Controllers.Main.textLoadingDocument": "Munkafüzet betöltése", "SSE.Controllers.Main.textLongName": "Írjon be egy 128 karakternél rövidebb nevet.", + "SSE.Controllers.Main.textNeedSynchronize": "Frissítések érhetőek el", "SSE.Controllers.Main.textNo": "Nem", "SSE.Controllers.Main.textNoLicenseTitle": "Elérte a licenckorlátot", "SSE.Controllers.Main.textPaidFeature": "Fizetett funkció", @@ -655,6 +775,7 @@ "SSE.Controllers.Main.textShape": "Alakzat", "SSE.Controllers.Main.textStrict": "Biztonságos mód", "SSE.Controllers.Main.textTryUndoRedo": "A Visszavonás / Újra funkciók le vannak tiltva a Gyors együttes szerkesztés módban.
A \"Biztonságos mód\" gombra kattintva válthat a Biztonságos együttes szerkesztés módra, hogy a dokumentumot más felhasználókkal való interferencia nélkül tudja szerkeszteni, mentés után küldve el a módosításokat. A szerkesztési módok között a Speciális beállítások segítségével válthat.", + "SSE.Controllers.Main.textTryUndoRedoWarn": "A Visszavonás/Újra funkciók le vannak tiltva a Gyors társszerkesztés módban.", "SSE.Controllers.Main.textYes": "Igen", "SSE.Controllers.Main.titleLicenseExp": "Lejárt licenc", "SSE.Controllers.Main.titleServerVersion": "Szerkesztő frissítve", @@ -664,7 +785,7 @@ "SSE.Controllers.Main.txtBasicShapes": "Egyszerű alakzatok", "SSE.Controllers.Main.txtBlank": "(üres)", "SSE.Controllers.Main.txtButtons": "Gombok", - "SSE.Controllers.Main.txtByField": "%2 -ből %1", + "SSE.Controllers.Main.txtByField": "%2-ból/ből %1", "SSE.Controllers.Main.txtCallouts": "Feliratok", "SSE.Controllers.Main.txtCharts": "Bonyolult alakzatok", "SSE.Controllers.Main.txtClearFilter": "Szűrő törlése (Alt+C)", @@ -675,6 +796,7 @@ "SSE.Controllers.Main.txtDays": "Napok", "SSE.Controllers.Main.txtDiagramTitle": "Diagram címe", "SSE.Controllers.Main.txtEditingMode": "Szerkesztési mód beállítása...", + "SSE.Controllers.Main.txtErrorLoadHistory": "Napló betöltése sikertelen", "SSE.Controllers.Main.txtFiguredArrows": "Nyíl formák", "SSE.Controllers.Main.txtFile": "Fájl", "SSE.Controllers.Main.txtGrandTotal": "Teljes összeg", @@ -685,11 +807,13 @@ "SSE.Controllers.Main.txtMinutes": "Percek", "SSE.Controllers.Main.txtMonths": "Hónapok", "SSE.Controllers.Main.txtMultiSelect": "Többszörös kiválasztás (Alt+S)", + "SSE.Controllers.Main.txtOr": "%1 vagy %2", "SSE.Controllers.Main.txtPage": "Oldal", "SSE.Controllers.Main.txtPageOf": "%1. oldal (Össz: %2)", "SSE.Controllers.Main.txtPages": "Oldalak", "SSE.Controllers.Main.txtPreparedBy": "Előkészítette", "SSE.Controllers.Main.txtPrintArea": "Nyomtatási terület", + "SSE.Controllers.Main.txtQuarter": "Qtr", "SSE.Controllers.Main.txtQuarters": "Negyedévek", "SSE.Controllers.Main.txtRectangles": "Négyszögek", "SSE.Controllers.Main.txtRow": "Sor", @@ -892,15 +1016,22 @@ "SSE.Controllers.Main.txtTab": "Lap", "SSE.Controllers.Main.txtTable": "Táblázat", "SSE.Controllers.Main.txtTime": "Idő", + "SSE.Controllers.Main.txtUnlock": "Feloldás", + "SSE.Controllers.Main.txtUnlockRange": "Tartomány feloldása", + "SSE.Controllers.Main.txtUnlockRangeDescription": "Adja meg a jelszót a tartomány módosításához:", + "SSE.Controllers.Main.txtUnlockRangeWarning": "A módosítani kívánt tartomány jelszóval védett.", "SSE.Controllers.Main.txtValues": "Értékek", "SSE.Controllers.Main.txtXAxis": "X tengely", "SSE.Controllers.Main.txtYAxis": "Y tengely", "SSE.Controllers.Main.txtYears": "Évek", "SSE.Controllers.Main.unknownErrorText": "Ismeretlen hiba.", "SSE.Controllers.Main.unsupportedBrowserErrorText": "A böngészője nem támogatott.", + "SSE.Controllers.Main.uploadDocExtMessage": "Ismeretlen dokumentum formátum.", + "SSE.Controllers.Main.uploadDocFileCountMessage": "Nincs feltöltött dokumentum.", + "SSE.Controllers.Main.uploadDocSizeMessage": "A maximális dokumentum méret elérve.", "SSE.Controllers.Main.uploadImageExtMessage": "Ismeretlen képformátum.", "SSE.Controllers.Main.uploadImageFileCountMessage": "Nincs kép feltöltve.", - "SSE.Controllers.Main.uploadImageSizeMessage": "Elérte a maximum kép méret limitet.", + "SSE.Controllers.Main.uploadImageSizeMessage": "A kép túl nagy. A maximális méret 25 MB.", "SSE.Controllers.Main.uploadImageTextText": "Kép feltöltése...", "SSE.Controllers.Main.uploadImageTitleText": "Kép feltöltése", "SSE.Controllers.Main.waitText": "Kérjük, várjon...", @@ -939,9 +1070,11 @@ "SSE.Controllers.Toolbar.errorStockChart": "Helytelen sor sorrend. Tőzsdei diagram létrehozásához az adatokat az alábbi sorrendben vigye fel:
nyitó ár, maximum ár, minimum ár, záró ár.", "SSE.Controllers.Toolbar.textAccent": "Accent", "SSE.Controllers.Toolbar.textBracket": "Zárójelben", + "SSE.Controllers.Toolbar.textDirectional": "Irányított", "SSE.Controllers.Toolbar.textFontSizeErr": "A megadott érték helytelen.
Kérjük, adjon meg egy számértéket 1 és 409 között", "SSE.Controllers.Toolbar.textFraction": "Törtek", "SSE.Controllers.Toolbar.textFunction": "Szögfüggvények", + "SSE.Controllers.Toolbar.textIndicator": "Indikátorok", "SSE.Controllers.Toolbar.textInsert": "Beszúrás", "SSE.Controllers.Toolbar.textIntegral": "Integrálok", "SSE.Controllers.Toolbar.textLargeOperator": "Nagy operátorok", @@ -951,7 +1084,9 @@ "SSE.Controllers.Toolbar.textOperator": "Operátorok", "SSE.Controllers.Toolbar.textPivot": "Pivot tábla", "SSE.Controllers.Toolbar.textRadical": "Gyökvonás", + "SSE.Controllers.Toolbar.textRating": "Értékelések", "SSE.Controllers.Toolbar.textScript": "Scripts", + "SSE.Controllers.Toolbar.textShapes": "Alakzatok", "SSE.Controllers.Toolbar.textSymbols": "Szimbólumok", "SSE.Controllers.Toolbar.textWarning": "Figyelmeztetés", "SSE.Controllers.Toolbar.txtAccent_Accent": "Akut", @@ -961,8 +1096,8 @@ "SSE.Controllers.Toolbar.txtAccent_Bar": "Sáv", "SSE.Controllers.Toolbar.txtAccent_BarBot": "Aláhúzás", "SSE.Controllers.Toolbar.txtAccent_BarTop": "Felső sáv", - "SSE.Controllers.Toolbar.txtAccent_BorderBox": "Dobozos képlet (pozicionálóval)", - "SSE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Dobozos képlet (példa)", + "SSE.Controllers.Toolbar.txtAccent_BorderBox": "Dobozos függvény (pozicionálóval)", + "SSE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Dobozos függvény (példa)", "SSE.Controllers.Toolbar.txtAccent_Check": "Ellenőriz", "SSE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Alsó zárójel", "SSE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Felső összekötő", @@ -1054,7 +1189,7 @@ "SSE.Controllers.Toolbar.txtFunction_Csch": "Hiperbolikus koszekáns függvény", "SSE.Controllers.Toolbar.txtFunction_Custom_1": "Szinusz théta", "SSE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", - "SSE.Controllers.Toolbar.txtFunction_Custom_3": "Tangens képlet", + "SSE.Controllers.Toolbar.txtFunction_Custom_3": "Tangens függvény", "SSE.Controllers.Toolbar.txtFunction_Sec": "Szekáns függvény", "SSE.Controllers.Toolbar.txtFunction_Sech": "Hiperbolikus szekáns függvény", "SSE.Controllers.Toolbar.txtFunction_Sin": "Szinusz függvény", @@ -1132,6 +1267,7 @@ "SSE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritmus", "SSE.Controllers.Toolbar.txtLimitLog_Max": "Maximum", "SSE.Controllers.Toolbar.txtLimitLog_Min": "Minimum", + "SSE.Controllers.Toolbar.txtLockSort": "Adatok találhatók a kijelölés mellett, de nincs elegendő engedélye a cellák módosításához.
Szeretné folytatni a jelenlegi kijelöléssel?", "SSE.Controllers.Toolbar.txtMatrix_1_2": "1x2 üres mátrix", "SSE.Controllers.Toolbar.txtMatrix_1_3": "1x3 üres mátrix", "SSE.Controllers.Toolbar.txtMatrix_2_1": "1x3 üres mátrix", @@ -1233,7 +1369,7 @@ "SSE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", "SSE.Controllers.Toolbar.txtSymbol_leftarrow": "Balra nyíl", "SSE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Jobbra-balra nyíl", - "SSE.Controllers.Toolbar.txtSymbol_leq": "Kisebb vagy egyenlő", + "SSE.Controllers.Toolbar.txtSymbol_leq": "Kisebb vagy egyenlő mint", "SSE.Controllers.Toolbar.txtSymbol_less": "Kevesebb mint", "SSE.Controllers.Toolbar.txtSymbol_ll": "Sokkal kisebb mint", "SSE.Controllers.Toolbar.txtSymbol_minus": "Mínusz", @@ -1284,7 +1420,7 @@ "SSE.Controllers.Toolbar.warnMergeLostData": "Csak a bal felső cellából származó adatok maradnak az egyesített cellában.
Biztosan folytatni szeretné?", "SSE.Controllers.Viewport.textFreezePanes": "Panelek rögzítése", "SSE.Controllers.Viewport.textFreezePanesShadow": "Mutassa a rögzített panelek árnyékát", - "SSE.Controllers.Viewport.textHideFBar": "Képlet sáv elrejtése", + "SSE.Controllers.Viewport.textHideFBar": "Függvény sáv elrejtése", "SSE.Controllers.Viewport.textHideGridlines": "Rácsvonalak elrejtése", "SSE.Controllers.Viewport.textHideHeadings": "Fejlécek elrejtése", "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Decimális szeparátor", @@ -1312,7 +1448,7 @@ "SSE.Views.AutoFilterDialog.txtGreaterEquals": "Nagyobb vagy egyenlő...", "SSE.Views.AutoFilterDialog.txtLabelFilter": "Címkeszűrő", "SSE.Views.AutoFilterDialog.txtLess": "Kevesebb mint...", - "SSE.Views.AutoFilterDialog.txtLessEquals": "Kisebb vagy egyenlő...", + "SSE.Views.AutoFilterDialog.txtLessEquals": "Kisebb vagy egyenlő mint...", "SSE.Views.AutoFilterDialog.txtNotBegins": "Nem azzal kezdődik...", "SSE.Views.AutoFilterDialog.txtNotBetween": "Nem között...", "SSE.Views.AutoFilterDialog.txtNotContains": "nem tartalmaz...", @@ -1345,8 +1481,12 @@ "SSE.Views.CellSettings.textBackground": "Háttérszín", "SSE.Views.CellSettings.textBorderColor": "Szín", "SSE.Views.CellSettings.textBorders": "Szegély stílus", + "SSE.Views.CellSettings.textClearRule": "Szabályok törlése", "SSE.Views.CellSettings.textColor": "Szín kitöltés", + "SSE.Views.CellSettings.textColorScales": "Színskálák", + "SSE.Views.CellSettings.textCondFormat": "Feltételes formázás", "SSE.Views.CellSettings.textControl": "Szövegvezérlő", + "SSE.Views.CellSettings.textDataBars": "Adatsávok", "SSE.Views.CellSettings.textDirection": "Irány", "SSE.Views.CellSettings.textFill": "Kitöltés", "SSE.Views.CellSettings.textForeground": "Előtér színe", @@ -1354,7 +1494,10 @@ "SSE.Views.CellSettings.textGradientColor": "Szín", "SSE.Views.CellSettings.textGradientFill": "Színátmenetes kitöltés", "SSE.Views.CellSettings.textIndent": "Behúzás", + "SSE.Views.CellSettings.textItems": "Tételek", "SSE.Views.CellSettings.textLinear": "Egyenes", + "SSE.Views.CellSettings.textManageRule": "Szabályok kezelése", + "SSE.Views.CellSettings.textNewRule": "Új Szabály", "SSE.Views.CellSettings.textNoFill": "Nincs kitöltés", "SSE.Views.CellSettings.textOrientation": "Szövegirány", "SSE.Views.CellSettings.textPattern": "Minta", @@ -1362,6 +1505,10 @@ "SSE.Views.CellSettings.textPosition": "Pozíció", "SSE.Views.CellSettings.textRadial": "Sugárirányú", "SSE.Views.CellSettings.textSelectBorders": "Válassza ki a szegélyeket, amelyeket módosítani szeretne, a fenti stílus kiválasztásával", + "SSE.Views.CellSettings.textSelection": "Jelenlegi kijelölésből", + "SSE.Views.CellSettings.textThisPivot": "Ebből a Pivot táblázatból", + "SSE.Views.CellSettings.textThisSheet": "Ebből a munkalapból", + "SSE.Views.CellSettings.textThisTable": "Ebből a táblázatból", "SSE.Views.CellSettings.tipAddGradientPoint": "Színátmenet pont hozzáadása", "SSE.Views.CellSettings.tipAll": "Külső szegély és minden belső vonal beállítása", "SSE.Views.CellSettings.tipBottom": "Csak külső, alsó szegély beállítása", @@ -1376,7 +1523,7 @@ "SSE.Views.CellSettings.tipRemoveGradientPoint": "Színátmenet pont eltávolítása", "SSE.Views.CellSettings.tipRight": "Csak külső, jobb szegély beállítása", "SSE.Views.CellSettings.tipTop": "Csak külső, felső szegély beállítása", - "SSE.Views.ChartDataDialog.errorInFormula": "Hiba van a megadott képletben.", + "SSE.Views.ChartDataDialog.errorInFormula": "Hiba van a megadott függvényben.", "SSE.Views.ChartDataDialog.errorInvalidReference": "A hivatkozás érvénytelen. Egy nyitott munkalapra kell hivatkozni.", "SSE.Views.ChartDataDialog.errorMaxPoints": "A soronkénti maximális pontszám diagramonként 4096.", "SSE.Views.ChartDataDialog.errorMaxRows": "Diagramonként az adatsorok maximális száma 255.", @@ -1395,7 +1542,7 @@ "SSE.Views.ChartDataDialog.textSwitch": "Váltsa a sort/oszlopot", "SSE.Views.ChartDataDialog.textTitle": "Diagram adatok", "SSE.Views.ChartDataDialog.textUp": "Fel", - "SSE.Views.ChartDataRangeDialog.errorInFormula": "Hiba van a megadott képletben.", + "SSE.Views.ChartDataRangeDialog.errorInFormula": "Hiba van a megadott függvényben.", "SSE.Views.ChartDataRangeDialog.errorInvalidReference": "A hivatkozás érvénytelen. Egy nyitott munkalapra kell hivatkozni.", "SSE.Views.ChartDataRangeDialog.errorMaxPoints": "A soronkénti maximális pontszám diagramonként 4096.", "SSE.Views.ChartDataRangeDialog.errorMaxRows": "Diagramonként az adatsorok maximális száma 255.", @@ -1550,7 +1697,7 @@ "SSE.Views.ChartSettingsDlg.textTwoCell": "Mozgatás és méretezés cellákkal", "SSE.Views.ChartSettingsDlg.textType": "Típus", "SSE.Views.ChartSettingsDlg.textTypeData": "Típus és adat", - "SSE.Views.ChartSettingsDlg.textUnits": "Egységek mutatása", + "SSE.Views.ChartSettingsDlg.textUnits": "Egységek megjelenítése", "SSE.Views.ChartSettingsDlg.textValue": "Érték", "SSE.Views.ChartSettingsDlg.textVertAxis": "Függőleges tengely", "SSE.Views.ChartSettingsDlg.textVertAxisSec": "Másodlagos függőleges tengely", @@ -1573,12 +1720,21 @@ "SSE.Views.CreatePivotDialog.textSelectData": "Adatok kiválasztása", "SSE.Views.CreatePivotDialog.textTitle": "Kimutatás tábla létrehozása", "SSE.Views.CreatePivotDialog.txtEmpty": "Ez egy szükséges mező", + "SSE.Views.CreateSparklineDialog.textDataRange": "Forrásadatok tartománya", + "SSE.Views.CreateSparklineDialog.textDestination": "Válassza ki, hová helyezze el a vonaldiagramokat", + "SSE.Views.CreateSparklineDialog.textInvalidRange": "Érvénytelen cellatartomány", + "SSE.Views.CreateSparklineDialog.textSelectData": "Adatok kiválasztása", + "SSE.Views.CreateSparklineDialog.textTitle": "Vonaldiagramok létrehozása", + "SSE.Views.CreateSparklineDialog.txtEmpty": "Ez egy szükséges mező", "SSE.Views.DataTab.capBtnGroup": "Csoport", "SSE.Views.DataTab.capBtnTextCustomSort": "Egyéni rendezés", "SSE.Views.DataTab.capBtnTextDataValidation": "Adatellenőrzés", "SSE.Views.DataTab.capBtnTextRemDuplicates": "Ismétlődések eltávolítása", "SSE.Views.DataTab.capBtnTextToCol": "Szöveg oszlopokká", "SSE.Views.DataTab.capBtnUngroup": "Csoport szétválasztása", + "SSE.Views.DataTab.capDataFromText": "Adatok beszerzése", + "SSE.Views.DataTab.mniFromFile": "Helyi TXT/CVS fájlból", + "SSE.Views.DataTab.mniFromUrl": "Ebből a TXT/CVS webcímből", "SSE.Views.DataTab.textBelow": "Összefoglaló oszlopok a részletek alatt", "SSE.Views.DataTab.textClear": "Körvonal törlése", "SSE.Views.DataTab.textColumns": "Oszlopok szétválasztása", @@ -1587,6 +1743,7 @@ "SSE.Views.DataTab.textRightOf": "Összefoglaló oszlopok a részletek jobb oldalán", "SSE.Views.DataTab.textRows": "Sorok szétválasztása", "SSE.Views.DataTab.tipCustomSort": "Egyéni rendezés", + "SSE.Views.DataTab.tipDataFromText": "Adatok beszerzése TXT/CVS fájlból", "SSE.Views.DataTab.tipDataValidation": "Adatellenőrzés", "SSE.Views.DataTab.tipGroup": "Cellatartomány csoportosítása", "SSE.Views.DataTab.tipRemDuplicates": "Ismétlődő sorok eltávolítása egy munkalapról", @@ -1615,7 +1772,7 @@ "SSE.Views.DataValidationDialog.textEndDate": "Záródátum", "SSE.Views.DataValidationDialog.textEndTime": "Befejezés ideje", "SSE.Views.DataValidationDialog.textError": "Hibaüzenet", - "SSE.Views.DataValidationDialog.textFormula": "Képlet", + "SSE.Views.DataValidationDialog.textFormula": "Függvény", "SSE.Views.DataValidationDialog.textIgnore": "Üresek figyelmen kívül hagyása", "SSE.Views.DataValidationDialog.textInput": "Bemeneti üzenet", "SSE.Views.DataValidationDialog.textMax": "Maximum", @@ -1644,7 +1801,7 @@ "SSE.Views.DataValidationDialog.txtGreaterThanOrEqual": "nagyobb vagy egyenlő", "SSE.Views.DataValidationDialog.txtLength": "Hosszúság", "SSE.Views.DataValidationDialog.txtLessThan": "kevesebb mint", - "SSE.Views.DataValidationDialog.txtLessThanOrEqual": "kisebb vagy egyenlő", + "SSE.Views.DataValidationDialog.txtLessThanOrEqual": "kisebb vagy egyenlő mint", "SSE.Views.DataValidationDialog.txtList": "Lista", "SSE.Views.DataValidationDialog.txtNotBetween": "nem között", "SSE.Views.DataValidationDialog.txtNotEqual": "nem egyenlő", @@ -1663,7 +1820,7 @@ "SSE.Views.DigitalFilterDialog.capCondition3": "nagyobb mint", "SSE.Views.DigitalFilterDialog.capCondition4": "nagyobb vagy egyenlő", "SSE.Views.DigitalFilterDialog.capCondition5": "kisebb mint", - "SSE.Views.DigitalFilterDialog.capCondition6": "kisebb vagy egyenlő", + "SSE.Views.DigitalFilterDialog.capCondition6": "kisebb vagy egyenlő mint", "SSE.Views.DigitalFilterDialog.capCondition7": "Kezdődik", "SSE.Views.DigitalFilterDialog.capCondition8": "nem azzal kezdődik", "SSE.Views.DigitalFilterDialog.capCondition9": "záródik", @@ -1710,6 +1867,7 @@ "SSE.Views.DocumentHolder.textArrangeForward": "Előrébb hoz", "SSE.Views.DocumentHolder.textArrangeFront": "Elölre hoz", "SSE.Views.DocumentHolder.textAverage": "Átlag", + "SSE.Views.DocumentHolder.textBullets": "Pontok", "SSE.Views.DocumentHolder.textCount": "Darab", "SSE.Views.DocumentHolder.textCrop": "Levág", "SSE.Views.DocumentHolder.textCropFill": "Kitöltés", @@ -1722,11 +1880,13 @@ "SSE.Views.DocumentHolder.textFromStorage": "Tárolóból", "SSE.Views.DocumentHolder.textFromUrl": "URL-ből", "SSE.Views.DocumentHolder.textListSettings": "Lista beállítások", + "SSE.Views.DocumentHolder.textMacro": "Makró hozzárendelése", "SSE.Views.DocumentHolder.textMax": "Maximum", "SSE.Views.DocumentHolder.textMin": "Minimum", "SSE.Views.DocumentHolder.textMore": "További függvények", "SSE.Views.DocumentHolder.textMoreFormats": "Több formátum", "SSE.Views.DocumentHolder.textNone": "nincs", + "SSE.Views.DocumentHolder.textNumbering": "Számozás", "SSE.Views.DocumentHolder.textReplace": "Képet cserél", "SSE.Views.DocumentHolder.textRotate": "Forgatás", "SSE.Views.DocumentHolder.textRotate270": "Elforgat balra 90 fokkal", @@ -1744,7 +1904,7 @@ "SSE.Views.DocumentHolder.textVar": "Variancia", "SSE.Views.DocumentHolder.topCellText": "Felfelé rendez", "SSE.Views.DocumentHolder.txtAccounting": "Könyvelés", - "SSE.Views.DocumentHolder.txtAddComment": "Hozzászólás hozzáadása", + "SSE.Views.DocumentHolder.txtAddComment": "Megjegyzés hozzáadása", "SSE.Views.DocumentHolder.txtAddNamedRange": "Név megadása", "SSE.Views.DocumentHolder.txtArrange": "Elrendez", "SSE.Views.DocumentHolder.txtAscending": "Növekvő", @@ -1752,7 +1912,7 @@ "SSE.Views.DocumentHolder.txtAutoRowHeight": "Magasság automatikus igazítása", "SSE.Views.DocumentHolder.txtClear": "Tartalmat töröl", "SSE.Views.DocumentHolder.txtClearAll": "Összes", - "SSE.Views.DocumentHolder.txtClearComments": "Hozzászólások", + "SSE.Views.DocumentHolder.txtClearComments": "Megjegyzések", "SSE.Views.DocumentHolder.txtClearFormat": "Formátum", "SSE.Views.DocumentHolder.txtClearHyper": "Hivatkozások", "SSE.Views.DocumentHolder.txtClearSparklineGroups": "Törölje a kijelölt értékgörbe csoportokat", @@ -1760,6 +1920,7 @@ "SSE.Views.DocumentHolder.txtClearText": "Szöveg", "SSE.Views.DocumentHolder.txtColumn": "Teljes oszlop", "SSE.Views.DocumentHolder.txtColumnWidth": "Oszlopszélesség beállítása", + "SSE.Views.DocumentHolder.txtCondFormat": "Feltételes formázás", "SSE.Views.DocumentHolder.txtCopy": "Másol", "SSE.Views.DocumentHolder.txtCurrency": "Pénznem", "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Egyéni oszlopszélesség", @@ -1797,13 +1958,13 @@ "SSE.Views.DocumentHolder.txtShiftRight": "Cella helyettesítése balról", "SSE.Views.DocumentHolder.txtShiftUp": "Cella helyettesítése lentről", "SSE.Views.DocumentHolder.txtShow": "Mutat", - "SSE.Views.DocumentHolder.txtShowComment": "Hozzászólás megjelenítése", + "SSE.Views.DocumentHolder.txtShowComment": "Megjegyzés megjelenítése", "SSE.Views.DocumentHolder.txtSort": "Rendez", "SSE.Views.DocumentHolder.txtSortCellColor": "Kiválasztott cellaszín a tetején", "SSE.Views.DocumentHolder.txtSortFontColor": "Kiválasztott karakterszín a tetején", "SSE.Views.DocumentHolder.txtSparklines": "Értékgörbék", "SSE.Views.DocumentHolder.txtText": "Szöveg", - "SSE.Views.DocumentHolder.txtTextAdvanced": "Haladó szövegbeállítások", + "SSE.Views.DocumentHolder.txtTextAdvanced": "Haladó bekezdés beállítások", "SSE.Views.DocumentHolder.txtTime": "Idő", "SSE.Views.DocumentHolder.txtUngroup": "Csoport szétválasztása", "SSE.Views.DocumentHolder.txtWidth": "Szélesség", @@ -1838,8 +1999,11 @@ "SSE.Views.FileMenu.btnBackCaption": "Fájl helyének megnyitása", "SSE.Views.FileMenu.btnCloseMenuCaption": "Menü bezárása", "SSE.Views.FileMenu.btnCreateNewCaption": "Új létrehozása", - "SSE.Views.FileMenu.btnDownloadCaption": "Letöltés mint...", + "SSE.Views.FileMenu.btnDownloadCaption": "Letöltés másként...", + "SSE.Views.FileMenu.btnExitCaption": "Kilépés", + "SSE.Views.FileMenu.btnFileOpenCaption": "Megnyitás...", "SSE.Views.FileMenu.btnHelpCaption": "Súgó...", + "SSE.Views.FileMenu.btnHistoryCaption": "Verziótörténet", "SSE.Views.FileMenu.btnInfoCaption": "Munkafüzet infó...", "SSE.Views.FileMenu.btnPrintCaption": "Nyomtatás", "SSE.Views.FileMenu.btnProtectCaption": "Megvéd", @@ -1852,13 +2016,15 @@ "SSE.Views.FileMenu.btnSaveCopyAsCaption": "Másolat mentése mint...", "SSE.Views.FileMenu.btnSettingsCaption": "Haladó beállítások...", "SSE.Views.FileMenu.btnToEditCaption": "Munkafüzet szerkesztése", + "SSE.Views.FileMenuPanels.CreateNew.txtBlank": "Üres munkafüzet", + "SSE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Új létrehozása", "SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Alkalmaz", "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Szerző hozzáadása", "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Szöveg hozzáadása", "SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Applikáció", "SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Szerző", "SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Hozzáférési jogok módosítása", - "SSE.Views.FileMenuPanels.DocumentInfo.txtComment": "Hozzászólás", + "SSE.Views.FileMenuPanels.DocumentInfo.txtComment": "Megjegyzés", "SSE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Létrehozva", "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Utoljára módosította", "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Utoljára módosított", @@ -1879,20 +2045,20 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Decimális szeparátor", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Gyors", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Betűtípus ajánlás", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Mindig mentse a szerverre (egyébként mentse a szerverre a dokumentum bezárásakor)", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Képlet nyelve", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "A Mentés vagy a Ctrl+S gomb megnyomása után adja hozzá a verziót a tárhelyhez", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Függvény nyelve", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Példa: SUM; MIN; MAX; COUNT", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Kapcsolja be a hozzászólások megjelenítését", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Kapcsolja be a megjegyzések megjelenítését", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Makró beállítások", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Kivágás, másolás és beillesztés", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "A tartalom beillesztésekor jelenítse meg a beillesztési beállítások gombot", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Kapcsolja be az R1C1 stílust", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Területi beállítások", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Példa:", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Kapcsolja be a megoldott hozzászólások megjelenítését", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Kapcsolja be a megoldott megjegyzések megjelenítését", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Elválasztó", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Biztonságos", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Téma", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Felhasználói felület témája", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Ezres elválasztó", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Mérési egység", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings": "Használjon elválasztókat a regionális beállítások alapján", @@ -1904,30 +2070,55 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoRecover": "Automatikus visszaállítás", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave": "Automatikus mentés", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "Letiltott", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Mentés a szerverre", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Köztes verziók mentése", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Minden perc", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Referenciastílus", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe": "Fehérorosz", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "Bolgár", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "Katalán", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "Alapértelmezett cache mód", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Centiméter", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs": "Cseh", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa": "Dán", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Német", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl": "Görög", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "Angol", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "Spanyol", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi": "Finn", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "Francia", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu": "Magyar", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtId": "Indonéz", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "Hüvelyk", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Olasz", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Hozzászólások megjelenítése", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Japán", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Koreai", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Megjegyzések megjelenítése", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Laoszi", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Lett", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "OS X-ként", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Natív", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNb": "Norvég", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "Holland", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Lengyel", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Pont", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "Portugál (Brazil)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portugál (Portugál)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Román", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Orosz", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Összes engedélyezése", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc": "Minden értesítés nélküli makró engedélyezése", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSk": "Szlovák", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl": "Szlovén", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Összes letiltása", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Minden értesítés nélküli makró letiltása", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Értesítés mutatása", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv": "Svéd", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr": "Török", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk": "Ukrán", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtVi": "Vietnámi", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Értesítés megjelenítése", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Minden értesítéssel rendelkező makró letiltása", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "Windows-ként", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Kínai", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Alkalmaz", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Szótár nyelve", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "NAGYBETŰS szavak mellőzése", @@ -1948,6 +2139,149 @@ "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Általános", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Oldal beállítások", "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Helyesírás-ellenőrzés", + "SSE.Views.FormatRulesEditDlg.fillColor": "Kitöltőszín", + "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Figyelmeztetés", + "SSE.Views.FormatRulesEditDlg.text2Scales": "2 Színskála", + "SSE.Views.FormatRulesEditDlg.text3Scales": "3 Színskála", + "SSE.Views.FormatRulesEditDlg.textAllBorders": "Minden szegély", + "SSE.Views.FormatRulesEditDlg.textAppearance": "Sáv megjelenése", + "SSE.Views.FormatRulesEditDlg.textApply": "Alkalmazás a tartományra", + "SSE.Views.FormatRulesEditDlg.textAutomatic": "Automatikus", + "SSE.Views.FormatRulesEditDlg.textAxis": "Tengely", + "SSE.Views.FormatRulesEditDlg.textBarDirection": "Sáv iránya", + "SSE.Views.FormatRulesEditDlg.textBold": "Félkövér", + "SSE.Views.FormatRulesEditDlg.textBorder": "Szegély", + "SSE.Views.FormatRulesEditDlg.textBordersColor": "Segélyek színe", + "SSE.Views.FormatRulesEditDlg.textBordersStyle": "Szegély stílus", + "SSE.Views.FormatRulesEditDlg.textBottomBorders": "Alsó szegélyek", + "SSE.Views.FormatRulesEditDlg.textCannotAddCF": "Nem lehet hozzáadni a feltételes formázást.", + "SSE.Views.FormatRulesEditDlg.textCellMidpoint": "Cellák felezőpontja", + "SSE.Views.FormatRulesEditDlg.textCenterBorders": "Belső függőleges szegélyek", + "SSE.Views.FormatRulesEditDlg.textClear": "Töröl", + "SSE.Views.FormatRulesEditDlg.textColor": "Szöveg szín", + "SSE.Views.FormatRulesEditDlg.textContext": "Kontextus", + "SSE.Views.FormatRulesEditDlg.textCustom": "Egyéni", + "SSE.Views.FormatRulesEditDlg.textDiagDownBorder": "Átlós szegély lefelé", + "SSE.Views.FormatRulesEditDlg.textDiagUpBorder": "Átlós szegély felfelé", + "SSE.Views.FormatRulesEditDlg.textEmptyFormula": "Adjon meg egy érvényes függvényt.", + "SSE.Views.FormatRulesEditDlg.textEmptyFormulaExt": "A megadott függvény nem váltható számra, dátumra, időpontra vagy karakterláncra.", + "SSE.Views.FormatRulesEditDlg.textEmptyText": "Adjon meg egy értéket.", + "SSE.Views.FormatRulesEditDlg.textEmptyValue": "A megadott érték nem érvényes szám, dátum, időpont vagy karakterlánc.", + "SSE.Views.FormatRulesEditDlg.textErrorGreater": "A {0} értékének nagyobbnak kell lennie, mint a {1} értékének.", + "SSE.Views.FormatRulesEditDlg.textErrorTop10Between": "Írjon be egy számot {0} és {1} között.", + "SSE.Views.FormatRulesEditDlg.textFill": "Kitöltés", + "SSE.Views.FormatRulesEditDlg.textFormat": "Formázás", + "SSE.Views.FormatRulesEditDlg.textFormula": "Függvény", + "SSE.Views.FormatRulesEditDlg.textGradient": "Színátmenet", + "SSE.Views.FormatRulesEditDlg.textIconLabel": "ha {0} {1} és", + "SSE.Views.FormatRulesEditDlg.textIconLabelFirst": "ha {0} {1}", + "SSE.Views.FormatRulesEditDlg.textIconLabelLast": "amikor az érték", + "SSE.Views.FormatRulesEditDlg.textIconsOverlap": "Egy vagy több ikonadat-tartomány átfedi egymást.
Módosítsa az ikonadat-tartomány értékeit úgy, hogy a tartományok ne fedjék egymást.", + "SSE.Views.FormatRulesEditDlg.textIconStyle": "Ikon Stílus", + "SSE.Views.FormatRulesEditDlg.textInsideBorders": "Belső szegélyek", + "SSE.Views.FormatRulesEditDlg.textInvalid": "Érvénytelen adattartomány", + "SSE.Views.FormatRulesEditDlg.textInvalidRange": "HIBA! Érvénytelen cellatartomány", + "SSE.Views.FormatRulesEditDlg.textItalic": "Dőlt", + "SSE.Views.FormatRulesEditDlg.textItem": "Tétel", + "SSE.Views.FormatRulesEditDlg.textLeft2Right": "Balról jobbra", + "SSE.Views.FormatRulesEditDlg.textLeftBorders": "Bal szegélyek", + "SSE.Views.FormatRulesEditDlg.textLongBar": "Leghosszabb sáv", + "SSE.Views.FormatRulesEditDlg.textMaximum": "Maximum", + "SSE.Views.FormatRulesEditDlg.textMaxpoint": "Maximális érték", + "SSE.Views.FormatRulesEditDlg.textMiddleBorders": "Belső vízszintes szegélyek", + "SSE.Views.FormatRulesEditDlg.textMidpoint": "Középérték", + "SSE.Views.FormatRulesEditDlg.textMinimum": "Minimum", + "SSE.Views.FormatRulesEditDlg.textMinpoint": "Minimum érték", + "SSE.Views.FormatRulesEditDlg.textNegative": "Negatív", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Új egyéni szín hozzáadása", + "SSE.Views.FormatRulesEditDlg.textNoBorders": "Nincsenek szegélyek", + "SSE.Views.FormatRulesEditDlg.textNone": "Egyik sem", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "A megadott értékek közül egy vagy több nem érvényes százalékos érték.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentageExt": "A megadott {0} érték nem érvényes százalék.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentile": "A megadott értékek közül egy vagy több nem érvényes százalékos érték.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentileExt": "A megadott {0} érték nem érvényes százalékos érték.", + "SSE.Views.FormatRulesEditDlg.textOutBorders": "Külső szegélyek", + "SSE.Views.FormatRulesEditDlg.textPercent": "Százalék", + "SSE.Views.FormatRulesEditDlg.textPercentile": "Százalékos", + "SSE.Views.FormatRulesEditDlg.textPosition": "Pozíció", + "SSE.Views.FormatRulesEditDlg.textPositive": "Pozitív", + "SSE.Views.FormatRulesEditDlg.textPresets": "Előbeállítások", + "SSE.Views.FormatRulesEditDlg.textPreview": "Előnézet", + "SSE.Views.FormatRulesEditDlg.textRelativeRef": "Nem használhat relatív hivatkozásokat a színskálák, adatsorok és ikonkészletek feltételes formázási kritériumában.", + "SSE.Views.FormatRulesEditDlg.textReverse": "Ikonok sorrend megfordítása", + "SSE.Views.FormatRulesEditDlg.textRight2Left": "Jobbról balra", + "SSE.Views.FormatRulesEditDlg.textRightBorders": "Jobb szegélyek", + "SSE.Views.FormatRulesEditDlg.textRule": "Szabály", + "SSE.Views.FormatRulesEditDlg.textSameAs": "Ugyanaz, mint a pozitív", + "SSE.Views.FormatRulesEditDlg.textSelectData": "Adatok kiválasztása", + "SSE.Views.FormatRulesEditDlg.textShortBar": "legrövidebb sáv", + "SSE.Views.FormatRulesEditDlg.textShowBar": "Csak sáv megjelenítése", + "SSE.Views.FormatRulesEditDlg.textShowIcon": "Csak ikon megjelenítése", + "SSE.Views.FormatRulesEditDlg.textSingleRef": "Ez a típusú hivatkozás nem használható feltételes formázási függvényekben.
Módosítsa a hivatkozást egyetlen cellára, vagy használja a hivatkozást egy munkalapfüggvénnyel, például =SUM(A1:B5).", + "SSE.Views.FormatRulesEditDlg.textSolid": "Egyszínű", + "SSE.Views.FormatRulesEditDlg.textStrikeout": "Áthúzás", + "SSE.Views.FormatRulesEditDlg.textSubscript": "Alsó index", + "SSE.Views.FormatRulesEditDlg.textSuperscript": "Felső index", + "SSE.Views.FormatRulesEditDlg.textTopBorders": "Felső szegélyek", + "SSE.Views.FormatRulesEditDlg.textUnderline": "Aláhúzott", + "SSE.Views.FormatRulesEditDlg.tipBorders": "Szegélyek", + "SSE.Views.FormatRulesEditDlg.tipNumFormat": "Számformátum", + "SSE.Views.FormatRulesEditDlg.txtAccounting": "Könyvelés", + "SSE.Views.FormatRulesEditDlg.txtCurrency": "Pénznem", + "SSE.Views.FormatRulesEditDlg.txtDate": "Dátum", + "SSE.Views.FormatRulesEditDlg.txtEmpty": "Ez egy szükséges mező", + "SSE.Views.FormatRulesEditDlg.txtFraction": "Tört", + "SSE.Views.FormatRulesEditDlg.txtGeneral": "Általános", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "Nincs ikon", + "SSE.Views.FormatRulesEditDlg.txtNumber": "Szám", + "SSE.Views.FormatRulesEditDlg.txtPercentage": "Százalék", + "SSE.Views.FormatRulesEditDlg.txtScientific": "Tudományos", + "SSE.Views.FormatRulesEditDlg.txtText": "Szöveg", + "SSE.Views.FormatRulesEditDlg.txtTime": "Idő", + "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Formázási szabály szerkesztése", + "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Új formázási szabály", + "SSE.Views.FormatRulesManagerDlg.guestText": "Vendég", + "SSE.Views.FormatRulesManagerDlg.text1Above": "1 std eltérés ha átlag feletti", + "SSE.Views.FormatRulesManagerDlg.text1Below": "1 std eltérés ha átlag alatti", + "SSE.Views.FormatRulesManagerDlg.text2Above": "2 std eltérés ha átlag feletti", + "SSE.Views.FormatRulesManagerDlg.text2Below": "2 std eltérés ha átlag alatti", + "SSE.Views.FormatRulesManagerDlg.text3Above": "3 std eltérés ha átlag feletti", + "SSE.Views.FormatRulesManagerDlg.text3Below": "3 std eltérés ha átlag alatti", + "SSE.Views.FormatRulesManagerDlg.textAbove": "Átlagon felüli", + "SSE.Views.FormatRulesManagerDlg.textApply": "Alkalmazás a következőre", + "SSE.Views.FormatRulesManagerDlg.textBeginsWith": "A cella értéke ezzel kezdődik", + "SSE.Views.FormatRulesManagerDlg.textBelow": "Átlagon aluli", + "SSE.Views.FormatRulesManagerDlg.textBetween": "{0} és {1} között", + "SSE.Views.FormatRulesManagerDlg.textCellValue": "Cella érték", + "SSE.Views.FormatRulesManagerDlg.textColorScale": "Osztályozott színskála", + "SSE.Views.FormatRulesManagerDlg.textContains": "A cella értéke tartalmazza", + "SSE.Views.FormatRulesManagerDlg.textContainsBlank": "A cella üres értéket tartalmaz", + "SSE.Views.FormatRulesManagerDlg.textContainsError": "A cella egy hibát tartalmaz", + "SSE.Views.FormatRulesManagerDlg.textDelete": "Törlés", + "SSE.Views.FormatRulesManagerDlg.textDown": "Szabály mozgatása lefelé", + "SSE.Views.FormatRulesManagerDlg.textDuplicate": "Értékek kettőzése", + "SSE.Views.FormatRulesManagerDlg.textEdit": "Szerkesztés", + "SSE.Views.FormatRulesManagerDlg.textEnds": "A cella értéke ezzel végződik", + "SSE.Views.FormatRulesManagerDlg.textEqAbove": "Egyenlő vagy nagyobb az átlagnál", + "SSE.Views.FormatRulesManagerDlg.textEqBelow": "Egyenlő vagy kevesebb az átlagnál", + "SSE.Views.FormatRulesManagerDlg.textFormat": "Formázás", + "SSE.Views.FormatRulesManagerDlg.textIconSet": "Ikon készlet", + "SSE.Views.FormatRulesManagerDlg.textNew": "Új", + "SSE.Views.FormatRulesManagerDlg.textNotBetween": "nem {0} és {1} között", + "SSE.Views.FormatRulesManagerDlg.textNotContains": "A cella értéke nem tartalmazza", + "SSE.Views.FormatRulesManagerDlg.textNotContainsBlank": "A cella nem tartalmaz üres értéket", + "SSE.Views.FormatRulesManagerDlg.textNotContainsError": "A cella nem tartalmaz hibát", + "SSE.Views.FormatRulesManagerDlg.textRules": "Szabályok", + "SSE.Views.FormatRulesManagerDlg.textScope": "Formázási szabályok megjelenítése a következőhöz:", + "SSE.Views.FormatRulesManagerDlg.textSelectData": "Adatok kiválasztása", + "SSE.Views.FormatRulesManagerDlg.textSelection": "Pénznem kiválasztása", + "SSE.Views.FormatRulesManagerDlg.textThisPivot": "Ez a pivot táblázat", + "SSE.Views.FormatRulesManagerDlg.textThisSheet": "Ez a munkalap", + "SSE.Views.FormatRulesManagerDlg.textThisTable": "Ez a táblázat", + "SSE.Views.FormatRulesManagerDlg.textUnique": "Egyedi értékek", + "SSE.Views.FormatRulesManagerDlg.textUp": "Szabály mozgatása felfelé", + "SSE.Views.FormatRulesManagerDlg.tipIsLocked": "Ezt az elemet egy másik felhasználó szerkeszti.", + "SSE.Views.FormatRulesManagerDlg.txtTitle": "Feltételes formázás", "SSE.Views.FormatSettingsDialog.textCategory": "Kategória", "SSE.Views.FormatSettingsDialog.textDecimal": "Decimális", "SSE.Views.FormatSettingsDialog.textFormat": "Formátum", @@ -2002,14 +2336,14 @@ "SSE.Views.FormulaWizard.textArgument": "Paraméter", "SSE.Views.FormulaWizard.textFunction": "Függvény", "SSE.Views.FormulaWizard.textFunctionRes": "Függvény eredmény", - "SSE.Views.FormulaWizard.textHelp": "Segítség ehhez a funkcióhoz", + "SSE.Views.FormulaWizard.textHelp": "Segítség ehhez a függvényhez", "SSE.Views.FormulaWizard.textLogical": "logikai", "SSE.Views.FormulaWizard.textNoArgs": "Ennek a függvénynek nincsenek paraméterei", "SSE.Views.FormulaWizard.textNumber": "szám", "SSE.Views.FormulaWizard.textRef": "referencia", "SSE.Views.FormulaWizard.textText": "szöveg", "SSE.Views.FormulaWizard.textTitle": "Függvény paraméterek", - "SSE.Views.FormulaWizard.textValue": "Képlet eredmény", + "SSE.Views.FormulaWizard.textValue": "Függvény eredmény", "SSE.Views.HeaderFooterDialog.textAlign": "Igazítás az oldal margóihoz", "SSE.Views.HeaderFooterDialog.textAll": "Minden oldal", "SSE.Views.HeaderFooterDialog.textBold": "Félkövér", @@ -2044,7 +2378,7 @@ "SSE.Views.HeaderFooterDialog.tipFontName": "Betűtípus", "SSE.Views.HeaderFooterDialog.tipFontSize": "Betűméret", "SSE.Views.HyperlinkSettingsDialog.strDisplay": "Megjelenít", - "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Hivatkozás", + "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Hivatkozás erre", "SSE.Views.HyperlinkSettingsDialog.strRange": "Tartomány", "SSE.Views.HyperlinkSettingsDialog.strSheet": "Munkalap", "SSE.Views.HyperlinkSettingsDialog.textCopy": "Másol", @@ -2063,6 +2397,7 @@ "SSE.Views.HyperlinkSettingsDialog.textTitle": "Hivatkozás beállítások", "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "Ez egy szükséges mező", "SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "Ennek a mezőnek hivatkozásnak kell lennie a \"http://www.example.com\" formátumban", + "SSE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Ez a mező legfeljebb 2083 karakterből állhat", "SSE.Views.ImageSettings.textAdvanced": "Speciális beállítások megjelenítése", "SSE.Views.ImageSettings.textCrop": "Levág", "SSE.Views.ImageSettings.textCropFill": "Kitöltés", @@ -2101,7 +2436,7 @@ "SSE.Views.ImageSettingsAdvanced.textVertically": "Függőlegesen", "SSE.Views.LeftMenu.tipAbout": "Névjegy", "SSE.Views.LeftMenu.tipChat": "Chat", - "SSE.Views.LeftMenu.tipComments": "Hozzászólások", + "SSE.Views.LeftMenu.tipComments": "Megjegyzések", "SSE.Views.LeftMenu.tipFile": "Fájl", "SSE.Views.LeftMenu.tipPlugins": "Kiegészítők", "SSE.Views.LeftMenu.tipSearch": "Keres", @@ -2111,6 +2446,8 @@ "SSE.Views.LeftMenu.txtLimit": "Korlátozza a hozzáférést", "SSE.Views.LeftMenu.txtTrial": "PRÓBA MÓD", "SSE.Views.LeftMenu.txtTrialDev": "Próba fejlesztői mód", + "SSE.Views.MacroDialog.textMacro": "Makró név", + "SSE.Views.MacroDialog.textTitle": "Makró hozzárendelése", "SSE.Views.MainSettingsPrint.okButtonText": "Mentés", "SSE.Views.MainSettingsPrint.strBottom": "Alsó", "SSE.Views.MainSettingsPrint.strLandscape": "Tájkép", @@ -2146,7 +2483,7 @@ "SSE.Views.NamedRangeEditDlg.textInvalidRange": "HIBA! Érvénytelen cellatartomány", "SSE.Views.NamedRangeEditDlg.textIsLocked": "HIBA! Ezt az elemet jelenleg egy másik felhasználó szerkeszti.", "SSE.Views.NamedRangeEditDlg.textName": "Név", - "SSE.Views.NamedRangeEditDlg.textReservedName": "A használni kívánt név már hivatkozásra került egyes képletekben. Kérjük, használjon más nevet.", + "SSE.Views.NamedRangeEditDlg.textReservedName": "A használni kívánt név már hivatkozásra került egyes függvényekben. Kérjük, használjon más nevet.", "SSE.Views.NamedRangeEditDlg.textScope": "Hatókör", "SSE.Views.NamedRangeEditDlg.textSelectData": "Adatok kiválasztása", "SSE.Views.NamedRangeEditDlg.txtEmpty": "Ez egy szükséges mező", @@ -2237,7 +2574,7 @@ "SSE.Views.PivotDigitalFilterDialog.capCondition3": "nagyobb mint", "SSE.Views.PivotDigitalFilterDialog.capCondition4": "nagyobb vagy egyenlő", "SSE.Views.PivotDigitalFilterDialog.capCondition5": "kisebb mint", - "SSE.Views.PivotDigitalFilterDialog.capCondition6": "kisebb vagy egyenlő", + "SSE.Views.PivotDigitalFilterDialog.capCondition6": "kisebb vagy egyenlő mint", "SSE.Views.PivotDigitalFilterDialog.capCondition7": "kezdődik", "SSE.Views.PivotDigitalFilterDialog.capCondition8": "nem azzal kezdődik", "SSE.Views.PivotDigitalFilterDialog.capCondition9": "záródik", @@ -2387,6 +2724,56 @@ "SSE.Views.PrintTitlesDialog.textSelectRange": "Tartomány kiválasztása", "SSE.Views.PrintTitlesDialog.textTitle": "Címek nyomtatása", "SSE.Views.PrintTitlesDialog.textTop": "Oszlopok ismétlése felül", + "SSE.Views.ProtectDialog.textExistName": "HIBA! Már létezik ilyen című tartomány", + "SSE.Views.ProtectDialog.textInvalidName": "A tartomány címének betűvel kell kezdődnie, és csak betűket, számokat és szóközöket tartalmazhat.", + "SSE.Views.ProtectDialog.textInvalidRange": "HIBA! Érvénytelen cellatartomány", + "SSE.Views.ProtectDialog.textSelectData": "Adatok kiválasztása", + "SSE.Views.ProtectDialog.txtAllow": "Engedélyezze a munkalap minden felhasználójának, hogy", + "SSE.Views.ProtectDialog.txtAutofilter": "Automatikus szűrő használata", + "SSE.Views.ProtectDialog.txtDelCols": "Oszlopok törlése", + "SSE.Views.ProtectDialog.txtDelRows": "Sorok törlése", + "SSE.Views.ProtectDialog.txtEmpty": "Ez egy szükséges mező", + "SSE.Views.ProtectDialog.txtFormatCells": "Cellák formázása", + "SSE.Views.ProtectDialog.txtFormatCols": "Oszlopok formázása", + "SSE.Views.ProtectDialog.txtFormatRows": "Sorok formázása", + "SSE.Views.ProtectDialog.txtIncorrectPwd": "A megerősítő jelszó nem azonos", + "SSE.Views.ProtectDialog.txtInsCols": "Oszlopok beszúrása", + "SSE.Views.ProtectDialog.txtInsHyper": "Hiperhivatkozás beszúrása", + "SSE.Views.ProtectDialog.txtInsRows": "Sorok beszúrása", + "SSE.Views.ProtectDialog.txtObjs": "Objektum szerkesztése", + "SSE.Views.ProtectDialog.txtOptional": "opcionális", + "SSE.Views.ProtectDialog.txtPassword": "Jelszó", + "SSE.Views.ProtectDialog.txtPivot": "Pivot táblázat és pivot diagram használata", + "SSE.Views.ProtectDialog.txtProtect": "Megvéd", + "SSE.Views.ProtectDialog.txtRange": "Tartomány", + "SSE.Views.ProtectDialog.txtRangeName": "Cím", + "SSE.Views.ProtectDialog.txtRepeat": "Jelszó ismétlése", + "SSE.Views.ProtectDialog.txtScen": "Forgatókönyvek szerkesztése", + "SSE.Views.ProtectDialog.txtSelLocked": "Zárolt cellák kiválasztása", + "SSE.Views.ProtectDialog.txtSelUnLocked": "Feloldott cellákat kiválasztása", + "SSE.Views.ProtectDialog.txtSheetDescription": "Akadályozza meg a mások nem kívánt változtatásait azáltal, hogy korlátozza ezen személyek szerkesztési képességét.", + "SSE.Views.ProtectDialog.txtSheetTitle": "Munkalap védelme", + "SSE.Views.ProtectDialog.txtSort": "Rendezés", + "SSE.Views.ProtectDialog.txtWarning": "Figyelem: ha elveszti vagy elfelejti a jelszót, annak visszaállítására nincs mód. Tárolja biztonságos helyen.", + "SSE.Views.ProtectDialog.txtWBDescription": "Ha meg szeretné akadályozni, hogy más felhasználók megtekintsék a rejtett munkalapokat, továbbá hozzáadjanak, áthelyezzenek, töröljenek, elrejtsenek, illetve átnevezzenek munkalapokat, jelszóval védheti a munkafüzet szerkezetét.", + "SSE.Views.ProtectDialog.txtWBTitle": "Munkafüzet struktúrájának védelme", + "SSE.Views.ProtectRangesDlg.guestText": "Vendég", + "SSE.Views.ProtectRangesDlg.textDelete": "Törlés", + "SSE.Views.ProtectRangesDlg.textEdit": "Szerkesztés", + "SSE.Views.ProtectRangesDlg.textEmpty": "Nincsenek szerkeszthető tartományok.", + "SSE.Views.ProtectRangesDlg.textNew": "Új", + "SSE.Views.ProtectRangesDlg.textProtect": "Munkalap védelme", + "SSE.Views.ProtectRangesDlg.textPwd": "Jelszó", + "SSE.Views.ProtectRangesDlg.textRange": "Tartomány", + "SSE.Views.ProtectRangesDlg.textRangesDesc": "Jelszóval feloldott tartományok, ha a munkalap védett (ez csak zárolt cellák esetén működik)", + "SSE.Views.ProtectRangesDlg.textTitle": "Cím", + "SSE.Views.ProtectRangesDlg.tipIsLocked": "Ezt az elemet egy másik felhasználó szerkeszti.", + "SSE.Views.ProtectRangesDlg.txtEditRange": "Tartomány szerkesztése", + "SSE.Views.ProtectRangesDlg.txtNewRange": "Új Tartomány", + "SSE.Views.ProtectRangesDlg.txtNo": "Nem", + "SSE.Views.ProtectRangesDlg.txtTitle": "Tartományok szerkesztésének engedélyezése a felhasználók számára", + "SSE.Views.ProtectRangesDlg.txtYes": "Igen", + "SSE.Views.ProtectRangesDlg.warnDelete": "Biztosan töröljük a(z) {0} nevet?", "SSE.Views.RemoveDuplicatesDialog.textColumns": "Oszlopok", "SSE.Views.RemoveDuplicatesDialog.textDescription": "Ismétlődő értékek törléséhez jelöljön ki egy vagy több oszlopot, amelyek duplikátumokat tartalmaznak.", "SSE.Views.RemoveDuplicatesDialog.textHeaders": "Az adataim fejléccel rendelkeznek", @@ -2395,7 +2782,7 @@ "SSE.Views.RightMenu.txtCellSettings": "Cella beállítások", "SSE.Views.RightMenu.txtChartSettings": "Diagram beállítások", "SSE.Views.RightMenu.txtImageSettings": "Képbeállítások", - "SSE.Views.RightMenu.txtParagraphSettings": "Szövegbeállítások", + "SSE.Views.RightMenu.txtParagraphSettings": "Bekezdés beállítások", "SSE.Views.RightMenu.txtPivotSettings": "Pivot Tábla beállítások", "SSE.Views.RightMenu.txtSettings": "Általános beállítások", "SSE.Views.RightMenu.txtShapeSettings": "Alakzat beállítások", @@ -2424,7 +2811,7 @@ "SSE.Views.ShapeSettings.strPattern": "Minta", "SSE.Views.ShapeSettings.strShadow": "Árnyék mutatása", "SSE.Views.ShapeSettings.strSize": "Méret", - "SSE.Views.ShapeSettings.strStroke": "Körvonal", + "SSE.Views.ShapeSettings.strStroke": "Vonal", "SSE.Views.ShapeSettings.strTransparency": "Átlátszóság", "SSE.Views.ShapeSettings.strType": "Típus", "SSE.Views.ShapeSettings.textAdvanced": "Speciális beállítások megjelenítése", @@ -2581,7 +2968,7 @@ "SSE.Views.SlicerSettingsAdvanced.textAsc": "Növekvő", "SSE.Views.SlicerSettingsAdvanced.textAZ": "A-tól Z-ig", "SSE.Views.SlicerSettingsAdvanced.textDesc": "Csökkenő", - "SSE.Views.SlicerSettingsAdvanced.textFormulaName": "A képletekben használt név", + "SSE.Views.SlicerSettingsAdvanced.textFormulaName": "A függvényekben használt név", "SSE.Views.SlicerSettingsAdvanced.textHeader": "Fejléc", "SSE.Views.SlicerSettingsAdvanced.textKeepRatio": "Állandó arányok", "SSE.Views.SlicerSettingsAdvanced.textLargeSmall": "legnagyobbtól a legkisebbig", @@ -2646,13 +3033,13 @@ "SSE.Views.SpecialPasteDialog.textAll": "Összes", "SSE.Views.SpecialPasteDialog.textBlanks": "Üresek kihagyása", "SSE.Views.SpecialPasteDialog.textColWidth": "Oszlopszélességek", - "SSE.Views.SpecialPasteDialog.textComments": "Hozzászólások", + "SSE.Views.SpecialPasteDialog.textComments": "Megjegyzések", "SSE.Views.SpecialPasteDialog.textDiv": "Felosztás", - "SSE.Views.SpecialPasteDialog.textFFormat": "Képletek és formázás", - "SSE.Views.SpecialPasteDialog.textFNFormat": "Képletek és számformátumok", + "SSE.Views.SpecialPasteDialog.textFFormat": "Függvények és formázás", + "SSE.Views.SpecialPasteDialog.textFNFormat": "Függvények és számformátumok", "SSE.Views.SpecialPasteDialog.textFormats": "Formátumok", - "SSE.Views.SpecialPasteDialog.textFormulas": "Képletek", - "SSE.Views.SpecialPasteDialog.textFWidth": "Képletek és oszlopszélességek", + "SSE.Views.SpecialPasteDialog.textFormulas": "Függvények", + "SSE.Views.SpecialPasteDialog.textFWidth": "Függvények és oszlopszélességek", "SSE.Views.SpecialPasteDialog.textMult": "Többszörözés", "SSE.Views.SpecialPasteDialog.textNone": "Egyik sem", "SSE.Views.SpecialPasteDialog.textOperation": "Művelet", @@ -2678,7 +3065,7 @@ "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Mozgat a végére)", "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Beillesztés a lap elé", "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Áthelyez a munkalap előtt", - "SSE.Views.Statusbar.filteredRecordsText": "{0} rekord a {1}-ből szűrve", + "SSE.Views.Statusbar.filteredRecordsText": "{0} rekord a {1}-ból/ből szűrve", "SSE.Views.Statusbar.filteredText": "Szűrés mód", "SSE.Views.Statusbar.itemAverage": "Átlag", "SSE.Views.Statusbar.itemCopy": "Másol", @@ -2690,13 +3077,17 @@ "SSE.Views.Statusbar.itemMaximum": "Maximum", "SSE.Views.Statusbar.itemMinimum": "Minimum", "SSE.Views.Statusbar.itemMove": "Áthelyez", + "SSE.Views.Statusbar.itemProtect": "Megvéd", "SSE.Views.Statusbar.itemRename": "Átnevez", + "SSE.Views.Statusbar.itemStatus": "Mentés állapota", "SSE.Views.Statusbar.itemSum": "Összeg", "SSE.Views.Statusbar.itemTabColor": "Lap színe", + "SSE.Views.Statusbar.itemUnProtect": "Védelem megszüntetése", "SSE.Views.Statusbar.RenameDialog.errNameExists": "Az ilyen névvel ellátott munkafüzet már létezik.", "SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "A munkalap neve nem tartalmazhat /\\*?[]: karaktereket.", "SSE.Views.Statusbar.RenameDialog.labelSheetName": "Munkalap név", "SSE.Views.Statusbar.selectAllSheets": "Minden munkalap kiválasztása", + "SSE.Views.Statusbar.sheetIndexText": "Munkalap {0}/{1}", "SSE.Views.Statusbar.textAverage": "Átlag", "SSE.Views.Statusbar.textCount": "Darab", "SSE.Views.Statusbar.textMax": "Maximum", @@ -2710,14 +3101,14 @@ "SSE.Views.Statusbar.tipNext": "Laplista jobbra görgetése", "SSE.Views.Statusbar.tipPrev": "Laplista balra görgetése", "SSE.Views.Statusbar.tipZoomFactor": "Zoom", - "SSE.Views.Statusbar.tipZoomIn": "Zoom be", - "SSE.Views.Statusbar.tipZoomOut": "Zoom ki", + "SSE.Views.Statusbar.tipZoomIn": "Nagyítás", + "SSE.Views.Statusbar.tipZoomOut": "Kicsinyítés", "SSE.Views.Statusbar.ungroupSheets": "Munkalapok szétválasztása", "SSE.Views.Statusbar.zoomText": "Zoom {0}%", "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "A műveletet nem lehetett elvégezni a kiválasztott cellatartományban.
Válasszon egy egységes adattartományt, amely eltér a meglévő cellától, és próbálja újra.", "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "A műveletet nem sikerült befejezni a kiválasztott cellatartományban.
Válasszon ki egy tartományt, hogy az első táblázat sora ugyanabban a sorban legyen, és az eredményül kapott táblázat átfedje az aktuális sort.", "SSE.Views.TableOptionsDialog.errorFTRangeIncludedOtherTables": "A műveletet nem sikerült befejezni a kiválasztott cellatartományban.
Válasszon ki egy olyan tartományt, amely nem tartalmaz más táblákat.", - "SSE.Views.TableOptionsDialog.errorMultiCellFormula": "A multi-cella tömb függvények nem engedélyezettek a táblázatokban.", + "SSE.Views.TableOptionsDialog.errorMultiCellFormula": "A táblázatokban nem használhatók többcellás tömbfüggvények.", "SSE.Views.TableOptionsDialog.txtEmpty": "Ez egy szükséges mező", "SSE.Views.TableOptionsDialog.txtFormat": "Táblázat létrehozása", "SSE.Views.TableOptionsDialog.txtInvalidRange": "HIBA! Érvénytelen cellatartomány", @@ -2752,7 +3143,7 @@ "SSE.Views.TableSettings.textLongOperation": "Hosszú művelet", "SSE.Views.TableSettings.textPivot": "Kimutatás tábla beszúrása", "SSE.Views.TableSettings.textRemDuplicates": "Ismétlődések eltávolítása", - "SSE.Views.TableSettings.textReservedName": "A használni kívánt név már hivatkozásra került egyes képletekben. Kérjük, használjon más nevet.", + "SSE.Views.TableSettings.textReservedName": "A használni kívánt név már hivatkozásra került cella függvényekben. Kérjük, használjon más nevet.", "SSE.Views.TableSettings.textResize": "Táblázat méret", "SSE.Views.TableSettings.textRows": "Sorok", "SSE.Views.TableSettings.textSelectData": "Adatok kiválasztása", @@ -2772,7 +3163,7 @@ "SSE.Views.TextArtSettings.strForeground": "Előtér színe", "SSE.Views.TextArtSettings.strPattern": "Minta", "SSE.Views.TextArtSettings.strSize": "Méret", - "SSE.Views.TextArtSettings.strStroke": "Körvonal", + "SSE.Views.TextArtSettings.strStroke": "Vonal", "SSE.Views.TextArtSettings.strTransparency": "Átlátszóság", "SSE.Views.TextArtSettings.strType": "Típus", "SSE.Views.TextArtSettings.textAngle": "Szög", @@ -2811,8 +3202,9 @@ "SSE.Views.TextArtSettings.txtNoBorders": "Nincs vonal", "SSE.Views.TextArtSettings.txtPapyrus": "Papirusz", "SSE.Views.TextArtSettings.txtWood": "Fa", - "SSE.Views.Toolbar.capBtnAddComment": "Hozzászólás írása", - "SSE.Views.Toolbar.capBtnComment": "Hozzászólás", + "SSE.Views.Toolbar.capBtnAddComment": "Megjegyzés hozzáadása", + "SSE.Views.Toolbar.capBtnColorSchemas": "Színséma", + "SSE.Views.Toolbar.capBtnComment": "Megjegyzés", "SSE.Views.Toolbar.capBtnInsHeader": "Fejléc/Lábléc", "SSE.Views.Toolbar.capBtnInsSlicer": "Elválasztó", "SSE.Views.Toolbar.capBtnInsSymbol": "Szimbólum", @@ -2831,6 +3223,7 @@ "SSE.Views.Toolbar.capInsertHyperlink": "Hivatkozás", "SSE.Views.Toolbar.capInsertImage": "Kép", "SSE.Views.Toolbar.capInsertShape": "Alakzat", + "SSE.Views.Toolbar.capInsertSpark": "Vonaldiagram", "SSE.Views.Toolbar.capInsertTable": "Táblázat", "SSE.Views.Toolbar.capInsertText": "Szövegdoboz", "SSE.Views.Toolbar.mniImageFromFile": "Kép fájlból", @@ -2854,8 +3247,11 @@ "SSE.Views.Toolbar.textBottomBorders": "Alsó szegélyek", "SSE.Views.Toolbar.textCenterBorders": "Belső függőleges szegélyek", "SSE.Views.Toolbar.textClearPrintArea": "Nyomtatási terület törlése", + "SSE.Views.Toolbar.textClearRule": "Szabályok törlése", "SSE.Views.Toolbar.textClockwise": "Lejtő szöveg", + "SSE.Views.Toolbar.textColorScales": "Színskálák", "SSE.Views.Toolbar.textCounterCw": "Emelkedő szöveg", + "SSE.Views.Toolbar.textDataBars": "Adatsávok", "SSE.Views.Toolbar.textDelLeft": "Cella helyettesítése jobbról", "SSE.Views.Toolbar.textDelUp": "Cella helyettesítése lentről", "SSE.Views.Toolbar.textDiagDownBorder": "Átlós szegély lefelé", @@ -2869,9 +3265,11 @@ "SSE.Views.Toolbar.textInsideBorders": "Belső szegélyek", "SSE.Views.Toolbar.textInsRight": "Cella helyettesítése balról", "SSE.Views.Toolbar.textItalic": "Dőlt", + "SSE.Views.Toolbar.textItems": "Tételek", "SSE.Views.Toolbar.textLandscape": "Tájkép", "SSE.Views.Toolbar.textLeft": "Bal:", "SSE.Views.Toolbar.textLeftBorders": "Bal szegélyek", + "SSE.Views.Toolbar.textManageRule": "Szabályok kezelése", "SSE.Views.Toolbar.textManyPages": "Oldalak", "SSE.Views.Toolbar.textMarginsLast": "Előző egyéni beállítások", "SSE.Views.Toolbar.textMarginsNarrow": "Keskeny", @@ -2881,6 +3279,7 @@ "SSE.Views.Toolbar.textMoreFormats": "Több formátum", "SSE.Views.Toolbar.textMorePages": "További oldalak", "SSE.Views.Toolbar.textNewColor": "Új egyedi szín hozzáadása", + "SSE.Views.Toolbar.textNewRule": "Új Szabály", "SSE.Views.Toolbar.textNoBorders": "Nincsenek szegélyek", "SSE.Views.Toolbar.textOnePage": "Oldal", "SSE.Views.Toolbar.textOutBorders": "Külső szegélyek", @@ -2894,6 +3293,7 @@ "SSE.Views.Toolbar.textRotateUp": "Szöveg elforgatása felfelé", "SSE.Views.Toolbar.textScale": "Mérték", "SSE.Views.Toolbar.textScaleCustom": "Egyéni", + "SSE.Views.Toolbar.textSelection": "Jelenlegi kijelölésből", "SSE.Views.Toolbar.textSetPrintArea": "Nyomtatási terület beállítása", "SSE.Views.Toolbar.textStrikeout": "áthúzás", "SSE.Views.Toolbar.textSubscript": "Alsó index", @@ -2902,12 +3302,15 @@ "SSE.Views.Toolbar.textTabCollaboration": "Együttműködés", "SSE.Views.Toolbar.textTabData": "Adat", "SSE.Views.Toolbar.textTabFile": "Fájl", - "SSE.Views.Toolbar.textTabFormula": "Képlet", + "SSE.Views.Toolbar.textTabFormula": "Függvény", "SSE.Views.Toolbar.textTabHome": "Kezdőlap", "SSE.Views.Toolbar.textTabInsert": "Beszúr", "SSE.Views.Toolbar.textTabLayout": "Elrendezés", "SSE.Views.Toolbar.textTabProtect": "Védelem", "SSE.Views.Toolbar.textTabView": "Megtekintés", + "SSE.Views.Toolbar.textThisPivot": "Ebből a Pivot táblázatból", + "SSE.Views.Toolbar.textThisSheet": "Ebből a munkalapból", + "SSE.Views.Toolbar.textThisTable": "Ebből a táblázatból", "SSE.Views.Toolbar.textTop": "Felső:", "SSE.Views.Toolbar.textTopBorders": "Felső szegélyek", "SSE.Views.Toolbar.textUnderline": "Aláhúzott", @@ -2928,6 +3331,7 @@ "SSE.Views.Toolbar.tipChangeChart": "Diagramtípus módosítása", "SSE.Views.Toolbar.tipClearStyle": "Töröl", "SSE.Views.Toolbar.tipColorSchemas": "Színséma módosítása", + "SSE.Views.Toolbar.tipCondFormat": "Feltételes formázás", "SSE.Views.Toolbar.tipCopy": "Másol", "SSE.Views.Toolbar.tipCopyStyle": "Stílus másolása", "SSE.Views.Toolbar.tipDecDecimal": "Kevesebb tizedesjegy", @@ -2955,6 +3359,7 @@ "SSE.Views.Toolbar.tipInsertOpt": "Cellák beszúrása", "SSE.Views.Toolbar.tipInsertShape": "Alakzat beszúrása", "SSE.Views.Toolbar.tipInsertSlicer": "Elválasztó beszúrása", + "SSE.Views.Toolbar.tipInsertSpark": "Vonaldiagram beszúrása", "SSE.Views.Toolbar.tipInsertSymbol": "Szimbólum beszúrása", "SSE.Views.Toolbar.tipInsertTable": "Táblázat beszúrása", "SSE.Views.Toolbar.tipInsertText": "Szövegdoboz beszúrása", @@ -2965,7 +3370,7 @@ "SSE.Views.Toolbar.tipPageOrient": "Lap elrendezés", "SSE.Views.Toolbar.tipPageSize": "Lap méret", "SSE.Views.Toolbar.tipPaste": "Beilleszt", - "SSE.Views.Toolbar.tipPrColor": "Háttérszín", + "SSE.Views.Toolbar.tipPrColor": "Kitöltőszín", "SSE.Views.Toolbar.tipPrint": "Nyomtat", "SSE.Views.Toolbar.tipPrintArea": "Nyomtatási terület", "SSE.Views.Toolbar.tipPrintTitles": "Címek nyomtatása", @@ -2984,10 +3389,10 @@ "SSE.Views.Toolbar.txtAscending": "Növekvő", "SSE.Views.Toolbar.txtAutosumTip": "Összegzés", "SSE.Views.Toolbar.txtClearAll": "Összes", - "SSE.Views.Toolbar.txtClearComments": "Hozzászólások", + "SSE.Views.Toolbar.txtClearComments": "Megjegyzések", "SSE.Views.Toolbar.txtClearFilter": "Szűrő törlése", "SSE.Views.Toolbar.txtClearFormat": "Formátum", - "SSE.Views.Toolbar.txtClearFormula": "Funkció", + "SSE.Views.Toolbar.txtClearFormula": "Függvény", "SSE.Views.Toolbar.txtClearHyper": "Hivatkozások", "SSE.Views.Toolbar.txtClearText": "Szöveg", "SSE.Views.Toolbar.txtCurrency": "Pénznem", @@ -3021,7 +3426,7 @@ "SSE.Views.Toolbar.txtScheme11": "Metro", "SSE.Views.Toolbar.txtScheme12": "Modul", "SSE.Views.Toolbar.txtScheme13": "Gazdag", - "SSE.Views.Toolbar.txtScheme14": "Oriel", + "SSE.Views.Toolbar.txtScheme14": "Ablakfülke", "SSE.Views.Toolbar.txtScheme15": "Eredet", "SSE.Views.Toolbar.txtScheme16": "Papír", "SSE.Views.Toolbar.txtScheme17": "Napforduló", @@ -3030,6 +3435,7 @@ "SSE.Views.Toolbar.txtScheme2": "Szürkeárnyalatos", "SSE.Views.Toolbar.txtScheme20": "Városi", "SSE.Views.Toolbar.txtScheme21": "Lelkesedés", + "SSE.Views.Toolbar.txtScheme22": "Új Office", "SSE.Views.Toolbar.txtScheme3": "Apex", "SSE.Views.Toolbar.txtScheme4": "Nézőpont", "SSE.Views.Toolbar.txtScheme5": "Polgári", @@ -3061,7 +3467,7 @@ "SSE.Views.ValueFieldSettingsDialog.txtAverage": "Átlag", "SSE.Views.ValueFieldSettingsDialog.txtBaseField": "Alapmező", "SSE.Views.ValueFieldSettingsDialog.txtBaseItem": "Alapelem", - "SSE.Views.ValueFieldSettingsDialog.txtByField": "%2 -ből %1", + "SSE.Views.ValueFieldSettingsDialog.txtByField": "%2-ból/ből %1", "SSE.Views.ValueFieldSettingsDialog.txtCount": "Darab", "SSE.Views.ValueFieldSettingsDialog.txtCountNums": "Számolja meg a számokat", "SSE.Views.ValueFieldSettingsDialog.txtCustomName": "Egyéni név", @@ -3105,13 +3511,31 @@ "SSE.Views.ViewTab.textClose": "Bezárás", "SSE.Views.ViewTab.textCreate": "Új", "SSE.Views.ViewTab.textDefault": "Alapértelmezett", - "SSE.Views.ViewTab.textFormula": "Képlet sáv", + "SSE.Views.ViewTab.textFormula": "Függvény sáv", + "SSE.Views.ViewTab.textFreezeCol": "Az első oszlop rögzítése", + "SSE.Views.ViewTab.textFreezeRow": "Legfelső sor rögzítése", "SSE.Views.ViewTab.textGridlines": "Rácsvonalak", "SSE.Views.ViewTab.textHeadings": "Címsorok", "SSE.Views.ViewTab.textManager": "Megtekintés kelező", - "SSE.Views.ViewTab.textZoom": "Nagyítás", + "SSE.Views.ViewTab.textUnFreeze": "Rögzítés eltávolítása", + "SSE.Views.ViewTab.textZeros": "Nullák megjelenítése", + "SSE.Views.ViewTab.textZoom": "Zoom", "SSE.Views.ViewTab.tipClose": "Lapnézet bezárása", "SSE.Views.ViewTab.tipCreate": "Lapnézet létrehozása", "SSE.Views.ViewTab.tipFreeze": "Panelek rögzítése", - "SSE.Views.ViewTab.tipSheetView": "Lapnézet" + "SSE.Views.ViewTab.tipSheetView": "Lapnézet", + "SSE.Views.WBProtection.hintAllowRanges": "Tartományok szerkesztésének engedélyezése", + "SSE.Views.WBProtection.hintProtectSheet": "Munkalap védelme", + "SSE.Views.WBProtection.hintProtectWB": "Munkafüzet védelme", + "SSE.Views.WBProtection.txtAllowRanges": "Tartományok szerkesztésének engedélyezése", + "SSE.Views.WBProtection.txtHiddenFormula": "Rejtett függvények", + "SSE.Views.WBProtection.txtLockedCell": "Zárolt Cellák", + "SSE.Views.WBProtection.txtLockedShape": "Zárolt alakzat", + "SSE.Views.WBProtection.txtLockedText": "Szöveg zárolása", + "SSE.Views.WBProtection.txtProtectSheet": "Munkalap védelme", + "SSE.Views.WBProtection.txtProtectWB": "Munkafüzet védelme", + "SSE.Views.WBProtection.txtSheetUnlockDescription": "Írjon be egy jelszót a munkalap védelmének megszüntetéséhez", + "SSE.Views.WBProtection.txtSheetUnlockTitle": "Munkalap védelmének megszüntetése", + "SSE.Views.WBProtection.txtWBUnlockDescription": "Írjon be egy jelszót a munkafüzet védelmének megszüntetéséhez", + "SSE.Views.WBProtection.txtWBUnlockTitle": "Munkafüzet védelmének megszüntetése" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ja.json b/apps/spreadsheeteditor/main/locale/ja.json index 404045aac..8525ba8bf 100644 --- a/apps/spreadsheeteditor/main/locale/ja.json +++ b/apps/spreadsheeteditor/main/locale/ja.json @@ -754,6 +754,11 @@ "SSE.Controllers.Main.textConvertEquation": "この数式は、サポートされなくなった古いバージョンの数式エディタで作成されました。 編集するには、方程式をOffice Math ML形式に変換します。
今すぐ変換しますか?", "SSE.Controllers.Main.textCustomLoader": "ライセンスの条件によっては、ローダーを変更する権利がないことにご注意ください。
見積もりについては、営業部門にお問い合わせください。", "SSE.Controllers.Main.textDisconnect": "接続が失われました", + "SSE.Controllers.Main.textFillOtherRows": "他の列を埋める", + "SSE.Controllers.Main.textFormulaFilledAllRows": "{0}で埋められた数式列はデータが挿入されてます。他の空の列の挿入は数分かかる場合があります。", + "SSE.Controllers.Main.textFormulaFilledAllRowsWithEmpty": "数式は最初の{0}列で挿入されてます。他の空の列の挿入は数分かかる場合があります。", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherHaveData": "メモリ保存により数式で挿入されている最初の{0}列はデータが含めれています。このシート内にその他の{1}列にデータが含まれています。手動でそれらを入力が可能です。", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherIsEmpty": "メモリ保存により最初の{0}列は数式のみで挿入されています。このシートの他の列にはデータが含まれていません。", "SSE.Controllers.Main.textGuest": "ゲスト", "SSE.Controllers.Main.textHasMacros": "ファイルには自動マクロが含まれています。
マクロを実行しますか?", "SSE.Controllers.Main.textLearnMore": "更に詳しく", diff --git a/apps/spreadsheeteditor/main/locale/nl.json b/apps/spreadsheeteditor/main/locale/nl.json index 7c8598d8d..c73e4e3df 100644 --- a/apps/spreadsheeteditor/main/locale/nl.json +++ b/apps/spreadsheeteditor/main/locale/nl.json @@ -754,6 +754,11 @@ "SSE.Controllers.Main.textConvertEquation": "Deze vergelijking is gemaakt met een oude versie van de vergelijkingseditor die niet langer wordt ondersteund. Om deze te bewerken, converteert u de vergelijking naar de Office Math ML-indeling.\nNu converteren?", "SSE.Controllers.Main.textCustomLoader": "Volgens de voorwaarden van de licentie heeft u geen recht om de lader aan te passen.
Neem contact op met onze verkoopafdeling voor een offerte.", "SSE.Controllers.Main.textDisconnect": "Verbinding verbroken", + "SSE.Controllers.Main.textFillOtherRows": "Andere rijen vullen", + "SSE.Controllers.Main.textFormulaFilledAllRows": "Door formule gevulde {0} rijen bevatten data. Het vullen van andere lege rijen kan een paar minuten duren.", + "SSE.Controllers.Main.textFormulaFilledAllRowsWithEmpty": "De formule heeft de eerste {0} rijen gevuld. Het vullen van andere lege rijen kan enkele minuten duren.", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherHaveData": "De formule heeft enkel de eerste {0} rijen gevuld wegens geheugenbesparing. Er zijn {1} andere rijen met data in dit werkblad. U kunt deze handmatig vullen.", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherIsEmpty": "De formule heeft enkel de eerste {0} rijen gevuld wegens geheugenbesparing. Andere rijen in dit werkblad bevatten geen data.", "SSE.Controllers.Main.textGuest": "Gastgebruiker", "SSE.Controllers.Main.textHasMacros": "Het bestand bevat automatische macro's.
Wilt u macro's uitvoeren?", "SSE.Controllers.Main.textLearnMore": "Meer info", diff --git a/apps/spreadsheeteditor/main/locale/pt.json b/apps/spreadsheeteditor/main/locale/pt.json index a6ad7cdba..01f84333e 100644 --- a/apps/spreadsheeteditor/main/locale/pt.json +++ b/apps/spreadsheeteditor/main/locale/pt.json @@ -114,6 +114,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Novo", "Common.UI.ExtendedColorDialog.textRGBErr": "O valor inserido está incorreto.
Insira um valor numérico entre 0 e 255.", "Common.UI.HSBColorPicker.textNoColor": "Sem cor", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Ocultar palavra-chave", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Mostrar senha", "Common.UI.SearchDialog.textHighlight": "Destacar resultados", "Common.UI.SearchDialog.textMatchCase": "Diferenciar maiúsculas de minúsculas", "Common.UI.SearchDialog.textReplaceDef": "Inserir o texto de substituição", @@ -178,12 +180,14 @@ "Common.Views.Comments.mniAuthorDesc": "Autor Z a A", "Common.Views.Comments.mniDateAsc": "Mais antigo", "Common.Views.Comments.mniDateDesc": "Novidades", + "Common.Views.Comments.mniFilterGroups": "Filtrar por grupo", "Common.Views.Comments.mniPositionAsc": "De cima", "Common.Views.Comments.mniPositionDesc": "Do fundo", "Common.Views.Comments.textAdd": "Adicionar", "Common.Views.Comments.textAddComment": "Adicionar Comentário", "Common.Views.Comments.textAddCommentToDoc": "Adicionar comentário ao documento", "Common.Views.Comments.textAddReply": "Adicionar resposta", + "Common.Views.Comments.textAll": "Tudo", "Common.Views.Comments.textAnonym": "Visitante", "Common.Views.Comments.textCancel": "Cancelar", "Common.Views.Comments.textClose": "Fechar", @@ -197,6 +201,7 @@ "Common.Views.Comments.textResolve": "Resolver", "Common.Views.Comments.textResolved": "Resolvido", "Common.Views.Comments.textSort": "Ordenar comentários", + "Common.Views.Comments.textViewResolved": "Não tem permissão para reabrir comentários", "Common.Views.CopyWarningDialog.textDontShow": "Não exibir esta mensagem novamente", "Common.Views.CopyWarningDialog.textMsg": "As ações copiar, cortar e colar usando os botões da barra de ferramentas do editor e as ações de menu de contexto serão realizadas apenas nesta aba do editor.

Para copiar ou colar para ou de aplicativos externos a aba do editor, use as seguintes combinações do teclado:", "Common.Views.CopyWarningDialog.textTitle": "Ações copiar, cortar e colar", @@ -364,6 +369,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Abra novamente", "Common.Views.ReviewPopover.textReply": "Responder", "Common.Views.ReviewPopover.textResolve": "Resolver", + "Common.Views.ReviewPopover.textViewResolved": "Não tem permissão para reabrir comentários", "Common.Views.ReviewPopover.txtDeleteTip": "Excluir", "Common.Views.ReviewPopover.txtEditTip": "Editar", "Common.Views.SaveAsDlg.textLoading": "Carregando", @@ -474,6 +480,7 @@ "SSE.Controllers.DocumentHolder.txtAddVer": "Adicionar linha vertical", "SSE.Controllers.DocumentHolder.txtAlignToChar": "Alinhar ao caractere", "SSE.Controllers.DocumentHolder.txtAll": "(Todos)", + "SSE.Controllers.DocumentHolder.txtAllTableHint": "Retorna todo o conteúdo da tabela ou colunas especificadas da tabela, incluindo cabeçalhos de coluna, dados e linhas totais", "SSE.Controllers.DocumentHolder.txtAnd": "e", "SSE.Controllers.DocumentHolder.txtBegins": "Começa com", "SSE.Controllers.DocumentHolder.txtBelowAve": "Abaixo da média", @@ -483,6 +490,7 @@ "SSE.Controllers.DocumentHolder.txtColumn": "Coluna", "SSE.Controllers.DocumentHolder.txtColumnAlign": "Alinhamento de colunas", "SSE.Controllers.DocumentHolder.txtContains": "Contém", + "SSE.Controllers.DocumentHolder.txtDataTableHint": "Retorna as células de dados da tabela ou colunas de tabela especificadas", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Diminuir tamanho de argumento", "SSE.Controllers.DocumentHolder.txtDeleteArg": "Excluir argumento", "SSE.Controllers.DocumentHolder.txtDeleteBreak": "Excluir quebra manual", @@ -506,6 +514,7 @@ "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Maior que ou igual a", "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Caractere sobre texto", "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Caractere sob texto", + "SSE.Controllers.DocumentHolder.txtHeadersTableHint": "Devolve os cabeçalhos das colunas para a tabela ou colunas de tabela especificadas", "SSE.Controllers.DocumentHolder.txtHeight": "Altura", "SSE.Controllers.DocumentHolder.txtHideBottom": "Ocultar borda inferior", "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "Ocultar limite inferior", @@ -584,7 +593,9 @@ "SSE.Controllers.DocumentHolder.txtSorting": "Classificação", "SSE.Controllers.DocumentHolder.txtSortSelected": "Classificar selecionado", "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Esticar colchetes", + "SSE.Controllers.DocumentHolder.txtThisRowHint": "Escolha apenas esta linha da coluna especificada", "SSE.Controllers.DocumentHolder.txtTop": "Parte superior", + "SSE.Controllers.DocumentHolder.txtTotalsTableHint": "Devolve o total de linhas para a tabela ou colunas de tabela especificadas", "SSE.Controllers.DocumentHolder.txtUnderbar": "Barra abaixo de texto", "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Desfazer expansão automática da tabela", "SSE.Controllers.DocumentHolder.txtUseTextImport": "Usar assistente de importação de texto", @@ -639,6 +650,7 @@ "SSE.Controllers.Main.errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
Please unhide the filtered elements and try again.", "SSE.Controllers.Main.errorBadImageUrl": "URL de imagem está incorreta", "SSE.Controllers.Main.errorCannotUngroup": "Não é possível desagrupar. Para iniciar um esboço, selecione as linhas ou colunas detalhadas e agrupe-as.", + "SSE.Controllers.Main.errorCannotUseCommandProtectedSheet": "Você não pode usar este comando em uma planilha protegida. Para usar este comando, desproteja a planilha.
Você pode ser solicitado a inserir uma senha.", "SSE.Controllers.Main.errorChangeArray": "Você não pode alterar parte de uma matriz.", "SSE.Controllers.Main.errorChangeFilteredRange": "Isso mudará um intervalo filtrado em sua planilha.
Para concluir esta tarefa, remova os Filtros automáticos.", "SSE.Controllers.Main.errorChangeOnProtectedSheet": "A célula ou gráfico que você está tentando alterar está em uma página protegida.
Para fazer uma alteração, desproteja a página. Você pode ser solicitado a inserir uma senha.", @@ -769,6 +781,7 @@ "SSE.Controllers.Main.textNoLicenseTitle": "Limite de licença atingido", "SSE.Controllers.Main.textPaidFeature": "Recurso pago", "SSE.Controllers.Main.textPleaseWait": "A operação pode demorar mais tempo do que o esperado. Aguarde...", + "SSE.Controllers.Main.textReconnect": "A conexão é restaurada", "SSE.Controllers.Main.textRemember": "Lembrar da minha escolha para todos os arquivos. ", "SSE.Controllers.Main.textRenameError": "O nome de usuário não pode estar vazio.", "SSE.Controllers.Main.textRenameLabel": "Insira um nome a ser usado para colaboração", @@ -1060,6 +1073,7 @@ "SSE.Controllers.Statusbar.errorLastSheet": "Pasta de trabalho deve ter no mínimo uma planilha visível.", "SSE.Controllers.Statusbar.errorRemoveSheet": "Não é possível excluir uma planilha.", "SSE.Controllers.Statusbar.strSheet": "Folha", + "SSE.Controllers.Statusbar.textDisconnect": "A conexão foi perdida
Tentando conectar. Verifique as configurações de conexão.", "SSE.Controllers.Statusbar.textSheetViewTip": "Você está no modo Visualização da folha. Filtros e classificação são visíveis apenas para você e para aqueles que ainda estão nesta exibição.", "SSE.Controllers.Statusbar.textSheetViewTipFilters": "Você está no modo Folha De exibição. Os filtros são visíveis apenas para você e para aqueles que ainda estão nesta visão.", "SSE.Controllers.Statusbar.warnDeleteSheet": "A planilha deve conter dados. Você tem certeza de que deseja continuar?", @@ -1085,6 +1099,7 @@ "SSE.Controllers.Toolbar.textPivot": "Tabela Dinâmica", "SSE.Controllers.Toolbar.textRadical": "Radicais", "SSE.Controllers.Toolbar.textRating": "Classificações", + "SSE.Controllers.Toolbar.textRecentlyUsed": "Usado recentemente", "SSE.Controllers.Toolbar.textScript": "Scripts", "SSE.Controllers.Toolbar.textShapes": "Formas", "SSE.Controllers.Toolbar.textSymbols": "Símbolos", @@ -1426,7 +1441,9 @@ "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Separador decimal", "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Separador de milhares", "SSE.Views.AdvancedSeparatorDialog.textLabel": "Configurações usadas para reconhecer dados numéricos", + "SSE.Views.AdvancedSeparatorDialog.textQualifier": "Qualificador de texto", "SSE.Views.AdvancedSeparatorDialog.textTitle": "Configurações avançadas", + "SSE.Views.AdvancedSeparatorDialog.txtNone": "(nenhum)", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Personalizar filtro", "SSE.Views.AutoFilterDialog.textAddSelection": "Adicionar seleção atual para filtrar", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Brancos}", @@ -1872,6 +1889,7 @@ "SSE.Views.DocumentHolder.textCrop": "Cortar", "SSE.Views.DocumentHolder.textCropFill": "Preencher", "SSE.Views.DocumentHolder.textCropFit": "Ajustar", + "SSE.Views.DocumentHolder.textEditPoints": "Editar Pontos", "SSE.Views.DocumentHolder.textEntriesList": "Selecionar da lista suspensa", "SSE.Views.DocumentHolder.textFlipH": "Virar horizontalmente", "SSE.Views.DocumentHolder.textFlipV": "Virar verticalmente", @@ -2241,6 +2259,7 @@ "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Editar regra de formatação", "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Nova regra de formatação", "SSE.Views.FormatRulesManagerDlg.guestText": "Convidado(a)", + "SSE.Views.FormatRulesManagerDlg.lockText": "Bloqueado", "SSE.Views.FormatRulesManagerDlg.text1Above": "1 desvio padrão acima da Média", "SSE.Views.FormatRulesManagerDlg.text1Below": "1 desvio padrão abaixo da Média", "SSE.Views.FormatRulesManagerDlg.text2Above": "2 desvios padrão acima da Média", @@ -2402,6 +2421,7 @@ "SSE.Views.ImageSettings.textCrop": "Cortar", "SSE.Views.ImageSettings.textCropFill": "Preencher", "SSE.Views.ImageSettings.textCropFit": "Ajustar", + "SSE.Views.ImageSettings.textCropToShape": "Cortar para dar forma", "SSE.Views.ImageSettings.textEdit": "Editar", "SSE.Views.ImageSettings.textEditObject": "Editar objeto", "SSE.Views.ImageSettings.textFlip": "Girar", @@ -2416,6 +2436,7 @@ "SSE.Views.ImageSettings.textInsert": "Substituir imagem", "SSE.Views.ImageSettings.textKeepRatio": "Proporções constantes", "SSE.Views.ImageSettings.textOriginalSize": "Tamanho padrão", + "SSE.Views.ImageSettings.textRecentlyUsed": "Usado recentemente", "SSE.Views.ImageSettings.textRotate90": "Girar 90°", "SSE.Views.ImageSettings.textRotation": "Rotação", "SSE.Views.ImageSettings.textSize": "Tamanho", @@ -2493,6 +2514,7 @@ "SSE.Views.NamedRangePasteDlg.txtTitle": "Paste Name", "SSE.Views.NameManagerDlg.closeButtonText": "Close", "SSE.Views.NameManagerDlg.guestText": "Guest", + "SSE.Views.NameManagerDlg.lockText": "Bloqueado", "SSE.Views.NameManagerDlg.textDataRange": "Data Range", "SSE.Views.NameManagerDlg.textDelete": "Delete", "SSE.Views.NameManagerDlg.textEdit": "Edit", @@ -2724,6 +2746,43 @@ "SSE.Views.PrintTitlesDialog.textSelectRange": "Selecionar intervalo", "SSE.Views.PrintTitlesDialog.textTitle": "Imprimir títulos", "SSE.Views.PrintTitlesDialog.textTop": "Repita as linhas no topo", + "SSE.Views.PrintWithPreview.txtActualSize": "Tamanho atual", + "SSE.Views.PrintWithPreview.txtAllSheets": "Todas as planilhas", + "SSE.Views.PrintWithPreview.txtApplyToAllSheets": "Aplicar a todas as planilhas", + "SSE.Views.PrintWithPreview.txtBottom": "Inferior", + "SSE.Views.PrintWithPreview.txtCurrentSheet": "Folha atual", + "SSE.Views.PrintWithPreview.txtCustom": "Personalizar", + "SSE.Views.PrintWithPreview.txtCustomOptions": "Opções personalizadas", + "SSE.Views.PrintWithPreview.txtFitCols": "Ajustar todas as colunas em uma página", + "SSE.Views.PrintWithPreview.txtFitPage": "Ajustar folha em uma página", + "SSE.Views.PrintWithPreview.txtFitRows": "Ajustar todas as linhas em uma página", + "SSE.Views.PrintWithPreview.txtGridlinesAndHeadings": "Linhas de grade e títulos", + "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Configurações de Cabeçalho/Rodapé", + "SSE.Views.PrintWithPreview.txtIgnore": "Ignorar área de impressão", + "SSE.Views.PrintWithPreview.txtLandscape": "Paisagem", + "SSE.Views.PrintWithPreview.txtLeft": "Esquerda", + "SSE.Views.PrintWithPreview.txtMargins": "Margens", + "SSE.Views.PrintWithPreview.txtOf": "de {0}", + "SSE.Views.PrintWithPreview.txtPage": "Página", + "SSE.Views.PrintWithPreview.txtPageNumInvalid": "Número da página inválido", + "SSE.Views.PrintWithPreview.txtPageOrientation": "Orientação da página", + "SSE.Views.PrintWithPreview.txtPageSize": "Tamanho da página", + "SSE.Views.PrintWithPreview.txtPortrait": "Retrato ", + "SSE.Views.PrintWithPreview.txtPrint": "Imprimir", + "SSE.Views.PrintWithPreview.txtPrintGrid": "Imprimir linhas de grade", + "SSE.Views.PrintWithPreview.txtPrintHeadings": "Imprimir títulos de linhas e colunas", + "SSE.Views.PrintWithPreview.txtPrintRange": "Imprimir intervalo", + "SSE.Views.PrintWithPreview.txtPrintTitles": "Imprimir títulos", + "SSE.Views.PrintWithPreview.txtRepeat": "Repetir...", + "SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft": "Repita as colunas à esquerda", + "SSE.Views.PrintWithPreview.txtRepeatRowsAtTop": "Repita as linhas no topo", + "SSE.Views.PrintWithPreview.txtRight": "Direita", + "SSE.Views.PrintWithPreview.txtSave": "Salvar", + "SSE.Views.PrintWithPreview.txtScaling": "Dimensionar", + "SSE.Views.PrintWithPreview.txtSelection": "Seleção", + "SSE.Views.PrintWithPreview.txtSettingsOfSheet": "Configurações da planilha", + "SSE.Views.PrintWithPreview.txtSheet": "Planilha: {0}", + "SSE.Views.PrintWithPreview.txtTop": "Parte superior", "SSE.Views.ProtectDialog.textExistName": "ERRO! Já existe um intervalo com esse título", "SSE.Views.ProtectDialog.textInvalidName": "O título do intervalo deve começar com uma letra e pode conter apenas letras, números e espaços.", "SSE.Views.ProtectDialog.textInvalidRange": "ERRO! Intervalo de células inválido", @@ -2758,6 +2817,7 @@ "SSE.Views.ProtectDialog.txtWBDescription": "Para evitar que outros usuários vejam planilhas ocultas, adicionando, movendo, excluindo ou ocultando planilhas e renomeando planilhas, você pode proteger a estrutura de sua pasta de trabalho com uma senha.", "SSE.Views.ProtectDialog.txtWBTitle": "Proteger a estrutura da pasta de trabalho", "SSE.Views.ProtectRangesDlg.guestText": "Convidado(a)", + "SSE.Views.ProtectRangesDlg.lockText": "Bloqueado", "SSE.Views.ProtectRangesDlg.textDelete": "Excluir", "SSE.Views.ProtectRangesDlg.textEdit": "Editar", "SSE.Views.ProtectRangesDlg.textEmpty": "Nenhum intervalo permitido para edição.", @@ -2837,6 +2897,7 @@ "SSE.Views.ShapeSettings.textPatternFill": "Padrão", "SSE.Views.ShapeSettings.textPosition": "Posição", "SSE.Views.ShapeSettings.textRadial": "Radial", + "SSE.Views.ShapeSettings.textRecentlyUsed": "Usado recentemente", "SSE.Views.ShapeSettings.textRotate90": "Girar 90°", "SSE.Views.ShapeSettings.textRotation": "Rotação", "SSE.Views.ShapeSettings.textSelectImage": "Selecionar imagem", @@ -3098,6 +3159,7 @@ "SSE.Views.Statusbar.tipAddTab": "Adicionar planilha", "SSE.Views.Statusbar.tipFirst": "Deslizar para primeira folha", "SSE.Views.Statusbar.tipLast": "Deslizar para última folha", + "SSE.Views.Statusbar.tipListOfSheets": "Lista de planilhas", "SSE.Views.Statusbar.tipNext": "Deslizar lista de folha direita", "SSE.Views.Statusbar.tipPrev": "Deslizar lista de folha esquerda", "SSE.Views.Statusbar.tipZoomFactor": "Zoom", @@ -3286,6 +3348,8 @@ "SSE.Views.Toolbar.textPageMarginsCustom": "Margens personalizadas", "SSE.Views.Toolbar.textPortrait": "Retrato", "SSE.Views.Toolbar.textPrint": "Imprimir", + "SSE.Views.Toolbar.textPrintGridlines": "Imprimir linhas de grade", + "SSE.Views.Toolbar.textPrintHeadings": "Cabeçalhos de impressão", "SSE.Views.Toolbar.textPrintOptions": "Configurações de impressão", "SSE.Views.Toolbar.textRight": "Direito: ", "SSE.Views.Toolbar.textRightBorders": "Bordas direitas", @@ -3365,6 +3429,7 @@ "SSE.Views.Toolbar.tipInsertText": "Inserir caixa de texto", "SSE.Views.Toolbar.tipInsertTextart": "Inserir arte de texto", "SSE.Views.Toolbar.tipMerge": "Mesclar e centralizar", + "SSE.Views.Toolbar.tipNone": "Nenhum", "SSE.Views.Toolbar.tipNumFormat": "Formato de número", "SSE.Views.Toolbar.tipPageMargins": "Margens da página", "SSE.Views.Toolbar.tipPageOrient": "Orientação da página", @@ -3493,6 +3558,7 @@ "SSE.Views.ValueFieldSettingsDialog.txtVarp": "Varp", "SSE.Views.ViewManagerDlg.closeButtonText": "Fechar", "SSE.Views.ViewManagerDlg.guestText": "Convidado", + "SSE.Views.ViewManagerDlg.lockText": "Bloqueado", "SSE.Views.ViewManagerDlg.textDelete": "Excluir", "SSE.Views.ViewManagerDlg.textDuplicate": "Duplicado", "SSE.Views.ViewManagerDlg.textEmpty": "Nenhuma vista foi criada ainda.", @@ -3508,7 +3574,9 @@ "SSE.Views.ViewManagerDlg.warnDeleteView": "Você está tentando excluir o modo de exibição atualmente ativado '%1'.
Fechar este modo de exibição e excluí-lo?", "SSE.Views.ViewTab.capBtnFreeze": "Congelar painéis", "SSE.Views.ViewTab.capBtnSheetView": "Visualização de folha", + "SSE.Views.ViewTab.textAlwaysShowToolbar": "Sempre mostrar a barra de ferramentas", "SSE.Views.ViewTab.textClose": "Fechar", + "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "Ocultar barra de status", "SSE.Views.ViewTab.textCreate": "Novo", "SSE.Views.ViewTab.textDefault": "Padrão", "SSE.Views.ViewTab.textFormula": "Barra de fórmula", @@ -3516,7 +3584,9 @@ "SSE.Views.ViewTab.textFreezeRow": "Congelar linha superior", "SSE.Views.ViewTab.textGridlines": "Linhas de grade", "SSE.Views.ViewTab.textHeadings": "Títulos", + "SSE.Views.ViewTab.textInterfaceTheme": "Tema de interface", "SSE.Views.ViewTab.textManager": "Gerenciamento de visualização", + "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Mostrar sombra dos painéis congelados", "SSE.Views.ViewTab.textUnFreeze": "Descongelar Painéis", "SSE.Views.ViewTab.textZeros": "Mostrar zeros", "SSE.Views.ViewTab.textZoom": "Zoom", diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json index 2efc4bce7..9a05dd48c 100644 --- a/apps/spreadsheeteditor/main/locale/ru.json +++ b/apps/spreadsheeteditor/main/locale/ru.json @@ -1087,6 +1087,7 @@ "SSE.Controllers.Toolbar.textPivot": "Сводная таблица", "SSE.Controllers.Toolbar.textRadical": "Радикалы", "SSE.Controllers.Toolbar.textRating": "Оценки", + "SSE.Controllers.Toolbar.textRecentlyUsed": "Последние использованные", "SSE.Controllers.Toolbar.textScript": "Индексы", "SSE.Controllers.Toolbar.textShapes": "Фигуры", "SSE.Controllers.Toolbar.textSymbols": "Символы", @@ -1429,6 +1430,7 @@ "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Разделитель разрядов тысяч", "SSE.Views.AdvancedSeparatorDialog.textLabel": "Настройка определения числовых данных", "SSE.Views.AdvancedSeparatorDialog.textTitle": "Дополнительные параметры", + "SSE.Views.AdvancedSeparatorDialog.txtNone": "(нет)", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Пользовательский", "SSE.Views.AutoFilterDialog.textAddSelection": "Добавить выделенный фрагмент в фильтр", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Пустые}", @@ -2418,6 +2420,7 @@ "SSE.Views.ImageSettings.textInsert": "Заменить изображение", "SSE.Views.ImageSettings.textKeepRatio": "Сохранять пропорции", "SSE.Views.ImageSettings.textOriginalSize": "Реальный размер", + "SSE.Views.ImageSettings.textRecentlyUsed": "Последние использованные", "SSE.Views.ImageSettings.textRotate90": "Повернуть на 90°", "SSE.Views.ImageSettings.textRotation": "Поворот", "SSE.Views.ImageSettings.textSize": "Размер", @@ -2726,6 +2729,23 @@ "SSE.Views.PrintTitlesDialog.textSelectRange": "Выбор диапазона", "SSE.Views.PrintTitlesDialog.textTitle": "Печатать заголовки", "SSE.Views.PrintTitlesDialog.textTop": "Повторять строки сверху", + "SSE.Views.PrintWithPreview.txtActualSize": "Реальный размер", + "SSE.Views.PrintWithPreview.txtAllSheets": "Все листы", + "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Параметры верхнего и нижнего колонтитулов", + "SSE.Views.PrintWithPreview.txtIgnore": "Игнорировать область печати", + "SSE.Views.PrintWithPreview.txtLandscape": "Альбомная", + "SSE.Views.PrintWithPreview.txtMargins": "Поля", + "SSE.Views.PrintWithPreview.txtPageOrientation": "Ориентация страницы", + "SSE.Views.PrintWithPreview.txtPageSize": "Размер страницы", + "SSE.Views.PrintWithPreview.txtPortrait": "Книжная", + "SSE.Views.PrintWithPreview.txtPrintGrid": "Печать сетки", + "SSE.Views.PrintWithPreview.txtPrintRange": "Диапазон печати", + "SSE.Views.PrintWithPreview.txtPrintTitles": "Печатать заголовки", + "SSE.Views.PrintWithPreview.txtRepeat": "Повторять...", + "SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft": "Повторять столбцы слева", + "SSE.Views.PrintWithPreview.txtRepeatRowsAtTop": "Повторять строки сверху", + "SSE.Views.PrintWithPreview.txtSave": "Сохранить", + "SSE.Views.PrintWithPreview.txtScaling": "Масштаб", "SSE.Views.ProtectDialog.textExistName": "ОШИБКА! Диапазон с таким названием уже существует", "SSE.Views.ProtectDialog.textInvalidName": "Название диапазона должно начинаться с буквы и может содержать только буквы, цифры и пробелы.", "SSE.Views.ProtectDialog.textInvalidRange": "ОШИБКА! Недопустимый диапазон ячеек", @@ -2839,6 +2859,7 @@ "SSE.Views.ShapeSettings.textPatternFill": "Узор", "SSE.Views.ShapeSettings.textPosition": "Положение", "SSE.Views.ShapeSettings.textRadial": "Радиальный", + "SSE.Views.ShapeSettings.textRecentlyUsed": "Последние использованные", "SSE.Views.ShapeSettings.textRotate90": "Повернуть на 90°", "SSE.Views.ShapeSettings.textRotation": "Поворот", "SSE.Views.ShapeSettings.textSelectImage": "Выбрать изображение", @@ -3288,6 +3309,8 @@ "SSE.Views.Toolbar.textPageMarginsCustom": "Настраиваемые поля", "SSE.Views.Toolbar.textPortrait": "Книжная", "SSE.Views.Toolbar.textPrint": "Печать", + "SSE.Views.Toolbar.textPrintGridlines": "Печать сетки", + "SSE.Views.Toolbar.textPrintHeadings": "Печать заголовков", "SSE.Views.Toolbar.textPrintOptions": "Параметры печати", "SSE.Views.Toolbar.textRight": "Правое: ", "SSE.Views.Toolbar.textRightBorders": "Правые границы", @@ -3511,6 +3534,7 @@ "SSE.Views.ViewTab.capBtnFreeze": "Закрепить области", "SSE.Views.ViewTab.capBtnSheetView": "Представление листа", "SSE.Views.ViewTab.textClose": "Закрыть", + "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "Объединить строки листов и состояния", "SSE.Views.ViewTab.textCreate": "Новое", "SSE.Views.ViewTab.textDefault": "По умолчанию", "SSE.Views.ViewTab.textFormula": "Строка формул", @@ -3518,7 +3542,9 @@ "SSE.Views.ViewTab.textFreezeRow": "Закрепить верхнюю строку", "SSE.Views.ViewTab.textGridlines": "Линии сетки", "SSE.Views.ViewTab.textHeadings": "Заголовки", + "SSE.Views.ViewTab.textInterfaceTheme": "Тема интерфейса", "SSE.Views.ViewTab.textManager": "Диспетчер представлений", + "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Показывать тень для закрепленных областей", "SSE.Views.ViewTab.textUnFreeze": "Снять закрепление областей", "SSE.Views.ViewTab.textZeros": "Отображать нули", "SSE.Views.ViewTab.textZoom": "Масштаб", diff --git a/apps/spreadsheeteditor/main/locale/tr.json b/apps/spreadsheeteditor/main/locale/tr.json index 37156bdb1..0ba7e42ed 100644 --- a/apps/spreadsheeteditor/main/locale/tr.json +++ b/apps/spreadsheeteditor/main/locale/tr.json @@ -1054,6 +1054,7 @@ "SSE.Controllers.Statusbar.errorLastSheet": "Not defterinde en az bir görünür çalışma tablosu olmalıdır.", "SSE.Controllers.Statusbar.errorRemoveSheet": "Çalışma tablosu silinemiyor.", "SSE.Controllers.Statusbar.strSheet": "Sayfa", + "SSE.Controllers.Statusbar.textDisconnect": "Bağlantı kesildi
Bağlanmayı deneyin. Lütfen bağlantı ayarlarını kontrol edin.", "SSE.Controllers.Statusbar.textSheetViewTip": "Sayfa Görünümü modundasınız. Filtreleri ve sıralamayı yalnızca siz ve hâlâ bu görünümde olanlar görebilir.", "SSE.Controllers.Statusbar.textSheetViewTipFilters": "Sayfa Görünümü modundasınız. Filtreleri yalnızca siz ve hâlâ bu görünümde olanlar görebilir.", "SSE.Controllers.Statusbar.warnDeleteSheet": "Seçilen çalışma sayfaları veri içerebilir. Devam etmek istediğinizden emin misiniz?", @@ -1421,6 +1422,7 @@ "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Binlik ayırıcı", "SSE.Views.AdvancedSeparatorDialog.textLabel": "Sayısal verileri tanımak için kullanılan ayarlar", "SSE.Views.AdvancedSeparatorDialog.textTitle": "Gelişmiş Ayarlar", + "SSE.Views.AdvancedSeparatorDialog.txtNone": "(hiçbiri)", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Özel Filtre", "SSE.Views.AutoFilterDialog.textAddSelection": "Seçimi filtreye ekle", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Boşluklar}", @@ -2713,6 +2715,7 @@ "SSE.Views.PrintTitlesDialog.textSelectRange": "Aralık seçin", "SSE.Views.PrintTitlesDialog.textTitle": "Başlıkları yazdır", "SSE.Views.PrintTitlesDialog.textTop": "Üstteki satırları tekrarlayın", + "SSE.Views.PrintWithPreview.txtActualSize": "Gerçek Boyut", "SSE.Views.ProtectDialog.textExistName": "HATA! Böyle bir başlığa sahip aralık zaten var", "SSE.Views.ProtectDialog.textInvalidName": "Aralık başlığı bir harfle başlamalı ve yalnızca harf, sayı ve boşluk içerebilir.", "SSE.Views.ProtectDialog.textInvalidRange": "HATA! Geçersiz hücre aralığı", diff --git a/apps/spreadsheeteditor/main/locale/uk.json b/apps/spreadsheeteditor/main/locale/uk.json index 3c4a936b8..d4d422608 100644 --- a/apps/spreadsheeteditor/main/locale/uk.json +++ b/apps/spreadsheeteditor/main/locale/uk.json @@ -3,17 +3,47 @@ "Common.Controllers.Chat.notcriticalErrorTitle": "Застереження", "Common.Controllers.Chat.textEnterMessage": "ВВедіть своє повідомлення тут", "Common.define.chartData.textArea": "Площа", + "Common.define.chartData.textAreaStackedPer": "Нормована з областями та накопиченням", "Common.define.chartData.textBar": "Вставити", + "Common.define.chartData.textBarNormal3d": "Тривимірна гістограма з групуванням", + "Common.define.chartData.textBarNormal3dPerspective": "Тривимірна гістограма", + "Common.define.chartData.textBarStacked3d": "Тривимірна гістограма з накопиченням", + "Common.define.chartData.textBarStackedPer": "Нормована гістограма з накопиченням", + "Common.define.chartData.textBarStackedPer3d": "Тривимірна нормована гістограма з накопиченням", "Common.define.chartData.textColumn": "Колона", "Common.define.chartData.textColumnSpark": "Колона", + "Common.define.chartData.textHBarNormal3d": "Тривимірна лінійчата з групуванням", + "Common.define.chartData.textHBarStacked3d": "Тривимірна лінійчата з накопиченням", + "Common.define.chartData.textHBarStackedPer": "Нормована лінійчата з накопиченням", + "Common.define.chartData.textHBarStackedPer3d": "Тривимірна нормована лінійчата з накопиченням", "Common.define.chartData.textLine": "Лінія", + "Common.define.chartData.textLine3d": "Тривимірний графік", "Common.define.chartData.textLineSpark": "Лінія", + "Common.define.chartData.textLineStackedPer": "Нормований графік з накопиченням", + "Common.define.chartData.textLineStackedPerMarker": "Нормований графік з маркерами та накопиченням", "Common.define.chartData.textPie": "Пиріг", + "Common.define.chartData.textPie3d": "Тривимірна кругова діаграма", "Common.define.chartData.textPoint": "XY (розсіювання)", "Common.define.chartData.textSparks": "Міні-діграми", "Common.define.chartData.textStock": "Запас", "Common.define.chartData.textSurface": "Поверхня", "Common.define.chartData.textWinLossSpark": "Win / Loss", + "Common.define.conditionalData.exampleText": "АаВвБбЯя", + "Common.define.conditionalData.text1Above": "На 1 стандартне відхилення вище", + "Common.define.conditionalData.text1Below": "На 1 стандартне відхилення нижче", + "Common.define.conditionalData.text2Above": "На 2 стандартні відхилення вище", + "Common.define.conditionalData.text2Below": "На 2 стандартні відхилення нижче", + "Common.define.conditionalData.text3Above": "На 3 стандартні відхилення вище", + "Common.define.conditionalData.text3Below": "На 3 стандартні відхилення нижче", + "Common.define.conditionalData.textAbove": "Вище", + "Common.define.conditionalData.textAverage": "Середнє", + "Common.define.conditionalData.textBegins": "Починається з", + "Common.define.conditionalData.textBelow": "Нижче", + "Common.define.conditionalData.textBetween": "Між", + "Common.define.conditionalData.textBlank": "Пуста клітинка", + "Common.define.conditionalData.textBottom": "Найменше", + "Common.UI.ButtonColored.textAutoColor": "Автоматичний", + "Common.UI.ButtonColored.textNewColor": "Користувальницький колір", "Common.UI.ComboBorderSize.txtNoBorders": "Немає кордонів", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Немає кордонів", "Common.UI.ComboDataView.emptyComboText": "Немає стилів", @@ -56,7 +86,16 @@ "Common.Views.About.txtPoweredBy": "Під керуванням", "Common.Views.About.txtTel": "Тел.:", "Common.Views.About.txtVersion": "Версія", + "Common.Views.AutoCorrectDialog.textAdd": "Додати", + "Common.Views.AutoCorrectDialog.textApplyAsWork": "Виконувати під час роботи", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Автозаміна", + "Common.Views.AutoCorrectDialog.textAutoFormat": "Автоформат під час введення", + "Common.Views.AutoCorrectDialog.textTitle": "Автозаміна", + "Common.Views.AutoCorrectDialog.textWarnResetRec": "Всі додані вирази будуть видалені, а видалені - відновлені. Ви хочете продовжити?", + "Common.Views.AutoCorrectDialog.warnReset": "Будь-які додані вами автозаміни будуть видалені, а змінені будуть відновлені до початкових. Бажаєте продовжити?", "Common.Views.Chat.textSend": "Надіслати", + "Common.Views.Comments.mniAuthorAsc": "За автором від А до Я", + "Common.Views.Comments.mniAuthorDesc": "За автором від Я до А", "Common.Views.Comments.textAdd": "Додати", "Common.Views.Comments.textAddComment": "Добавити коментар", "Common.Views.Comments.textAddCommentToDoc": "Додати коментар до документа", @@ -81,6 +120,7 @@ "Common.Views.DocumentAccessDialog.textLoading": "Завантаження...", "Common.Views.DocumentAccessDialog.textTitle": "Налаштування спільного доступу", "Common.Views.Header.labelCoUsersDescr": "В даний час документ редагується кількома користувачами.", + "Common.Views.Header.textAdvSettings": "Додаткові параметри", "Common.Views.Header.textBack": "Перейти до документів", "Common.Views.Header.textCompactView": "Сховати панель інструментів", "Common.Views.Header.textSaveBegin": "Збереження ...", @@ -98,6 +138,8 @@ "Common.Views.ImageFromUrlDialog.textUrl": "Вставити URL зображення:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Це поле є обов'язковим", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com\"", + "Common.Views.ListSettingsDialog.txtOfText": "% тексту", + "Common.Views.OpenDialog.txtAdvanced": "Додатково", "Common.Views.OpenDialog.txtDelimiter": "Розділювач", "Common.Views.OpenDialog.txtEncoding": "Кодування", "Common.Views.OpenDialog.txtOpenFile": "Введіть пароль для відкриття файлу", @@ -114,12 +156,31 @@ "Common.Views.Plugins.textLoading": "Завантаження", "Common.Views.Plugins.textStart": "Початок", "Common.Views.Plugins.textStop": "Зупинитись", + "Common.Views.Protection.hintSignature": "Додати цифровий підпис або рядок підпису", + "Common.Views.Protection.txtAddPwd": "Додати пароль", + "Common.Views.Protection.txtInvisibleSignature": "Додати цифровий підпис", + "Common.Views.Protection.txtSignatureLine": "Додати рядок підпису", "Common.Views.RenameDialog.textName": "Ім'я файлу", "Common.Views.RenameDialog.txtInvalidName": "Ім'я файлу не може містити жодного з наступних символів:", + "Common.Views.ReviewChanges.tipAcceptCurrent": "Прийняти поточні зміни", + "Common.Views.ReviewChanges.txtAccept": "Прийняти", + "Common.Views.ReviewChanges.txtAcceptAll": "Прийняти усі зміни", + "Common.Views.ReviewChanges.txtAcceptChanges": "Прийняти зміни", + "Common.Views.ReviewChanges.txtAcceptCurrent": "Прийняти поточні зміни", "Common.Views.ReviewChanges.txtChat": "Чат", + "Common.Views.ReviewChanges.txtFinal": "Усі зміни прийняті (попередній перегляд)", "Common.Views.ReviewChanges.txtFinalCap": "Фінальний", + "Common.Views.ReviewChanges.txtMarkup": "Усі зміни (редагування)", "Common.Views.ReviewChanges.txtMarkupCap": "Зміни", + "Common.Views.ReviewChanges.txtOriginal": "Усі зміни відхилено (попередній перегляд)", "Common.Views.ReviewChanges.txtOriginalCap": "Початковий", + "Common.Views.ReviewPopover.textAdd": "Додати", + "Common.Views.ReviewPopover.textAddReply": "Додати відповідь", + "Common.Views.ReviewPopover.textMention": "+згадка надасть доступ до документа і відправить сповіщення поштою", + "Common.Views.ReviewPopover.textMentionNotify": "+згадка відправить користувачу сповіщення поштою", + "Common.Views.SignDialog.textBold": "Напівжирний", + "Common.Views.SignSettingsDialog.textAllowComment": "Дозволити підписанту додавати коментар у вікні підпису", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 пробілу", "SSE.Controllers.DocumentHolder.alignmentText": "Вирівнювання", "SSE.Controllers.DocumentHolder.centerText": "Центр", "SSE.Controllers.DocumentHolder.deleteColumnText": "Видалити колону", @@ -135,6 +196,7 @@ "SSE.Controllers.DocumentHolder.leftText": "Лівий", "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Застереження", "SSE.Controllers.DocumentHolder.rightText": "Право", + "SSE.Controllers.DocumentHolder.textAutoCorrectSettings": "Параметри автозаміни", "SSE.Controllers.DocumentHolder.textChangeColumnWidth": "Ширина стовпчика {0} символів ({1} пікселів)", "SSE.Controllers.DocumentHolder.textChangeRowHeight": "Висота рядка {0} балів ({1} пікселів)", "SSE.Controllers.DocumentHolder.textCtrlClick": "Клацніть на посилання, щоб перейти за ним, або клацніть та утримайте кнопку миші для вибору комірки.", @@ -142,6 +204,7 @@ "SSE.Controllers.DocumentHolder.textInsertTop": "Додати вище", "SSE.Controllers.DocumentHolder.textSym": "Символ", "SSE.Controllers.DocumentHolder.tipIsLocked": "Цей елемент редагує інший користувач.", + "SSE.Controllers.DocumentHolder.txtAboveAve": "Вище середнього", "SSE.Controllers.DocumentHolder.txtAddBottom": "Додати нижню межу", "SSE.Controllers.DocumentHolder.txtAddFractionBar": "Додати фракційну панель", "SSE.Controllers.DocumentHolder.txtAddHor": "Додати горизонтальну лінію", @@ -152,6 +215,11 @@ "SSE.Controllers.DocumentHolder.txtAddTop": "Додати верхню межу", "SSE.Controllers.DocumentHolder.txtAddVer": "Додати вертикальну лінію", "SSE.Controllers.DocumentHolder.txtAlignToChar": "Вирівняти до символу", + "SSE.Controllers.DocumentHolder.txtAll": "(Всі)", + "SSE.Controllers.DocumentHolder.txtAnd": "і", + "SSE.Controllers.DocumentHolder.txtBegins": "Починається з", + "SSE.Controllers.DocumentHolder.txtBelowAve": "Нижче середнього", + "SSE.Controllers.DocumentHolder.txtBlanks": "(Пусті)", "SSE.Controllers.DocumentHolder.txtBorderProps": "Прикордонні властивості", "SSE.Controllers.DocumentHolder.txtBottom": "Внизу", "SSE.Controllers.DocumentHolder.txtColumnAlign": "Вирівнювання колонки", @@ -165,6 +233,7 @@ "SSE.Controllers.DocumentHolder.txtDeleteRadical": "Видалити радикал", "SSE.Controllers.DocumentHolder.txtExpand": "Розгорнути та сортувати", "SSE.Controllers.DocumentHolder.txtExpandSort": "Дані після позначеного діапазону не буде впорядковано. Розширити вибір, щоб включити сусідні дані або продовжити впорядковування тільки щойно вибраних комірок?", + "SSE.Controllers.DocumentHolder.txtFilterBottom": "Найменші", "SSE.Controllers.DocumentHolder.txtFractionLinear": "Зміна до лінійної фракції", "SSE.Controllers.DocumentHolder.txtFractionSkewed": "Зміна перекошеної фракції", "SSE.Controllers.DocumentHolder.txtFractionStacked": "Зміна складеної фракції", @@ -238,6 +307,8 @@ "SSE.Controllers.DocumentHolder.txtTop": "Верх", "SSE.Controllers.DocumentHolder.txtUnderbar": "Риска після тексту", "SSE.Controllers.DocumentHolder.txtWidth": "Ширина", + "SSE.Controllers.FormulaDialog.sCategoryAll": "Всі", + "SSE.Controllers.FormulaDialog.sCategoryLast10": "Останні 10 використаних", "SSE.Controllers.LeftMenu.newDocumentTitle": "Електронна таблиця без нзви", "SSE.Controllers.LeftMenu.textByColumns": "За колонками", "SSE.Controllers.LeftMenu.textByRows": "За рядками", @@ -278,10 +349,13 @@ "SSE.Controllers.Main.errorDatabaseConnection": "Зовнішня помилка.
Помилка підключення до бази даних. Будь ласка, зв'яжіться зі службою підтримки, якщо помилка не зникне.", "SSE.Controllers.Main.errorDataRange": "Неправильний діапазон даних.", "SSE.Controllers.Main.errorDefaultMessage": "Код помилки: %1 ", + "SSE.Controllers.Main.errorEditingDownloadas": "Під час роботи з документом сталася помилка.
Використовуйте опцію 'Завантажити як...', щоб зберегти резервну копію файлу на жорсткий диск комп'ютера.", + "SSE.Controllers.Main.errorEditingSaveas": "Під час роботи з документом сталася помилка.
Використовуйте опцію 'Зберегти як...', щоб зберегти резервну копію файлу на жорсткий диск комп'ютера.", "SSE.Controllers.Main.errorFilePassProtect": "Документ захищений паролем і його неможливо відкрити.", "SSE.Controllers.Main.errorFileRequest": "Зовнішня помилка.
Помилка запиту файлу. Будь ласка, зв'яжіться зі службою підтримки, якщо помилка не зникне.", "SSE.Controllers.Main.errorFileVKey": "Зовнішня помилка.
Невірний ключ безпеки. Будь ласка, зв'яжіться зі службою підтримки, якщо помилка не зникне.", "SSE.Controllers.Main.errorFillRange": "Не вдалося заповнити вибраний діапазон комірок.
Усі об'єднані комірки повинні мати однаковий розмір.", + "SSE.Controllers.Main.errorForceSave": "Під час збереження файлу сталася помилка.
Використовуйте опцію 'Завантажити як...', щоб зберегти файл на жорсткий диск комп'ютера або спробуйте пізніше.", "SSE.Controllers.Main.errorFormulaName": "Помилка введеної формули.
Використовується невірна назва формули.", "SSE.Controllers.Main.errorFormulaParsing": "Внутрішня помилка при аналізі формули.", "SSE.Controllers.Main.errorFrmlWrongReferences": "Ця функція стосується аркуша, який не існує.
Будь ласка, перевірте дані та повторіть спробу.", @@ -296,6 +370,7 @@ "SSE.Controllers.Main.errorOpenWarning": "Довжина однієї з формул у файлі перевищила дозволену
кількість символів, і вона була вилучена.", "SSE.Controllers.Main.errorOperandExpected": "Синтаксис введеної функції невірний. Будь ласка, перевірте, чи відсутня одна з дужок - '(' або ')'.", "SSE.Controllers.Main.errorPasteMaxRange": "Область копіювання та вставки не збігається.
Будь ласка, виберіть область з таким самим розміром або натисніть першу комірку у рядку, щоб вставити скопійовані комірки.", + "SSE.Controllers.Main.errorPivotOverlap": "Не допускається перекриття звіту зведеної таблиці та таблиці.", "SSE.Controllers.Main.errorPrintMaxPagesCount": "На жаль, неможливо одночасно надрукувати більше 1500 сторінок у поточній версії програми.
Це обмеження буде видалено в майбутніх випусках.", "SSE.Controllers.Main.errorProcessSaveResult": "Помилка збереження", "SSE.Controllers.Main.errorServerVersion": "Версія редактора була оновлена. Сторінка буде перезавантажена, щоб застосувати зміни.", @@ -313,6 +388,7 @@ "SSE.Controllers.Main.errorWrongBracketsCount": "Помилка введеної формули.
Використовується неправильне число дужок .", "SSE.Controllers.Main.errorWrongOperator": "Помилка введеної формули. Використовується неправильний оператор.
Будь ласка, виправте помилку.", "SSE.Controllers.Main.leavePageText": "У вас є незбережені зміни в цій таблиці. Натисніть \"Залишитися на цій сторінці\", потім \"Зберегти\", щоб зберегти їх. Натисніть \"Покинути цю сторінку\", щоб відхилити всі незбережені зміни.", + "SSE.Controllers.Main.leavePageTextOnClose": "Всі незбережені зміни в цій електронній таблиці будуть втрачені.
Натисніть кнопку \"Скасувати\", а потім натисніть кнопку \"Зберегти\", щоб зберегти їх. Натисніть кнопку \"OK\", щоб скинути всі незбережені зміни.", "SSE.Controllers.Main.loadFontsTextText": "Завантаження дати...", "SSE.Controllers.Main.loadFontsTitleText": "Дата завантаження", "SSE.Controllers.Main.loadFontTextText": "Завантаження дати...", @@ -336,7 +412,9 @@ "SSE.Controllers.Main.saveTextText": "Збереження електронної таблиці...", "SSE.Controllers.Main.saveTitleText": "Збереження електронної таблиці", "SSE.Controllers.Main.textAnonymous": "Гість", + "SSE.Controllers.Main.textApplyAll": "Застосувати до всіх рівнянь", "SSE.Controllers.Main.textBuyNow": "Відвідати сайт", + "SSE.Controllers.Main.textChangesSaved": "Усі зміни збережено", "SSE.Controllers.Main.textCloseTip": "Натисніть, щоб закрити підказку", "SSE.Controllers.Main.textConfirm": "Підтвердження", "SSE.Controllers.Main.textContactUs": "Зв'язатися з відділом продажів", @@ -351,9 +429,12 @@ "SSE.Controllers.Main.titleLicenseExp": "Термін дії ліцензії закінчився", "SSE.Controllers.Main.titleServerVersion": "Редактор оновлено", "SSE.Controllers.Main.txtAccent": "Акцент", + "SSE.Controllers.Main.txtAll": "(Всі)", "SSE.Controllers.Main.txtArt": "Ваш текст тут", "SSE.Controllers.Main.txtBasicShapes": "Основні форми", + "SSE.Controllers.Main.txtBlank": "(пусто)", "SSE.Controllers.Main.txtButtons": "Кнопки", + "SSE.Controllers.Main.txtByField": "%1 з %2", "SSE.Controllers.Main.txtCallouts": "Виноски", "SSE.Controllers.Main.txtCharts": "Діаграми", "SSE.Controllers.Main.txtDiagramTitle": "Назва діграми", @@ -361,9 +442,30 @@ "SSE.Controllers.Main.txtFiguredArrows": "Фігурні стрілки", "SSE.Controllers.Main.txtLines": "Рядки", "SSE.Controllers.Main.txtMath": "Математика", + "SSE.Controllers.Main.txtOr": "%1 чи %2", "SSE.Controllers.Main.txtRectangles": "Прямокутники", "SSE.Controllers.Main.txtSeries": "Серії", + "SSE.Controllers.Main.txtShape_actionButtonBackPrevious": "Кнопка \"Назад\"", + "SSE.Controllers.Main.txtShape_actionButtonBeginning": "Кнопка \"На початок\"", + "SSE.Controllers.Main.txtShape_actionButtonBlank": "Пуста кнопка", + "SSE.Controllers.Main.txtShape_arc": "Дуга", + "SSE.Controllers.Main.txtShape_bentArrow": "Зігнута стрілка", + "SSE.Controllers.Main.txtShape_bentUpArrow": "Загнута стрілка вгору", + "SSE.Controllers.Main.txtShape_bevel": "Багетна рамка", + "SSE.Controllers.Main.txtShape_blockArc": "Арка", + "SSE.Controllers.Main.txtShape_lineWithArrow": "Стрілка", + "SSE.Controllers.Main.txtShape_noSmoking": "Заборонено", "SSE.Controllers.Main.txtShape_rect": "Прямокутник", + "SSE.Controllers.Main.txtShape_star10": "10-кінцева зірка", + "SSE.Controllers.Main.txtShape_star12": "12-кінцева зірка", + "SSE.Controllers.Main.txtShape_star16": "16-кінцева зірка", + "SSE.Controllers.Main.txtShape_star24": "24-кінцева зірка", + "SSE.Controllers.Main.txtShape_star32": "32-кінцева зірка", + "SSE.Controllers.Main.txtShape_star4": "4-кінцева зірка", + "SSE.Controllers.Main.txtShape_star5": "5-кінцева зірка", + "SSE.Controllers.Main.txtShape_star6": "6-кінцева зірка", + "SSE.Controllers.Main.txtShape_star7": "7-кінцева зірка", + "SSE.Controllers.Main.txtShape_star8": "8-кінцева зірка", "SSE.Controllers.Main.txtStarsRibbons": "Зірки та стрічки", "SSE.Controllers.Main.txtStyle_Bad": "Поганий", "SSE.Controllers.Main.txtStyle_Calculation": "Розрахунок", @@ -386,6 +488,7 @@ "SSE.Controllers.Main.txtStyle_Title": "Назва", "SSE.Controllers.Main.txtStyle_Total": "Загалом", "SSE.Controllers.Main.txtStyle_Warning_Text": "Текст попередження", + "SSE.Controllers.Main.txtUnlockRangeWarning": "Діапазон, який ви намагаєтесь змінити, захищений за допомогою пароля.", "SSE.Controllers.Main.txtXAxis": "X Ось", "SSE.Controllers.Main.txtYAxis": "Y ось", "SSE.Controllers.Main.unknownErrorText": "Невідома помилка.", @@ -751,6 +854,8 @@ "SSE.Controllers.Toolbar.warnLongOperation": "Операція, яку ви збираєтеся виконати, може зайняти досить багато часу.
Ви впевнені, що хочете продовжити?", "SSE.Controllers.Toolbar.warnMergeLostData": "Дані лише верхньої лівої комірки залишаться в об'єднаній комірці.
Продовжити?", "SSE.Controllers.Viewport.textFreezePanes": "Закріпити області", + "SSE.Views.AdvancedSeparatorDialog.textTitle": "Додаткові параметри", + "SSE.Views.AdvancedSeparatorDialog.txtNone": "(немає)", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Спеціальний фільтр", "SSE.Views.AutoFilterDialog.textAddSelection": "Додати поточний вибір для фільтрації", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Blanks}", @@ -794,6 +899,13 @@ "SSE.Views.CellRangeDialog.txtInvalidRange": "ПОМИЛКА! Недійсний діапазон комірок", "SSE.Views.CellRangeDialog.txtTitle": "Виберати діапазон даних", "SSE.Views.CellSettings.textAngle": "Нахил", + "SSE.Views.CellSettings.textBackColor": "Колір фону", + "SSE.Views.CellSettings.textBackground": "Колір фону", + "SSE.Views.CellSettings.textBorders": "Стиль меж", + "SSE.Views.CellSettings.tipAddGradientPoint": "Додати точку градієнта", + "SSE.Views.ChartDataDialog.textAdd": "Додати", + "SSE.Views.ChartDataRangeDialog.txtAxisLabel": "Діапазон підписів осі", + "SSE.Views.ChartDataRangeDialog.txtTitleCategory": "Підписи осі", "SSE.Views.ChartSettings.strLineWeight": "Line Weight", "SSE.Views.ChartSettings.strSparkColor": "Колір", "SSE.Views.ChartSettings.strTemplate": "Шаблон", @@ -931,6 +1043,12 @@ "SSE.Views.ChartSettingsDlg.txtEmpty": "Це поле є обов'язковим", "SSE.Views.CreatePivotDialog.textInvalidRange": "Недійсний діапазон комірок", "SSE.Views.DataTab.tipUngroup": "Зняти групування діапазону комірок", + "SSE.Views.DataValidationDialog.errorNamedRange": "Зазначений іменований діапазон не знайдено.", + "SSE.Views.DataValidationDialog.textAlert": "Сповіщення", + "SSE.Views.DataValidationDialog.textAllow": "Дозволити", + "SSE.Views.DataValidationDialog.textApply": "Поширити зміни на всі інші клітинки з тією ж умовою", + "SSE.Views.DataValidationDialog.txtAny": "Будь-яке значення", + "SSE.Views.DataValidationDialog.txtBetween": "між", "SSE.Views.DigitalFilterDialog.capAnd": "і", "SSE.Views.DigitalFilterDialog.capCondition1": "Дорівнює", "SSE.Views.DigitalFilterDialog.capCondition10": "не закінчується з", @@ -969,21 +1087,33 @@ "SSE.Views.DocumentHolder.insertColumnRightText": "Колонка праворуч", "SSE.Views.DocumentHolder.insertRowAboveText": "Рядок вгорі", "SSE.Views.DocumentHolder.insertRowBelowText": "Рядок внизу", + "SSE.Views.DocumentHolder.originalSizeText": "Реальний розмір", "SSE.Views.DocumentHolder.removeHyperlinkText": "Видалити гіперпосилання", "SSE.Views.DocumentHolder.selectColumnText": "Загальна колонка", "SSE.Views.DocumentHolder.selectDataText": "Колонка даних", "SSE.Views.DocumentHolder.selectRowText": "Рядок", "SSE.Views.DocumentHolder.selectTableText": "Таблиця", + "SSE.Views.DocumentHolder.textAlign": "Вирівнювання", + "SSE.Views.DocumentHolder.textArrange": "Порядок", "SSE.Views.DocumentHolder.textArrangeBack": "Надіслати до фону", "SSE.Views.DocumentHolder.textArrangeBackward": "Відправити назад", "SSE.Views.DocumentHolder.textArrangeForward": "Висувати", "SSE.Views.DocumentHolder.textArrangeFront": "Перенести на передній план", + "SSE.Views.DocumentHolder.textAverage": "Середнє", "SSE.Views.DocumentHolder.textEntriesList": "Виберати зі спадного списку", "SSE.Views.DocumentHolder.textFreezePanes": "Заморозити панелі", + "SSE.Views.DocumentHolder.textMacro": "Призначити макрос", "SSE.Views.DocumentHolder.textNone": "Жоден", + "SSE.Views.DocumentHolder.textShapeAlignBottom": "Вирівняти по нижньому краю", + "SSE.Views.DocumentHolder.textShapeAlignCenter": "Вирівняти по центру", + "SSE.Views.DocumentHolder.textShapeAlignLeft": "Вирівняти по лівому краю", + "SSE.Views.DocumentHolder.textShapeAlignMiddle": "Вирівняти посередині", + "SSE.Views.DocumentHolder.textShapeAlignRight": "Вирівняти по правому краю", + "SSE.Views.DocumentHolder.textShapeAlignTop": "Вирівняти по верхньому краю", "SSE.Views.DocumentHolder.textUndo": "Скасувати", "SSE.Views.DocumentHolder.textUnFreezePanes": "Розморозити грані", "SSE.Views.DocumentHolder.topCellText": "Вирівняти догори", + "SSE.Views.DocumentHolder.txtAccounting": "Фінансовий", "SSE.Views.DocumentHolder.txtAddComment": "Додати коментар", "SSE.Views.DocumentHolder.txtAddNamedRange": "Визначте ім'я", "SSE.Views.DocumentHolder.txtArrange": "Організувати", @@ -1035,6 +1165,7 @@ "SSE.Views.DocumentHolder.txtUngroup": "Розпакувати", "SSE.Views.DocumentHolder.txtWidth": "Ширина", "SSE.Views.DocumentHolder.vertAlignText": "Вертикальне вирівнювання", + "SSE.Views.FieldSettingsDialog.txtAverage": "Середнє", "SSE.Views.FileMenu.btnBackCaption": "Перейти до документів", "SSE.Views.FileMenu.btnCloseMenuCaption": "Закрити меню", "SSE.Views.FileMenu.btnCreateNewCaption": "Створити новий", @@ -1050,6 +1181,10 @@ "SSE.Views.FileMenu.btnSaveCaption": "Зберегти", "SSE.Views.FileMenu.btnSettingsCaption": "Розширені налаштування...", "SSE.Views.FileMenu.btnToEditCaption": "Редагувати електронну таблицю", + "SSE.Views.FileMenuPanels.CreateNew.txtBlank": "Пуста таблиця", + "SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Застосувати", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Додати автора", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Додати текст", "SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Додаток", "SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Автор", "SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Змінити права доступу", @@ -1086,6 +1221,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "Заблокований", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Зберегти на сервері", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Кожну хвилину", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe": "Білоруська", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Сантиметр", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Німецький", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "Англійська", @@ -1097,8 +1233,35 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Визначити", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Російський", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "як Windows", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Застосувати", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Параметри автозаміни...", "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Загальні", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Налаштування сторінки", + "SSE.Views.FormatRulesEditDlg.text2Scales": "Двоколірна шкала", + "SSE.Views.FormatRulesEditDlg.text3Scales": "Триколірна шкала", + "SSE.Views.FormatRulesEditDlg.textAllBorders": "Всі кордони", + "SSE.Views.FormatRulesEditDlg.textAppearance": "Зовнішній вигляд стовпчика", + "SSE.Views.FormatRulesEditDlg.textApply": "Застосувати до діапазону", + "SSE.Views.FormatRulesEditDlg.textAutomatic": "Автоматично", + "SSE.Views.FormatRulesEditDlg.textAxis": "Осі", + "SSE.Views.FormatRulesEditDlg.textBarDirection": "Напрям стовпчика", + "SSE.Views.FormatRulesEditDlg.textBold": "Напівжирний", + "SSE.Views.FormatRulesEditDlg.textBorder": "Межа", + "SSE.Views.FormatRulesEditDlg.textBordersColor": "Колір меж", + "SSE.Views.FormatRulesEditDlg.textBordersStyle": "Стиль меж", + "SSE.Views.FormatRulesEditDlg.textBottomBorders": "Нижні межі", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Користувальницький колір", + "SSE.Views.FormatRulesEditDlg.tipBorders": "Межі", + "SSE.Views.FormatRulesEditDlg.txtAccounting": "Фінансовий", + "SSE.Views.FormatRulesManagerDlg.text1Above": "На 1 стандартне відхилення вище за середнє", + "SSE.Views.FormatRulesManagerDlg.text1Below": "На 1 стандартне відхилення нижче за середнє", + "SSE.Views.FormatRulesManagerDlg.text2Above": "На 2 стандартні відхилення вище середнього", + "SSE.Views.FormatRulesManagerDlg.text2Below": "На 2 стандартні відхилення нижче середнього", + "SSE.Views.FormatRulesManagerDlg.text3Above": "На 3 стандартні відхилення вище середнього", + "SSE.Views.FormatRulesManagerDlg.text3Below": "На 3 стандартні відхилення нижче середнього", + "SSE.Views.FormatRulesManagerDlg.textAbove": "Вище середнього", + "SSE.Views.FormatRulesManagerDlg.textApply": "Застосувати до", + "SSE.Views.FormatRulesManagerDlg.textBelow": "Нижче середнього", "SSE.Views.FormatSettingsDialog.textCategory": "Категорія", "SSE.Views.FormatSettingsDialog.textDecimal": "десятковий дріб", "SSE.Views.FormatSettingsDialog.textFormat": "Формат", @@ -1130,6 +1293,15 @@ "SSE.Views.FormulaDialog.textGroupDescription": "Виберіть функціональну групу", "SSE.Views.FormulaDialog.textListDescription": "Вибрати функцію", "SSE.Views.FormulaDialog.txtTitle": "Вставити функцію", + "SSE.Views.FormulaTab.textAutomatic": "Автоматично", + "SSE.Views.FormulaTab.txtAdditional": "Вставити функцію", + "SSE.Views.FormulaTab.txtAutosum": "Автосума", + "SSE.Views.FormulaWizard.textAny": "будь-який", + "SSE.Views.FormulaWizard.textArgument": "Аргумент", + "SSE.Views.HeaderFooterDialog.textAlign": "Вирівняти відносно полів сторінки", + "SSE.Views.HeaderFooterDialog.textAll": "Усі сторінки", + "SSE.Views.HeaderFooterDialog.textBold": "Напівжирний", + "SSE.Views.HeaderFooterDialog.textNewColor": "Користувальницький колір", "SSE.Views.HyperlinkSettingsDialog.strDisplay": "Дісплей", "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "З'єднатися з", "SSE.Views.HyperlinkSettingsDialog.strRange": "Діапазон", @@ -1173,6 +1345,7 @@ "SSE.Views.LeftMenu.tipSearch": "Пошук", "SSE.Views.LeftMenu.tipSupport": "Відгуки і підтримка", "SSE.Views.LeftMenu.txtDeveloper": "Режим розробника", + "SSE.Views.MacroDialog.textTitle": "Призначити макрос", "SSE.Views.MainSettingsPrint.okButtonText": "Зберегти", "SSE.Views.MainSettingsPrint.strBottom": "Внизу", "SSE.Views.MainSettingsPrint.strLandscape": "ландшафт", @@ -1229,6 +1402,8 @@ "SSE.Views.NameManagerDlg.textWorkbook": "Робоча книга", "SSE.Views.NameManagerDlg.tipIsLocked": "Цей елемент редагує інший користувач.", "SSE.Views.NameManagerDlg.txtTitle": "Менеджер імен", + "SSE.Views.NameManagerDlg.warnDelete": "Ви дійсно хочете видалити ім'я {0}?", + "SSE.Views.PageMarginsDialog.textBottom": "Нижнє", "SSE.Views.PageMarginsDialog.textTitle": "Поля", "SSE.Views.ParagraphSettings.strLineHeight": "Лінія інтервалу", "SSE.Views.ParagraphSettings.strParagraphSpacing": "Параметр інтервалу", @@ -1245,6 +1420,8 @@ "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Подвійне перекреслення", "SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Лівий", "SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Право", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Після", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Перед", "SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Шрифт", "SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Відступи та розміщення", "SSE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Зменшені великі", @@ -1256,6 +1433,7 @@ "SSE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Пробіл між символами", "SSE.Views.ParagraphSettingsAdvanced.textDefault": "Вкладка за умовчанням", "SSE.Views.ParagraphSettingsAdvanced.textEffects": "Ефекти", + "SSE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(немає)", "SSE.Views.ParagraphSettingsAdvanced.textRemove": "Видалити", "SSE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Видалити усе", "SSE.Views.ParagraphSettingsAdvanced.textSet": "Вказати", @@ -1264,6 +1442,19 @@ "SSE.Views.ParagraphSettingsAdvanced.textTabPosition": "Положення вкладки", "SSE.Views.ParagraphSettingsAdvanced.textTabRight": "Право", "SSE.Views.ParagraphSettingsAdvanced.textTitle": "Параграф - розширені налаштування", + "SSE.Views.ParagraphSettingsAdvanced.txtAutoText": "Авто", + "SSE.Views.PivotDigitalFilterDialog.capCondition13": "між", + "SSE.Views.PivotDigitalFilterDialog.capCondition7": "починається з", + "SSE.Views.PivotDigitalFilterDialog.txtAnd": "і", + "SSE.Views.PivotGroupDialog.textAuto": "Авто", + "SSE.Views.PivotSettings.txtAddColumn": "Додати до стовпчиків", + "SSE.Views.PivotSettings.txtAddFilter": "Додати до фільтрів", + "SSE.Views.PivotSettings.txtAddRow": "Додати до рядків", + "SSE.Views.PivotSettings.txtAddValues": "Додати до значень", + "SSE.Views.PivotSettingsAdvanced.textAlt": "Альтернативний текст", + "SSE.Views.PivotTable.capBlankRows": "Пусті рядки", + "SSE.Views.PivotTable.textColBanded": "Чергувати стовпчики", + "SSE.Views.PivotTable.textRowBanded": "Чергувати рядки", "SSE.Views.PrintSettings.btnPrint": "Зберегти і роздрукувати", "SSE.Views.PrintSettings.strBottom": "Внизу", "SSE.Views.PrintSettings.strLandscape": "ландшафт", @@ -1291,6 +1482,11 @@ "SSE.Views.PrintSettings.textSettings": "Налаштування листа", "SSE.Views.PrintSettings.textShowDetails": "Показати деталі", "SSE.Views.PrintSettings.textTitle": "Налаштування друку", + "SSE.Views.PrintWithPreview.txtActualSize": "Реальний розмір", + "SSE.Views.PrintWithPreview.txtAllSheets": "Всі аркуші", + "SSE.Views.ProtectDialog.txtAllow": "Дозволити всім користувачам цього аркуша", + "SSE.Views.ProtectRangesDlg.txtTitle": "Дозволити користувачам редагувати діапазони", + "SSE.Views.ProtectRangesDlg.warnDelete": "Ви дійсно хочете видалити ім'я {0}?", "SSE.Views.RightMenu.txtCellSettings": "Налаштування комірки", "SSE.Views.RightMenu.txtChartSettings": "Налаштування діаграми", "SSE.Views.RightMenu.txtImageSettings": "Налаштування зображення", @@ -1301,6 +1497,7 @@ "SSE.Views.RightMenu.txtSparklineSettings": "Налаштування міні-діаграм", "SSE.Views.RightMenu.txtTableSettings": "Налаштування таблиці", "SSE.Views.RightMenu.txtTextArtSettings": "Налаштування текст Art", + "SSE.Views.ScaleDialog.textAuto": "Авто", "SSE.Views.SetValueDialog.txtMaxText": "Максимальне значення для цього поля: {0}", "SSE.Views.SetValueDialog.txtMinText": "Мінімальне значення для цього поля: {0}", "SSE.Views.ShapeSettings.strBackground": "Колір фону", @@ -1314,6 +1511,7 @@ "SSE.Views.ShapeSettings.strTransparency": "Непрозорість", "SSE.Views.ShapeSettings.strType": "Тип", "SSE.Views.ShapeSettings.textAdvanced": "Показати додаткові налаштування", + "SSE.Views.ShapeSettings.textAngle": "Кут", "SSE.Views.ShapeSettings.textBorderSizeErr": "Введене значення невірно.
Будь ласка, введіть значення від 0 pt до 1584 pt.", "SSE.Views.ShapeSettings.textColor": "Заповнити колір", "SSE.Views.ShapeSettings.textDirection": "Напрямок", @@ -1334,6 +1532,7 @@ "SSE.Views.ShapeSettings.textStyle": "Стиль", "SSE.Views.ShapeSettings.textTexture": "З текстури", "SSE.Views.ShapeSettings.textTile": "Забеспечити таємність", + "SSE.Views.ShapeSettings.tipAddGradientPoint": "Додати точку градієнта", "SSE.Views.ShapeSettings.txtBrownPaper": "Коричневий папір", "SSE.Views.ShapeSettings.txtCanvas": "Полотно", "SSE.Views.ShapeSettings.txtCarton": "Картинка", @@ -1354,6 +1553,7 @@ "SSE.Views.ShapeSettingsAdvanced.textAltTitle": "Назва", "SSE.Views.ShapeSettingsAdvanced.textAngle": "Нахил", "SSE.Views.ShapeSettingsAdvanced.textArrows": "Стрілки", + "SSE.Views.ShapeSettingsAdvanced.textAutofit": "Автопідбір", "SSE.Views.ShapeSettingsAdvanced.textBeginSize": "Початковий розмір", "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Початок стилю", "SSE.Views.ShapeSettingsAdvanced.textBevel": "Скіс", @@ -1370,6 +1570,7 @@ "SSE.Views.ShapeSettingsAdvanced.textLeft": "Лівий", "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Стиль лінії", "SSE.Views.ShapeSettingsAdvanced.textMiter": "Мітер", + "SSE.Views.ShapeSettingsAdvanced.textOverflow": "Дозволити переповнення фігури текстом", "SSE.Views.ShapeSettingsAdvanced.textRight": "Право", "SSE.Views.ShapeSettingsAdvanced.textRotation": "Поворот", "SSE.Views.ShapeSettingsAdvanced.textRound": "Круглий", @@ -1380,14 +1581,35 @@ "SSE.Views.ShapeSettingsAdvanced.textTop": "Верх", "SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "Ваги та стрілки", "SSE.Views.ShapeSettingsAdvanced.textWidth": "Ширина", + "SSE.Views.SlicerSettings.textAsc": "За зростанням", + "SSE.Views.SlicerSettings.textAZ": "Від А до Я", + "SSE.Views.SlicerSettingsAdvanced.textAlt": "Альтернативний текст", + "SSE.Views.SlicerSettingsAdvanced.textAsc": "За зростанням", + "SSE.Views.SlicerSettingsAdvanced.textAZ": "Від А до Я", + "SSE.Views.SortDialog.errorEmpty": "Для кожної умови сортування має бути зазначений стовпчик або рядок.", + "SSE.Views.SortDialog.errorSameColumnColor": "Сортування рядка або стовпця %1 за одним і тим же кольором виконується більше одного разу.
Видаліть повторні умови сортування та повторіть спробу.", + "SSE.Views.SortDialog.errorSameColumnValue": "Сортування рядка або стовпця %1 за значеннями виконується більше одного разу.
Видаліть повторні умови сортування та повторіть спробу.", + "SSE.Views.SortDialog.textAdd": "Додати рівень", + "SSE.Views.SortDialog.textAsc": "За зростанням", + "SSE.Views.SortDialog.textAuto": "Автоматично", + "SSE.Views.SortDialog.textAZ": "Від А до Я", + "SSE.Views.SortDialog.textBelow": "Знизу", "SSE.Views.SortDialog.textCellColor": "Колір комірки", + "SSE.Views.SortDialog.textMoreCols": "(Інші стовпчики...)", + "SSE.Views.SortDialog.textMoreRows": "(Інші рядки...)", "SSE.Views.SortDialog.txtInvalidRange": "Недійсний діапазон комірок.", + "SSE.Views.SortFilterDialog.textAsc": "За зростанням (від А до Я)", + "SSE.Views.SpecialPasteDialog.textAdd": "Додавання", + "SSE.Views.SpecialPasteDialog.textAll": "Всі", + "SSE.Views.SpecialPasteDialog.textWBorders": "Без рамки", + "SSE.Views.Spellcheck.txtAddToDictionary": "Додати в словник", "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Копіювати до кінця)", "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Перемістити до кінця)", "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Скопіюйте перед листом", "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Перемістити перед листом", "SSE.Views.Statusbar.filteredRecordsText": "{0} з {1} записів відфільтровано", "SSE.Views.Statusbar.filteredText": "Режим фільтрації", + "SSE.Views.Statusbar.itemAverage": "Середнє", "SSE.Views.Statusbar.itemCopy": "Копіювати", "SSE.Views.Statusbar.itemDelete": "Видалити", "SSE.Views.Statusbar.itemHidden": "Приховано", @@ -1468,6 +1690,7 @@ "SSE.Views.TextArtSettings.strStroke": "Штрих", "SSE.Views.TextArtSettings.strTransparency": "Непрозорість", "SSE.Views.TextArtSettings.strType": "Тип", + "SSE.Views.TextArtSettings.textAngle": "Кут", "SSE.Views.TextArtSettings.textBorderSizeErr": "Введене значення невірно.
Будь ласка, введіть значення від 0 pt до 1584 pt.", "SSE.Views.TextArtSettings.textColor": "Заповнити колір", "SSE.Views.TextArtSettings.textDirection": "Напрямок", @@ -1488,6 +1711,7 @@ "SSE.Views.TextArtSettings.textTexture": "З текстури", "SSE.Views.TextArtSettings.textTile": "Забеспечити таємність", "SSE.Views.TextArtSettings.textTransform": "Перетворення", + "SSE.Views.TextArtSettings.tipAddGradientPoint": "Додати точку градієнта", "SSE.Views.TextArtSettings.txtBrownPaper": "Коричневий папір", "SSE.Views.TextArtSettings.txtCanvas": "Полотно", "SSE.Views.TextArtSettings.txtCarton": "Картинка", @@ -1500,8 +1724,10 @@ "SSE.Views.TextArtSettings.txtNoBorders": "Немає лінії", "SSE.Views.TextArtSettings.txtPapyrus": "Папірус", "SSE.Views.TextArtSettings.txtWood": "Дерево", + "SSE.Views.Toolbar.capBtnAddComment": "Додати коментар", "SSE.Views.Toolbar.capBtnComment": "Коментар", "SSE.Views.Toolbar.capBtnMargins": "Поля", + "SSE.Views.Toolbar.capImgAlign": "Вирівнювання", "SSE.Views.Toolbar.capInsertChart": "Діаграма", "SSE.Views.Toolbar.capInsertEquation": "Рівняння", "SSE.Views.Toolbar.capInsertHyperlink": "Гіперсилка", @@ -1511,6 +1737,7 @@ "SSE.Views.Toolbar.capInsertText": "Текстове вікно", "SSE.Views.Toolbar.mniImageFromFile": "Картинка з файлу", "SSE.Views.Toolbar.mniImageFromUrl": "Зображення з URL", + "SSE.Views.Toolbar.textAddPrintArea": "Додати до області друку", "SSE.Views.Toolbar.textAlignBottom": "Вирівняти знизу", "SSE.Views.Toolbar.textAlignCenter": "Вирівняти центр", "SSE.Views.Toolbar.textAlignJust": "Обгрунтовано", @@ -1519,9 +1746,12 @@ "SSE.Views.Toolbar.textAlignRight": "Вирівняти справа", "SSE.Views.Toolbar.textAlignTop": "Вирівняти догори", "SSE.Views.Toolbar.textAllBorders": "Всі кордони", + "SSE.Views.Toolbar.textAuto": "Авто", + "SSE.Views.Toolbar.textAutoColor": "Автоматичний", "SSE.Views.Toolbar.textBold": "Жирний", "SSE.Views.Toolbar.textBordersColor": "Колір кордону", "SSE.Views.Toolbar.textBordersStyle": "Стиль межі", + "SSE.Views.Toolbar.textBottom": "Нижнє: ", "SSE.Views.Toolbar.textBottomBorders": "Нижні межі", "SSE.Views.Toolbar.textCenterBorders": "Всередині вертикальних кордонів", "SSE.Views.Toolbar.textClockwise": "Кут за годинниковою стрілкою", @@ -1584,6 +1814,7 @@ "SSE.Views.Toolbar.tipFontColor": "Колір шрифту", "SSE.Views.Toolbar.tipFontName": "Шрифт", "SSE.Views.Toolbar.tipFontSize": "Розмір шрифта", + "SSE.Views.Toolbar.tipImgAlign": "Вирівняти об'єкти", "SSE.Views.Toolbar.tipIncDecimal": "Збільшити десяткове число", "SSE.Views.Toolbar.tipIncFont": "Збільшення розміру шрифту", "SSE.Views.Toolbar.tipInsertChart": "Вставити діаграму", @@ -1680,5 +1911,11 @@ "SSE.Views.Top10FilterDialog.txtItems": "Пункт", "SSE.Views.Top10FilterDialog.txtPercent": "Відсоток", "SSE.Views.Top10FilterDialog.txtTitle": "Топ 10 Автофільтрів", - "SSE.Views.Top10FilterDialog.txtTop": "Верх" + "SSE.Views.Top10FilterDialog.txtTop": "Верх", + "SSE.Views.ValueFieldSettingsDialog.txtAverage": "Середнє", + "SSE.Views.ValueFieldSettingsDialog.txtBaseField": "Базове поле", + "SSE.Views.ValueFieldSettingsDialog.txtBaseItem": "Базовий елемент", + "SSE.Views.ValueFieldSettingsDialog.txtByField": "%1 з %2", + "SSE.Views.WBProtection.hintAllowRanges": "Дозволити редагувати діапазони", + "SSE.Views.WBProtection.txtAllowRanges": "Дозволити редагувати діапазони" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/zh.json b/apps/spreadsheeteditor/main/locale/zh.json index 0bf4b3d95..4c2f678e7 100644 --- a/apps/spreadsheeteditor/main/locale/zh.json +++ b/apps/spreadsheeteditor/main/locale/zh.json @@ -1950,7 +1950,7 @@ "SSE.Views.DocumentHolder.txtPercentage": "百分比", "SSE.Views.DocumentHolder.txtReapply": "Reapply", "SSE.Views.DocumentHolder.txtRow": "整行", - "SSE.Views.DocumentHolder.txtRowHeight": "设置列宽", + "SSE.Views.DocumentHolder.txtRowHeight": "设置行高", "SSE.Views.DocumentHolder.txtScientific": "科学", "SSE.Views.DocumentHolder.txtSelect": "选择", "SSE.Views.DocumentHolder.txtShiftDown": "向下移动单元格", From 4479a75b7c94c15ba832636ab4d19c5ad86db813 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 14 Jan 2022 14:38:38 +0300 Subject: [PATCH 013/217] [Mobile] Update translation --- apps/documenteditor/mobile/locale/az.json | 40 +- apps/documenteditor/mobile/locale/ca.json | 40 +- apps/documenteditor/mobile/locale/cs.json | 40 +- apps/documenteditor/mobile/locale/de.json | 40 +- apps/documenteditor/mobile/locale/el.json | 44 +- apps/documenteditor/mobile/locale/en.json | 66 +- apps/documenteditor/mobile/locale/es.json | 40 +- apps/documenteditor/mobile/locale/fr.json | 40 +- apps/documenteditor/mobile/locale/gl.json | 40 +- apps/documenteditor/mobile/locale/hu.json | 1168 +++++++-------- apps/documenteditor/mobile/locale/it.json | 40 +- apps/documenteditor/mobile/locale/ja.json | 40 +- apps/documenteditor/mobile/locale/ko.json | 40 +- apps/documenteditor/mobile/locale/nl.json | 40 +- apps/documenteditor/mobile/locale/pt.json | 64 +- apps/documenteditor/mobile/locale/ro.json | 40 +- apps/documenteditor/mobile/locale/ru.json | 50 +- apps/documenteditor/mobile/locale/tr.json | 38 +- apps/documenteditor/mobile/locale/zh.json | 40 +- apps/presentationeditor/mobile/locale/az.json | 4 +- apps/presentationeditor/mobile/locale/ca.json | 4 +- apps/presentationeditor/mobile/locale/cs.json | 4 +- apps/presentationeditor/mobile/locale/de.json | 4 +- apps/presentationeditor/mobile/locale/el.json | 779 +++++----- apps/presentationeditor/mobile/locale/en.json | 26 +- apps/presentationeditor/mobile/locale/es.json | 4 +- apps/presentationeditor/mobile/locale/fr.json | 4 +- apps/presentationeditor/mobile/locale/gl.json | 4 +- apps/presentationeditor/mobile/locale/hu.json | 862 ++++++------ apps/presentationeditor/mobile/locale/it.json | 4 +- apps/presentationeditor/mobile/locale/ja.json | 4 +- apps/presentationeditor/mobile/locale/ko.json | 4 +- apps/presentationeditor/mobile/locale/nl.json | 4 +- apps/presentationeditor/mobile/locale/pt.json | 30 +- apps/presentationeditor/mobile/locale/ro.json | 4 +- apps/presentationeditor/mobile/locale/ru.json | 18 +- apps/presentationeditor/mobile/locale/tr.json | 8 +- apps/presentationeditor/mobile/locale/zh.json | 4 +- apps/spreadsheeteditor/mobile/locale/az.json | 4 +- apps/spreadsheeteditor/mobile/locale/ca.json | 4 +- apps/spreadsheeteditor/mobile/locale/cs.json | 4 +- apps/spreadsheeteditor/mobile/locale/da.json | 34 +- apps/spreadsheeteditor/mobile/locale/de.json | 4 +- apps/spreadsheeteditor/mobile/locale/el.json | 1250 ++++++++--------- apps/spreadsheeteditor/mobile/locale/en.json | 30 +- apps/spreadsheeteditor/mobile/locale/es.json | 4 +- apps/spreadsheeteditor/mobile/locale/fr.json | 4 +- apps/spreadsheeteditor/mobile/locale/gl.json | 4 +- apps/spreadsheeteditor/mobile/locale/hu.json | 1244 ++++++++-------- apps/spreadsheeteditor/mobile/locale/it.json | 4 +- apps/spreadsheeteditor/mobile/locale/ja.json | 8 +- apps/spreadsheeteditor/mobile/locale/ko.json | 4 +- apps/spreadsheeteditor/mobile/locale/nl.json | 4 +- apps/spreadsheeteditor/mobile/locale/pt.json | 38 +- apps/spreadsheeteditor/mobile/locale/ro.json | 4 +- apps/spreadsheeteditor/mobile/locale/ru.json | 14 +- apps/spreadsheeteditor/mobile/locale/tr.json | 34 +- apps/spreadsheeteditor/mobile/locale/zh.json | 4 +- 58 files changed, 3213 insertions(+), 3212 deletions(-) diff --git a/apps/documenteditor/mobile/locale/az.json b/apps/documenteditor/mobile/locale/az.json index 968c2a922..75ba31d8b 100644 --- a/apps/documenteditor/mobile/locale/az.json +++ b/apps/documenteditor/mobile/locale/az.json @@ -309,28 +309,28 @@ "textTotalRow": "Yekun Sətir", "textType": "Növ", "textWrap": "Keçirin", - "textDesign": "Design", - "textSu": "Su", - "textMo": "Mo", - "textTu": "Tu", - "textWe": "We", - "textTh": "Th", - "textFr": "Fr", - "textSa": "Sa", - "textJanuary": "January", - "textFebruary": "February", - "textMarch": "March", "textApril": "April", - "textMay": "May", - "textJune": "June", - "textJuly": "July", "textAugust": "August", - "textSeptember": "September", - "textOctober": "October", - "textNovember": "November", "textDecember": "December", + "textDesign": "Design", "textEmpty": "Empty", - "textOk": "Ok" + "textFebruary": "February", + "textFr": "Fr", + "textJanuary": "January", + "textJuly": "July", + "textJune": "June", + "textMarch": "March", + "textMay": "May", + "textMo": "Mo", + "textNovember": "November", + "textOctober": "October", + "textOk": "Ok", + "textSa": "Sa", + "textSeptember": "September", + "textSu": "Su", + "textTh": "Th", + "textTu": "Tu", + "textWe": "We" }, "Error": { "convertationTimeoutText": "Çevrilmə vaxtı maksimumu keçdi.", @@ -501,9 +501,9 @@ "warnNoLicense": "Siz 1% redaktorlarına eyni vaxtda qoşulma limitinə çatdınız. Bu sənəd yalnız baxmaq üçün açılacaq. Şəxsi təkmilləşdirmə şərtləri üçün 1% satış komandası ilə əlaqə saxlayın.", "warnNoLicenseUsers": "1% redaktor üçün istifadəçi limitinə çatdınız. Şəxsi təkmilləşdirmə şərtləri üçün 1% satış komandası ilə əlaqə saxlayın.", "warnProcessRightsChange": "Bu faylı redaktə etmək icazəniz yoxdur.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" }, "Settings": { "advDRMOptions": "Qorunan Fayl", diff --git a/apps/documenteditor/mobile/locale/ca.json b/apps/documenteditor/mobile/locale/ca.json index 7a4f786eb..c59d2609f 100644 --- a/apps/documenteditor/mobile/locale/ca.json +++ b/apps/documenteditor/mobile/locale/ca.json @@ -309,28 +309,28 @@ "textTotalRow": "Fila de total", "textType": "Tipus", "textWrap": "Ajustament", - "textDesign": "Design", - "textSu": "Su", - "textMo": "Mo", - "textTu": "Tu", - "textWe": "We", - "textTh": "Th", - "textFr": "Fr", - "textSa": "Sa", - "textJanuary": "January", - "textFebruary": "February", - "textMarch": "March", "textApril": "April", - "textMay": "May", - "textJune": "June", - "textJuly": "July", "textAugust": "August", - "textSeptember": "September", - "textOctober": "October", - "textNovember": "November", "textDecember": "December", + "textDesign": "Design", "textEmpty": "Empty", - "textOk": "Ok" + "textFebruary": "February", + "textFr": "Fr", + "textJanuary": "January", + "textJuly": "July", + "textJune": "June", + "textMarch": "March", + "textMay": "May", + "textMo": "Mo", + "textNovember": "November", + "textOctober": "October", + "textOk": "Ok", + "textSa": "Sa", + "textSeptember": "September", + "textSu": "Su", + "textTh": "Th", + "textTu": "Tu", + "textWe": "We" }, "Error": { "convertationTimeoutText": "S'ha superat el temps de conversió.", @@ -501,9 +501,9 @@ "warnNoLicense": "Has arribat al límit de connexions simultànies a %1 editors. Aquest document només s'obrirà en mode lectura. Contacta amb l'equip de vendes %1 per a les condicions d'una actualització personal.", "warnNoLicenseUsers": "Has arribat al límit d'usuaris per a %1 editors. Contacta amb l'equip de vendes de %1 per obtenir les condicions de millora personals dels teus serveis.", "warnProcessRightsChange": "No tens permís per editar aquest fitxer.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" }, "Settings": { "advDRMOptions": "El fitxer està protegit", diff --git a/apps/documenteditor/mobile/locale/cs.json b/apps/documenteditor/mobile/locale/cs.json index 7e9338823..fed9cf108 100644 --- a/apps/documenteditor/mobile/locale/cs.json +++ b/apps/documenteditor/mobile/locale/cs.json @@ -309,28 +309,28 @@ "textTotalRow": "Součtový řádek", "textType": "Typ", "textWrap": "Obtékání", - "textDesign": "Design", - "textSu": "Su", - "textMo": "Mo", - "textTu": "Tu", - "textWe": "We", - "textTh": "Th", - "textFr": "Fr", - "textSa": "Sa", - "textJanuary": "January", - "textFebruary": "February", - "textMarch": "March", "textApril": "April", - "textMay": "May", - "textJune": "June", - "textJuly": "July", "textAugust": "August", - "textSeptember": "September", - "textOctober": "October", - "textNovember": "November", "textDecember": "December", + "textDesign": "Design", "textEmpty": "Empty", - "textOk": "Ok" + "textFebruary": "February", + "textFr": "Fr", + "textJanuary": "January", + "textJuly": "July", + "textJune": "June", + "textMarch": "March", + "textMay": "May", + "textMo": "Mo", + "textNovember": "November", + "textOctober": "October", + "textOk": "Ok", + "textSa": "Sa", + "textSeptember": "September", + "textSu": "Su", + "textTh": "Th", + "textTu": "Tu", + "textWe": "We" }, "Error": { "convertationTimeoutText": "Vypršel čas konverze.", @@ -501,9 +501,9 @@ "warnNoLicense": "Došlo k dosažení limitu souběžného připojení %1 editorů. Tento dokument bude otevřen pouze pro náhled. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", "warnNoLicenseUsers": "Došlo k dosažení limitu %1 editorů. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", "warnProcessRightsChange": "Nemáte oprávnění pro úpravu tohoto dokumentu.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" }, "Settings": { "advDRMOptions": "Zabezpečený soubor", diff --git a/apps/documenteditor/mobile/locale/de.json b/apps/documenteditor/mobile/locale/de.json index 6eff2e27e..4a82ae963 100644 --- a/apps/documenteditor/mobile/locale/de.json +++ b/apps/documenteditor/mobile/locale/de.json @@ -309,28 +309,28 @@ "textTotalRow": "Ergebniszeile", "textType": "Typ", "textWrap": "Umbrechen", - "textDesign": "Design", - "textSu": "Su", - "textMo": "Mo", - "textTu": "Tu", - "textWe": "We", - "textTh": "Th", - "textFr": "Fr", - "textSa": "Sa", - "textJanuary": "January", - "textFebruary": "February", - "textMarch": "March", "textApril": "April", - "textMay": "May", - "textJune": "June", - "textJuly": "July", "textAugust": "August", - "textSeptember": "September", - "textOctober": "October", - "textNovember": "November", "textDecember": "December", + "textDesign": "Design", "textEmpty": "Empty", - "textOk": "Ok" + "textFebruary": "February", + "textFr": "Fr", + "textJanuary": "January", + "textJuly": "July", + "textJune": "June", + "textMarch": "March", + "textMay": "May", + "textMo": "Mo", + "textNovember": "November", + "textOctober": "October", + "textOk": "Ok", + "textSa": "Sa", + "textSeptember": "September", + "textSu": "Su", + "textTh": "Th", + "textTu": "Tu", + "textWe": "We" }, "Error": { "convertationTimeoutText": "Zeitüberschreitung bei der Konvertierung.", @@ -501,9 +501,9 @@ "warnNoLicense": "Sie haben die maximale Anzahl von gleichzeitigen Verbindungen in %1-Editoren erreicht. Die Bearbeitung ist jetzt in diesem Dokument nicht verfügbar. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", "warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", "warnProcessRightsChange": "Sie können diese Datei nicht bearbeiten.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" }, "Settings": { "advDRMOptions": "Geschützte Datei", diff --git a/apps/documenteditor/mobile/locale/el.json b/apps/documenteditor/mobile/locale/el.json index 40e5fbc7b..0b9ec76f3 100644 --- a/apps/documenteditor/mobile/locale/el.json +++ b/apps/documenteditor/mobile/locale/el.json @@ -280,7 +280,7 @@ "textRemoveLink": "Αφαίρεση Συνδέσμου", "textRemoveShape": "Αφαίρεση Σχήματος", "textRemoveTable": "Αφαίρεση Πίνακα", - "textReorder": "Επανατακτοποίηση", + "textReorder": "Αναδιάταξη", "textRepeatAsHeaderRow": "Επανάληψη ως Σειράς Κεφαλίδας", "textReplace": "Αντικατάσταση", "textReplaceImage": "Αντικατάσταση Εικόνας", @@ -309,28 +309,28 @@ "textTotalRow": "Συνολική Γραμμή", "textType": "Τύπος", "textWrap": "Αναδίπλωση", - "textDesign": "Design", - "textSu": "Su", - "textMo": "Mo", - "textTu": "Tu", - "textWe": "We", - "textTh": "Th", - "textFr": "Fr", - "textSa": "Sa", - "textJanuary": "January", - "textFebruary": "February", - "textMarch": "March", "textApril": "April", - "textMay": "May", - "textJune": "June", - "textJuly": "July", "textAugust": "August", - "textSeptember": "September", - "textOctober": "October", - "textNovember": "November", "textDecember": "December", + "textDesign": "Design", "textEmpty": "Empty", - "textOk": "Ok" + "textFebruary": "February", + "textFr": "Fr", + "textJanuary": "January", + "textJuly": "July", + "textJune": "June", + "textMarch": "March", + "textMay": "May", + "textMo": "Mo", + "textNovember": "November", + "textOctober": "October", + "textOk": "Ok", + "textSa": "Sa", + "textSeptember": "September", + "textSu": "Su", + "textTh": "Th", + "textTu": "Tu", + "textWe": "We" }, "Error": { "convertationTimeoutText": "Υπέρβαση χρονικού ορίου μετατροπής.", @@ -501,9 +501,9 @@ "warnNoLicense": "Φτάσατε το όριο ταυτόχρονων συνδέσεων σε %1 συντάκτες. Το έγγραφο θα ανοίξει μόνο για ανάγνωση. Επικοινωνήστε με την ομάδα πωλήσεων %1 για τους όρους αναβάθμισης.", "warnNoLicenseUsers": "Έχετε φτάσει το όριο χρήστη για συντάκτες %1.
Επικοινωνήστε με την ομάδα πωλήσεων %1 για προσωπικούς όρους αναβάθμισης.", "warnProcessRightsChange": "Δεν έχετε δικαίωμα επεξεργασίας αυτού του αρχείου.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" }, "Settings": { "advDRMOptions": "Προστατευμένο Αρχείο", @@ -593,7 +593,7 @@ "txtDownloadTxt": "Λήψη TXT", "txtIncorrectPwd": "Το συνθηματικό είναι εσφαλμένο", "txtOk": "Εντάξει", - "txtProtected": "Μόλις εισάγετε το συνθηματικό κι ανοίξετε το αρχείο, το τρέχον συνθηματικό θα επαναφερθεί.", + "txtProtected": "Μόλις βάλετε το συνθηματικό κι ανοίξετε το αρχείο, θα γίνει επαναφορά του τρέχοντος συνθηματικού.", "txtScheme1": "Γραφείο", "txtScheme10": "Διάμεσο", "txtScheme11": "Μετρό", diff --git a/apps/documenteditor/mobile/locale/en.json b/apps/documenteditor/mobile/locale/en.json index eeae2eca2..d8e847909 100644 --- a/apps/documenteditor/mobile/locale/en.json +++ b/apps/documenteditor/mobile/locale/en.json @@ -41,6 +41,7 @@ "textLocation": "Location", "textNextPage": "Next Page", "textOddPage": "Odd Page", + "textOk": "Ok", "textOther": "Other", "textPageBreak": "Page Break", "textPageNumber": "Page Number", @@ -56,8 +57,7 @@ "textStartAt": "Start At", "textTable": "Table", "textTableSize": "Table Size", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textOk": "Ok" + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" }, "Common": { "Collaboration": { @@ -158,13 +158,13 @@ "textUsers": "Users", "textWidow": "Widow control" }, + "HighlightColorPalette": { + "textNoFill": "No Fill" + }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", "textStandartColors": "Standard Colors", "textThemeColors": "Theme Colors" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -208,6 +208,8 @@ "textAlign": "Align", "textAllCaps": "All caps", "textAllowOverlap": "Allow overlap", + "textApril": "April", + "textAugust": "August", "textAuto": "Auto", "textAutomatic": "Automatic", "textBack": "Back", @@ -215,7 +217,7 @@ "textBandedColumn": "Banded column", "textBandedRow": "Banded row", "textBefore": "Before", - "textBehind": "Behind", + "textBehind": "Behind Text", "textBorder": "Border", "textBringToForeground": "Bring to foreground", "textBullets": "Bullets", @@ -226,6 +228,8 @@ "textColor": "Color", "textContinueFromPreviousSection": "Continue from previous section", "textCustomColor": "Custom Color", + "textDecember": "December", + "textDesign": "Design", "textDifferentFirstPage": "Different first page", "textDifferentOddAndEvenPages": "Different odd and even pages", "textDisplay": "Display", @@ -233,8 +237,9 @@ "textDoubleStrikethrough": "Double Strikethrough", "textEditLink": "Edit Link", "textEffects": "Effects", + "textEmpty": "Empty", "textEmptyImgUrl": "You need to specify image URL.", - "textDesign": "Design", + "textFebruary": "February", "textFill": "Fill", "textFirstColumn": "First Column", "textFirstLine": "FirstLine", @@ -243,14 +248,18 @@ "textFontColors": "Font Colors", "textFonts": "Fonts", "textFooter": "Footer", + "textFr": "Fr", "textHeader": "Header", "textHeaderRow": "Header Row", "textHighlightColor": "Highlight Color", "textHyperlink": "Hyperlink", "textImage": "Image", "textImageURL": "Image URL", - "textInFront": "In Front", - "textInline": "Inline", + "textInFront": "In Front of Text", + "textInline": "In Line with Text", + "textJanuary": "January", + "textJuly": "July", + "textJune": "June", "textKeepLinesTogether": "Keep Lines Together", "textKeepWithNext": "Keep with Next", "textLastColumn": "Last Column", @@ -259,13 +268,19 @@ "textLink": "Link", "textLinkSettings": "Link Settings", "textLinkToPrevious": "Link to Previous", + "textMarch": "March", + "textMay": "May", + "textMo": "Mo", "textMoveBackward": "Move Backward", "textMoveForward": "Move Forward", "textMoveWithText": "Move with Text", "textNone": "None", "textNoStyles": "No styles for this type of charts.", "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNovember": "November", "textNumbers": "Numbers", + "textOctober": "October", + "textOk": "Ok", "textOpacity": "Opacity", "textOptions": "Options", "textOrphanControl": "Orphan Control", @@ -286,9 +301,11 @@ "textReplace": "Replace", "textReplaceImage": "Replace Image", "textResizeToFitContent": "Resize to Fit Content", + "textSa": "Sa", "textScreenTip": "Screen Tip", "textSelectObjectToEdit": "Select object to edit", "textSendToBackground": "Send to Background", + "textSeptember": "September", "textSettings": "Settings", "textShape": "Shape", "textSize": "Size", @@ -299,38 +316,21 @@ "textStrikethrough": "Strikethrough", "textStyle": "Style", "textStyleOptions": "Style Options", + "textSu": "Su", "textSubscript": "Subscript", "textSuperscript": "Superscript", "textTable": "Table", "textTableOptions": "Table Options", "textText": "Text", + "textTh": "Th", "textThrough": "Through", "textTight": "Tight", "textTopAndBottom": "Top and Bottom", "textTotalRow": "Total Row", - "textType": "Type", - "textWrap": "Wrap", - "textSu": "Su", - "textMo": "Mo", "textTu": "Tu", + "textType": "Type", "textWe": "We", - "textTh": "Th", - "textFr": "Fr", - "textSa": "Sa", - "textJanuary": "January", - "textFebruary": "February", - "textMarch": "March", - "textApril": "April", - "textMay": "May", - "textJune": "June", - "textJuly": "July", - "textAugust": "August", - "textSeptember": "September", - "textOctober": "October", - "textNovember": "November", - "textDecember": "December", - "textEmpty": "Empty", - "textOk": "Ok" + "textWrap": "Wrap" }, "Error": { "convertationTimeoutText": "Conversion timeout exceeded.", @@ -416,9 +416,6 @@ "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", "notcriticalErrorTitle": "Warning", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found", "SDK": { " -Section ": " -Section ", "above": "above", @@ -490,8 +487,11 @@ "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", "textNo": "No", "textNoLicenseTitle": "License limit reached", + "textNoTextFound": "Text not found", "textPaidFeature": "Paid feature", "textRemember": "Remember my choice", + "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textYes": "Yes", "titleLicenseExp": "License expired", "titleServerVersion": "Editor updated", diff --git a/apps/documenteditor/mobile/locale/es.json b/apps/documenteditor/mobile/locale/es.json index d041b279c..a1e901204 100644 --- a/apps/documenteditor/mobile/locale/es.json +++ b/apps/documenteditor/mobile/locale/es.json @@ -309,28 +309,28 @@ "textTotalRow": "Fila total", "textType": "Tipo", "textWrap": "Ajuste", - "textDesign": "Design", - "textSu": "Su", - "textMo": "Mo", - "textTu": "Tu", - "textWe": "We", - "textTh": "Th", - "textFr": "Fr", - "textSa": "Sa", - "textJanuary": "January", - "textFebruary": "February", - "textMarch": "March", "textApril": "April", - "textMay": "May", - "textJune": "June", - "textJuly": "July", "textAugust": "August", - "textSeptember": "September", - "textOctober": "October", - "textNovember": "November", "textDecember": "December", + "textDesign": "Design", "textEmpty": "Empty", - "textOk": "Ok" + "textFebruary": "February", + "textFr": "Fr", + "textJanuary": "January", + "textJuly": "July", + "textJune": "June", + "textMarch": "March", + "textMay": "May", + "textMo": "Mo", + "textNovember": "November", + "textOctober": "October", + "textOk": "Ok", + "textSa": "Sa", + "textSeptember": "September", + "textSu": "Su", + "textTh": "Th", + "textTu": "Tu", + "textWe": "We" }, "Error": { "convertationTimeoutText": "Tiempo de conversión está superado.", @@ -501,9 +501,9 @@ "warnNoLicense": "Ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización. Póngase en contacto con el equipo de ventas de %1 para conocer las condiciones de actualización personal.", "warnNoLicenseUsers": "Ha alcanzado el límite de usuarios para %1 editores. Póngase en contacto con el equipo de ventas de %1 para conocer las condiciones de actualización personal.", "warnProcessRightsChange": "No tiene permiso para editar este archivo.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" }, "Settings": { "advDRMOptions": "Archivo protegido", diff --git a/apps/documenteditor/mobile/locale/fr.json b/apps/documenteditor/mobile/locale/fr.json index d820684a6..77c0efba9 100644 --- a/apps/documenteditor/mobile/locale/fr.json +++ b/apps/documenteditor/mobile/locale/fr.json @@ -309,28 +309,28 @@ "textTotalRow": "Ligne de total", "textType": "Type", "textWrap": "Renvoi à la ligne", - "textDesign": "Design", - "textSu": "Su", - "textMo": "Mo", - "textTu": "Tu", - "textWe": "We", - "textTh": "Th", - "textFr": "Fr", - "textSa": "Sa", - "textJanuary": "January", - "textFebruary": "February", - "textMarch": "March", "textApril": "April", - "textMay": "May", - "textJune": "June", - "textJuly": "July", "textAugust": "August", - "textSeptember": "September", - "textOctober": "October", - "textNovember": "November", "textDecember": "December", + "textDesign": "Design", "textEmpty": "Empty", - "textOk": "Ok" + "textFebruary": "February", + "textFr": "Fr", + "textJanuary": "January", + "textJuly": "July", + "textJune": "June", + "textMarch": "March", + "textMay": "May", + "textMo": "Mo", + "textNovember": "November", + "textOctober": "October", + "textOk": "Ok", + "textSa": "Sa", + "textSeptember": "September", + "textSu": "Su", + "textTh": "Th", + "textTu": "Tu", + "textWe": "We" }, "Error": { "convertationTimeoutText": "Délai de conversion expiré.", @@ -501,9 +501,9 @@ "warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert en lecture seule. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", "warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", "warnProcessRightsChange": "Vous n'avez pas la permission de modifier ce fichier.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" }, "Settings": { "advDRMOptions": "Fichier protégé", diff --git a/apps/documenteditor/mobile/locale/gl.json b/apps/documenteditor/mobile/locale/gl.json index 4ee85914a..474a93455 100644 --- a/apps/documenteditor/mobile/locale/gl.json +++ b/apps/documenteditor/mobile/locale/gl.json @@ -309,28 +309,28 @@ "textTotalRow": "Fila total", "textType": "Tipo", "textWrap": "Axuste", - "textDesign": "Design", - "textSu": "Su", - "textMo": "Mo", - "textTu": "Tu", - "textWe": "We", - "textTh": "Th", - "textFr": "Fr", - "textSa": "Sa", - "textJanuary": "January", - "textFebruary": "February", - "textMarch": "March", "textApril": "April", - "textMay": "May", - "textJune": "June", - "textJuly": "July", "textAugust": "August", - "textSeptember": "September", - "textOctober": "October", - "textNovember": "November", "textDecember": "December", + "textDesign": "Design", "textEmpty": "Empty", - "textOk": "Ok" + "textFebruary": "February", + "textFr": "Fr", + "textJanuary": "January", + "textJuly": "July", + "textJune": "June", + "textMarch": "March", + "textMay": "May", + "textMo": "Mo", + "textNovember": "November", + "textOctober": "October", + "textOk": "Ok", + "textSa": "Sa", + "textSeptember": "September", + "textSu": "Su", + "textTh": "Th", + "textTu": "Tu", + "textWe": "We" }, "Error": { "convertationTimeoutText": "Excedeu o tempo límite de conversión.", @@ -501,9 +501,9 @@ "warnNoLicense": "Alcanzou o límite de conexións simultáneas con %1 editores. Este documento abrirase para as úa visualización. Póñase en contacto co equipo de vendas de %1 para coñecer as condicións de actualización persoal.", "warnNoLicenseUsers": "Alcanzou o límite de usuarios para os editores de %1.
Contacte co equipo de vendas de %1 para coñecer os termos de actualización persoal.", "warnProcessRightsChange": "Non ten permiso para editar este ficheiro.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" }, "Settings": { "advDRMOptions": "Ficheiro protexido", diff --git a/apps/documenteditor/mobile/locale/hu.json b/apps/documenteditor/mobile/locale/hu.json index a33c05493..e1d0cada3 100644 --- a/apps/documenteditor/mobile/locale/hu.json +++ b/apps/documenteditor/mobile/locale/hu.json @@ -1,626 +1,626 @@ { "About": { - "textAbout": "About", - "textAddress": "Address", - "textBack": "Back", - "textEmail": "Email", - "textPoweredBy": "Powered By", - "textTel": "Tel", - "textVersion": "Version" + "textAbout": "Névjegy", + "textAddress": "Cím", + "textBack": "Vissza", + "textEmail": "E-mail", + "textPoweredBy": "Powered by", + "textTel": "Tel.", + "textVersion": "Verzió" }, "Add": { - "notcriticalErrorTitle": "Warning", - "textAddLink": "Add link", - "textAddress": "Address", - "textBack": "Back", - "textBelowText": "Below text", - "textBottomOfPage": "Bottom of page", - "textBreak": "Break", - "textCancel": "Cancel", - "textCenterBottom": "Center Bottom", - "textCenterTop": "Center Top", - "textColumnBreak": "Column Break", - "textColumns": "Columns", - "textComment": "Comment", - "textContinuousPage": "Continuous Page", - "textCurrentPosition": "Current Position", - "textDisplay": "Display", - "textEmptyImgUrl": "You need to specify image URL.", - "textEvenPage": "Even Page", - "textFootnote": "Footnote", - "textFormat": "Format", - "textImage": "Image", - "textImageURL": "Image URL", - "textInsert": "Insert", - "textInsertFootnote": "Insert Footnote", - "textInsertImage": "Insert Image", - "textLeftBottom": "Left Bottom", - "textLeftTop": "Left Top", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLocation": "Location", - "textNextPage": "Next Page", - "textOddPage": "Odd Page", - "textOther": "Other", - "textPageBreak": "Page Break", - "textPageNumber": "Page Number", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textPosition": "Position", - "textRightBottom": "Right Bottom", - "textRightTop": "Right Top", - "textRows": "Rows", - "textScreenTip": "Screen Tip", - "textSectionBreak": "Section Break", - "textShape": "Shape", - "textStartAt": "Start At", - "textTable": "Table", - "textTableSize": "Table Size", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "notcriticalErrorTitle": "Figyelmeztetés", + "textAddLink": "Link hozzáadása", + "textAddress": "Cím", + "textBack": "Vissza", + "textBelowText": "Szöveg alatt", + "textBottomOfPage": "Az oldal alja", + "textBreak": "Szünet", + "textCancel": "Mégse", + "textCenterBottom": "Középen alul", + "textCenterTop": "Középen felül", + "textColumnBreak": "Oszlop törés", + "textColumns": "Oszlopok", + "textComment": "Megjegyzés", + "textContinuousPage": "Folyamatos oldal", + "textCurrentPosition": "Jelenlegi pozíció", + "textDisplay": "Megjelenít", + "textEmptyImgUrl": "Meg kell adni a kép hivatkozását.", + "textEvenPage": "Páros oldal", + "textFootnote": "Lábjegyzet", + "textFormat": "Formátum", + "textImage": "Kép", + "textImageURL": "Kép URL", + "textInsert": "Beszúrás", + "textInsertFootnote": "Lábjegyzet beszúrása", + "textInsertImage": "Kép beszúrása", + "textLeftBottom": "Bal alsó", + "textLeftTop": "Bal felső", + "textLink": "Hivatkozás", + "textLinkSettings": "Hivatkozás beállítások", + "textLocation": "Hely", + "textNextPage": "Következő oldal", + "textOddPage": "Páratlan oldal", + "textOther": "Egyéb", + "textPageBreak": "Oldaltörés", + "textPageNumber": "Oldalszám", + "textPictureFromLibrary": "Kép a könyvtárból", + "textPictureFromURL": "Kép URL-en keresztül", + "textPosition": "Pozíció", + "textRightBottom": "Jobb alsó", + "textRightTop": "Jobb felső", + "textRows": "Sorok", + "textScreenTip": "Képernyőtipp", + "textSectionBreak": "Szakasztörés", + "textShape": "Alakzat", + "textStartAt": "Kezdés", + "textTable": "Táblázat", + "textTableSize": "Táblázat mérete", + "txtNotUrl": "Ennek a mezőnek URL formátumúnak kell lennie, pl.: „http://www.pelda.hu”", "textOk": "Ok" }, "Common": { "Collaboration": { - "notcriticalErrorTitle": "Warning", - "textAccept": "Accept", - "textAcceptAllChanges": "Accept all changes", - "textAddComment": "Add comment", - "textAddReply": "Add reply", - "textAllChangesAcceptedPreview": "All changes accepted (Preview)", - "textAllChangesEditing": "All changes (Editing)", - "textAllChangesRejectedPreview": "All changes rejected (Preview)", - "textAtLeast": "at least", - "textAuto": "auto", - "textBack": "Back", - "textBaseline": "Baseline", - "textBold": "Bold", - "textBreakBefore": "Page break before", - "textCancel": "Cancel", - "textCaps": "All caps", - "textCenter": "Align center", - "textChart": "Chart", - "textCollaboration": "Collaboration", - "textColor": "Font color", - "textComments": "Comments", - "textContextual": "Don't add intervals between paragraphs of the same style", - "textDelete": "Delete", - "textDeleteComment": "Delete Comment", - "textDeleted": "Deleted:", - "textDeleteReply": "Delete Reply", - "textDisplayMode": "Display Mode", - "textDone": "Done", - "textDStrikeout": "Double strikeout", - "textEdit": "Edit", - "textEditComment": "Edit Comment", - "textEditReply": "Edit Reply", - "textEditUser": "Users who are editing the file:", - "textEquation": "Equation", - "textExact": "exactly", - "textFinal": "Final", - "textFirstLine": "First line", - "textFormatted": "Formatted", - "textHighlight": "Highlight color", - "textImage": "Image", - "textIndentLeft": "Indent left", - "textIndentRight": "Indent right", - "textInserted": "Inserted:", - "textItalic": "Italic", - "textJustify": "Align justified ", - "textKeepLines": "Keep lines together", - "textKeepNext": "Keep with next", - "textLeft": "Align left", - "textLineSpacing": "Line Spacing: ", - "textMarkup": "Markup", - "textMessageDeleteComment": "Do you really want to delete this comment?", - "textMessageDeleteReply": "Do you really want to delete this reply?", - "textMultiple": "multiple", - "textNoBreakBefore": "No page break before", - "textNoChanges": "There are no changes.", - "textNoComments": "This document doesn't contain comments", - "textNoContextual": "Add interval between paragraphs of the same style", - "textNoKeepLines": "Don't keep lines together", - "textNoKeepNext": "Don't keep with next", - "textNot": "Not ", - "textNoWidow": "No widow control", - "textNum": "Change numbering", - "textOriginal": "Original", - "textParaDeleted": "Paragraph Deleted", - "textParaFormatted": "Paragraph Formatted", - "textParaInserted": "Paragraph Inserted", - "textParaMoveFromDown": "Moved Down:", - "textParaMoveFromUp": "Moved Up:", - "textParaMoveTo": "Moved:", - "textPosition": "Position", - "textReject": "Reject", - "textRejectAllChanges": "Reject All Changes", - "textReopen": "Reopen", - "textResolve": "Resolve", - "textReview": "Review", - "textReviewChange": "Review Change", - "textRight": "Align right", - "textShape": "Shape", - "textShd": "Background color", - "textSmallCaps": "Small caps", - "textSpacing": "Spacing", - "textSpacingAfter": "Spacing after", - "textSpacingBefore": "Spacing before", - "textStrikeout": "Strikeout", - "textSubScript": "Subscript", - "textSuperScript": "Superscript", - "textTableChanged": "Table Settings Changed", - "textTableRowsAdd": "Table Rows Added", - "textTableRowsDel": "Table Rows Deleted", - "textTabs": "Change tabs", - "textTrackChanges": "Track Changes", - "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUnderline": "Underline", - "textUsers": "Users", - "textWidow": "Widow control", - "textOk": "Ok" + "notcriticalErrorTitle": "Figyelmeztetés", + "textAccept": "Elfogad", + "textAcceptAllChanges": "Minden módosítás elfogadása", + "textAddComment": "Megjegyzés hozzáadása", + "textAddReply": "Válasz hozzáadása", + "textAllChangesAcceptedPreview": "Minden módosítás elfogadva (előnézet)", + "textAllChangesEditing": "Minden módosítás (szerkesztés)", + "textAllChangesRejectedPreview": "Minden módosítás visszautasítva (előnézet)", + "textAtLeast": "legalább", + "textAuto": "Automatikus", + "textBack": "Vissza", + "textBaseline": "Alapvonal", + "textBold": "Félkövér", + "textBreakBefore": "Oldaltörés előtte", + "textCancel": "Mégse", + "textCaps": "Minden nagybetű", + "textCenter": "Középre igazít", + "textChart": "Diagram", + "textCollaboration": "Együttműködés", + "textColor": "Betűszín", + "textComments": "Megjegyzések", + "textContextual": "Ne adjon térközt az azonos stílusú bekezdések közé", + "textDelete": "Törlés", + "textDeleteComment": "Megjegyzés törlése", + "textDeleted": "Törölt:", + "textDeleteReply": "Válasz törlése", + "textDisplayMode": "Megjelenítési mód", + "textDone": "Kész", + "textDStrikeout": "Dupla áthúzás", + "textEdit": "Szerkesztés", + "textEditComment": "Megjegyzés szerkesztése", + "textEditReply": "Válasz szerkesztése", + "textEditUser": "A fájlt szerkesztő felhasználók:", + "textEquation": "Egyenlet", + "textExact": "Pontosan", + "textFinal": "Végső", + "textFirstLine": "Első sor", + "textFormatted": "Formázott", + "textHighlight": "Kiemelő szín", + "textImage": "Kép", + "textIndentLeft": "Bal behúzás", + "textIndentRight": "Jobb behúzás", + "textInserted": "Beszúrt:", + "textItalic": "Dőlt", + "textJustify": "Igazítás sorkizártra", + "textKeepLines": "Sorok egyben tartása", + "textKeepNext": "Együtt a következővel", + "textLeft": "Balra igazít", + "textLineSpacing": "Sortávolság:", + "textMarkup": "Jelölés", + "textMessageDeleteComment": "Biztosan törölni akarja a megjegyzést?", + "textMessageDeleteReply": "Biztosan törölni akarja ezt a választ?", + "textMultiple": "Többszörös", + "textNoBreakBefore": "Nincs oldaltörés előtte", + "textNoChanges": "Nincsenek változások.", + "textNoComments": "Ebben a dokumentumban nincsenek megjegyzések", + "textNoContextual": "Térköz hozzáadása azonos stílusú bekezdések között", + "textNoKeepLines": "Ne tartsa egyben a sorokat", + "textNoKeepNext": "Ne tartsa meg a következőnél", + "textNot": "Nem", + "textNoWidow": "Nincs özvegy sor ellenőrzés", + "textNum": "Számozás módosítása", + "textOk": "OK", + "textOriginal": "Eredeti", + "textParaDeleted": "Bekezdés törölve", + "textParaFormatted": "Formázott bekezdés", + "textParaInserted": "Bekezdés beillesztve", + "textParaMoveFromDown": "Lefelé mozdítva:", + "textParaMoveFromUp": "Felfelé mozdítva:", + "textParaMoveTo": "Áthelyezve:", + "textPosition": "Pozíció", + "textReject": "Elvetés", + "textRejectAllChanges": "Minden módosítást elvetése", + "textReopen": "Újranyitás", + "textResolve": "Megold", + "textReview": "Véleményezés", + "textReviewChange": "Változtatás véleményezése", + "textRight": "Jobbra igazít", + "textShape": "Alakzat", + "textShd": "Háttérszín", + "textSmallCaps": "Kisbetűk", + "textSpacing": "Térköz", + "textSpacingAfter": "Térköz utána", + "textSpacingBefore": "Térköz előtte", + "textStrikeout": "Áthúzás", + "textSubScript": "Alsó index", + "textSuperScript": "Felső index", + "textTableChanged": "Táblázatbeállítások megváltoztatva", + "textTableRowsAdd": "Táblázatsorok hozzáadva", + "textTableRowsDel": "Táblázatsorok törölve", + "textTabs": "Lapok módosítása", + "textTrackChanges": "Módosítások követése", + "textTryUndoRedo": "A Visszavonás/Újra funkciók le vannak tiltva a Gyors társszerkesztés módban.", + "textUnderline": "Aláhúzott", + "textUsers": "Felhasználók", + "textWidow": "Özvegy sor" }, "ThemeColorPalette": { - "textCustomColors": "Custom Colors", - "textStandartColors": "Standard Colors", - "textThemeColors": "Theme Colors" + "textCustomColors": "Egyéni színek", + "textStandartColors": "Alapértelmezett színek", + "textThemeColors": "Téma színek" }, "HighlightColorPalette": { "textNoFill": "No Fill" } }, "ContextMenu": { - "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add comment", - "menuAddLink": "Add link", - "menuCancel": "Cancel", - "menuDelete": "Delete", - "menuDeleteTable": "Delete Table", - "menuEdit": "Edit", - "menuMerge": "Merge", - "menuMore": "More", - "menuOpenLink": "Open Link", - "menuReview": "Review", - "menuReviewChange": "Review Change", - "menuSplit": "Split", - "menuViewComment": "View Comment", - "textColumns": "Columns", - "textCopyCutPasteActions": "Copy, Cut and Paste Actions", - "textDoNotShowAgain": "Don't show again", - "textRows": "Rows", - "menuStartNewList": "Start new list", - "menuStartNumberingFrom": "Set numbering value", - "menuContinueNumbering": "Continue numbering", - "menuSeparateList": "Separate list", - "menuJoinList": "Join to previous list", + "errorCopyCutPaste": "A másolás, kivágás és beillesztés a helyi menü segítségével csak az aktuális fájlon belül történik.", + "menuAddComment": "Megjegyzés hozzáadása", + "menuAddLink": "Link hozzáadása", + "menuCancel": "Mégse", + "menuContinueNumbering": "Számozás folytatása", + "menuDelete": "Törlés", + "menuDeleteTable": "Táblázat törlése", + "menuEdit": "Szerkesztés", + "menuJoinList": "Csatlakozás az előző listához", + "menuMerge": "Összevon", + "menuMore": "Több", + "menuOpenLink": "Link megnyitása", + "menuReview": "Véleményezés", + "menuReviewChange": "Változtatás véleményezése", + "menuSeparateList": "Külön lista", + "menuSplit": "Szétválaszt", + "menuStartNewList": "Új lista indítása", + "menuStartNumberingFrom": "Számozási érték beállítása", + "menuViewComment": "Megjegyzés megtekintése", + "textCancel": "Mégse", + "textColumns": "Oszlopok", + "textCopyCutPasteActions": "Másolás, kivágás és beillesztés", + "textDoNotShowAgain": "Ne mutassa újra", + "textNumberingValue": "Számozás értéke", "textOk": "OK", - "textCancel": "Cancel", - "textNumberingValue": "Numbering Value" + "textRows": "Sorok" }, "Edit": { - "notcriticalErrorTitle": "Warning", - "textActualSize": "Actual size", - "textAddCustomColor": "Add custom color", - "textAdditional": "Additional", - "textAdditionalFormatting": "Additional formatting", - "textAddress": "Address", - "textAdvanced": "Advanced", - "textAdvancedSettings": "Advanced settings", - "textAfter": "After", - "textAlign": "Align", - "textAllCaps": "All caps", - "textAllowOverlap": "Allow overlap", - "textAuto": "Auto", - "textAutomatic": "Automatic", - "textBack": "Back", - "textBackground": "Background", - "textBandedColumn": "Banded column", - "textBandedRow": "Banded row", - "textBefore": "Before", - "textBehind": "Behind", - "textBorder": "Border", - "textBringToForeground": "Bring to foreground", - "textBullets": "Bullets", - "textBulletsAndNumbers": "Bullets & Numbers", - "textCellMargins": "Cell Margins", - "textChart": "Chart", - "textClose": "Close", - "textColor": "Color", - "textContinueFromPreviousSection": "Continue from previous section", - "textCustomColor": "Custom Color", - "textDifferentFirstPage": "Different first page", - "textDifferentOddAndEvenPages": "Different odd and even pages", - "textDisplay": "Display", - "textDistanceFromText": "Distance from text", - "textDoubleStrikethrough": "Double Strikethrough", - "textEditLink": "Edit Link", - "textEffects": "Effects", - "textEmptyImgUrl": "You need to specify image URL.", - "textFill": "Fill", - "textFirstColumn": "First Column", - "textFirstLine": "FirstLine", - "textFlow": "Flow", - "textFontColor": "Font Color", - "textFontColors": "Font Colors", - "textFonts": "Fonts", - "textFooter": "Footer", - "textHeader": "Header", - "textHeaderRow": "Header Row", - "textHighlightColor": "Highlight Color", - "textHyperlink": "Hyperlink", - "textImage": "Image", - "textImageURL": "Image URL", - "textInFront": "In Front", - "textInline": "Inline", - "textKeepLinesTogether": "Keep Lines Together", - "textKeepWithNext": "Keep with Next", - "textLastColumn": "Last Column", - "textLetterSpacing": "Letter Spacing", - "textLineSpacing": "Line Spacing", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkToPrevious": "Link to Previous", - "textMoveBackward": "Move Backward", - "textMoveForward": "Move Forward", - "textMoveWithText": "Move with Text", - "textNone": "None", - "textNoStyles": "No styles for this type of charts.", - "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textOpacity": "Opacity", - "textOptions": "Options", - "textOrphanControl": "Orphan Control", - "textPageBreakBefore": "Page Break Before", - "textPageNumbering": "Page Numbering", - "textParagraph": "Paragraph", - "textParagraphStyles": "Paragraph Styles", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", + "notcriticalErrorTitle": "Figyelmeztetés", + "textActualSize": "Aktuális méret", + "textAddCustomColor": "Egyéni szín hozzáadása", + "textAdditional": "További", + "textAdditionalFormatting": "További formázás", + "textAddress": "Cím", + "textAdvanced": "Haladó", + "textAdvancedSettings": "Haladó beállítások", + "textAfter": "Utána", + "textAlign": "Rendez", + "textAllCaps": "Minden nagybetű", + "textAllowOverlap": "Átfedés engedélyezése", + "textAuto": "Automatikus", + "textAutomatic": "Automatikus", + "textBack": "Vissza", + "textBackground": "Háttér", + "textBandedColumn": "Sávos oszlop", + "textBandedRow": "Sávos sor", + "textBefore": "Előtt", + "textBehind": "Mögött", + "textBorder": "Szegély", + "textBringToForeground": "Előtérbe hoz", + "textBullets": "Pontok", + "textBulletsAndNumbers": "Pontok és Számok", + "textCellMargins": "Cellamargók", + "textChart": "Diagram", + "textClose": "Bezár", + "textColor": "Szín", + "textContinueFromPreviousSection": "Folytatás az előző szakasztól", + "textCustomColor": "Egyéni szín", + "textDifferentFirstPage": "Eltérő első oldal", + "textDifferentOddAndEvenPages": "Páros és páratlan oldalak eltérőek", + "textDisplay": "Megjelenít", + "textDistanceFromText": "Távolság a szövegtől", + "textDoubleStrikethrough": "Duplán áthúzott", + "textEditLink": "Hivatkozás szerkesztése", + "textEffects": "Effektek", + "textEmptyImgUrl": "Meg kell adni a kép hivatkozását.", + "textFill": "Kitölt", + "textFirstColumn": "Első oszlop", + "textFirstLine": "Első sor", + "textFlow": "Folyam", + "textFontColor": "Betűszín", + "textFontColors": "Betűszínek", + "textFonts": "Betűtípusok", + "textFooter": "Lábléc", + "textHeader": "Fejléc", + "textHeaderRow": "Fejléc sor", + "textHighlightColor": "Kiemelő szín", + "textHyperlink": "Hiperhivatkozás", + "textImage": "Kép", + "textImageURL": "Kép URL", + "textInFront": "Előtt", + "textInline": "Sorban", + "textKeepLinesTogether": "Sorok egyben tartása", + "textKeepWithNext": "Együtt a következővel", + "textLastColumn": "Utolsó oszlop", + "textLetterSpacing": "Betűtávolság", + "textLineSpacing": "Sortávolság", + "textLink": "Hivatkozás", + "textLinkSettings": "Hivatkozás beállítások", + "textLinkToPrevious": "Korábbira hivatkozás", + "textMoveBackward": "Hátra mozgat", + "textMoveForward": "Előre mozgat", + "textMoveWithText": "Szöveggel mozgat", + "textNone": "Egyik sem", + "textNoStyles": "Nincsenek stílusok az ilyen típusú diagramokhoz.", + "textNotUrl": "Ennek a mezőnek URL formátumúnak kell lennie, pl.: „http://www.pelda.hu”", + "textNumbers": "Számok", + "textOpacity": "Áttetszőség", + "textOptions": "Beállítások", + "textOrphanControl": "Árva sor", + "textPageBreakBefore": "Oldaltörés Előtte", + "textPageNumbering": "Oldalszámozás", + "textParagraph": "Bekezdés", + "textParagraphStyles": "Bekezdés stílusok", + "textPictureFromLibrary": "Kép a könyvtárból", + "textPictureFromURL": "Kép URL-en keresztül", "textPt": "pt", - "textRemoveChart": "Remove Chart", - "textRemoveImage": "Remove Image", - "textRemoveLink": "Remove Link", - "textRemoveShape": "Remove Shape", - "textRemoveTable": "Remove Table", - "textReorder": "Reorder", - "textRepeatAsHeaderRow": "Repeat as Header Row", - "textReplace": "Replace", - "textReplaceImage": "Replace Image", - "textResizeToFitContent": "Resize to Fit Content", - "textScreenTip": "Screen Tip", - "textSelectObjectToEdit": "Select object to edit", - "textSendToBackground": "Send to Background", - "textSettings": "Settings", - "textShape": "Shape", - "textSize": "Size", - "textSmallCaps": "Small Caps", - "textSpaceBetweenParagraphs": "Space Between Paragraphs", - "textSquare": "Square", - "textStartAt": "Start at", - "textStrikethrough": "Strikethrough", - "textStyle": "Style", - "textStyleOptions": "Style Options", - "textSubscript": "Subscript", - "textSuperscript": "Superscript", - "textTable": "Table", - "textTableOptions": "Table Options", - "textText": "Text", - "textThrough": "Through", - "textTight": "Tight", - "textTopAndBottom": "Top and Bottom", - "textTotalRow": "Total Row", - "textType": "Type", - "textWrap": "Wrap", - "textNumbers": "Numbers", - "textDesign": "Design", - "textSu": "Su", - "textMo": "Mo", - "textTu": "Tu", - "textWe": "We", - "textTh": "Th", - "textFr": "Fr", - "textSa": "Sa", - "textJanuary": "January", - "textFebruary": "February", - "textMarch": "March", + "textRemoveChart": "Diagram eltávolítása", + "textRemoveImage": "Kép eltávolítása", + "textRemoveLink": "Link eltávolítása", + "textRemoveShape": "Alakzat eltávolítása", + "textRemoveTable": "Táblázat eltávolítása", + "textReorder": "Újrarendez", + "textRepeatAsHeaderRow": "Ismételje meg fejlécként", + "textReplace": "Cserél", + "textReplaceImage": "Kép cseréje", + "textResizeToFitContent": "Átméretez, hogy illeszkedjen a tartalom", + "textScreenTip": "Képernyőtipp", + "textSelectObjectToEdit": "Szerkeszteni kívánt objektumot kiválasztása", + "textSendToBackground": "Háttérbe küld", + "textSettings": "Beállítások", + "textShape": "Alakzat", + "textSize": "Méret", + "textSmallCaps": "Kisbetűk", + "textSpaceBetweenParagraphs": "Bekezdések térköze", + "textSquare": "Négyzet", + "textStartAt": "Kezdés", + "textStrikethrough": "Áthúzott", + "textStyle": "Stílus", + "textStyleOptions": "Stílusbeállítások", + "textSubscript": "Alsó index", + "textSuperscript": "Felső index", + "textTable": "Táblázat", + "textTableOptions": "Táblázat beállítások", + "textText": "Szöveg", + "textThrough": "Keresztül", + "textTight": "Szűken", + "textTopAndBottom": "Felül - alul", + "textTotalRow": "Összes sor", + "textType": "Típus", + "textWrap": "Tördel", "textApril": "April", - "textMay": "May", - "textJune": "June", - "textJuly": "July", "textAugust": "August", - "textSeptember": "September", - "textOctober": "October", - "textNovember": "November", "textDecember": "December", + "textDesign": "Design", "textEmpty": "Empty", - "textOk": "Ok" + "textFebruary": "February", + "textFr": "Fr", + "textJanuary": "January", + "textJuly": "July", + "textJune": "June", + "textMarch": "March", + "textMay": "May", + "textMo": "Mo", + "textNovember": "November", + "textOctober": "October", + "textOk": "Ok", + "textSa": "Sa", + "textSeptember": "September", + "textSu": "Su", + "textTh": "Th", + "textTu": "Tu", + "textWe": "We" }, "Error": { - "convertationTimeoutText": "Conversion timeout exceeded.", - "criticalErrorExtText": "Press 'OK' to go back to the document list.", - "criticalErrorTitle": "Error", - "downloadErrorText": "Download failed.", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorBadImageUrl": "Image url is incorrect", - "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
When you click OK, you will be prompted to download the document.", - "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", - "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", - "errorDataRange": "Incorrect data range.", - "errorDefaultMessage": "Error code: %1", - "errorEditingDownloadas": "An error occurred during the work with the document.
Download document to save the file backup copy locally.", - "errorFilePassProtect": "The file is password protected and could not be opened.", - "errorFileSizeExceed": "The file size exceeds your server limit.
Please, contact your admin.", - "errorKeyEncrypt": "Unknown key descriptor", - "errorKeyExpire": "Key descriptor expired", - "errorMailMergeLoadFile": "Loading failed", - "errorMailMergeSaveFile": "Merge failed.", - "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", - "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", - "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", - "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
opening price, max price, min price, closing price.", - "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", - "errorUserDrop": "The file can't be accessed right now.", - "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download it until the connection is restored and the page is reloaded.", - "notcriticalErrorTitle": "Warning", - "openErrorText": "An error has occurred while opening the file", - "saveErrorText": "An error has occurred while saving the file", - "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", - "splitDividerErrorText": "The number of rows must be a divisor of %1", - "splitMaxColsErrorText": "The number of columns must be less than %1", - "splitMaxRowsErrorText": "The number of rows must be less than %1", - "unknownErrorText": "Unknown error.", - "uploadImageExtMessage": "Unknown image format.", - "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "convertationTimeoutText": "Időtúllépés az átalakítás során.", + "criticalErrorExtText": "Nyomja meg az „OK” gombot a dokumentumlistához való visszatéréshez.", + "criticalErrorTitle": "Hiba", + "downloadErrorText": "Sikertelen letöltés.", + "errorAccessDeny": "Olyan műveletet próbál végrehajtani, amelyhez nincs joga.
Kérjük, forduljon a rendszergazdához.", + "errorBadImageUrl": "Hibás kép URL", + "errorConnectToServer": "Ezt a dokumentumot nem lehet menteni. Ellenőrizze a kapcsolat beállításait, vagy forduljon a rendszergazdához.
Ha az OK gombra kattint, a rendszer felkéri a dokumentum letöltésére.", + "errorDatabaseConnection": "Külső hiba.
Adatbázis kapcsolati hiba. Kérem vegye igénybe támogatásunkat.", + "errorDataEncrypted": "Titkosított változások érkeztek, melyek feloldása sikertelen.", + "errorDataRange": "Hibás adattartomány.", + "errorDefaultMessage": "Hibakód: %1", + "errorEditingDownloadas": "Hiba történt a dokumentummal végzett munka során.
Töltse le a dokumentumot a fájl biztonsági másolatának helyi mentéséhez.", + "errorFilePassProtect": "A fájl jelszóval védett, és nem lehetett megnyitni.", + "errorFileSizeExceed": "A fájl mérete meghaladja a szerver korlátját.
Kérjük, forduljon a rendszergazdához.", + "errorKeyEncrypt": "Ismeretlen kulcsleíró", + "errorKeyExpire": "Lejárt kulcsleíró", + "errorLoadingFont": "A betűtípusok nincsenek betöltve.
Kérjük forduljon a dokumentumszerver rendszergazdájához.", + "errorMailMergeLoadFile": "Betöltés nem sikerült", + "errorMailMergeSaveFile": "Sikertelen összevonás.", + "errorSessionAbsolute": "A dokumentumszerkesztési munkamenet lejárt. Kérem, töltse újra az oldalt.", + "errorSessionIdle": "A dokumentumot hosszú ideje nem szerkesztették. Kérem, töltse újra az oldalt.", + "errorSessionToken": "A szerverrel való kapcsolat megszakadt. Kérjük, töltse újra az oldalt.", + "errorStockChart": "Helytelen sorsorrend. Részvénydiagram felépítéséhez helyezze el az adatokat a lapon a következő sorrendben:
nyitóár, max. ár, min. ár, záróár.", + "errorUpdateVersionOnDisconnect": "Az internetkapcsolat helyreállt és a fájl verziója megváltozott.
Mielőtt folytatná a munkát, töltse le a fájlt vagy másolja át annak tartalmát megbizonyosodva arról, hogy semmi sem veszett el, végül töltse újra ezt az oldalt.", + "errorUserDrop": "A fájl jelenleg nem érhető el.", + "errorUsersExceed": "Túllépte a csomagja által engedélyezett felhasználók számát", + "errorViewerDisconnect": "A kapcsolat megszakadt. Továbbra is megtekintheti a dokumentumot,
de nem tudja letölteni vagy kinyomtatni, amíg a kapcsolat vissza nem áll és az oldal újra be nem töltődik.", + "notcriticalErrorTitle": "Figyelmeztetés", + "openErrorText": "Hiba történt a fájl megnyitásakor", + "saveErrorText": "Hiba történt a fájl mentése közben", + "scriptLoadError": "A kapcsolat túl lassú, egyes összetevőket nem sikerült betölteni. Kérem, töltse újra az oldalt.", + "splitDividerErrorText": "A soroknak számának a(z) %1 osztójának kell lennie", + "splitMaxColsErrorText": "Az oszlopok számának kevesebbnek kell lennie mint %1", + "splitMaxRowsErrorText": "A soroknak számának kevesebbnek kell lennie, mint %1", + "unknownErrorText": "Ismeretlen hiba.", + "uploadImageExtMessage": "Ismeretlen képformátum.", + "uploadImageFileCountMessage": "Nincs kép feltöltve.", + "uploadImageSizeMessage": "A kép túl nagy. A maximális méret 25 MB." }, "LongActions": { - "applyChangesTextText": "Loading data...", - "applyChangesTitleText": "Loading Data", - "downloadMergeText": "Downloading...", - "downloadMergeTitle": "Downloading", - "downloadTextText": "Downloading document...", - "downloadTitleText": "Downloading Document", - "loadFontsTextText": "Loading data...", - "loadFontsTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadFontTitleText": "Loading Data", - "loadImagesTextText": "Loading images...", - "loadImagesTitleText": "Loading Images", - "loadImageTextText": "Loading image...", - "loadImageTitleText": "Loading Image", - "loadingDocumentTextText": "Loading document...", - "loadingDocumentTitleText": "Loading document", - "mailMergeLoadFileText": "Loading Data Source...", - "mailMergeLoadFileTitle": "Loading Data Source", - "openTextText": "Opening document...", - "openTitleText": "Opening Document", - "printTextText": "Printing document...", - "printTitleText": "Printing Document", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "saveTextText": "Saving document...", - "saveTitleText": "Saving Document", - "sendMergeText": "Sending Merge...", - "sendMergeTitle": "Sending Merge", - "textLoadingDocument": "Loading document", - "txtEditingMode": "Set editing mode...", - "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait..." + "applyChangesTextText": "Adatok betöltése...", + "applyChangesTitleText": "Adatok betöltése", + "downloadMergeText": "Letöltés...", + "downloadMergeTitle": "Letöltés", + "downloadTextText": "Dokumentum letöltése...", + "downloadTitleText": "Dokumentum letöltése", + "loadFontsTextText": "Adatok betöltése...", + "loadFontsTitleText": "Adatok betöltése", + "loadFontTextText": "Adatok betöltése...", + "loadFontTitleText": "Adatok betöltése", + "loadImagesTextText": "Képek betöltése...", + "loadImagesTitleText": "Képek betöltése", + "loadImageTextText": "Kép betöltése...", + "loadImageTitleText": "Kép betöltése", + "loadingDocumentTextText": "Dokumentum betöltése...", + "loadingDocumentTitleText": "Dokumentum betöltése", + "mailMergeLoadFileText": "Adatforrás betöltése...", + "mailMergeLoadFileTitle": "Adatforrás betöltése", + "openTextText": "Dokumentum megnyitása...", + "openTitleText": "Dokumentum megnyitása", + "printTextText": "Dokumentum nyomtatása...", + "printTitleText": "Dokumentum nyomtatása", + "savePreparingText": "Felkészülés a mentésre", + "savePreparingTitle": "Felkészülés a mentésre. Kérem várjon...", + "saveTextText": "Dokumentum mentése...", + "saveTitleText": "Dokumentum mentése", + "sendMergeText": "Összevonás küldése...", + "sendMergeTitle": "Összevonás küldése", + "textLoadingDocument": "Dokumentum betöltése", + "txtEditingMode": "Szerkesztési mód beállítása...", + "uploadImageTextText": "Kép feltöltése...", + "uploadImageTitleText": "Kép feltöltése", + "waitText": "Kérjük várjon..." }, "Main": { - "criticalErrorTitle": "Error", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your administrator.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "errorProcessSaveResult": "Saving failed.", - "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "notcriticalErrorTitle": "Warning", + "criticalErrorTitle": "Hiba", + "errorAccessDeny": "Olyan műveletet próbál végrehajtani, amelyhez nincs jogosultsága.
Kérjük, forduljon rendszergazdájához.", + "errorOpensource": "Az ingyenes közösségi verzió használatával a dokumentumokat csak megtekintésre nyithatja meg. A mobil webszerkesztők eléréséhez kereskedelmi licenc szükséges.", + "errorProcessSaveResult": "Sikertelen mentés.", + "errorServerVersion": "A szerkesztő verziója frissült. Az oldal újratöltésre kerül a módosítások alkalmazásához.", + "errorUpdateVersion": "A dokumentum verziója megváltozott. Az oldal újratöltődik.", + "leavePageText": "Nem mentett módosításai vannak. Kattintson a „Maradj ezen az oldalon” gombra az automatikus mentés megvárásához. Kattintson a \"Hagyja el ezt az oldalt\" gombra az összes nem mentett módosítás elvetéséhez.", + "notcriticalErrorTitle": "Figyelmeztetés", "SDK": { - " -Section ": " -Section ", - "above": "above", - "below": "below", - "Caption": "Caption", - "Choose an item": "Choose an item", - "Click to load image": "Click to load image", - "Current Document": "Current Document", - "Diagram Title": "Chart Title", - "endnote text": "Endnote Text", - "Enter a date": "Enter a date", - "Error! Bookmark not defined": "Error! Bookmark not defined.", - "Error! Main Document Only": "Error! Main Document Only.", - "Error! No text of specified style in document": "Error! No text of specified style in document.", - "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", - "Even Page ": "Even Page ", - "First Page ": "First Page ", - "Footer": "Footer", - "footnote text": "Footnote Text", - "Header": "Header", - "Heading 1": "Heading 1", - "Heading 2": "Heading 2", - "Heading 3": "Heading 3", - "Heading 4": "Heading 4", - "Heading 5": "Heading 5", - "Heading 6": "Heading 6", - "Heading 7": "Heading 7", - "Heading 8": "Heading 8", - "Heading 9": "Heading 9", - "Hyperlink": "Hyperlink", - "Index Too Large": "Index Too Large", - "Intense Quote": "Intense Quote", - "Is Not In Table": "Is Not In Table", - "List Paragraph": "List Paragraph", - "Missing Argument": "Missing Argument", - "Missing Operator": "Missing Operator", - "No Spacing": "No Spacing", - "No table of contents entries found": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents.", - "No table of figures entries found": "No table of figures entries found.", - "None": "None", - "Normal": "Normal", - "Number Too Large To Format": "Number Too Large To Format", - "Odd Page ": "Odd Page ", - "Quote": "Quote", - "Same as Previous": "Same as Previous", - "Series": "Series", - "Subtitle": "Subtitle", - "Syntax Error": "Syntax Error", - "Table Index Cannot be Zero": "Table Index Cannot be Zero", - "Table of Contents": "Table of Contents", - "table of figures": "Table of figures", - "The Formula Not In Table": "The Formula Not In Table", - "Title": "Title", - "TOC Heading": "TOC Heading", - "Type equation here": "Type equation here", - "Undefined Bookmark": "Undefined Bookmark", - "Unexpected End of Formula": "Unexpected End of Formula", - "X Axis": "X Axis XAS", - "Y Axis": "Y Axis", - "Your text here": "Your text here", - "Zero Divide": "Zero Divide" + " -Section ": "-Szakasz", + "above": "felett", + "below": "alatt", + "Caption": "Felirat", + "Choose an item": "Válassz egy elemet", + "Click to load image": "Kattintson a kép betöltéséhez", + "Current Document": "Aktuális dokumentum", + "Diagram Title": "Diagramcím", + "endnote text": "Végjegyzet szövege", + "Enter a date": "Adjon meg egy dátumot", + "Error! Bookmark not defined": "Hiba! A könyvjelző nincs megadva.", + "Error! Main Document Only": "Hiba! Csak a fő dokumentum.", + "Error! No text of specified style in document": "Hiba! Nincs a megadott stílusnak megfelelő szöveg a dokumentumban.", + "Error! Not a valid bookmark self-reference": "Hiba! Nem valós könyvjelző referencia.", + "Even Page ": "Páros oldal", + "First Page ": "Első oldal", + "Footer": "Lábléc", + "footnote text": "Lábjegyzet szövege", + "Header": "Fejléc", + "Heading 1": "Címsor 1", + "Heading 2": "Címsor 2", + "Heading 3": "Címsor 3", + "Heading 4": "Címsor 4", + "Heading 5": "Címsor 5", + "Heading 6": "Címsor 6", + "Heading 7": "Címsor 7", + "Heading 8": "Címsor 8", + "Heading 9": "Címsor 9", + "Hyperlink": "Hiperhivatkozás", + "Index Too Large": "Az index túl nagy", + "Intense Quote": "Erőteljes idézet", + "Is Not In Table": "nincs benne a táblázatban", + "List Paragraph": "Lista bekezdés", + "Missing Argument": "Hiányzó paraméter", + "Missing Operator": "Hiányzó operátor", + "No Spacing": "Nincs térköz", + "No table of contents entries found": "Nincsenek címsorok a dokumentumban. Vigyen fel egy fejlécstílust a szövegre, hogy az megjelenjen a tartalomjegyzékben.", + "No table of figures entries found": "Nem található bejegyzéseket tartalmazó táblázat.", + "None": "Egyik sem", + "Normal": "Normál", + "Number Too Large To Format": "Túl nagy szám a formázáshoz", + "Odd Page ": "Páratlan oldal", + "Quote": "Idézet", + "Same as Previous": "Az előzővel azonos", + "Series": "Sorozatok", + "Subtitle": "Alcím", + "Syntax Error": "Szintaktikai hiba", + "Table Index Cannot be Zero": "Táblázat index nem lehet nulla", + "Table of Contents": "Tartalomjegyzék", + "table of figures": "Ábrajegyzék", + "The Formula Not In Table": "A függvény nincs a táblázatban", + "Title": "Cím", + "TOC Heading": "Tartalomjegyzék címsor", + "Type equation here": "Írja be ide az egyenletet", + "Undefined Bookmark": "Ismeretlen könyvjelző", + "Unexpected End of Formula": "Váratlan függvény vég", + "X Axis": "X tengely XAS", + "Y Axis": "Y tengely", + "Your text here": "Írja a szöveget ide", + "Zero Divide": "Nullával osztás" }, - "textAnonymous": "Anonymous", - "textBuyNow": "Visit website", - "textClose": "Close", - "textContactUs": "Contact sales", - "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", - "textGuest": "Guest", - "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", - "textNo": "No", - "textNoLicenseTitle": "License limit reached", - "textPaidFeature": "Paid feature", - "textRemember": "Remember my choice", - "textYes": "Yes", - "titleLicenseExp": "License expired", - "titleServerVersion": "Editor updated", - "titleUpdateVersion": "Version changed", - "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", - "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", - "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", - "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
Please contact your administrator to get full access", - "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", - "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", - "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", - "warnProcessRightsChange": "You don't have permission to edit this file.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textAnonymous": "Névtelen", + "textBuyNow": "Weboldal megnyitása", + "textClose": "Bezár", + "textContactUs": "Kapcsolatba lépés az értékesítéssel", + "textCustomLoader": "Sajnáljuk, nem jogosult a betöltő cseréjére. Árajánlatért forduljon értékesítési osztályunkhoz.", + "textGuest": "Vendég", + "textHasMacros": "A fájl automatikus makrókat tartalmaz.
Szeretne makrókat futtatni?", + "textNo": "Nem", + "textNoLicenseTitle": "Elérte a licenckorlátot", + "textPaidFeature": "Fizetett funkció", + "textRemember": "Választás megjegyzése", + "textYes": "Igen", + "titleLicenseExp": "Lejárt licenc", + "titleServerVersion": "Szerkesztő frissítve", + "titleUpdateVersion": "A verzió megváltozott", + "warnLicenseExceeded": "Elérte a(z) %1 szerkesztővel való egyidejű kapcsolódási korlátot. Ez a dokumentum csak megtekintésre nyílik meg. További információért forduljon rendszergazdájához.", + "warnLicenseExp": "Az ön licence lejárt. Kérjük, újítsa azt meg aztán frissítse az oldalt.", + "warnLicenseLimitedNoAccess": "Licenc lejárt. Nincs hozzáférése a dokumentumszerkesztési funkciókhoz. Kérjük, forduljon a rendszergazdához.", + "warnLicenseLimitedRenewed": "A licencet meg kell újítani. Korlátozott hozzáférése van a dokumentumszerkesztési funkciókhoz.
A teljes hozzáférés érdekében forduljon rendszergazdájához", + "warnLicenseUsersExceeded": "Elérte a(z) %1 szerkesztőhöz tartozó felhasználói korlátját. További információért forduljon rendszergazdájához.", + "warnNoLicense": "Elérte a(z) %1 szerkesztővel való egyidejű kapcsolódási korlátot. Ez a dokumentum csak megtekintésre nyílik meg. Lépjen kapcsolatba a(z) %1 értékesítési csapattal a személyes frissítés feltételekért.", + "warnNoLicenseUsers": "Elérte a(z) %1 szerkesztőhöz tartozó felhasználói korlátját. Vegye fel a kapcsolatot a(z) %1 értékesítési csapattal a személyes frissítési feltételekért.", + "warnProcessRightsChange": "Nincs engedélye a fájl szerkesztésére.", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" }, "Settings": { - "advDRMOptions": "Protected File", - "advDRMPassword": "Password", - "advTxtOptions": "Choose TXT Options", - "closeButtonText": "Close File", - "notcriticalErrorTitle": "Warning", - "textAbout": "About", - "textApplication": "Application", - "textApplicationSettings": "Application Settings", - "textAuthor": "Author", - "textBack": "Back", - "textBottom": "Bottom", - "textCancel": "Cancel", - "textCaseSensitive": "Case Sensitive", - "textCentimeter": "Centimeter", - "textCollaboration": "Collaboration", - "textColorSchemes": "Color Schemes", - "textComment": "Comment", - "textComments": "Comments", - "textCommentsDisplay": "Comments Display", - "textCreated": "Created", - "textCustomSize": "Custom Size", - "textDisableAll": "Disable All", - "textDisableAllMacrosWithNotification": "Disable all macros with notification", - "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", - "textDocumentInfo": "Document Info", - "textDocumentSettings": "Document Settings", - "textDocumentTitle": "Document Title", - "textDone": "Done", - "textDownload": "Download", - "textDownloadAs": "Download As", - "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", - "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", - "textEnableAll": "Enable All", - "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", - "textEncoding": "Encoding", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", - "textFindAndReplaceAll": "Find and Replace All", - "textFormat": "Format", - "textHelp": "Help", - "textHiddenTableBorders": "Hidden Table Borders", - "textHighlightResults": "Highlight Results", - "textInch": "Inch", - "textLandscape": "Landscape", - "textLastModified": "Last Modified", - "textLastModifiedBy": "Last Modified By", - "textLeft": "Left", - "textLoading": "Loading...", - "textLocation": "Location", - "textMacrosSettings": "Macros Settings", - "textMargins": "Margins", - "textMarginsH": "Top and bottom margins are too high for a given page height", - "textMarginsW": "Left and right margins are too wide for a given page width", - "textNoCharacters": "Nonprinting Characters", - "textNoTextFound": "Text not found", - "textOpenFile": "Enter a password to open the file", - "textOrientation": "Orientation", - "textOwner": "Owner", - "textPoint": "Point", - "textPortrait": "Portrait", - "textPrint": "Print", - "textReaderMode": "Reader Mode", - "textReplace": "Replace", - "textReplaceAll": "Replace All", - "textResolvedComments": "Resolved Comments", - "textRight": "Right", - "textSearch": "Search", - "textSettings": "Settings", - "textShowNotification": "Show Notification", - "textSpellcheck": "Spell Checking", - "textStatistic": "Statistic", - "textSubject": "Subject", - "textTitle": "Title", - "textTop": "Top", - "textUnitOfMeasurement": "Unit Of Measurement", - "textUploaded": "Uploaded", - "txtIncorrectPwd": "Password is incorrect", - "txtProtected": "Once you enter the password and open the file, the current password will be reset", + "advDRMOptions": "Védett fájl", + "advDRMPassword": "Jelszó", + "advTxtOptions": "TXT beállítások kiválasztása", + "closeButtonText": "Fájl bezárása", + "notcriticalErrorTitle": "Figyelmeztetés", + "textAbout": "Névjegy", + "textApplication": "Alkalmazás", + "textApplicationSettings": "Alkalmazás beállítások", + "textAuthor": "Szerző", + "textBack": "Vissza", + "textBottom": "Alul", + "textCancel": "Mégse", + "textCaseSensitive": "Kis-nagybetű érzékeny", + "textCentimeter": "Centiméter", + "textChooseEncoding": "Válassza a Kódolás lehetőséget", + "textChooseTxtOptions": "TXT beállítások kiválasztása", + "textCollaboration": "Együttműködés", + "textColorSchemes": "Szín sémák", + "textComment": "Megjegyzés", + "textComments": "Megjegyzések", + "textCommentsDisplay": "Megjegyzések megjelenítése", + "textCreated": "Létrehozva", + "textCustomSize": "Egyéni méret", + "textDisableAll": "Összes letiltása", + "textDisableAllMacrosWithNotification": "Tiltsa le az összes makrót értesítéssel", + "textDisableAllMacrosWithoutNotification": "Tiltsa le az összes makrót értesítés nélkül", + "textDocumentInfo": "Dokumentum adatai", + "textDocumentSettings": "Dokumentum beállítások", + "textDocumentTitle": "Dokumentum címe", + "textDone": "Kész", + "textDownload": "Letöltés", + "textDownloadAs": "Letöltés másként", + "textDownloadRtf": "Ha folytatja a mentést ebben a formátumban, a formázás egy része elveszhet. Biztos, hogy akarja folytatni?", + "textDownloadTxt": "Ha folytatja a mentést ebben a formátumban, a szöveg kivételével minden funkció elvész. Biztos, hogy akarja folytatni?", + "textEnableAll": "Összes engedélyezése", + "textEnableAllMacrosWithoutNotification": "Engedélyezze az összes makrót értesítés nélkül", + "textEncoding": "Kódolás", + "textFind": "Keresés", + "textFindAndReplace": "Keresés és csere", + "textFindAndReplaceAll": "Összes keresése és cseréje", + "textFormat": "Formátum", + "textHelp": "Súgó", + "textHiddenTableBorders": "Rejtett táblázat szegélyek", + "textHighlightResults": "Eredmények kiemelése", + "textInch": "Hüvelyk", + "textLandscape": "Fekvő", + "textLastModified": "Utoljára módosított", + "textLastModifiedBy": "Utoljára módosította", + "textLeft": "Bal", + "textLoading": "Betöltés...", + "textLocation": "Hely", + "textMacrosSettings": "Makró beállítások", + "textMargins": "Margók", + "textMarginsH": "A felső és alsó margók túl magasak az adott oldalmagassághoz", + "textMarginsW": "A bal és a jobb margó túl széles egy adott oldalszélességhez", + "textNoCharacters": "Nem nyomtatható karakterek", + "textNoTextFound": "A szöveg nem található", + "textOk": "OK", + "textOpenFile": "Írja be a megnyitáshoz szükséges jelszót", + "textOrientation": "Tájolás", + "textOwner": "Tulajdonos", + "textPages": "Oldalak", + "textParagraphs": "Bekezdések", + "textPoint": "Pont", + "textPortrait": "Portré", + "textPrint": "Nyomtatás", + "textReaderMode": "Olvasási mód", + "textReplace": "Cserél", + "textReplaceAll": "Mindent lecserél", + "textResolvedComments": "Megoldott megjegyzések", + "textRight": "Jobb", + "textSearch": "Keresés", + "textSettings": "Beállítások", + "textShowNotification": "Értesítés megjelenítése", + "textSpaces": "Szőközök", + "textSpellcheck": "Helyesírás-ellenőrzés", + "textStatistic": "Statisztika", + "textSubject": "Tárgy", + "textSymbols": "Szimbólumok", + "textTitle": "Cím", + "textTop": "Felső", + "textUnitOfMeasurement": "Mértékegység", + "textUploaded": "Feltöltve", + "textWords": "Szavak", + "txtDownloadTxt": "TXT letöltése", + "txtIncorrectPwd": "Érvénytelen jelszó", + "txtOk": "OK", + "txtProtected": "Miután megadta a jelszót és megnyitotta a fájlt, a jelenlegi jelszó visszaállítódik", "txtScheme1": "Office", - "txtScheme10": "Median", + "txtScheme10": "Medián", "txtScheme11": "Metro", - "txtScheme12": "Module", - "txtScheme13": "Opulent", - "txtScheme14": "Oriel", - "txtScheme15": "Origin", - "txtScheme16": "Paper", - "txtScheme17": "Solstice", + "txtScheme12": "Modul", + "txtScheme13": "Bőséges", + "txtScheme14": "Ablakfülke", + "txtScheme15": "Eredet", + "txtScheme16": "Papír", + "txtScheme17": "Napforduló", "txtScheme18": "Technic", - "txtScheme19": "Trek", - "txtScheme2": "Grayscale", - "txtScheme20": "Urban", - "txtScheme21": "Verve", - "txtScheme22": "New Office", - "txtScheme3": "Apex", - "txtScheme4": "Aspect", - "txtScheme5": "Civic", - "txtScheme6": "Concourse", - "txtScheme7": "Equity", - "txtScheme8": "Flow", - "txtScheme9": "Foundry", - "textOk": "Ok", - "textChooseEncoding": "Choose Encoding", - "textChooseTxtOptions": "Choose TXT Options", - "txtDownloadTxt": "Download TXT", - "txtOk": "Ok", - "textPages": "Pages", - "textParagraphs": "Paragraphs", - "textSpaces": "Spaces", - "textSymbols": "Symbols", - "textWords": "Words" + "txtScheme19": "Vándorlás", + "txtScheme2": "Szürkeárnyalatos", + "txtScheme20": "Városi", + "txtScheme21": "Lelkesedés", + "txtScheme22": "Új Office", + "txtScheme3": "Csúcs", + "txtScheme4": "Nézőpont", + "txtScheme5": "Polgári", + "txtScheme6": "Előcsarnok", + "txtScheme7": "Saját tőke", + "txtScheme8": "Folyam", + "txtScheme9": "Öntöde" }, "Toolbar": { - "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this Page", - "stayButtonText": "Stay on this page" + "dlgLeaveMsgText": "Nem mentett módosításai vannak. Kattintson a „Maradj ezen az oldalon” gombra az automatikus mentés megvárásához. Kattintson a \"Hagyja el ezt az oldalt\" gombra az összes nem mentett módosítás elvetéséhez.", + "dlgLeaveTitleText": "Bezárja az alkalmazást", + "leaveButtonText": "Oldal elhagyása", + "stayButtonText": "Maradjon ezen az oldalon" } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/it.json b/apps/documenteditor/mobile/locale/it.json index bc63303f8..9a39925a7 100644 --- a/apps/documenteditor/mobile/locale/it.json +++ b/apps/documenteditor/mobile/locale/it.json @@ -309,28 +309,28 @@ "textTotalRow": "Riga totale", "textType": "Tipo", "textWrap": "Avvolgere", - "textDesign": "Design", - "textSu": "Su", - "textMo": "Mo", - "textTu": "Tu", - "textWe": "We", - "textTh": "Th", - "textFr": "Fr", - "textSa": "Sa", - "textJanuary": "January", - "textFebruary": "February", - "textMarch": "March", "textApril": "April", - "textMay": "May", - "textJune": "June", - "textJuly": "July", "textAugust": "August", - "textSeptember": "September", - "textOctober": "October", - "textNovember": "November", "textDecember": "December", + "textDesign": "Design", "textEmpty": "Empty", - "textOk": "Ok" + "textFebruary": "February", + "textFr": "Fr", + "textJanuary": "January", + "textJuly": "July", + "textJune": "June", + "textMarch": "March", + "textMay": "May", + "textMo": "Mo", + "textNovember": "November", + "textOctober": "October", + "textOk": "Ok", + "textSa": "Sa", + "textSeptember": "September", + "textSu": "Su", + "textTh": "Th", + "textTu": "Tu", + "textWe": "We" }, "Error": { "convertationTimeoutText": "È stato superato il tempo massimo della conversione.", @@ -501,9 +501,9 @@ "warnNoLicense": "Hai raggiunto il limite delle connessioni simultanee agli editor %1. Questo documento sarà aperto solo in modalità di visualizzazione. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", "warnNoLicenseUsers": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", "warnProcessRightsChange": "Non hai il permesso di modificare questo file.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" }, "Settings": { "advDRMOptions": "File protetto", diff --git a/apps/documenteditor/mobile/locale/ja.json b/apps/documenteditor/mobile/locale/ja.json index 3af1b8dab..9db29d7a6 100644 --- a/apps/documenteditor/mobile/locale/ja.json +++ b/apps/documenteditor/mobile/locale/ja.json @@ -309,28 +309,28 @@ "textTotalRow": "合計行", "textType": "タイプ", "textWrap": "折り返す", - "textDesign": "Design", - "textSu": "Su", - "textMo": "Mo", - "textTu": "Tu", - "textWe": "We", - "textTh": "Th", - "textFr": "Fr", - "textSa": "Sa", - "textJanuary": "January", - "textFebruary": "February", - "textMarch": "March", "textApril": "April", - "textMay": "May", - "textJune": "June", - "textJuly": "July", "textAugust": "August", - "textSeptember": "September", - "textOctober": "October", - "textNovember": "November", "textDecember": "December", + "textDesign": "Design", "textEmpty": "Empty", - "textOk": "Ok" + "textFebruary": "February", + "textFr": "Fr", + "textJanuary": "January", + "textJuly": "July", + "textJune": "June", + "textMarch": "March", + "textMay": "May", + "textMo": "Mo", + "textNovember": "November", + "textOctober": "October", + "textOk": "Ok", + "textSa": "Sa", + "textSeptember": "September", + "textSu": "Su", + "textTh": "Th", + "textTu": "Tu", + "textWe": "We" }, "Error": { "convertationTimeoutText": "変換のタイムアウトを超過しました。", @@ -501,9 +501,9 @@ "warnNoLicense": "%1エディター 時接続数の制限に達しました。この文書が見るだけのために開かれる。個人的なアップグレード条件については、%1営業チームを連絡してください。", "warnNoLicenseUsers": "%1エディターのユーザー制限に達しました。 個人的なアップグレード条件については、%1営業チームを連絡してください。", "warnProcessRightsChange": "ファイルを編集する権限がありません!", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" }, "Settings": { "advDRMOptions": "保護されたファイル", diff --git a/apps/documenteditor/mobile/locale/ko.json b/apps/documenteditor/mobile/locale/ko.json index df64972d3..cc5d5fa2c 100644 --- a/apps/documenteditor/mobile/locale/ko.json +++ b/apps/documenteditor/mobile/locale/ko.json @@ -309,28 +309,28 @@ "textTotalRow": "합계", "textType": "유형", "textWrap": "줄 바꾸기", - "textDesign": "Design", - "textSu": "Su", - "textMo": "Mo", - "textTu": "Tu", - "textWe": "We", - "textTh": "Th", - "textFr": "Fr", - "textSa": "Sa", - "textJanuary": "January", - "textFebruary": "February", - "textMarch": "March", "textApril": "April", - "textMay": "May", - "textJune": "June", - "textJuly": "July", "textAugust": "August", - "textSeptember": "September", - "textOctober": "October", - "textNovember": "November", "textDecember": "December", + "textDesign": "Design", "textEmpty": "Empty", - "textOk": "Ok" + "textFebruary": "February", + "textFr": "Fr", + "textJanuary": "January", + "textJuly": "July", + "textJune": "June", + "textMarch": "March", + "textMay": "May", + "textMo": "Mo", + "textNovember": "November", + "textOctober": "October", + "textOk": "Ok", + "textSa": "Sa", + "textSeptember": "September", + "textSu": "Su", + "textTh": "Th", + "textTu": "Tu", + "textWe": "We" }, "Error": { "convertationTimeoutText": "변환 시간을 초과했습니다.", @@ -501,9 +501,9 @@ "warnNoLicense": "% 1 편집 연결 수 제한에 도달했습니다. 이 문서는 보기 모드로 열립니다. 개인적인 업그레이드 사항은 % 1 영업팀에 연락하십시오.", "warnNoLicenseUsers": "ONLYOFFICE 편집자의이 버전은 동시 사용자에게 일정한 제한이 있습니다.
더 필요한 것이 있으면 현재 라이센스를 업그레이드하거나 상용 라이센스를 구입하십시오.", "warnProcessRightsChange": "파일을 편집 할 권한이 없습니다.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" }, "Settings": { "advDRMOptions": "보호 된 파일", diff --git a/apps/documenteditor/mobile/locale/nl.json b/apps/documenteditor/mobile/locale/nl.json index c0dadf3a5..3615e2157 100644 --- a/apps/documenteditor/mobile/locale/nl.json +++ b/apps/documenteditor/mobile/locale/nl.json @@ -309,28 +309,28 @@ "textTotalRow": "Totaalrij", "textType": "Type", "textWrap": "Wikkel", - "textDesign": "Design", - "textSu": "Su", - "textMo": "Mo", - "textTu": "Tu", - "textWe": "We", - "textTh": "Th", - "textFr": "Fr", - "textSa": "Sa", - "textJanuary": "January", - "textFebruary": "February", - "textMarch": "March", "textApril": "April", - "textMay": "May", - "textJune": "June", - "textJuly": "July", "textAugust": "August", - "textSeptember": "September", - "textOctober": "October", - "textNovember": "November", "textDecember": "December", + "textDesign": "Design", "textEmpty": "Empty", - "textOk": "Ok" + "textFebruary": "February", + "textFr": "Fr", + "textJanuary": "January", + "textJuly": "July", + "textJune": "June", + "textMarch": "March", + "textMay": "May", + "textMo": "Mo", + "textNovember": "November", + "textOctober": "October", + "textOk": "Ok", + "textSa": "Sa", + "textSeptember": "September", + "textSu": "Su", + "textTh": "Th", + "textTu": "Tu", + "textWe": "We" }, "Error": { "convertationTimeoutText": "Time-out voor conversie overschreden.", @@ -501,9 +501,9 @@ "warnNoLicense": "U hebt de limiet bereikt voor gelijktijdige verbindingen met %1 gelijktijdige gebruikers. Dit document wordt alleen geopend om te bekijken. Neem contact op met %1 verkoopteam voor persoonlijke upgradevoorwaarden.", "warnNoLicenseUsers": "U heeft de gebruikerslimiet voor %1 gelijktijdige gebruikers bereikt. Neem contact op met de verkoopafdeling voor persoonlijke upgradevoorwaarden.", "warnProcessRightsChange": "Je hebt geen toestemming om dit bestand te bewerken.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" }, "Settings": { "advDRMOptions": "Beveiligd bestand", diff --git a/apps/documenteditor/mobile/locale/pt.json b/apps/documenteditor/mobile/locale/pt.json index 10f51688f..778fe96fa 100644 --- a/apps/documenteditor/mobile/locale/pt.json +++ b/apps/documenteditor/mobile/locale/pt.json @@ -41,6 +41,7 @@ "textLocation": "Localização", "textNextPage": "Próxima página", "textOddPage": "Página ímpar", + "textOk": "OK", "textOther": "Outro", "textPageBreak": "Quebra de página", "textPageNumber": "Número da página", @@ -56,8 +57,7 @@ "textStartAt": "Começar em", "textTable": "Tabela", "textTableSize": "Tamanho da tabela", - "txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"", - "textOk": "Ok" + "txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"" }, "Common": { "Collaboration": { @@ -158,13 +158,13 @@ "textUsers": "Usuários", "textWidow": "Controle de linhas órfãs/viúvas." }, + "HighlightColorPalette": { + "textNoFill": "Sem preenchimento" + }, "ThemeColorPalette": { "textCustomColors": "Cores personalizadas", "textStandartColors": "Cores padrão", "textThemeColors": "Cores de tema" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -208,6 +208,8 @@ "textAlign": "Alinhar", "textAllCaps": "Todas maiúsculas", "textAllowOverlap": "Permitir sobreposição", + "textApril": "Abril", + "textAugust": "Agosto", "textAuto": "Automático", "textAutomatic": "Automático", "textBack": "Voltar", @@ -226,6 +228,8 @@ "textColor": "Cor", "textContinueFromPreviousSection": "Continuar da seção anterior", "textCustomColor": "Cor personalizada", + "textDecember": "Dezembro", + "textDesign": "Design", "textDifferentFirstPage": "Primeira página diferente", "textDifferentOddAndEvenPages": "Páginas pares e ímpares diferentes", "textDisplay": "Exibir", @@ -233,7 +237,9 @@ "textDoubleStrikethrough": "Tachado duplo", "textEditLink": "Editar Link", "textEffects": "Efeitos", + "textEmpty": "Vazio", "textEmptyImgUrl": "Você precisa especificar uma URL de imagem.", + "textFebruary": "Fevereiro", "textFill": "Preencher", "textFirstColumn": "Primeira Coluna", "textFirstLine": "Primeira linha", @@ -242,6 +248,7 @@ "textFontColors": "Cor da Fonte", "textFonts": "Fontes", "textFooter": "Rodapé", + "textFr": "Fr", "textHeader": "Cabeçalho", "textHeaderRow": "Linha de Cabeçalho", "textHighlightColor": "Cor de realce", @@ -250,6 +257,9 @@ "textImageURL": "Imagem URL", "textInFront": "Em frente", "textInline": "Em linha", + "textJanuary": "Janeiro", + "textJuly": "Julho", + "textJune": "Junho", "textKeepLinesTogether": "Manter as linhas juntas", "textKeepWithNext": "Manter com o próximo", "textLastColumn": "Última coluna", @@ -258,13 +268,19 @@ "textLink": "Link", "textLinkSettings": "Configurações de link", "textLinkToPrevious": "Vincular a Anterior", + "textMarch": "Março", + "textMay": "Maio", + "textMo": "Seg.", "textMoveBackward": "Mover para trás", "textMoveForward": "Mover para frente", "textMoveWithText": "Mover com texto", "textNone": "Nenhum", "textNoStyles": "Não há estilos para este tipo de gráfico.", "textNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"", + "textNovember": "Novembro", "textNumbers": "Números", + "textOctober": "Outubro", + "textOk": "OK", "textOpacity": "Opacidade", "textOptions": "Opções", "textOrphanControl": "Controle de órfão", @@ -285,9 +301,11 @@ "textReplace": "Substituir", "textReplaceImage": "Substituir imagem", "textResizeToFitContent": "Redimensionar para ajustar o conteúdo", + "textSa": "Sáb", "textScreenTip": "Dica de tela", "textSelectObjectToEdit": "Selecione o objeto para editar", "textSendToBackground": "Enviar para plano de fundo", + "textSeptember": "Setembro", "textSettings": "Configurações", "textShape": "Forma", "textSize": "Tamanho", @@ -298,39 +316,21 @@ "textStrikethrough": "Tachado", "textStyle": "Estilo", "textStyleOptions": "Opções de estilo", + "textSu": "Dom", "textSubscript": "Subscrito", "textSuperscript": "Sobrescrito", "textTable": "Tabela", "textTableOptions": "Opções de tabela", "textText": "Тexto", + "textTh": "Qui.", "textThrough": "Através", "textTight": "Justo", "textTopAndBottom": "Parte superior e inferior", "textTotalRow": "Total de linhas", + "textTu": "Ter", "textType": "Tipo", - "textWrap": "Encapsulamento", - "textDesign": "Design", - "textSu": "Su", - "textMo": "Mo", - "textTu": "Tu", - "textWe": "We", - "textTh": "Th", - "textFr": "Fr", - "textSa": "Sa", - "textJanuary": "January", - "textFebruary": "February", - "textMarch": "March", - "textApril": "April", - "textMay": "May", - "textJune": "June", - "textJuly": "July", - "textAugust": "August", - "textSeptember": "September", - "textOctober": "October", - "textNovember": "November", - "textDecember": "December", - "textEmpty": "Empty", - "textOk": "Ok" + "textWe": "Qua", + "textWrap": "Encapsulamento" }, "Error": { "convertationTimeoutText": "Tempo limite de conversão excedido.", @@ -487,8 +487,11 @@ "textHasMacros": "O arquivo contém macros automáticas.
Você quer executar macros?", "textNo": "Não", "textNoLicenseTitle": "Limite de licença atingido", + "textNoTextFound": "Texto não encontrado", "textPaidFeature": "Recurso pago", "textRemember": "Lembrar minha escolha", + "textReplaceSkipped": "A substituição foi realizada. {0} ocorrências foram ignoradas.", + "textReplaceSuccess": "A pesquisa foi realizada. Ocorrências substituídas: {0}", "textYes": "Sim", "titleLicenseExp": "A licença expirou", "titleServerVersion": "Editor atualizado", @@ -500,10 +503,7 @@ "warnLicenseUsersExceeded": "Você atingiu o limite de usuários para editores %1. Entre em contato com seu administrador para saber mais.", "warnNoLicense": "Você atingiu o limite de conexões simultâneas para% 1 editores. Este documento será aberto apenas para visualização. Contate a equipe de vendas% 1 para termos de atualização pessoal.", "warnNoLicenseUsers": "Você atingiu o limite de usuários para editores %1.
Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", - "warnProcessRightsChange": "Você não tem permissão para editar este arquivo.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "warnProcessRightsChange": "Você não tem permissão para editar este arquivo." }, "Settings": { "advDRMOptions": "Arquivo protegido", diff --git a/apps/documenteditor/mobile/locale/ro.json b/apps/documenteditor/mobile/locale/ro.json index 9fa53bcdf..6aea0dc7a 100644 --- a/apps/documenteditor/mobile/locale/ro.json +++ b/apps/documenteditor/mobile/locale/ro.json @@ -309,28 +309,28 @@ "textTotalRow": "Rând total", "textType": "Tip", "textWrap": "Încadrare", - "textDesign": "Design", - "textSu": "Su", - "textMo": "Mo", - "textTu": "Tu", - "textWe": "We", - "textTh": "Th", - "textFr": "Fr", - "textSa": "Sa", - "textJanuary": "January", - "textFebruary": "February", - "textMarch": "March", "textApril": "April", - "textMay": "May", - "textJune": "June", - "textJuly": "July", "textAugust": "August", - "textSeptember": "September", - "textOctober": "October", - "textNovember": "November", "textDecember": "December", + "textDesign": "Design", "textEmpty": "Empty", - "textOk": "Ok" + "textFebruary": "February", + "textFr": "Fr", + "textJanuary": "January", + "textJuly": "July", + "textJune": "June", + "textMarch": "March", + "textMay": "May", + "textMo": "Mo", + "textNovember": "November", + "textOctober": "October", + "textOk": "Ok", + "textSa": "Sa", + "textSeptember": "September", + "textSu": "Su", + "textTh": "Th", + "textTu": "Tu", + "textWe": "We" }, "Error": { "convertationTimeoutText": "Timpul de așteptare pentru conversie a expirat.", @@ -501,9 +501,9 @@ "warnNoLicense": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare. Contactați %1 Departamentul de Vânzări pentru acordarea condițiilor personale de actualizare.", "warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori ai %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.", "warnProcessRightsChange": "Nu aveți permisiunea de editare pentru fișier.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" }, "Settings": { "advDRMOptions": "Fișierul protejat", diff --git a/apps/documenteditor/mobile/locale/ru.json b/apps/documenteditor/mobile/locale/ru.json index f7f2e519b..3b1fbff8c 100644 --- a/apps/documenteditor/mobile/locale/ru.json +++ b/apps/documenteditor/mobile/locale/ru.json @@ -158,13 +158,13 @@ "textUsers": "Пользователи", "textWidow": "Запрет висячих строк" }, + "HighlightColorPalette": { + "textNoFill": "Без заливки" + }, "ThemeColorPalette": { "textCustomColors": "Пользовательские цвета", "textStandartColors": "Стандартные цвета", "textThemeColors": "Цвета темы" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -217,7 +217,6 @@ "textBefore": "Перед", "textBehind": "За текстом", "textBorder": "Граница", - "textDesign": "Вид", "textBringToForeground": "Перенести на передний план", "textBullets": "Маркеры", "textBulletsAndNumbers": "Маркеры и нумерация", @@ -243,6 +242,7 @@ "textFontColors": "Цвета шрифта", "textFonts": "Шрифты", "textFooter": "Колонтитул", + "textFr": "Пт", "textHeader": "Колонтитул", "textHeaderRow": "Строка заголовка", "textHighlightColor": "Цвет выделения", @@ -259,6 +259,7 @@ "textLink": "Ссылка", "textLinkSettings": "Настройки ссылки", "textLinkToPrevious": "Связать с предыдущим", + "textMo": "Пн", "textMoveBackward": "Перенести назад", "textMoveForward": "Перенести вперед", "textMoveWithText": "Перемещать с текстом", @@ -286,6 +287,7 @@ "textReplace": "Заменить", "textReplaceImage": "Заменить рисунок", "textResizeToFitContent": "По размеру содержимого", + "textSa": "Сб", "textScreenTip": "Подсказка", "textSelectObjectToEdit": "Выберите объект для редактирования", "textSendToBackground": "Перенести на задний план", @@ -299,38 +301,36 @@ "textStrikethrough": "Зачёркивание", "textStyle": "Стиль", "textStyleOptions": "Настройки стиля", + "textSu": "Вс", "textSubscript": "Подстрочные", "textSuperscript": "Надстрочные", "textTable": "Таблица", "textTableOptions": "Настройки таблицы", "textText": "Текст", + "textTh": "Чт", "textThrough": "Сквозное", "textTight": "По контуру", "textTopAndBottom": "Сверху и снизу", "textTotalRow": "Строка итогов", + "textTu": "Вт", "textType": "Тип", + "textWe": "Ср", "textWrap": "Стиль обтекания", - "textSu": "Su", - "textMo": "Mo", - "textTu": "Tu", - "textWe": "We", - "textTh": "Th", - "textFr": "Fr", - "textSa": "Sa", - "textJanuary": "January", - "textFebruary": "February", - "textMarch": "March", "textApril": "April", - "textMay": "May", - "textJune": "June", - "textJuly": "July", "textAugust": "August", - "textSeptember": "September", - "textOctober": "October", - "textNovember": "November", "textDecember": "December", + "textDesign": "Design", "textEmpty": "Empty", - "textOk": "Ok" + "textFebruary": "February", + "textJanuary": "January", + "textJuly": "July", + "textJune": "June", + "textMarch": "March", + "textMay": "May", + "textNovember": "November", + "textOctober": "October", + "textOk": "Ok", + "textSeptember": "September" }, "Error": { "convertationTimeoutText": "Превышено время ожидания конвертации.", @@ -487,8 +487,11 @@ "textHasMacros": "Файл содержит автозапускаемые макросы.
Хотите запустить макросы?", "textNo": "Нет", "textNoLicenseTitle": "Лицензионное ограничение", + "textNoTextFound": "Текст не найден", "textPaidFeature": "Платная функция", "textRemember": "Запомнить мой выбор", + "textReplaceSkipped": "Замена выполнена. Пропущено вхождений - {0}.", + "textReplaceSuccess": "Поиск выполнен. Заменено вхождений: {0}", "textYes": "Да", "titleLicenseExp": "Истек срок действия лицензии", "titleServerVersion": "Редактор обновлен", @@ -500,10 +503,7 @@ "warnLicenseUsersExceeded": "Вы достигли лимита на количество пользователей редакторов %1. Свяжитесь с администратором, чтобы узнать больше.", "warnNoLicense": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт на просмотр. Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия обновления.", "warnNoLicenseUsers": "Вы достигли лимита на количество пользователей редакторов %1. Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия обновления.", - "warnProcessRightsChange": "У вас нет прав на редактирование этого файла.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "warnProcessRightsChange": "У вас нет прав на редактирование этого файла." }, "Settings": { "advDRMOptions": "Защищенный файл", diff --git a/apps/documenteditor/mobile/locale/tr.json b/apps/documenteditor/mobile/locale/tr.json index 93b495e1c..55d9348a3 100644 --- a/apps/documenteditor/mobile/locale/tr.json +++ b/apps/documenteditor/mobile/locale/tr.json @@ -309,28 +309,28 @@ "textTotalRow": "Toplam Satır", "textType": "Tip", "textWrap": "Metni Kaydır", - "textDesign": "Design", - "textSu": "Su", - "textMo": "Mo", - "textTu": "Tu", - "textWe": "We", - "textTh": "Th", - "textFr": "Fr", - "textSa": "Sa", - "textJanuary": "January", - "textFebruary": "February", - "textMarch": "March", "textApril": "April", - "textMay": "May", - "textJune": "June", - "textJuly": "July", "textAugust": "August", - "textSeptember": "September", - "textOctober": "October", - "textNovember": "November", "textDecember": "December", + "textDesign": "Design", "textEmpty": "Empty", + "textFebruary": "February", + "textFr": "Fr", + "textJanuary": "January", + "textJuly": "July", + "textJune": "June", + "textMarch": "March", + "textMay": "May", + "textMo": "Mo", + "textNovember": "November", "textOk": "Tamam" + "textOctober": "October", + "textSa": "Sa", + "textSeptember": "September", + "textSu": "Su", + "textTh": "Th", + "textTu": "Tu", + "textWe": "We" }, "Error": { "convertationTimeoutText": "Değişim süresi aşıldı.", @@ -501,9 +501,9 @@ "warnNoLicense": "%1 düzenleyiciye eşzamanlı bağlantı sınırına ulaştınız. Bu belge yalnızca görüntüleme için açılacaktır. Kişisel yükseltme koşulları için %1 satış ekibiyle iletişime geçin.", "warnNoLicenseUsers": "%1 düzenleyici için kullanıcı sınırına ulaştınız. Kişisel yükseltme koşulları için %1 satış ekibiyle iletişime geçin.", "warnProcessRightsChange": "Bu dosyayı düzenleme izniniz yok.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" }, "Settings": { "advDRMOptions": "Korumalı dosya", diff --git a/apps/documenteditor/mobile/locale/zh.json b/apps/documenteditor/mobile/locale/zh.json index 45ad96942..807fcf90b 100644 --- a/apps/documenteditor/mobile/locale/zh.json +++ b/apps/documenteditor/mobile/locale/zh.json @@ -309,28 +309,28 @@ "textTotalRow": "总行", "textType": "类型", "textWrap": "包裹", - "textDesign": "Design", - "textSu": "Su", - "textMo": "Mo", - "textTu": "Tu", - "textWe": "We", - "textTh": "Th", - "textFr": "Fr", - "textSa": "Sa", - "textJanuary": "January", - "textFebruary": "February", - "textMarch": "March", "textApril": "April", - "textMay": "May", - "textJune": "June", - "textJuly": "July", "textAugust": "August", - "textSeptember": "September", - "textOctober": "October", - "textNovember": "November", "textDecember": "December", + "textDesign": "Design", "textEmpty": "Empty", - "textOk": "Ok" + "textFebruary": "February", + "textFr": "Fr", + "textJanuary": "January", + "textJuly": "July", + "textJune": "June", + "textMarch": "March", + "textMay": "May", + "textMo": "Mo", + "textNovember": "November", + "textOctober": "October", + "textOk": "Ok", + "textSa": "Sa", + "textSeptember": "September", + "textSu": "Su", + "textTh": "Th", + "textTu": "Tu", + "textWe": "We" }, "Error": { "convertationTimeoutText": "转换超时", @@ -501,9 +501,9 @@ "warnNoLicense": "你已经触发了 %1 编辑器的同时在线数限制. 该文档打开后,你将只能查看。请联系 %1 的销售团队,获取个人升级条款。", "warnNoLicenseUsers": "你触发了 %1 编辑器的同时在线数限制。请与 %1 的销售团队联系,以获取个人升级条款。", "warnProcessRightsChange": "你没有编辑这个文件的权限。", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" }, "Settings": { "advDRMOptions": "受保护的文件", diff --git a/apps/presentationeditor/mobile/locale/az.json b/apps/presentationeditor/mobile/locale/az.json index 3b390ce73..a06c36408 100644 --- a/apps/presentationeditor/mobile/locale/az.json +++ b/apps/presentationeditor/mobile/locale/az.json @@ -124,9 +124,9 @@ "warnNoLicense": "Siz 1% redaktorlarına eyni vaxtda qoşulma limitinə çatdınız. Bu sənəd yalnız baxmaq üçün açılacaq. Şəxsi təkmilləşdirmə şərtləri üçün 1% satış komandası ilə əlaqə saxlayın.", "warnNoLicenseUsers": "1% redaktor üçün istifadəçi limitinə çatdınız. Şəxsi təkmilləşdirmə şərtləri üçün 1% satış komandası ilə əlaqə saxlayın.", "warnProcessRightsChange": "Faylı redaktə etmək icazəniz yoxdur.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { diff --git a/apps/presentationeditor/mobile/locale/ca.json b/apps/presentationeditor/mobile/locale/ca.json index eba0e506f..c987d91a9 100644 --- a/apps/presentationeditor/mobile/locale/ca.json +++ b/apps/presentationeditor/mobile/locale/ca.json @@ -124,9 +124,9 @@ "warnNoLicense": "Has arribat al límit de connexions simultànies a %1 editors. Aquest document només s'obrirà en mode lectura. Contacta amb l'equip de vendes %1 per a les condicions d'una actualització personal.", "warnNoLicenseUsers": "Has arribat al límit d'usuaris per a %1 editors. Contacta amb l'equip de vendes de %1 per obtenir les condicions de millora personals dels teus serveis.", "warnProcessRightsChange": "No tens permís per editar el fitxer.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { diff --git a/apps/presentationeditor/mobile/locale/cs.json b/apps/presentationeditor/mobile/locale/cs.json index 4e5a45fc5..e9cec20f9 100644 --- a/apps/presentationeditor/mobile/locale/cs.json +++ b/apps/presentationeditor/mobile/locale/cs.json @@ -124,9 +124,9 @@ "warnNoLicense": "Došlo k dosažení limitu souběžného připojení %1 editorů. Tento dokument bude otevřen pouze pro náhled. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", "warnNoLicenseUsers": "Došlo k dosažení limitu %1 editorů. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", "warnProcessRightsChange": "Nemáte oprávnění pro úpravu tohoto dokumentu.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { diff --git a/apps/presentationeditor/mobile/locale/de.json b/apps/presentationeditor/mobile/locale/de.json index 20a966e77..df6fa8227 100644 --- a/apps/presentationeditor/mobile/locale/de.json +++ b/apps/presentationeditor/mobile/locale/de.json @@ -124,9 +124,9 @@ "warnNoLicense": "Sie haben die maximale Anzahl von gleichzeitigen Verbindungen in %1-Editoren erreicht. Die Bearbeitung ist jetzt in diesem Dokument nicht verfügbar. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", "warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", "warnProcessRightsChange": "Sie können diese Datei nicht bearbeiten.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { diff --git a/apps/presentationeditor/mobile/locale/el.json b/apps/presentationeditor/mobile/locale/el.json index 706c2507b..cef1d53ec 100644 --- a/apps/presentationeditor/mobile/locale/el.json +++ b/apps/presentationeditor/mobile/locale/el.json @@ -4,209 +4,247 @@ "textAddress": "Διεύθυνση", "textBack": "Πίσω", "textEmail": "Email", - "textPoweredBy": "Powered By", - "textTel": "Tel", - "textVersion": "Version" + "textPoweredBy": "Υποστηρίζεται Από", + "textTel": "Τηλ", + "textVersion": "Έκδοση" }, "Common": { "Collaboration": { + "notcriticalErrorTitle": "Προειδοποίηση", "textAddComment": "Προσθήκη Σχολίου", "textAddReply": "Προσθήκη Απάντησης", "textBack": "Πίσω", "textCancel": "Ακύρωση", - "notcriticalErrorTitle": "Warning", - "textCollaboration": "Collaboration", - "textComments": "Comments", - "textDeleteComment": "Delete Comment", - "textDeleteReply": "Delete Reply", - "textDone": "Done", - "textEdit": "Edit", - "textEditComment": "Edit Comment", - "textEditReply": "Edit Reply", - "textEditUser": "Users who are editing the file:", - "textMessageDeleteComment": "Do you really want to delete this comment?", - "textMessageDeleteReply": "Do you really want to delete this reply?", - "textNoComments": "This document doesn't contain comments", - "textOk": "Ok", - "textReopen": "Reopen", - "textResolve": "Resolve", - "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users" + "textCollaboration": "Συνεργασία", + "textComments": "Σχόλια", + "textDeleteComment": "Διαγραφή Σχολίου", + "textDeleteReply": "Διαγραφή Απάντησης", + "textDone": "Ολοκληρώθηκε", + "textEdit": "Επεξεργασία", + "textEditComment": "Επεξεργασία Σχολίου", + "textEditReply": "Επεξεργασία Απάντησης", + "textEditUser": "Οι χρήστες που επεξεργάζονται το αρχείο:", + "textMessageDeleteComment": "Θέλετε πραγματικά να διαγράψετε αυτό το σχόλιο;", + "textMessageDeleteReply": "Θέλετε πραγματικά να διαγράψετε αυτή την απάντηση;", + "textNoComments": "Αυτό το έγγραφο δεν περιέχει σχόλια", + "textOk": "Εντάξει", + "textReopen": "Άνοιγμα ξανά", + "textResolve": "Επίλυση", + "textTryUndoRedo": "Οι λειτουργίες Αναίρεση/Επανάληψη είναι απενεργοποιημένες στην κατάσταση Γρήγορης συν-επεξεργασίας.", + "textUsers": "Χρήστες" }, "ThemeColorPalette": { - "textCustomColors": "Custom Colors", - "textStandartColors": "Standard Colors", - "textThemeColors": "Theme Colors" + "textCustomColors": "Προσαρμοσμένα Χρώματα", + "textStandartColors": "Τυπικά Χρώματα", + "textThemeColors": "Χρώματα Θέματος" }, "HighlightColorPalette": { "textNoFill": "No Fill" } }, "ContextMenu": { + "errorCopyCutPaste": "Οι ενέργειες αντιγραφής, αποκοπής και επικόλλησης χρησιμοποιώντας το μενού περιβάλλοντος θα εκτελούνται μόνο στο τρέχον αρχείο.", "menuAddComment": "Προσθήκη Σχολίου", "menuAddLink": "Προσθήκη Συνδέσμου", "menuCancel": "Ακύρωση", - "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", - "menuDelete": "Delete", - "menuDeleteTable": "Delete Table", - "menuEdit": "Edit", - "menuMerge": "Merge", - "menuMore": "More", - "menuOpenLink": "Open Link", - "menuSplit": "Split", - "menuViewComment": "View Comment", - "textColumns": "Columns", - "textCopyCutPasteActions": "Copy, Cut and Paste Actions", - "textDoNotShowAgain": "Don't show again", - "textRows": "Rows" + "menuDelete": "Διαγραφή", + "menuDeleteTable": "Διαγραφή Πίνακα", + "menuEdit": "Επεξεργασία", + "menuMerge": "Συγχώνευση", + "menuMore": "Περισσότερα", + "menuOpenLink": "Άνοιγμα Συνδέσμου", + "menuSplit": "Διαίρεση", + "menuViewComment": "Προβολή Σχολίου", + "textColumns": "Στήλες", + "textCopyCutPasteActions": "Ενέργειες Αντιγραφής, Αποκοπής και Επικόλλησης", + "textDoNotShowAgain": "Να μην εμφανιστεί ξανά", + "textRows": "Γραμμές" }, "Controller": { "Main": { - "textAnonymous": "Ανώνυμος", - "advDRMOptions": "Protected File", - "advDRMPassword": "Password", - "closeButtonText": "Close File", - "criticalErrorTitle": "Error", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "errorProcessSaveResult": "Saving failed.", - "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "notcriticalErrorTitle": "Warning", + "advDRMOptions": "Προστατευμένο Αρχείο", + "advDRMPassword": "Συνθηματικό", + "closeButtonText": "Κλείσιμο Αρχείου", + "criticalErrorTitle": "Σφάλμα", + "errorAccessDeny": "Προσπαθείτε να εκτελέσετε μια ενέργεια για την οποία δεν έχετε δικαιώματα.
Παρακαλούμε, επικοινωνήστε με τον διαχειριστή σας.", + "errorOpensource": "Με τη δωρεάν έκδοση Κοινότητας μπορείτε να ανοίξετε έγγραφα μόνο για ανάγνωση. Για να αποκτήσετε πρόσβαση στους συντάκτες κινητού μέσω δικτύου, απαιτείται εμπορική άδεια.", + "errorProcessSaveResult": "Αποτυχία αποθήκευσης.", + "errorServerVersion": "Αναβαθμίστηκε η έκδοση του συντάκτη. Η σελίδα θα φορτωθεί ξανά για να εφαρμοστούν οι αλλαγές.", + "errorUpdateVersion": "Η έκδοση του αρχείου έχει αλλάξει. Η σελίδα θα φορτωθεί ξανά.", + "leavePageText": "Έχετε μη αποθηκευμένες αλλαγές στο έγγραφο. Πατήστε 'Παραμονή στη Σελίδα' για να περιμένετε την αυτόματη αποθήκευση. Πατήστε 'Έξοδος από τη Σελίδα' για να απορρίψετε όλες τις μη αποθηκευμένες αλλαγές.", + "notcriticalErrorTitle": "Προειδοποίηση", "SDK": { - "Chart": "Chart", - "Click to add first slide": "Click to add first slide", - "Click to add notes": "Click to add notes", - "ClipArt": "Clip Art", - "Date and time": "Date and time", - "Diagram": "Diagram", - "Diagram Title": "Chart Title", - "Footer": "Footer", - "Header": "Header", - "Image": "Image", - "Loading": "Loading", - "Media": "Media", - "None": "None", - "Picture": "Picture", - "Series": "Series", - "Slide number": "Slide number", - "Slide subtitle": "Slide subtitle", - "Slide text": "Slide text", - "Slide title": "Slide title", - "Table": "Table", - "X Axis": "X Axis XAS", - "Y Axis": "Y Axis", - "Your text here": "Your text here" + "Chart": "Γράφημα", + "Click to add first slide": "Κάντε κλικ για προσθήκη πρώτης διαφάνειας", + "Click to add notes": "Κάντε κλικ για προσθήκη σημειώσεων", + "ClipArt": "Εικονίδιο", + "Date and time": "Ημερομηνία και ώρα", + "Diagram": "Διάγραμμα", + "Diagram Title": "Τίτλος Γραφήματος", + "Footer": "Υποσέλιδο", + "Header": "Κεφαλίδα", + "Image": "Εικόνα", + "Loading": "Φόρτωση", + "Media": "Μέσα", + "None": "Κανένα", + "Picture": "Εικόνα", + "Series": "Σειρά", + "Slide number": "Αριθμός διαφάνειας", + "Slide subtitle": "Υπότιτλος διαφάνειας", + "Slide text": "Κείμενο διαφάνειας", + "Slide title": "Τίτλος διαφάνειας", + "Table": "Πίνακας", + "X Axis": "Άξονας Χ XAS", + "Y Axis": "Άξονας Υ", + "Your text here": "Το κείμενό σας εδώ" }, - "textBuyNow": "Visit website", - "textClose": "Close", - "textContactUs": "Contact sales", - "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", - "textGuest": "Guest", - "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", - "textNo": "No", - "textNoLicenseTitle": "License limit reached", - "textOpenFile": "Enter a password to open the file", - "textPaidFeature": "Paid feature", - "textRemember": "Remember my choice", - "textYes": "Yes", - "titleLicenseExp": "License expired", - "titleServerVersion": "Editor updated", - "titleUpdateVersion": "Version changed", - "txtIncorrectPwd": "Password is incorrect", - "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", - "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", - "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", - "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", - "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
Please contact your administrator to get full access", - "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", - "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", - "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", - "warnProcessRightsChange": "You don't have permission to edit the file.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textAnonymous": "Ανώνυμος", + "textBuyNow": "Επισκεφθείτε την ιστοσελίδα", + "textClose": "Κλείσιμο", + "textContactUs": "Επικοινωνήστε με το τμήμα πωλήσεων", + "textCustomLoader": "Λυπούμαστε, δεν επιτρέπεται να τροποποιήσετε τον φορτωτή. Παρακαλούμε, επικοινωνήστε με το τμήμα πωλήσεων για προσφορά.", + "textGuest": "Επισκέπτης", + "textHasMacros": "Το αρχείο περιέχει αυτόματες μακροεντολές.
Θέλετε να εκτελέσετε μακροεντολές;", + "textNo": "Όχι", + "textNoLicenseTitle": "Το όριο της άδειας προσεγγίσθηκε", + "textOpenFile": "Εισάγετε συνθηματικό για να ανοίξετε το αρχείο", + "textPaidFeature": "Δυνατότητα επί πληρωμή", + "textRemember": "Απομνημόνευση επιλογής", + "textYes": "Ναι", + "titleLicenseExp": "Η άδεια έληξε", + "titleServerVersion": "Ο συντάκτης ενημερώθηκε", + "titleUpdateVersion": "Η έκδοση άλλαξε", + "txtIncorrectPwd": "Το συνθηματικό είναι εσφαλμένο", + "txtProtected": "Μόλις βάλετε το συνθηματικό και ανοίξετε το αρχείο, θα γίνει επαναφορά του τρέχοντος συνθηματικού του αρχείου", + "warnLicenseExceeded": "Φτάσατε το όριο ταυτόχρονων συνδέσεων σε %1 συντάκτες. Το έγγραφο θα ανοίξει μόνο για ανάγνωση. Επικοινωνήστε με τον διαχειριστή σας για περισσότερες πληροφορίες.", + "warnLicenseExp": "Η άδειά σας έληξε. Παρακαλούμε, ανανεώστε την και φορτώστε ξανά τη σελίδα.", + "warnLicenseLimitedNoAccess": "Η άδεια έληξε. Δεν έχετε πρόσβαση στη λειτουργικότητα επεξεργασίας εγγράφων. Παρακαλούμε, επικοινωνήστε με τον διαχειριστή σας.", + "warnLicenseLimitedRenewed": "Η άδεια πρέπει να ανανεωθεί. Έχετε περιορισμένη πρόσβαση στη λειτουργικότητα επεξεργασίας.
Παρακαλούμε, επικοινωνήστε με τον διαχειριστή σας για να αποκτήσετε πλήρη πρόσβαση.", + "warnLicenseUsersExceeded": "Έχετε φτάσει το όριο χρήστη για συντάκτες %1.
Επικοινωνήστε με τον διαχειριστή σας για περισσότερες πληροφορίες.", + "warnNoLicense": "Φτάσατε το όριο ταυτόχρονων συνδέσεων σε %1 συντάκτες. Το έγγραφο θα ανοίξει μόνο για ανάγνωση. Επικοινωνήστε με την ομάδα πωλήσεων %1 για τους όρους αναβάθμισης.", + "warnNoLicenseUsers": "Έχετε φτάσει το όριο χρήστη για συντάκτες %1.
Επικοινωνήστε με την ομάδα πωλήσεων %1 για προσωπικούς όρους αναβάθμισης.", + "warnProcessRightsChange": "Δεν έχετε δικαίωμα επεξεργασίας του αρχείου.", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { + "convertationTimeoutText": "Υπέρβαση χρονικού ορίου μετατροπής.", + "criticalErrorExtText": "Πατήστε 'Εντάξει' για να επιστρέψετε στη λίστα εγγράφων.", + "criticalErrorTitle": "Σφάλμα", + "downloadErrorText": "Αποτυχία λήψης.", + "errorAccessDeny": "Επιχειρείτε μια ενέργεια για την οποία δεν έχετε τα δικαιώματα.
Παρακαλούμε, επικοινωνήστε με τον διαχειριστή σας.", + "errorBadImageUrl": "Εσφαλμένη διεύθυνση URL εικόνας", + "errorConnectToServer": "Αδύνατη η αποθήκευση του εγγράφου. Ελέγξτε τις ρυθμίσεις σύνδεσης ή επικοινωνήστε με τον διαχειριστή.
Όταν κάνετε κλικ στο κουμπί \"Εντάξει\", θα σας προταθεί να μεταφορτώσετε το έγγραφο.", + "errorDatabaseConnection": "Εξωτερικό σφάλμα
Σφάλμα σύνδεσης βάσης δεδομένων. Παρακαλούμε, επικοινωνήστε με την υποστήριξη.", + "errorDataEncrypted": "Ελήφθησαν κρυπτογραφημένες αλλαγές, δεν μπορούν να αποκρυπτογραφηθούν.", + "errorDataRange": "Εσφαλμένο εύρος δεδομένων.", + "errorDefaultMessage": "Κωδικός σφάλματος: %1", "errorEditingDownloadas": "Σφάλμα κατά την την εργασία με το έγγραφο.
Χρησιμοποιήστε την επιλογή \"Μεταφόρτωση\" για να αποθηκεύσετε τοπικά το αντίγραφο ασφαλείας.", + "errorFilePassProtect": "Το αρχείο προστατεύεται με συνθηματικό και δεν μπορεί να ανοίξει.", + "errorFileSizeExceed": "Το μέγεθος του αρχείου υπερβαίνει τα όρια του εξυπηρετητή σας.
Παρακαλούμε, επικοινωνήστε με τον διαχειριστή σας.", + "errorKeyEncrypt": "Άγνωστος περιγραφέας κλειδιού", + "errorKeyExpire": "Ο περιγραφέας κλειδιού έχει λήξει", + "errorLoadingFont": "Οι γραμματοσειρές δεν έχουν φορτωθεί.
Παρακαλούμε επικοινωνήστε με τον διαχειριστή του Εξυπηρετητή Εγγράφων σας.", + "errorSessionAbsolute": "Η σύνοδος επεξεργασίας του εγγράφου έληξε. Παρακαλούμε, φορτώστε ξανά τη σελίδα.", + "errorSessionIdle": "Το έγγραφο δεν τροποποιήθηκε για μεγάλο χρονικό διάστημα. Παρακαλούμε, φορτώστε ξανά τη σελίδα.", + "errorSessionToken": "Η σύνδεση με τον εξυπηρετητή διακόπηκε. Παρακαλούμε, φορτώστε ξανά τη σελίδα.", + "errorStockChart": "Εσφαλμένη διάταξη γραμμών. Για να φτιάξετε γράφημα μετοχών, βάλτε τα δεδομένα στο φύλλο με την ακόλουθη σειρά:
τιμή εκκίνησης, μέγιστη τιμή, ελάχιστη τιμή, τιμή κλεισίματος.", + "errorUpdateVersionOnDisconnect": "Η σύνδεση διαδικτύου αποκαταστάθηκε και η έκδοση του αρχείου άλλαξε.
Πριν συνεχίσετε να εργάζεστε, μεταφορτώστε το αρχείο ή αντιγράψτε τα περιεχόμενά του για να βεβαιωθείτε ότι δε χάθηκε τίποτα. Έπειτα, φορτώστε ξανά αυτή τη σελίδα.", + "errorUserDrop": "Δεν είναι δυνατή η πρόσβαση στο αρχείο αυτή τη στιγμή.", + "errorUsersExceed": "Υπέρβαση του αριθμού των χρηστών που επιτρέπονται από το πρόγραμμα τιμολόγησης", + "errorViewerDisconnect": "Η σύνδεση χάθηκε. Μπορείτε ακόμα να βλέπετε το έγγραφο,
αλλά δεν θα μπορείτε να το κατεβάσετε ή να το εκτυπώσετε μέχρι να αποκατασταθεί η σύνδεση και να φορτωθεί ξανά η σελίδα.", + "notcriticalErrorTitle": "Προειδοποίηση", "openErrorText": "Σφάλμα κατά το άνοιγμα του αρχείου", "saveErrorText": "Σφάλμα κατά την αποθήκευση του αρχείου", - "convertationTimeoutText": "Conversion timeout exceeded.", - "criticalErrorExtText": "Press 'OK' to go back to the document list.", - "criticalErrorTitle": "Error", - "downloadErrorText": "Download failed.", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please contact your admin.", - "errorBadImageUrl": "Image URL is incorrect", - "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
When you click the 'OK' button, you will be prompted to download the document.", - "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", - "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", - "errorDataRange": "Incorrect data range.", - "errorDefaultMessage": "Error code: %1", - "errorFilePassProtect": "The file is password protected and could not be opened.", - "errorFileSizeExceed": "The file size exceeds your server limitation.
Please, contact your admin.", - "errorKeyEncrypt": "Unknown key descriptor", - "errorKeyExpire": "Key descriptor expired", - "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.", - "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 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", - "splitMaxColsErrorText": "The number of columns must be less than %1", - "splitMaxRowsErrorText": "The number of rows must be less than %1", - "unknownErrorText": "Unknown error.", - "uploadImageExtMessage": "Unknown image format.", - "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + "scriptLoadError": "Η σύνδεση είναι πολύ αργή, κάποια από τα στοιχεία δεν φορτώθηκαν. Παρακαλούμε, φορτώστε ξανά τη σελίδα.", + "splitDividerErrorText": "Ο αριθμός των γραμμών πρέπει να είναι διαιρέτης του %1", + "splitMaxColsErrorText": "Ο αριθμός στηλών πρέπει να είναι μικρότερος από %1", + "splitMaxRowsErrorText": "Ο αριθμός των γραμμών πρέπει να είναι μικρότερος από %1", + "unknownErrorText": "Άγνωστο σφάλμα.", + "uploadImageExtMessage": "Άγνωστη μορφή εικόνας.", + "uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.", + "uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB." + }, + "LongActions": { + "applyChangesTextText": "Φόρτωση δεδομένων...", + "applyChangesTitleText": "Φόρτωση Δεδομένων", + "downloadTextText": "Λήψη εγγράφου...", + "downloadTitleText": "Λήψη Εγγράφου", + "loadFontsTextText": "Φόρτωση δεδομένων...", + "loadFontsTitleText": "Φόρτωση Δεδομένων", + "loadFontTextText": "Φόρτωση δεδομένων...", + "loadFontTitleText": "Φόρτωση Δεδομένων", + "loadImagesTextText": "Φόρτωση εικόνων...", + "loadImagesTitleText": "Φόρτωση Εικόνων", + "loadImageTextText": "Φόρτωση εικόνας...", + "loadImageTitleText": "Φόρτωση Εικόνας", + "loadingDocumentTextText": "Φόρτωση εγγράφου...", + "loadingDocumentTitleText": "Φόρτωση εγγράφου", + "loadThemeTextText": "Φόρτωση θέματος...", + "loadThemeTitleText": "Φόρτωση Θέματος", + "openTextText": "Άνοιγμα εγγράφου...", + "openTitleText": "Άνοιγμα Εγγράφου", + "printTextText": "Εκτύπωση εγγράφου...", + "printTitleText": "Εκτύπωση Εγγράφου", + "savePreparingText": "Προετοιμασία αποθήκευσης", + "savePreparingTitle": "Προετοιμασία αποθήκευσης. Παρακαλούμε περιμένετε...", + "saveTextText": "Αποθήκευση εγγράφου...", + "saveTitleText": "Αποθήκευση Εγγράφου", + "textLoadingDocument": "Φόρτωση εγγράφου", + "txtEditingMode": "Ορισμός λειτουργίας επεξεργασίας...", + "uploadImageTextText": "Μεταφόρτωση εικόνας...", + "uploadImageTitleText": "Μεταφόρτωση Εικόνας", + "waitText": "Παρακαλούμε, περιμένετε..." + }, + "Toolbar": { + "dlgLeaveMsgText": "Έχετε μη αποθηκευμένες αλλαγές στο έγγραφο. Πατήστε 'Παραμονή στη Σελίδα' για να περιμένετε την αυτόματη αποθήκευση. Πατήστε 'Έξοδος από τη Σελίδα' για να απορρίψετε όλες τις μη αποθηκευμένες αλλαγές.", + "dlgLeaveTitleText": "Έξοδος από την εφαρμογή", + "leaveButtonText": "Έξοδος από τη σελίδα", + "stayButtonText": "Παραμονή στη Σελίδα" }, "View": { "Add": { + "notcriticalErrorTitle": "Προειδοποίηση", "textAddLink": "Προσθήκη Συνδέσμου", "textAddress": "Διεύθυνση", "textBack": "Πίσω", "textCancel": "Ακύρωση", - "notcriticalErrorTitle": "Warning", - "textColumns": "Columns", - "textComment": "Comment", - "textDefault": "Selected text", - "textDisplay": "Display", - "textEmptyImgUrl": "You need to specify the image URL.", - "textExternalLink": "External Link", - "textFirstSlide": "First Slide", - "textImage": "Image", - "textImageURL": "Image URL", - "textInsert": "Insert", - "textInsertImage": "Insert Image", - "textLastSlide": "Last Slide", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkTo": "Link to", - "textLinkType": "Link Type", - "textNextSlide": "Next Slide", - "textOther": "Other", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textPreviousSlide": "Previous Slide", - "textRows": "Rows", - "textScreenTip": "Screen Tip", - "textShape": "Shape", - "textSlide": "Slide", - "textSlideInThisPresentation": "Slide in this Presentation", - "textSlideNumber": "Slide Number", - "textTable": "Table", - "textTableSize": "Table Size", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textColumns": "Στήλες", + "textComment": "Σχόλιο", + "textDefault": "Επιλεγμένο κείμενο", + "textDisplay": "Προβολή", + "textEmptyImgUrl": "Πρέπει να καθορίσετε τη διεύθυνση URL της εικόνας.", + "textExternalLink": "Εξωτερικός Σύνδεσμος", + "textFirstSlide": "Πρώτη Διαφάνεια", + "textImage": "Εικόνα", + "textImageURL": "URL εικόνας", + "textInsert": "Εισαγωγή", + "textInsertImage": "Εισαγωγή Εικόνας", + "textLastSlide": "Τελευταία Διαφάνεια", + "textLink": "Σύνδεσμος", + "textLinkSettings": "Ρυθμίσεις Συνδέσμου", + "textLinkTo": "Σύνδεσμος σε", + "textLinkType": "Τύπος Συνδέσμου", + "textNextSlide": "Επόμενη Διαφάνεια", + "textOther": "Άλλο", + "textPictureFromLibrary": "Εικόνα από Βιβλιοθήκη", + "textPictureFromURL": "Εικόνα από σύνδεσμο", + "textPreviousSlide": "Προηγούμενη Διαφάνεια", + "textRows": "Γραμμές", + "textScreenTip": "Συμβουλή Οθόνης", + "textShape": "Σχήμα", + "textSlide": "Διαφάνεια", + "textSlideInThisPresentation": "Διαφάνεια σε αυτήν την Παρουσίαση", + "textSlideNumber": "Αριθμός Διαφάνειας", + "textTable": "Πίνακας", + "textTableSize": "Μέγεθος Πίνακα", + "txtNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση URL με τη μορφή «http://www.example.com»", "textOk": "Ok" }, "Edit": { + "notcriticalErrorTitle": "Προειδοποίηση", "textActualSize": "Πραγματικό Μέγεθος", "textAddCustomColor": "Προσθήκη Προσαρμοσμένου Χρώματος", "textAdditional": "Επιπρόσθετα", @@ -227,6 +265,7 @@ "textBandedColumn": "Στήλη Εναλλαγής Σκίασης", "textBandedRow": "Γραμμή Εναλλαγής Σκίασης", "textBefore": "Πριν", + "textBlack": "Μέσω του Μαύρου", "textBorder": "Περίγραμμα", "textBottom": "Κάτω", "textBottomLeft": "Κάτω-Αριστερά", @@ -234,245 +273,207 @@ "textBringToForeground": "Μεταφορά στο Προσκήνιο", "textBullets": "Κουκκίδες", "textBulletsAndNumbers": "Κουκκίδες & Αρίθμηση", - "notcriticalErrorTitle": "Warning", - "textAutomatic": "Automatic", - "textBlack": "Through Black", - "textCaseSensitive": "Case Sensitive", - "textCellMargins": "Cell Margins", - "textChart": "Chart", - "textClock": "Clock", - "textClockwise": "Clockwise", - "textColor": "Color", - "textCounterclockwise": "Counterclockwise", - "textCover": "Cover", - "textCustomColor": "Custom Color", - "textDefault": "Selected text", - "textDelay": "Delay", - "textDeleteSlide": "Delete Slide", - "textDisplay": "Display", - "textDistanceFromText": "Distance From Text", - "textDistributeHorizontally": "Distribute Horizontally", - "textDistributeVertically": "Distribute Vertically", - "textDone": "Done", - "textDoubleStrikethrough": "Double Strikethrough", - "textDuplicateSlide": "Duplicate Slide", - "textDuration": "Duration", - "textDesign": "Design", - "textEditLink": "Edit Link", - "textEffect": "Effect", - "textEffects": "Effects", - "textEmptyImgUrl": "You need to specify the image URL.", - "textExternalLink": "External Link", - "textFade": "Fade", - "textFill": "Fill", - "textFinalMessage": "The end of slide preview. Click to exit.", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", - "textFirstColumn": "First Column", - "textFirstSlide": "First Slide", - "textFontColor": "Font Color", - "textFontColors": "Font Colors", - "textFonts": "Fonts", - "textFromLibrary": "Picture from Library", - "textFromURL": "Picture from URL", - "textHeaderRow": "Header Row", - "textHighlight": "Highlight Results", - "textHighlightColor": "Highlight Color", - "textHorizontalIn": "Horizontal In", - "textHorizontalOut": "Horizontal Out", - "textHyperlink": "Hyperlink", - "textImage": "Image", - "textImageURL": "Image URL", - "textLastColumn": "Last Column", - "textLastSlide": "Last Slide", - "textLayout": "Layout", - "textLeft": "Left", - "textLetterSpacing": "Letter Spacing", - "textLineSpacing": "Line Spacing", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkTo": "Link to", - "textLinkType": "Link Type", - "textMoveBackward": "Move Backward", - "textMoveForward": "Move Forward", - "textNextSlide": "Next Slide", - "textNone": "None", - "textNoStyles": "No styles for this type of chart.", - "textNoTextFound": "Text not found", - "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textNumbers": "Numbers", - "textOpacity": "Opacity", - "textOptions": "Options", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textPreviousSlide": "Previous Slide", + "textCaseSensitive": "Διάκριση Πεζών-Κεφαλαίων", + "textCellMargins": "Περιθώρια Κελιού", + "textChart": "Γράφημα", + "textClock": "Ρολόι", + "textClockwise": "Δεξιόστροφα", + "textColor": "Χρώμα", + "textCounterclockwise": "Αριστερόστροφα", + "textCover": "Εξώφυλλο", + "textCustomColor": "Προσαρμοσμένο Χρώμα", + "textDefault": "Επιλεγμένο κείμενο", + "textDelay": "Καθυστέρηση", + "textDeleteSlide": "Διαγραφή Διαφάνειας", + "textDisplay": "Προβολή", + "textDistanceFromText": "Απόσταση Από το Κείμενο", + "textDistributeHorizontally": "Οριζόντια Κατανομή", + "textDistributeVertically": "Κατακόρυφη Κατανομή", + "textDone": "Ολοκληρώθηκε", + "textDoubleStrikethrough": "Διπλή Διαγραφή", + "textDuplicateSlide": "Διπλότυπο Διαφάνειας", + "textDuration": "Διάρκεια", + "textEditLink": "Επεξεργασία Συνδέσμου", + "textEffect": "Εφέ", + "textEffects": "Εφέ", + "textEmptyImgUrl": "Πρέπει να καθορίσετε τη διεύθυνση URL της εικόνας.", + "textExternalLink": "Εξωτερικός Σύνδεσμος", + "textFade": "Σβήσιμο", + "textFill": "Γέμισμα", + "textFinalMessage": "Τέλος προεπισκόπησης διαφανειών. Κάντε κλικ για έξοδο.", + "textFind": "Εύρεση", + "textFindAndReplace": "Εύρεση και Αντικατάσταση", + "textFirstColumn": "Πρώτη Στήλη", + "textFirstSlide": "Πρώτη Διαφάνεια", + "textFontColor": "Χρώμα Γραμματοσειράς", + "textFontColors": "Χρώματα Γραμματοσειράς", + "textFonts": "Γραμματοσειρές", + "textFromLibrary": "Εικόνα από Βιβλιοθήκη", + "textFromURL": "Εικόνα από σύνδεσμο", + "textHeaderRow": "Σειρά Κεφαλίδας", + "textHighlight": "Επισήμανση Αποτελεσμάτων", + "textHighlightColor": "Χρώμα Επισήμανσης", + "textHorizontalIn": "Οριζόντιο Εσωτερικό", + "textHorizontalOut": "Οριζόντιο Εξωτερικό", + "textHyperlink": "Υπερσύνδεσμος", + "textImage": "Εικόνα", + "textImageURL": "URL εικόνας", + "textLastColumn": "Τελευταία Στήλη", + "textLastSlide": "Τελευταία Διαφάνεια", + "textLayout": "Διάταξη", + "textLeft": "Αριστερά", + "textLetterSpacing": "Διάστημα Γραμμάτων", + "textLineSpacing": "Διάστιχο", + "textLink": "Σύνδεσμος", + "textLinkSettings": "Ρυθμίσεις Συνδέσμου", + "textLinkTo": "Σύνδεσμος σε", + "textLinkType": "Τύπος Συνδέσμου", + "textMoveBackward": "Μετακίνηση Προς τα Πίσω", + "textMoveForward": "Μετακίνηση Προς τα Εμπρός", + "textNextSlide": "Επόμενη Διαφάνεια", + "textNone": "Κανένα", + "textNoStyles": "Δεν υπάρχουν τεχνοτροπίες για αυτόν τον τύπο γραφήματος.", + "textNoTextFound": "Δεν βρέθηκε το κείμενο", + "textNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση URL με τη μορφή «http://www.example.com»", + "textNumbers": "Αριθμοί", + "textOpacity": "Αδιαφάνεια", + "textOptions": "Επιλογές", + "textPictureFromLibrary": "Εικόνα από Βιβλιοθήκη", + "textPictureFromURL": "Εικόνα από σύνδεσμο", + "textPreviousSlide": "Προηγούμενη Διαφάνεια", "textPt": "pt", - "textPush": "Push", - "textRemoveChart": "Remove Chart", - "textRemoveImage": "Remove Image", - "textRemoveLink": "Remove Link", - "textRemoveShape": "Remove Shape", - "textRemoveTable": "Remove Table", - "textReorder": "Reorder", - "textReplace": "Replace", - "textReplaceAll": "Replace All", - "textReplaceImage": "Replace Image", - "textRight": "Right", - "textScreenTip": "Screen Tip", - "textSearch": "Search", - "textSec": "s", - "textSelectObjectToEdit": "Select object to edit", - "textSendToBackground": "Send to Background", - "textShape": "Shape", - "textSize": "Size", - "textSlide": "Slide", - "textSlideInThisPresentation": "Slide in this Presentation", - "textSlideNumber": "Slide Number", - "textSmallCaps": "Small Caps", - "textSmoothly": "Smoothly", - "textSplit": "Split", - "textStartOnClick": "Start On Click", - "textStrikethrough": "Strikethrough", - "textStyle": "Style", - "textStyleOptions": "Style Options", - "textSubscript": "Subscript", - "textSuperscript": "Superscript", - "textTable": "Table", - "textText": "Text", - "textTheme": "Theme", - "textTop": "Top", - "textTopLeft": "Top-Left", - "textTopRight": "Top-Right", - "textTotalRow": "Total Row", - "textTransitions": "Transitions", - "textType": "Type", - "textUnCover": "UnCover", - "textVerticalIn": "Vertical In", - "textVerticalOut": "Vertical Out", - "textWedge": "Wedge", - "textWipe": "Wipe", - "textZoom": "Zoom", - "textZoomIn": "Zoom In", - "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate", + "textPush": "Ώθηση", + "textRemoveChart": "Αφαίρεση Γραφήματος", + "textRemoveImage": "Αφαίρεση Εικόνας", + "textRemoveLink": "Αφαίρεση Συνδέσμου", + "textRemoveShape": "Αφαίρεση Σχήματος", + "textRemoveTable": "Αφαίρεση Πίνακα", + "textReorder": "Αναδιάταξη", + "textReplace": "Αντικατάσταση", + "textReplaceAll": "Αντικατάσταση Όλων", + "textReplaceImage": "Αντικατάσταση Εικόνας", + "textRight": "Δεξιά", + "textScreenTip": "Συμβουλή Οθόνης", + "textSearch": "Αναζήτηση", + "textSec": "S", + "textSelectObjectToEdit": "Επιλογή αντικειμένου για επεξεργασία", + "textSendToBackground": "Μεταφορά στο Παρασκήνιο", + "textShape": "Σχήμα", + "textSize": "Μέγεθος", + "textSlide": "Διαφάνεια", + "textSlideInThisPresentation": "Διαφάνεια σε αυτήν την Παρουσίαση", + "textSlideNumber": "Αριθμός Διαφάνειας", + "textSmallCaps": "Μικρά Κεφαλαία", + "textSmoothly": "Ομαλή μετάβαση", + "textSplit": "Διαίρεση", + "textStartOnClick": "Έναρξη Με Κλικ", + "textStrikethrough": "Διακριτική διαγραφή", + "textStyle": "Τεχνοτροπία", + "textStyleOptions": "Επιλογές Tεχνοτροπίας", + "textSubscript": "Δείκτης", + "textSuperscript": "Εκθέτης", + "textTable": "Πίνακας", + "textText": "Κείμενο", + "textTheme": "Θέμα", + "textTop": "Πάνω", + "textTopLeft": "Πάνω-Αριστερά", + "textTopRight": "Πάνω-Δεξιά", + "textTotalRow": "Συνολική Γραμμή", + "textTransition": "Μετάβαση", + "textTransitions": "Μεταβάσεις", + "textType": "Τύπος", + "textUnCover": "Αποκάλυψη", + "textVerticalIn": "Κατακόρυφο Εσωτερικό", + "textVerticalOut": "Κατακόρυφο Εξωτερικό", + "textWedge": "Σύζευξη", + "textWipe": "Εκκαθάριση", + "textZoom": "Εστίαση", + "textZoomIn": "Μεγέθυνση", + "textZoomOut": "Σμίκρυνση", + "textZoomRotate": "Εστίαση και Περιστροφή", + "textAutomatic": "Automatic", + "textDesign": "Design", "textOk": "Ok" }, "Settings": { + "mniSlideStandard": "Τυπικό (4:3)", + "mniSlideWide": "Ευρεία οθόνη (16:9)", "textAbout": "Περί", "textAddress": "διεύθυνση: ", "textApplication": "Εφαρμογή", "textApplicationSettings": "Ρυθμίσεις Εφαρμογής", "textAuthor": "Συγγραφέας", "textBack": "Πίσω", + "textCaseSensitive": "Διάκριση Πεζών-Κεφαλαίων", + "textCentimeter": "Εκατοστό", + "textCollaboration": "Συνεργασία", + "textColorSchemes": "Χρωματικοί Συνδυασμοί", + "textComment": "Σχόλιο", + "textCreated": "Δημιουργήθηκε", + "textDisableAll": "Απενεργοποίηση Όλων", + "textDisableAllMacrosWithNotification": "Απενεργοποίηση όλων των μακροεντολών με ειδοποίηση", + "textDisableAllMacrosWithoutNotification": "Απενεργοποίηση όλων των μακροεντολών χωρίς ειδοποίηση", + "textDone": "Ολοκληρώθηκε", + "textDownload": "Λήψη", + "textDownloadAs": "Λήψη ως...", + "textEmail": "email: ", + "textEnableAll": "Ενεργοποίηση Όλων", + "textEnableAllMacrosWithoutNotification": "Ενεργοποίηση όλων των μακροεντολών χωρίς ειδοποίηση", + "textFind": "Εύρεση", + "textFindAndReplace": "Εύρεση και Αντικατάσταση", + "textFindAndReplaceAll": "Εύρεση και Αντικατάσταση Όλων", + "textHelp": "Βοήθεια", + "textHighlight": "Επισήμανση Αποτελεσμάτων", + "textInch": "Ίντσα", + "textLastModified": "Τελευταίο Τροποποιημένο", + "textLastModifiedBy": "Τελευταία Τροποποίηση Από", + "textLoading": "Φόρτωση...", + "textLocation": "Τοποθεσία", + "textMacrosSettings": "Ρυθμίσεις Mακροεντολών", + "textNoTextFound": "Δεν βρέθηκε το κείμενο", + "textOwner": "Κάτοχος", + "textPoint": "Σημείο", + "textPoweredBy": "Υποστηρίζεται Από", + "textPresentationInfo": "Πληροφορίες Παρουσίασης", + "textPresentationSettings": "Ρυθμίσεις Παρουσίασης", + "textPresentationTitle": "Τίτλος Παρουσίασης", + "textPrint": "Εκτύπωση", + "textReplace": "Αντικατάσταση", + "textReplaceAll": "Αντικατάσταση Όλων", + "textSearch": "Αναζήτηση", + "textSettings": "Ρυθμίσεις", + "textShowNotification": "Εμφάνιση Ειδοποίησης", + "textSlideSize": "Μέγεθος Διαφάνειας", + "textSpellcheck": "Έλεγχος Ορθογραφίας", + "textSubject": "Θέμα", + "textTel": "τηλ:", + "textTitle": "Τίτλος", + "textUnitOfMeasurement": "Μονάδα Μέτρησης", + "textUploaded": "Μεταφορτώθηκε", + "textVersion": "Έκδοση", + "txtScheme1": "Γραφείο", + "txtScheme10": "Διάμεσο", + "txtScheme11": "Μετρό", + "txtScheme12": "Άρθρωμα", + "txtScheme13": "Άφθονο", + "txtScheme14": "Προεξοχή", + "txtScheme15": "Προέλευση", + "txtScheme16": "Χαρτί", + "txtScheme17": "Ηλιοστάσιο", + "txtScheme18": "Τεχνικό", + "txtScheme19": "Ταξίδι", + "txtScheme2": "Αποχρώσεις του γκρι", + "txtScheme20": "Αστικό", + "txtScheme21": "Οίστρος", + "txtScheme22": "Νέο Γραφείο", "txtScheme3": "Άκρο", "txtScheme4": "Άποψη", - "mniSlideStandard": "Standard (4:3)", - "mniSlideWide": "Widescreen (16:9)", - "textCaseSensitive": "Case Sensitive", - "textCentimeter": "Centimeter", - "textCollaboration": "Collaboration", - "textColorSchemes": "Color Schemes", - "textComment": "Comment", - "textCreated": "Created", - "textDisableAll": "Disable All", - "textDisableAllMacrosWithNotification": "Disable all macros with notification", - "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", - "textDone": "Done", - "textDownload": "Download", - "textDownloadAs": "Download As...", - "textEmail": "email:", - "textEnableAll": "Enable All", - "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", - "textFindAndReplaceAll": "Find and Replace All", - "textHelp": "Help", - "textHighlight": "Highlight Results", - "textInch": "Inch", - "textLastModified": "Last Modified", - "textLastModifiedBy": "Last Modified By", - "textLoading": "Loading...", - "textLocation": "Location", - "textMacrosSettings": "Macros Settings", - "textNoTextFound": "Text not found", - "textOwner": "Owner", - "textPoint": "Point", - "textPoweredBy": "Powered By", - "textPresentationInfo": "Presentation Info", - "textPresentationSettings": "Presentation Settings", - "textPresentationTitle": "Presentation Title", - "textPrint": "Print", - "textReplace": "Replace", - "textReplaceAll": "Replace All", - "textSearch": "Search", - "textSettings": "Settings", - "textShowNotification": "Show Notification", - "textSlideSize": "Slide Size", - "textSpellcheck": "Spell Checking", - "textSubject": "Subject", - "textTel": "tel:", - "textTitle": "Title", - "textUnitOfMeasurement": "Unit Of Measurement", - "textUploaded": "Uploaded", - "textVersion": "Version", - "txtScheme1": "Office", - "txtScheme10": "Median", - "txtScheme11": "Metro", - "txtScheme12": "Module", - "txtScheme13": "Opulent", - "txtScheme14": "Oriel", - "txtScheme15": "Origin", - "txtScheme16": "Paper", - "txtScheme17": "Solstice", - "txtScheme18": "Technic", - "txtScheme19": "Trek", - "txtScheme2": "Grayscale", - "txtScheme20": "Urban", - "txtScheme21": "Verve", - "txtScheme22": "New Office", - "txtScheme5": "Civic", - "txtScheme6": "Concourse", - "txtScheme7": "Equity", - "txtScheme8": "Flow", - "txtScheme9": "Foundry", + "txtScheme5": "Κυβικό", + "txtScheme6": "Συνάθροιση", + "txtScheme7": "Μετοχή", + "txtScheme8": "Ροή", + "txtScheme9": "Χυτήριο", "textDarkTheme": "Dark Theme" } - }, - "LongActions": { - "applyChangesTextText": "Loading data...", - "applyChangesTitleText": "Loading Data", - "downloadTextText": "Downloading document...", - "downloadTitleText": "Downloading Document", - "loadFontsTextText": "Loading data...", - "loadFontsTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadFontTitleText": "Loading Data", - "loadImagesTextText": "Loading images...", - "loadImagesTitleText": "Loading Images", - "loadImageTextText": "Loading image...", - "loadImageTitleText": "Loading Image", - "loadingDocumentTextText": "Loading document...", - "loadingDocumentTitleText": "Loading document", - "loadThemeTextText": "Loading theme...", - "loadThemeTitleText": "Loading Theme", - "openTextText": "Opening document...", - "openTitleText": "Opening Document", - "printTextText": "Printing document...", - "printTitleText": "Printing Document", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "saveTextText": "Saving document...", - "saveTitleText": "Saving Document", - "textLoadingDocument": "Loading document", - "txtEditingMode": "Set editing mode...", - "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait..." - }, - "Toolbar": { - "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this page", - "stayButtonText": "Stay on this Page" } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/en.json b/apps/presentationeditor/mobile/locale/en.json index 52e02583f..855036af1 100644 --- a/apps/presentationeditor/mobile/locale/en.json +++ b/apps/presentationeditor/mobile/locale/en.json @@ -33,13 +33,13 @@ "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "textUsers": "Users" }, + "HighlightColorPalette": { + "textNoFill": "No Fill" + }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", "textStandartColors": "Standard Colors", "textThemeColors": "Theme Colors" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -73,9 +73,6 @@ "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", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found", "SDK": { "Chart": "Chart", "Click to add first slide": "Click to add first slide", @@ -110,9 +107,12 @@ "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", "textNo": "No", "textNoLicenseTitle": "License limit reached", + "textNoTextFound": "Text not found", "textOpenFile": "Enter a password to open the file", "textPaidFeature": "Paid feature", "textRemember": "Remember my choice", + "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textYes": "Yes", "titleLicenseExp": "License expired", "titleServerVersion": "Editor updated", @@ -228,6 +228,7 @@ "textLinkTo": "Link to", "textLinkType": "Link Type", "textNextSlide": "Next Slide", + "textOk": "Ok", "textOther": "Other", "textPictureFromLibrary": "Picture from Library", "textPictureFromURL": "Picture from URL", @@ -240,8 +241,7 @@ "textSlideNumber": "Slide Number", "textTable": "Table", "textTableSize": "Table Size", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textOk": "Ok" + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" }, "Edit": { "notcriticalErrorTitle": "Warning", @@ -286,6 +286,7 @@ "textDefault": "Selected text", "textDelay": "Delay", "textDeleteSlide": "Delete Slide", + "textDesign": "Design", "textDisplay": "Display", "textDistanceFromText": "Distance From Text", "textDistributeHorizontally": "Distribute Horizontally", @@ -294,7 +295,6 @@ "textDoubleStrikethrough": "Double Strikethrough", "textDuplicateSlide": "Duplicate Slide", "textDuration": "Duration", - "textDesign": "Design", "textEditLink": "Edit Link", "textEffect": "Effect", "textEffects": "Effects", @@ -338,6 +338,7 @@ "textNoTextFound": "Text not found", "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "textNumbers": "Numbers", + "textOk": "Ok", "textOpacity": "Opacity", "textOptions": "Options", "textPictureFromLibrary": "Picture from Library", @@ -391,8 +392,7 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate", - "textOk": "Ok" + "textZoomRotate": "Zoom and Rotate" }, "Settings": { "mniSlideStandard": "Standard (4:3)", @@ -409,6 +409,7 @@ "textColorSchemes": "Color Schemes", "textComment": "Comment", "textCreated": "Created", + "textDarkTheme": "Dark Theme", "textDisableAll": "Disable All", "textDisableAllMacrosWithNotification": "Disable all macros with notification", "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", @@ -471,8 +472,7 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry", - "textDarkTheme": "Dark Theme" + "txtScheme9": "Foundry" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/es.json b/apps/presentationeditor/mobile/locale/es.json index dfbe6fe3f..b927c1d7a 100644 --- a/apps/presentationeditor/mobile/locale/es.json +++ b/apps/presentationeditor/mobile/locale/es.json @@ -124,9 +124,9 @@ "warnNoLicense": "Ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización. Póngase en contacto con el equipo de ventas de %1 para conocer las condiciones de actualización personal.", "warnNoLicenseUsers": "Usted ha alcanzado el límite de usuarios para los editores de %1.
Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.", "warnProcessRightsChange": "No tiene permiso para editar el archivo.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { diff --git a/apps/presentationeditor/mobile/locale/fr.json b/apps/presentationeditor/mobile/locale/fr.json index ec2f9d898..fbb0da356 100644 --- a/apps/presentationeditor/mobile/locale/fr.json +++ b/apps/presentationeditor/mobile/locale/fr.json @@ -124,9 +124,9 @@ "warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert en lecture seule. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", "warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", "warnProcessRightsChange": "Vous n'avez pas la permission de modifier ce fichier.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { diff --git a/apps/presentationeditor/mobile/locale/gl.json b/apps/presentationeditor/mobile/locale/gl.json index ee7bfff5d..d1c20a8f9 100644 --- a/apps/presentationeditor/mobile/locale/gl.json +++ b/apps/presentationeditor/mobile/locale/gl.json @@ -124,9 +124,9 @@ "warnNoLicense": "Alcanzou o límite de conexións simultáneas con %1 editores. Este documento abrirase para as úa visualización. Póñase en contacto co equipo de vendas de %1 para coñecer as condicións de actualización persoal.", "warnNoLicenseUsers": "Alcanzou o límite de usuarios para os editores de %1.
Contacte co equipo de vendas de %1 para coñecer os termos de actualización persoal.", "warnProcessRightsChange": "Non ten permiso para editar o ficheiro.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { diff --git a/apps/presentationeditor/mobile/locale/hu.json b/apps/presentationeditor/mobile/locale/hu.json index 7c3baf3e3..f6d9104fc 100644 --- a/apps/presentationeditor/mobile/locale/hu.json +++ b/apps/presentationeditor/mobile/locale/hu.json @@ -1,478 +1,478 @@ { "About": { - "textAbout": "About", - "textAddress": "Address", - "textBack": "Back", - "textEmail": "Email", - "textPoweredBy": "Powered By", - "textTel": "Tel", - "textVersion": "Version" + "textAbout": "Névjegy", + "textAddress": "Cím", + "textBack": "Vissza", + "textEmail": "E-mail", + "textPoweredBy": "Powered by", + "textTel": "Tel.", + "textVersion": "Verzió" }, "Common": { "Collaboration": { - "notcriticalErrorTitle": "Warning", - "textAddComment": "Add Comment", - "textAddReply": "Add Reply", - "textBack": "Back", - "textCancel": "Cancel", - "textCollaboration": "Collaboration", - "textComments": "Comments", - "textDeleteComment": "Delete Comment", - "textDeleteReply": "Delete Reply", - "textDone": "Done", - "textEdit": "Edit", - "textEditComment": "Edit Comment", - "textEditReply": "Edit Reply", - "textEditUser": "Users who are editing the file:", - "textMessageDeleteComment": "Do you really want to delete this comment?", - "textMessageDeleteReply": "Do you really want to delete this reply?", - "textNoComments": "This document doesn't contain comments", - "textReopen": "Reopen", - "textResolve": "Resolve", - "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users", - "textOk": "Ok" + "notcriticalErrorTitle": "Figyelmeztetés", + "textAddComment": "Megjegyzés hozzáadása", + "textAddReply": "Válasz hozzáadása", + "textBack": "Vissza", + "textCancel": "Mégse", + "textCollaboration": "Együttműködés", + "textComments": "Megjegyzések", + "textDeleteComment": "Megjegyzés törlése", + "textDeleteReply": "Válasz törlése", + "textDone": "Kész", + "textEdit": "Szerkesztés", + "textEditComment": "Megjegyzés szerkesztése", + "textEditReply": "Válasz szerkesztése", + "textEditUser": "A fájlt szerkesztő felhasználók:", + "textMessageDeleteComment": "Biztosan törölni akarja a megjegyzést?", + "textMessageDeleteReply": "Biztosan törölni akarja ezt a választ?", + "textNoComments": "Ebben a dokumentumban nincsenek megjegyzések", + "textOk": "OK", + "textReopen": "Újranyitás", + "textResolve": "Megold", + "textTryUndoRedo": "A Visszavonás/Újra funkciók le vannak tiltva a Gyors társszerkesztés módban.", + "textUsers": "Felhasználók" }, "ThemeColorPalette": { - "textCustomColors": "Custom Colors", - "textStandartColors": "Standard Colors", - "textThemeColors": "Theme Colors" + "textCustomColors": "Egyéni színek", + "textStandartColors": "Alapértelmezett színek", + "textThemeColors": "Téma színek" }, "HighlightColorPalette": { "textNoFill": "No Fill" } }, "ContextMenu": { - "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add Comment", - "menuAddLink": "Add Link", - "menuCancel": "Cancel", - "menuDelete": "Delete", - "menuDeleteTable": "Delete Table", - "menuEdit": "Edit", - "menuMerge": "Merge", - "menuMore": "More", - "menuOpenLink": "Open Link", - "menuSplit": "Split", - "menuViewComment": "View Comment", - "textColumns": "Columns", - "textCopyCutPasteActions": "Copy, Cut and Paste Actions", - "textDoNotShowAgain": "Don't show again", - "textRows": "Rows" + "errorCopyCutPaste": "A másolás, kivágás és beillesztés a helyi menü segítségével csak az aktuális fájlon belül történik.", + "menuAddComment": "Megjegyzés hozzáadása", + "menuAddLink": "Link hozzáadása", + "menuCancel": "Mégse", + "menuDelete": "Törlés", + "menuDeleteTable": "Táblázat törlése", + "menuEdit": "Szerkesztés", + "menuMerge": "Összevon", + "menuMore": "Több", + "menuOpenLink": "Link megnyitása", + "menuSplit": "Szétválaszt", + "menuViewComment": "Megjegyzés megtekintése", + "textColumns": "Oszlopok", + "textCopyCutPasteActions": "Másolás, kivágás és beillesztés", + "textDoNotShowAgain": "Ne mutassa újra", + "textRows": "Sorok" }, "Controller": { "Main": { - "advDRMOptions": "Protected File", - "advDRMPassword": "Password", - "closeButtonText": "Close File", - "criticalErrorTitle": "Error", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "errorProcessSaveResult": "Saving failed.", - "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "notcriticalErrorTitle": "Warning", + "advDRMOptions": "Védett fájl", + "advDRMPassword": "Jelszó", + "closeButtonText": "Fájl bezárása", + "criticalErrorTitle": "Hiba", + "errorAccessDeny": "Olyan műveletet próbál végrehajtani, amelyhez nincs jogosultsága.
Kérjük, forduljon a rendszergazdához.", + "errorOpensource": "Az ingyenes közösségi verzió használatával a dokumentumokat csak megtekintésre nyithatja meg. A mobil webszerkesztők eléréséhez kereskedelmi licenc szükséges.", + "errorProcessSaveResult": "Sikertelen mentés.", + "errorServerVersion": "A szerkesztő verziója frissült. Az oldal újratöltésre kerül a módosítások alkalmazásához.", + "errorUpdateVersion": "A dokumentum verziója megváltozott. Az oldal újratöltődik.", + "leavePageText": "Nem mentett módosításai vannak ebben a dokumentumban. Kattintson a „Maradj ezen az oldalon” gombra az automatikus mentés megvárásához. Kattintson a \"Hagyja el ezt az oldalt\" gombra az összes nem mentett módosítás elvetéséhez.", + "notcriticalErrorTitle": "Figyelmeztetés", "SDK": { - "Chart": "Chart", - "Click to add first slide": "Click to add first slide", - "Click to add notes": "Click to add notes", + "Chart": "Diagram", + "Click to add first slide": "Kattintson az első dia hozzáadásához", + "Click to add notes": "Kattintson jegyzet hozzáadásához", "ClipArt": "Clip Art", - "Date and time": "Date and time", + "Date and time": "Dátum és idő", "Diagram": "Diagram", - "Diagram Title": "Chart Title", - "Footer": "Footer", - "Header": "Header", - "Image": "Image", - "Loading": "Loading", - "Media": "Media", - "None": "None", - "Picture": "Picture", - "Series": "Series", - "Slide number": "Slide number", - "Slide subtitle": "Slide subtitle", - "Slide text": "Slide text", - "Slide title": "Slide title", - "Table": "Table", - "X Axis": "X Axis XAS", - "Y Axis": "Y Axis", - "Your text here": "Your text here" + "Diagram Title": "Diagram címe", + "Footer": "Lábléc", + "Header": "Fejléc", + "Image": "Kép", + "Loading": "Betöltés", + "Media": "Adathordozó", + "None": "Egyik sem", + "Picture": "Kép", + "Series": "Sorozatok", + "Slide number": "Dia száma", + "Slide subtitle": "Dia alcíme", + "Slide text": "Dia szövege", + "Slide title": "Dia címe", + "Table": "Táblázat", + "X Axis": "X tengely XAS", + "Y Axis": "Y tengely", + "Your text here": "Írja a szöveget ide" }, - "textAnonymous": "Anonymous", - "textBuyNow": "Visit website", - "textClose": "Close", - "textContactUs": "Contact sales", - "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", - "textGuest": "Guest", - "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", - "textNo": "No", - "textNoLicenseTitle": "License limit reached", - "textOpenFile": "Enter a password to open the file", - "textPaidFeature": "Paid feature", - "textRemember": "Remember my choice", - "textYes": "Yes", - "titleLicenseExp": "License expired", - "titleServerVersion": "Editor updated", - "titleUpdateVersion": "Version changed", - "txtIncorrectPwd": "Password is incorrect", - "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", - "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", - "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", - "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", - "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
Please contact your administrator to get full access", - "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", - "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", - "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", - "warnProcessRightsChange": "You don't have permission to edit the file.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textAnonymous": "Névtelen", + "textBuyNow": "Weboldal megnyitása", + "textClose": "Bezár", + "textContactUs": "Kapcsolatba lépés az értékesítéssel", + "textCustomLoader": "Sajnáljuk, nem jogosult a betöltő cseréjére. Árajánlatért kérjük, forduljon értékesítési osztályunkhoz.", + "textGuest": "Vendég", + "textHasMacros": "A fájl automatikus makrókat tartalmaz.
Szeretne makrókat futtatni?", + "textNo": "Nem", + "textNoLicenseTitle": "Elérte a licenckorlátot", + "textOpenFile": "Írja be a megnyitáshoz szükséges jelszót", + "textPaidFeature": "Fizetett funkció", + "textRemember": "Választás megjegyzése", + "textYes": "Igen", + "titleLicenseExp": "Lejárt licenc", + "titleServerVersion": "Szerkesztő frissítve", + "titleUpdateVersion": "A verzió megváltozott", + "txtIncorrectPwd": "Érvénytelen jelszó", + "txtProtected": "Miután megadta a jelszót és megnyitotta a fájlt, annak jelenlegi jelszava visszaállítódik.", + "warnLicenseExceeded": "Elérte a(z) %1 szerkesztővel való egyidejű kapcsolódási korlátot. Ez a dokumentum csak megtekintésre nyílik meg. További információért forduljon rendszergazdájához.", + "warnLicenseExp": "Az ön licence lejárt. Kérjük, újítsa azt meg aztán frissítse az oldalt.", + "warnLicenseLimitedNoAccess": "Licensz lejárt. Nincs hozzáférése a dokumentumszerkesztési funkciókhoz. Kérjük, forduljon rendszergazdájához.", + "warnLicenseLimitedRenewed": "A licencet meg kell újítani. Korlátozott hozzáférése van a dokumentumszerkesztési funkciókhoz.
A teljes hozzáférés érdekében forduljon rendszergazdájához", + "warnLicenseUsersExceeded": "Elérte a(z) %1 szerkesztőhöz tartozó felhasználói korlátját. További információért forduljon rendszergazdájához.", + "warnNoLicense": "Elérte a(z) %1 szerkesztővel való egyidejű kapcsolódási korlátot. Ez a dokumentum csak megtekintésre nyílik meg. Lépjen kapcsolatba a(z) %1 értékesítési csapattal a személyes frissítés feltételekért.", + "warnNoLicenseUsers": "Elérte a(z) %1 szerkesztőhöz tartozó felhasználói korlátját. Vegye fel a kapcsolatot a(z) %1 értékesítési csapattal a személyes frissítési feltételekért.", + "warnProcessRightsChange": "Nincs engedélye a fájl szerkesztésére.", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { - "convertationTimeoutText": "Conversion timeout exceeded.", - "criticalErrorExtText": "Press 'OK' to go back to the document list.", - "criticalErrorTitle": "Error", - "downloadErrorText": "Download failed.", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please contact your admin.", - "errorBadImageUrl": "Image url is incorrect", - "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
When you click the 'OK' button, you will be prompted to download the document.", - "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", - "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", - "errorDataRange": "Incorrect data range.", - "errorDefaultMessage": "Error code: %1", - "errorEditingDownloadas": "An error occurred during the work with the document.
Use the 'Download' option to save the file backup copy locally.", - "errorFilePassProtect": "The file is password protected and could not be opened.", - "errorFileSizeExceed": "The file size exceeds your server limitation.
Please, contact your admin.", - "errorKeyEncrypt": "Unknown key descriptor", - "errorKeyExpire": "Key descriptor expired", - "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", - "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", - "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", - "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
opening price, max price, min price, closing price.", - "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.", - "errorUserDrop": "The file cannot be accessed right now.", - "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download it until the connection is restored and the page is reloaded.", - "notcriticalErrorTitle": "Warning", - "openErrorText": "An error has occurred while opening the file", - "saveErrorText": "An error has occurred while saving the file", - "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", - "splitDividerErrorText": "The number of rows must be a divisor of %1", - "splitMaxColsErrorText": "The number of columns must be less than %1", - "splitMaxRowsErrorText": "The number of rows must be less than %1", - "unknownErrorText": "Unknown error.", - "uploadImageExtMessage": "Unknown image format.", - "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "convertationTimeoutText": "Időtúllépés az átalakítás során.", + "criticalErrorExtText": "Nyomja meg az „OK” gombot a dokumentumlistához való visszatéréshez.", + "criticalErrorTitle": "Hiba", + "downloadErrorText": "Sikertelen letöltés.", + "errorAccessDeny": "Olyan műveletet próbál végrehajtani, amelyhez nincs jogosultsága.
Kérjük, forduljon a rendszergazdához.", + "errorBadImageUrl": "Hibás kép URL", + "errorConnectToServer": "Ezt a dokumentumot nem lehet menteni. Ellenőrizze a kapcsolat beállításait, vagy forduljon a rendszergazdához.
Ha az \"OK\" gombra kattint, a rendszer felkéri a dokumentum letöltésére.", + "errorDatabaseConnection": "Külső hiba.
Adatbázis kapcsolati hiba. Kérem vegye igénybe támogatásunkat.", + "errorDataEncrypted": "Titkosított változások érkeztek, melyek feloldása sikertelen.", + "errorDataRange": "Hibás adattartomány.", + "errorDefaultMessage": "Hibakód: %1", + "errorEditingDownloadas": "Hiba történt a dokumentummal végzett munka során.
A fájl biztonsági másolatának helyi mentéséhez használja a „Letöltés” lehetőséget.", + "errorFilePassProtect": "A fájl jelszóval védett, és nem lehetett megnyitni.", + "errorFileSizeExceed": "A fájl mérete meghaladja a szerverre vonatkozó korlátozást.
Kérjük, forduljon a rendszergazdához.", + "errorKeyEncrypt": "Ismeretlen kulcsleíró", + "errorKeyExpire": "Lejárt kulcsleíró", + "errorLoadingFont": "A betűtípusok nincsenek betöltve.
Kérjük forduljon a dokumentumszerver rendszergazdájához.", + "errorSessionAbsolute": "A dokumentumszerkesztési munkamenet lejárt. Kérem, töltse újra az oldalt.", + "errorSessionIdle": "A dokumentumot hosszú ideje nem szerkesztették. Kérem, töltse újra az oldalt.", + "errorSessionToken": "A szerverrel való kapcsolat megszakadt. Kérjük, töltse újra az oldalt.", + "errorStockChart": "Helytelen sorsorrend. Részvénydiagram felépítéséhez helyezze el az adatokat a lapon a következő sorrendben:
nyitóár, max. ár, min. ár, záróár.", + "errorUpdateVersionOnDisconnect": "Az internetkapcsolat helyreállt és a fájl verziója megváltozott.
Mielőtt folytatná a munkát, töltse le a fájlt vagy másolja át annak tartalmát megbizonyosodva arról, hogy semmi sem veszett el, végül töltse újra ezt az oldalt.", + "errorUserDrop": "A dokumentum jelenleg nem elérhető.", + "errorUsersExceed": "Túllépte a csomagja által engedélyezett felhasználók számát", + "errorViewerDisconnect": "A kapcsolat megszakadt. Továbbra is megtekintheti a dokumentumot,
de nem tudja letölteni vagy kinyomtatni, amíg a kapcsolat vissza nem áll és az oldal újra be nem töltődik.", + "notcriticalErrorTitle": "Figyelmeztetés", + "openErrorText": "Hiba történt a fájl megnyitásakor", + "saveErrorText": "Hiba történt a fájl mentése közben", + "scriptLoadError": "A kapcsolat túl lassú, egyes összetevőket nem sikerült betölteni. Kérem, töltse újra az oldalt.", + "splitDividerErrorText": "A soroknak számának a(z) %1 osztójának kell lennie", + "splitMaxColsErrorText": "Az oszlopok számának kevesebbnek kell lennie mint %1", + "splitMaxRowsErrorText": "A soroknak számának kevesebbnek kell lennie, mint %1", + "unknownErrorText": "Ismeretlen hiba.", + "uploadImageExtMessage": "Ismeretlen képformátum.", + "uploadImageFileCountMessage": "Nincs kép feltöltve.", + "uploadImageSizeMessage": "A kép túl nagy. A maximális méret 25 MB." }, "LongActions": { - "applyChangesTextText": "Loading data...", - "applyChangesTitleText": "Loading Data", - "downloadTextText": "Downloading document...", - "downloadTitleText": "Downloading Document", - "loadFontsTextText": "Loading data...", - "loadFontsTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadFontTitleText": "Loading Data", - "loadImagesTextText": "Loading images...", - "loadImagesTitleText": "Loading Images", - "loadImageTextText": "Loading image...", - "loadImageTitleText": "Loading Image", - "loadingDocumentTextText": "Loading document...", - "loadingDocumentTitleText": "Loading document", - "loadThemeTextText": "Loading theme...", - "loadThemeTitleText": "Loading Theme", - "openTextText": "Opening document...", - "openTitleText": "Opening Document", - "printTextText": "Printing document...", - "printTitleText": "Printing Document", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "saveTextText": "Saving document...", - "saveTitleText": "Saving Document", - "textLoadingDocument": "Loading document", - "txtEditingMode": "Set editing mode...", - "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait..." + "applyChangesTextText": "Adatok betöltése...", + "applyChangesTitleText": "Adatok betöltése", + "downloadTextText": "Dokumentum letöltése...", + "downloadTitleText": "Dokumentum letöltése", + "loadFontsTextText": "Adatok betöltése...", + "loadFontsTitleText": "Adatok betöltése", + "loadFontTextText": "Adatok betöltése...", + "loadFontTitleText": "Adatok betöltése", + "loadImagesTextText": "Képek betöltése...", + "loadImagesTitleText": "Képek betöltése", + "loadImageTextText": "Kép betöltése...", + "loadImageTitleText": "Kép betöltése", + "loadingDocumentTextText": "Dokumentum betöltése...", + "loadingDocumentTitleText": "Dokumentum betöltése", + "loadThemeTextText": "Téma betöltése...", + "loadThemeTitleText": "Téma betöltése", + "openTextText": "Dokumentum megnyitása...", + "openTitleText": "Dokumentum megnyitása", + "printTextText": "Dokumentum nyomtatása...", + "printTitleText": "Dokumentum nyomtatása", + "savePreparingText": "Felkészülés a mentésre", + "savePreparingTitle": "Felkészülés a mentésre. Kérem várjon...", + "saveTextText": "Dokumentum mentése...", + "saveTitleText": "Dokumentum mentése", + "textLoadingDocument": "Dokumentum betöltése", + "txtEditingMode": "Szerkesztési mód beállítása...", + "uploadImageTextText": "Kép feltöltése...", + "uploadImageTitleText": "Kép feltöltése", + "waitText": "Kérjük várjon..." }, "Toolbar": { - "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this page", - "stayButtonText": "Stay on this Page" + "dlgLeaveMsgText": "Nem mentett módosításai vannak ebben a dokumentumban. Kattintson a „Maradj ezen az oldalon” gombra az automatikus mentés megvárásához. Kattintson a \"Hagyja el ezt az oldalt\" gombra az összes nem mentett módosítás elvetéséhez.", + "dlgLeaveTitleText": "Bezárja az alkalmazást", + "leaveButtonText": "Oldal elhagyása", + "stayButtonText": "Maradjon ezen az oldalon" }, "View": { "Add": { - "notcriticalErrorTitle": "Warning", - "textAddLink": "Add Link", - "textAddress": "Address", - "textBack": "Back", - "textCancel": "Cancel", - "textColumns": "Columns", - "textComment": "Comment", - "textDefault": "Selected text", - "textDisplay": "Display", - "textEmptyImgUrl": "You need to specify the image URL.", - "textExternalLink": "External Link", - "textFirstSlide": "First Slide", - "textImage": "Image", - "textImageURL": "Image URL", - "textInsert": "Insert", - "textInsertImage": "Insert Image", - "textLastSlide": "Last Slide", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkTo": "Link to", - "textLinkType": "Link Type", - "textNextSlide": "Next Slide", - "textOther": "Other", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textPreviousSlide": "Previous Slide", - "textRows": "Rows", - "textScreenTip": "Screen Tip", - "textShape": "Shape", - "textSlide": "Slide", - "textSlideInThisPresentation": "Slide in this Presentation", - "textSlideNumber": "Slide Number", - "textTable": "Table", - "textTableSize": "Table Size", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "notcriticalErrorTitle": "Figyelmeztetés", + "textAddLink": "Link hozzáadása", + "textAddress": "Cím", + "textBack": "Vissza", + "textCancel": "Mégse", + "textColumns": "Oszlopok", + "textComment": "Megjegyzés", + "textDefault": "Kiválasztott szöveg", + "textDisplay": "Megjelenít", + "textEmptyImgUrl": "Meg kell adnia a kép URL-jét.", + "textExternalLink": "Külső hivatkozás", + "textFirstSlide": "Első dia", + "textImage": "Kép", + "textImageURL": "Kép URL", + "textInsert": "Beszúrás", + "textInsertImage": "Kép beszúrása", + "textLastSlide": "Utolsó dia", + "textLink": "Hivatkozás", + "textLinkSettings": "Hivatkozás beállítások", + "textLinkTo": "Hivatkozás erre", + "textLinkType": "Hivatkozás típusa", + "textNextSlide": "Következő dia", + "textOther": "Egyéb", + "textPictureFromLibrary": "Kép a könyvtárból", + "textPictureFromURL": "Kép URL-en keresztül", + "textPreviousSlide": "Előző dia", + "textRows": "Sorok", + "textScreenTip": "Képernyőtipp", + "textShape": "Alakzat", + "textSlide": "Dia", + "textSlideInThisPresentation": "Dia ebben a prezentációban", + "textSlideNumber": "Dia száma", + "textTable": "Táblázat", + "textTableSize": "Táblázat mérete", + "txtNotUrl": "Ennek a mezőnek URL formátumúnak kell lennie, pl.: „http://www.pelda.hu”", "textOk": "Ok" }, "Edit": { - "notcriticalErrorTitle": "Warning", - "textActualSize": "Actual Size", - "textAddCustomColor": "Add Custom Color", - "textAdditional": "Additional", - "textAdditionalFormatting": "Additional Formatting", - "textAddress": "Address", - "textAfter": "After", - "textAlign": "Align", - "textAlignBottom": "Align Bottom", - "textAlignCenter": "Align Center", - "textAlignLeft": "Align Left", - "textAlignMiddle": "Align Middle", - "textAlignRight": "Align Right", - "textAlignTop": "Align Top", - "textAllCaps": "All Caps", - "textApplyAll": "Apply to All Slides", - "textAuto": "Auto", - "textBack": "Back", - "textBandedColumn": "Banded Column", - "textBandedRow": "Banded Row", - "textBefore": "Before", - "textBlack": "Through Black", - "textBorder": "Border", - "textBottom": "Bottom", - "textBottomLeft": "Bottom-Left", - "textBottomRight": "Bottom-Right", - "textBringToForeground": "Bring to Foreground", - "textBullets": "Bullets", - "textBulletsAndNumbers": "Bullets & Numbers", - "textCaseSensitive": "Case Sensitive", - "textCellMargins": "Cell Margins", - "textChart": "Chart", - "textClock": "Clock", - "textClockwise": "Clockwise", - "textColor": "Color", - "textCounterclockwise": "Counterclockwise", - "textCover": "Cover", - "textCustomColor": "Custom Color", - "textDefault": "Selected text", - "textDelay": "Delay", - "textDeleteSlide": "Delete Slide", - "textDisplay": "Display", - "textDistanceFromText": "Distance From Text", - "textDistributeHorizontally": "Distribute Horizontally", - "textDistributeVertically": "Distribute Vertically", - "textDone": "Done", - "textDoubleStrikethrough": "Double Strikethrough", - "textDuplicateSlide": "Duplicate Slide", - "textDuration": "Duration", - "textEditLink": "Edit Link", - "textEffect": "Effect", - "textEffects": "Effects", - "textEmptyImgUrl": "You need to specify the image URL.", - "textExternalLink": "External Link", - "textFade": "Fade", - "textFill": "Fill", - "textFinalMessage": "The end of slide preview. Click to exit.", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", - "textFirstColumn": "First Column", - "textFirstSlide": "First Slide", - "textFontColor": "Font Color", - "textFontColors": "Font Colors", - "textFonts": "Fonts", - "textFromLibrary": "Picture from Library", - "textFromURL": "Picture from URL", - "textHeaderRow": "Header Row", - "textHighlight": "Highlight Results", - "textHighlightColor": "Highlight Color", - "textHorizontalIn": "Horizontal In", - "textHorizontalOut": "Horizontal Out", - "textHyperlink": "Hyperlink", - "textImage": "Image", - "textImageURL": "Image URL", - "textLastColumn": "Last Column", - "textLastSlide": "Last Slide", - "textLayout": "Layout", - "textLeft": "Left", - "textLetterSpacing": "Letter Spacing", - "textLineSpacing": "Line Spacing", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkTo": "Link to", - "textLinkType": "Link Type", - "textMoveBackward": "Move Backward", - "textMoveForward": "Move Forward", - "textNextSlide": "Next Slide", - "textNone": "None", - "textNoStyles": "No styles for this type of chart.", - "textNoTextFound": "Text not found", - "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textNumbers": "Numbers", - "textOpacity": "Opacity", - "textOptions": "Options", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textPreviousSlide": "Previous Slide", + "notcriticalErrorTitle": "Figyelmeztetés", + "textActualSize": "Aktuális méret", + "textAddCustomColor": "Egyéni szín hozzáadása", + "textAdditional": "További", + "textAdditionalFormatting": "További formázás", + "textAddress": "Cím", + "textAfter": "után", + "textAlign": "Rendez", + "textAlignBottom": "Alulra rendez", + "textAlignCenter": "Középre rendez", + "textAlignLeft": "Balra rendez", + "textAlignMiddle": "Középre rendez", + "textAlignRight": "Jobbra rendez", + "textAlignTop": "Felülre rendez ", + "textAllCaps": "Csupa nagybetűs", + "textApplyAll": "Minden diára alkalmaz", + "textAuto": "Automatikus", + "textBack": "Vissza", + "textBandedColumn": "Sávos oszlop", + "textBandedRow": "Sávos sor", + "textBefore": "Előtt", + "textBlack": "Feketén keresztül", + "textBorder": "Szegély", + "textBottom": "Alsó", + "textBottomLeft": "Bal alsó", + "textBottomRight": "Jobb alsó", + "textBringToForeground": "Előtérbe hoz", + "textBullets": "Pontok", + "textBulletsAndNumbers": "Pontok és Számok", + "textCaseSensitive": "Kis-nagybetű érzékeny", + "textCellMargins": "Cellamargók", + "textChart": "Diagram", + "textClock": "Óra", + "textClockwise": "Óramutató járásával megegyezően", + "textColor": "Szín", + "textCounterclockwise": "Óramutató járásával ellenkezően", + "textCover": "Fed", + "textCustomColor": "Egyéni szín", + "textDefault": "Kiválasztott szöveg", + "textDelay": "Késleltetés", + "textDeleteSlide": "Dia törlése", + "textDisplay": "Megjelenít", + "textDistanceFromText": "Távolság a szövegtől", + "textDistributeHorizontally": "Eloszlás vízszintesen", + "textDistributeVertically": "Eloszlás függőlegesen", + "textDone": "Kész", + "textDoubleStrikethrough": "Duplán áthúzott", + "textDuplicateSlide": "Dia duplikálása", + "textDuration": "Időtartam", + "textEditLink": "Hivatkozás szerkesztése", + "textEffect": "Effekt", + "textEffects": "Effektek", + "textEmptyImgUrl": "Meg kell adnia a kép URL-jét.", + "textExternalLink": "Külső hivatkozás", + "textFade": "Elhalványít", + "textFill": "Kitöltés", + "textFinalMessage": "Diaelőnézet vége. Kattintson a kilépéshez.", + "textFind": "Keresés", + "textFindAndReplace": "Keresés és csere", + "textFirstColumn": "Első oszlop", + "textFirstSlide": "Első dia", + "textFontColor": "Betűszín", + "textFontColors": "Betűszínek", + "textFonts": "Betűtípusok", + "textFromLibrary": "Kép a könyvtárból", + "textFromURL": "Kép URL-en keresztül", + "textHeaderRow": "Fejléc sor", + "textHighlight": "Eredmények kiemelése", + "textHighlightColor": "Kiemelő szín", + "textHorizontalIn": "Vízszintes be", + "textHorizontalOut": "Vízszintes ki", + "textHyperlink": "Hiperhivatkozás", + "textImage": "Kép", + "textImageURL": "Kép URL", + "textLastColumn": "Utolsó oszlop", + "textLastSlide": "Utolsó dia", + "textLayout": "Elrendezés", + "textLeft": "Bal", + "textLetterSpacing": "Betűtávolság", + "textLineSpacing": "Sortávolság", + "textLink": "Hivatkozás", + "textLinkSettings": "Hivatkozás beállítások", + "textLinkTo": "Hivatkozás erre", + "textLinkType": "Hivatkozás típusa", + "textMoveBackward": "Hátra mozgat", + "textMoveForward": "Előre mozgat", + "textNextSlide": "Következő dia", + "textNone": "Egyik sem", + "textNoStyles": "Az ilyen típusú diagramokhoz nincsenek stílusok.", + "textNoTextFound": "A szöveg nem található", + "textNotUrl": "Ennek a mezőnek URL formátumúnak kell lennie, pl.: „http://www.pelda.hu”", + "textNumbers": "Számok", + "textOpacity": "Áttetszőség", + "textOptions": "Beállítások", + "textPictureFromLibrary": "Kép a könyvtárból", + "textPictureFromURL": "Kép URL-en keresztül", + "textPreviousSlide": "Előző dia", "textPt": "pt", - "textPush": "Push", - "textRemoveChart": "Remove Chart", - "textRemoveImage": "Remove Image", - "textRemoveLink": "Remove Link", - "textRemoveShape": "Remove Shape", - "textRemoveTable": "Remove Table", - "textReorder": "Reorder", - "textReplace": "Replace", - "textReplaceAll": "Replace All", - "textReplaceImage": "Replace Image", - "textRight": "Right", - "textScreenTip": "Screen Tip", - "textSearch": "Search", + "textPush": "Nyom", + "textRemoveChart": "Diagram eltávolítása", + "textRemoveImage": "Kép eltávolítása", + "textRemoveLink": "Link eltávolítása", + "textRemoveShape": "Alakzat eltávolítása", + "textRemoveTable": "Táblázat eltávolítása", + "textReorder": "Újrarendez", + "textReplace": "Cserél", + "textReplaceAll": "Mindent cserél", + "textReplaceImage": "Kép cseréje", + "textRight": "Jobb", + "textScreenTip": "Képernyőtipp", + "textSearch": "Keresés", "textSec": "s", - "textSelectObjectToEdit": "Select object to edit", - "textSendToBackground": "Send to Background", - "textShape": "Shape", - "textSize": "Size", - "textSlide": "Slide", - "textSlideInThisPresentation": "Slide in this Presentation", - "textSlideNumber": "Slide Number", - "textSmallCaps": "Small Caps", - "textSmoothly": "Smoothly", - "textSplit": "Split", - "textStartOnClick": "Start On Click", - "textStrikethrough": "Strikethrough", - "textStyle": "Style", - "textStyleOptions": "Style Options", - "textSubscript": "Subscript", - "textSuperscript": "Superscript", - "textTable": "Table", - "textText": "Text", - "textTheme": "Theme", - "textTop": "Top", - "textTopLeft": "Top-Left", - "textTopRight": "Top-Right", - "textTotalRow": "Total Row", - "textTransition": "Transition", - "textType": "Type", - "textUnCover": "UnCover", - "textVerticalIn": "Vertical In", - "textVerticalOut": "Vertical Out", - "textWedge": "Wedge", - "textWipe": "Wipe", + "textSelectObjectToEdit": "Szerkeszteni kívánt objektumot kiválasztása", + "textSendToBackground": "Háttérbe küld", + "textShape": "Alakzat", + "textSize": "Méret", + "textSlide": "Dia", + "textSlideInThisPresentation": "Dia ebben a prezentációban", + "textSlideNumber": "Dia száma", + "textSmallCaps": "Kisbetűk", + "textSmoothly": "Simán", + "textSplit": "Szétválaszt", + "textStartOnClick": "Kattintásra elindít", + "textStrikethrough": "Áthúzott", + "textStyle": "Stílus", + "textStyleOptions": "Stílusbeállítások", + "textSubscript": "Alsó index", + "textSuperscript": "Felső index", + "textTable": "Táblázat", + "textText": "Szöveg", + "textTheme": "Téma", + "textTop": "Felső", + "textTopLeft": "Bal felső", + "textTopRight": "Jobb felső", + "textTotalRow": "Összes sor", + "textTransition": "Átmenet", + "textTransitions": "Átmenetek", + "textType": "Típus", + "textUnCover": "Felfed", + "textVerticalIn": "Függőlegesen befele", + "textVerticalOut": "Függőlegesen kifele", + "textWedge": "Beékel", + "textWipe": "Törlés", "textZoom": "Zoom", - "textZoomIn": "Zoom In", - "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate", - "textTransitions": "Transitions", - "textDesign": "Design", + "textZoomIn": "Nagyítás", + "textZoomOut": "Kicsinyítés", + "textZoomRotate": "Zoom és elforgatás", "textAutomatic": "Automatic", + "textDesign": "Design", "textOk": "Ok" }, "Settings": { - "mniSlideStandard": "Standard (4:3)", - "mniSlideWide": "Widescreen (16:9)", - "textAbout": "About", - "textAddress": "address:", - "textApplication": "Application", - "textApplicationSettings": "Application Settings", - "textAuthor": "Author", - "textBack": "Back", - "textCaseSensitive": "Case Sensitive", - "textCentimeter": "Centimeter", - "textCollaboration": "Collaboration", - "textColorSchemes": "Color Schemes", - "textComment": "Comment", - "textCreated": "Created", - "textDisableAll": "Disable All", - "textDisableAllMacrosWithNotification": "Disable all macros with notification", - "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", - "textDone": "Done", - "textDownload": "Download", - "textDownloadAs": "Download As...", - "textEmail": "email:", - "textEnableAll": "Enable All", - "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", - "textFindAndReplaceAll": "Find and Replace All", - "textHelp": "Help", - "textHighlight": "Highlight Results", - "textInch": "Inch", - "textLastModified": "Last Modified", - "textLastModifiedBy": "Last Modified By", - "textLoading": "Loading...", - "textLocation": "Location", - "textMacrosSettings": "Macros Settings", - "textNoTextFound": "Text not found", - "textOwner": "Owner", - "textPoint": "Point", - "textPoweredBy": "Powered By", - "textPresentationInfo": "Presentation Info", - "textPresentationSettings": "Presentation Settings", - "textPresentationTitle": "Presentation Title", - "textPrint": "Print", - "textReplace": "Replace", - "textReplaceAll": "Replace All", - "textSearch": "Search", - "textSettings": "Settings", - "textShowNotification": "Show Notification", - "textSlideSize": "Slide Size", - "textSpellcheck": "Spell Checking", - "textSubject": "Subject", - "textTel": "tel:", - "textTitle": "Title", - "textUnitOfMeasurement": "Unit Of Measurement", - "textUploaded": "Uploaded", - "textVersion": "Version", + "mniSlideStandard": "Sztenderd (4:3)", + "mniSlideWide": "Szélesvásznú (16:9)", + "textAbout": "Névjegy", + "textAddress": "Cím:", + "textApplication": "Alkalmazás", + "textApplicationSettings": "Alkalmazás beállítások", + "textAuthor": "Szerző", + "textBack": "Vissza", + "textCaseSensitive": "Kis-nagybetű érzékeny", + "textCentimeter": "Centiméter", + "textCollaboration": "Együttműködés", + "textColorSchemes": "Szín sémák", + "textComment": "Megjegyzés", + "textCreated": "Létrehozva", + "textDisableAll": "Összes letiltása", + "textDisableAllMacrosWithNotification": "Tiltsa le az összes makrót értesítéssel", + "textDisableAllMacrosWithoutNotification": "Tiltsa le az összes makrót értesítés nélkül", + "textDone": "Kész", + "textDownload": "Letöltés", + "textDownloadAs": "Letöltés másként...", + "textEmail": "e-mail:", + "textEnableAll": "Összes engedélyezése", + "textEnableAllMacrosWithoutNotification": "Engedélyezze az összes makrót értesítés nélkül", + "textFind": "Keresés", + "textFindAndReplace": "Keresés és csere", + "textFindAndReplaceAll": "Összes keresése és cseréje", + "textHelp": "Súgó", + "textHighlight": "Eredmények kiemelése", + "textInch": "Hüvelyk", + "textLastModified": "Utoljára módosított", + "textLastModifiedBy": "Utoljára módosította", + "textLoading": "Betöltés...", + "textLocation": "Hely", + "textMacrosSettings": "Makró beállítások", + "textNoTextFound": "A szöveg nem található", + "textOwner": "Tulajdonos", + "textPoint": "Pont", + "textPoweredBy": "Powered by", + "textPresentationInfo": "Prezentáció infó", + "textPresentationSettings": "Prezentáció beállításai", + "textPresentationTitle": "Prezentáció címe", + "textPrint": "Nyomtatás", + "textReplace": "Cserél", + "textReplaceAll": "Mindent cserél", + "textSearch": "Keresés", + "textSettings": "Beállítások", + "textShowNotification": "Értesítés megjelenítése", + "textSlideSize": "Dia mérete", + "textSpellcheck": "Helyesírás-ellenőrzés", + "textSubject": "Tárgy", + "textTel": "tel.:", + "textTitle": "Cím", + "textUnitOfMeasurement": "Mértékegység", + "textUploaded": "Feltöltve", + "textVersion": "Verzió", "txtScheme1": "Office", - "txtScheme10": "Median", + "txtScheme10": "Medián", "txtScheme11": "Metro", - "txtScheme12": "Module", - "txtScheme13": "Opulent", - "txtScheme14": "Oriel", - "txtScheme15": "Origin", - "txtScheme16": "Paper", - "txtScheme17": "Solstice", + "txtScheme12": "Modul", + "txtScheme13": "Bőséges", + "txtScheme14": "Ablakfülke", + "txtScheme15": "Eredet", + "txtScheme16": "Papír", + "txtScheme17": "Napforduló", "txtScheme18": "Technic", - "txtScheme19": "Trek", - "txtScheme2": "Grayscale", - "txtScheme20": "Urban", - "txtScheme21": "Verve", - "txtScheme22": "New Office", - "txtScheme3": "Apex", - "txtScheme4": "Aspect", - "txtScheme5": "Civic", - "txtScheme6": "Concourse", - "txtScheme7": "Equity", - "txtScheme8": "Flow", - "txtScheme9": "Foundry", + "txtScheme19": "Vándorlás", + "txtScheme2": "Szürkeárnyalatos", + "txtScheme20": "Városi", + "txtScheme21": "Lelkesedés", + "txtScheme22": "Új Office", + "txtScheme3": "Csúcs", + "txtScheme4": "Nézőpont", + "txtScheme5": "Polgári", + "txtScheme6": "Előcsarnok", + "txtScheme7": "Saját tőke", + "txtScheme8": "Folyam", + "txtScheme9": "Öntöde", "textDarkTheme": "Dark Theme" } } diff --git a/apps/presentationeditor/mobile/locale/it.json b/apps/presentationeditor/mobile/locale/it.json index da095d8c6..acef63b0a 100644 --- a/apps/presentationeditor/mobile/locale/it.json +++ b/apps/presentationeditor/mobile/locale/it.json @@ -124,9 +124,9 @@ "warnNoLicense": "Hai raggiunto il limite delle connessioni simultanee agli editor %1. Questo documento sarà aperto solo in modalità di visualizzazione. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", "warnNoLicenseUsers": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", "warnProcessRightsChange": "Non hai il permesso di modificare il file.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { diff --git a/apps/presentationeditor/mobile/locale/ja.json b/apps/presentationeditor/mobile/locale/ja.json index cb27d43ad..5cc5a35bd 100644 --- a/apps/presentationeditor/mobile/locale/ja.json +++ b/apps/presentationeditor/mobile/locale/ja.json @@ -124,9 +124,9 @@ "warnNoLicense": "%1エディター 時接続数の制限に達しました。この文書が見るだけのために開かれる。個人的なアップグレード条件については、%1営業チームを連絡してください。", "warnNoLicenseUsers": "%1エディターのユーザー制限に達しました。 個人的なアップグレード条件については、%1営業チームを連絡してください。", "warnProcessRightsChange": "ファイルを編集する権限がありません!", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { diff --git a/apps/presentationeditor/mobile/locale/ko.json b/apps/presentationeditor/mobile/locale/ko.json index 6752b2722..1152fc5ff 100644 --- a/apps/presentationeditor/mobile/locale/ko.json +++ b/apps/presentationeditor/mobile/locale/ko.json @@ -124,9 +124,9 @@ "warnNoLicense": "% 1 편집 연결 수 제한에 도달했습니다. 이 문서는 보기 모드로 열립니다. 개인적인 업그레이드 사항은 % 1 영업팀에 연락하십시오.", "warnNoLicenseUsers": "ONLYOFFICE 편집자의이 버전은 동시 사용자에게 일정한 제한이 있습니다.
더 필요한 것이 있으면 현재 라이센스를 업그레이드하거나 상용 라이센스를 구입하십시오.", "warnProcessRightsChange": "파일을 수정할 수 있는 권한이 없습니다.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { diff --git a/apps/presentationeditor/mobile/locale/nl.json b/apps/presentationeditor/mobile/locale/nl.json index ac30df588..0a7257bf1 100644 --- a/apps/presentationeditor/mobile/locale/nl.json +++ b/apps/presentationeditor/mobile/locale/nl.json @@ -124,9 +124,9 @@ "warnNoLicense": "U hebt de limiet bereikt voor gelijktijdige verbindingen met %1 gelijktijdige gebruikers. Dit document wordt alleen geopend om te bekijken. Neem contact op met %1 verkoopteam voor persoonlijke upgradevoorwaarden.", "warnNoLicenseUsers": "U heeft de gebruikerslimiet voor %1 gelijktijdige gebruikers bereikt. Neem contact op met de verkoopafdeling voor persoonlijke upgradevoorwaarden.", "warnProcessRightsChange": "Je hebt geen toestemming om het bestand te bewerken.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { diff --git a/apps/presentationeditor/mobile/locale/pt.json b/apps/presentationeditor/mobile/locale/pt.json index 395bca5cc..c3ea981dc 100644 --- a/apps/presentationeditor/mobile/locale/pt.json +++ b/apps/presentationeditor/mobile/locale/pt.json @@ -33,13 +33,13 @@ "textTryUndoRedo": "As funções Desfazer/Refazer estão desabilitadas para o modo de coedição rápido.", "textUsers": "Usuários" }, + "HighlightColorPalette": { + "textNoFill": "Sem preenchimento" + }, "ThemeColorPalette": { "textCustomColors": "Cores personalizadas", "textStandartColors": "Cores padrão", "textThemeColors": "Cores do tema" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -107,9 +107,12 @@ "textHasMacros": "O arquivo contém macros automáticas.
Você quer executar macros?", "textNo": "Não", "textNoLicenseTitle": "Limite de licença atingido", + "textNoTextFound": "Texto não encontrado", "textOpenFile": "Inserir a Senha para Abrir o Arquivo", "textPaidFeature": "Recurso pago", "textRemember": "Lembrar minha escolha", + "textReplaceSkipped": "A substituição foi realizada. {0} ocorrências foram ignoradas.", + "textReplaceSuccess": "A pesquisa foi realizada. Ocorrências substituídas: {0}", "textYes": "Sim", "titleLicenseExp": "A licença expirou", "titleServerVersion": "Editor atualizado", @@ -123,10 +126,7 @@ "warnLicenseUsersExceeded": "Você atingiu o limite de usuários para editores %1. Entre em contato com seu administrador para saber mais.", "warnNoLicense": "Você atingiu o limite de conexões simultâneas para% 1 editores. Este documento será aberto apenas para visualização. Contate a equipe de vendas% 1 para termos de atualização pessoal.", "warnNoLicenseUsers": "Você atingiu o limite de usuários para editores %1.
Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", - "warnProcessRightsChange": "Você não tem permissão para editar o arquivo.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "warnProcessRightsChange": "Você não tem permissão para editar o arquivo." } }, "Error": { @@ -228,6 +228,7 @@ "textLinkTo": "Vincular a", "textLinkType": "Tipo de link", "textNextSlide": "Próximo slide", + "textOk": "OK", "textOther": "Outro", "textPictureFromLibrary": "Imagem da biblioteca", "textPictureFromURL": "Imagem da URL", @@ -240,8 +241,7 @@ "textSlideNumber": "Número do slide", "textTable": "Tabela", "textTableSize": "Tamanho da tabela", - "txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"", - "textOk": "Ok" + "txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"" }, "Edit": { "notcriticalErrorTitle": "Atenção", @@ -261,6 +261,7 @@ "textAllCaps": "Todas maiúsculas", "textApplyAll": "Aplicar a todos os slides", "textAuto": "Automático", + "textAutomatic": "Automático", "textBack": "Voltar", "textBandedColumn": "Coluna em faixa", "textBandedRow": "Linha de Faixa", @@ -285,6 +286,7 @@ "textDefault": "Texto selecionado", "textDelay": "Atraso", "textDeleteSlide": "Excluir slide", + "textDesign": "Design", "textDisplay": "Exibir", "textDistanceFromText": "Distância do texto", "textDistributeHorizontally": "Distribuir horizontalmente", @@ -336,6 +338,7 @@ "textNoTextFound": "Texto não encontrado", "textNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"", "textNumbers": "Números", + "textOk": "OK", "textOpacity": "Opacidade", "textOptions": "Opções", "textPictureFromLibrary": "Imagem da biblioteca", @@ -390,10 +393,7 @@ "textZoom": "Zoom", "textZoomIn": "Ampliar", "textZoomOut": "Reduzir", - "textZoomRotate": "Zoom e Rotação", - "textAutomatic": "Automatic", - "textDesign": "Design", - "textOk": "Ok" + "textZoomRotate": "Zoom e Rotação" }, "Settings": { "mniSlideStandard": "Padrão (4:3)", @@ -410,6 +410,7 @@ "textColorSchemes": "Esquemas de cor", "textComment": "Comente", "textCreated": "Criado", + "textDarkTheme": "Tema Escuro", "textDisableAll": "Desabilitar tudo", "textDisableAllMacrosWithNotification": "Desativar todas as macros com notificação", "textDisableAllMacrosWithoutNotification": "Desativar todas as macros sem notificação", @@ -472,8 +473,7 @@ "txtScheme6": "Concurso", "txtScheme7": "Patrimônio Líquido", "txtScheme8": "Fluxo", - "txtScheme9": "Fundição", - "textDarkTheme": "Dark Theme" + "txtScheme9": "Fundição" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/ro.json b/apps/presentationeditor/mobile/locale/ro.json index 23f130c8a..98b4984dc 100644 --- a/apps/presentationeditor/mobile/locale/ro.json +++ b/apps/presentationeditor/mobile/locale/ro.json @@ -124,9 +124,9 @@ "warnNoLicense": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare. Contactați %1 Departamentul de Vânzări pentru acordarea condițiilor personale de actualizare.", "warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori ai %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.", "warnProcessRightsChange": "Nu aveți permisiunea de editare pentru fișier.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { diff --git a/apps/presentationeditor/mobile/locale/ru.json b/apps/presentationeditor/mobile/locale/ru.json index 9e3a5d7ab..ec2f8f15a 100644 --- a/apps/presentationeditor/mobile/locale/ru.json +++ b/apps/presentationeditor/mobile/locale/ru.json @@ -33,13 +33,13 @@ "textTryUndoRedo": "Функции отмены и повтора действий отключены в Быстром режиме совместного редактирования.", "textUsers": "Пользователи" }, + "HighlightColorPalette": { + "textNoFill": "Без заливки" + }, "ThemeColorPalette": { "textCustomColors": "Пользовательские цвета", "textStandartColors": "Стандартные цвета", "textThemeColors": "Цвета темы" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -107,9 +107,12 @@ "textHasMacros": "Файл содержит автозапускаемые макросы.
Хотите запустить макросы?", "textNo": "Нет", "textNoLicenseTitle": "Лицензионное ограничение", + "textNoTextFound": "Текст не найден", "textOpenFile": "Введите пароль для открытия файла", "textPaidFeature": "Платная функция", "textRemember": "Запомнить мой выбор", + "textReplaceSkipped": "Замена выполнена. Пропущено вхождений - {0}.", + "textReplaceSuccess": "Поиск выполнен. Заменено вхождений: {0}", "textYes": "Да", "titleLicenseExp": "Истек срок действия лицензии", "titleServerVersion": "Редактор обновлен", @@ -123,10 +126,7 @@ "warnLicenseUsersExceeded": "Вы достигли лимита на количество пользователей редакторов %1. Свяжитесь с администратором, чтобы узнать больше.", "warnNoLicense": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт на просмотр. Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия обновления.", "warnNoLicenseUsers": "Вы достигли лимита на количество пользователей редакторов %1. Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия обновления.", - "warnProcessRightsChange": "У вас нет прав на редактирование этого файла.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "warnProcessRightsChange": "У вас нет прав на редактирование этого файла." } }, "Error": { @@ -410,6 +410,7 @@ "textColorSchemes": "Цветовые схемы", "textComment": "Комментарий", "textCreated": "Создана", + "textDarkTheme": "Темная тема", "textDisableAll": "Отключить все", "textDisableAllMacrosWithNotification": "Отключить все макросы с уведомлением", "textDisableAllMacrosWithoutNotification": "Отключить все макросы без уведомления", @@ -472,8 +473,7 @@ "txtScheme6": "Открытая", "txtScheme7": "Справедливость", "txtScheme8": "Поток", - "txtScheme9": "Литейная", - "textDarkTheme": "Dark Theme" + "txtScheme9": "Литейная" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/tr.json b/apps/presentationeditor/mobile/locale/tr.json index 871d9967c..fd4abc8d3 100644 --- a/apps/presentationeditor/mobile/locale/tr.json +++ b/apps/presentationeditor/mobile/locale/tr.json @@ -124,9 +124,9 @@ "warnNoLicense": "%1 düzenleyiciye eşzamanlı bağlantı sınırına ulaştınız. Bu belge yalnızca görüntüleme için açılacaktır. Kişisel yükseltme koşulları için %1 satış ekibiyle iletişime geçin.", "warnNoLicenseUsers": "%1 düzenleyici için kullanıcı sınırına ulaştınız. Kişisel yükseltme koşulları için %1 satış ekibiyle iletişime geçin.", "warnProcessRightsChange": "Dosyayı düzenleme izniniz yok.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { @@ -470,10 +470,10 @@ "txtScheme7": "Net Değer", "txtScheme8": "Yayılma", "txtScheme9": "Döküm", + "textDarkTheme": "Dark Theme", "txtScheme14": "Oriel", "txtScheme17": "Solstice", - "txtScheme19": "Trek", - "textDarkTheme": "Dark Theme" + "txtScheme19": "Trek" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/zh.json b/apps/presentationeditor/mobile/locale/zh.json index 31b35f4f8..a6d48071b 100644 --- a/apps/presentationeditor/mobile/locale/zh.json +++ b/apps/presentationeditor/mobile/locale/zh.json @@ -124,9 +124,9 @@ "warnNoLicense": "你已经触发了 %1 编辑器的同时在线数限制. 该文档打开后,你将只能查看。请联系 %1 的销售团队,获取个人升级条款。", "warnNoLicenseUsers": "你触发了 %1 编辑器的同时在线数限制。可联系管理员来了解更多信息。", "warnProcessRightsChange": "你没有编辑文件的权限。", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { diff --git a/apps/spreadsheeteditor/mobile/locale/az.json b/apps/spreadsheeteditor/mobile/locale/az.json index c7b2e7591..606c82a0b 100644 --- a/apps/spreadsheeteditor/mobile/locale/az.json +++ b/apps/spreadsheeteditor/mobile/locale/az.json @@ -156,10 +156,10 @@ "warnNoLicenseUsers": "1% redaktor üçün istifadəçi limitinə çatdınız. Şəxsi təkmilləşdirmə şərtləri üçün 1% satış komandası ilə əlaqə saxlayın.", "warnProcessRightsChange": "Faylı redaktə etmək icazəniz yoxdur.", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", + "textNoTextFound": "Text not found", "textOk": "Ok", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { diff --git a/apps/spreadsheeteditor/mobile/locale/ca.json b/apps/spreadsheeteditor/mobile/locale/ca.json index 3f399c424..c46797523 100644 --- a/apps/spreadsheeteditor/mobile/locale/ca.json +++ b/apps/spreadsheeteditor/mobile/locale/ca.json @@ -156,10 +156,10 @@ "warnNoLicenseUsers": "Has arribat al límit d'usuaris per a %1 editors. Contacta amb l'equip de vendes de %1 per obtenir les condicions de millora personals dels teus serveis.", "warnProcessRightsChange": "No tens permís per editar el fitxer.", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", + "textNoTextFound": "Text not found", "textOk": "Ok", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { diff --git a/apps/spreadsheeteditor/mobile/locale/cs.json b/apps/spreadsheeteditor/mobile/locale/cs.json index 884e67571..3e8551ec0 100644 --- a/apps/spreadsheeteditor/mobile/locale/cs.json +++ b/apps/spreadsheeteditor/mobile/locale/cs.json @@ -156,10 +156,10 @@ "warnNoLicenseUsers": "Došlo k dosažení limitu %1 editorů. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", "warnProcessRightsChange": "Nemáte oprávnění pro úpravu tohoto dokumentu.", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", + "textNoTextFound": "Text not found", "textOk": "Ok", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { diff --git a/apps/spreadsheeteditor/mobile/locale/da.json b/apps/spreadsheeteditor/mobile/locale/da.json index baeaa6e6a..b403fa641 100644 --- a/apps/spreadsheeteditor/mobile/locale/da.json +++ b/apps/spreadsheeteditor/mobile/locale/da.json @@ -149,17 +149,17 @@ "textBuyNow": "Visit website", "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", + "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", + "textNoTextFound": "Text not found", + "textOk": "Ok", "textRemember": "Remember my choice", + "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "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.", "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.", - "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", - "textOk": "Ok", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "warnProcessRightsChange": "You don't have permission to edit the file." } }, "Error": { @@ -203,6 +203,7 @@ "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
Select another data range so that the whole table is shifted and try again.", "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
Select a uniform data range inside or outside the table and try again.", "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
Please, unhide the filtered elements and try again.", + "errorCannotUseCommandProtectedSheet": "You cannot use this command on a protected sheet. To use this command, unprotect the sheet.
You might be requested to enter a password.", "errorChangeArray": "You cannot change part of an array.", "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password.", "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
Select a single range and try again.", @@ -232,8 +233,7 @@ "textErrorPasswordIsNotCorrect": "The password you supplied is not correct.
Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.", "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorCannotUseCommandProtectedSheet": "You cannot use this command on a protected sheet. To use this command, unprotect the sheet.
You might be requested to enter a password." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." }, "LongActions": { "advDRMPassword": "Kodeord", @@ -289,14 +289,14 @@ "textErrNameExists": "Worksheet with this name already exists.", "textErrNotEmpty": "Sheet name must not be empty", "textErrorLastSheet": "The workbook must have at least one visible worksheet.", + "textMove": "Move", + "textMoveBack": "Move back", + "textMoveForward": "Move forward", "textRename": "Rename", "textRenameSheet": "Rename Sheet", "textSheet": "Sheet", "textSheetName": "Sheet Name", "textUnhide": "Unhide", - "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward", "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" }, "Toolbar": { @@ -348,6 +348,7 @@ "sCatStatistical": "Statistical", "sCatTextAndData": "Text and data", "textEmptyImgUrl": "You need to specify the image URL.", + "textOk": "Ok", "textRequired": "Required", "textScreenTip": "Screen Tip", "textSelectedRange": "Selected Range", @@ -357,8 +358,7 @@ "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", - "textOk": "Ok" + "txtSortSelected": "Sort selected" }, "Edit": { "textAccounting": "Regnskab", @@ -498,6 +498,7 @@ "textErrorMsg": "You must choose at least one value", "textErrorTitle": "Warning", "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textOk": "Ok", "textReorder": "Reorder", "textReplace": "Replace", "textReplaceImage": "Replace Image", @@ -539,8 +540,7 @@ "textVerticalText": "Vertical Text", "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "txtSortHigh2Low": "Sort Highest to Lowest", - "txtSortLow2High": "Sort Lowest to Highest", - "textOk": "Ok" + "txtSortLow2High": "Sort Lowest to Highest" }, "Settings": { "advCSVOptions": "Vælg CSV-muligheder", @@ -639,6 +639,7 @@ "warnDownloadAs": "Hvis du fortsætter med at gemme i dette format, vil alle funktioner på nær teksten blive tabt.
Er du sikker på at du vil fortsætte?", "advDRMEnterPassword": "Your password, please:", "notcriticalErrorTitle": "Warning", + "textDarkTheme": "Dark Theme", "textNoTextFound": "Text not found", "textReplace": "Replace", "textReplaceAll": "Replace All", @@ -670,8 +671,7 @@ "txtScheme21": "Verve", "txtSemicolon": "Semicolon", "txtSpace": "Space", - "txtTab": "Tab", - "textDarkTheme": "Dark Theme" + "txtTab": "Tab" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/de.json b/apps/spreadsheeteditor/mobile/locale/de.json index 1dede951e..eccbb5ee3 100644 --- a/apps/spreadsheeteditor/mobile/locale/de.json +++ b/apps/spreadsheeteditor/mobile/locale/de.json @@ -156,10 +156,10 @@ "warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", "warnProcessRightsChange": "Sie können diese Datei nicht bearbeiten.", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", + "textNoTextFound": "Text not found", "textOk": "Ok", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { diff --git a/apps/spreadsheeteditor/mobile/locale/el.json b/apps/spreadsheeteditor/mobile/locale/el.json index 2e6976626..817492387 100644 --- a/apps/spreadsheeteditor/mobile/locale/el.json +++ b/apps/spreadsheeteditor/mobile/locale/el.json @@ -1,676 +1,676 @@ { "About": { - "textAbout": "About", - "textAddress": "Address", - "textBack": "Back", + "textAbout": "Περί", + "textAddress": "Διεύθυνση", + "textBack": "Πίσω", "textEmail": "Email", - "textPoweredBy": "Powered By", - "textTel": "Tel", - "textVersion": "Version" + "textPoweredBy": "Υποστηρίζεται Από", + "textTel": "Τηλ", + "textVersion": "Έκδοση" }, "Common": { "Collaboration": { - "notcriticalErrorTitle": "Warning", - "textAddComment": "Add Comment", - "textAddReply": "Add Reply", - "textBack": "Back", - "textCancel": "Cancel", - "textCollaboration": "Collaboration", - "textComments": "Comments", - "textDeleteComment": "Delete Comment", - "textDeleteReply": "Delete Reply", - "textDone": "Done", - "textEdit": "Edit", - "textEditComment": "Edit Comment", - "textEditReply": "Edit Reply", - "textEditUser": "Users who are editing the file:", - "textMessageDeleteComment": "Do you really want to delete this comment?", - "textMessageDeleteReply": "Do you really want to delete this reply?", - "textNoComments": "This document doesn't contain comments", - "textReopen": "Reopen", - "textResolve": "Resolve", - "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users", - "textOk": "Ok" + "notcriticalErrorTitle": "Προειδοποίηση", + "textAddComment": "Προσθήκη Σχολίου", + "textAddReply": "Προσθήκη Απάντησης", + "textBack": "Πίσω", + "textCancel": "Ακύρωση", + "textCollaboration": "Συνεργασία", + "textComments": "Σχόλια", + "textDeleteComment": "Διαγραφή Σχολίου", + "textDeleteReply": "Διαγραφή Απάντησης", + "textDone": "Ολοκληρώθηκε", + "textEdit": "Επεξεργασία", + "textEditComment": "Επεξεργασία Σχολίου", + "textEditReply": "Επεξεργασία Απάντησης", + "textEditUser": "Οι χρήστες που επεξεργάζονται το αρχείο:", + "textMessageDeleteComment": "Θέλετε πραγματικά να διαγράψετε αυτό το σχόλιο;", + "textMessageDeleteReply": "Θέλετε πραγματικά να διαγράψετε αυτή την απάντηση;", + "textNoComments": "Αυτό το έγγραφο δεν περιέχει σχόλια", + "textOk": "Εντάξει", + "textReopen": "Άνοιγμα ξανά", + "textResolve": "Επίλυση", + "textTryUndoRedo": "Οι λειτουργίες Αναίρεση/Επανάληψη είναι απενεργοποιημένες στην κατάσταση Γρήγορης συν-επεξεργασίας.", + "textUsers": "Χρήστες" }, "ThemeColorPalette": { - "textCustomColors": "Custom Colors", - "textStandartColors": "Standard Colors", - "textThemeColors": "Theme Colors" + "textCustomColors": "Προσαρμοσμένα Χρώματα", + "textStandartColors": "Τυπικά Χρώματα", + "textThemeColors": "Χρώματα Θέματος" } }, "ContextMenu": { - "errorCopyCutPaste": "Copy, cut, and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add Comment", - "menuAddLink": "Add Link", - "menuCancel": "Cancel", - "menuCell": "Cell", - "menuDelete": "Delete", - "menuEdit": "Edit", - "menuFreezePanes": "Freeze Panes", - "menuHide": "Hide", - "menuMerge": "Merge", - "menuMore": "More", - "menuOpenLink": "Open Link", - "menuShow": "Show", - "menuUnfreezePanes": "Unfreeze Panes", - "menuUnmerge": "Unmerge", - "menuUnwrap": "Unwrap", - "menuViewComment": "View Comment", - "menuWrap": "Wrap", - "notcriticalErrorTitle": "Warning", - "textCopyCutPasteActions": "Copy, Cut and Paste Actions", - "textDoNotShowAgain": "Don't show again", - "warnMergeLostData": "The operation can destroy data in the selected cells. Continue?", - "errorInvalidLink": "The link reference does not exist. Please correct the link or delete it." + "errorCopyCutPaste": "Οι ενέργειες αντιγραφής, αποκοπής και επικόλλησης με χρήση του μενού περιβάλλοντος θα γίνουν εντός του τρέχοντος αρχείου μόνο.", + "errorInvalidLink": "Η παραπομπή του συνδέσμου δεν υπάρχει. Παρακαλούμε διορθώστε τον σύνδεσμο ή διαγράψτε τον.", + "menuAddComment": "Προσθήκη Σχολίου", + "menuAddLink": "Προσθήκη Συνδέσμου", + "menuCancel": "Ακύρωση", + "menuCell": "Κελί", + "menuDelete": "Διαγραφή", + "menuEdit": "Επεξεργασία", + "menuFreezePanes": "Πάγωμα Παραθύρων", + "menuHide": "Απόκρυψη", + "menuMerge": "Συγχώνευση", + "menuMore": "Περισσότερα", + "menuOpenLink": "Άνοιγμα Συνδέσμου", + "menuShow": "Εμφάνιση", + "menuUnfreezePanes": "Απελευθέρωση Παραθύρων", + "menuUnmerge": "Αποσυγχώνευση", + "menuUnwrap": "Αναίρεση Αναδίπλωσης", + "menuViewComment": "Προβολή Σχολίου", + "menuWrap": "Αναδίπλωση", + "notcriticalErrorTitle": "Προειδοποίηση", + "textCopyCutPasteActions": "Ενέργειες Αντιγραφής, Αποκοπής και Επικόλλησης", + "textDoNotShowAgain": "Να μην εμφανιστεί ξανά", + "warnMergeLostData": "Μόνο τα δεδομένα από το επάνω αριστερό κελί θα παραμείνουν στο συγχωνευμένο κελί.
Είστε σίγουροι ότι θέλετε να συνεχίσετε;" }, "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", + "criticalErrorTitle": "Σφάλμα", + "errorAccessDeny": "Προσπαθείτε να εκτελέσετε μια ενέργεια για την οποία δεν έχετε δικαιώματα.
Παρακαλούμε, επικοινωνήστε με τον διαχειριστή σας.", + "errorProcessSaveResult": "Αποτυχία αποθήκευσης.", + "errorServerVersion": "Αναβαθμίστηκε η έκδοση του συντάκτη. Η σελίδα θα φορτωθεί ξανά για να εφαρμοστούν οι αλλαγές.", + "errorUpdateVersion": "Η έκδοση του αρχείου έχει αλλάξει. Η σελίδα θα φορτωθεί ξανά.", + "leavePageText": "Έχετε μη αποθηκευμένες αλλαγές στο έγγραφο. Πατήστε 'Παραμονή στη Σελίδα' για να περιμένετε την αυτόματη αποθήκευση. Πατήστε 'Έξοδος από τη Σελίδα' για να απορρίψετε όλες τις μη αποθηκευμένες αλλαγές.", + "notcriticalErrorTitle": "Προειδοποίηση", "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" + "txtAccent": "Τόνος", + "txtAll": "(Όλα)", + "txtArt": "Το κείμενό σας εδώ", + "txtBlank": "(κενό)", + "txtByField": "%1 από %2", + "txtClearFilter": "Εκκαθάριση Φίλτρου (Alt+C)", + "txtColLbls": "Ετικέτες Στηλών", + "txtColumn": "Στήλη", + "txtConfidential": "Εμπιστευτικό", + "txtDate": "Ημερομηνία", + "txtDays": "Ημέρες", + "txtDiagramTitle": "Τίτλος Γραφήματος", + "txtFile": "Αρχείο", + "txtGrandTotal": "Τελικό Σύνολο", + "txtGroup": "Ομάδα", + "txtHours": "Ώρες", + "txtMinutes": "Λεπτά", + "txtMonths": "Μήνες", + "txtMultiSelect": "Πολλαπλή Επιλογή (Alt+S)", + "txtOr": "%1 ή %2", + "txtPage": "Σελίδα", + "txtPageOf": "Σελίδα %1 από %2", + "txtPages": "Σελίδες", + "txtPreparedBy": "Ετοιμάστηκε από", + "txtPrintArea": "Εκτυπώσιμη_Περιοχή", + "txtQuarter": "Τέταρτο", + "txtQuarters": "Τετράμηνα", + "txtRow": "Γραμμή", + "txtRowLbls": "Ετικέτες Γραμμών", + "txtSeconds": "Δευτερόλεπτα", + "txtSeries": "Σειρά", + "txtStyle_Bad": "Λάθος", + "txtStyle_Calculation": "Υπολογισμός", + "txtStyle_Check_Cell": "Έλεγχος Κελιού", + "txtStyle_Comma": "Κόμμα", + "txtStyle_Currency": "Νόμισμα", + "txtStyle_Explanatory_Text": "Επεξηγηματικό Κείμενο", + "txtStyle_Good": "Σωστό", + "txtStyle_Heading_1": "Επικεφαλίδα 1", + "txtStyle_Heading_2": "Επικεφαλίδα 2", + "txtStyle_Heading_3": "Επικεφαλίδα 3", + "txtStyle_Heading_4": "Επικεφαλίδα 4", + "txtStyle_Input": "Εισαγωγή", + "txtStyle_Linked_Cell": "Συνδεδεμένο Κελί", + "txtStyle_Neutral": "Ουδέτερο", + "txtStyle_Normal": "Κανονική", + "txtStyle_Note": "Σημείωση", + "txtStyle_Output": "Αποτέλεσμα", + "txtStyle_Percent": "Επί τοις εκατό", + "txtStyle_Title": "Τίτλος", + "txtStyle_Total": "Σύνολο", + "txtStyle_Warning_Text": "Κείμενο Προειδοποίησης", + "txtTab": "Καρτέλα", + "txtTable": "Πίνακας", + "txtTime": "Ώρα", + "txtValues": "Τιμές", + "txtXAxis": "Άξονας Χ", + "txtYAxis": "Άξονας Υ", + "txtYears": "Έτη" }, - "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.", + "textAnonymous": "Ανώνυμος", + "textBuyNow": "Επισκεφθείτε την ιστοσελίδα", + "textClose": "Κλείσιμο", + "textContactUs": "Επικοινωνήστε με το τμήμα πωλήσεων", + "textCustomLoader": "Λυπούμαστε, δεν επιτρέπεται να τροποποιήσετε τον φορτωτή. Παρακαλούμε, επικοινωνήστε με το τμήμα πωλήσεων για προσφορά.", + "textGuest": "Επισκέπτης", + "textHasMacros": "Το αρχείο περιέχει αυτόματες μακροεντολές.
Θέλετε να εκτελέσετε μακροεντολές;", + "textNo": "Όχι", + "textNoLicenseTitle": "Το όριο της άδειας προσεγγίσθηκε", + "textPaidFeature": "Δυνατότητα επί πληρωμή", + "textRemember": "Απομνημόνευση επιλογής", + "textYes": "Ναι", + "titleServerVersion": "Ο συντάκτης ενημερώθηκε", + "titleUpdateVersion": "Η έκδοση άλλαξε", + "warnLicenseExceeded": "Φτάσατε το όριο ταυτόχρονων συνδέσεων σε %1 συντάκτες. Το έγγραφο θα ανοίξει μόνο για ανάγνωση. Επικοινωνήστε με τον διαχειριστή σας για περισσότερες πληροφορίες.", + "warnLicenseLimitedNoAccess": "Η άδεια έληξε. Δεν έχετε πρόσβαση στην επεξεργασία εγγράφων. Παρακαλούμε, επικοινωνήστε με τον διαχειριστή σας.", + "warnLicenseLimitedRenewed": "Η άδεια πρέπει να ανανεωθεί. Έχετε περιορισμένη πρόσβαση στη λειτουργικότητα επεξεργασίας εγγράφων.
Παρακαλούμε, επικοινωνήστε με τον διαχειριστή σας για πλήρη πρόσβαση.", + "warnLicenseUsersExceeded": "Έχετε φτάσει το όριο χρήστη για συντάκτες %1.
Επικοινωνήστε με τον διαχειριστή σας για περισσότερες πληροφορίες.", + "warnNoLicense": "Φτάσατε το όριο ταυτόχρονων συνδέσεων σε %1 συντάκτες. Το έγγραφο θα ανοίξει μόνο για ανάγνωση. Επικοινωνήστε με την ομάδα πωλήσεων %1 για τους όρους αναβάθμισης.", + "warnNoLicenseUsers": "Έχετε φτάσει το όριο χρήστη για συντάκτες %1.
Επικοινωνήστε με την ομάδα πωλήσεων %1 για προσωπικούς όρους αναβάθμισης.", + "warnProcessRightsChange": "Δεν έχετε δικαίωμα επεξεργασίας του αρχείου.", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", + "textNoTextFound": "Text not found", "textOk": "Ok", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { - "convertationTimeoutText": "Conversion timeout exceeded.", - "criticalErrorExtText": "Press 'OK' to go back to the document list.", - "criticalErrorTitle": "Error", - "downloadErrorText": "Download failed.", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorArgsRange": "An error in the formula.
Incorrect arguments range.", - "errorAutoFilterChange": "The operation is not allowed as it is attempting to shift cells in a table on your worksheet.", - "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
Select another data range so that the whole table is shifted and try again.", - "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
Select a uniform data range inside or outside the table and try again.", - "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
Please, unhide the filtered elements and try again.", - "errorBadImageUrl": "Image url is incorrect", - "errorChangeArray": "You cannot change part of an array.", - "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
When you click the 'OK' button, you will be prompted to download the document.", - "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
Select a single range and try again.", - "errorCountArg": "An error in the formula.
Invalid number of arguments.", - "errorCountArgExceed": "An error in the formula.
Maximum number of arguments exceeded.", - "errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
at the moment as some of them are being edited.", - "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", - "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", - "errorDataRange": "Incorrect data range.", - "errorDataValidate": "The value you entered is not valid.
A user has restricted values that can be entered into this cell.", - "errorDefaultMessage": "Error code: %1", - "errorEditingDownloadas": "An error occurred during the work with the document.
Use the 'Download' option to save the file backup copy locally.", - "errorFilePassProtect": "The file is password protected and could not be opened.", - "errorFileRequest": "External error.
File Request. Please, contact support.", - "errorFileSizeExceed": "The file size exceeds your server limitation.
Please, contact your admin for details.", - "errorFileVKey": "External error.
Incorrect security key. Please, contact support.", - "errorFillRange": "Could not fill the selected range of cells.
All the merged cells need to be the same size.", - "errorFormulaName": "An error in the formula.
Incorrect formula name.", - "errorFormulaParsing": "Internal error while the formula parsing.", - "errorFrmlMaxLength": "You cannot add this formula as its length exceeds the allowed number of characters.
Please, edit it and try again.", - "errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
cell references, and/or names.", - "errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
Use the CONCATENATE function or concatenation operator (&)", - "errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
Please, check the data and try again.", - "errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", - "errorKeyEncrypt": "Unknown key descriptor", - "errorKeyExpire": "Key descriptor expired", - "errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", - "errorLockedCellPivot": "You cannot change data inside a pivot table.", - "errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", - "errorMaxPoints": "The maximum number of points in series per chart is 4096.", - "errorMoveRange": "Cannot change a part of a merged cell", - "errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", - "errorOpenWarning": "The length of one of the formulas in the file exceeded
the allowed number of characters and it was removed.", - "errorOperandExpected": "The entered function syntax is not correct. Please, check if you missed one of the parentheses - '(' or ')'.", - "errorPasteMaxRange": "The copy and paste area does not match. Please, select an area of the same size or click the first cell in a row to paste the copied cells.", - "errorPrintMaxPagesCount": "Unfortunately, it’s not possible to print more than 1500 pages at once in the current version of the program.
This restriction will be eliminated in upcoming releases.", - "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", - "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", - "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", - "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
opening price, max price, min price, closing price.", - "errorUnexpectedGuid": "External error.
Unexpected Guid. Please, contact support.", - "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", - "errorUserDrop": "The file cannot be accessed right now.", - "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download it until the connection is restored and the page is reloaded.", - "errorWrongBracketsCount": "An error in the formula.
Wrong number of brackets.", - "errorWrongOperator": "An error in the entered formula. Wrong operator is used.
Please correct the error.", - "notcriticalErrorTitle": "Warning", - "openErrorText": "An error has occurred while opening the file", - "pastInMergeAreaError": "Cannot change a part of a merged cell", - "saveErrorText": "An error has occurred while saving the file", - "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", - "unknownErrorText": "Unknown error.", - "uploadImageExtMessage": "Unknown image format.", - "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", - "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password.", - "textErrorPasswordIsNotCorrect": "The password you supplied is not correct.
Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.", + "convertationTimeoutText": "Υπέρβαση χρονικού ορίου μετατροπής.", + "criticalErrorExtText": "Πατήστε 'Εντάξει' για να επιστρέψετε στη λίστα εγγράφων.", + "criticalErrorTitle": "Σφάλμα", + "downloadErrorText": "Αποτυχία λήψης.", + "errorAccessDeny": "Προσπαθείτε να εκτελέσετε μια ενέργεια για την οποία δεν έχετε δικαιώματα.
Παρακαλούμε, επικοινωνήστε με τον διαχειριστή σας.", + "errorArgsRange": "Υπάρχει σφάλμα στον τύπο.
Εσφαλμένο εύρος παραμέτρων.", + "errorAutoFilterChange": "Η λειτουργία δεν επιτρέπεται γιατί επιχειρεί να μετακινήσει κελιά ενός πίνακα στο φύλλο εργασίας σας.", + "errorAutoFilterChangeFormatTable": "Η λειτουργία δεν πραγματοποιήθηκε για τα επιλεγμένα κελιά καθώς δεν μπορείτε να μετακινήσετε τμήμα ενός πίνακα.
Επιλέξτε άλλο εύρος δεδομένων ώστε να μετακινηθεί ολόκληρος ο πίνακας και δοκιμάστε ξανά.", + "errorAutoFilterDataRange": "Η λειτουργία δεν πραγματοποιήθηκε για το επιλεγμένο εύρος κελιών.
Επιλέξτε ένα ομοιόμορφο εύρος δεδομένων μέσα ή έξω από το πίνακα και δοκιμάστε ξανά.", + "errorAutoFilterHiddenRange": "Η λειτουργία δεν μπορεί να πραγματοποιηθεί επειδή η περιοχή περιέχει φιλτραρισμένα κελιά.
Παρακαλούμε, εμφανίστε τα φιλτραρισμένα στοιχεία και προσπαθήστε ξανά.", + "errorBadImageUrl": "Εσφαλμένη διεύθυνση URL εικόνας", + "errorChangeArray": "Δεν μπορείτε να αλλάξετε μέρος ενός πίνακα.", + "errorChangeOnProtectedSheet": "Το κελί ή γράφημα που προσπαθείτε να αλλάξετε βρίσκεται σε προστατευμένο φύλλο.
Για να κάνετε αλλαγή, αφαιρέστε την προστασία. Ίσως σας ζητηθεί συνθηματικό.", + "errorConnectToServer": "Αδύνατη η αποθήκευση του εγγράφου. Ελέγξτε τις ρυθμίσεις σύνδεσης ή επικοινωνήστε με τον διαχειριστή.
Όταν κάνετε κλικ στο κουμπί \"Εντάξει\", θα σας προταθεί να κατεβάσετε το έγγραφο.", + "errorCopyMultiselectArea": "Αυτή η εντολή δεν μπορεί να χρησιμοποιηθεί με πολλές επιλογές.
Επιλέξτε ένα εύρος και δοκιμάστε ξανά.", + "errorCountArg": "Υπάρχει σφάλμα στον τύπο.
Μη έγκυρος αριθμός παραμέτρων.", + "errorCountArgExceed": "Υπάρχει σφάλμα στον τύπο.
Υπέρβαση μέγιστου αριθμού παραμέτρων.", + "errorCreateDefName": "Δεν είναι δυνατή η επεξεργασία των υφιστάμενων επώνυμων ευρών και δεν είναι δυνατή η δημιουργία νέων
αυτήν τη στιγμή, καθώς ορισμένα από αυτά τελούν υπό επεξεργασία.", + "errorDatabaseConnection": "Εξωτερικό σφάλμα
Σφάλμα σύνδεσης βάσης δεδομένων. Παρακαλούμε, επικοινωνήστε με την υποστήριξη.", + "errorDataEncrypted": "Ελήφθησαν κρυπτογραφημένες αλλαγές, δεν μπορούν να αποκρυπτογραφηθούν.", + "errorDataRange": "Εσφαλμένο εύρος δεδομένων.", + "errorDataValidate": "Η τιμή που βάλατε δεν είναι έγκυρη.
Κάποιος χρήστης έχει περιορίσει τις δυνατές τιμές σε αυτό το κελί.", + "errorDefaultMessage": "Κωδικός σφάλματος: %1", + "errorEditingDownloadas": "Σφάλμα κατά την την εργασία με το έγγραφο.
Χρησιμοποιήστε την επιλογή \"Μεταφόρτωση\" για να αποθηκεύσετε τοπικά το αντίγραφο ασφαλείας.", + "errorFilePassProtect": "Το αρχείο προστατεύεται με συνθηματικό και δεν μπορεί να ανοίξει.", + "errorFileRequest": "Εξωτερικό σφάλμα.
Αίτημα Αρχείου. Παρακαλούμε, επικοινωνήστε με την υποστήριξη.", + "errorFileSizeExceed": "Το μέγεθος του αρχείου υπερβαίνει τα όρια του εξυπηρετητή σας.
Παρακαλούμε, επικοινωνήστε με τον διαχειριστή σας.", + "errorFileVKey": "Εξωτερικό σφάλμα.
Εσφαλμένο κλειδί ασφαλείας. Παρακαλούμε, επικοινωνήστε με την υποστήριξη.", + "errorFillRange": "Δεν ήταν δυνατή η συμπλήρωση του επιλεγμένου εύρους κελιών.
Όλα τα συγχωνευμένα κελιά πρέπει να έχουν το ίδιο μέγεθος.", + "errorFormulaName": "Υπάρχει σφάλμα στον τύπο.
Εσφαλμένο όνομα τύπου.", + "errorFormulaParsing": "Εσωτερικό σφάλμα κατά τον έλεγχο του τύπου.", + "errorFrmlMaxLength": "Δεν μπορείτε να προσθέσετε αυτόν τον τύπο γιατί το μήκος του υπερβαίνει τον επιτρεπόμενο αριθμό χαρακτήρων.
Παρακαλούμε, επεξεργαστείτε τον και προσπαθήστε ξανά.", + "errorFrmlMaxReference": "Δεν μπορείτε να εισάγετε αυτόν τον τύπο επειδή έχει πάρα πολλές τιμές,
αναφορές κελιού ή/και ονόματα.", + "errorFrmlMaxTextLength": "Οι τιμές κειμένου σε τύπους περιορίζονται στους 255 χαρακτήρες.
Χρησιμοποιήστε τη συνάρτηση CONCATENATE ή τον τελεστή συνένωσης (&)", + "errorFrmlWrongReferences": "Η συνάρτηση αναφέρεται σε ένα φύλλο που δεν υπάρχει.
Παρακαλούμε, ελέγξτε τα δεδομένα και προσπαθήστε ξανά.", + "errorInvalidRef": "Εισάγετε ένα σωστό όνομα για την επιλογή ή μια έγκυρη αναφορά για να μεταβείτε.", + "errorKeyEncrypt": "Άγνωστος περιγραφέας κλειδιού", + "errorKeyExpire": "Ο περιγραφέας κλειδιού έχει λήξει", + "errorLoadingFont": "Οι γραμματοσειρές δεν έχουν φορτωθεί.
Παρακαλούμε επικοινωνήστε με τον διαχειριστή του Εξυπηρετητή Εγγράφων σας.", + "errorLockedAll": "Η λειτουργία δεν μπόρεσε να γίνει καθώς το φύλλο έχει κλειδωθεί από άλλο χρήστη.", + "errorLockedCellPivot": "Δεν είναι δυνατή η τροποποίηση δεδομένων εντός ενός συγκεντρωτικού πίνακα", + "errorLockedWorksheetRename": "Το φύλλο δεν μπορεί να μετονομαστεί προς το παρόν καθώς μετονομάζεται από άλλο χρήστη", + "errorMaxPoints": "Ο μέγιστος αριθμός σημείων σε σειρά ανά γράφημα είναι 4096.", + "errorMoveRange": "Αδύνατη η τροποποίηση μέρους συγχωνευμένου κελιού", + "errorMultiCellFormula": "Οι τύποι συστοιχιών πολλών κελιών δεν επιτρέπονται στους πίνακες.", + "errorOpenWarning": "Το μήκος κάποιου τύπου στο αρχείο υπερέβαινε
τον επιτρεπόμενο αριθμό χαρακτήρων και αφαιρέθηκε.", + "errorOperandExpected": "Η σύνταξη της συνάρτησης είναι εσφαλμένη. Παρακαλούμε, ελέγξτε μήπως σας διέφυγε κάποια από τις παρενθέσεις - '(' ή ')'.", + "errorPasteMaxRange": "Οι περιοχές αντιγραφής και επικόλλησης δεν ταιριάζουν. Παρακαλούμε, επιλέξτε μια περιοχή ίδιου μεγέθους ή κάντε κλικ στο πρώτο κελί μιας γραμμής για να επικολλήσετε τα αντιγραμμένα κελιά.", + "errorPrintMaxPagesCount": "Δυστυχώς, είναι αδύνατη η εκτύπωση περισσότερων από 1500 μεμιάς στην τρέχουσα έκδοση του προγράμματος.
Ο περιορισμός αυτός θα απαλειφθεί σε μελλοντικές εκδόσεις.", + "errorSessionAbsolute": "Η σύνοδος επεξεργασίας του εγγράφου έληξε. Παρακαλούμε, φορτώστε ξανά τη σελίδα.", + "errorSessionIdle": "Το έγγραφο δεν τροποποιήθηκε για μεγάλο χρονικό διάστημα. Παρακαλούμε, φορτώστε ξανά τη σελίδα.", + "errorSessionToken": "Η σύνδεση με τον εξυπηρετητή διακόπηκε. Παρακαλούμε, φορτώστε ξανά τη σελίδα.", + "errorStockChart": "Εσφαλμένη διάταξη γραμμών. Για να φτιάξετε γράφημα μετοχών, βάλτε τα δεδομένα στο φύλλο με την ακόλουθη σειρά:
τιμή εκκίνησης, μέγιστη τιμή, ελάχιστη τιμή, τιμή κλεισίματος.", + "errorUnexpectedGuid": "Εξωτερικό σφάλμα.
Μη αναμενόμενο αναγνωριστικό GUID. Παρακαλούμε, επικοινωνήστε με την υποστήριξη.", + "errorUpdateVersionOnDisconnect": "Η σύνδεση στο Διαδίκτυο έχει αποκατασταθεί και η έκδοση του αρχείου έχει αλλάξει.
Προτού συνεχίσετε να εργάζεστε, πρέπει να κατεβάσετε το αρχείο ή να αντιγράψετε το περιεχόμενό του για να βεβαιωθείτε ότι δεν έχει χαθεί τίποτα. Στη συνέχεια, φορτώστε ξανά αυτή τη σελίδα.", + "errorUserDrop": "Δεν είναι δυνατή η πρόσβαση στο αρχείο αυτή τη στιγμή.", + "errorUsersExceed": "Υπέρβαση του αριθμού των χρηστών που επιτρέπονται από το πρόγραμμα τιμολόγησης", + "errorViewerDisconnect": "Η σύνδεση χάθηκε. Μπορείτε ακόμα να βλέπετε το έγγραφο,
αλλά δεν θα μπορείτε να το κατεβάσετε ή να το εκτυπώσετε μέχρι να αποκατασταθεί η σύνδεση και να φορτωθεί ξανά η σελίδα.", + "errorWrongBracketsCount": "Υπάρχει σφάλμα στον τύπο.
Εσφαλμένος αριθμός παρενθέσεων.", + "errorWrongOperator": "Υπάρχει σφάλμα στον καταχωρημένο τύπο. Χρησιμοποιείται λανθασμένος τελεστής.
Παρακαλούμε διορθώστε το σφάλμα.", + "notcriticalErrorTitle": "Προειδοποίηση", + "openErrorText": "Σφάλμα κατά το άνοιγμα του αρχείου", + "pastInMergeAreaError": "Αδύνατη η τροποποίηση μέρους συγχωνευμένου κελιού", + "saveErrorText": "Σφάλμα κατά την αποθήκευση του αρχείου", + "scriptLoadError": "Η σύνδεση είναι πολύ αργή, κάποια από τα στοιχεία δεν φορτώθηκαν. Παρακαλούμε, φορτώστε ξανά τη σελίδα.", + "textErrorPasswordIsNotCorrect": "Το συνθηματικό που βάλατε δεν είναι σωστό.
Βεβαιωθείτε ότι το πλήκτρο CAPS LOCK είναι ανενεργό και ότι βάζετε κεφαλαία όπου χρειάζεται.", + "unknownErrorText": "Άγνωστο σφάλμα.", + "uploadImageExtMessage": "Άγνωστη μορφή εικόνας.", + "uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.", + "uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB.", "errorCannotUseCommandProtectedSheet": "You cannot use this command on a protected sheet. To use this command, unprotect the sheet.
You might be requested to enter a password." }, "LongActions": { - "applyChangesTextText": "Loading data...", - "applyChangesTitleText": "Loading Data", - "confirmMoveCellRange": "The destination cells range can contain data. Continue the operation?", - "confirmPutMergeRange": "The source data contains merged cells.
They will be unmerged before they are pasted into the table.", - "confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
Do you want to continue?", - "downloadTextText": "Downloading document...", - "downloadTitleText": "Downloading Document", - "loadFontsTextText": "Loading data...", - "loadFontsTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadFontTitleText": "Loading Data", - "loadImagesTextText": "Loading images...", - "loadImagesTitleText": "Loading Images", - "loadImageTextText": "Loading image...", - "loadImageTitleText": "Loading Image", - "loadingDocumentTextText": "Loading document...", - "loadingDocumentTitleText": "Loading document", - "notcriticalErrorTitle": "Warning", - "openTextText": "Opening document...", - "openTitleText": "Opening Document", - "printTextText": "Printing document...", - "printTitleText": "Printing Document", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "saveTextText": "Saving document...", - "saveTitleText": "Saving Document", - "textLoadingDocument": "Loading document", - "textNo": "No", - "textOk": "Ok", - "textYes": "Yes", - "txtEditingMode": "Set editing mode...", - "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait...", - "advDRMPassword": "Password", - "textCancel": "Cancel", - "textErrorWrongPassword": "The password you supplied is not correct.", - "textUnlockRange": "Unlock Range", - "textUnlockRangeWarning": "A range you are trying to change is password protected." + "advDRMPassword": "Συνθηματικό", + "applyChangesTextText": "Φόρτωση δεδομένων...", + "applyChangesTitleText": "Φόρτωση Δεδομένων", + "confirmMoveCellRange": "Το εύρος κελιών προορισμού ίσως περιέχει δεδομένα. Να συνεχιστεί η λειτουργία;", + "confirmPutMergeRange": "Τα δεδομένα πηγής περιέχουν συγχωνευμένα κελιά.
Θα διαιρεθούν πριν επικολληθούν στον πίνακα.", + "confirmReplaceFormulaInTable": "Οι τύποι στη γραμμή κεφαλίδας θα αφαιρεθούν και θα μετατραπούν σε στατικό κείμενο.
Θέλετε να συνεχίσετε;", + "downloadTextText": "Λήψη εγγράφου...", + "downloadTitleText": "Λήψη Εγγράφου", + "loadFontsTextText": "Φόρτωση δεδομένων...", + "loadFontsTitleText": "Φόρτωση Δεδομένων", + "loadFontTextText": "Φόρτωση δεδομένων...", + "loadFontTitleText": "Φόρτωση Δεδομένων", + "loadImagesTextText": "Φόρτωση εικόνων...", + "loadImagesTitleText": "Φόρτωση Εικόνων", + "loadImageTextText": "Φόρτωση εικόνας...", + "loadImageTitleText": "Φόρτωση Εικόνας", + "loadingDocumentTextText": "Φόρτωση εγγράφου...", + "loadingDocumentTitleText": "Φόρτωση εγγράφου", + "notcriticalErrorTitle": "Προειδοποίηση", + "openTextText": "Άνοιγμα εγγράφου...", + "openTitleText": "Άνοιγμα Εγγράφου", + "printTextText": "Εκτύπωση εγγράφου...", + "printTitleText": "Εκτύπωση Εγγράφου", + "savePreparingText": "Προετοιμασία αποθήκευσης", + "savePreparingTitle": "Προετοιμασία αποθήκευσης. Παρακαλούμε περιμένετε...", + "saveTextText": "Αποθήκευση εγγράφου...", + "saveTitleText": "Αποθήκευση Εγγράφου", + "textCancel": "Ακύρωση", + "textErrorWrongPassword": "Το συνθηματικό που βάλατε δεν είναι σωστό.", + "textLoadingDocument": "Φόρτωση εγγράφου", + "textNo": "Όχι", + "textOk": "Εντάξει", + "textUnlockRange": "Ξεκλείδωμα Εύρους", + "textUnlockRangeWarning": "Ένα εύρος που προσπαθείτε να τροποποιήσετε προστατεύεται με συνθηματικό.", + "textYes": "Ναι", + "txtEditingMode": "Ορισμός λειτουργίας επεξεργασίας...", + "uploadImageTextText": "Μεταφόρτωση εικόνας...", + "uploadImageTitleText": "Μεταφόρτωση Εικόνας", + "waitText": "Παρακαλούμε, περιμένετε..." }, "Statusbar": { - "notcriticalErrorTitle": "Warning", - "textCancel": "Cancel", - "textDelete": "Delete", - "textDuplicate": "Duplicate", - "textErrNameExists": "Worksheet with this name already exists.", - "textErrNameWrongChar": "A sheet name cannot contains characters: \\, /, *, ?, [, ], :", - "textErrNotEmpty": "Sheet name must not be empty", - "textErrorLastSheet": "The workbook must have at least one visible worksheet.", - "textErrorRemoveSheet": "Can't delete the worksheet.", - "textHide": "Hide", - "textMore": "More", - "textRename": "Rename", - "textRenameSheet": "Rename Sheet", - "textSheet": "Sheet", - "textSheetName": "Sheet Name", - "textUnhide": "Unhide", - "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?", - "textOk": "Ok", + "notcriticalErrorTitle": "Προειδοποίηση", + "textCancel": "Ακύρωση", + "textDelete": "Διαγραφή", + "textDuplicate": "Δημιουργία Διπλότυπου", + "textErrNameExists": "Υπάρχει ήδη φύλλο εργασίας με αυτό το όνομα.", + "textErrNameWrongChar": "Ένα όνομα φύλλου δεν μπορεί να περιέχει τους χαρακτήρες: \\, /, *, ?, [, ], :", + "textErrNotEmpty": "Το όνομα του φύλλου δεν πρέπει να είναι κενό", + "textErrorLastSheet": "Το βιβλίο εργασίας πρέπει να έχει τουλάχιστον ένα ορατό φύλλο εργασίας.", + "textErrorRemoveSheet": "Δεν είναι δυνατή η διαγραφή του φύλλου εργασίας.", + "textHide": "Απόκρυψη", + "textMore": "Περισσότερα", + "textOk": "Εντάξει", + "textRename": "Μετονομασία", + "textRenameSheet": "Μετονομασία Φύλλου", + "textSheet": "Φύλλο", + "textSheetName": "Όνομα Φύλλου", + "textUnhide": "Αναίρεση απόκρυψης", + "textWarnDeleteSheet": "Το φύλλο εργασίας ίσως περιέχει δεδομένα. Να συνεχιστεί η λειτουργία;", "textMove": "Move", "textMoveBack": "Move back", "textMoveForward": "Move forward" }, "Toolbar": { - "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this Page", - "stayButtonText": "Stay on this Page" + "dlgLeaveMsgText": "Έχετε μη αποθηκευμένες αλλαγές στο έγγραφο. Πατήστε 'Παραμονή στη Σελίδα' για να περιμένετε την αυτόματη αποθήκευση. Πατήστε 'Έξοδος από τη Σελίδα' για να απορρίψετε όλες τις μη αποθηκευμένες αλλαγές.", + "dlgLeaveTitleText": "Έξοδος από την εφαρμογή", + "leaveButtonText": "Έξοδος από τη Σελίδα", + "stayButtonText": "Παραμονή στη Σελίδα" }, "View": { "Add": { - "errorMaxRows": "ERROR! The maximum number of data series per chart is 255.", - "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
opening price, max price, min price, closing price.", - "notcriticalErrorTitle": "Warning", - "sCatDateAndTime": "Date and time", - "sCatEngineering": "Engineering", - "sCatFinancial": "Financial", - "sCatInformation": "Information", - "sCatLogical": "Logical", - "sCatLookupAndReference": "Lookup and Reference", - "sCatMathematic": "Math and trigonometry", - "sCatStatistical": "Statistical", - "sCatTextAndData": "Text and data", - "textAddLink": "Add Link", - "textAddress": "Address", - "textBack": "Back", - "textCancel": "Cancel", - "textChart": "Chart", - "textComment": "Comment", - "textDisplay": "Display", - "textEmptyImgUrl": "You need to specify the image URL.", - "textExternalLink": "External Link", - "textFilter": "Filter", - "textFunction": "Function", - "textGroups": "CATEGORIES", - "textImage": "Image", - "textImageURL": "Image URL", - "textInsert": "Insert", - "textInsertImage": "Insert Image", - "textInternalDataRange": "Internal Data Range", - "textInvalidRange": "ERROR! Invalid cells range", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkType": "Link Type", - "textOther": "Other", - "textPictureFromLibrary": "Picture from library", - "textPictureFromURL": "Picture from URL", - "textRange": "Range", - "textRequired": "Required", - "textScreenTip": "Screen Tip", - "textShape": "Shape", - "textSheet": "Sheet", - "textSortAndFilter": "Sort and Filter", - "txtExpand": "Expand and sort", - "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "txtSorting": "Sorting", - "txtSortSelected": "Sort selected", - "textSelectedRange": "Selected Range", - "txtLockSort": "Data is found next to your selection, but you do not have sufficient permissions to change those cells.
Do you wish to continue with the current selection?", - "txtNo": "No", - "txtYes": "Yes", + "errorMaxRows": "ΣΦΑΛΜΑ! Ο μέγιστος αριθμός σειρών δεδομένων ανά γράφημα είναι 255.", + "errorStockChart": "Εσφαλμένη διάταξη γραμμών. Για να φτιάξετε γράφημα μετοχών, βάλτε τα δεδομένα στο φύλλο με την ακόλουθη σειρά:
τιμή εκκίνησης, μέγιστη τιμή, ελάχιστη τιμή, τιμή κλεισίματος.", + "notcriticalErrorTitle": "Προειδοποίηση", + "sCatDateAndTime": "Ημερομηνία και ώρα", + "sCatEngineering": "Μηχανική", + "sCatFinancial": "Χρηματοοικονομικά", + "sCatInformation": "Πληροφορίες", + "sCatLogical": "Λογική", + "sCatLookupAndReference": "Αναζήτηση και Παραπομπή", + "sCatMathematic": "Μαθηματικά και τριγωνομετρία", + "sCatStatistical": "Στατιστική", + "sCatTextAndData": "Κείμενο και δεδομένα", + "textAddLink": "Προσθήκη Συνδέσμου", + "textAddress": "Διεύθυνση", + "textBack": "Πίσω", + "textCancel": "Ακύρωση", + "textChart": "Γράφημα", + "textComment": "Σχόλιο", + "textDisplay": "Προβολή", + "textEmptyImgUrl": "Πρέπει να καθορίσετε τη διεύθυνση URL της εικόνας.", + "textExternalLink": "Εξωτερικός Σύνδεσμος", + "textFilter": "Φίλτρο", + "textFunction": "Συνάρτηση", + "textGroups": "ΚΑΤΗΓΟΡΙΕΣ", + "textImage": "Εικόνα", + "textImageURL": "URL εικόνας", + "textInsert": "Εισαγωγή", + "textInsertImage": "Εισαγωγή Εικόνας", + "textInternalDataRange": "Εσωτερικό Εύρος Δεδομένων", + "textInvalidRange": "ΣΦΑΛΜΑ! Μη έγκυρο εύρος κελιών", + "textLink": "Σύνδεσμος", + "textLinkSettings": "Ρυθμίσεις Συνδέσμου", + "textLinkType": "Τύπος Συνδέσμου", + "textOther": "Άλλο", + "textPictureFromLibrary": "Εικόνα από βιβλιοθήκη", + "textPictureFromURL": "Εικόνα από σύνδεσμο", + "textRange": "Εύρος", + "textRequired": "Απαιτείται", + "textScreenTip": "Συμβουλή Οθόνης", + "textSelectedRange": "Επιλεγμένο Εύρος", + "textShape": "Σχήμα", + "textSheet": "Φύλλο", + "textSortAndFilter": "Ταξινόμηση και Φίλτρο", + "txtExpand": "Επέκταση και ταξινόμηση", + "txtExpandSort": "Τα δεδομένα δίπλα στην επιλογή δεν θα ταξινομηθούν. Θέλετε να επεκτείνετε την επιλογή ώστε να συμπεριλάβει τα παρακείμενα δεδομένα ή να συνεχίσετε με την ταξινόμηση μόνο των επιλεγμένων κελιών;", + "txtLockSort": "Υπάρχουν δεδομένα δίπλα στην επιλογή σας, αλλά δεν έχετε επαρκή δικαιώματα τροποποίησης αυτών των κελιών.
Θέλετε να συνεχίσετε με την τρέχουσα επιλογή;", + "txtNo": "Όχι", + "txtNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση URL με τη μορφή «http://www.example.com»", + "txtSorting": "Ταξινόμηση", + "txtSortSelected": "Ταξινόμηση επιλεγμένων", + "txtYes": "Ναι", "textOk": "Ok" }, "Edit": { - "notcriticalErrorTitle": "Warning", - "textAccounting": "Accounting", - "textActualSize": "Actual Size", - "textAddCustomColor": "Add Custom Color", - "textAddress": "Address", - "textAlign": "Align", - "textAlignBottom": "Align Bottom", - "textAlignCenter": "Align Center", - "textAlignLeft": "Align Left", - "textAlignMiddle": "Align Middle", - "textAlignRight": "Align Right", - "textAlignTop": "Align Top", - "textAllBorders": "All Borders", - "textAngleClockwise": "Angle Clockwise", - "textAngleCounterclockwise": "Angle Counterclockwise", - "textAuto": "Auto", - "textAxisCrosses": "Axis Crosses", - "textAxisOptions": "Axis Options", - "textAxisPosition": "Axis Position", - "textAxisTitle": "Axis Title", - "textBack": "Back", - "textBetweenTickMarks": "Between Tick Marks", - "textBillions": "Billions", - "textBorder": "Border", - "textBorderStyle": "Border Style", - "textBottom": "Bottom", - "textBottomBorder": "Bottom Border", - "textBringToForeground": "Bring to Foreground", - "textCell": "Cell", - "textCellStyles": "Cell Styles", - "textCenter": "Center", - "textChart": "Chart", - "textChartTitle": "Chart Title", - "textClearFilter": "Clear Filter", - "textColor": "Color", - "textCross": "Cross", - "textCrossesValue": "Crosses Value", - "textCurrency": "Currency", - "textCustomColor": "Custom Color", - "textDataLabels": "Data Labels", - "textDate": "Date", - "textDefault": "Selected range", - "textDeleteFilter": "Delete Filter", - "textDesign": "Design", - "textDiagonalDownBorder": "Diagonal Down Border", - "textDiagonalUpBorder": "Diagonal Up Border", - "textDisplay": "Display", - "textDisplayUnits": "Display Units", - "textDollar": "Dollar", - "textEditLink": "Edit Link", - "textEffects": "Effects", - "textEmptyImgUrl": "You need to specify the image URL.", - "textEmptyItem": "{Blanks}", - "textErrorMsg": "You must choose at least one value", - "textErrorTitle": "Warning", - "textEuro": "Euro", - "textExternalLink": "External Link", - "textFill": "Fill", - "textFillColor": "Fill Color", - "textFilterOptions": "Filter Options", - "textFit": "Fit Width", - "textFonts": "Fonts", - "textFormat": "Format", - "textFraction": "Fraction", - "textFromLibrary": "Picture from Library", - "textFromURL": "Picture from URL", - "textGeneral": "General", - "textGridlines": "Gridlines", - "textHigh": "High", - "textHorizontal": "Horizontal", - "textHorizontalAxis": "Horizontal Axis", - "textHorizontalText": "Horizontal Text", + "notcriticalErrorTitle": "Προειδοποίηση", + "textAccounting": "Λογιστική", + "textActualSize": "Πραγματικό Μέγεθος", + "textAddCustomColor": "Προσθήκη Προσαρμοσμένου Χρώματος", + "textAddress": "Διεύθυνση", + "textAlign": "Στοίχιση", + "textAlignBottom": "Στοίχιση Κάτω", + "textAlignCenter": "Στοίχιση στο Κέντρο", + "textAlignLeft": "Στοίχιση Αριστερά", + "textAlignMiddle": "Στοίχιση στη Μέση", + "textAlignRight": "Στοίχιση Δεξιά", + "textAlignTop": "Στοίχιση Πάνω", + "textAllBorders": "Όλα τα Περιγράμματα", + "textAngleClockwise": "Γωνία Δεξιόστροφα", + "textAngleCounterclockwise": "Γωνία Αριστερόστροφα", + "textAuto": "Αυτόματα", + "textAxisCrosses": "Διασχίσεις Άξονα", + "textAxisOptions": "Επιλογές Άξονα", + "textAxisPosition": "Θέση Άξονα", + "textAxisTitle": "Τίτλος Άξονα", + "textBack": "Πίσω", + "textBetweenTickMarks": "Μεταξύ Διαβαθμίσεων", + "textBillions": "Δισεκατομμύρια", + "textBorder": "Περίγραμμα", + "textBorderStyle": "Τεχνοτροπία Περιγράμματος", + "textBottom": "Κάτω", + "textBottomBorder": "Κάτω Περίγραμμα", + "textBringToForeground": "Μεταφορά στο Προσκήνιο", + "textCell": "Κελί", + "textCellStyles": "Τεχνοτροπίες Κελιού", + "textCenter": "Κέντρο", + "textChart": "Γράφημα", + "textChartTitle": "Τίτλος Γραφήματος", + "textClearFilter": "Εκκαθάριση Φίλτρου", + "textColor": "Χρώμα", + "textCross": "Διασταύρωση", + "textCrossesValue": "Τιμή Διασταυρώσεων", + "textCurrency": "Νόμισμα", + "textCustomColor": "Προσαρμοσμένο Χρώμα", + "textDataLabels": "Ετικέτες Δεδομένων", + "textDate": "Ημερομηνία", + "textDefault": "Επιλεγμένο εύρος", + "textDeleteFilter": "Διαγραφή Φίλτρου", + "textDesign": "Σχεδίαση", + "textDiagonalDownBorder": "Διαγώνιο Κάτω Περίγραμμα", + "textDiagonalUpBorder": "Διαγώνιο Επάνω Περίγραμμα", + "textDisplay": "Προβολή", + "textDisplayUnits": "Εμφάνιση Μονάδων Μέτρησης", + "textDollar": "Δολάριο", + "textEditLink": "Επεξεργασία Συνδέσμου", + "textEffects": "Εφέ", + "textEmptyImgUrl": "Πρέπει να καθορίσετε τη διεύθυνση URL της εικόνας.", + "textEmptyItem": "{Κενά}", + "textErrorMsg": "Πρέπει να επιλέξετε τουλάχιστον μία τιμή", + "textErrorTitle": "Προειδοποίηση", + "textEuro": "Ευρώ", + "textExternalLink": "Εξωτερικός Σύνδεσμος", + "textFill": "Γέμισμα", + "textFillColor": "Χρώμα Γεμίσματος", + "textFilterOptions": "Επιλογές Φίλτρου", + "textFit": "Προσαρμογή στο Πλάτος", + "textFonts": "Γραμματοσειρές", + "textFormat": "Μορφή", + "textFraction": "Κλάσμα", + "textFromLibrary": "Εικόνα από Βιβλιοθήκη", + "textFromURL": "Εικόνα από σύνδεσμο", + "textGeneral": "Γενικά", + "textGridlines": "Γραμμές πλέγματος", + "textHigh": "Υψηλό", + "textHorizontal": "Οριζόντια", + "textHorizontalAxis": "Οριζόντιος Άξονας", + "textHorizontalText": "Οριζόντιο Κείμενο", "textHundredMil": "100 000 000", - "textHundreds": "Hundreds", + "textHundreds": "Εκατοντάδες", "textHundredThousands": "100 000", - "textHyperlink": "Hyperlink", - "textImage": "Image", - "textImageURL": "Image URL", - "textIn": "In", - "textInnerBottom": "Inner Bottom", - "textInnerTop": "Inner Top", - "textInsideBorders": "Inside Borders", - "textInsideHorizontalBorder": "Inside Horizontal Border", - "textInsideVerticalBorder": "Inside Vertical Border", - "textInteger": "Integer", - "textInternalDataRange": "Internal Data Range", - "textInvalidRange": "Invalid cells range", - "textJustified": "Justified", - "textLabelOptions": "Label Options", - "textLabelPosition": "Label Position", - "textLayout": "Layout", - "textLeft": "Left", - "textLeftBorder": "Left Border", - "textLeftOverlay": "Left Overlay", - "textLegend": "Legend", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkType": "Link Type", - "textLow": "Low", - "textMajor": "Major", - "textMajorAndMinor": "Major And Minor", - "textMajorType": "Major Type", - "textMaximumValue": "Maximum Value", - "textMedium": "Medium", - "textMillions": "Millions", - "textMinimumValue": "Minimum Value", - "textMinor": "Minor", - "textMinorType": "Minor Type", - "textMoveBackward": "Move Backward", - "textMoveForward": "Move Forward", - "textNextToAxis": "Next to Axis", - "textNoBorder": "No Border", - "textNone": "None", - "textNoOverlay": "No Overlay", - "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textNumber": "Number", - "textOnTickMarks": "On Tick Marks", - "textOpacity": "Opacity", - "textOut": "Out", - "textOuterTop": "Outer Top", - "textOutsideBorders": "Outside Borders", - "textOverlay": "Overlay", - "textPercentage": "Percentage", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textPound": "Pound", + "textHyperlink": "Υπερσύνδεσμος", + "textImage": "Εικόνα", + "textImageURL": "URL εικόνας", + "textIn": "Σε", + "textInnerBottom": "Εσωτερικό Κάτω", + "textInnerTop": "Εσωτερικό Πάνω", + "textInsideBorders": "Εσωτερικά Περιγράμματα", + "textInsideHorizontalBorder": "Εσωτερικό Οριζόντιο Περίγραμμα", + "textInsideVerticalBorder": "Εσωτερικό Κατακόρυφο Περίγραμμα", + "textInteger": "Ακέραιος αριθμός", + "textInternalDataRange": "Εσωτερικό Εύρος Δεδομένων", + "textInvalidRange": "Μη έγκυρο εύρος κελιών", + "textJustified": "Πλήρης στοίχιση", + "textLabelOptions": "Επιλογές Ετικέτας", + "textLabelPosition": "Θέση Ετικέτας", + "textLayout": "Διάταξη", + "textLeft": "Αριστερά", + "textLeftBorder": "Αριστερό Περίγραμμα", + "textLeftOverlay": "Αριστερή Επικάλυψη", + "textLegend": "Υπόμνημα", + "textLink": "Σύνδεσμος", + "textLinkSettings": "Ρυθμίσεις Συνδέσμου", + "textLinkType": "Τύπος Συνδέσμου", + "textLow": "Χαμηλό", + "textMajor": "Βασικές", + "textMajorAndMinor": "Βασικές και Δευτερεύουσες", + "textMajorType": "Κύριος Τύπος", + "textMaximumValue": "Μέγιστη Τιμή", + "textMedium": "Μεσαίο", + "textMillions": "Εκατομμύρια", + "textMinimumValue": "Ελάχιστη Τιμή", + "textMinor": "Ελάσσον", + "textMinorType": "Δευτερεύων Τύπος", + "textMoveBackward": "Μετακίνηση Προς τα Πίσω", + "textMoveForward": "Μετακίνηση Προς τα Εμπρός", + "textNextToAxis": "Δίπλα στον Άξονα", + "textNoBorder": "Χωρίς Περίγραμμα", + "textNone": "Κανένα", + "textNoOverlay": "Χωρίς Επικάλυψη", + "textNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση URL με τη μορφή «http://www.example.com»", + "textNumber": "Αριθμός", + "textOnTickMarks": "Επί των Διαβαθμίσεων", + "textOpacity": "Αδιαφάνεια", + "textOut": "Έξω", + "textOuterTop": "Εξωτερικό Πάνω", + "textOutsideBorders": "Εξωτερικά Περιγράμματα", + "textOverlay": "Επικάλυψη", + "textPercentage": "Ποσοστό επί τοις εκατό", + "textPictureFromLibrary": "Εικόνα από Βιβλιοθήκη", + "textPictureFromURL": "Εικόνα από σύνδεσμο", + "textPound": "Λίβρα", "textPt": "pt", - "textRange": "Range", - "textRemoveChart": "Remove Chart", - "textRemoveImage": "Remove Image", - "textRemoveLink": "Remove Link", - "textRemoveShape": "Remove Shape", - "textReorder": "Reorder", - "textReplace": "Replace", - "textReplaceImage": "Replace Image", - "textRequired": "Required", - "textRight": "Right", - "textRightBorder": "Right Border", - "textRightOverlay": "Right Overlay", - "textRotated": "Rotated", - "textRotateTextDown": "Rotate Text Down", - "textRotateTextUp": "Rotate Text Up", - "textRouble": "Rouble", - "textScientific": "Scientific", - "textScreenTip": "Screen Tip", - "textSelectAll": "Select All", - "textSelectObjectToEdit": "Select object to edit", - "textSendToBackground": "Send to Background", - "textSettings": "Settings", - "textShape": "Shape", - "textSheet": "Sheet", - "textSize": "Size", - "textStyle": "Style", + "textRange": "Εύρος", + "textRemoveChart": "Αφαίρεση Γραφήματος", + "textRemoveImage": "Αφαίρεση Εικόνας", + "textRemoveLink": "Αφαίρεση Συνδέσμου", + "textRemoveShape": "Αφαίρεση Σχήματος", + "textReorder": "Αναδιάταξη", + "textReplace": "Αντικατάσταση", + "textReplaceImage": "Αντικατάσταση Εικόνας", + "textRequired": "Απαιτείται", + "textRight": "Δεξιά", + "textRightBorder": "Δεξί Περίγραμμα", + "textRightOverlay": "Δεξιά Επικάλυψη", + "textRotated": "Περιστραμμένος", + "textRotateTextDown": "Περιστροφή Κειμένου Κάτω", + "textRotateTextUp": "Περιστροφή Κειμένου Πάνω", + "textRouble": "Ρούβλι", + "textScientific": "Επιστημονική", + "textScreenTip": "Συμβουλή Οθόνης", + "textSelectAll": "Επιλογή Όλων ", + "textSelectObjectToEdit": "Επιλογή αντικειμένου για επεξεργασία", + "textSendToBackground": "Μεταφορά στο Παρασκήνιο", + "textSettings": "Ρυθμίσεις", + "textShape": "Σχήμα", + "textSheet": "Φύλλο", + "textSize": "Μέγεθος", + "textStyle": "Τεχνοτροπία", "textTenMillions": "10 000 000", "textTenThousands": "10 000", - "textText": "Text", - "textTextColor": "Text Color", - "textTextFormat": "Text Format", - "textTextOrientation": "Text Orientation", - "textThick": "Thick", - "textThin": "Thin", - "textThousands": "Thousands", - "textTickOptions": "Tick Options", - "textTime": "Time", - "textTop": "Top", - "textTopBorder": "Top Border", - "textTrillions": "Trillions", - "textType": "Type", - "textValue": "Value", - "textValuesInReverseOrder": "Values in Reverse Order", - "textVertical": "Vertical", - "textVerticalAxis": "Vertical Axis", - "textVerticalText": "Vertical Text", - "textWrapText": "Wrap Text", - "textYen": "Yen", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "txtSortHigh2Low": "Sort Highest to Lowest", - "txtSortLow2High": "Sort Lowest to Highest", + "textText": "Κείμενο", + "textTextColor": "Χρώμα Κειμένου", + "textTextFormat": "Μορφή Κειμένου", + "textTextOrientation": "Προσανατολισμός Κειμένου", + "textThick": "Παχιά", + "textThin": "Λεπτή", + "textThousands": "Χιλιάδες", + "textTickOptions": "Επιλογές Διαβαθμίσεων", + "textTime": "Ώρα", + "textTop": "Πάνω", + "textTopBorder": "Επάνω Περίγραμμα", + "textTrillions": "Τρισεκατομμύρια", + "textType": "Τύπος", + "textValue": "Τιμή", + "textValuesInReverseOrder": "Τιμές σε Αντίστροφη Σειρά", + "textVertical": "Κατακόρυφος", + "textVerticalAxis": "Κατακόρυφος Άξονας", + "textVerticalText": "Κατακόρυφο Κείμενο", + "textWrapText": "Αναδίπλωση Κειμένου", + "textYen": "Γιέν", + "txtNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση URL με τη μορφή «http://www.example.com»", + "txtSortHigh2Low": "Ταξινόμηση από το Υψηλότερο στο Χαμηλότερο", + "txtSortLow2High": "Ταξινόμηση από το Χαμηλότερο στο Υψηλότερο", "textAutomatic": "Automatic", "textOk": "Ok" }, "Settings": { - "advCSVOptions": "Choose CSV options", - "advDRMEnterPassword": "Your password, please:", - "advDRMOptions": "Protected File", - "advDRMPassword": "Password", - "closeButtonText": "Close File", - "notcriticalErrorTitle": "Warning", - "textAbout": "About", - "textAddress": "Address", - "textApplication": "Application", - "textApplicationSettings": "Application Settings", - "textAuthor": "Author", - "textBack": "Back", - "textBottom": "Bottom", - "textByColumns": "By columns", - "textByRows": "By rows", - "textCancel": "Cancel", - "textCentimeter": "Centimeter", - "textCollaboration": "Collaboration", - "textColorSchemes": "Color Schemes", - "textComment": "Comment", - "textCommentingDisplay": "Commenting Display", - "textComments": "Comments", - "textCreated": "Created", - "textCustomSize": "Custom Size", - "textDisableAll": "Disable All", - "textDisableAllMacrosWithNotification": "Disable all macros with a notification", - "textDisableAllMacrosWithoutNotification": "Disable all macros without a notification", - "textDone": "Done", - "textDownload": "Download", - "textDownloadAs": "Download As", + "advCSVOptions": "Επιλέξτε CSV επιλογές", + "advDRMEnterPassword": "Το συνθηματικό σας, παρακαλώ:", + "advDRMOptions": "Προστατευμένο Αρχείο", + "advDRMPassword": "Συνθηματικό", + "closeButtonText": "Κλείσιμο Αρχείου", + "notcriticalErrorTitle": "Προειδοποίηση", + "textAbout": "Περί", + "textAddress": "Διεύθυνση", + "textApplication": "Εφαρμογή", + "textApplicationSettings": "Ρυθμίσεις Εφαρμογής", + "textAuthor": "Συγγραφέας", + "textBack": "Πίσω", + "textBottom": "Κάτω", + "textByColumns": "Κατά στήλες", + "textByRows": "Κατά γραμμές", + "textCancel": "Ακύρωση", + "textCentimeter": "Εκατοστό", + "textChooseCsvOptions": "Επιλέξτε CSV Επιλογές", + "textChooseDelimeter": "Επιλέξτε Διαχωριστικό", + "textChooseEncoding": "Επιλέξτε Κωδικοποίηση", + "textCollaboration": "Συνεργασία", + "textColorSchemes": "Χρωματικοί Συνδυασμοί", + "textComment": "Σχόλιο", + "textCommentingDisplay": "Εμφάνιση Σχολίων", + "textComments": "Σχόλια", + "textCreated": "Δημιουργήθηκε", + "textCustomSize": "Προσαρμοσμένο Μέγεθος", + "textDelimeter": "Διαχωριστικό", + "textDisableAll": "Απενεργοποίηση Όλων", + "textDisableAllMacrosWithNotification": "Απενεργοποίηση όλων των μακροεντολών με ειδοποίηση", + "textDisableAllMacrosWithoutNotification": "Απενεργοποίηση όλων των μακροεντολών χωρίς ειδοποίηση", + "textDone": "Ολοκληρώθηκε", + "textDownload": "Λήψη", + "textDownloadAs": "Λήψη ως", "textEmail": "Email", - "textEnableAll": "Enable All", - "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", - "textFindAndReplaceAll": "Find and Replace All", - "textFormat": "Format", - "textFormulaLanguage": "Formula Language", - "textFormulas": "Formulas", - "textHelp": "Help", - "textHideGridlines": "Hide Gridlines", - "textHideHeadings": "Hide Headings", - "textHighlightRes": "Highlight results", - "textInch": "Inch", - "textLandscape": "Landscape", - "textLastModified": "Last Modified", - "textLastModifiedBy": "Last Modified By", - "textLeft": "Left", - "textLocation": "Location", - "textLookIn": "Look In", - "textMacrosSettings": "Macros Settings", - "textMargins": "Margins", - "textMatchCase": "Match Case", - "textMatchCell": "Match Cell", - "textNoTextFound": "Text not found", - "textOpenFile": "Enter a password to open the file", - "textOrientation": "Orientation", - "textOwner": "Owner", - "textPoint": "Point", - "textPortrait": "Portrait", - "textPoweredBy": "Powered By", - "textPrint": "Print", - "textR1C1Style": "R1C1 Reference Style", - "textRegionalSettings": "Regional Settings", - "textReplace": "Replace", - "textReplaceAll": "Replace All", - "textResolvedComments": "Resolved Comments", - "textRight": "Right", - "textSearch": "Search", - "textSearchBy": "Search", - "textSearchIn": "Search In", - "textSettings": "Settings", - "textSheet": "Sheet", - "textShowNotification": "Show Notification", - "textSpreadsheetFormats": "Spreadsheet Formats", - "textSpreadsheetInfo": "Spreadsheet Info", - "textSpreadsheetSettings": "Spreadsheet Settings", - "textSpreadsheetTitle": "Spreadsheet Title", - "textSubject": "Subject", - "textTel": "Tel", - "textTitle": "Title", - "textTop": "Top", - "textUnitOfMeasurement": "Unit Of Measurement", - "textUploaded": "Uploaded", - "textValues": "Values", - "textVersion": "Version", - "textWorkbook": "Workbook", - "txtDelimiter": "Delimiter", - "txtEncoding": "Encoding", - "txtIncorrectPwd": "Password is incorrect", - "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", - "txtScheme1": "Office", - "txtScheme10": "Median", - "txtScheme11": "Metro", - "txtScheme12": "Module", - "txtScheme13": "Opulent", - "txtScheme14": "Oriel", - "txtScheme15": "Origin", - "txtScheme16": "Paper", - "txtScheme17": "Solstice", - "txtScheme18": "Technic", - "txtScheme19": "Trek", - "txtScheme2": "Grayscale", - "txtScheme20": "Urban", - "txtScheme21": "Verve", - "txtScheme22": "New Office", - "txtScheme3": "Apex", - "txtScheme4": "Aspect", - "txtScheme5": "Civic", - "txtScheme6": "Concourse", - "txtScheme7": "Equity", - "txtScheme8": "Flow", - "txtScheme9": "Foundry", - "txtSpace": "Space", - "txtTab": "Tab", - "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", - "textOk": "Ok", - "textChooseCsvOptions": "Choose CSV Options", - "textChooseDelimeter": "Choose Delimeter", - "textChooseEncoding": "Choose Encoding", - "textDelimeter": "Delimiter", - "textEncoding": "Encoding", - "txtColon": "Colon", - "txtComma": "Comma", - "txtDownloadCsv": "Download CSV", - "txtOk": "Ok", - "txtSemicolon": "Semicolon", - "textExample": "Example", + "textEnableAll": "Ενεργοποίηση Όλων", + "textEnableAllMacrosWithoutNotification": "Ενεργοποίηση όλων των μακροεντολών χωρίς ειδοποίηση", + "textEncoding": "Κωδικοποίηση", + "textExample": "Παράδειγμα", + "textFind": "Εύρεση", + "textFindAndReplace": "Εύρεση και Αντικατάσταση", + "textFindAndReplaceAll": "Εύρεση και Αντικατάσταση Όλων", + "textFormat": "Μορφή", + "textFormulaLanguage": "Γλώσσα Τύπων", + "textFormulas": "Τύποι", + "textHelp": "Βοήθεια", + "textHideGridlines": "Απόκρυψη Γραμμών Πλέγματος", + "textHideHeadings": "Απόκρυψη Επικεφαλίδων", + "textHighlightRes": "Επισήμανση αποτελεσμάτων", + "textInch": "Ίντσα", + "textLandscape": "Οριζόντιος", + "textLastModified": "Τελευταίο Τροποποιημένο", + "textLastModifiedBy": "Τελευταία Τροποποίηση Από", + "textLeft": "Αριστερά", + "textLocation": "Τοποθεσία", + "textLookIn": "Αναζήτηση Σε", + "textMacrosSettings": "Ρυθμίσεις Mακροεντολών", + "textMargins": "Περιθώρια", + "textMatchCase": "Ταίριασμα Πεζών-Κεφαλαίων", + "textMatchCell": "Ταίριασμα Κελιού", + "textNoTextFound": "Δεν βρέθηκε το κείμενο", + "textOk": "Εντάξει", + "textOpenFile": "Εισάγετε συνθηματικό για να ανοίξετε το αρχείο", + "textOrientation": "Προσανατολισμός", + "textOwner": "Κάτοχος", + "textPoint": "Σημείο", + "textPortrait": "Κατακόρυφος", + "textPoweredBy": "Υποστηρίζεται Από", + "textPrint": "Εκτύπωση", + "textR1C1Style": "Τεχνοτροπία Παραπομπών R1C1", + "textRegionalSettings": "Τοπικές Ρυθμίσεις", + "textReplace": "Αντικατάσταση", + "textReplaceAll": "Αντικατάσταση Όλων", + "textResolvedComments": "Επιλυμένα Σχόλια", + "textRight": "Δεξιά", + "textSearch": "Αναζήτηση", + "textSearchBy": "Αναζήτηση", + "textSearchIn": "Αναζήτηση Σε", + "textSettings": "Ρυθμίσεις", + "textSheet": "Φύλλο", + "textShowNotification": "Εμφάνιση Ειδοποίησης", + "textSpreadsheetFormats": "Μορφές Λογιστικών Φύλλων", + "textSpreadsheetInfo": "Πληροφορίες Λογιστικού Φύλλου", + "textSpreadsheetSettings": "Ρυθμίσεις Λογιστικού Φύλλου", + "textSpreadsheetTitle": "Τίτλος Λογιστικού Φύλλου", + "textSubject": "Θέμα", + "textTel": "Τηλ", + "textTitle": "Τίτλος", + "textTop": "Πάνω", + "textUnitOfMeasurement": "Μονάδα Μέτρησης", + "textUploaded": "Μεταφορτώθηκε", + "textValues": "Τιμές", + "textVersion": "Έκδοση", + "textWorkbook": "Βιβλίο Εργασίας", + "txtColon": "Άνω κάτω τελεία", + "txtComma": "Κόμμα", + "txtDelimiter": "Διαχωριστικό", + "txtDownloadCsv": "Λήψη CSV", + "txtEncoding": "Κωδικοποίηση", + "txtIncorrectPwd": "Το συνθηματικό είναι εσφαλμένο", + "txtOk": "Εντάξει", + "txtProtected": "Μόλις βάλετε το συνθηματικό και ανοίξετε το αρχείο, θα γίνει επαναφορά του τρέχοντος συνθηματικού του αρχείου", + "txtScheme1": "Γραφείο", + "txtScheme10": "Διάμεσο", + "txtScheme11": "Μετρό", + "txtScheme12": "Άρθρωμα", + "txtScheme13": "Άφθονο", + "txtScheme14": "Προεξοχή", + "txtScheme15": "Προέλευση", + "txtScheme16": "Χαρτί", + "txtScheme17": "Ηλιοστάσιο", + "txtScheme18": "Τεχνικό", + "txtScheme19": "Ταξίδι", + "txtScheme2": "Αποχρώσεις του γκρι", + "txtScheme20": "Αστικό", + "txtScheme21": "Οίστρος", + "txtScheme22": "Νέο Γραφείο", + "txtScheme3": "Άκρο", + "txtScheme4": "Άποψη", + "txtScheme5": "Κυβικό", + "txtScheme6": "Συνάθροιση", + "txtScheme7": "Μετοχή", + "txtScheme8": "Ροή", + "txtScheme9": "Χυτήριο", + "txtSemicolon": "Ανω τελεία", + "txtSpace": "Κενό διάστημα", + "txtTab": "Καρτέλα", + "warnDownloadAs": "Αν προχωρήσετε με την αποθήκευση σε αυτή τη μορφή, όλα τα χαρακτηριστικά πλην του κειμένου θα χαθούν.
Θέλετε σίγουρα να συνεχίσετε;", "textDarkTheme": "Dark Theme" } } diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json index c27c7540f..4c03004e6 100644 --- a/apps/spreadsheeteditor/mobile/locale/en.json +++ b/apps/spreadsheeteditor/mobile/locale/en.json @@ -73,9 +73,6 @@ "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", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found", "SDK": { "txtAccent": "Accent", "txtAll": "(All)", @@ -145,9 +142,14 @@ "textGuest": "Guest", "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", "textNo": "No", + "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", "textNoLicenseTitle": "License limit reached", + "textNoTextFound": "Text not found", + "textOk": "Ok", "textPaidFeature": "Paid feature", "textRemember": "Remember my choice", + "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textYes": "Yes", "titleServerVersion": "Editor updated", "titleUpdateVersion": "Version changed", @@ -157,9 +159,7 @@ "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.", - "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", - "textOk": "Ok" + "warnProcessRightsChange": "You don't have permission to edit the file." } }, "Error": { @@ -288,15 +288,15 @@ "textErrorRemoveSheet": "Can't delete the worksheet.", "textHide": "Hide", "textMore": "More", + "textMove": "Move", + "textMoveBack": "Move back", + "textMoveForward": "Move forward", "textOk": "Ok", "textRename": "Rename", "textRenameSheet": "Rename Sheet", "textSheet": "Sheet", "textSheetName": "Sheet Name", "textUnhide": "Unhide", - "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward", "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" }, "Toolbar": { @@ -340,6 +340,7 @@ "textLink": "Link", "textLinkSettings": "Link Settings", "textLinkType": "Link Type", + "textOk": "Ok", "textOther": "Other", "textPictureFromLibrary": "Picture from library", "textPictureFromURL": "Picture from URL", @@ -357,8 +358,7 @@ "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "txtSorting": "Sorting", "txtSortSelected": "Sort selected", - "txtYes": "Yes", - "textOk": "Ok" + "txtYes": "Yes" }, "Edit": { "notcriticalErrorTitle": "Warning", @@ -478,6 +478,7 @@ "textNoOverlay": "No Overlay", "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "textNumber": "Number", + "textOk": "Ok", "textOnTickMarks": "On Tick Marks", "textOpacity": "Opacity", "textOut": "Out", @@ -539,8 +540,7 @@ "textYen": "Yen", "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "txtSortHigh2Low": "Sort Highest to Lowest", - "txtSortLow2High": "Sort Lowest to Highest", - "textOk": "Ok" + "txtSortLow2High": "Sort Lowest to Highest" }, "Settings": { "advCSVOptions": "Choose CSV options", @@ -570,6 +570,7 @@ "textComments": "Comments", "textCreated": "Created", "textCustomSize": "Custom Size", + "textDarkTheme": "Dark Theme", "textDelimeter": "Delimiter", "textDisableAll": "Disable All", "textDisableAllMacrosWithNotification": "Disable all macros with a notification", @@ -670,8 +671,7 @@ "txtSemicolon": "Semicolon", "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?", - "textDarkTheme": "Dark Theme" + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/es.json b/apps/spreadsheeteditor/mobile/locale/es.json index 2920c1931..a2c8dc85a 100644 --- a/apps/spreadsheeteditor/mobile/locale/es.json +++ b/apps/spreadsheeteditor/mobile/locale/es.json @@ -156,10 +156,10 @@ "warnNoLicenseUsers": "Ha alcanzado el límite de usuarios para %1 editores. Póngase en contacto con el equipo de ventas de %1 para conocer las condiciones de actualización personal.", "warnProcessRightsChange": "No tiene permiso para editar el archivo.", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", + "textNoTextFound": "Text not found", "textOk": "Ok", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { diff --git a/apps/spreadsheeteditor/mobile/locale/fr.json b/apps/spreadsheeteditor/mobile/locale/fr.json index 754c633d3..c4234077e 100644 --- a/apps/spreadsheeteditor/mobile/locale/fr.json +++ b/apps/spreadsheeteditor/mobile/locale/fr.json @@ -156,10 +156,10 @@ "warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", "warnProcessRightsChange": "Vous n'avez pas la permission de modifier ce fichier.", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", + "textNoTextFound": "Text not found", "textOk": "Ok", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { diff --git a/apps/spreadsheeteditor/mobile/locale/gl.json b/apps/spreadsheeteditor/mobile/locale/gl.json index 42036de3d..26a6ce7bb 100644 --- a/apps/spreadsheeteditor/mobile/locale/gl.json +++ b/apps/spreadsheeteditor/mobile/locale/gl.json @@ -156,10 +156,10 @@ "warnNoLicenseUsers": "Alcanzou o límite de usuarios para os editores de %1.
Contacte co equipo de vendas de %1 para coñecer os termos de actualización persoal.", "warnProcessRightsChange": "Non ten permiso para editar o ficheiro.", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", + "textNoTextFound": "Text not found", "textOk": "Ok", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { diff --git a/apps/spreadsheeteditor/mobile/locale/hu.json b/apps/spreadsheeteditor/mobile/locale/hu.json index 2e6976626..43ca11f91 100644 --- a/apps/spreadsheeteditor/mobile/locale/hu.json +++ b/apps/spreadsheeteditor/mobile/locale/hu.json @@ -1,676 +1,676 @@ { "About": { - "textAbout": "About", - "textAddress": "Address", - "textBack": "Back", - "textEmail": "Email", - "textPoweredBy": "Powered By", - "textTel": "Tel", - "textVersion": "Version" + "textAbout": "Névjegy", + "textAddress": "Cím", + "textBack": "Vissza", + "textEmail": "E-mail", + "textPoweredBy": "Powered by", + "textTel": "Tel.", + "textVersion": "Verzió" }, "Common": { "Collaboration": { - "notcriticalErrorTitle": "Warning", - "textAddComment": "Add Comment", - "textAddReply": "Add Reply", - "textBack": "Back", - "textCancel": "Cancel", - "textCollaboration": "Collaboration", - "textComments": "Comments", - "textDeleteComment": "Delete Comment", - "textDeleteReply": "Delete Reply", - "textDone": "Done", - "textEdit": "Edit", - "textEditComment": "Edit Comment", - "textEditReply": "Edit Reply", - "textEditUser": "Users who are editing the file:", - "textMessageDeleteComment": "Do you really want to delete this comment?", - "textMessageDeleteReply": "Do you really want to delete this reply?", - "textNoComments": "This document doesn't contain comments", - "textReopen": "Reopen", - "textResolve": "Resolve", - "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users", - "textOk": "Ok" + "notcriticalErrorTitle": "Figyelmeztetés", + "textAddComment": "Megjegyzés hozzáadása", + "textAddReply": "Válasz hozzáadása", + "textBack": "Vissza", + "textCancel": "Mégse", + "textCollaboration": "Együttműködés", + "textComments": "Megjegyzések", + "textDeleteComment": "Megjegyzés törlése", + "textDeleteReply": "Válasz törlése", + "textDone": "Kész", + "textEdit": "Szerkesztés", + "textEditComment": "Megjegyzés szerkesztése", + "textEditReply": "Válasz szerkesztése", + "textEditUser": "A fájlt szerkesztő felhasználók:", + "textMessageDeleteComment": "Biztosan törölni akarja a megjegyzést?", + "textMessageDeleteReply": "Biztosan törölni akarja ezt a választ?", + "textNoComments": "Ebben a dokumentumban nincsenek megjegyzések", + "textOk": "OK", + "textReopen": "Újranyitás", + "textResolve": "Megold", + "textTryUndoRedo": "A Visszavonás/Újra funkciók le vannak tiltva a Gyors társszerkesztés módban.", + "textUsers": "Felhasználók" }, "ThemeColorPalette": { - "textCustomColors": "Custom Colors", - "textStandartColors": "Standard Colors", - "textThemeColors": "Theme Colors" + "textCustomColors": "Egyéni színek", + "textStandartColors": "Alapértelmezett színek", + "textThemeColors": "Téma színek" } }, "ContextMenu": { - "errorCopyCutPaste": "Copy, cut, and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add Comment", - "menuAddLink": "Add Link", - "menuCancel": "Cancel", - "menuCell": "Cell", - "menuDelete": "Delete", - "menuEdit": "Edit", - "menuFreezePanes": "Freeze Panes", - "menuHide": "Hide", - "menuMerge": "Merge", - "menuMore": "More", - "menuOpenLink": "Open Link", - "menuShow": "Show", - "menuUnfreezePanes": "Unfreeze Panes", - "menuUnmerge": "Unmerge", - "menuUnwrap": "Unwrap", - "menuViewComment": "View Comment", - "menuWrap": "Wrap", - "notcriticalErrorTitle": "Warning", - "textCopyCutPasteActions": "Copy, Cut and Paste Actions", - "textDoNotShowAgain": "Don't show again", - "warnMergeLostData": "The operation can destroy data in the selected cells. Continue?", - "errorInvalidLink": "The link reference does not exist. Please correct the link or delete it." + "errorCopyCutPaste": "A helyi menü segítségével történő másolási, kivágási és beillesztési műveletek csak az aktuális fájlon belül hajthatók végre.", + "errorInvalidLink": "A hivatkozás nem létezik. Kérjük, javítsa ki a hivatkozást, vagy törölje azt.", + "menuAddComment": "Megjegyzés hozzáadása", + "menuAddLink": "Link hozzáadása", + "menuCancel": "Mégse", + "menuCell": "Cella", + "menuDelete": "Törlés", + "menuEdit": "Szerkesztés", + "menuFreezePanes": "Panelek rögzítése", + "menuHide": "Elrejt", + "menuMerge": "Összevon", + "menuMore": "Több", + "menuOpenLink": "Link megnyitása", + "menuShow": "Mutat", + "menuUnfreezePanes": "Rögzítés eltávolítása", + "menuUnmerge": "Szétválaszt", + "menuUnwrap": "Tördelés megszüntetése", + "menuViewComment": "Megjegyzés megtekintése", + "menuWrap": "Tördel", + "notcriticalErrorTitle": "Figyelmeztetés", + "textCopyCutPasteActions": "Másolás, kivágás és beillesztés", + "textDoNotShowAgain": "Ne mutassa újra", + "warnMergeLostData": "Csak a bal felső cellából származó adatok maradnak az egyesített cellában.
Biztosan folytatni szeretné?" }, "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", + "criticalErrorTitle": "Hiba", + "errorAccessDeny": "Olyan műveletet próbál végrehajtani, amelyhez nincs jogosultsága.
Kérjük, forduljon a rendszergazdához.", + "errorProcessSaveResult": "Sikertelen mentés.", + "errorServerVersion": "A szerkesztő verziója frissült. Az oldal újratöltésre kerül a módosítások alkalmazásához.", + "errorUpdateVersion": "A dokumentum verziója megváltozott. Az oldal újratöltődik.", + "leavePageText": "Nem mentett módosításai vannak ebben a dokumentumban. Kattintson a „Maradj ezen az oldalon” gombra az automatikus mentés megvárásához. Kattintson a \"Hagyja el ezt az oldalt\" gombra az összes nem mentett módosítás elvetéséhez.", + "notcriticalErrorTitle": "Figyelmeztetés", "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", + "txtAccent": "Ékezet", + "txtAll": "(Minden)", + "txtArt": "Írja a szöveget ide", + "txtBlank": "(üres)", + "txtByField": "%2-ból/ből %1", + "txtClearFilter": "Szűrő törlése (Alt+C)", + "txtColLbls": "Oszlopcímkék", + "txtColumn": "Oszlop", + "txtConfidential": "Bizalmas", + "txtDate": "Dátum", + "txtDays": "Napok", + "txtDiagramTitle": "Diagram címe", + "txtFile": "Fájl", + "txtGrandTotal": "Teljes összeg", + "txtGroup": "Csoport", + "txtHours": "órák", + "txtMinutes": "percek", + "txtMonths": "hónapok", + "txtMultiSelect": "Többszörös kiválasztás (Alt+S)", + "txtOr": "%1 vagy %2", + "txtPage": "Oldal", + "txtPageOf": "%1. oldal (Össz: %2)", + "txtPages": "Oldalak", + "txtPreparedBy": "Előkészítette", + "txtPrintArea": "Nyomtatási terület", "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" + "txtQuarters": "Negyedévek", + "txtRow": "Sor", + "txtRowLbls": "Sorcímkék", + "txtSeconds": "Másodpercek", + "txtSeries": "Sorozatok", + "txtStyle_Bad": "Hibás", + "txtStyle_Calculation": "Számítás", + "txtStyle_Check_Cell": "Cellák ellenőrzése", + "txtStyle_Comma": "Vessző", + "txtStyle_Currency": "Pénznem", + "txtStyle_Explanatory_Text": "Magyarázó szöveg", + "txtStyle_Good": "Jó", + "txtStyle_Heading_1": "Címsor 1", + "txtStyle_Heading_2": "Címsor 2", + "txtStyle_Heading_3": "Címsor 3", + "txtStyle_Heading_4": "Címsor 4", + "txtStyle_Input": "Bemenet", + "txtStyle_Linked_Cell": "Kapcsolt cella", + "txtStyle_Neutral": "Semleges", + "txtStyle_Normal": "Normál", + "txtStyle_Note": "Jegyzet", + "txtStyle_Output": "Eredmény", + "txtStyle_Percent": "Százalék", + "txtStyle_Title": "Cím", + "txtStyle_Total": "Összesen", + "txtStyle_Warning_Text": "Figyelmeztető szöveg", + "txtTab": "Lap", + "txtTable": "Táblázat", + "txtTime": "Idő", + "txtValues": "Értékek", + "txtXAxis": "X tengely", + "txtYAxis": "Y tengely", + "txtYears": "Évek" }, - "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.", + "textAnonymous": "Névtelen", + "textBuyNow": "Weboldal megnyitása", + "textClose": "Bezár", + "textContactUs": "Kapcsolatba lépés az értékesítéssel", + "textCustomLoader": "Sajnáljuk, nem jogosult a betöltő cseréjére. Árajánlatért kérjük, forduljon értékesítési osztályunkhoz.", + "textGuest": "Vendég", + "textHasMacros": "A fájl automatikus makrókat tartalmaz.
Szeretne makrókat futtatni?", + "textNo": "Nem", + "textNoLicenseTitle": "Elérte a licenckorlátot", + "textPaidFeature": "Fizetett funkció", + "textRemember": "Választás megjegyzése", + "textYes": "Igen", + "titleServerVersion": "Szerkesztő frissítve", + "titleUpdateVersion": "A verzió megváltozott", + "warnLicenseExceeded": "Elérte a(z) %1 szerkesztővel való egyidejű kapcsolódási korlátot. Ez a dokumentum csak megtekintésre nyílik meg. További információért forduljon rendszergazdájához.", + "warnLicenseLimitedNoAccess": "Licenc lejárt. Nincs hozzáférése a dokumentumszerkesztési funkciókhoz. Kérjük, forduljon a rendszergazdához.", + "warnLicenseLimitedRenewed": "A licencet meg kell újítani. Korlátozott hozzáférése van a dokumentumszerkesztési funkciókhoz.
A teljes hozzáférés érdekében forduljon rendszergazdájához", + "warnLicenseUsersExceeded": "Elérte a(z) %1 szerkesztőhöz tartozó felhasználói korlátját. További információért forduljon rendszergazdájához.", + "warnNoLicense": "Elérte a(z) %1 szerkesztővel való egyidejű kapcsolódási korlátot. Ez a dokumentum csak megtekintésre nyílik meg. Lépjen kapcsolatba a(z) %1 értékesítési csapattal a személyes frissítés feltételekért.", + "warnNoLicenseUsers": "Elérte a(z) %1 szerkesztőhöz tartozó felhasználói korlátját. Vegye fel a kapcsolatot a(z) %1 értékesítési csapattal a személyes frissítési feltételekért.", + "warnProcessRightsChange": "Nincs engedélye a fájl szerkesztésére.", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", + "textNoTextFound": "Text not found", "textOk": "Ok", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { - "convertationTimeoutText": "Conversion timeout exceeded.", - "criticalErrorExtText": "Press 'OK' to go back to the document list.", - "criticalErrorTitle": "Error", - "downloadErrorText": "Download failed.", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorArgsRange": "An error in the formula.
Incorrect arguments range.", - "errorAutoFilterChange": "The operation is not allowed as it is attempting to shift cells in a table on your worksheet.", - "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
Select another data range so that the whole table is shifted and try again.", - "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
Select a uniform data range inside or outside the table and try again.", - "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
Please, unhide the filtered elements and try again.", - "errorBadImageUrl": "Image url is incorrect", - "errorChangeArray": "You cannot change part of an array.", - "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
When you click the 'OK' button, you will be prompted to download the document.", - "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
Select a single range and try again.", - "errorCountArg": "An error in the formula.
Invalid number of arguments.", - "errorCountArgExceed": "An error in the formula.
Maximum number of arguments exceeded.", - "errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
at the moment as some of them are being edited.", - "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", - "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", - "errorDataRange": "Incorrect data range.", - "errorDataValidate": "The value you entered is not valid.
A user has restricted values that can be entered into this cell.", - "errorDefaultMessage": "Error code: %1", - "errorEditingDownloadas": "An error occurred during the work with the document.
Use the 'Download' option to save the file backup copy locally.", - "errorFilePassProtect": "The file is password protected and could not be opened.", - "errorFileRequest": "External error.
File Request. Please, contact support.", - "errorFileSizeExceed": "The file size exceeds your server limitation.
Please, contact your admin for details.", - "errorFileVKey": "External error.
Incorrect security key. Please, contact support.", - "errorFillRange": "Could not fill the selected range of cells.
All the merged cells need to be the same size.", - "errorFormulaName": "An error in the formula.
Incorrect formula name.", - "errorFormulaParsing": "Internal error while the formula parsing.", - "errorFrmlMaxLength": "You cannot add this formula as its length exceeds the allowed number of characters.
Please, edit it and try again.", - "errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
cell references, and/or names.", - "errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
Use the CONCATENATE function or concatenation operator (&)", - "errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
Please, check the data and try again.", - "errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", - "errorKeyEncrypt": "Unknown key descriptor", - "errorKeyExpire": "Key descriptor expired", - "errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", - "errorLockedCellPivot": "You cannot change data inside a pivot table.", - "errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", - "errorMaxPoints": "The maximum number of points in series per chart is 4096.", - "errorMoveRange": "Cannot change a part of a merged cell", - "errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", - "errorOpenWarning": "The length of one of the formulas in the file exceeded
the allowed number of characters and it was removed.", - "errorOperandExpected": "The entered function syntax is not correct. Please, check if you missed one of the parentheses - '(' or ')'.", - "errorPasteMaxRange": "The copy and paste area does not match. Please, select an area of the same size or click the first cell in a row to paste the copied cells.", - "errorPrintMaxPagesCount": "Unfortunately, it’s not possible to print more than 1500 pages at once in the current version of the program.
This restriction will be eliminated in upcoming releases.", - "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", - "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", - "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", - "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
opening price, max price, min price, closing price.", - "errorUnexpectedGuid": "External error.
Unexpected Guid. Please, contact support.", - "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", - "errorUserDrop": "The file cannot be accessed right now.", - "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download it until the connection is restored and the page is reloaded.", - "errorWrongBracketsCount": "An error in the formula.
Wrong number of brackets.", - "errorWrongOperator": "An error in the entered formula. Wrong operator is used.
Please correct the error.", - "notcriticalErrorTitle": "Warning", - "openErrorText": "An error has occurred while opening the file", - "pastInMergeAreaError": "Cannot change a part of a merged cell", - "saveErrorText": "An error has occurred while saving the file", - "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", - "unknownErrorText": "Unknown error.", - "uploadImageExtMessage": "Unknown image format.", - "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", - "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password.", - "textErrorPasswordIsNotCorrect": "The password you supplied is not correct.
Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.", + "convertationTimeoutText": "Időtúllépés az átalakítás során.", + "criticalErrorExtText": "Nyomja meg az „OK” gombot a dokumentumlistához való visszatéréshez.", + "criticalErrorTitle": "Hiba", + "downloadErrorText": "Sikertelen letöltés.", + "errorAccessDeny": "Olyan műveletet próbál végrehajtani, amelyhez nincs jogosultsága.
Kérjük, forduljon a rendszergazdához.", + "errorArgsRange": "Hiba a függvényben.
Helytelen argumentumtartomány.", + "errorAutoFilterChange": "A művelet nem engedélyezett, mivel megpróbálja eltolni a cellákat a munkalapon lévő táblázatban.", + "errorAutoFilterChangeFormatTable": "A művelet nem hajtható végre a kijelölt cellákra, mivel a táblázat egy részét nem lehet áthelyezni.
Válasszon másik adattartományt, hogy a teljes táblázat eltolódjon, és próbálkozzon újra.", + "errorAutoFilterDataRange": "A művelet nem hajtható végre a kiválasztott cellatartományban.
Válasszon egységes adattartományt a táblázaton belül vagy kívül és próbálkozzon újra.", + "errorAutoFilterHiddenRange": "A művelet nem hajtható végre, mert a terület szűrt cellákat tartalmaz.
Kérjük, jelenítse meg a szűrt elemeket, és próbálja újra.", + "errorBadImageUrl": "Hibás kép URL", + "errorChangeArray": "Nem módosíthatja a tömb egy részét.", + "errorChangeOnProtectedSheet": "A módosítani kívánt cella vagy diagram egy védett lapon található. A módosításhoz szüntesse meg a lap védelmét. Előfordulhat, hogy jelszót kell megadnia.", + "errorConnectToServer": "Ezt a dokumentumot nem lehet menteni. Ellenőrizze a kapcsolat beállításait, vagy forduljon a rendszergazdához.
Ha az \"OK\" gombra kattint, a rendszer felkéri a dokumentum letöltésére.", + "errorCopyMultiselectArea": "Ez a parancs nem használható többes kiválasztással.
Válasszon ki egy tartományt és próbálja újra.", + "errorCountArg": "Hiba a függvényben.
Érvénytelen számú argumentum.", + "errorCountArgExceed": "Hiba a függvényben.
Túllépte az argumentumok maximális számát.", + "errorCreateDefName": "A meglévő tartományok nem szerkeszthetők, és az újakat nem lehet létrehozni
jelenleg némely szerkesztés alatt áll.", + "errorDatabaseConnection": "Külső hiba.
Adatbázis kapcsolati hiba. Kérem vegye igénybe támogatásunkat.", + "errorDataEncrypted": "Titkosított változások érkeztek, melyek feloldása sikertelen.", + "errorDataRange": "Hibás adattartomány.", + "errorDataValidate": "A megadott érték nem érvényes.
A felhasználónak korlátozott értékei vannak, amelyeket be lehet írni a cellába.", + "errorDefaultMessage": "Hibakód: %1", + "errorEditingDownloadas": "Hiba történt a dokumentummal végzett munka során.
A fájl biztonsági másolatának helyi mentéséhez használja a „Letöltés” lehetőséget.", + "errorFilePassProtect": "A fájl jelszóval védett, és nem lehetett megnyitni.", + "errorFileRequest": "Külső hiba.
Fájlkérés. Kérjük, lépjen kapcsolatba a támogatásunkkal.", + "errorFileSizeExceed": "A fájl mérete meghaladja a szerverre vonatkozó korlátot.
A részletekért forduljon a rendszergazdához.", + "errorFileVKey": "Külső hiba.
Helytelen biztonsági kulcs. Kérjük, lépjen kapcsolatba a támogatásunkkal.", + "errorFillRange": "Nem sikerült kitölteni a kiválasztott cellatartományt.
Minden egyesített cellának azonos méretűnek kell lennie.", + "errorFormulaName": "Hiba a függvényben.
Helytelen képletnév.", + "errorFormulaParsing": "Belső hiba a függvény elemzése közben.", + "errorFrmlMaxLength": "Ezt a függvényt nem adhatja hozzá, mivel a hossza meghaladja a megengedett karakterszámot.
Kérjük, szerkessze, és próbálja újra.", + "errorFrmlMaxReference": "Nem adhatja meg ezt a függvényt, mert túl sok értéke,
cellahivatkozása és/vagy neve van.", + "errorFrmlMaxTextLength": "A függvények szövegértékei 255 karakterre korlátozódnak.
Használja a ÖSSZEFŰZ függvényt vagy az összefűzési operátort (&)", + "errorFrmlWrongReferences": "A függvény egy nem létező munkalapra hivatkozik.
Kérjük, ellenőrizze az adatokat, és próbálja újra.", + "errorInvalidRef": "Adjon meg egy helyes nevet a kijelöléshez, vagy érvényes hivatkozást.", + "errorKeyEncrypt": "Ismeretlen kulcsleíró", + "errorKeyExpire": "Lejárt kulcsleíró", + "errorLoadingFont": "A betűtípusok nincsenek betöltve.
Kérjük forduljon a dokumentumszerver rendszergazdájához.", + "errorLockedAll": "A műveletet nem lehetett végrehajtani, mivel a munkalapot egy másik felhasználó zárolta.", + "errorLockedCellPivot": "Nem módosíthatja az adatokat a pivot táblázatban.", + "errorLockedWorksheetRename": "A lapot nem lehet átnevezni, egy másik felhasználó éppen átnevezte azt", + "errorMaxPoints": "A soronkénti maximális pontszám diagramonként 4096.", + "errorMoveRange": "Az egyesített cella egy része nem módosítható", + "errorMultiCellFormula": "A táblázatokban nem használhatók többcellás tömbfüggvények.", + "errorOpenWarning": "A fájlban található egyik függvény hossza túllépte
a megengedett karakterszámot és el lett távolítva.", + "errorOperandExpected": "A függvény beírt szintaxisa nem megfelelő. Kérjük, ellenőrizze, hogy kihagyta-e valamelyik zárójelet – „(” vagy „)”.", + "errorPasteMaxRange": "A másolás és beillesztés területe nem egyezik. Kérjük, válasszon egy azonos méretű területet, vagy kattintson a sor első cellájára a másolt cellák beillesztéséhez.", + "errorPrintMaxPagesCount": "Sajnos a program jelenlegi verziójában nem lehet egyszerre 1500 oldalnál többet nyomtatni.
Ez a korlátozás a következő kiadásokban megszűnik.", + "errorSessionAbsolute": "A dokumentumszerkesztési munkamenet lejárt. Kérem, töltse újra az oldalt.", + "errorSessionIdle": "A dokumentumot hosszú ideje nem szerkesztették. Kérem, töltse újra az oldalt.", + "errorSessionToken": "A szerverrel való kapcsolat megszakadt. Kérjük, töltse újra az oldalt.", + "errorStockChart": "Helytelen sorsorrend. Részvénydiagram felépítéséhez helyezze el az adatokat a lapon a következő sorrendben:
nyitóár, max. ár, min. ár, záróár.", + "errorUnexpectedGuid": "Külső hiba.
Váratlan útmutató. Kérjük, lépjen kapcsolatba a támogatásunkkal.", + "errorUpdateVersionOnDisconnect": "Az internetkapcsolat helyreállt és a fájl verziója megváltozott.
Mielőtt folytatná a munkát, töltse le a fájlt vagy másolja át annak tartalmát megbizonyosodva arról, hogy semmi sem veszett el, végül töltse újra ezt az oldalt.", + "errorUserDrop": "A dokumentum jelenleg nem elérhető.", + "errorUsersExceed": "Túllépte a csomagja által engedélyezett felhasználók számát", + "errorViewerDisconnect": "A kapcsolat megszakadt. Továbbra is megtekintheti a dokumentumot,
de nem tudja letölteni vagy kinyomtatni, amíg a kapcsolat vissza nem áll és az oldal újra be nem töltődik.", + "errorWrongBracketsCount": "Hiba a függvényben.
Hibás számú zárójel.", + "errorWrongOperator": "Hiba a megadott függvényben. Hibás operátor használata.
Kérjük, javítsa ki a hibát.", + "notcriticalErrorTitle": "Figyelmeztetés", + "openErrorText": "Hiba történt a fájl megnyitásakor", + "pastInMergeAreaError": "Az egyesített cella egy része nem módosítható", + "saveErrorText": "Hiba történt a fájl mentése közben", + "scriptLoadError": "A kapcsolat túl lassú, egyes összetevőket nem sikerült betölteni. Kérem, töltse újra az oldalt.", + "textErrorPasswordIsNotCorrect": "A megadott jelszó helytelen.
Győződjön meg arról, hogy a CAPS LOCK billentyű ki van kapcsolva, és ügyeljen arra, hogy a megfelelő nagybetűket használja.", + "unknownErrorText": "Ismeretlen hiba.", + "uploadImageExtMessage": "Ismeretlen képformátum.", + "uploadImageFileCountMessage": "Nincs kép feltöltve.", + "uploadImageSizeMessage": "A kép túl nagy. A maximális méret 25 MB.", "errorCannotUseCommandProtectedSheet": "You cannot use this command on a protected sheet. To use this command, unprotect the sheet.
You might be requested to enter a password." }, "LongActions": { - "applyChangesTextText": "Loading data...", - "applyChangesTitleText": "Loading Data", - "confirmMoveCellRange": "The destination cells range can contain data. Continue the operation?", - "confirmPutMergeRange": "The source data contains merged cells.
They will be unmerged before they are pasted into the table.", - "confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
Do you want to continue?", - "downloadTextText": "Downloading document...", - "downloadTitleText": "Downloading Document", - "loadFontsTextText": "Loading data...", - "loadFontsTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadFontTitleText": "Loading Data", - "loadImagesTextText": "Loading images...", - "loadImagesTitleText": "Loading Images", - "loadImageTextText": "Loading image...", - "loadImageTitleText": "Loading Image", - "loadingDocumentTextText": "Loading document...", - "loadingDocumentTitleText": "Loading document", - "notcriticalErrorTitle": "Warning", - "openTextText": "Opening document...", - "openTitleText": "Opening Document", - "printTextText": "Printing document...", - "printTitleText": "Printing Document", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "saveTextText": "Saving document...", - "saveTitleText": "Saving Document", - "textLoadingDocument": "Loading document", - "textNo": "No", - "textOk": "Ok", - "textYes": "Yes", - "txtEditingMode": "Set editing mode...", - "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait...", - "advDRMPassword": "Password", - "textCancel": "Cancel", - "textErrorWrongPassword": "The password you supplied is not correct.", - "textUnlockRange": "Unlock Range", - "textUnlockRangeWarning": "A range you are trying to change is password protected." + "advDRMPassword": "Jelszó", + "applyChangesTextText": "Adatok betöltése...", + "applyChangesTitleText": "Adatok betöltése", + "confirmMoveCellRange": "A cél cellatartomány adatokat tartalmazhat. Folytatja a műveletet?", + "confirmPutMergeRange": "A forrásadatok egyesített cellákat tartalmaznak.
A táblázatba való beillesztés előtt a rendszer megszünteti az egyesítésüket.", + "confirmReplaceFormulaInTable": "A fejlécsorban lévő függvények el lesznek távolítva, majd statikus szöveggé alakítva.
Folytatja?", + "downloadTextText": "Dokumentum letöltése...", + "downloadTitleText": "Dokumentum letöltése", + "loadFontsTextText": "Adatok betöltése...", + "loadFontsTitleText": "Adatok betöltése", + "loadFontTextText": "Adatok betöltése...", + "loadFontTitleText": "Adatok betöltése", + "loadImagesTextText": "Képek betöltése...", + "loadImagesTitleText": "Képek betöltése", + "loadImageTextText": "Kép betöltése...", + "loadImageTitleText": "Kép betöltése", + "loadingDocumentTextText": "Dokumentum betöltése...", + "loadingDocumentTitleText": "Dokumentum betöltése", + "notcriticalErrorTitle": "Figyelmeztetés", + "openTextText": "Dokumentum megnyitása...", + "openTitleText": "Dokumentum megnyitása", + "printTextText": "Dokumentum nyomtatása...", + "printTitleText": "Dokumentum nyomtatása", + "savePreparingText": "Felkészülés a mentésre", + "savePreparingTitle": "Felkészülés a mentésre. Kérem várjon...", + "saveTextText": "Dokumentum mentése...", + "saveTitleText": "Dokumentum mentése", + "textCancel": "Mégse", + "textErrorWrongPassword": "A megadott jelszó nem megfelelő.", + "textLoadingDocument": "Dokumentum betöltése", + "textNo": "Nem", + "textOk": "OK", + "textUnlockRange": "Tartomány feloldása", + "textUnlockRangeWarning": "A módosítani kívánt tartomány jelszóval védett.", + "textYes": "Igen", + "txtEditingMode": "Szerkesztési mód beállítása...", + "uploadImageTextText": "Kép feltöltése...", + "uploadImageTitleText": "Kép feltöltése", + "waitText": "Kérjük várjon..." }, "Statusbar": { - "notcriticalErrorTitle": "Warning", - "textCancel": "Cancel", - "textDelete": "Delete", - "textDuplicate": "Duplicate", - "textErrNameExists": "Worksheet with this name already exists.", - "textErrNameWrongChar": "A sheet name cannot contains characters: \\, /, *, ?, [, ], :", - "textErrNotEmpty": "Sheet name must not be empty", - "textErrorLastSheet": "The workbook must have at least one visible worksheet.", - "textErrorRemoveSheet": "Can't delete the worksheet.", - "textHide": "Hide", - "textMore": "More", - "textRename": "Rename", - "textRenameSheet": "Rename Sheet", - "textSheet": "Sheet", - "textSheetName": "Sheet Name", - "textUnhide": "Unhide", - "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?", - "textOk": "Ok", + "notcriticalErrorTitle": "Figyelmeztetés", + "textCancel": "Mégse", + "textDelete": "Törlés", + "textDuplicate": "Kettőzés", + "textErrNameExists": "Már létezik ilyen nevű munkalap.", + "textErrNameWrongChar": "A lap neve nem tartalmazhatja az alábbi karaktereket: /, *,?, [,],:", + "textErrNotEmpty": "A munkalap neve nem lehet üres", + "textErrorLastSheet": "A munkafüzetnek legalább egy látható munkalapnak kell lennie.", + "textErrorRemoveSheet": "Nem törölhető a munkalap.", + "textHide": "Elrejt", + "textMore": "Több", + "textOk": "OK", + "textRename": "Átnevezés", + "textRenameSheet": "Munkalap átnevezése", + "textSheet": "Munkalap", + "textSheetName": "Munkalap neve", + "textUnhide": "Megmutat", + "textWarnDeleteSheet": "A munkalap lehet hogy tartalmaz adatok. Folytatja a műveletet?", "textMove": "Move", "textMoveBack": "Move back", "textMoveForward": "Move forward" }, "Toolbar": { - "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this Page", - "stayButtonText": "Stay on this Page" + "dlgLeaveMsgText": "Nem mentett módosításai vannak ebben a dokumentumban. Kattintson a „Maradj ezen az oldalon” gombra az automatikus mentés megvárásához. Kattintson a \"Hagyja el ezt az oldalt\" gombra az összes nem mentett módosítás elvetéséhez.", + "dlgLeaveTitleText": "Bezárja az alkalmazást", + "leaveButtonText": "Oldal elhagyása", + "stayButtonText": "Maradjon ezen az oldalon" }, "View": { "Add": { - "errorMaxRows": "ERROR! The maximum number of data series per chart is 255.", - "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
opening price, max price, min price, closing price.", - "notcriticalErrorTitle": "Warning", - "sCatDateAndTime": "Date and time", - "sCatEngineering": "Engineering", - "sCatFinancial": "Financial", - "sCatInformation": "Information", - "sCatLogical": "Logical", - "sCatLookupAndReference": "Lookup and Reference", - "sCatMathematic": "Math and trigonometry", - "sCatStatistical": "Statistical", - "sCatTextAndData": "Text and data", - "textAddLink": "Add Link", - "textAddress": "Address", - "textBack": "Back", - "textCancel": "Cancel", - "textChart": "Chart", - "textComment": "Comment", - "textDisplay": "Display", - "textEmptyImgUrl": "You need to specify the image URL.", - "textExternalLink": "External Link", - "textFilter": "Filter", - "textFunction": "Function", - "textGroups": "CATEGORIES", - "textImage": "Image", - "textImageURL": "Image URL", - "textInsert": "Insert", - "textInsertImage": "Insert Image", - "textInternalDataRange": "Internal Data Range", - "textInvalidRange": "ERROR! Invalid cells range", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkType": "Link Type", - "textOther": "Other", - "textPictureFromLibrary": "Picture from library", - "textPictureFromURL": "Picture from URL", - "textRange": "Range", - "textRequired": "Required", - "textScreenTip": "Screen Tip", - "textShape": "Shape", - "textSheet": "Sheet", - "textSortAndFilter": "Sort and Filter", - "txtExpand": "Expand and sort", - "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "txtSorting": "Sorting", - "txtSortSelected": "Sort selected", - "textSelectedRange": "Selected Range", - "txtLockSort": "Data is found next to your selection, but you do not have sufficient permissions to change those cells.
Do you wish to continue with the current selection?", - "txtNo": "No", - "txtYes": "Yes", + "errorMaxRows": "HIBA! Az adatsorok maximális száma diagramonként 255.", + "errorStockChart": "Helytelen sorsorrend. Részvénydiagram felépítéséhez helyezze el az adatokat a lapon a következő sorrendben:
nyitóár, max. ár, min. ár, záróár.", + "notcriticalErrorTitle": "Figyelmeztetés", + "sCatDateAndTime": "Dátum és idő", + "sCatEngineering": "Mérnöki", + "sCatFinancial": "Pénzügyi", + "sCatInformation": "Információ", + "sCatLogical": "Logikai", + "sCatLookupAndReference": "Keresés és hivatkozás", + "sCatMathematic": "Matematika és trigonometria", + "sCatStatistical": "Statisztikai", + "sCatTextAndData": "Szöveg és adat", + "textAddLink": "Link hozzáadása", + "textAddress": "Cím", + "textBack": "Vissza", + "textCancel": "Mégse", + "textChart": "Diagram", + "textComment": "Megjegyzés", + "textDisplay": "Megjelenít", + "textEmptyImgUrl": "Meg kell adnia a kép URL-jét.", + "textExternalLink": "Külső hivatkozás", + "textFilter": "Szűrő", + "textFunction": "Függvény", + "textGroups": "KATEGÓRIÁK", + "textImage": "Kép", + "textImageURL": "Kép URL", + "textInsert": "Beszúrás", + "textInsertImage": "Kép beszúrása", + "textInternalDataRange": "Belső adattartomány", + "textInvalidRange": "HIBA! Érvénytelen cellatartomány", + "textLink": "Hivatkozás", + "textLinkSettings": "Hivatkozás beállítások", + "textLinkType": "Hivatkozás típusa", + "textOther": "Egyéb", + "textPictureFromLibrary": "Kép a könyvtárból", + "textPictureFromURL": "Kép URL-en keresztül", + "textRange": "Tartomány", + "textRequired": "Kötelező", + "textScreenTip": "Képernyőtipp", + "textSelectedRange": "Kiválasztott tartomány", + "textShape": "Alakzat", + "textSheet": "Munkalap", + "textSortAndFilter": "Rendezés és szűrés", + "txtExpand": "Kibont és rendez", + "txtExpandSort": "A kijelölt adatok mellett található adatok nem lesznek rendezve. Szeretné kibővíteni a kijelölést a szomszédos adatok felvételével, vagy csak a jelenleg kiválasztott cellákat rendezi?", + "txtLockSort": "Adatok találhatók a kijelölés mellett, de nincs elegendő engedélye a cellák módosításához.
Szeretné folytatni a jelenlegi kijelöléssel?", + "txtNo": "Nem", + "txtNotUrl": "Ennek a mezőnek URL formátumúnak kell lennie, pl.: „http://www.pelda.hu”", + "txtSorting": "Rendezés", + "txtSortSelected": "Kiválasztottak renezése", + "txtYes": "Igen", "textOk": "Ok" }, "Edit": { - "notcriticalErrorTitle": "Warning", - "textAccounting": "Accounting", - "textActualSize": "Actual Size", - "textAddCustomColor": "Add Custom Color", - "textAddress": "Address", - "textAlign": "Align", - "textAlignBottom": "Align Bottom", - "textAlignCenter": "Align Center", - "textAlignLeft": "Align Left", - "textAlignMiddle": "Align Middle", - "textAlignRight": "Align Right", - "textAlignTop": "Align Top", - "textAllBorders": "All Borders", - "textAngleClockwise": "Angle Clockwise", - "textAngleCounterclockwise": "Angle Counterclockwise", + "notcriticalErrorTitle": "Figyelmeztetés", + "textAccounting": "Könyvelés", + "textActualSize": "Aktuális méret", + "textAddCustomColor": "Egyéni szín hozzáadása", + "textAddress": "Cím", + "textAlign": "Rendez", + "textAlignBottom": "Alulra rendez", + "textAlignCenter": "Középre rendez", + "textAlignLeft": "Balra rendez", + "textAlignMiddle": "Középre rendez", + "textAlignRight": "Jobbra rendez", + "textAlignTop": "Felülre rendez ", + "textAllBorders": "Minden szegély", + "textAngleClockwise": "Óramutató járásával megegyező irányba", + "textAngleCounterclockwise": "Óramutató járásával ellentétes irányba", "textAuto": "Auto", - "textAxisCrosses": "Axis Crosses", - "textAxisOptions": "Axis Options", - "textAxisPosition": "Axis Position", - "textAxisTitle": "Axis Title", - "textBack": "Back", - "textBetweenTickMarks": "Between Tick Marks", - "textBillions": "Billions", - "textBorder": "Border", - "textBorderStyle": "Border Style", - "textBottom": "Bottom", - "textBottomBorder": "Bottom Border", - "textBringToForeground": "Bring to Foreground", - "textCell": "Cell", - "textCellStyles": "Cell Styles", - "textCenter": "Center", - "textChart": "Chart", - "textChartTitle": "Chart Title", - "textClearFilter": "Clear Filter", - "textColor": "Color", - "textCross": "Cross", - "textCrossesValue": "Crosses Value", - "textCurrency": "Currency", - "textCustomColor": "Custom Color", - "textDataLabels": "Data Labels", - "textDate": "Date", - "textDefault": "Selected range", - "textDeleteFilter": "Delete Filter", - "textDesign": "Design", - "textDiagonalDownBorder": "Diagonal Down Border", - "textDiagonalUpBorder": "Diagonal Up Border", - "textDisplay": "Display", - "textDisplayUnits": "Display Units", - "textDollar": "Dollar", - "textEditLink": "Edit Link", - "textEffects": "Effects", - "textEmptyImgUrl": "You need to specify the image URL.", - "textEmptyItem": "{Blanks}", - "textErrorMsg": "You must choose at least one value", - "textErrorTitle": "Warning", - "textEuro": "Euro", - "textExternalLink": "External Link", - "textFill": "Fill", - "textFillColor": "Fill Color", - "textFilterOptions": "Filter Options", - "textFit": "Fit Width", - "textFonts": "Fonts", - "textFormat": "Format", - "textFraction": "Fraction", - "textFromLibrary": "Picture from Library", - "textFromURL": "Picture from URL", - "textGeneral": "General", - "textGridlines": "Gridlines", - "textHigh": "High", - "textHorizontal": "Horizontal", - "textHorizontalAxis": "Horizontal Axis", - "textHorizontalText": "Horizontal Text", + "textAxisCrosses": "Tengelykeresztek", + "textAxisOptions": "Tengely beállítások", + "textAxisPosition": "Tengelypozíció", + "textAxisTitle": "Tengelycím", + "textBack": "Vissza", + "textBetweenTickMarks": "Tengelyosztások között", + "textBillions": "Milliárdok", + "textBorder": "Szegély", + "textBorderStyle": "Szegélystílus", + "textBottom": "Alul", + "textBottomBorder": "Alsó szegély", + "textBringToForeground": "Előtérbe hoz", + "textCell": "Cella", + "textCellStyles": "Cella stílusok", + "textCenter": "Középre", + "textChart": "Diagram", + "textChartTitle": "Diagram címe", + "textClearFilter": "Szűrő törlése", + "textColor": "Szín", + "textCross": "Kereszt", + "textCrossesValue": "Keresztek értéke", + "textCurrency": "Pénznem", + "textCustomColor": "Egyéni szín", + "textDataLabels": "Adatcímkék", + "textDate": "Dátum", + "textDefault": "Kiválasztott tartomány", + "textDeleteFilter": "Szűrő törlése", + "textDesign": "Dizájn", + "textDiagonalDownBorder": "Átlós szegély lefelé", + "textDiagonalUpBorder": "Átlós szegély felfelé", + "textDisplay": "Megjelenít", + "textDisplayUnits": "Egységek megjelenítése", + "textDollar": "Dollár", + "textEditLink": "Hivatkozás szerkesztése", + "textEffects": "Effektek", + "textEmptyImgUrl": "Meg kell adnia a kép URL-jét.", + "textEmptyItem": "{Üresek}", + "textErrorMsg": "Legalább egy értéket ki kell választania", + "textErrorTitle": "Figyelmeztetés", + "textEuro": "Euró", + "textExternalLink": "Külső hivatkozás", + "textFill": "Kitöltés", + "textFillColor": "Kitöltőszín", + "textFilterOptions": "Szűrő beállítások", + "textFit": "Szélességben igazít", + "textFonts": "Betűtípusok", + "textFormat": "Formátum", + "textFraction": "Tört", + "textFromLibrary": "Kép a könyvtárból", + "textFromURL": "Kép URL-en keresztül", + "textGeneral": "Általános", + "textGridlines": "Rácsvonalak", + "textHigh": "Magas", + "textHorizontal": "Vízszintes", + "textHorizontalAxis": "Vízszintes tengely", + "textHorizontalText": "Vízszintes szöveg", "textHundredMil": "100 000 000", - "textHundreds": "Hundreds", + "textHundreds": "Százak", "textHundredThousands": "100 000", - "textHyperlink": "Hyperlink", - "textImage": "Image", - "textImageURL": "Image URL", - "textIn": "In", - "textInnerBottom": "Inner Bottom", - "textInnerTop": "Inner Top", - "textInsideBorders": "Inside Borders", - "textInsideHorizontalBorder": "Inside Horizontal Border", - "textInsideVerticalBorder": "Inside Vertical Border", - "textInteger": "Integer", - "textInternalDataRange": "Internal Data Range", - "textInvalidRange": "Invalid cells range", - "textJustified": "Justified", - "textLabelOptions": "Label Options", - "textLabelPosition": "Label Position", - "textLayout": "Layout", - "textLeft": "Left", - "textLeftBorder": "Left Border", - "textLeftOverlay": "Left Overlay", - "textLegend": "Legend", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkType": "Link Type", - "textLow": "Low", - "textMajor": "Major", - "textMajorAndMinor": "Major And Minor", - "textMajorType": "Major Type", - "textMaximumValue": "Maximum Value", - "textMedium": "Medium", - "textMillions": "Millions", - "textMinimumValue": "Minimum Value", - "textMinor": "Minor", - "textMinorType": "Minor Type", - "textMoveBackward": "Move Backward", - "textMoveForward": "Move Forward", - "textNextToAxis": "Next to Axis", - "textNoBorder": "No Border", - "textNone": "None", - "textNoOverlay": "No Overlay", - "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textNumber": "Number", - "textOnTickMarks": "On Tick Marks", - "textOpacity": "Opacity", - "textOut": "Out", - "textOuterTop": "Outer Top", - "textOutsideBorders": "Outside Borders", - "textOverlay": "Overlay", - "textPercentage": "Percentage", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textPound": "Pound", + "textHyperlink": "Hiperhivatkozás", + "textImage": "Kép", + "textImageURL": "Kép URL", + "textIn": "-ben/-ban", + "textInnerBottom": "Alul belül", + "textInnerTop": "Felül belül", + "textInsideBorders": "Belső szegélyek", + "textInsideHorizontalBorder": "Belső vízszintes szegély", + "textInsideVerticalBorder": "Belső függőleges szegély", + "textInteger": "Egész szám", + "textInternalDataRange": "Belső adattartomány", + "textInvalidRange": "Érvénytelen cellatartomány", + "textJustified": "Sorkizárt", + "textLabelOptions": "Címkebeállítások", + "textLabelPosition": "Címkepozíció", + "textLayout": "Elrendezés", + "textLeft": "Bal", + "textLeftBorder": "Bal szegély", + "textLeftOverlay": "Bal átfedés", + "textLegend": "Jelmagyarázat", + "textLink": "Hivatkozás", + "textLinkSettings": "Hivatkozás beállítások", + "textLinkType": "Hivatkozás típusa", + "textLow": "Alacsony", + "textMajor": "Jelentősebb", + "textMajorAndMinor": "Jelentős és kevésbé jelentős", + "textMajorType": "Főbb típus", + "textMaximumValue": "Maximum érték", + "textMedium": "Közepes", + "textMillions": "Milliók", + "textMinimumValue": "Minimum érték", + "textMinor": "Kisebb", + "textMinorType": "Kisebb típusú", + "textMoveBackward": "Hátra mozgat", + "textMoveForward": "Előre mozgat", + "textNextToAxis": "Tengely mellett", + "textNoBorder": "Nincs szegély", + "textNone": "Egyik sem", + "textNoOverlay": "Nincs átfedés", + "textNotUrl": "Ennek a mezőnek URL formátumúnak kell lennie, pl.: „http://www.pelda.hu”", + "textNumber": "Szám", + "textOnTickMarks": "Pipákon", + "textOpacity": "Áttetszőség", + "textOut": "Ki", + "textOuterTop": "Kívül fent", + "textOutsideBorders": "Külső szegélyek", + "textOverlay": "Átfedés", + "textPercentage": "Százalék", + "textPictureFromLibrary": "Kép a könyvtárból", + "textPictureFromURL": "Kép URL-en keresztül", + "textPound": "Font", "textPt": "pt", - "textRange": "Range", - "textRemoveChart": "Remove Chart", - "textRemoveImage": "Remove Image", - "textRemoveLink": "Remove Link", - "textRemoveShape": "Remove Shape", - "textReorder": "Reorder", - "textReplace": "Replace", - "textReplaceImage": "Replace Image", - "textRequired": "Required", - "textRight": "Right", - "textRightBorder": "Right Border", - "textRightOverlay": "Right Overlay", - "textRotated": "Rotated", - "textRotateTextDown": "Rotate Text Down", - "textRotateTextUp": "Rotate Text Up", - "textRouble": "Rouble", - "textScientific": "Scientific", - "textScreenTip": "Screen Tip", - "textSelectAll": "Select All", - "textSelectObjectToEdit": "Select object to edit", - "textSendToBackground": "Send to Background", - "textSettings": "Settings", - "textShape": "Shape", - "textSheet": "Sheet", - "textSize": "Size", - "textStyle": "Style", + "textRange": "Tartomány", + "textRemoveChart": "Diagram eltávolítása", + "textRemoveImage": "Kép eltávolítása", + "textRemoveLink": "Link eltávolítása", + "textRemoveShape": "Alakzat eltávolítása", + "textReorder": "Újrarendez", + "textReplace": "Csere", + "textReplaceImage": "Kép cseréje", + "textRequired": "Kötelező", + "textRight": "Jobb", + "textRightBorder": "Jobb szegély", + "textRightOverlay": "Jobb átfedés", + "textRotated": "Elforgatott", + "textRotateTextDown": "Szöveg forgatása lefelé", + "textRotateTextUp": "Szöveg forgatása felfelé", + "textRouble": "Rubel", + "textScientific": "Tudományos", + "textScreenTip": "Képernyőtipp", + "textSelectAll": "Összes kiválasztása", + "textSelectObjectToEdit": "Szerkeszteni kívánt objektumot kiválasztása", + "textSendToBackground": "Háttérbe küld", + "textSettings": "Beállítások", + "textShape": "Alakzat", + "textSheet": "Munkalap", + "textSize": "Méret", + "textStyle": "Stílus", "textTenMillions": "10 000 000", "textTenThousands": "10 000", - "textText": "Text", - "textTextColor": "Text Color", - "textTextFormat": "Text Format", - "textTextOrientation": "Text Orientation", - "textThick": "Thick", - "textThin": "Thin", - "textThousands": "Thousands", - "textTickOptions": "Tick Options", - "textTime": "Time", - "textTop": "Top", - "textTopBorder": "Top Border", - "textTrillions": "Trillions", - "textType": "Type", - "textValue": "Value", - "textValuesInReverseOrder": "Values in Reverse Order", - "textVertical": "Vertical", - "textVerticalAxis": "Vertical Axis", - "textVerticalText": "Vertical Text", - "textWrapText": "Wrap Text", - "textYen": "Yen", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "txtSortHigh2Low": "Sort Highest to Lowest", - "txtSortLow2High": "Sort Lowest to Highest", + "textText": "Szöveg", + "textTextColor": "Szöveg szín", + "textTextFormat": "Szövegformátum", + "textTextOrientation": "Szövegirány", + "textThick": "Vastag", + "textThin": "Vékony", + "textThousands": "Ezrek", + "textTickOptions": "Jelölés beállítások", + "textTime": "Idő", + "textTop": "Felső", + "textTopBorder": "Felső szegély", + "textTrillions": "Billiók", + "textType": "Típus", + "textValue": "Érték", + "textValuesInReverseOrder": "Értékek fordított sorrendben", + "textVertical": "Függőleges", + "textVerticalAxis": "Függőleges tengely", + "textVerticalText": "Függőleges szöveg", + "textWrapText": "Szövegtördelés", + "textYen": "Jen", + "txtNotUrl": "Ennek a mezőnek URL formátumúnak kell lennie, pl.: „http://www.pelda.hu”", + "txtSortHigh2Low": "A legnagyobbtól a legkisebbig rendez", + "txtSortLow2High": "Legkisebbtől legnagyobbig rendez", "textAutomatic": "Automatic", "textOk": "Ok" }, "Settings": { - "advCSVOptions": "Choose CSV options", - "advDRMEnterPassword": "Your password, please:", - "advDRMOptions": "Protected File", - "advDRMPassword": "Password", - "closeButtonText": "Close File", - "notcriticalErrorTitle": "Warning", - "textAbout": "About", - "textAddress": "Address", - "textApplication": "Application", - "textApplicationSettings": "Application Settings", - "textAuthor": "Author", - "textBack": "Back", - "textBottom": "Bottom", - "textByColumns": "By columns", - "textByRows": "By rows", - "textCancel": "Cancel", - "textCentimeter": "Centimeter", - "textCollaboration": "Collaboration", - "textColorSchemes": "Color Schemes", - "textComment": "Comment", - "textCommentingDisplay": "Commenting Display", - "textComments": "Comments", - "textCreated": "Created", - "textCustomSize": "Custom Size", - "textDisableAll": "Disable All", - "textDisableAllMacrosWithNotification": "Disable all macros with a notification", - "textDisableAllMacrosWithoutNotification": "Disable all macros without a notification", - "textDone": "Done", - "textDownload": "Download", - "textDownloadAs": "Download As", - "textEmail": "Email", - "textEnableAll": "Enable All", - "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", - "textFindAndReplaceAll": "Find and Replace All", - "textFormat": "Format", - "textFormulaLanguage": "Formula Language", - "textFormulas": "Formulas", - "textHelp": "Help", - "textHideGridlines": "Hide Gridlines", - "textHideHeadings": "Hide Headings", - "textHighlightRes": "Highlight results", - "textInch": "Inch", - "textLandscape": "Landscape", - "textLastModified": "Last Modified", - "textLastModifiedBy": "Last Modified By", - "textLeft": "Left", - "textLocation": "Location", - "textLookIn": "Look In", - "textMacrosSettings": "Macros Settings", - "textMargins": "Margins", - "textMatchCase": "Match Case", - "textMatchCell": "Match Cell", - "textNoTextFound": "Text not found", - "textOpenFile": "Enter a password to open the file", - "textOrientation": "Orientation", - "textOwner": "Owner", - "textPoint": "Point", - "textPortrait": "Portrait", - "textPoweredBy": "Powered By", - "textPrint": "Print", - "textR1C1Style": "R1C1 Reference Style", - "textRegionalSettings": "Regional Settings", - "textReplace": "Replace", - "textReplaceAll": "Replace All", - "textResolvedComments": "Resolved Comments", - "textRight": "Right", - "textSearch": "Search", - "textSearchBy": "Search", - "textSearchIn": "Search In", - "textSettings": "Settings", - "textSheet": "Sheet", - "textShowNotification": "Show Notification", - "textSpreadsheetFormats": "Spreadsheet Formats", - "textSpreadsheetInfo": "Spreadsheet Info", - "textSpreadsheetSettings": "Spreadsheet Settings", - "textSpreadsheetTitle": "Spreadsheet Title", - "textSubject": "Subject", - "textTel": "Tel", - "textTitle": "Title", - "textTop": "Top", - "textUnitOfMeasurement": "Unit Of Measurement", - "textUploaded": "Uploaded", - "textValues": "Values", - "textVersion": "Version", - "textWorkbook": "Workbook", - "txtDelimiter": "Delimiter", - "txtEncoding": "Encoding", - "txtIncorrectPwd": "Password is incorrect", - "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "advCSVOptions": "Válasszon a CSV beállítások közül", + "advDRMEnterPassword": "Kérjük írja be jelszavát:", + "advDRMOptions": "Védett fájl", + "advDRMPassword": "Jelszó", + "closeButtonText": "Fájl bezárása", + "notcriticalErrorTitle": "Figyelmeztetés", + "textAbout": "Névjegy", + "textAddress": "Cím", + "textApplication": "Applikáció", + "textApplicationSettings": "Alkalmazás beállítások", + "textAuthor": "Szerző", + "textBack": "Vissza", + "textBottom": "Alul", + "textByColumns": "Oszlopoktól", + "textByRows": "Soroktól", + "textCancel": "Mégse", + "textCentimeter": "Centiméter", + "textChooseCsvOptions": "Válasszon a CSV beállítások közül", + "textChooseDelimeter": "Válasszon Határolót", + "textChooseEncoding": "Válassza a Kódolás lehetőséget", + "textCollaboration": "Együttműködés", + "textColorSchemes": "Szín sémák", + "textComment": "Megjegyzés", + "textCommentingDisplay": "Megjegyzések megjelenítése", + "textComments": "Megjegyzések", + "textCreated": "Létrehozva", + "textCustomSize": "Egyéni méret", + "textDelimeter": "Elválasztó", + "textDisableAll": "Összes letiltása", + "textDisableAllMacrosWithNotification": "Minden értesítéssel rendelkező makró letiltása", + "textDisableAllMacrosWithoutNotification": "Minden értesítés nélküli makró letiltása", + "textDone": "Kész", + "textDownload": "Letöltés", + "textDownloadAs": "Letöltés másként", + "textEmail": "E-mail", + "textEnableAll": "Összes engedélyezése", + "textEnableAllMacrosWithoutNotification": "Minden értesítés nélküli makró engedélyezése", + "textEncoding": "Kódolás", + "textExample": "Példa", + "textFind": "Keresés", + "textFindAndReplace": "Keresés és csere", + "textFindAndReplaceAll": "Összes keresése és cseréje", + "textFormat": "Formátum", + "textFormulaLanguage": "függvény nyelve", + "textFormulas": "Függvény", + "textHelp": "Súgó", + "textHideGridlines": "Rácsvonalak elrejtése", + "textHideHeadings": "Fejlécek elrejtése", + "textHighlightRes": "Eredmények kiemelése", + "textInch": "Hüvelyk", + "textLandscape": "Tájkép", + "textLastModified": "Utoljára módosított", + "textLastModifiedBy": "Utoljára módosította", + "textLeft": "Bal", + "textLocation": "Hely", + "textLookIn": "Keres", + "textMacrosSettings": "Makró beállítások", + "textMargins": "Margók", + "textMatchCase": "Kis-nagybetű összeegyeztetése", + "textMatchCell": "Cella összeegyeztetése", + "textNoTextFound": "A szöveg nem található", + "textOk": "OK", + "textOpenFile": "Írja be a megnyitáshoz szükséges jelszót", + "textOrientation": "Tájolás", + "textOwner": "Tulajdonos", + "textPoint": "Pont", + "textPortrait": "Portré", + "textPoweredBy": "Powered by", + "textPrint": "Nyomtatás", + "textR1C1Style": "R1C1 referenciastílus", + "textRegionalSettings": "Területi beállítások", + "textReplace": "Csere", + "textReplaceAll": "Mindent cserél", + "textResolvedComments": "Megoldott megjegyzések", + "textRight": "Jobb", + "textSearch": "Keresés", + "textSearchBy": "Keresés", + "textSearchIn": "Keresés ebben:", + "textSettings": "Beállítások", + "textSheet": "Munkalap", + "textShowNotification": "Értesítés megjelenítése", + "textSpreadsheetFormats": "Munkafüzet formátumok", + "textSpreadsheetInfo": "Munkafüzet infó", + "textSpreadsheetSettings": "Munkafüzet beállításai", + "textSpreadsheetTitle": "Munkafüzet cím", + "textSubject": "Tárgy", + "textTel": "Tel.", + "textTitle": "Cím", + "textTop": "Felső", + "textUnitOfMeasurement": "Mértékegység", + "textUploaded": "Feltöltve", + "textValues": "Értékek", + "textVersion": "Verzió", + "textWorkbook": "Munkafüzet", + "txtColon": "Kettőspont", + "txtComma": "Vessző", + "txtDelimiter": "Elválasztó", + "txtDownloadCsv": "CSV leöltése", + "txtEncoding": "Kódolás", + "txtIncorrectPwd": "Érvénytelen jelszó", + "txtOk": "OK", + "txtProtected": "Miután megadta a jelszót és megnyitotta a fájlt, annak jelenlegi jelszava visszaállítódik.", "txtScheme1": "Office", - "txtScheme10": "Median", + "txtScheme10": "Medián", "txtScheme11": "Metro", - "txtScheme12": "Module", - "txtScheme13": "Opulent", - "txtScheme14": "Oriel", - "txtScheme15": "Origin", - "txtScheme16": "Paper", - "txtScheme17": "Solstice", + "txtScheme12": "Modul", + "txtScheme13": "Bőséges", + "txtScheme14": "Ablakfülke", + "txtScheme15": "Eredet", + "txtScheme16": "Papír", + "txtScheme17": "Napforduló", "txtScheme18": "Technic", - "txtScheme19": "Trek", - "txtScheme2": "Grayscale", - "txtScheme20": "Urban", - "txtScheme21": "Verve", - "txtScheme22": "New Office", - "txtScheme3": "Apex", - "txtScheme4": "Aspect", - "txtScheme5": "Civic", - "txtScheme6": "Concourse", - "txtScheme7": "Equity", - "txtScheme8": "Flow", - "txtScheme9": "Foundry", - "txtSpace": "Space", - "txtTab": "Tab", - "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", - "textOk": "Ok", - "textChooseCsvOptions": "Choose CSV Options", - "textChooseDelimeter": "Choose Delimeter", - "textChooseEncoding": "Choose Encoding", - "textDelimeter": "Delimiter", - "textEncoding": "Encoding", - "txtColon": "Colon", - "txtComma": "Comma", - "txtDownloadCsv": "Download CSV", - "txtOk": "Ok", - "txtSemicolon": "Semicolon", - "textExample": "Example", + "txtScheme19": "Vándorlás", + "txtScheme2": "Szürkeárnyalatos", + "txtScheme20": "Városi", + "txtScheme21": "Lelkesedés", + "txtScheme22": "Új Office", + "txtScheme3": "Csúcs", + "txtScheme4": "Nézőpont", + "txtScheme5": "Polgári", + "txtScheme6": "Előcsarnok", + "txtScheme7": "Saját tőke", + "txtScheme8": "Folyam", + "txtScheme9": "Öntöde", + "txtSemicolon": "Pontosvessző", + "txtSpace": "Szóköz", + "txtTab": "Lap", + "warnDownloadAs": "Ha ebbe a formátumba ment, a nyers szövegen kívül minden elveszik.
Biztos benne, hogy folytatni akarja?", "textDarkTheme": "Dark Theme" } } diff --git a/apps/spreadsheeteditor/mobile/locale/it.json b/apps/spreadsheeteditor/mobile/locale/it.json index b976fafe7..3ad8e0585 100644 --- a/apps/spreadsheeteditor/mobile/locale/it.json +++ b/apps/spreadsheeteditor/mobile/locale/it.json @@ -156,10 +156,10 @@ "warnNoLicenseUsers": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", "warnProcessRightsChange": "Non hai il permesso di modificare il file.", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", + "textNoTextFound": "Text not found", "textOk": "Ok", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { diff --git a/apps/spreadsheeteditor/mobile/locale/ja.json b/apps/spreadsheeteditor/mobile/locale/ja.json index 0bf38ffdb..eee566cdf 100644 --- a/apps/spreadsheeteditor/mobile/locale/ja.json +++ b/apps/spreadsheeteditor/mobile/locale/ja.json @@ -156,10 +156,10 @@ "warnNoLicenseUsers": "%1エディターのユーザー制限に達しました。 個人的なアップグレード条件については、%1営業チームを連絡してください。", "warnProcessRightsChange": "ファイルを編集する権限がありません!", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", + "textNoTextFound": "Text not found", "textOk": "Ok", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { @@ -268,13 +268,13 @@ "textLoadingDocument": "ドキュメントを読み込んでいます", "textNo": "いいえ", "textOk": "OK", + "textUnlockRange": "範囲を解除", "textUnlockRangeWarning": "変更しようとしている範囲がパスワードで保護されています。", "textYes": "Yes", "txtEditingMode": "編集モードを設定する", "uploadImageTextText": "イメージのアップロード中...", "uploadImageTitleText": "イメージのアップロード中", - "waitText": "少々お待ちください...", - "textUnlockRange": "Unlock Range" + "waitText": "少々お待ちください..." }, "Statusbar": { "notcriticalErrorTitle": " 警告", diff --git a/apps/spreadsheeteditor/mobile/locale/ko.json b/apps/spreadsheeteditor/mobile/locale/ko.json index a36d863d0..9e8913936 100644 --- a/apps/spreadsheeteditor/mobile/locale/ko.json +++ b/apps/spreadsheeteditor/mobile/locale/ko.json @@ -156,10 +156,10 @@ "warnNoLicenseUsers": "ONLYOFFICE 편집자의이 버전은 동시 사용자에게 일정한 제한이 있습니다.
더 필요한 것이 있으면 현재 라이센스를 업그레이드하거나 상용 라이센스를 구입하십시오.", "warnProcessRightsChange": "파일을 수정할 수 있는 권한이 없습니다.", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", + "textNoTextFound": "Text not found", "textOk": "Ok", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { diff --git a/apps/spreadsheeteditor/mobile/locale/nl.json b/apps/spreadsheeteditor/mobile/locale/nl.json index fc8bc2aa6..d52a6cd89 100644 --- a/apps/spreadsheeteditor/mobile/locale/nl.json +++ b/apps/spreadsheeteditor/mobile/locale/nl.json @@ -156,10 +156,10 @@ "warnNoLicenseUsers": "U heeft de gebruikerslimiet voor %1 gelijktijdige gebruikers bereikt. Neem contact op met de verkoopafdeling voor persoonlijke upgradevoorwaarden.", "warnProcessRightsChange": "Je hebt geen toestemming om het bestand te bewerken.", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", + "textNoTextFound": "Text not found", "textOk": "Ok", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { diff --git a/apps/spreadsheeteditor/mobile/locale/pt.json b/apps/spreadsheeteditor/mobile/locale/pt.json index 6226f4181..247ad119f 100644 --- a/apps/spreadsheeteditor/mobile/locale/pt.json +++ b/apps/spreadsheeteditor/mobile/locale/pt.json @@ -142,9 +142,14 @@ "textGuest": "Convidado(a)", "textHasMacros": "O arquivo contém macros automáticas.
Você quer executar macros?", "textNo": "Não", + "textNoChoices": "Não há escolhas para preenchimento de célula.
Apenas valores de texto da coluna podem ser selecionados para substituição.", "textNoLicenseTitle": "Limite de licença atingido", + "textNoTextFound": "Texto não encontrado", + "textOk": "OK", "textPaidFeature": "Recurso pago", "textRemember": "Lembrar minha escolha", + "textReplaceSkipped": "A substituição foi realizada. {0} ocorrências foram ignoradas.", + "textReplaceSuccess": "A pesquisa foi realizada. Ocorrências substituídas: {0}", "textYes": "Sim", "titleServerVersion": "Editor atualizado", "titleUpdateVersion": "Versão alterada", @@ -154,12 +159,7 @@ "warnLicenseUsersExceeded": "Você atingiu o limite de usuários para editores %1. Entre em contato com seu administrador para saber mais.", "warnNoLicense": "Você atingiu o limite de conexões simultâneas para% 1 editores. Este documento será aberto apenas para visualização. Contate a equipe de vendas% 1 para termos de atualização pessoal.", "warnNoLicenseUsers": "Você atingiu o limite de usuários para editores %1.
Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", - "warnProcessRightsChange": "Você não tem permissão para editar o arquivo.", - "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", - "textOk": "Ok", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "warnProcessRightsChange": "Você não tem permissão para editar o arquivo." } }, "Error": { @@ -174,6 +174,7 @@ "errorAutoFilterDataRange": "A operação não poderia ser feita para o intervalo de células selecionado.
Selecionar um intervalo de dados uniforme dentro ou fora da tabela e tentar novamente.", "errorAutoFilterHiddenRange": "A operação não pode ser realizada porque a área contém células filtradas.
Por favor, desamarre os elementos filtrados e tente novamente.", "errorBadImageUrl": "URL de imagem está incorreta", + "errorCannotUseCommandProtectedSheet": "Você não pode usar este comando em uma planilha protegida. Para usar este comando, desproteja a planilha.
Você pode ser solicitado a inserir uma senha.", "errorChangeArray": "Você não pode mudar parte de uma matriz.", "errorChangeOnProtectedSheet": "A célula ou gráfico que você está tentando alterar está em uma folha protegida. Para fazer uma alteração, desproteja a folha. Você pode ser solicitado a inserir a senha.", "errorConnectToServer": "Não é possível salvar este documento. Verifique as configurações de conexão ou entre em contato com o administrador.
Ao clicar no botão 'OK', você será solicitado a baixar o documento.", @@ -232,8 +233,7 @@ "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.", - "errorCannotUseCommandProtectedSheet": "You cannot use this command on a protected sheet. To use this command, unprotect the sheet.
You might be requested to enter a password." + "uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB." }, "LongActions": { "advDRMPassword": "Senha", @@ -288,16 +288,16 @@ "textErrorRemoveSheet": "Não é possível excluir a folha de trabalho.", "textHide": "Ocultar", "textMore": "Mais", + "textMove": "Mover", + "textMoveBack": "Voltar", + "textMoveForward": "Mover para frente", "textOk": "OK", "textRename": "Renomear", "textRenameSheet": "Renomear Folha", "textSheet": "Folha", "textSheetName": "Nome da folha", "textUnhide": "Reexibir", - "textWarnDeleteSheet": "A folha de trabalho talvez tenha dados. Proceder à operação?", - "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "textWarnDeleteSheet": "A folha de trabalho talvez tenha dados. Proceder à operação?" }, "Toolbar": { "dlgLeaveMsgText": "Você tem alterações não salvas neste documento. Clique em 'Permanecer nesta página' para aguardar o salvamento automático. Clique em 'Sair desta página' para descartar todas as alterações não salvas.", @@ -340,6 +340,7 @@ "textLink": "Link", "textLinkSettings": "Configurações de link", "textLinkType": "Tipo de link", + "textOk": "OK", "textOther": "Outro", "textPictureFromLibrary": "Imagem da biblioteca", "textPictureFromURL": "Imagem da URL", @@ -357,8 +358,7 @@ "txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"", "txtSorting": "Classificação", "txtSortSelected": "Classificar selecionado", - "txtYes": "Sim", - "textOk": "Ok" + "txtYes": "Sim" }, "Edit": { "notcriticalErrorTitle": "Aviso", @@ -377,6 +377,7 @@ "textAngleClockwise": "Ângulo no sentido horário", "textAngleCounterclockwise": "Ângulo no sentido antihorário", "textAuto": "Automático", + "textAutomatic": "Automático", "textAxisCrosses": "Eixos cruzam", "textAxisOptions": "Opções de eixo", "textAxisPosition": "Posição de eixo", @@ -477,6 +478,7 @@ "textNoOverlay": "Sem sobreposição", "textNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"", "textNumber": "Número", + "textOk": "OK", "textOnTickMarks": "Nas marcas de escala", "textOpacity": "Opacidade", "textOut": "Fora", @@ -538,9 +540,7 @@ "textYen": "Iene", "txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"", "txtSortHigh2Low": "Classificar do maior para o menor", - "txtSortLow2High": "Classificar do menor para o maior", - "textAutomatic": "Automatic", - "textOk": "Ok" + "txtSortLow2High": "Classificar do menor para o maior" }, "Settings": { "advCSVOptions": "Escolher opções CSV", @@ -570,6 +570,7 @@ "textComments": "Comentários", "textCreated": "Criado", "textCustomSize": "Tamanho personalizado", + "textDarkTheme": "Tema Escuro", "textDelimeter": "Delimitador", "textDisableAll": "Desabilitar tudo", "textDisableAllMacrosWithNotification": "Desativar todas as macros com uma notificação", @@ -670,8 +671,7 @@ "txtSemicolon": "Ponto e vírgula ", "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?", - "textDarkTheme": "Dark Theme" + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/ro.json b/apps/spreadsheeteditor/mobile/locale/ro.json index 4d8d686c0..2df8a05eb 100644 --- a/apps/spreadsheeteditor/mobile/locale/ro.json +++ b/apps/spreadsheeteditor/mobile/locale/ro.json @@ -156,10 +156,10 @@ "warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori ai %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.", "warnProcessRightsChange": "Nu aveți permisiunea de editare pentru fișier.", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", + "textNoTextFound": "Text not found", "textOk": "Ok", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { diff --git a/apps/spreadsheeteditor/mobile/locale/ru.json b/apps/spreadsheeteditor/mobile/locale/ru.json index 1761a4970..c85bea8c7 100644 --- a/apps/spreadsheeteditor/mobile/locale/ru.json +++ b/apps/spreadsheeteditor/mobile/locale/ru.json @@ -142,9 +142,13 @@ "textGuest": "Гость", "textHasMacros": "Файл содержит автозапускаемые макросы.
Хотите запустить макросы?", "textNo": "Нет", + "textNoChoices": "Нет вариантов для заполнения ячейки.
Для замены можно выбрать только текстовые значения из столбца.", "textNoLicenseTitle": "Лицензионное ограничение", + "textNoTextFound": "Текст не найден", "textPaidFeature": "Платная функция", "textRemember": "Запомнить мой выбор", + "textReplaceSkipped": "Замена выполнена. Пропущено вхождений - {0}.", + "textReplaceSuccess": "Поиск выполнен. Заменено вхождений: {0}", "textYes": "Да", "titleServerVersion": "Редактор обновлен", "titleUpdateVersion": "Версия изменилась", @@ -155,11 +159,7 @@ "warnNoLicense": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт на просмотр. Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия обновления.", "warnNoLicenseUsers": "Вы достигли лимита на количество пользователей редакторов %1. Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия обновления.", "warnProcessRightsChange": "У вас нет прав на редактирование этого файла.", - "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", - "textOk": "Ok", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textOk": "Ok" } }, "Error": { @@ -570,6 +570,7 @@ "textComments": "Комментарии", "textCreated": "Создана", "textCustomSize": "Особый размер", + "textDarkTheme": "Темная тема", "textDelimeter": "Разделитель", "textDisableAll": "Отключить все", "textDisableAllMacrosWithNotification": "Отключить все макросы с уведомлением", @@ -670,8 +671,7 @@ "txtSemicolon": "Точка с запятой", "txtSpace": "Пробел", "txtTab": "Табуляция", - "warnDownloadAs": "Если вы продолжите сохранение в этот формат, весь функционал, кроме текста, будет потерян.
Вы действительно хотите продолжить?", - "textDarkTheme": "Dark Theme" + "warnDownloadAs": "Если вы продолжите сохранение в этот формат, весь функционал, кроме текста, будет потерян.
Вы действительно хотите продолжить?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/tr.json b/apps/spreadsheeteditor/mobile/locale/tr.json index 4978af5da..ce03ac93b 100644 --- a/apps/spreadsheeteditor/mobile/locale/tr.json +++ b/apps/spreadsheeteditor/mobile/locale/tr.json @@ -142,9 +142,14 @@ "textGuest": "Misafir", "textHasMacros": "Dosya otomatik makrolar içeriyor.
Makroları çalıştırmak istiyor musunuz?", "textNo": "Hayır", + "textNoChoices": "Hücreyi doldurmak için seçenek bulunmuyor.
Yalnızca sütundaki metin değerleri ile değiştirilebilir.", "textNoLicenseTitle": "Lisans limitine ulaşıldı.", + "textNoTextFound": "Metin bulunamadı", + "textOk": "Tamam", "textPaidFeature": "Ücretli Özellik", "textRemember": "Seçimimi hatırla", + "textReplaceSkipped": "Değiştirme yapıldı. {0} olay atlandı.", + "textReplaceSuccess": "Arama yapıldı. {0} olay değiştirildi.", "textYes": "Evet", "titleServerVersion": "Editör güncellendi", "titleUpdateVersion": "Sürüm değiştirildi", @@ -154,12 +159,7 @@ "warnLicenseUsersExceeded": "%1 düzenleyici için kullanıcı sınırına ulaştınız. Daha fazla bilgi edinmek için yöneticinizle iletişime geçin.", "warnNoLicense": "%1 düzenleyiciye eşzamanlı bağlantı sınırına ulaştınız. Bu belge yalnızca görüntüleme için açılacaktır. Kişisel yükseltme koşulları için %1 satış ekibiyle iletişime geçin.", "warnNoLicenseUsers": "%1 düzenleyici için kullanıcı sınırına ulaştınız. Kişisel yükseltme koşulları için %1 satış ekibiyle iletişime geçin.", - "warnProcessRightsChange": "Dosyayı düzenleme izniniz yok.", - "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", - "textOk": "Tamam", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "warnProcessRightsChange": "Dosyayı düzenleme izniniz yok." } }, "Error": { @@ -288,16 +288,16 @@ "textErrorRemoveSheet": "Çalışma sayfası silinemiyor.", "textHide": "Gizle", "textMore": "Daha fazla", + "textMove": "Taşı", + "textMoveBack": "Geriye taşı", + "textMoveForward": "İleri Taşı", "textOk": "Tamam", "textRename": "Yeniden adlandır", "textRenameSheet": "Sayfayı Yeniden Adlandır", "textSheet": "Sayfa", "textSheetName": "Sayfa ismi", "textUnhide": "Gizlemeyi kaldır", - "textWarnDeleteSheet": "Çalışma sayfasında veri olabilir. İşleme devam edilsin mi?", - "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "textWarnDeleteSheet": "Çalışma sayfasında veri olabilir. İşleme devam edilsin mi?" }, "Toolbar": { "dlgLeaveMsgText": "Bu belgede kaydedilmemiş değişiklikleriniz var. Otomatik kaydetmeyi beklemek için 'Bu Sayfada Kal' seçeneğini tıklayın. Kaydedilmemiş tüm değişiklikleri atmak için 'Bu Sayfadan Ayrıl'ı tıklayın.", @@ -340,6 +340,7 @@ "textLink": "Bağlantı", "textLinkSettings": "Bağlantı Ayarları", "textLinkType": "Bağlantı tipi", + "textOk": "Tamam", "textOther": "Diğer", "textPictureFromLibrary": "Kütüphaneden Resim", "textPictureFromURL": "URL'den resim", @@ -357,8 +358,7 @@ "txtNotUrl": "Bu alan, \"http://www.example.com\" biçiminde bir URL olmalıdır.", "txtSorting": "Sıralama", "txtSortSelected": "Seçili olanları sırala", - "txtYes": "Evet", - "textOk": "Tamam" + "txtYes": "Evet" }, "Edit": { "notcriticalErrorTitle": "Uyarı", @@ -377,6 +377,7 @@ "textAngleClockwise": "Saat yönünde açı", "textAngleCounterclockwise": "Saat yönü tersi açı", "textAuto": "Otomatik", + "textAutomatic": "Otomatik", "textAxisCrosses": "Eksen kesişmeleri", "textAxisOptions": "Eksen Seçenekleri", "textAxisPosition": "Eksen Pozisyonu", @@ -477,6 +478,7 @@ "textNoOverlay": "Bindirme yok", "textNotUrl": "Bu alan, \"http://www.example.com\" biçiminde bir URL olmalıdır.", "textNumber": "Sayı", + "textOk": "Tamam", "textOnTickMarks": "Onay İşaretlerinde", "textOpacity": "Opaklık", "textOut": "Dışarı", @@ -538,9 +540,7 @@ "textYen": "Yen", "txtNotUrl": "Bu alan, \"http://www.example.com\" biçiminde bir URL olmalıdır.", "txtSortHigh2Low": "Büyükten Küçüğe Sırala", - "txtSortLow2High": "Küçükten Büyüğe Sırala", - "textAutomatic": "Automatic", - "textOk": "Tamam" + "txtSortLow2High": "Küçükten Büyüğe Sırala" }, "Settings": { "advCSVOptions": "CSV Seçenekleri Belirle", @@ -570,6 +570,7 @@ "textComments": "Yorumlar", "textCreated": "Olusturuldu", "textCustomSize": "Özel Boyut", + "textDarkTheme": "Koyu Tema", "textDelimeter": "Sınırlayıcı", "textDisableAll": "Tümünü Devre Dışı Bırak", "textDisableAllMacrosWithNotification": "Bütün macroları uyarı vererek devre dışı bırak", @@ -670,8 +671,7 @@ "txtSemicolon": "Noktalı virgül", "txtSpace": "Boşluk", "txtTab": "Sekme", - "warnDownloadAs": "Bu formatta kaydetmeye devam ederseniz, metin dışındaki tüm özellikler kaybolacak.
Devam etmek istediğinize emin misiniz?", - "textDarkTheme": "Dark Theme" + "warnDownloadAs": "Bu formatta kaydetmeye devam ederseniz, metin dışındaki tüm özellikler kaybolacak.
Devam etmek istediğinize emin misiniz?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/zh.json b/apps/spreadsheeteditor/mobile/locale/zh.json index c34603187..f4804b38c 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh.json +++ b/apps/spreadsheeteditor/mobile/locale/zh.json @@ -156,10 +156,10 @@ "warnNoLicenseUsers": "你触发了 %1 编辑器的同时在线数限制。请与 %1 的销售团队联系,以获取个人升级条款。", "warnProcessRightsChange": "你没有编辑文件的权限。", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", + "textNoTextFound": "Text not found", "textOk": "Ok", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } }, "Error": { From c767b218ef7efe7e6cc1f5680f14dbea99f4d04f Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Fri, 14 Jan 2022 16:22:06 +0400 Subject: [PATCH 014/217] [DE PE SSE mobile] Correct formats icons --- apps/common/mobile/resources/less/icons.less | 13 ++++ apps/documenteditor/mobile/src/less/app.less | 1 + .../mobile/src/less/icons-common.less | 57 +++++++++++++++ .../mobile/src/less/icons-ios.less | 72 +------------------ .../mobile/src/less/icons-material.less | 70 +----------------- .../mobile/src/less/app.less | 1 + .../mobile/src/less/icons-common.less | 25 +++++++ .../mobile/src/less/icons-ios.less | 39 +--------- .../mobile/src/less/icons-material.less | 39 +--------- .../mobile/src/less/icons-common.less | 17 ----- 10 files changed, 102 insertions(+), 232 deletions(-) create mode 100644 apps/documenteditor/mobile/src/less/icons-common.less create mode 100644 apps/presentationeditor/mobile/src/less/icons-common.less diff --git a/apps/common/mobile/resources/less/icons.less b/apps/common/mobile/resources/less/icons.less index ac7a718c2..076f36865 100644 --- a/apps/common/mobile/resources/less/icons.less +++ b/apps/common/mobile/resources/less/icons.less @@ -30,4 +30,17 @@ i.icon { height: 24px; .encoded-svg-background(''); } + + // Formats + + &.icon-format-pdf { + width: 22px; + height: 22px; + .encoded-svg-background(''); + } + &.icon-format-pdfa { + width: 22px; + height: 22px; + .encoded-svg-background(''); + } } diff --git a/apps/documenteditor/mobile/src/less/app.less b/apps/documenteditor/mobile/src/less/app.less index a4c192194..82a687446 100644 --- a/apps/documenteditor/mobile/src/less/app.less +++ b/apps/documenteditor/mobile/src/less/app.less @@ -37,6 +37,7 @@ @import './app-ios.less'; @import './icons-ios.less'; @import './icons-material.less'; +@import './icons-common.less'; :root { --f7-popover-width: 360px; diff --git a/apps/documenteditor/mobile/src/less/icons-common.less b/apps/documenteditor/mobile/src/less/icons-common.less new file mode 100644 index 000000000..6d834af08 --- /dev/null +++ b/apps/documenteditor/mobile/src/less/icons-common.less @@ -0,0 +1,57 @@ +// Formats + +i.icon { + &.icon-format-docx { + width: 22px; + height: 22px; + .encoded-svg-background(''); + } + + &.icon-format-docxf { + width: 22px; + height: 22px; + .encoded-svg-background(''); + } + + &.icon-format-oform { + width: 22px; + height: 22px; + .encoded-svg-background(''); + } + + &.icon-format-txt { + width: 22px; + height: 22px; + .encoded-svg-background(''); + } + + &.icon-format-rtf { + width: 22px; + height: 22px; + .encoded-svg-background(''); + } + + &.icon-format-odt { + width: 22px; + height: 22px; + .encoded-svg-background(''); + } + + &.icon-format-html { + width: 22px; + height: 22px; + .encoded-svg-background(''); + } + + &.icon-format-dotx { + width: 22px; + height: 22px; + .encoded-svg-background(''); + } + + &.icon-format-ott { + width: 22px; + height: 22px; + .encoded-svg-background(''); + } +} \ No newline at end of file diff --git a/apps/documenteditor/mobile/src/less/icons-ios.less b/apps/documenteditor/mobile/src/less/icons-ios.less index fedae260a..006bd1d93 100644 --- a/apps/documenteditor/mobile/src/less/icons-ios.less +++ b/apps/documenteditor/mobile/src/less/icons-ios.less @@ -82,76 +82,8 @@ .encoded-svg-mask(''); } - // Download - - &.icon-format-docx { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - &.icon-format-pdf { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - &.icon-format-pdfa { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - &.icon-format-docxf { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - &.icon-format-oform { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - &.icon-format-txt { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - &.icon-format-rtf { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - &.icon-format-odt { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - &.icon-format-html { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - &.icon-format-dotx { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - &.icon-format-ott { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - - //Edit + // Edit + &.icon-text-additional { width: 22px; height: 22px; diff --git a/apps/documenteditor/mobile/src/less/icons-material.less b/apps/documenteditor/mobile/src/less/icons-material.less index 1a4eddbe1..2eb429078 100644 --- a/apps/documenteditor/mobile/src/less/icons-material.less +++ b/apps/documenteditor/mobile/src/less/icons-material.less @@ -137,75 +137,7 @@ .encoded-svg-mask(''); } - // Download - - &.icon-format-docx { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - &.icon-format-pdf { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - &.icon-format-pdfa { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - &.icon-format-docxf { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - &.icon-format-oform { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - &.icon-format-txt { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - &.icon-format-rtf { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - &.icon-format-odt { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - &.icon-format-html { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - &.icon-format-dotx { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - &.icon-format-ott { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - //Edit + // Edit &.icon-text-align-left { width: 22px; diff --git a/apps/presentationeditor/mobile/src/less/app.less b/apps/presentationeditor/mobile/src/less/app.less index 37ace4a3c..960129624 100644 --- a/apps/presentationeditor/mobile/src/less/app.less +++ b/apps/presentationeditor/mobile/src/less/app.less @@ -36,6 +36,7 @@ @import './app-ios.less'; @import './icons-ios.less'; @import './icons-material.less'; +@import './icons-common.less'; :root { --f7-popover-width: 360px; diff --git a/apps/presentationeditor/mobile/src/less/icons-common.less b/apps/presentationeditor/mobile/src/less/icons-common.less new file mode 100644 index 000000000..65985f829 --- /dev/null +++ b/apps/presentationeditor/mobile/src/less/icons-common.less @@ -0,0 +1,25 @@ +i.icon { + &.icon-format-pptx { + width: 22px; + height: 22px; + .encoded-svg-background(''); + } + + &.icon-format-potx { + width: 22px; + height: 22px; + .encoded-svg-background(''); + } + + &.icon-format-odp { + width: 22px; + height: 22px; + .encoded-svg-background(''); + } + + &.icon-format-otp { + width: 22px; + height: 22px; + .encoded-svg-background(''); + } +} \ No newline at end of file diff --git a/apps/presentationeditor/mobile/src/less/icons-ios.less b/apps/presentationeditor/mobile/src/less/icons-ios.less index 9cdc5b5bc..b367b1e41 100644 --- a/apps/presentationeditor/mobile/src/less/icons-ios.less +++ b/apps/presentationeditor/mobile/src/less/icons-ios.less @@ -407,45 +407,8 @@ .encoded-svg-mask(''); } - // Formats + // Collaboration - &.icon-format-pdf { - width: 22px; - height: 22px; - .encoded-svg-background('') - } - - &.icon-format-pdfa { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - &.icon-format-pptx { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - &.icon-format-potx { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - &.icon-format-odp { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - &.icon-format-otp { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - // Collaboration &.icon-users { width: 24px; height: 24px; diff --git a/apps/presentationeditor/mobile/src/less/icons-material.less b/apps/presentationeditor/mobile/src/less/icons-material.less index a28757a7a..f99c73331 100644 --- a/apps/presentationeditor/mobile/src/less/icons-material.less +++ b/apps/presentationeditor/mobile/src/less/icons-material.less @@ -377,45 +377,8 @@ .encoded-svg-mask(''); } - // Formats - - &.icon-format-pdf { - width: 22px; - height: 22px; - .encoded-svg-background('') - } - - &.icon-format-pdfa { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - &.icon-format-pptx { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - &.icon-format-potx { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - &.icon-format-odp { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - - &.icon-format-otp { - width: 22px; - height: 22px; - .encoded-svg-background(''); - } - // Collaboration + &.icon-users { width: 24px; height: 24px; diff --git a/apps/spreadsheeteditor/mobile/src/less/icons-common.less b/apps/spreadsheeteditor/mobile/src/less/icons-common.less index f91971a58..392f464ef 100644 --- a/apps/spreadsheeteditor/mobile/src/less/icons-common.less +++ b/apps/spreadsheeteditor/mobile/src/less/icons-common.less @@ -81,46 +81,29 @@ // Formats i.icon { - &.icon-format-pdf { - width: 22px; - height: 22px; - // .encoded-svg-mask(''); - .encoded-svg-background(''); - } - &.icon-format-pdfa { - width: 22px; - height: 22px; - // .encoded-svg-mask(''); - .encoded-svg-background(''); - } &.icon-format-xlsx { width: 22px; height: 22px; - // .encoded-svg-mask(''); .encoded-svg-background(''); } &.icon-format-xltx { width: 22px; height: 22px; - // .encoded-svg-mask(''); .encoded-svg-background(''); } &.icon-format-ods { width: 22px; height: 22px; - // .encoded-svg-mask(''); .encoded-svg-background(''); } &.icon-format-ots { width: 22px; height: 22px; - // .encoded-svg-mask(''); .encoded-svg-background(''); } &.icon-format-csv { width: 22px; height: 22px; - // .encoded-svg-mask(''); .encoded-svg-background(''); } } From e8963f24bac50f307e9a2285e70b097e2333acc5 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 14 Jan 2022 15:33:14 +0300 Subject: [PATCH 015/217] [DE mobile] Fix translation --- apps/documenteditor/mobile/locale/tr.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/documenteditor/mobile/locale/tr.json b/apps/documenteditor/mobile/locale/tr.json index 55d9348a3..c9f2ddbcf 100644 --- a/apps/documenteditor/mobile/locale/tr.json +++ b/apps/documenteditor/mobile/locale/tr.json @@ -323,7 +323,7 @@ "textMay": "May", "textMo": "Mo", "textNovember": "November", - "textOk": "Tamam" + "textOk": "Tamam", "textOctober": "October", "textSa": "Sa", "textSeptember": "September", From 4c47fcf862b9952d9b2c8df78a192667a8926434 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 14 Jan 2022 16:04:39 +0300 Subject: [PATCH 016/217] [DE forms] Fix Bug 54897 --- .../forms/app/controller/ApplicationController.js | 4 +++- apps/documenteditor/forms/locale/en.json | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/documenteditor/forms/app/controller/ApplicationController.js b/apps/documenteditor/forms/app/controller/ApplicationController.js index cf56628b1..5aed32a9c 100644 --- a/apps/documenteditor/forms/app/controller/ApplicationController.js +++ b/apps/documenteditor/forms/app/controller/ApplicationController.js @@ -1856,7 +1856,9 @@ define([ saveErrorTextDesktop: 'This file cannot be saved or created.
Possible reasons are:
1. The file is read-only.
2. The file is being edited by other users.
3. The disk is full or corrupted.', errorEditingSaveas: 'An error occurred during the work with the document.
Use the \'Save as...\' option to save the file backup copy to your computer hard drive.', textSaveAs: 'Save as PDF', - textSaveAsDesktop: 'Save as...' + textSaveAsDesktop: 'Save as...', + warnLicenseExp: 'Your license has expired.
Please update your license and refresh the page.', + titleLicenseExp: 'License expired' }, DE.Controllers.ApplicationController)); diff --git a/apps/documenteditor/forms/locale/en.json b/apps/documenteditor/forms/locale/en.json index 13e691b38..ceb6d9701 100644 --- a/apps/documenteditor/forms/locale/en.json +++ b/apps/documenteditor/forms/locale/en.json @@ -144,6 +144,8 @@ "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", "DE.Controllers.ApplicationController.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.ApplicationController.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "DE.Controllers.ApplicationController.titleLicenseExp": "License expired", + "DE.Controllers.ApplicationController.warnLicenseExp": "Your license has expired.
Please update your license and refresh the page.", "DE.Views.ApplicationView.textClear": "Clear All Fields", "DE.Views.ApplicationView.textCopy": "Copy", "DE.Views.ApplicationView.textCut": "Cut", From 44790a88589e4585040eba1adf97c5c33034f7e1 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Fri, 14 Jan 2022 19:54:07 +0300 Subject: [PATCH 017/217] [mobile] Fix bug 54873 --- apps/common/mobile/lib/controller/Plugins.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common/mobile/lib/controller/Plugins.jsx b/apps/common/mobile/lib/controller/Plugins.jsx index 8c7d5394f..dd0fff6eb 100644 --- a/apps/common/mobile/lib/controller/Plugins.jsx +++ b/apps/common/mobile/lib/controller/Plugins.jsx @@ -121,7 +121,7 @@ const PluginsController = inject('storeAppOptions')(observer(props => { }; const pluginClose = plugin => { - if (plugin) { + if (plugin && modal) { modal.close(); } }; From 283f1b435dd0b88004900f94cbd9324f97af2af7 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Fri, 14 Jan 2022 20:21:07 +0300 Subject: [PATCH 018/217] [DE] Add icons for select and hand tools --- .../resources/img/toolbar/1.25x/btn-hand-tool.png | Bin 0 -> 386 bytes .../img/toolbar/1.25x/btn-select-tool.png | Bin 0 -> 354 bytes .../resources/img/toolbar/1.5x/btn-hand-tool.png | Bin 0 -> 492 bytes .../img/toolbar/1.5x/btn-select-tool.png | Bin 0 -> 396 bytes .../resources/img/toolbar/1.75x/btn-hand-tool.png | Bin 0 -> 526 bytes .../img/toolbar/1.75x/btn-select-tool.png | Bin 0 -> 449 bytes .../resources/img/toolbar/1x/btn-hand-tool.png | Bin 0 -> 350 bytes .../resources/img/toolbar/1x/btn-select-tool.png | Bin 0 -> 298 bytes .../resources/img/toolbar/2x/btn-hand-tool.png | Bin 0 -> 677 bytes .../resources/img/toolbar/2x/btn-select-tool.png | Bin 0 -> 557 bytes 10 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 apps/documenteditor/main/resources/img/toolbar/1.25x/btn-hand-tool.png create mode 100644 apps/documenteditor/main/resources/img/toolbar/1.25x/btn-select-tool.png create mode 100644 apps/documenteditor/main/resources/img/toolbar/1.5x/btn-hand-tool.png create mode 100644 apps/documenteditor/main/resources/img/toolbar/1.5x/btn-select-tool.png create mode 100644 apps/documenteditor/main/resources/img/toolbar/1.75x/btn-hand-tool.png create mode 100644 apps/documenteditor/main/resources/img/toolbar/1.75x/btn-select-tool.png create mode 100644 apps/documenteditor/main/resources/img/toolbar/1x/btn-hand-tool.png create mode 100644 apps/documenteditor/main/resources/img/toolbar/1x/btn-select-tool.png create mode 100644 apps/documenteditor/main/resources/img/toolbar/2x/btn-hand-tool.png create mode 100644 apps/documenteditor/main/resources/img/toolbar/2x/btn-select-tool.png diff --git a/apps/documenteditor/main/resources/img/toolbar/1.25x/btn-hand-tool.png b/apps/documenteditor/main/resources/img/toolbar/1.25x/btn-hand-tool.png new file mode 100644 index 0000000000000000000000000000000000000000..ff0088d29ba750e978f522a4414de0ea30b197ba GIT binary patch literal 386 zcmV-|0e$|7P)X1^@s6b5wmq0003=NklJC)uB$|iHdJ^`tTRA~| zl|^Dc0B(teKv*Oe0b!GvN~}ddI3@PCAVw~y&Ru6$0t9k7b?!R5QXmTqJOIZ2$mpp# zAPYwB02sUA(NnWPdYux_bHYM%Kzf}L&vR^{Up!)@MYo;z$?(YZg^?DyJ0FnYkqa_8 zrxFTE?DM_NWkMgN^!Y--9~9{u;i()D0e?`WZ#16zG8G9hBG9v9DCCY^0*nastY#>1 zTo^YGOq&3jDzWVe2L1?wzJ=Mb^8!iEcU-sM9phLa?P;<6hwBCDToh%3f8N3vFG%O2 gC}aMqQKNAD0I4>l7ozXr1ONa407*qoM6N<$f~;$smjD0& literal 0 HcmV?d00001 diff --git a/apps/documenteditor/main/resources/img/toolbar/1.25x/btn-select-tool.png b/apps/documenteditor/main/resources/img/toolbar/1.25x/btn-select-tool.png new file mode 100644 index 0000000000000000000000000000000000000000..5b4605ba2061b897f04926b8e03ba008db8c1d8a GIT binary patch literal 354 zcmV-o0iFJdP)X1^@s6b5wmq0003gNklR)wohJs6&Ko1>-7pG4?}`y~?SeTW-WbWobc}^~ zV&vi;6_Z1}FmiLBhPi@xVB}$rg1LjRG4f@;81n>SV(cQVxgIfRTO_=-T5~<(8)I86 zh3J!C(VwMB1oC%e)!xi$5`lF_&h4X+DNAJ`f7ul>WvMJINIKept+i!atT+`w($NOp zS^%}|R20#h@syo~;#7d>&3LkBft5;kF-|6xfYd?(q`P=ar85;x1F2EYiY)#L1`yB{Py_YEO_S+m(&SiX`q|4Jle|!pCClTz zH~lDe)m2yh*BSv1U~$}}_I)1#4q(H$CE-A{L%4>71JMrQS`zljxQW_8($jHmwW*C$ z!qwDHY@8CVsy4N;KTx}-jr~t*x3F<5!k#n!1mU82K1;Ypp3f34nr8;#;(7L;us7Gz zCGGv^2@ik;(6=NEFFXJiK;M#ZhmB{!>n$N*-;A{+!>_a8y|fHySEO z<(OseMk9CbUzzrtr1?!=e&yH`JAC&4#*S@C13RPcSb(rb#b$=O#WoIfA#zj;nZHXc zE58>aZ+^GL`MYFA(i~VAX=>D{ z@ekokEV^x*F9oI&=p9U@&P9P z=rhBXGv=qIoynqJP!ihcvu zLf7tGRnNC^kOvd0ob|C35|!&v@gqN=!c#_Ykd?z;UXT3V52*0e7(@hc!L_qk6cwES qjanylDx4)$p3aug8Z~PCMtlG+;h4V{lF&;400001NF4FkN-|yM`fZ5BTtYp$h*7Yh zsYErom=a2{eQ@*C`akcPe~V$I#{^Mt|_uaYk_vqf6g9 z&M0m>jg8fIWT&yE+KylfEK%hG38A|XpQ(0%+(Vbb_{^CviE1q6?Zb(-43#hq@2__` zYO#g(%ROOij-@~?w#0r^OPviI)%8FdbFF)lIU5+%_1HJ&+L(cy1yqE0oGUDJKP~DWOtTUWC4t>h3ata9q0s#kp0axUAiB$0+ QMgRZ+07*qoM6N<$f?I^*hyVZp literal 0 HcmV?d00001 diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/btn-select-tool.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/btn-select-tool.png new file mode 100644 index 0000000000000000000000000000000000000000..b749b840c9990ed7cbbaa5c74dff5da2208818be GIT binary patch literal 449 zcmV;y0Y3hTP)jI6$A~I0!?ZE^wgwZi;ik zc)@|@+6~%4{}s+?qIZW z;9;IP&J!3-9C(o{it`jk3kP22i{ZS1(ZIPoOr{)eWlb0apyw%WWoekm&x#E|mRTE0ecrjq3_!KiA6SZCc~HZm9T66sBr= z)g<;l2CL#+g{d00nj~P_DU&-@gZm$0n154-fYweU{z$`QrU7$R6D1olH(dr*6Qvt* z9_+776W(b_z~sT0UYRD0J!lWgQCCf(=3A;hr1_rauWATnqwB0OoqAPM2<0aj1|bwe rF+IywH7Pg}Bba4!+xb=2gB5#WUPphE; zqj5vy%NY&E4U8-e3_NETnA(7(@O8ER6h-rExligYK3S?5`QUVQtn>A~U*}7CFz(&i z_gKQC@po_o&+?129T|ayLp#SSu3L{{b~M>NjQPGe+`8QE_+BxCtKEzJ8n?RCvPa02 zvTe|MrSRr#!=)8BMftz3Z74YE{8zYP+7^a$?hIxZiyxDvFQrt~;)1u*)| zoiIso!kc}81%1a8h2KHw$qbvSt!4ITI~O(aZ?3kso?)5p;aBz0Zi(oIm9tv>J|DMV zGBq*(oR84*^$f+&w!Ll=Jq)HV*;*(bv+KIgu&&}Y^QF0k%5}^;Udgj{?_f^5%(&^B n|1qU^4L4IBy!yU(>T3P_|4aKeMzj3_h8u&YtDnm{r-UW|*0Gm! literal 0 HcmV?d00001 diff --git a/apps/documenteditor/main/resources/img/toolbar/1x/btn-select-tool.png b/apps/documenteditor/main/resources/img/toolbar/1x/btn-select-tool.png new file mode 100644 index 0000000000000000000000000000000000000000..375cb606b3e03f2c9458c8756fe7bb458ae60e66 GIT binary patch literal 298 zcmV+_0oDGAP)1g7xw*X%=|6^}jcoH0$+Y`O=MpVR++z zAN*EF^#j6RE(Fg#>V9A~RMBQh``$$ZTpivI3dN-28SSEs%xG zH@$9T3uGYkL%$1o2lOJ_4HxumisOhEJlQs-2dJ#QS0O;&m9z?Qpo^Z z^t?%cN+pBhN=6Sb0w(4-wKsPHBVbaG6TP_yxSBdNQ>^tbz}3{Dnc}zh{&DN%Hms@l wE*hjxZo`^9cd&nKywnp@JurtS zHh>La9)Jp+`DXC1Y5?w=ROrk%AO2Mnz?-9Un#hAQJHUN|H%I3*F$d?X04}ge1<(wF zNC6lapUyb|F0fGr&D}2y;o`Sw;^{0XV`OLrem|1yI8#7xYYe6c`eM z3803JF6fzbDKIdv-~uR60~s6;O=RBFLtlvi1!^FJ1EPt{dwS@rV+e(Ok1Kk}xiWQO z8w<;mvxl53S5AYP2}cYLYe?DfS+a^L-$1Q_Yr`9qHJ7UI%o{$+Sum=a^^MGe4%4ae zgj^G2*_|DEX2|t~ToWfii5kktWC=YZK#3a4$Ycq9#~cckvP`rC!@W3EdfR!WORxj> z_0jS(k$$*vm#?S%OpG5QE10eVC{PKmflAcmK79p1fl6=Nkl$k#)t@TH&#SJ z>lhIQEsZG=5s(fM0a+0>AQhqpWJJsX(jevl*$_*B6o@52Cd4B^cf=z=7Q}aeu88jd z84zm#-4JU4y%B2xT@Y&lJrU0Unj@Y8^g=ufXo`3i&;#)kKr_To0Id<<0bVjEHqq)7 zr=pFyWKL|NdR$Wn0g~1b0FV$65;nMvczM2DOmg=giaFN4T55Omk@2S#cEV*W2 zO#rv+3FG@-X)=bnR}E_kC@}ILGNyZrnjbvgL;z+?_s4W^QS*b>o5+${7EEsA7%i(1 z@b=|-QQ!U9H~`kH3T0!+{a9(^kScr_0frn#Y2$z@d{_V;{Ya^O!RC7SGT`IjyS`9` z*jx{tbEFDqSi%7SgXhCR70$4P0{{kZz+PeDhBI3?)`cpJu+(wGnLQfoTr}Kd)y7mJ vYPiX=jj4$&+iOP{ShkeU*V59`@?Y`;y0FC276$F100000NkvXXu0mjfeZ%g$ literal 0 HcmV?d00001 From b2ea02033ae712b9f3ada7394d7397f1b30c2410 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Sat, 15 Jan 2022 00:25:21 +0300 Subject: [PATCH 019/217] [SSE] Fix autofilter dialog --- apps/spreadsheeteditor/main/app/view/AutoFilterDialog.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/spreadsheeteditor/main/app/view/AutoFilterDialog.js b/apps/spreadsheeteditor/main/app/view/AutoFilterDialog.js index 1e7a97bdd..3a4c39694 100644 --- a/apps/spreadsheeteditor/main/app/view/AutoFilterDialog.js +++ b/apps/spreadsheeteditor/main/app/view/AutoFilterDialog.js @@ -962,7 +962,7 @@ define([ _.extend(_options, { width : width || 450, - height : height || 265, + height : height || 277, contentWidth : (width - 50) || 400, header : false, cls : 'filter-dlg', @@ -973,7 +973,7 @@ define([ items : [], resizable : true, minwidth : 450, - minheight : 265 + minheight : 277 }, options); this.template = options.template || [ From 55cf98d14c2c6be7a75234af413cb2ce5f2caef2 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Sun, 16 Jan 2022 20:20:59 +0300 Subject: [PATCH 020/217] [SSE] for bug 54915 --- apps/spreadsheeteditor/mobile/locale/en.json | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json index 4c03004e6..405750adb 100644 --- a/apps/spreadsheeteditor/mobile/locale/en.json +++ b/apps/spreadsheeteditor/mobile/locale/en.json @@ -68,6 +68,7 @@ "Main": { "criticalErrorTitle": "Error", "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", "errorProcessSaveResult": "Saving 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.", From 245275c571377260ffe4fc72ff798e9d4436aa10 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 17 Jan 2022 12:01:35 +0300 Subject: [PATCH 021/217] [DE forms] Fix Bug 54910 --- .../forms/app/controller/ApplicationController.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/apps/documenteditor/forms/app/controller/ApplicationController.js b/apps/documenteditor/forms/app/controller/ApplicationController.js index 5aed32a9c..1e6a01a15 100644 --- a/apps/documenteditor/forms/app/controller/ApplicationController.js +++ b/apps/documenteditor/forms/app/controller/ApplicationController.js @@ -508,6 +508,7 @@ define([ this.api.asc_registerCallback('asc_onGetEditorPermissions', _.bind(this.onEditorPermissions, this)); this.api.asc_registerCallback('asc_onRunAutostartMacroses', _.bind(this.onRunAutostartMacroses, this)); + this.api.asc_registerCallback('asc_onLicenseChanged', _.bind(this.onLicenseChanged, this)); this.api.asc_setDocInfo(docInfo); this.api.asc_getEditorPermissions(this.editorConfig.licenseUrl, this.editorConfig.customerId); this.api.asc_enableKeyEvents(true); @@ -645,6 +646,17 @@ define([ }); }, + onLicenseChanged: function(params) { + var licType = params.asc_getLicenseType(); + if (licType !== undefined && this.appOptions.canFillForms && + (licType===Asc.c_oLicenseResult.Connections || licType===Asc.c_oLicenseResult.UsersCount || licType===Asc.c_oLicenseResult.ConnectionsOS || licType===Asc.c_oLicenseResult.UsersCountOS + || licType===Asc.c_oLicenseResult.SuccessLimit && (this.appOptions.trialMode & Asc.c_oLicenseMode.Limited) !== 0)) + this._state.licenseType = licType; + + if (this._isDocReady) + this.applyLicense(); + }, + applyLicense: function() { if (this._state.licenseType) { var license = this._state.licenseType, From 87415ea8020630f870f8d976b75aeacfcf49a793 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 17 Jan 2022 18:09:45 +0300 Subject: [PATCH 022/217] [DE forms] Disable edit buttons when no license (Bug 54910) --- .../app/controller/ApplicationController.js | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/apps/documenteditor/forms/app/controller/ApplicationController.js b/apps/documenteditor/forms/app/controller/ApplicationController.js index 1e6a01a15..793371f41 100644 --- a/apps/documenteditor/forms/app/controller/ApplicationController.js +++ b/apps/documenteditor/forms/app/controller/ApplicationController.js @@ -673,6 +673,10 @@ define([ primary = 'buynow'; } + if (this._state.licenseType!==Asc.c_oLicenseResult.SuccessLimit && this.appOptions.canFillForms) { + this.disableEditing(true); + } + var value = Common.localStorage.getItem("de-license-warning"); value = (value!==null) ? parseInt(value) : 0; var now = (new Date).getTime(); @@ -1001,6 +1005,8 @@ define([ }, onShowContentControlsActions: function(obj, x, y) { + if (this._isDisabled) return; + var me = this; switch (obj.type) { case Asc.c_oAscContentControlSpecificType.DateTime: @@ -1761,12 +1767,12 @@ define([ if (this.textMenu && !noobject) { var cancopy = this.api.can_CopyCut(), disabled = menu_props.paraProps && menu_props.paraProps.locked || menu_props.headerProps && menu_props.headerProps.locked || - menu_props.imgProps && (menu_props.imgProps.locked || menu_props.imgProps.content_locked); + menu_props.imgProps && (menu_props.imgProps.locked || menu_props.imgProps.content_locked) || this._isDisabled; this.textMenu.items[0].setDisabled(disabled || !this.api.asc_getCanUndo()); // undo this.textMenu.items[1].setDisabled(disabled || !this.api.asc_getCanRedo()); // redo - this.textMenu.items[3].setDisabled(!cancopy); // copy - this.textMenu.items[4].setDisabled(disabled || !cancopy); // cut + this.textMenu.items[3].setDisabled(disabled || !cancopy); // cut + this.textMenu.items[4].setDisabled(!cancopy); // copy this.textMenu.items[5].setDisabled(disabled) // paste; this.showPopupMenu(this.textMenu, {}, event); @@ -1800,6 +1806,11 @@ define([ } }, + disableEditing: function(state) { + this.view && this.view.btnClear && this.view.btnClear.setDisabled(state); + this._isDisabled = state; + }, + errorDefaultMessage : 'Error code: %1', unknownErrorText : 'Unknown error.', convertationTimeoutText : 'Conversion timeout exceeded.', From efa0ca0e65c2609e2dca30426af5cd686b55daba Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 17 Jan 2022 18:59:46 +0300 Subject: [PATCH 023/217] [DE][PE][SSE] Disable comment, fillForms when no license in the restricted editing mode --- apps/documenteditor/main/app/controller/Main.js | 4 ++-- apps/presentationeditor/main/app/controller/Main.js | 4 ++-- apps/spreadsheeteditor/main/app/controller/Main.js | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index 38b419858..cda8b75f0 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -1293,7 +1293,7 @@ define([ onLicenseChanged: function(params) { var licType = params.asc_getLicenseType(); - if (licType !== undefined && this.appOptions.canEdit && this.editorConfig.mode !== 'view' && + if (licType !== undefined && (this.appOptions.canEdit || this.appOptions.isRestrictedEdit) && this.editorConfig.mode !== 'view' && (licType===Asc.c_oLicenseResult.Connections || licType===Asc.c_oLicenseResult.UsersCount || licType===Asc.c_oLicenseResult.ConnectionsOS || licType===Asc.c_oLicenseResult.UsersCountOS || licType===Asc.c_oLicenseResult.SuccessLimit && (this.appOptions.trialMode & Asc.c_oLicenseMode.Limited) !== 0)) this._state.licenseType = licType; @@ -1319,7 +1319,7 @@ define([ primary = 'buynow'; } - if (this._state.licenseType!==Asc.c_oLicenseResult.SuccessLimit && this.appOptions.isEdit) { + if (this._state.licenseType!==Asc.c_oLicenseResult.SuccessLimit && (this.appOptions.isEdit || this.appOptions.isRestrictedEdit)) { this.disableEditing(true); Common.NotificationCenter.trigger('api:disconnect'); } diff --git a/apps/presentationeditor/main/app/controller/Main.js b/apps/presentationeditor/main/app/controller/Main.js index 72428694d..856092514 100644 --- a/apps/presentationeditor/main/app/controller/Main.js +++ b/apps/presentationeditor/main/app/controller/Main.js @@ -935,7 +935,7 @@ define([ onLicenseChanged: function(params) { var licType = params.asc_getLicenseType(); - if (licType !== undefined && this.appOptions.canEdit && this.editorConfig.mode !== 'view' && + if (licType !== undefined && (this.appOptions.canEdit || this.appOptions.isRestrictedEdit) && this.editorConfig.mode !== 'view' && (licType===Asc.c_oLicenseResult.Connections || licType===Asc.c_oLicenseResult.UsersCount || licType===Asc.c_oLicenseResult.ConnectionsOS || licType===Asc.c_oLicenseResult.UsersCountOS || licType===Asc.c_oLicenseResult.SuccessLimit && (this.appOptions.trialMode & Asc.c_oLicenseMode.Limited) !== 0)) this._state.licenseType = licType; @@ -961,7 +961,7 @@ define([ primary = 'buynow'; } - if (this._state.licenseType!==Asc.c_oLicenseResult.SuccessLimit && this.appOptions.isEdit) { + if (this._state.licenseType!==Asc.c_oLicenseResult.SuccessLimit && (this.appOptions.isEdit || this.appOptions.isRestrictedEdit)) { this.disableEditing(true); Common.NotificationCenter.trigger('api:disconnect'); } diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js index 15e20d05f..b32e41c92 100644 --- a/apps/spreadsheeteditor/main/app/controller/Main.js +++ b/apps/spreadsheeteditor/main/app/controller/Main.js @@ -1031,7 +1031,7 @@ define([ if (this.appOptions.isEditDiagram || this.appOptions.isEditMailMerge) return; var licType = params.asc_getLicenseType(); - if (licType !== undefined && this.appOptions.canEdit && this.editorConfig.mode !== 'view' && + if (licType !== undefined && (this.appOptions.canEdit || this.appOptions.isRestrictedEdit) && this.editorConfig.mode !== 'view' && (licType===Asc.c_oLicenseResult.Connections || licType===Asc.c_oLicenseResult.UsersCount || licType===Asc.c_oLicenseResult.ConnectionsOS || licType===Asc.c_oLicenseResult.UsersCountOS || licType===Asc.c_oLicenseResult.SuccessLimit && (this.appOptions.trialMode & Asc.c_oLicenseMode.Limited) !== 0)) this._state.licenseType = licType; @@ -1057,7 +1057,7 @@ define([ primary = 'buynow'; } - if (this._state.licenseType!==Asc.c_oLicenseResult.SuccessLimit && this.appOptions.isEdit) { + if (this._state.licenseType!==Asc.c_oLicenseResult.SuccessLimit && (this.appOptions.isEdit || this.appOptions.isRestrictedEdit)) { this.disableEditing(true); Common.NotificationCenter.trigger('api:disconnect'); } From 3a887a330e58e077d61bbb509aa0bc3f6ceaaadf Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 17 Jan 2022 19:03:25 +0300 Subject: [PATCH 024/217] [Mobile] Show warning and disable editing for fill forms and commenting when no license (Bug 54910) --- apps/documenteditor/mobile/src/controller/Main.jsx | 2 +- apps/presentationeditor/mobile/src/controller/Main.jsx | 2 +- apps/spreadsheeteditor/mobile/src/controller/Main.jsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/documenteditor/mobile/src/controller/Main.jsx b/apps/documenteditor/mobile/src/controller/Main.jsx index 16eb08511..bc60bc121 100644 --- a/apps/documenteditor/mobile/src/controller/Main.jsx +++ b/apps/documenteditor/mobile/src/controller/Main.jsx @@ -407,7 +407,7 @@ class MainController extends Component { onLicenseChanged (params) { const appOptions = this.props.storeAppOptions; const licType = params.asc_getLicenseType(); - if (licType !== undefined && appOptions.canEdit && appOptions.config.mode !== 'view' && + if (licType !== undefined && (appOptions.canEdit || appOptions.isRestrictedEdit) && appOptions.config.mode !== 'view' && (licType === Asc.c_oLicenseResult.Connections || licType === Asc.c_oLicenseResult.UsersCount || licType === Asc.c_oLicenseResult.ConnectionsOS || licType === Asc.c_oLicenseResult.UsersCountOS || licType === Asc.c_oLicenseResult.SuccessLimit && (appOptions.trialMode & Asc.c_oLicenseMode.Limited) !== 0)) this._state.licenseType = licType; diff --git a/apps/presentationeditor/mobile/src/controller/Main.jsx b/apps/presentationeditor/mobile/src/controller/Main.jsx index bf452d8e2..6d1ac5f12 100644 --- a/apps/presentationeditor/mobile/src/controller/Main.jsx +++ b/apps/presentationeditor/mobile/src/controller/Main.jsx @@ -489,7 +489,7 @@ class MainController extends Component { onLicenseChanged (params) { const appOptions = this.props.storeAppOptions; const licType = params.asc_getLicenseType(); - if (licType !== undefined && appOptions.canEdit && appOptions.config.mode !== 'view' && + if (licType !== undefined && (appOptions.canEdit || appOptions.isRestrictedEdit) && appOptions.config.mode !== 'view' && (licType === Asc.c_oLicenseResult.Connections || licType === Asc.c_oLicenseResult.UsersCount || licType === Asc.c_oLicenseResult.ConnectionsOS || licType === Asc.c_oLicenseResult.UsersCountOS || licType === Asc.c_oLicenseResult.SuccessLimit && (appOptions.trialMode & Asc.c_oLicenseMode.Limited) !== 0)) this._state.licenseType = licType; diff --git a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx index 8c99aa474..35d627034 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx @@ -606,7 +606,7 @@ class MainController extends Component { if (appOptions.isEditDiagram || appOptions.isEditMailMerge) return; const licType = params.asc_getLicenseType(); - if (licType !== undefined && appOptions.canEdit && appOptions.config.mode !== 'view' && + if (licType !== undefined && (appOptions.canEdit || appOptions.isRestrictedEdit) && appOptions.config.mode !== 'view' && (licType === Asc.c_oLicenseResult.Connections || licType === Asc.c_oLicenseResult.UsersCount || licType === Asc.c_oLicenseResult.ConnectionsOS || licType === Asc.c_oLicenseResult.UsersCountOS || licType === Asc.c_oLicenseResult.SuccessLimit && (appOptions.trialMode & Asc.c_oLicenseMode.Limited) !== 0)) this._state.licenseType = licType; From 49e7293e2b3e7c1390e2a7d1c18ede6c50888b96 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Mon, 17 Jan 2022 19:44:25 +0300 Subject: [PATCH 025/217] [DE PE SSE] Fix shape menu --- apps/documenteditor/main/app/controller/Toolbar.js | 2 +- apps/documenteditor/main/app/view/ImageSettings.js | 2 +- apps/documenteditor/main/app/view/ShapeSettings.js | 2 +- apps/presentationeditor/main/app/view/ImageSettings.js | 2 +- apps/presentationeditor/main/app/view/ShapeSettings.js | 2 +- apps/presentationeditor/main/app/view/Toolbar.js | 4 ++-- apps/spreadsheeteditor/main/app/controller/Toolbar.js | 2 +- apps/spreadsheeteditor/main/app/view/ImageSettings.js | 2 +- apps/spreadsheeteditor/main/app/view/ShapeSettings.js | 2 +- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/apps/documenteditor/main/app/controller/Toolbar.js b/apps/documenteditor/main/app/controller/Toolbar.js index 1f066fe0e..170f30824 100644 --- a/apps/documenteditor/main/app/controller/Toolbar.js +++ b/apps/documenteditor/main/app/controller/Toolbar.js @@ -2670,7 +2670,7 @@ define([ itemTemplate: _.template('
\">
'), groups: me.getApplication().getCollection('ShapeGroups'), parentMenu: me.toolbar.btnInsertShape.menu, - restoreHeight: 640, + restoreHeight: 652, textRecentlyUsed: me.textRecentlyUsed, recentShapes: recents ? JSON.parse(recents) : null }); diff --git a/apps/documenteditor/main/app/view/ImageSettings.js b/apps/documenteditor/main/app/view/ImageSettings.js index eb9123037..75bf8e06e 100644 --- a/apps/documenteditor/main/app/view/ImageSettings.js +++ b/apps/documenteditor/main/app/view/ImageSettings.js @@ -349,7 +349,7 @@ define([ itemTemplate: _.template('
\">
'), groups: me.application.getCollection('ShapeGroups'), parentMenu: me.btnChangeShape.menu, - restoreHeight: 640, + restoreHeight: 652, textRecentlyUsed: me.textRecentlyUsed, recentShapes: recents ? JSON.parse(recents) : null, isFromImage: true diff --git a/apps/documenteditor/main/app/view/ShapeSettings.js b/apps/documenteditor/main/app/view/ShapeSettings.js index 643dd0df4..b832fc750 100644 --- a/apps/documenteditor/main/app/view/ShapeSettings.js +++ b/apps/documenteditor/main/app/view/ShapeSettings.js @@ -1852,7 +1852,7 @@ define([ itemTemplate: _.template('
\">
'), groups: me.application.getCollection('ShapeGroups'), parentMenu: me.btnChangeShape.menu, - restoreHeight: 640, + restoreHeight: 652, textRecentlyUsed: me.textRecentlyUsed, recentShapes: recents ? JSON.parse(recents) : null, hideTextRect: me._state.isFromImage || me._state.isFromSmartArtInternal, diff --git a/apps/presentationeditor/main/app/view/ImageSettings.js b/apps/presentationeditor/main/app/view/ImageSettings.js index cad43e7c9..551e5b743 100644 --- a/apps/presentationeditor/main/app/view/ImageSettings.js +++ b/apps/presentationeditor/main/app/view/ImageSettings.js @@ -295,7 +295,7 @@ define([ itemTemplate: _.template('
\">
'), groups: me.application.getCollection('ShapeGroups'), parentMenu: me.btnChangeShape.menu, - restoreHeight: 640, + restoreHeight: 652, textRecentlyUsed: me.textRecentlyUsed, recentShapes: recents ? JSON.parse(recents) : null, isFromImage: true diff --git a/apps/presentationeditor/main/app/view/ShapeSettings.js b/apps/presentationeditor/main/app/view/ShapeSettings.js index 1686ac0f7..236a161b8 100644 --- a/apps/presentationeditor/main/app/view/ShapeSettings.js +++ b/apps/presentationeditor/main/app/view/ShapeSettings.js @@ -1697,7 +1697,7 @@ define([ itemTemplate: _.template('
\">
'), groups: me.application.getCollection('ShapeGroups'), parentMenu: me.btnChangeShape.menu, - restoreHeight: 640, + restoreHeight: 652, textRecentlyUsed: me.textRecentlyUsed, recentShapes: recents ? JSON.parse(recents) : null, hideTextRect: me._state.isFromImage || me._state.isFromSmartArtInternal, diff --git a/apps/presentationeditor/main/app/view/Toolbar.js b/apps/presentationeditor/main/app/view/Toolbar.js index 87c83bc21..20090695f 100644 --- a/apps/presentationeditor/main/app/view/Toolbar.js +++ b/apps/presentationeditor/main/app/view/Toolbar.js @@ -1075,7 +1075,7 @@ define([ style: 'min-width: 140px;', itemWidth: 20, itemHeight: 20, - menuMaxHeight: 640, + menuMaxHeight: 652, menuWidth: 362, enableKeyEvents: true, lock: [PE.enumLock.slideDeleted, PE.enumLock.lostConnect, PE.enumLock.noSlides, PE.enumLock.disableOnStart], @@ -1752,7 +1752,7 @@ define([ itemTemplate: _.template('
\">
'), groups: collection, parentMenu: menuShape, - restoreHeight: 640, + restoreHeight: 652, textRecentlyUsed: me.textRecentlyUsed, recentShapes: recents }); diff --git a/apps/spreadsheeteditor/main/app/controller/Toolbar.js b/apps/spreadsheeteditor/main/app/controller/Toolbar.js index 9881ce9fb..b85de925e 100644 --- a/apps/spreadsheeteditor/main/app/controller/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/controller/Toolbar.js @@ -3188,7 +3188,7 @@ define([ itemTemplate: _.template('
\">
'), groups: me.getApplication().getCollection('ShapeGroups'), parentMenu: me.toolbar.btnInsertShape.menu, - restoreHeight: 640, + restoreHeight: 652, textRecentlyUsed: me.textRecentlyUsed, recentShapes: recents ? JSON.parse(recents) : null }); diff --git a/apps/spreadsheeteditor/main/app/view/ImageSettings.js b/apps/spreadsheeteditor/main/app/view/ImageSettings.js index 5fdf7fb1b..bf2f3aa9a 100644 --- a/apps/spreadsheeteditor/main/app/view/ImageSettings.js +++ b/apps/spreadsheeteditor/main/app/view/ImageSettings.js @@ -385,7 +385,7 @@ define([ itemTemplate: _.template('
\">
'), groups: me.application.getCollection('ShapeGroups'), parentMenu: me.btnChangeShape.menu, - restoreHeight: 640, + restoreHeight: 652, textRecentlyUsed: me.textRecentlyUsed, recentShapes: recents ? JSON.parse(recents) : null, isFromImage: true diff --git a/apps/spreadsheeteditor/main/app/view/ShapeSettings.js b/apps/spreadsheeteditor/main/app/view/ShapeSettings.js index 87c9f1e7b..3cb0252cb 100644 --- a/apps/spreadsheeteditor/main/app/view/ShapeSettings.js +++ b/apps/spreadsheeteditor/main/app/view/ShapeSettings.js @@ -1705,7 +1705,7 @@ define([ itemTemplate: _.template('
\">
'), groups: me.application.getCollection('ShapeGroups'), parentMenu: me.btnChangeShape.menu, - restoreHeight: 640, + restoreHeight: 652, textRecentlyUsed: me.textRecentlyUsed, recentShapes: recents ? JSON.parse(recents) : null, hideTextRect: me._state.isFromImage || me._state.isFromSmartArtInternal, From cd39943c812e41112a8ca026c533be2b0356c584 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 17 Jan 2022 22:45:48 +0300 Subject: [PATCH 026/217] Fix Bug 54917 --- apps/documenteditor/main/app/controller/Main.js | 9 +++++++-- apps/presentationeditor/main/app/controller/Main.js | 9 +++++++-- apps/spreadsheeteditor/main/app/controller/Main.js | 9 +++++++-- 3 files changed, 21 insertions(+), 6 deletions(-) diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index cda8b75f0..1d2037829 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -2193,7 +2193,8 @@ define([ var me = this, shapegrouparray = [], - shapeStore = this.getCollection('ShapeGroups'); + shapeStore = this.getCollection('ShapeGroups'), + name_arr = {}; shapeStore.reset(); @@ -2208,12 +2209,15 @@ define([ width = 30 * cols; _.each(shapes[index], function(shape, idx){ + var name = me['txtShape_' + shape.Type]; arr.push({ data : {shapeType: shape.Type}, - tip : me['txtShape_' + shape.Type] || (me.textShape + ' ' + (idx+1)), + tip : name || (me.textShape + ' ' + (idx+1)), allowSelected : true, selected: false }); + if (name) + name_arr[shape.Type] = name; }); store.add(arr); shapegrouparray.push({ @@ -2228,6 +2232,7 @@ define([ setTimeout(function(){ me.getApplication().getController('Toolbar').onApiAutoShapes(); }, 50); + this.api.asc_setShapeNames(name_arr); }, fillTextArt: function(shapes){ diff --git a/apps/presentationeditor/main/app/controller/Main.js b/apps/presentationeditor/main/app/controller/Main.js index 856092514..672c06ff9 100644 --- a/apps/presentationeditor/main/app/controller/Main.js +++ b/apps/presentationeditor/main/app/controller/Main.js @@ -1905,7 +1905,8 @@ define([ return; var me = this, - shapegrouparray = []; + shapegrouparray = [], + name_arr = {}; _.each(groupNames, function(groupName, index){ var store = new Backbone.Collection([], { @@ -1918,12 +1919,15 @@ define([ width = 30 * cols; _.each(shapes[index], function(shape, idx){ + var name = me['txtShape_' + shape.Type]; arr.push({ data : {shapeType: shape.Type}, - tip : me['txtShape_' + shape.Type] || (me.textShape + ' ' + (idx+1)), + tip : name || (me.textShape + ' ' + (idx+1)), allowSelected : true, selected: false }); + if (name) + name_arr[shape.Type] = name; }); store.add(arr); shapegrouparray.push({ @@ -1935,6 +1939,7 @@ define([ }); this.getCollection('ShapeGroups').reset(shapegrouparray); + this.api.asc_setShapeNames(name_arr); }, fillLayoutsStore: function(layouts){ diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js index b32e41c92..1a13e7f58 100644 --- a/apps/spreadsheeteditor/main/app/controller/Main.js +++ b/apps/spreadsheeteditor/main/app/controller/Main.js @@ -2349,7 +2349,8 @@ define([ var me = this, shapegrouparray = [], - shapeStore = this.getCollection('ShapeGroups'); + shapeStore = this.getCollection('ShapeGroups'), + name_arr = {}; shapeStore.reset(); @@ -2364,12 +2365,15 @@ define([ width = 30 * cols; _.each(shapes[index], function(shape, idx){ + var name = me['txtShape_' + shape.Type]; arr.push({ data : {shapeType: shape.Type}, - tip : me['txtShape_' + shape.Type] || (me.textShape + ' ' + (idx+1)), + tip : name || (me.textShape + ' ' + (idx+1)), allowSelected : true, selected: false }); + if (name) + name_arr[shape.Type] = name; }); store.add(arr); shapegrouparray.push({ @@ -2385,6 +2389,7 @@ define([ setTimeout(function(){ me.getApplication().getController('Toolbar').onApiAutoShapes(); }, 50); + this.api.asc_setShapeNames(name_arr); }, fillTextArt: function(shapes){ From faa26495505488d60aa094902699dbd021af7a94 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Mon, 17 Jan 2022 23:18:20 +0300 Subject: [PATCH 027/217] [DE PE] fix bug 54867 --- apps/documenteditor/mobile/src/store/appOptions.js | 2 ++ apps/presentationeditor/mobile/src/page/main.jsx | 2 +- apps/presentationeditor/mobile/src/store/appOptions.js | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/documenteditor/mobile/src/store/appOptions.js b/apps/documenteditor/mobile/src/store/appOptions.js index 982cc421f..d4c8a86f2 100644 --- a/apps/documenteditor/mobile/src/store/appOptions.js +++ b/apps/documenteditor/mobile/src/store/appOptions.js @@ -20,6 +20,7 @@ export class storeAppOptions { changeReaderMode: action, canBrandingExt: observable, + canBranding: observable, isDocReady: observable, changeDocReady: action @@ -47,6 +48,7 @@ export class storeAppOptions { } canBrandingExt = false; + canBranding = false; isDocReady = false; changeDocReady (value) { diff --git a/apps/presentationeditor/mobile/src/page/main.jsx b/apps/presentationeditor/mobile/src/page/main.jsx index 9d497eead..4031267f9 100644 --- a/apps/presentationeditor/mobile/src/page/main.jsx +++ b/apps/presentationeditor/mobile/src/page/main.jsx @@ -110,7 +110,7 @@ class MainPage extends Component { {/* Top Navbar */} - {showLogo && appOptions.canBranding &&
} + {showLogo && appOptions.canBranding !== undefined &&
} diff --git a/apps/presentationeditor/mobile/src/store/appOptions.js b/apps/presentationeditor/mobile/src/store/appOptions.js index 4e0b91bcd..a84de7373 100644 --- a/apps/presentationeditor/mobile/src/store/appOptions.js +++ b/apps/presentationeditor/mobile/src/store/appOptions.js @@ -12,6 +12,7 @@ export class storeAppOptions { lostEditingRights: observable, changeEditingRights: action, canBrandingExt: observable, + canBranding: observable, isDocReady: observable, changeDocReady: action @@ -21,6 +22,7 @@ export class storeAppOptions { isEdit = false; canViewComments = false; canBrandingExt = false; + canBranding = false; config = {}; lostEditingRights = false; From 3884581d0af02a30f530ce5d9f05112856387b38 Mon Sep 17 00:00:00 2001 From: OVSharova Date: Tue, 18 Jan 2022 02:55:01 +0300 Subject: [PATCH 028/217] Update duration an repeat fields --- .../main/app/controller/Animation.js | 121 +++++++++++++++--- .../main/app/template/Toolbar.template | 2 +- .../main/app/view/Animation.js | 49 ++++--- .../main/app/view/Toolbar.js | 4 +- 4 files changed, 138 insertions(+), 38 deletions(-) diff --git a/apps/presentationeditor/main/app/controller/Animation.js b/apps/presentationeditor/main/app/controller/Animation.js index 307e81906..4277a2f1f 100644 --- a/apps/presentationeditor/main/app/controller/Animation.js +++ b/apps/presentationeditor/main/app/controller/Animation.js @@ -65,7 +65,6 @@ define([ 'PE.Views.Animation': { 'animation:preview': _.bind(this.onPreviewClick, this), 'animation:parameters': _.bind(this.onParameterClick, this), - 'animation:duration': _.bind(this.onDurationChange, this), 'animation:selecteffect': _.bind(this.onEffectSelect, this), 'animation:delay': _.bind(this.onDelayChange, this), 'animation:animationpane': _.bind(this.onAnimationPane, this), @@ -79,7 +78,10 @@ define([ 'animation:movelater': _.bind(this.onMoveLater, this), 'animation:repeatchange': _.bind(this.onRepeatChange, this), 'animation:repeatfocusin': _.bind(this.onRepeatComboOpen, this), - 'animation:repeatselected': _.bind(this.onRepeatSelected, this) + 'animation:repeatselected': _.bind(this.onRepeatSelected, this), + 'animation:durationchange': _.bind(this.onDurationChange, this), + 'animation:durationfocusin': _.bind(this.onRepeatComboOpen, this), + 'animation:durationselected': _.bind(this.onDurationSelected, this) }, 'Toolbar': { @@ -183,13 +185,53 @@ define([ if (this._state.Effect == type) return; var parameter = this.view.setMenuParameters(type, groupName, undefined); this.api.asc_AddAnimation(group, type, (parameter != undefined)?parameter:0, replace); - this._state.EffectGroups = group; + this._state.EffectGroup = group; this._state.Effect = type; }, - onDurationChange: function(field, newValue, oldValue, eOpts) { + onDurationChange: function(before,combo, record, e) { + var value, + me = this; + if(before) + { + var item = combo.store.findWhere({ + displayValue: record.value + }); + + if (!item) { + value = /^\+?(\d*(\.|,).?\d+)$|^\+?(\d+(\.|,)?\d*)$/.exec(record.value); + + if (!value) { + value = this._state.Duration; + combo.setRawValue(value); + if(isNaN(record.value)) { + record.value = value; + if(value < 0) + record.displayValue = combo.store.findWhere({value: value}).get('displayValue'); + } + return false; + } + } + + } else { + value = Common.Utils.String.parseFloat(record.value); + if(!record.displayValue) + value = value > 600 ? 600 : + value < 0 ? 0.01 : value.toFixed(2); + + combo.setValue(value); + this.setDuration(value); + } + }, + + onDurationSelected: function (combo, record) { + this.setDuration(record.value); + }, + + setDuration: function(valueRecord) { if (this.api) { - this.AnimationProperties.asc_putDuration(field.getNumberValue() * 1000); + var value = valueRecord < 0 ? valueRecord : valueRecord * 1000; + this.AnimationProperties.asc_putDuration(value); this.api.asc_SetAnimationProperties(this.AnimationProperties); } }, @@ -200,6 +242,7 @@ define([ this.api.asc_SetAnimationProperties(this.AnimationProperties); } }, + onRepeatChange: function (before,combo, record, e){ var value, me = this; @@ -231,17 +274,18 @@ define([ value < 1 ? 1 : Math.floor((value+0.4)*2)/2; combo.setValue(value); - - if (this.api) { - this.AnimationProperties.asc_putRepeatCount(value); - this.api.asc_SetAnimationProperties(this.AnimationProperties); - } + this.setRepeat(value); } }, onRepeatSelected: function (combo, record) { + this.setRepeat(record.value); + }, + + setRepeat: function(valueRecord) { if (this.api) { - this.AnimationProperties.asc_putRepeatCount(record.value); + var value = valueRecord < 0 ? valueRecord : valueRecord * 1000; + this.AnimationProperties.asc_putRepeatCount(value); this.api.asc_SetAnimationProperties(this.AnimationProperties); } }, @@ -339,7 +383,7 @@ define([ if (this._state.Effect !== value || this._state.EffectGroup !== group) { this._state.Effect = value; this._state.EffectGroup = group; - + this.setViewRepeatAndDuration(this._state.EffectGroup, this._state.Effect); group = view.listEffects.groups.findWhere({value: this._state.EffectGroup}); item = store.findWhere(group ? {group: group.get('id'), value: this._state.Effect} : {value: this._state.Effect}); if (item) { @@ -397,12 +441,9 @@ define([ this._state.noAnimationParam = view.setMenuParameters(this._state.Effect, _.findWhere(this.EffectGroups,{value: this._state.EffectGroup}).id, this._state.EffectOption)===undefined; value = this.AnimationProperties.asc_getDuration(); - if (Math.abs(this._state.Duration - value) > 0.001 || - (this._state.Duration === null || value === null) && (this._state.Duration !== value) || - (this._state.Duration === undefined || value === undefined) && (this._state.Duration !== value)) { - this._state.Duration = value; - view.numDuration.setValue((this._state.Duration !== null && this._state.Duration !== undefined) ? this._state.Duration / 1000. : '', true); - } + this._state.Duration = (value<0) ? value : value/1000; + view.cmbDuration.setValue( this._state.Duration !== undefined ? this._state.Duration : 1); + value = this.AnimationProperties.asc_getDelay(); if (Math.abs(this._state.Delay - value) > 0.001 || (this._state.Delay === null || value === null) && (this._state.Delay !== value) || @@ -410,7 +451,8 @@ define([ this._state.Delay = value; view.numDelay.setValue((this._state.Delay !== null && this._state.Delay !== undefined) ? this._state.Delay / 1000. : '', true); } - this._state.Repeat = this.AnimationProperties.asc_getRepeatCount(); + value =this.AnimationProperties.asc_getRepeatCount(); + this._state.Repeat = (value<0) ? value : value/1000; view.cmbRepeat.setValue( this._state.Repeat !== undefined ? this._state.Repeat : 1); this._state.StartSelect = this.AnimationProperties.asc_getStartType(); @@ -429,6 +471,7 @@ define([ this.setTriggerList(); } this.setLocked(); + }, setTriggerList: function (){ @@ -444,6 +487,41 @@ define([ this.view.cmbTrigger.menu.items[0].setChecked(this._state.trigger == this.view.triggers.ClickSequence); }, + setViewRepeatAndDuration: function(group, type) { + if(type == AscFormat.ANIM_PRESET_NONE) return; + + this._state.noAnimationDuration = this._state.noAnimationRepeat = false; + if((group == AscFormat.PRESET_CLASS_ENTR && type == AscFormat.ENTRANCE_APPEAR) || (group == AscFormat.PRESET_CLASS_EXIT && type == AscFormat.EXIT_DISAPPEAR)) { + this._state.noAnimationDuration = this._state.noAnimationRepeat = true; + } + else if((group == AscFormat.PRESET_CLASS_EMPH) && + (type == AscFormat.EMPHASIS_BOLD_REVEAL || type == AscFormat.EMPHASIS_TRANSPARENCY)) { + this._state.noAnimationRepeat = true; + if(this.view.cmbDuration.store.length == 6) { + + this.view.cmbDuration.setData([{value: 20, displayValue: 20}, + {value: 5, displayValue: 5}, + {value: 3, displayValue: 3}, + {value: 2, displayValue: 2}, + {value: 1, displayValue: 1}, + {value: 0.5, displayValue: 0.5}, + {value: AscFormat.untilNextClick, displayValue: this.view.textUntilNextClick}, + {value: AscFormat.untilNextSlide, displayValue: this.view.textUntilEndOfSlide}]); + } + } + + if((this.view.cmbDuration.store.length == 8) && ((this._state.EffectGroup != AscFormat.PRESET_CLASS_EMPH) || + ((this._state.EffectGroup == AscFormat.PRESET_CLASS_EMPH) && (this._state.Effect != AscFormat.EMPHASIS_BOLD_REVEAL) && (this._state.Effect != AscFormat.EMPHASIS_TRANSPARENCY)))) { + this.view.cmbDuration.setData([{value: 20, displayValue: 20}, + {value: 5, displayValue: 5}, + {value: 3, displayValue: 3}, + {value: 2, displayValue: 2}, + {value: 1, displayValue: 1}, + {value: 0.5, displayValue: 0.5}]); + } + + }, + onActiveTab: function(tab) { if (tab == 'animate') { this._state.onactivetab = true; @@ -472,6 +550,11 @@ define([ this.lockToolbar(PE.enumLock.noMoveAnimationEarlier, this._state.noMoveAnimationEarlier); if (PE.enumLock.noAnimationPreview != undefined) this.lockToolbar(PE.enumLock.noAnimationPreview, this._state.noAnimationPreview); + if (PE.enumLock.noAnimationRepeat != undefined) + this.lockToolbar(PE.enumLock.noAnimationRepeat, this._state.noAnimationRepeat); + if (PE.enumLock.noAnimationDuration != undefined) + this.lockToolbar(PE.enumLock.noAnimationDuration, this._state.noAnimationDuration); + } diff --git a/apps/presentationeditor/main/app/template/Toolbar.template b/apps/presentationeditor/main/app/template/Toolbar.template index 96ac31463..31c63d63e 100644 --- a/apps/presentationeditor/main/app/template/Toolbar.template +++ b/apps/presentationeditor/main/app/template/Toolbar.template @@ -250,7 +250,7 @@
- +
diff --git a/apps/presentationeditor/main/app/view/Animation.js b/apps/presentationeditor/main/app/view/Animation.js index 8ea2280a8..eddd21902 100644 --- a/apps/presentationeditor/main/app/view/Animation.js +++ b/apps/presentationeditor/main/app/view/Animation.js @@ -98,9 +98,21 @@ define([ }, me)); } - if (me.numDuration) { - me.numDuration.on('change', function(bth) { - me.fireEvent('animation:duration', [me.numDuration]); + if (me.cmbDuration) { + me.cmbDuration.on('changed:before', function (combo, record) { + me.fireEvent('animation:durationchange', [true, combo, record]); + }, me); + me.cmbDuration.on('changed:after', function (combo, record) { + me.fireEvent('animation:durationchange', [false, combo, record]); + }, me); + me.cmbDuration.on('selected', function (combo, record) { + me.fireEvent('animation:durationselected', [combo, record]); + }, me); + me.cmbDuration.on('show:after', function (combo) { + me.fireEvent('animation:durationfocusin', [true, combo]); + }, me); + me.cmbDuration.on('combo:focusin', function (combo) { + me.fireEvent('animation:durationfocusin', [false, combo]); }, me); } @@ -270,20 +282,25 @@ define([ this.lockedControls.push(this.btnAddAnimation); - this.numDuration = new Common.UI.MetricSpinner({ + this.cmbDuration = new Common.UI.ComboBox({ el: this.$el.find('#animation-spin-duration'), - step: 1, - width: 55, - value: '', - defaultUnit: this.txtSec, - maxValue: 300, - minValue: 0, - lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation], + cls: 'input-group-nr', + menuStyle: 'min-width: 100%;', + editable: true, + data: [ + {value: 20, displayValue: 20}, + {value: 5, displayValue: 5}, + {value: 3, displayValue: 3}, + {value: 2, displayValue: 2}, + {value: 1, displayValue: 1}, + {value: 0.5, displayValue: 0.5} + ], + lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.noAnimationDuration], dataHint: '1', dataHintDirection: 'top', dataHintOffset: 'small' }); - this.lockedControls.push(this.numDuration); + this.lockedControls.push(this.cmbDuration); this.cmbTrigger = new Common.UI.Button({ parentEl: $('#animation-trigger'), @@ -361,7 +378,7 @@ define([ cls: 'input-group-nr', menuStyle: 'min-width: 100%;', editable: true, - lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation], + lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.noAnimationRepeat], data: [ {value: 1, displayValue: this.textNoRepeat}, {value: 2, displayValue: "2"}, @@ -474,9 +491,9 @@ define([ this.btnAnimationPane && this.btnAnimationPane.render(this.$el.find('#animation-button-pane')); this.btnAddAnimation && this.btnAddAnimation.render(this.$el.find('#animation-button-add-effect')); this.cmbStart && this.cmbStart.render(this.$el.find('#animation-start')); - this.renderComponent('#animation-spin-duration', this.numDuration); + //this.renderComponent('#animation-spin-duration', this.cmbDuration); this.renderComponent('#animation-spin-delay', this.numDelay); - this.renderComponent('#animation-spin-repeat', this.cmbRepeat); + //this.renderComponent('#animation-spin-repeat', this.cmbRepeat); this.$el.find("#animation-duration").innerText = this.strDuration; this.$el.find("#animation-delay").innerText = this.strDelay; this.$el.find("#animation-label-start").innerText = this.strStart; @@ -489,8 +506,6 @@ define([ element.parent().append(obj.el); }, - - show: function () { Common.UI.BaseView.prototype.show.call(this); this.fireEvent('show', this); diff --git a/apps/presentationeditor/main/app/view/Toolbar.js b/apps/presentationeditor/main/app/view/Toolbar.js index 87c83bc21..aa6cedb90 100644 --- a/apps/presentationeditor/main/app/view/Toolbar.js +++ b/apps/presentationeditor/main/app/view/Toolbar.js @@ -93,7 +93,9 @@ define([ noTriggerObjects: 'no-trigger-objects', noMoveAnimationEarlier: 'no-move-animation-earlier', noMoveAnimationLater: 'no-move-animation-later', - noAnimationPreview: 'no-animation-preview' + noAnimationPreview: 'no-animation-preview', + noAnimationRepeat: 'no-animation-repeat', + noAnimationDuration: 'no-animation-duration' }; PE.Views.Toolbar = Common.UI.Mixtbar.extend(_.extend((function(){ From 8395c4d4812bf4eb5a83d5916f442b169bb25f34 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Tue, 18 Jan 2022 11:22:44 +0300 Subject: [PATCH 029/217] [build] refactoring --- build/Gruntfile.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/build/Gruntfile.js b/build/Gruntfile.js index 3df6b23d0..9073b9d5e 100644 --- a/build/Gruntfile.js +++ b/build/Gruntfile.js @@ -33,7 +33,7 @@ module.exports = function(grunt) { return !!string && !!iconv_lite ? iconv_lite.encode(string,encoding) : string; }; - var jsreplacements = [ + global.jsreplacements = [ { from: /\{\{SUPPORT_EMAIL\}\}/g, to: _encode(process.env.SUPPORT_EMAIL) || 'support@onlyoffice.com' @@ -355,12 +355,12 @@ module.exports = function(grunt) { replacements: [{ from: /\{\{PRODUCT_VERSION\}\}/g, to: packageFile.version - }] + }, ...global.jsreplacements] }, prepareHelp: { src: ['<%= pkg.main.copy.help[0].dest %>/ru/**/*.htm*'], overwrite: true, - replacements: [] + replacements: [...helpreplacements] } }, @@ -427,10 +427,10 @@ module.exports = function(grunt) { } }); - var replace = grunt.config.get('replace'); - replace.writeVersion.replacements.push(...jsreplacements); - replace.prepareHelp.replacements.push(...helpreplacements); - grunt.config.set('replace', replace); + // var replace = grunt.config.get('replace'); + // replace.writeVersion.replacements.push(...global.jsreplacements); + // replace.prepareHelp.replacements.push(...helpreplacements); + // grunt.config.set('replace', replace); }); grunt.registerTask('deploy-reporter', function(){ From 3b3f0ef29723b29817c53a01449bd665d9fb59a7 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Tue, 18 Jan 2022 11:23:41 +0300 Subject: [PATCH 030/217] [forms] replace inlined variables --- build/appforms.js | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/build/appforms.js b/build/appforms.js index f12e37e56..7d0238af6 100644 --- a/build/appforms.js +++ b/build/appforms.js @@ -65,6 +65,17 @@ module.exports = (grunt) => { } }, + replace: { + varsEnviroment: { + src: ['<%= pkg.forms.js.requirejs.options.out %>'], + overwrite: true, + replacements: [{ + from: /\{\{PRODUCT_VERSION\}\}/g, + to: packageFile.version + }, ...global.jsreplacements] + }, + }, + inline: { dist: { src: packageFile.forms.inline.src @@ -76,5 +87,5 @@ module.exports = (grunt) => { grunt.registerTask('deploy-app-forms', ['forms-app-init', 'clean:prebuild', /*'imagemin',*/ 'less', 'requirejs', 'concat', 'copy', 'inline', /*'json-minify',*/ - /*'replace:writeVersion',*/ /*'replace:prepareHelp',*/ 'clean:postbuild']); + 'replace:varsEnviroment', /*'replace:prepareHelp',*/ 'clean:postbuild']); } \ No newline at end of file From a593aa31802c7820c96f047758c22a501e49da27 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 18 Jan 2022 12:23:41 +0300 Subject: [PATCH 031/217] [DE] Fix Bug 52613 --- .../lib/template/AutoCorrectDialog.template | 19 ++++++++++--------- .../common/main/lib/view/AutoCorrectDialog.js | 14 +++++++++++++- .../main/app/controller/Main.js | 4 ++++ apps/documenteditor/main/locale/en.json | 1 + 4 files changed, 28 insertions(+), 10 deletions(-) diff --git a/apps/common/main/lib/template/AutoCorrectDialog.template b/apps/common/main/lib/template/AutoCorrectDialog.template index 6bded0028..09167ce01 100644 --- a/apps/common/main/lib/template/AutoCorrectDialog.template +++ b/apps/common/main/lib/template/AutoCorrectDialog.template @@ -66,17 +66,18 @@
-
+
- + +
-
+
-
+
@@ -85,14 +86,14 @@
-
- +
+
-
-
+
+
@@ -101,7 +102,7 @@
-
+
diff --git a/apps/common/main/lib/view/AutoCorrectDialog.js b/apps/common/main/lib/view/AutoCorrectDialog.js index 4d813d42c..9e50b9825 100644 --- a/apps/common/main/lib/view/AutoCorrectDialog.js +++ b/apps/common/main/lib/view/AutoCorrectDialog.js @@ -325,6 +325,17 @@ define([ 'text!common/main/lib/template/AutoCorrectDialog.template', Common.Utils.InternalSettings.set(me.appPrefix + "settings-autoformat-numbered", checked); me.api.asc_SetAutomaticNumberedLists(checked); }); + this.chDoubleSpaces = new Common.UI.CheckBox({ + el: panelAutoFormat.find('#id-autocorrect-dialog-chk-double-space'), + labelText: this.textDoubleSpaces, + value: Common.Utils.InternalSettings.get(this.appPrefix + "settings-autoformat-double-space") + }).on('change', function(field, newValue, oldValue, eOpts){ + var checked = (field.getValue()==='checked'); + Common.localStorage.setBool(me.appPrefix + "settings-autoformat-double-space", checked); + Common.Utils.InternalSettings.set(me.appPrefix + "settings-autoformat-double-space", checked); + me.api.asc_SetAutoCorrectDoubleSpaceWithPeriod(checked); + }); + this.chDoubleSpaces.setVisible(this.appPrefix=='de-'); // AutoCorrect this.chFLSentence = new Common.UI.CheckBox({ el: $window.find('#id-autocorrect-dialog-chk-fl-sentence'), @@ -841,7 +852,8 @@ define([ 'text!common/main/lib/template/AutoCorrectDialog.template', textAutoCorrect: 'AutoCorrect', textFLSentence: 'Capitalize first letter of sentences', textHyperlink: 'Internet and network paths with hyperlinks', - textFLCells: 'Capitalize first letter of table cells' + textFLCells: 'Capitalize first letter of table cells', + textDoubleSpaces: 'Add period with double-space' }, Common.Views.AutoCorrectDialog || {})) }); diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index 1d2037829..2c6a6115c 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -2663,6 +2663,10 @@ define([ value = Common.localStorage.getBool("de-settings-autoformat-fl-cells", true); Common.Utils.InternalSettings.set("de-settings-autoformat-fl-cells", value); me.api.asc_SetAutoCorrectFirstLetterOfCells(value); + + value = Common.localStorage.getBool("de-settings-autoformat-double-space", Common.Utils.isMac); // add period with double-space in MacOs by default + Common.Utils.InternalSettings.set("de-settings-autoformat-double-space", value); + me.api.asc_SetAutoCorrectDoubleSpaceWithPeriod(value); }, showRenameUserDialog: function() { diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 039aa5f8c..aaf79526c 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -234,6 +234,7 @@ "Common.Views.AutoCorrectDialog.warnReplace": "The autocorrect entry for %1 already exists. Do you want to replace it?", "Common.Views.AutoCorrectDialog.warnReset": "Any autocorrect you added will be removed and the changed ones will be restored to their original values. Do you want to continue?", "Common.Views.AutoCorrectDialog.warnRestore": "The autocorrect entry for %1 will be reset to its original value. Do you want to continue?", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Add period with double-space", "Common.Views.Chat.textSend": "Send", "Common.Views.Comments.mniAuthorAsc": "Author A to Z", "Common.Views.Comments.mniAuthorDesc": "Author Z to A", From d57395905fe0099ec442f76a9a9c778ded5ba205 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Tue, 18 Jan 2022 15:16:33 +0300 Subject: [PATCH 032/217] [DE] Add methods for select and hand tools --- apps/documenteditor/main/app/controller/Statusbar.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/documenteditor/main/app/controller/Statusbar.js b/apps/documenteditor/main/app/controller/Statusbar.js index b7d0a8466..d1b865ae4 100644 --- a/apps/documenteditor/main/app/controller/Statusbar.js +++ b/apps/documenteditor/main/app/controller/Statusbar.js @@ -137,6 +137,8 @@ define([ if (config.canUseSelectHandTools) { me.statusbar.btnSelectTool.on('click', _.bind(me.onSelectTool, me, 'select')); me.statusbar.btnHandTool.on('click', _.bind(me.onSelectTool, me, 'hand')); + me.statusbar.btnHandTool.toggle(true, true); + me.api.asc_setViewerTargetType('hand'); } var statusbarIsHidden = Common.localStorage.getBool("de-hidden-status"); @@ -352,7 +354,9 @@ define([ }, onSelectTool: function (type, btn, e) { - + if (this.api) { + this.api.asc_setViewerTargetType(type); + } }, zoomText : 'Zoom {0}%', From a8ddc013e8caca1dd6642f2edbb32116896fd527 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Tue, 18 Jan 2022 15:21:19 +0300 Subject: [PATCH 033/217] [DE] Add translations --- apps/documenteditor/main/locale/en.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 852b600e1..31921ff9f 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -2383,6 +2383,8 @@ "DE.Views.Statusbar.tipZoomIn": "Zoom in", "DE.Views.Statusbar.tipZoomOut": "Zoom out", "DE.Views.Statusbar.txtPageNumInvalid": "Page number invalid", + "DE.Views.Statusbar.tipSelectTool": "Select tool", + "DE.Views.Statusbar.tipHandTool": "Hand tool", "DE.Views.StyleTitleDialog.textHeader": "Create New Style", "DE.Views.StyleTitleDialog.textNextStyle": "Next paragraph style", "DE.Views.StyleTitleDialog.textTitle": "Title", From 2c9e34c1beb88250c8ec03cacc69d6a977d71db8 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Tue, 18 Jan 2022 22:09:05 +0400 Subject: [PATCH 034/217] For Bug 54910 --- .../mobile/src/controller/ContextMenu.jsx | 50 ++++++------ .../mobile/src/controller/Main.jsx | 79 ++++++++++--------- 2 files changed, 69 insertions(+), 60 deletions(-) diff --git a/apps/documenteditor/mobile/src/controller/ContextMenu.jsx b/apps/documenteditor/mobile/src/controller/ContextMenu.jsx index 45906ad60..ada1b208b 100644 --- a/apps/documenteditor/mobile/src/controller/ContextMenu.jsx +++ b/apps/documenteditor/mobile/src/controller/ContextMenu.jsx @@ -213,7 +213,7 @@ class ContextMenu extends ContextMenuController { initMenuItems() { if ( !Common.EditorApi ) return []; - const { isEdit, canFillForms } = this.props; + const { isEdit, canFillForms, isDisconnected } = this.props; if (isEdit && EditorUIController.ContextMenu) { return EditorUIController.ContextMenu.mapMenuItems(this); @@ -259,32 +259,34 @@ class ContextMenu extends ContextMenuController { }); } - if ( canFillForms && canCopy && !locked ) { - itemsIcon.push({ - event: 'cut', - icon: 'icon-cut' - }); - } + if(!isDisconnected) { + if ( canFillForms && canCopy && !locked ) { + itemsIcon.push({ + event: 'cut', + icon: 'icon-cut' + }); + } - if ( canFillForms && !locked ) { - itemsIcon.push({ - event: 'paste', - icon: 'icon-paste' - }); - } + if ( canFillForms && !locked ) { + itemsIcon.push({ + event: 'paste', + icon: 'icon-paste' + }); + } - if ( canViewComments && this.isComments ) { - itemsText.push({ - caption: _t.menuViewComment, - event: 'viewcomment' - }); - } + if ( canViewComments && this.isComments ) { + itemsText.push({ + caption: _t.menuViewComment, + event: 'viewcomment' + }); + } - if (api.can_AddQuotedComment() !== false && canCoAuthoring && canComments && !locked && !(!isText && isObject)) { - itemsText.push({ - caption: _t.menuAddComment, - event: 'addcomment' - }); + if (api.can_AddQuotedComment() !== false && canCoAuthoring && canComments && !locked && !(!isText && isObject)) { + itemsText.push({ + caption: _t.menuAddComment, + event: 'addcomment' + }); + } } if ( isLink ) { diff --git a/apps/documenteditor/mobile/src/controller/Main.jsx b/apps/documenteditor/mobile/src/controller/Main.jsx index bc60bc121..3a66ddafd 100644 --- a/apps/documenteditor/mobile/src/controller/Main.jsx +++ b/apps/documenteditor/mobile/src/controller/Main.jsx @@ -407,6 +407,7 @@ class MainController extends Component { onLicenseChanged (params) { const appOptions = this.props.storeAppOptions; const licType = params.asc_getLicenseType(); + if (licType !== undefined && (appOptions.canEdit || appOptions.isRestrictedEdit) && appOptions.config.mode !== 'view' && (licType === Asc.c_oLicenseResult.Connections || licType === Asc.c_oLicenseResult.UsersCount || licType === Asc.c_oLicenseResult.ConnectionsOS || licType === Asc.c_oLicenseResult.UsersCountOS || licType === Asc.c_oLicenseResult.SuccessLimit && (appOptions.trialMode & Asc.c_oLicenseMode.Limited) !== 0)) @@ -557,28 +558,32 @@ class MainController extends Component { storeDocumentSettings.changeDocSize(w, h); }); - this.api.asc_registerCallback('asc_onShowContentControlsActions', (obj, x, y) => { - switch (obj.type) { - case Asc.c_oAscContentControlSpecificType.DateTime: - this.onShowDateActions(obj, x, y); - break; - case Asc.c_oAscContentControlSpecificType.Picture: - if (obj.pr && obj.pr.get_Lock) { - let lock = obj.pr.get_Lock(); - if (lock == Asc.c_oAscSdtLockType.SdtContentLocked || lock == Asc.c_oAscSdtLockType.ContentLocked) - return; - } - this.api.asc_addImage(obj); - setTimeout(() => { - this.api.asc_UncheckContentControlButtons(); - }, 500); - break; - case Asc.c_oAscContentControlSpecificType.DropDownList: - case Asc.c_oAscContentControlSpecificType.ComboBox: - this.onShowListActions(obj, x, y); - break; - } - }); + const storeAppOptions = this.props.storeAppOptions; + + if (storeAppOptions.isEdit || storeAppOptions.isRestrictedEdit && storeAppOptions.canFillForms) { + this.api.asc_registerCallback('asc_onShowContentControlsActions', (obj, x, y) => { + switch (obj.type) { + case Asc.c_oAscContentControlSpecificType.DateTime: + this.onShowDateActions(obj, x, y); + break; + case Asc.c_oAscContentControlSpecificType.Picture: + if (obj.pr && obj.pr.get_Lock) { + let lock = obj.pr.get_Lock(); + if (lock == Asc.c_oAscSdtLockType.SdtContentLocked || lock == Asc.c_oAscSdtLockType.ContentLocked) + return; + } + this.api.asc_addImage(obj); + setTimeout(() => { + this.api.asc_UncheckContentControlButtons(); + }, 500); + break; + case Asc.c_oAscContentControlSpecificType.DropDownList: + case Asc.c_oAscContentControlSpecificType.ComboBox: + this.onShowListActions(obj, x, y); + break; + } + }); + } const storeTextSettings = this.props.storeTextSettings; storeTextSettings.resetFontsRecent(LocalStorage.getItem('dde-settings-recent-fonts')); @@ -705,19 +710,20 @@ class MainController extends Component { onShowDateActions(obj, x, y) { const { t } = this.props; + const boxSdk = $$('#editor_sdk'); + let props = obj.pr, specProps = props.get_DateTimePr(), - isPhone = Device.isPhone; + isPhone = Device.isPhone, + controlsContainer = boxSdk.find('#calendar-target-element'), + _dateObj = props; - this.controlsContainer = this.boxSdk.find('#calendar-target-element'); - this._dateObj = props; - - if (this.controlsContainer.length < 1) { - this.controlsContainer = $$('
'); - this.boxSdk.append(this.controlsContainer); + if (controlsContainer.length < 1) { + controlsContainer = $$('
'); + boxSdk.append(controlsContainer); } - this.controlsContainer.css({left: `${x}px`, top: `${y}px`}); + controlsContainer.css({left: `${x}px`, top: `${y}px`}); this.cmpCalendar = f7.calendar.create({ inputEl: '#calendar-target-element', @@ -730,7 +736,7 @@ class MainController extends Component { on: { change: (calendar, value) => { if(calendar.initialized && value[0]) { - let specProps = this._dateObj.get_DateTimePr(); + let specProps = _dateObj.get_DateTimePr(); specProps.put_FullDate(new Date(value[0])); this.api.asc_SetContentControlDatePickerDate(specProps); calendar.close(); @@ -747,14 +753,15 @@ class MainController extends Component { onShowListActions(obj, x, y) { if(!Device.isPhone) { - this.dropdownListTarget = this.boxSdk.find('#dropdown-list-target'); + const boxSdk = $$('#editor_sdk'); + let dropdownListTarget = boxSdk.find('#dropdown-list-target'); - if (this.dropdownListTarget.length < 1) { - this.dropdownListTarget = $$(''); - this.boxSdk.append(this.dropdownListTarget); + if (dropdownListTarget.length < 1) { + dropdownListTarget = $$(''); + boxSdk.append(dropdownListTarget); } - this.dropdownListTarget.css({left: `${x}px`, top: `${y}px`}); + dropdownListTarget.css({left: `${x}px`, top: `${y}px`}); } Common.Notifications.trigger('openDropdownList', obj); From 302c220ccfb8b2997d28847ec2972c189f39d29c Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 18 Jan 2022 21:44:27 +0300 Subject: [PATCH 035/217] [DE] Lock/unlock accept/reject buttons for selected text --- .../main/lib/controller/ReviewChanges.js | 55 +++++++++++++------ 1 file changed, 37 insertions(+), 18 deletions(-) diff --git a/apps/common/main/lib/controller/ReviewChanges.js b/apps/common/main/lib/controller/ReviewChanges.js index ae03dcea2..b931d77b9 100644 --- a/apps/common/main/lib/controller/ReviewChanges.js +++ b/apps/common/main/lib/controller/ReviewChanges.js @@ -179,20 +179,51 @@ define([ }); }, - onApiShowChange: function (sdkchange) { + isSelectedChangesLocked: function(changes, fromSelection) { + if (!changes || changes.length<1) return true; + + if (!fromSelection) + return changes[0].get('lock') || !changes[0].get('editable'); + + for (var i=0; i0) { + changes = this.readSDKChange(sdkchange); + btnlock = this.isSelectedChangesLocked(changes, fromSelection); + } + if (this._state.lock !== btnlock) { + this.view.btnAccept.setDisabled(btnlock); + this.view.btnReject.setDisabled(btnlock); + if (this.dlgChanges) { + this.dlgChanges.btnAccept.setDisabled(btnlock); + this.dlgChanges.btnReject.setDisabled(btnlock); + } + this._state.lock = btnlock; + Common.Utils.InternalSettings.set(this.view.appPrefix + "accept-reject-lock", btnlock); + } + } + if (this.getPopover()) { - if (!this.appConfig.reviewHoverMode && sdkchange && sdkchange.length>0) { + if (!this.appConfig.reviewHoverMode && sdkchange && sdkchange.length>0 && !fromSelection) { // show changes balloon only for current position, not selection var i = 0, - changes = this.readSDKChange(sdkchange), posX = sdkchange[0].get_X(), posY = sdkchange[0].get_Y(), animate = ( Math.abs(this._state.posx-posX)>0.001 || Math.abs(this._state.posy-posY)>0.001) || (sdkchange.length !== this._state.changes_length), lock = (sdkchange[0].get_LockUserId()!==null), - lockUser = this.getUserName(sdkchange[0].get_LockUserId()), - editable = changes[0].get('editable'); + lockUser = this.getUserName(sdkchange[0].get_LockUserId()); this.getPopover().hideTips(); - this.popoverChanges.reset(changes); + this.popoverChanges.reset(changes || this.readSDKChange(sdkchange)); if (animate) { if ( this.getPopover().isVisible() ) this.getPopover().hide(); @@ -200,18 +231,6 @@ define([ } this.getPopover().showReview(animate, lock, lockUser); - - var btnlock = lock || !editable; - if (this.appConfig.canReview && !this.appConfig.isReviewOnly && this._state.lock !== btnlock) { - this.view.btnAccept.setDisabled(btnlock); - this.view.btnReject.setDisabled(btnlock); - if (this.dlgChanges) { - this.dlgChanges.btnAccept.setDisabled(btnlock); - this.dlgChanges.btnReject.setDisabled(btnlock); - } - this._state.lock = btnlock; - Common.Utils.InternalSettings.set(this.view.appPrefix + "accept-reject-lock", btnlock); - } this._state.posx = posX; this._state.posy = posY; this._state.changes_length = sdkchange.length; From 63a2caff7252e859b62c2e5a9648969ea0d12b2e Mon Sep 17 00:00:00 2001 From: OVSharova Date: Wed, 19 Jan 2022 05:32:55 +0300 Subject: [PATCH 036/217] Add FamilyEffect --- apps/common/main/lib/util/define.js | 46 +++++++++++++------ .../main/app/controller/Animation.js | 23 ++++++---- .../main/app/view/Animation.js | 16 ++++++- 3 files changed, 61 insertions(+), 24 deletions(-) diff --git a/apps/common/main/lib/util/define.js b/apps/common/main/lib/util/define.js index 3e98d66a2..099c4657c 100644 --- a/apps/common/main/lib/util/define.js +++ b/apps/common/main/lib/util/define.js @@ -807,10 +807,7 @@ define(function(){ 'use strict'; {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_FLOAT, iconCls: 'animation-entrance-float_in', displayValue: this.textFloatIn}, {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_SPLIT, iconCls: 'animation-entrance-split', displayValue: this.textSplit}, {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_WIPE_FROM, iconCls: 'animation-entrance-wipe', displayValue: this.textWipe}, - {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_BOX, iconCls: 'animation-entrance-shape', displayValue: this.textBox}, - {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_CIRCLE, iconCls: 'animation-entrance-shape', displayValue: this.textCircle}, - {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_PLUS, iconCls: 'animation-entrance-shape', displayValue: this.textPlus}, - {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_DIAMOND, iconCls: 'animation-entrance-shape', displayValue: this.textDiamond}, + {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_BOX, iconCls: 'animation-entrance-shape', displayValue: this.textShape, familyEffect: 'entrshape'}, {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_WHEEL, iconCls: 'animation-entrance-wheel', displayValue: this.textWheel}, {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_RANDOM_BARS, iconCls: 'animation-entrance-random_bars', displayValue: this.textRandomBars}, {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_GROW_AND_TURN, iconCls: 'animation-entrance-grow_turn', displayValue: this.textGrowTurn}, @@ -836,10 +833,11 @@ define(function(){ 'use strict'; {group: 'menu-effect-group-exit', value: AscFormat.EXIT_FLOAT, iconCls: 'animation-exit-float_out', displayValue: this.textFloatOut}, {group: 'menu-effect-group-exit', value: AscFormat.EXIT_SPLIT, iconCls: 'animation-exit-split', displayValue: this.textSplit}, {group: 'menu-effect-group-exit', value: AscFormat.EXIT_WIPE_FROM, iconCls: 'animation-exit-wipe', displayValue: this.textWipe}, - {group: 'menu-effect-group-exit', value: AscFormat.EXIT_BOX, iconCls: 'animation-exit-shape', displayValue: this.textBox}, + {group: 'menu-effect-group-exit', value: AscFormat.EXIT_BOX, iconCls: 'animation-exit-shape', displayValue: this.textShape, familyEffect: 'shape'}, + /*{group: 'menu-effect-group-exit', value: AscFormat.EXIT_BOX, iconCls: 'animation-exit-shape', displayValue: this.textBox}, {group: 'menu-effect-group-exit', value: AscFormat.EXIT_CIRCLE, iconCls: 'animation-exit-shape', displayValue: this.textCircle}, {group: 'menu-effect-group-exit', value: AscFormat.EXIT_PLUS, iconCls: 'animation-exit-shape', displayValue: this.textPlus}, - {group: 'menu-effect-group-exit', value: AscFormat.EXIT_DIAMOND, iconCls: 'animation-exit-shape', displayValue: this.textDiamond}, + {group: 'menu-effect-group-exit', value: AscFormat.EXIT_DIAMOND, iconCls: 'animation-exit-shape', displayValue: this.textDiamond},*/ {group: 'menu-effect-group-exit', value: AscFormat.EXIT_WHEEL, iconCls: 'animation-exit-wheel', displayValue: this.textWheel}, {group: 'menu-effect-group-exit', value: AscFormat.EXIT_RANDOM_BARS, iconCls: 'animation-exit-random_bars', displayValue: this.textRandomBars}, {group: 'menu-effect-group-exit', value: AscFormat.EXIT_SHRINK_AND_TURN, iconCls: 'animation-exit-shrink_turn', displayValue: this.textShrinkTurn}, @@ -896,14 +894,14 @@ define(function(){ 'use strict'; return [ {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_APPEAR, displayValue: this.textAppear}, {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_BLINDS, displayValue: this.textBlinds}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_BOX, displayValue: this.textBox}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_BOX, displayValue: this.textBox, familyEffect: 'entrshape'}, {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_CHECKERBOARD, displayValue: this.textCheckerboard}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_CIRCLE, displayValue: this.textCircle}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_DIAMOND, displayValue: this.textDiamond}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_CIRCLE, displayValue: this.textCircle, familyEffect: 'entrshape'}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_DIAMOND, displayValue: this.textDiamond, familyEffect: 'entrshape'}, {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_DISSOLVE_IN, displayValue: this.textDissolveIn}, {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_FLY_IN_FROM, displayValue: this.textFlyIn}, {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_PEEK_IN_FROM, displayValue: this.textPeekIn}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_PLUS, displayValue: this.textPlus}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_PLUS, displayValue: this.textPlus, familyEffect: 'entrshape'}, {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_RANDOM_BARS, displayValue: this.textRandomBars}, {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_SPLIT, displayValue: this.textSplit}, {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_STRIPS, displayValue: this.textStrips}, @@ -953,15 +951,15 @@ define(function(){ 'use strict'; {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-moderate', value: AscFormat.EMPHASIS_TEETER, displayValue: this.textTeeter}, {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-exciting', value: AscFormat.EMPHASIS_BLINK, displayValue: this.textBlink}, {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_BLINDS, displayValue: this.textBlinds}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_BOX, displayValue: this.textBox}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_BOX, displayValue: this.textBox, familyEffect: 'shape'}, {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_CHECKERBOARD, displayValue: this.textCheckerboard}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_CIRCLE, displayValue: this.textCircle}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_DIAMOND, displayValue: this.textDiamond}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_CIRCLE, displayValue: this.textCircle, familyEffect: 'shape'}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_DIAMOND, displayValue: this.textDiamond, familyEffect: 'shape'}, {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_DISAPPEAR, displayValue: this.textDisappear}, {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_DISSOLVE_OUT, displayValue: this.textDissolveOut}, {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_FLY_OUT_TO, displayValue: this.textFlyOut}, {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_PEEK_OUT_TO, displayValue: this.textPeekOut}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_PLUS, displayValue: this.textPlus}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_PLUS, displayValue: this.textPlus, familyEffect: 'shape'}, {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_RANDOM_BARS, displayValue: this.textRandomBars}, {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_SPLIT, displayValue: this.textSplit}, {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_STRIPS, displayValue: this.textStrips}, @@ -1294,6 +1292,26 @@ define(function(){ 'use strict'; default: return undefined; } + }, + getSimilarEffectsArray: function (group, familyEffect) { + switch (familyEffect){ + case 'shape': + return [ + {value: AscFormat.EXIT_BOX, caption: this.textBox}, + {value: AscFormat.EXIT_CIRCLE, caption: this.textCircle}, + {value: AscFormat.EXIT_PLUS, caption: this.textPlus}, + {value: AscFormat.EXIT_DIAMOND, caption: this.textDiamond} + ]; + case 'entrshape': + return [ + {value: AscFormat.ENTRANCE_BOX, displayValue: this.textBox}, + {value: AscFormat.ENTRANCE_CIRCLE, displayValue: this.textCircle}, + {value: AscFormat.ENTRANCE_PLUS, displayValue: this.textPlus}, + {value: AscFormat.ENTRANCE_DIAMOND, displayValue: this.textDiamond}, + ]; + default: + return []; + } } } })(), Common.define.effectData || {}); diff --git a/apps/presentationeditor/main/app/controller/Animation.js b/apps/presentationeditor/main/app/controller/Animation.js index 307e81906..ea98879f8 100644 --- a/apps/presentationeditor/main/app/controller/Animation.js +++ b/apps/presentationeditor/main/app/controller/Animation.js @@ -147,10 +147,16 @@ define([ this.view.btnPreview.setIconCls('toolbar__icon transition-fade'); }, - onParameterClick: function (value) { + onParameterClick: function (value, toggleGroup) { if(this.api && this.AnimationProperties) { - this.AnimationProperties.asc_putSubtype(value); - this.api.asc_SetAnimationProperties(this.AnimationProperties); + if(toggleGroup=='animateeffects') { + this.AnimationProperties.asc_putSubtype(value); + this.api.asc_SetAnimationProperties(this.AnimationProperties); + } + else { + var groupName = _.findWhere(this.EffectGroups, {value: this._state.EffectGroup}).id; + this.addNewEffect(value, this._state.EffectGroup, groupName,true, this._state.EffectOption); + } } }, @@ -179,12 +185,10 @@ define([ this.addNewEffect(type, group, record.get('group'), false); }, - addNewEffect: function (type, group, groupName, replace) { + addNewEffect: function (type, group, groupName, replace, parametr) { if (this._state.Effect == type) return; - var parameter = this.view.setMenuParameters(type, groupName, undefined); + var parameter = this.view.setMenuParameters(type, groupName, parametr); this.api.asc_AddAnimation(group, type, (parameter != undefined)?parameter:0, replace); - this._state.EffectGroups = group; - this._state.Effect = type; }, onDurationChange: function(field, newValue, oldValue, eOpts) { @@ -341,7 +345,10 @@ define([ this._state.EffectGroup = group; group = view.listEffects.groups.findWhere({value: this._state.EffectGroup}); - item = store.findWhere(group ? {group: group.get('id'), value: this._state.Effect} : {value: this._state.Effect}); + var familyEffect = _.findWhere(view.allEffects, group ? {group: group.get('id'), value: this._state.Effect} : {value: this._state.Effect}).familyEffect; + + item = (!familyEffect) ? store.findWhere(group ? {group: group.get('id'), value: value} : {value: value}) + : store.findWhere(group ? {group: group.get('id'), familyEffect: familyEffect} : {familyEffect: familyEffect}); if (item) { var forceFill = false; if (!item.get('isCustom')) { // remove custom effect from list if not-custom is selected diff --git a/apps/presentationeditor/main/app/view/Animation.js b/apps/presentationeditor/main/app/view/Animation.js index 8ea2280a8..7e61eff2b 100644 --- a/apps/presentationeditor/main/app/view/Animation.js +++ b/apps/presentationeditor/main/app/view/Animation.js @@ -88,7 +88,7 @@ define([ if (me.btnParameters) { me.btnParameters.menu.on('item:click', function (menu, item, e) { - me.fireEvent('animation:parameters', [item.value]); + me.fireEvent('animation:parameters', [item.value, item.toggleGroup]); }); } @@ -171,7 +171,9 @@ define([ this.lockedControls = []; this._arrEffectName = [{group:'none', value: AscFormat.ANIM_PRESET_NONE, iconCls: 'animation-none', displayValue: this.textNone}].concat(Common.define.effectData.getEffectData()); - _.forEach(this._arrEffectName,function (elm){elm.tip = elm.displayValue;}); + _.forEach(this._arrEffectName,function (elm){ + elm.tip = elm.displayValue; + }); this._arrEffectOptions = []; var itemWidth = 88, itemHeight = 40; @@ -520,6 +522,16 @@ define([ this.btnParameters.menu.addItem(opt); (opt.value==option) && (selectedElement = this.btnParameters.menu.items[index]); }, this); + if(effect.familyEffect){ + this.btnParameters.menu.addItem({caption: '--'}); + var effectsArray = Common.define.effectData.getSimilarEffectsArray(effectGroup,effect.familyEffect); + effectsArray.forEach(function (opt) { + opt.checkable = true; + opt.toggleGroup = 'animatesimilareffects' + this.btnParameters.menu.addItem(opt); + (opt.value == effectId) && this.btnParameters.menu.items[this.btnParameters.menu.items.length-1].setChecked(); + },this); + } } else { this.btnParameters.menu.items.forEach(function (opt) { From b5a1cf5bc511e087a9c2a6b297e94b4200364276 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Wed, 19 Jan 2022 12:29:35 +0300 Subject: [PATCH 037/217] [DE] Fix select and hand tools --- apps/documenteditor/main/app/view/Statusbar.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/documenteditor/main/app/view/Statusbar.js b/apps/documenteditor/main/app/view/Statusbar.js index 5961dc957..95b0d8d17 100644 --- a/apps/documenteditor/main/app/view/Statusbar.js +++ b/apps/documenteditor/main/app/view/Statusbar.js @@ -187,13 +187,15 @@ define([ this.btnSelectTool = new Common.UI.Button({ hintAnchor: 'top', toggleGroup: 'select-tools', - enableToggle: true + enableToggle: true, + allowDepress: false }); this.btnHandTool = new Common.UI.Button({ hintAnchor: 'top', toggleGroup: 'select-tools', - enableToggle: true + enableToggle: true, + allowDepress: false }); this.btnZoomToPage = new Common.UI.Button({ From 415d9651df0752b7dfe2da2ed12580e8d666525b Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 17 Jan 2022 12:01:35 +0300 Subject: [PATCH 038/217] [DE forms] Fix Bug 54910 --- .../forms/app/controller/ApplicationController.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/apps/documenteditor/forms/app/controller/ApplicationController.js b/apps/documenteditor/forms/app/controller/ApplicationController.js index f0e333470..6b14b77f9 100644 --- a/apps/documenteditor/forms/app/controller/ApplicationController.js +++ b/apps/documenteditor/forms/app/controller/ApplicationController.js @@ -505,6 +505,7 @@ define([ this.api.asc_registerCallback('asc_onGetEditorPermissions', _.bind(this.onEditorPermissions, this)); this.api.asc_registerCallback('asc_onRunAutostartMacroses', _.bind(this.onRunAutostartMacroses, this)); + this.api.asc_registerCallback('asc_onLicenseChanged', _.bind(this.onLicenseChanged, this)); this.api.asc_setDocInfo(docInfo); this.api.asc_getEditorPermissions(this.editorConfig.licenseUrl, this.editorConfig.customerId); this.api.asc_enableKeyEvents(true); @@ -642,6 +643,17 @@ define([ }); }, + onLicenseChanged: function(params) { + var licType = params.asc_getLicenseType(); + if (licType !== undefined && this.appOptions.canFillForms && + (licType===Asc.c_oLicenseResult.Connections || licType===Asc.c_oLicenseResult.UsersCount || licType===Asc.c_oLicenseResult.ConnectionsOS || licType===Asc.c_oLicenseResult.UsersCountOS + || licType===Asc.c_oLicenseResult.SuccessLimit && (this.appOptions.trialMode & Asc.c_oLicenseMode.Limited) !== 0)) + this._state.licenseType = licType; + + if (this._isDocReady) + this.applyLicense(); + }, + applyLicense: function() { if (this._state.licenseType) { var license = this._state.licenseType, From 0f7cd84acf8213cb82b5e3a1d62e6084052264b7 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 17 Jan 2022 18:09:45 +0300 Subject: [PATCH 039/217] [DE forms] Disable edit buttons when no license (Bug 54910) --- .../app/controller/ApplicationController.js | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/apps/documenteditor/forms/app/controller/ApplicationController.js b/apps/documenteditor/forms/app/controller/ApplicationController.js index 6b14b77f9..1a49a998c 100644 --- a/apps/documenteditor/forms/app/controller/ApplicationController.js +++ b/apps/documenteditor/forms/app/controller/ApplicationController.js @@ -670,6 +670,10 @@ define([ primary = 'buynow'; } + if (this._state.licenseType!==Asc.c_oLicenseResult.SuccessLimit && this.appOptions.canFillForms) { + this.disableEditing(true); + } + var value = Common.localStorage.getItem("de-license-warning"); value = (value!==null) ? parseInt(value) : 0; var now = (new Date).getTime(); @@ -998,6 +1002,8 @@ define([ }, onShowContentControlsActions: function(obj, x, y) { + if (this._isDisabled) return; + var me = this; switch (obj.type) { case Asc.c_oAscContentControlSpecificType.DateTime: @@ -1730,12 +1736,12 @@ define([ if (this.textMenu && !noobject) { var cancopy = this.api.can_CopyCut(), disabled = menu_props.paraProps && menu_props.paraProps.locked || menu_props.headerProps && menu_props.headerProps.locked || - menu_props.imgProps && (menu_props.imgProps.locked || menu_props.imgProps.content_locked); + menu_props.imgProps && (menu_props.imgProps.locked || menu_props.imgProps.content_locked) || this._isDisabled; this.textMenu.items[0].setDisabled(disabled || !this.api.asc_getCanUndo()); // undo this.textMenu.items[1].setDisabled(disabled || !this.api.asc_getCanRedo()); // redo - this.textMenu.items[3].setDisabled(!cancopy); // copy - this.textMenu.items[4].setDisabled(disabled || !cancopy); // cut + this.textMenu.items[3].setDisabled(disabled || !cancopy); // cut + this.textMenu.items[4].setDisabled(!cancopy); // copy this.textMenu.items[5].setDisabled(disabled) // paste; this.showPopupMenu(this.textMenu, {}, event); @@ -1769,6 +1775,11 @@ define([ } }, + disableEditing: function(state) { + this.view && this.view.btnClear && this.view.btnClear.setDisabled(state); + this._isDisabled = state; + }, + errorDefaultMessage : 'Error code: %1', unknownErrorText : 'Unknown error.', convertationTimeoutText : 'Conversion timeout exceeded.', From d53adf634d0c276e9d46efa6546a59a0001fcd89 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Tue, 18 Jan 2022 11:22:44 +0300 Subject: [PATCH 040/217] [build] refactoring --- build/Gruntfile.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/build/Gruntfile.js b/build/Gruntfile.js index 2d6b3dbde..ec6d63e73 100644 --- a/build/Gruntfile.js +++ b/build/Gruntfile.js @@ -33,7 +33,7 @@ module.exports = function(grunt) { return !!string && !!iconv_lite ? iconv_lite.encode(string,encoding) : string; }; - var jsreplacements = [ + global.jsreplacements = [ { from: /\{\{SUPPORT_EMAIL\}\}/g, to: _encode(process.env.SUPPORT_EMAIL) || 'support@onlyoffice.com' @@ -355,12 +355,12 @@ module.exports = function(grunt) { replacements: [{ from: /\{\{PRODUCT_VERSION\}\}/g, to: packageFile.version - }] + }, ...global.jsreplacements] }, prepareHelp: { src: ['<%= pkg.main.copy.help[0].dest %>/ru/**/*.htm*'], overwrite: true, - replacements: [] + replacements: [...helpreplacements] } }, @@ -427,10 +427,10 @@ module.exports = function(grunt) { } }); - var replace = grunt.config.get('replace'); - replace.writeVersion.replacements.push(...jsreplacements); - replace.prepareHelp.replacements.push(...helpreplacements); - grunt.config.set('replace', replace); + // var replace = grunt.config.get('replace'); + // replace.writeVersion.replacements.push(...global.jsreplacements); + // replace.prepareHelp.replacements.push(...helpreplacements); + // grunt.config.set('replace', replace); }); grunt.registerTask('deploy-reporter', function(){ From 336e2c449f8e88f4dc6fc1acdd00c84494dd5c22 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Tue, 18 Jan 2022 11:23:41 +0300 Subject: [PATCH 041/217] [forms] replace inlined variables --- build/appforms.js | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/build/appforms.js b/build/appforms.js index f12e37e56..7d0238af6 100644 --- a/build/appforms.js +++ b/build/appforms.js @@ -65,6 +65,17 @@ module.exports = (grunt) => { } }, + replace: { + varsEnviroment: { + src: ['<%= pkg.forms.js.requirejs.options.out %>'], + overwrite: true, + replacements: [{ + from: /\{\{PRODUCT_VERSION\}\}/g, + to: packageFile.version + }, ...global.jsreplacements] + }, + }, + inline: { dist: { src: packageFile.forms.inline.src @@ -76,5 +87,5 @@ module.exports = (grunt) => { grunt.registerTask('deploy-app-forms', ['forms-app-init', 'clean:prebuild', /*'imagemin',*/ 'less', 'requirejs', 'concat', 'copy', 'inline', /*'json-minify',*/ - /*'replace:writeVersion',*/ /*'replace:prepareHelp',*/ 'clean:postbuild']); + 'replace:varsEnviroment', /*'replace:prepareHelp',*/ 'clean:postbuild']); } \ No newline at end of file From 9f16a3c4d386a31d472dbb87f0ed4dfd9e914cb7 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 17 Jan 2022 18:59:46 +0300 Subject: [PATCH 042/217] [DE][PE][SSE] Disable comment, fillForms when no license in the restricted editing mode --- apps/documenteditor/main/app/controller/Main.js | 4 ++-- apps/presentationeditor/main/app/controller/Main.js | 4 ++-- apps/spreadsheeteditor/main/app/controller/Main.js | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index 6122a17b8..b5ee98e89 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -1274,7 +1274,7 @@ define([ onLicenseChanged: function(params) { var licType = params.asc_getLicenseType(); - if (licType !== undefined && this.appOptions.canEdit && this.editorConfig.mode !== 'view' && + if (licType !== undefined && (this.appOptions.canEdit || this.appOptions.isRestrictedEdit) && this.editorConfig.mode !== 'view' && (licType===Asc.c_oLicenseResult.Connections || licType===Asc.c_oLicenseResult.UsersCount || licType===Asc.c_oLicenseResult.ConnectionsOS || licType===Asc.c_oLicenseResult.UsersCountOS || licType===Asc.c_oLicenseResult.SuccessLimit && (this.appOptions.trialMode & Asc.c_oLicenseMode.Limited) !== 0)) this._state.licenseType = licType; @@ -1300,7 +1300,7 @@ define([ primary = 'buynow'; } - if (this._state.licenseType!==Asc.c_oLicenseResult.SuccessLimit && this.appOptions.isEdit) { + if (this._state.licenseType!==Asc.c_oLicenseResult.SuccessLimit && (this.appOptions.isEdit || this.appOptions.isRestrictedEdit)) { this.disableEditing(true); Common.NotificationCenter.trigger('api:disconnect'); } diff --git a/apps/presentationeditor/main/app/controller/Main.js b/apps/presentationeditor/main/app/controller/Main.js index bb6012a85..df78c7d1b 100644 --- a/apps/presentationeditor/main/app/controller/Main.js +++ b/apps/presentationeditor/main/app/controller/Main.js @@ -916,7 +916,7 @@ define([ onLicenseChanged: function(params) { var licType = params.asc_getLicenseType(); - if (licType !== undefined && this.appOptions.canEdit && this.editorConfig.mode !== 'view' && + if (licType !== undefined && (this.appOptions.canEdit || this.appOptions.isRestrictedEdit) && this.editorConfig.mode !== 'view' && (licType===Asc.c_oLicenseResult.Connections || licType===Asc.c_oLicenseResult.UsersCount || licType===Asc.c_oLicenseResult.ConnectionsOS || licType===Asc.c_oLicenseResult.UsersCountOS || licType===Asc.c_oLicenseResult.SuccessLimit && (this.appOptions.trialMode & Asc.c_oLicenseMode.Limited) !== 0)) this._state.licenseType = licType; @@ -942,7 +942,7 @@ define([ primary = 'buynow'; } - if (this._state.licenseType!==Asc.c_oLicenseResult.SuccessLimit && this.appOptions.isEdit) { + if (this._state.licenseType!==Asc.c_oLicenseResult.SuccessLimit && (this.appOptions.isEdit || this.appOptions.isRestrictedEdit)) { this.disableEditing(true); Common.NotificationCenter.trigger('api:disconnect'); } diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js index 6e332f4ee..48ada36d5 100644 --- a/apps/spreadsheeteditor/main/app/controller/Main.js +++ b/apps/spreadsheeteditor/main/app/controller/Main.js @@ -1017,7 +1017,7 @@ define([ if (this.appOptions.isEditDiagram || this.appOptions.isEditMailMerge) return; var licType = params.asc_getLicenseType(); - if (licType !== undefined && this.appOptions.canEdit && this.editorConfig.mode !== 'view' && + if (licType !== undefined && (this.appOptions.canEdit || this.appOptions.isRestrictedEdit) && this.editorConfig.mode !== 'view' && (licType===Asc.c_oLicenseResult.Connections || licType===Asc.c_oLicenseResult.UsersCount || licType===Asc.c_oLicenseResult.ConnectionsOS || licType===Asc.c_oLicenseResult.UsersCountOS || licType===Asc.c_oLicenseResult.SuccessLimit && (this.appOptions.trialMode & Asc.c_oLicenseMode.Limited) !== 0)) this._state.licenseType = licType; @@ -1043,7 +1043,7 @@ define([ primary = 'buynow'; } - if (this._state.licenseType!==Asc.c_oLicenseResult.SuccessLimit && this.appOptions.isEdit) { + if (this._state.licenseType!==Asc.c_oLicenseResult.SuccessLimit && (this.appOptions.isEdit || this.appOptions.isRestrictedEdit)) { this.disableEditing(true); Common.NotificationCenter.trigger('api:disconnect'); } From 96efeeb77b3448feadec8f094bff2461a1eb7e9a Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 17 Jan 2022 19:03:25 +0300 Subject: [PATCH 043/217] [Mobile] Show warning and disable editing for fill forms and commenting when no license (Bug 54910) --- apps/documenteditor/mobile/src/controller/Main.jsx | 2 +- apps/presentationeditor/mobile/src/controller/Main.jsx | 2 +- apps/spreadsheeteditor/mobile/src/controller/Main.jsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/documenteditor/mobile/src/controller/Main.jsx b/apps/documenteditor/mobile/src/controller/Main.jsx index c6c253a30..8ececa86f 100644 --- a/apps/documenteditor/mobile/src/controller/Main.jsx +++ b/apps/documenteditor/mobile/src/controller/Main.jsx @@ -405,7 +405,7 @@ class MainController extends Component { onLicenseChanged (params) { const appOptions = this.props.storeAppOptions; const licType = params.asc_getLicenseType(); - if (licType !== undefined && appOptions.canEdit && appOptions.config.mode !== 'view' && + if (licType !== undefined && (appOptions.canEdit || appOptions.isRestrictedEdit) && appOptions.config.mode !== 'view' && (licType === Asc.c_oLicenseResult.Connections || licType === Asc.c_oLicenseResult.UsersCount || licType === Asc.c_oLicenseResult.ConnectionsOS || licType === Asc.c_oLicenseResult.UsersCountOS || licType === Asc.c_oLicenseResult.SuccessLimit && (appOptions.trialMode & Asc.c_oLicenseMode.Limited) !== 0)) this._state.licenseType = licType; diff --git a/apps/presentationeditor/mobile/src/controller/Main.jsx b/apps/presentationeditor/mobile/src/controller/Main.jsx index 1c2d676f9..1dc80e1c9 100644 --- a/apps/presentationeditor/mobile/src/controller/Main.jsx +++ b/apps/presentationeditor/mobile/src/controller/Main.jsx @@ -484,7 +484,7 @@ class MainController extends Component { onLicenseChanged (params) { const appOptions = this.props.storeAppOptions; const licType = params.asc_getLicenseType(); - if (licType !== undefined && appOptions.canEdit && appOptions.config.mode !== 'view' && + if (licType !== undefined && (appOptions.canEdit || appOptions.isRestrictedEdit) && appOptions.config.mode !== 'view' && (licType === Asc.c_oLicenseResult.Connections || licType === Asc.c_oLicenseResult.UsersCount || licType === Asc.c_oLicenseResult.ConnectionsOS || licType === Asc.c_oLicenseResult.UsersCountOS || licType === Asc.c_oLicenseResult.SuccessLimit && (appOptions.trialMode & Asc.c_oLicenseMode.Limited) !== 0)) this._state.licenseType = licType; diff --git a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx index 56df7d9c4..0147c2116 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx @@ -565,7 +565,7 @@ class MainController extends Component { if (appOptions.isEditDiagram || appOptions.isEditMailMerge) return; const licType = params.asc_getLicenseType(); - if (licType !== undefined && appOptions.canEdit && appOptions.config.mode !== 'view' && + if (licType !== undefined && (appOptions.canEdit || appOptions.isRestrictedEdit) && appOptions.config.mode !== 'view' && (licType === Asc.c_oLicenseResult.Connections || licType === Asc.c_oLicenseResult.UsersCount || licType === Asc.c_oLicenseResult.ConnectionsOS || licType === Asc.c_oLicenseResult.UsersCountOS || licType === Asc.c_oLicenseResult.SuccessLimit && (appOptions.trialMode & Asc.c_oLicenseMode.Limited) !== 0)) this._state.licenseType = licType; From 743cd8a42ac5f99d0b425fe511fc60d435e7fd77 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 19 Jan 2022 16:08:03 +0300 Subject: [PATCH 044/217] [DE Mobile] disable editing for fill forms and commenting when no license (Bug 54910) --- .../mobile/src/controller/Main.jsx | 49 +++++++++---------- 1 file changed, 24 insertions(+), 25 deletions(-) diff --git a/apps/documenteditor/mobile/src/controller/Main.jsx b/apps/documenteditor/mobile/src/controller/Main.jsx index 3a66ddafd..c9ba77dfe 100644 --- a/apps/documenteditor/mobile/src/controller/Main.jsx +++ b/apps/documenteditor/mobile/src/controller/Main.jsx @@ -558,32 +558,31 @@ class MainController extends Component { storeDocumentSettings.changeDocSize(w, h); }); - const storeAppOptions = this.props.storeAppOptions; + this.api.asc_registerCallback('asc_onShowContentControlsActions', (obj, x, y) => { + const storeAppOptions = this.props.storeAppOptions; + if (!storeAppOptions.isEdit && !(storeAppOptions.isRestrictedEdit && storeAppOptions.canFillForms) || this.props.users.isDisconnected) return; - if (storeAppOptions.isEdit || storeAppOptions.isRestrictedEdit && storeAppOptions.canFillForms) { - this.api.asc_registerCallback('asc_onShowContentControlsActions', (obj, x, y) => { - switch (obj.type) { - case Asc.c_oAscContentControlSpecificType.DateTime: - this.onShowDateActions(obj, x, y); - break; - case Asc.c_oAscContentControlSpecificType.Picture: - if (obj.pr && obj.pr.get_Lock) { - let lock = obj.pr.get_Lock(); - if (lock == Asc.c_oAscSdtLockType.SdtContentLocked || lock == Asc.c_oAscSdtLockType.ContentLocked) - return; - } - this.api.asc_addImage(obj); - setTimeout(() => { - this.api.asc_UncheckContentControlButtons(); - }, 500); - break; - case Asc.c_oAscContentControlSpecificType.DropDownList: - case Asc.c_oAscContentControlSpecificType.ComboBox: - this.onShowListActions(obj, x, y); - break; - } - }); - } + switch (obj.type) { + case Asc.c_oAscContentControlSpecificType.DateTime: + this.onShowDateActions(obj, x, y); + break; + case Asc.c_oAscContentControlSpecificType.Picture: + if (obj.pr && obj.pr.get_Lock) { + let lock = obj.pr.get_Lock(); + if (lock == Asc.c_oAscSdtLockType.SdtContentLocked || lock == Asc.c_oAscSdtLockType.ContentLocked) + return; + } + this.api.asc_addImage(obj); + setTimeout(() => { + this.api.asc_UncheckContentControlButtons(); + }, 500); + break; + case Asc.c_oAscContentControlSpecificType.DropDownList: + case Asc.c_oAscContentControlSpecificType.ComboBox: + this.onShowListActions(obj, x, y); + break; + } + }); const storeTextSettings = this.props.storeTextSettings; storeTextSettings.resetFontsRecent(LocalStorage.getItem('dde-settings-recent-fonts')); From 48b682c54c12c472c85fb8beacf2290d93244fce Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Wed, 19 Jan 2022 18:43:11 +0400 Subject: [PATCH 045/217] [PE SSE mobile] Correct context menu --- .../mobile/src/controller/ContextMenu.jsx | 28 ++++++++++--------- .../mobile/src/controller/ContextMenu.jsx | 28 ++++++++++--------- .../mobile/src/controller/Main.jsx | 5 ++++ 3 files changed, 35 insertions(+), 26 deletions(-) diff --git a/apps/presentationeditor/mobile/src/controller/ContextMenu.jsx b/apps/presentationeditor/mobile/src/controller/ContextMenu.jsx index 2b71baaac..73615138b 100644 --- a/apps/presentationeditor/mobile/src/controller/ContextMenu.jsx +++ b/apps/presentationeditor/mobile/src/controller/ContextMenu.jsx @@ -196,7 +196,7 @@ class ContextMenu extends ContextMenuController { initMenuItems() { if ( !Common.EditorApi ) return []; - const { isEdit } = this.props; + const { isEdit, isDisconnected } = this.props; if (isEdit && EditorUIController.ContextMenu) { return EditorUIController.ContextMenu.mapMenuItems(this); @@ -253,18 +253,20 @@ class ContextMenu extends ContextMenuController { icon: 'icon-copy' }); } - if (canViewComments && this.isComments && !isEdit) { - itemsText.push({ - caption: _t.menuViewComment, - event: 'viewcomment' - }); - } - - if (!isChart && api.can_AddQuotedComment() !== false && canCoAuthoring && canComments && !locked) { - itemsText.push({ - caption: _t.menuAddComment, - event: 'addcomment' - }); + if(!isDisconnected) { + if (canViewComments && this.isComments && !isEdit) { + itemsText.push({ + caption: _t.menuViewComment, + event: 'viewcomment' + }); + } + + if (!isChart && api.can_AddQuotedComment() !== false && canCoAuthoring && canComments && !locked) { + itemsText.push({ + caption: _t.menuAddComment, + event: 'addcomment' + }); + } } if (isLink) { diff --git a/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx b/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx index 073cde124..c347f4353 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx @@ -209,7 +209,7 @@ class ContextMenu extends ContextMenuController { const { t } = this.props; const _t = t("ContextMenu", { returnObjects: true }); - const { isEdit } = this.props; + const { isEdit, isDisconnected } = this.props; if (isEdit && EditorUIController.ContextMenu) { return EditorUIController.ContextMenu.mapMenuItems(this); @@ -249,18 +249,20 @@ class ContextMenu extends ContextMenuController { event: 'openlink' }); } - if (canViewComments && hasComments && hasComments.length>0) { - itemsText.push({ - caption: _t.menuViewComment, - event: 'viewcomment' - }); - } - - if (iscellmenu && !api.isCellEdited && canCoAuthoring && canComments && hasComments && hasComments.length<1) { - itemsText.push({ - caption: _t.menuAddComment, - event: 'addcomment' - }); + if(!isDisconnected) { + if (canViewComments && hasComments && hasComments.length>0) { + itemsText.push({ + caption: _t.menuViewComment, + event: 'viewcomment' + }); + } + + if (iscellmenu && !api.isCellEdited && canCoAuthoring && canComments && hasComments && hasComments.length<1) { + itemsText.push({ + caption: _t.menuAddComment, + event: 'addcomment' + }); + } } return itemsIcon.concat(itemsText); diff --git a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx index 35d627034..44be0b004 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx @@ -426,11 +426,16 @@ class MainController extends Component { this.api.asc_registerCallback('asc_onActiveSheetChanged', this.onChangeProtectSheet.bind(this)); this.api.asc_registerCallback('asc_onRenameCellTextEnd', this.onRenameText.bind(this)); + this.api.asc_registerCallback('asc_onEntriesListMenu', this.onEntriesListMenu.bind(this, false)); this.api.asc_registerCallback('asc_onValidationListMenu', this.onEntriesListMenu.bind(this, true)); } onEntriesListMenu(validation, textArr, addArr) { + const storeAppOptions = this.props.storeAppOptions; + + if (!storeAppOptions.isEdit && !storeAppOptions.isRestrictedEdit || this.props.users.isDisconnected) return; + const { t } = this.props; const boxSdk = $$('#editor_sdk'); From 146363ddf9e6ea1706e8d4fa53cad96a5a8a300a Mon Sep 17 00:00:00 2001 From: OVSharova Date: Wed, 19 Jan 2022 19:25:39 +0300 Subject: [PATCH 046/217] Fix bug --- apps/presentationeditor/main/app/controller/Animation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/presentationeditor/main/app/controller/Animation.js b/apps/presentationeditor/main/app/controller/Animation.js index 4277a2f1f..f7a864d4b 100644 --- a/apps/presentationeditor/main/app/controller/Animation.js +++ b/apps/presentationeditor/main/app/controller/Animation.js @@ -182,7 +182,7 @@ define([ }, addNewEffect: function (type, group, groupName, replace) { - if (this._state.Effect == type) return; + if (this._state.Effect == type && this._state.EffectGroup == group) return; var parameter = this.view.setMenuParameters(type, groupName, undefined); this.api.asc_AddAnimation(group, type, (parameter != undefined)?parameter:0, replace); this._state.EffectGroup = group; From d43ecdfce3a21e0549ed7c1330d15e86420c8116 Mon Sep 17 00:00:00 2001 From: OVSharova Date: Wed, 19 Jan 2022 19:38:23 +0300 Subject: [PATCH 047/217] Fix bug --- apps/presentationeditor/main/app/controller/Animation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/presentationeditor/main/app/controller/Animation.js b/apps/presentationeditor/main/app/controller/Animation.js index f7a864d4b..5fc9178a3 100644 --- a/apps/presentationeditor/main/app/controller/Animation.js +++ b/apps/presentationeditor/main/app/controller/Animation.js @@ -182,7 +182,7 @@ define([ }, addNewEffect: function (type, group, groupName, replace) { - if (this._state.Effect == type && this._state.EffectGroup == group) return; + if (this._state.Effect == type && this._state.EffectGroup == group && replace) return; var parameter = this.view.setMenuParameters(type, groupName, undefined); this.api.asc_AddAnimation(group, type, (parameter != undefined)?parameter:0, replace); this._state.EffectGroup = group; From d540b6d87956786506c9850ae9b8490746da9d83 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Wed, 19 Jan 2022 21:33:47 +0400 Subject: [PATCH 048/217] Fix Bug 54797 --- apps/common/mobile/lib/view/Search.jsx | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/apps/common/mobile/lib/view/Search.jsx b/apps/common/mobile/lib/view/Search.jsx index 988955f76..cdd3bf7d6 100644 --- a/apps/common/mobile/lib/view/Search.jsx +++ b/apps/common/mobile/lib/view/Search.jsx @@ -162,11 +162,10 @@ class SearchView extends Component { } onReplaceClick() { - if (this.searchbar && this.state.replaceQuery) { + if (this.searchbar) { if (this.props.onReplaceQuery) { let params = this.searchParams(); params.find = this.state.searchQuery; - // console.log(params); this.props.onReplaceQuery(params); } @@ -174,11 +173,10 @@ class SearchView extends Component { } onReplaceAllClick() { - if (this.searchbar && this.state.replaceQuery) { + if (this.searchbar) { if (this.props.onReplaceAllQuery) { let params = this.searchParams(); params.find = this.state.searchQuery; - // console.log(params); this.props.onReplaceAllQuery(params); } @@ -281,10 +279,17 @@ class SearchView extends Component {
From f11ea1159f39cb26c31e30a0fc172a3b2bf69843 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Wed, 19 Jan 2022 22:01:18 +0400 Subject: [PATCH 049/217] For Bug 54797 --- apps/common/mobile/lib/view/Search.jsx | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/apps/common/mobile/lib/view/Search.jsx b/apps/common/mobile/lib/view/Search.jsx index cdd3bf7d6..6547b0dc5 100644 --- a/apps/common/mobile/lib/view/Search.jsx +++ b/apps/common/mobile/lib/view/Search.jsx @@ -280,16 +280,10 @@ class SearchView extends Component { {/* this.onReplaceClick()}>{_t.textReplace} this.onReplaceAllClick()}>{_t.textReplaceAll} */} - {/* {isReplaceAll ? ( - this.onReplaceAllClick()}>{_t.textReplaceAll} - ) : usereplace ? ( - this.onReplaceClick()}>{_t.textReplace} - ) : null} */} - {isReplaceAll ? ( - this.onReplaceAllClick()}>{_t.textReplaceAll} + this.onReplaceAllClick()}>{_t.textReplaceAll} ) : usereplace ? ( - this.onReplaceClick()}>{_t.textReplace} + this.onReplaceClick()}>{_t.textReplace} ) : null}
From 3099b6befb29026319e9a19b3b434c5b03a57b6b Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 19 Jan 2022 21:34:20 +0300 Subject: [PATCH 050/217] [PE] Fix repeat and duration settings for animation --- .../main/app/controller/Animation.js | 61 +++++++------------ .../main/app/view/Animation.js | 36 ++++++----- apps/presentationeditor/main/locale/en.json | 9 +++ 3 files changed, 52 insertions(+), 54 deletions(-) diff --git a/apps/presentationeditor/main/app/controller/Animation.js b/apps/presentationeditor/main/app/controller/Animation.js index 4277a2f1f..48c54b39a 100644 --- a/apps/presentationeditor/main/app/controller/Animation.js +++ b/apps/presentationeditor/main/app/controller/Animation.js @@ -199,16 +199,10 @@ define([ }); if (!item) { - value = /^\+?(\d*(\.|,).?\d+)$|^\+?(\d+(\.|,)?\d*)$/.exec(record.value); - - if (!value) { - value = this._state.Duration; - combo.setRawValue(value); - if(isNaN(record.value)) { - record.value = value; - if(value < 0) - record.displayValue = combo.store.findWhere({value: value}).get('displayValue'); - } + var expr = new RegExp('^\\s*(\\d*(\\.|,)?\\d+)\\s*(' + me.view.txtSec + ')?\\s*$'); + if (!expr.exec(record.value)) { + combo.setValue(this._state.Duration, this._state.Duration>=0 ? this._state.Duration + ' ' + this.view.txtSec : 1); + e.preventDefault(); return false; } } @@ -217,7 +211,7 @@ define([ value = Common.Utils.String.parseFloat(record.value); if(!record.displayValue) value = value > 600 ? 600 : - value < 0 ? 0.01 : value.toFixed(2); + value < 0 ? 0.01 : parseFloat(value.toFixed(2)); combo.setValue(value); this.setDuration(value); @@ -254,15 +248,9 @@ define([ if (!item) { value = /^\+?(\d*(\.|,).?\d+)$|^\+?(\d+(\.|,)?\d*)$/.exec(record.value); - if (!value) { - value = this._state.Repeat; - combo.setRawValue(value); - if(isNaN(record.value)) { - record.value = value; - if(value < 0) - record.displayValue = combo.store.findWhere({value: value}).get('displayValue'); - } + combo.setValue(this._state.Repeat, this._state.Repeat>=0 ? this._state.Repeat : 1); + e.preventDefault(); return false; } } @@ -441,8 +429,11 @@ define([ this._state.noAnimationParam = view.setMenuParameters(this._state.Effect, _.findWhere(this.EffectGroups,{value: this._state.EffectGroup}).id, this._state.EffectOption)===undefined; value = this.AnimationProperties.asc_getDuration(); - this._state.Duration = (value<0) ? value : value/1000; - view.cmbDuration.setValue( this._state.Duration !== undefined ? this._state.Duration : 1); + this._state.Duration = (value>=0) ? value/1000 : value ; // undefined or <0 + if (this._state.noAnimationDuration) + view.cmbDuration.setValue(''); + else + view.cmbDuration.setValue(this._state.Duration, this._state.Duration>=0 ? this._state.Duration + ' ' + this.view.txtSec : 1); value = this.AnimationProperties.asc_getDelay(); if (Math.abs(this._state.Delay - value) > 0.001 || @@ -453,7 +444,10 @@ define([ } value =this.AnimationProperties.asc_getRepeatCount(); this._state.Repeat = (value<0) ? value : value/1000; - view.cmbRepeat.setValue( this._state.Repeat !== undefined ? this._state.Repeat : 1); + if (this._state.noAnimationRepeat) + view.cmbRepeat.setValue(''); + else + view.cmbRepeat.setValue( this._state.Repeat, this._state.Repeat>=0 ? this._state.Repeat : 1); this._state.StartSelect = this.AnimationProperties.asc_getStartType(); view.cmbStart.setValue(this._state.StartSelect!==undefined ? this._state.StartSelect : AscFormat.NODE_TYPE_CLICKEFFECT); @@ -498,26 +492,17 @@ define([ (type == AscFormat.EMPHASIS_BOLD_REVEAL || type == AscFormat.EMPHASIS_TRANSPARENCY)) { this._state.noAnimationRepeat = true; if(this.view.cmbDuration.store.length == 6) { - - this.view.cmbDuration.setData([{value: 20, displayValue: 20}, - {value: 5, displayValue: 5}, - {value: 3, displayValue: 3}, - {value: 2, displayValue: 2}, - {value: 1, displayValue: 1}, - {value: 0.5, displayValue: 0.5}, - {value: AscFormat.untilNextClick, displayValue: this.view.textUntilNextClick}, - {value: AscFormat.untilNextSlide, displayValue: this.view.textUntilEndOfSlide}]); + this.view.cmbDuration.store.add([{value: AscFormat.untilNextClick, displayValue: this.view.textUntilNextClick}, + {value: AscFormat.untilNextSlide, displayValue: this.view.textUntilEndOfSlide}]); + this.view.cmbDuration.setData(this.view.cmbDuration.store.models); } } if((this.view.cmbDuration.store.length == 8) && ((this._state.EffectGroup != AscFormat.PRESET_CLASS_EMPH) || ((this._state.EffectGroup == AscFormat.PRESET_CLASS_EMPH) && (this._state.Effect != AscFormat.EMPHASIS_BOLD_REVEAL) && (this._state.Effect != AscFormat.EMPHASIS_TRANSPARENCY)))) { - this.view.cmbDuration.setData([{value: 20, displayValue: 20}, - {value: 5, displayValue: 5}, - {value: 3, displayValue: 3}, - {value: 2, displayValue: 2}, - {value: 1, displayValue: 1}, - {value: 0.5, displayValue: 0.5}]); + this.view.cmbDuration.store.pop(); + this.view.cmbDuration.store.pop(); + this.view.cmbDuration.setData(this.view.cmbDuration.store.models); } }, @@ -554,8 +539,6 @@ define([ this.lockToolbar(PE.enumLock.noAnimationRepeat, this._state.noAnimationRepeat); if (PE.enumLock.noAnimationDuration != undefined) this.lockToolbar(PE.enumLock.noAnimationDuration, this._state.noAnimationDuration); - - } }, PE.Controllers.Animation || {})); diff --git a/apps/presentationeditor/main/app/view/Animation.js b/apps/presentationeditor/main/app/view/Animation.js index eddd21902..7cb5d5189 100644 --- a/apps/presentationeditor/main/app/view/Animation.js +++ b/apps/presentationeditor/main/app/view/Animation.js @@ -99,11 +99,11 @@ define([ } if (me.cmbDuration) { - me.cmbDuration.on('changed:before', function (combo, record) { - me.fireEvent('animation:durationchange', [true, combo, record]); + me.cmbDuration.on('changed:before', function (combo, record, e) { + me.fireEvent('animation:durationchange', [true, combo, record, e]); }, me); - me.cmbDuration.on('changed:after', function (combo, record) { - me.fireEvent('animation:durationchange', [false, combo, record]); + me.cmbDuration.on('changed:after', function (combo, record, e) { + me.fireEvent('animation:durationchange', [false, combo, record, e]); }, me); me.cmbDuration.on('selected', function (combo, record) { me.fireEvent('animation:durationselected', [combo, record]); @@ -130,11 +130,11 @@ define([ } if (me.cmbRepeat) { - me.cmbRepeat.on('changed:before', function (combo, record) { - me.fireEvent('animation:repeatchange', [true, combo, record]); + me.cmbRepeat.on('changed:before', function (combo, record, e) { + me.fireEvent('animation:repeatchange', [true, combo, record, e]); }, me); - me.cmbRepeat.on('changed:after', function (combo, record) { - me.fireEvent('animation:repeatchange', [false, combo, record]); + me.cmbRepeat.on('changed:after', function (combo, record, e) { + me.fireEvent('animation:repeatchange', [false, combo, record, e]); }, me); me.cmbRepeat.on('selected', function (combo, record) { me.fireEvent('animation:repeatselected', [combo, record]); @@ -288,12 +288,12 @@ define([ menuStyle: 'min-width: 100%;', editable: true, data: [ - {value: 20, displayValue: 20}, - {value: 5, displayValue: 5}, - {value: 3, displayValue: 3}, - {value: 2, displayValue: 2}, - {value: 1, displayValue: 1}, - {value: 0.5, displayValue: 0.5} + {value: 20, displayValue: this.str20}, + {value: 5, displayValue: this.str5}, + {value: 3, displayValue: this.str3}, + {value: 2, displayValue: this.str2}, + {value: 1, displayValue: this.str1}, + {value: 0.5, displayValue: this.str0_5} ], lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.noAnimationDuration], dataHint: '1', @@ -571,7 +571,13 @@ define([ textMoveLater: 'Move Later', textNoRepeat: '(none)', textUntilNextClick: 'Until Next Click', - textUntilEndOfSlide: 'Until End of Slide' + textUntilEndOfSlide: 'Until End of Slide', + str20: '20 s (Extremely Slow)', + str5: '5 s (Very Slow)', + str3: '3 s (Slow)', + str2: '2 s (Medium)', + str1: '1 s (Fast)', + str0_5: '0.5 s (Very Fast)' } }()), PE.Views.Animation || {})); diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json index 02a737a24..d34ce7e77 100644 --- a/apps/presentationeditor/main/locale/en.json +++ b/apps/presentationeditor/main/locale/en.json @@ -1305,6 +1305,15 @@ "PE.Views.Animation.txtParameters": "Parameters", "PE.Views.Animation.txtPreview": "Preview", "PE.Views.Animation.txtSec": "s", + "PE.Views.Animation.textNoRepeat": "(none)", + "PE.Views.Animation.textUntilNextClick": "Until Next Click", + "PE.Views.Animation.textUntilEndOfSlide": "Until End of Slide", + "PE.Views.Animation.str20": "20 s (Extremely Slow)", + "PE.Views.Animation.str5": "5 s (Very Slow)", + "PE.Views.Animation.str3": "3 s (Slow)", + "PE.Views.Animation.str2": "2 s (Medium)", + "PE.Views.Animation.str1": "1 s (Fast)", + "PE.Views.Animation.str0_5": "0.5 s (Very Fast)", "PE.Views.AnimationDialog.textPreviewEffect": "Preview Effect", "PE.Views.AnimationDialog.textTitle": "More Effects", "PE.Views.ChartSettings.textAdvanced": "Show advanced settings", From 4ac9e138745998c8aa8652a6c8cbb31044c01db0 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Wed, 19 Jan 2022 21:43:54 +0300 Subject: [PATCH 051/217] [DE] fix bug 49737 --- apps/common/main/resources/less/toolbar.less | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/apps/common/main/resources/less/toolbar.less b/apps/common/main/resources/less/toolbar.less index 98208a7e1..280e8be36 100644 --- a/apps/common/main/resources/less/toolbar.less +++ b/apps/common/main/resources/less/toolbar.less @@ -535,12 +535,10 @@ &.borders--small { border-radius: 2px; - background-color: @background-normal-ie; - background-color: @background-normal; &:not(:active) { - box-shadow: inset 0 0 0 @scaled-one-px-value-ie @border-regular-control-ie; - box-shadow: inset 0 0 0 @scaled-one-px-value @border-regular-control; + //box-shadow: inset 0 0 0 @scaled-one-px-value-ie @border-regular-control-ie; + //box-shadow: inset 0 0 0 @scaled-one-px-value @border-regular-control; } & { From f54cc3e381998fed156b3a8398b307f301958c6c Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 19 Jan 2022 22:11:48 +0300 Subject: [PATCH 052/217] [PE] Animation dialog refactoring: support preview options, support focus --- .../main/app/controller/Animation.js | 2 +- .../main/app/view/AnimationDialog.js | 21 ++++++++++++++++--- 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/apps/presentationeditor/main/app/controller/Animation.js b/apps/presentationeditor/main/app/controller/Animation.js index 3fbe620f2..4cc2d6a55 100644 --- a/apps/presentationeditor/main/app/controller/Animation.js +++ b/apps/presentationeditor/main/app/controller/Animation.js @@ -184,7 +184,7 @@ define([ addNewEffect: function (type, group, groupName, replace) { if (this._state.Effect == type && this._state.EffectGroup == group && replace) return; var parameter = this.view.setMenuParameters(type, groupName, undefined); - this.api.asc_AddAnimation(group, type, (parameter != undefined)?parameter:0, replace); + this.api.asc_AddAnimation(group, type, (parameter != undefined)?parameter:0, replace, !Common.Utils.InternalSettings.get("pe-animation-no-preview")); this._state.EffectGroup = group; this._state.Effect = type; }, diff --git a/apps/presentationeditor/main/app/view/AnimationDialog.js b/apps/presentationeditor/main/app/view/AnimationDialog.js index f0f039167..f00add7d5 100644 --- a/apps/presentationeditor/main/app/view/AnimationDialog.js +++ b/apps/presentationeditor/main/app/view/AnimationDialog.js @@ -119,14 +119,16 @@ define([ this.lstEffectList = new Common.UI.ListView({ el : $('#animation-list'), itemTemplate: _.template('
<%= displayValue %>
'), - scroll : true + scrollAlwaysVisible: true, + tabindex: 1 }); this.lstEffectList.on('item:select', _.bind(this.onEffectListItem,this)); this.chPreview = new Common.UI.CheckBox({ el : $('#animation-setpreview'), - labelText : this.textPreviewEffect - }); + labelText : this.textPreviewEffect, + value: !Common.Utils.InternalSettings.get("pe-animation-no-preview") + }).on('change', _.bind(this.onPreviewChange, this)); this.cmbGroup.setValue(this._state.activeGroupValue); this.fillLevel(); @@ -134,6 +136,14 @@ define([ this.$window.find('.dlg-btn').on('click', _.bind(this.onBtnClick, this)); }, + getFocusedComponents: function() { + return [ this.cmbGroup, this.cmbLevel, this.lstEffectList, this.chPreview]; + }, + + getDefaultFocusableComponent: function () { + return this.lstEffectList; + }, + onGroupSelect: function (combo, record) { this._state.activeGroup = record.id; this._state.activeGroupValue = record.value; @@ -164,6 +174,7 @@ define([ if(!item) item = this.lstEffectList.store.at(0); this.lstEffectList.selectRecord(item); + this.lstEffectList.scrollToRecord(item, true); this._state.activeEffect = item.get('value'); }, @@ -173,6 +184,10 @@ define([ } }, + onPreviewChange: function (field, newValue, oldValue, eOpts) { + Common.Utils.InternalSettings.set("pe-animation-no-preview", field.getValue()!=='checked'); + }, + onBtnClick: function (event) { this._handleInput(event.currentTarget.attributes['result'].value); From ccec3e5a4b66e925c8a72ef173084b9e5c918be3 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 19 Jan 2022 23:16:19 +0300 Subject: [PATCH 053/217] [PE] For Bug 52613 --- apps/common/main/lib/view/AutoCorrectDialog.js | 1 - apps/presentationeditor/main/app/controller/Main.js | 4 ++++ apps/presentationeditor/main/locale/en.json | 1 + 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/common/main/lib/view/AutoCorrectDialog.js b/apps/common/main/lib/view/AutoCorrectDialog.js index 9e50b9825..0cea0bf82 100644 --- a/apps/common/main/lib/view/AutoCorrectDialog.js +++ b/apps/common/main/lib/view/AutoCorrectDialog.js @@ -335,7 +335,6 @@ define([ 'text!common/main/lib/template/AutoCorrectDialog.template', Common.Utils.InternalSettings.set(me.appPrefix + "settings-autoformat-double-space", checked); me.api.asc_SetAutoCorrectDoubleSpaceWithPeriod(checked); }); - this.chDoubleSpaces.setVisible(this.appPrefix=='de-'); // AutoCorrect this.chFLSentence = new Common.UI.CheckBox({ el: $window.find('#id-autocorrect-dialog-chk-fl-sentence'), diff --git a/apps/presentationeditor/main/app/controller/Main.js b/apps/presentationeditor/main/app/controller/Main.js index 672c06ff9..5df6928e3 100644 --- a/apps/presentationeditor/main/app/controller/Main.js +++ b/apps/presentationeditor/main/app/controller/Main.js @@ -2271,6 +2271,10 @@ define([ value = Common.localStorage.getBool("pe-settings-autoformat-fl-cells", true); Common.Utils.InternalSettings.set("pe-settings-autoformat-fl-cells", value); me.api.asc_SetAutoCorrectFirstLetterOfCells && me.api.asc_SetAutoCorrectFirstLetterOfCells(value); + + value = Common.localStorage.getBool("pe-settings-autoformat-double-space", Common.Utils.isMac); // add period with double-space in MacOs by default + Common.Utils.InternalSettings.set("pe-settings-autoformat-double-space", value); + me.api.asc_SetAutoCorrectDoubleSpaceWithPeriod(value); }, showRenameUserDialog: function() { diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json index d34ce7e77..df3295d47 100644 --- a/apps/presentationeditor/main/locale/en.json +++ b/apps/presentationeditor/main/locale/en.json @@ -316,6 +316,7 @@ "Common.Views.AutoCorrectDialog.warnReplace": "The autocorrect entry for %1 already exists. Do you want to replace it?", "Common.Views.AutoCorrectDialog.warnReset": "Any autocorrect you added will be removed and the changed ones will be restored to their original values. Do you want to continue?", "Common.Views.AutoCorrectDialog.warnRestore": "The autocorrect entry for %1 will be reset to its original value. Do you want to continue?", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Add period with double-space", "Common.Views.Chat.textSend": "Send", "Common.Views.Comments.mniAuthorAsc": "Author A to Z", "Common.Views.Comments.mniAuthorDesc": "Author Z to A", From 91f1b77a6c1cf3ba62d747df6918e0ef90d9a4d9 Mon Sep 17 00:00:00 2001 From: OVSharova Date: Thu, 20 Jan 2022 01:25:39 +0300 Subject: [PATCH 054/217] Update for all effect families --- apps/common/main/lib/util/define.js | 139 ++++++++++++------ .../main/app/controller/Animation.js | 13 +- .../main/app/view/Animation.js | 54 ++++--- 3 files changed, 127 insertions(+), 79 deletions(-) diff --git a/apps/common/main/lib/util/define.js b/apps/common/main/lib/util/define.js index 099c4657c..8f54a265e 100644 --- a/apps/common/main/lib/util/define.js +++ b/apps/common/main/lib/util/define.js @@ -789,6 +789,11 @@ define(function(){ 'use strict'; textOut: 'Out', textWedge: 'Wedge', textFlip: 'Flip', + textLines: 'Lines', + textArcs: 'Arcs', + textTurns: 'Turnes', + textShapes: 'Shapes', + textLoops: 'Loops', getEffectGroupData: function () { return [ @@ -844,20 +849,20 @@ define(function(){ 'use strict'; {group: 'menu-effect-group-exit', value: AscFormat.EXIT_ZOOM, iconCls: 'animation-exit-zoom', displayValue: this.textZoom}, {group: 'menu-effect-group-exit', value: AscFormat.EXIT_BASIC_SWIVEL, iconCls: 'animation-exit-swivel', displayValue: this.textSwivel}, {group: 'menu-effect-group-exit', value: AscFormat.EXIT_BOUNCE, iconCls: 'animation-exit-bounce', displayValue: this.textBounce}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_DOWN, iconCls: 'animation-motion_paths-lines', displayValue: this.textDown}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_LEFT, iconCls: 'animation-motion_paths-lines', displayValue: this.textLeft}, + {group: 'menu-effect-group-path', value: AscFormat.MOTION_DOWN, iconCls: 'animation-motion_paths-lines', displayValue: this.textLines, familyEffect: 'pathlines'}, + /*{group: 'menu-effect-group-path', value: AscFormat.MOTION_LEFT, iconCls: 'animation-motion_paths-lines', displayValue: this.textLeft}, {group: 'menu-effect-group-path', value: AscFormat.MOTION_RIGHT, iconCls: 'animation-motion_paths-lines', displayValue: this.textRight}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_UP, iconCls: 'animation-motion_paths-lines', displayValue: this.textUp}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_ARC_DOWN, iconCls: 'animation-motion_paths-arcs', displayValue: this.textArcDown}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_ARC_LEFT, iconCls: 'animation-motion_paths-arcs', displayValue: this.textArcLeft}, + {group: 'menu-effect-group-path', value: AscFormat.MOTION_UP, iconCls: 'animation-motion_paths-lines', displayValue: this.textUp},*/ + {group: 'menu-effect-group-path', value: AscFormat.MOTION_ARC_DOWN, iconCls: 'animation-motion_paths-arcs', displayValue: this.textArcs, familyEffect: 'patharcs'}, + /*{group: 'menu-effect-group-path', value: AscFormat.MOTION_ARC_LEFT, iconCls: 'animation-motion_paths-arcs', displayValue: this.textArcLeft}, {group: 'menu-effect-group-path', value: AscFormat.MOTION_ARC_RIGHT, iconCls: 'animation-motion_paths-arcs', displayValue: this.textArcRight}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_ARC_UP, iconCls: 'animation-motion_paths-arcs', displayValue: this.textArcUp}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_TURN_DOWN, iconCls: 'animation-motion_paths-turns', displayValue: this.textTurnDown}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_TURN_DOWN_RIGHT, iconCls: 'animation-motion_paths-turns', displayValue: this.textTurnDownRight}, + {group: 'menu-effect-group-path', value: AscFormat.MOTION_ARC_UP, iconCls: 'animation-motion_paths-arcs', displayValue: this.textArcUp},*/ + {group: 'menu-effect-group-path', value: AscFormat.MOTION_TURN_DOWN, iconCls: 'animation-motion_paths-turns', displayValue: this.textTurns, familyEffect: 'pathturns'}, + /*{group: 'menu-effect-group-path', value: AscFormat.MOTION_TURN_DOWN_RIGHT, iconCls: 'animation-motion_paths-turns', displayValue: this.textTurnDownRight}, {group: 'menu-effect-group-path', value: AscFormat.MOTION_TURN_UP, iconCls: 'animation-motion_paths-turns', displayValue: this.textTurnUp}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_TURN_UP_RIGHT, iconCls: 'animation-motion_paths-turns', displayValue: this.textTurnUpRight}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_CIRCLE, iconCls: 'animation-motion_paths-shapes', displayValue: this.textCircle}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_DIAMOND, iconCls: 'animation-motion_paths-shapes', displayValue: this.textDiamond}, + {group: 'menu-effect-group-path', value: AscFormat.MOTION_TURN_UP_RIGHT, iconCls: 'animation-motion_paths-turns', displayValue: this.textTurnUpRight},*/ + {group: 'menu-effect-group-path', value: AscFormat.MOTION_CIRCLE, iconCls: 'animation-motion_paths-shapes', displayValue: this.textShapes, familyEffect: 'pathshapes'}, + /*{group: 'menu-effect-group-path', value: AscFormat.MOTION_DIAMOND, iconCls: 'animation-motion_paths-shapes', displayValue: this.textDiamond}, {group: 'menu-effect-group-path', value: AscFormat.MOTION_EQUAL_TRIANGLE, iconCls: 'animation-motion_paths-shapes', displayValue: this.textEqualTriangle}, {group: 'menu-effect-group-path', value: AscFormat.MOTION_HEXAGON, iconCls: 'animation-motion_paths-shapes', displayValue: this.textHexagon}, {group: 'menu-effect-group-path', value: AscFormat.MOTION_OCTAGON, iconCls: 'animation-motion_paths-shapes', displayValue: this.textOctagon}, @@ -865,10 +870,10 @@ define(function(){ 'use strict'; {group: 'menu-effect-group-path', value: AscFormat.MOTION_PENTAGON, iconCls: 'animation-motion_paths-shapes', displayValue: this.textPentagon}, {group: 'menu-effect-group-path', value: AscFormat.MOTION_RIGHT_TRIANGLE, iconCls: 'animation-motion_paths-shapes', displayValue: this.textRightTriangle}, {group: 'menu-effect-group-path', value: AscFormat.MOTION_SQUARE, iconCls: 'animation-motion_paths-shapes', displayValue: this.textSquare}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_TRAPEZOID, iconCls: 'animation-motion_paths-shapes', displayValue: this.textTrapezoid}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_HORIZONTAL_FIGURE_8_FOUR, iconCls: 'animation-motion_paths-loops', displayValue: this.textHorizontalFigure}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_VERTICAL_FIGURE_8, iconCls: 'animation-motion_paths-loops', displayValue: this.textVerticalFigure}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_LOOP_DE_LOOP, iconCls: 'animation-motion_paths-loops', displayValue: this.textLoopDeLoop}//, + {group: 'menu-effect-group-path', value: AscFormat.MOTION_TRAPEZOID, iconCls: 'animation-motion_paths-shapes', displayValue: this.textTrapezoid},*/ + {group: 'menu-effect-group-path', value: AscFormat.MOTION_HORIZONTAL_FIGURE_8_FOUR, iconCls: 'animation-motion_paths-loops', displayValue: this.textLoops, familyEffect: 'pathloops'}//, + /*{group: 'menu-effect-group-path', value: AscFormat.MOTION_VERTICAL_FIGURE_8, iconCls: 'animation-motion_paths-loops', displayValue: this.textVerticalFigure}, + {group: 'menu-effect-group-path', value: AscFormat.MOTION_LOOP_DE_LOOP, iconCls: 'animation-motion_paths-loops', displayValue: this.textLoopDeLoop}//,*/ //{group: 'menu-effect-group-path', value: AscFormat.MOTION_CUSTOM_PATH, iconCls: 'animation-motion_paths-custom_path', displayValue: this.textCustomPath} ]; }, @@ -994,24 +999,24 @@ define(function(){ 'use strict'; {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PATH_5_POINT_STAR, displayValue: this.textPointStar5}, {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PATH_6_POINT_STAR, displayValue: this.textPointStar6}, {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PATH_8_POINT_STAR, displayValue: this.textPointStar8}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_CIRCLE, displayValue: this.textCircle}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_CIRCLE, displayValue: this.textCircle, familyEffect: 'pathshapes'}, {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_CRESCENT_MOON, displayValue: this.textCrescentMoon}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_DIAMOND, displayValue: this.textDiamond}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_EQUAL_TRIANGLE, displayValue: this.textEqualTriangle}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_DIAMOND, displayValue: this.textDiamond, familyEffect: 'pathshapes'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_EQUAL_TRIANGLE, displayValue: this.textEqualTriangle, familyEffect: 'pathshapes'}, {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_FOOTBALL, displayValue: this.textFootball}, {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_HEART, displayValue: this.textHeart}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_HEXAGON, displayValue: this.textHexagon}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_OCTAGON, displayValue: this.textOctagon}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PARALLELOGRAM, displayValue: this.textParallelogram}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PENTAGON, displayValue: this.textPentagon}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_RIGHT_TRIANGLE, displayValue: this.textRightTriangle}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_SQUARE, displayValue: this.textSquare}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_HEXAGON, displayValue: this.textHexagon, familyEffect: 'pathshapes'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_OCTAGON, displayValue: this.textOctagon, familyEffect: 'pathshapes'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PARALLELOGRAM, displayValue: this.textParallelogram, familyEffect: 'pathshapes'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PENTAGON, displayValue: this.textPentagon, familyEffect: 'pathshapes'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_RIGHT_TRIANGLE, displayValue: this.textRightTriangle, familyEffect: 'pathshapes'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_SQUARE, displayValue: this.textSquare, familyEffect: 'pathshapes'}, {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_TEARDROP, displayValue: this.textTeardrop}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_TRAPEZOID, displayValue: this.textTrapezoid}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ARC_DOWN, displayValue: this.textArcDown}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ARC_LEFT, displayValue: this.textArcLeft}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ARC_RIGHT, displayValue: this.textArcRight}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ARC_UP, displayValue: this.textArcUp}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_TRAPEZOID, displayValue: this.textTrapezoid, familyEffect: 'pathshapes'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ARC_DOWN, displayValue: this.textArcDown, familyEffect: 'patharcs'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ARC_LEFT, displayValue: this.textArcLeft, familyEffect: 'patharcs'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ARC_RIGHT, displayValue: this.textArcRight, familyEffect: 'patharcs'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ARC_UP, displayValue: this.textArcUp, familyEffect: 'patharcs'}, {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_BOUNCE_LEFT, displayValue: this.textBounceLeft}, {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_BOUNCE_RIGHT, displayValue: this.textBounceRight}, {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_CURVY_LEFT, displayValue: this.textCurvyLeft}, @@ -1019,10 +1024,11 @@ define(function(){ 'use strict'; {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_DECAYING_WAVE, displayValue: this.textDecayingWave}, {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_DIAGONAL_DOWN_RIGHT, displayValue: this.textDiagonalDownRight}, {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_DIAGONAL_UP_RIGHT, displayValue: this.textDiagonalUpRight}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_DOWN, displayValue: this.textDown}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_DOWN, displayValue: this.textDown, familyEffect: 'pathlines'}, {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_FUNNEL, displayValue: this.textFunnel}, {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_HEARTBEAT, displayValue: this.textHeartbeat}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_LEFT, displayValue: this.textLeft}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_LEFT, displayValue: this.textLeft, familyEffect: 'pathlines'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_RIGHT, displayValue: this.textRight, familyEffect: 'pathlines'}, {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_S_CURVE_1, displayValue: this.textSCurve1}, {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_S_CURVE_2, displayValue: this.textSCurve2}, {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_SINE_WAVE, displayValue: this.textSineWave}, @@ -1030,11 +1036,11 @@ define(function(){ 'use strict'; {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_SINE_SPIRAL_RIGHT, displayValue: this.textSpiralRight}, {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_SPRING, displayValue: this.textSpring}, {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_STAIRS_DOWN, displayValue: this.textStairsDown}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_TURN_DOWN, displayValue: this.textTurnDown}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_TURN_DOWN_RIGHT, displayValue: this.textTurnDownRight}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_TURN_UP, displayValue: this.textTurnUp}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_TURN_UP_RIGHT, displayValue: this.textTurnUpRight}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_UP, displayValue: this.textUp}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_TURN_DOWN, displayValue: this.textTurnDown, familyEffect: 'pathturns'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_TURN_DOWN_RIGHT, displayValue: this.textTurnDownRight, familyEffect: 'pathturns'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_TURN_UP, displayValue: this.textTurnUp, familyEffect: 'pathturns'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_TURN_UP_RIGHT, displayValue: this.textTurnUpRight, familyEffect: 'pathturns'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_UP, displayValue: this.textUp, familyEffect: 'pathlines'}, {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_WAVE, displayValue: this.textWave}, {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ZIGZAG, displayValue: this.textZigzag}, {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_BEAN, displayValue: this.textBean}, @@ -1042,15 +1048,15 @@ define(function(){ 'use strict'; {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_CURVED_X, displayValue: this.textCurvedX}, {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_CURVY_STAR, displayValue: this.textCurvyStar}, {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_FIGURE_8_FOUR, displayValue: this.textFigureFour}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_HORIZONTAL_FIGURE_8_FOUR, displayValue: this.textHorizontalFigure}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_HORIZONTAL_FIGURE_8_FOUR, displayValue: this.textHorizontalFigure, familyEffect: 'pathloops'}, {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_INVERTED_SQUARE, displayValue: this.textInvertedSquare}, {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_INVERTED_TRIANGLE, displayValue: this.textInvertedTriangle}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_LOOP_DE_LOOP, displayValue: this.textLoopDeLoop}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_LOOP_DE_LOOP, displayValue: this.textLoopDeLoop, familyEffect: 'pathloops'}, {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_NEUTRON, displayValue: this.textNeutron}, {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_PEANUT, displayValue: this.textPeanut}, {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_POINTY_STAR, displayValue: this.textPointStar}, {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_SWOOSH, displayValue: this.textSwoosh}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_VERTICAL_FIGURE_8, displayValue: this.textVerticalFigure} + {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_VERTICAL_FIGURE_8, displayValue: this.textVerticalFigure, familyEffect: 'pathloops'} ]; }, @@ -1297,17 +1303,58 @@ define(function(){ 'use strict'; switch (familyEffect){ case 'shape': return [ - {value: AscFormat.EXIT_BOX, caption: this.textBox}, - {value: AscFormat.EXIT_CIRCLE, caption: this.textCircle}, - {value: AscFormat.EXIT_PLUS, caption: this.textPlus}, + {value: AscFormat.EXIT_BOX, caption: this.textBox}, + {value: AscFormat.EXIT_CIRCLE, caption: this.textCircle}, + {value: AscFormat.EXIT_PLUS, caption: this.textPlus}, {value: AscFormat.EXIT_DIAMOND, caption: this.textDiamond} ]; case 'entrshape': return [ - {value: AscFormat.ENTRANCE_BOX, displayValue: this.textBox}, - {value: AscFormat.ENTRANCE_CIRCLE, displayValue: this.textCircle}, - {value: AscFormat.ENTRANCE_PLUS, displayValue: this.textPlus}, - {value: AscFormat.ENTRANCE_DIAMOND, displayValue: this.textDiamond}, + {value: AscFormat.ENTRANCE_BOX, caption: this.textBox}, + {value: AscFormat.ENTRANCE_CIRCLE, caption: this.textCircle}, + {value: AscFormat.ENTRANCE_PLUS, caption: this.textPlus}, + {value: AscFormat.ENTRANCE_DIAMOND, caption: this.textDiamond} + ]; + case 'pathlines': + return[ + {value: AscFormat.MOTION_DOWN, caption: this.textDown}, + {value: AscFormat.MOTION_LEFT, caption: this.textLeft}, + {value: AscFormat.MOTION_RIGHT, caption: this.textRight}, + {value: AscFormat.MOTION_UP, caption: this.textUp} + ]; + case 'patharcs': + return [ + {value: AscFormat.MOTION_ARC_DOWN, caption: this.textArcDown}, + {value: AscFormat.MOTION_ARC_LEFT, caption: this.textArcLeft}, + {value: AscFormat.MOTION_ARC_RIGHT, caption: this.textArcRight}, + {value: AscFormat.MOTION_ARC_UP, caption: this.textArcUp} + ]; + case 'pathturns': + return [ + {value: AscFormat.MOTION_TURN_DOWN, caption: this.textTurnDown}, + {value: AscFormat.MOTION_TURN_DOWN_RIGHT, caption: this.textTurnDownRight}, + {value: AscFormat.MOTION_TURN_UP, caption: this.textTurnUp}, + {value: AscFormat.MOTION_TURN_UP_RIGHT, caption: this.textTurnUpRight} + ]; + case 'pathshapes': + return [ + {value: AscFormat.MOTION_CIRCLE, caption: this.textCircle}, + {value: AscFormat.MOTION_DIAMOND, caption: this.textDiamond}, + {value: AscFormat.MOTION_EQUAL_TRIANGLE, caption: this.textEqualTriangle}, + {value: AscFormat.MOTION_HEXAGON, caption: this.textHexagon}, + {value: AscFormat.MOTION_OCTAGON, caption: this.textOctagon}, + {value: AscFormat.MOTION_PARALLELOGRAM, caption: this.textParallelogram}, + {value: AscFormat.MOTION_PENTAGON, caption: this.textPentagon}, + {value: AscFormat.MOTION_RIGHT_TRIANGLE, caption: this.textRightTriangle}, + {value: AscFormat.MOTION_SQUARE, caption: this.textSquare}, + {value: AscFormat.MOTION_TRAPEZOID, caption: this.textTrapezoid} + + ]; + case 'pathloops': + return [ + {value: AscFormat.MOTION_HORIZONTAL_FIGURE_8_FOUR, caption: this.textHorizontalFigure}, + {value: AscFormat.MOTION_VERTICAL_FIGURE_8, caption: this.textVerticalFigure}, + {value: AscFormat.MOTION_LOOP_DE_LOOP, caption: this.textLoopDeLoop} ]; default: return []; diff --git a/apps/presentationeditor/main/app/controller/Animation.js b/apps/presentationeditor/main/app/controller/Animation.js index ea98879f8..f4c8c1664 100644 --- a/apps/presentationeditor/main/app/controller/Animation.js +++ b/apps/presentationeditor/main/app/controller/Animation.js @@ -186,7 +186,7 @@ define([ }, addNewEffect: function (type, group, groupName, replace, parametr) { - if (this._state.Effect == type) return; + if (this._state.Effect == type && this._state.EffectGroup == group && replace) return; var parameter = this.view.setMenuParameters(type, groupName, parametr); this.api.asc_AddAnimation(group, type, (parameter != undefined)?parameter:0, replace); }, @@ -345,8 +345,8 @@ define([ this._state.EffectGroup = group; group = view.listEffects.groups.findWhere({value: this._state.EffectGroup}); - var familyEffect = _.findWhere(view.allEffects, group ? {group: group.get('id'), value: this._state.Effect} : {value: this._state.Effect}).familyEffect; - + var effect =_.findWhere(view.allEffects, group ? {group: group.get('id'), value: this._state.Effect} : {value: this._state.Effect}); + var familyEffect = (effect) ? effect.familyEffect : undefined; item = (!familyEffect) ? store.findWhere(group ? {group: group.get('id'), value: value} : {value: value}) : store.findWhere(group ? {group: group.get('id'), familyEffect: familyEffect} : {familyEffect: familyEffect}); if (item) { @@ -400,8 +400,11 @@ define([ } this._state.EffectOption = this.AnimationProperties.asc_getSubtype(); - if (this._state.EffectOption !== undefined && this._state.EffectOption !== null) - this._state.noAnimationParam = view.setMenuParameters(this._state.Effect, _.findWhere(this.EffectGroups,{value: this._state.EffectGroup}).id, this._state.EffectOption)===undefined; + if (this._state.EffectOption !== undefined && this._state.EffectOption !== null){ + view.setMenuParameters(this._state.Effect, _.findWhere(this.EffectGroups,{value: this._state.EffectGroup}).id, this._state.EffectOption)===undefined; + this._state.noAnimationParam = view.btnParameters.menu.items.length === 0; + } + value = this.AnimationProperties.asc_getDuration(); if (Math.abs(this._state.Duration - value) > 0.001 || diff --git a/apps/presentationeditor/main/app/view/Animation.js b/apps/presentationeditor/main/app/view/Animation.js index 7e61eff2b..e75b644de 100644 --- a/apps/presentationeditor/main/app/view/Animation.js +++ b/apps/presentationeditor/main/app/view/Animation.js @@ -169,7 +169,6 @@ define([ this.$el = this.toolbar.toolbar.$el.find('#animation-panel'); var _set = PE.enumLock; this.lockedControls = []; - this._arrEffectName = [{group:'none', value: AscFormat.ANIM_PRESET_NONE, iconCls: 'animation-none', displayValue: this.textNone}].concat(Common.define.effectData.getEffectData()); _.forEach(this._arrEffectName,function (elm){ elm.tip = elm.displayValue; @@ -504,44 +503,43 @@ define([ setMenuParameters: function (effectId, effectGroup, option) { - var arrEffectOptions; + var arrEffectOptions,selectedElement; var effect = _.findWhere(this.allEffects, {group: effectGroup, value: effectId}); if(effect) arrEffectOptions = Common.define.effectData.getEffectOptionsData(effect.group, effect.value); - if(!arrEffectOptions) { + if((this._effectId != effectId && this._familyEffect != effect.familyEffect) || (this._groupName != effectGroup)) { this.btnParameters.menu.removeAll(); - this._effectId = effectId - return undefined; } - var selectedElement; - if (this._effectId != effectId) { - this.btnParameters.menu.removeAll(); - arrEffectOptions.forEach(function (opt, index) { - opt.checkable = true; - opt.toggleGroup ='animateeffects'; - this.btnParameters.menu.addItem(opt); - (opt.value==option) && (selectedElement = this.btnParameters.menu.items[index]); - }, this); - if(effect.familyEffect){ - this.btnParameters.menu.addItem({caption: '--'}); - var effectsArray = Common.define.effectData.getSimilarEffectsArray(effectGroup,effect.familyEffect); - effectsArray.forEach(function (opt) { + if (arrEffectOptions){ + if (this.btnParameters.menu.items.length == 0) { + arrEffectOptions.forEach(function (opt, index) { opt.checkable = true; - opt.toggleGroup = 'animatesimilareffects' + opt.toggleGroup = 'animateeffects'; this.btnParameters.menu.addItem(opt); - (opt.value == effectId) && this.btnParameters.menu.items[this.btnParameters.menu.items.length-1].setChecked(); - },this); + (opt.value == option) && (selectedElement = this.btnParameters.menu.items[index]); + }, this); + (effect.familyEffect) && this.btnParameters.menu.addItem({caption: '--'}); + } else { + this.btnParameters.menu.items.forEach(function (opt) { + (opt.value == option) && (selectedElement = opt); + }); } + (selectedElement == undefined) && (selectedElement = this.btnParameters.menu.items[0]) + selectedElement.setChecked(true); } - else { - this.btnParameters.menu.items.forEach(function (opt) { - (opt.value == option) && (selectedElement = opt); - }); + if (effect.familyEffect && this._familyEffect != effect.familyEffect) { + var effectsArray = Common.define.effectData.getSimilarEffectsArray(effectGroup, effect.familyEffect); + effectsArray.forEach(function (opt) { + opt.checkable = true; + opt.toggleGroup = 'animatesimilareffects' + this.btnParameters.menu.addItem(opt); + (opt.value == effectId) && this.btnParameters.menu.items[this.btnParameters.menu.items.length - 1].setChecked(); + }, this); } - (selectedElement == undefined) && (selectedElement = this.btnParameters.menu.items[0]) - selectedElement.setChecked(true); this._effectId = effectId; - return selectedElement.value; + this._groupName = effectGroup; + this._familyEffect = effect.familyEffect; + return selectedElement ? selectedElement.value : undefined; }, From 45863f9a2d3edcd6c2ae08af1f5a2402d3a695d3 Mon Sep 17 00:00:00 2001 From: OVSharova Date: Thu, 20 Jan 2022 01:44:46 +0300 Subject: [PATCH 055/217] add to en.json --- apps/common/main/lib/util/define.js | 110 ++++++++------------ apps/presentationeditor/main/locale/en.json | 5 + 2 files changed, 48 insertions(+), 67 deletions(-) diff --git a/apps/common/main/lib/util/define.js b/apps/common/main/lib/util/define.js index 8f54a265e..e23cb4d7a 100644 --- a/apps/common/main/lib/util/define.js +++ b/apps/common/main/lib/util/define.js @@ -791,7 +791,7 @@ define(function(){ 'use strict'; textFlip: 'Flip', textLines: 'Lines', textArcs: 'Arcs', - textTurns: 'Turnes', + textTurns: 'Turns', textShapes: 'Shapes', textLoops: 'Loops', @@ -812,7 +812,7 @@ define(function(){ 'use strict'; {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_FLOAT, iconCls: 'animation-entrance-float_in', displayValue: this.textFloatIn}, {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_SPLIT, iconCls: 'animation-entrance-split', displayValue: this.textSplit}, {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_WIPE_FROM, iconCls: 'animation-entrance-wipe', displayValue: this.textWipe}, - {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_BOX, iconCls: 'animation-entrance-shape', displayValue: this.textShape, familyEffect: 'entrshape'}, + {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_BOX, iconCls: 'animation-entrance-shape', displayValue: this.textShape, familyEffect: 'entrshape'}, {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_WHEEL, iconCls: 'animation-entrance-wheel', displayValue: this.textWheel}, {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_RANDOM_BARS, iconCls: 'animation-entrance-random_bars', displayValue: this.textRandomBars}, {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_GROW_AND_TURN, iconCls: 'animation-entrance-grow_turn', displayValue: this.textGrowTurn}, @@ -838,43 +838,19 @@ define(function(){ 'use strict'; {group: 'menu-effect-group-exit', value: AscFormat.EXIT_FLOAT, iconCls: 'animation-exit-float_out', displayValue: this.textFloatOut}, {group: 'menu-effect-group-exit', value: AscFormat.EXIT_SPLIT, iconCls: 'animation-exit-split', displayValue: this.textSplit}, {group: 'menu-effect-group-exit', value: AscFormat.EXIT_WIPE_FROM, iconCls: 'animation-exit-wipe', displayValue: this.textWipe}, - {group: 'menu-effect-group-exit', value: AscFormat.EXIT_BOX, iconCls: 'animation-exit-shape', displayValue: this.textShape, familyEffect: 'shape'}, - /*{group: 'menu-effect-group-exit', value: AscFormat.EXIT_BOX, iconCls: 'animation-exit-shape', displayValue: this.textBox}, - {group: 'menu-effect-group-exit', value: AscFormat.EXIT_CIRCLE, iconCls: 'animation-exit-shape', displayValue: this.textCircle}, - {group: 'menu-effect-group-exit', value: AscFormat.EXIT_PLUS, iconCls: 'animation-exit-shape', displayValue: this.textPlus}, - {group: 'menu-effect-group-exit', value: AscFormat.EXIT_DIAMOND, iconCls: 'animation-exit-shape', displayValue: this.textDiamond},*/ + {group: 'menu-effect-group-exit', value: AscFormat.EXIT_BOX, iconCls: 'animation-exit-shape', displayValue: this.textShape, familyEffect: 'shape'}, {group: 'menu-effect-group-exit', value: AscFormat.EXIT_WHEEL, iconCls: 'animation-exit-wheel', displayValue: this.textWheel}, {group: 'menu-effect-group-exit', value: AscFormat.EXIT_RANDOM_BARS, iconCls: 'animation-exit-random_bars', displayValue: this.textRandomBars}, {group: 'menu-effect-group-exit', value: AscFormat.EXIT_SHRINK_AND_TURN, iconCls: 'animation-exit-shrink_turn', displayValue: this.textShrinkTurn}, {group: 'menu-effect-group-exit', value: AscFormat.EXIT_ZOOM, iconCls: 'animation-exit-zoom', displayValue: this.textZoom}, {group: 'menu-effect-group-exit', value: AscFormat.EXIT_BASIC_SWIVEL, iconCls: 'animation-exit-swivel', displayValue: this.textSwivel}, {group: 'menu-effect-group-exit', value: AscFormat.EXIT_BOUNCE, iconCls: 'animation-exit-bounce', displayValue: this.textBounce}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_DOWN, iconCls: 'animation-motion_paths-lines', displayValue: this.textLines, familyEffect: 'pathlines'}, - /*{group: 'menu-effect-group-path', value: AscFormat.MOTION_LEFT, iconCls: 'animation-motion_paths-lines', displayValue: this.textLeft}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_RIGHT, iconCls: 'animation-motion_paths-lines', displayValue: this.textRight}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_UP, iconCls: 'animation-motion_paths-lines', displayValue: this.textUp},*/ - {group: 'menu-effect-group-path', value: AscFormat.MOTION_ARC_DOWN, iconCls: 'animation-motion_paths-arcs', displayValue: this.textArcs, familyEffect: 'patharcs'}, - /*{group: 'menu-effect-group-path', value: AscFormat.MOTION_ARC_LEFT, iconCls: 'animation-motion_paths-arcs', displayValue: this.textArcLeft}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_ARC_RIGHT, iconCls: 'animation-motion_paths-arcs', displayValue: this.textArcRight}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_ARC_UP, iconCls: 'animation-motion_paths-arcs', displayValue: this.textArcUp},*/ - {group: 'menu-effect-group-path', value: AscFormat.MOTION_TURN_DOWN, iconCls: 'animation-motion_paths-turns', displayValue: this.textTurns, familyEffect: 'pathturns'}, - /*{group: 'menu-effect-group-path', value: AscFormat.MOTION_TURN_DOWN_RIGHT, iconCls: 'animation-motion_paths-turns', displayValue: this.textTurnDownRight}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_TURN_UP, iconCls: 'animation-motion_paths-turns', displayValue: this.textTurnUp}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_TURN_UP_RIGHT, iconCls: 'animation-motion_paths-turns', displayValue: this.textTurnUpRight},*/ - {group: 'menu-effect-group-path', value: AscFormat.MOTION_CIRCLE, iconCls: 'animation-motion_paths-shapes', displayValue: this.textShapes, familyEffect: 'pathshapes'}, - /*{group: 'menu-effect-group-path', value: AscFormat.MOTION_DIAMOND, iconCls: 'animation-motion_paths-shapes', displayValue: this.textDiamond}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_EQUAL_TRIANGLE, iconCls: 'animation-motion_paths-shapes', displayValue: this.textEqualTriangle}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_HEXAGON, iconCls: 'animation-motion_paths-shapes', displayValue: this.textHexagon}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_OCTAGON, iconCls: 'animation-motion_paths-shapes', displayValue: this.textOctagon}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_PARALLELOGRAM, iconCls: 'animation-motion_paths-shapes', displayValue: this.textParallelogram}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_PENTAGON, iconCls: 'animation-motion_paths-shapes', displayValue: this.textPentagon}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_RIGHT_TRIANGLE, iconCls: 'animation-motion_paths-shapes', displayValue: this.textRightTriangle}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_SQUARE, iconCls: 'animation-motion_paths-shapes', displayValue: this.textSquare}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_TRAPEZOID, iconCls: 'animation-motion_paths-shapes', displayValue: this.textTrapezoid},*/ - {group: 'menu-effect-group-path', value: AscFormat.MOTION_HORIZONTAL_FIGURE_8_FOUR, iconCls: 'animation-motion_paths-loops', displayValue: this.textLoops, familyEffect: 'pathloops'}//, - /*{group: 'menu-effect-group-path', value: AscFormat.MOTION_VERTICAL_FIGURE_8, iconCls: 'animation-motion_paths-loops', displayValue: this.textVerticalFigure}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_LOOP_DE_LOOP, iconCls: 'animation-motion_paths-loops', displayValue: this.textLoopDeLoop}//,*/ - //{group: 'menu-effect-group-path', value: AscFormat.MOTION_CUSTOM_PATH, iconCls: 'animation-motion_paths-custom_path', displayValue: this.textCustomPath} + {group: 'menu-effect-group-path', value: AscFormat.MOTION_DOWN, iconCls: 'animation-motion_paths-lines', displayValue: this.textLines, familyEffect: 'pathlines'}, + {group: 'menu-effect-group-path', value: AscFormat.MOTION_ARC_DOWN, iconCls: 'animation-motion_paths-arcs', displayValue: this.textArcs, familyEffect: 'patharcs'}, + {group: 'menu-effect-group-path', value: AscFormat.MOTION_TURN_DOWN, iconCls: 'animation-motion_paths-turns', displayValue: this.textTurns, familyEffect: 'pathturns'}, + {group: 'menu-effect-group-path', value: AscFormat.MOTION_CIRCLE, iconCls: 'animation-motion_paths-shapes', displayValue: this.textShapes, familyEffect: 'pathshapes'}, + {group: 'menu-effect-group-path', value: AscFormat.MOTION_HORIZONTAL_FIGURE_8_FOUR, iconCls: 'animation-motion_paths-loops', displayValue: this.textLoops, familyEffect: 'pathloops'}//, + //{group: 'menu-effect-group-path', value: AscFormat.MOTION_CUSTOM_PATH, iconCls: 'animation-motion_paths-custom_path', displayValue: this.textCustomPath} ]; }, @@ -899,14 +875,14 @@ define(function(){ 'use strict'; return [ {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_APPEAR, displayValue: this.textAppear}, {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_BLINDS, displayValue: this.textBlinds}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_BOX, displayValue: this.textBox, familyEffect: 'entrshape'}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_BOX, displayValue: this.textBox, familyEffect: 'entrshape'}, {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_CHECKERBOARD, displayValue: this.textCheckerboard}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_CIRCLE, displayValue: this.textCircle, familyEffect: 'entrshape'}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_DIAMOND, displayValue: this.textDiamond, familyEffect: 'entrshape'}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_CIRCLE, displayValue: this.textCircle, familyEffect: 'entrshape'}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_DIAMOND, displayValue: this.textDiamond, familyEffect: 'entrshape'}, {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_DISSOLVE_IN, displayValue: this.textDissolveIn}, {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_FLY_IN_FROM, displayValue: this.textFlyIn}, {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_PEEK_IN_FROM, displayValue: this.textPeekIn}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_PLUS, displayValue: this.textPlus, familyEffect: 'entrshape'}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_PLUS, displayValue: this.textPlus, familyEffect: 'entrshape'}, {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_RANDOM_BARS, displayValue: this.textRandomBars}, {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_SPLIT, displayValue: this.textSplit}, {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_STRIPS, displayValue: this.textStrips}, @@ -956,15 +932,15 @@ define(function(){ 'use strict'; {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-moderate', value: AscFormat.EMPHASIS_TEETER, displayValue: this.textTeeter}, {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-exciting', value: AscFormat.EMPHASIS_BLINK, displayValue: this.textBlink}, {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_BLINDS, displayValue: this.textBlinds}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_BOX, displayValue: this.textBox, familyEffect: 'shape'}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_BOX, displayValue: this.textBox, familyEffect: 'shape'}, {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_CHECKERBOARD, displayValue: this.textCheckerboard}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_CIRCLE, displayValue: this.textCircle, familyEffect: 'shape'}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_DIAMOND, displayValue: this.textDiamond, familyEffect: 'shape'}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_CIRCLE, displayValue: this.textCircle, familyEffect: 'shape'}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_DIAMOND, displayValue: this.textDiamond, familyEffect: 'shape'}, {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_DISAPPEAR, displayValue: this.textDisappear}, {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_DISSOLVE_OUT, displayValue: this.textDissolveOut}, {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_FLY_OUT_TO, displayValue: this.textFlyOut}, {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_PEEK_OUT_TO, displayValue: this.textPeekOut}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_PLUS, displayValue: this.textPlus, familyEffect: 'shape'}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_PLUS, displayValue: this.textPlus, familyEffect: 'shape'}, {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_RANDOM_BARS, displayValue: this.textRandomBars}, {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_SPLIT, displayValue: this.textSplit}, {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_STRIPS, displayValue: this.textStrips}, @@ -981,7 +957,7 @@ define(function(){ 'use strict'; {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_FLOAT_DOWN, displayValue: this.textFloatDown}, {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_FLOAT_UP, displayValue: this.textFloatUp}, {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_SHRINK_AND_TURN, displayValue: this.textShrinkTurn}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_SINK_DOWN, displayValue: this.textSinkDown}, //sink down- EXIT_SHRINK_DOWN? + {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_SINK_DOWN, displayValue: this.textSinkDown}, {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_SPINNER, displayValue: this.textSpinner}, {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_STRETCHY, displayValue: this.textStretch}, {group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_BASIC_SWIVEL, displayValue: this.textBasicSwivel}, @@ -999,24 +975,24 @@ define(function(){ 'use strict'; {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PATH_5_POINT_STAR, displayValue: this.textPointStar5}, {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PATH_6_POINT_STAR, displayValue: this.textPointStar6}, {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PATH_8_POINT_STAR, displayValue: this.textPointStar8}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_CIRCLE, displayValue: this.textCircle, familyEffect: 'pathshapes'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_CIRCLE, displayValue: this.textCircle, familyEffect: 'pathshapes'}, {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_CRESCENT_MOON, displayValue: this.textCrescentMoon}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_DIAMOND, displayValue: this.textDiamond, familyEffect: 'pathshapes'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_EQUAL_TRIANGLE, displayValue: this.textEqualTriangle, familyEffect: 'pathshapes'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_DIAMOND, displayValue: this.textDiamond, familyEffect: 'pathshapes'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_EQUAL_TRIANGLE, displayValue: this.textEqualTriangle, familyEffect: 'pathshapes'}, {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_FOOTBALL, displayValue: this.textFootball}, {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_HEART, displayValue: this.textHeart}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_HEXAGON, displayValue: this.textHexagon, familyEffect: 'pathshapes'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_OCTAGON, displayValue: this.textOctagon, familyEffect: 'pathshapes'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PARALLELOGRAM, displayValue: this.textParallelogram, familyEffect: 'pathshapes'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PENTAGON, displayValue: this.textPentagon, familyEffect: 'pathshapes'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_RIGHT_TRIANGLE, displayValue: this.textRightTriangle, familyEffect: 'pathshapes'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_SQUARE, displayValue: this.textSquare, familyEffect: 'pathshapes'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_HEXAGON, displayValue: this.textHexagon, familyEffect: 'pathshapes'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_OCTAGON, displayValue: this.textOctagon, familyEffect: 'pathshapes'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PARALLELOGRAM, displayValue: this.textParallelogram, familyEffect: 'pathshapes'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PENTAGON, displayValue: this.textPentagon, familyEffect: 'pathshapes'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_RIGHT_TRIANGLE, displayValue: this.textRightTriangle, familyEffect: 'pathshapes'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_SQUARE, displayValue: this.textSquare, familyEffect: 'pathshapes'}, {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_TEARDROP, displayValue: this.textTeardrop}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_TRAPEZOID, displayValue: this.textTrapezoid, familyEffect: 'pathshapes'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ARC_DOWN, displayValue: this.textArcDown, familyEffect: 'patharcs'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ARC_LEFT, displayValue: this.textArcLeft, familyEffect: 'patharcs'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ARC_RIGHT, displayValue: this.textArcRight, familyEffect: 'patharcs'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ARC_UP, displayValue: this.textArcUp, familyEffect: 'patharcs'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_TRAPEZOID, displayValue: this.textTrapezoid, familyEffect: 'pathshapes'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ARC_DOWN, displayValue: this.textArcDown, familyEffect: 'patharcs'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ARC_LEFT, displayValue: this.textArcLeft, familyEffect: 'patharcs'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ARC_RIGHT, displayValue: this.textArcRight, familyEffect: 'patharcs'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ARC_UP, displayValue: this.textArcUp, familyEffect: 'patharcs'}, {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_BOUNCE_LEFT, displayValue: this.textBounceLeft}, {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_BOUNCE_RIGHT, displayValue: this.textBounceRight}, {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_CURVY_LEFT, displayValue: this.textCurvyLeft}, @@ -1024,11 +1000,11 @@ define(function(){ 'use strict'; {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_DECAYING_WAVE, displayValue: this.textDecayingWave}, {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_DIAGONAL_DOWN_RIGHT, displayValue: this.textDiagonalDownRight}, {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_DIAGONAL_UP_RIGHT, displayValue: this.textDiagonalUpRight}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_DOWN, displayValue: this.textDown, familyEffect: 'pathlines'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_DOWN, displayValue: this.textDown, familyEffect: 'pathlines'}, {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_FUNNEL, displayValue: this.textFunnel}, {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_HEARTBEAT, displayValue: this.textHeartbeat}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_LEFT, displayValue: this.textLeft, familyEffect: 'pathlines'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_RIGHT, displayValue: this.textRight, familyEffect: 'pathlines'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_LEFT, displayValue: this.textLeft, familyEffect: 'pathlines'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_RIGHT, displayValue: this.textRight, familyEffect: 'pathlines'}, {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_S_CURVE_1, displayValue: this.textSCurve1}, {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_S_CURVE_2, displayValue: this.textSCurve2}, {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_SINE_WAVE, displayValue: this.textSineWave}, @@ -1036,11 +1012,11 @@ define(function(){ 'use strict'; {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_SINE_SPIRAL_RIGHT, displayValue: this.textSpiralRight}, {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_SPRING, displayValue: this.textSpring}, {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_STAIRS_DOWN, displayValue: this.textStairsDown}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_TURN_DOWN, displayValue: this.textTurnDown, familyEffect: 'pathturns'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_TURN_DOWN_RIGHT, displayValue: this.textTurnDownRight, familyEffect: 'pathturns'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_TURN_UP, displayValue: this.textTurnUp, familyEffect: 'pathturns'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_TURN_UP_RIGHT, displayValue: this.textTurnUpRight, familyEffect: 'pathturns'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_UP, displayValue: this.textUp, familyEffect: 'pathlines'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_TURN_DOWN, displayValue: this.textTurnDown, familyEffect: 'pathturns'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_TURN_DOWN_RIGHT, displayValue: this.textTurnDownRight, familyEffect: 'pathturns'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_TURN_UP, displayValue: this.textTurnUp, familyEffect: 'pathturns'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_TURN_UP_RIGHT, displayValue: this.textTurnUpRight, familyEffect: 'pathturns'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_UP, displayValue: this.textUp, familyEffect: 'pathlines'}, {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_WAVE, displayValue: this.textWave}, {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ZIGZAG, displayValue: this.textZigzag}, {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_BEAN, displayValue: this.textBean}, @@ -1048,15 +1024,15 @@ define(function(){ 'use strict'; {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_CURVED_X, displayValue: this.textCurvedX}, {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_CURVY_STAR, displayValue: this.textCurvyStar}, {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_FIGURE_8_FOUR, displayValue: this.textFigureFour}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_HORIZONTAL_FIGURE_8_FOUR, displayValue: this.textHorizontalFigure, familyEffect: 'pathloops'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_HORIZONTAL_FIGURE_8_FOUR, displayValue: this.textHorizontalFigure, familyEffect: 'pathloops'}, {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_INVERTED_SQUARE, displayValue: this.textInvertedSquare}, {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_INVERTED_TRIANGLE, displayValue: this.textInvertedTriangle}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_LOOP_DE_LOOP, displayValue: this.textLoopDeLoop, familyEffect: 'pathloops'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_LOOP_DE_LOOP, displayValue: this.textLoopDeLoop, familyEffect: 'pathloops'}, {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_NEUTRON, displayValue: this.textNeutron}, {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_PEANUT, displayValue: this.textPeanut}, {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_POINTY_STAR, displayValue: this.textPointStar}, {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_SWOOSH, displayValue: this.textSwoosh}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_VERTICAL_FIGURE_8, displayValue: this.textVerticalFigure, familyEffect: 'pathloops'} + {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_VERTICAL_FIGURE_8, displayValue: this.textVerticalFigure, familyEffect: 'pathloops'} ]; }, diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json index 02a737a24..ed7ff98fc 100644 --- a/apps/presentationeditor/main/locale/en.json +++ b/apps/presentationeditor/main/locale/en.json @@ -52,6 +52,7 @@ "Common.define.effectData.textArcDown": "Arc Down", "Common.define.effectData.textArcLeft": "Arc Left", "Common.define.effectData.textArcRight": "Arc Right", + "Common.define.effectData.textArcs": "Arcs", "Common.define.effectData.textArcUp": "Arc Up", "Common.define.effectData.textBasic": "Basic", "Common.define.effectData.textBasicSwivel": "Basic Swivel", @@ -147,8 +148,10 @@ "Common.define.effectData.textLeftUp": " Left Up", "Common.define.effectData.textLighten": "Lighten", "Common.define.effectData.textLineColor": "Line Color", + "Common.define.effectData.textLines": "Lines", "Common.define.effectData.textLinesCurves": "Lines Curves", "Common.define.effectData.textLoopDeLoop": "Loop de Loop", + "Common.define.effectData.textLoops": "Loops", "Common.define.effectData.textModerate": "Moderate", "Common.define.effectData.textNeutron": "Neutron", "Common.define.effectData.textObjectCenter": "Object Center", @@ -180,6 +183,7 @@ "Common.define.effectData.textSCurve1": "S Curve 1", "Common.define.effectData.textSCurve2": "S Curve 2", "Common.define.effectData.textShape": "Shape", + "Common.define.effectData.textShapes": "Shapes", "Common.define.effectData.textShimmer": "Shimmer", "Common.define.effectData.textShrinkTurn": "Shrink & Turn", "Common.define.effectData.textSineWave": "Sine Wave", @@ -221,6 +225,7 @@ "Common.define.effectData.textTrapezoid": "Trapezoid", "Common.define.effectData.textTurnDown": "Turn Down", "Common.define.effectData.textTurnDownRight": "Turn Down Right", + "Common.define.effectData.textTurns": "Turns", "Common.define.effectData.textTurnUp": "Turn Up", "Common.define.effectData.textTurnUpRight": "Turn Up Right", "Common.define.effectData.textUnderline": "Underline", From fed5f742e3f0c72eeb16a30b7874992cf17f8c5b Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 20 Jan 2022 13:22:41 +0300 Subject: [PATCH 056/217] [PE] Animation: support several effects with different subtypes --- apps/common/main/lib/util/define.js | 2 +- apps/presentationeditor/main/app/controller/Animation.js | 6 ++++-- apps/presentationeditor/main/app/view/Animation.js | 8 ++++---- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/apps/common/main/lib/util/define.js b/apps/common/main/lib/util/define.js index 3e98d66a2..83bacabc6 100644 --- a/apps/common/main/lib/util/define.js +++ b/apps/common/main/lib/util/define.js @@ -1142,7 +1142,7 @@ define(function(){ 'use strict'; {value: AscFormat.ENTRANCE_WIPE_FROM_BOTTOM, caption: this.textFromBottom}, {value: AscFormat.ENTRANCE_WIPE_FROM_LEFT, caption: this.textFromLeft}, {value: AscFormat.ENTRANCE_WIPE_FROM_RIGHT, caption: this.textFromRight}, - {value: AscFormat.ENTRANCE_WIPE_FROM_FROM_TOP, caption: this.textFromTop} + {value: AscFormat.ENTRANCE_WIPE_FROM_TOP, caption: this.textFromTop} ]; case AscFormat.ENTRANCE_ZOOM: return [ diff --git a/apps/presentationeditor/main/app/controller/Animation.js b/apps/presentationeditor/main/app/controller/Animation.js index 4cc2d6a55..22b7b4ac8 100644 --- a/apps/presentationeditor/main/app/controller/Animation.js +++ b/apps/presentationeditor/main/app/controller/Animation.js @@ -425,8 +425,10 @@ define([ } this._state.EffectOption = this.AnimationProperties.asc_getSubtype(); - if (this._state.EffectOption !== undefined && this._state.EffectOption !== null) - this._state.noAnimationParam = view.setMenuParameters(this._state.Effect, _.findWhere(this.EffectGroups,{value: this._state.EffectGroup}).id, this._state.EffectOption)===undefined; + if (this._state.EffectOption !== null && this._state.Effect !== AscFormat.ANIM_PRESET_MULTIPLE && this._state.Effect !== AscFormat.ANIM_PRESET_NONE) { + var rec = _.findWhere(this.EffectGroups,{value: this._state.EffectGroup}); + this._state.noAnimationParam = view.setMenuParameters(this._state.Effect, rec ? rec.id : undefined, this._state.EffectOption)===undefined; + } value = this.AnimationProperties.asc_getDuration(); this._state.Duration = (value>=0) ? value/1000 : value ; // undefined or <0 diff --git a/apps/presentationeditor/main/app/view/Animation.js b/apps/presentationeditor/main/app/view/Animation.js index 7cb5d5189..a510e159b 100644 --- a/apps/presentationeditor/main/app/view/Animation.js +++ b/apps/presentationeditor/main/app/view/Animation.js @@ -515,7 +515,7 @@ define([ return this.lockedControls; }, - setMenuParameters: function (effectId, effectGroup, option) + setMenuParameters: function (effectId, effectGroup, option) // option = undefined - for add new effect or when selected 2 equal effects with different option (subtype) { var arrEffectOptions; var effect = _.findWhere(this.allEffects, {group: effectGroup, value: effectId}); @@ -537,14 +537,14 @@ define([ }, this); } else { + this.btnParameters.menu.clearAll(); this.btnParameters.menu.items.forEach(function (opt) { (opt.value == option) && (selectedElement = opt); }); } - (selectedElement == undefined) && (selectedElement = this.btnParameters.menu.items[0]) - selectedElement.setChecked(true); + selectedElement && selectedElement.setChecked(true); this._effectId = effectId; - return selectedElement.value; + return selectedElement ? selectedElement.value : this.btnParameters.menu.items[0].value; }, From 9ad2488c51d1cf7677fe8f59656f8cd83b66cb32 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 20 Jan 2022 18:39:25 +0300 Subject: [PATCH 057/217] [PE] Add icons for animation --- .../main/app/template/Toolbar.template | 6 +++--- .../main/app/view/Animation.js | 8 ++++---- .../img/toolbar/1.25x/big/add-animation.png | Bin 0 -> 714 bytes .../img/toolbar/1.25x/big/animation-preview.png | Bin 0 -> 778 bytes .../resources/img/toolbar/1.25x/btn-trigger.png | Bin 0 -> 400 bytes .../img/toolbar/1.5x/big/add-animation.png | Bin 0 -> 798 bytes .../img/toolbar/1.5x/big/animation-preview.png | Bin 0 -> 872 bytes .../resources/img/toolbar/1.5x/btn-trigger.png | Bin 0 -> 452 bytes .../img/toolbar/1.75x/big/add-animation.png | Bin 0 -> 890 bytes .../img/toolbar/1.75x/big/animation-preview.png | Bin 0 -> 974 bytes .../resources/img/toolbar/1.75x/btn-trigger.png | Bin 0 -> 510 bytes .../img/toolbar/1x/big/add-animation.png | Bin 0 -> 616 bytes .../img/toolbar/1x/big/animation-preview.png | Bin 0 -> 662 bytes .../resources/img/toolbar/1x/btn-trigger.png | Bin 0 -> 317 bytes .../img/toolbar/2x/big/add-animation.png | Bin 0 -> 1038 bytes .../img/toolbar/2x/big/animation-preview.png | Bin 0 -> 1124 bytes .../resources/img/toolbar/2x/btn-trigger.png | Bin 0 -> 517 bytes 17 files changed, 7 insertions(+), 7 deletions(-) create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1.25x/big/add-animation.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-preview.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1.25x/btn-trigger.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1.5x/big/add-animation.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-preview.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1.5x/btn-trigger.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1.75x/big/add-animation.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-preview.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1.75x/btn-trigger.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1x/big/add-animation.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-preview.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1x/btn-trigger.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/2x/big/add-animation.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-preview.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/2x/btn-trigger.png diff --git a/apps/presentationeditor/main/app/template/Toolbar.template b/apps/presentationeditor/main/app/template/Toolbar.template index 31c63d63e..4aa8ec630 100644 --- a/apps/presentationeditor/main/app/template/Toolbar.template +++ b/apps/presentationeditor/main/app/template/Toolbar.template @@ -242,8 +242,7 @@
- - +
@@ -253,7 +252,8 @@
-
+ +
diff --git a/apps/presentationeditor/main/app/view/Animation.js b/apps/presentationeditor/main/app/view/Animation.js index a510e159b..1879f62b7 100644 --- a/apps/presentationeditor/main/app/view/Animation.js +++ b/apps/presentationeditor/main/app/view/Animation.js @@ -237,7 +237,7 @@ define([ cls: 'btn-toolbar x-huge icon-top', // x-huge icon-top', caption: this.txtPreview, split: false, - iconCls: 'toolbar__icon transition-fade', + iconCls: 'toolbar__icon animation-preview', lock: [_set.slideDeleted, _set.noSlides, _set.noAnimationPreview], dataHint: '1', dataHintDirection: 'bottom', @@ -248,7 +248,7 @@ define([ this.btnParameters = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', caption: this.txtParameters, - iconCls: 'toolbar__icon icon transition-none', + iconCls: 'toolbar__icon icon animation-none', menu: new Common.UI.Menu({items: []}), lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.noAnimationParam], dataHint: '1', @@ -272,7 +272,7 @@ define([ this.btnAddAnimation = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', caption: this.txtAddEffect, - iconCls: 'toolbar__icon icon btn-addslide', + iconCls: 'toolbar__icon icon add-animation', menu: true, lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic], dataHint: '1', @@ -305,7 +305,7 @@ define([ this.cmbTrigger = new Common.UI.Button({ parentEl: $('#animation-trigger'), cls: 'btn-toolbar', - iconCls: 'toolbar__icon btn-contents', + iconCls: 'toolbar__icon btn-trigger', caption: this.strTrigger, lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.noTriggerObjects], menu : new Common.UI.Menu({ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/add-animation.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/add-animation.png new file mode 100644 index 0000000000000000000000000000000000000000..f170ad76c588f99e41de87e0a710aa5e1aabae99 GIT binary patch literal 714 zcmeAS@N?(olHy`uVBq!ia0vp^Za}Qe!3-qjPWHqDDVB6cUq=Rpjs4tz5?O(K#^NA% zCx&(BWL^R}oCO|{#S9GG!XV7ZFl&wkP_Q?^C&bmgz~}$}|3Drt5+X&6EV4>uHZHxG z;*koG3xGOxOM?7@8TRiNa8OXVf8Rl1{`~&__wNl1>g(69KYzZVAt7PHg!uUUe0%$V z0Du32f&~jE+ljmfdb!ur#WBR=_}MAfCp8=JxVmnADd3^7_j>G)|L1QvD8_Xyz5b&0 z;J#va_ercDu5MftHzg(1&QtndhbHH4_bEqo9Lx(lCpSM6FpJ}e?C}1>aH%0_R^v&| zWh^pn-f3G|-B(V!)$}kVk#|b!43!m)m!>2!HN85^!gAF|A|a&Hz+t76e~rMZ1LE>M zt9FzeUflEN4)1w|y4C(AuANTicQK*=HDU2c|m)22WQ%mvv4FO#lPBI}-o^ literal 0 HcmV?d00001 diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-preview.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-preview.png new file mode 100644 index 0000000000000000000000000000000000000000..4f6b06a87c1bd47e7f040526cf1ae65ea4fdd313 GIT binary patch literal 778 zcmeAS@N?(olHy`uVBq!ia0vp^Za}Qe!3-qjPWHqDDVB6cUq=Rpjs4tz5?O(K#^NA% zCx&(BWL^R}oCO|{#S9GG!XV7ZFl&wkP_Q?^C&bmgz~}$}|3Dso5~2W?8n`S(0gww9 zL1W`G0U~}++dmJeLANBxFPK3lFz@i=~V>dB&J0|A%Wp-K1WN+hetZ9eqBK90{x zfirSfn%)Cp23{MxZ^-^TJ_n9ka;ZO=jMo zxLi|{Zz(PjTgJy|=v^klU>a1)!eAJD)wE%giRUUVhrk;%5*8}SCM>*V$SfRsoTn$G z^q3smDy?*W;j0A?PJiC=%QjwaY2EUr6~ULjhO#l(KMvZXdGc4+Tz%8C)3;h1mL}zu zd&JL+52;Exb^W>cR0E$Mg>SM&U$>w5thCnUSHPuqK8?L=?YWAsGpdGHCT>eeXWOE8 zM(oX@#%Z7B+2dJ@rhcCP%Y(JZ?3^lZZeqxU19I~}E*G%=HLqIU>CKDkcij&yeRrvL z9Qh#Q{#Iy@yz1=EZPF)idv22ST%4GdIy>{$gv#C=<34Gl@}lPxf8KFZEp|(ni#(ER zmSTL_`s}5$jT29%Ei<2_el}_G1leeYcQfBT2tMd`=Rh#?ft?fh1O;=xX-&3I(PNl? zd&$z(My|E*7z%dy26;&T=xEHZnjEzz=EiRJnu)8gBz--UwzhiNK9dj4zs#>&hzof# z-(UUM&pC>lg^U06?uHPi##4v=l-rmVa4(4AYgK3bBL9ki)tDnm{ Hr-UW|oZL)I literal 0 HcmV?d00001 diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/btn-trigger.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/btn-trigger.png new file mode 100644 index 0000000000000000000000000000000000000000..0831be7662cfa4140c7d5f69b9194d6e218c911c GIT binary patch literal 400 zcmV;B0dM|^P)X1^@s6b5wmq00009a7bBm000XU z000XU0RWnu7ytkO0drDELIAGL9O(c600d`2O+f$vv5yPtKU#X+!9|S5Zb<|KgjND2cK%}rz)Q*U{rQFt%WlN=e+!0W=6vbLn zw^Yj4)*9a&;%jS3*-|N!kgR1yG_;l>`8A_i>p{9^G;2MO*EOSB%ZO-bEhBRq^bUI? z&$r?J*GaLrp496uEVE#Tf unhP3mKm4s@7=|Vt#u|;$LDuMWew!=wOfWWRw-6fu0000R$zkgp)(9mFSKOrDs zLPCPP{QCI#_5S{|-|yHA^zuVb7sn8f<8PFDqU@i|Lg8=hd1I{@je-x|Va9Px;kt$A0XtpJz}PdtT_t z{TptTU&Tyz&)&4%wD;3%-HfvBp_doURLS|7eZl9_GAoOSORTGQnf9s9)qWivt$*G5 z)Ye`0{i}~=dF-6D{n^)w!1)Hd(iTEzv|)1n1x3meR?yspWaqQZ15VE^Zhi86;7{AQ}QJW8E5;gshJFS*ISd#jhHR{!(J zn>$UiC#XxaA-`?0h<& zDsV<%?}>F2PxPO)*s8GCPk!M!AS*XoJ^yL(+{MPdV<7&e;_7F@4@K<4azV8`+ISjZA;Bq-bTlx>4v7U6<#kSo!mR bLM?N!xAK9ww1fMBsf5AP)z4*}Q$iB}n0IQB literal 0 HcmV?d00001 diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-preview.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-preview.png new file mode 100644 index 0000000000000000000000000000000000000000..e9c0c10196158468870399e23095d885b30d4d5c GIT binary patch literal 872 zcmeAS@N?(olHy`uVBq!ia0vp^AwaCf!3-p&=Jq%NDVB6cUq=Rpjs4tz5?O(K#^NA% zCx&(BWL^R}oCO|{#S9GG!XV7ZFl&wkP_Q?^C&bmgz~}$}|3DsugfNgraIx{IL^cYj z45AW3BAbROvVPT<0HCODNswPKLw&u0!uw-~ax7L&N#=4i5JA`SJPj z1qBlV0wyFR$jh%^@9!`1-XG|9CT&j_#}JR>Z$nQOEj8c~N!W09-+t44|FlVxzyI6o zvmcN!h`1i&D&Dhdb@#Meya)2nb{V)8c=&0$Px`fP_M-`nk5xQ^+&ns+gU)fw6y0aq zQq5Czox#L2vS~m$x{a%(&O2JoqSiv5ql!!EPPLDVI|@SKX26E-^A$SwC}6 z?hbPc|9d-3z1k;jQo0>zHATR5yX#7&sc$yPF6|1ruvyj1JxKHHH(S=?AjPmZ)-IYh z^SeU4E@!lBv>tb!$dxFyw(F90@>LJ5>D!%LUv^)rQW0&7zPMWbZMsiQZ;9otINSVv zN^%)X+Acmj{%+U4m&R{B`h!!-UaWiVIX~0A%3wwR`^9V7PF*rx*&hdDBz@%m^C4Z( zLMKbG>-|9;rgm3dXT$&e=Blw1pB;bdwz<9_^pa?1nSq4Yq~BMj1f9B+QFkytIG9V3 zYxB?8na7Mj?|yc_QF&5ETAjMnF>k*Oj#CPMEd0vryV>k!)$|jY!1Tu8>FVdQ&MBb@ E0KoE!0RR91 literal 0 HcmV?d00001 diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/btn-trigger.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/btn-trigger.png new file mode 100644 index 0000000000000000000000000000000000000000..3bb92d576010ff6daa3e08cf9d51eb24039e7d7c GIT binary patch literal 452 zcmV;#0XzPQP)z?fuKq=?)2jLbkq3u@{xNp`tbN;XDw?b zpwVbF-h`8uWNJWRMC2rSitBdpjo!4rP#87RWsKgmit7fg8ELcju0vteNYI)cv-YmI zt}($k8$dwKOc}EQ1kOmCwGRMw*(`9xK!x?0000 zlFg#Uz`*3{>Eaj?aro`D+f}O!1X{%fJPt)#M&xddUj2>X{r{TZi##k_&(!RF8{?V~ zaq|2boyPq?LTk1}#~rHP{7|)p$?=5e2a}q9)rU_i5@ipc{cy&*Eg-;9-O>9*$I+E+ z5li-PJ(yTj)ZlvREQ6fpLIyEST}H8$8*oV&ybucsns;CK#F9D7^Ck*=?%bU>F}Gq) zgNdKzoCXyy56=Hhb)L#!Uw!vhS~*X6g0+sH!!tempkr?}Lh99J?`NETf7Faw}8| zxmI!_ZYJmDO$%pz(~0WNJillmPvoqY-H*Ly*p+9SDz7?npeI9!*;vVIhJ~c6&zv5i zmj^7?HE!}&VSZfkS=I5;CV8Kp+?XiUbL|I@+;C})RjMfP`o6VEh(Ya`mFEZfIg^}K z6-^sDH%jFQKg`**{q?q&XVrE;6q)|+{V`p;i+104{@z{K-*@D^?3`oYGN*p%H~t+n zJ%EYfki~MbwO1G(xJvHKC}#JtKiYXmd?vR_{4bC9+=Wf6zH9FN`bBV)l}gXG?yHMx vXQ?V>Zt!31a+A&GytdT*x0Ur9h5j@0M`%`cE}Z5HOot4fu6{1-oD!M<@KK0l literal 0 HcmV?d00001 diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-preview.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-preview.png new file mode 100644 index 0000000000000000000000000000000000000000..f5e6918c998f0d101c0df2e3d6064b5c0d99bcd0 GIT binary patch literal 974 zcmeAS@N?(olHy`uVBq!ia0vp^NkDAK!3-qD5_?jC6id3JuOkD)#(wTUiL5|AV{wqX z6T`Z5GB1G~&H|6fVg?3oVGw3ym^DWNDA*q06XNP#-~(j-2LlL$DkQQYK(mp#a5jVi zk@Z<7@d3!!E(!7rW|%+!{r&y>6%_8j7Z7l8h>y?D@9!@tsINbN-rl~UVg34mfP@4C zg9QsFOqj(smz{xuX{M)(V@Sl|x6^LUTC5<@+TW#=*Qqw^td6ng`d|Ofn~V3lvG9C7 zn|obU&-I{xsBA<0Z~fnIwwtu~=Q$T^NGxi4G=aOtQnMvI(f?Lke3JWZwr)Xn5%z-z znT3`sJ19++XOPld&*ZV>kI;gNNrnzesum7Pp)!m@EB`QD@Te4ZP9$c7!SFQ&>Dik!UvLQ}!TksQ*x zbA{(cB`#W8d?;AkXUnF}f<33#S&6FjhFJ;rncoau-n8U$RgAi9@@$jO0#a*#=Uy^2 zbF}4Oc)6=ha?@)=w=*`nE~~9t4)eTxd*EQ}`c{jXslu&q-c*~qY&x&AY3Av3`+}WW zc2{y&pLl)DGSm0CZ07OW>DPO`3yfsTSIC!NS@mh9TJGxQ?iH7w6i?cs9<0yaptO?5 zbG6~Gmrofctp3C)z4&3&wA!=b*@-4Gr!T$#nU&ka(6F_m|N5B=Y|-AIEgI$XRxae7 zr*l`i)Av(m8Vdu*4o^GXp1M_MPbhEl4$6HZIH~l*^(B9q?=yRQrTg{p0n;{vr>mdK II;Vst0GE)j`~Uy| literal 0 HcmV?d00001 diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/btn-trigger.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/btn-trigger.png new file mode 100644 index 0000000000000000000000000000000000000000..cbf7ec679d8ffd438d933236dee4e56dbc4e5f93 GIT binary patch literal 510 zcmVzd z!axv&$5INQge@T*gmgd$xP!O@=pb}JDU?77E`bs@x56hv;`@2RN;o@}`Js1Ovi>PX$v(NfZny?G;N?hP9YN$nTXa?$=BmF7K7ATr(I@+AC)m zQL$Idv%^_U2!ua{YmiS$VK7;97dgehlh zQ-ry+e8Yi6T3odBa4vU|L|R<55dNp-3l8wT&-_h`ix%OC=Z><66TyVzFGHlGxM?9g z+OMR>#eHEvo2d2!4;${f>+6HOsFLU?o(f+JH}Vn-o3BWbz7xTDN5rRAdC zQQj*4L(}gkoQVnPy3SpTu*FIU#%$4OG#W3!5B{p&kT`$j(EtDd07*qoM6N<$f~C0C AQ2+n{ literal 0 HcmV?d00001 diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/add-animation.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/add-animation.png new file mode 100644 index 0000000000000000000000000000000000000000..be91e4fe3a2736f0d7d5b83c41aa7bfa68af17cd GIT binary patch literal 616 zcmeAS@N?(olHy`uVBq!ia0vp^7C(>Va*xOH- z;P2niP*CuIe-9(jtHz!#jv*GOk50Z>)NH`xdQ?j?`P-zWXXlkP|NpM~49a3&pvzDvJ za2~s{j3M*UwK$^&orIo`)(pp`?lM?h+i-ox!r7rEQo#mm-k#f1TRiEV@9pb9ul?TG zqdL=1jr&G#s?Na@sZ95!Eew%-sWTfw2jakYjB`K359zQ(Uze(w`eO6e?uBYK&Di?os;7$%? z%s%7&ptsHBj%9CK$eX*ztTP?CmfiWnzr@mOM$u*432`spxa^%A_wk9FukhYI7i^Qo yUOeSYa|=4Mj#>57YlT~z)_3iw{Ise*+@38;jC0D@(_O$&XYh3Ob6Mw<&;$UCa1Dz9 literal 0 HcmV?d00001 diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-preview.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-preview.png new file mode 100644 index 0000000000000000000000000000000000000000..3418c612c6bc4864b915bbd7d9e635deb253c461 GIT binary patch literal 662 zcmeAS@N?(olHy`uVBq!ia0vp^7C&f9Dl7eOyu50I%WQjmI}P(RK6qebJQB^ z816$Ad<;!j_k0s$YVkfaqlPhH%|&&Fqo<^LPd$+ugN+h)eXVwj0-%Z=LUJ zTGlSV?%Q6ywHM`uR=-f%SpLy&Q`fP;CrToFlqSze{&~FDXd!_|O|MIQ4jm^IqFmin%0KYmQkoOQG3*AGW-Jhs{%d_pvS=HWoUioi#g uWcozz?cQPhz4H0~?&#wA+y8$r`_H5tC4FMO#@q#<2=sLIb6Mw<&;$T-D=HKK literal 0 HcmV?d00001 diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/btn-trigger.png b/apps/presentationeditor/main/resources/img/toolbar/1x/btn-trigger.png new file mode 100644 index 0000000000000000000000000000000000000000..2186745afea2cbf0d084cf0989532facf7edc63b GIT binary patch literal 317 zcmeAS@N?(olHy`uVBq!ia0vp^8bB<j697srqa#(JlRSg( zmaE7;5z7(IbK19m#!)pM_NS|IHZI3MaS6&}y>uu-IF;zx%vrfn~8s{d`6{Al3~ z^|$YgbLOf^I4G<)u6%#n@4}gad)w#Q?7dli--}Hk&@e0hx%j==JShvO6un*#^c{nz LtDnm{r-UW|g+F%T literal 0 HcmV?d00001 diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/add-animation.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/add-animation.png new file mode 100644 index 0000000000000000000000000000000000000000..1ea0355a1218eb63453839b0b62523272c190630 GIT binary patch literal 1038 zcmeAS@N?(olHy`uVBq!ia0vp^1wd@U!3-pYOnWMT6id3JuOkD)#(wTUiL5|AV{wqX z6T`Z5GB1G~&H|6fVg?2=RS;(M3{v?36r3F36XNP#-~(j-2LlL$MkJ=OKszx7fg&NP zuLOaVeo2sDFvI-$``;@l+`s>Rzkq;)LwfHT1T{%X)w` zQQfAY8XX;38Z(zoD^^<6wbtiy_M2Zf1!tZW&HsIK;>@#|@_a^{E#DrF%P?c>-@90A z=2@FBeOg8Z$1l6Ey{njY=76=z^W)7&c3l4aI4Yezoo%?&9e8?ldHyfrDZ|B!4WiN}kX6Yid_ukk0pFip@zxX=#Z((2k>V&Qx z``nqIdae4rV;}q3Ya6d0Vz{65>s{mA&sjUu{>fb~KfdShk1X~DJaU^f3{B?Q7K_=W z%=>twVjZuOVad`3^W5L9v=nicKKi3zWG+XNk+2AeQt)ONWs_!s(e*c>(0EO_); zm1EA28ct?e*X|&O5|OjUj28k+QU&-+L~>2I8`NE2n=eq2I?Bx=vi9Cg<3)jc9yBc4 z8+x3n+O>LhAM3ZSzBN_~nd@JiSmiuPPIPU2!@6lcF9R>Wn!0nXOK?_zz}h==MA)y) z5jK@C4&o_jm7VxKX+FEz9@S5AZx|Drd^a|~Pfn7X@yY7`ruWH83??r`&TPJsX|jFV z*U5J>MGPh$eBL;%QmL7}VY{2}lO>f8dbbH%YCfv^waP#IKZD239IxfeR^JEa2L?}9 KKbLh*2~7Ym!rPbt literal 0 HcmV?d00001 diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-preview.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-preview.png new file mode 100644 index 0000000000000000000000000000000000000000..81fd79996b17487c55c6b6808c81522203a91d4e GIT binary patch literal 1124 zcmeAS@N?(olHy`uVBq!ia0vp^1wd@U!3-pYOnWMT6id3JuOkD)#(wTUiL5|AV{wqX z6T`Z5GB1G~&H|6fVg?2=RS;(M3{v?36r3F36XNP#;Pe0ge;^M6AZ$1ZWWd=#1*Ec( zwIJ(-h$D+2vmIsro&&1TFA4GsW)KjVukil;{rd{@_wUcocW~(MkB>ipJ|LjJ-rhbT zp`l^@dIN)kf(aAk<^BB^EN~7|VPRlkmiKgV42d}WHvIUc)ebx&6^jlsmd)LJF!8eY zrT_JJttDoEG+^#{eC?IXRPVei9&5!8_}4tH2zyrOac}Y!{$>W=iBgl63qGB&$5PU{ zxb7a$)?+sr4oo^V$*V4|(Y5iYg4_3EBWH=bX9GTeW|3rY-M^z!%(UT%zS)B*ZVbw^ ziax7Zut_{_;hk|=zQOeAojpAD%xerD8+&OwtkQUD)WzwbWcbkU@6v5^W^DdnvQpRi z-5Ys5k6^v!$GI=HoL#BJ$S`5jqe88VObjX-m2=i*R=$;;c4JLJ;ak~xH|{)3JS{x? zwoT5Aq~sShp&>^n&%7KO7|HZ5L(2PrtnXva3eUyA3Qr5ZEBw3TA!qr58*ztZHO#i$ zKFR%*piGL^f2`;|(c<#T|r>9%Iv%PmR ze)*qtSGO;xt)+wXmfrey+B$Pe-ySaKFPGHc&&_zbXV%q@^|hbw35b7RzfJX&b+?G+ z&qJFX&scSDku+;f&s}l4?VRY!T4!6+vYQuXy6oiM^KaqYYhRRonrydSo>k-Kc_YaC zeTV8%o^x!`Rmb%V@(NlMzskK7bA2ZBH@Nqc?j>EJuPa-(P0CPdko9b|*k+(2q5Lw| zV6Xe8%$xT+X{!Z`Wb+`Pwf+pT>Qq0tWy9 literal 0 HcmV?d00001 diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/btn-trigger.png b/apps/presentationeditor/main/resources/img/toolbar/2x/btn-trigger.png new file mode 100644 index 0000000000000000000000000000000000000000..1c5e69323f04e4678e6874492a4d35303d18d408 GIT binary patch literal 517 zcmeAS@N?(olHy`uVBq!ia0vp^0YI$5!3HEV6KWZO6lZ})WHAGSm?{V}dIqU{017e| z2e~^jtUD+363Agmcl32+VA$Bt{U?zXC^yT~#WAFU@$K~3TxLUo7Ir5^2`32=ud@pT zq}W;u0+k9wr zqgnTLFD~AYc2AvS!l%TA7sLw!Ebbk;Q=1*|BKX~IfA^oFDr-vOCow*(&=zEGdAxRw zOkX09efqGWj!eGmKe@inhY>oR3LM8(-|g!6i$75QeP;V((pFAq{}pf$=<_~vw> Date: Thu, 20 Jan 2022 19:17:18 +0300 Subject: [PATCH 058/217] Fix bug --- .../main/app/view/Animation.js | 32 ++++++++++++------- 1 file changed, 21 insertions(+), 11 deletions(-) diff --git a/apps/presentationeditor/main/app/view/Animation.js b/apps/presentationeditor/main/app/view/Animation.js index e75b644de..1e2b7e64e 100644 --- a/apps/presentationeditor/main/app/view/Animation.js +++ b/apps/presentationeditor/main/app/view/Animation.js @@ -520,22 +520,32 @@ define([ }, this); (effect.familyEffect) && this.btnParameters.menu.addItem({caption: '--'}); } else { - this.btnParameters.menu.items.forEach(function (opt) { - (opt.value == option) && (selectedElement = opt); - }); + this.btnParameters.menu.items.forEach(function (opt,index) { + if(index=arrEffectOptions.length && opt.value == effectId) + opt.setChecked(true); + }); + } } + this._effectId = effectId; this._groupName = effectGroup; this._familyEffect = effect.familyEffect; From 194c8fc32cacc65d3380bf78bbdd8371957346d4 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 20 Jan 2022 21:02:14 +0300 Subject: [PATCH 059/217] [PE] Animation: add icon for labels. Add Label component --- apps/common/main/lib/component/Label.js | 127 ++++++++++++++++++ apps/common/main/resources/less/label.less | 26 ++++ .../main/app/template/Toolbar.template | 8 +- .../main/app/view/Animation.js | 44 ++++-- .../img/toolbar/1.25x/animation-delay.png | Bin 0 -> 580 bytes .../img/toolbar/1.25x/animation-duration.png | Bin 0 -> 513 bytes .../img/toolbar/1.25x/animation-repeat.png | Bin 0 -> 488 bytes .../img/toolbar/1.25x/btn-preview-start.png | Bin 0 -> 305 bytes .../img/toolbar/1.5x/animation-delay.png | Bin 0 -> 698 bytes .../img/toolbar/1.5x/animation-duration.png | Bin 0 -> 599 bytes .../img/toolbar/1.5x/animation-repeat.png | Bin 0 -> 475 bytes .../img/toolbar/1.5x/btn-preview-start.png | Bin 0 -> 378 bytes .../img/toolbar/1.75x/animation-delay.png | Bin 0 -> 794 bytes .../img/toolbar/1.75x/animation-duration.png | Bin 0 -> 634 bytes .../img/toolbar/1.75x/animation-repeat.png | Bin 0 -> 633 bytes .../img/toolbar/1.75x/btn-preview-start.png | Bin 0 -> 401 bytes .../img/toolbar/1x/animation-delay.png | Bin 0 -> 564 bytes .../img/toolbar/1x/animation-duration.png | Bin 0 -> 511 bytes .../img/toolbar/1x/animation-repeat.png | Bin 0 -> 403 bytes .../img/toolbar/1x/btn-preview-start.png | Bin 0 -> 297 bytes .../img/toolbar/2x/animation-delay.png | Bin 0 -> 924 bytes .../img/toolbar/2x/animation-duration.png | Bin 0 -> 765 bytes .../img/toolbar/2x/animation-repeat.png | Bin 0 -> 668 bytes .../img/toolbar/2x/btn-preview-start.png | Bin 0 -> 473 bytes .../main/resources/less/animation.less | 7 - .../main/resources/less/app.less | 1 + 26 files changed, 191 insertions(+), 22 deletions(-) create mode 100644 apps/common/main/lib/component/Label.js create mode 100644 apps/common/main/resources/less/label.less create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1.25x/animation-delay.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1.25x/animation-duration.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1.25x/animation-repeat.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1.25x/btn-preview-start.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1.5x/animation-delay.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1.5x/animation-duration.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1.5x/animation-repeat.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1.5x/btn-preview-start.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1.75x/animation-delay.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1.75x/animation-duration.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1.75x/animation-repeat.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1.75x/btn-preview-start.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1x/animation-delay.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1x/animation-duration.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1x/animation-repeat.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1x/btn-preview-start.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/2x/animation-delay.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/2x/animation-duration.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/2x/animation-repeat.png create mode 100644 apps/presentationeditor/main/resources/img/toolbar/2x/btn-preview-start.png diff --git a/apps/common/main/lib/component/Label.js b/apps/common/main/lib/component/Label.js new file mode 100644 index 000000000..ec0e59a79 --- /dev/null +++ b/apps/common/main/lib/component/Label.js @@ -0,0 +1,127 @@ +/* + * + * (c) Copyright Ascensio System SIA 2010-2022 + * + * This program is a free software product. You can redistribute it and/or + * modify it under the terms of the GNU Affero General Public License (AGPL) + * version 3 as published by the Free Software Foundation. In accordance with + * Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect + * that Ascensio System SIA expressly excludes the warranty of non-infringement + * of any third-party rights. + * + * This program is distributed WITHOUT ANY WARRANTY; without even the implied + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For + * details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html + * + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. + * + * The interactive user interfaces in modified source and object code versions + * of the Program must display Appropriate Legal Notices, as required under + * Section 5 of the GNU AGPL version 3. + * + * Pursuant to Section 7(b) of the License you must retain the original Product + * logo when distributing the program. Pursuant to Section 7(e) we decline to + * grant you any rights under trademark law for use of our trademarks. + * + * All the Product's GUI elements, including illustrations and icon sets, as + * well as technical writing content are licensed under the terms of the + * Creative Commons Attribution-ShareAlike 4.0 International. See the License + * terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode + * +*/ +/** + * Label.js + * + * Created by Julia Radzhabova on 1/20/22 + * Copyright (c) 2022 Ascensio System SIA. All rights reserved. + * + */ + +if (Common === undefined) + var Common = {}; + +define([ + 'common/main/lib/component/BaseView', + 'underscore' +], function (base, _) { + 'use strict'; + + Common.UI.Label = Common.UI.BaseView.extend({ + + options : { + id : null, + disabled : false, + cls : '', + iconCls : '', + style : '', + caption : '' + }, + + template : _.template(''), + + initialize : function(options) { + Common.UI.BaseView.prototype.initialize.call(this, options); + + this.id = this.options.id || Common.UI.getId(); + this.cls = this.options.cls; + this.iconCls = this.options.iconCls; + this.style = this.options.style; + this.disabled = this.options.disabled; + this.caption = this.options.caption; + this.template = this.options.template || this.template; + this.rendered = false; + + if (this.options.el) + this.render(); + }, + + render: function (parentEl) { + var me = this; + if (!me.rendered) { + var elem = this.template({ + id : me.id, + cls : me.cls, + iconCls : me.iconCls, + style : me.style, + caption : me.caption + }); + if (parentEl) { + this.setElement(parentEl, false); + parentEl.html(elem); + } else { + me.$el.html(elem); + } + + this.$label = me.$el.find('.label-cmp'); + this.rendered = true; + } + + if (this.disabled) + this.setDisabled(this.disabled); + + return this; + }, + + setDisabled: function(disabled) { + if (!this.rendered) + return; + + disabled = (disabled===true); + if (disabled !== this.disabled) { + this.$label.toggleClass('disabled', disabled); + } + + this.disabled = disabled; + }, + + isDisabled: function() { + return this.disabled; + } + }); +}); \ No newline at end of file diff --git a/apps/common/main/resources/less/label.less b/apps/common/main/resources/less/label.less new file mode 100644 index 000000000..ffd4647ab --- /dev/null +++ b/apps/common/main/resources/less/label.less @@ -0,0 +1,26 @@ +.label-cmp { + margin-bottom: 0; + .font-size-normal(); + font-weight: normal; + + .icon { + width: 20px; + height: 20px; + line-height: 20px; + padding: 0; + margin: 0; + display: inline-block; + background-repeat: no-repeat; + vertical-align: middle; + } + + &:not(:disabled) { + .icon { + opacity: @component-normal-icon-opacity; + } + } + + .caption { + padding: 0 4px; + } +} diff --git a/apps/presentationeditor/main/app/template/Toolbar.template b/apps/presentationeditor/main/app/template/Toolbar.template index 4aa8ec630..c0eeadd9c 100644 --- a/apps/presentationeditor/main/app/template/Toolbar.template +++ b/apps/presentationeditor/main/app/template/Toolbar.template @@ -238,7 +238,7 @@
- +
@@ -248,18 +248,18 @@
- +
- +
- +
diff --git a/apps/presentationeditor/main/app/view/Animation.js b/apps/presentationeditor/main/app/view/Animation.js index 1879f62b7..f9dbb51d8 100644 --- a/apps/presentationeditor/main/app/view/Animation.js +++ b/apps/presentationeditor/main/app/view/Animation.js @@ -50,6 +50,7 @@ define([ 'common/main/lib/component/Layout', 'presentationeditor/main/app/view/SlideSettings', 'common/main/lib/component/MetricSpinner', + 'common/main/lib/component/Label', 'common/main/lib/component/Window' ], function () { 'use strict'; @@ -302,6 +303,14 @@ define([ }); this.lockedControls.push(this.cmbDuration); + this.lblDuration = new Common.UI.Label({ + el: this.$el.find('#animation-duration'), + iconCls: 'toolbar__icon animation-duration', + caption: this.strDuration, + lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.noAnimationDuration] + }); + this.lockedControls.push(this.lblDuration); + this.cmbTrigger = new Common.UI.Button({ parentEl: $('#animation-trigger'), cls: 'btn-toolbar', @@ -347,6 +356,14 @@ define([ }); this.lockedControls.push(this.numDelay); + this.lblDelay = new Common.UI.Label({ + el: this.$el.find('#animation-delay'), + iconCls: 'toolbar__icon animation-delay', + caption: this.strDelay, + lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation] + }); + this.lockedControls.push(this.lblDelay); + this.cmbStart = new Common.UI.ComboBox({ cls: 'input-group-nr', menuStyle: 'min-width: 100%;', @@ -363,6 +380,14 @@ define([ }); this.lockedControls.push(this.cmbStart); + this.lblStart = new Common.UI.Label({ + el: this.$el.find('#animation-label-start'), + iconCls: 'toolbar__icon btn-preview-start', + caption: this.strStart, + lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation] + }); + this.lockedControls.push(this.lblStart); + this.chRewind = new Common.UI.CheckBox({ el: this.$el.find('#animation-checkbox-rewind'), labelText: this.strRewind, @@ -395,6 +420,14 @@ define([ }); this.lockedControls.push(this.cmbRepeat); + this.lblRepeat = new Common.UI.Label({ + el: this.$el.find('#animation-repeat'), + iconCls: 'toolbar__icon animation-repeat', + caption: this.strRepeat, + lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.noAnimationRepeat] + }); + this.lockedControls.push(this.lblRepeat); + this.btnMoveEarlier = new Common.UI.Button({ parentEl: $('#animation-moveearlier'), cls: 'btn-toolbar', @@ -421,10 +454,6 @@ define([ }); this.lockedControls.push(this.btnMoveLater); - this.$el.find('#animation-duration').text(this.strDuration); - this.$el.find('#animation-delay').text(this.strDelay); - this.$el.find('#animation-label-start').text(this.strStart); - this.$el.find('#animation-repeat').text(this.strRepeat); Common.NotificationCenter.on('app:ready', this.onAppReady.bind(this)); }, @@ -491,13 +520,6 @@ define([ this.btnAnimationPane && this.btnAnimationPane.render(this.$el.find('#animation-button-pane')); this.btnAddAnimation && this.btnAddAnimation.render(this.$el.find('#animation-button-add-effect')); this.cmbStart && this.cmbStart.render(this.$el.find('#animation-start')); - //this.renderComponent('#animation-spin-duration', this.cmbDuration); - this.renderComponent('#animation-spin-delay', this.numDelay); - //this.renderComponent('#animation-spin-repeat', this.cmbRepeat); - this.$el.find("#animation-duration").innerText = this.strDuration; - this.$el.find("#animation-delay").innerText = this.strDelay; - this.$el.find("#animation-label-start").innerText = this.strStart; - this.$el.find("#animation-repeat").innerText = this.strRepeat; return this.$el; }, diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/animation-delay.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/animation-delay.png new file mode 100644 index 0000000000000000000000000000000000000000..88fb734b67e2b2feb51f3740f7e974f8ec784248 GIT binary patch literal 580 zcmV-K0=xZ*P)X1^@s6b5wmq00009a7bBm000XU z000XU0RWnu7ytkO0drDELIAGL9O(c600d`2O+f$vv5yP2U z!!Qs$Q}PK^5~}=w@B)(;_yH8=2~?@!1t}PMJ^;=S92$ns$vY^_U3{7dMV54mfdcQ$ z&M?wRtL1dc8DPYSKgA5WL^jBlS@YO641l(6XUHY8Y4@mkEU1wM<`r~@B|I}X$P45- z^9K2eyy7{j0VUDMvTOrFOrgs_X=@`V78l4ZuaTITat2CkoG`JtKyGOb2%y-6Z;@?g z4xJeVaV8X-n0jJtGjleh?AVi@Ju2iqa_!o`XUzxl3HH|{gq;Rnl>-e*hg8F5L>JZr z$nl6gh3;|ag)Uw+k*qq`@uQ3!2q5fn-yQ^dcF!OkbZu&106)9Q8vOh7 zO~X|qD>$z0AS3HQ%<303c12V{Iw+&LFM#{1WDU+}9urFX1^@s6b5wmq00009a7bBm000XU z000XU0RWnu7ytkO0drDELIAGL9O(c600d`2O+f$vv5yPOJvz_>0QISdq39mJt@MD3~=DU zpQ0l6#EIyHqpZEd4sgy@#GW|01*5EO_CVqwY>7n>D~V^g7B`7D8I&Xv2VqMrf>=pB zOL0tu43v^!YtVM0Eg=DtC?^>8AWbLQBoE9;%omOpv2-FSv7m6Y?$J8olzrTp0c=U# z?F1hVWgmCOt;QH>$dsK;9K3VB!?onU9I6Fm_i5!|u@^1+|Xs0rl8 z%Jz_J_?O46!+wEnV+R-V713NC;4xpFrhEDhxTCcukhv<`LpoYpv~1ErI{c_&NrwLm zl0E#WV$~!3lMy9M%<`*k9U7w^xkIA|!ZM~et3)}*vyvb45i$^ThS`LPN~{gWe1whQ zgVn?JTJ;aBN!H$A2k_yQN7T5ytLEZ(Z5NLN2c8+<#}Ixt?6FEi00000NkvXXu0mjf Dx)ajw literal 0 HcmV?d00001 diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/animation-repeat.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/animation-repeat.png new file mode 100644 index 0000000000000000000000000000000000000000..a54c79a3df43e6dd0e5ecf055cbf83252a0d9697 GIT binary patch literal 488 zcmeAS@N?(olHy`uVBq!ia0vp^MnEjd!3-o_x_Zli6id3JuOkD)#(wTUiL5|AV{wqX z6T`Z5GB1G~&H|6fVg?3oVGw3ym^DWND3~1J6XNP#;Pe0ge;^MR36Y{iR^hyPJJ1yQ zk|4ie1_6Qn_us!)P`JN;{``c5_;?2gd;5ll`g#L{f`a_~{X2r1fJz^Gx;TbNNZvho zv#-g3!QtZVOH=Q%ij*w-`+vQRkd8)U$~@cle3jjISSD}pqW?Eil4cjX}Bl5m`*w!KyKUT4++f}Z)i}_hjGEm%jZ_*LY z?p+D-p+yS&H|g&#INbP0l+XkKj8Vs` literal 0 HcmV?d00001 diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/btn-preview-start.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/btn-preview-start.png new file mode 100644 index 0000000000000000000000000000000000000000..75ff3af977948db9070a9b24702c0f73369d89cf GIT binary patch literal 305 zcmeAS@N?(olHy`uVBq!ia0vp^MnEjd!3HFYLuy@s6lZ})WHAE+w=f7ZGR&GI0Tg5` z4sv&5Sa(k5C6L3C?&#~tz_78O`%fY(kblh6#WAFU@$KY;yv+szEa59#{DQoq3e~4L zX)c@G+xfslsih|U{dwiH)ux;HC3x5ZpFLtxRC)f0#qiEl){ibyNA!yg7aIRj6&Ggt za7gz>tKWxNx+`uUOMiY$H^WJJkNWptd22Sjtcy5)N6Mw0vr*xf$3+FJ();{>Q`p|M zJFae)Q2)MR%trBDgM)|00y7nv1m;H!w*y&kG*}!c wQ{dXbSlIB^K?Eq+z#Ms?(JH|}V$L4M>VJJq0XHr^1Nw-;)78&qol`;+0QoL%DF6Tf literal 0 HcmV?d00001 diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/animation-delay.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/animation-delay.png new file mode 100644 index 0000000000000000000000000000000000000000..99210928a79f882698a316868b6d96bfb9422519 GIT binary patch literal 698 zcmV;r0!96aP)v7H+V-Z+#ET zB3W7qGsDcjnb$~PdV2o)vb4Z}0Ruh)a&kh>$tBq+m)iCVZ-}O8a&kh>$z}75rMA7P z-k5wK7cfRfFy>0~m^>lRV9X{9bMa&Hfn10Ya-`-;@|Zj!&(v(P-l;D9u)7WzgKZv> zcjOe2;DS$e;fI~}jlnjL$UAbnZO+eI`lc|(zLJmduT^lF&Q<(|0G!ULF0ju8khu-44wp19J&1I?sWFLTT#=Dw3FmzIt#9sS?PzvLGL zWM9mQ9<#7=^f&Cw#1K4s-Rys|1lQyh+~z`XLEa+Z(2?wkp37XSp3UG7@;}lcb5sFw zJJqupEXZr5Lw?o$fVg6pdbS#D;I2(yOt(gEd~7FK1~p#3+}pQ> zLi^=0EOi_Ff^ebrvRJ>|<@j&)723bhx=q$=qlPglTd@1dLOy52)T{rwIO^70M!^$ip3 z?I##q5Rn0T&B)WmF+@W0=|T3gW&;6-gZwKl-PwJ)yX3#{vzu!SPPm`o`QH^;E#CCm z^!yjEn-XhRRg~Sye;pn%?cUWCzTLiGnYx{BcAc62+wsf0-kI^gdtba!H_l(1m~zWl zcz$o%lG(z-OO1Ub%2Prj&bDl0my0b?TV5$ReIYsArUPjMD&bH@uEPY0Gs4ILdGLY_=YcM60B1O@YVbgI0YdS;XB z4RNFHwjvpuDzHzN1MimoGX)}Q&(=ki|fOv$wN#XvWN8(V?gAS(R) znt{<BkdO7_J$#piu@H);*N%CswKv-O8HUvfFl lt>-<@b@fQbRj<$U|1hSWR*v6XNP#;Pe0ge;^M?LKqM>oWzuZC_`3^ zEHd#!i5XCjWJ!=;FhhU;dxiT70s{Bn&!4}4e?voky@SJq3HJ7qjw_}E6}|IxaSV}= ze0$J6>!<;P!@=covGr5m)n7>9nP%rWA=K<7&;PnZ`o(Jsr-`koDSEx6YgP*zm;4{) zclrJG>dLlL=T)zI`?O%aOv~a6o87AX%p{{X%7NG@IhYN>)W?h&|5qipae7;6+IGq^D2hk6qHVN;!Mdws~3j$4g6g zAHP3c!**|zu;P80ciXfc{y28Z@|wl_dGEK(2noFW>__lE1}{mjiUreo`GG!X@O1Ta JS?83{1ORl}#Ek#| literal 0 HcmV?d00001 diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/btn-preview-start.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/btn-preview-start.png new file mode 100644 index 0000000000000000000000000000000000000000..dbfcadacbd4daf378928647ce5c9b3d2610fd003 GIT binary patch literal 378 zcmV-=0fqjFP))8c&6yf|N+#3LHOcP8Uk8Fi!aSKC~MbDyXZpy}T z(H$I66m`i>*)Sd?Rp>m`gQUua@gS)}KZ_2Qceut+4;#6 zdHMc+e}4yufB<{@DG#SiemHsEr*&p#pW@5S$q{@O%>)dprJgR1As)xyPQBjO zY#`vev6pwotbj|ezunXR^S?ZoDb2XA-DcgEpl3%dc3JK!UMd-VZR5W!lcsd7nzUtu zwQ8YTMWoTB>R7JXr+yYiSvFs9FYIWxIh5Az`I0aGotq%vt8RsxGE+CNjlSuwV*Bp+ z?8PP9OV3tysEGD9vOVTGwo>tAMe>4!I}Qi7RovXV(4zM6>2tBt7E#m4N6yT zW)7ZirRe5!QE~EvL+URk80tP!T^5-wsBdu6tJ`8m@~jOE;`MEwi(;Zpj2umv{G87u zxg7eMxq#8=^TIOKeVQj1?KNr5m7R61O3KDK;r)R{0S_L5h&vy|U&uty$o*w?{IT6O zmsGB@-4B<3J8ZP!wxIsj#(rq=Oje~by?NG+Lhaq1&FU~m_l64@X zDUfrbt($NU*Z!|RUVpePSh(D`c8P;IW4q5r#Z)c%NnL>D*N>(ohc1^qi|`u%6^?mUn-}3`H{C` u=BGG=>GE*~yA~DA(|vmLyWPM3ugr0q1Y92-G5ZFLB?eDdKbLh*2~7ZYi4b1^ literal 0 HcmV?d00001 diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/animation-repeat.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/animation-repeat.png new file mode 100644 index 0000000000000000000000000000000000000000..0fc56c4f10045d9d1aaac72fe95b01ba53b35084 GIT binary patch literal 633 zcmeAS@N?(olHy`uVBq!ia0vp^Za}Qe!3-qjPWHqDDVB6cUq=Rpjs4tz5?O(K#^NA% zCx&(BWL^R}oCO|{#S9GG!XV7ZFl&wkP_R9~C&bmgz~}$}|3DrDK-h2+$bhqf3W#Sz z6ys8lX;cX3!ZM(!c1e(5FvI@+^A+B|zkgq0zJWnPg1voxy@P|ie15)w!1?p**B2B7 z1oZdE$2a)x6 z?H!w^iXV9H|6BX>XGV|b{PcU4c80dHTdtkFe8l>^`*o$e-(G*+CEr`gDkC5BDdqCo zu+@1NezAVgS($vR`1+9kaPz-)szM z`7BweYqZ5=78p&peaCop z+0h;82bs5hd3u;{gYP7MYrEyQwiFzjdAaPoc+TV}an-f=-uzf>x=8f?zkAZF;za(n TN1E{iqk+NG)z4*}Q$iB}mJAg9 literal 0 HcmV?d00001 diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/btn-preview-start.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/btn-preview-start.png new file mode 100644 index 0000000000000000000000000000000000000000..0e8fff6d33243e1694f5093797ae76869239b0d6 GIT binary patch literal 401 zcmeAS@N?(olHy`uVBq!ia0vp^Za}Qe!3HEX#cOhb6lZ})WHAE+w=f7ZGR&GI0Tg5` z4sv&5Sa(k5C6L3C?&#~tz_78O`%fY(P)^O$#WAFU@$HO@xrYsST=?fMP)?bgHo0d~ z&Z9t+u1$_^J1+U1X3*?8B9yv`LH@(O+KLUljt-MlJSY88@2YTM@DTghpzz^1=efoo z30(pm{<~No#m6ug9=*$4C_CMu=3!prk6E$IAAR*DWIEm#-&7Vbk0|6fNjqWoN``|u zvAKAGa8IIisLB0JZ(d$75%|60T4TlnPla0nYnd)ySm&^1={L4V49^|hb6S#DJo@-E zQvSokuIdFGF&B3n{p73pNL*^6u4~S{O>Ybf{+0N>XfX?6`|)!Y%SA=UrWfukgP7CF9UOm> zvom*=EbquV>4=W_Ka9aCxCWhY3D%&cLOAEf;1pcDJ(ge%+SI<2$eICX;1l>MLK$b^ zJ@^j3hyRi*6FcqxBNO})i3;*`KJlUv$fn?Br1y_ty3d4Z8kZn<8)udcyc z@Q#`~$;B7=2wp~PyLiaPpW6vxA!A-5acXD|ZmJjZ%!f~?sR<8DO*7|f-H30p5lfT)iHE}{{1GT&JZ)O> zN*cSR=DJy^|J~w1oZWLOgovpnOCD>nza0000wknl$PPAE*y=<(-nA1z;)cK$tb9zhb(Z!y?C)Ti*uR<5u z%*xT3NX#b;8o3HxEY8PzqBv3p8GKJ&WHUb2Q^H6xpWM@E75P53sdbcwrM2?=jrcyb zRB!NB`Dl#N$i<@Zf{ARtF#bY%gh>zdM}#I0fMyMswV`_OF-{Q!bJ+8=kly&6?-;~B zXl=s3G58tz|G)FyS_QX^VmA-KTCTj^2V}G@n&}X%F;aP(((vm&kRI8_F4IAsPt(}9 zQCFI?92-eL>YQTKjj>U8+-a}ioBZa@xzUEb%!2Q<9_u37DHx>8)m6)b-pLG_yW4uWSnKVVeJ3_002ovPDHLkV1hX- B<^%u$ literal 0 HcmV?d00001 diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/animation-repeat.png b/apps/presentationeditor/main/resources/img/toolbar/1x/animation-repeat.png new file mode 100644 index 0000000000000000000000000000000000000000..c230c4182f07fdab1e87b9ec9a1c6c6022fc1ada GIT binary patch literal 403 zcmV;E0c`$>P)^ui}^TMoE zN7Y#+)JZj|5^JQ@OhneIqv|XRC)K1%toh@&`p0i%Gs52k^~LA*Y>)Ql#?o&frJvR` z`&pq)Ejcv_%VeYG_MBRBYEqtTV0T$~hToi2La^{0Gj{Y7srqa#(w-!^%^&b`GzpD=j3`njxgN@xNAifwU( literal 0 HcmV?d00001 diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/animation-delay.png b/apps/presentationeditor/main/resources/img/toolbar/2x/animation-delay.png new file mode 100644 index 0000000000000000000000000000000000000000..1314d56202ac0be105ede46c9178c26b62aa28da GIT binary patch literal 924 zcmeAS@N?(olHy`uVBq!ia0vp^0YI$5!3-qh_VpSADVB6cUq=Rpjs4tz5?O(K#^NA% zCx&(BWL^R}oCO|{#S9E$svykh8Km+7D7ZSnC&bmgz~}$}|3DrDz}Y|s8~~+&Y?4S! z#mFY$mqk{I%yujNu^On;yd=mknBo5Y`2q?GnwkRh-@otgH!wJVK0kl|{`mNW1T!<| zb?cnhuXk{0Z$B9rcyhvoCr|9{ z8xy=-C3w=y(%)Y1|EG8xv9Y)rKYw#`bNJ`@#)I*7iLOo^{(qB~Eg!e96H zeRA>BZphN=KUKcXH;UEROYP3SHGu}oGYj9%6G`3rLh$q1@3*Z@Gn@5Jr@Ka;vu;TG z`}SF&@2mxpcwyEd68bz3hN%W z1y1{3xUbuv!f}D&^V#zg-JkmNF-j$D{Ac)S#<3ksi+lGRxM6wRs7ZEi_7h8&cb0aQ z`cnPtZ(MqQ{$BU7$J{1<2Rh75T)5B3zvw!_kdwh67IEjYsG^XMi^Pg1H8E8WLAF&3 zI*(r2_>k%R2DA1+E3=pfsv+MD{0dbq66)HIS3PB!*2FB0{X&z5bwe!-UpmC9=YtOAS)dC$cJ8N^bqvhVBc zJ9NPOqM-05_7vxD4Wd6aY~xGUzjS~3qc;4>;vJcfGY>B9U2f?qZNAZV?T#bgwy1Q@ zy>{Xof2jGJ`1MUaZ;c)JcPu@6aB8r*RFq7NWodH$;&k3!Pgf`NT0M(ie_)c=JCPg5 z)}Prn$^2jU!3EnNiwW>lng3F}x@4Pj|I7CQlW+CfOxw@YTXNq`JtqC@t&C%(*9sP2 z|NNxcZT)kjJ1;^T-agbSTC3#$`)JqxE|d1vC#H7odGpNso0icGqgB!WHmRJ9U75A% gfBD?sSK?ptv$@7edOTP715AYsp00i_>zopr07C(&J^%m! literal 0 HcmV?d00001 diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/animation-duration.png b/apps/presentationeditor/main/resources/img/toolbar/2x/animation-duration.png new file mode 100644 index 0000000000000000000000000000000000000000..5b334e623afa2f81da8e2dfef6e1deb607543c32 GIT binary patch literal 765 zcmeAS@N?(olHy`uVBq!ia0vp^0YI$5!3-qh_VpSADVB6cUq=Rpjs4tz5?O(K#^NA% zCx&(BWL^R}oCO|{#S9E$svykh8Km+7D3~AM6XNP#-~(j-2LlL$Y!cHPWDy8^>FIL~ zK$dbzkY6yv{Q2({?%x*>P29JGyWguUgitIDwBlzA!4-=)1efbZh<9 z7F=8Wobk`)Jwg`)LNe!yq-wi_3rI?9YDq0xrm(5}#ji6iyI3xmUMZQ`S;Be1YK;;5 zVa>}D(nd3z|INwd;qzZ=v1hSxT8;DbOFPZ8mdu>~M9J9X)6eXxLSqw-c0u#&0+ks* z`CJyAHC2*}+Q%G_$eQZ3Vuy<}+o_g>9Y+*WJe<1Uno7i-n9wrum9E703YK1hzKVLu zdl$H*6xWm-zY|q*D3!Z?VWj$;NDH-^Yn;_{^bRxIzHE_|UH4e5*-v7_UY_hvRtuL$ zE%e~H855+^QZrAe?m_V(evz`^>8ua?PB%^1ZIie@{I2^yjk$I28g09LX0v47QhAW6 zENtC4>jq~WU%_~Yeszx1VS9V7%l z?yzBNxbVK#l}#z?IXnM@-E-HUhz|_kviM)5(VO)l{2%|N3>{an^LB{Ts5JY7kY literal 0 HcmV?d00001 diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/animation-repeat.png b/apps/presentationeditor/main/resources/img/toolbar/2x/animation-repeat.png new file mode 100644 index 0000000000000000000000000000000000000000..b57754b4985834f38d111af3037171aebe7327d8 GIT binary patch literal 668 zcmeAS@N?(olHy`uVBq!ia0vp^0YI$5!3-qh_VpSADVB6cUq=Rpjs4tz5?O(K#^NA% zCx&(BWL^R}oCO|{#S9E$svykh8Km+7D3}@G6XNP#;Pe0ge;|)?5@HC%989*w?VUj9 zF({S<`2{lw2q^Twe}Dgezd}NSy}g4&eEj+I`}YR~G&I!LPnaMt|8>&oW}p}PJzX3_ zJdVE&^~^i$z%%)6~C# zTTqbEXwOCeSy!y>yE-^#E?X6??-!fIa zkr8+3ma6KD1!C`?=Qzz<8oy`$=1wV&@aY_7TS6x;IK1t|@@cb;><^26bi1{wVa0-G z%O4AxBi|T`d@OtO|NpO(?`AXXtQB6=ruiuJO6zaI-%j>#|6TLn`J^lQm!`PM#>V+Y zO{*0gEf4DX2ngu4ANM%aG5KLpMUP6Cg~9S!rQFJXek(uRUEIOE_MqmIxe2!dHe9r6 z-(y@Ve7jt9Zi93|&)eIs>JR+nf+{U$9e-J4b>U!6aHYiyFf%Cs5@WXPgDbnlGOw#M zpUJgK=v7@SuRSr%Cc7wW)3+YJTDFS|&nE{|GtY?pyGg!!|K%m~{&2rJZmv|rsNS#n VQRdCNG+;b3c)I$ztaD0e0sv&kC-DFP literal 0 HcmV?d00001 diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/btn-preview-start.png b/apps/presentationeditor/main/resources/img/toolbar/2x/btn-preview-start.png new file mode 100644 index 0000000000000000000000000000000000000000..44bf1cd59b56ecafb4424b4d2fce96fb1adaf4f5 GIT binary patch literal 473 zcmV;~0Ve*5P)oko=Fkkeo4#XYm!C;XGM9i{1AXxL^r+LPxkv z3E6euxN(KuLUJ8lLvn*9?xNbhaU=A?4e)!$lyC!`o-yj-rg1t9G<@~7CtO1O zm8%MO72nVR)^Qb^>>D@2VYq3W<8af)6=o=$BsHuIm#K7;RBc3~lca_x;nYu(s*PxL zlGLyeZlKeTN-n}Zn2F~m+=FH(Ne#ckB|81E-u%hBg Date: Thu, 20 Jan 2022 21:49:00 +0300 Subject: [PATCH 060/217] [PE] Fix bugs --- apps/common/main/lib/util/define.js | 2 +- apps/presentationeditor/main/app/view/Animation.js | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/common/main/lib/util/define.js b/apps/common/main/lib/util/define.js index e23cb4d7a..edf0e52b1 100644 --- a/apps/common/main/lib/util/define.js +++ b/apps/common/main/lib/util/define.js @@ -922,7 +922,7 @@ define(function(){ 'use strict'; {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_COMPLEMENTARY_COLOR_2, displayValue: this.textComplementaryColor2}, {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_CONTRASTING_COLOR, displayValue: this.textContrastingColor}, {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_CONTRASTING_DARKEN, displayValue: this.textDarken}, - {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_DESATURAT, displayValue: this.textDesaturate}, + {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_DESATURATE, displayValue: this.textDesaturate}, {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_LIGHTEN, displayValue: this.textLighten}, {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_OBJECT_COLOR, displayValue: this.textObjectColor}, {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_PULSE, displayValue: this.textPulse}, diff --git a/apps/presentationeditor/main/app/view/Animation.js b/apps/presentationeditor/main/app/view/Animation.js index 1e2b7e64e..66d9e9619 100644 --- a/apps/presentationeditor/main/app/view/Animation.js +++ b/apps/presentationeditor/main/app/view/Animation.js @@ -521,7 +521,7 @@ define([ (effect.familyEffect) && this.btnParameters.menu.addItem({caption: '--'}); } else { this.btnParameters.menu.items.forEach(function (opt,index) { - if(index=arrEffectOptions.length && opt.value == effectId) + if(opt.toggleGroup == 'animatesimilareffects' && opt.value == effectId) opt.setChecked(true); }); } From 0d1549e56fd5adac163846599828f2585156d390 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 21 Jan 2022 00:11:12 +0300 Subject: [PATCH 061/217] [DE][DE mobile] Support review changes for selection --- .../main/lib/controller/ReviewChanges.js | 10 +-- .../lib/controller/collaboration/Review.jsx | 2 +- .../main/app/view/DocumentHolder.js | 76 ++++++++++++++++++- apps/documenteditor/main/locale/en.json | 2 + .../mobile/src/controller/ContextMenu.jsx | 4 +- 5 files changed, 83 insertions(+), 11 deletions(-) diff --git a/apps/common/main/lib/controller/ReviewChanges.js b/apps/common/main/lib/controller/ReviewChanges.js index b931d77b9..89af9cccb 100644 --- a/apps/common/main/lib/controller/ReviewChanges.js +++ b/apps/common/main/lib/controller/ReviewChanges.js @@ -179,10 +179,10 @@ define([ }); }, - isSelectedChangesLocked: function(changes, fromSelection) { + isSelectedChangesLocked: function(changes, isShow) { if (!changes || changes.length<1) return true; - if (!fromSelection) + if (isShow) return changes[0].get('lock') || !changes[0].get('editable'); for (var i=0; i0) { changes = this.readSDKChange(sdkchange); - btnlock = this.isSelectedChangesLocked(changes, fromSelection); + btnlock = this.isSelectedChangesLocked(changes, isShow); } if (this._state.lock !== btnlock) { this.view.btnAccept.setDisabled(btnlock); @@ -214,7 +214,7 @@ define([ } if (this.getPopover()) { - if (!this.appConfig.reviewHoverMode && sdkchange && sdkchange.length>0 && !fromSelection) { // show changes balloon only for current position, not selection + if (!this.appConfig.reviewHoverMode && sdkchange && sdkchange.length>0 && isShow) { // show changes balloon only for current position, not selection var i = 0, posX = sdkchange[0].get_X(), posY = sdkchange[0].get_Y(), diff --git a/apps/common/mobile/lib/controller/collaboration/Review.jsx b/apps/common/mobile/lib/controller/collaboration/Review.jsx index c9a0e0d76..3fe87e560 100644 --- a/apps/common/mobile/lib/controller/collaboration/Review.jsx +++ b/apps/common/mobile/lib/controller/collaboration/Review.jsx @@ -52,7 +52,7 @@ class InitReview extends Component { }); } - onChangeReview (data) { + onChangeReview (data, isShow) { const storeReview = this.props.storeReview; storeReview.changeArrReview(data); } diff --git a/apps/documenteditor/main/app/view/DocumentHolder.js b/apps/documenteditor/main/app/view/DocumentHolder.js index 79bd02b9c..3eaedf043 100644 --- a/apps/documenteditor/main/app/view/DocumentHolder.js +++ b/apps/documenteditor/main/app/view/DocumentHolder.js @@ -1895,6 +1895,16 @@ define([ me.fireEvent('editcomplete', me); }, + onAcceptRejectChange: function(item, e) { + if (this.api) { + if (item.value == 'accept') + this.api.asc_AcceptChanges(); + else if (item.value == 'reject') + this.api.asc_RejectChanges(); + } + this.fireEvent('editcomplete', this); + }, + onPrintSelection: function(item){ if (this.api){ var printopt = new Asc.asc_CAdjustPrint(); @@ -2516,6 +2526,20 @@ define([ value : 'cut' }).on('click', _.bind(me.onCutCopyPaste, me)); + var menuImgAccept = new Common.UI.MenuItem({ + caption : me.textAccept, + value : 'accept' + }).on('click', _.bind(me.onAcceptRejectChange, me)); + + var menuImgReject = new Common.UI.MenuItem({ + caption : me.textReject, + value : 'reject' + }).on('click', _.bind(me.onAcceptRejectChange, me)); + + var menuImgReviewSeparator = new Common.UI.MenuItem({ + caption : '--' + }); + var menuImgPrint = new Common.UI.MenuItem({ iconCls: 'menu__icon btn-print', caption : me.txtPrintSelection @@ -2745,6 +2769,11 @@ define([ menuImgPrint.setVisible(me.mode.canPrint); menuImgPrint.setDisabled(!cancopy); + var lockreview = Common.Utils.InternalSettings.get("de-accept-reject-lock"); + menuImgAccept.setVisible(!lockreview); + menuImgReject.setVisible(!lockreview); + menuImgReviewSeparator.setVisible(!lockreview); + var signGuid = (value.imgProps && value.imgProps.value && me.mode.isSignatureSupport) ? value.imgProps.value.asc_getSignatureId() : undefined, isInSign = !!signGuid; menuSignatureEditSign.setVisible(isInSign); @@ -2767,6 +2796,9 @@ define([ menuImgPaste, menuImgPrint, { caption: '--' }, + menuImgAccept, + menuImgReject, + menuImgReviewSeparator, menuSignatureEditSign, menuSignatureEditSetup, menuEditSignSeparator, @@ -3081,6 +3113,20 @@ define([ value : 'cut' }).on('click', _.bind(me.onCutCopyPaste, me)); + var menuTableAccept = new Common.UI.MenuItem({ + caption : me.textAccept, + value : 'accept' + }).on('click', _.bind(me.onAcceptRejectChange, me)); + + var menuTableReject = new Common.UI.MenuItem({ + caption : me.textReject, + value : 'reject' + }).on('click', _.bind(me.onAcceptRejectChange, me)); + + var menuTableReviewSeparator = new Common.UI.MenuItem({ + caption : '--' + }); + var menuTablePrint = new Common.UI.MenuItem({ iconCls: 'menu__icon btn-print', caption : me.txtPrintSelection @@ -3787,6 +3833,20 @@ define([ value : 'cut' }).on('click', _.bind(me.onCutCopyPaste, me)); + var menuParaAccept = new Common.UI.MenuItem({ + caption : me.textAccept, + value : 'accept' + }).on('click', _.bind(me.onAcceptRejectChange, me)); + + var menuParaReject = new Common.UI.MenuItem({ + caption : me.textReject, + value : 'reject' + }).on('click', _.bind(me.onAcceptRejectChange, me)); + + var menuParaReviewSeparator = new Common.UI.MenuItem({ + caption : '--' + }); + var menuParaPrint = new Common.UI.MenuItem({ iconCls: 'menu__icon btn-print', caption : me.txtPrintSelection @@ -3985,6 +4045,11 @@ define([ menuParaPrint.setVisible(me.mode.canPrint); menuParaPrint.setDisabled(!cancopy); + var lockreview = Common.Utils.InternalSettings.get("de-accept-reject-lock"); + menuParaAccept.setVisible(!lockreview); + menuParaReject.setVisible(!lockreview); + menuParaReviewSeparator.setVisible(!lockreview); + // spellCheck var spell = (value.spellProps!==undefined && value.spellProps.value.get_Checked()===false); me.menuSpellPara.setVisible(spell); @@ -4011,9 +4076,9 @@ define([ //equation menu var eqlen = 0; if (isEquation) { - eqlen = me.addEquationMenu(true, 15); + eqlen = me.addEquationMenu(true, 18); } else - me.clearEquationMenu(true, 15); + me.clearEquationMenu(true, 18); menuEquationSeparator.setVisible(isEquation && eqlen>0); menuEquationInsertCaption.setVisible(isEquation); menuEquationInsertCaptionSeparator.setVisible(isEquation); @@ -4098,6 +4163,9 @@ define([ menuParaCopy, menuParaPaste, menuParaPrint, + menuParaReviewSeparator, + menuParaAccept, + menuParaReject, menuEquationInsertCaptionSeparator, menuEquationInsertCaption, { caption: '--' }, @@ -4743,7 +4811,9 @@ define([ txtRemoveWarning: 'Do you want to remove this signature?
It can\'t be undone.', notcriticalErrorTitle: 'Warning', txtWarnUrl: 'Clicking this link can be harmful to your device and data.
Are you sure you want to continue?', - textEditPoints: 'Edit Points' + textEditPoints: 'Edit Points', + textAccept: 'Accept Change', + textReject: 'Reject Change' }, 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 08ed681e8..3b3c18f7a 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -1629,6 +1629,8 @@ "DE.Views.DocumentHolder.txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?", "DE.Views.DocumentHolder.updateStyleText": "Update %1 style", "DE.Views.DocumentHolder.vertAlignText": "Vertical Alignment", + "DE.Views.DocumentHolder.textAccept": "Accept Change", + "DE.Views.DocumentHolder.textReject": "Reject Change", "DE.Views.DropcapSettingsAdvanced.strBorders": "Borders & Fill", "DE.Views.DropcapSettingsAdvanced.strDropcap": "Drop Cap", "DE.Views.DropcapSettingsAdvanced.strMargins": "Margins", diff --git a/apps/documenteditor/mobile/src/controller/ContextMenu.jsx b/apps/documenteditor/mobile/src/controller/ContextMenu.jsx index 45906ad60..5c626e228 100644 --- a/apps/documenteditor/mobile/src/controller/ContextMenu.jsx +++ b/apps/documenteditor/mobile/src/controller/ContextMenu.jsx @@ -63,8 +63,8 @@ class ContextMenu extends ContextMenuController { this.isComments = false; } - onApiShowChange(sdkchange) { - this.inRevisionChange = sdkchange && sdkchange.length>0; + onApiShowChange(sdkchange, isShow) { + this.inRevisionChange = isShow && sdkchange && sdkchange.length>0; } // onMenuClosed() { From 547125cb827924cd055eeac548c88e8f9ca91739 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 21 Jan 2022 00:39:02 +0300 Subject: [PATCH 062/217] [DE] Support review changes for selection --- .../main/resources/less/dropdown-submenu.less | 2 +- .../main/app/view/DocumentHolder.js | 19 ++++++++++++++----- 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/apps/common/main/resources/less/dropdown-submenu.less b/apps/common/main/resources/less/dropdown-submenu.less index 375751540..e422dfd3f 100644 --- a/apps/common/main/resources/less/dropdown-submenu.less +++ b/apps/common/main/resources/less/dropdown-submenu.less @@ -26,7 +26,7 @@ border-left-color: @icon-normal-ie; border-left-color: @icon-normal; margin-top: 5px; - margin-right: -10px; + margin-right: -7px; } &.over:not(.disabled) > .dropdown-menu { diff --git a/apps/documenteditor/main/app/view/DocumentHolder.js b/apps/documenteditor/main/app/view/DocumentHolder.js index 3eaedf043..1562500e8 100644 --- a/apps/documenteditor/main/app/view/DocumentHolder.js +++ b/apps/documenteditor/main/app/view/DocumentHolder.js @@ -3237,6 +3237,7 @@ define([ this.tableMenu = new Common.UI.Menu({ cls: 'shifted-right', + // maxHeight: 610, initMenu: function(value){ // table properties if (_.isUndefined(value.tableProps)) @@ -3244,7 +3245,7 @@ define([ var isEquation= (value.mathProps && value.mathProps.value); - for (var i = 8; i < 27; i++) { + for (var i = 11; i < 30; i++) { me.tableMenu.items[i].setVisible(!isEquation); } @@ -3285,8 +3286,8 @@ define([ me.menuTableDirect270.setChecked(dir == Asc.c_oAscCellTextDirection.BTLR); var disabled = value.tableProps.locked || (value.headerProps!==undefined && value.headerProps.locked); - me.tableMenu.items[11].setDisabled(disabled); - me.tableMenu.items[12].setDisabled(disabled); + me.tableMenu.items[14].setDisabled(disabled); + me.tableMenu.items[15].setDisabled(disabled); if (me.api) { mnuTableMerge.setDisabled(disabled || !me.api.CheckBeforeMergeCells()); @@ -3306,6 +3307,11 @@ define([ menuTablePrint.setVisible(me.mode.canPrint); menuTablePrint.setDisabled(!cancopy); + var lockreview = Common.Utils.InternalSettings.get("de-accept-reject-lock"); + menuTableAccept.setVisible(!lockreview); + menuTableReject.setVisible(!lockreview); + menuTableReviewSeparator.setVisible(!lockreview); + // bullets & numbering var listId = me.api.asc_GetCurrentNumberingId(), in_list = (listId !== null); @@ -3383,9 +3389,9 @@ define([ //equation menu var eqlen = 0; if (isEquation) { - eqlen = me.addEquationMenu(false, 7); + eqlen = me.addEquationMenu(false, 10); } else - me.clearEquationMenu(false, 7); + me.clearEquationMenu(false, 10); menuEquationSeparatorInTable.setVisible(isEquation && eqlen>0); var control_lock = (value.paraProps) ? (!value.paraProps.value.can_DeleteBlockContentControl() || !value.paraProps.value.can_EditBlockContentControl() || @@ -3429,6 +3435,9 @@ define([ menuTablePaste, menuTablePrint, { caption: '--' }, + menuTableAccept, + menuTableReject, + menuTableReviewSeparator, menuEquationSeparatorInTable, menuTableRefreshField, menuTableFieldSeparator, From 21a9d015683574558ac4e56c783cd590ade87273 Mon Sep 17 00:00:00 2001 From: OVSharova Date: Fri, 21 Jan 2022 02:17:16 +0300 Subject: [PATCH 063/217] Fix bug --- apps/presentationeditor/main/app/view/Animation.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/apps/presentationeditor/main/app/view/Animation.js b/apps/presentationeditor/main/app/view/Animation.js index 66d9e9619..3e5926882 100644 --- a/apps/presentationeditor/main/app/view/Animation.js +++ b/apps/presentationeditor/main/app/view/Animation.js @@ -507,7 +507,8 @@ define([ var effect = _.findWhere(this.allEffects, {group: effectGroup, value: effectId}); if(effect) arrEffectOptions = Common.define.effectData.getEffectOptionsData(effect.group, effect.value); - if((this._effectId != effectId && this._familyEffect != effect.familyEffect) || (this._groupName != effectGroup)) { + var updateFamilyEffect = (!this._familyEffect && !effect.familyEffect) ? true : (this._familyEffect != effect.familyEffect); + if((this._effectId != effectId && updateFamilyEffect) || (this._groupName != effectGroup)) { this.btnParameters.menu.removeAll(); } if (arrEffectOptions){ @@ -520,7 +521,7 @@ define([ }, this); (effect.familyEffect) && this.btnParameters.menu.addItem({caption: '--'}); } else { - this.btnParameters.menu.items.forEach(function (opt,index) { + this.btnParameters.menu.items.forEach(function (opt) { if(opt.toggleGroup == 'animateeffects' && opt.value == option) selectedElement = opt; },this); @@ -539,7 +540,7 @@ define([ }, this); } else { - this.btnParameters.menu.items.forEach(function (opt,index) { + this.btnParameters.menu.items.forEach(function (opt) { if(opt.toggleGroup == 'animatesimilareffects' && opt.value == effectId) opt.setChecked(true); }); From 68dccf5337f8a7072187d2f26c337254c95a994c Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 21 Jan 2022 11:25:04 +0300 Subject: [PATCH 064/217] [PE] Add icons --- .../main/app/controller/Animation.js | 4 ++-- .../main/app/view/Animation.js | 2 +- ...-preview.png => animation-preview-start.png} | Bin .../1.25x/big/animation-preview-stop.png | Bin 0 -> 722 bytes .../img/toolbar/1.5x/animation-delay.png | Bin 698 -> 712 bytes .../img/toolbar/1.5x/animation-duration.png | Bin 599 -> 614 bytes .../img/toolbar/1.5x/animation-repeat.png | Bin 475 -> 401 bytes ...-preview.png => animation-preview-start.png} | Bin .../toolbar/1.5x/big/animation-preview-stop.png | Bin 0 -> 790 bytes ...-preview.png => animation-preview-start.png} | Bin .../1.75x/big/animation-preview-stop.png | Bin 0 -> 893 bytes ...-preview.png => animation-preview-start.png} | Bin .../toolbar/1x/big/animation-preview-stop.png | Bin 0 -> 623 bytes ...-preview.png => animation-preview-start.png} | Bin .../toolbar/2x/big/animation-preview-stop.png | Bin 0 -> 1051 bytes 15 files changed, 3 insertions(+), 3 deletions(-) rename apps/presentationeditor/main/resources/img/toolbar/1.25x/big/{animation-preview.png => animation-preview-start.png} (100%) create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-preview-stop.png rename apps/presentationeditor/main/resources/img/toolbar/1.5x/big/{animation-preview.png => animation-preview-start.png} (100%) create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-preview-stop.png rename apps/presentationeditor/main/resources/img/toolbar/1.75x/big/{animation-preview.png => animation-preview-start.png} (100%) create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-preview-stop.png rename apps/presentationeditor/main/resources/img/toolbar/1x/big/{animation-preview.png => animation-preview-start.png} (100%) create mode 100644 apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-preview-stop.png rename apps/presentationeditor/main/resources/img/toolbar/2x/big/{animation-preview.png => animation-preview-start.png} (100%) create mode 100644 apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-preview-stop.png diff --git a/apps/presentationeditor/main/app/controller/Animation.js b/apps/presentationeditor/main/app/controller/Animation.js index 22b7b4ac8..86b5f83ce 100644 --- a/apps/presentationeditor/main/app/controller/Animation.js +++ b/apps/presentationeditor/main/app/controller/Animation.js @@ -141,12 +141,12 @@ define([ onAnimPreviewStarted: function () { this._state.playPreview = true; - this.view.btnPreview.setIconCls('toolbar__icon transition-zoom'); + this.view.btnPreview.setIconCls('toolbar__icon animation-preview-stop'); }, onAnimPreviewFinished: function () { this._state.playPreview = false; - this.view.btnPreview.setIconCls('toolbar__icon transition-fade'); + this.view.btnPreview.setIconCls('toolbar__icon animation-preview-start'); }, onParameterClick: function (value) { diff --git a/apps/presentationeditor/main/app/view/Animation.js b/apps/presentationeditor/main/app/view/Animation.js index f9dbb51d8..6dc9ce214 100644 --- a/apps/presentationeditor/main/app/view/Animation.js +++ b/apps/presentationeditor/main/app/view/Animation.js @@ -238,7 +238,7 @@ define([ cls: 'btn-toolbar x-huge icon-top', // x-huge icon-top', caption: this.txtPreview, split: false, - iconCls: 'toolbar__icon animation-preview', + iconCls: 'toolbar__icon animation-preview-start', lock: [_set.slideDeleted, _set.noSlides, _set.noAnimationPreview], dataHint: '1', dataHintDirection: 'bottom', diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-preview.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-preview-start.png similarity index 100% rename from apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-preview.png rename to apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-preview-start.png diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-preview-stop.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-preview-stop.png new file mode 100644 index 0000000000000000000000000000000000000000..4b6a5c016a33d6a773425a25c78b900d33e21b6d GIT binary patch literal 722 zcmeAS@N?(olHy`uVBq!ia0vp^Za}Qe!3-qjPWHqDDVB6cUq=Rpjs4tz5?O(K#^NA% zCx&(BWL^R}oCO|{#S9GG!XV7ZFl&wkP_Q?^C&bmgz~}$}|3Dso5~2W?8e~~qY+QPg z#VY0oGR`m*M0B%{`>z~?D!Oi4PT`8 z8yuKxY_~~(A%5?)^VXt~ws|UUG0a+r^zB3oy*|j;B#9^7WKr``@c!T-;w%;HCtSet za7y#pk0)G|ShA*ivm9S5q&X!uLS>p$rk5pSVki)s1~Qz{3TL>Y#d(!=W0!L2!8NCn zFWcM-{bO?0IHLZ1nW-!1F8B3+|JvQUDsuF_+{(YKH-4@v`W>PAs>nKN<^O=AfvVxZ z_@`?7Cd@nTCVZFs`ldSI*jolAB)xNx`U&rF{a_rFU&3(i^Hva9W<$Zb=nxBr%_ zN^{L@{(GLQTqC7sg7L$E!x~S`Z0+`HOK#LlY1zwve%tR~V($-ce!I^u%~;j&wPf!{ zF_mMpCQE$IyykwaMB;Jc758UZhFdSYwH$P6UOD%g&8O#9XF{xI-p=}CxbWbaC6hO< zJ~scf>5S>Z+RmA2eaUftd4itC&drw94CRFfylOTv~vxo_C;;~(s5y!dnhbL>F vhtD4S+S$k1zFw}C=bAM?uU@0(<1co87L(gG*Z7TrG0WiT>gTe~DWM4f4t+MQ literal 0 HcmV?d00001 diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/animation-delay.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/animation-delay.png index 99210928a79f882698a316868b6d96bfb9422519..bac1daed5a419910d75627a1aebd18519db774dc 100644 GIT binary patch delta 672 zcmV;R0$=^Q1;_;)G!!*X6WM^tSQ}vg0wM{1F+!&_y#+asn{EAI07eF4v?8mPXTFC&}54Y zZMcDX-|F+=S)|q9dKehLnb%mK^zUybeso=z;R@#enhP22(}?(LY+Y9lcQ~Bihhp|~>pq|@)1c;O zN{l6^?`?6phHdS+zIzdBfB28a%_e63jzGvxIYT~VS$z!+*56UKF55UIt-7upmL0l5 zKE&`gB7SsTm*HEOUsEn(cir2+q`Ny^$z`EIIx3jd2!`H_1#{jJ?d3zh|2O0000v z7H+V-Z+#ETB3W7qGsDcjnb$~PdV2o)vb4Z}0Ruh)a&kh>$tBq+m)iCVZ-}O8a&kh> z$z}75rMA7P-k5wK7cfRfFy>0~f0#TW&tS|Z3v=;f@_}545ptyFO7fUIAG+)b>WAd_Km?dkH|Z6x^2$STl%Ij#=eq|@Z+BRN&X}E$lvGz zUFcdb%d%d29J|Lcz4U6B%;lcA(!v9nOpXx#bgb?0e?U&O5z-;s<M**|dz0j9~T&^obf@2H4ECfTYJt0>$8*=n~S?CMG zdsTCc&0}8{Gnhl7k7%xA{-7tgz?mEpeN3u38Pi*D0~sjUC<07FK1~p#3+}pQ>Li^=0EOi_Ff^ebrvRJ>|<@j&)723bhx=q$=qlPglTd@1dLOy52 s)T=?$#<^!4V!sW_F+m)-& zW3ugP*wadJ*3rn=6%vtadPs5B8{5d(WV;M6Sk29kc{b_$NXC=60tXf8N9XHI@qY4DI0Z zthBUD?qH-tDlILuJ0~v0bDM{EWWo(VLGzGp*TEBn>S{+Py4f9zgBKpEt3BOLbc^je zG^``;Wy7zAlziv9nd3gIQ@MoKIgKwHeibIMs-qP(n002ovPDHLkV1gWN4z&OP literal 599 zcmeAS@N?(olHy`uVBq!ia0vp^7C{rwIO^70M!^$ip3 z?I##q5Rn0T&B)WmF+@W0=|T3gW&;6-gZwKl-PwJ)yX3#{vzu!SPPm`o`QH^;E#CCm z^!yjEn-XhRRg~Sye;pn%?cUWCzTLiGnYx{BcAc62+wsf0-kI^gdtba!H_l(1m~zWl zcz$o%lG(z-OO1Ub%2Prj&bDl0my0b?TV5$ReIYsArUPjMD&bH@uEPY0Gs4ILdGLY_=YcM60B1O@YVbgI0YdS;XB z4RNFHwjvpuDzHzN1MimoGX)}Q&(=ki|fOv$wN#XvWN8(V?gAS(R) znt{<BkdO7_J$#piu@H);*N%CswKv-O8HUvfFl lt>-<@b@fQbRj<$U|1hSW>J)e=7zn!Arm^me?FD+TG0W1lmXXDd9B#|S_Q^Yxa)kUS{Es=6_cx^ z#BeuhwsRMREe)f2e|czCoE7JR*M{3PV1v(nsW~oO15IPM2wxgjLf#Juukq3L<{?MC i6%q+~6-7~$q&xux-GWKRz1!me0000R*v6XNP#;Pe0ge;^M?LKqM>oWzuZC_`3^ zEHd#!i5XCjWJ!=;FhhU;dxiT70s{Bn&!4}4e?voky@SJq3HJ7qjw_}E6}|IxaSV}= ze0$J6>!<;P!@=covGr5m)n7>9nP%rWA=K<7&;PnZ`o(Jsr-`koDSEx6YgP*zm;4{) zclrJG>dLlL=T)zI`?O%aOv~a6o87AX%p{{X%7NG@IhYN>)W?h&|5qipae7;6+IGq^D2hk6qHVN;!Mdws~3j$4g6g zAHP3c!**|zu;P80ciXfc{y28Z@|wl_dGEK(2noFW>__lE1}{mjiUreo`GG!X@O1Ta JS?83{1ORl}#Ek#| diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-preview.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-preview-start.png similarity index 100% rename from apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-preview.png rename to apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-preview-start.png diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-preview-stop.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-preview-stop.png new file mode 100644 index 0000000000000000000000000000000000000000..9aefad3ab051d9c72d002a9bd17b95e725da459b GIT binary patch literal 790 zcmeAS@N?(olHy`uVBq!ia0vp^AwaCf!3-p&=Jq%NDVB6cUq=Rpjs4tz5?O(K#^NA% zCx&(BWL^R}oCO|{#S9GG!XV7ZFl&wkP_Q?^C&bmgz~}$}|3DsugfNgrNM$3N05=wB z2(mf2#6KH8$Og*kmIV0)Gt}1`D9oRK|Gt7jf4_jh{{83AJ2>R$zkgp)(9mFSKOrDs zLPCPP{QCI#_5S{|-|yHA^zuzl7sn8f<8P;j7qu7&xJU=69DbINU%*%J|M5@egPU|F zJ!6jn}sRzxQ2Re!pCm<>~qi_oMBa z67S`9?M*h;GW0oE@jb&VI$v$$wraC`K9_nUTlOvKo@%-E!1R)dGJd)H@9v&b{q?GT z`RuvgJ15V7{P^Kc-x>8+a%yapHfwHv|4L3}>sE!Z$p^f0bUU6nC+uBySm)O_qq|iT zk4JtvTbbwd^YH0ssVASQh1l%L2^0CukT_kng=?3NVrWFrR7Xd%r|}_6f2hp9_xQfv zN?ottyJCZ?r~L9={5zp+<~qx(C8{Tu)lPX-^l`?wz^>0XldW7{dai7~T+(rA^%VE* zD;K7Jbw9V`@|6p(Us+#1lpAGNe!cYV+suzwVy{o#zTAiLg#Y%9n`UKkD(t>@>{Q;b zQ|f{lrnQ2TIkwE6w*LnI3%|>c*mpDD&Aqir_#^YKi{Y=>OKvQ)H1wUN^80`1#_RIo XL3Wv|9x=B8QwM{mtDnm{r-UW|0%T~6 literal 0 HcmV?d00001 diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-preview.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-preview-start.png similarity index 100% rename from apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-preview.png rename to apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-preview-start.png diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-preview-stop.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-preview-stop.png new file mode 100644 index 0000000000000000000000000000000000000000..ea11a6f0121f6c560e882f3547855f6a2f737362 GIT binary patch literal 893 zcmeAS@N?(olHy`uVBq!ia0vp^NkDAK!3-qD5_?jC6id3JuOkD)#(wTUiL5|AV{wqX z6T`Z5GB1G~&H|6fVg?3oVGw3ym^DWNDA*q06XNP#-~(j-2LlL$LK44e$g;@nHRAO- zK)!ZKkY6yv{P_;|_wQFwxbN`(y?{V|et&;K!TIy?@%8oV*W23%1SBLF7&J62STJG2 zEB+I!85o#6JY5_^A`ZWucCzY~0Z*&HjQTcXXSP!}xLK_Z{I5HJDCdcz zKeR)O-nZt>Px;IK{nhU>$@^6cZ?$as{~+wv@45NsjxX-AzCWjbTi0Q3!^cXxAGHl1 zX30&yZ8oL!g~68fD`R~l+qs(NUpM=7G&aNYWAR2a?ec|3EA!hf6`tDUU-|Cr1q;8( zU#a)zX;c*PP0QP}Ja|RR%;u$8hBmEJ*Qg0=Me^iNTQ!`IF#_+{_+?l;MMWTpr{ z{;O0wU#ETPl6eBs+=~zN2rt}JRj3kjt$4DnvGBapZCSVGzSz3L^YS~F^{!{lBWJZl z6soq}emg-TZ@crNWH*z}K1o5(Nzw@e z?hY09TV?WZ-ybu*C%oO-=F8j5nu2fGzgg-pRAq4SbkvPXWjOHu_VYC^4;gPRx0!I> zRj=X8={GN*JIO7WoqH@}Q}v3f=|;P97P-GIwn{QhoPYUW4S(gl@Ow<#p8q}S^N0P; Xt4No7W?BWnq{!gu>gTe~DWM4fs~V3v literal 0 HcmV?d00001 diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-preview.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-preview-start.png similarity index 100% rename from apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-preview.png rename to apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-preview-start.png diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-preview-stop.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-preview-stop.png new file mode 100644 index 0000000000000000000000000000000000000000..4765e6e128eff3359609603f027bf6322156d806 GIT binary patch literal 623 zcmeAS@N?(olHy`uVBq!ia0vp^7Cu^t z-rjz~1b_dAhJpfFkx4g!UbXUcaSX9IeRj(6A|^utm-%LyX6^=-k6HfzueICo;I7l* ztMg{BdhKaDYubZ+Zw z*!0_r;my+ZrVdr{cQ+~QI~-fGr?K;JY{e_*5YG>D7QWgRo%#4V&(!aC(>@tq+b4e6 zz5HA8n%cAK%@@n>J-Bc{dflUIJbb;qlF=C{tJF4bn=G#H)y=b~gXh3|)~}Bx?2fkY zu9IP2`y$}r9#{6iJRRHW9xzN6;VAcf!=&2aw8~9pL9gQW)Lhwwiw6Vw3~Jdvi}{uD z3$wpSZ+!0hPHwV^nOaEI6fdKv z>79Eu^&3!~eo2sDFvI@+0t)Zn-@mUQFn_*-LwA_Z^N$_JvQKJQ3*4R-Xy&J#>(=Op%4D=e zb9$2N2Sah2OgCn|jm$dJ7~(&6K6ae>d%~XPE9H(2Z62*pGF>Dmg-ksaPX2JP^UW`Gmn$rV)7=$`G%U{jDm6UYu-@=u;PVe5xOD|EKemS^# zOG5D~4+e%MODg7gZ2?A_m)!E`sPessg=X`v+jZ|@r>{MK^}HKjK5t0w>RmY9FHqD! zZJxDjD(8;HnL3Q+CcWwpOjDnqw{_p~`SbHW^*hQ(t2n=VY)sxgmo4!QqvXHc_V3GN zTFTf{e!M?-_igiuJ8iOUMPe>$%D-*KW~U8R28 z6z`SW>MGAmEmdBBNTBxf$!eu2>+sD|A9wrTQ-1X7Q&#n&iftZ(mjf!wIxgl+G&_|2 z@TSzP%?p<*eJxu$PwIJ2hGO8pzL@_Nv#))rox@VS%QyRzq35A_d0+Y>E>Agl^I`A3 zjoNd}EDlYmn)O1=^;zntfZk7qi=tItJ(u2c)nz6_nTlvqo}!9`vSr1=ivA~CW4Rew zx+T~o5?rH;1zDdunkDh*Z>>HR6XXAQY1#d4**OlDhgR?>UEY@P))J7domQbKfwYwNLnHq4x974YrFP Date: Fri, 21 Jan 2022 12:37:24 +0300 Subject: [PATCH 065/217] [PE] Add icon to transitions tab --- apps/common/main/resources/less/label.less | 2 +- .../main/app/template/Toolbar.template | 6 +++--- apps/presentationeditor/main/app/view/Transitions.js | 12 +++++++++--- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/apps/common/main/resources/less/label.less b/apps/common/main/resources/less/label.less index ffd4647ab..8f44c647b 100644 --- a/apps/common/main/resources/less/label.less +++ b/apps/common/main/resources/less/label.less @@ -8,7 +8,7 @@ height: 20px; line-height: 20px; padding: 0; - margin: 0; + margin-top: -2px; display: inline-block; background-repeat: no-repeat; vertical-align: middle; diff --git a/apps/presentationeditor/main/app/template/Toolbar.template b/apps/presentationeditor/main/app/template/Toolbar.template index c0eeadd9c..65c6dc50c 100644 --- a/apps/presentationeditor/main/app/template/Toolbar.template +++ b/apps/presentationeditor/main/app/template/Toolbar.template @@ -151,8 +151,8 @@
- - + +
@@ -165,7 +165,7 @@
-
+
diff --git a/apps/presentationeditor/main/app/view/Transitions.js b/apps/presentationeditor/main/app/view/Transitions.js index 338bdb1c6..bc013be60 100644 --- a/apps/presentationeditor/main/app/view/Transitions.js +++ b/apps/presentationeditor/main/app/view/Transitions.js @@ -233,6 +233,14 @@ define([ }); this.lockedControls.push(this.numDuration); + this.lblDuration = new Common.UI.Label({ + el: this.$el.find('#transit-duration'), + iconCls: 'toolbar__icon animation-duration', + caption: this.strDuration, + lock: [_set.slideDeleted, _set.noSlides, _set.disableOnStart, _set.transitLock] + }); + this.lockedControls.push(this.lblDuration); + this.numDelay = new Common.UI.MetricSpinner({ el: this.$el.find('#transit-spin-delay'), step: 1, @@ -270,7 +278,6 @@ define([ Common.Utils.lockControls(PE.enumLock.disableOnStart, true, {array: this.lockedControls}); - this.$el.find('#transit-duration').text(this.strDuration); Common.NotificationCenter.on('app:ready', this.onAppReady.bind(this)); }, @@ -335,7 +342,6 @@ define([ this.renderComponent('#transit-spin-duration', this.numDuration); this.renderComponent('#transit-spin-delay', this.numDelay); this.renderComponent('#transit-checkbox-startonclick', this.chStartOnClick); - this.$el.find("#label-duration").innerText = this.strDuration; this.$el.find("#label-delay").innerText = this.strDelay; return this.$el; }, @@ -417,6 +423,7 @@ define([ this.btnParameters.setDisabled(effect === Asc.c_oAscSlideTransitionTypes.None); this.btnPreview.setDisabled(effect === Asc.c_oAscSlideTransitionTypes.None); this.numDuration.setDisabled(effect === Asc.c_oAscSlideTransitionTypes.None); + this.lblDuration.setDisabled(effect === Asc.c_oAscSlideTransitionTypes.None); } return (selectedElement)?selectedElement.value:-1; }, @@ -429,7 +436,6 @@ define([ strDuration: 'Duration', strDelay: 'Delay', strStartOnClick: 'Start On Click', - textNone: 'None', textFade: 'Fade', textPush: 'Push', From 44fd700fc334f8aef63c72ca11b77983917c185a Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 21 Jan 2022 13:19:13 +0300 Subject: [PATCH 066/217] [PE] Fix bugs --- apps/presentationeditor/main/app/controller/Animation.js | 7 ++++--- apps/presentationeditor/main/app/view/Animation.js | 4 +++- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/apps/presentationeditor/main/app/controller/Animation.js b/apps/presentationeditor/main/app/controller/Animation.js index 86b5f83ce..75b9da10c 100644 --- a/apps/presentationeditor/main/app/controller/Animation.js +++ b/apps/presentationeditor/main/app/controller/Animation.js @@ -319,7 +319,10 @@ define([ onEffectSelect: function (combo, record) { if (this.api) { var type = record.get('value'); - var group = (type != AscFormat.ANIM_PRESET_NONE) ? _.findWhere(this.EffectGroups, {id: record.get('group')}).value : undefined; + if (type===AscFormat.ANIM_PRESET_MULTIPLE) return; + + var group = _.findWhere(this.EffectGroups, {id: record.get('group')}); + group = group ? group.value : undefined; this.addNewEffect(type, group, record.get('group'),this._state.Effect != AscFormat.ANIM_PRESET_NONE); } }, @@ -331,8 +334,6 @@ define([ } }, - - onCheckRewindChange: function (field, newValue, oldValue, eOpts) { if (this.api && this.AnimationProperties) { this.AnimationProperties.asc_putRewind(field.getValue() == 'checked'); diff --git a/apps/presentationeditor/main/app/view/Animation.js b/apps/presentationeditor/main/app/view/Animation.js index 6dc9ce214..3c40d3120 100644 --- a/apps/presentationeditor/main/app/view/Animation.js +++ b/apps/presentationeditor/main/app/view/Animation.js @@ -505,10 +505,12 @@ define([ me.fireEvent('animation:addanimation', [picker, record]); }); menu.off('show:before', onShowBefore); + menu.on('show:after', function () { + picker.scroller.update({alwaysVisibleY: true}); + }); me.btnAddAnimation.menu.setInnerMenu([{menu: picker, index: 0}]); }; me.btnAddAnimation.menu.on('show:before', onShowBefore); - setEvents.call(me); }); }, From 1ae9e9eb622f9a3b19034c4eee670d83fa9dedb8 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 21 Jan 2022 14:24:55 +0300 Subject: [PATCH 067/217] [SSE] For Bug 55011 --- apps/common/main/lib/view/OpenDialog.js | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/apps/common/main/lib/view/OpenDialog.js b/apps/common/main/lib/view/OpenDialog.js index 0934a73d9..1a1681619 100644 --- a/apps/common/main/lib/view/OpenDialog.js +++ b/apps/common/main/lib/view/OpenDialog.js @@ -484,16 +484,18 @@ define([ if (this.type == Common.Utils.importTextType.CSV || this.type == Common.Utils.importTextType.Paste || this.type == Common.Utils.importTextType.Columns || this.type == Common.Utils.importTextType.Data) { var maxlength = 0; for (var i=0; imaxlength) - maxlength = data[i].length; + var str = data[i] || ''; + if (str.length>maxlength) + maxlength = str.length; } var tpl = ''; for (var i=0; i'; + for (var j=0; j'; } - for (j=data[i].length; j'; + var str = data[i] || ''; + tpl += ''; } tpl += '
' + Common.Utils.String.htmlEncode(str) + '
'; } From d94b41692c080f10bb49ae2f55baba7692903e2f Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 21 Jan 2022 16:28:57 +0300 Subject: [PATCH 068/217] [PE] Fix multiple animations --- apps/presentationeditor/main/app/controller/Animation.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/presentationeditor/main/app/controller/Animation.js b/apps/presentationeditor/main/app/controller/Animation.js index f4c8c1664..a9debb9cf 100644 --- a/apps/presentationeditor/main/app/controller/Animation.js +++ b/apps/presentationeditor/main/app/controller/Animation.js @@ -354,12 +354,12 @@ define([ if (!item.get('isCustom')) { // remove custom effect from list if not-custom is selected var rec = store.findWhere({isCustom: true}); forceFill = !!rec; - store.remove(rec); + rec && store.remove(rec); } if (this._state.Effect!==AscFormat.ANIM_PRESET_MULTIPLE) { // remove "multiple" item if one effect is selected var rec = fieldStore.findWhere({value: AscFormat.ANIM_PRESET_MULTIPLE}); forceFill = forceFill || !!rec; - fieldStore.remove(rec); + rec && fieldStore.remove(rec); } view.listEffects.selectRecord(item); view.listEffects.fillComboView(item, true, forceFill); @@ -368,7 +368,7 @@ define([ store.remove(store.findWhere({isCustom: true})); // remove custom effects if (this._state.Effect==AscFormat.ANIM_PRESET_MULTIPLE) { // add and select "multiple" item view.listEffects.fillComboView(store.at(0), false, true); - fieldStore.remove(fieldStore.at(fieldStore.length-1)); + fieldStore.reset(fieldStore.slice(0, fieldStore.length-1)); view.listEffects.fieldPicker.selectRecord(fieldStore.add(new Common.UI.DataViewModel({ group: 'none', value: AscFormat.ANIM_PRESET_MULTIPLE, From ebe6e0495f6993e641861dbd3e64b5a382d6c33c Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 21 Jan 2022 16:56:42 +0300 Subject: [PATCH 069/217] [PE] Fix custom animation --- apps/presentationeditor/main/app/view/Animation.js | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/apps/presentationeditor/main/app/view/Animation.js b/apps/presentationeditor/main/app/view/Animation.js index 3e5926882..822f5f68b 100644 --- a/apps/presentationeditor/main/app/view/Animation.js +++ b/apps/presentationeditor/main/app/view/Animation.js @@ -504,10 +504,12 @@ define([ setMenuParameters: function (effectId, effectGroup, option) { var arrEffectOptions,selectedElement; - var effect = _.findWhere(this.allEffects, {group: effectGroup, value: effectId}); - if(effect) + var effect = _.findWhere(this.allEffects, {group: effectGroup, value: effectId}), + updateFamilyEffect = true; + if (effect) { arrEffectOptions = Common.define.effectData.getEffectOptionsData(effect.group, effect.value); - var updateFamilyEffect = (!this._familyEffect && !effect.familyEffect) ? true : (this._familyEffect != effect.familyEffect); + updateFamilyEffect = this._familyEffect !== effect.familyEffect || !this._familyEffect; // family of effects are different or both of them = undefined (null) + } if((this._effectId != effectId && updateFamilyEffect) || (this._groupName != effectGroup)) { this.btnParameters.menu.removeAll(); } @@ -519,7 +521,7 @@ define([ this.btnParameters.menu.addItem(opt); (opt.value == option) && (selectedElement = this.btnParameters.menu.items[index]); }, this); - (effect.familyEffect) && this.btnParameters.menu.addItem({caption: '--'}); + (effect && effect.familyEffect) && this.btnParameters.menu.addItem({caption: '--'}); } else { this.btnParameters.menu.items.forEach(function (opt) { if(opt.toggleGroup == 'animateeffects' && opt.value == option) @@ -529,7 +531,7 @@ define([ (selectedElement == undefined) && (selectedElement = this.btnParameters.menu.items[0]) selectedElement.setChecked(true); } - if (effect.familyEffect){ + if (effect && effect.familyEffect){ if (this._familyEffect != effect.familyEffect) { var effectsArray = Common.define.effectData.getSimilarEffectsArray(effectGroup, effect.familyEffect); effectsArray.forEach(function (opt) { @@ -549,7 +551,7 @@ define([ this._effectId = effectId; this._groupName = effectGroup; - this._familyEffect = effect.familyEffect; + this._familyEffect = effect ? effect.familyEffect : undefined; return selectedElement ? selectedElement.value : undefined; }, From d6bae445003218b9766bd16fc020b8efd3398aa9 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 21 Jan 2022 17:36:41 +0300 Subject: [PATCH 070/217] [SSE][SSE mobile] Bug 53978 --- apps/common/main/resources/less/language-dialog.less | 2 +- apps/spreadsheeteditor/main/app/view/FileMenuPanels.js | 2 +- apps/spreadsheeteditor/mobile/src/store/applicationSettings.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/common/main/resources/less/language-dialog.less b/apps/common/main/resources/less/language-dialog.less index 6b7791d4b..1acb2ad15 100644 --- a/apps/common/main/resources/less/language-dialog.less +++ b/apps/common/main/resources/less/language-dialog.less @@ -79,7 +79,7 @@ li { &.lv, &.lv-LV {background-position: -32px -72px;} &.lt, &.lt-LT {background-position: 0 -84px;} &.vi, &.vi-VN {background-position: -16px -84px;} - &.de-CH {background-position: -32px -84px;} + &.de-CH, &.fr-CH {background-position: -32px -84px;} &.pt-PT {background-position: -16px -96px;} &.de-AT {background-position: -32px -96px;} &.es, &.es-ES {background-position: 0 -108px;} diff --git a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js index 2701f9656..297726d85 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js @@ -985,7 +985,7 @@ define([ }); var regdata = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0C07 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A }, - { value: 0x040B }, { value: 0x040C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, + { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, { value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 }]; regdata.forEach(function(item) { var langinfo = Common.util.LanguageInfo.getLocalLanguageName(item.value); diff --git a/apps/spreadsheeteditor/mobile/src/store/applicationSettings.js b/apps/spreadsheeteditor/mobile/src/store/applicationSettings.js index 558d87230..437fae8cf 100644 --- a/apps/spreadsheeteditor/mobile/src/store/applicationSettings.js +++ b/apps/spreadsheeteditor/mobile/src/store/applicationSettings.js @@ -53,7 +53,7 @@ export class storeApplicationSettings { getRegDataCodes() { const regDataCode = [ { value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A }, - { value: 0x040B }, { value: 0x040C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, + { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, { value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 } ]; From b6d91237d42c8daf3249c5cf95a3fa65e04eca59 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 21 Jan 2022 20:35:02 +0300 Subject: [PATCH 071/217] Update translation --- apps/documenteditor/embed/locale/ca.json | 26 +- apps/documenteditor/forms/locale/be.json | 12 + apps/documenteditor/forms/locale/bg.json | 7 + apps/documenteditor/forms/locale/ca.json | 77 +- apps/documenteditor/forms/locale/da.json | 3 + apps/documenteditor/forms/locale/en.json | 4 +- apps/documenteditor/forms/locale/lo.json | 6 + apps/documenteditor/forms/locale/lv.json | 2 + apps/documenteditor/forms/locale/nb.json | 5 +- apps/documenteditor/forms/locale/nl.json | 2 +- apps/documenteditor/forms/locale/pl.json | 3 + apps/documenteditor/forms/locale/pt.json | 2 + apps/documenteditor/forms/locale/ru.json | 3 + apps/documenteditor/forms/locale/sk.json | 1 + apps/documenteditor/forms/locale/sl.json | 3 + apps/documenteditor/forms/locale/sv.json | 3 + apps/documenteditor/forms/locale/uk.json | 4 +- apps/documenteditor/main/locale/be.json | 25 +- apps/documenteditor/main/locale/bg.json | 15 + apps/documenteditor/main/locale/ca.json | 78 +- apps/documenteditor/main/locale/cs.json | 45 + apps/documenteditor/main/locale/en.json | 10 +- apps/documenteditor/main/locale/fi.json | 16 +- apps/documenteditor/main/locale/hu.json | 2 +- apps/documenteditor/main/locale/id.json | 53 +- apps/documenteditor/main/locale/lv.json | 18 +- apps/documenteditor/main/locale/nb.json | 12 + apps/documenteditor/main/locale/pl.json | 1 + apps/documenteditor/main/locale/pt.json | 29 +- apps/documenteditor/main/locale/ru.json | 48 +- apps/documenteditor/main/locale/sk.json | 6 + apps/documenteditor/main/locale/sl.json | 17 +- apps/documenteditor/main/locale/sv.json | 3 +- apps/documenteditor/main/locale/uk.json | 38 +- apps/documenteditor/main/locale/zh.json | 16 +- apps/presentationeditor/embed/locale/ca.json | 22 +- apps/presentationeditor/embed/locale/nl.json | 14 +- apps/presentationeditor/main/locale/ca.json | 160 +++- apps/presentationeditor/main/locale/cs.json | 128 ++- apps/presentationeditor/main/locale/en.json | 26 +- apps/presentationeditor/main/locale/pt.json | 196 +++- apps/presentationeditor/main/locale/ru.json | 120 ++- apps/presentationeditor/main/locale/uk.json | 63 +- apps/presentationeditor/main/locale/zh.json | 10 +- apps/spreadsheeteditor/embed/locale/ca.json | 22 +- apps/spreadsheeteditor/main/locale/ca.json | 15 + apps/spreadsheeteditor/main/locale/cs.json | 70 +- apps/spreadsheeteditor/main/locale/en.json | 4 +- apps/spreadsheeteditor/main/locale/pl.json | 38 + apps/spreadsheeteditor/main/locale/pt.json | 8 + apps/spreadsheeteditor/main/locale/ru.json | 50 + apps/spreadsheeteditor/main/locale/tr.json | 8 +- apps/spreadsheeteditor/main/locale/uk.json | 914 ++++++++++++++++++- apps/spreadsheeteditor/main/locale/zh.json | 26 +- 54 files changed, 2243 insertions(+), 246 deletions(-) diff --git a/apps/documenteditor/embed/locale/ca.json b/apps/documenteditor/embed/locale/ca.json index 7c78a9b95..b19dd1fd5 100644 --- a/apps/documenteditor/embed/locale/ca.json +++ b/apps/documenteditor/embed/locale/ca.json @@ -9,20 +9,20 @@ "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 tens permisos per realitzar aquesta acció.
Contacta amb el teu administrador del servidor de documents.", + "DE.ApplicationController.errorAccessDeny": "No teniu permisos per realitzar aquesta acció.
Contacteu amb l'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-ho com a ...\" per desar la còpia de seguretat del fitxer al disc dur del teu 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 de l'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 teu servidor. Contacta amb el teu administrador del servidor de documents per obtenir més informació.", - "DE.ApplicationController.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitza l'opció \"Baixa-ho com a\" per desar el fitxer al disc dur de l’ordinador o torna-ho a provar més endavant.", - "DE.ApplicationController.errorLoadingFont": "No s'han carregat els tipus de lletra.
Contacta amb l'administrador del Servidor de Documents.", + "DE.ApplicationController.errorFileSizeExceed": "La mida del fitxer supera el límit establert pel servidor. Contacteu amb l'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.errorLoadingFont": "No s'han carregat els tipus de lletra.
Contacteu amb l'administrador del servidor de documents.", "DE.ApplicationController.errorSubmit": "No s'ha pogut enviar.", "DE.ApplicationController.errorTokenExpire": "El testimoni de seguretat del document ha caducat.
Contacteu amb l'administrador del servidor de documents.", - "DE.ApplicationController.errorUpdateVersionOnDisconnect": "S'ha restaurat la connexió a internet i la versió del fitxer ha canviat.
Abans de continuar treballant, has de baixar el fitxer o copiar-ne el contingut per assegurar-te que no es perdi res i, després, torna a carregar aquesta pàgina.", - "DE.ApplicationController.errorUserDrop": "Ara mateix no es pot accedir al fitxer.", + "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 la pàgina.", + "DE.ApplicationController.errorUserDrop": "No es pot accedir al fitxer.", "DE.ApplicationController.notcriticalErrorTitle": "Advertiment", "DE.ApplicationController.openErrorText": "S'ha produït un error en obrir el fitxer.", - "DE.ApplicationController.scriptLoadError": "La connexió és massa lenta, alguns dels components no s’han pogut carregar. Torna a carregar la pàgina.", + "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": "Esborra tots els camps", "DE.ApplicationController.textGotIt": "Ho tinc", @@ -30,15 +30,15 @@ "DE.ApplicationController.textLoadingDocument": "S'està carregant el document", "DE.ApplicationController.textNext": "Camp següent", "DE.ApplicationController.textOf": "de", - "DE.ApplicationController.textRequired": "Emplena tots els camps necessaris per enviar el formulari.", + "DE.ApplicationController.textRequired": "Empleneu 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.textSubmited": "El formulari s'ha enviat amb èxit
Feu clic per tancar el consell", "DE.ApplicationController.txtClose": "Tanca", "DE.ApplicationController.txtEmpty": "(Buit)", - "DE.ApplicationController.txtPressLink": "Prem CTRL i fes clic a l'enllaç", + "DE.ApplicationController.txtPressLink": "Premeu CTRL i feu clic a l'enllaç", "DE.ApplicationController.unknownErrorText": "Error desconegut.", - "DE.ApplicationController.unsupportedBrowserErrorText": "El teu navegador no és compatible.", - "DE.ApplicationController.waitText": "Espera...", + "DE.ApplicationController.unsupportedBrowserErrorText": "El vostre navegador no és compatible.", + "DE.ApplicationController.waitText": "Espereu...", "DE.ApplicationView.txtDownload": "Baixa", "DE.ApplicationView.txtDownloadDocx": "Baixa-ho com a .docx", "DE.ApplicationView.txtDownloadPdf": "Baixa-ho com a pdf", diff --git a/apps/documenteditor/forms/locale/be.json b/apps/documenteditor/forms/locale/be.json index 9a3de4eb1..d906cec0d 100644 --- a/apps/documenteditor/forms/locale/be.json +++ b/apps/documenteditor/forms/locale/be.json @@ -1,25 +1,37 @@ { + "Common.Views.ImageFromUrlDialog.textUrl": "Устаўце URL выявы:", "DE.Controllers.ApplicationController.convertationErrorText": "Пераўтварыць не атрымалася.", "DE.Controllers.ApplicationController.convertationTimeoutText": "Час чакання пераўтварэння сышоў.", "DE.Controllers.ApplicationController.criticalErrorTitle": "Памылка", "DE.Controllers.ApplicationController.downloadErrorText": "Не атрымалася спампаваць.", "DE.Controllers.ApplicationController.downloadTextText": "Спампоўванне дакумента...", "DE.Controllers.ApplicationController.errorAccessDeny": "Вы спрабуеце выканаць дзеянне, на якое не маеце правоў.
Калі ласка, звярніцеся да адміністратара сервера дакументаў.", + "DE.Controllers.ApplicationController.errorBadImageUrl": "Хібны URL-адрас выявы", "DE.Controllers.ApplicationController.errorDefaultMessage": "Код памылкі: %1", + "DE.Controllers.ApplicationController.errorEditingDownloadas": "Падчас працы з дакументам адбылася памылка.
Выкарыстайце параметр \"Спампаваць як…\", каб захаваць рэзервовую копію файла на цвёрды дыск камп’ютара.", "DE.Controllers.ApplicationController.errorFilePassProtect": "Файл абаронены паролем, яго немагчыма адкрыць.", "DE.Controllers.ApplicationController.errorFileSizeExceed": "Памер файла перавышае ліміт, вызначаны для вашага сервера.
Звярніцеся да адміністратара сервера дакументаў за дадатковымі звесткамі.", + "DE.Controllers.ApplicationController.errorForceSave": "Падчас захавання файла адбылася памылка. Калі ласка, выкарыстайце параметр \"Спампаваць як\", каб захаваць файл на цвёрдым дыску камп’ютара, альбо паспрабуйце яшчэ раз пазней.", "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "Злучэнне з інтэрнэтам было адноўлена, і версія файла змянілася.
Перш чым працягнуць працу, неабходна спампаваць файл альбо скапіяваць яго змесціва, каб захаваць даныя, а пасля перазагрузіць старонку.", "DE.Controllers.ApplicationController.errorUserDrop": "На дадзены момант файл недаступны.", + "DE.Controllers.ApplicationController.mniImageFromFile": "Выява з файла", + "DE.Controllers.ApplicationController.mniImageFromStorage": "Выява са сховішча", + "DE.Controllers.ApplicationController.mniImageFromUrl": "Выява па URL", "DE.Controllers.ApplicationController.notcriticalErrorTitle": "Увага", "DE.Controllers.ApplicationController.scriptLoadError": "Занадта павольнае злучэнне, не ўсе кампаненты атрымалася загрузіць. Калі ласка, абнавіце старонку.", "DE.Controllers.ApplicationController.textLoadingDocument": "Загрузка дакумента", "DE.Controllers.ApplicationController.textOf": "з", + "DE.Controllers.ApplicationController.textSaveAs": "Захаваць як PDF", "DE.Controllers.ApplicationController.txtClose": "Закрыць", "DE.Controllers.ApplicationController.unknownErrorText": "Невядомая памылка.", "DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "Ваш браўзер не падтрымліваецца.", + "DE.Controllers.ApplicationController.uploadImageExtMessage": "Невядомы фармат выявы.", "DE.Controllers.ApplicationController.waitText": "Калі ласка, пачакайце...", "DE.Views.ApplicationView.txtDownload": "Спампаваць", + "DE.Views.ApplicationView.txtDownloadDocx": "Спампаваць як docx", + "DE.Views.ApplicationView.txtDownloadPdf": "Спампаваць як PDF", "DE.Views.ApplicationView.txtEmbed": "Убудаваць", + "DE.Views.ApplicationView.txtFileLocation": "Перайсці да дакументаў", "DE.Views.ApplicationView.txtFullScreen": "Поўнаэкранны рэжым", "DE.Views.ApplicationView.txtPrint": "Друк", "DE.Views.ApplicationView.txtShare": "Падзяліцца" diff --git a/apps/documenteditor/forms/locale/bg.json b/apps/documenteditor/forms/locale/bg.json index ddc8b4286..ab4108bc9 100644 --- a/apps/documenteditor/forms/locale/bg.json +++ b/apps/documenteditor/forms/locale/bg.json @@ -6,20 +6,27 @@ "DE.Controllers.ApplicationController.downloadTextText": "Документът се изтегли ...", "DE.Controllers.ApplicationController.errorAccessDeny": "Опитвате се да извършите действие, за което нямате права.
Моля, свържете се с администратора на сървъра за документи.", "DE.Controllers.ApplicationController.errorDefaultMessage": "Код на грешка: %1", + "DE.Controllers.ApplicationController.errorEditingDownloadas": "Възникна грешка по време на работа с документа.
Използвайте опцията 'Download as ...', за да запишете архивното копие на файла на твърдия диск на компютъра.", "DE.Controllers.ApplicationController.errorFilePassProtect": "Файлът е защитен с парола и не може да бъде отворен.", "DE.Controllers.ApplicationController.errorFileSizeExceed": "Размерът на файла надвишава ограничението, зададено за вашия сървър.
Моля, свържете се с вашия администратор на Document Server за подробности.", + "DE.Controllers.ApplicationController.errorForceSave": "При запазването на файла възникна грешка. Моля, използвайте опцията \"Изтегляне като\", за да запишете файла на твърдия диск на компютъра или опитайте отново по-късно.", "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "Интернет връзката е възстановена и версията на файла е променена.
Преди да продължите да работите, трябва да изтеглите файла или да копирате съдържанието му, за да сте сигурни, че нищо не е загубено, и след това да презаредите тази страница.", "DE.Controllers.ApplicationController.errorUserDrop": "Файлът не може да бъде достъпен в момента.", "DE.Controllers.ApplicationController.notcriticalErrorTitle": "Внимание", "DE.Controllers.ApplicationController.scriptLoadError": "Връзката е твърде бавна, някои от компонентите не могат да бъдат заредени. Моля, презаредете страницата.", "DE.Controllers.ApplicationController.textLoadingDocument": "Зареждане на документ", "DE.Controllers.ApplicationController.textOf": "на", + "DE.Controllers.ApplicationController.textSaveAs": "Запази като PDF", "DE.Controllers.ApplicationController.txtClose": "Затвори", "DE.Controllers.ApplicationController.unknownErrorText": "Неизвестна грешка.", "DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "Вашият браузър не се поддържа.", "DE.Controllers.ApplicationController.waitText": "Моля изчакай...", "DE.Views.ApplicationView.txtDownload": "Изтегли", + "DE.Views.ApplicationView.txtDownloadDocx": "Изтеглете като docx", + "DE.Views.ApplicationView.txtDownloadPdf": "Изтеглете като PDF", "DE.Views.ApplicationView.txtEmbed": "Вграждане", + "DE.Views.ApplicationView.txtFileLocation": "Mестоположението на файла", "DE.Views.ApplicationView.txtFullScreen": "Цял екран", + "DE.Views.ApplicationView.txtPrint": "Отпечатване", "DE.Views.ApplicationView.txtShare": "Дял" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/ca.json b/apps/documenteditor/forms/locale/ca.json index 820507362..00dd31c01 100644 --- a/apps/documenteditor/forms/locale/ca.json +++ b/apps/documenteditor/forms/locale/ca.json @@ -55,53 +55,53 @@ "Common.Views.EmbedDialog.textTitle": "Incrusta", "Common.Views.EmbedDialog.textWidth": "Amplada", "Common.Views.EmbedDialog.txtCopy": "Copia al porta-retalls", - "Common.Views.EmbedDialog.warnCopy": "Error del navegador! Utilitza la drecera de teclat [Ctrl] + [C]", + "Common.Views.EmbedDialog.warnCopy": "Error del navegador! Utilitzeu la drecera de teclat [Ctrl] + [C]", "Common.Views.ImageFromUrlDialog.textUrl": "Enganxa un URL d'imatge:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Aquest camp és obligatori", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Aquest camp hauria de ser un URL amb el format \"http://www.example.com\"", "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": "Introdueix una contrasenya per obrir el fitxer", + "Common.Views.OpenDialog.txtOpenFile": "Introduïu una contrasenya per obrir el fitxer", "Common.Views.OpenDialog.txtPassword": "Contrasenya", "Common.Views.OpenDialog.txtPreview": "Visualització prèvia", - "Common.Views.OpenDialog.txtProtected": "Un cop introdueixis la contrasenya i obris 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 les opcions %1", "Common.Views.OpenDialog.txtTitleProtected": "El fitxer està protegit", "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.SelectFileDlg.textTitle": "Seleccioneu l'origen de les dades", "Common.Views.ShareDialog.textTitle": "Comparteix l'enllaç", "Common.Views.ShareDialog.txtCopy": "Copia al porta-retalls", - "Common.Views.ShareDialog.warnCopy": "Error del navegador! Utilitza la drecera de teclat [Ctrl] + [C]", + "Common.Views.ShareDialog.warnCopy": "Error del navegador! Utilitzeu la drecera de teclat [Ctrl] + [C]", "DE.Controllers.ApplicationController.convertationErrorText": "No s'ha pogut convertir", "DE.Controllers.ApplicationController.convertationTimeoutText": "S'ha superat el temps de conversió.", "DE.Controllers.ApplicationController.criticalErrorTitle": "Error", "DE.Controllers.ApplicationController.downloadErrorText": "S'ha produït un error en la baixada", "DE.Controllers.ApplicationController.downloadTextText": "S'està baixant el document...", - "DE.Controllers.ApplicationController.errorAccessDeny": "No tens permisos per realitzar aquesta acció.
Contacta amb el teu administrador del servidor de documents.", + "DE.Controllers.ApplicationController.errorAccessDeny": "No teniu permisos per realitzar aquesta acció.
Contacteu amb l'administrador del servidor de documents.", "DE.Controllers.ApplicationController.errorBadImageUrl": "L'URL de la imatge no és correcta", - "DE.Controllers.ApplicationController.errorConnectToServer": "No s'ha pogut desar el document. Comprova la configuració de la connexió o contacta amb el teu administrador.
Quan facis clic en el botó \"D'acord\", et demanarà que descarreguis el document.", + "DE.Controllers.ApplicationController.errorConnectToServer": "No s'ha pogut desar el document. Comproveu la configuració de la connexió o contacteu amb l'administrador.
Quan feu clic al botó \"D'acord\", se us demanarà que descarregueu el document.", "DE.Controllers.ApplicationController.errorDataEncrypted": "Els canvis xifrats que s'han rebut no es poden desxifrar.", "DE.Controllers.ApplicationController.errorDefaultMessage": "Codi d'error:%1", - "DE.Controllers.ApplicationController.errorEditingDownloadas": "S'ha produït un error mentre es treballava amb el document.
Utilitza l'opció \"Baixa-ho com a ...\" per desar la còpia de seguretat del fitxer al disc dur de l'ordinador.", - "DE.Controllers.ApplicationController.errorEditingSaveas": "S'ha produït un error mentre es treballava amb el document.
Utilitza l'opció \"Desa com a ...\" per desar la còpia de seguretat del fitxer al disc dur de l’ordinador.", + "DE.Controllers.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 de l'ordinador.", + "DE.Controllers.ApplicationController.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.", "DE.Controllers.ApplicationController.errorFilePassProtect": "El fitxer està protegit amb contrasenya i no es pot obrir.", - "DE.Controllers.ApplicationController.errorFileSizeExceed": "La mida del fitxer supera el límit establert pel teu servidor. Contacta amb el teu administrador del servidor de documents per obtenir més informació.", - "DE.Controllers.ApplicationController.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitza l'opció \"Baixa-ho com a\" per desar el fitxer al disc dur de l’ordinador o torna-ho a provar més endavant.", - "DE.Controllers.ApplicationController.errorLoadingFont": "No s'han carregat els tipus de lletra.
Contacta amb l'administrador del Servidor de Documents.", + "DE.Controllers.ApplicationController.errorFileSizeExceed": "La mida del fitxer supera el límit establert pel servidor. Contacteu amb l'administrador del servidor de documents per obtenir més informació.", + "DE.Controllers.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.Controllers.ApplicationController.errorLoadingFont": "No s'han carregat els tipus de lletra.
Contacteu amb l'administrador del servidor de documents.", "DE.Controllers.ApplicationController.errorServerVersion": "S'ha actualitzat la versió de l'editor. Es tornarà a carregar la pàgina per aplicar els canvis.", - "DE.Controllers.ApplicationController.errorSessionAbsolute": "La sessió d’edició del document ha caducat. Torna a carregar la pàgina.", - "DE.Controllers.ApplicationController.errorSessionIdle": "Fa temps que no s'obre el document. Torna a carregar la pàgina.", - "DE.Controllers.ApplicationController.errorSessionToken": "S'ha interromput la connexió amb el servidor. Torna a carregar la pàgina.", + "DE.Controllers.ApplicationController.errorSessionAbsolute": "La sessió d’edició del document ha caducat. Torneu a carregar la pàgina.", + "DE.Controllers.ApplicationController.errorSessionIdle": "Fa temps que no s'obre el document. Torneu a carregar la pàgina.", + "DE.Controllers.ApplicationController.errorSessionToken": "S'ha interromput la connexió amb el servidor. Torneu a carregar la pàgina.", "DE.Controllers.ApplicationController.errorSubmit": "No s'ha pogut enviar.", - "DE.Controllers.ApplicationController.errorToken": "El testimoni de seguretat del document no s'ha format correctament.
Contacta amb el teu administrador del servidor de documents.", - "DE.Controllers.ApplicationController.errorTokenExpire": "El testimoni de seguretat del document ha caducat.
Contacta amb l'administrador del servidor de documents.", + "DE.Controllers.ApplicationController.errorToken": "El testimoni de seguretat del document no s'ha format correctament.
Contacteu amb l'administrador del servidor de documents.", + "DE.Controllers.ApplicationController.errorTokenExpire": "El testimoni de seguretat del document ha caducat.
Contacteu amb l'administrador del servidor de documents.", "DE.Controllers.ApplicationController.errorUpdateVersion": "S'ha canviat la versió del fitxer. La pàgina es tornarà a carregar.", - "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "S'ha restaurat la connexió a internet i la versió del fitxer ha canviat.
Abans de continuar treballant, has de baixar el fitxer o copiar-ne el contingut per assegurar-te que no es perdi res i, després, torna a carregar aquesta pàgina.", - "DE.Controllers.ApplicationController.errorUserDrop": "Ara no es pot accedir al fitxer.", - "DE.Controllers.ApplicationController.errorViewerDisconnect": "S'ha perdut la connexió. Encara pots visualitzar el document,
però no el podràs baixar ni imprimir fins que no es restableixi la connexió i es torni a carregar la pàgina.", + "DE.Controllers.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.Controllers.ApplicationController.errorUserDrop": "No es pot accedir al fitxer.", + "DE.Controllers.ApplicationController.errorViewerDisconnect": "S'ha perdut la connexió. Encara podeu visualitzar el document,
però no el podreu baixar ni imprimir fins que no es restableixi la connexió i es torni a carregar la pàgina.", "DE.Controllers.ApplicationController.mniImageFromFile": "Imatge del fitxer", "DE.Controllers.ApplicationController.mniImageFromStorage": "Imatge de l'emmagatzematge", "DE.Controllers.ApplicationController.mniImageFromUrl": "Imatge d'URL", @@ -109,50 +109,55 @@ "DE.Controllers.ApplicationController.openErrorText": "S'ha produït un error en obrir el fitxer.", "DE.Controllers.ApplicationController.saveErrorText": "S'ha produït un error en desar el fitxer.", "DE.Controllers.ApplicationController.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.ApplicationController.scriptLoadError": "La connexió és massa lenta, alguns dels components no s’han pogut carregar. Torna a carregar la pàgina.", + "DE.Controllers.ApplicationController.scriptLoadError": "La connexió és massa lenta, alguns dels components no s’han pogut carregar. Torneu a carregar la pàgina.", "DE.Controllers.ApplicationController.textAnonymous": "Anònim", - "DE.Controllers.ApplicationController.textBuyNow": "Visita el Lloc Web", - "DE.Controllers.ApplicationController.textCloseTip": "Fes clic per tancar el suggeriment.", - "DE.Controllers.ApplicationController.textContactUs": "Contacta amb vendes", + "DE.Controllers.ApplicationController.textBuyNow": "Visiteu el lloc web", + "DE.Controllers.ApplicationController.textCloseTip": "Feu clic per tancar el suggeriment.", + "DE.Controllers.ApplicationController.textContactUs": "Contacteu amb vendes", "DE.Controllers.ApplicationController.textGotIt": "Ho tinc", "DE.Controllers.ApplicationController.textGuest": "Convidat", "DE.Controllers.ApplicationController.textLoadingDocument": "S'està carregant el document", "DE.Controllers.ApplicationController.textNoLicenseTitle": "S'ha assolit el límit de llicència", "DE.Controllers.ApplicationController.textOf": "de", - "DE.Controllers.ApplicationController.textRequired": "Emplena tots els camps necessaris per enviar el formulari.", + "DE.Controllers.ApplicationController.textRequired": "Empleneu tots els camps necessaris per enviar el formulari.", "DE.Controllers.ApplicationController.textSaveAs": "Desa com a PDF", "DE.Controllers.ApplicationController.textSaveAsDesktop": "Desa com a...", - "DE.Controllers.ApplicationController.textSubmited": "El formulari s'ha enviat amb èxit
Fes clic per tancar el consell", + "DE.Controllers.ApplicationController.textSubmited": "El formulari s'ha enviat amb èxit
Feu clic per tancar el consell", + "DE.Controllers.ApplicationController.titleLicenseExp": "La llicència ha caducat", "DE.Controllers.ApplicationController.titleServerVersion": "S'ha actualitzat l'editor", "DE.Controllers.ApplicationController.titleUpdateVersion": "S'ha canviat la versió", - "DE.Controllers.ApplicationController.txtArt": "El teu text aquí", + "DE.Controllers.ApplicationController.txtArt": "El vostre text aquí", "DE.Controllers.ApplicationController.txtChoose": "Tria un element", - "DE.Controllers.ApplicationController.txtClickToLoad": "Fes clic per carregar la imatge", + "DE.Controllers.ApplicationController.txtClickToLoad": "Feu clic per carregar la imatge", "DE.Controllers.ApplicationController.txtClose": "Tanca", "DE.Controllers.ApplicationController.txtEmpty": "(Buit)", "DE.Controllers.ApplicationController.txtEnterDate": "Introdueix una data", - "DE.Controllers.ApplicationController.txtPressLink": "Prem CTRL i clica a l'enllaç", + "DE.Controllers.ApplicationController.txtPressLink": "Premeu CTRL i feu clic a l'enllaç", "DE.Controllers.ApplicationController.txtUntitled": "Sense títol", "DE.Controllers.ApplicationController.unknownErrorText": "Error desconegut.", - "DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "El teu navegador no és compatible.", + "DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "El vostre navegador no és compatible.", "DE.Controllers.ApplicationController.uploadImageExtMessage": "Format d'imatge desconegut.", "DE.Controllers.ApplicationController.uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és 25 MB.", "DE.Controllers.ApplicationController.waitText": "Espera...", - "DE.Controllers.ApplicationController.warnLicenseExceeded": "Has arribat al límit de connexions simultànies amb %1 editors. Aquest document només s'obrirà en mode lectura.
Contacta amb el teu administrador per obtenir més informació.", - "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "La llicència ha caducat.
No tens accés a la funció d'edició de documents.
Contacta amb el teu administrador.", - "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "Cal renovar la llicència.
Tens un accés limitat a la funció d'edició de documents.
Contacta amb el teu administrador per obtenir accés total", - "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "Has arribat al límit d'usuari per a %1 editors. Contacta amb el teu administrador per a més informació.", - "DE.Controllers.ApplicationController.warnNoLicense": "Has arribat al límit de connexions simultànies per als editors %1. Aquest document s'obrirà al mode de només lectura. Contacta l'equip de vendes %1 per a les condicions personals de millora del servei.", - "DE.Controllers.ApplicationController.warnNoLicenseUsers": "Has arribat al límit d'usuaris per a %1 editors. Contacta amb l'equip de vendes de %1 per obtenir les condicions de millora personals dels teus serveis.", + "DE.Controllers.ApplicationController.warnLicenseExceeded": "Heu arribat al 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.ApplicationController.warnLicenseExp": "La vostra llicència ha caducat.
Actualitzeu la llicència i recarregueu la pàgina.", + "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "La llicència ha caducat.
No teniu accés a la funció d'edició de documents.
Contacteu amb l'administrador.", + "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "Cal renovar la llicència.
Teniu accés limitat a la funció d'edició de documents.
Contacteu amb l'administrador per obtenir accés total", + "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "Heu arribat al límit d'usuari per a %1 editors. Contacteu amb l'administrador per a més informació.", + "DE.Controllers.ApplicationController.warnNoLicense": "Heu arribat al límit de connexions simultànies per als editors %1. Aquest document s'obrirà en mode de només lectura. Contacteu l'equip de vendes %1 per a les condicions personals de millora del servei.", + "DE.Controllers.ApplicationController.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.Views.ApplicationView.textClear": "Esborra tots els camps", "DE.Views.ApplicationView.textCopy": "Copia", "DE.Views.ApplicationView.textCut": "Talla", + "DE.Views.ApplicationView.textFitToPage": "Ajusta-ho a la pàgina", + "DE.Views.ApplicationView.textFitToWidth": "Ajusta-ho a l'amplària", "DE.Views.ApplicationView.textNext": "Camp següent", "DE.Views.ApplicationView.textPaste": "Enganxa", "DE.Views.ApplicationView.textPrintSel": "Imprimir la selecció", "DE.Views.ApplicationView.textRedo": "Refés", "DE.Views.ApplicationView.textSubmit": "Envia", "DE.Views.ApplicationView.textUndo": "Desfés", + "DE.Views.ApplicationView.textZoom": "Zoom", "DE.Views.ApplicationView.txtDarkMode": "Mode fosc", "DE.Views.ApplicationView.txtDownload": "Baixa", "DE.Views.ApplicationView.txtDownloadDocx": "Baixa-ho com a .docx", diff --git a/apps/documenteditor/forms/locale/da.json b/apps/documenteditor/forms/locale/da.json index 13407ed22..6d0800d02 100644 --- a/apps/documenteditor/forms/locale/da.json +++ b/apps/documenteditor/forms/locale/da.json @@ -147,12 +147,15 @@ "DE.Views.ApplicationView.textClear": "Ryd alle felter", "DE.Views.ApplicationView.textCopy": "Kopier", "DE.Views.ApplicationView.textCut": "Klip", + "DE.Views.ApplicationView.textFitToPage": "Tilpas til side", + "DE.Views.ApplicationView.textFitToWidth": "Tilpas til bredde", "DE.Views.ApplicationView.textNext": "Næste felt", "DE.Views.ApplicationView.textPaste": "Indsæt", "DE.Views.ApplicationView.textPrintSel": "Printer-valg", "DE.Views.ApplicationView.textRedo": "Fortryd", "DE.Views.ApplicationView.textSubmit": "Send", "DE.Views.ApplicationView.textUndo": "Fortryd", + "DE.Views.ApplicationView.textZoom": "Zoom", "DE.Views.ApplicationView.txtDarkMode": "Mørk tilstand", "DE.Views.ApplicationView.txtDownload": "Hent", "DE.Views.ApplicationView.txtDownloadDocx": "Download som docx", diff --git a/apps/documenteditor/forms/locale/en.json b/apps/documenteditor/forms/locale/en.json index ceb6d9701..f0a2b4233 100644 --- a/apps/documenteditor/forms/locale/en.json +++ b/apps/documenteditor/forms/locale/en.json @@ -123,6 +123,7 @@ "DE.Controllers.ApplicationController.textSaveAs": "Save as PDF", "DE.Controllers.ApplicationController.textSaveAsDesktop": "Save as...", "DE.Controllers.ApplicationController.textSubmited": "Form submitted successfully
Click to close the tip", + "DE.Controllers.ApplicationController.titleLicenseExp": "License expired", "DE.Controllers.ApplicationController.titleServerVersion": "Editor updated", "DE.Controllers.ApplicationController.titleUpdateVersion": "Version changed", "DE.Controllers.ApplicationController.txtArt": "Your text here", @@ -139,13 +140,12 @@ "DE.Controllers.ApplicationController.uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", "DE.Controllers.ApplicationController.waitText": "Please, wait...", "DE.Controllers.ApplicationController.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.", + "DE.Controllers.ApplicationController.warnLicenseExp": "Your license has expired.
Please update your license and refresh the page.", "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "License expired.
You have no access to document editing functionality.
Please contact your administrator.", "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "License needs to be renewed.
You have a limited access to document editing functionality.
Please contact your administrator to get full access", "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", "DE.Controllers.ApplicationController.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.ApplicationController.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", - "DE.Controllers.ApplicationController.titleLicenseExp": "License expired", - "DE.Controllers.ApplicationController.warnLicenseExp": "Your license has expired.
Please update your license and refresh the page.", "DE.Views.ApplicationView.textClear": "Clear All Fields", "DE.Views.ApplicationView.textCopy": "Copy", "DE.Views.ApplicationView.textCut": "Cut", diff --git a/apps/documenteditor/forms/locale/lo.json b/apps/documenteditor/forms/locale/lo.json index 0d8aff39d..9f52922a9 100644 --- a/apps/documenteditor/forms/locale/lo.json +++ b/apps/documenteditor/forms/locale/lo.json @@ -1,4 +1,7 @@ { + "Common.UI.Themes.txtThemeClassicLight": "ແສງມາດຕະຖານ", + "Common.UI.Themes.txtThemeDark": "ມືດ", + "Common.UI.Themes.txtThemeLight": "ແຈ້ງ", "DE.Controllers.ApplicationController.convertationErrorText": " ການປ່ຽນແປງບໍ່ສຳເລັດ.", "DE.Controllers.ApplicationController.convertationTimeoutText": "ໝົດເວລາການປ່ຽນແປງ.", "DE.Controllers.ApplicationController.criticalErrorTitle": "ຂໍ້ຜິດພາດ", @@ -16,11 +19,14 @@ "DE.Controllers.ApplicationController.scriptLoadError": "ການເຊື່ອມຕໍ່ອິນເຕີເນັດຊ້າເກີນໄປ, ບາງອົງປະກອບບໍ່ສາມາດໂຫຼດໄດ້. ກະລຸນາໂຫຼດໜ້ານີ້ຄືນໃໝ່", "DE.Controllers.ApplicationController.textLoadingDocument": "ກຳລັງໂຫຼດເອກະສານ", "DE.Controllers.ApplicationController.textOf": "ຂອງ", + "DE.Controllers.ApplicationController.textSaveAs": "ບັນທຶກເປັນ PDF", "DE.Controllers.ApplicationController.textSubmited": " ແບບຟອມທີ່ສົ່ງມາແລ້ວ", "DE.Controllers.ApplicationController.txtClose": " ປິດ", "DE.Controllers.ApplicationController.unknownErrorText": "ມີຂໍ້ຜິດພາດທີ່ບໍ່ຮູ້ສາເຫດ", "DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "ບຣາວເຊີຂອງທ່ານບໍ່ສາມານຳໃຊ້ໄດ້", "DE.Controllers.ApplicationController.waitText": "ກະລຸນາລໍຖ້າ...", + "DE.Views.ApplicationView.textClear": "ລຶບລ້າງຟີລດທັງໝົດ", + "DE.Views.ApplicationView.textNext": "ຟີວທັດໄປ", "DE.Views.ApplicationView.txtDownload": "ດາວໂຫຼດ", "DE.Views.ApplicationView.txtDownloadDocx": "ດາວໂຫລດເປັນເອກະສານ", "DE.Views.ApplicationView.txtDownloadPdf": "ດາວໂຫລດເປັນPDF", diff --git a/apps/documenteditor/forms/locale/lv.json b/apps/documenteditor/forms/locale/lv.json index f6f429fd4..ddb720e72 100644 --- a/apps/documenteditor/forms/locale/lv.json +++ b/apps/documenteditor/forms/locale/lv.json @@ -15,5 +15,7 @@ "DE.Controllers.ApplicationController.unknownErrorText": "Nezināma kļūda.", "DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "Jūsu pārlūkprogramma nav atbalstīta.", "DE.Views.ApplicationView.txtDownload": "Lejupielādēt", + "DE.Views.ApplicationView.txtFileLocation": "Iet uz Dokumenti", + "DE.Views.ApplicationView.txtPrint": "Drukāt", "DE.Views.ApplicationView.txtShare": "Dalīties" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/nb.json b/apps/documenteditor/forms/locale/nb.json index 249f4f0d6..8698291b1 100644 --- a/apps/documenteditor/forms/locale/nb.json +++ b/apps/documenteditor/forms/locale/nb.json @@ -1,8 +1,4 @@ { - "common.view.modals.txtCopy": "Kopier til utklippstavle", - "common.view.modals.txtHeight": "Høyde", - "common.view.modals.txtShare": "Del link", - "common.view.modals.txtWidth": "Bredde", "DE.Controllers.ApplicationController.criticalErrorTitle": "Feil", "DE.Controllers.ApplicationController.downloadErrorText": "Nedlasting feilet.", "DE.Controllers.ApplicationController.errorDefaultMessage": "Feilkode: %1", @@ -15,5 +11,6 @@ "DE.Controllers.ApplicationController.waitText": "Vennligst vent...", "DE.Views.ApplicationView.txtDownload": "Last ned", "DE.Views.ApplicationView.txtFullScreen": "Fullskjerm", + "DE.Views.ApplicationView.txtPrint": "Skriv ut", "DE.Views.ApplicationView.txtShare": "Del" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/nl.json b/apps/documenteditor/forms/locale/nl.json index 447feb1d5..6873a0b9c 100644 --- a/apps/documenteditor/forms/locale/nl.json +++ b/apps/documenteditor/forms/locale/nl.json @@ -154,7 +154,7 @@ "DE.Views.ApplicationView.textSubmit": "Indienen", "DE.Views.ApplicationView.textUndo": "Ongedaan maken", "DE.Views.ApplicationView.txtDarkMode": "Donkere modus", - "DE.Views.ApplicationView.txtDownload": "Downloaden", + "DE.Views.ApplicationView.txtDownload": "Download", "DE.Views.ApplicationView.txtDownloadDocx": "Downloaden als docx", "DE.Views.ApplicationView.txtDownloadPdf": "Downloaden als PDF", "DE.Views.ApplicationView.txtEmbed": "Insluiten", diff --git a/apps/documenteditor/forms/locale/pl.json b/apps/documenteditor/forms/locale/pl.json index 1c86ff508..fb68c50d8 100644 --- a/apps/documenteditor/forms/locale/pl.json +++ b/apps/documenteditor/forms/locale/pl.json @@ -21,6 +21,7 @@ "DE.Controllers.ApplicationController.textLoadingDocument": "Wgrywanie dokumentu", "DE.Controllers.ApplicationController.textOf": "z", "DE.Controllers.ApplicationController.textRequired": "Wypełnij wszystkie wymagane pola, aby wysłać formularz.", + "DE.Controllers.ApplicationController.textSaveAs": "Zapisz jako PDF", "DE.Controllers.ApplicationController.textSubmited": "Formularz załączony poprawnie
Kliknij aby zamknąć podpowiedź.", "DE.Controllers.ApplicationController.txtClose": "Zamknij", "DE.Controllers.ApplicationController.txtEmpty": "(Pusty)", @@ -28,6 +29,8 @@ "DE.Controllers.ApplicationController.unknownErrorText": "Nieznany błąd.", "DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "Twoja przeglądarka nie jest wspierana.", "DE.Controllers.ApplicationController.waitText": "Proszę czekać...", + "DE.Views.ApplicationView.textClear": "Wyczyść wszystkie pola", + "DE.Views.ApplicationView.textNext": "Następne pole", "DE.Views.ApplicationView.txtDownload": "Pobierz", "DE.Views.ApplicationView.txtDownloadDocx": "Pobierz jako docx", "DE.Views.ApplicationView.txtDownloadPdf": "Pobierz jako pdf", diff --git a/apps/documenteditor/forms/locale/pt.json b/apps/documenteditor/forms/locale/pt.json index b08cf9f4d..494cee5c1 100644 --- a/apps/documenteditor/forms/locale/pt.json +++ b/apps/documenteditor/forms/locale/pt.json @@ -123,6 +123,7 @@ "DE.Controllers.ApplicationController.textSaveAs": "Salvar como PDF", "DE.Controllers.ApplicationController.textSaveAsDesktop": "Salvar como...", "DE.Controllers.ApplicationController.textSubmited": " Formulário enviado com sucesso
Clique para fechar a dica", + "DE.Controllers.ApplicationController.titleLicenseExp": "A licença expirou", "DE.Controllers.ApplicationController.titleServerVersion": "Editor atualizado", "DE.Controllers.ApplicationController.titleUpdateVersion": "Versão alterada", "DE.Controllers.ApplicationController.txtArt": "Seu texto aqui", @@ -139,6 +140,7 @@ "DE.Controllers.ApplicationController.uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB.", "DE.Controllers.ApplicationController.waitText": "Por favor, aguarde...", "DE.Controllers.ApplicationController.warnLicenseExceeded": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.
Entre em contato com seu administrador para saber mais.", + "DE.Controllers.ApplicationController.warnLicenseExp": "Sua licença expirou.
Atualize sua licença e refresque a página.", "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "A licença expirou.
Você não tem acesso à funcionalidade de edição de documentos.
Por favor, contate seu administrador.", "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "A licença precisa ser renovada.
Você tem acesso limitado à funcionalidade de edição de documentos.
Entre em contato com o administrador para obter acesso total.", "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "Você atingiu o limite de usuários para editores %1. Entre em contato com seu administrador para saber mais.", diff --git a/apps/documenteditor/forms/locale/ru.json b/apps/documenteditor/forms/locale/ru.json index 7c0b40bf2..492751acc 100644 --- a/apps/documenteditor/forms/locale/ru.json +++ b/apps/documenteditor/forms/locale/ru.json @@ -123,6 +123,7 @@ "DE.Controllers.ApplicationController.textSaveAs": "Сохранить как PDF", "DE.Controllers.ApplicationController.textSaveAsDesktop": "Сохранить как...", "DE.Controllers.ApplicationController.textSubmited": "Форма успешно отправлена
Нажмите, чтобы закрыть подсказку", + "DE.Controllers.ApplicationController.titleLicenseExp": "Истек срок действия лицензии", "DE.Controllers.ApplicationController.titleServerVersion": "Редактор обновлен", "DE.Controllers.ApplicationController.titleUpdateVersion": "Версия изменилась", "DE.Controllers.ApplicationController.txtArt": "Введите ваш текст", @@ -139,6 +140,7 @@ "DE.Controllers.ApplicationController.uploadImageSizeMessage": "Слишком большое изображение. Максимальный размер - 25 MB.", "DE.Controllers.ApplicationController.waitText": "Пожалуйста, подождите...", "DE.Controllers.ApplicationController.warnLicenseExceeded": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт только на просмотр.
Свяжитесь с администратором, чтобы узнать больше.", + "DE.Controllers.ApplicationController.warnLicenseExp": "Истек срок действия лицензии.
Обновите лицензию, а затем обновите страницу.", "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "Истек срок действия лицензии.
Нет доступа к функциональности редактирования документов.
Пожалуйста, обратитесь к администратору.", "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "Необходимо обновить лицензию.
У вас ограниченный доступ к функциональности редактирования документов.
Пожалуйста, обратитесь к администратору, чтобы получить полный доступ", "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "Вы достигли лимита на количество пользователей редакторов %1. Свяжитесь с администратором, чтобы узнать больше.", @@ -155,6 +157,7 @@ "DE.Views.ApplicationView.textRedo": "Повторить", "DE.Views.ApplicationView.textSubmit": "Отправить", "DE.Views.ApplicationView.textUndo": "Отменить", + "DE.Views.ApplicationView.textZoom": "Масштаб", "DE.Views.ApplicationView.txtDarkMode": "Темный режим", "DE.Views.ApplicationView.txtDownload": "Скачать файл", "DE.Views.ApplicationView.txtDownloadDocx": "Скачать как docx", diff --git a/apps/documenteditor/forms/locale/sk.json b/apps/documenteditor/forms/locale/sk.json index fb9108aaa..f1e44ff33 100644 --- a/apps/documenteditor/forms/locale/sk.json +++ b/apps/documenteditor/forms/locale/sk.json @@ -28,6 +28,7 @@ "DE.Controllers.ApplicationController.textNoLicenseTitle": "Bol dosiahnutý limit licencie", "DE.Controllers.ApplicationController.textOf": "z", "DE.Controllers.ApplicationController.textRequired": "Vyplňte všetky požadované polia, aby ste formulár mohli odoslať.", + "DE.Controllers.ApplicationController.textSaveAs": "Uložiť ako PDF", "DE.Controllers.ApplicationController.textSubmited": "Formulár bol úspešne predložený
Kliknite, aby ste tip zatvorili", "DE.Controllers.ApplicationController.titleServerVersion": "Editor bol aktualizovaný", "DE.Controllers.ApplicationController.titleUpdateVersion": "Verzia bola zmenená", diff --git a/apps/documenteditor/forms/locale/sl.json b/apps/documenteditor/forms/locale/sl.json index 13479c7e5..759e4c24b 100644 --- a/apps/documenteditor/forms/locale/sl.json +++ b/apps/documenteditor/forms/locale/sl.json @@ -16,11 +16,14 @@ "DE.Controllers.ApplicationController.scriptLoadError": "Povezava je počasna, nekatere komponente niso pravilno naložene.Prosimo osvežite stran.", "DE.Controllers.ApplicationController.textLoadingDocument": "Nalaganje dokumenta", "DE.Controllers.ApplicationController.textOf": "od", + "DE.Controllers.ApplicationController.textSaveAs": "Shrani kot PDF", "DE.Controllers.ApplicationController.textSubmited": "Obrazec poslan uspešno
Pritisnite tukaj za zaprtje obvestila", "DE.Controllers.ApplicationController.txtClose": "Zapri", "DE.Controllers.ApplicationController.unknownErrorText": "Neznana napaka.", "DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "Vaš brskalnik ni podprt.", "DE.Controllers.ApplicationController.waitText": "Prosimo počakajte ...", + "DE.Views.ApplicationView.textClear": "Počisti vsa polja", + "DE.Views.ApplicationView.textNext": "Naslednje polje", "DE.Views.ApplicationView.txtDownload": "Prenesi", "DE.Views.ApplicationView.txtDownloadDocx": "Prenesi kot DOCX", "DE.Views.ApplicationView.txtDownloadPdf": "Prenesi kot PDF", diff --git a/apps/documenteditor/forms/locale/sv.json b/apps/documenteditor/forms/locale/sv.json index 79af15578..b6e24101b 100644 --- a/apps/documenteditor/forms/locale/sv.json +++ b/apps/documenteditor/forms/locale/sv.json @@ -20,11 +20,14 @@ "DE.Controllers.ApplicationController.textLoadingDocument": "Laddar dokument", "DE.Controllers.ApplicationController.textOf": "av", "DE.Controllers.ApplicationController.textRequired": "Fyll i alla fält för att skicka formulär.", + "DE.Controllers.ApplicationController.textSaveAs": "Spara som PDF", "DE.Controllers.ApplicationController.textSubmited": " Formulär skickat
Klicka för att stänga tipset", "DE.Controllers.ApplicationController.txtClose": "Stäng", "DE.Controllers.ApplicationController.unknownErrorText": "Okänt fel.", "DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "Din webbläsare stöds ej.", "DE.Controllers.ApplicationController.waitText": "Var snäll och vänta...", + "DE.Views.ApplicationView.textClear": "Rensa fält", + "DE.Views.ApplicationView.textNext": "Nästa fält", "DE.Views.ApplicationView.txtDownload": "Ladda ner", "DE.Views.ApplicationView.txtDownloadDocx": "Ladda ner som docx", "DE.Views.ApplicationView.txtDownloadPdf": "Ladda ner som pdf", diff --git a/apps/documenteditor/forms/locale/uk.json b/apps/documenteditor/forms/locale/uk.json index 5ae445332..133c56c47 100644 --- a/apps/documenteditor/forms/locale/uk.json +++ b/apps/documenteditor/forms/locale/uk.json @@ -1,6 +1,6 @@ { - "DE.Controllers.ApplicationController.convertationErrorText": "Не вдалося поспілкуватися.", - "DE.Controllers.ApplicationController.convertationTimeoutText": "Термін переходу перевищено.", + "DE.Controllers.ApplicationController.convertationErrorText": "Не вдалося конвертувати", + "DE.Controllers.ApplicationController.convertationTimeoutText": "Перевищено час очікування конверсії.", "DE.Controllers.ApplicationController.criticalErrorTitle": "Помилка", "DE.Controllers.ApplicationController.downloadErrorText": "Завантаження не вдалося", "DE.Controllers.ApplicationController.downloadTextText": "Завантаження документу...", diff --git a/apps/documenteditor/main/locale/be.json b/apps/documenteditor/main/locale/be.json index 2bbe48540..7a981bf17 100644 --- a/apps/documenteditor/main/locale/be.json +++ b/apps/documenteditor/main/locale/be.json @@ -72,6 +72,7 @@ "Common.Controllers.ReviewChanges.textTableRowsAdd": "Радкі дададзеныя ў табліцу", "Common.Controllers.ReviewChanges.textTableRowsDel": "Радкі выдаленыя з табліцы", "Common.Controllers.ReviewChanges.textTabs": "Змяніць табуляцыі", + "Common.Controllers.ReviewChanges.textTitleComparison": "Налады параўнання", "Common.Controllers.ReviewChanges.textUnderline": "Падкрэслены", "Common.Controllers.ReviewChanges.textUrl": "Устаўце URL-адрас дакумента", "Common.Controllers.ReviewChanges.textWidow": "Кіраванне акном", @@ -90,6 +91,8 @@ "Common.define.chartData.textStock": "Біржа", "Common.define.chartData.textSurface": "Паверхня", "Common.Translation.warnFileLocked": "Дакумент зараз выкарыстоўваецца іншай праграмай.", + "Common.UI.ButtonColored.textAutoColor": "Аўтаматычна", + "Common.UI.ButtonColored.textNewColor": "Дадаць новы адвольны колер", "Common.UI.Calendar.textApril": "Красавік", "Common.UI.Calendar.textAugust": "Жнівень", "Common.UI.Calendar.textDecember": "Снежань", @@ -146,6 +149,7 @@ "Common.UI.SynchronizeTip.textSynchronize": "Дакумент быў зменены іншым карыстальнікам.
Націсніце, каб захаваць свае змены і загрузіць абнаўленні.", "Common.UI.ThemeColorPalette.textStandartColors": "Стандартныя колеры", "Common.UI.ThemeColorPalette.textThemeColors": "Колеры тэмы", + "Common.UI.Themes.txtThemeDark": "Цёмная", "Common.UI.Window.cancelButtonText": "Скасаваць", "Common.UI.Window.closeButtonText": "Закрыць", "Common.UI.Window.noButtonText": "Не", @@ -194,6 +198,7 @@ "Common.Views.Comments.textAddComment": "Дадаць каментар", "Common.Views.Comments.textAddCommentToDoc": "Дадаць каментар да дакумента", "Common.Views.Comments.textAddReply": "Дадаць адказ", + "Common.Views.Comments.textAll": "Усе", "Common.Views.Comments.textAnonym": "Госць", "Common.Views.Comments.textCancel": "Скасаваць", "Common.Views.Comments.textClose": "Закрыць", @@ -363,6 +368,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Адкрыць зноў", "Common.Views.ReviewPopover.textReply": "Адказаць", "Common.Views.ReviewPopover.textResolve": "Вырашыць", + "Common.Views.ReviewPopover.txtEditTip": "Рэдагаваць", "Common.Views.SaveAsDlg.textLoading": "Загрузка", "Common.Views.SaveAsDlg.textTitle": "Каталог для захавання", "Common.Views.SelectFileDlg.textLoading": "Загрузка", @@ -417,6 +423,7 @@ "Common.Views.SymbolTableDialog.textSymbols": "Сімвалы", "Common.Views.SymbolTableDialog.textTitle": "Сімвал", "Common.Views.SymbolTableDialog.textTradeMark": "Сімвал таварнага знака", + "Common.Views.UserNameDialog.textLabel": "Адмеціна:", "DE.Controllers.LeftMenu.leavePageText": "Усе незахаваныя змены ў гэтым дакуменце страцяцца.
Націсніце \"Скасаваць\" і \"Захаваць\", каб захаваць іх. Націсніце \"Добра\", каб адкінуць незахаваныя змены.", "DE.Controllers.LeftMenu.newDocumentTitle": "Дакумент без назвы", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Увага", @@ -512,6 +519,7 @@ "DE.Controllers.Main.textContactUs": "Звязацца з аддзелам продажу", "DE.Controllers.Main.textConvertEquation": "Гэтае раўнанне створана ў старой версіі рэдактара раўнанняў, якая больш не падтрымліваецца. Каб змяніць раўнанне, яго неабходна пераўтварыць у фармат Math ML.
Пераўтварыць?", "DE.Controllers.Main.textCustomLoader": "Звярніце ўвагу, што па ўмовах ліцэнзіі вы не можаце змяняць экран загрузкі.
Калі ласка, звярніцеся ў аддзел продажу.", + "DE.Controllers.Main.textDisconnect": "Злучэнне страчана", "DE.Controllers.Main.textHasMacros": "Файл змяшчае макрасы з аўтазапускам.
Хочаце запусціць макрасы?", "DE.Controllers.Main.textLearnMore": "Падрабязней", "DE.Controllers.Main.textLoadingDocument": "Загрузка дакумента", @@ -1534,7 +1542,7 @@ "DE.Views.FileMenu.btnDownloadCaption": "Спампаваць як...", "DE.Views.FileMenu.btnHelpCaption": "Даведка…", "DE.Views.FileMenu.btnHistoryCaption": "Гісторыя версій", - "DE.Views.FileMenu.btnInfoCaption": "Інфармацыя аб дакуменце…", + "DE.Views.FileMenu.btnInfoCaption": "Інфармацыя пра дакумент…", "DE.Views.FileMenu.btnPrintCaption": "Друк", "DE.Views.FileMenu.btnProtectCaption": "Абараніць", "DE.Views.FileMenu.btnRecentFilesCaption": "Адкрыць апошнія…", @@ -1547,6 +1555,7 @@ "DE.Views.FileMenu.btnSettingsCaption": "Дадатковыя налады…", "DE.Views.FileMenu.btnToEditCaption": "Рэдагаваць дакумент", "DE.Views.FileMenu.textDownload": "Спампаваць", + "DE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Стварыць новы", "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Ужыць", "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Дадаць аўтара", "DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Дадаць тэкст", @@ -1639,6 +1648,11 @@ "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Паказваць апавяшчэнне", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Адключыць усе макрасы з апавяшчэннем", "DE.Views.FileMenuPanels.Settings.txtWin": "як Windows", + "DE.Views.FormSettings.textAutofit": "Аўтазапаўненне", + "DE.Views.FormSettings.textColor": "Колер межаў", + "DE.Views.FormSettings.textDelete": "Выдаліць", + "DE.Views.FormSettings.textFromFile": "З файла", + "DE.Views.FormSettings.textNoBorder": "Без межаў", "DE.Views.HeaderFooterSettings.textBottomCenter": "Знізу па цэнтры", "DE.Views.HeaderFooterSettings.textBottomLeft": "Знізу злева", "DE.Views.HeaderFooterSettings.textBottomPage": "Унізе старонкі", @@ -1799,6 +1813,7 @@ "DE.Views.LineNumbersDialog.textSection": "Бягучы раздзел", "DE.Views.LineNumbersDialog.textStartAt": "Пачаць з", "DE.Views.LineNumbersDialog.textTitle": "Нумарацыя радкоў", + "DE.Views.LineNumbersDialog.txtAutoText": "Аўта", "DE.Views.Links.capBtnBookmarks": "Закладка", "DE.Views.Links.capBtnCaption": "Назва", "DE.Views.Links.capBtnContentsUpdate": "Абнавіць", @@ -1950,6 +1965,7 @@ "DE.Views.PageSizeDialog.textTitle": "Памер старонкі", "DE.Views.PageSizeDialog.textWidth": "Шырыня", "DE.Views.PageSizeDialog.txtCustom": "Адвольны", + "DE.Views.ParagraphSettings.strIndent": "Водступы", "DE.Views.ParagraphSettings.strLineHeight": "Прамежак паміж радкамі", "DE.Views.ParagraphSettings.strParagraphSpacing": "Прамежак паміж абзацамі", "DE.Views.ParagraphSettings.strSomeParagraphSpace": "Не дадаваць прамежак паміж абзацамі аднаго стылю", @@ -1961,6 +1977,7 @@ "DE.Views.ParagraphSettings.textAuto": "Множнік", "DE.Views.ParagraphSettings.textBackColor": "Колер фону", "DE.Views.ParagraphSettings.textExact": "Дакладна", + "DE.Views.ParagraphSettings.textFirstLine": "Першы радок", "DE.Views.ParagraphSettings.textNoneSpecial": "(няма)", "DE.Views.ParagraphSettings.txtAutoText": "Аўта", "DE.Views.ParagraphSettingsAdvanced.noTabs": "Вызначаныя табуляцыі з’явяцца ў гэтым полі", @@ -2147,10 +2164,13 @@ "DE.Views.TableOfContentsSettings.strLinks": "Фарматаваць змест у спасылкі", "DE.Views.TableOfContentsSettings.strShowPages": "Паказаць нумары старонак", "DE.Views.TableOfContentsSettings.textBuildTable": "Стварыць змест з", + "DE.Views.TableOfContentsSettings.textEquation": "Раўнанне", + "DE.Views.TableOfContentsSettings.textFigure": "Фігура", "DE.Views.TableOfContentsSettings.textLeader": "Запаўняльнік", "DE.Views.TableOfContentsSettings.textLevel": "Узровень", "DE.Views.TableOfContentsSettings.textLevels": "Узроўні", "DE.Views.TableOfContentsSettings.textNone": "Няма", + "DE.Views.TableOfContentsSettings.textRadioCaption": "Назва", "DE.Views.TableOfContentsSettings.textRadioLevels": "Узроўні структуры", "DE.Views.TableOfContentsSettings.textRadioStyles": "Абраныя стылі", "DE.Views.TableOfContentsSettings.textStyle": "Стыль", @@ -2312,6 +2332,9 @@ "DE.Views.TextArtSettings.tipAddGradientPoint": "Дадаць кропку градыента", "DE.Views.TextArtSettings.tipRemoveGradientPoint": "Выдаліць кропку градыента", "DE.Views.TextArtSettings.txtNoBorders": "Без абвядзення", + "DE.Views.TextToTableDialog.textColumns": "Слупкі", + "DE.Views.TextToTableDialog.textOther": "Іншае", + "DE.Views.TextToTableDialog.txtAutoText": "Аўта", "DE.Views.Toolbar.capBtnAddComment": "Дадаць каментар", "DE.Views.Toolbar.capBtnBlankPage": "Пустая старонка", "DE.Views.Toolbar.capBtnColumns": "Слупкі", diff --git a/apps/documenteditor/main/locale/bg.json b/apps/documenteditor/main/locale/bg.json index 7c3c6a864..976de4ca2 100644 --- a/apps/documenteditor/main/locale/bg.json +++ b/apps/documenteditor/main/locale/bg.json @@ -78,6 +78,7 @@ "Common.define.chartData.textPoint": "XY (точкова)", "Common.define.chartData.textStock": "Борсова", "Common.define.chartData.textSurface": "Повърхност", + "Common.UI.ButtonColored.textNewColor": "Нов Потребителски Цвят", "Common.UI.Calendar.textApril": "Април", "Common.UI.Calendar.textAugust": "Август", "Common.UI.Calendar.textDecember": "Декември", @@ -1035,6 +1036,8 @@ "DE.Views.BookmarksDialog.textTitle": "Отбелязани", "DE.Views.BookmarksDialog.txtInvalidName": "Името на отметката може да съдържа само букви, цифри и долни черти и трябва да започва с буквата", "DE.Views.CaptionDialog.textAdd": "Добави", + "DE.Views.CaptionDialog.textAfter": "След", + "DE.Views.CaptionDialog.textBefore": "Преди", "DE.Views.CaptionDialog.textDelete": "Изтрий", "DE.Views.CaptionDialog.textEquation": "Уравнение", "DE.Views.CellsAddDialog.textUp": "Над курсора", @@ -1418,6 +1421,8 @@ "DE.Views.FileMenuPanels.Settings.txtPt": "Точка", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Проверка на правописа", "DE.Views.FileMenuPanels.Settings.txtWin": "като Windows", + "DE.Views.FormsTab.textHighlight": "Маркирайте настройките", + "DE.Views.FormsTab.textNoHighlight": "Няма подчертаване", "DE.Views.HeaderFooterSettings.textBottomCenter": "Долен център", "DE.Views.HeaderFooterSettings.textBottomLeft": "Долу вляво", "DE.Views.HeaderFooterSettings.textBottomPage": "В долната част на страницата", @@ -1580,6 +1585,7 @@ "DE.Views.Links.tipContentsUpdate": "Обновяване на съдържанието", "DE.Views.Links.tipInsertHyperlink": "Добави връзка", "DE.Views.Links.tipNotes": "Вмъкване или редактиране на бележки под линия", + "DE.Views.ListSettingsDialog.textAuto": "Автоматичен", "DE.Views.ListSettingsDialog.textPreview": "Предварителен преглед", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", "DE.Views.MailMergeEmailDlg.okButtonText": "Изпращам", @@ -1688,8 +1694,11 @@ "DE.Views.ParagraphSettingsAdvanced.strBorders": "Граници и запълване", "DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Страницата е прекъсната преди", "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Двойно зачертаване", + "DE.Views.ParagraphSettingsAdvanced.strIndent": "Отстъп", "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Наляво", + "DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Интервал между редовете", "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Прав", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Специален", "DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Поддържайте линиите заедно", "DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Продължете със следващия", "DE.Views.ParagraphSettingsAdvanced.strMargins": "Прокладки", @@ -1699,11 +1708,14 @@ "DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Поставяне", "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Малки букви", "DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "Не добавяй интервал между параграфи от същия стил", + "DE.Views.ParagraphSettingsAdvanced.strSpacing": "Разстояние", "DE.Views.ParagraphSettingsAdvanced.strStrike": "Зачеркнато", "DE.Views.ParagraphSettingsAdvanced.strSubscript": "Долен", "DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Горен индекс", "DE.Views.ParagraphSettingsAdvanced.strTabs": "Табуляция", "DE.Views.ParagraphSettingsAdvanced.textAlign": "Подравняване", + "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Поне", + "DE.Views.ParagraphSettingsAdvanced.textAuto": "Многократни", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Цвят на фона", "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Цвят", "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Кликнете върху диаграмата или използвайте бутони, за да изберете граници и да приложите избрания стил към тях", @@ -1712,6 +1724,9 @@ "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Разстояние между знаците", "DE.Views.ParagraphSettingsAdvanced.textDefault": "Разделът по подразбиране", "DE.Views.ParagraphSettingsAdvanced.textEffects": "Ефекти", + "DE.Views.ParagraphSettingsAdvanced.textExact": "Точно", + "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Първа линия", + "DE.Views.ParagraphSettingsAdvanced.textJustified": "Двустранно", "DE.Views.ParagraphSettingsAdvanced.textLeader": "Водач", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Наляво", "DE.Views.ParagraphSettingsAdvanced.textNone": "Нито един", diff --git a/apps/documenteditor/main/locale/ca.json b/apps/documenteditor/main/locale/ca.json index 58d8509dc..2d04a34a1 100644 --- a/apps/documenteditor/main/locale/ca.json +++ b/apps/documenteditor/main/locale/ca.json @@ -164,9 +164,9 @@ "Common.UI.ComboDataView.emptyComboText": "Sense estils", "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.textHexErr": "El valor introduït no és correcte.
Introduïu un valor entre 000000 i FFFFFF.", "Common.UI.ExtendedColorDialog.textNew": "Crea", - "Common.UI.ExtendedColorDialog.textRGBErr": "El valor introduït no és correcte.
Introduïu un valor numèric entre 0 i 255.", + "Common.UI.ExtendedColorDialog.textRGBErr": "El valor introduït no és correcte.
Introduïu un valor numèric entre 0 i 255.", "Common.UI.HSBColorPicker.textNoColor": "Sense color", "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Amaga la contrasenya", "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Mostra la contrasenya", @@ -231,9 +231,9 @@ "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 vols substituir?", + "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.AutoCorrectDialog.warnRestore": "L'entrada de correcció automàtica de %1 es restablirà al seu valor original. Voleu continuar?", "Common.Views.Chat.textSend": "Envia", "Common.Views.Comments.mniAuthorAsc": "Autor de la A a la Z", "Common.Views.Comments.mniAuthorDesc": "Autor de la Z a la A", @@ -312,7 +312,7 @@ "Common.Views.InsertTableDialog.txtRows": "Número de files", "Common.Views.InsertTableDialog.txtTitle": "Mida de la taula", "Common.Views.InsertTableDialog.txtTitleSplit": "Divideix la cel·la", - "Common.Views.LanguageDialog.labelSelect": "Selecciona l'idioma del document", + "Common.Views.LanguageDialog.labelSelect": "Seleccioneu l'idioma del document", "Common.Views.OpenDialog.closeButtonText": "Tanca el fitxer", "Common.Views.OpenDialog.txtEncoding": "Codificació", "Common.Views.OpenDialog.txtIncorrectPwd": "La contrasenya no és correcta.", @@ -322,7 +322,7 @@ "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 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.txtDescription": "Establiu 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", @@ -369,7 +369,7 @@ "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.tipReviewView": "Seleccioneu la manera en què voleu 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", @@ -445,7 +445,7 @@ "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.SelectFileDlg.textTitle": "Seleccioneu l'origen de les dades", "Common.Views.SignDialog.textBold": "Negreta", "Common.Views.SignDialog.textCertificate": "Certifica", "Common.Views.SignDialog.textChange": "Canvia", @@ -454,9 +454,9 @@ "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.textSelectImage": "Seleccioneu una imatge", "Common.Views.SignDialog.textSignature": "La signatura es veu així", - "Common.Views.SignDialog.textTitle": "Signa el document", + "Common.Views.SignDialog.textTitle": "Signeu el document", "Common.Views.SignDialog.textUseImage": "o fes clic 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", @@ -524,10 +524,10 @@ "DE.Controllers.Main.downloadTitleText": "S'està baixant el document", "DE.Controllers.Main.errorAccessDeny": "No tens permisos per realitzar aquesta acció.
Contacta amb el teu administrador del servidor de documents.", "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.errorCoAuthoringDisconnect": "S'ha perdut la connexió amb el servidor i no es pot editar el document.", "DE.Controllers.Main.errorComboSeries": "Per crear un diagrama combinat, selecciona 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 l'administrador.
Quan feu clic al botó \"D'acord\", se us demanarà que descarregueu el document.", + "DE.Controllers.Main.errorConnectToServer": "No s'ha pogut desar el document. Comproveu la configuració de la connexió o contacteu amb l'administrador.
Quan feu clic al 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ï.", "DE.Controllers.Main.errorDataEncrypted": "S'han rebut canvis xifrats, que no es poden desxifrar.", "DE.Controllers.Main.errorDataRange": "L'interval de dades no és correcte.", @@ -537,7 +537,7 @@ "DE.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.", "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 teu servidor. Contacta amb el teu administrador del servidor de documents per obtenir més informació.", + "DE.Controllers.Main.errorFileSizeExceed": "La mida del fitxer supera el límit establert pel servidor. Contacteu amb l'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-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", @@ -552,12 +552,12 @@ "DE.Controllers.Main.errorSetPassword": "No s'ha pogut establir la contrasenya.", "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.errorToken": "El testimoni de seguretat del document no s'ha format correctament.
Contacteu amb l'administrador del servidor de documents.", "DE.Controllers.Main.errorTokenExpire": "El testimoni de seguretat del document ha caducat.
Contacteu amb l'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": "S'ha restaurat la connexió a internet i la versió del fitxer ha canviat.
Abans de continuar treballant, has de baixar el fitxer o copiar-ne el contingut per assegurar-te que no es perdi res i, després, torna 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 teu pla", + "DE.Controllers.Main.errorUserDrop": "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 el podreu baixar ni imprimir fins que no es restableixi la connexió i es torni a carregar la pàgina.", "DE.Controllers.Main.leavePageText": "Has fet canvis en aquest document que no s'han desat. Fes clic a \"Queda't en aquesta pàgina\" i, a continuació, \"Desar\" per desar-les. Fes clic 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.
Fes clic a \"Cancel·lar\" i, a continuació, \"Desar\" per desar-los. Fes clic a \"D'acord\" per descartar tots els canvis que no s'hagin desat.", @@ -603,7 +603,7 @@ "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.textDisconnect": "S'ha perdut la connexió", "DE.Controllers.Main.textGuest": "Convidat", - "DE.Controllers.Main.textHasMacros": "El fitxer conté macros automàtiques.
Les vols executar?", + "DE.Controllers.Main.textHasMacros": "El fitxer conté macros automàtiques.
Les voleu executar?", "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 tingui menys de 128 caràcters.", @@ -875,7 +875,7 @@ "DE.Controllers.Main.uploadImageTextText": "S'està carregant la imatge...", "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. Utilitza IE10 o superior", + "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 compatible del tot. Restableix el zoom per defecte tot prement Ctrl+0.", "DE.Controllers.Main.warnLicenseExceeded": "Has arribat al límit de connexions simultànies amb %1 editors. Aquest document només s'obrirà en mode lectura.
Contacta amb el teu administrador per obtenir més informació.", "DE.Controllers.Main.warnLicenseExp": "La teva llicència ha caducat.
Actualitza la llicència i torna a carregar la pàgina.", @@ -893,14 +893,14 @@ "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 desaràs 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.
Vols continuar?", + "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.dataUrl": "Enganxa un URL de dades", "DE.Controllers.Toolbar.notcriticalErrorTitle": "Advertiment", "DE.Controllers.Toolbar.textAccent": "Accents", "DE.Controllers.Toolbar.textBracket": "Claudàtors", "DE.Controllers.Toolbar.textEmptyImgUrl": "Cal especificar l'URL de la imatge.", "DE.Controllers.Toolbar.textEmptyMMergeUrl": "Cal especificar l’URL.", - "DE.Controllers.Toolbar.textFontSizeErr": "El valor introduït no és correcte.
Introduïu un valor numèric entre 1 i 300.", + "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": "Agrupa", @@ -1432,7 +1432,7 @@ "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.langText": "Seleccioneu l'idioma", "DE.Views.DocumentHolder.leftText": "Esquerra", "DE.Views.DocumentHolder.loadSpellText": "S'estan carregant les variants", "DE.Views.DocumentHolder.mergeCellsText": "Combina les cel·les", @@ -1445,10 +1445,10 @@ "DE.Views.DocumentHolder.rightText": "Dreta", "DE.Views.DocumentHolder.rowText": "Fila", "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.selectCellText": "Seleccioneu la cel·la", + "DE.Views.DocumentHolder.selectColumnText": "Seleccioneu la columna", + "DE.Views.DocumentHolder.selectRowText": "Seleccioneu una fila", + "DE.Views.DocumentHolder.selectTableText": "Seleccioneu una taula", "DE.Views.DocumentHolder.selectText": "Selecciona", "DE.Views.DocumentHolder.shapeText": "Configuració avançada de la forma", "DE.Views.DocumentHolder.spellcheckText": "Revisió ortogràfica", @@ -1690,7 +1690,7 @@ "DE.Views.FileMenu.btnRightsCaption": "Drets d'accés ...", "DE.Views.FileMenu.btnSaveAsCaption": "Desa-ho com", "DE.Views.FileMenu.btnSaveCaption": "Desa", - "DE.Views.FileMenu.btnSaveCopyAsCaption": "Desa còpia com a...", + "DE.Views.FileMenu.btnSaveCopyAsCaption": "Desa la còpia com a...", "DE.Views.FileMenu.btnSettingsCaption": "Configuració avançada...", "DE.Views.FileMenu.btnToEditCaption": "Edita el document", "DE.Views.FileMenu.textDownload": "Baixa", @@ -1822,7 +1822,7 @@ "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": "Selecciona una imatge", + "DE.Views.FormSettings.textSelectImage": "Seleccioneu una imatge", "DE.Views.FormSettings.textTip": "Consell", "DE.Views.FormSettings.textTipAdd": "Afegeix un valor nou", "DE.Views.FormSettings.textTipDelete": "Suprimeix el valor", @@ -2138,7 +2138,7 @@ "DE.Views.Navigation.txtHeadingBefore": "Crea un títol abans", "DE.Views.Navigation.txtNewHeading": "Crea un subtítol", "DE.Views.Navigation.txtPromote": "Augmenta de nivell", - "DE.Views.Navigation.txtSelect": "Selecciona el contingut", + "DE.Views.Navigation.txtSelect": "Seleccioneu el contingut", "DE.Views.NoteSettingsDialog.textApply": "Aplica", "DE.Views.NoteSettingsDialog.textApplyTo": "Aplica els canvis a", "DE.Views.NoteSettingsDialog.textContinue": "Continu", @@ -2307,7 +2307,7 @@ "DE.Views.ShapeSettings.strType": "Tipus", "DE.Views.ShapeSettings.textAdvanced": "Mostra la configuració avançada", "DE.Views.ShapeSettings.textAngle": "Angle", - "DE.Views.ShapeSettings.textBorderSizeErr": "El valor introduït no és correcte.
Introduïu un valor entre 0 pt i 1584 pt.", + "DE.Views.ShapeSettings.textBorderSizeErr": "El valor introduït no és correcte.
Introduïu un valor entre 0 pt i 1584 pt.", "DE.Views.ShapeSettings.textColor": "Color d'emplenament", "DE.Views.ShapeSettings.textDirection": "Direcció", "DE.Views.ShapeSettings.textEmptyPattern": "Sense patró", @@ -2330,7 +2330,7 @@ "DE.Views.ShapeSettings.textRecentlyUsed": "S'ha utilitzat recentment", "DE.Views.ShapeSettings.textRotate90": "Gira 90°", "DE.Views.ShapeSettings.textRotation": "Rotació", - "DE.Views.ShapeSettings.textSelectImage": "Selecciona una imatge", + "DE.Views.ShapeSettings.textSelectImage": "Seleccioneu una imatge", "DE.Views.ShapeSettings.textSelectTexture": "Selecciona", "DE.Views.ShapeSettings.textStretch": "Estira", "DE.Views.ShapeSettings.textStyle": "Estil", @@ -2410,7 +2410,7 @@ "DE.Views.TableOfContentsSettings.textRadioCaption": "Llegenda", "DE.Views.TableOfContentsSettings.textRadioLevels": "Nivell d'esquemes", "DE.Views.TableOfContentsSettings.textRadioStyle": "Estil", - "DE.Views.TableOfContentsSettings.textRadioStyles": "Selecciona els estils", + "DE.Views.TableOfContentsSettings.textRadioStyles": "Seleccioneu els estils", "DE.Views.TableOfContentsSettings.textStyle": "Estil", "DE.Views.TableOfContentsSettings.textStyles": "Estils", "DE.Views.TableOfContentsSettings.textTable": "Taula", @@ -2433,10 +2433,10 @@ "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.selectCellText": "Seleccioneu la cel·la", + "DE.Views.TableSettings.selectColumnText": "Seleccioneu la columna", + "DE.Views.TableSettings.selectRowText": "Seleccioneu una fila", + "DE.Views.TableSettings.selectTableText": "Seleccioneu 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", @@ -2458,8 +2458,8 @@ "DE.Views.TableSettings.textHeight": "Alçada", "DE.Views.TableSettings.textLast": "Últim", "DE.Views.TableSettings.textRows": "Files", - "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.textSelectBorders": "Seleccioneu les vores que vulgueu canviar tot aplicant l'estil escollit anteriorment", + "DE.Views.TableSettings.textTemplate": "Seleccioneu des d'una plantilla", "DE.Views.TableSettings.textTotal": "Total", "DE.Views.TableSettings.textWidth": "Amplada", "DE.Views.TableSettings.tipAll": "Estableix el límit exterior i totes les línies interiors", @@ -2568,7 +2568,7 @@ "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.textBorderSizeErr": "El valor introduït no és correcte.
Introduïu un valor entre 0 pt i 1584 pt.", "DE.Views.TextArtSettings.textColor": "Color d'emplenament", "DE.Views.TextArtSettings.textDirection": "Direcció", "DE.Views.TextArtSettings.textGradient": "Degradat", @@ -2835,7 +2835,7 @@ "DE.Views.WatermarkSettingsDialog.textLayout": "Disposició", "DE.Views.WatermarkSettingsDialog.textNone": "Cap", "DE.Views.WatermarkSettingsDialog.textScale": "Escala", - "DE.Views.WatermarkSettingsDialog.textSelect": "Selecciona una imatge", + "DE.Views.WatermarkSettingsDialog.textSelect": "Seleccioneu una imatge", "DE.Views.WatermarkSettingsDialog.textStrikeout": "Ratllat", "DE.Views.WatermarkSettingsDialog.textText": "Text", "DE.Views.WatermarkSettingsDialog.textTextW": "Filigrana de text", diff --git a/apps/documenteditor/main/locale/cs.json b/apps/documenteditor/main/locale/cs.json index e5ba7afef..bf17634ba 100644 --- a/apps/documenteditor/main/locale/cs.json +++ b/apps/documenteditor/main/locale/cs.json @@ -168,6 +168,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Nová", "Common.UI.ExtendedColorDialog.textRGBErr": "Zadaná hodnota není správná.
Zadejte hodnotu z rozmezi 0 až 255.", "Common.UI.HSBColorPicker.textNoColor": "Bez barvy", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Skrýt heslo", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Zobrazit heslo", "Common.UI.SearchDialog.textHighlight": "Zvýraznit výsledky", "Common.UI.SearchDialog.textMatchCase": "Rozlišovat malá a velká písmena", "Common.UI.SearchDialog.textReplaceDef": "Zadejte text, kterým nahradit", @@ -211,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Automatické odrážkové seznamy", "Common.Views.AutoCorrectDialog.textBy": "Od", "Common.Views.AutoCorrectDialog.textDelete": "Odstranit", + "Common.Views.AutoCorrectDialog.textFLCells": "První písmeno v obsahu buněk tabulky měnit na velké", "Common.Views.AutoCorrectDialog.textFLSentence": "Velká na začátku věty", "Common.Views.AutoCorrectDialog.textHyperlink": "Internetové a síťové přístupy s hypertextovými odkazy", "Common.Views.AutoCorrectDialog.textHyphens": "Spojovníky (--) s pomlčkou (—)", @@ -236,12 +239,14 @@ "Common.Views.Comments.mniAuthorDesc": "Autor Z až A", "Common.Views.Comments.mniDateAsc": "Nejstarší", "Common.Views.Comments.mniDateDesc": "Nejnovější", + "Common.Views.Comments.mniFilterGroups": "Filtrovat podle skupiny", "Common.Views.Comments.mniPositionAsc": "Shora", "Common.Views.Comments.mniPositionDesc": "Zdola", "Common.Views.Comments.textAdd": "Přidat", "Common.Views.Comments.textAddComment": "Přidat komentář", "Common.Views.Comments.textAddCommentToDoc": "Přidat komentář do dokumentu", "Common.Views.Comments.textAddReply": "Přidat odpověď", + "Common.Views.Comments.textAll": "Vše", "Common.Views.Comments.textAnonym": "Návštěvník", "Common.Views.Comments.textCancel": "Zrušit", "Common.Views.Comments.textClose": "Zavřít", @@ -255,6 +260,7 @@ "Common.Views.Comments.textResolve": "Vyřešit", "Common.Views.Comments.textResolved": "Vyřešeno", "Common.Views.Comments.textSort": "Řadit komentáře", + "Common.Views.Comments.textViewResolved": "Nemáte oprávnění pro opětovné otevírání komentářů", "Common.Views.CopyWarningDialog.textDontShow": "Tuto zprávu už nezobrazovat", "Common.Views.CopyWarningDialog.textMsg": "Akce kopírovat, vyjmout a vložit použitím lišty nástrojů editoru a kontextové nabídky budou prováděny pouze v tomto okně editoru.

Pro kopírování do nebo vkládání z aplikací mimo okno editoru použijte následující klávesové zkratky:", "Common.Views.CopyWarningDialog.textTitle": "Akce kopírovat, vyjmout a vložit", @@ -431,6 +437,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Znovu otevřít", "Common.Views.ReviewPopover.textReply": "Odpovědět", "Common.Views.ReviewPopover.textResolve": "Vyřešit", + "Common.Views.ReviewPopover.textViewResolved": "Nemáte oprávnění pro opětovné otevírání komentářů", "Common.Views.ReviewPopover.txtAccept": "Přijmout", "Common.Views.ReviewPopover.txtDeleteTip": "Smazat", "Common.Views.ReviewPopover.txtEditTip": "Upravit", @@ -602,6 +609,7 @@ "DE.Controllers.Main.textLongName": "Zadejte jméno, které má méně než 128 znaků.", "DE.Controllers.Main.textNoLicenseTitle": "Došlo k dosažení limitu licence", "DE.Controllers.Main.textPaidFeature": "Placená funkce", + "DE.Controllers.Main.textReconnect": "Spojení je obnoveno", "DE.Controllers.Main.textRemember": "Zapamatovat mou volbu", "DE.Controllers.Main.textRenameError": "Jméno uživatele nesmí být prázdné. ", "DE.Controllers.Main.textRenameLabel": "Zadejte jméno, které bude použito pro spolupráci", @@ -879,6 +887,7 @@ "DE.Controllers.Main.warnProcessRightsChange": "Bylo vám odepřeno oprávnění soubor upravovat.", "DE.Controllers.Navigation.txtBeginning": "Začátek dokumentu", "DE.Controllers.Navigation.txtGotoBeginning": "Přejít na začátek dokumentu", + "DE.Controllers.Statusbar.textDisconnect": "Spojení je ztraceno
Pokus o opětovné připojení. Zkontrolujte nastavení připojení.", "DE.Controllers.Statusbar.textHasChanges": "Byly zaznamenány nové změny", "DE.Controllers.Statusbar.textSetTrackChanges": "Jste v módu sledování změn", "DE.Controllers.Statusbar.textTrackChanges": "Dokument je otevřen v režimu sledování změn", @@ -902,10 +911,21 @@ "DE.Controllers.Toolbar.textMatrix": "Matice", "DE.Controllers.Toolbar.textOperator": "Operátory", "DE.Controllers.Toolbar.textRadical": "Odmocniny", + "DE.Controllers.Toolbar.textRecentlyUsed": "Nedávno použité", "DE.Controllers.Toolbar.textScript": "Skripty", "DE.Controllers.Toolbar.textSymbols": "Symboly", "DE.Controllers.Toolbar.textTabForms": "Formuláře", "DE.Controllers.Toolbar.textWarning": "Varování", + "DE.Controllers.Toolbar.tipMarkersArrow": "Šipkové odrážky", + "DE.Controllers.Toolbar.tipMarkersCheckmark": "Zatržítkové odrážky", + "DE.Controllers.Toolbar.tipMarkersDash": "Pomlčkové odrážky", + "DE.Controllers.Toolbar.tipMarkersFRhombus": "Kosočtvercové odrážky s výplní", + "DE.Controllers.Toolbar.tipMarkersFRound": "Vyplněné kulaté odrážky", + "DE.Controllers.Toolbar.tipMarkersFSquare": "Plné čtvercové odrážky", + "DE.Controllers.Toolbar.tipMarkersStar": "Hvězdičkové odrážky", + "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Víceúrovňové číslované odrážky", + "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Víceúrovňové symbolové odrážky", + "DE.Controllers.Toolbar.tipMultiLevelVarious": "Víceúrovňové různé číslované odrážky", "DE.Controllers.Toolbar.txtAccent_Accent": "Čárka", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Šipka vlevo-vpravo nad", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Šipka vlevo nad", @@ -1457,6 +1477,7 @@ "DE.Views.DocumentHolder.textDistributeCols": "Rozmístění sloupců", "DE.Views.DocumentHolder.textDistributeRows": "Rozmístit řádky", "DE.Views.DocumentHolder.textEditControls": "Nastavení ovládání obsahu", + "DE.Views.DocumentHolder.textEditPoints": "Upravit body", "DE.Views.DocumentHolder.textEditWrapBoundary": "Upravit hranice obtékaní", "DE.Views.DocumentHolder.textFlipH": "Převrátit vodorovně", "DE.Views.DocumentHolder.textFlipV": "Převrátit svisle", @@ -1505,6 +1526,13 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Obnovit obsah", "DE.Views.DocumentHolder.textWrap": "Obtékání textu", "DE.Views.DocumentHolder.tipIsLocked": "Tento prvek je právě upravován jiným uživatelem.", + "DE.Views.DocumentHolder.tipMarkersArrow": "Šipkové odrážky", + "DE.Views.DocumentHolder.tipMarkersCheckmark": "Zatržítkové odrážky", + "DE.Views.DocumentHolder.tipMarkersDash": "Pomlčkové odrážky", + "DE.Views.DocumentHolder.tipMarkersFRhombus": "Kosočtvercové odrážky s výplní", + "DE.Views.DocumentHolder.tipMarkersFRound": "Vyplněné kulaté odrážky", + "DE.Views.DocumentHolder.tipMarkersFSquare": "Plné čtvercové odrážky", + "DE.Views.DocumentHolder.tipMarkersStar": "Hvězdičkové odrážky", "DE.Views.DocumentHolder.toDictionaryText": "Přidat do slovníku", "DE.Views.DocumentHolder.txtAddBottom": "Přidat spodní ohraničení", "DE.Views.DocumentHolder.txtAddFractionBar": "Přidat zlomkovou čáru", @@ -1871,6 +1899,7 @@ "DE.Views.ImageSettings.textCrop": "Oříznout", "DE.Views.ImageSettings.textCropFill": "Výplň", "DE.Views.ImageSettings.textCropFit": "Přizpůsobit", + "DE.Views.ImageSettings.textCropToShape": "Oříznout podle tvaru", "DE.Views.ImageSettings.textEdit": "Upravit", "DE.Views.ImageSettings.textEditObject": "Upravit objekt", "DE.Views.ImageSettings.textFitMargins": "Přizpůsobit k okraji", @@ -1885,6 +1914,7 @@ "DE.Views.ImageSettings.textHintFlipV": "Převrátit svisle", "DE.Views.ImageSettings.textInsert": "Nahradit obrázek", "DE.Views.ImageSettings.textOriginalSize": "Skutečná velikost", + "DE.Views.ImageSettings.textRecentlyUsed": "Nedávno použité", "DE.Views.ImageSettings.textRotate90": "Otočit o 90°", "DE.Views.ImageSettings.textRotation": "Otočení", "DE.Views.ImageSettings.textSize": "Velikost", @@ -2155,6 +2185,11 @@ "DE.Views.PageSizeDialog.textTitle": "Velikost stránky", "DE.Views.PageSizeDialog.textWidth": "Šířka", "DE.Views.PageSizeDialog.txtCustom": "Vlastní", + "DE.Views.PageThumbnails.textClosePanel": "Zavřít náhledy stránek", + "DE.Views.PageThumbnails.textHighlightVisiblePart": "Zvýraznit viditelnou část stránky", + "DE.Views.PageThumbnails.textPageThumbnails": "Náhledy stránek", + "DE.Views.PageThumbnails.textThumbnailsSettings": "Nastavení pro náhledy", + "DE.Views.PageThumbnails.textThumbnailsSize": "Velikost náhledů", "DE.Views.ParagraphSettings.strIndent": "Odsazení", "DE.Views.ParagraphSettings.strIndentsLeftText": "Vlevo", "DE.Views.ParagraphSettings.strIndentsRightText": "Vpravo", @@ -2290,6 +2325,7 @@ "DE.Views.ShapeSettings.textPatternFill": "Vzor", "DE.Views.ShapeSettings.textPosition": "Pozice", "DE.Views.ShapeSettings.textRadial": "Kruhový", + "DE.Views.ShapeSettings.textRecentlyUsed": "Nedávno použité", "DE.Views.ShapeSettings.textRotate90": "Otočit o 90°", "DE.Views.ShapeSettings.textRotation": "Otočení", "DE.Views.ShapeSettings.textSelectImage": "Vybrat obrázek", @@ -2681,6 +2717,7 @@ "DE.Views.Toolbar.textTabLinks": "Odkazy", "DE.Views.Toolbar.textTabProtect": "Zabezpečení", "DE.Views.Toolbar.textTabReview": "Přehled", + "DE.Views.Toolbar.textTabView": "Zobrazit", "DE.Views.Toolbar.textTitleError": "Chyba", "DE.Views.Toolbar.textToCurrent": "Na stávající pozici", "DE.Views.Toolbar.textTop": "Nahoře:", @@ -2772,6 +2809,14 @@ "DE.Views.Toolbar.txtScheme7": "Rovnost", "DE.Views.Toolbar.txtScheme8": "Tok", "DE.Views.Toolbar.txtScheme9": "Slévárna", + "DE.Views.ViewTab.textAlwaysShowToolbar": "Vždy zobrazovat panel nástrojů", + "DE.Views.ViewTab.textFitToPage": "Přizpůsobit stránce", + "DE.Views.ViewTab.textFitToWidth": "Přizpůsobit šířce", + "DE.Views.ViewTab.textInterfaceTheme": "Vzhled uživatelského rozhraní", + "DE.Views.ViewTab.textNavigation": "Navigace", + "DE.Views.ViewTab.textRulers": "Pravítka", + "DE.Views.ViewTab.textStatusBar": "Stavová lišta", + "DE.Views.ViewTab.textZoom": "Zvětšení", "DE.Views.WatermarkSettingsDialog.textAuto": "Automaticky", "DE.Views.WatermarkSettingsDialog.textBold": "Tučné", "DE.Views.WatermarkSettingsDialog.textColor": "Barva textu", diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 3b3c18f7a..1771750a0 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -213,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Automatic bulleted lists", "Common.Views.AutoCorrectDialog.textBy": "By", "Common.Views.AutoCorrectDialog.textDelete": "Delete", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Add period with double-space", "Common.Views.AutoCorrectDialog.textFLCells": "Capitalize first letter of table cells", "Common.Views.AutoCorrectDialog.textFLSentence": "Capitalize first letter of sentences", "Common.Views.AutoCorrectDialog.textHyperlink": "Internet and network paths with hyperlinks", @@ -234,7 +235,6 @@ "Common.Views.AutoCorrectDialog.warnReplace": "The autocorrect entry for %1 already exists. Do you want to replace it?", "Common.Views.AutoCorrectDialog.warnReset": "Any autocorrect you added will be removed and the changed ones will be restored to their original values. Do you want to continue?", "Common.Views.AutoCorrectDialog.warnRestore": "The autocorrect entry for %1 will be reset to its original value. Do you want to continue?", - "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Add period with double-space", "Common.Views.Chat.textSend": "Send", "Common.Views.Comments.mniAuthorAsc": "Author A to Z", "Common.Views.Comments.mniAuthorDesc": "Author Z to A", @@ -1461,6 +1461,7 @@ "DE.Views.DocumentHolder.strSign": "Sign", "DE.Views.DocumentHolder.styleText": "Formatting as Style", "DE.Views.DocumentHolder.tableText": "Table", + "DE.Views.DocumentHolder.textAccept": "Accept Change", "DE.Views.DocumentHolder.textAlign": "Align", "DE.Views.DocumentHolder.textArrange": "Arrange", "DE.Views.DocumentHolder.textArrangeBack": "Send to Background", @@ -1495,6 +1496,7 @@ "DE.Views.DocumentHolder.textPaste": "Paste", "DE.Views.DocumentHolder.textPrevPage": "Previous Page", "DE.Views.DocumentHolder.textRefreshField": "Refresh field", + "DE.Views.DocumentHolder.textReject": "Reject Change", "DE.Views.DocumentHolder.textRemCheckBox": "Remove Checkbox", "DE.Views.DocumentHolder.textRemComboBox": "Remove Combo Box", "DE.Views.DocumentHolder.textRemDropdown": "Remove Dropdown", @@ -1629,8 +1631,6 @@ "DE.Views.DocumentHolder.txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?", "DE.Views.DocumentHolder.updateStyleText": "Update %1 style", "DE.Views.DocumentHolder.vertAlignText": "Vertical Alignment", - "DE.Views.DocumentHolder.textAccept": "Accept Change", - "DE.Views.DocumentHolder.textReject": "Reject Change", "DE.Views.DropcapSettingsAdvanced.strBorders": "Borders & Fill", "DE.Views.DropcapSettingsAdvanced.strDropcap": "Drop Cap", "DE.Views.DropcapSettingsAdvanced.strMargins": "Margins", @@ -2381,13 +2381,13 @@ "DE.Views.Statusbar.pageIndexText": "Page {0} of {1}", "DE.Views.Statusbar.tipFitPage": "Fit to page", "DE.Views.Statusbar.tipFitWidth": "Fit to width", + "DE.Views.Statusbar.tipHandTool": "Hand tool", + "DE.Views.Statusbar.tipSelectTool": "Select tool", "DE.Views.Statusbar.tipSetLang": "Set text language", "DE.Views.Statusbar.tipZoomFactor": "Zoom", "DE.Views.Statusbar.tipZoomIn": "Zoom in", "DE.Views.Statusbar.tipZoomOut": "Zoom out", "DE.Views.Statusbar.txtPageNumInvalid": "Page number invalid", - "DE.Views.Statusbar.tipSelectTool": "Select tool", - "DE.Views.Statusbar.tipHandTool": "Hand tool", "DE.Views.StyleTitleDialog.textHeader": "Create New Style", "DE.Views.StyleTitleDialog.textNextStyle": "Next paragraph style", "DE.Views.StyleTitleDialog.textTitle": "Title", diff --git a/apps/documenteditor/main/locale/fi.json b/apps/documenteditor/main/locale/fi.json index 762d493a4..9b296c9a1 100644 --- a/apps/documenteditor/main/locale/fi.json +++ b/apps/documenteditor/main/locale/fi.json @@ -447,6 +447,7 @@ "DE.Controllers.Toolbar.textRadical": "Radikaalit", "DE.Controllers.Toolbar.textScript": "Skriptit", "DE.Controllers.Toolbar.textSymbols": "Symbolit", + "DE.Controllers.Toolbar.textTabForms": "Lomakkeet", "DE.Controllers.Toolbar.textWarning": "Varoitus", "DE.Controllers.Toolbar.txtAccent_Accent": "Akuutti", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Oikea-Vasen nuoli ylhäällä", @@ -775,6 +776,8 @@ "DE.Views.BookmarksDialog.textLocation": "Sijainti", "DE.Views.BookmarksDialog.textName": "Nimi", "DE.Views.BookmarksDialog.textSort": "Lajitteluperuste", + "DE.Views.CaptionDialog.textAfter": "Jälkeen", + "DE.Views.CaptionDialog.textBefore": "Ennen", "DE.Views.ChartSettings.textAdvanced": "Näytä laajennetut asetukset", "DE.Views.ChartSettings.textChartType": "Muuta kaavion tyyppiä", "DE.Views.ChartSettings.textEditData": "Muokkaa tietoja", @@ -1089,6 +1092,7 @@ "DE.Views.FileMenuPanels.Settings.txtPt": "Piste", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Oikeinkirjoituksen tarkistus", "DE.Views.FileMenuPanels.Settings.txtWin": "kuten Windows", + "DE.Views.FormSettings.textImage": "Kuva", "DE.Views.HeaderFooterSettings.textBottomCenter": "Alhaalla keskellä", "DE.Views.HeaderFooterSettings.textBottomLeft": "Alhaalla vasemmalla", "DE.Views.HeaderFooterSettings.textBottomRight": "Alhaalla oikealla", @@ -1214,6 +1218,8 @@ "DE.Views.Links.textGotoFootnote": "Siirry alaviitteisiin", "DE.Views.Links.tipInsertHyperlink": "Lisää linkki", "DE.Views.Links.tipNotes": "Alaviitteet", + "DE.Views.ListSettingsDialog.textAuto": "Automaattinen", + "DE.Views.ListSettingsDialog.textLevel": "Taso", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", "DE.Views.MailMergeEmailDlg.okButtonText": "Lähetä", "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Teema", @@ -1293,7 +1299,7 @@ "DE.Views.PageSizeDialog.textTitle": "Sivun koko", "DE.Views.PageSizeDialog.textWidth": "Leveys", "DE.Views.PageSizeDialog.txtCustom": "Mukautettu", - "DE.Views.ParagraphSettings.strLineHeight": "Viivan väli", + "DE.Views.ParagraphSettings.strLineHeight": "Viivaväli", "DE.Views.ParagraphSettings.strParagraphSpacing": "Kappaleväli", "DE.Views.ParagraphSettings.strSomeParagraphSpace": "Älä lisää kappalevälejä samalla tyylillä", "DE.Views.ParagraphSettings.strSpacingAfter": "jälkeen", @@ -1312,6 +1318,7 @@ "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Kaksois yliviivaus", "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Vasen", "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Oikea", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Erityinen", "DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Pidä viivat yhdessä", "DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Pidä seuraavalla", "DE.Views.ParagraphSettingsAdvanced.strMargins": "Palstantäytteet", @@ -1320,11 +1327,14 @@ "DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Sisennykset & Sijoitukset", "DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Sijoitus", "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Kapiteelit", + "DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "Älä lisää kappalevälejä samalla tyylillä", "DE.Views.ParagraphSettingsAdvanced.strStrike": "Yliviivaus", "DE.Views.ParagraphSettingsAdvanced.strSubscript": "Alaindeksi", "DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Yläindeksi", "DE.Views.ParagraphSettingsAdvanced.strTabs": "Välilehti", "DE.Views.ParagraphSettingsAdvanced.textAlign": "Tasaus", + "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Vähintään", + "DE.Views.ParagraphSettingsAdvanced.textAuto": "Moninkertainen", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Taustan väri", "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Reunuksen väri", "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Klikkaa diagrammia tai käytä painikkeita reunusten valintaan ja käytä valittua tyyliä niihin", @@ -1333,6 +1343,8 @@ "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Kirjainväli", "DE.Views.ParagraphSettingsAdvanced.textDefault": "Oletus välilehti", "DE.Views.ParagraphSettingsAdvanced.textEffects": "Efektit", + "DE.Views.ParagraphSettingsAdvanced.textExact": "Täsmälleen", + "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Ensimmäinen viiva", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Vasen", "DE.Views.ParagraphSettingsAdvanced.textNone": "Ei mitään", "DE.Views.ParagraphSettingsAdvanced.textPosition": "Asema", @@ -1674,7 +1686,7 @@ "DE.Views.Toolbar.tipIncPrLeft": "Lisää sisennystä", "DE.Views.Toolbar.tipInsertChart": "Lisää Kaavio", "DE.Views.Toolbar.tipInsertEquation": "Lisää yhtälö", - "DE.Views.Toolbar.tipInsertImage": "Lisää Kuva", + "DE.Views.Toolbar.tipInsertImage": "Lisää kuva", "DE.Views.Toolbar.tipInsertNum": "Lisää sivunumero", "DE.Views.Toolbar.tipInsertShape": "Lisää automaattinen muoto", "DE.Views.Toolbar.tipInsertTable": "Lisää taulukko", diff --git a/apps/documenteditor/main/locale/hu.json b/apps/documenteditor/main/locale/hu.json index 593959f94..8f4107c9d 100644 --- a/apps/documenteditor/main/locale/hu.json +++ b/apps/documenteditor/main/locale/hu.json @@ -2647,7 +2647,7 @@ "DE.Views.Toolbar.textMarginsNormal": "Normál", "DE.Views.Toolbar.textMarginsUsNormal": "Normál (US)", "DE.Views.Toolbar.textMarginsWide": "Széles", - "DE.Views.Toolbar.textNewColor": "Új egyedi szín hozzáadása", + "DE.Views.Toolbar.textNewColor": "Új egyéni szín hozzáadása", "DE.Views.Toolbar.textNextPage": "Következő oldal", "DE.Views.Toolbar.textNoHighlight": "Nincs kiemelés", "DE.Views.Toolbar.textNone": "Nincs", diff --git a/apps/documenteditor/main/locale/id.json b/apps/documenteditor/main/locale/id.json index 76c395d3a..d9b057c17 100644 --- a/apps/documenteditor/main/locale/id.json +++ b/apps/documenteditor/main/locale/id.json @@ -10,7 +10,7 @@ "Common.Controllers.ExternalMergeEditor.warningText": "The object is disabled because it is being edited by another user.", "Common.Controllers.ExternalMergeEditor.warningTitle": "Warning", "Common.Controllers.History.notcriticalErrorTitle": "Warning", - "Common.Controllers.ReviewChanges.textAtLeast": "at least", + "Common.Controllers.ReviewChanges.textAtLeast": "sekurang-kurangnya", "Common.Controllers.ReviewChanges.textAuto": "auto", "Common.Controllers.ReviewChanges.textBaseline": "Baseline", "Common.Controllers.ReviewChanges.textBold": "Bold", @@ -23,12 +23,12 @@ "Common.Controllers.ReviewChanges.textDeleted": "Deleted:", "Common.Controllers.ReviewChanges.textDStrikeout": "Double strikeout", "Common.Controllers.ReviewChanges.textEquation": "Equation", - "Common.Controllers.ReviewChanges.textExact": "exactly", - "Common.Controllers.ReviewChanges.textFirstLine": "First line", + "Common.Controllers.ReviewChanges.textExact": "persis", + "Common.Controllers.ReviewChanges.textFirstLine": "Baris Pertama", "Common.Controllers.ReviewChanges.textFontSize": "Font size", "Common.Controllers.ReviewChanges.textFormatted": "Formatted", "Common.Controllers.ReviewChanges.textHighlight": "Highlight color", - "Common.Controllers.ReviewChanges.textImage": "Image", + "Common.Controllers.ReviewChanges.textImage": "Gambar", "Common.Controllers.ReviewChanges.textIndentLeft": "Indent left", "Common.Controllers.ReviewChanges.textIndentRight": "Indent right", "Common.Controllers.ReviewChanges.textInserted": "Inserted:", @@ -37,10 +37,10 @@ "Common.Controllers.ReviewChanges.textKeepLines": "Keep lines together", "Common.Controllers.ReviewChanges.textKeepNext": "Keep with next", "Common.Controllers.ReviewChanges.textLeft": "Align left", - "Common.Controllers.ReviewChanges.textLineSpacing": "Line Spacing: ", + "Common.Controllers.ReviewChanges.textLineSpacing": "Spasi Antar Baris: ", "Common.Controllers.ReviewChanges.textMultiple": "multiple", "Common.Controllers.ReviewChanges.textNoBreakBefore": "No page break before", - "Common.Controllers.ReviewChanges.textNoContextual": "Add interval between paragraphs of the same style", + "Common.Controllers.ReviewChanges.textNoContextual": "Tambah jarak diantara", "Common.Controllers.ReviewChanges.textNoKeepLines": "Don't keep lines together", "Common.Controllers.ReviewChanges.textNoKeepNext": "Don't keep with next", "Common.Controllers.ReviewChanges.textNot": "Not ", @@ -63,6 +63,8 @@ "Common.Controllers.ReviewChanges.textTabs": "Change tabs", "Common.Controllers.ReviewChanges.textUnderline": "Underline", "Common.Controllers.ReviewChanges.textWidow": "Widow control", + "Common.define.chartData.textColumn": "Kolom", + "Common.define.chartData.textLine": "Garis", "Common.UI.ComboBorderSize.txtNoBorders": "Tidak ada pembatas", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Tidak ada pembatas", "Common.UI.ComboDataView.emptyComboText": "Tidak ada model", @@ -83,6 +85,7 @@ "Common.UI.SearchDialog.txtBtnReplaceAll": "Ganti Semua", "Common.UI.SynchronizeTip.textDontShow": "Jangan tampilkan pesan ini lagi", "Common.UI.SynchronizeTip.textSynchronize": "Dokumen telah diubah oleh pengguna lain.
Silakan klik untuk menyimpan perubahan dan memuat ulang pembaruan.", + "Common.UI.ThemeColorPalette.textStandartColors": "Warna Standar", "Common.UI.Window.cancelButtonText": "Batalkan", "Common.UI.Window.closeButtonText": "Tutup", "Common.UI.Window.noButtonText": "Tidak", @@ -111,6 +114,7 @@ "Common.Views.Comments.textComments": "Komentar", "Common.Views.Comments.textEdit": "Edit", "Common.Views.Comments.textEnterCommentHint": "Tuliskan komentar Anda di sini", + "Common.Views.Comments.textHintAddComment": "Tambahkan komentar", "Common.Views.Comments.textOpenAgain": "Buka Lagi", "Common.Views.Comments.textReply": "Balas", "Common.Views.Comments.textResolve": "Selesaikan", @@ -130,6 +134,7 @@ "Common.Views.ExternalMergeEditor.textSave": "Save & Exit", "Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recipients", "Common.Views.Header.textBack": "Buka Dokumen", + "Common.Views.Header.txtAccessRights": "Ubah hak akses", "Common.Views.ImageFromUrlDialog.textUrl": "Tempel URL gambar:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Kolom ini harus diisi", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Bagian ini harus berupa URL dengn format \"http://www.contoh.com\"", @@ -143,15 +148,22 @@ "Common.Views.OpenDialog.txtOpenFile": "Masukkan kata sandi untuk buka file", "Common.Views.OpenDialog.txtTitle": "Choose %1 options", "Common.Views.PasswordDialog.txtWarning": "Perhatian: Tidak bisa dipulihkan jika Anda kehilangan atau lupa kata sandi. Simpan di tempat yang aman.", + "Common.Views.ReviewChanges.tipHistory": "Tampilkan riwayat versi", "Common.Views.ReviewChanges.txtAccept": "Accept", "Common.Views.ReviewChanges.txtAcceptAll": "Accept All Changes", "Common.Views.ReviewChanges.txtAcceptCurrent": "Accept Current Changes", "Common.Views.ReviewChanges.txtClose": "Close", + "Common.Views.ReviewChanges.txtCommentRemove": "Hapus", + "Common.Views.ReviewChanges.txtHistory": "Riwayat versi", "Common.Views.ReviewChanges.txtNext": "To Next Change", "Common.Views.ReviewChanges.txtPrev": "To Previous Change", "Common.Views.ReviewChanges.txtReject": "Reject", "Common.Views.ReviewChanges.txtRejectAll": "Reject All Changes", "Common.Views.ReviewChanges.txtRejectCurrent": "Reject Current Changes", + "Common.Views.ReviewChangesDialog.txtAccept": "Terima", + "Common.Views.ReviewChangesDialog.txtAcceptAll": "Terima semua perubahan", + "Common.Views.ReviewChangesDialog.txtReject": "Tolak", + "Common.Views.SymbolTableDialog.textSymbols": "Simbol", "DE.Controllers.LeftMenu.leavePageText": "All unsaved changes in this document will be lost.
Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.", "DE.Controllers.LeftMenu.newDocumentTitle": "Dokumen tidak bernama", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Warning", @@ -258,6 +270,7 @@ "DE.Controllers.Toolbar.textFontSizeErr": "Input yang dimasukkan salah.
Silakan masukkan input numerik antara 1 dan 300", "DE.Controllers.Toolbar.textFraction": "Pecahan", "DE.Controllers.Toolbar.textFunction": "Fungsi", + "DE.Controllers.Toolbar.textInsert": "Sisipkan", "DE.Controllers.Toolbar.textIntegral": "Integral", "DE.Controllers.Toolbar.textLargeOperator": "Operator Besar", "DE.Controllers.Toolbar.textLimitAndLog": "Limit dan Logaritma", @@ -585,6 +598,9 @@ "DE.Controllers.Toolbar.txtSymbol_vdots": "Vertical Ellipsis", "DE.Controllers.Toolbar.txtSymbol_xsi": "Xi", "DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", + "DE.Views.CaptionDialog.textAfter": "setelah", + "DE.Views.CaptionDialog.textBefore": "Sebelum", + "DE.Views.CaptionDialog.textTable": "Tabel", "DE.Views.ChartSettings.textAdvanced": "Tampilkan pengaturan lanjut", "DE.Views.ChartSettings.textChartType": "Ubah Tipe Bagan", "DE.Views.ChartSettings.textEditData": "Edit Data", @@ -677,12 +693,14 @@ "DE.Views.DocumentHolder.textNextPage": "Halaman Selanjutnya", "DE.Views.DocumentHolder.textPaste": "Tempel", "DE.Views.DocumentHolder.textPrevPage": "Halaman Sebelumnya", + "DE.Views.DocumentHolder.textSettings": "Pengaturan", "DE.Views.DocumentHolder.textShapeAlignBottom": "Rata Bawah", "DE.Views.DocumentHolder.textShapeAlignCenter": "Rata Tengah", "DE.Views.DocumentHolder.textShapeAlignLeft": "Rata Kiri", "DE.Views.DocumentHolder.textShapeAlignMiddle": "Rata di Tengah", "DE.Views.DocumentHolder.textShapeAlignRight": "Rata Kanan", "DE.Views.DocumentHolder.textShapeAlignTop": "Rata Atas", + "DE.Views.DocumentHolder.textTOC": "Daftar Isi", "DE.Views.DocumentHolder.textWrap": "Bentuk Potongan", "DE.Views.DocumentHolder.tipIsLocked": "Elemen ini sedang diedit oleh pengguna lain.", "DE.Views.DocumentHolder.txtAddBottom": "Add bottom border", @@ -697,7 +715,7 @@ "DE.Views.DocumentHolder.txtAlignToChar": "Align to character", "DE.Views.DocumentHolder.txtBehind": "Di belakang", "DE.Views.DocumentHolder.txtBorderProps": "Border properties", - "DE.Views.DocumentHolder.txtBottom": "Bottom", + "DE.Views.DocumentHolder.txtBottom": "Bawah", "DE.Views.DocumentHolder.txtColumnAlign": "Column alignment", "DE.Views.DocumentHolder.txtDecreaseArg": "Decrease argument size", "DE.Views.DocumentHolder.txtDeleteArg": "Delete argument", @@ -825,6 +843,7 @@ "DE.Views.FileMenu.textDownload": "Download", "DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Penulis", "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Ubah hak akses", + "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Komentar", "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Memuat...", "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Halaman", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Paragraf", @@ -871,6 +890,7 @@ "DE.Views.FileMenuPanels.Settings.txtPt": "Titik", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Periksa Ejaan", "DE.Views.FileMenuPanels.Settings.txtWin": "sebagai Windows", + "DE.Views.FormsTab.tipImageField": "Sisipkan Gambar", "DE.Views.HeaderFooterSettings.textBottomCenter": "Bawah Tengah", "DE.Views.HeaderFooterSettings.textBottomLeft": "Bawah Kiri", "DE.Views.HeaderFooterSettings.textBottomRight": "Bawah Kanan", @@ -966,12 +986,16 @@ "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Tembus", "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Ketat", "DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip": "Atas dan bawah", - "DE.Views.LeftMenu.tipAbout": "Tentang ONLYOFFICE", + "DE.Views.LeftMenu.tipAbout": "Tentang", "DE.Views.LeftMenu.tipChat": "Chat", "DE.Views.LeftMenu.tipComments": "Komentar", "DE.Views.LeftMenu.tipSearch": "Cari", "DE.Views.LeftMenu.tipSupport": "Masukan & Dukungan", "DE.Views.LeftMenu.tipTitles": "Judul", + "DE.Views.ListSettingsDialog.textAuto": "Otomatis", + "DE.Views.ListSettingsDialog.textLeft": "Kiri", + "DE.Views.ListSettingsDialog.textRight": "Kanan", + "DE.Views.ListSettingsDialog.txtSize": "Ukuran", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", "DE.Views.MailMergeEmailDlg.okButtonText": "Send", "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Theme", @@ -1041,13 +1065,16 @@ "DE.Views.ParagraphSettings.textAuto": "Banyak", "DE.Views.ParagraphSettings.textBackColor": "Warna latar", "DE.Views.ParagraphSettings.textExact": "Persis", + "DE.Views.ParagraphSettings.textFirstLine": "Baris Pertama", "DE.Views.ParagraphSettings.txtAutoText": "Otomatis", "DE.Views.ParagraphSettingsAdvanced.noTabs": "Tab yang ditentukan akan muncul pada bagian ini", "DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Huruf kapital semua", "DE.Views.ParagraphSettingsAdvanced.strBorders": "Pembatas & Isian", "DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Jeda halaman sebelum", "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Garis coret ganda", + "DE.Views.ParagraphSettingsAdvanced.strIndent": "Indentasi", "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Kiri", + "DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Spasi Antar Baris", "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Kanan", "DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Tetap satukan garis", "DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Satukan dengan berikutnya", @@ -1057,11 +1084,15 @@ "DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Indentasi & Peletakan", "DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Penempatan", "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Huruf Ukuran Kecil", + "DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "Jangan tambahkan interval antar paragraf dengan model yang sama", + "DE.Views.ParagraphSettingsAdvanced.strSpacing": "Spasi", "DE.Views.ParagraphSettingsAdvanced.strStrike": "Coret ganda", "DE.Views.ParagraphSettingsAdvanced.strSubscript": "Subskrip", "DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Superskrip", "DE.Views.ParagraphSettingsAdvanced.strTabs": "Tab", "DE.Views.ParagraphSettingsAdvanced.textAlign": "Perataan", + "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Sekurang-kurangnya", + "DE.Views.ParagraphSettingsAdvanced.textAuto": "Banyak", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Warna Latar", "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Warna Pembatas", "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Klik pada diagram atau gunakan tombol untuk memilih pembatas dan menerapkan pilihan model", @@ -1070,6 +1101,8 @@ "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Spasi Antar Karakter", "DE.Views.ParagraphSettingsAdvanced.textDefault": "Tab Standar", "DE.Views.ParagraphSettingsAdvanced.textEffects": "Efek", + "DE.Views.ParagraphSettingsAdvanced.textExact": "Persis", + "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Baris Pertama", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Kiri", "DE.Views.ParagraphSettingsAdvanced.textPosition": "Posisi", "DE.Views.ParagraphSettingsAdvanced.textRemove": "Hapus", @@ -1276,6 +1309,8 @@ "DE.Views.TextArtSettings.textTemplate": "Template", "DE.Views.TextArtSettings.textTransform": "Transform", "DE.Views.TextArtSettings.txtNoBorders": "No Line", + "DE.Views.Toolbar.capBtnInsChart": "Bagan", + "DE.Views.Toolbar.capImgGroup": "Grup", "DE.Views.Toolbar.mniCustomTable": "Sisipkan Tabel Khusus", "DE.Views.Toolbar.mniEditDropCap": "Pengaturan Drop Cap", "DE.Views.Toolbar.mniEditFooter": "Edit Footer", @@ -1324,6 +1359,7 @@ "DE.Views.Toolbar.textStyleMenuUpdate": "Update from selection", "DE.Views.Toolbar.textSubscript": "Subskrip", "DE.Views.Toolbar.textSuperscript": "Superskrip", + "DE.Views.Toolbar.textTabHome": "Halaman Depan", "DE.Views.Toolbar.textTitleError": "Error", "DE.Views.Toolbar.textToCurrent": "Ke posisi saat ini", "DE.Views.Toolbar.textTop": "Top: ", @@ -1333,6 +1369,7 @@ "DE.Views.Toolbar.tipAlignLeft": "Rata Kiri", "DE.Views.Toolbar.tipAlignRight": "Rata Kanan", "DE.Views.Toolbar.tipBack": "Kembali", + "DE.Views.Toolbar.tipChangeChart": "Ubah Tipe Bagan", "DE.Views.Toolbar.tipClearStyle": "Hapus Model", "DE.Views.Toolbar.tipColorSchemas": "Ubah Skema Warna", "DE.Views.Toolbar.tipColumns": "Insert columns", diff --git a/apps/documenteditor/main/locale/lv.json b/apps/documenteditor/main/locale/lv.json index e89c03af9..5395c04b3 100644 --- a/apps/documenteditor/main/locale/lv.json +++ b/apps/documenteditor/main/locale/lv.json @@ -63,6 +63,7 @@ "Common.Controllers.ReviewChanges.textTabs": "Change tabs", "Common.Controllers.ReviewChanges.textUnderline": "Underline", "Common.Controllers.ReviewChanges.textWidow": "Widow control", + "Common.UI.ButtonColored.textNewColor": "Pievienot jauno krāsu", "Common.UI.ComboBorderSize.txtNoBorders": "No borders", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "No borders", "Common.UI.ComboDataView.emptyComboText": "No styles", @@ -250,6 +251,7 @@ "Common.Views.ReviewChangesDialog.txtReject": "Noraidīt", "Common.Views.ReviewChangesDialog.txtRejectAll": "Noraidīt visas izmaiņas", "Common.Views.ReviewChangesDialog.txtRejectCurrent": "Noraidīt šībrīža izmaiņu", + "Common.Views.ReviewPopover.textAddReply": "Pievienot atbildi", "Common.Views.SignDialog.textBold": "Treknraksts", "Common.Views.SignDialog.textCertificate": "sertifikāts", "Common.Views.SignDialog.textChange": "Izmainīt", @@ -771,6 +773,7 @@ "DE.Views.BookmarksDialog.textName": "Nosaukums", "DE.Views.BookmarksDialog.textSort": "Šķirot pēc", "DE.Views.BookmarksDialog.textTitle": "Grāmatzīmes", + "DE.Views.CaptionDialog.textBefore": "Pirms", "DE.Views.ChartSettings.textAdvanced": "Show advanced settings", "DE.Views.ChartSettings.textChartType": "Change Chart Type", "DE.Views.ChartSettings.textEditData": "Edit Data", @@ -789,6 +792,7 @@ "DE.Views.ChartSettings.txtTight": "Tight", "DE.Views.ChartSettings.txtTitle": "Chart", "DE.Views.ChartSettings.txtTopAndBottom": "Top and bottom", + "DE.Views.ControlSettingsDialog.textAdd": "pievienot", "DE.Views.ControlSettingsDialog.textLock": "Bloķēšana", "DE.Views.ControlSettingsDialog.textName": "Nosaukums", "DE.Views.ControlSettingsDialog.textTag": "Birka", @@ -1047,6 +1051,7 @@ "DE.Views.FileMenu.btnSettingsCaption": "Papildu iestatījumi...", "DE.Views.FileMenu.btnToEditCaption": "Rediģēt dokumentu", "DE.Views.FileMenu.textDownload": "Download", + "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Piemērot", "DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autors", "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Change access rights", "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Ielādē...", @@ -1114,6 +1119,10 @@ "DE.Views.FileMenuPanels.Settings.txtPt": "Point", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Spell Checking", "DE.Views.FileMenuPanels.Settings.txtWin": "as Windows", + "DE.Views.FormSettings.textBackgroundColor": "Fona krāsa", + "DE.Views.FormSettings.textCheckbox": "Izvēles rūtiņa", + "DE.Views.FormsTab.capBtnCheckBox": "Izvēles rūtiņa", + "DE.Views.FormsTab.tipImageField": "Ievietot attēlu", "DE.Views.HeaderFooterSettings.textBottomCenter": "apakšā centrā", "DE.Views.HeaderFooterSettings.textBottomLeft": "apakšā pa kreisi", "DE.Views.HeaderFooterSettings.textBottomPage": "Lapas apakša", @@ -1170,6 +1179,7 @@ "DE.Views.ImageSettingsAdvanced.textAltDescription": "Apraksts", "DE.Views.ImageSettingsAdvanced.textAltTip": "Vizuālās objekta informācijas attainojums alternatīvā teksta veidā, kuru lasīs cilvēki ar redzes vai uztveres traucējumiem un kuriem tas labāk palīdzēs izprast, kāda informācija ir ietverta tekstā, automātiskajā figūrā, diagrammā vai tabulā.", "DE.Views.ImageSettingsAdvanced.textAltTitle": "Nosaukums", + "DE.Views.ImageSettingsAdvanced.textAngle": "Leņķis", "DE.Views.ImageSettingsAdvanced.textArrows": "Arrows", "DE.Views.ImageSettingsAdvanced.textAspectRatio": "Saglabāt proporcijas", "DE.Views.ImageSettingsAdvanced.textBeginSize": "Begin Size", @@ -1258,6 +1268,7 @@ "DE.Views.Links.tipInsertHyperlink": "Pievienot hipersaiti", "DE.Views.Links.tipNotes": "Ievietot vai rediģēt apakšējās piezīmes", "DE.Views.ListSettingsDialog.textPreview": "Priekšskatījums", + "DE.Views.ListSettingsDialog.txtAlign": "Nolīdzināšana", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", "DE.Views.MailMergeEmailDlg.okButtonText": "Send", "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Theme", @@ -1366,6 +1377,7 @@ "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double strikethrough", "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Pa kreisi", "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Pa labi", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "pēc", "DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Turēt līnijas kopā", "DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Keep with next", "DE.Views.ParagraphSettingsAdvanced.strMargins": "Margins", @@ -1379,6 +1391,7 @@ "DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Superscript", "DE.Views.ParagraphSettingsAdvanced.strTabs": "Tab", "DE.Views.ParagraphSettingsAdvanced.textAlign": "Alignment", + "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Vismaz", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Fona krāsa", "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Apmales krāsa", "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Noklikšķiniet uz diagrammas vai izmantojiet pogas, lai izvēlētos apmales un piemerotu izvēlēto stilu", @@ -1410,6 +1423,7 @@ "DE.Views.ParagraphSettingsAdvanced.tipOuter": "Set Outer Border Only", "DE.Views.ParagraphSettingsAdvanced.tipRight": "Set Right Border Only", "DE.Views.ParagraphSettingsAdvanced.tipTop": "Set Top Border Only", + "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automātiski", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Nav apmales", "DE.Views.RightMenu.txtChartSettings": "Chart Settings", "DE.Views.RightMenu.txtHeaderFooterSettings": "Galvenes un Kājenes iestatījumi", @@ -1563,6 +1577,7 @@ "DE.Views.TableSettings.tipRight": "Set Outer Right Border Only", "DE.Views.TableSettings.tipTop": "Set Outer Top Border Only", "DE.Views.TableSettings.txtNoBorders": "Nav apmales", + "DE.Views.TableSettings.txtTable_Accent": "Akcents", "DE.Views.TableSettingsAdvanced.textAlign": "Nolīdzināšana", "DE.Views.TableSettingsAdvanced.textAlignment": "Alignment", "DE.Views.TableSettingsAdvanced.textAllowSpacing": "Atļaut atstarpes starp šūnām", @@ -1654,6 +1669,7 @@ "DE.Views.TextArtSettings.textTemplate": "Template", "DE.Views.TextArtSettings.textTransform": "Transform", "DE.Views.TextArtSettings.txtNoBorders": "No Line", + "DE.Views.Toolbar.capBtnAddComment": "Pievienot Komentāru", "DE.Views.Toolbar.capBtnColumns": "Kolonnas", "DE.Views.Toolbar.capBtnComment": "Komentārs", "DE.Views.Toolbar.capBtnInsChart": "Diagramma", @@ -1712,7 +1728,7 @@ "DE.Views.Toolbar.textMarginsNormal": "Normal", "DE.Views.Toolbar.textMarginsUsNormal": "Parastie (ASV standarts)", "DE.Views.Toolbar.textMarginsWide": "Wide", - "DE.Views.Toolbar.textNewColor": "Pievienot jauno krāsu", + "DE.Views.Toolbar.textNewColor": "Pievienot jaunu krāsu", "DE.Views.Toolbar.textNextPage": "Next Page", "DE.Views.Toolbar.textNone": "None", "DE.Views.Toolbar.textOddPage": "Odd Page", diff --git a/apps/documenteditor/main/locale/nb.json b/apps/documenteditor/main/locale/nb.json index f60990bdb..a238e6489 100644 --- a/apps/documenteditor/main/locale/nb.json +++ b/apps/documenteditor/main/locale/nb.json @@ -14,22 +14,26 @@ "Common.Controllers.ReviewChanges.textChart": "Diagram", "Common.Controllers.ReviewChanges.textDeleted": "Slettet:", "Common.Controllers.ReviewChanges.textExact": "nøyaktig", + "Common.Controllers.ReviewChanges.textFirstLine": "Første linje", "Common.Controllers.ReviewChanges.textImage": "Bilde", "Common.Controllers.ReviewChanges.textInserted": "Satt inn:", "Common.Controllers.ReviewChanges.textJustify": "Still opp jevnt", "Common.Controllers.ReviewChanges.textLeft": "Still opp venstre", + "Common.Controllers.ReviewChanges.textMultiple": "Flere", "Common.Controllers.ReviewChanges.textNoContextual": "Legg til mellomrom mellom", "Common.Controllers.ReviewChanges.textNum": "Endre nummerering", "Common.Controllers.ReviewChanges.textParaDeleted": "Avsnitt slettet", "Common.Controllers.ReviewChanges.textParaInserted": "Avsnitt satt inn", "Common.Controllers.ReviewChanges.textRight": "Still opp høyre", "Common.Controllers.ReviewChanges.textShd": "Bakgrunnsfarge", + "Common.Controllers.ReviewChanges.textSpacing": "Avstand", "Common.Controllers.ReviewChanges.textTabs": "Bytt faner", "Common.Controllers.ReviewChanges.textTitleComparison": "Innstillinger for sammenlikning", "Common.define.chartData.textArea": "Areal", "Common.define.chartData.textBar": "Søyle", "Common.define.chartData.textCharts": "Diagrammer", "Common.define.chartData.textColumn": "Kolonne", + "Common.UI.ButtonColored.textAutoColor": "Automatisk", "Common.UI.Calendar.textApril": "april", "Common.UI.Calendar.textAugust": "august", "Common.UI.Calendar.textDecember": "desember", @@ -38,6 +42,8 @@ "Common.UI.ExtendedColorDialog.addButtonText": "Legg til", "Common.UI.ExtendedColorDialog.textCurrent": "Nåværende", "Common.UI.SearchDialog.textMatchCase": "Følsom for store og små bokstaver", + "Common.UI.ThemeColorPalette.textStandartColors": "Standardfarger", + "Common.UI.ThemeColorPalette.textThemeColors": "Temafarger", "Common.UI.Window.cancelButtonText": "Avbryt", "Common.UI.Window.closeButtonText": "Lukk", "Common.UI.Window.textConfirmation": "Bekreftelse", @@ -361,6 +367,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Linje over teksten", "DE.Views.DocumentHolder.txtUnderbar": "Linje under teksten", "DE.Views.DropcapSettingsAdvanced.strBorders": "Linjer & Fyll", + "DE.Views.DropcapSettingsAdvanced.strMargins": "Marginer", "DE.Views.DropcapSettingsAdvanced.textAlign": "Oppstilling", "DE.Views.DropcapSettingsAdvanced.textAtLeast": "Minst", "DE.Views.DropcapSettingsAdvanced.textAuto": "Auto", @@ -376,6 +383,7 @@ "DE.Views.EditListItemDialog.textValueError": "Det finnes allerede en gjenstand med samme verdi.", "DE.Views.FileMenu.btnCloseMenuCaption": "Lukk menyen", "DE.Views.FileMenu.btnCreateNewCaption": "Opprett ny", + "DE.Views.FileMenu.btnPrintCaption": "Skriv ut", "DE.Views.FileMenu.btnReturnCaption": "Tilbake til dokument", "DE.Views.FileMenu.btnRightsCaption": "Tilgangsrettigheter...", "DE.Views.FileMenu.btnSettingsCaption": "Avanserte innstillinger...", @@ -420,6 +428,8 @@ "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Vis varsling", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Deaktiver alle makroer med et varsel", "DE.Views.FileMenuPanels.Settings.txtWin": "som Windows", + "DE.Views.FormSettings.textImage": "Bilde", + "DE.Views.FormsTab.capBtnImage": "Bilde", "DE.Views.HeaderFooterSettings.textBottomCenter": "Bunn senter", "DE.Views.HeaderFooterSettings.textBottomLeft": "Margin bunn", "DE.Views.HeaderFooterSettings.textBottomPage": "Nederst på siden", @@ -515,6 +525,7 @@ "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Venstre", "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Etter", "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Før", + "DE.Views.ParagraphSettingsAdvanced.strSpacing": "Avstand", "DE.Views.ParagraphSettingsAdvanced.textAlign": "Oppstilling", "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Minst", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Bakgrunnsfarge", @@ -526,6 +537,7 @@ "DE.Views.ParagraphSettingsAdvanced.textCentered": "Sentrert", "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Tegnavstand", "DE.Views.ParagraphSettingsAdvanced.textDefault": "Standard fane", + "DE.Views.ParagraphSettingsAdvanced.textExact": "Eøyaktig", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Venstre", "DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(ingen)", "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Senter", diff --git a/apps/documenteditor/main/locale/pl.json b/apps/documenteditor/main/locale/pl.json index b34c0a933..49c8f9be5 100644 --- a/apps/documenteditor/main/locale/pl.json +++ b/apps/documenteditor/main/locale/pl.json @@ -2772,6 +2772,7 @@ "DE.Views.Toolbar.txtScheme7": "Kapitał", "DE.Views.Toolbar.txtScheme8": "Przepływ", "DE.Views.Toolbar.txtScheme9": "Odlewnia", + "DE.Views.ViewTab.textInterfaceTheme": "Motyw interfejsu", "DE.Views.WatermarkSettingsDialog.textAuto": "Automatyczny", "DE.Views.WatermarkSettingsDialog.textBold": "Pogrubienie", "DE.Views.WatermarkSettingsDialog.textColor": "Kolor tekstu", diff --git a/apps/documenteditor/main/locale/pt.json b/apps/documenteditor/main/locale/pt.json index ae6cec4af..34ba88974 100644 --- a/apps/documenteditor/main/locale/pt.json +++ b/apps/documenteditor/main/locale/pt.json @@ -916,6 +916,17 @@ "DE.Controllers.Toolbar.textSymbols": "Símbolos", "DE.Controllers.Toolbar.textTabForms": "Formulários", "DE.Controllers.Toolbar.textWarning": "Aviso", + "DE.Controllers.Toolbar.tipMarkersArrow": "Balas de flecha", + "DE.Controllers.Toolbar.tipMarkersCheckmark": "Marcas de verificação", + "DE.Controllers.Toolbar.tipMarkersDash": "Marcadores de roteiro", + "DE.Controllers.Toolbar.tipMarkersFRhombus": "Vinhetas rômbicas cheias", + "DE.Controllers.Toolbar.tipMarkersFRound": "Balas redondas cheias", + "DE.Controllers.Toolbar.tipMarkersFSquare": "Balas quadradas cheias", + "DE.Controllers.Toolbar.tipMarkersHRound": "Balas redondas ocas", + "DE.Controllers.Toolbar.tipMarkersStar": "Balas de estrelas", + "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Marcadores numerados de vários níveis", + "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Marcadores de símbolos de vários níveis", + "DE.Controllers.Toolbar.tipMultiLevelVarious": "Várias balas numeradas de vários níveis", "DE.Controllers.Toolbar.txtAccent_Accent": "Agudo", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Seta para direita-esquerda acima", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Seta adiante para cima", @@ -1293,7 +1304,7 @@ "DE.Views.ChartSettings.textWrap": "Estilo da quebra automática", "DE.Views.ChartSettings.txtBehind": "Atrás", "DE.Views.ChartSettings.txtInFront": "Em frente", - "DE.Views.ChartSettings.txtInline": "Embutido", + "DE.Views.ChartSettings.txtInline": "Em linha", "DE.Views.ChartSettings.txtSquare": "Quadrado", "DE.Views.ChartSettings.txtThrough": "Através", "DE.Views.ChartSettings.txtTight": "Justo", @@ -1516,6 +1527,14 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Atualizar a tabela de conteúdo", "DE.Views.DocumentHolder.textWrap": "Estilo da quebra automática", "DE.Views.DocumentHolder.tipIsLocked": "Este elemento está sendo atualmente editado por outro usuário.", + "DE.Views.DocumentHolder.tipMarkersArrow": "Balas de flecha", + "DE.Views.DocumentHolder.tipMarkersCheckmark": "Marcas de verificação", + "DE.Views.DocumentHolder.tipMarkersDash": "Marcadores de roteiro", + "DE.Views.DocumentHolder.tipMarkersFRhombus": "Vinhetas rômbicas cheias", + "DE.Views.DocumentHolder.tipMarkersFRound": "Balas redondas cheias", + "DE.Views.DocumentHolder.tipMarkersFSquare": "Balas quadradas cheias", + "DE.Views.DocumentHolder.tipMarkersHRound": "Balas redondas ocas", + "DE.Views.DocumentHolder.tipMarkersStar": "Balas de estrelas", "DE.Views.DocumentHolder.toDictionaryText": "Incluir no Dicionário", "DE.Views.DocumentHolder.txtAddBottom": "Adicionar borda inferior", "DE.Views.DocumentHolder.txtAddFractionBar": "Adicionar barra de fração", @@ -1564,7 +1583,7 @@ "DE.Views.DocumentHolder.txtHideVer": "Ocultar linha vertical", "DE.Views.DocumentHolder.txtIncreaseArg": "Aumentar o tamanho do argumento", "DE.Views.DocumentHolder.txtInFront": "Em frente", - "DE.Views.DocumentHolder.txtInline": "Embutido", + "DE.Views.DocumentHolder.txtInline": "Em linha", "DE.Views.DocumentHolder.txtInsertArgAfter": "Inserir argumento após", "DE.Views.DocumentHolder.txtInsertArgBefore": "Inserir argumento antes", "DE.Views.DocumentHolder.txtInsertBreak": "Inserir quebra manual", @@ -1905,7 +1924,7 @@ "DE.Views.ImageSettings.textWrap": "Estilo da quebra automática", "DE.Views.ImageSettings.txtBehind": "Atrás", "DE.Views.ImageSettings.txtInFront": "Em frente", - "DE.Views.ImageSettings.txtInline": "Embutido", + "DE.Views.ImageSettings.txtInline": "Em linha", "DE.Views.ImageSettings.txtSquare": "Quadrado", "DE.Views.ImageSettings.txtThrough": "Através", "DE.Views.ImageSettings.txtTight": "Justo", @@ -1980,7 +1999,7 @@ "DE.Views.ImageSettingsAdvanced.textWrap": "Estilo da quebra automática", "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Atrás", "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Em frente", - "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "Embutido", + "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "Em linha", "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Quadrado", "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Através", "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Justo", @@ -2329,7 +2348,7 @@ "DE.Views.ShapeSettings.txtGranite": "Granito", "DE.Views.ShapeSettings.txtGreyPaper": "Papel cinza", "DE.Views.ShapeSettings.txtInFront": "Em frente", - "DE.Views.ShapeSettings.txtInline": "Embutido", + "DE.Views.ShapeSettings.txtInline": "Em linha", "DE.Views.ShapeSettings.txtKnit": "Encontro", "DE.Views.ShapeSettings.txtLeather": "Couro", "DE.Views.ShapeSettings.txtNoBorders": "Sem linha", diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json index dc322819a..91fffa2a3 100644 --- a/apps/documenteditor/main/locale/ru.json +++ b/apps/documenteditor/main/locale/ru.json @@ -168,6 +168,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Новый", "Common.UI.ExtendedColorDialog.textRGBErr": "Введено некорректное значение.
Пожалуйста, введите числовое значение от 0 до 255.", "Common.UI.HSBColorPicker.textNoColor": "Без цвета", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Скрыть пароль", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Показать пароль", "Common.UI.SearchDialog.textHighlight": "Выделить результаты", "Common.UI.SearchDialog.textMatchCase": "С учетом регистра", "Common.UI.SearchDialog.textReplaceDef": "Введите текст для замены", @@ -211,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Стили маркированных списков", "Common.Views.AutoCorrectDialog.textBy": "На", "Common.Views.AutoCorrectDialog.textDelete": "Удалить", + "Common.Views.AutoCorrectDialog.textFLCells": "Делать первые буквы ячеек таблиц прописными", "Common.Views.AutoCorrectDialog.textFLSentence": "Делать первые буквы предложений прописными", "Common.Views.AutoCorrectDialog.textHyperlink": "Адреса в Интернете и сетевые пути гиперссылками", "Common.Views.AutoCorrectDialog.textHyphens": "Дефисы (--) на тире (—)", @@ -236,12 +239,14 @@ "Common.Views.Comments.mniAuthorDesc": "По автору от Я до А", "Common.Views.Comments.mniDateAsc": "От старых к новым", "Common.Views.Comments.mniDateDesc": "От новых к старым", + "Common.Views.Comments.mniFilterGroups": "Фильтровать по группе", "Common.Views.Comments.mniPositionAsc": "Сверху вниз", "Common.Views.Comments.mniPositionDesc": "Снизу вверх", "Common.Views.Comments.textAdd": "Добавить", "Common.Views.Comments.textAddComment": "Добавить", "Common.Views.Comments.textAddCommentToDoc": "Добавить комментарий к документу", "Common.Views.Comments.textAddReply": "Добавить ответ", + "Common.Views.Comments.textAll": "Все", "Common.Views.Comments.textAnonym": "Гость", "Common.Views.Comments.textCancel": "Отмена", "Common.Views.Comments.textClose": "Закрыть", @@ -255,6 +260,7 @@ "Common.Views.Comments.textResolve": "Решить", "Common.Views.Comments.textResolved": "Решено", "Common.Views.Comments.textSort": "Сортировать комментарии", + "Common.Views.Comments.textViewResolved": "У вас нет прав для повторного открытия комментария", "Common.Views.CopyWarningDialog.textDontShow": "Больше не показывать это сообщение", "Common.Views.CopyWarningDialog.textMsg": "Операции копирования, вырезания и вставки можно выполнить с помощью кнопок на панели инструментов и команд контекстного меню только в этой вкладке редактора.

Для копирования в другие приложения и вставки из них используйте следующие сочетания клавиш:", "Common.Views.CopyWarningDialog.textTitle": "Операции копирования, вырезания и вставки", @@ -431,6 +437,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Открыть снова", "Common.Views.ReviewPopover.textReply": "Ответить", "Common.Views.ReviewPopover.textResolve": "Решить", + "Common.Views.ReviewPopover.textViewResolved": "У вас нет прав для повторного открытия комментария", "Common.Views.ReviewPopover.txtAccept": "Принять", "Common.Views.ReviewPopover.txtDeleteTip": "Удалить", "Common.Views.ReviewPopover.txtEditTip": "Редактировать", @@ -602,6 +609,7 @@ "DE.Controllers.Main.textLongName": "Введите имя длиной менее 128 символов.", "DE.Controllers.Main.textNoLicenseTitle": "Лицензионное ограничение", "DE.Controllers.Main.textPaidFeature": "Платная функция", + "DE.Controllers.Main.textReconnect": "Соединение восстановлено", "DE.Controllers.Main.textRemember": "Запомнить мой выбор для всех файлов", "DE.Controllers.Main.textRenameError": "Имя пользователя не должно быть пустым.", "DE.Controllers.Main.textRenameLabel": "Введите имя, которое будет использоваться для совместной работы", @@ -879,7 +887,7 @@ "DE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.", "DE.Controllers.Navigation.txtBeginning": "Начало документа", "DE.Controllers.Navigation.txtGotoBeginning": "Перейти в начало документа", - "DE.Controllers.Statusbar.textDisconnect": "Соединение потеряно
Пытаемся восстановить соединение. Проверьте параметры подключения.", + "DE.Controllers.Statusbar.textDisconnect": "Соединение потеряно
Попытка подключения. Проверьте настройки подключения.", "DE.Controllers.Statusbar.textHasChanges": "Отслежены новые изменения", "DE.Controllers.Statusbar.textSetTrackChanges": "Вы находитесь в режиме отслеживания изменений", "DE.Controllers.Statusbar.textTrackChanges": "Документ открыт при включенном режиме отслеживания изменений", @@ -903,10 +911,22 @@ "DE.Controllers.Toolbar.textMatrix": "Матрицы", "DE.Controllers.Toolbar.textOperator": "Операторы", "DE.Controllers.Toolbar.textRadical": "Радикалы", + "DE.Controllers.Toolbar.textRecentlyUsed": "Последние использованные", "DE.Controllers.Toolbar.textScript": "Индексы", "DE.Controllers.Toolbar.textSymbols": "Символы", "DE.Controllers.Toolbar.textTabForms": "Формы", "DE.Controllers.Toolbar.textWarning": "Предупреждение", + "DE.Controllers.Toolbar.tipMarkersArrow": "Маркеры-стрелки", + "DE.Controllers.Toolbar.tipMarkersCheckmark": "Маркеры-галочки", + "DE.Controllers.Toolbar.tipMarkersDash": "Маркеры-тире", + "DE.Controllers.Toolbar.tipMarkersFRhombus": "Заполненные ромбовидные маркеры", + "DE.Controllers.Toolbar.tipMarkersFRound": "Заполненные круглые маркеры", + "DE.Controllers.Toolbar.tipMarkersFSquare": "Заполненные квадратные маркеры", + "DE.Controllers.Toolbar.tipMarkersHRound": "Пустые круглые маркеры", + "DE.Controllers.Toolbar.tipMarkersStar": "Маркеры-звездочки", + "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Многоуровневые нумерованные маркеры", + "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Многоуровневые маркеры-сивволы", + "DE.Controllers.Toolbar.tipMultiLevelVarious": "Многоуровневые разные нумерованные маркеры", "DE.Controllers.Toolbar.txtAccent_Accent": "Ударение", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Стрелка вправо-влево сверху", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Стрелка влево сверху", @@ -1458,6 +1478,7 @@ "DE.Views.DocumentHolder.textDistributeCols": "Выровнять ширину столбцов", "DE.Views.DocumentHolder.textDistributeRows": "Выровнять высоту строк", "DE.Views.DocumentHolder.textEditControls": "Параметры элемента управления содержимым", + "DE.Views.DocumentHolder.textEditPoints": "Изменить точки", "DE.Views.DocumentHolder.textEditWrapBoundary": "Изменить границу обтекания", "DE.Views.DocumentHolder.textFlipH": "Отразить слева направо", "DE.Views.DocumentHolder.textFlipV": "Отразить сверху вниз", @@ -1506,6 +1527,14 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Обновить оглавление", "DE.Views.DocumentHolder.textWrap": "Стиль обтекания", "DE.Views.DocumentHolder.tipIsLocked": "Этот элемент редактируется другим пользователем.", + "DE.Views.DocumentHolder.tipMarkersArrow": "Маркеры-стрелки", + "DE.Views.DocumentHolder.tipMarkersCheckmark": "Маркеры-галочки", + "DE.Views.DocumentHolder.tipMarkersDash": "Маркеры-тире", + "DE.Views.DocumentHolder.tipMarkersFRhombus": "Заполненные ромбовидные маркеры", + "DE.Views.DocumentHolder.tipMarkersFRound": "Заполненные круглые маркеры", + "DE.Views.DocumentHolder.tipMarkersFSquare": "Заполненные квадратные маркеры", + "DE.Views.DocumentHolder.tipMarkersHRound": "Пустые круглые маркеры", + "DE.Views.DocumentHolder.tipMarkersStar": "Маркеры-звездочки", "DE.Views.DocumentHolder.toDictionaryText": "Добавить в словарь", "DE.Views.DocumentHolder.txtAddBottom": "Добавить нижнюю границу", "DE.Views.DocumentHolder.txtAddFractionBar": "Добавить дробную черту", @@ -1872,6 +1901,7 @@ "DE.Views.ImageSettings.textCrop": "Обрезать", "DE.Views.ImageSettings.textCropFill": "Заливка", "DE.Views.ImageSettings.textCropFit": "Вписать", + "DE.Views.ImageSettings.textCropToShape": "Обрезать по фигуре", "DE.Views.ImageSettings.textEdit": "Редактировать", "DE.Views.ImageSettings.textEditObject": "Редактировать объект", "DE.Views.ImageSettings.textFitMargins": "Вписать", @@ -1886,6 +1916,7 @@ "DE.Views.ImageSettings.textHintFlipV": "Отразить сверху вниз", "DE.Views.ImageSettings.textInsert": "Заменить изображение", "DE.Views.ImageSettings.textOriginalSize": "Реальный размер", + "DE.Views.ImageSettings.textRecentlyUsed": "Последние использованные", "DE.Views.ImageSettings.textRotate90": "Повернуть на 90°", "DE.Views.ImageSettings.textRotation": "Поворот", "DE.Views.ImageSettings.textSize": "Размер", @@ -2156,6 +2187,11 @@ "DE.Views.PageSizeDialog.textTitle": "Размер страницы", "DE.Views.PageSizeDialog.textWidth": "Ширина", "DE.Views.PageSizeDialog.txtCustom": "Особый", + "DE.Views.PageThumbnails.textClosePanel": "Закрыть эскизы страниц", + "DE.Views.PageThumbnails.textHighlightVisiblePart": "Выделить видимую часть страницы", + "DE.Views.PageThumbnails.textPageThumbnails": "Эскизы страниц", + "DE.Views.PageThumbnails.textThumbnailsSettings": "Параметры эскизов", + "DE.Views.PageThumbnails.textThumbnailsSize": "Размер эскизов", "DE.Views.ParagraphSettings.strIndent": "Отступы", "DE.Views.ParagraphSettings.strIndentsLeftText": "Слева", "DE.Views.ParagraphSettings.strIndentsRightText": "Справа", @@ -2291,6 +2327,7 @@ "DE.Views.ShapeSettings.textPatternFill": "Узор", "DE.Views.ShapeSettings.textPosition": "Положение", "DE.Views.ShapeSettings.textRadial": "Радиальный", + "DE.Views.ShapeSettings.textRecentlyUsed": "Последние использованные", "DE.Views.ShapeSettings.textRotate90": "Повернуть на 90°", "DE.Views.ShapeSettings.textRotation": "Поворот", "DE.Views.ShapeSettings.textSelectImage": "Выбрать изображение", @@ -2682,6 +2719,7 @@ "DE.Views.Toolbar.textTabLinks": "Ссылки", "DE.Views.Toolbar.textTabProtect": "Защита", "DE.Views.Toolbar.textTabReview": "Рецензирование", + "DE.Views.Toolbar.textTabView": "Вид", "DE.Views.Toolbar.textTitleError": "Ошибка", "DE.Views.Toolbar.textToCurrent": "В текущей позиции", "DE.Views.Toolbar.textTop": "Верхнее: ", @@ -2773,6 +2811,14 @@ "DE.Views.Toolbar.txtScheme7": "Справедливость", "DE.Views.Toolbar.txtScheme8": "Поток", "DE.Views.Toolbar.txtScheme9": "Литейная", + "DE.Views.ViewTab.textAlwaysShowToolbar": "Всегда показывать панель инструментов", + "DE.Views.ViewTab.textFitToPage": "По размеру страницы", + "DE.Views.ViewTab.textFitToWidth": "По ширине", + "DE.Views.ViewTab.textInterfaceTheme": "Тема интерфейса", + "DE.Views.ViewTab.textNavigation": "Навигация", + "DE.Views.ViewTab.textRulers": "Линейки", + "DE.Views.ViewTab.textStatusBar": "Строка состояния", + "DE.Views.ViewTab.textZoom": "Масштаб", "DE.Views.WatermarkSettingsDialog.textAuto": "Авто", "DE.Views.WatermarkSettingsDialog.textBold": "Полужирный", "DE.Views.WatermarkSettingsDialog.textColor": "Цвет текста", diff --git a/apps/documenteditor/main/locale/sk.json b/apps/documenteditor/main/locale/sk.json index e53bcd1e4..08b4085da 100644 --- a/apps/documenteditor/main/locale/sk.json +++ b/apps/documenteditor/main/locale/sk.json @@ -108,6 +108,7 @@ "Common.define.chartData.textStock": "Akcie/burzový graf", "Common.define.chartData.textSurface": "Povrch", "Common.Translation.warnFileLockedBtnEdit": "Vytvoriť kópiu", + "Common.UI.ButtonColored.textAutoColor": "Automaticky", "Common.UI.Calendar.textApril": "apríl", "Common.UI.Calendar.textAugust": "august", "Common.UI.Calendar.textDecember": "december", @@ -163,6 +164,7 @@ "Common.UI.SynchronizeTip.textSynchronize": "Dokument bol zmenený ďalším používateľom.
Prosím, kliknite na uloženie zmien a opätovne načítajte aktualizácie.", "Common.UI.ThemeColorPalette.textStandartColors": "Štandardné farby", "Common.UI.ThemeColorPalette.textThemeColors": "Farebné témy", + "Common.UI.Themes.txtThemeDark": "Tmavý", "Common.UI.Window.cancelButtonText": "Zrušiť", "Common.UI.Window.closeButtonText": "Zatvoriť", "Common.UI.Window.noButtonText": "Nie", @@ -1590,6 +1592,7 @@ "DE.Views.FormSettings.textDelete": "Odstrániť", "DE.Views.FormSettings.textDisconnect": "Odpojiť", "DE.Views.FormSettings.textDropDown": "Rozbaľovacia ponuka", + "DE.Views.FormSettings.textField": "Textové pole", "DE.Views.FormSettings.textFromFile": "Zo súboru", "DE.Views.FormSettings.textFromStorage": "Z úložiska", "DE.Views.FormSettings.textFromUrl": "Z URL adresy ", @@ -1597,6 +1600,7 @@ "DE.Views.FormSettings.textImage": "Obrázok", "DE.Views.FormSettings.textKey": "Kľúč", "DE.Views.FormSettings.textMaxChars": "Limit znakov", + "DE.Views.FormSettings.textRadiobox": "Prepínač", "DE.Views.FormSettings.textTipAdd": "Pridať novú hodnotu", "DE.Views.FormSettings.textTipDelete": "Vymazať hodnotu", "DE.Views.FormSettings.textWidth": "Šírka bunky", @@ -1604,9 +1608,11 @@ "DE.Views.FormsTab.capBtnComboBox": "Zmiešaná schránka", "DE.Views.FormsTab.capBtnDropDown": "Rozbaľovacia ponuka", "DE.Views.FormsTab.capBtnImage": "Obrázok", + "DE.Views.FormsTab.capBtnNext": "Nasledujúce pole", "DE.Views.FormsTab.textClear": "Vyčistiť políčka", "DE.Views.FormsTab.textClearFields": "Vyčistiť všetky polia", "DE.Views.FormsTab.textHighlight": "Nastavenia zvýraznenia", + "DE.Views.FormsTab.textNoHighlight": "Bez zvýraznenia", "DE.Views.FormsTab.textSubmited": "Formulár úspešne odoslaný", "DE.Views.FormsTab.tipCheckBox": "Vložiť začiarkavacie políčko", "DE.Views.FormsTab.tipComboBox": "Vložiť výberové pole", diff --git a/apps/documenteditor/main/locale/sl.json b/apps/documenteditor/main/locale/sl.json index bc1f97aa5..a46bdedca 100644 --- a/apps/documenteditor/main/locale/sl.json +++ b/apps/documenteditor/main/locale/sl.json @@ -20,7 +20,7 @@ "Common.Controllers.ReviewChanges.textChar": "Raven znakov", "Common.Controllers.ReviewChanges.textChart": "Chart", "Common.Controllers.ReviewChanges.textColor": "Font color", - "Common.Controllers.ReviewChanges.textContextual": "Don't add interval between paragraphs of the same style", + "Common.Controllers.ReviewChanges.textContextual": "Med odstavke enakega sloga ne dodaj intervalov", "Common.Controllers.ReviewChanges.textDeleted": "Deleted:", "Common.Controllers.ReviewChanges.textDStrikeout": "Double strikeout", "Common.Controllers.ReviewChanges.textEquation": "Equation", @@ -38,10 +38,10 @@ "Common.Controllers.ReviewChanges.textKeepLines": "Obdrži vrstice skupaj", "Common.Controllers.ReviewChanges.textKeepNext": "Keep with next", "Common.Controllers.ReviewChanges.textLeft": "Align left", - "Common.Controllers.ReviewChanges.textLineSpacing": "Line Spacing: ", + "Common.Controllers.ReviewChanges.textLineSpacing": "Razmik med vrsticami: ", "Common.Controllers.ReviewChanges.textMultiple": "multiple", "Common.Controllers.ReviewChanges.textNoBreakBefore": "Brez preloma strani spredaj", - "Common.Controllers.ReviewChanges.textNoContextual": "Add interval between paragraphs of the same style", + "Common.Controllers.ReviewChanges.textNoContextual": "Dodajte interval med odstavki istega sloga", "Common.Controllers.ReviewChanges.textNoKeepLines": "Ne ohranjaj vrstic skupaj", "Common.Controllers.ReviewChanges.textNoKeepNext": "Don't keep with next", "Common.Controllers.ReviewChanges.textNot": "Not ", @@ -99,6 +99,7 @@ "Common.define.chartData.textPoint": "Točkovni grafikon", "Common.define.chartData.textStock": "Založni grafikon", "Common.Translation.warnFileLockedBtnEdit": "Ustvari kopijo", + "Common.UI.ButtonColored.textAutoColor": "Avtomatsko", "Common.UI.Calendar.textApril": "April", "Common.UI.Calendar.textAugust": "Avgust", "Common.UI.Calendar.textDecember": "December", @@ -141,6 +142,8 @@ "Common.UI.SearchDialog.txtBtnReplaceAll": "Zamenjaj vse", "Common.UI.SynchronizeTip.textDontShow": "Tega sporočila ne prikaži več", "Common.UI.SynchronizeTip.textSynchronize": "Dokument je spremenil drug uporabnik.
Prosim pritisnite za shranjevanje svojih sprememb in osvežitev posodobitev.", + "Common.UI.ThemeColorPalette.textStandartColors": "Standardne barve", + "Common.UI.ThemeColorPalette.textThemeColors": "Barve teme", "Common.UI.Window.cancelButtonText": "Prekliči", "Common.UI.Window.closeButtonText": "Zapri", "Common.UI.Window.noButtonText": "Ne", @@ -1242,10 +1245,13 @@ "DE.Views.FormSettings.textColor": "Barva obrobe", "DE.Views.FormSettings.textDelete": "Izbriši", "DE.Views.FormSettings.textFromUrl": "z URL naslova", + "DE.Views.FormSettings.textImage": "Slika", "DE.Views.FormSettings.textTipAdd": "Dodaj novo vrednost", "DE.Views.FormSettings.textWidth": "Širina celice", "DE.Views.FormsTab.capBtnCheckBox": "Potrditveno polje", + "DE.Views.FormsTab.capBtnNext": "Naslednje polje", "DE.Views.FormsTab.textClearFields": "Počisti vsa polja", + "DE.Views.FormsTab.tipImageField": "Vstavi sliko", "DE.Views.HeaderFooterSettings.textBottomCenter": "Središče dna", "DE.Views.HeaderFooterSettings.textBottomLeft": "Spodaj levo", "DE.Views.HeaderFooterSettings.textBottomPage": "Konec strani", @@ -1493,9 +1499,11 @@ "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Dvojno prečrtanje", "DE.Views.ParagraphSettingsAdvanced.strIndent": "Zamiki", "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Levo", + "DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Razmik med vrsticami", "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Desno", "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "po", "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Pred", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Poseben", "DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Obdrži vrstice skupaj", "DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Ohrani z naslednjim", "DE.Views.ParagraphSettingsAdvanced.strMargins": "Blazinice", @@ -1505,6 +1513,8 @@ "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Prelomi vrstic & strani", "DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Postavitev", "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "mali pokrovčki", + "DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "Med odstavke enakega sloga ne dodaj intervalov", + "DE.Views.ParagraphSettingsAdvanced.strSpacing": "Razmik", "DE.Views.ParagraphSettingsAdvanced.strStrike": "Prečrtano", "DE.Views.ParagraphSettingsAdvanced.strSubscript": "Pripis", "DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Nadpis", @@ -1522,6 +1532,7 @@ "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Razmak znaka", "DE.Views.ParagraphSettingsAdvanced.textDefault": "Prevzeti zavihek", "DE.Views.ParagraphSettingsAdvanced.textEffects": "Učinki", + "DE.Views.ParagraphSettingsAdvanced.textExact": "Točno", "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Prva vrstica", "DE.Views.ParagraphSettingsAdvanced.textJustified": "Upravičena", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Levo", diff --git a/apps/documenteditor/main/locale/sv.json b/apps/documenteditor/main/locale/sv.json index d241f3d0f..cdfb054d5 100644 --- a/apps/documenteditor/main/locale/sv.json +++ b/apps/documenteditor/main/locale/sv.json @@ -1755,7 +1755,7 @@ "DE.Views.FormSettings.textNever": "Aldrig", "DE.Views.FormSettings.textNoBorder": "Ingen ram", "DE.Views.FormSettings.textPlaceholder": "Platshållare", - "DE.Views.FormSettings.textRadiobox": "Radio Button", + "DE.Views.FormSettings.textRadiobox": "Radioknapp", "DE.Views.FormSettings.textRequired": "Obligatoriskt", "DE.Views.FormSettings.textScale": "När ska skalas", "DE.Views.FormSettings.textSelectImage": "Välj bild", @@ -2730,6 +2730,7 @@ "DE.Views.Toolbar.txtScheme7": "Rättvisa", "DE.Views.Toolbar.txtScheme8": "Flöde", "DE.Views.Toolbar.txtScheme9": "Grund", + "DE.Views.ViewTab.textInterfaceTheme": "Gränssnittstema", "DE.Views.WatermarkSettingsDialog.textAuto": "Auto", "DE.Views.WatermarkSettingsDialog.textBold": "Fet", "DE.Views.WatermarkSettingsDialog.textColor": "Textfärg", diff --git a/apps/documenteditor/main/locale/uk.json b/apps/documenteditor/main/locale/uk.json index 8c164e72f..116302395 100644 --- a/apps/documenteditor/main/locale/uk.json +++ b/apps/documenteditor/main/locale/uk.json @@ -168,6 +168,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Новий", "Common.UI.ExtendedColorDialog.textRGBErr": "Введене значення невірно.
Будь ласка, введіть числове значення від 0 до 255.", "Common.UI.HSBColorPicker.textNoColor": "Немає кольору", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Сховати пароль", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Показати пароль", "Common.UI.SearchDialog.textHighlight": "Виділіть результати", "Common.UI.SearchDialog.textMatchCase": "Чутливість до регістору символів", "Common.UI.SearchDialog.textReplaceDef": "Введіть текст заміни", @@ -211,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Стилі маркованих списків", "Common.Views.AutoCorrectDialog.textBy": "На", "Common.Views.AutoCorrectDialog.textDelete": "Видалити", + "Common.Views.AutoCorrectDialog.textFLCells": "Робити перші літери в клітинках таблиць великими", "Common.Views.AutoCorrectDialog.textFLSentence": "Писати речення з великої літери", "Common.Views.AutoCorrectDialog.textHyperlink": "Адреси в інтернеті та мережі гіперпосиланнями", "Common.Views.AutoCorrectDialog.textHyphens": "Дефіси (--) на тире (—)", @@ -236,12 +239,14 @@ "Common.Views.Comments.mniAuthorDesc": "За автором від Я до А", "Common.Views.Comments.mniDateAsc": "Від старих до нових", "Common.Views.Comments.mniDateDesc": "Від нових до старих", + "Common.Views.Comments.mniFilterGroups": "Фільтрувати за групою", "Common.Views.Comments.mniPositionAsc": "Зверху вниз", "Common.Views.Comments.mniPositionDesc": "Знизу вверх", "Common.Views.Comments.textAdd": "Додати", "Common.Views.Comments.textAddComment": "Добавити коментар", "Common.Views.Comments.textAddCommentToDoc": "Додати коментар до документа", "Common.Views.Comments.textAddReply": "Додати відповідь", + "Common.Views.Comments.textAll": "Всі", "Common.Views.Comments.textAnonym": "Гість", "Common.Views.Comments.textCancel": "Скасувати", "Common.Views.Comments.textClose": "Закрити", @@ -602,6 +607,7 @@ "DE.Controllers.Main.textLongName": "Введіть ім'я не довше ніж 128 символів.", "DE.Controllers.Main.textNoLicenseTitle": "Ліцензійне обмеження", "DE.Controllers.Main.textPaidFeature": "Платна функція", + "DE.Controllers.Main.textReconnect": "З'єднання відновлено", "DE.Controllers.Main.textRemember": "Запам’ятати мій вибір для всіх файлів", "DE.Controllers.Main.textRenameError": "Ім'я користувача не повинно бути порожнім.", "DE.Controllers.Main.textRenameLabel": "Введіть ім'я, що буде використовуватись для спільної роботи", @@ -667,7 +673,7 @@ "DE.Controllers.Main.txtShape_actionButtonEnd": "Кнопка \"В кінець\"", "DE.Controllers.Main.txtShape_actionButtonForwardNext": "Кнопка \"Вперед\"", "DE.Controllers.Main.txtShape_actionButtonHelp": "Кнопка \"Довідка\"", - "DE.Controllers.Main.txtShape_actionButtonHome": "Кнопка Домівка", + "DE.Controllers.Main.txtShape_actionButtonHome": "Кнопка \"На головну\"", "DE.Controllers.Main.txtShape_actionButtonInformation": "Інформаційна кнопка", "DE.Controllers.Main.txtShape_actionButtonMovie": "Кнопка відео", "DE.Controllers.Main.txtShape_actionButtonReturn": "Кнопка повернення", @@ -902,10 +908,19 @@ "DE.Controllers.Toolbar.textMatrix": "Матриці", "DE.Controllers.Toolbar.textOperator": "Оператори", "DE.Controllers.Toolbar.textRadical": "Радикали", + "DE.Controllers.Toolbar.textRecentlyUsed": "Останні використані", "DE.Controllers.Toolbar.textScript": "Рукописи", "DE.Controllers.Toolbar.textSymbols": "Символи", "DE.Controllers.Toolbar.textTabForms": "Форми", "DE.Controllers.Toolbar.textWarning": "Застереження", + "DE.Controllers.Toolbar.tipMarkersArrow": "Маркери-стрілки", + "DE.Controllers.Toolbar.tipMarkersCheckmark": "Маркери-галочки", + "DE.Controllers.Toolbar.tipMarkersDash": "Маркери-тире", + "DE.Controllers.Toolbar.tipMarkersFRhombus": "Заповнені ромбоподібні маркери", + "DE.Controllers.Toolbar.tipMarkersFRound": "Заповнені круглі маркери", + "DE.Controllers.Toolbar.tipMarkersFSquare": "Заповнені квадратні маркери", + "DE.Controllers.Toolbar.tipMarkersHRound": "Пусті круглі маркери", + "DE.Controllers.Toolbar.tipMarkersStar": "Маркери-зірочки", "DE.Controllers.Toolbar.txtAccent_Accent": "Гострий", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Стрілка праворуч вліво вище", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Стрілка вліво вгору", @@ -1505,6 +1520,14 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Оновити зміст", "DE.Views.DocumentHolder.textWrap": "Стиль упаковки", "DE.Views.DocumentHolder.tipIsLocked": "Цей елемент в даний час редагує інший користувач.", + "DE.Views.DocumentHolder.tipMarkersArrow": "Маркери-стрілки", + "DE.Views.DocumentHolder.tipMarkersCheckmark": "Маркери-галочки", + "DE.Views.DocumentHolder.tipMarkersDash": "Маркери-тире", + "DE.Views.DocumentHolder.tipMarkersFRhombus": "Заповнені ромбоподібні маркери", + "DE.Views.DocumentHolder.tipMarkersFRound": "Заповнені круглі маркери", + "DE.Views.DocumentHolder.tipMarkersFSquare": "Заповнені квадратні маркери", + "DE.Views.DocumentHolder.tipMarkersHRound": "Пусті круглі маркери", + "DE.Views.DocumentHolder.tipMarkersStar": "Маркери-зірочки", "DE.Views.DocumentHolder.toDictionaryText": "Додати в словник", "DE.Views.DocumentHolder.txtAddBottom": "Додати нижню межу", "DE.Views.DocumentHolder.txtAddFractionBar": "Додати фракційну панель", @@ -1871,6 +1894,7 @@ "DE.Views.ImageSettings.textCrop": "Обрізати", "DE.Views.ImageSettings.textCropFill": "Заливка", "DE.Views.ImageSettings.textCropFit": "Вмістити", + "DE.Views.ImageSettings.textCropToShape": "Обрізати по фігурі", "DE.Views.ImageSettings.textEdit": "Редагувати", "DE.Views.ImageSettings.textEditObject": "Редагувати об'єкт", "DE.Views.ImageSettings.textFitMargins": "За розміром меж", @@ -1885,6 +1909,7 @@ "DE.Views.ImageSettings.textHintFlipV": "Перевернути вертикально", "DE.Views.ImageSettings.textInsert": "Замінити зображення", "DE.Views.ImageSettings.textOriginalSize": "Реальний розмір", + "DE.Views.ImageSettings.textRecentlyUsed": "Останні використані", "DE.Views.ImageSettings.textRotate90": "Повернути на 90°", "DE.Views.ImageSettings.textRotation": "Поворот", "DE.Views.ImageSettings.textSize": "Розмір", @@ -1975,7 +2000,7 @@ "DE.Views.LeftMenu.tipAbout": "Про", "DE.Views.LeftMenu.tipChat": "Чат", "DE.Views.LeftMenu.tipComments": "Коментарі", - "DE.Views.LeftMenu.tipNavigation": "Структура", + "DE.Views.LeftMenu.tipNavigation": "Навігація", "DE.Views.LeftMenu.tipPlugins": "Плагіни", "DE.Views.LeftMenu.tipSearch": "Пошук", "DE.Views.LeftMenu.tipSupport": "Відгуки і підтримка", @@ -2290,6 +2315,7 @@ "DE.Views.ShapeSettings.textPatternFill": "Візерунок", "DE.Views.ShapeSettings.textPosition": "Положення", "DE.Views.ShapeSettings.textRadial": "Радіальний", + "DE.Views.ShapeSettings.textRecentlyUsed": "Останні використані", "DE.Views.ShapeSettings.textRotate90": "Повернути на 90°", "DE.Views.ShapeSettings.textRotation": "Поворот", "DE.Views.ShapeSettings.textSelectImage": "Вибрати зображення", @@ -2675,7 +2701,7 @@ "DE.Views.Toolbar.textSuppressForCurrentParagraph": "Відключити для поточного абзацу", "DE.Views.Toolbar.textTabCollaboration": "Співпраця", "DE.Views.Toolbar.textTabFile": "Файл", - "DE.Views.Toolbar.textTabHome": "Домівка", + "DE.Views.Toolbar.textTabHome": "Головна", "DE.Views.Toolbar.textTabInsert": "Вставити", "DE.Views.Toolbar.textTabLayout": "Макет", "DE.Views.Toolbar.textTabLinks": "Посилання", @@ -2772,6 +2798,12 @@ "DE.Views.Toolbar.txtScheme7": "Власний", "DE.Views.Toolbar.txtScheme8": "Розпливатися", "DE.Views.Toolbar.txtScheme9": "Ливарня", + "DE.Views.ViewTab.textFitToPage": "За розміром сторінки", + "DE.Views.ViewTab.textFitToWidth": "По ширині", + "DE.Views.ViewTab.textInterfaceTheme": "Тема інтерфейсу", + "DE.Views.ViewTab.textNavigation": "Навігація", + "DE.Views.ViewTab.textRulers": "Лінійки", + "DE.Views.ViewTab.textStatusBar": "Рядок стану", "DE.Views.WatermarkSettingsDialog.textAuto": "Авто", "DE.Views.WatermarkSettingsDialog.textBold": "Грубий", "DE.Views.WatermarkSettingsDialog.textColor": "Колір тексту", diff --git a/apps/documenteditor/main/locale/zh.json b/apps/documenteditor/main/locale/zh.json index fd2af8d49..f6535cdb9 100644 --- a/apps/documenteditor/main/locale/zh.json +++ b/apps/documenteditor/main/locale/zh.json @@ -1146,7 +1146,7 @@ "DE.Controllers.Toolbar.txtSymbol_ast": "星号运营商", "DE.Controllers.Toolbar.txtSymbol_beta": "测试版", "DE.Controllers.Toolbar.txtSymbol_beth": "打赌", - "DE.Controllers.Toolbar.txtSymbol_bullet": "着重号操作", + "DE.Controllers.Toolbar.txtSymbol_bullet": "项目符号操作", "DE.Controllers.Toolbar.txtSymbol_cap": "路口", "DE.Controllers.Toolbar.txtSymbol_cbrt": "立方根", "DE.Controllers.Toolbar.txtSymbol_cdots": "中线水平省略号", @@ -1380,7 +1380,7 @@ "DE.Views.DocumentHolder.alignmentText": "对齐", "DE.Views.DocumentHolder.belowText": "下面", "DE.Views.DocumentHolder.breakBeforeText": "分页前", - "DE.Views.DocumentHolder.bulletsText": "子弹和编号", + "DE.Views.DocumentHolder.bulletsText": "符号和编号", "DE.Views.DocumentHolder.cellAlignText": "单元格垂直对齐", "DE.Views.DocumentHolder.cellText": "元件", "DE.Views.DocumentHolder.centerText": "中心", @@ -1793,7 +1793,7 @@ "DE.Views.FormSettings.textRequired": "必填", "DE.Views.FormSettings.textScale": "何时按倍缩放?", "DE.Views.FormSettings.textSelectImage": "选择图像", - "DE.Views.FormSettings.textTip": "贴士", + "DE.Views.FormSettings.textTip": "提示", "DE.Views.FormSettings.textTipAdd": "新增值", "DE.Views.FormSettings.textTipDelete": "刪除值", "DE.Views.FormSettings.textTipDown": "下移", @@ -2039,7 +2039,7 @@ "DE.Views.ListSettingsDialog.textPreview": "预览", "DE.Views.ListSettingsDialog.textRight": "右", "DE.Views.ListSettingsDialog.txtAlign": "对齐", - "DE.Views.ListSettingsDialog.txtBullet": "项目点", + "DE.Views.ListSettingsDialog.txtBullet": "项目符号", "DE.Views.ListSettingsDialog.txtColor": "颜色", "DE.Views.ListSettingsDialog.txtFont": "字体和符号", "DE.Views.ListSettingsDialog.txtLikeText": "像文字一样", @@ -2256,7 +2256,7 @@ "DE.Views.RightMenu.txtShapeSettings": "形状设置", "DE.Views.RightMenu.txtSignatureSettings": "签名设置", "DE.Views.RightMenu.txtTableSettings": "表设置", - "DE.Views.RightMenu.txtTextArtSettings": "文字艺术设定", + "DE.Views.RightMenu.txtTextArtSettings": "艺术字设置", "DE.Views.ShapeSettings.strBackground": "背景颜色", "DE.Views.ShapeSettings.strChange": "更改自动形状", "DE.Views.ShapeSettings.strColor": "颜色", @@ -2576,7 +2576,7 @@ "DE.Views.Toolbar.capBtnInsShape": "形状", "DE.Views.Toolbar.capBtnInsSymbol": "符号", "DE.Views.Toolbar.capBtnInsTable": "表格", - "DE.Views.Toolbar.capBtnInsTextart": "文字艺术", + "DE.Views.Toolbar.capBtnInsTextart": "艺术字", "DE.Views.Toolbar.capBtnInsTextbox": "文本框", "DE.Views.Toolbar.capBtnLineNumbers": "行号", "DE.Views.Toolbar.capBtnMargins": "边距", @@ -2721,11 +2721,11 @@ "DE.Views.Toolbar.tipInsertSymbol": "插入符号", "DE.Views.Toolbar.tipInsertTable": "插入表", "DE.Views.Toolbar.tipInsertText": "插入文字", - "DE.Views.Toolbar.tipInsertTextArt": "插入文字艺术", + "DE.Views.Toolbar.tipInsertTextArt": "插入艺术字", "DE.Views.Toolbar.tipLineNumbers": "显示行号", "DE.Views.Toolbar.tipLineSpace": "段线间距", "DE.Views.Toolbar.tipMailRecepients": "邮件合并", - "DE.Views.Toolbar.tipMarkers": "着重号", + "DE.Views.Toolbar.tipMarkers": "项目符号", "DE.Views.Toolbar.tipMultilevels": "多级列表", "DE.Views.Toolbar.tipNumbers": "编号", "DE.Views.Toolbar.tipPageBreak": "插入页面或分节符", diff --git a/apps/presentationeditor/embed/locale/ca.json b/apps/presentationeditor/embed/locale/ca.json index b889d8db1..201cfbf80 100644 --- a/apps/presentationeditor/embed/locale/ca.json +++ b/apps/presentationeditor/embed/locale/ca.json @@ -9,26 +9,26 @@ "PE.ApplicationController.criticalErrorTitle": "Error", "PE.ApplicationController.downloadErrorText": "S'ha produït un error en la baixada", "PE.ApplicationController.downloadTextText": "S'està baixant la presentació...", - "PE.ApplicationController.errorAccessDeny": "No tens permisos per realitzar aquesta acció.
Contacta amb el teu administrador del servidor de documents.", - "PE.ApplicationController.errorDefaultMessage": "Codi d'error:%1", + "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 supera el límit establert pel teu servidor. Contacta amb el teu administrador del servidor de documents per obtenir més informació.", - "PE.ApplicationController.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitza l'opció \"Baixa-ho com a\" per desar el fitxer al disc dur de l’ordinador o torna-ho a provar més endavant.", - "PE.ApplicationController.errorLoadingFont": "No s'han carregat els tipus de lletra.
Contacta amb l'administrador del Servidor de Documents.", - "PE.ApplicationController.errorTokenExpire": "El testimoni de seguretat del document ha caducat.
Contacta amb l'administrador del servidor de documents.", - "PE.ApplicationController.errorUpdateVersionOnDisconnect": "S'ha restaurat la connexió a internet i la versió del fitxer ha canviat.
Abans de continuar treballant, has de baixar el fitxer o copiar-ne el contingut per assegurar-te que no es perdi res i, després, torna a carregar aquesta pàgina.", - "PE.ApplicationController.errorUserDrop": "Ara mateix no es pot accedir al fitxer.", + "PE.ApplicationController.errorFileSizeExceed": "La mida del fitxer supera el límit establert pel servidor. Contacteu amb l'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-ho com a\" per desar el fitxer al disc dur de l’ordinador o torneu-ho a provar més endavant.", + "PE.ApplicationController.errorLoadingFont": "No s'han carregat els tipus de lletra.
Contacteu amb l'administrador del servidor de documents.", + "PE.ApplicationController.errorTokenExpire": "El testimoni de seguretat del document ha caducat.
Contacteu amb l'administrador del servidor de documents.", + "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 la pàgina.", + "PE.ApplicationController.errorUserDrop": "No es pot accedir al fitxer.", "PE.ApplicationController.notcriticalErrorTitle": "Advertiment", "PE.ApplicationController.openErrorText": "S'ha produït un error en obrir el fitxer.", - "PE.ApplicationController.scriptLoadError": "La connexió és massa lenta, alguns dels components no s’han pogut carregar. Torna a carregar la pàgina.", + "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": "S'està carregant la presentació", "PE.ApplicationController.textOf": "de", "PE.ApplicationController.txtClose": "Tanca", "PE.ApplicationController.unknownErrorText": "Error desconegut.", - "PE.ApplicationController.unsupportedBrowserErrorText": "El teu navegador no és compatible.", - "PE.ApplicationController.waitText": "Espera...", + "PE.ApplicationController.unsupportedBrowserErrorText": "El vostre navegador no és compatible.", + "PE.ApplicationController.waitText": "Espereu...", "PE.ApplicationView.txtDownload": "Baixa", "PE.ApplicationView.txtEmbed": "Incrusta", "PE.ApplicationView.txtFileLocation": "Obre la ubicació del fitxer", diff --git a/apps/presentationeditor/embed/locale/nl.json b/apps/presentationeditor/embed/locale/nl.json index 7bbe3500e..530ea189c 100644 --- a/apps/presentationeditor/embed/locale/nl.json +++ b/apps/presentationeditor/embed/locale/nl.json @@ -4,16 +4,16 @@ "common.view.modals.txtHeight": "Hoogte", "common.view.modals.txtShare": "Link delen", "common.view.modals.txtWidth": "Breedte", - "PE.ApplicationController.convertationErrorText": "Conversie is mislukt", + "PE.ApplicationController.convertationErrorText": "Conversie mislukt.", "PE.ApplicationController.convertationTimeoutText": "Time-out voor conversie overschreden.", "PE.ApplicationController.criticalErrorTitle": "Fout", "PE.ApplicationController.downloadErrorText": "Download mislukt.", - "PE.ApplicationController.downloadTextText": "Presentatie wordt gedownload...", - "PE.ApplicationController.errorAccessDeny": "U probeert een actie uit te voeren waarvoor u geen rechten hebt.
Neem alstublieft contact op met de beheerder van de documentserver.", + "PE.ApplicationController.downloadTextText": "Presentatie downloaden...", + "PE.ApplicationController.errorAccessDeny": "Je probeert een actie uit te voeren waarvoor je geen rechten hebt.
Neem contact op met de beheerder van de documentserver.", "PE.ApplicationController.errorDefaultMessage": "Foutcode: %1", "PE.ApplicationController.errorFilePassProtect": "Het bestand is beschermd met een wachtwoord en kan niet worden geopend.", "PE.ApplicationController.errorFileSizeExceed": "De bestandsgrootte overschrijdt de limiet die is ingesteld voor uw server.
Neem alstublieft contact op met de beheerder van de documentserver voor verdere details.", - "PE.ApplicationController.errorForceSave": "Er is een fout opgetreden bij het opslaan van het bestand. Gebruik de 'Download als' knop om het bestand op te slaan op uw computer of probeer het later nog eens.", + "PE.ApplicationController.errorForceSave": "Er is een fout opgetreden bij het opslaan van het bestand. Gebruik de 'Download als' knop om het bestand op te slaan op je apparaat of probeer het later nog eens.", "PE.ApplicationController.errorLoadingFont": "Lettertypes zijn niet geladen.\nNeem alstublieft contact op met de beheerder van de documentserver.", "PE.ApplicationController.errorTokenExpire": "Het token voor de documentbeveiliging is vervallen.
Neem alstublieft contact op met de beheerder van de documentserver.", "PE.ApplicationController.errorUpdateVersionOnDisconnect": "De internetverbinding is hersteld en de bestandsversie is gewijzigd.
Voordat u verder kunt werken, moet u het bestand downloaden of de inhoud kopiëren om er zeker van te zijn dat er niets verloren gaat, en deze pagina vervolgens opnieuw laden.", @@ -25,11 +25,11 @@ "PE.ApplicationController.textGuest": "Gast", "PE.ApplicationController.textLoadingDocument": "Presentatie wordt geladen", "PE.ApplicationController.textOf": "van", - "PE.ApplicationController.txtClose": "Afsluiten", + "PE.ApplicationController.txtClose": "Sluit", "PE.ApplicationController.unknownErrorText": "Onbekende fout.", - "PE.ApplicationController.unsupportedBrowserErrorText": "Uw browser wordt niet ondersteund.", + "PE.ApplicationController.unsupportedBrowserErrorText": "Je browser wordt niet ondersteund.", "PE.ApplicationController.waitText": "Een moment geduld", - "PE.ApplicationView.txtDownload": "Downloaden", + "PE.ApplicationView.txtDownload": "Download", "PE.ApplicationView.txtEmbed": "Invoegen", "PE.ApplicationView.txtFileLocation": "Open bestandslocatie", "PE.ApplicationView.txtFullScreen": "Volledig scherm", diff --git a/apps/presentationeditor/main/locale/ca.json b/apps/presentationeditor/main/locale/ca.json index 2392a1b2d..4b84ab8e7 100644 --- a/apps/presentationeditor/main/locale/ca.json +++ b/apps/presentationeditor/main/locale/ca.json @@ -76,8 +76,86 @@ "Common.define.effectData.textComplementaryColor2": "Color complementari 2", "Common.define.effectData.textCompress": "Comprimir", "Common.define.effectData.textContrast": "Contrast", + "Common.define.effectData.textContrastingColor": "Color de contrast", + "Common.define.effectData.textCredits": "Crèdits", + "Common.define.effectData.textCrescentMoon": "Lluna creixent", + "Common.define.effectData.textCurveDown": "Corba cap avall", + "Common.define.effectData.textCurvedSquare": "Quadrat corbat", + "Common.define.effectData.textCurvedX": "X corbada", + "Common.define.effectData.textCurvyLeft": "Corbes cap a l'esquerra", + "Common.define.effectData.textCurvyRight": "Corbes cap a la dreta", + "Common.define.effectData.textCurvyStar": "Estel corbat", + "Common.define.effectData.textCustomPath": "Camí personalitzat", + "Common.define.effectData.textCuverUp": "Corba cap amunt", + "Common.define.effectData.textDarken": "Enfosquir", + "Common.define.effectData.textDecayingWave": "Serpentina", + "Common.define.effectData.textDesaturate": "Reduir la saturació", + "Common.define.effectData.textDiagonalDownRight": "Diagonal avall a la dreta", + "Common.define.effectData.textDiagonalUpRight": "Diagonal amunt a la dreta", + "Common.define.effectData.textDiamond": "Diamant", + "Common.define.effectData.textDisappear": "Desaparèixer", + "Common.define.effectData.textDissolveIn": "Dissoldre per aparèixer", + "Common.define.effectData.textDissolveOut": "Dissoldre per desaparèixer", + "Common.define.effectData.textDown": "Avall", + "Common.define.effectData.textDrop": "Gota", + "Common.define.effectData.textEmphasis": " Efecte d'èmfasi", + "Common.define.effectData.textEntrance": "Efecte d'entrada", + "Common.define.effectData.textEqualTriangle": "Triangle equilàter", + "Common.define.effectData.textExciting": "Atrevits", + "Common.define.effectData.textExit": " Efecte de sortida", + "Common.define.effectData.textExpand": "Expandeix", + "Common.define.effectData.textFade": "Esvaïment", + "Common.define.effectData.textFigureFour": "Figura 8 quatre", + "Common.define.effectData.textFillColor": "Color d'emplenament", + "Common.define.effectData.textFlip": "Capgira", + "Common.define.effectData.textFloat": "Flota", + "Common.define.effectData.textFloatDown": "Flota cap avall", + "Common.define.effectData.textFloatIn": "Flota cap a dins", + "Common.define.effectData.textFloatOut": "Flota cap a fora", + "Common.define.effectData.textFloatUp": "Flota cap amunt", + "Common.define.effectData.textFlyIn": "Vola cap a dins", + "Common.define.effectData.textFlyOut": "Vola cap a fora", + "Common.define.effectData.textFontColor": "Color del tipus de lletra", + "Common.define.effectData.textFootball": "Futbol", + "Common.define.effectData.textFromBottom": "Des de baix", + "Common.define.effectData.textFromBottomLeft": "Des de baix a l'esquerra", + "Common.define.effectData.textFromBottomRight": "Des de baix a la dreta", + "Common.define.effectData.textFromLeft": "Des de l'esquerra", + "Common.define.effectData.textFromRight": "Des de la dreta", + "Common.define.effectData.textFromTop": "Des de dalt", + "Common.define.effectData.textFromTopLeft": "Des de dalt a l'esquerra", + "Common.define.effectData.textFromTopRight": "Des de dalt a la dreta", + "Common.define.effectData.textFunnel": "Embut", + "Common.define.effectData.textGrowShrink": "Augmenta/encongeix", + "Common.define.effectData.textGrowTurn": "Augmenta i gira", + "Common.define.effectData.textGrowWithColor": "Augmenta amb color", + "Common.define.effectData.textHeart": "Cor", + "Common.define.effectData.textHeartbeat": "Batec", + "Common.define.effectData.textHexagon": "Hexàgon", + "Common.define.effectData.textHorizontal": "Horitzontal", + "Common.define.effectData.textHorizontalFigure": "Figura 8 horitzontal", + "Common.define.effectData.textHorizontalIn": "Horitzontal entrant", + "Common.define.effectData.textHorizontalOut": "Horitzontal sortint", + "Common.define.effectData.textIn": "Entrant", + "Common.define.effectData.textInFromScreenCenter": "Amplia des del centre de la pantalla", + "Common.define.effectData.textInSlightly": "Amplia lleugerament", + "Common.define.effectData.textInToScreenCenter": "Al centre de la pantalla", + "Common.define.effectData.textInvertedSquare": "Quadrat invertit", + "Common.define.effectData.textInvertedTriangle": "Triangle invertit", + "Common.define.effectData.textLeft": "Esquerra", "Common.define.effectData.textLeftDown": "Esquerra i avall", "Common.define.effectData.textLeftUp": "Esquerra i amunt", + "Common.define.effectData.textLighten": "Il·luminar", + "Common.define.effectData.textLineColor": "Color de la línia", + "Common.define.effectData.textLinesCurves": "Línies i corbes", + "Common.define.effectData.textLoopDeLoop": "Bucle", + "Common.define.effectData.textModerate": "Moderats", + "Common.define.effectData.textNeutron": "Neutró", + "Common.define.effectData.textObjectCenter": "Centre d'objectes", + "Common.define.effectData.textObjectColor": "Color de l'objecte", + "Common.define.effectData.textOctagon": "Octàgon", + "Common.define.effectData.textOut": "Fora", + "Common.define.effectData.textPath": "Recorregut", "Common.define.effectData.textPointStar4": "Estrella de 4 puntes", "Common.define.effectData.textPointStar5": "Estrella de 5 puntes", "Common.define.effectData.textPointStar6": "Estrella de 6 puntes", @@ -89,6 +167,8 @@ "Common.define.effectData.textSpoke3": "3 radis", "Common.define.effectData.textSpoke4": "4 radis", "Common.define.effectData.textSpoke8": "8 radis", + "Common.define.effectData.textZigzag": "Zig-zag", + "Common.define.effectData.textZoom": "Zoom", "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": "Obre per a la seva visualització", @@ -99,10 +179,11 @@ "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.textHexErr": "El valor introduït no és correcte.
Introduïu un valor entre 000000 i FFFFFF.", "Common.UI.ExtendedColorDialog.textNew": "Crea", "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.InputFieldBtnPassword.textHintHidePwd": "Amaga la contrasenya", "Common.UI.SearchDialog.textHighlight": "Ressalta els resultats", "Common.UI.SearchDialog.textMatchCase": "Sensible a majúscules i minúscules", "Common.UI.SearchDialog.textReplaceDef": "Introdueix el text de substitució", @@ -172,6 +253,7 @@ "Common.Views.Comments.mniAuthorDesc": "Autor de la Z a la A", "Common.Views.Comments.mniDateAsc": "Més antic", "Common.Views.Comments.mniDateDesc": "Més recent", + "Common.Views.Comments.mniFilterGroups": "Filtra per grup", "Common.Views.Comments.mniPositionAsc": "Des de dalt", "Common.Views.Comments.mniPositionDesc": "Des de baix", "Common.Views.Comments.textAdd": "Afegir", @@ -192,6 +274,7 @@ "Common.Views.Comments.textResolve": "Resol", "Common.Views.Comments.textResolved": "Resolt", "Common.Views.Comments.textSort": "Ordena els comentaris", + "Common.Views.Comments.textViewResolved": "No teniu permís per tornar a obrir el comentari", "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 ", @@ -224,7 +307,7 @@ "Common.Views.Header.tipRedo": "Refés", "Common.Views.Header.tipSave": "Desa", "Common.Views.Header.tipUndo": "Desfés", - "Common.Views.Header.tipUndock": "Desacoblar en una finestra independent", + "Common.Views.Header.tipUndock": "Desacobla 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", "Common.Views.Header.txtAccessRights": "Canvia els drets d’accés", @@ -239,7 +322,7 @@ "Common.Views.ImageFromUrlDialog.textUrl": "Enganxar una URL d'imatge:", "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.textInvalidRowsCols": "Cal especificar un 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 per aquest camp és {0}.", @@ -297,7 +380,7 @@ "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": "Fes servir el botó \"Desar\" per sincronitzar els canvis tu i els altres feu.", + "Common.Views.ReviewChanges.strStrictDesc": "Feu servir el botó \"Desar\" per sincronitzar els canvis que feu tots.", "Common.Views.ReviewChanges.tipAcceptCurrent": "Accepta el canvi actual", "Common.Views.ReviewChanges.tipCoAuthMode": "Estableix el mode de coedició", "Common.Views.ReviewChanges.tipCommentRem": "Suprimeix els comentaris", @@ -356,6 +439,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Torna-ho a obrir", "Common.Views.ReviewPopover.textReply": "Respon", "Common.Views.ReviewPopover.textResolve": "Resol", + "Common.Views.ReviewPopover.textViewResolved": "No teniu permís per tornar a obrir el comentari", "Common.Views.ReviewPopover.txtDeleteTip": "Suprimeix", "Common.Views.ReviewPopover.txtEditTip": "Edita", "Common.Views.SaveAsDlg.textLoading": "S'està carregant", @@ -433,7 +517,7 @@ "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.errorAccessDeny": "No teniu permisos per realitzar aquesta acció.
Contacteu amb l'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 diagrama combinat, seleccioneu com a mínim dues sèries de dades.", @@ -446,7 +530,7 @@ "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.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.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", @@ -462,10 +546,10 @@ "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.errorUserDrop": "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 pots visualitzar el document,
però no el podràs baixar ni imprimir 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.leavePageText": "Teniu canvis no desats en aquesta presentació. Cliqueu a \"Continua en aquesta pàgina\" i, a continuació, a \"Desa\" per desar-los. Feu clic 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", @@ -489,7 +573,7 @@ "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 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.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.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.", @@ -498,16 +582,16 @@ "PE.Controllers.Main.splitMaxRowsErrorText": "El nombre de files ha de ser inferior a %1.", "PE.Controllers.Main.textAnonymous": "Anònim", "PE.Controllers.Main.textApplyAll": "Aplica-ho a totes les equacions", - "PE.Controllers.Main.textBuyNow": "Visita el lloc web", + "PE.Controllers.Main.textBuyNow": "Visiteu 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.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?", + "PE.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, convertiu l’equació al format d’Office Math ML.
La voleu convertir?", "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.textDisconnect": "S'ha perdut la connexió", "PE.Controllers.Main.textGuest": "Convidat", - "PE.Controllers.Main.textHasMacros": "El fitxer conté macros automàtiques.
Les vols executar?", + "PE.Controllers.Main.textHasMacros": "El fitxer conté macros automàtiques.
Les voleu executar?", "PE.Controllers.Main.textLearnMore": "Més informació", "PE.Controllers.Main.textLoadingDocument": "S'està carregant la presentació", "PE.Controllers.Main.textLongName": "Introdueix un nom que tingui menys de 128 caràcters.", @@ -519,7 +603,7 @@ "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 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.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-los ells. 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", @@ -544,7 +628,7 @@ "PE.Controllers.Main.txtLoading": "S'està carregant...", "PE.Controllers.Main.txtMath": "Matemàtiques", "PE.Controllers.Main.txtMedia": "Multimèdia", - "PE.Controllers.Main.txtNeedSynchronize": "Tens actualitzacions", + "PE.Controllers.Main.txtNeedSynchronize": "Teniu actualitzacions", "PE.Controllers.Main.txtNone": "Cap", "PE.Controllers.Main.txtPicture": "Imatge", "PE.Controllers.Main.txtRectangles": "Rectangles", @@ -787,21 +871,21 @@ "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 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.warnLicenseExceeded": "Heu arribat al 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ó.", + "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.
Tens un accés limitat a la funció d'edició de documents.
Contacta amb el teu administrador per obtenir accés total", - "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.warnLicenseUsersExceeded": "Heu arribat al límit d'usuari per a %1 editors. Contacteu amb l'administrador per a més informació.", "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.Main.warnProcessRightsChange": "No teniu permís per editar el fitxer.", "PE.Controllers.Statusbar.textDisconnect": "S'ha perdut la connexió. S'està intentat connectar. Comproveu la configuració de connexió", "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 ?", + "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à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.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": "Insereix", @@ -824,7 +908,7 @@ "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_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 la barra a dalt", @@ -1128,13 +1212,23 @@ "PE.Controllers.Toolbar.txtSymbol_varsigma": "Variant sigma", "PE.Controllers.Toolbar.txtSymbol_vartheta": "Variant zeta", "PE.Controllers.Toolbar.txtSymbol_vdots": "El·lipsi vertical", - "PE.Controllers.Toolbar.txtSymbol_xsi": "Xi", + "PE.Controllers.Toolbar.txtSymbol_xsi": "Ksi", "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "PE.Controllers.Viewport.textFitPage": "Ajusta a la diapositiva", "PE.Controllers.Viewport.textFitWidth": "Ajusta-ho a l'amplària", + "PE.Views.Animation.strDelay": "Retard", + "PE.Views.Animation.strDuration": "Durada", + "PE.Views.Animation.textMoveEarlier": "Abans", + "PE.Views.Animation.textMoveLater": "Després", + "PE.Views.Animation.textMultiple": "múltiple", + "PE.Views.Animation.textNone": "cap", + "PE.Views.Animation.textOnClickOf": "Al desclicar", + "PE.Views.Animation.textOnClickSequence": "Al fer una Seqüència de clics", "PE.Views.Animation.textStartAfterPrevious": "Després de l'anterior", + "PE.Views.Animation.textStartOnClick": "En clicar", "PE.Views.Animation.txtAddEffect": "Afegeix una animació", "PE.Views.Animation.txtAnimationPane": "Subfinestra d'animacions", + "PE.Views.AnimationDialog.textTitle": "Més efectes", "PE.Views.ChartSettings.textAdvanced": "Mostra la configuració avançada", "PE.Views.ChartSettings.textChartType": "Canvia el tipus de gràfic", "PE.Views.ChartSettings.textEditData": "Edita les dades", @@ -1214,6 +1308,7 @@ "PE.Views.DocumentHolder.textCut": "Talla", "PE.Views.DocumentHolder.textDistributeCols": "Distribueix les columnes", "PE.Views.DocumentHolder.textDistributeRows": "Distribueix les files", + "PE.Views.DocumentHolder.textEditPoints": "Edita els punts", "PE.Views.DocumentHolder.textFlipH": "Capgira horitzontalment", "PE.Views.DocumentHolder.textFlipV": "Capgira verticalment", "PE.Views.DocumentHolder.textFromFile": "Des d'un fitxer", @@ -1234,7 +1329,7 @@ "PE.Views.DocumentHolder.textShapeAlignTop": "Alineació a dalt", "PE.Views.DocumentHolder.textSlideSettings": "Configuració de la diapositiva", "PE.Views.DocumentHolder.textUndo": "Desfés", - "PE.Views.DocumentHolder.tipIsLocked": "Un altre usuari té obert ara aquest element.", + "PE.Views.DocumentHolder.tipIsLocked": "Un altre usuari té obert 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ó", @@ -1298,6 +1393,8 @@ "PE.Views.DocumentHolder.txtLimitUnder": "Límit sota el text", "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.txtMoveSlidesToEnd": "Desplaça la diapositiva al final", + "PE.Views.DocumentHolder.txtMoveSlidesToStart": "Desplaça la diapositiva a l'inici", "PE.Views.DocumentHolder.txtNewSlide": "Crea una diapositiva", "PE.Views.DocumentHolder.txtOverbar": "Barra sobre el text", "PE.Views.DocumentHolder.txtPasteDestFormat": "Fes servir el tema de destinació", @@ -1401,7 +1498,7 @@ "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.strCoAuthModeDescStrict": "Cal acceptar els canvis abans de poder-los veure", "PE.Views.FileMenuPanels.Settings.strFast": "Ràpid", "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", @@ -1448,7 +1545,7 @@ "PE.Views.FileMenuPanels.Settings.txtWin": "com a Windows", "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.diffLanguage": "No podeu utilitzar un format de data en un idioma diferent del patró de diapositives.
Per canviar el patró, feu clic a \"Aplica a tots\" en comptes de \"Aplica\".", "PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Avis", "PE.Views.HeaderFooterDialog.textDateTime": "Hora i data", "PE.Views.HeaderFooterDialog.textFixed": "Fixat", @@ -1483,6 +1580,7 @@ "PE.Views.ImageSettings.textCrop": "Retallar", "PE.Views.ImageSettings.textCropFill": "Emplena", "PE.Views.ImageSettings.textCropFit": "Ajusta", + "PE.Views.ImageSettings.textCropToShape": "Escapça per donar forma", "PE.Views.ImageSettings.textEdit": "Edita", "PE.Views.ImageSettings.textEditObject": "Edita l'objecte", "PE.Views.ImageSettings.textFitSlide": "Ajusta a la diapositiva", @@ -1598,7 +1696,7 @@ "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 no és correcte.
Introduïu un valor entre 0 pt i 1584 pt.", + "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ó", @@ -1849,7 +1947,7 @@ "PE.Views.TextArtSettings.strTransparency": "Opacitat", "PE.Views.TextArtSettings.strType": "Tipus", "PE.Views.TextArtSettings.textAngle": "Angle", - "PE.Views.TextArtSettings.textBorderSizeErr": "El valor introduït no és correcte.
Introduïu un valor entre 0 pt i 1584 pt.", + "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ó", @@ -2007,6 +2105,7 @@ "PE.Views.Toolbar.tipViewSettings": "Mostra la configuració", "PE.Views.Toolbar.txtDistribHor": "Distribueix horitzontalment", "PE.Views.Toolbar.txtDistribVert": "Distribueix verticalment", + "PE.Views.Toolbar.txtDuplicateSlide": "Duplica la diapositiva", "PE.Views.Toolbar.txtGroup": "Agrupa", "PE.Views.Toolbar.txtObjectsAlign": "Alineació dels objectes seleccionats", "PE.Views.Toolbar.txtScheme1": "Office", @@ -2069,5 +2168,10 @@ "PE.Views.Transitions.txtParameters": "Paràmetres", "PE.Views.Transitions.txtPreview": "Visualització prèvia", "PE.Views.Transitions.txtSec": "S", - "PE.Views.ViewTab.textAlwaysShowToolbar": "Mostra sempre la barra" + "PE.Views.ViewTab.textAlwaysShowToolbar": "Mostra sempre la barra", + "PE.Views.ViewTab.textFitToSlide": "Ajusta a la diapositiva", + "PE.Views.ViewTab.textFitToWidth": "Ajusta-ho a l'amplària", + "PE.Views.ViewTab.textInterfaceTheme": "Tema de la interfície", + "PE.Views.ViewTab.textNotes": "Notes", + "PE.Views.ViewTab.textZoom": "Zoom" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/cs.json b/apps/presentationeditor/main/locale/cs.json index bc78dbc39..bf14c219c 100644 --- a/apps/presentationeditor/main/locale/cs.json +++ b/apps/presentationeditor/main/locale/cs.json @@ -47,6 +47,89 @@ "Common.define.chartData.textScatterSmoothMarker": "Bodový s vyhlazenými spojnicemi a značkami", "Common.define.chartData.textStock": "Burzovní graf", "Common.define.chartData.textSurface": "Povrch", + "Common.define.effectData.textAcross": "Napříč", + "Common.define.effectData.textAppear": "Objeví", + "Common.define.effectData.textBasic": "Základní", + "Common.define.effectData.textBasicZoom": "Základní přiblížení", + "Common.define.effectData.textBean": "Fazole", + "Common.define.effectData.textBlinds": "Žaluzie", + "Common.define.effectData.textBrushColor": "Barva štětce", + "Common.define.effectData.textCircle": "Kruh", + "Common.define.effectData.textCollapse": "Sbalit", + "Common.define.effectData.textComplementaryColor": "Doplňková barva", + "Common.define.effectData.textComplementaryColor2": "Doplňková barva 2", + "Common.define.effectData.textCompress": "Komprimovat", + "Common.define.effectData.textContrast": "Kontrast", + "Common.define.effectData.textContrastingColor": "Kontrastující barva", + "Common.define.effectData.textCredits": "Poděkování", + "Common.define.effectData.textCustomPath": "Uživatelsky určená cesta", + "Common.define.effectData.textDiamond": "Kosodélník", + "Common.define.effectData.textDisappear": "Zmizet", + "Common.define.effectData.textDown": "Dolů", + "Common.define.effectData.textDrop": "Zahodit", + "Common.define.effectData.textEmphasis": "Zdůrazňující efekt", + "Common.define.effectData.textExciting": "Vzrušující", + "Common.define.effectData.textExit": "Efekt při ukončení", + "Common.define.effectData.textExpand": "Rozšířit", + "Common.define.effectData.textFade": "Vyblednout", + "Common.define.effectData.textFillColor": "Barva výplně", + "Common.define.effectData.textFlip": "Převrátit", + "Common.define.effectData.textFlyIn": "Přiletět", + "Common.define.effectData.textFlyOut": "Odletět", + "Common.define.effectData.textFontColor": "Barva písma", + "Common.define.effectData.textFootball": "Fotbal", + "Common.define.effectData.textFromBottom": "Zdola", + "Common.define.effectData.textFromBottomLeft": "Zleva dole", + "Common.define.effectData.textFromBottomRight": "Zprava dole", + "Common.define.effectData.textFromLeft": "Zleva", + "Common.define.effectData.textFromRight": "Zprava", + "Common.define.effectData.textFromTop": "Shora", + "Common.define.effectData.textFromTopLeft": "Zleva nahoře", + "Common.define.effectData.textFromTopRight": "Zprava nahoře", + "Common.define.effectData.textGrowTurn": "Narůst a otočit", + "Common.define.effectData.textHeart": "Srdce", + "Common.define.effectData.textHeartbeat": "Srdeční tep", + "Common.define.effectData.textHexagon": "Šestiúhelník", + "Common.define.effectData.textHorizontal": "Vodorovné", + "Common.define.effectData.textInFromScreenCenter": "Ze středu obrazovky", + "Common.define.effectData.textInvertedSquare": "Převrácený čtverec", + "Common.define.effectData.textInvertedTriangle": "Převrácený trojúhelník", + "Common.define.effectData.textLineColor": "Barva čáry", + "Common.define.effectData.textLinesCurves": "Křivky čar", + "Common.define.effectData.textModerate": "Mírné", + "Common.define.effectData.textNeutron": "Neutron", + "Common.define.effectData.textObjectCenter": "Střed objektu", + "Common.define.effectData.textObjectColor": "Barva objektu", + "Common.define.effectData.textOctagon": "Osmiúhelník", + "Common.define.effectData.textPath": "Trasa pohybu", + "Common.define.effectData.textPentagon": "Pětiúhelník", + "Common.define.effectData.textPlus": "Plus", + "Common.define.effectData.textPulse": "Puls", + "Common.define.effectData.textRandomBars": "Náhodné pruhy", + "Common.define.effectData.textRightTriangle": "Pravoúhlý trojúhelník", + "Common.define.effectData.textShape": "Tvar", + "Common.define.effectData.textShrinkTurn": "Zmenšit a otočit", + "Common.define.effectData.textSineWave": "Sinusová vlna", + "Common.define.effectData.textSpecial": "Speciální", + "Common.define.effectData.textSplit": "Rozdělit", + "Common.define.effectData.textSpring": "Pružina", + "Common.define.effectData.textSquare": "Čtverec", + "Common.define.effectData.textStretch": "Roztáhnout", + "Common.define.effectData.textStrips": "Proužky", + "Common.define.effectData.textSubtle": "Jemné", + "Common.define.effectData.textToLeft": "Doleva", + "Common.define.effectData.textToRight": "Doprava", + "Common.define.effectData.textToTop": "Nahoru", + "Common.define.effectData.textTransparency": "Průhlednost", + "Common.define.effectData.textTrapezoid": "Lichoběžník", + "Common.define.effectData.textTurnUp": "Převrátit nahoru", + "Common.define.effectData.textTurnUpRight": "Převrátit vpravo", + "Common.define.effectData.textUnderline": "Podtrhnout", + "Common.define.effectData.textUp": "Nahoru", + "Common.define.effectData.textVertical": "Svislé", + "Common.define.effectData.textWave": "Vlnka", + "Common.define.effectData.textWheel": "Kolo", + "Common.define.effectData.textZoom": "Přiblížení", "Common.Translation.warnFileLocked": "Soubor je upravován v jiné aplikaci. Můžete pokračovat v úpravách a uložit ho jako kopii.", "Common.Translation.warnFileLockedBtnEdit": "Vytvořit kopii", "Common.Translation.warnFileLockedBtnView": "Otevřít pro náhled", @@ -61,6 +144,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Nový", "Common.UI.ExtendedColorDialog.textRGBErr": "Zadaná hodnota není správná.
Zadejte hodnotu z rozmezí 0 až 255.", "Common.UI.HSBColorPicker.textNoColor": "Bez barvy", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Skrýt heslo", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Zobrazit heslo", "Common.UI.SearchDialog.textHighlight": "Zvýraznit výsledky", "Common.UI.SearchDialog.textMatchCase": "Rozlišovat malá a velká písmena", "Common.UI.SearchDialog.textReplaceDef": "Zadejte text, kterým nahradit", @@ -129,12 +214,14 @@ "Common.Views.Comments.mniAuthorDesc": "Autor Z až A", "Common.Views.Comments.mniDateAsc": "Nejstarší", "Common.Views.Comments.mniDateDesc": "Nejnovější", + "Common.Views.Comments.mniFilterGroups": "Filtrovat podle skupiny", "Common.Views.Comments.mniPositionAsc": "Shora", "Common.Views.Comments.mniPositionDesc": "Zdola", "Common.Views.Comments.textAdd": "Přidat", "Common.Views.Comments.textAddComment": "Přidat komentář", "Common.Views.Comments.textAddCommentToDoc": "Přidat komentář k dokumentu", "Common.Views.Comments.textAddReply": "Přidat odpověď", + "Common.Views.Comments.textAll": "Vše", "Common.Views.Comments.textAnonym": "Návštěvník", "Common.Views.Comments.textCancel": "Zrušit", "Common.Views.Comments.textClose": "Zavřít", @@ -148,6 +235,7 @@ "Common.Views.Comments.textResolve": "Vyřešit", "Common.Views.Comments.textResolved": "Vyřešeno", "Common.Views.Comments.textSort": "Řadit komentáře", + "Common.Views.Comments.textViewResolved": "Nemáte oprávnění pro opětovné otevírání komentářů", "Common.Views.CopyWarningDialog.textDontShow": "Tuto zprávu už nezobrazovat", "Common.Views.CopyWarningDialog.textMsg": "Akce kopírovat, vyjmout a vložit použitím lišty nástrojů editoru a kontextové nabídky budou prováděny pouze v tomto okně editoru.

Pro kopírování do nebo vkládání z aplikací mimo okno editoru použijte následující klávesové zkratky:", "Common.Views.CopyWarningDialog.textTitle": "Akce kopírovat, vyjmout a vložit", @@ -312,6 +400,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Znovu otevřít", "Common.Views.ReviewPopover.textReply": "Odpovědět", "Common.Views.ReviewPopover.textResolve": "Vyřešit", + "Common.Views.ReviewPopover.textViewResolved": "Nemáte oprávnění pro opětovné otevírání komentářů", "Common.Views.ReviewPopover.txtDeleteTip": "Smazat", "Common.Views.ReviewPopover.txtEditTip": "Upravit", "Common.Views.SaveAsDlg.textLoading": "Načítá se", @@ -469,6 +558,7 @@ "PE.Controllers.Main.textLongName": "Zadejte jméno, které má méně než 128 znaků.", "PE.Controllers.Main.textNoLicenseTitle": "Došlo k dosažení limitu licence", "PE.Controllers.Main.textPaidFeature": "Placená funkce", + "PE.Controllers.Main.textReconnect": "Spojení je obnoveno", "PE.Controllers.Main.textRemember": "Zapamatovat mou volbu", "PE.Controllers.Main.textRenameError": "Jméno uživatele nesmí být prázdné. ", "PE.Controllers.Main.textRenameLabel": "Zadejte jméno, které bude použito pro spolupráci", @@ -1086,6 +1176,27 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "PE.Controllers.Viewport.textFitPage": "Přizpůsobit snímku", "PE.Controllers.Viewport.textFitWidth": "Přizpůsobit šířce", + "PE.Views.Animation.strDelay": "Prodleva", + "PE.Views.Animation.strDuration": "Doba trvání", + "PE.Views.Animation.strRepeat": "Zopakovat", + "PE.Views.Animation.strRewind": "Vrátit na začátek", + "PE.Views.Animation.strStart": "Začátek", + "PE.Views.Animation.strTrigger": "Spouštěč", + "PE.Views.Animation.textMoreEffects": "Zobrazit další efekty", + "PE.Views.Animation.textMoveEarlier": "Přesunout dřívější", + "PE.Views.Animation.textMoveLater": "Přesunout pozdější", + "PE.Views.Animation.textNone": "Žádné", + "PE.Views.Animation.textOnClickOf": "Při kliknutí na", + "PE.Views.Animation.textOnClickSequence": "Při posloupnosti kliknutí", + "PE.Views.Animation.textStartAfterPrevious": "Po předchozí", + "PE.Views.Animation.textStartOnClick": "Při kliknutí", + "PE.Views.Animation.textStartWithPrevious": "S předchozí", + "PE.Views.Animation.txtAddEffect": "Přidat animaci", + "PE.Views.Animation.txtAnimationPane": "Podokno animací", + "PE.Views.Animation.txtParameters": "Parametry", + "PE.Views.Animation.txtPreview": "Náhled", + "PE.Views.AnimationDialog.textPreviewEffect": "Náhled efektu", + "PE.Views.AnimationDialog.textTitle": "Další efekty", "PE.Views.ChartSettings.textAdvanced": "Zobrazit pokročilá nastavení", "PE.Views.ChartSettings.textChartType": "Změnit typ grafu", "PE.Views.ChartSettings.textEditData": "Upravit data", @@ -1165,6 +1276,7 @@ "PE.Views.DocumentHolder.textCut": "Vyjmout", "PE.Views.DocumentHolder.textDistributeCols": "Rozmístit sloupce", "PE.Views.DocumentHolder.textDistributeRows": "Rozmístit řádky", + "PE.Views.DocumentHolder.textEditPoints": "Upravit body", "PE.Views.DocumentHolder.textFlipH": "Převrátit vodorovně", "PE.Views.DocumentHolder.textFlipV": "Převrátit svisle", "PE.Views.DocumentHolder.textFromFile": "Ze souboru", @@ -1434,6 +1546,7 @@ "PE.Views.ImageSettings.textCrop": "Oříznout", "PE.Views.ImageSettings.textCropFill": "Výplň", "PE.Views.ImageSettings.textCropFit": "Přizpůsobit", + "PE.Views.ImageSettings.textCropToShape": "Oříznout podle tvaru", "PE.Views.ImageSettings.textEdit": "Upravit", "PE.Views.ImageSettings.textEditObject": "Upravit objekt", "PE.Views.ImageSettings.textFitSlide": "Přizpůsobit snímku", @@ -1448,6 +1561,7 @@ "PE.Views.ImageSettings.textHintFlipV": "Převrátit svisle", "PE.Views.ImageSettings.textInsert": "Nahradit obrázek", "PE.Views.ImageSettings.textOriginalSize": "Skutečná velikost", + "PE.Views.ImageSettings.textRecentlyUsed": "Nedávno použité", "PE.Views.ImageSettings.textRotate90": "Otočit o 90°", "PE.Views.ImageSettings.textRotation": "Otočení", "PE.Views.ImageSettings.textSize": "Velikost", @@ -1569,6 +1683,7 @@ "PE.Views.ShapeSettings.textPatternFill": "Vzor", "PE.Views.ShapeSettings.textPosition": "Pozice", "PE.Views.ShapeSettings.textRadial": "Kruhový", + "PE.Views.ShapeSettings.textRecentlyUsed": "Nedávno použité", "PE.Views.ShapeSettings.textRotate90": "Otočit o 90°", "PE.Views.ShapeSettings.textRotation": "Otočení", "PE.Views.ShapeSettings.textSelectImage": "Vybrat obrázek", @@ -1885,6 +2000,7 @@ "PE.Views.Toolbar.textColumnsTwo": "Dva sloupce", "PE.Views.Toolbar.textItalic": "Skloněné", "PE.Views.Toolbar.textListSettings": "Nastavení seznamu", + "PE.Views.Toolbar.textRecentlyUsed": "Nedávno použité", "PE.Views.Toolbar.textShapeAlignBottom": "Zarovnat dolů", "PE.Views.Toolbar.textShapeAlignCenter": "Zarovnat na střed", "PE.Views.Toolbar.textShapeAlignLeft": "Zarovnat vlevo", @@ -1898,12 +2014,14 @@ "PE.Views.Toolbar.textStrikeout": "Přeškrtnuté", "PE.Views.Toolbar.textSubscript": "Dolní index", "PE.Views.Toolbar.textSuperscript": "Horní index", + "PE.Views.Toolbar.textTabAnimation": "Animace", "PE.Views.Toolbar.textTabCollaboration": "Spolupráce", "PE.Views.Toolbar.textTabFile": "Soubor", "PE.Views.Toolbar.textTabHome": "Domů", "PE.Views.Toolbar.textTabInsert": "Vložit", "PE.Views.Toolbar.textTabProtect": "Zabezpečení", "PE.Views.Toolbar.textTabTransitions": "Přechod", + "PE.Views.Toolbar.textTabView": "Zobrazit", "PE.Views.Toolbar.textTitleError": "Chyba", "PE.Views.Toolbar.textUnderline": "Podtržené", "PE.Views.Toolbar.tipAddSlide": "Přidat snímek", @@ -1957,6 +2075,7 @@ "PE.Views.Toolbar.tipViewSettings": "Zobrazit nastavení", "PE.Views.Toolbar.txtDistribHor": "Rozmístit vodorovně", "PE.Views.Toolbar.txtDistribVert": "Rozmístit svisle", + "PE.Views.Toolbar.txtDuplicateSlide": "Kopírovat snímek", "PE.Views.Toolbar.txtGroup": "Skupina", "PE.Views.Toolbar.txtObjectsAlign": "Zarovnat označené objekty", "PE.Views.Toolbar.txtScheme1": "Kancelář", @@ -2018,5 +2137,12 @@ "PE.Views.Transitions.txtApplyToAll": "Použít na všechny snímky", "PE.Views.Transitions.txtParameters": "Parametry", "PE.Views.Transitions.txtPreview": "Náhled", - "PE.Views.Transitions.txtSec": "S" + "PE.Views.Transitions.txtSec": "S", + "PE.Views.ViewTab.textFitToSlide": "Přizpůsobit snímku", + "PE.Views.ViewTab.textFitToWidth": "Přizpůsobit šířce", + "PE.Views.ViewTab.textInterfaceTheme": "Vzhled uživatelského rozhraní", + "PE.Views.ViewTab.textNotes": "Poznámky", + "PE.Views.ViewTab.textRulers": "Pravítka", + "PE.Views.ViewTab.textStatusBar": "Stavová lišta", + "PE.Views.ViewTab.textZoom": "Přiblížení" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json index 71ccf227d..ba28b0056 100644 --- a/apps/presentationeditor/main/locale/en.json +++ b/apps/presentationeditor/main/locale/en.json @@ -80,14 +80,14 @@ "Common.define.effectData.textContrastingColor": "Contrasting Color", "Common.define.effectData.textCredits": "Credits", "Common.define.effectData.textCrescentMoon": "Crescent Moon", - "Common.define.effectData.textCurveDown": "CurveDown", - "Common.define.effectData.textCurvedSquare": "CurvedSquare", + "Common.define.effectData.textCurveDown": "Curve Down", + "Common.define.effectData.textCurvedSquare": "Curved Square", "Common.define.effectData.textCurvedX": "Curved X", "Common.define.effectData.textCurvyLeft": "Curvy Left", "Common.define.effectData.textCurvyRight": "Curvy Right", "Common.define.effectData.textCurvyStar": "Curvy Star", "Common.define.effectData.textCustomPath": "Custom Path", - "Common.define.effectData.textCuverUp": "Cuver Up", + "Common.define.effectData.textCuverUp": "Curve Up", "Common.define.effectData.textDarken": "Darken", "Common.define.effectData.textDecayingWave": "Decaying Wave", "Common.define.effectData.textDesaturate": "Desaturate", @@ -300,6 +300,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Automatic bulleted lists", "Common.Views.AutoCorrectDialog.textBy": "By", "Common.Views.AutoCorrectDialog.textDelete": "Delete", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Add period with double-space", "Common.Views.AutoCorrectDialog.textFLCells": "Capitalize first letter of table cells", "Common.Views.AutoCorrectDialog.textFLSentence": "Capitalize first letter of sentences", "Common.Views.AutoCorrectDialog.textHyperlink": "Internet and network paths with hyperlinks", @@ -321,7 +322,6 @@ "Common.Views.AutoCorrectDialog.warnReplace": "The autocorrect entry for %1 already exists. Do you want to replace it?", "Common.Views.AutoCorrectDialog.warnReset": "Any autocorrect you added will be removed and the changed ones will be restored to their original values. Do you want to continue?", "Common.Views.AutoCorrectDialog.warnRestore": "The autocorrect entry for %1 will be reset to its original value. Do you want to continue?", - "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Add period with double-space", "Common.Views.Chat.textSend": "Send", "Common.Views.Comments.mniAuthorAsc": "Author A to Z", "Common.Views.Comments.mniAuthorDesc": "Author Z to A", @@ -1290,6 +1290,12 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "PE.Controllers.Viewport.textFitPage": "Fit to Slide", "PE.Controllers.Viewport.textFitWidth": "Fit to Width", + "PE.Views.Animation.str0_5": "0.5 s (Very Fast)", + "PE.Views.Animation.str1": "1 s (Fast)", + "PE.Views.Animation.str2": "2 s (Medium)", + "PE.Views.Animation.str20": "20 s (Extremely Slow)", + "PE.Views.Animation.str3": "3 s (Slow)", + "PE.Views.Animation.str5": "5 s (Very Slow)", "PE.Views.Animation.strDelay": "Delay", "PE.Views.Animation.strDuration": "Duration", "PE.Views.Animation.strRepeat": "Repeat", @@ -1301,25 +1307,19 @@ "PE.Views.Animation.textMoveLater": "Move Later", "PE.Views.Animation.textMultiple": "Multiple", "PE.Views.Animation.textNone": "None", + "PE.Views.Animation.textNoRepeat": "(none)", "PE.Views.Animation.textOnClickOf": "On Click of", "PE.Views.Animation.textOnClickSequence": "On Click Sequence", "PE.Views.Animation.textStartAfterPrevious": "After Previous", "PE.Views.Animation.textStartOnClick": "On Click", "PE.Views.Animation.textStartWithPrevious": "With Previous", + "PE.Views.Animation.textUntilEndOfSlide": "Until End of Slide", + "PE.Views.Animation.textUntilNextClick": "Until Next Click", "PE.Views.Animation.txtAddEffect": "Add animation", "PE.Views.Animation.txtAnimationPane": "Animation Pane", "PE.Views.Animation.txtParameters": "Parameters", "PE.Views.Animation.txtPreview": "Preview", "PE.Views.Animation.txtSec": "s", - "PE.Views.Animation.textNoRepeat": "(none)", - "PE.Views.Animation.textUntilNextClick": "Until Next Click", - "PE.Views.Animation.textUntilEndOfSlide": "Until End of Slide", - "PE.Views.Animation.str20": "20 s (Extremely Slow)", - "PE.Views.Animation.str5": "5 s (Very Slow)", - "PE.Views.Animation.str3": "3 s (Slow)", - "PE.Views.Animation.str2": "2 s (Medium)", - "PE.Views.Animation.str1": "1 s (Fast)", - "PE.Views.Animation.str0_5": "0.5 s (Very Fast)", "PE.Views.AnimationDialog.textPreviewEffect": "Preview Effect", "PE.Views.AnimationDialog.textTitle": "More Effects", "PE.Views.ChartSettings.textAdvanced": "Show advanced settings", diff --git a/apps/presentationeditor/main/locale/pt.json b/apps/presentationeditor/main/locale/pt.json index 635a62d56..4f9c83d1b 100644 --- a/apps/presentationeditor/main/locale/pt.json +++ b/apps/presentationeditor/main/locale/pt.json @@ -67,23 +67,175 @@ "Common.define.effectData.textBounceRight": "Saltar para a direita", "Common.define.effectData.textBox": "Caixa", "Common.define.effectData.textBrushColor": "Cor do pincel", + "Common.define.effectData.textCenterRevolve": "Centro Rotativo", + "Common.define.effectData.textCheckerboard": "Quadro de verificação", "Common.define.effectData.textCircle": "Círculo", "Common.define.effectData.textCollapse": "Colapso", + "Common.define.effectData.textColorPulse": "Pulsação de cor", + "Common.define.effectData.textComplementaryColor": "Cor complementar", + "Common.define.effectData.textComplementaryColor2": "Cor complementar 2", + "Common.define.effectData.textCompress": "Comprimir", "Common.define.effectData.textContrast": "Contraste", + "Common.define.effectData.textContrastingColor": "Cor contrastante", "Common.define.effectData.textCredits": "Créditos", + "Common.define.effectData.textCrescentMoon": "Lua crescente", + "Common.define.effectData.textCurveDown": "Curva para baixo", + "Common.define.effectData.textCurvedSquare": "Quadrado Curvo", + "Common.define.effectData.textCurvedX": "X curvo", + "Common.define.effectData.textCurvyLeft": "Curva Esquerda", + "Common.define.effectData.textCurvyRight": "Curva à direita", + "Common.define.effectData.textCurvyStar": "Estrela curvilínea", + "Common.define.effectData.textCustomPath": "Caminho personalizado", + "Common.define.effectData.textCuverUp": "Cobrir", + "Common.define.effectData.textDarken": "Escurecer", + "Common.define.effectData.textDecayingWave": "Onda Decadente", + "Common.define.effectData.textDesaturate": "Dessaturar", + "Common.define.effectData.textDiagonalDownRight": "Diagonal para baixo à direita", + "Common.define.effectData.textDiagonalUpRight": "Diagonal para cima à direita", + "Common.define.effectData.textDiamond": "Diamante", + "Common.define.effectData.textDisappear": "Desaparecer", + "Common.define.effectData.textDissolveIn": "Dissolver em", + "Common.define.effectData.textDissolveOut": "Dissolver", + "Common.define.effectData.textDown": "Abaixo", + "Common.define.effectData.textDrop": "Gota", + "Common.define.effectData.textEmphasis": "Efeito de ênfase", + "Common.define.effectData.textEntrance": "Efeito de entrada", + "Common.define.effectData.textEqualTriangle": "Triângulo igual", + "Common.define.effectData.textExciting": "Emocionante", + "Common.define.effectData.textExit": "Efeito de saída", + "Common.define.effectData.textExpand": "Expandir", + "Common.define.effectData.textFade": "Esmaecer", + "Common.define.effectData.textFigureFour": "Figura 8 Quatro", + "Common.define.effectData.textFillColor": "Cor de preenchimento", + "Common.define.effectData.textFlip": "Girar", + "Common.define.effectData.textFloat": "Flutuar", + "Common.define.effectData.textFloatDown": "Flutuar para baixo", + "Common.define.effectData.textFloatIn": "Flutuar dentro", + "Common.define.effectData.textFloatOut": "Flutuar para fora", + "Common.define.effectData.textFloatUp": "Flutuar para cima", + "Common.define.effectData.textFlyIn": "Voar em", + "Common.define.effectData.textFlyOut": "Voar para fora", + "Common.define.effectData.textFontColor": "Cor da fonte", + "Common.define.effectData.textFootball": "Futebol", + "Common.define.effectData.textFromBottom": "Do fundo", + "Common.define.effectData.textFromBottomLeft": "Da parte inferior esquerda", + "Common.define.effectData.textFromBottomRight": "Da parte inferior direita", + "Common.define.effectData.textFromLeft": "Da esquerda", + "Common.define.effectData.textFromRight": "Da direita", + "Common.define.effectData.textFromTop": "De cima", + "Common.define.effectData.textFromTopLeft": "Do canto superior esquerdo", + "Common.define.effectData.textFromTopRight": "Do canto superior direito", + "Common.define.effectData.textFunnel": "Funil", + "Common.define.effectData.textGrowShrink": "Crescer/Encolher", + "Common.define.effectData.textGrowTurn": "Crescer e transformar", + "Common.define.effectData.textGrowWithColor": "Aumentos de cor", + "Common.define.effectData.textHeart": "Coração", + "Common.define.effectData.textHeartbeat": "Batimento cardiaco", + "Common.define.effectData.textHexagon": "Hexágono", + "Common.define.effectData.textHorizontal": "Horizontal", + "Common.define.effectData.textHorizontalFigure": "Horizontal Figura 8", + "Common.define.effectData.textHorizontalIn": "Horizontal para dentro", + "Common.define.effectData.textHorizontalOut": "Horizontal para fora", + "Common.define.effectData.textIn": "Em", + "Common.define.effectData.textInFromScreenCenter": "No centro da tela", + "Common.define.effectData.textInSlightly": "Ligeiramente", + "Common.define.effectData.textInToScreenCenter": "No centro da tela", + "Common.define.effectData.textInvertedSquare": "Quadrado invertido", + "Common.define.effectData.textInvertedTriangle": "Triângulo Invertido", + "Common.define.effectData.textLeft": "Esquerda", "Common.define.effectData.textLeftDown": "Esquerda para baixo", "Common.define.effectData.textLeftUp": "Esquerda para cima", + "Common.define.effectData.textLighten": "Clarear", + "Common.define.effectData.textLineColor": "Cor da linha", + "Common.define.effectData.textLinesCurves": "Curvas de Linhas", + "Common.define.effectData.textLoopDeLoop": "Faça o laço", + "Common.define.effectData.textModerate": "Moderado", + "Common.define.effectData.textNeutron": "Nêutron", + "Common.define.effectData.textObjectCenter": "Centro de Objeto", + "Common.define.effectData.textObjectColor": "Cor do objeto", + "Common.define.effectData.textOctagon": "Octógono", + "Common.define.effectData.textOut": "Fora", + "Common.define.effectData.textOutFromScreenBottom": "Fora do fundo da tela", + "Common.define.effectData.textOutSlightly": "Um pouco fora", + "Common.define.effectData.textParallelogram": "Paralelograma", + "Common.define.effectData.textPath": "Caminho do movimento", + "Common.define.effectData.textPeanut": "Amendoim", + "Common.define.effectData.textPeekIn": "Espreitar", + "Common.define.effectData.textPeekOut": "Espiar", + "Common.define.effectData.textPentagon": "Pentágono", + "Common.define.effectData.textPinwheel": "Cata-vento", + "Common.define.effectData.textPlus": "Mais", + "Common.define.effectData.textPointStar": "Estrela do Ponto", "Common.define.effectData.textPointStar4": "Estrela de 4 pontos", "Common.define.effectData.textPointStar5": "Estrela de 5 pontos", "Common.define.effectData.textPointStar6": "Estrela de 6 pontos", "Common.define.effectData.textPointStar8": "Estrela de 8 pontos", + "Common.define.effectData.textPulse": "Pulsar", + "Common.define.effectData.textRandomBars": "Barras aleatórias", + "Common.define.effectData.textRight": "Direita", "Common.define.effectData.textRightDown": "Direita para baixo", + "Common.define.effectData.textRightTriangle": "Triângulo Retângulo", "Common.define.effectData.textRightUp": "Direita para cima", + "Common.define.effectData.textRiseUp": "Erguer", + "Common.define.effectData.textSCurve1": "Curva S 1", + "Common.define.effectData.textSCurve2": "Curva S 2", + "Common.define.effectData.textShape": "Forma", + "Common.define.effectData.textShimmer": "Cintilar", + "Common.define.effectData.textShrinkTurn": "Encolher e girar", + "Common.define.effectData.textSineWave": "Onda senoidal", + "Common.define.effectData.textSinkDown": "Afundar", + "Common.define.effectData.textSlideCenter": "Centro de slides", + "Common.define.effectData.textSpecial": "Especial", + "Common.define.effectData.textSpin": "Rodar", + "Common.define.effectData.textSpinner": "Roda giratória", + "Common.define.effectData.textSpiralIn": "Espiral Em", + "Common.define.effectData.textSpiralLeft": "Espiral esquerdo", + "Common.define.effectData.textSpiralOut": "Espiral Fora", + "Common.define.effectData.textSpiralRight": "Espiral Direito", + "Common.define.effectData.textSplit": "Dividir", "Common.define.effectData.textSpoke1": "1 Falou", "Common.define.effectData.textSpoke2": "2 Falaram", "Common.define.effectData.textSpoke3": "3 Falaram", "Common.define.effectData.textSpoke4": "4 Falaram", "Common.define.effectData.textSpoke8": "8 Falaram", + "Common.define.effectData.textSpring": "Primavera", + "Common.define.effectData.textSquare": "Quadrado", + "Common.define.effectData.textStairsDown": "Escadas para baixo", + "Common.define.effectData.textStretch": "Alongar", + "Common.define.effectData.textStrips": "Tiras", + "Common.define.effectData.textSubtle": "Sutil", + "Common.define.effectData.textSwivel": "Girar", + "Common.define.effectData.textSwoosh": "Swoosh", + "Common.define.effectData.textTeardrop": "Lágrima", + "Common.define.effectData.textTeeter": "Gangorra", + "Common.define.effectData.textToBottom": "Para baixo", + "Common.define.effectData.textToBottomLeft": "Para Inferior-Esquerda", + "Common.define.effectData.textToBottomRight": "Para baixo-direita", + "Common.define.effectData.textToFromScreenBottom": "Fora para o fundo da tela", + "Common.define.effectData.textToLeft": "Para a esquerda", + "Common.define.effectData.textToRight": "Para a direita", + "Common.define.effectData.textToTop": "Para o topo", + "Common.define.effectData.textToTopLeft": "Para o canto superior esquerdo", + "Common.define.effectData.textToTopRight": "Para o canto superior direito", + "Common.define.effectData.textTransparency": "Transparência", + "Common.define.effectData.textTrapezoid": "Trapézio", + "Common.define.effectData.textTurnDown": "Baixar", + "Common.define.effectData.textTurnDownRight": "Virar para baixo à direita", + "Common.define.effectData.textTurnUp": "Virar para cima", + "Common.define.effectData.textTurnUpRight": "Vire à direita", + "Common.define.effectData.textUnderline": "Sublinhado", + "Common.define.effectData.textUp": "Para cima", + "Common.define.effectData.textVertical": "Vertical", + "Common.define.effectData.textVerticalFigure": "Figura Vertical 8", + "Common.define.effectData.textVerticalIn": "Vertical para dentro", + "Common.define.effectData.textVerticalOut": "Vertical para fora", + "Common.define.effectData.textWave": "Onda", + "Common.define.effectData.textWedge": "Triangular", + "Common.define.effectData.textWheel": "Roda", + "Common.define.effectData.textWhip": "Chicote", + "Common.define.effectData.textWipe": "Revelar", + "Common.define.effectData.textZigzag": "ziguezague", + "Common.define.effectData.textZoom": "Zoom", "Common.Translation.warnFileLocked": "Documento está em uso por outra aplicação. Você pode continuar editando e salvá-lo como uma cópia.", "Common.Translation.warnFileLockedBtnEdit": "Criar uma cópia", "Common.Translation.warnFileLockedBtnView": "Aberto para visualização", @@ -98,6 +250,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Novo", "Common.UI.ExtendedColorDialog.textRGBErr": "O valor inserido está incorreto.
Insira um valor numérico entre 0 e 255.", "Common.UI.HSBColorPicker.textNoColor": "Sem cor", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Ocultar palavra-chave", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Mostrar senha", "Common.UI.SearchDialog.textHighlight": "Destacar resultados", "Common.UI.SearchDialog.textMatchCase": "Diferenciar maiúsculas de minúsculas", "Common.UI.SearchDialog.textReplaceDef": "Inserir o texto de substituição", @@ -167,6 +321,7 @@ "Common.Views.Comments.mniAuthorDesc": "Autor Z a A", "Common.Views.Comments.mniDateAsc": "Mais antigo", "Common.Views.Comments.mniDateDesc": "Novidades", + "Common.Views.Comments.mniFilterGroups": "Filtrar por grupo", "Common.Views.Comments.mniPositionAsc": "De cima", "Common.Views.Comments.mniPositionDesc": "Do fundo", "Common.Views.Comments.textAdd": "Adicionar", @@ -187,6 +342,7 @@ "Common.Views.Comments.textResolve": "Resolver", "Common.Views.Comments.textResolved": "Resolvido", "Common.Views.Comments.textSort": "Ordenar comentários", + "Common.Views.Comments.textViewResolved": "Não tem permissão para reabrir comentários", "Common.Views.CopyWarningDialog.textDontShow": "Não exibir esta mensagem novamente", "Common.Views.CopyWarningDialog.textMsg": "As ações copiar, cortar e colar usando os botões da barra de ferramentas do editor e as ações de menu de contexto serão realizadas apenas nesta aba do editor.

Para copiar ou colar para ou de aplicativos externos a aba do editor, use as seguintes combinações do teclado:", "Common.Views.CopyWarningDialog.textTitle": "Ações copiar, cortar e colar", @@ -351,6 +507,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Abrir novamente", "Common.Views.ReviewPopover.textReply": "Responder", "Common.Views.ReviewPopover.textResolve": "Resolver", + "Common.Views.ReviewPopover.textViewResolved": "Não tem permissão para reabrir comentários", "Common.Views.ReviewPopover.txtDeleteTip": "Excluir", "Common.Views.ReviewPopover.txtEditTip": "Editar", "Common.Views.SaveAsDlg.textLoading": "Carregando", @@ -508,6 +665,7 @@ "PE.Controllers.Main.textLongName": "Insira um nome com menos de 128 caracteres.", "PE.Controllers.Main.textNoLicenseTitle": "Limite de licença atingido", "PE.Controllers.Main.textPaidFeature": "Recurso pago", + "PE.Controllers.Main.textReconnect": "A conexão é restaurada", "PE.Controllers.Main.textRemember": "Lembre-se da minha escolha", "PE.Controllers.Main.textRenameError": "O nome de usuário não pode estar vazio.", "PE.Controllers.Main.textRenameLabel": "Insira um nome a ser usado para colaboração", @@ -1126,9 +1284,29 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "PE.Controllers.Viewport.textFitPage": "Ajustar slide", "PE.Controllers.Viewport.textFitWidth": "Ajustar à Largura", + "PE.Views.Animation.strDelay": "Atraso", + "PE.Views.Animation.strDuration": "Duração", + "PE.Views.Animation.strRepeat": "Repita", + "PE.Views.Animation.strRewind": "Retroceder", + "PE.Views.Animation.strStart": "Iniciar", + "PE.Views.Animation.strTrigger": "Acionar", + "PE.Views.Animation.textMoreEffects": "Mostrar mais efeitos", + "PE.Views.Animation.textMoveEarlier": "Mudança Anterior", + "PE.Views.Animation.textMoveLater": "Mover-se depois", + "PE.Views.Animation.textMultiple": "Múltiplo", + "PE.Views.Animation.textNone": "Nenhum", + "PE.Views.Animation.textOnClickOf": "Em Clique de", + "PE.Views.Animation.textOnClickSequence": "Em Sequência de cliques", "PE.Views.Animation.textStartAfterPrevious": "Após o anterior", + "PE.Views.Animation.textStartOnClick": "No Clique", + "PE.Views.Animation.textStartWithPrevious": "Com Anterior", "PE.Views.Animation.txtAddEffect": "Adicionar animação", "PE.Views.Animation.txtAnimationPane": "Painel de animação", + "PE.Views.Animation.txtParameters": "Parâmetros", + "PE.Views.Animation.txtPreview": "Pré-visualizar", + "PE.Views.Animation.txtSec": "S", + "PE.Views.AnimationDialog.textPreviewEffect": "Efeito de visualização", + "PE.Views.AnimationDialog.textTitle": "Mais efeitos", "PE.Views.ChartSettings.textAdvanced": "Exibir configurações avançadas", "PE.Views.ChartSettings.textChartType": "Alterar tipo de gráfico", "PE.Views.ChartSettings.textEditData": "Editar dados", @@ -1208,6 +1386,7 @@ "PE.Views.DocumentHolder.textCut": "Cortar", "PE.Views.DocumentHolder.textDistributeCols": "Distribuir colunas", "PE.Views.DocumentHolder.textDistributeRows": "Distribuir linhas", + "PE.Views.DocumentHolder.textEditPoints": "Editar Pontos", "PE.Views.DocumentHolder.textFlipH": "Virar horizontalmente", "PE.Views.DocumentHolder.textFlipV": "Virar verticalmente", "PE.Views.DocumentHolder.textFromFile": "Do Arquivo", @@ -1292,6 +1471,8 @@ "PE.Views.DocumentHolder.txtLimitUnder": "Limite sob o texto", "PE.Views.DocumentHolder.txtMatchBrackets": "Combinar parênteses com a altura do argumento", "PE.Views.DocumentHolder.txtMatrixAlign": "Alinhamento de matriz", + "PE.Views.DocumentHolder.txtMoveSlidesToEnd": "Mover slide para o fim", + "PE.Views.DocumentHolder.txtMoveSlidesToStart": "Deslize para o início", "PE.Views.DocumentHolder.txtNewSlide": "Novo slide", "PE.Views.DocumentHolder.txtOverbar": "Barra sobre texto", "PE.Views.DocumentHolder.txtPasteDestFormat": "Use o tema de destino", @@ -1477,6 +1658,7 @@ "PE.Views.ImageSettings.textCrop": "Cortar", "PE.Views.ImageSettings.textCropFill": "Preencher", "PE.Views.ImageSettings.textCropFit": "Ajustar", + "PE.Views.ImageSettings.textCropToShape": "Cortar para dar forma", "PE.Views.ImageSettings.textEdit": "Editar", "PE.Views.ImageSettings.textEditObject": "Editar objeto", "PE.Views.ImageSettings.textFitSlide": "Ajustar slide", @@ -1491,6 +1673,7 @@ "PE.Views.ImageSettings.textHintFlipV": "Virar verticalmente", "PE.Views.ImageSettings.textInsert": "Substituir imagem", "PE.Views.ImageSettings.textOriginalSize": "Tamanho padrão", + "PE.Views.ImageSettings.textRecentlyUsed": "Usado recentemente", "PE.Views.ImageSettings.textRotate90": "Girar 90°", "PE.Views.ImageSettings.textRotation": "Rotação", "PE.Views.ImageSettings.textSize": "Tamanho", @@ -1612,6 +1795,7 @@ "PE.Views.ShapeSettings.textPatternFill": "Padrão", "PE.Views.ShapeSettings.textPosition": "Posição", "PE.Views.ShapeSettings.textRadial": "Radial", + "PE.Views.ShapeSettings.textRecentlyUsed": "Usado recentemente", "PE.Views.ShapeSettings.textRotate90": "Girar 90º", "PE.Views.ShapeSettings.textRotation": "Rotação", "PE.Views.ShapeSettings.textSelectImage": "Selecionar imagem", @@ -1928,6 +2112,7 @@ "PE.Views.Toolbar.textColumnsTwo": "Duas Colunas", "PE.Views.Toolbar.textItalic": "Itálico", "PE.Views.Toolbar.textListSettings": "Configurações da lista", + "PE.Views.Toolbar.textRecentlyUsed": "Usado recentemente", "PE.Views.Toolbar.textShapeAlignBottom": "Alinhar à parte inferior", "PE.Views.Toolbar.textShapeAlignCenter": "Alinhar ao centro", "PE.Views.Toolbar.textShapeAlignLeft": "Alinhar à esquerda", @@ -1948,6 +2133,7 @@ "PE.Views.Toolbar.textTabInsert": "Inserir", "PE.Views.Toolbar.textTabProtect": "Proteção", "PE.Views.Toolbar.textTabTransitions": "Transições", + "PE.Views.Toolbar.textTabView": "Ver", "PE.Views.Toolbar.textTitleError": "Erro", "PE.Views.Toolbar.textUnderline": "Sublinhado", "PE.Views.Toolbar.tipAddSlide": "Adicionar slide", @@ -2001,6 +2187,7 @@ "PE.Views.Toolbar.tipViewSettings": "Visualizar configurações", "PE.Views.Toolbar.txtDistribHor": "Distribuir horizontalmente", "PE.Views.Toolbar.txtDistribVert": "Distribuir verticalmente", + "PE.Views.Toolbar.txtDuplicateSlide": "Slide duplicado", "PE.Views.Toolbar.txtGroup": "Grupo", "PE.Views.Toolbar.txtObjectsAlign": "Alinhar Objetos Selecionados", "PE.Views.Toolbar.txtScheme1": "Office", @@ -2063,5 +2250,12 @@ "PE.Views.Transitions.txtParameters": "Parâmetros", "PE.Views.Transitions.txtPreview": "Pré-visualizar", "PE.Views.Transitions.txtSec": "S", - "PE.Views.ViewTab.textAlwaysShowToolbar": "Sempre mostrar a barra de ferramentas" + "PE.Views.ViewTab.textAlwaysShowToolbar": "Sempre mostrar a barra de ferramentas", + "PE.Views.ViewTab.textFitToSlide": "Ajustar slide", + "PE.Views.ViewTab.textFitToWidth": "Ajustar largura", + "PE.Views.ViewTab.textInterfaceTheme": "Tema de interface", + "PE.Views.ViewTab.textNotes": "Notas", + "PE.Views.ViewTab.textRulers": "Regras", + "PE.Views.ViewTab.textStatusBar": "Barra de status", + "PE.Views.ViewTab.textZoom": "Zoom" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ru.json b/apps/presentationeditor/main/locale/ru.json index 46407466b..13b150572 100644 --- a/apps/presentationeditor/main/locale/ru.json +++ b/apps/presentationeditor/main/locale/ru.json @@ -47,6 +47,90 @@ "Common.define.chartData.textScatterSmoothMarker": "Точечная с гладкими кривыми и маркерами", "Common.define.chartData.textStock": "Биржевая", "Common.define.chartData.textSurface": "Поверхность", + "Common.define.effectData.textArcDown": "Вниз по дуге", + "Common.define.effectData.textArcLeft": "Влево по дуге", + "Common.define.effectData.textArcRight": "Вправо по дуге", + "Common.define.effectData.textArcUp": "Вверх по дуге", + "Common.define.effectData.textBasicSwivel": "Простое вращение", + "Common.define.effectData.textBasicZoom": "Простое увеличение", + "Common.define.effectData.textBean": "Боб", + "Common.define.effectData.textBlinds": "Жалюзи", + "Common.define.effectData.textBlink": "Мигание", + "Common.define.effectData.textBoldFlash": "Полужирное начертание", + "Common.define.effectData.textBoldReveal": "Наложение полужирного", + "Common.define.effectData.textBoomerang": "Бумеранг", + "Common.define.effectData.textBounce": "Выскакивание", + "Common.define.effectData.textBounceLeft": "Выскакивание влево", + "Common.define.effectData.textBounceRight": "Выскакивание вправо", + "Common.define.effectData.textCenterRevolve": "Поворот вокруг центра", + "Common.define.effectData.textCheckerboard": "Шахматная доска", + "Common.define.effectData.textCircle": "Круг", + "Common.define.effectData.textColorPulse": "Цветовая пульсация", + "Common.define.effectData.textComplementaryColor": "Дополнительный цвет", + "Common.define.effectData.textComplementaryColor2": "Дополнительный цвет 2", + "Common.define.effectData.textCompress": "Сжатие", + "Common.define.effectData.textContrast": "Контраст", + "Common.define.effectData.textContrastingColor": "Контрастирующий цвет", + "Common.define.effectData.textCredits": "Титры", + "Common.define.effectData.textCrescentMoon": "Полумесяц", + "Common.define.effectData.textCurveDown": "Скачок вниз", + "Common.define.effectData.textCurvedSquare": "Скругленный квадрат", + "Common.define.effectData.textCurvedX": "Скругленный крестик", + "Common.define.effectData.textCurvyLeft": "Влево по кривой", + "Common.define.effectData.textCurvyRight": "Вправо по кривой", + "Common.define.effectData.textCurvyStar": "Скругленная звезда", + "Common.define.effectData.textCustomPath": "Пользовательский путь", + "Common.define.effectData.textCuverUp": "Скачок вверх", + "Common.define.effectData.textDarken": "Затемнение", + "Common.define.effectData.textDecayingWave": "Затухающая волна", + "Common.define.effectData.textDesaturate": "Обесцветить", + "Common.define.effectData.textDiagonalDownRight": "По диагонали в правый нижний угол", + "Common.define.effectData.textDiagonalUpRight": "По диагонали в верхний правый угол", + "Common.define.effectData.textDiamond": "Ромб", + "Common.define.effectData.textDisappear": "Исчезновение", + "Common.define.effectData.textDissolveIn": "Растворение", + "Common.define.effectData.textDissolveOut": "Растворение", + "Common.define.effectData.textEmphasis": "Эффект выделения", + "Common.define.effectData.textEntrance": "Эффект входа", + "Common.define.effectData.textEqualTriangle": "Равносторонний треугольник", + "Common.define.effectData.textFillColor": "Цвет заливки", + "Common.define.effectData.textFontColor": "Цвет шрифта", + "Common.define.effectData.textFromBottom": "Снизу вверх", + "Common.define.effectData.textFromLeft": "Слева направо", + "Common.define.effectData.textFromRight": "Справа налево", + "Common.define.effectData.textFromTop": "Сверху вниз", + "Common.define.effectData.textGrowShrink": "Изменение размера", + "Common.define.effectData.textGrowTurn": "Увеличение с поворотом", + "Common.define.effectData.textGrowWithColor": "Увеличение с изменением цвета", + "Common.define.effectData.textHeart": "Сердце", + "Common.define.effectData.textHeartbeat": "Пульс", + "Common.define.effectData.textHexagon": "Шестиугольник", + "Common.define.effectData.textInvertedSquare": "Квадрат наизнанку", + "Common.define.effectData.textInvertedTriangle": "Треугольник наизнанку", + "Common.define.effectData.textLoopDeLoop": "Петля", + "Common.define.effectData.textObjectColor": "Цвет объекта", + "Common.define.effectData.textOctagon": "Восьмиугольник", + "Common.define.effectData.textParallelogram": "Параллелограмм", + "Common.define.effectData.textPentagon": "Пятиугольник", + "Common.define.effectData.textPointStar4": "4-конечная звезда", + "Common.define.effectData.textPointStar5": "5-конечная звезда", + "Common.define.effectData.textPointStar6": "6-конечная звезда", + "Common.define.effectData.textPointStar8": "8-конечная звезда", + "Common.define.effectData.textRightTriangle": "Прямоугольный треугольник", + "Common.define.effectData.textShape": "Фигура", + "Common.define.effectData.textShimmer": "Мерцание", + "Common.define.effectData.textShrinkTurn": "Уменьшение с поворотом", + "Common.define.effectData.textSpoke1": "1 сектор", + "Common.define.effectData.textSpoke2": "2 сектора", + "Common.define.effectData.textSpoke3": "3 сектора", + "Common.define.effectData.textSpoke4": "4 сектора", + "Common.define.effectData.textSpoke8": "8 секторов", + "Common.define.effectData.textTeardrop": "Капля", + "Common.define.effectData.textTransparency": "Прозрачность", + "Common.define.effectData.textTrapezoid": "Трапеция", + "Common.define.effectData.textWave": "Волна", + "Common.define.effectData.textWheel": "Колесо", + "Common.define.effectData.textZigzag": "Зигзаг", "Common.Translation.warnFileLocked": "Файл редактируется в другом приложении. Вы можете продолжить редактирование и сохранить его как копию.", "Common.Translation.warnFileLockedBtnEdit": "Создать копию", "Common.Translation.warnFileLockedBtnView": "Открыть на просмотр", @@ -61,6 +145,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Новый", "Common.UI.ExtendedColorDialog.textRGBErr": "Введено некорректное значение.
Пожалуйста, введите числовое значение от 0 до 255.", "Common.UI.HSBColorPicker.textNoColor": "Без цвета", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Скрыть пароль", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Показать пароль", "Common.UI.SearchDialog.textHighlight": "Выделить результаты", "Common.UI.SearchDialog.textMatchCase": "С учетом регистра", "Common.UI.SearchDialog.textReplaceDef": "Введите текст для замены", @@ -104,6 +190,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Стили маркированных списков", "Common.Views.AutoCorrectDialog.textBy": "На", "Common.Views.AutoCorrectDialog.textDelete": "Удалить", + "Common.Views.AutoCorrectDialog.textFLCells": "Делать первые буквы ячеек таблиц прописными", "Common.Views.AutoCorrectDialog.textFLSentence": "Делать первые буквы предложений прописными", "Common.Views.AutoCorrectDialog.textHyperlink": "Адреса в Интернете и сетевые пути гиперссылками", "Common.Views.AutoCorrectDialog.textHyphens": "Дефисы (--) на тире (—)", @@ -129,12 +216,14 @@ "Common.Views.Comments.mniAuthorDesc": "По автору от Я до А", "Common.Views.Comments.mniDateAsc": "От старых к новым", "Common.Views.Comments.mniDateDesc": "От новых к старым", + "Common.Views.Comments.mniFilterGroups": "Фильтровать по группе", "Common.Views.Comments.mniPositionAsc": "Сверху вниз", "Common.Views.Comments.mniPositionDesc": "Снизу вверх", "Common.Views.Comments.textAdd": "Добавить", "Common.Views.Comments.textAddComment": "Добавить", "Common.Views.Comments.textAddCommentToDoc": "Добавить комментарий к документу", "Common.Views.Comments.textAddReply": "Добавить ответ", + "Common.Views.Comments.textAll": "Все", "Common.Views.Comments.textAnonym": "Гость", "Common.Views.Comments.textCancel": "Отмена", "Common.Views.Comments.textClose": "Закрыть", @@ -148,6 +237,7 @@ "Common.Views.Comments.textResolve": "Решить", "Common.Views.Comments.textResolved": "Решено", "Common.Views.Comments.textSort": "Сортировать комментарии", + "Common.Views.Comments.textViewResolved": "У вас нет прав для повторного открытия комментария", "Common.Views.CopyWarningDialog.textDontShow": "Больше не показывать это сообщение", "Common.Views.CopyWarningDialog.textMsg": "Операции копирования, вырезания и вставки можно выполнить с помощью кнопок на панели инструментов и команд контекстного меню только в этой вкладке редактора.

Для копирования в другие приложения и вставки из них используйте следующие сочетания клавиш:", "Common.Views.CopyWarningDialog.textTitle": "Операции копирования, вырезания и вставки", @@ -312,6 +402,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Открыть снова", "Common.Views.ReviewPopover.textReply": "Ответить", "Common.Views.ReviewPopover.textResolve": "Решить", + "Common.Views.ReviewPopover.textViewResolved": "У вас нет прав для повторного открытия комментария", "Common.Views.ReviewPopover.txtDeleteTip": "Удалить", "Common.Views.ReviewPopover.txtEditTip": "Редактировать", "Common.Views.SaveAsDlg.textLoading": "Загрузка", @@ -469,6 +560,7 @@ "PE.Controllers.Main.textLongName": "Введите имя длиной менее 128 символов.", "PE.Controllers.Main.textNoLicenseTitle": "Лицензионное ограничение", "PE.Controllers.Main.textPaidFeature": "Платная функция", + "PE.Controllers.Main.textReconnect": "Соединение восстановлено", "PE.Controllers.Main.textRemember": "Запомнить мой выбор для всех файлов", "PE.Controllers.Main.textRenameError": "Имя пользователя не должно быть пустым.", "PE.Controllers.Main.textRenameLabel": "Введите имя, которое будет использоваться для совместной работы", @@ -750,6 +842,7 @@ "PE.Controllers.Main.warnNoLicense": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт на просмотр.
Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.", "PE.Controllers.Main.warnNoLicenseUsers": "Вы достигли лимита на одновременные подключения к редакторам %1.
Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.", "PE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.", + "PE.Controllers.Statusbar.textDisconnect": "Соединение потеряно
Попытка подключения. Проверьте настройки подключения.", "PE.Controllers.Statusbar.zoomText": "Масштаб {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "Шрифт, который вы хотите сохранить, недоступен на этом устройстве.
Стиль текста будет отображаться с помощью одного из системных шрифтов. Сохраненный шрифт будет использоваться, когда он станет доступен.
Вы хотите продолжить?", "PE.Controllers.Toolbar.textAccent": "Диакритические знаки", @@ -1086,6 +1179,15 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Дзета", "PE.Controllers.Viewport.textFitPage": "По размеру слайда", "PE.Controllers.Viewport.textFitWidth": "По ширине", + "PE.Views.Animation.strDelay": "Задержка", + "PE.Views.Animation.strDuration": "Длит.", + "PE.Views.Animation.textStartAfterPrevious": "После предыдущего", + "PE.Views.Animation.textStartWithPrevious": "Вместе с предыдущим", + "PE.Views.Animation.txtAddEffect": "Добавить анимацию", + "PE.Views.Animation.txtAnimationPane": "Область анимации", + "PE.Views.Animation.txtParameters": "Параметры", + "PE.Views.Animation.txtPreview": "Просмотр", + "PE.Views.Animation.txtSec": "сек", "PE.Views.ChartSettings.textAdvanced": "Дополнительные параметры", "PE.Views.ChartSettings.textChartType": "Изменить тип диаграммы", "PE.Views.ChartSettings.textEditData": "Изменить данные", @@ -1165,6 +1267,7 @@ "PE.Views.DocumentHolder.textCut": "Вырезать", "PE.Views.DocumentHolder.textDistributeCols": "Выровнять ширину столбцов", "PE.Views.DocumentHolder.textDistributeRows": "Выровнять высоту строк", + "PE.Views.DocumentHolder.textEditPoints": "Изменить точки", "PE.Views.DocumentHolder.textFlipH": "Отразить слева направо", "PE.Views.DocumentHolder.textFlipV": "Отразить сверху вниз", "PE.Views.DocumentHolder.textFromFile": "Из файла", @@ -1249,6 +1352,8 @@ "PE.Views.DocumentHolder.txtLimitUnder": "Предел под текстом", "PE.Views.DocumentHolder.txtMatchBrackets": "Изменить размер скобок в соответствии с высотой аргумента", "PE.Views.DocumentHolder.txtMatrixAlign": "Выравнивание матрицы", + "PE.Views.DocumentHolder.txtMoveSlidesToEnd": "Переместить слайд в конец", + "PE.Views.DocumentHolder.txtMoveSlidesToStart": "Переместить слайд в начало", "PE.Views.DocumentHolder.txtNewSlide": "Новый слайд", "PE.Views.DocumentHolder.txtOverbar": "Черта над текстом", "PE.Views.DocumentHolder.txtPasteDestFormat": "Использовать конечную тему", @@ -1434,6 +1539,7 @@ "PE.Views.ImageSettings.textCrop": "Обрезать", "PE.Views.ImageSettings.textCropFill": "Заливка", "PE.Views.ImageSettings.textCropFit": "Вписать", + "PE.Views.ImageSettings.textCropToShape": "Обрезать по фигуре", "PE.Views.ImageSettings.textEdit": "Редактировать", "PE.Views.ImageSettings.textEditObject": "Редактировать объект", "PE.Views.ImageSettings.textFitSlide": "По размеру слайда", @@ -1448,6 +1554,7 @@ "PE.Views.ImageSettings.textHintFlipV": "Отразить сверху вниз", "PE.Views.ImageSettings.textInsert": "Заменить изображение", "PE.Views.ImageSettings.textOriginalSize": "Реальный размер", + "PE.Views.ImageSettings.textRecentlyUsed": "Последние использованные", "PE.Views.ImageSettings.textRotate90": "Повернуть на 90°", "PE.Views.ImageSettings.textRotation": "Поворот", "PE.Views.ImageSettings.textSize": "Размер", @@ -1569,6 +1676,7 @@ "PE.Views.ShapeSettings.textPatternFill": "Узор", "PE.Views.ShapeSettings.textPosition": "Положение", "PE.Views.ShapeSettings.textRadial": "Радиальный", + "PE.Views.ShapeSettings.textRecentlyUsed": "Последние использованные", "PE.Views.ShapeSettings.textRotate90": "Повернуть на 90°", "PE.Views.ShapeSettings.textRotation": "Поворот", "PE.Views.ShapeSettings.textSelectImage": "Выбрать изображение", @@ -1885,6 +1993,7 @@ "PE.Views.Toolbar.textColumnsTwo": "Две колонки", "PE.Views.Toolbar.textItalic": "Курсив", "PE.Views.Toolbar.textListSettings": "Параметры списка", + "PE.Views.Toolbar.textRecentlyUsed": "Последние использованные", "PE.Views.Toolbar.textShapeAlignBottom": "Выровнять по нижнему краю", "PE.Views.Toolbar.textShapeAlignCenter": "Выровнять по центру", "PE.Views.Toolbar.textShapeAlignLeft": "Выровнять по левому краю", @@ -1898,12 +2007,14 @@ "PE.Views.Toolbar.textStrikeout": "Зачёркнутый", "PE.Views.Toolbar.textSubscript": "Подстрочные знаки", "PE.Views.Toolbar.textSuperscript": "Надстрочные знаки", + "PE.Views.Toolbar.textTabAnimation": "Анимация", "PE.Views.Toolbar.textTabCollaboration": "Совместная работа", "PE.Views.Toolbar.textTabFile": "Файл", "PE.Views.Toolbar.textTabHome": "Главная", "PE.Views.Toolbar.textTabInsert": "Вставка", "PE.Views.Toolbar.textTabProtect": "Защита", "PE.Views.Toolbar.textTabTransitions": "Переходы", + "PE.Views.Toolbar.textTabView": "Вид", "PE.Views.Toolbar.textTitleError": "Ошибка", "PE.Views.Toolbar.textUnderline": "Подчеркнутый", "PE.Views.Toolbar.tipAddSlide": "Добавить слайд", @@ -1957,6 +2068,7 @@ "PE.Views.Toolbar.tipViewSettings": "Параметры вида", "PE.Views.Toolbar.txtDistribHor": "Распределить по горизонтали", "PE.Views.Toolbar.txtDistribVert": "Распределить по вертикали", + "PE.Views.Toolbar.txtDuplicateSlide": "Дублировать слайд", "PE.Views.Toolbar.txtGroup": "Сгруппировать", "PE.Views.Toolbar.txtObjectsAlign": "Выровнять выделенные объекты", "PE.Views.Toolbar.txtScheme1": "Стандартная", @@ -2018,5 +2130,11 @@ "PE.Views.Transitions.txtApplyToAll": "Применить ко всем слайдам", "PE.Views.Transitions.txtParameters": "Параметры", "PE.Views.Transitions.txtPreview": "Просмотр", - "PE.Views.Transitions.txtSec": "сек" + "PE.Views.Transitions.txtSec": "сек", + "PE.Views.ViewTab.textAlwaysShowToolbar": "Всегда показывать панель инструментов", + "PE.Views.ViewTab.textFitToSlide": "По размеру слайда", + "PE.Views.ViewTab.textFitToWidth": "По ширине", + "PE.Views.ViewTab.textInterfaceTheme": "Тема интерфейса", + "PE.Views.ViewTab.textRulers": "Линейки", + "PE.Views.ViewTab.textZoom": "Масштаб" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/uk.json b/apps/presentationeditor/main/locale/uk.json index 3b4fabdff..800c0b779 100644 --- a/apps/presentationeditor/main/locale/uk.json +++ b/apps/presentationeditor/main/locale/uk.json @@ -47,6 +47,32 @@ "Common.define.chartData.textScatterSmoothMarker": "Точкова з гладкими кривими та маркерами", "Common.define.chartData.textStock": "Запас", "Common.define.chartData.textSurface": "Поверхня", + "Common.define.effectData.textArcDown": "Вниз дугою", + "Common.define.effectData.textArcLeft": "Ліворуч по дузі", + "Common.define.effectData.textArcRight": "Праворуч по дузі", + "Common.define.effectData.textArcUp": "Вгору по дузі", + "Common.define.effectData.textComplementaryColor": "Додатковий колір", + "Common.define.effectData.textComplementaryColor2": "Додатковий колір 2", + "Common.define.effectData.textContrast": "Контраст", + "Common.define.effectData.textContrastingColor": "Колір, що контрастує ", + "Common.define.effectData.textFontColor": "Колір шрифту", + "Common.define.effectData.textInvertedSquare": "Обернений квадрат", + "Common.define.effectData.textInvertedTriangle": "Перевернутий трикутник", + "Common.define.effectData.textPentagon": "П'ятикутник", + "Common.define.effectData.textPointStar4": "4-кутна зірка", + "Common.define.effectData.textPointStar5": "5-кутна зірка", + "Common.define.effectData.textPointStar6": "6-кутна зірка", + "Common.define.effectData.textPointStar8": "8-кутна зірка", + "Common.define.effectData.textRightTriangle": "Прямокутний трикутник", + "Common.define.effectData.textShrinkTurn": "Зменшення з поворотом", + "Common.define.effectData.textSpoke1": "1 сектор", + "Common.define.effectData.textSpoke2": "2 сектори", + "Common.define.effectData.textSpoke3": "3 сектори", + "Common.define.effectData.textSpoke4": "4 сектори", + "Common.define.effectData.textSpoke8": "8 секторів", + "Common.define.effectData.textTransparency": "Прозорість", + "Common.define.effectData.textWave": "Хвиля", + "Common.define.effectData.textWheel": "Колесо", "Common.Translation.warnFileLocked": "Файл редагується в іншій програмі. Ви можете продовжити редагування та зберегти його як копію.", "Common.Translation.warnFileLockedBtnEdit": "Створити копію", "Common.Translation.warnFileLockedBtnView": "Відкрити на перегляд", @@ -61,6 +87,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Нове", "Common.UI.ExtendedColorDialog.textRGBErr": "Введене значення невірно.
Будь ласка, введіть числове значення від 0 до 255.", "Common.UI.HSBColorPicker.textNoColor": "Немає кольору", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Сховати пароль", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Показати пароль", "Common.UI.SearchDialog.textHighlight": "Виділіть результати", "Common.UI.SearchDialog.textMatchCase": "Чутливість до регістору символів", "Common.UI.SearchDialog.textReplaceDef": "Введіть текст заміни", @@ -104,6 +132,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Стилі маркованих списків", "Common.Views.AutoCorrectDialog.textBy": "На", "Common.Views.AutoCorrectDialog.textDelete": "Видалити", + "Common.Views.AutoCorrectDialog.textFLCells": "Робити перші літери в клітинках таблиць великими", "Common.Views.AutoCorrectDialog.textFLSentence": "Писати речення з великої літери", "Common.Views.AutoCorrectDialog.textHyperlink": "Адреси в інтернеті та мережі гіперпосиланнями", "Common.Views.AutoCorrectDialog.textHyphens": "Дефіси (--) на тире (—)", @@ -129,12 +158,14 @@ "Common.Views.Comments.mniAuthorDesc": "За автором від Я до А", "Common.Views.Comments.mniDateAsc": "Від старих до нових", "Common.Views.Comments.mniDateDesc": "Від нових до старих", + "Common.Views.Comments.mniFilterGroups": "Фільтрувати за групою", "Common.Views.Comments.mniPositionAsc": "Зверху вниз", "Common.Views.Comments.mniPositionDesc": "Знизу вверх", "Common.Views.Comments.textAdd": "Додати", "Common.Views.Comments.textAddComment": "Добавити коментар", "Common.Views.Comments.textAddCommentToDoc": "Додати коментар до документа", "Common.Views.Comments.textAddReply": "Додати відповідь", + "Common.Views.Comments.textAll": "Всі", "Common.Views.Comments.textAnonym": "Гість", "Common.Views.Comments.textCancel": "Скасувати", "Common.Views.Comments.textClose": "Закрити", @@ -469,6 +500,7 @@ "PE.Controllers.Main.textLongName": "Введіть ім'я не довше ніж 128 символів.", "PE.Controllers.Main.textNoLicenseTitle": "Ліцензійне обмеження", "PE.Controllers.Main.textPaidFeature": "Платна функція", + "PE.Controllers.Main.textReconnect": "З'єднання відновлено", "PE.Controllers.Main.textRemember": "Запам’ятати мій вибір для всіх файлів", "PE.Controllers.Main.textRenameError": "Ім'я користувача не повинно бути порожнім.", "PE.Controllers.Main.textRenameLabel": "Введіть ім'я, що буде використовуватись для спільної роботи", @@ -650,16 +682,16 @@ "PE.Controllers.Main.txtShape_snip2SameRect": "Прямокутник з двома вирізаними сусідніми кутами", "PE.Controllers.Main.txtShape_snipRoundRect": "Прямокутник з одним вирізаним закругленим кутом", "PE.Controllers.Main.txtShape_spline": "Крива", - "PE.Controllers.Main.txtShape_star10": "10-кінцева зірка", - "PE.Controllers.Main.txtShape_star12": "12-кінцева зірка", - "PE.Controllers.Main.txtShape_star16": "16-кінцева зірка", - "PE.Controllers.Main.txtShape_star24": "24-кінцева зірка", - "PE.Controllers.Main.txtShape_star32": "32-кінцева зірка", - "PE.Controllers.Main.txtShape_star4": "4-кінцева зірка", - "PE.Controllers.Main.txtShape_star5": "5-кінцева зірка", - "PE.Controllers.Main.txtShape_star6": "6-кінцева зірка", - "PE.Controllers.Main.txtShape_star7": "7-кінцева зірка", - "PE.Controllers.Main.txtShape_star8": "8-кінцева зірка", + "PE.Controllers.Main.txtShape_star10": "10-кутна зірка", + "PE.Controllers.Main.txtShape_star12": "12-кутна зірка", + "PE.Controllers.Main.txtShape_star16": "16-кутна зірка", + "PE.Controllers.Main.txtShape_star24": "24-кутна зірка", + "PE.Controllers.Main.txtShape_star32": "32-кутна зірка", + "PE.Controllers.Main.txtShape_star4": "4-кутна зірка", + "PE.Controllers.Main.txtShape_star5": "5-кутна зірка", + "PE.Controllers.Main.txtShape_star6": "6-кутна зірка", + "PE.Controllers.Main.txtShape_star7": "7-кутна зірка", + "PE.Controllers.Main.txtShape_star8": "8-кутна зірка", "PE.Controllers.Main.txtShape_stripedRightArrow": "Штрихпунктирна стрілка праворуч", "PE.Controllers.Main.txtShape_sun": "Сонце", "PE.Controllers.Main.txtShape_teardrop": "Крапля", @@ -1086,6 +1118,8 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Зета", "PE.Controllers.Viewport.textFitPage": "За розміром слайду", "PE.Controllers.Viewport.textFitWidth": "По ширині", + "PE.Views.Animation.txtAddEffect": "Додати анімацію", + "PE.Views.Animation.txtAnimationPane": "Область анімації", "PE.Views.ChartSettings.textAdvanced": "Показати додаткові налаштування", "PE.Views.ChartSettings.textChartType": "Змінити тип діаграми", "PE.Views.ChartSettings.textEditData": "Редагувати дату", @@ -1434,6 +1468,7 @@ "PE.Views.ImageSettings.textCrop": "Обрізати", "PE.Views.ImageSettings.textCropFill": "Заливка", "PE.Views.ImageSettings.textCropFit": "Вписати", + "PE.Views.ImageSettings.textCropToShape": "Обрізати по фігурі", "PE.Views.ImageSettings.textEdit": "Редагувати", "PE.Views.ImageSettings.textEditObject": "Редагувати об'єкт", "PE.Views.ImageSettings.textFitSlide": "За розміром слайду", @@ -1448,6 +1483,7 @@ "PE.Views.ImageSettings.textHintFlipV": "Перевернути вертикально", "PE.Views.ImageSettings.textInsert": "Замінити зображення", "PE.Views.ImageSettings.textOriginalSize": "Реальний розмір", + "PE.Views.ImageSettings.textRecentlyUsed": "Останні використані", "PE.Views.ImageSettings.textRotate90": "Повернути на 90°", "PE.Views.ImageSettings.textRotation": "Поворот", "PE.Views.ImageSettings.textSize": "Розмір", @@ -1569,6 +1605,7 @@ "PE.Views.ShapeSettings.textPatternFill": "Візерунок", "PE.Views.ShapeSettings.textPosition": "Положення", "PE.Views.ShapeSettings.textRadial": "Радіальний", + "PE.Views.ShapeSettings.textRecentlyUsed": "Останні використані", "PE.Views.ShapeSettings.textRotate90": "Повернути на 90°", "PE.Views.ShapeSettings.textRotation": "Поворот", "PE.Views.ShapeSettings.textSelectImage": "Вибрати зображення", @@ -1885,6 +1922,7 @@ "PE.Views.Toolbar.textColumnsTwo": "Два стовпчики", "PE.Views.Toolbar.textItalic": "Курсив", "PE.Views.Toolbar.textListSettings": "Налаштування списку", + "PE.Views.Toolbar.textRecentlyUsed": "Останні використані", "PE.Views.Toolbar.textShapeAlignBottom": "Вирівняти знизу", "PE.Views.Toolbar.textShapeAlignCenter": "Вирівняти центр", "PE.Views.Toolbar.textShapeAlignLeft": "Вирівняти зліва", @@ -2018,5 +2056,8 @@ "PE.Views.Transitions.txtApplyToAll": "Додати до усіх слайдів", "PE.Views.Transitions.txtParameters": "Параметри", "PE.Views.Transitions.txtPreview": "Перегляд", - "PE.Views.Transitions.txtSec": "сек" + "PE.Views.Transitions.txtSec": "сек", + "PE.Views.ViewTab.textFitToSlide": "За розміром слайду", + "PE.Views.ViewTab.textFitToWidth": "По ширині", + "PE.Views.ViewTab.textInterfaceTheme": "Тема інтерфейсу" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/zh.json b/apps/presentationeditor/main/locale/zh.json index 28d5f8cb9..8941325e2 100644 --- a/apps/presentationeditor/main/locale/zh.json +++ b/apps/presentationeditor/main/locale/zh.json @@ -203,10 +203,10 @@ "Common.Views.InsertTableDialog.txtTitle": "表格大小", "Common.Views.InsertTableDialog.txtTitleSplit": "拆分单元格", "Common.Views.LanguageDialog.labelSelect": "选择文档语言", - "Common.Views.ListSettingsDialog.textBulleted": "已添加项目点", + "Common.Views.ListSettingsDialog.textBulleted": "已添加项目符号", "Common.Views.ListSettingsDialog.textNumbering": "标号", "Common.Views.ListSettingsDialog.tipChange": "修改项目点", - "Common.Views.ListSettingsDialog.txtBullet": "项目点", + "Common.Views.ListSettingsDialog.txtBullet": "项目符号", "Common.Views.ListSettingsDialog.txtColor": "颜色", "Common.Views.ListSettingsDialog.txtNewBullet": "添加一个新的项目点", "Common.Views.ListSettingsDialog.txtNone": "无", @@ -1006,7 +1006,7 @@ "PE.Controllers.Toolbar.txtSymbol_ast": "星号运营商", "PE.Controllers.Toolbar.txtSymbol_beta": "测试版", "PE.Controllers.Toolbar.txtSymbol_beth": "打赌", - "PE.Controllers.Toolbar.txtSymbol_bullet": "着重号操作", + "PE.Controllers.Toolbar.txtSymbol_bullet": "项目符号操作", "PE.Controllers.Toolbar.txtSymbol_cap": "路口", "PE.Controllers.Toolbar.txtSymbol_cbrt": "立方根", "PE.Controllers.Toolbar.txtSymbol_cdots": "中线水平省略号", @@ -1903,7 +1903,7 @@ "PE.Views.Toolbar.textTabHome": "主页", "PE.Views.Toolbar.textTabInsert": "插入", "PE.Views.Toolbar.textTabProtect": "保护", - "PE.Views.Toolbar.textTabTransitions": "转换", + "PE.Views.Toolbar.textTabTransitions": "切换", "PE.Views.Toolbar.textTitleError": "错误", "PE.Views.Toolbar.textUnderline": "下划线", "PE.Views.Toolbar.tipAddSlide": "添加幻灯片", @@ -1939,7 +1939,7 @@ "PE.Views.Toolbar.tipInsertTextArt": "插入文字艺术", "PE.Views.Toolbar.tipInsertVideo": "插入视频", "PE.Views.Toolbar.tipLineSpace": "行间距", - "PE.Views.Toolbar.tipMarkers": "着重号", + "PE.Views.Toolbar.tipMarkers": "项目符号", "PE.Views.Toolbar.tipNumbers": "编号", "PE.Views.Toolbar.tipPaste": "粘贴", "PE.Views.Toolbar.tipPreview": "开始幻灯片放映", diff --git a/apps/spreadsheeteditor/embed/locale/ca.json b/apps/spreadsheeteditor/embed/locale/ca.json index 592c89758..1829cadd7 100644 --- a/apps/spreadsheeteditor/embed/locale/ca.json +++ b/apps/spreadsheeteditor/embed/locale/ca.json @@ -9,26 +9,26 @@ "SSE.ApplicationController.criticalErrorTitle": "Error", "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 tens permisos per realitzar aquesta acció.
Contacta amb el teu administrador del servidor de documents.", - "SSE.ApplicationController.errorDefaultMessage": "Codi d'error:%1", + "SSE.ApplicationController.errorAccessDeny": "No teniu permisos per realitzar aquesta acció.
Contacteu amb l'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 supera el límit establert pel teu servidor. Contacta amb el teu administrador del servidor de documents per obtenir més informació.", - "SSE.ApplicationController.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitza l'opció \"Baixa-ho com a\" per desar el fitxer al disc dur de l’ordinador o torna-ho a provar més endavant.", - "SSE.ApplicationController.errorLoadingFont": "No s'han carregat els tipus de lletra.
Contacta amb l'administrador del Servidor de Documents.", - "SSE.ApplicationController.errorTokenExpire": "El testimoni de seguretat del document ha caducat.
Contacta amb l'administrador del servidor de documents.", - "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "S'ha restaurat la connexió a internet i la versió del fitxer ha canviat.
Abans de continuar treballant, has de baixar el fitxer o copiar-ne el contingut per assegurar-te que no es perdi res i, després, torna a carregar aquesta pàgina.", - "SSE.ApplicationController.errorUserDrop": "Ara mateix no es pot accedir al fitxer.", + "SSE.ApplicationController.errorFileSizeExceed": "La mida del fitxer supera el límit establert pel servidor. Contacteu amb l'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.errorLoadingFont": "No s'han carregat els tipus de lletra.
Contacteu amb l'administrador del servidor de documents.", + "SSE.ApplicationController.errorTokenExpire": "El testimoni de seguretat del document ha caducat.
Contacteu amb l'administrador del servidor de documents.", + "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 la pàgina.", + "SSE.ApplicationController.errorUserDrop": "No es pot accedir al fitxer.", "SSE.ApplicationController.notcriticalErrorTitle": "Advertiment", "SSE.ApplicationController.openErrorText": "S'ha produït un error en obrir el fitxer.", - "SSE.ApplicationController.scriptLoadError": "La connexió és massa lenta, alguns dels components no s’han pogut carregar. Torna a carregar la pàgina.", + "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": "S'està carregant el full de càlcul", "SSE.ApplicationController.textOf": "de", "SSE.ApplicationController.txtClose": "Tanca", "SSE.ApplicationController.unknownErrorText": "Error desconegut.", - "SSE.ApplicationController.unsupportedBrowserErrorText": "El teu navegador no és compatible.", - "SSE.ApplicationController.waitText": "Espera...", + "SSE.ApplicationController.unsupportedBrowserErrorText": "El vostre navegador no és compatible.", + "SSE.ApplicationController.waitText": "Espereu...", "SSE.ApplicationView.txtDownload": "Baixa", "SSE.ApplicationView.txtEmbed": "Incrusta", "SSE.ApplicationView.txtFileLocation": "Obre la ubicació del fitxer", diff --git a/apps/spreadsheeteditor/main/locale/ca.json b/apps/spreadsheeteditor/main/locale/ca.json index 8230ffb64..800a441e5 100644 --- a/apps/spreadsheeteditor/main/locale/ca.json +++ b/apps/spreadsheeteditor/main/locale/ca.json @@ -184,6 +184,7 @@ "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.textAll": "Tot", "Common.Views.Comments.textAnonym": "Convidat", "Common.Views.Comments.textCancel": "Cancel·la", "Common.Views.Comments.textClose": "Tanca", @@ -584,6 +585,7 @@ "SSE.Controllers.DocumentHolder.txtSorting": "Ordenació", "SSE.Controllers.DocumentHolder.txtSortSelected": "Ordena els objectes seleccionats", "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Estira els claudàtors", + "SSE.Controllers.DocumentHolder.txtThisRowHint": "Tria només aquesta fila de la columna especificada", "SSE.Controllers.DocumentHolder.txtTop": "Superior", "SSE.Controllers.DocumentHolder.txtUnderbar": "Barra sota el text", "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Desfés l'expansió automàtica de la taula", @@ -769,6 +771,7 @@ "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. Espera...", + "SSE.Controllers.Main.textReconnect": "S'ha restablert la connexió", "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": "Introdueix un nom que s'utilitzarà per a la col·laboració", @@ -1060,6 +1063,7 @@ "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 càlcul", "SSE.Controllers.Statusbar.strSheet": "Full", + "SSE.Controllers.Statusbar.textDisconnect": "S'ha perdut la connexió. S'està intentat connectar. Comproveu la configuració de connexió", "SSE.Controllers.Statusbar.textSheetViewTip": "Ets 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 són en aquesta visualització.", "SSE.Controllers.Statusbar.textSheetViewTipFilters": "Ets en mode de vista del full. Els filtres només són visibles per a tu i per a aquells que encara són en aquesta vista.", "SSE.Controllers.Statusbar.warnDeleteSheet": "Els fulls de càlcul seleccionats poden contenir dades. Segur que vols continuar?", @@ -1427,6 +1431,7 @@ "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.AdvancedSeparatorDialog.txtNone": "(cap)", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Filtre personalitzat", "SSE.Views.AutoFilterDialog.textAddSelection": "Afegeix la selecció actual al filtre", "SSE.Views.AutoFilterDialog.textEmptyItem": "{En blanc}", @@ -2402,6 +2407,7 @@ "SSE.Views.ImageSettings.textCrop": "Retalla", "SSE.Views.ImageSettings.textCropFill": "Emplena", "SSE.Views.ImageSettings.textCropFit": "Ajusta", + "SSE.Views.ImageSettings.textCropToShape": "Escapça per donar forma", "SSE.Views.ImageSettings.textEdit": "Edita", "SSE.Views.ImageSettings.textEditObject": "Edita l'objecte", "SSE.Views.ImageSettings.textFlip": "Capgira", @@ -2724,6 +2730,11 @@ "SSE.Views.PrintTitlesDialog.textSelectRange": "Selecciona un interval", "SSE.Views.PrintTitlesDialog.textTitle": "Imprimeix els títols", "SSE.Views.PrintTitlesDialog.textTop": "Repeteix files a la part superior", + "SSE.Views.PrintWithPreview.txtActualSize": "Mida real", + "SSE.Views.PrintWithPreview.txtAllSheets": "Tots els fulls", + "SSE.Views.PrintWithPreview.txtApplyToAllSheets": "Aplica-ho a tots els fulls", + "SSE.Views.PrintWithPreview.txtBottom": "Inferior", + "SSE.Views.PrintWithPreview.txtCurrentSheet": "Full de càlcul actual", "SSE.Views.ProtectDialog.textExistName": "ERROR! L'interval amb aquest títol ja existeix", "SSE.Views.ProtectDialog.textInvalidName": "El títol de l'interval ha de començar amb una lletra i només pot contenir lletres, números i espais.", "SSE.Views.ProtectDialog.textInvalidRange": "ERROR! L'interval de cel·les no és vàlid", @@ -3364,6 +3375,8 @@ "SSE.Views.Toolbar.tipInsertTable": "Insereix una taula", "SSE.Views.Toolbar.tipInsertText": "Insereix un quadre de text", "SSE.Views.Toolbar.tipInsertTextart": "Insereix Text Art", + "SSE.Views.Toolbar.tipMarkersArrow": "Pics de fletxa", + "SSE.Views.Toolbar.tipMarkersCheckmark": "Pics de marca de selecció", "SSE.Views.Toolbar.tipMerge": "Combina i centra", "SSE.Views.Toolbar.tipNumFormat": "Format de número", "SSE.Views.Toolbar.tipPageMargins": "Marges de la pàgina", @@ -3508,7 +3521,9 @@ "SSE.Views.ViewManagerDlg.warnDeleteView": "Intentes suprimir la visualització '%1' que està activada.
Vols tancar aquesta vista i suprimir-la?", "SSE.Views.ViewTab.capBtnFreeze": "Immobilitza les subfinestres", "SSE.Views.ViewTab.capBtnSheetView": "Visualització del full", + "SSE.Views.ViewTab.textAlwaysShowToolbar": "Mostra sempre la barra", "SSE.Views.ViewTab.textClose": "Tanca", + "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "Combina fulls de càlcul i barres d'estat", "SSE.Views.ViewTab.textCreate": "Crea", "SSE.Views.ViewTab.textDefault": "Per defecte", "SSE.Views.ViewTab.textFormula": "Barra de fórmules", diff --git a/apps/spreadsheeteditor/main/locale/cs.json b/apps/spreadsheeteditor/main/locale/cs.json index a11fd4f94..52f3c3250 100644 --- a/apps/spreadsheeteditor/main/locale/cs.json +++ b/apps/spreadsheeteditor/main/locale/cs.json @@ -114,6 +114,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Nová", "Common.UI.ExtendedColorDialog.textRGBErr": "Zadaná hodnota není správná.
Zadejte hodnotu z rozmezí 0 až 255.", "Common.UI.HSBColorPicker.textNoColor": "Bez barvy", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Skrýt heslo", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Zobrazit heslo", "Common.UI.SearchDialog.textHighlight": "Zvýraznit výsledky", "Common.UI.SearchDialog.textMatchCase": "Rozlišovat malá a velká písmena", "Common.UI.SearchDialog.textReplaceDef": "Zadejte text, kterým nahradit", @@ -178,12 +180,14 @@ "Common.Views.Comments.mniAuthorDesc": "Autor Z až A", "Common.Views.Comments.mniDateAsc": "Nejstarší", "Common.Views.Comments.mniDateDesc": "Nejnovější", + "Common.Views.Comments.mniFilterGroups": "Filtrovat podle skupiny", "Common.Views.Comments.mniPositionAsc": "Shora", "Common.Views.Comments.mniPositionDesc": "Zdola", "Common.Views.Comments.textAdd": "Přidat", "Common.Views.Comments.textAddComment": "Přidat", "Common.Views.Comments.textAddCommentToDoc": "Přidat komentář k dokumentu", "Common.Views.Comments.textAddReply": "Přidat odpověď", + "Common.Views.Comments.textAll": "Vše", "Common.Views.Comments.textAnonym": "Návštěvník", "Common.Views.Comments.textCancel": "Storno", "Common.Views.Comments.textClose": "Zavřít", @@ -197,6 +201,7 @@ "Common.Views.Comments.textResolve": "Vyřešit", "Common.Views.Comments.textResolved": "Vyřešeno", "Common.Views.Comments.textSort": "Řadit komentáře", + "Common.Views.Comments.textViewResolved": "Nemáte oprávnění pro opětovné otevírání komentářů", "Common.Views.CopyWarningDialog.textDontShow": "Tuto zprávu už nezobrazovat", "Common.Views.CopyWarningDialog.textMsg": "Akce kopírovat, vyjmout a vložit použitím lišty nástrojů editoru a kontextové nabídky budou prováděny pouze v tomto okně editoru.

Pro kopírování do nebo vkládání z aplikací mimo okno editoru použijte následující klávesové zkratky:", "Common.Views.CopyWarningDialog.textTitle": "Akce kopírovat, vyjmout a vložit", @@ -364,6 +369,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Znovu otevřít", "Common.Views.ReviewPopover.textReply": "Odpovědět", "Common.Views.ReviewPopover.textResolve": "Vyřešit", + "Common.Views.ReviewPopover.textViewResolved": "Nemáte oprávnění pro opětovné otevírání komentářů", "Common.Views.ReviewPopover.txtDeleteTip": "Odstranit", "Common.Views.ReviewPopover.txtEditTip": "Upravit", "Common.Views.SaveAsDlg.textLoading": "Načítá se", @@ -584,6 +590,7 @@ "SSE.Controllers.DocumentHolder.txtSorting": "Řazení", "SSE.Controllers.DocumentHolder.txtSortSelected": "Seřadit vybrané", "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Roztáhnout závorky", + "SSE.Controllers.DocumentHolder.txtThisRowHint": "Zvolte pouze tento řádek zadaného sloupce", "SSE.Controllers.DocumentHolder.txtTop": "Nahoře", "SSE.Controllers.DocumentHolder.txtUnderbar": "Čárka pod textem", "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Vzít zpět automatické rozšíření tabulky", @@ -754,6 +761,7 @@ "SSE.Controllers.Main.textConvertEquation": "Tato rovnice byla vytvořena starou verzí editoru rovnic, která už není podporovaná. Pro její upravení, převeďte rovnici do formátu Office Math ML.
Převést nyní?", "SSE.Controllers.Main.textCustomLoader": "Mějte na paměti, že dle podmínek licence nejste oprávněni měnit zavaděč.
Pro získání nabídky se obraťte na naše obchodní oddělení.", "SSE.Controllers.Main.textDisconnect": "Spojení je ztraceno", + "SSE.Controllers.Main.textFillOtherRows": "Vyplnit ostatní řádky", "SSE.Controllers.Main.textGuest": "Návštěvník", "SSE.Controllers.Main.textHasMacros": "Soubor obsahuje automatická makra.
Opravdu chcete makra spustit?", "SSE.Controllers.Main.textLearnMore": "Více informací", @@ -764,6 +772,7 @@ "SSE.Controllers.Main.textNoLicenseTitle": "Došlo k dosažení limitu licence", "SSE.Controllers.Main.textPaidFeature": "Placená funkce", "SSE.Controllers.Main.textPleaseWait": "Operace může trvat déle, než se předpokládalo. Prosím čekejte…", + "SSE.Controllers.Main.textReconnect": "Spojení je obnovené", "SSE.Controllers.Main.textRemember": "Zapamatovat si mou volbu pro všechny soubory", "SSE.Controllers.Main.textRenameError": "Jméno uživatele nesmí být prázdné. ", "SSE.Controllers.Main.textRenameLabel": "Zadejte jméno, které bude použito pro spolupráci", @@ -1055,6 +1064,7 @@ "SSE.Controllers.Statusbar.errorLastSheet": "Sešit musí mít alespoň jeden viditelný list", "SSE.Controllers.Statusbar.errorRemoveSheet": "List se nedaří smazat.", "SSE.Controllers.Statusbar.strSheet": "List", + "SSE.Controllers.Statusbar.textDisconnect": "Spojení je ztraceno
Pokus o opětovné připojení. Zkontrolujte nastavení připojení.", "SSE.Controllers.Statusbar.textSheetViewTip": "Jste v režimu náhledu listu. Filtry a řazení je viditelné pouze pro Vás a uživatele v tomto náhledu. ", "SSE.Controllers.Statusbar.textSheetViewTipFilters": "Jste v režimu náhledu listu. Filtry jsou viditelné pouze pro Vás a uživatele v tomto náhledu. ", "SSE.Controllers.Statusbar.warnDeleteSheet": "List může obsahovat data. Opravdu chcete pokračovat?", @@ -1080,6 +1090,7 @@ "SSE.Controllers.Toolbar.textPivot": "Kontingenční tabulka", "SSE.Controllers.Toolbar.textRadical": "Odmocniny", "SSE.Controllers.Toolbar.textRating": "Hodnocení", + "SSE.Controllers.Toolbar.textRecentlyUsed": "Nedávno použité", "SSE.Controllers.Toolbar.textScript": "Skripty", "SSE.Controllers.Toolbar.textShapes": "Obrazce", "SSE.Controllers.Toolbar.textSymbols": "Symboly", @@ -1421,7 +1432,9 @@ "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Oddělovač desetinných míst", "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Oddělovač tisíců", "SSE.Views.AdvancedSeparatorDialog.textLabel": "Nastavení použitá pro rozpoznání číselných dat", + "SSE.Views.AdvancedSeparatorDialog.textQualifier": "Textový kvalifikátor", "SSE.Views.AdvancedSeparatorDialog.textTitle": "Pokročilé nastavení", + "SSE.Views.AdvancedSeparatorDialog.txtNone": "(žádné)", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Uživatelsky určený filtr", "SSE.Views.AutoFilterDialog.textAddSelection": "Přidat aktuální výběr k filtrování", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Blanks}", @@ -1867,6 +1880,7 @@ "SSE.Views.DocumentHolder.textCrop": "Oříznout", "SSE.Views.DocumentHolder.textCropFill": "Výplň", "SSE.Views.DocumentHolder.textCropFit": "Přizpůsobit", + "SSE.Views.DocumentHolder.textEditPoints": "Upravit body", "SSE.Views.DocumentHolder.textEntriesList": "Vybrat z rozbalovacího seznamu", "SSE.Views.DocumentHolder.textFlipH": "Převrátit vodorovně", "SSE.Views.DocumentHolder.textFlipV": "Převrátit svisle", @@ -2236,6 +2250,7 @@ "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Upravit formátovací pravidlo", "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Nové formátovací pravidlo", "SSE.Views.FormatRulesManagerDlg.guestText": "Návštěvník", + "SSE.Views.FormatRulesManagerDlg.lockText": "Uzamčeno", "SSE.Views.FormatRulesManagerDlg.text1Above": "Na 1 standardní odchylka výše průměru", "SSE.Views.FormatRulesManagerDlg.text1Below": "Na 1 standardní odchylka níže průměru", "SSE.Views.FormatRulesManagerDlg.text2Above": "2 Směrodatná odchylka nad průměrem", @@ -2397,6 +2412,7 @@ "SSE.Views.ImageSettings.textCrop": "Oříznout", "SSE.Views.ImageSettings.textCropFill": "Výplň", "SSE.Views.ImageSettings.textCropFit": "Přizpůsobit", + "SSE.Views.ImageSettings.textCropToShape": "Oříznout podle tvaru", "SSE.Views.ImageSettings.textEdit": "Upravit", "SSE.Views.ImageSettings.textEditObject": "Upravit objekt", "SSE.Views.ImageSettings.textFlip": "Převrátit", @@ -2411,6 +2427,7 @@ "SSE.Views.ImageSettings.textInsert": "Nahradit obrázek", "SSE.Views.ImageSettings.textKeepRatio": "Konstantní rozměry", "SSE.Views.ImageSettings.textOriginalSize": "Skutečná velikost", + "SSE.Views.ImageSettings.textRecentlyUsed": "Nedávno použité", "SSE.Views.ImageSettings.textRotate90": "Otočit o 90°", "SSE.Views.ImageSettings.textRotation": "Otočení", "SSE.Views.ImageSettings.textSize": "Velikost", @@ -2488,6 +2505,7 @@ "SSE.Views.NamedRangePasteDlg.txtTitle": "Vložit název", "SSE.Views.NameManagerDlg.closeButtonText": "Zavřít", "SSE.Views.NameManagerDlg.guestText": "Návštěvník", + "SSE.Views.NameManagerDlg.lockText": "Uzamčeno", "SSE.Views.NameManagerDlg.textDataRange": "Rozsah dat", "SSE.Views.NameManagerDlg.textDelete": "Vymazat", "SSE.Views.NameManagerDlg.textEdit": "Upravit", @@ -2719,6 +2737,38 @@ "SSE.Views.PrintTitlesDialog.textSelectRange": "Vybrat rozsah", "SSE.Views.PrintTitlesDialog.textTitle": "Tisk názvů", "SSE.Views.PrintTitlesDialog.textTop": "Nahoře opakovat řádky", + "SSE.Views.PrintWithPreview.txtActualSize": "Skutečná velikost", + "SSE.Views.PrintWithPreview.txtAllSheets": "Všechny listy", + "SSE.Views.PrintWithPreview.txtApplyToAllSheets": "Uplatnit na všechny listy", + "SSE.Views.PrintWithPreview.txtBottom": "Dole", + "SSE.Views.PrintWithPreview.txtCurrentSheet": "Stávající list", + "SSE.Views.PrintWithPreview.txtCustom": "Uživatelsky určené", + "SSE.Views.PrintWithPreview.txtCustomOptions": "Uživatelsky určené předvolby", + "SSE.Views.PrintWithPreview.txtFitCols": "Přizpůsobit všechny sloupce na jedné stránce", + "SSE.Views.PrintWithPreview.txtFitPage": "Přizpůsobit list jedné stránce", + "SSE.Views.PrintWithPreview.txtFitRows": "Přizpůsobit všechny řádky na jedné stránce", + "SSE.Views.PrintWithPreview.txtIgnore": "Ignorovat oblast tisku", + "SSE.Views.PrintWithPreview.txtLandscape": "Na šířku", + "SSE.Views.PrintWithPreview.txtLeft": "Vlevo", + "SSE.Views.PrintWithPreview.txtMargins": "Okraje", + "SSE.Views.PrintWithPreview.txtOf": "z {0}", + "SSE.Views.PrintWithPreview.txtPage": "Stránka", + "SSE.Views.PrintWithPreview.txtPageNumInvalid": "Neplatné číslo stránky", + "SSE.Views.PrintWithPreview.txtPageOrientation": "Orientace stránky", + "SSE.Views.PrintWithPreview.txtPageSize": "Velikost stránky", + "SSE.Views.PrintWithPreview.txtPortrait": "Na výšku", + "SSE.Views.PrintWithPreview.txtPrint": "Tisk", + "SSE.Views.PrintWithPreview.txtPrintGrid": "Vytisknout mřížku", + "SSE.Views.PrintWithPreview.txtPrintHeadings": "Vytisknout záhlaví řádků a sloupců", + "SSE.Views.PrintWithPreview.txtPrintRange": "Rozsah tisku", + "SSE.Views.PrintWithPreview.txtPrintTitles": "Tisk názvů", + "SSE.Views.PrintWithPreview.txtRepeat": "Opakovat…", + "SSE.Views.PrintWithPreview.txtSave": "Uložit", + "SSE.Views.PrintWithPreview.txtScaling": "Změna měřítka", + "SSE.Views.PrintWithPreview.txtSelection": "Výběr", + "SSE.Views.PrintWithPreview.txtSettingsOfSheet": "Nastavení listu", + "SSE.Views.PrintWithPreview.txtSheet": "List: {0}", + "SSE.Views.PrintWithPreview.txtTop": "Nahoře", "SSE.Views.ProtectDialog.textExistName": "CHYBA! Rozsah s takovým názvem už existuje", "SSE.Views.ProtectDialog.textInvalidName": "Název musí začínat písmenem a musí obsahovat pouze písmena, čísla nebo mezery.", "SSE.Views.ProtectDialog.textInvalidRange": "CHYBA! Neplatný rozsah buněk", @@ -2753,6 +2803,7 @@ "SSE.Views.ProtectDialog.txtWBDescription": "Můžete použít heslo k zabránění zobrazení, přidávání, posouvání, odstranění, skrytí, nebo přejmenování souboru jinými uživateli. ", "SSE.Views.ProtectDialog.txtWBTitle": "Zabezpečit strukturu sešitu", "SSE.Views.ProtectRangesDlg.guestText": "Návštěvník", + "SSE.Views.ProtectRangesDlg.lockText": "Uzamčeno", "SSE.Views.ProtectRangesDlg.textDelete": "Odstranit", "SSE.Views.ProtectRangesDlg.textEdit": "Upravit", "SSE.Views.ProtectRangesDlg.textEmpty": "Nejsou povoleny žádné rozsahy pro úpravy.", @@ -2832,6 +2883,7 @@ "SSE.Views.ShapeSettings.textPatternFill": "Vzor", "SSE.Views.ShapeSettings.textPosition": "Pozice", "SSE.Views.ShapeSettings.textRadial": "Kruhový", + "SSE.Views.ShapeSettings.textRecentlyUsed": "Nedávno použité", "SSE.Views.ShapeSettings.textRotate90": "Otočit o 90°", "SSE.Views.ShapeSettings.textRotation": "Otočení", "SSE.Views.ShapeSettings.textSelectImage": "Vybrat obrázek", @@ -3093,6 +3145,7 @@ "SSE.Views.Statusbar.tipAddTab": "Přidat list", "SSE.Views.Statusbar.tipFirst": "Přejít na první list", "SSE.Views.Statusbar.tipLast": "Přejít na poslední list", + "SSE.Views.Statusbar.tipListOfSheets": "Seznam listů", "SSE.Views.Statusbar.tipNext": "Posunout seznam listů doprava", "SSE.Views.Statusbar.tipPrev": "Posunout seznam listů doleva", "SSE.Views.Statusbar.tipZoomFactor": "Měřítko zobrazení", @@ -3200,7 +3253,7 @@ "SSE.Views.Toolbar.capBtnAddComment": "Přidat komentář", "SSE.Views.Toolbar.capBtnColorSchemas": "Barva schématu", "SSE.Views.Toolbar.capBtnComment": "Komentář", - "SSE.Views.Toolbar.capBtnInsHeader": "Záhlaví/Zápatí", + "SSE.Views.Toolbar.capBtnInsHeader": "Záhlaví a zápatí", "SSE.Views.Toolbar.capBtnInsSlicer": "Průřez", "SSE.Views.Toolbar.capBtnInsSymbol": "Symbol", "SSE.Views.Toolbar.capBtnMargins": "Okraje", @@ -3281,6 +3334,8 @@ "SSE.Views.Toolbar.textPageMarginsCustom": "Uživatelsky určené okraje", "SSE.Views.Toolbar.textPortrait": "Na výšku", "SSE.Views.Toolbar.textPrint": "Tisk", + "SSE.Views.Toolbar.textPrintGridlines": "Vytisknout mřížku", + "SSE.Views.Toolbar.textPrintHeadings": "Tisk záhlaví", "SSE.Views.Toolbar.textPrintOptions": "Nastavení tisku", "SSE.Views.Toolbar.textRight": "Vpravo:", "SSE.Views.Toolbar.textRightBorders": "Ohraničení vpravo", @@ -3359,7 +3414,15 @@ "SSE.Views.Toolbar.tipInsertTable": "Vložit tabulku", "SSE.Views.Toolbar.tipInsertText": "Vložit textové pole", "SSE.Views.Toolbar.tipInsertTextart": "Vložit Text art", + "SSE.Views.Toolbar.tipMarkersArrow": "Šipkové odrážky", + "SSE.Views.Toolbar.tipMarkersCheckmark": "Zatržítkové odrážky", + "SSE.Views.Toolbar.tipMarkersDash": "Pomlčkové odrážky", + "SSE.Views.Toolbar.tipMarkersFRhombus": "Kosočtvercové odrážky s výplní", + "SSE.Views.Toolbar.tipMarkersFRound": "Vyplněné kulaté odrážky", + "SSE.Views.Toolbar.tipMarkersFSquare": "Plné čtvercové odrážky", + "SSE.Views.Toolbar.tipMarkersStar": "Hvězdičkové odrážky", "SSE.Views.Toolbar.tipMerge": "Sloučit a vystředit", + "SSE.Views.Toolbar.tipNone": "Žádné", "SSE.Views.Toolbar.tipNumFormat": "Formát čísla", "SSE.Views.Toolbar.tipPageMargins": "Okraje stránky", "SSE.Views.Toolbar.tipPageOrient": "Orientace stránky", @@ -3488,6 +3551,7 @@ "SSE.Views.ValueFieldSettingsDialog.txtVarp": "Varp", "SSE.Views.ViewManagerDlg.closeButtonText": "Zavřít", "SSE.Views.ViewManagerDlg.guestText": "Návštěvník", + "SSE.Views.ViewManagerDlg.lockText": "Uzamčeno", "SSE.Views.ViewManagerDlg.textDelete": "Smazat", "SSE.Views.ViewManagerDlg.textDuplicate": "Duplikovat", "SSE.Views.ViewManagerDlg.textEmpty": "Žádné zobrazení nebyly prozatím vytvořeny.", @@ -3503,7 +3567,9 @@ "SSE.Views.ViewManagerDlg.warnDeleteView": "Pokoušíte se smazat aktuálně zapnuté zobrazení'%1'.
Opravdu chcete toto zobrazení zavřít a smazat?", "SSE.Views.ViewTab.capBtnFreeze": "Ukotvit příčky", "SSE.Views.ViewTab.capBtnSheetView": "Zobrazení sešitu", + "SSE.Views.ViewTab.textAlwaysShowToolbar": "Vždy zobrazovat panel nástrojů", "SSE.Views.ViewTab.textClose": "Zavřít", + "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "Zkombinovat lišty listů a stavu", "SSE.Views.ViewTab.textCreate": "Nový", "SSE.Views.ViewTab.textDefault": "Výchozí", "SSE.Views.ViewTab.textFormula": "Lišta vzorce", @@ -3511,7 +3577,9 @@ "SSE.Views.ViewTab.textFreezeRow": "Ukotvit horní řádek", "SSE.Views.ViewTab.textGridlines": "Mřížky", "SSE.Views.ViewTab.textHeadings": "Nadpisy", + "SSE.Views.ViewTab.textInterfaceTheme": "Vzhled uživatelského rozhraní", "SSE.Views.ViewTab.textManager": "Správce zobrazení", + "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Zobrazit stín ukotvených příček", "SSE.Views.ViewTab.textUnFreeze": "Zrušit ukotvení příček", "SSE.Views.ViewTab.textZeros": "Zobrazit nuly", "SSE.Views.ViewTab.textZoom": "Přiblížit", diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 7c9036c81..816e3b44e 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -2755,7 +2755,7 @@ "SSE.Views.PrintWithPreview.txtCustomOptions": "Custom Options", "SSE.Views.PrintWithPreview.txtFitCols": "Fit All Columns on One Page", "SSE.Views.PrintWithPreview.txtFitPage": "Fit Sheet on One Page", - "SSE.Views.PrintWithPreview.txtFitRows": "Fit All Rows on One Pag", + "SSE.Views.PrintWithPreview.txtFitRows": "Fit All Rows on One Page", "SSE.Views.PrintWithPreview.txtGridlinesAndHeadings": "Gridlines and headings", "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Header/footer settings", "SSE.Views.PrintWithPreview.txtIgnore": "Ignore print area", @@ -2770,7 +2770,7 @@ "SSE.Views.PrintWithPreview.txtPortrait": "Portrait", "SSE.Views.PrintWithPreview.txtPrint": "Print", "SSE.Views.PrintWithPreview.txtPrintGrid": "Print gridlines", - "SSE.Views.PrintWithPreview.txtPrintHeadings": "Print row and columns headings", + "SSE.Views.PrintWithPreview.txtPrintHeadings": "Print row and column headings", "SSE.Views.PrintWithPreview.txtPrintRange": "Print range", "SSE.Views.PrintWithPreview.txtPrintTitles": "Print titles", "SSE.Views.PrintWithPreview.txtRepeat": "Repeat...", diff --git a/apps/spreadsheeteditor/main/locale/pl.json b/apps/spreadsheeteditor/main/locale/pl.json index 2717a99d7..f5ab82322 100644 --- a/apps/spreadsheeteditor/main/locale/pl.json +++ b/apps/spreadsheeteditor/main/locale/pl.json @@ -114,6 +114,7 @@ "Common.UI.ExtendedColorDialog.textNew": "Nowy", "Common.UI.ExtendedColorDialog.textRGBErr": "Wprowadzona wartość jest nieprawidłowa.
Wprowadź wartość liczbową w zakresie od 0 do 255.", "Common.UI.HSBColorPicker.textNoColor": "Bez koloru", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Ukryj hasło", "Common.UI.SearchDialog.textHighlight": "Podświetl wyniki", "Common.UI.SearchDialog.textMatchCase": "Rozróżniana wielkość liter", "Common.UI.SearchDialog.textReplaceDef": "Wprowadź tekst zastępczy", @@ -184,6 +185,7 @@ "Common.Views.Comments.textAddComment": "Dodaj komentarz", "Common.Views.Comments.textAddCommentToDoc": "Dodaj komentarz do", "Common.Views.Comments.textAddReply": "Dodaj odpowiedź", + "Common.Views.Comments.textAll": "Wszystko", "Common.Views.Comments.textAnonym": "Gość", "Common.Views.Comments.textCancel": "Anuluj", "Common.Views.Comments.textClose": "Zamknij", @@ -197,6 +199,7 @@ "Common.Views.Comments.textResolve": "Rozwiąż", "Common.Views.Comments.textResolved": "Rozwiązany", "Common.Views.Comments.textSort": "Sortuj komentarze", + "Common.Views.Comments.textViewResolved": "Nie masz uprawnień do ponownego otwarcia komentarza", "Common.Views.CopyWarningDialog.textDontShow": "Nie pokazuj tej wiadomości ponownie", "Common.Views.CopyWarningDialog.textMsg": "Kopiowanie, wycinanie i wklejanie za pomocą przycisków edytora i działań menu kontekstowego zostanie przeprowadzone tylko w tej karcie edytora.

Aby skopiować lub wkleić do lub z aplikacji poza kartą edytora, użyj następujących kombinacji klawiszy:", "Common.Views.CopyWarningDialog.textTitle": "Kopiuj, Wytnij i Wklej", @@ -364,6 +367,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Otwórz ponownie", "Common.Views.ReviewPopover.textReply": "Odpowiedzieć", "Common.Views.ReviewPopover.textResolve": "Rozwiąż", + "Common.Views.ReviewPopover.textViewResolved": "Nie masz uprawnień do ponownego otwarcia komentarza", "Common.Views.ReviewPopover.txtDeleteTip": "Usuń", "Common.Views.ReviewPopover.txtEditTip": "Edytuj", "Common.Views.SaveAsDlg.textLoading": "Ładowanie", @@ -639,6 +643,7 @@ "SSE.Controllers.Main.errorAutoFilterHiddenRange": "Operacja nie może zostać wykonana, ponieważ obszar zawiera filtrowane komórki.
Proszę ukryj filtrowane elementy i spróbuj ponownie.", "SSE.Controllers.Main.errorBadImageUrl": "Adres URL obrazu jest błędny", "SSE.Controllers.Main.errorCannotUngroup": "Nie można rozgrupować. Aby rozpocząć konspekt, wybierz wiersze lub kolumny szczegółów i zgrupuj je.", + "SSE.Controllers.Main.errorCannotUseCommandProtectedSheet": "Nie możesz użyć tego polecenia na chronionym arkuszu. Aby użyć tego polecenia, wyłącz ochronę arkusza.
Możesz zostać poproszony o podanie hasła.", "SSE.Controllers.Main.errorChangeArray": "Nie można zmienić części tablicy.", "SSE.Controllers.Main.errorChangeFilteredRange": "Spowoduje to zmianę filtrowanego zakresu w arkuszu.
Aby wykonać to zadanie, usuń Autofiltry.", "SSE.Controllers.Main.errorChangeOnProtectedSheet": "Komórka lub wykres, który próbujesz zmienić, znajduje się w chronionym arkuszu.
Aby wprowadzić zmianę, usuń ochronę arkusza. Możesz zostać poproszony o podanie hasła.", @@ -754,6 +759,8 @@ "SSE.Controllers.Main.textConvertEquation": "To równanie zostało utworzone za pomocą starej wersji edytora równań, która nie jest już obsługiwana. Aby je edytować, przekonwertuj równanie na format Office Math ML.
Przekonwertować teraz?", "SSE.Controllers.Main.textCustomLoader": "Należy pamiętać, że zgodnie z warunkami licencji nie jesteś uprawniony do zmiany ładowania.
W celu uzyskania wyceny prosimy o kontakt z naszym Działem Sprzedaży.", "SSE.Controllers.Main.textDisconnect": "Połączenie zostało utracone", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherHaveData": "Formuła wypełniona tylko pierwszymi wierszami {0} zawiera dane według przyczyny zapisania w pamięci. W tym arkuszu znajdują się inne {1} wiersze zawierające dane. Możesz je wypełnić ręcznie.", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherIsEmpty": "Formuła wypełniła tylko pierwsze {0} wierszy według przyczyny zapisania w pamięci. Inne wiersze w tym arkuszu nie zawierają danych.", "SSE.Controllers.Main.textGuest": "Gość", "SSE.Controllers.Main.textHasMacros": "Plik zawiera automatyczne makra.
Czy chcesz uruchomić makra?", "SSE.Controllers.Main.textLearnMore": "Dowiedz się więcej", @@ -1080,6 +1087,7 @@ "SSE.Controllers.Toolbar.textPivot": "Tabela przestawna", "SSE.Controllers.Toolbar.textRadical": "Pierwiastki", "SSE.Controllers.Toolbar.textRating": "Oceny", + "SSE.Controllers.Toolbar.textRecentlyUsed": "Ostatnio używane", "SSE.Controllers.Toolbar.textScript": "Pisma", "SSE.Controllers.Toolbar.textShapes": "Kształty", "SSE.Controllers.Toolbar.textSymbols": "Symbole", @@ -1422,6 +1430,7 @@ "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Separator tysięcy", "SSE.Views.AdvancedSeparatorDialog.textLabel": "Ustawienia używane do rozpoznawania danych liczbowych", "SSE.Views.AdvancedSeparatorDialog.textTitle": "Zaawansowane ustawienia", + "SSE.Views.AdvancedSeparatorDialog.txtNone": "(brak)", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Niestandardowy filtr", "SSE.Views.AutoFilterDialog.textAddSelection": "Dodaj bieżący wybór do filtrowania", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Puste}", @@ -2236,6 +2245,7 @@ "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Zmiana reguły formatowania", "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Nowa reguła formatowania", "SSE.Views.FormatRulesManagerDlg.guestText": "Gość", + "SSE.Views.FormatRulesManagerDlg.lockText": "Zablokowany", "SSE.Views.FormatRulesManagerDlg.text1Above": "Na 1 odchylenie standardowe powyżej średniej", "SSE.Views.FormatRulesManagerDlg.text1Below": "Na 1 odchylenie standardowe poniżej średniej", "SSE.Views.FormatRulesManagerDlg.text2Above": "Na 2 odchylenia standardowe powyżej średniej", @@ -2397,6 +2407,7 @@ "SSE.Views.ImageSettings.textCrop": "Przytnij", "SSE.Views.ImageSettings.textCropFill": "Wypełnij", "SSE.Views.ImageSettings.textCropFit": "Dopasuj", + "SSE.Views.ImageSettings.textCropToShape": "Przytnij do kształtu", "SSE.Views.ImageSettings.textEdit": "Edycja", "SSE.Views.ImageSettings.textEditObject": "Edytuj obiekt", "SSE.Views.ImageSettings.textFlip": "Przerzuć", @@ -2411,6 +2422,7 @@ "SSE.Views.ImageSettings.textInsert": "Zamień obraz", "SSE.Views.ImageSettings.textKeepRatio": "Stałe proporcje", "SSE.Views.ImageSettings.textOriginalSize": "Rzeczywisty rozmiar", + "SSE.Views.ImageSettings.textRecentlyUsed": "Ostatnio używane", "SSE.Views.ImageSettings.textRotate90": "Obróć o 90°", "SSE.Views.ImageSettings.textRotation": "Obróć", "SSE.Views.ImageSettings.textSize": "Rozmiar", @@ -2488,6 +2500,7 @@ "SSE.Views.NamedRangePasteDlg.txtTitle": "Wklej zakres", "SSE.Views.NameManagerDlg.closeButtonText": "Zamknij", "SSE.Views.NameManagerDlg.guestText": "Gość", + "SSE.Views.NameManagerDlg.lockText": "Zablokowany", "SSE.Views.NameManagerDlg.textDataRange": "Zakres danych", "SSE.Views.NameManagerDlg.textDelete": "Usuń", "SSE.Views.NameManagerDlg.textEdit": "Edycja", @@ -2719,6 +2732,25 @@ "SSE.Views.PrintTitlesDialog.textSelectRange": "Wybierz zakres", "SSE.Views.PrintTitlesDialog.textTitle": "Wydrukuj tytuły", "SSE.Views.PrintTitlesDialog.textTop": "Powtórz wiersze z góry", + "SSE.Views.PrintWithPreview.txtActualSize": "Rzeczywisty rozmiar", + "SSE.Views.PrintWithPreview.txtAllSheets": "Wszystkie arkusze", + "SSE.Views.PrintWithPreview.txtApplyToAllSheets": "Zastosuj do wszystkich arkuszy", + "SSE.Views.PrintWithPreview.txtCurrentSheet": "Obecny arkusz", + "SSE.Views.PrintWithPreview.txtCustomOptions": "Opcje niestandardowe", + "SSE.Views.PrintWithPreview.txtFitPage": "Dopasuj arkusz na jednej stronie", + "SSE.Views.PrintWithPreview.txtLandscape": "Pozioma", + "SSE.Views.PrintWithPreview.txtMargins": "Marginesy", + "SSE.Views.PrintWithPreview.txtPageOrientation": "Orientacja strony", + "SSE.Views.PrintWithPreview.txtPageSize": "Rozmiar strony", + "SSE.Views.PrintWithPreview.txtPortrait": "Pionowa", + "SSE.Views.PrintWithPreview.txtPrint": "Drukuj", + "SSE.Views.PrintWithPreview.txtPrintGrid": "Drukuj siatkę", + "SSE.Views.PrintWithPreview.txtPrintRange": "Zakres wydruku", + "SSE.Views.PrintWithPreview.txtPrintTitles": "Wydrukuj tytuły", + "SSE.Views.PrintWithPreview.txtRepeat": "Powtarzać...", + "SSE.Views.PrintWithPreview.txtSave": "Zapisz", + "SSE.Views.PrintWithPreview.txtSettingsOfSheet": "Ustawienia arkusza", + "SSE.Views.PrintWithPreview.txtSheet": "Arkusz: {0}", "SSE.Views.ProtectDialog.textExistName": "BŁĄD! Zakres o takim tytule już istnieje", "SSE.Views.ProtectDialog.textInvalidName": "Nazwy zakresów muszą zaczynać się od litery i mogą zawierać tylko litery, cyfry i spacje.", "SSE.Views.ProtectDialog.textInvalidRange": "BŁĄD! Niepoprawny zakres komórek", @@ -2753,6 +2785,7 @@ "SSE.Views.ProtectDialog.txtWBDescription": "Aby uniemożliwić innym użytkownikom wyświetlanie ukrytych arkuszy, dodawanie, przenoszenie, usuwanie lub ukrywanie arkuszy oraz zmianę nazwy arkuszy, możesz zabezpieczyć hasłem strukturę skoroszytu.", "SSE.Views.ProtectDialog.txtWBTitle": "Chroń strukturę skoroszytu", "SSE.Views.ProtectRangesDlg.guestText": "Gość", + "SSE.Views.ProtectRangesDlg.lockText": "Zablokowany", "SSE.Views.ProtectRangesDlg.textDelete": "Usuń", "SSE.Views.ProtectRangesDlg.textEdit": "Edytuj", "SSE.Views.ProtectRangesDlg.textEmpty": "Brak zakresów dozwolonych do edycji.", @@ -2832,6 +2865,7 @@ "SSE.Views.ShapeSettings.textPatternFill": "Wzór", "SSE.Views.ShapeSettings.textPosition": "Pozycja", "SSE.Views.ShapeSettings.textRadial": "Promieniowy", + "SSE.Views.ShapeSettings.textRecentlyUsed": "Ostatnio używane", "SSE.Views.ShapeSettings.textRotate90": "Obróć o 90°", "SSE.Views.ShapeSettings.textRotation": "Obróć", "SSE.Views.ShapeSettings.textSelectImage": "Wybierz zdjęcie", @@ -3093,6 +3127,7 @@ "SSE.Views.Statusbar.tipAddTab": "Dodaj arkusz", "SSE.Views.Statusbar.tipFirst": "Przewiń do pierwszego arkusza", "SSE.Views.Statusbar.tipLast": "Przewiń do ostatniego arkusza", + "SSE.Views.Statusbar.tipListOfSheets": "Lista Arkuszy", "SSE.Views.Statusbar.tipNext": "Przesuń listę arkuszy w prawo", "SSE.Views.Statusbar.tipPrev": "Przesuń listę arkuszy w lewo", "SSE.Views.Statusbar.tipZoomFactor": "Powiększenie", @@ -3360,6 +3395,7 @@ "SSE.Views.Toolbar.tipInsertText": "Wstaw pole tekstowe", "SSE.Views.Toolbar.tipInsertTextart": "Wstaw tekst", "SSE.Views.Toolbar.tipMerge": "Scal i wyśrodkuj", + "SSE.Views.Toolbar.tipNone": "Brak", "SSE.Views.Toolbar.tipNumFormat": "Format numeru", "SSE.Views.Toolbar.tipPageMargins": "Marginesy strony", "SSE.Views.Toolbar.tipPageOrient": "Orientacja strony", @@ -3488,6 +3524,7 @@ "SSE.Views.ValueFieldSettingsDialog.txtVarp": "Varp", "SSE.Views.ViewManagerDlg.closeButtonText": "Zamknij", "SSE.Views.ViewManagerDlg.guestText": "Gość", + "SSE.Views.ViewManagerDlg.lockText": "Zablokowany", "SSE.Views.ViewManagerDlg.textDelete": "Usuń", "SSE.Views.ViewManagerDlg.textDuplicate": "Duplikuj", "SSE.Views.ViewManagerDlg.textEmpty": "Widoki nie zostały jeszcze utworzone.", @@ -3504,6 +3541,7 @@ "SSE.Views.ViewTab.capBtnFreeze": "Zablokuj panele", "SSE.Views.ViewTab.capBtnSheetView": "Prezentacja arkusza", "SSE.Views.ViewTab.textClose": "Zamknij", + "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "Połącz arkusze i pasek stanu", "SSE.Views.ViewTab.textCreate": "Nowy", "SSE.Views.ViewTab.textDefault": "Domyślny", "SSE.Views.ViewTab.textFormula": "Pasek formuły", diff --git a/apps/spreadsheeteditor/main/locale/pt.json b/apps/spreadsheeteditor/main/locale/pt.json index 01f84333e..169bfc42f 100644 --- a/apps/spreadsheeteditor/main/locale/pt.json +++ b/apps/spreadsheeteditor/main/locale/pt.json @@ -3428,6 +3428,14 @@ "SSE.Views.Toolbar.tipInsertTable": "Inserir tabela", "SSE.Views.Toolbar.tipInsertText": "Inserir caixa de texto", "SSE.Views.Toolbar.tipInsertTextart": "Inserir arte de texto", + "SSE.Views.Toolbar.tipMarkersArrow": "balas de flecha", + "SSE.Views.Toolbar.tipMarkersCheckmark": "marcas de verificação", + "SSE.Views.Toolbar.tipMarkersDash": "marcadores de roteiro", + "SSE.Views.Toolbar.tipMarkersFRhombus": "vinhetas rômbicas cheias", + "SSE.Views.Toolbar.tipMarkersFRound": "balas redondas cheias", + "SSE.Views.Toolbar.tipMarkersFSquare": "balas quadradas cheias", + "SSE.Views.Toolbar.tipMarkersHRound": "balas redondas ocas", + "SSE.Views.Toolbar.tipMarkersStar": "balas de estrelas", "SSE.Views.Toolbar.tipMerge": "Mesclar e centralizar", "SSE.Views.Toolbar.tipNone": "Nenhum", "SSE.Views.Toolbar.tipNumFormat": "Formato de número", diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json index 9a05dd48c..5165dd853 100644 --- a/apps/spreadsheeteditor/main/locale/ru.json +++ b/apps/spreadsheeteditor/main/locale/ru.json @@ -180,12 +180,14 @@ "Common.Views.Comments.mniAuthorDesc": "По автору от Я до А", "Common.Views.Comments.mniDateAsc": "От старых к новым", "Common.Views.Comments.mniDateDesc": "От новых к старым", + "Common.Views.Comments.mniFilterGroups": "Фильтровать по группе", "Common.Views.Comments.mniPositionAsc": "Сверху вниз", "Common.Views.Comments.mniPositionDesc": "Снизу вверх", "Common.Views.Comments.textAdd": "Добавить", "Common.Views.Comments.textAddComment": "Добавить", "Common.Views.Comments.textAddCommentToDoc": "Добавить комментарий к документу", "Common.Views.Comments.textAddReply": "Добавить ответ", + "Common.Views.Comments.textAll": "Все", "Common.Views.Comments.textAnonym": "Гость", "Common.Views.Comments.textCancel": "Отмена", "Common.Views.Comments.textClose": "Закрыть", @@ -199,6 +201,7 @@ "Common.Views.Comments.textResolve": "Решить", "Common.Views.Comments.textResolved": "Решено", "Common.Views.Comments.textSort": "Сортировать комментарии", + "Common.Views.Comments.textViewResolved": "У вас нет прав для повторного открытия комментария", "Common.Views.CopyWarningDialog.textDontShow": "Больше не показывать это сообщение", "Common.Views.CopyWarningDialog.textMsg": "Операции копирования, вырезания и вставки можно выполнить с помощью кнопок на панели инструментов и команд контекстного меню только в этой вкладке редактора.

Для копирования в другие приложения и вставки из них используйте следующие сочетания клавиш:", "Common.Views.CopyWarningDialog.textTitle": "Операции копирования, вырезания и вставки", @@ -366,6 +369,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Открыть снова", "Common.Views.ReviewPopover.textReply": "Ответить", "Common.Views.ReviewPopover.textResolve": "Решить", + "Common.Views.ReviewPopover.textViewResolved": "У вас нет прав для повторного открытия комментария", "Common.Views.ReviewPopover.txtDeleteTip": "Удалить", "Common.Views.ReviewPopover.txtEditTip": "Редактировать", "Common.Views.SaveAsDlg.textLoading": "Загрузка", @@ -476,6 +480,7 @@ "SSE.Controllers.DocumentHolder.txtAddVer": "Добавить вертикальную линию", "SSE.Controllers.DocumentHolder.txtAlignToChar": "Выравнивание по символу", "SSE.Controllers.DocumentHolder.txtAll": "(Все)", + "SSE.Controllers.DocumentHolder.txtAllTableHint": "Возвращает все содержимое таблицы или указанные столбцы таблицы, включая заголовки столбцов, данные и строки итогов", "SSE.Controllers.DocumentHolder.txtAnd": "и", "SSE.Controllers.DocumentHolder.txtBegins": "Начинается с", "SSE.Controllers.DocumentHolder.txtBelowAve": "Ниже среднего", @@ -485,6 +490,7 @@ "SSE.Controllers.DocumentHolder.txtColumn": "Столбец", "SSE.Controllers.DocumentHolder.txtColumnAlign": "Выравнивание столбца", "SSE.Controllers.DocumentHolder.txtContains": "Содержит", + "SSE.Controllers.DocumentHolder.txtDataTableHint": "Возвращает ячейки данных из таблицы или указанных столбцов таблицы", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Уменьшить размер аргумента", "SSE.Controllers.DocumentHolder.txtDeleteArg": "Удалить аргумент", "SSE.Controllers.DocumentHolder.txtDeleteBreak": "Удалить принудительный разрыв", @@ -508,6 +514,7 @@ "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Больше или равно", "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Символ над текстом", "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Символ под текстом", + "SSE.Controllers.DocumentHolder.txtHeadersTableHint": "Возвращает заголовки столбцов из таблицы или указанных столбцов таблицы", "SSE.Controllers.DocumentHolder.txtHeight": "Высота", "SSE.Controllers.DocumentHolder.txtHideBottom": "Скрыть нижнюю границу", "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "Скрыть нижний предел", @@ -586,7 +593,9 @@ "SSE.Controllers.DocumentHolder.txtSorting": "Сортировка", "SSE.Controllers.DocumentHolder.txtSortSelected": "Сортировать выделенное", "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Растянуть скобки", + "SSE.Controllers.DocumentHolder.txtThisRowHint": "Выбрать только эту строку указанного столбца", "SSE.Controllers.DocumentHolder.txtTop": "По верхнему краю", + "SSE.Controllers.DocumentHolder.txtTotalsTableHint": "Возвращает строки итогов из таблицы или указанных столбцов таблицы", "SSE.Controllers.DocumentHolder.txtUnderbar": "Черта под текстом", "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Отменить авторазвертывание таблицы", "SSE.Controllers.DocumentHolder.txtUseTextImport": "Использовать мастер импорта текста", @@ -641,6 +650,7 @@ "SSE.Controllers.Main.errorAutoFilterHiddenRange": "Операция не может быть произведена, так как область содержит отфильтрованные ячейки.
Выведите на экран скрытые фильтром элементы и повторите попытку.", "SSE.Controllers.Main.errorBadImageUrl": "Неправильный URL-адрес изображения", "SSE.Controllers.Main.errorCannotUngroup": "Невозможно разгруппировать. Чтобы создать структуру документа, выделите столбцы или строки и сгруппируйте их.", + "SSE.Controllers.Main.errorCannotUseCommandProtectedSheet": "Данную команду нельзя использовать на защищенном листе. Необходимо сначала снять защиту листа.
Возможно, потребуется ввести пароль.", "SSE.Controllers.Main.errorChangeArray": "Нельзя изменить часть массива.", "SSE.Controllers.Main.errorChangeFilteredRange": "Это приведет к изменению отфильтрованного диапазона листа.
Чтобы выполнить эту задачу, необходимо удалить автофильтры.", "SSE.Controllers.Main.errorChangeOnProtectedSheet": "Ячейка или диаграмма, которую вы пытаетесь изменить, находится на защищенном листе.
Чтобы внести изменения, снимите защиту листа. Возможно, потребуется ввести пароль.", @@ -771,6 +781,7 @@ "SSE.Controllers.Main.textNoLicenseTitle": "Лицензионное ограничение", "SSE.Controllers.Main.textPaidFeature": "Платная функция", "SSE.Controllers.Main.textPleaseWait": "Операция может занять больше времени, чем предполагалось. Пожалуйста, подождите...", + "SSE.Controllers.Main.textReconnect": "Соединение восстановлено", "SSE.Controllers.Main.textRemember": "Запомнить мой выбор для всех файлов", "SSE.Controllers.Main.textRenameError": "Имя пользователя не должно быть пустым.", "SSE.Controllers.Main.textRenameLabel": "Введите имя, которое будет использоваться для совместной работы", @@ -1062,6 +1073,7 @@ "SSE.Controllers.Statusbar.errorLastSheet": "Рабочая книга должна содержать не менее одного видимого рабочего листа.", "SSE.Controllers.Statusbar.errorRemoveSheet": "Не удалось удалить лист.", "SSE.Controllers.Statusbar.strSheet": "Лист", + "SSE.Controllers.Statusbar.textDisconnect": "Соединение потеряно
Попытка подключения. Проверьте настройки подключения.", "SSE.Controllers.Statusbar.textSheetViewTip": "Вы находитесь в режиме представления листа. Фильтры и сортировка видны только вам и тем, кто также находится в этом представлении.", "SSE.Controllers.Statusbar.textSheetViewTipFilters": "Вы находитесь в режиме представления листа. Фильтры видны только вам и тем, кто также находится в этом представлении.", "SSE.Controllers.Statusbar.warnDeleteSheet": "Выбранный рабочий лист может содержать данные. Вы действительно хотите продолжить?", @@ -1429,6 +1441,7 @@ "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Десятичный разделитель", "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Разделитель разрядов тысяч", "SSE.Views.AdvancedSeparatorDialog.textLabel": "Настройка определения числовых данных", + "SSE.Views.AdvancedSeparatorDialog.textQualifier": "Классификатор текста", "SSE.Views.AdvancedSeparatorDialog.textTitle": "Дополнительные параметры", "SSE.Views.AdvancedSeparatorDialog.txtNone": "(нет)", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Пользовательский", @@ -1876,6 +1889,7 @@ "SSE.Views.DocumentHolder.textCrop": "Обрезать", "SSE.Views.DocumentHolder.textCropFill": "Заливка", "SSE.Views.DocumentHolder.textCropFit": "Вписать", + "SSE.Views.DocumentHolder.textEditPoints": "Изменить точки", "SSE.Views.DocumentHolder.textEntriesList": "Выбрать из списка", "SSE.Views.DocumentHolder.textFlipH": "Отразить слева направо", "SSE.Views.DocumentHolder.textFlipV": "Отразить сверху вниз", @@ -2245,6 +2259,7 @@ "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Изменение правила форматирования", "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Новое правило форматирования", "SSE.Views.FormatRulesManagerDlg.guestText": "Гость", + "SSE.Views.FormatRulesManagerDlg.lockText": "Заблокирован", "SSE.Views.FormatRulesManagerDlg.text1Above": "На 1 стандартное отклонение выше среднего", "SSE.Views.FormatRulesManagerDlg.text1Below": "На 1 стандартное отклонение ниже среднего", "SSE.Views.FormatRulesManagerDlg.text2Above": "На 2 стандартных отклонения выше среднего", @@ -2406,6 +2421,7 @@ "SSE.Views.ImageSettings.textCrop": "Обрезать", "SSE.Views.ImageSettings.textCropFill": "Заливка", "SSE.Views.ImageSettings.textCropFit": "Вписать", + "SSE.Views.ImageSettings.textCropToShape": "Обрезать по фигуре", "SSE.Views.ImageSettings.textEdit": "Редактировать", "SSE.Views.ImageSettings.textEditObject": "Редактировать объект", "SSE.Views.ImageSettings.textFlip": "Отразить", @@ -2498,6 +2514,7 @@ "SSE.Views.NamedRangePasteDlg.txtTitle": "Вставка имени", "SSE.Views.NameManagerDlg.closeButtonText": "Закрыть", "SSE.Views.NameManagerDlg.guestText": "Гость", + "SSE.Views.NameManagerDlg.lockText": "Заблокирован", "SSE.Views.NameManagerDlg.textDataRange": "Диапазон данных", "SSE.Views.NameManagerDlg.textDelete": "Удалить", "SSE.Views.NameManagerDlg.textEdit": "Изменить", @@ -2731,21 +2748,41 @@ "SSE.Views.PrintTitlesDialog.textTop": "Повторять строки сверху", "SSE.Views.PrintWithPreview.txtActualSize": "Реальный размер", "SSE.Views.PrintWithPreview.txtAllSheets": "Все листы", + "SSE.Views.PrintWithPreview.txtApplyToAllSheets": "Применить ко всем листам", + "SSE.Views.PrintWithPreview.txtBottom": "Нижнее", + "SSE.Views.PrintWithPreview.txtCurrentSheet": "Текущий лист", + "SSE.Views.PrintWithPreview.txtCustom": "Особый", + "SSE.Views.PrintWithPreview.txtCustomOptions": "Настраиваемые параметры", + "SSE.Views.PrintWithPreview.txtFitCols": "Вписать все столбцы на одну страницу", + "SSE.Views.PrintWithPreview.txtFitPage": "Вписать лист на одну страницу", + "SSE.Views.PrintWithPreview.txtFitRows": "Вписать все строки на одну страницу", + "SSE.Views.PrintWithPreview.txtGridlinesAndHeadings": "Линии сетки и заголовки", "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Параметры верхнего и нижнего колонтитулов", "SSE.Views.PrintWithPreview.txtIgnore": "Игнорировать область печати", "SSE.Views.PrintWithPreview.txtLandscape": "Альбомная", + "SSE.Views.PrintWithPreview.txtLeft": "Левое", "SSE.Views.PrintWithPreview.txtMargins": "Поля", + "SSE.Views.PrintWithPreview.txtOf": "из {0}", + "SSE.Views.PrintWithPreview.txtPage": "Страница", + "SSE.Views.PrintWithPreview.txtPageNumInvalid": "Неправильный номер страницы", "SSE.Views.PrintWithPreview.txtPageOrientation": "Ориентация страницы", "SSE.Views.PrintWithPreview.txtPageSize": "Размер страницы", "SSE.Views.PrintWithPreview.txtPortrait": "Книжная", + "SSE.Views.PrintWithPreview.txtPrint": "Печать", "SSE.Views.PrintWithPreview.txtPrintGrid": "Печать сетки", + "SSE.Views.PrintWithPreview.txtPrintHeadings": "Печать заголовков строк и столбцов", "SSE.Views.PrintWithPreview.txtPrintRange": "Диапазон печати", "SSE.Views.PrintWithPreview.txtPrintTitles": "Печатать заголовки", "SSE.Views.PrintWithPreview.txtRepeat": "Повторять...", "SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft": "Повторять столбцы слева", "SSE.Views.PrintWithPreview.txtRepeatRowsAtTop": "Повторять строки сверху", + "SSE.Views.PrintWithPreview.txtRight": "Правое", "SSE.Views.PrintWithPreview.txtSave": "Сохранить", "SSE.Views.PrintWithPreview.txtScaling": "Масштаб", + "SSE.Views.PrintWithPreview.txtSelection": "Выделенный фрагмент", + "SSE.Views.PrintWithPreview.txtSettingsOfSheet": "Параметры листа", + "SSE.Views.PrintWithPreview.txtSheet": "Лист: {0}", + "SSE.Views.PrintWithPreview.txtTop": "Верхнее", "SSE.Views.ProtectDialog.textExistName": "ОШИБКА! Диапазон с таким названием уже существует", "SSE.Views.ProtectDialog.textInvalidName": "Название диапазона должно начинаться с буквы и может содержать только буквы, цифры и пробелы.", "SSE.Views.ProtectDialog.textInvalidRange": "ОШИБКА! Недопустимый диапазон ячеек", @@ -2780,6 +2817,7 @@ "SSE.Views.ProtectDialog.txtWBDescription": "Чтобы запретить другим пользователям просмотр скрытых листов, добавление, перемещение, удаление или скрытие листов и переименование листов, вы можете защитить структуру книги с помощью пароля.", "SSE.Views.ProtectDialog.txtWBTitle": "Защитить структуру книги", "SSE.Views.ProtectRangesDlg.guestText": "Гость", + "SSE.Views.ProtectRangesDlg.lockText": "Заблокирован", "SSE.Views.ProtectRangesDlg.textDelete": "Удалить", "SSE.Views.ProtectRangesDlg.textEdit": "Редактировать", "SSE.Views.ProtectRangesDlg.textEmpty": "Нет диапазонов, разрешенных для редактирования.", @@ -3121,6 +3159,7 @@ "SSE.Views.Statusbar.tipAddTab": "Добавить лист", "SSE.Views.Statusbar.tipFirst": "Прокрутить до первого листа", "SSE.Views.Statusbar.tipLast": "Прокрутить до последнего листа", + "SSE.Views.Statusbar.tipListOfSheets": "Список листов", "SSE.Views.Statusbar.tipNext": "Прокрутить список листов вправо", "SSE.Views.Statusbar.tipPrev": "Прокрутить список листов влево", "SSE.Views.Statusbar.tipZoomFactor": "Масштаб", @@ -3389,7 +3428,16 @@ "SSE.Views.Toolbar.tipInsertTable": "Вставить таблицу", "SSE.Views.Toolbar.tipInsertText": "Вставить надпись", "SSE.Views.Toolbar.tipInsertTextart": "Вставить объект Text Art", + "SSE.Views.Toolbar.tipMarkersArrow": "Маркеры-стрелки", + "SSE.Views.Toolbar.tipMarkersCheckmark": "Маркеры-галочки", + "SSE.Views.Toolbar.tipMarkersDash": "Маркеры-тире", + "SSE.Views.Toolbar.tipMarkersFRhombus": "Заполненные ромбовидные маркеры", + "SSE.Views.Toolbar.tipMarkersFRound": "Заполненные круглые маркеры", + "SSE.Views.Toolbar.tipMarkersFSquare": "Заполненные квадратные маркеры", + "SSE.Views.Toolbar.tipMarkersHRound": "Пустые круглые маркеры", + "SSE.Views.Toolbar.tipMarkersStar": "Маркеры-звездочки", "SSE.Views.Toolbar.tipMerge": "Объединить и поместить в центре", + "SSE.Views.Toolbar.tipNone": "Нет", "SSE.Views.Toolbar.tipNumFormat": "Числовой формат", "SSE.Views.Toolbar.tipPageMargins": "Поля страницы", "SSE.Views.Toolbar.tipPageOrient": "Ориентация страницы", @@ -3518,6 +3566,7 @@ "SSE.Views.ValueFieldSettingsDialog.txtVarp": "Диспр", "SSE.Views.ViewManagerDlg.closeButtonText": "Закрыть", "SSE.Views.ViewManagerDlg.guestText": "Гость", + "SSE.Views.ViewManagerDlg.lockText": "Заблокирован", "SSE.Views.ViewManagerDlg.textDelete": "Удалить", "SSE.Views.ViewManagerDlg.textDuplicate": "Дублировать", "SSE.Views.ViewManagerDlg.textEmpty": "Представления еще не созданы.", @@ -3533,6 +3582,7 @@ "SSE.Views.ViewManagerDlg.warnDeleteView": "Вы пытаетесь удалить активированное в данный момент представление '%1'.
Закрыть это представление и удалить его?", "SSE.Views.ViewTab.capBtnFreeze": "Закрепить области", "SSE.Views.ViewTab.capBtnSheetView": "Представление листа", + "SSE.Views.ViewTab.textAlwaysShowToolbar": "Всегда показывать панель инструментов", "SSE.Views.ViewTab.textClose": "Закрыть", "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "Объединить строки листов и состояния", "SSE.Views.ViewTab.textCreate": "Новое", diff --git a/apps/spreadsheeteditor/main/locale/tr.json b/apps/spreadsheeteditor/main/locale/tr.json index 0ba7e42ed..b44ffd139 100644 --- a/apps/spreadsheeteditor/main/locale/tr.json +++ b/apps/spreadsheeteditor/main/locale/tr.json @@ -75,7 +75,7 @@ "Common.define.conditionalData.textEqual": "Eşittir", "Common.define.conditionalData.textError": "Hata", "Common.define.conditionalData.textErrors": "Hatalar içeriyor", - "Common.define.conditionalData.textFormula": "formül", + "Common.define.conditionalData.textFormula": "Formül", "Common.define.conditionalData.textGreater": "daha büyük", "Common.define.conditionalData.textGreaterEq": "büyük veya eşit", "Common.define.conditionalData.textIconSets": "Simge setleri", @@ -1768,7 +1768,7 @@ "SSE.Views.DataValidationDialog.textEndDate": "Bitiş Tarihi", "SSE.Views.DataValidationDialog.textEndTime": "Bitiş zamanı", "SSE.Views.DataValidationDialog.textError": "Hata mesajı", - "SSE.Views.DataValidationDialog.textFormula": "formül", + "SSE.Views.DataValidationDialog.textFormula": "Formül", "SSE.Views.DataValidationDialog.textIgnore": "Boşluğu yoksay", "SSE.Views.DataValidationDialog.textInput": "Mesaj ekle", "SSE.Views.DataValidationDialog.textMax": "Maksimum", @@ -2166,7 +2166,7 @@ "SSE.Views.FormatRulesEditDlg.textErrorTop10Between": "{0} ile {1} arasında bir sayı girin.", "SSE.Views.FormatRulesEditDlg.textFill": "Doldur", "SSE.Views.FormatRulesEditDlg.textFormat": "Biçim", - "SSE.Views.FormatRulesEditDlg.textFormula": "formül", + "SSE.Views.FormatRulesEditDlg.textFormula": "Formül", "SSE.Views.FormatRulesEditDlg.textGradient": "Gradyan", "SSE.Views.FormatRulesEditDlg.textIconLabel": "{0} {1} olduğunda ve", "SSE.Views.FormatRulesEditDlg.textIconLabelFirst": "{0} {1} olduğunda", @@ -3294,7 +3294,7 @@ "SSE.Views.Toolbar.textTabCollaboration": "Ortak çalışma", "SSE.Views.Toolbar.textTabData": "Veri", "SSE.Views.Toolbar.textTabFile": "Dosya", - "SSE.Views.Toolbar.textTabFormula": "formül", + "SSE.Views.Toolbar.textTabFormula": "Formül", "SSE.Views.Toolbar.textTabHome": "Ana Sayfa", "SSE.Views.Toolbar.textTabInsert": "Ekle", "SSE.Views.Toolbar.textTabLayout": "Yerleşim", diff --git a/apps/spreadsheeteditor/main/locale/uk.json b/apps/spreadsheeteditor/main/locale/uk.json index d4d422608..743c2cec0 100644 --- a/apps/spreadsheeteditor/main/locale/uk.json +++ b/apps/spreadsheeteditor/main/locale/uk.json @@ -5,19 +5,28 @@ "Common.define.chartData.textArea": "Площа", "Common.define.chartData.textAreaStackedPer": "Нормована з областями та накопиченням", "Common.define.chartData.textBar": "Вставити", + "Common.define.chartData.textBarNormal": "Гістограма з групуванням", "Common.define.chartData.textBarNormal3d": "Тривимірна гістограма з групуванням", "Common.define.chartData.textBarNormal3dPerspective": "Тривимірна гістограма", "Common.define.chartData.textBarStacked3d": "Тривимірна гістограма з накопиченням", "Common.define.chartData.textBarStackedPer": "Нормована гістограма з накопиченням", "Common.define.chartData.textBarStackedPer3d": "Тривимірна нормована гістограма з накопиченням", + "Common.define.chartData.textCharts": "Діаграми", "Common.define.chartData.textColumn": "Колона", "Common.define.chartData.textColumnSpark": "Колона", + "Common.define.chartData.textCombo": "Комбінування", + "Common.define.chartData.textComboBarLine": "Гістограма з групуванням та графік", + "Common.define.chartData.textComboBarLineSecondary": "Гістограма з групуванням та графік на допоміжній осі", + "Common.define.chartData.textComboCustom": "Користувацька комбінація", + "Common.define.chartData.textDoughnut": "Кільцева діаграма", + "Common.define.chartData.textHBarNormal": "Лінійчата з групуванням", "Common.define.chartData.textHBarNormal3d": "Тривимірна лінійчата з групуванням", "Common.define.chartData.textHBarStacked3d": "Тривимірна лінійчата з накопиченням", "Common.define.chartData.textHBarStackedPer": "Нормована лінійчата з накопиченням", "Common.define.chartData.textHBarStackedPer3d": "Тривимірна нормована лінійчата з накопиченням", "Common.define.chartData.textLine": "Лінія", "Common.define.chartData.textLine3d": "Тривимірний графік", + "Common.define.chartData.textLineMarker": "Графік з маркерами", "Common.define.chartData.textLineSpark": "Лінія", "Common.define.chartData.textLineStackedPer": "Нормований графік з накопиченням", "Common.define.chartData.textLineStackedPerMarker": "Нормований графік з маркерами та накопиченням", @@ -29,6 +38,7 @@ "Common.define.chartData.textSurface": "Поверхня", "Common.define.chartData.textWinLossSpark": "Win / Loss", "Common.define.conditionalData.exampleText": "АаВвБбЯя", + "Common.define.conditionalData.noFormatText": "Формат не заданий", "Common.define.conditionalData.text1Above": "На 1 стандартне відхилення вище", "Common.define.conditionalData.text1Below": "На 1 стандартне відхилення нижче", "Common.define.conditionalData.text2Above": "На 2 стандартні відхилення вище", @@ -41,7 +51,36 @@ "Common.define.conditionalData.textBelow": "Нижче", "Common.define.conditionalData.textBetween": "Між", "Common.define.conditionalData.textBlank": "Пуста клітинка", + "Common.define.conditionalData.textBlanks": "Містить пусті клітинки", "Common.define.conditionalData.textBottom": "Найменше", + "Common.define.conditionalData.textContains": "Містить", + "Common.define.conditionalData.textDataBar": "Гістограма", + "Common.define.conditionalData.textDate": "Дата", + "Common.define.conditionalData.textDuplicate": "Дублювати", + "Common.define.conditionalData.textEnds": "Закінчується на ", + "Common.define.conditionalData.textEqAbove": "Дорівнює або більше", + "Common.define.conditionalData.textEqBelow": "Дорівнює або менше", + "Common.define.conditionalData.textEqual": "Дорівнює", + "Common.define.conditionalData.textError": "Помилка", + "Common.define.conditionalData.textErrors": "Містить помилки", + "Common.define.conditionalData.textFormula": "Формула", + "Common.define.conditionalData.textGreater": "Більше", + "Common.define.conditionalData.textGreaterEq": "Більше або дорівнює", + "Common.define.conditionalData.textIconSets": "Набори іконок", + "Common.define.conditionalData.textLast7days": "За останні 7 днів", + "Common.define.conditionalData.textLastMonth": "Минулий місяць", + "Common.define.conditionalData.textLastWeek": "Минулий тиждень", + "Common.define.conditionalData.textLess": "Менше ніж", + "Common.define.conditionalData.textLessEq": "Менше або дорівнює", + "Common.define.conditionalData.textNextMonth": "Наступний місяць", + "Common.define.conditionalData.textNextWeek": "Наступний тиждень", + "Common.define.conditionalData.textNotBetween": "не між", + "Common.define.conditionalData.textNotBlanks": "Не містить пустих клітинок", + "Common.define.conditionalData.textNotContains": "Не містить", + "Common.define.conditionalData.textNotEqual": "Не дорівнює", + "Common.define.conditionalData.textNotErrors": "Не містить помилок", + "Common.Translation.warnFileLockedBtnEdit": "Створити копію", + "Common.Translation.warnFileLockedBtnView": "Відкрити на перегляд", "Common.UI.ButtonColored.textAutoColor": "Автоматичний", "Common.UI.ButtonColored.textNewColor": "Користувальницький колір", "Common.UI.ComboBorderSize.txtNoBorders": "Немає кордонів", @@ -53,6 +92,7 @@ "Common.UI.ExtendedColorDialog.textNew": "Новий", "Common.UI.ExtendedColorDialog.textRGBErr": "Введене значення невірно.
Будь ласка, введіть числове значення від 0 до 255.", "Common.UI.HSBColorPicker.textNoColor": "Немає кольору", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Сховати пароль", "Common.UI.SearchDialog.textHighlight": "Виділіть результати", "Common.UI.SearchDialog.textMatchCase": "Чутливість до регістору символів", "Common.UI.SearchDialog.textReplaceDef": "Введіть текст заміни", @@ -67,6 +107,9 @@ "Common.UI.SynchronizeTip.textSynchronize": "Документ був змінений іншим користувачем.
Будь ласка, натисніть, щоб зберегти зміни та завантажити оновлення.", "Common.UI.ThemeColorPalette.textStandartColors": "Стандартні кольори", "Common.UI.ThemeColorPalette.textThemeColors": "Кольорові теми", + "Common.UI.Themes.txtThemeClassicLight": "Класична світла", + "Common.UI.Themes.txtThemeDark": "Темна", + "Common.UI.Themes.txtThemeLight": "Світла", "Common.UI.Window.cancelButtonText": "Скасувати", "Common.UI.Window.closeButtonText": "Закрити", "Common.UI.Window.noButtonText": "Немає", @@ -90,19 +133,31 @@ "Common.Views.AutoCorrectDialog.textApplyAsWork": "Виконувати під час роботи", "Common.Views.AutoCorrectDialog.textAutoCorrect": "Автозаміна", "Common.Views.AutoCorrectDialog.textAutoFormat": "Автоформат під час введення", + "Common.Views.AutoCorrectDialog.textBy": "На", + "Common.Views.AutoCorrectDialog.textDelete": "Видалити", + "Common.Views.AutoCorrectDialog.textHyperlink": "Адреси в Інтернеті та мережеві шляхи гіперпосиланнями", + "Common.Views.AutoCorrectDialog.textMathCorrect": "Автозаміна математичними символами", + "Common.Views.AutoCorrectDialog.textNewRowCol": "Включати в таблицю нові рядки та стовпці", "Common.Views.AutoCorrectDialog.textTitle": "Автозаміна", "Common.Views.AutoCorrectDialog.textWarnResetRec": "Всі додані вирази будуть видалені, а видалені - відновлені. Ви хочете продовжити?", "Common.Views.AutoCorrectDialog.warnReset": "Будь-які додані вами автозаміни будуть видалені, а змінені будуть відновлені до початкових. Бажаєте продовжити?", "Common.Views.Chat.textSend": "Надіслати", "Common.Views.Comments.mniAuthorAsc": "За автором від А до Я", "Common.Views.Comments.mniAuthorDesc": "За автором від Я до А", + "Common.Views.Comments.mniDateAsc": "Від старих до нових", + "Common.Views.Comments.mniDateDesc": "Від нових до старих", + "Common.Views.Comments.mniFilterGroups": "Фільтрувати за групою", + "Common.Views.Comments.mniPositionAsc": "Зверху вниз", + "Common.Views.Comments.mniPositionDesc": "Знизу вверх", "Common.Views.Comments.textAdd": "Додати", "Common.Views.Comments.textAddComment": "Добавити коментар", "Common.Views.Comments.textAddCommentToDoc": "Додати коментар до документа", "Common.Views.Comments.textAddReply": "Додати відповідь", + "Common.Views.Comments.textAll": "Всі", "Common.Views.Comments.textAnonym": "Гість", "Common.Views.Comments.textCancel": "Скасувати", "Common.Views.Comments.textClose": "Закрити", + "Common.Views.Comments.textClosePanel": "Закрити коментарі", "Common.Views.Comments.textComments": "Коментарі", "Common.Views.Comments.textEdit": "OК", "Common.Views.Comments.textEnterCommentHint": "Введіть свій коментар тут", @@ -119,10 +174,15 @@ "Common.Views.CopyWarningDialog.textToPaste": "Для вставлення", "Common.Views.DocumentAccessDialog.textLoading": "Завантаження...", "Common.Views.DocumentAccessDialog.textTitle": "Налаштування спільного доступу", + "Common.Views.EditNameDialog.textLabel": "Підпис:", + "Common.Views.EditNameDialog.textLabelError": "Підпис не повинен бути пустий", "Common.Views.Header.labelCoUsersDescr": "В даний час документ редагується кількома користувачами.", + "Common.Views.Header.textAddFavorite": "Додати в обране", "Common.Views.Header.textAdvSettings": "Додаткові параметри", "Common.Views.Header.textBack": "Перейти до документів", "Common.Views.Header.textCompactView": "Сховати панель інструментів", + "Common.Views.Header.textHideLines": "Сховати лінійки", + "Common.Views.Header.textHideStatusBar": "Об'єднати рядки листів та стану", "Common.Views.Header.textSaveBegin": "Збереження ...", "Common.Views.Header.textSaveChanged": "Модифікований", "Common.Views.Header.textSaveEnd": "Усі зміни збережено", @@ -135,20 +195,39 @@ "Common.Views.Header.tipViewUsers": "Переглядайте користувачів та керуйте правами доступу до документів", "Common.Views.Header.txtAccessRights": "Змінити права доступу", "Common.Views.Header.txtRename": "Перейменування", + "Common.Views.History.textCloseHistory": "Закрити історію", + "Common.Views.History.textHide": "Згорнути", + "Common.Views.History.textHideAll": "Сховати детальні зміни", + "Common.Views.History.textShow": "Розгорнути", "Common.Views.ImageFromUrlDialog.textUrl": "Вставити URL зображення:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Це поле є обов'язковим", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com\"", + "Common.Views.ListSettingsDialog.textBulleted": "Маркований", + "Common.Views.ListSettingsDialog.textNumbering": "Нумерований", + "Common.Views.ListSettingsDialog.tipChange": "Змінити маркер", + "Common.Views.ListSettingsDialog.txtBullet": "Маркер", + "Common.Views.ListSettingsDialog.txtColor": "Колір", + "Common.Views.ListSettingsDialog.txtNewBullet": "Новий маркер", + "Common.Views.ListSettingsDialog.txtNone": "Немає", "Common.Views.ListSettingsDialog.txtOfText": "% тексту", + "Common.Views.ListSettingsDialog.txtTitle": "Налаштування списку", + "Common.Views.OpenDialog.closeButtonText": "Закрити файл", + "Common.Views.OpenDialog.textInvalidRange": "Неприпустимий діапазон клітинок", "Common.Views.OpenDialog.txtAdvanced": "Додатково", + "Common.Views.OpenDialog.txtColon": "Двокрапка", + "Common.Views.OpenDialog.txtComma": "Кома", "Common.Views.OpenDialog.txtDelimiter": "Розділювач", + "Common.Views.OpenDialog.txtDestData": "Виберіть де помістити дані", "Common.Views.OpenDialog.txtEncoding": "Кодування", "Common.Views.OpenDialog.txtOpenFile": "Введіть пароль для відкриття файлу", "Common.Views.OpenDialog.txtOther": "Інший", "Common.Views.OpenDialog.txtPassword": "Пароль", + "Common.Views.OpenDialog.txtProtected": "Після введення пароля та відкриття файла поточний пароль до нього буде скинутий.", "Common.Views.OpenDialog.txtSpace": "Пробіл", "Common.Views.OpenDialog.txtTab": "Вкладка", "Common.Views.OpenDialog.txtTitle": "Виберіть параметри% 1", "Common.Views.OpenDialog.txtTitleProtected": "Захищений файл", + "Common.Views.PasswordDialog.txtIncorrectPwd": "Пароль та його підтвердження не збігаються", "Common.Views.PasswordDialog.txtWarning": "Увага! Якщо ви втратили або не можете пригадати пароль, відновити його неможливо. Зберігайте його в надійному місці.", "Common.Views.PluginDlg.textLoading": "Завантаження", "Common.Views.Plugins.groupCaption": "Плагіни", @@ -156,31 +235,83 @@ "Common.Views.Plugins.textLoading": "Завантаження", "Common.Views.Plugins.textStart": "Початок", "Common.Views.Plugins.textStop": "Зупинитись", + "Common.Views.Protection.hintAddPwd": "Зашифрувати за допомогою пароля", + "Common.Views.Protection.hintPwd": "Змінити чи видалити пароль", "Common.Views.Protection.hintSignature": "Додати цифровий підпис або рядок підпису", "Common.Views.Protection.txtAddPwd": "Додати пароль", + "Common.Views.Protection.txtChangePwd": "Змінити пароль", + "Common.Views.Protection.txtDeletePwd": "Видалити пароль", + "Common.Views.Protection.txtEncrypt": "Шифрувати", "Common.Views.Protection.txtInvisibleSignature": "Додати цифровий підпис", "Common.Views.Protection.txtSignatureLine": "Додати рядок підпису", "Common.Views.RenameDialog.textName": "Ім'я файлу", "Common.Views.RenameDialog.txtInvalidName": "Ім'я файлу не може містити жодного з наступних символів:", + "Common.Views.ReviewChanges.strFast": "Швидкий", + "Common.Views.ReviewChanges.strFastDesc": "Спільне редагування в режимі реального часу. Всі зміни зберігаються автоматично.", "Common.Views.ReviewChanges.tipAcceptCurrent": "Прийняти поточні зміни", + "Common.Views.ReviewChanges.tipSharing": "Керування правами доступу до документів", "Common.Views.ReviewChanges.txtAccept": "Прийняти", "Common.Views.ReviewChanges.txtAcceptAll": "Прийняти усі зміни", "Common.Views.ReviewChanges.txtAcceptChanges": "Прийняти зміни", "Common.Views.ReviewChanges.txtAcceptCurrent": "Прийняти поточні зміни", "Common.Views.ReviewChanges.txtChat": "Чат", + "Common.Views.ReviewChanges.txtClose": "Закрити", + "Common.Views.ReviewChanges.txtCoAuthMode": "Режим спільного редагування", + "Common.Views.ReviewChanges.txtDocLang": "Мова", "Common.Views.ReviewChanges.txtFinal": "Усі зміни прийняті (попередній перегляд)", "Common.Views.ReviewChanges.txtFinalCap": "Фінальний", "Common.Views.ReviewChanges.txtMarkup": "Усі зміни (редагування)", "Common.Views.ReviewChanges.txtMarkupCap": "Зміни", + "Common.Views.ReviewChanges.txtNext": "Далі", "Common.Views.ReviewChanges.txtOriginal": "Усі зміни відхилено (попередній перегляд)", "Common.Views.ReviewChanges.txtOriginalCap": "Початковий", + "Common.Views.ReviewChanges.txtView": "Показ", "Common.Views.ReviewPopover.textAdd": "Додати", "Common.Views.ReviewPopover.textAddReply": "Додати відповідь", + "Common.Views.ReviewPopover.textCancel": "Відміна", + "Common.Views.ReviewPopover.textClose": "Закрити", + "Common.Views.ReviewPopover.textEdit": "Ок", "Common.Views.ReviewPopover.textMention": "+згадка надасть доступ до документа і відправить сповіщення поштою", "Common.Views.ReviewPopover.textMentionNotify": "+згадка відправить користувачу сповіщення поштою", + "Common.Views.ReviewPopover.textOpenAgain": "Відкрити знову", + "Common.Views.ReviewPopover.txtDeleteTip": "Видалити", + "Common.Views.ReviewPopover.txtEditTip": "Редагувати", + "Common.Views.SaveAsDlg.textLoading": "Завантаження", + "Common.Views.SaveAsDlg.textTitle": "Папка для збереження", + "Common.Views.SelectFileDlg.textLoading": "Завантаження", "Common.Views.SignDialog.textBold": "Напівжирний", + "Common.Views.SignDialog.textCertificate": "Сертифікат", + "Common.Views.SignDialog.textChange": "Змінити", + "Common.Views.SignDialog.textInputName": "Введіть ім'я підписанта", + "Common.Views.SignDialog.textItalic": "Курсив", + "Common.Views.SignDialog.textUseImage": "або натисніть 'Обрати зображення', щоб використовувати зображення як підпис", + "Common.Views.SignDialog.tipFontName": "Шрифт", + "Common.Views.SignDialog.tipFontSize": "Розмір шрифту", "Common.Views.SignSettingsDialog.textAllowComment": "Дозволити підписанту додавати коментар у вікні підпису", + "Common.Views.SignSettingsDialog.textInfoEmail": "Адреса електронної пошти", + "Common.Views.SignSettingsDialog.textInfoName": "Ім'я", + "Common.Views.SignSettingsDialog.textInstructions": "Інструкції для підписанта", + "Common.Views.SymbolTableDialog.textCharacter": "Символ", + "Common.Views.SymbolTableDialog.textCopyright": "Знак авторського права", + "Common.Views.SymbolTableDialog.textDCQuote": "Закриваючі подвійні лапки", + "Common.Views.SymbolTableDialog.textDOQuote": "Відкриваючі подвійні лапки", + "Common.Views.SymbolTableDialog.textEllipsis": "Горизонтальна трикрапка", + "Common.Views.SymbolTableDialog.textEmDash": "Довге тире", + "Common.Views.SymbolTableDialog.textEmSpace": "Довгий пробіл", + "Common.Views.SymbolTableDialog.textEnDash": "Коротке тире", + "Common.Views.SymbolTableDialog.textEnSpace": "Короткий пробіл", + "Common.Views.SymbolTableDialog.textFont": "Шрифт", + "Common.Views.SymbolTableDialog.textNBHyphen": "Нерозривний дефіс", + "Common.Views.SymbolTableDialog.textNBSpace": "Нерозривний пробіл", "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 пробілу", + "Common.Views.SymbolTableDialog.textSCQuote": "Закриваючі лапки", + "Common.Views.SymbolTableDialog.textSOQuote": "Відкриваючі лапки", + "Common.Views.UserNameDialog.textDontShow": "Більше не запитувати", + "Common.Views.UserNameDialog.textLabel": "Підпис:", + "Common.Views.UserNameDialog.textLabelError": "Підпис не повинен бути пустий", + "SSE.Controllers.DataTab.textColumns": "Стовпчики", + "SSE.Controllers.DataTab.txtDataValidation": "Перевірка даних", + "SSE.Controllers.DataTab.txtExpand": "Розгорнути", "SSE.Controllers.DocumentHolder.alignmentText": "Вирівнювання", "SSE.Controllers.DocumentHolder.centerText": "Центр", "SSE.Controllers.DocumentHolder.deleteColumnText": "Видалити колону", @@ -222,7 +353,9 @@ "SSE.Controllers.DocumentHolder.txtBlanks": "(Пусті)", "SSE.Controllers.DocumentHolder.txtBorderProps": "Прикордонні властивості", "SSE.Controllers.DocumentHolder.txtBottom": "Внизу", + "SSE.Controllers.DocumentHolder.txtColumn": "Стовпчик", "SSE.Controllers.DocumentHolder.txtColumnAlign": "Вирівнювання колонки", + "SSE.Controllers.DocumentHolder.txtContains": "Містить", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Зменшити розмір документу", "SSE.Controllers.DocumentHolder.txtDeleteArg": "Видалити аргумент", "SSE.Controllers.DocumentHolder.txtDeleteBreak": "видалити розрив", @@ -231,12 +364,18 @@ "SSE.Controllers.DocumentHolder.txtDeleteEq": "Видалити рівняння", "SSE.Controllers.DocumentHolder.txtDeleteGroupChar": "Видалити символ", "SSE.Controllers.DocumentHolder.txtDeleteRadical": "Видалити радикал", + "SSE.Controllers.DocumentHolder.txtEnds": "Закінчується на ", + "SSE.Controllers.DocumentHolder.txtEquals": "Дорівнює", + "SSE.Controllers.DocumentHolder.txtEqualsToCellColor": "Дорівнює кольору клітинки", + "SSE.Controllers.DocumentHolder.txtEqualsToFontColor": "Дорівнює кольору шрифту", "SSE.Controllers.DocumentHolder.txtExpand": "Розгорнути та сортувати", "SSE.Controllers.DocumentHolder.txtExpandSort": "Дані після позначеного діапазону не буде впорядковано. Розширити вибір, щоб включити сусідні дані або продовжити впорядковування тільки щойно вибраних комірок?", "SSE.Controllers.DocumentHolder.txtFilterBottom": "Найменші", "SSE.Controllers.DocumentHolder.txtFractionLinear": "Зміна до лінійної фракції", "SSE.Controllers.DocumentHolder.txtFractionSkewed": "Зміна перекошеної фракції", "SSE.Controllers.DocumentHolder.txtFractionStacked": "Зміна складеної фракції", + "SSE.Controllers.DocumentHolder.txtGreater": "Більше", + "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Більше або дорівнює", "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Прибрати над текстом", "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Прибрати під текстом", "SSE.Controllers.DocumentHolder.txtHeight": "Висота", @@ -260,12 +399,21 @@ "SSE.Controllers.DocumentHolder.txtInsertBreak": "Вставити ручне переривання", "SSE.Controllers.DocumentHolder.txtInsertEqAfter": "Вставити рівняння після", "SSE.Controllers.DocumentHolder.txtInsertEqBefore": "Вставити рівняння перед", + "SSE.Controllers.DocumentHolder.txtItems": "елементів", + "SSE.Controllers.DocumentHolder.txtKeepTextOnly": "Зберегти тільки текст", + "SSE.Controllers.DocumentHolder.txtLess": "Менше ніж", + "SSE.Controllers.DocumentHolder.txtLessEquals": "Менше або дорівнює", "SSE.Controllers.DocumentHolder.txtLimitChange": "Зміна меж розташування", "SSE.Controllers.DocumentHolder.txtLimitOver": "Обмеження над текстом", "SSE.Controllers.DocumentHolder.txtLimitUnder": "Обмеження під текстом", + "SSE.Controllers.DocumentHolder.txtLockSort": "Виявлено дані поруч із виділеним діапазоном, але у вас недостатньо прав для зміни цих клітинок.
Ви бажаєте продовжити роботу з виділеним діапазоном?", "SSE.Controllers.DocumentHolder.txtMatchBrackets": "Відповідність дужок до висоти аргументів", "SSE.Controllers.DocumentHolder.txtMatrixAlign": "Вирівнювання матриці", "SSE.Controllers.DocumentHolder.txtNoChoices": "Відсутній вибір для заповнення комірки.
Тільки текстові значення зі стовпця можна вибрати для заміни.", + "SSE.Controllers.DocumentHolder.txtNotBegins": "Не починається з", + "SSE.Controllers.DocumentHolder.txtNotContains": "Не містить", + "SSE.Controllers.DocumentHolder.txtNotEnds": "Не закінчується на", + "SSE.Controllers.DocumentHolder.txtNotEquals": "Не рівно", "SSE.Controllers.DocumentHolder.txtOr": "або", "SSE.Controllers.DocumentHolder.txtOverbar": "Риска над текстом", "SSE.Controllers.DocumentHolder.txtPaste": "Вставити", @@ -289,6 +437,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": "Видалити верхній індекс", @@ -306,14 +455,25 @@ "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Розтягнути дужки", "SSE.Controllers.DocumentHolder.txtTop": "Верх", "SSE.Controllers.DocumentHolder.txtUnderbar": "Риска після тексту", + "SSE.Controllers.DocumentHolder.txtWarnUrl": "Перехід за цим посиланням може нашкодити вашому пристрою та даним.
Ви дійсно бажаєте продовжити?", "SSE.Controllers.DocumentHolder.txtWidth": "Ширина", "SSE.Controllers.FormulaDialog.sCategoryAll": "Всі", + "SSE.Controllers.FormulaDialog.sCategoryCube": "Аналітичні", + "SSE.Controllers.FormulaDialog.sCategoryDatabase": "Бази даних", + "SSE.Controllers.FormulaDialog.sCategoryDateAndTime": "Дата і час", + "SSE.Controllers.FormulaDialog.sCategoryEngineering": "Інженерія", + "SSE.Controllers.FormulaDialog.sCategoryFinancial": "Фінансові", + "SSE.Controllers.FormulaDialog.sCategoryInformation": "Інформаційні", "SSE.Controllers.FormulaDialog.sCategoryLast10": "Останні 10 використаних", + "SSE.Controllers.FormulaDialog.sCategoryLogical": "Логічні", + "SSE.Controllers.FormulaDialog.sCategoryLookupAndReference": "Пошук та довідка", + "SSE.Controllers.FormulaDialog.sCategoryMathematic": "Математичні", "SSE.Controllers.LeftMenu.newDocumentTitle": "Електронна таблиця без нзви", "SSE.Controllers.LeftMenu.textByColumns": "За колонками", "SSE.Controllers.LeftMenu.textByRows": "За рядками", "SSE.Controllers.LeftMenu.textFormulas": "Формули", "SSE.Controllers.LeftMenu.textItemEntireCell": "Весь вміст комірки", + "SSE.Controllers.LeftMenu.textLoadHistory": "Завантаження історії версій...", "SSE.Controllers.LeftMenu.textLookin": "Погляньте на", "SSE.Controllers.LeftMenu.textNoTextFound": "Не вдалося знайти дані, які ви шукали. Будь ласка, налаштуйте параметри пошуку.", "SSE.Controllers.LeftMenu.textReplaceSkipped": "Заміна була зроблена. {0} угоди були пропущені.", @@ -327,12 +487,14 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Якщо ви продовжите збереження в цьому форматі, всі функції, окрім тексту, буде втрачено.
Ви впевнені, що хочете продовжити?", "SSE.Controllers.Main.confirmMoveCellRange": "Діапазон комірок призначення може містити дані. Продовжити операцію?", "SSE.Controllers.Main.confirmPutMergeRange": "Джерело даних містило об'єднані комірки.
Об'єднання було скасовано перед вставкою до таблиці.", + "SSE.Controllers.Main.confirmReplaceFormulaInTable": "Формули в рядку заголовка будуть видалені та перетворені на статичний текст.
Ви хочете продовжити?", "SSE.Controllers.Main.convertationTimeoutText": "Термін переходу перевищено.", "SSE.Controllers.Main.criticalErrorExtText": "Натисніть \"OK\", щоб повернутися до списку документів.", "SSE.Controllers.Main.criticalErrorTitle": "Помилка", "SSE.Controllers.Main.downloadErrorText": "Завантаження не вдалося", "SSE.Controllers.Main.downloadTextText": "Завантаження електронної таблиці...", "SSE.Controllers.Main.downloadTitleText": "Завантаження електронної таблиці", + "SSE.Controllers.Main.errNoDuplicates": "Значення, що повторюються, не знайдені.", "SSE.Controllers.Main.errorAccessDeny": "Ви намагаєтеся виконати дію, на яку у вас немає прав.
Будь ласка, зв'яжіться з адміністратором вашого Сервера документів.", "SSE.Controllers.Main.errorArgsRange": "Помилка введеної формули. Використовується неправильний діапазон аргументів.", "SSE.Controllers.Main.errorAutoFilterChange": "Недозволена дія, оскільки ви намагаєтесь пересунути комірки до таблиці вашого робочого аркушу.", @@ -340,6 +502,7 @@ "SSE.Controllers.Main.errorAutoFilterDataRange": "Неможливо виконати дію для вибраного діапазону комірок.
Виберіть єдиний діапазон даних, відмінний від існуючого, та спробуйте ще раз.", "SSE.Controllers.Main.errorAutoFilterHiddenRange": "Неможливо виконати дію, оскільки область містить відфільтровані комірки.
Будь ласка, зробіть елементи фільтрування видимими та повторіть спробу.", "SSE.Controllers.Main.errorBadImageUrl": "URL-адреса зображення невірна", + "SSE.Controllers.Main.errorCannotUngroup": "Неможливо розгрупувати. Щоб створити структуру документу, виділіть стовпчики або рядки та згрупуйте їх.", "SSE.Controllers.Main.errorCoAuthoringDisconnect": "З'єднання з сервером втрачено. Документ не можна редагувати прямо зараз.", "SSE.Controllers.Main.errorConnectToServer": "Не вдалося зберегти документ. Будь ласка, перевірте налаштування з'єднання або зверніться до свого адміністратора.
Після натискання кнопки «ОК» вам буде запропоновано завантажити документ.", "SSE.Controllers.Main.errorCopyMultiselectArea": "Ця команда не може бути використана з декількома вибору.
Виберіть один діапазон і спробуйте ще раз.", @@ -347,10 +510,12 @@ "SSE.Controllers.Main.errorCountArgExceed": "Помилка введеної формули.
Кількість аргументів перевищено.", "SSE.Controllers.Main.errorCreateDefName": "Існуючі названі діапазони не можна редагувати, а нові не можна створити на даний момент, оскільки деякі з них редагуються.", "SSE.Controllers.Main.errorDatabaseConnection": "Зовнішня помилка.
Помилка підключення до бази даних. Будь ласка, зв'яжіться зі службою підтримки, якщо помилка не зникне.", + "SSE.Controllers.Main.errorDataEncrypted": "Отримані зашифровані зміни, їх неможливо розшифрувати.", "SSE.Controllers.Main.errorDataRange": "Неправильний діапазон даних.", "SSE.Controllers.Main.errorDefaultMessage": "Код помилки: %1 ", "SSE.Controllers.Main.errorEditingDownloadas": "Під час роботи з документом сталася помилка.
Використовуйте опцію 'Завантажити як...', щоб зберегти резервну копію файлу на жорсткий диск комп'ютера.", "SSE.Controllers.Main.errorEditingSaveas": "Під час роботи з документом сталася помилка.
Використовуйте опцію 'Зберегти як...', щоб зберегти резервну копію файлу на жорсткий диск комп'ютера.", + "SSE.Controllers.Main.errorEmailClient": "Не знайдений поштовий клієнт", "SSE.Controllers.Main.errorFilePassProtect": "Документ захищений паролем і його неможливо відкрити.", "SSE.Controllers.Main.errorFileRequest": "Зовнішня помилка.
Помилка запиту файлу. Будь ласка, зв'яжіться зі службою підтримки, якщо помилка не зникне.", "SSE.Controllers.Main.errorFileVKey": "Зовнішня помилка.
Невірний ключ безпеки. Будь ласка, зв'яжіться зі службою підтримки, якщо помилка не зникне.", @@ -360,16 +525,21 @@ "SSE.Controllers.Main.errorFormulaParsing": "Внутрішня помилка при аналізі формули.", "SSE.Controllers.Main.errorFrmlWrongReferences": "Ця функція стосується аркуша, який не існує.
Будь ласка, перевірте дані та повторіть спробу.", "SSE.Controllers.Main.errorFTChangeTableRangeError": "Неможливо виконати дію для вибраного діапазону комірок.
Виберіть діапазон таким чином, щоб перший рядок таблиці містився в одному рядку
,а таблиця результату перекрила поточну.", + "SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "Неможливо виконати дію для вибраного діапазону клітинок.
Виберіть діапазон, який не включає інші таблиці.", "SSE.Controllers.Main.errorInvalidRef": "Введіть правильне ім'я для вибору або дійсної посилання для переходу.", "SSE.Controllers.Main.errorKeyEncrypt": "Невідомий дескриптор ключа", "SSE.Controllers.Main.errorKeyExpire": "Ключовий дескриптор закінчився", + "SSE.Controllers.Main.errorLoadingFont": "Шрифти не завантажені.
Будь ласка, зверніться до адміністратора Сервера документів.", "SSE.Controllers.Main.errorLockedAll": "Операція не може бути виконана, оскільки цей аркуш заблоковано іншим користувачем.", "SSE.Controllers.Main.errorLockedCellPivot": "Ви не можете змінювати дані всередині таблиці.", "SSE.Controllers.Main.errorLockedWorksheetRename": "Лист не можна перейменувати на даний момент, оскільки його перейменує інший користувач", "SSE.Controllers.Main.errorMoveRange": "Неможливо змінити частину об'єднаної комірки", + "SSE.Controllers.Main.errorMultiCellFormula": "Формули масиву з кількома клітинками забороняються в таблицях.", + "SSE.Controllers.Main.errorNoDataToParse": "Не виділено дані для аналізу.", "SSE.Controllers.Main.errorOpenWarning": "Довжина однієї з формул у файлі перевищила дозволену
кількість символів, і вона була вилучена.", "SSE.Controllers.Main.errorOperandExpected": "Синтаксис введеної функції невірний. Будь ласка, перевірте, чи відсутня одна з дужок - '(' або ')'.", "SSE.Controllers.Main.errorPasteMaxRange": "Область копіювання та вставки не збігається.
Будь ласка, виберіть область з таким самим розміром або натисніть першу комірку у рядку, щоб вставити скопійовані комірки.", + "SSE.Controllers.Main.errorPivotGroup": "Виділені об'єкти не можна об'єднати у групу.", "SSE.Controllers.Main.errorPivotOverlap": "Не допускається перекриття звіту зведеної таблиці та таблиці.", "SSE.Controllers.Main.errorPrintMaxPagesCount": "На жаль, неможливо одночасно надрукувати більше 1500 сторінок у поточній версії програми.
Це обмеження буде видалено в майбутніх випусках.", "SSE.Controllers.Main.errorProcessSaveResult": "Помилка збереження", @@ -377,16 +547,19 @@ "SSE.Controllers.Main.errorSessionAbsolute": "Сесія редагування документа закінчилася. Будь ласка, перезавантажте сторінку.", "SSE.Controllers.Main.errorSessionIdle": "Цей документ не редагувався протягом тривалого часу. Перезавантажте сторінку.", "SSE.Controllers.Main.errorSessionToken": "З'єднання з сервером було перервано. Перезавантажте сторінку", + "SSE.Controllers.Main.errorSingleColumnOrRowError": "Посилання на розташування неприпустиме, тому що клітинки знаходяться в різних стовпчиках або рядках. Виділіть клітинки, розташовані в одному стовпчику або одному рядку.", "SSE.Controllers.Main.errorStockChart": "Невірний порядок рядків. Щоб побудувати фондову діаграму, помістіть дані на аркуші в наступному порядку: ціна відкриття, максимальна ціна, мінімальна ціна, ціна закриття.", "SSE.Controllers.Main.errorToken": "Токен безпеки документа не правильно сформовано.
Будь ласка, зв'яжіться з адміністратором вашого Сервера документів.", "SSE.Controllers.Main.errorTokenExpire": "Термін дії токену безпеки документа закінчився.
Будь ласка, зв'яжіться зі своїм адміністратором сервера документів.", "SSE.Controllers.Main.errorUnexpectedGuid": "Зовнішня помилка.
Неочікуваний GUID. Будь ласка, зв'яжіться зі службою підтримки, якщо помилка не зникне.", "SSE.Controllers.Main.errorUpdateVersion": "Версія файлу була змінена. Сторінка буде перезавантажена.", + "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "Підключення до Інтернету було відновлено, а версія файлу змінена.
Перш ніж продовжувати роботу, потрібно завантажити файл або скопіювати його вміст, щоб переконатися, що нічого не втрачено, а потім перезавантажити цю сторінку.", "SSE.Controllers.Main.errorUserDrop": "На даний момент файл не доступний.", "SSE.Controllers.Main.errorUsersExceed": "Перевищено кількість користувачів, дозволених планом ціноутворення", "SSE.Controllers.Main.errorViewerDisconnect": "З'єднання втрачено. Ви все ще можете переглядати документ
, але не зможете завантажувати чи роздруковувати, доки не буде відновлено з'єднання.", "SSE.Controllers.Main.errorWrongBracketsCount": "Помилка введеної формули.
Використовується неправильне число дужок .", "SSE.Controllers.Main.errorWrongOperator": "Помилка введеної формули. Використовується неправильний оператор.
Будь ласка, виправте помилку.", + "SSE.Controllers.Main.errRemDuplicates": "Знайдено та видалено повторюваних значень: {0}, залишилося унікальних значень: {1}.", "SSE.Controllers.Main.leavePageText": "У вас є незбережені зміни в цій таблиці. Натисніть \"Залишитися на цій сторінці\", потім \"Зберегти\", щоб зберегти їх. Натисніть \"Покинути цю сторінку\", щоб відхилити всі незбережені зміни.", "SSE.Controllers.Main.leavePageTextOnClose": "Всі незбережені зміни в цій електронній таблиці будуть втрачені.
Натисніть кнопку \"Скасувати\", а потім натисніть кнопку \"Зберегти\", щоб зберегти їх. Натисніть кнопку \"OK\", щоб скинути всі незбережені зміни.", "SSE.Controllers.Main.loadFontsTextText": "Завантаження дати...", @@ -415,13 +588,26 @@ "SSE.Controllers.Main.textApplyAll": "Застосувати до всіх рівнянь", "SSE.Controllers.Main.textBuyNow": "Відвідати сайт", "SSE.Controllers.Main.textChangesSaved": "Усі зміни збережено", + "SSE.Controllers.Main.textClose": "Закрити", "SSE.Controllers.Main.textCloseTip": "Натисніть, щоб закрити підказку", "SSE.Controllers.Main.textConfirm": "Підтвердження", "SSE.Controllers.Main.textContactUs": "Зв'язатися з відділом продажів", + "SSE.Controllers.Main.textCustomLoader": "Зверніть увагу, що згідно з умовами ліцензії ви не маєте права змінювати завантажувач.
Будь ласка, зв'яжіться з нашим відділом продажів, щоб виконати запит.", + "SSE.Controllers.Main.textDisconnect": "З'єднання втрачено", + "SSE.Controllers.Main.textFillOtherRows": "Заповнити інші рядки", + "SSE.Controllers.Main.textFormulaFilledAllRows": "Формула заповнила {0} рядків з даними. Заповнення інших пустих рядків може забрати кілька хвилин.", + "SSE.Controllers.Main.textFormulaFilledAllRowsWithEmpty": "Формула заповнила перші {0} рядків. Заповнення інших пустих рядків може забрати кілька хвилин.", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherHaveData": "Формула заповнила лише перші {0} рядків з даними в цілях економії пам’яті. На цьому листі є ще {1} рядків з даними. Ви можете заповнити їх вручну.", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherIsEmpty": "Формула заповнила лише перші {0} рядків в цілях економії пам’яті. Інші рядки на цьому листі не містять даних.", + "SSE.Controllers.Main.textGuest": "Гість", + "SSE.Controllers.Main.textLearnMore": "Детальніше", "SSE.Controllers.Main.textLoadingDocument": "Завантаження електронної таблиці", + "SSE.Controllers.Main.textLongName": "Введіть ім'я не довше ніж 128 символів.", "SSE.Controllers.Main.textNo": "Немає", "SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE відкрита версія", "SSE.Controllers.Main.textPleaseWait": "Операція може зайняти більше часу, ніж очікувалося. Будь ласка, зачекайте ...", + "SSE.Controllers.Main.textReconnect": "З'єднання відновлено", + "SSE.Controllers.Main.textRenameLabel": "Введіть ім'я, що буде використовуватись для спільної роботи", "SSE.Controllers.Main.textShape": "Форма", "SSE.Controllers.Main.textStrict": "суворий режим", "SSE.Controllers.Main.textTryUndoRedo": "Функції Undo / Redo відключені для режиму швидкого редагування.
Натисніть кнопку \"Суворий режим\", щоб перейти до режиму суворого редагування, щоб редагувати файл без втручання інших користувачів та відправляти зміни лише після збереження. Ви можете переключатися між режимами спільного редагування за допомогою редактора Додаткові параметри.", @@ -437,25 +623,147 @@ "SSE.Controllers.Main.txtByField": "%1 з %2", "SSE.Controllers.Main.txtCallouts": "Виноски", "SSE.Controllers.Main.txtCharts": "Діаграми", + "SSE.Controllers.Main.txtClearFilter": "Очистити фільтр (Alt+C)", + "SSE.Controllers.Main.txtColLbls": "Назви стовпчиків", + "SSE.Controllers.Main.txtColumn": "Стовпчик", + "SSE.Controllers.Main.txtConfidential": "Конфіденційно", + "SSE.Controllers.Main.txtDate": "Дата", + "SSE.Controllers.Main.txtDays": "Дні", "SSE.Controllers.Main.txtDiagramTitle": "Назва діграми", "SSE.Controllers.Main.txtEditingMode": "Встановити режим редагування ...", + "SSE.Controllers.Main.txtErrorLoadHistory": "Не вдалось завантажити історію", "SSE.Controllers.Main.txtFiguredArrows": "Фігурні стрілки", + "SSE.Controllers.Main.txtFile": "Файл", + "SSE.Controllers.Main.txtGrandTotal": "Загальний підсумок", + "SSE.Controllers.Main.txtGroup": "Група", + "SSE.Controllers.Main.txtHours": "Години", "SSE.Controllers.Main.txtLines": "Рядки", "SSE.Controllers.Main.txtMath": "Математика", + "SSE.Controllers.Main.txtMinutes": "Хвилини", + "SSE.Controllers.Main.txtMonths": "Місяці", + "SSE.Controllers.Main.txtMultiSelect": "Множинний вибір (Alt+S)", "SSE.Controllers.Main.txtOr": "%1 чи %2", "SSE.Controllers.Main.txtRectangles": "Прямокутники", "SSE.Controllers.Main.txtSeries": "Серії", + "SSE.Controllers.Main.txtShape_accentBorderCallout1": "Виноска 1 (межа і лінія)", + "SSE.Controllers.Main.txtShape_accentBorderCallout2": "Виноска 2 (межа і лінія)", + "SSE.Controllers.Main.txtShape_accentBorderCallout3": "Виноска 3 (межа і лінія)", + "SSE.Controllers.Main.txtShape_accentCallout1": "Виноска 1 (лінія)", + "SSE.Controllers.Main.txtShape_accentCallout2": "Виноска 2 (лінія)", + "SSE.Controllers.Main.txtShape_accentCallout3": "Виноска 3 (лінія)", "SSE.Controllers.Main.txtShape_actionButtonBackPrevious": "Кнопка \"Назад\"", "SSE.Controllers.Main.txtShape_actionButtonBeginning": "Кнопка \"На початок\"", "SSE.Controllers.Main.txtShape_actionButtonBlank": "Пуста кнопка", + "SSE.Controllers.Main.txtShape_actionButtonDocument": "Кнопка документу", + "SSE.Controllers.Main.txtShape_actionButtonEnd": "Кнопка \"В кінець\"", + "SSE.Controllers.Main.txtShape_actionButtonForwardNext": "Кнопка \"Вперед\"", + "SSE.Controllers.Main.txtShape_actionButtonHelp": "Кнопка \"Довідка\"", + "SSE.Controllers.Main.txtShape_actionButtonHome": "Кнопка \"На головну\"", + "SSE.Controllers.Main.txtShape_actionButtonInformation": "Кнопка інформації", + "SSE.Controllers.Main.txtShape_actionButtonMovie": "Кнопка відео", "SSE.Controllers.Main.txtShape_arc": "Дуга", "SSE.Controllers.Main.txtShape_bentArrow": "Зігнута стрілка", + "SSE.Controllers.Main.txtShape_bentConnector5": "Колінчате з'єднання", + "SSE.Controllers.Main.txtShape_bentConnector5WithArrow": "Колінчате з'єднання зі стрілкою", + "SSE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Колінчате з'єднання з двома стрілками", "SSE.Controllers.Main.txtShape_bentUpArrow": "Загнута стрілка вгору", "SSE.Controllers.Main.txtShape_bevel": "Багетна рамка", "SSE.Controllers.Main.txtShape_blockArc": "Арка", + "SSE.Controllers.Main.txtShape_borderCallout1": "Виноска 1", + "SSE.Controllers.Main.txtShape_borderCallout2": "Виноска 2", + "SSE.Controllers.Main.txtShape_borderCallout3": "Виноска 3", + "SSE.Controllers.Main.txtShape_bracePair": "Подвійні фігурні дужки", + "SSE.Controllers.Main.txtShape_callout1": "Виноска 1 (без межі)", + "SSE.Controllers.Main.txtShape_callout2": "Виноска 2(без межі)", + "SSE.Controllers.Main.txtShape_callout3": "Виноска 3 (без межі)", + "SSE.Controllers.Main.txtShape_can": "Циліндр", + "SSE.Controllers.Main.txtShape_chevron": "Шеврон", + "SSE.Controllers.Main.txtShape_chord": "Хорда", + "SSE.Controllers.Main.txtShape_circularArrow": "Кругова стрілка", + "SSE.Controllers.Main.txtShape_cloud": "Хмара", + "SSE.Controllers.Main.txtShape_cloudCallout": "Виноска хмарка", + "SSE.Controllers.Main.txtShape_corner": "Кут", + "SSE.Controllers.Main.txtShape_cube": "Куб", + "SSE.Controllers.Main.txtShape_curvedConnector3": "Округлена сполучна лінія", + "SSE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Округлена лінія зі стрілкою", + "SSE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Округлена лінія з двома стрілками", + "SSE.Controllers.Main.txtShape_curvedDownArrow": "Вигнута вверх стрілка", + "SSE.Controllers.Main.txtShape_curvedLeftArrow": "Вигнута праворуч стрілка", + "SSE.Controllers.Main.txtShape_curvedRightArrow": "Вигнута ліворуч стрілка", + "SSE.Controllers.Main.txtShape_curvedUpArrow": "Вигнута вниз стрілка", + "SSE.Controllers.Main.txtShape_decagon": "Десятикутник", + "SSE.Controllers.Main.txtShape_diagStripe": "Діагональна смуга", + "SSE.Controllers.Main.txtShape_diamond": "Ромб", + "SSE.Controllers.Main.txtShape_dodecagon": "Дванадцятикутник", + "SSE.Controllers.Main.txtShape_donut": "Кільце", + "SSE.Controllers.Main.txtShape_doubleWave": "Подвійна хвиля", + "SSE.Controllers.Main.txtShape_downArrow": "Стрілка вниз", + "SSE.Controllers.Main.txtShape_downArrowCallout": "Виноска зі стрілкою вниз", + "SSE.Controllers.Main.txtShape_ellipse": "Еліпс", + "SSE.Controllers.Main.txtShape_ellipseRibbon": "Вигнута вниз стрічка", + "SSE.Controllers.Main.txtShape_ellipseRibbon2": "Вигнута вверх стрічка", + "SSE.Controllers.Main.txtShape_flowChartAlternateProcess": "Блок-схема: альтернативний процес", + "SSE.Controllers.Main.txtShape_flowChartCollate": "Блок-схема: зіставлення", + "SSE.Controllers.Main.txtShape_flowChartConnector": "Блок-схема: з'єднувач", + "SSE.Controllers.Main.txtShape_flowChartDecision": "Блок-схема: рішення", + "SSE.Controllers.Main.txtShape_flowChartDelay": "Блок-схема: затримка", + "SSE.Controllers.Main.txtShape_flowChartDisplay": "Блок-схема: дисплей", + "SSE.Controllers.Main.txtShape_flowChartDocument": "Блок-схема: документ", + "SSE.Controllers.Main.txtShape_flowChartExtract": "Блок-схема: витяг", + "SSE.Controllers.Main.txtShape_flowChartInputOutput": "Блок-схема: дані", + "SSE.Controllers.Main.txtShape_flowChartInternalStorage": "Блок-схема: внутрішня пам'ять", + "SSE.Controllers.Main.txtShape_flowChartMagneticDisk": "Блок-схема: магнітний диск", + "SSE.Controllers.Main.txtShape_flowChartMagneticDrum": "Блок-схема: пам'ять з прямим доступом", + "SSE.Controllers.Main.txtShape_flowChartMagneticTape": "Блок-схема: пам'ять з послідовним доступом", + "SSE.Controllers.Main.txtShape_flowChartManualInput": "Блок-схема: ручне введення", + "SSE.Controllers.Main.txtShape_flowChartManualOperation": "Блок-схема: ручне керування", + "SSE.Controllers.Main.txtShape_flowChartMerge": "Блок-схема: об'єднання", + "SSE.Controllers.Main.txtShape_flowChartMultidocument": "Блок-схема: декілька документів", + "SSE.Controllers.Main.txtShape_flowChartOffpageConnector": "Блок-схема: посилання на іншу сторінку", + "SSE.Controllers.Main.txtShape_flowChartOnlineStorage": "Блок-схема: збережені дані", + "SSE.Controllers.Main.txtShape_flowChartOr": "Блок-схема: АБО", + "SSE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Блок-схема: типовий процес", + "SSE.Controllers.Main.txtShape_flowChartPreparation": "Блок-схема: підготовка", + "SSE.Controllers.Main.txtShape_flowChartProcess": "Блок-схема: процес", + "SSE.Controllers.Main.txtShape_flowChartPunchedCard": "Блок-схема: картка", + "SSE.Controllers.Main.txtShape_flowChartPunchedTape": "Блок-схема: перфострічка", + "SSE.Controllers.Main.txtShape_flowChartSort": "Блок-схема: сортування", + "SSE.Controllers.Main.txtShape_flowChartSummingJunction": "Блок-схема: вузол суми", + "SSE.Controllers.Main.txtShape_flowChartTerminator": "Блок-схема: знак закінчення", + "SSE.Controllers.Main.txtShape_foldedCorner": "Загнутий кут", + "SSE.Controllers.Main.txtShape_frame": "Рамка", + "SSE.Controllers.Main.txtShape_halfFrame": "Половина рамки", + "SSE.Controllers.Main.txtShape_heart": "Серце", + "SSE.Controllers.Main.txtShape_heptagon": "Семикутник", + "SSE.Controllers.Main.txtShape_hexagon": "Шестикутник", + "SSE.Controllers.Main.txtShape_horizontalScroll": "Горизонтальний сувій", + "SSE.Controllers.Main.txtShape_irregularSeal1": "Спалах 1", + "SSE.Controllers.Main.txtShape_irregularSeal2": "Спалах 2", + "SSE.Controllers.Main.txtShape_leftArrow": "Стрілка ліворуч", + "SSE.Controllers.Main.txtShape_leftArrowCallout": "Виноска зі стрілкою ліворуч", + "SSE.Controllers.Main.txtShape_leftBrace": "Ліва фігурна дужка", + "SSE.Controllers.Main.txtShape_leftBracket": "Ліва кругла дужка", + "SSE.Controllers.Main.txtShape_leftRightArrow": "Подвійна стрілка ліворуч-праворуч", + "SSE.Controllers.Main.txtShape_leftRightArrowCallout": "Виноска зі стрілками ліворуч-праворуч", + "SSE.Controllers.Main.txtShape_leftRightUpArrow": "Потрійна стрілка ліворуч-праворуч-вверх", + "SSE.Controllers.Main.txtShape_leftUpArrow": "Подвійна стрілка ліворуч-вверх", + "SSE.Controllers.Main.txtShape_lightningBolt": "Блискавка", + "SSE.Controllers.Main.txtShape_line": "Лінія", "SSE.Controllers.Main.txtShape_lineWithArrow": "Стрілка", + "SSE.Controllers.Main.txtShape_lineWithTwoArrows": "Подвійна стрілка", + "SSE.Controllers.Main.txtShape_mathDivide": "Ділення", + "SSE.Controllers.Main.txtShape_mathEqual": "Дорівнює", + "SSE.Controllers.Main.txtShape_mathMinus": "Мінус", + "SSE.Controllers.Main.txtShape_mathMultiply": "Множення", + "SSE.Controllers.Main.txtShape_mathNotEqual": "Не дорівнює", + "SSE.Controllers.Main.txtShape_moon": "Місяць", "SSE.Controllers.Main.txtShape_noSmoking": "Заборонено", + "SSE.Controllers.Main.txtShape_notchedRightArrow": "Стрілка праворуч з вирізом", + "SSE.Controllers.Main.txtShape_octagon": "Восьмикутник", + "SSE.Controllers.Main.txtShape_polyline2": "Довільна форма", "SSE.Controllers.Main.txtShape_rect": "Прямокутник", + "SSE.Controllers.Main.txtShape_ribbon": "Стрічка вниз", + "SSE.Controllers.Main.txtShape_spline": "Крива", "SSE.Controllers.Main.txtShape_star10": "10-кінцева зірка", "SSE.Controllers.Main.txtShape_star12": "12-кінцева зірка", "SSE.Controllers.Main.txtShape_star16": "16-кінцева зірка", @@ -466,6 +774,7 @@ "SSE.Controllers.Main.txtShape_star6": "6-кінцева зірка", "SSE.Controllers.Main.txtShape_star7": "7-кінцева зірка", "SSE.Controllers.Main.txtShape_star8": "8-кінцева зірка", + "SSE.Controllers.Main.txtShape_wedgeEllipseCallout": "Овальна виноска", "SSE.Controllers.Main.txtStarsRibbons": "Зірки та стрічки", "SSE.Controllers.Main.txtStyle_Bad": "Поганий", "SSE.Controllers.Main.txtStyle_Calculation": "Розрахунок", @@ -488,11 +797,14 @@ "SSE.Controllers.Main.txtStyle_Title": "Назва", "SSE.Controllers.Main.txtStyle_Total": "Загалом", "SSE.Controllers.Main.txtStyle_Warning_Text": "Текст попередження", + "SSE.Controllers.Main.txtUnlockRangeDescription": "Введіть пароль, щоб змінити цей діапазон:", "SSE.Controllers.Main.txtUnlockRangeWarning": "Діапазон, який ви намагаєтесь змінити, захищений за допомогою пароля.", "SSE.Controllers.Main.txtXAxis": "X Ось", "SSE.Controllers.Main.txtYAxis": "Y ось", "SSE.Controllers.Main.unknownErrorText": "Невідома помилка.", "SSE.Controllers.Main.unsupportedBrowserErrorText": "Ваш браузер не підтримується", + "SSE.Controllers.Main.uploadDocFileCountMessage": "Жодного документу не завантажено.", + "SSE.Controllers.Main.uploadDocSizeMessage": "Перевищений максимальний розмір документу", "SSE.Controllers.Main.uploadImageExtMessage": "Невідомий формат зображення.", "SSE.Controllers.Main.uploadImageFileCountMessage": "Не завантажено жодного зображення.", "SSE.Controllers.Main.uploadImageSizeMessage": "Максимальний розмір зображення перевищено.", @@ -501,14 +813,24 @@ "SSE.Controllers.Main.warnBrowserIE9": "Програма має низькі можливості для IE9. Використовувати IE10 або вище", "SSE.Controllers.Main.warnBrowserZoom": "Налаштування масштабу вашого браузера не підтримується повністю. Змініть стандартний масштаб, натиснувши Ctrl + 0.", "SSE.Controllers.Main.warnLicenseExp": "Термін дії вашої ліцензії минув.
Будь ласка, оновіть свою ліцензію та оновіть сторінку.", + "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Термін дії ліцензії закінчився.
Немає доступ до функцій редагування документів.
Будь ласка, зверніться до адміністратора.", + "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Потрібно поновити ліцензію.
У вас обмежений доступ до функцій редагування документів.
Будь ласка, зверніться до свого адміністратора, щоб отримати повний доступ", "SSE.Controllers.Main.warnNoLicense": "Ви використовуєте відкриту версію %1. Ця версія має обмеження для одночасного підключення до сервера документів (20 підключень за один раз).
Якщо вам потрібно більше, подумайте про придбання комерційної ліцензії.", "SSE.Controllers.Main.warnProcessRightsChange": "Вам відмовлено у наданні права редагувати файл.", "SSE.Controllers.Print.strAllSheets": "Всі аркуші", + "SSE.Controllers.Print.textFirstCol": "Перший стовпчик", + "SSE.Controllers.Print.textFirstRow": "Перший рядок", + "SSE.Controllers.Print.textFrozenCols": "Закріплені стовпчики", + "SSE.Controllers.Print.textFrozenRows": "Закріплені рядки", + "SSE.Controllers.Print.textInvalidRange": "ПОМИЛКА! Неприпустимий діапазон клітинок", + "SSE.Controllers.Print.textNoRepeat": "Не повторювати", "SSE.Controllers.Print.textWarning": "Застереження", + "SSE.Controllers.Print.txtCustom": "Користувальницький", "SSE.Controllers.Print.warnCheckMargings": "Поля неправильні", "SSE.Controllers.Statusbar.errorLastSheet": "Робоча книга повинна мати щонайменше один видимий аркуш.", "SSE.Controllers.Statusbar.errorRemoveSheet": "Неможливо видалити робочий аркуш.", "SSE.Controllers.Statusbar.strSheet": "Лист", + "SSE.Controllers.Statusbar.textDisconnect": "З'єднання втрачено
Спроба підключення. Перевірте налаштування підключення.", "SSE.Controllers.Statusbar.warnDeleteSheet": "Робочий аркуш може містити дані. Ви впевнені, що хочете продовжити?", "SSE.Controllers.Statusbar.zoomText": "Збільшити {0}%", "SSE.Controllers.Toolbar.confirmAddFontName": "Шрифт, який ви збираєтеся зберегти, недоступний на поточному пристрої.
Текстовий стиль відображатиметься за допомогою одного з системних шрифтів, збережений шрифт буде використовуватися, коли він буде доступний.
Ви хочете продовжити ?", @@ -516,9 +838,12 @@ "SSE.Controllers.Toolbar.errorStockChart": "Невірний порядок рядків. Щоб побудувати фондову діаграму, помістіть дані на аркуші в наступному порядку: ціна відкриття, максимальна ціна, мінімальна ціна, ціна закриття.", "SSE.Controllers.Toolbar.textAccent": "Акценти", "SSE.Controllers.Toolbar.textBracket": "дужки", + "SSE.Controllers.Toolbar.textDirectional": "Напрямок", "SSE.Controllers.Toolbar.textFontSizeErr": "Введене значення невірно.
Будь ласка, введіть числове значення від 1 до 409", "SSE.Controllers.Toolbar.textFraction": "Дроби", "SSE.Controllers.Toolbar.textFunction": "Функції", + "SSE.Controllers.Toolbar.textIndicator": "Індикатори", + "SSE.Controllers.Toolbar.textInsert": "Вставити", "SSE.Controllers.Toolbar.textIntegral": "Інтеграли", "SSE.Controllers.Toolbar.textLargeOperator": "Великі оператори", "SSE.Controllers.Toolbar.textLimitAndLog": "Межі та логарифми", @@ -598,6 +923,7 @@ "SSE.Controllers.Toolbar.txtBracket_UppLim": "дужки", "SSE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Єдина дужка", "SSE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Єдина дужка", + "SSE.Controllers.Toolbar.txtDeleteCells": "Видалити клітинки", "SSE.Controllers.Toolbar.txtExpand": "Розгорнути та сортувати", "SSE.Controllers.Toolbar.txtExpandSort": "Дані після позначеного діапазону не буде впорядковано. Розширити вибір, щоб включити сусідні дані або продовжити впорядковування тільки щойно вибраних комірок?", "SSE.Controllers.Toolbar.txtFractionDiagonal": "Обмотана фракція", @@ -636,6 +962,7 @@ "SSE.Controllers.Toolbar.txtFunction_Sinh": "Гіперболічна синусація", "SSE.Controllers.Toolbar.txtFunction_Tan": "Функція тангенсу", "SSE.Controllers.Toolbar.txtFunction_Tanh": "Гіперболічна дотична функція", + "SSE.Controllers.Toolbar.txtInsertCells": "Вставити клітини", "SSE.Controllers.Toolbar.txtIntegral": "Інтеграл", "SSE.Controllers.Toolbar.txtIntegral_dtheta": "Диференціальна тета", "SSE.Controllers.Toolbar.txtIntegral_dx": "Диференціальний x", @@ -706,6 +1033,7 @@ "SSE.Controllers.Toolbar.txtLimitLog_LogBase": "Логарифм", "SSE.Controllers.Toolbar.txtLimitLog_Max": "Максимум", "SSE.Controllers.Toolbar.txtLimitLog_Min": "Мінімум", + "SSE.Controllers.Toolbar.txtLockSort": "Виявлено дані поруч із виділеним діапазоном, але у вас недостатньо прав для зміни цих клітинок.
Ви бажаєте продовжити роботу з виділеним діапазоном?", "SSE.Controllers.Toolbar.txtMatrix_1_2": "1x2Порожня матриця", "SSE.Controllers.Toolbar.txtMatrix_1_3": "1x3 Порожня матриця", "SSE.Controllers.Toolbar.txtMatrix_2_1": "2x1 Порожня матриця", @@ -854,6 +1182,10 @@ "SSE.Controllers.Toolbar.warnLongOperation": "Операція, яку ви збираєтеся виконати, може зайняти досить багато часу.
Ви впевнені, що хочете продовжити?", "SSE.Controllers.Toolbar.warnMergeLostData": "Дані лише верхньої лівої комірки залишаться в об'єднаній комірці.
Продовжити?", "SSE.Controllers.Viewport.textFreezePanes": "Закріпити області", + "SSE.Controllers.Viewport.textHideFBar": "Приховати рядок формул", + "SSE.Controllers.Viewport.textHideGridlines": "Сховати лінії сітки", + "SSE.Controllers.Viewport.textHideHeadings": "Сховати заголовки", + "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Десятковий роздільник", "SSE.Views.AdvancedSeparatorDialog.textTitle": "Додаткові параметри", "SSE.Views.AdvancedSeparatorDialog.txtNone": "(немає)", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Спеціальний фільтр", @@ -875,9 +1207,11 @@ "SSE.Views.AutoFilterDialog.txtFilterFontColor": "Фільтр за кольором шрифту", "SSE.Views.AutoFilterDialog.txtGreater": "Більше ніж...", "SSE.Views.AutoFilterDialog.txtGreaterEquals": "Більше або дорівнює ...", + "SSE.Views.AutoFilterDialog.txtLabelFilter": "Фільтр підписів", "SSE.Views.AutoFilterDialog.txtLess": "менше ніж...", "SSE.Views.AutoFilterDialog.txtLessEquals": "Менше або дорівнює...", "SSE.Views.AutoFilterDialog.txtNotBegins": "не починайте з...", + "SSE.Views.AutoFilterDialog.txtNotBetween": "Не між...", "SSE.Views.AutoFilterDialog.txtNotContains": "Не містить...", "SSE.Views.AutoFilterDialog.txtNotEnds": "Не закінчується з...", "SSE.Views.AutoFilterDialog.txtNotEquals": "Не рівний...", @@ -887,6 +1221,7 @@ "SSE.Views.AutoFilterDialog.txtSortFontColor": "Сортувати за кольором шрифту", "SSE.Views.AutoFilterDialog.txtSortHigh2Low": "Сортувати від найвищого до найнижчого", "SSE.Views.AutoFilterDialog.txtSortLow2High": "Сортувати від найнижчого до найвищого", + "SSE.Views.AutoFilterDialog.txtSortOption": "Додаткові параметри сортування...", "SSE.Views.AutoFilterDialog.txtTextFilter": "Текстовий фільтр", "SSE.Views.AutoFilterDialog.txtTitle": "Фільтр", "SSE.Views.AutoFilterDialog.txtTop10": "Топ-10", @@ -901,16 +1236,51 @@ "SSE.Views.CellSettings.textAngle": "Нахил", "SSE.Views.CellSettings.textBackColor": "Колір фону", "SSE.Views.CellSettings.textBackground": "Колір фону", + "SSE.Views.CellSettings.textBorderColor": "Колір", "SSE.Views.CellSettings.textBorders": "Стиль меж", + "SSE.Views.CellSettings.textClearRule": "Видалити правила", + "SSE.Views.CellSettings.textColor": "Заливка кольором", + "SSE.Views.CellSettings.textColorScales": "Шкали кольору", + "SSE.Views.CellSettings.textCondFormat": "Умовне форматування", + "SSE.Views.CellSettings.textDataBars": "Гістограми", + "SSE.Views.CellSettings.textDirection": "Напрямок", + "SSE.Views.CellSettings.textFill": "Заливка", + "SSE.Views.CellSettings.textForeground": "Колір переднього плану", + "SSE.Views.CellSettings.textGradient": "Градієнти", + "SSE.Views.CellSettings.textGradientColor": "Колір", + "SSE.Views.CellSettings.textGradientFill": "Градієнтна заливка", + "SSE.Views.CellSettings.textIndent": "Відступ", + "SSE.Views.CellSettings.textItems": "Елементи", + "SSE.Views.CellSettings.textLinear": "Лінійний", + "SSE.Views.CellSettings.textManageRule": "Керування правилами", + "SSE.Views.CellSettings.textNewRule": "Нове правило", + "SSE.Views.CellSettings.textNoFill": "Без заливки", + "SSE.Views.CellSettings.textSelection": "З поточного виділеного фрагмента", + "SSE.Views.CellSettings.textThisPivot": "З цієї зведеної таблиці", + "SSE.Views.CellSettings.textThisSheet": "З цього листа", + "SSE.Views.CellSettings.textThisTable": "З цієї таблиці", "SSE.Views.CellSettings.tipAddGradientPoint": "Додати точку градієнта", + "SSE.Views.ChartDataDialog.errorStockChart": "Неправильний порядок рядків. Щоб створити біржову діаграму, розташуйте дані на листі в наступному порядку: ціна відкриття, максимальна ціна, мінімальна ціна, ціна закриття.", "SSE.Views.ChartDataDialog.textAdd": "Додати", + "SSE.Views.ChartDataDialog.textCategory": "Підписи горизонтальної осі (категорії)", + "SSE.Views.ChartDataDialog.textData": "Діапазон даних для діаграми", + "SSE.Views.ChartDataDialog.textDown": "Вниз", + "SSE.Views.ChartDataDialog.textEdit": "Редагувати", + "SSE.Views.ChartDataDialog.textInvalidRange": "Неприпустимий діапазон клітинок", + "SSE.Views.ChartDataDialog.textSeries": "Елементи легенди (рядки)", + "SSE.Views.ChartDataDialog.textTitle": "Дані діаграми", + "SSE.Views.ChartDataRangeDialog.errorStockChart": "Неправильний порядок рядків. Щоб створити біржову діаграму, розташуйте дані на листі в наступному порядку: ціна відкриття, максимальна ціна, мінімальна ціна, ціна закриття.", + "SSE.Views.ChartDataRangeDialog.textInvalidRange": "Неприпустимий діапазон клітинок", "SSE.Views.ChartDataRangeDialog.txtAxisLabel": "Діапазон підписів осі", + "SSE.Views.ChartDataRangeDialog.txtChoose": "Виберіть діапазон", "SSE.Views.ChartDataRangeDialog.txtTitleCategory": "Підписи осі", + "SSE.Views.ChartDataRangeDialog.txtTitleSeries": "Змінити ряд", "SSE.Views.ChartSettings.strLineWeight": "Line Weight", "SSE.Views.ChartSettings.strSparkColor": "Колір", "SSE.Views.ChartSettings.strTemplate": "Шаблон", "SSE.Views.ChartSettings.textAdvanced": "Показати додаткові налаштування", "SSE.Views.ChartSettings.textBorderSizeErr": "Введене значення невірно.
Будь ласка, введіть значення від 0 pt до 1584 pt.", + "SSE.Views.ChartSettings.textChangeType": "Змінити тип", "SSE.Views.ChartSettings.textChartType": "Змінити тип діаграми", "SSE.Views.ChartSettings.textEditData": "Редагувати дату і місцезнаходження", "SSE.Views.ChartSettings.textFirstPoint": "Перша точка", @@ -928,8 +1298,10 @@ "SSE.Views.ChartSettings.textStyle": "Стиль", "SSE.Views.ChartSettings.textType": "Тип", "SSE.Views.ChartSettings.textWidth": "Ширина", + "SSE.Views.ChartSettingsDlg.errorMaxPoints": "ПОМИЛКА! Максимальна кількість точок у серії для діаграми становить 4096.", "SSE.Views.ChartSettingsDlg.errorMaxRows": "ПОМИЛКА! Максимальна кількість даних на кожну діаграму становить 255", "SSE.Views.ChartSettingsDlg.errorStockChart": "Невірний порядок рядків. Щоб побудувати фондову діаграму, помістіть дані на аркуші в наступному порядку: ціна відкриття, максимальна ціна, мінімальна ціна, ціна закриття.", + "SSE.Views.ChartSettingsDlg.textAbsolute": "Не переміщувати та не змінювати розміри разом з клітинками", "SSE.Views.ChartSettingsDlg.textAlt": "Альтернативний текст", "SSE.Views.ChartSettingsDlg.textAltDescription": "Опис угоди", "SSE.Views.ChartSettingsDlg.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація знаходиться в зображенні, автошопі, діаграмі або таблиці.", @@ -957,10 +1329,12 @@ "SSE.Views.ChartSettingsDlg.textEmptyLine": "Поєднання точок даних з лінією", "SSE.Views.ChartSettingsDlg.textFit": "Придатний до ширини", "SSE.Views.ChartSettingsDlg.textFixed": "Зафіксований", + "SSE.Views.ChartSettingsDlg.textFormat": "Формат підпису", "SSE.Views.ChartSettingsDlg.textGaps": "Прогалини", "SSE.Views.ChartSettingsDlg.textGridLines": "Сітки ліній", "SSE.Views.ChartSettingsDlg.textGroup": "Група Міні-діаграми", "SSE.Views.ChartSettingsDlg.textHide": "Приховати", + "SSE.Views.ChartSettingsDlg.textHideAxis": "Приховати вісь", "SSE.Views.ChartSettingsDlg.textHigh": "Високий", "SSE.Views.ChartSettingsDlg.textHorAxis": "Горизонтальна вісь", "SSE.Views.ChartSettingsDlg.textHorizontal": "Горізонтальний", @@ -1000,6 +1374,7 @@ "SSE.Views.ChartSettingsDlg.textNextToAxis": "Біля вісі", "SSE.Views.ChartSettingsDlg.textNone": "Жоден", "SSE.Views.ChartSettingsDlg.textNoOverlay": "Немає накладання", + "SSE.Views.ChartSettingsDlg.textOneCell": "Переміщати, але не змінювати розміри разом з клітинками", "SSE.Views.ChartSettingsDlg.textOnTickMarks": "На квитках марок", "SSE.Views.ChartSettingsDlg.textOut": "з", "SSE.Views.ChartSettingsDlg.textOuterTop": "Зовнішній зверху", @@ -1021,6 +1396,7 @@ "SSE.Views.ChartSettingsDlg.textShowValues": "Значення відображуваної діаграми", "SSE.Views.ChartSettingsDlg.textSingle": "Єдина міні-діаграма", "SSE.Views.ChartSettingsDlg.textSmooth": "Гладкий", + "SSE.Views.ChartSettingsDlg.textSnap": "Прив'язка до клітинки", "SSE.Views.ChartSettingsDlg.textSparkRanges": "Діапазони міні-діаграм", "SSE.Views.ChartSettingsDlg.textStraight": "Строгий", "SSE.Views.ChartSettingsDlg.textStyle": "Стиль", @@ -1032,6 +1408,7 @@ "SSE.Views.ChartSettingsDlg.textTitleSparkline": "Міні-діаграми - розширені налаштування", "SSE.Views.ChartSettingsDlg.textTop": "Верх", "SSE.Views.ChartSettingsDlg.textTrillions": "Трильйони", + "SSE.Views.ChartSettingsDlg.textTwoCell": "Переміщувати та змінювати розміри разом з клітинками", "SSE.Views.ChartSettingsDlg.textType": "Тип", "SSE.Views.ChartSettingsDlg.textTypeData": "Тип і дата", "SSE.Views.ChartSettingsDlg.textUnits": "Елементи відображення", @@ -1041,14 +1418,64 @@ "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Назва осі Y", "SSE.Views.ChartSettingsDlg.textZero": "Нуль", "SSE.Views.ChartSettingsDlg.txtEmpty": "Це поле є обов'язковим", + "SSE.Views.ChartTypeDialog.textTitle": "Тип діаграми", + "SSE.Views.CreatePivotDialog.textDestination": "Виберіть, де розмістити таблицю", + "SSE.Views.CreatePivotDialog.textExist": "Існуючий лист", "SSE.Views.CreatePivotDialog.textInvalidRange": "Недійсний діапазон комірок", + "SSE.Views.CreatePivotDialog.textNew": "Новий лист", + "SSE.Views.CreatePivotDialog.textTitle": "Створити зведену таблицю", + "SSE.Views.CreateSparklineDialog.textDestination": "Виберіть, де помістити спарклайни", + "SSE.Views.CreateSparklineDialog.textInvalidRange": "Неприпустимий діапазон клітинок", + "SSE.Views.CreateSparklineDialog.textTitle": "Створення спарклайнів", + "SSE.Views.DataTab.capBtnGroup": "Згрупувати", + "SSE.Views.DataTab.capBtnTextCustomSort": "Сортування, що налаштовується", + "SSE.Views.DataTab.capBtnTextDataValidation": "Перевірка даних", + "SSE.Views.DataTab.capDataFromText": "Отримати дані", + "SSE.Views.DataTab.mniFromFile": "З локального TXT/CSV файлу", + "SSE.Views.DataTab.mniFromUrl": "URL TXT/CSV файлу", + "SSE.Views.DataTab.textClear": "Видалити структуру", + "SSE.Views.DataTab.textGroupColumns": "Згрупувати стовпчики", + "SSE.Views.DataTab.textGroupRows": "Згрупувати рядки", + "SSE.Views.DataTab.tipCustomSort": "Сортування, що налаштовується", + "SSE.Views.DataTab.tipDataFromText": "Отримати дані з текстового/CSV-файлу", + "SSE.Views.DataTab.tipDataValidation": "Перевірка даних", + "SSE.Views.DataTab.tipGroup": "Згрупувати діапазон клітинок", "SSE.Views.DataTab.tipUngroup": "Зняти групування діапазону комірок", "SSE.Views.DataValidationDialog.errorNamedRange": "Зазначений іменований діапазон не знайдено.", + "SSE.Views.DataValidationDialog.errorNegativeTextLength": "В умовах {0} не можна використовувати негативні значення.", + "SSE.Views.DataValidationDialog.strError": "Повідомлення про помилку", + "SSE.Views.DataValidationDialog.strInput": "Підказка щодо введення", "SSE.Views.DataValidationDialog.textAlert": "Сповіщення", "SSE.Views.DataValidationDialog.textAllow": "Дозволити", "SSE.Views.DataValidationDialog.textApply": "Поширити зміни на всі інші клітинки з тією ж умовою", + "SSE.Views.DataValidationDialog.textCompare": "Порівняти з", + "SSE.Views.DataValidationDialog.textData": "Дані", + "SSE.Views.DataValidationDialog.textEndDate": "Дата завершення", + "SSE.Views.DataValidationDialog.textEndTime": "Час закінчення", + "SSE.Views.DataValidationDialog.textError": "Повідомлення про помилку", + "SSE.Views.DataValidationDialog.textFormula": "Формула", + "SSE.Views.DataValidationDialog.textIgnore": "Ігнорувати пусті клітинки", + "SSE.Views.DataValidationDialog.textInput": "Підказка щодо введення", + "SSE.Views.DataValidationDialog.textMax": "Максимум", + "SSE.Views.DataValidationDialog.textMessage": "Повідомлення", + "SSE.Views.DataValidationDialog.textMin": "Мінімум", "SSE.Views.DataValidationDialog.txtAny": "Будь-яке значення", "SSE.Views.DataValidationDialog.txtBetween": "між", + "SSE.Views.DataValidationDialog.txtDate": "Дата", + "SSE.Views.DataValidationDialog.txtDecimal": "Десяткове число", + "SSE.Views.DataValidationDialog.txtElTime": "Прошло часу", + "SSE.Views.DataValidationDialog.txtEndDate": "Дата завершення", + "SSE.Views.DataValidationDialog.txtEndTime": "Час закінчення", + "SSE.Views.DataValidationDialog.txtEqual": "дорівнює", + "SSE.Views.DataValidationDialog.txtGreaterThan": "більше", + "SSE.Views.DataValidationDialog.txtGreaterThanOrEqual": "більше або дорівнює", + "SSE.Views.DataValidationDialog.txtLength": "Довжина", + "SSE.Views.DataValidationDialog.txtLessThan": "менше ніж", + "SSE.Views.DataValidationDialog.txtLessThanOrEqual": "менше або дорівнює", + "SSE.Views.DataValidationDialog.txtList": "Список", + "SSE.Views.DataValidationDialog.txtNotBetween": "не між", + "SSE.Views.DataValidationDialog.txtNotEqual": "не рівно", + "SSE.Views.DataValidationDialog.txtOther": "Інше", "SSE.Views.DigitalFilterDialog.capAnd": "і", "SSE.Views.DigitalFilterDialog.capCondition1": "Дорівнює", "SSE.Views.DigitalFilterDialog.capCondition10": "не закінчується з", @@ -1100,10 +1527,27 @@ "SSE.Views.DocumentHolder.textArrangeForward": "Висувати", "SSE.Views.DocumentHolder.textArrangeFront": "Перенести на передній план", "SSE.Views.DocumentHolder.textAverage": "Середнє", + "SSE.Views.DocumentHolder.textBullets": "Маркери", + "SSE.Views.DocumentHolder.textCount": "Кількість", + "SSE.Views.DocumentHolder.textCrop": "Обрізати", + "SSE.Views.DocumentHolder.textCropFill": "Заливка", + "SSE.Views.DocumentHolder.textCropFit": "Вмістити", + "SSE.Views.DocumentHolder.textEditPoints": "Змінити точки", "SSE.Views.DocumentHolder.textEntriesList": "Виберати зі спадного списку", + "SSE.Views.DocumentHolder.textFlipH": "Перевернути зліва направо", + "SSE.Views.DocumentHolder.textFlipV": "Перевернути зверху вниз", "SSE.Views.DocumentHolder.textFreezePanes": "Заморозити панелі", + "SSE.Views.DocumentHolder.textFromFile": "З файлу", + "SSE.Views.DocumentHolder.textFromStorage": "Зі сховища", + "SSE.Views.DocumentHolder.textFromUrl": "З URL", + "SSE.Views.DocumentHolder.textListSettings": "Налаштування списку", "SSE.Views.DocumentHolder.textMacro": "Призначити макрос", + "SSE.Views.DocumentHolder.textMax": "Макс", + "SSE.Views.DocumentHolder.textMin": "Мін", + "SSE.Views.DocumentHolder.textMore": "Інші функції", + "SSE.Views.DocumentHolder.textMoreFormats": "Більше форматів", "SSE.Views.DocumentHolder.textNone": "Жоден", + "SSE.Views.DocumentHolder.textNumbering": "Нумерація", "SSE.Views.DocumentHolder.textShapeAlignBottom": "Вирівняти по нижньому краю", "SSE.Views.DocumentHolder.textShapeAlignCenter": "Вирівняти по центру", "SSE.Views.DocumentHolder.textShapeAlignLeft": "Вирівняти по лівому краю", @@ -1130,22 +1574,32 @@ "SSE.Views.DocumentHolder.txtClearText": "Текст", "SSE.Views.DocumentHolder.txtColumn": "Загальна колонка", "SSE.Views.DocumentHolder.txtColumnWidth": "Встановити ширину стовпця", + "SSE.Views.DocumentHolder.txtCondFormat": "Умовне форматування", "SSE.Views.DocumentHolder.txtCopy": "Копіювати", + "SSE.Views.DocumentHolder.txtCurrency": "Грошовий", "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Спеціальна ширина стовпця", "SSE.Views.DocumentHolder.txtCustomRowHeight": "Спеціальна висота рядка", + "SSE.Views.DocumentHolder.txtCustomSort": "Сортування, що налаштовується", "SSE.Views.DocumentHolder.txtCut": "Вирізати", + "SSE.Views.DocumentHolder.txtDate": "Дата", "SSE.Views.DocumentHolder.txtDelete": "Видалити", "SSE.Views.DocumentHolder.txtDescending": "Спускається", + "SSE.Views.DocumentHolder.txtDistribHor": "Розподілити горизонтально", + "SSE.Views.DocumentHolder.txtDistribVert": "Розподілити вертикально", "SSE.Views.DocumentHolder.txtEditComment": "Редагувати коментар", "SSE.Views.DocumentHolder.txtFilter": "Фільтр", "SSE.Views.DocumentHolder.txtFilterCellColor": "Фільтр за кольором комірки", "SSE.Views.DocumentHolder.txtFilterFontColor": "Фільтр за кольором шрифту", "SSE.Views.DocumentHolder.txtFilterValue": "Фільтр за значенням вибраної комірки", "SSE.Views.DocumentHolder.txtFormula": "Вставити функцію", + "SSE.Views.DocumentHolder.txtFraction": "Дріб", + "SSE.Views.DocumentHolder.txtGeneral": "Загальний", "SSE.Views.DocumentHolder.txtGroup": "Група", "SSE.Views.DocumentHolder.txtHide": "Приховати", "SSE.Views.DocumentHolder.txtInsert": "Вставити", "SSE.Views.DocumentHolder.txtInsHyperlink": "Гіперсилка", + "SSE.Views.DocumentHolder.txtNumber": "Числовий", + "SSE.Views.DocumentHolder.txtNumFormat": "Числовий формат", "SSE.Views.DocumentHolder.txtPaste": "Вставити", "SSE.Views.DocumentHolder.txtReapply": "Повторно застосуйте", "SSE.Views.DocumentHolder.txtRow": "Загальний ряд", @@ -1165,11 +1619,24 @@ "SSE.Views.DocumentHolder.txtUngroup": "Розпакувати", "SSE.Views.DocumentHolder.txtWidth": "Ширина", "SSE.Views.DocumentHolder.vertAlignText": "Вертикальне вирівнювання", + "SSE.Views.FieldSettingsDialog.strLayout": "Макет", + "SSE.Views.FieldSettingsDialog.textTitle": "Параметри полів", "SSE.Views.FieldSettingsDialog.txtAverage": "Середнє", + "SSE.Views.FieldSettingsDialog.txtBlank": "Додати пустий рядок після кожного запису", + "SSE.Views.FieldSettingsDialog.txtCompact": "Компактна", + "SSE.Views.FieldSettingsDialog.txtCount": "Кількість", + "SSE.Views.FieldSettingsDialog.txtCountNums": "Кількість чисел", + "SSE.Views.FieldSettingsDialog.txtCustomName": "Ім'я користувача", + "SSE.Views.FieldSettingsDialog.txtMax": "Макс", + "SSE.Views.FieldSettingsDialog.txtMin": "Мін", + "SSE.Views.FieldSettingsDialog.txtOutline": "Структура", + "SSE.Views.FieldSettingsDialog.txtSummarize": "Функції для проміжних підсумків", "SSE.Views.FileMenu.btnBackCaption": "Перейти до документів", "SSE.Views.FileMenu.btnCloseMenuCaption": "Закрити меню", "SSE.Views.FileMenu.btnCreateNewCaption": "Створити новий", "SSE.Views.FileMenu.btnDownloadCaption": "Завантажити як...", + "SSE.Views.FileMenu.btnExitCaption": "Вийти", + "SSE.Views.FileMenu.btnFileOpenCaption": "Відкрити...", "SSE.Views.FileMenu.btnHelpCaption": "Допомога...", "SSE.Views.FileMenu.btnInfoCaption": "Інформація про електронну таблицю ...", "SSE.Views.FileMenu.btnPrintCaption": "Роздрукувати", @@ -1182,12 +1649,17 @@ "SSE.Views.FileMenu.btnSettingsCaption": "Розширені налаштування...", "SSE.Views.FileMenu.btnToEditCaption": "Редагувати електронну таблицю", "SSE.Views.FileMenuPanels.CreateNew.txtBlank": "Пуста таблиця", + "SSE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Створити нову", "SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Застосувати", "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Додати автора", "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Додати текст", "SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Додаток", "SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Автор", "SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Змінити права доступу", + "SSE.Views.FileMenuPanels.DocumentInfo.txtComment": "Коментар", + "SSE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Створена", + "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Автор останньої зміни", + "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Остання зміна", "SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Місцезнаходження", "SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Особи, які мають права", "SSE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Тема", @@ -1200,16 +1672,20 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Режим спільного редагування", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Інші користувачі побачать ваші зміни одразу", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Вам потрібно буде прийняти зміни, перш ніж побачити їх", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Десятковий роздільник", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Швидко", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Підказки шрифта", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Завжди зберігати на сервері (в іншому випадку зберегти на сервері закритий документ)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Мова формули", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Приклад: SUM; ХВ; MAX; РАХУВАТИ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Увімкніть показ коментарів", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Налаштування макросів", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Вирізання, копіювання та вставка", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Регіональні налаштування", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Приклад:", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Увімкніть відображення усунених зауважень", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Суворий", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Тема інтерфейсу", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Одиниця виміру", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "Зменшити значення за замовчуванням", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes": "Кожні 10 хвилин", @@ -1222,21 +1698,50 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Зберегти на сервері", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Кожну хвилину", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe": "Білоруська", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "Болгарська", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "Каталонська", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "Режим кешування за замовчуванням", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Сантиметр", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs": "Чеський", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa": "Данський", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Німецький", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl": "Грецька", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "Англійська", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi": "Фінський", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "Французький", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu": "Угорська", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtId": "Індонезійська", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "Дюйм", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Італійська", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Японська", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Корейська", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Дісплей коментування", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Лаоська", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Латиська", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "як OS X", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Рідний", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNb": "Норвежська", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "Голландський", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Польський", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Визначити", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Російський", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Увімкнути все", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc": "Увімкнути всі макроси без сповіщення", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Вимкнути все", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Вимкнути всі макроси без сповіщення", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Вимкнути всі макроси зі сповіщенням", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "як Windows", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Китайська", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Застосувати", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Мова словника", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Пропускати слова з ВЕЛИКИХ БУКВ", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Пропускати слова з цифрами", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Параметри автозаміни...", + "SSE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Редагувати таблицю", + "SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Під час редагування з електронної таблиці буде видалено підписи.
Продовжити?", "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Загальні", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Налаштування сторінки", + "SSE.Views.FormatRulesEditDlg.fillColor": "Колір заливки", "SSE.Views.FormatRulesEditDlg.text2Scales": "Двоколірна шкала", "SSE.Views.FormatRulesEditDlg.text3Scales": "Триколірна шкала", "SSE.Views.FormatRulesEditDlg.textAllBorders": "Всі кордони", @@ -1250,9 +1755,57 @@ "SSE.Views.FormatRulesEditDlg.textBordersColor": "Колір меж", "SSE.Views.FormatRulesEditDlg.textBordersStyle": "Стиль меж", "SSE.Views.FormatRulesEditDlg.textBottomBorders": "Нижні межі", + "SSE.Views.FormatRulesEditDlg.textCannotAddCF": "Неможливо додати умовне форматування.", + "SSE.Views.FormatRulesEditDlg.textCellMidpoint": "Середина клітинки", + "SSE.Views.FormatRulesEditDlg.textCenterBorders": "Внутрішні вертикальні межі", + "SSE.Views.FormatRulesEditDlg.textClear": "Очистити", + "SSE.Views.FormatRulesEditDlg.textContext": "Контекст", + "SSE.Views.FormatRulesEditDlg.textCustom": "Особливий", + "SSE.Views.FormatRulesEditDlg.textDiagDownBorder": "Діагональна межа зверху вниз", + "SSE.Views.FormatRulesEditDlg.textDiagUpBorder": "Діагональна межа знизу нагору", + "SSE.Views.FormatRulesEditDlg.textEmptyFormula": "Введіть допустиму формулу.", + "SSE.Views.FormatRulesEditDlg.textEmptyText": "Введіть значення.", + "SSE.Views.FormatRulesEditDlg.textErrorTop10Between": "Введіть число від {0} до {1}.", + "SSE.Views.FormatRulesEditDlg.textFill": "Заливка", + "SSE.Views.FormatRulesEditDlg.textFormat": "Формат", + "SSE.Views.FormatRulesEditDlg.textFormula": "Формула", + "SSE.Views.FormatRulesEditDlg.textGradient": "Градієнт", + "SSE.Views.FormatRulesEditDlg.textIconsOverlap": "Один або кілька діапазонів даних значків перекриваються.
Скоригуйте значення діапазонів даних значків так, щоб діапазони не перекривалися.", + "SSE.Views.FormatRulesEditDlg.textIconStyle": "Стиль іконки", + "SSE.Views.FormatRulesEditDlg.textInsideBorders": "Внутрішні межі", + "SSE.Views.FormatRulesEditDlg.textInvalid": "Неприпустимий діапазон даних", + "SSE.Views.FormatRulesEditDlg.textInvalidRange": "ПОМИЛКА! Неприпустимий діапазон клітинок", + "SSE.Views.FormatRulesEditDlg.textItalic": "Курсив", + "SSE.Views.FormatRulesEditDlg.textItem": "Елемент", + "SSE.Views.FormatRulesEditDlg.textLeft2Right": "Зліва направо", + "SSE.Views.FormatRulesEditDlg.textLeftBorders": "Ліві кордони", + "SSE.Views.FormatRulesEditDlg.textLongBar": "Найдовший стовпчик", + "SSE.Views.FormatRulesEditDlg.textMaximum": "Максимум", + "SSE.Views.FormatRulesEditDlg.textMaxpoint": "Макс.точка", + "SSE.Views.FormatRulesEditDlg.textMiddleBorders": "Внутрішні горизонтальні межі", + "SSE.Views.FormatRulesEditDlg.textMidpoint": "Середня точка", + "SSE.Views.FormatRulesEditDlg.textMinimum": "Мінімум", + "SSE.Views.FormatRulesEditDlg.textMinpoint": "Мін.точка", + "SSE.Views.FormatRulesEditDlg.textNegative": "Негативне", "SSE.Views.FormatRulesEditDlg.textNewColor": "Користувальницький колір", + "SSE.Views.FormatRulesEditDlg.textNoBorders": "Без кордонів", + "SSE.Views.FormatRulesEditDlg.textNone": "Немає", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "Принаймні одне із зазначених значень не є допустимим відсотком.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentile": "Принаймні одне із зазначених значень не є допустимим відсотком.", + "SSE.Views.FormatRulesEditDlg.textOutBorders": "Зовнішні кордони", "SSE.Views.FormatRulesEditDlg.tipBorders": "Межі", + "SSE.Views.FormatRulesEditDlg.tipNumFormat": "Числовий формат", "SSE.Views.FormatRulesEditDlg.txtAccounting": "Фінансовий", + "SSE.Views.FormatRulesEditDlg.txtCurrency": "Грошовий", + "SSE.Views.FormatRulesEditDlg.txtDate": "Дата", + "SSE.Views.FormatRulesEditDlg.txtFraction": "Дріб", + "SSE.Views.FormatRulesEditDlg.txtGeneral": "Загальний", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "Без значка", + "SSE.Views.FormatRulesEditDlg.txtNumber": "Числовий", + "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Зміна правил форматування", + "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Нове правило форматування", + "SSE.Views.FormatRulesManagerDlg.guestText": "Гість", + "SSE.Views.FormatRulesManagerDlg.lockText": "Заблокований", "SSE.Views.FormatRulesManagerDlg.text1Above": "На 1 стандартне відхилення вище за середнє", "SSE.Views.FormatRulesManagerDlg.text1Below": "На 1 стандартне відхилення нижче за середнє", "SSE.Views.FormatRulesManagerDlg.text2Above": "На 2 стандартні відхилення вище середнього", @@ -1261,10 +1814,35 @@ "SSE.Views.FormatRulesManagerDlg.text3Below": "На 3 стандартні відхилення нижче середнього", "SSE.Views.FormatRulesManagerDlg.textAbove": "Вище середнього", "SSE.Views.FormatRulesManagerDlg.textApply": "Застосувати до", + "SSE.Views.FormatRulesManagerDlg.textBeginsWith": "Значення клітинки починається з", "SSE.Views.FormatRulesManagerDlg.textBelow": "Нижче середнього", + "SSE.Views.FormatRulesManagerDlg.textBetween": "знаходиться між {0} та {1}", + "SSE.Views.FormatRulesManagerDlg.textCellValue": "Значення клітинки", + "SSE.Views.FormatRulesManagerDlg.textColorScale": "Шкала кольорів", + "SSE.Views.FormatRulesManagerDlg.textContains": "Значення клітинки містить", + "SSE.Views.FormatRulesManagerDlg.textContainsBlank": "Клітинка містить порожнє значення", + "SSE.Views.FormatRulesManagerDlg.textContainsError": "Клітинка містить помилку", + "SSE.Views.FormatRulesManagerDlg.textDelete": "Видалити", + "SSE.Views.FormatRulesManagerDlg.textDown": "Перемістити правило вниз", + "SSE.Views.FormatRulesManagerDlg.textDuplicate": "Значення, що повторюються", + "SSE.Views.FormatRulesManagerDlg.textEdit": "Змінити", + "SSE.Views.FormatRulesManagerDlg.textEnds": "Значення клітинки закінчується на", + "SSE.Views.FormatRulesManagerDlg.textEqAbove": "Дорівнює або вище середнього", + "SSE.Views.FormatRulesManagerDlg.textEqBelow": "Дорівнює або менше середнього", + "SSE.Views.FormatRulesManagerDlg.textFormat": "Формат", + "SSE.Views.FormatRulesManagerDlg.textIconSet": "Набір іконок", + "SSE.Views.FormatRulesManagerDlg.textNew": "Нове", + "SSE.Views.FormatRulesManagerDlg.textNotBetween": "не знаходиться між {0} та {1}", + "SSE.Views.FormatRulesManagerDlg.textNotContains": "Значення клітинки не містить", + "SSE.Views.FormatRulesManagerDlg.textNotContainsBlank": "Клітинка не містить пусте значення", + "SSE.Views.FormatRulesManagerDlg.textNotContainsError": "Клітинка не містить помилки", + "SSE.Views.FormatRulesManagerDlg.textSelection": "Поточний виділений фрагмент", + "SSE.Views.FormatRulesManagerDlg.textUp": "Перемістити правило вверх", + "SSE.Views.FormatRulesManagerDlg.txtTitle": "Умовне форматування", "SSE.Views.FormatSettingsDialog.textCategory": "Категорія", "SSE.Views.FormatSettingsDialog.textDecimal": "десятковий дріб", "SSE.Views.FormatSettingsDialog.textFormat": "Формат", + "SSE.Views.FormatSettingsDialog.textLinked": "Зв'язок з джерелом", "SSE.Views.FormatSettingsDialog.textSeparator": "Використовуйте 1000 роздільник", "SSE.Views.FormatSettingsDialog.textSymbols": "Символи", "SSE.Views.FormatSettingsDialog.textTitle": "Формат числа", @@ -1280,6 +1858,7 @@ "SSE.Views.FormatSettingsDialog.txtDate": "Дата", "SSE.Views.FormatSettingsDialog.txtFraction": "Дріб", "SSE.Views.FormatSettingsDialog.txtGeneral": "Загальні", + "SSE.Views.FormatSettingsDialog.txtNone": "Немає", "SSE.Views.FormatSettingsDialog.txtNumber": "Номер", "SSE.Views.FormatSettingsDialog.txtPercentage": "відсотковий вміст", "SSE.Views.FormatSettingsDialog.txtSample": "Приклад:", @@ -1294,49 +1873,97 @@ "SSE.Views.FormulaDialog.textListDescription": "Вибрати функцію", "SSE.Views.FormulaDialog.txtTitle": "Вставити функцію", "SSE.Views.FormulaTab.textAutomatic": "Автоматично", + "SSE.Views.FormulaTab.textCalculateCurrentSheet": "Перерахунок поточного листа", + "SSE.Views.FormulaTab.textCalculateWorkbook": "Перерахунок книги", + "SSE.Views.FormulaTab.textManual": "Вручну", + "SSE.Views.FormulaTab.tipCalculate": "Перерахунок", + "SSE.Views.FormulaTab.tipCalculateTheEntireWorkbook": "Перерахунок усієї книги", "SSE.Views.FormulaTab.txtAdditional": "Вставити функцію", "SSE.Views.FormulaTab.txtAutosum": "Автосума", + "SSE.Views.FormulaTab.txtCalculation": "Перерахунок", + "SSE.Views.FormulaTab.txtFormula": "Функція", + "SSE.Views.FormulaTab.txtFormulaTip": "Вставити функцію", + "SSE.Views.FormulaTab.txtMore": "Інші функції", "SSE.Views.FormulaWizard.textAny": "будь-який", "SSE.Views.FormulaWizard.textArgument": "Аргумент", + "SSE.Views.FormulaWizard.textFunction": "Функція", + "SSE.Views.FormulaWizard.textFunctionRes": "Результат функції", + "SSE.Views.FormulaWizard.textHelp": "Довідка по цій функції", + "SSE.Views.FormulaWizard.textLogical": "логічне значення", + "SSE.Views.FormulaWizard.textNumber": "число", + "SSE.Views.FormulaWizard.textTitle": "Аргументи функції", + "SSE.Views.FormulaWizard.textValue": "Значення", "SSE.Views.HeaderFooterDialog.textAlign": "Вирівняти відносно полів сторінки", "SSE.Views.HeaderFooterDialog.textAll": "Усі сторінки", "SSE.Views.HeaderFooterDialog.textBold": "Напівжирний", + "SSE.Views.HeaderFooterDialog.textCenter": "В центрі", + "SSE.Views.HeaderFooterDialog.textDate": "Дата", + "SSE.Views.HeaderFooterDialog.textDiffFirst": "Особливий для першої сторінки", + "SSE.Views.HeaderFooterDialog.textDiffOdd": "Різні для парних та непарних", + "SSE.Views.HeaderFooterDialog.textEven": "Парна сторінка", + "SSE.Views.HeaderFooterDialog.textFileName": "Ім'я файлу", + "SSE.Views.HeaderFooterDialog.textFirst": "Перша сторінка", + "SSE.Views.HeaderFooterDialog.textFooter": "Нижній колонтитул", + "SSE.Views.HeaderFooterDialog.textHeader": "Верхній колонтитул", + "SSE.Views.HeaderFooterDialog.textInsert": "Вставити", + "SSE.Views.HeaderFooterDialog.textItalic": "Курсив", + "SSE.Views.HeaderFooterDialog.textLeft": "Ліворуч", "SSE.Views.HeaderFooterDialog.textNewColor": "Користувальницький колір", + "SSE.Views.HeaderFooterDialog.textOdd": "Непарна сторінка", + "SSE.Views.HeaderFooterDialog.textTitle": "Параметри верхнього та нижнього колонтитулів", + "SSE.Views.HeaderFooterDialog.tipFontName": "Шрифт", + "SSE.Views.HeaderFooterDialog.tipFontSize": "Розмір шрифту", "SSE.Views.HyperlinkSettingsDialog.strDisplay": "Дісплей", "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "З'єднатися з", "SSE.Views.HyperlinkSettingsDialog.strRange": "Діапазон", "SSE.Views.HyperlinkSettingsDialog.strSheet": "Лист", + "SSE.Views.HyperlinkSettingsDialog.textCopy": "Копіювати", "SSE.Views.HyperlinkSettingsDialog.textDefault": "Вибраний діапазон", "SSE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Введіть підпис тут", "SSE.Views.HyperlinkSettingsDialog.textEmptyLink": "Введіть посилання тут", "SSE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Введіть підказку тут", "SSE.Views.HyperlinkSettingsDialog.textExternalLink": "Зовнішнє посилання", + "SSE.Views.HyperlinkSettingsDialog.textGetLink": "Отримати посилання", "SSE.Views.HyperlinkSettingsDialog.textInternalLink": "Внутрішній діапазон даних", "SSE.Views.HyperlinkSettingsDialog.textInvalidRange": "ПОМИЛКА! Недійсний діапазон комірок", + "SSE.Views.HyperlinkSettingsDialog.textNames": "Визначені імена", "SSE.Views.HyperlinkSettingsDialog.textTipText": "Текст ScreenTip", "SSE.Views.HyperlinkSettingsDialog.textTitle": "Налаштування гіперсилки", "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "Це поле є обов'язковим", "SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com\"", "SSE.Views.ImageSettings.textAdvanced": "Показати додаткові налаштування", + "SSE.Views.ImageSettings.textCrop": "Обрізати", + "SSE.Views.ImageSettings.textCropFill": "Заливка", + "SSE.Views.ImageSettings.textCropFit": "Вмістити", + "SSE.Views.ImageSettings.textCropToShape": "Обрізати по фігурі", "SSE.Views.ImageSettings.textEdit": "Редагувати", "SSE.Views.ImageSettings.textEditObject": "Редагувати об'єкт", + "SSE.Views.ImageSettings.textFlip": "Перевернути", "SSE.Views.ImageSettings.textFromFile": "З файлу", + "SSE.Views.ImageSettings.textFromStorage": "Зі сховища", "SSE.Views.ImageSettings.textFromUrl": "З URL", "SSE.Views.ImageSettings.textHeight": "Висота", + "SSE.Views.ImageSettings.textHintFlipH": "Перевернути зліва направо", + "SSE.Views.ImageSettings.textHintFlipV": "Перевернути зверху вниз", "SSE.Views.ImageSettings.textInsert": "Замінити зображення", "SSE.Views.ImageSettings.textKeepRatio": "Сталі пропорції", "SSE.Views.ImageSettings.textOriginalSize": "За замовчуванням", "SSE.Views.ImageSettings.textRotation": "Поворот", "SSE.Views.ImageSettings.textSize": "Розмір", "SSE.Views.ImageSettings.textWidth": "Ширина", + "SSE.Views.ImageSettingsAdvanced.textAbsolute": "Не переміщувати та не змінювати розміри разом з клітинками", "SSE.Views.ImageSettingsAdvanced.textAlt": "Альтернативний текст", "SSE.Views.ImageSettingsAdvanced.textAltDescription": "Опис", "SSE.Views.ImageSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація знаходиться в зображенні, автошопі, діаграмі або таблиці.", "SSE.Views.ImageSettingsAdvanced.textAltTitle": "Назва", "SSE.Views.ImageSettingsAdvanced.textAngle": "Нахил", "SSE.Views.ImageSettingsAdvanced.textFlipped": "Віддзеркалено", + "SSE.Views.ImageSettingsAdvanced.textHorizontally": "По горизонталі", + "SSE.Views.ImageSettingsAdvanced.textOneCell": "Переміщати, але не змінювати розміри разом з клітинками", "SSE.Views.ImageSettingsAdvanced.textRotation": "Поворот", + "SSE.Views.ImageSettingsAdvanced.textSnap": "Прив'язка до клітинки", "SSE.Views.ImageSettingsAdvanced.textTitle": "Зображення - розширені налаштування", + "SSE.Views.ImageSettingsAdvanced.textTwoCell": "Переміщувати та змінювати розміри разом з клітинками", "SSE.Views.LeftMenu.tipAbout": "Про", "SSE.Views.LeftMenu.tipChat": "Чат", "SSE.Views.LeftMenu.tipComments": "Коментарі", @@ -1345,6 +1972,8 @@ "SSE.Views.LeftMenu.tipSearch": "Пошук", "SSE.Views.LeftMenu.tipSupport": "Відгуки і підтримка", "SSE.Views.LeftMenu.txtDeveloper": "Режим розробника", + "SSE.Views.LeftMenu.txtLimit": "Обмежений доступ", + "SSE.Views.MacroDialog.textMacro": "Ім'я макроса", "SSE.Views.MacroDialog.textTitle": "Призначити макрос", "SSE.Views.MainSettingsPrint.okButtonText": "Зберегти", "SSE.Views.MainSettingsPrint.strBottom": "Внизу", @@ -1356,6 +1985,8 @@ "SSE.Views.MainSettingsPrint.strRight": "Право", "SSE.Views.MainSettingsPrint.strTop": "Верх", "SSE.Views.MainSettingsPrint.textActualSize": "Реальний розмір", + "SSE.Views.MainSettingsPrint.textCustom": "Особливий", + "SSE.Views.MainSettingsPrint.textCustomOptions": "Параметри, що налаштовуються", "SSE.Views.MainSettingsPrint.textFitCols": "Підібрати всі стовпці на одній сторінці", "SSE.Views.MainSettingsPrint.textFitPage": "Підібрати листки на одній сторінці", "SSE.Views.MainSettingsPrint.textFitRows": "Підібрати всі рядки на одній сторінці", @@ -1385,6 +2016,7 @@ "SSE.Views.NamedRangePasteDlg.txtTitle": "Вставити назву", "SSE.Views.NameManagerDlg.closeButtonText": "Закрити", "SSE.Views.NameManagerDlg.guestText": "Гість", + "SSE.Views.NameManagerDlg.lockText": "Заблокований", "SSE.Views.NameManagerDlg.textDataRange": "Діапазон даних", "SSE.Views.NameManagerDlg.textDelete": "Видалити", "SSE.Views.NameManagerDlg.textEdit": "Редагувати", @@ -1404,6 +2036,7 @@ "SSE.Views.NameManagerDlg.txtTitle": "Менеджер імен", "SSE.Views.NameManagerDlg.warnDelete": "Ви дійсно хочете видалити ім'я {0}?", "SSE.Views.PageMarginsDialog.textBottom": "Нижнє", + "SSE.Views.PageMarginsDialog.textLeft": "Лівий", "SSE.Views.PageMarginsDialog.textTitle": "Поля", "SSE.Views.ParagraphSettings.strLineHeight": "Лінія інтервалу", "SSE.Views.ParagraphSettings.strParagraphSpacing": "Параметр інтервалу", @@ -1418,10 +2051,13 @@ "SSE.Views.ParagraphSettingsAdvanced.noTabs": "Вказані вкладки з'являться в цьому полі", "SSE.Views.ParagraphSettingsAdvanced.strAllCaps": "Усі великі", "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Подвійне перекреслення", + "SSE.Views.ParagraphSettingsAdvanced.strIndent": "Відступи", "SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Лівий", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Міжрядковий інтервал", "SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Право", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Після", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Перед", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecialBy": "На", "SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Шрифт", "SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Відступи та розміщення", "SSE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Зменшені великі", @@ -1430,9 +2066,14 @@ "SSE.Views.ParagraphSettingsAdvanced.strSuperscript": "Надрядковий", "SSE.Views.ParagraphSettingsAdvanced.strTabs": "Вкладка", "SSE.Views.ParagraphSettingsAdvanced.textAlign": "Вирівнювання", + "SSE.Views.ParagraphSettingsAdvanced.textAuto": "Множник", "SSE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Пробіл між символами", "SSE.Views.ParagraphSettingsAdvanced.textDefault": "Вкладка за умовчанням", "SSE.Views.ParagraphSettingsAdvanced.textEffects": "Ефекти", + "SSE.Views.ParagraphSettingsAdvanced.textExact": "Точно", + "SSE.Views.ParagraphSettingsAdvanced.textFirstLine": "Відступ", + "SSE.Views.ParagraphSettingsAdvanced.textHanging": "Виступ", + "SSE.Views.ParagraphSettingsAdvanced.textJustified": "По ширині", "SSE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(немає)", "SSE.Views.ParagraphSettingsAdvanced.textRemove": "Видалити", "SSE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Видалити усе", @@ -1443,18 +2084,71 @@ "SSE.Views.ParagraphSettingsAdvanced.textTabRight": "Право", "SSE.Views.ParagraphSettingsAdvanced.textTitle": "Параграф - розширені налаштування", "SSE.Views.ParagraphSettingsAdvanced.txtAutoText": "Авто", + "SSE.Views.PivotDigitalFilterDialog.capCondition1": "дорівнює", + "SSE.Views.PivotDigitalFilterDialog.capCondition10": "не закінчується на", + "SSE.Views.PivotDigitalFilterDialog.capCondition11": "Містить", + "SSE.Views.PivotDigitalFilterDialog.capCondition12": "не містить", "SSE.Views.PivotDigitalFilterDialog.capCondition13": "між", + "SSE.Views.PivotDigitalFilterDialog.capCondition14": "не між", + "SSE.Views.PivotDigitalFilterDialog.capCondition2": "не рівно", + "SSE.Views.PivotDigitalFilterDialog.capCondition3": "Більше, ніж", + "SSE.Views.PivotDigitalFilterDialog.capCondition4": "більше або дорівнює", + "SSE.Views.PivotDigitalFilterDialog.capCondition5": "менше ніж", + "SSE.Views.PivotDigitalFilterDialog.capCondition6": "менше або дорівнює", "SSE.Views.PivotDigitalFilterDialog.capCondition7": "починається з", + "SSE.Views.PivotDigitalFilterDialog.capCondition8": "не починається з", + "SSE.Views.PivotDigitalFilterDialog.capCondition9": "закінчується на ", "SSE.Views.PivotDigitalFilterDialog.txtAnd": "і", + "SSE.Views.PivotDigitalFilterDialog.txtTitleLabel": "Фільтр підписів", "SSE.Views.PivotGroupDialog.textAuto": "Авто", + "SSE.Views.PivotGroupDialog.textBy": "По", + "SSE.Views.PivotGroupDialog.textDays": "Дні", + "SSE.Views.PivotGroupDialog.textEnd": "Закінчується в", + "SSE.Views.PivotGroupDialog.textHour": "Години", + "SSE.Views.PivotGroupDialog.textMin": "Хвилини", + "SSE.Views.PivotGroupDialog.textMonth": "Місяці", + "SSE.Views.PivotGroupDialog.textNumDays": "Кількість днів", + "SSE.Views.PivotGroupDialog.txtTitle": "Групування", + "SSE.Views.PivotSettings.textColumns": "Стовпчики", + "SSE.Views.PivotSettings.textFilters": "Фільтри", "SSE.Views.PivotSettings.txtAddColumn": "Додати до стовпчиків", "SSE.Views.PivotSettings.txtAddFilter": "Додати до фільтрів", "SSE.Views.PivotSettings.txtAddRow": "Додати до рядків", "SSE.Views.PivotSettings.txtAddValues": "Додати до значень", + "SSE.Views.PivotSettings.txtFieldSettings": "Параметри полів", + "SSE.Views.PivotSettings.txtMoveBegin": "Перемістити на початок", + "SSE.Views.PivotSettings.txtMoveColumn": "Перемістити в стовпчики", + "SSE.Views.PivotSettings.txtMoveDown": "Перенести вниз", + "SSE.Views.PivotSettings.txtMoveEnd": "Перемістити до кінця", + "SSE.Views.PivotSettings.txtMoveFilter": "Перемістити у фільтри", + "SSE.Views.PivotSettings.txtMoveRow": "Перемістити до рядків", + "SSE.Views.PivotSettings.txtMoveUp": "Перенести вверх", + "SSE.Views.PivotSettings.txtMoveValues": "Перемістити до значення", + "SSE.Views.PivotSettingsAdvanced.strLayout": "Назва та макет", "SSE.Views.PivotSettingsAdvanced.textAlt": "Альтернативний текст", + "SSE.Views.PivotSettingsAdvanced.textAltDescription": "Опис", + "SSE.Views.PivotSettingsAdvanced.textDataRange": "Діапазон даних", + "SSE.Views.PivotSettingsAdvanced.textDataSource": "Джерело даних", + "SSE.Views.PivotSettingsAdvanced.textDisplayFields": "Показувати поля в області фільтра звіту", + "SSE.Views.PivotSettingsAdvanced.textDown": "Вниз, потім вправо", + "SSE.Views.PivotSettingsAdvanced.textGrandTotals": "Загальні підсумки", + "SSE.Views.PivotSettingsAdvanced.textHeaders": "Заголовки полів", + "SSE.Views.PivotSettingsAdvanced.textInvalidRange": "ПОМИЛКА! Неприпустимий діапазон клітинок", + "SSE.Views.PivotSettingsAdvanced.txtName": "Назва", "SSE.Views.PivotTable.capBlankRows": "Пусті рядки", + "SSE.Views.PivotTable.capGrandTotals": "Загальні підсумки", + "SSE.Views.PivotTable.mniInsertBlankLine": "Вставляти пустий рядок після кожного елемента", + "SSE.Views.PivotTable.mniLayoutNoRepeat": "Не повторювати всі мітки елементів", + "SSE.Views.PivotTable.mniNoSubtotals": "Не показувати проміжні підсумки", + "SSE.Views.PivotTable.mniOffTotals": "Відключити для рядків і стовпчиків", + "SSE.Views.PivotTable.mniOnColumnsTotals": "Увімкнути тільки для стовпчиків", + "SSE.Views.PivotTable.mniOnRowsTotals": "Увімкнути тільки для рядків", + "SSE.Views.PivotTable.mniOnTotals": "Увімкнути тільки для рядків і стовпчиків", "SSE.Views.PivotTable.textColBanded": "Чергувати стовпчики", + "SSE.Views.PivotTable.textColHeader": "Заголовки стовпців", "SSE.Views.PivotTable.textRowBanded": "Чергувати рядки", + "SSE.Views.PivotTable.tipCreatePivot": "Вставити зведену таблицю", + "SSE.Views.PivotTable.txtCreate": "Вставити таблицю", "SSE.Views.PrintSettings.btnPrint": "Зберегти і роздрукувати", "SSE.Views.PrintSettings.strBottom": "Внизу", "SSE.Views.PrintSettings.strLandscape": "ландшафт", @@ -1467,10 +2161,13 @@ "SSE.Views.PrintSettings.textActualSize": "Реальний розмір", "SSE.Views.PrintSettings.textAllSheets": "Всі аркуші", "SSE.Views.PrintSettings.textCurrentSheet": "Поточний аркуш", + "SSE.Views.PrintSettings.textCustom": "Особливий", + "SSE.Views.PrintSettings.textCustomOptions": "Параметри, що налаштовуються", "SSE.Views.PrintSettings.textFitCols": "Підібрати всі стовпці на одній сторінці", "SSE.Views.PrintSettings.textFitPage": "Підібрати листки на одній сторінці", "SSE.Views.PrintSettings.textFitRows": "Підібрати всі рядки на одній сторінці", "SSE.Views.PrintSettings.textHideDetails": "Приховати деталі", + "SSE.Views.PrintSettings.textIgnore": "Ігнорувати область друку", "SSE.Views.PrintSettings.textLayout": "Макет", "SSE.Views.PrintSettings.textPageOrientation": "Орієнтація сторінки", "SSE.Views.PrintSettings.textPageScaling": "Масштабування", @@ -1482,11 +2179,55 @@ "SSE.Views.PrintSettings.textSettings": "Налаштування листа", "SSE.Views.PrintSettings.textShowDetails": "Показати деталі", "SSE.Views.PrintSettings.textTitle": "Налаштування друку", + "SSE.Views.PrintTitlesDialog.textFirstCol": "Перший стовпчик", + "SSE.Views.PrintTitlesDialog.textFirstRow": "Перший рядок", + "SSE.Views.PrintTitlesDialog.textFrozenCols": "Закріплені стовпчики", + "SSE.Views.PrintTitlesDialog.textFrozenRows": "Закріплені рядки", + "SSE.Views.PrintTitlesDialog.textInvalidRange": "ПОМИЛКА! Неприпустимий діапазон клітинок", + "SSE.Views.PrintTitlesDialog.textNoRepeat": "Не повторювати", "SSE.Views.PrintWithPreview.txtActualSize": "Реальний розмір", "SSE.Views.PrintWithPreview.txtAllSheets": "Всі аркуші", + "SSE.Views.PrintWithPreview.txtApplyToAllSheets": "Застосувати до всіх листів", + "SSE.Views.PrintWithPreview.txtCurrentSheet": "Поточний лист", + "SSE.Views.PrintWithPreview.txtCustomOptions": "Параметри, що налаштовуються", + "SSE.Views.PrintWithPreview.txtFitCols": "Вписати всі стовпчики на одну сторінку", + "SSE.Views.PrintWithPreview.txtFitPage": "Вписати всі листи на одну сторінку", + "SSE.Views.PrintWithPreview.txtFitRows": "Вписати всі рядки на одну сторінку", + "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Параметри верхнього та нижнього колонтитулів", + "SSE.Views.PrintWithPreview.txtIgnore": "Ігнорувати область друку", + "SSE.Views.PrintWithPreview.txtLandscape": "Альбомна", + "SSE.Views.PrintWithPreview.txtLeft": "Ліворуч", + "SSE.Views.PrintWithPreview.txtMargins": "Поля", + "SSE.Views.PrintWithPreview.txtOf": "з {0}", + "SSE.Views.ProtectDialog.textExistName": "ПОМИЛКА! Діапазон із такою назвою вже існує", + "SSE.Views.ProtectDialog.textInvalidRange": "ПОМИЛКА! Неприпустимий діапазон клітинок", "SSE.Views.ProtectDialog.txtAllow": "Дозволити всім користувачам цього аркуша", + "SSE.Views.ProtectDialog.txtDelCols": "Видалити стовпчики", + "SSE.Views.ProtectDialog.txtDelRows": "Видалити рядки", + "SSE.Views.ProtectDialog.txtFormatCells": "Форматування клітинки", + "SSE.Views.ProtectDialog.txtFormatCols": "Форматування стовпчиків", + "SSE.Views.ProtectDialog.txtFormatRows": "Форматування рядків", + "SSE.Views.ProtectDialog.txtIncorrectPwd": "Пароль та його підтвердження не збігаються", + "SSE.Views.ProtectDialog.txtInsCols": "Вставляти стовпчики", + "SSE.Views.ProtectDialog.txtInsHyper": "Вставити гіперпосилання", + "SSE.Views.ProtectDialog.txtInsRows": "Вставляти рядки", + "SSE.Views.ProtectDialog.txtObjs": "Редагувати об'єкти", + "SSE.Views.ProtectDialog.txtOptional": "необов'язково", + "SSE.Views.ProtectDialog.txtScen": "Редагувати сценарії", + "SSE.Views.ProtectDialog.txtSheetDescription": "Забороніть внесення небажаних змін іншими користувачами шляхом обмеження їхнього права на редагування.", + "SSE.Views.ProtectRangesDlg.guestText": "Гість", + "SSE.Views.ProtectRangesDlg.lockText": "Заблокований", + "SSE.Views.ProtectRangesDlg.textDelete": "Видалити", + "SSE.Views.ProtectRangesDlg.textEdit": "Редагувати", + "SSE.Views.ProtectRangesDlg.textEmpty": "Немає діапазонів, дозволених для редагування.", + "SSE.Views.ProtectRangesDlg.textNew": "Новий", + "SSE.Views.ProtectRangesDlg.txtEditRange": "Редагувати діапазон", + "SSE.Views.ProtectRangesDlg.txtNewRange": "Новий діапазон", + "SSE.Views.ProtectRangesDlg.txtNo": "Ні", "SSE.Views.ProtectRangesDlg.txtTitle": "Дозволити користувачам редагувати діапазони", "SSE.Views.ProtectRangesDlg.warnDelete": "Ви дійсно хочете видалити ім'я {0}?", + "SSE.Views.RemoveDuplicatesDialog.textColumns": "Стовпчики", + "SSE.Views.RemoveDuplicatesDialog.textHeaders": "Мої дані містять заголовки", "SSE.Views.RightMenu.txtCellSettings": "Налаштування комірки", "SSE.Views.RightMenu.txtChartSettings": "Налаштування діаграми", "SSE.Views.RightMenu.txtImageSettings": "Налаштування зображення", @@ -1498,6 +2239,8 @@ "SSE.Views.RightMenu.txtTableSettings": "Налаштування таблиці", "SSE.Views.RightMenu.txtTextArtSettings": "Налаштування текст Art", "SSE.Views.ScaleDialog.textAuto": "Авто", + "SSE.Views.ScaleDialog.textFitTo": "Розмістити не більш ніж на", + "SSE.Views.ScaleDialog.textHeight": "Висота", "SSE.Views.SetValueDialog.txtMaxText": "Максимальне значення для цього поля: {0}", "SSE.Views.SetValueDialog.txtMinText": "Мінімальне значення для цього поля: {0}", "SSE.Views.ShapeSettings.strBackground": "Колір фону", @@ -1516,10 +2259,14 @@ "SSE.Views.ShapeSettings.textColor": "Заповнити колір", "SSE.Views.ShapeSettings.textDirection": "Напрямок", "SSE.Views.ShapeSettings.textEmptyPattern": "Немає шаблону", + "SSE.Views.ShapeSettings.textFlip": "Перевернути", "SSE.Views.ShapeSettings.textFromFile": "З файлу", + "SSE.Views.ShapeSettings.textFromStorage": "Зі сховища", "SSE.Views.ShapeSettings.textFromUrl": "З URL", "SSE.Views.ShapeSettings.textGradient": "Градієнт", "SSE.Views.ShapeSettings.textGradientFill": "Заповнити градієнт", + "SSE.Views.ShapeSettings.textHintFlipH": "Перевернути зліва направо", + "SSE.Views.ShapeSettings.textHintFlipV": "Перевернути зверху вниз", "SSE.Views.ShapeSettings.textImageTexture": "Зображення або текстура", "SSE.Views.ShapeSettings.textLinear": "Лінійний", "SSE.Views.ShapeSettings.textNoFill": "Немає заповнення", @@ -1547,6 +2294,7 @@ "SSE.Views.ShapeSettings.txtWood": "Дерево", "SSE.Views.ShapeSettingsAdvanced.strColumns": "Колонки", "SSE.Views.ShapeSettingsAdvanced.strMargins": "Текстове накладення тексту", + "SSE.Views.ShapeSettingsAdvanced.textAbsolute": "Не переміщувати та не змінювати розміри разом з клітинками", "SSE.Views.ShapeSettingsAdvanced.textAlt": "Альтернативний текст", "SSE.Views.ShapeSettingsAdvanced.textAltDescription": "Опис", "SSE.Views.ShapeSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація знаходиться в зображенні, автошопі, діаграмі або таблиці.", @@ -1565,28 +2313,69 @@ "SSE.Views.ShapeSettingsAdvanced.textFlat": "Площина", "SSE.Views.ShapeSettingsAdvanced.textFlipped": "Віддзеркалено", "SSE.Views.ShapeSettingsAdvanced.textHeight": "Висота", + "SSE.Views.ShapeSettingsAdvanced.textHorizontally": "По горизонталі", "SSE.Views.ShapeSettingsAdvanced.textJoinType": "Приєднати тип", "SSE.Views.ShapeSettingsAdvanced.textKeepRatio": "Сталі пропорції", "SSE.Views.ShapeSettingsAdvanced.textLeft": "Лівий", "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Стиль лінії", "SSE.Views.ShapeSettingsAdvanced.textMiter": "Мітер", + "SSE.Views.ShapeSettingsAdvanced.textOneCell": "Переміщати, але не змінювати розміри разом з клітинками", "SSE.Views.ShapeSettingsAdvanced.textOverflow": "Дозволити переповнення фігури текстом", "SSE.Views.ShapeSettingsAdvanced.textRight": "Право", "SSE.Views.ShapeSettingsAdvanced.textRotation": "Поворот", "SSE.Views.ShapeSettingsAdvanced.textRound": "Круглий", "SSE.Views.ShapeSettingsAdvanced.textSize": "Розмір", + "SSE.Views.ShapeSettingsAdvanced.textSnap": "Прив'язка до клітинки", "SSE.Views.ShapeSettingsAdvanced.textSpacing": "Розміщення між стовпцями", "SSE.Views.ShapeSettingsAdvanced.textSquare": "Площа", "SSE.Views.ShapeSettingsAdvanced.textTitle": "Форма - розширені налаштування", "SSE.Views.ShapeSettingsAdvanced.textTop": "Верх", + "SSE.Views.ShapeSettingsAdvanced.textTwoCell": "Переміщувати та змінювати розміри разом з клітинками", "SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "Ваги та стрілки", "SSE.Views.ShapeSettingsAdvanced.textWidth": "Ширина", + "SSE.Views.SignatureSettings.strInvalid": "Недійсні підписи", + "SSE.Views.SignatureSettings.txtContinueEditing": "Все одно редагувати", + "SSE.Views.SignatureSettings.txtEditWarning": "Під час редагування з електронної таблиці буде видалено підписи.
Продовжити?", + "SSE.Views.SignatureSettings.txtRemoveWarning": "Ви хочете видалити цей підпис?
Цю дію не можна скасувати.", + "SSE.Views.SlicerAddDialog.textColumns": "Стовпчики", + "SSE.Views.SlicerAddDialog.txtTitle": "Вставка зрізів", + "SSE.Views.SlicerSettings.strHideNoData": "Сховати елементи без даних", "SSE.Views.SlicerSettings.textAsc": "За зростанням", "SSE.Views.SlicerSettings.textAZ": "Від А до Я", + "SSE.Views.SlicerSettings.textButtons": "Кнопки", + "SSE.Views.SlicerSettings.textColumns": "Стовпчики", + "SSE.Views.SlicerSettings.textDesc": "По спаданню", + "SSE.Views.SlicerSettings.textHeight": "Висота", + "SSE.Views.SlicerSettings.textHor": "По горизонталі", + "SSE.Views.SlicerSettings.textKeepRatio": "Зберігати пропорції", + "SSE.Views.SlicerSettings.textLargeSmall": "від більшого до меншого", + "SSE.Views.SlicerSettings.textLock": "Вимкнути зміну розміру або переміщення", + "SSE.Views.SlicerSettings.textNewOld": "від нових до старих", + "SSE.Views.SlicerSettings.textOldNew": "від старих до нових", + "SSE.Views.SlicerSettingsAdvanced.strButtons": "Кнопки", + "SSE.Views.SlicerSettingsAdvanced.strColumns": "Стовпчики", + "SSE.Views.SlicerSettingsAdvanced.strHeight": "Висота", + "SSE.Views.SlicerSettingsAdvanced.strHideNoData": "Сховати елементи без даних", + "SSE.Views.SlicerSettingsAdvanced.strShowHeader": "Показувати заголовок", + "SSE.Views.SlicerSettingsAdvanced.textAbsolute": "Не переміщувати та не змінювати розміри разом з клітинками", "SSE.Views.SlicerSettingsAdvanced.textAlt": "Альтернативний текст", + "SSE.Views.SlicerSettingsAdvanced.textAltDescription": "Опис", "SSE.Views.SlicerSettingsAdvanced.textAsc": "За зростанням", "SSE.Views.SlicerSettingsAdvanced.textAZ": "Від А до Я", + "SSE.Views.SlicerSettingsAdvanced.textDesc": "По спаданню", + "SSE.Views.SlicerSettingsAdvanced.textFormulaName": "Ім'я для використання у формулах", + "SSE.Views.SlicerSettingsAdvanced.textHeader": "Заголовок", + "SSE.Views.SlicerSettingsAdvanced.textKeepRatio": "Зберігати пропорції", + "SSE.Views.SlicerSettingsAdvanced.textLargeSmall": "від більшого до меншого", + "SSE.Views.SlicerSettingsAdvanced.textName": "Ім'я", + "SSE.Views.SlicerSettingsAdvanced.textNewOld": "від нових до старих", + "SSE.Views.SlicerSettingsAdvanced.textOldNew": "від старих до нових", + "SSE.Views.SlicerSettingsAdvanced.textOneCell": "Переміщати, але не змінювати розміри разом з клітинками", + "SSE.Views.SlicerSettingsAdvanced.textSnap": "Прив'язка до клітинки", + "SSE.Views.SlicerSettingsAdvanced.textTwoCell": "Переміщувати та змінювати розміри разом з клітинками", "SSE.Views.SortDialog.errorEmpty": "Для кожної умови сортування має бути зазначений стовпчик або рядок.", + "SSE.Views.SortDialog.errorMoreOneCol": "Виділено кілька стовпчиків.", + "SSE.Views.SortDialog.errorMoreOneRow": "Виділено кілька рядків.", "SSE.Views.SortDialog.errorSameColumnColor": "Сортування рядка або стовпця %1 за одним і тим же кольором виконується більше одного разу.
Видаліть повторні умови сортування та повторіть спробу.", "SSE.Views.SortDialog.errorSameColumnValue": "Сортування рядка або стовпця %1 за значеннями виконується більше одного разу.
Видаліть повторні умови сортування та повторіть спробу.", "SSE.Views.SortDialog.textAdd": "Додати рівень", @@ -1595,14 +2384,47 @@ "SSE.Views.SortDialog.textAZ": "Від А до Я", "SSE.Views.SortDialog.textBelow": "Знизу", "SSE.Views.SortDialog.textCellColor": "Колір комірки", + "SSE.Views.SortDialog.textColumn": "Стовпчик", + "SSE.Views.SortDialog.textCopy": "Копіювати рівень", + "SSE.Views.SortDialog.textDelete": "Видалити рівень", + "SSE.Views.SortDialog.textDesc": "По спаданню", + "SSE.Views.SortDialog.textDown": "Перемістити рівень вниз", + "SSE.Views.SortDialog.textFontColor": "Колір шрифту", + "SSE.Views.SortDialog.textLeft": "Ліворуч", "SSE.Views.SortDialog.textMoreCols": "(Інші стовпчики...)", "SSE.Views.SortDialog.textMoreRows": "(Інші рядки...)", + "SSE.Views.SortDialog.textNone": "Немає", + "SSE.Views.SortDialog.textOptions": "Параметри", + "SSE.Views.SortDialog.textOrder": "Порядок", + "SSE.Views.SortDialog.textUp": "Перемістити рівень вверх", "SSE.Views.SortDialog.txtInvalidRange": "Недійсний діапазон комірок.", "SSE.Views.SortFilterDialog.textAsc": "За зростанням (від А до Я)", + "SSE.Views.SortFilterDialog.textDesc": "За спаданням (від Я до А)", + "SSE.Views.SortOptionsDialog.textCase": "З урахуванням регістру", + "SSE.Views.SortOptionsDialog.textHeaders": "Мої дані містять заголовки", + "SSE.Views.SortOptionsDialog.textOrientation": "Орієнтація", "SSE.Views.SpecialPasteDialog.textAdd": "Додавання", "SSE.Views.SpecialPasteDialog.textAll": "Всі", + "SSE.Views.SpecialPasteDialog.textColWidth": "Ширина стовпчиків", + "SSE.Views.SpecialPasteDialog.textComments": "Коментарі", + "SSE.Views.SpecialPasteDialog.textDiv": "Ділення", + "SSE.Views.SpecialPasteDialog.textFFormat": "Формули та форматування", + "SSE.Views.SpecialPasteDialog.textFNFormat": "Формули та формати чисел", + "SSE.Views.SpecialPasteDialog.textFormats": "Формати", + "SSE.Views.SpecialPasteDialog.textFormulas": "Формули", + "SSE.Views.SpecialPasteDialog.textFWidth": "Формули та ширина стовпчиків", + "SSE.Views.SpecialPasteDialog.textMult": "Множення", + "SSE.Views.SpecialPasteDialog.textNone": "Немає", + "SSE.Views.SpecialPasteDialog.textOperation": "Операція", "SSE.Views.SpecialPasteDialog.textWBorders": "Без рамки", + "SSE.Views.Spellcheck.noSuggestions": "Варіантів не знайдено", + "SSE.Views.Spellcheck.textChange": "Замінити", + "SSE.Views.Spellcheck.textChangeAll": "Замінити все", + "SSE.Views.Spellcheck.textIgnore": "Пропустити", + "SSE.Views.Spellcheck.textIgnoreAll": "Пропустити всі", "SSE.Views.Spellcheck.txtAddToDictionary": "Додати в словник", + "SSE.Views.Spellcheck.txtDictionaryLanguage": "Мова словника", + "SSE.Views.Spellcheck.txtNextTip": "Перейти до наступного слова", "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Копіювати до кінця)", "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Перемістити до кінця)", "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Скопіюйте перед листом", @@ -1611,10 +2433,13 @@ "SSE.Views.Statusbar.filteredText": "Режим фільтрації", "SSE.Views.Statusbar.itemAverage": "Середнє", "SSE.Views.Statusbar.itemCopy": "Копіювати", + "SSE.Views.Statusbar.itemCount": "Кількість", "SSE.Views.Statusbar.itemDelete": "Видалити", "SSE.Views.Statusbar.itemHidden": "Приховано", "SSE.Views.Statusbar.itemHide": "Приховати", "SSE.Views.Statusbar.itemInsert": "Вставити", + "SSE.Views.Statusbar.itemMaximum": "Максимум", + "SSE.Views.Statusbar.itemMinimum": "Мінімум", "SSE.Views.Statusbar.itemMove": "Переміщення", "SSE.Views.Statusbar.itemRename": "Перейменування", "SSE.Views.Statusbar.itemTabColor": "Колір вкладки", @@ -1623,12 +2448,15 @@ "SSE.Views.Statusbar.RenameDialog.labelSheetName": "Назва листа", "SSE.Views.Statusbar.textAverage": "СЕРЕДНІЙ", "SSE.Views.Statusbar.textCount": "РАХУВАТИ", + "SSE.Views.Statusbar.textMax": "Макс", + "SSE.Views.Statusbar.textMin": "Мін", "SSE.Views.Statusbar.textNewColor": "Додати новий спеціальний колір", "SSE.Views.Statusbar.textNoColor": "Немає кольору", "SSE.Views.Statusbar.textSum": "Сума", "SSE.Views.Statusbar.tipAddTab": "Додати робочу таблицю", "SSE.Views.Statusbar.tipFirst": "Перейдіть до Першого аркушу", "SSE.Views.Statusbar.tipLast": "Перейдіть до Останнього аркушу", + "SSE.Views.Statusbar.tipListOfSheets": "Список листів", "SSE.Views.Statusbar.tipNext": "Список переміщень праворуч", "SSE.Views.Statusbar.tipPrev": "Список переміщень ліворуч", "SSE.Views.Statusbar.tipZoomFactor": "Збільшити", @@ -1638,6 +2466,7 @@ "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "Неможливо виконати дію для вибраного діапазону комірок.
Виберіть єдиний діапазон даних, відмінний від існуючого, та спробуйте ще раз.", "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "Неможливо виконати дію для вибраного діапазону комірок.
Виберіть діапазон таким чином, щоб перший рядок таблиці містився в одному рядку
,а таблиця результату перекрила поточну.", "SSE.Views.TableOptionsDialog.errorFTRangeIncludedOtherTables": "Неможливо виконати дію для вибраного діапазону комірок.
Виберіть діапазон, який не включає інші таблиці.", + "SSE.Views.TableOptionsDialog.errorMultiCellFormula": "Формули масиву з кількома клітинками забороняються в таблицях.", "SSE.Views.TableOptionsDialog.txtEmpty": "Це поле є обов'язковим", "SSE.Views.TableOptionsDialog.txtFormat": "Створити таблицю", "SSE.Views.TableOptionsDialog.txtInvalidRange": "ПОМИЛКА! Недійсний діапазон комірок", @@ -1668,10 +2497,12 @@ "SSE.Views.TableSettings.textIsLocked": "Цей елемент редагує інший користувач.", "SSE.Views.TableSettings.textLast": "Останній", "SSE.Views.TableSettings.textLongOperation": "Довга операція", + "SSE.Views.TableSettings.textPivot": "Вставити зведену таблицю", "SSE.Views.TableSettings.textReservedName": "Ім'я, яке ви намагаєтесь використовувати, вже посилається на формули, що містяться у комірці. Будь ласка, використайте інше ім'я.", "SSE.Views.TableSettings.textResize": "Змінити розмір таблиці", "SSE.Views.TableSettings.textRows": "Рядки", "SSE.Views.TableSettings.textSelectData": "Вибрати дату", + "SSE.Views.TableSettings.textSlicer": "Вставити зріз", "SSE.Views.TableSettings.textTableName": "Назва таблиці", "SSE.Views.TableSettings.textTemplate": "Виберіть з шаблону", "SSE.Views.TableSettings.textTotal": "Загалом", @@ -1725,9 +2556,14 @@ "SSE.Views.TextArtSettings.txtPapyrus": "Папірус", "SSE.Views.TextArtSettings.txtWood": "Дерево", "SSE.Views.Toolbar.capBtnAddComment": "Додати коментар", + "SSE.Views.Toolbar.capBtnColorSchemas": "Схема кольорів", "SSE.Views.Toolbar.capBtnComment": "Коментар", + "SSE.Views.Toolbar.capBtnInsHeader": "Колонтитули", "SSE.Views.Toolbar.capBtnMargins": "Поля", + "SSE.Views.Toolbar.capBtnPageOrient": "Орієнтація", "SSE.Views.Toolbar.capImgAlign": "Вирівнювання", + "SSE.Views.Toolbar.capImgForward": "Перенести вперед", + "SSE.Views.Toolbar.capImgGroup": "Групування", "SSE.Views.Toolbar.capInsertChart": "Діаграма", "SSE.Views.Toolbar.capInsertEquation": "Рівняння", "SSE.Views.Toolbar.capInsertHyperlink": "Гіперсилка", @@ -1736,6 +2572,7 @@ "SSE.Views.Toolbar.capInsertTable": "Таблиця", "SSE.Views.Toolbar.capInsertText": "Текстове вікно", "SSE.Views.Toolbar.mniImageFromFile": "Картинка з файлу", + "SSE.Views.Toolbar.mniImageFromStorage": "Зображення зі сховища", "SSE.Views.Toolbar.mniImageFromUrl": "Зображення з URL", "SSE.Views.Toolbar.textAddPrintArea": "Додати до області друку", "SSE.Views.Toolbar.textAlignBottom": "Вирівняти знизу", @@ -1754,23 +2591,37 @@ "SSE.Views.Toolbar.textBottom": "Нижнє: ", "SSE.Views.Toolbar.textBottomBorders": "Нижні межі", "SSE.Views.Toolbar.textCenterBorders": "Всередині вертикальних кордонів", + "SSE.Views.Toolbar.textClearPrintArea": "Очистити область друку", + "SSE.Views.Toolbar.textClearRule": "Видалити правила", "SSE.Views.Toolbar.textClockwise": "Кут за годинниковою стрілкою", + "SSE.Views.Toolbar.textColorScales": "Шкали кольору", "SSE.Views.Toolbar.textCounterCw": "Кут за годинниковою стрілкою", + "SSE.Views.Toolbar.textDataBars": "Гістограми", "SSE.Views.Toolbar.textDelLeft": "Пересунути комірки ліворуч", "SSE.Views.Toolbar.textDelUp": "Пересунути комірки догори", "SSE.Views.Toolbar.textDiagDownBorder": "Діагональ внизу межі", "SSE.Views.Toolbar.textDiagUpBorder": "Діагональ вгорі межі", "SSE.Views.Toolbar.textEntireCol": "Загальна колонка", "SSE.Views.Toolbar.textEntireRow": "Загальний ряд", + "SSE.Views.Toolbar.textHeight": "Висота", "SSE.Views.Toolbar.textHorizontal": "Горизонтальний текст", "SSE.Views.Toolbar.textInsDown": "Пересунути комірки донизу", "SSE.Views.Toolbar.textInsideBorders": "Всередині кордонів", "SSE.Views.Toolbar.textInsRight": "Пересунути комірки праворуч", "SSE.Views.Toolbar.textItalic": "Курсив", + "SSE.Views.Toolbar.textItems": "Елементи", + "SSE.Views.Toolbar.textLandscape": "Альбомна", + "SSE.Views.Toolbar.textLeft": "Вліво:", "SSE.Views.Toolbar.textLeftBorders": "Ліві кордони", + "SSE.Views.Toolbar.textManageRule": "Керування правилами", + "SSE.Views.Toolbar.textMarginsLast": "Останні налаштування", + "SSE.Views.Toolbar.textMarginsNarrow": "Вузький", + "SSE.Views.Toolbar.textMarginsNormal": "Звичайні", "SSE.Views.Toolbar.textMiddleBorders": "Внутрішні горизонтальні межі", "SSE.Views.Toolbar.textMoreFormats": "Більше форматів", + "SSE.Views.Toolbar.textMorePages": "Інші сторінки", "SSE.Views.Toolbar.textNewColor": "Додати новий спеціальний колір", + "SSE.Views.Toolbar.textNewRule": "Нове правило", "SSE.Views.Toolbar.textNoBorders": "Немає кордонів", "SSE.Views.Toolbar.textOutBorders": "За межами кордонів", "SSE.Views.Toolbar.textPageMarginsCustom": "Користувацькі поля", @@ -1779,6 +2630,8 @@ "SSE.Views.Toolbar.textRightBorders": "Праві кордони", "SSE.Views.Toolbar.textRotateDown": "Повернути текст вниз", "SSE.Views.Toolbar.textRotateUp": "Повернути текст вгору", + "SSE.Views.Toolbar.textScaleCustom": "Особливий", + "SSE.Views.Toolbar.textSelection": "З поточного виділеного фрагмента", "SSE.Views.Toolbar.textTabCollaboration": "Співпраця", "SSE.Views.Toolbar.textTabData": "Дані", "SSE.Views.Toolbar.textTabFile": "Файл", @@ -1786,6 +2639,9 @@ "SSE.Views.Toolbar.textTabHome": "Головна", "SSE.Views.Toolbar.textTabInsert": "Вставити", "SSE.Views.Toolbar.textTabLayout": "Розмітка", + "SSE.Views.Toolbar.textThisPivot": "З цієї зведеної таблиці", + "SSE.Views.Toolbar.textThisSheet": "З цього листа", + "SSE.Views.Toolbar.textThisTable": "З цієї таблиці", "SSE.Views.Toolbar.textTopBorders": "Межі угорі", "SSE.Views.Toolbar.textUnderline": "Підкреслений", "SSE.Views.Toolbar.textZoom": "Збільшити", @@ -1800,8 +2656,10 @@ "SSE.Views.Toolbar.tipBack": "Назад", "SSE.Views.Toolbar.tipBorders": "Межі", "SSE.Views.Toolbar.tipCellStyle": "Стиль комірки", + "SSE.Views.Toolbar.tipChangeChart": "Змінити тип діаграми", "SSE.Views.Toolbar.tipClearStyle": "Очистити", "SSE.Views.Toolbar.tipColorSchemas": "Змінити кольорову схему", + "SSE.Views.Toolbar.tipCondFormat": "Умовне форматування", "SSE.Views.Toolbar.tipCopy": "Копіювати", "SSE.Views.Toolbar.tipCopyStyle": "Копіювати стиль", "SSE.Views.Toolbar.tipDecDecimal": "Зменшити десяткове значення", @@ -1811,10 +2669,13 @@ "SSE.Views.Toolbar.tipDigStyleCurrency": "Валютний стиль", "SSE.Views.Toolbar.tipDigStylePercent": "Процентний стиль", "SSE.Views.Toolbar.tipEditChart": "Редагувати діаграму", + "SSE.Views.Toolbar.tipEditChartType": "Змінити тип діаграми", + "SSE.Views.Toolbar.tipEditHeader": "Змінити колонтитул", "SSE.Views.Toolbar.tipFontColor": "Колір шрифту", "SSE.Views.Toolbar.tipFontName": "Шрифт", "SSE.Views.Toolbar.tipFontSize": "Розмір шрифта", "SSE.Views.Toolbar.tipImgAlign": "Вирівняти об'єкти", + "SSE.Views.Toolbar.tipImgGroup": "Згрупувати об'єкти", "SSE.Views.Toolbar.tipIncDecimal": "Збільшити десяткове число", "SSE.Views.Toolbar.tipIncFont": "Збільшення розміру шрифту", "SSE.Views.Toolbar.tipInsertChart": "Вставити діаграму", @@ -1824,9 +2685,21 @@ "SSE.Views.Toolbar.tipInsertImage": "Вставити зображення", "SSE.Views.Toolbar.tipInsertOpt": "Вставити комірки", "SSE.Views.Toolbar.tipInsertShape": "вставити автофігури", + "SSE.Views.Toolbar.tipInsertSlicer": "Вставити зріз", + "SSE.Views.Toolbar.tipInsertSpark": "Вставити спарклайн", + "SSE.Views.Toolbar.tipInsertSymbol": "Вставити символ", + "SSE.Views.Toolbar.tipInsertTable": "Вставити таблицю", "SSE.Views.Toolbar.tipInsertText": "Вставити текст", "SSE.Views.Toolbar.tipInsertTextart": "Вставити текст Art", + "SSE.Views.Toolbar.tipMarkersArrow": "Маркери-стрілки", + "SSE.Views.Toolbar.tipMarkersCheckmark": "Маркери-галочки", + "SSE.Views.Toolbar.tipMarkersDash": "Маркери-тире", + "SSE.Views.Toolbar.tipMarkersFRhombus": "Заповнені ромбоподібні маркери", + "SSE.Views.Toolbar.tipMarkersFRound": "Заповнені круглі маркери", + "SSE.Views.Toolbar.tipMarkersFSquare": "Заповнені квадратні маркери", + "SSE.Views.Toolbar.tipMarkersHRound": "Пусті круглі маркери", "SSE.Views.Toolbar.tipMerge": "Злиття", + "SSE.Views.Toolbar.tipNone": "Немає", "SSE.Views.Toolbar.tipNumFormat": "Номер формату", "SSE.Views.Toolbar.tipPaste": "Вставити", "SSE.Views.Toolbar.tipPrColor": "Колір фону", @@ -1834,6 +2707,7 @@ "SSE.Views.Toolbar.tipRedo": "Переробити", "SSE.Views.Toolbar.tipSave": "Зберегти", "SSE.Views.Toolbar.tipSaveCoauth": "Збережіть свої зміни, щоб інші користувачі могли їх переглянути.", + "SSE.Views.Toolbar.tipSendForward": "Перенести вперед", "SSE.Views.Toolbar.tipSynchronize": "Документ був змінений іншим користувачем. Будь ласка, натисніть, щоб зберегти зміни та перезавантажити оновлення.", "SSE.Views.Toolbar.tipTextOrientation": "Орієнтація", "SSE.Views.Toolbar.tipUndo": "Скасувати", @@ -1888,6 +2762,7 @@ "SSE.Views.Toolbar.txtScheme2": "Градація сірого", "SSE.Views.Toolbar.txtScheme20": "Міський", "SSE.Views.Toolbar.txtScheme21": "Здібність", + "SSE.Views.Toolbar.txtScheme22": "Нова офісна", "SSE.Views.Toolbar.txtScheme3": "Верх", "SSE.Views.Toolbar.txtScheme4": "Аспект", "SSE.Views.Toolbar.txtScheme5": "Громадянський", @@ -1908,6 +2783,7 @@ "SSE.Views.Toolbar.txtYen": "¥ Йен", "SSE.Views.Top10FilterDialog.textType": "Показати", "SSE.Views.Top10FilterDialog.txtBottom": "Внизу", + "SSE.Views.Top10FilterDialog.txtBy": "по", "SSE.Views.Top10FilterDialog.txtItems": "Пункт", "SSE.Views.Top10FilterDialog.txtPercent": "Відсоток", "SSE.Views.Top10FilterDialog.txtTitle": "Топ 10 Автофільтрів", @@ -1916,6 +2792,42 @@ "SSE.Views.ValueFieldSettingsDialog.txtBaseField": "Базове поле", "SSE.Views.ValueFieldSettingsDialog.txtBaseItem": "Базовий елемент", "SSE.Views.ValueFieldSettingsDialog.txtByField": "%1 з %2", + "SSE.Views.ValueFieldSettingsDialog.txtCount": "Кількість", + "SSE.Views.ValueFieldSettingsDialog.txtCountNums": "Кількість чисел", + "SSE.Views.ValueFieldSettingsDialog.txtCustomName": "Ім'я користувача", + "SSE.Views.ValueFieldSettingsDialog.txtIndex": "Індекс", + "SSE.Views.ValueFieldSettingsDialog.txtMax": "Макс", + "SSE.Views.ValueFieldSettingsDialog.txtMin": "Мін", + "SSE.Views.ValueFieldSettingsDialog.txtNormal": "Без обчислень", + "SSE.Views.ViewManagerDlg.closeButtonText": "Закрити", + "SSE.Views.ViewManagerDlg.guestText": "Гість", + "SSE.Views.ViewManagerDlg.lockText": "Заблокований", + "SSE.Views.ViewManagerDlg.textDelete": "Видалити", + "SSE.Views.ViewManagerDlg.textDuplicate": "Дублювати", + "SSE.Views.ViewManagerDlg.textEmpty": "Подання ще не створені.", + "SSE.Views.ViewManagerDlg.textGoTo": "Перейти до перегляду", + "SSE.Views.ViewManagerDlg.textLongName": "Введіть ім'я не довше ніж 128 символів.", + "SSE.Views.ViewManagerDlg.textNew": "Нове", + "SSE.Views.ViewTab.capBtnFreeze": "Закріпити області", + "SSE.Views.ViewTab.textAlwaysShowToolbar": "Завжди показувати панель інструментів", + "SSE.Views.ViewTab.textClose": "Закрити", + "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "Об'єднати рядки листів та стану", + "SSE.Views.ViewTab.textCreate": "Нове", + "SSE.Views.ViewTab.textDefault": "За замовчуванням", + "SSE.Views.ViewTab.textFormula": "Рядок формул", + "SSE.Views.ViewTab.textFreezeCol": "Закріпити перший стовпчик", + "SSE.Views.ViewTab.textFreezeRow": "Закріпити верхній рядок", + "SSE.Views.ViewTab.textGridlines": "Лінії сітки", + "SSE.Views.ViewTab.textHeadings": "Заголовки", + "SSE.Views.ViewTab.textInterfaceTheme": "Тема інтерфейсу", + "SSE.Views.ViewTab.tipClose": "Закрити перегляд листа", + "SSE.Views.ViewTab.tipCreate": "Створити вигляд листа", + "SSE.Views.ViewTab.tipFreeze": "Закріпити області", "SSE.Views.WBProtection.hintAllowRanges": "Дозволити редагувати діапазони", - "SSE.Views.WBProtection.txtAllowRanges": "Дозволити редагувати діапазони" + "SSE.Views.WBProtection.txtAllowRanges": "Дозволити редагувати діапазони", + "SSE.Views.WBProtection.txtHiddenFormula": "Приховані формули", + "SSE.Views.WBProtection.txtLockedCell": "Заблокована клітинка", + "SSE.Views.WBProtection.txtLockedText": "Заблокувати текст", + "SSE.Views.WBProtection.txtSheetUnlockDescription": "Введіть пароль для вимкнення захисту листа", + "SSE.Views.WBProtection.txtWBUnlockDescription": "Введіть пароль для вимкнення захисту книги" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/zh.json b/apps/spreadsheeteditor/main/locale/zh.json index 4c2f678e7..1cb857396 100644 --- a/apps/spreadsheeteditor/main/locale/zh.json +++ b/apps/spreadsheeteditor/main/locale/zh.json @@ -68,7 +68,7 @@ "Common.define.conditionalData.textContains": "包含", "Common.define.conditionalData.textDataBar": "数据栏", "Common.define.conditionalData.textDate": "日期", - "Common.define.conditionalData.textDuplicate": "复制", + "Common.define.conditionalData.textDuplicate": "重复", "Common.define.conditionalData.textEnds": "结尾为", "Common.define.conditionalData.textEqAbove": "等于或高于", "Common.define.conditionalData.textEqBelow": "等于或低于", @@ -242,10 +242,10 @@ "Common.Views.ImageFromUrlDialog.textUrl": "粘贴图片网址:", "Common.Views.ImageFromUrlDialog.txtEmpty": "这是必填栏", "Common.Views.ImageFromUrlDialog.txtNotUrl": "该字段应该是“http://www.example.com”格式的URL", - "Common.Views.ListSettingsDialog.textBulleted": "已添加项目点", + "Common.Views.ListSettingsDialog.textBulleted": "已添加项目符号", "Common.Views.ListSettingsDialog.textNumbering": "标号", "Common.Views.ListSettingsDialog.tipChange": "修改项目点", - "Common.Views.ListSettingsDialog.txtBullet": "项目点", + "Common.Views.ListSettingsDialog.txtBullet": "项目符号", "Common.Views.ListSettingsDialog.txtColor": "颜色", "Common.Views.ListSettingsDialog.txtNewBullet": "添加一个新的项目点", "Common.Views.ListSettingsDialog.txtNone": "无", @@ -433,7 +433,7 @@ "SSE.Controllers.DataTab.txtExpandRemDuplicates": "所选内容旁边的数据将不会被删除。您要扩展选择范围以包括相邻数据还是仅继续使用当前选定的单元格?", "SSE.Controllers.DataTab.txtExtendDataValidation": "选定区域中的某些单元格尚未设置“数据有效性”。
是否将“数据有效性”设置扩展到这些单元格?", "SSE.Controllers.DataTab.txtImportWizard": "文本导入向导", - "SSE.Controllers.DataTab.txtRemDuplicates": "移除多次出现的元素", + "SSE.Controllers.DataTab.txtRemDuplicates": "移除重复的元素", "SSE.Controllers.DataTab.txtRemoveDataValidation": "选定区域含有多种类型的数据有效性。
是否清除当前设置并继续?", "SSE.Controllers.DataTab.txtRemSelected": "移除选定的", "SSE.Controllers.DataTab.txtUrlTitle": "粘贴URL数据", @@ -630,7 +630,7 @@ "SSE.Controllers.Main.downloadErrorText": "下载失败", "SSE.Controllers.Main.downloadTextText": "正在下载试算表...", "SSE.Controllers.Main.downloadTitleText": "下载电子表格", - "SSE.Controllers.Main.errNoDuplicates": "未找到重复的数值", + "SSE.Controllers.Main.errNoDuplicates": "未找重复值。", "SSE.Controllers.Main.errorAccessDeny": "您正在尝试执行您没有权限的操作。
请联系您的文档服务器管理员.", "SSE.Controllers.Main.errorArgsRange": "一个错误的输入公式。< br >使用不正确的参数范围。", "SSE.Controllers.Main.errorAutoFilterChange": "不允许操作,因为它正在尝试在工作表上的表格中移动单元格。", @@ -716,7 +716,7 @@ "SSE.Controllers.Main.errorWrongBracketsCount": "一个错误的输入公式。< br >用括号打错了。", "SSE.Controllers.Main.errorWrongOperator": "公式输入发生错误。操作不当,请改正!", "SSE.Controllers.Main.errorWrongPassword": "你提供的密码不正确。", - "SSE.Controllers.Main.errRemDuplicates": "发现多次出现的值: {0}, 已经删除。 只留下惟一的值: {1}.", + "SSE.Controllers.Main.errRemDuplicates": "发现重复值: {0}, 已经删除。 只留下唯一的值: {1}.", "SSE.Controllers.Main.leavePageText": "您在本电子表格中有未保存的更改。点击“留在这个页面”,然后点击“保存”保存。点击“离开此页面”,放弃所有未保存的更改。", "SSE.Controllers.Main.leavePageTextOnClose": "将丢失表格里所有的未保存更改。
单击“取消”然后“保存”以保存好更改。单击“确定”以放弃所有未保存的更改。", "SSE.Controllers.Main.loadFontsTextText": "数据加载中…", @@ -1335,7 +1335,7 @@ "SSE.Controllers.Toolbar.txtSymbol_ast": "星号运营商", "SSE.Controllers.Toolbar.txtSymbol_beta": "测试版", "SSE.Controllers.Toolbar.txtSymbol_beth": "打赌", - "SSE.Controllers.Toolbar.txtSymbol_bullet": "着重号操作", + "SSE.Controllers.Toolbar.txtSymbol_bullet": "项目符号操作", "SSE.Controllers.Toolbar.txtSymbol_cap": "路口", "SSE.Controllers.Toolbar.txtSymbol_cbrt": "立方根", "SSE.Controllers.Toolbar.txtSymbol_cdots": "中线水平省略号", @@ -1729,7 +1729,7 @@ "SSE.Views.DataTab.capBtnGroup": "分组", "SSE.Views.DataTab.capBtnTextCustomSort": "自定义排序", "SSE.Views.DataTab.capBtnTextDataValidation": "数据校验", - "SSE.Views.DataTab.capBtnTextRemDuplicates": "移除多次出现的元素", + "SSE.Views.DataTab.capBtnTextRemDuplicates": "移除重复的元素", "SSE.Views.DataTab.capBtnTextToCol": "文本分列向导", "SSE.Views.DataTab.capBtnUngroup": "取消组合", "SSE.Views.DataTab.capDataFromText": "获取数据", @@ -1746,7 +1746,7 @@ "SSE.Views.DataTab.tipDataFromText": "从文本/CSV文件中获取数据", "SSE.Views.DataTab.tipDataValidation": "数据校验", "SSE.Views.DataTab.tipGroup": "单元组范围", - "SSE.Views.DataTab.tipRemDuplicates": "从表单中移除多次出现的行", + "SSE.Views.DataTab.tipRemDuplicates": "从表单中移除重复的行", "SSE.Views.DataTab.tipToColumns": "将单元格文本分隔成列", "SSE.Views.DataTab.tipUngroup": "取消单元格范围分组", "SSE.Views.DataValidationDialog.errorFormula": "该值当前包含错误。是否继续?", @@ -1834,7 +1834,7 @@ "SSE.Views.DocumentHolder.advancedShapeText": "形状高级设置", "SSE.Views.DocumentHolder.advancedSlicerText": "切片器高级设置", "SSE.Views.DocumentHolder.bottomCellText": "底部对齐", - "SSE.Views.DocumentHolder.bulletsText": "子弹和编号", + "SSE.Views.DocumentHolder.bulletsText": "符号和编号", "SSE.Views.DocumentHolder.centerCellText": "居中对齐", "SSE.Views.DocumentHolder.chartText": "图表高级设置", "SSE.Views.DocumentHolder.deleteColumnText": "列", @@ -2778,7 +2778,7 @@ "SSE.Views.RemoveDuplicatesDialog.textDescription": "若要删除重复值,请选择一个或多个包含重复值的列。", "SSE.Views.RemoveDuplicatesDialog.textHeaders": "我的数据有题头", "SSE.Views.RemoveDuplicatesDialog.textSelectAll": "全选", - "SSE.Views.RemoveDuplicatesDialog.txtTitle": "移除多次出现的元素", + "SSE.Views.RemoveDuplicatesDialog.txtTitle": "移除重复的元素", "SSE.Views.RightMenu.txtCellSettings": "单元格设置", "SSE.Views.RightMenu.txtChartSettings": "图表设置", "SSE.Views.RightMenu.txtImageSettings": "图像设置", @@ -3142,7 +3142,7 @@ "SSE.Views.TableSettings.textLast": "最后", "SSE.Views.TableSettings.textLongOperation": "长操作", "SSE.Views.TableSettings.textPivot": "插入透视表", - "SSE.Views.TableSettings.textRemDuplicates": "移除多次出现的元素", + "SSE.Views.TableSettings.textRemDuplicates": "移除重复的元素", "SSE.Views.TableSettings.textReservedName": "您尝试使用的名称已在单元格公式中引用。请使用其他名称。", "SSE.Views.TableSettings.textResize": "调整表大小", "SSE.Views.TableSettings.textRows": "行", @@ -3494,7 +3494,7 @@ "SSE.Views.ViewManagerDlg.closeButtonText": "关闭", "SSE.Views.ViewManagerDlg.guestText": "游客", "SSE.Views.ViewManagerDlg.textDelete": "删除", - "SSE.Views.ViewManagerDlg.textDuplicate": "复制", + "SSE.Views.ViewManagerDlg.textDuplicate": "重复", "SSE.Views.ViewManagerDlg.textEmpty": "目前没有创建视图。", "SSE.Views.ViewManagerDlg.textGoTo": "转到视图", "SSE.Views.ViewManagerDlg.textLongName": "请键入少于128个字符的名称。", From c98e6c6aee85d468a6ec8f77717eb24b3f9ad470 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 21 Jan 2022 20:48:59 +0300 Subject: [PATCH 072/217] [Mobile] Update translation --- apps/documenteditor/mobile/locale/ru.json | 32 +++++++++---------- apps/documenteditor/mobile/locale/zh.json | 2 +- apps/presentationeditor/mobile/locale/nl.json | 24 +++++++------- apps/presentationeditor/mobile/locale/ru.json | 10 +++--- apps/presentationeditor/mobile/locale/tr.json | 4 +-- apps/presentationeditor/mobile/locale/zh.json | 4 +-- apps/spreadsheeteditor/mobile/locale/az.json | 1 + apps/spreadsheeteditor/mobile/locale/be.json | 3 +- apps/spreadsheeteditor/mobile/locale/bg.json | 3 +- apps/spreadsheeteditor/mobile/locale/ca.json | 1 + apps/spreadsheeteditor/mobile/locale/cs.json | 1 + apps/spreadsheeteditor/mobile/locale/da.json | 1 + apps/spreadsheeteditor/mobile/locale/de.json | 1 + apps/spreadsheeteditor/mobile/locale/el.json | 1 + apps/spreadsheeteditor/mobile/locale/es.json | 1 + apps/spreadsheeteditor/mobile/locale/fr.json | 1 + apps/spreadsheeteditor/mobile/locale/gl.json | 1 + apps/spreadsheeteditor/mobile/locale/hu.json | 1 + apps/spreadsheeteditor/mobile/locale/it.json | 1 + apps/spreadsheeteditor/mobile/locale/ja.json | 1 + apps/spreadsheeteditor/mobile/locale/ko.json | 1 + 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 | 5 +-- apps/spreadsheeteditor/mobile/locale/pl.json | 3 +- apps/spreadsheeteditor/mobile/locale/pt.json | 3 +- apps/spreadsheeteditor/mobile/locale/ro.json | 1 + apps/spreadsheeteditor/mobile/locale/ru.json | 25 ++++++++------- 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 | 1 + 35 files changed, 93 insertions(+), 64 deletions(-) diff --git a/apps/documenteditor/mobile/locale/ru.json b/apps/documenteditor/mobile/locale/ru.json index 3b1fbff8c..6e66d429f 100644 --- a/apps/documenteditor/mobile/locale/ru.json +++ b/apps/documenteditor/mobile/locale/ru.json @@ -41,6 +41,7 @@ "textLocation": "Положение", "textNextPage": "Со следующей страницы", "textOddPage": "С нечетной страницы", + "textOk": "Ok", "textOther": "Другое", "textPageBreak": "Разрыв страницы", "textPageNumber": "Номер страницы", @@ -56,8 +57,7 @@ "textStartAt": "Начать с", "textTable": "Таблица", "textTableSize": "Размер таблицы", - "txtNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"", - "textOk": "Ok" + "txtNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"" }, "Common": { "Collaboration": { @@ -208,6 +208,8 @@ "textAlign": "Выравнивание", "textAllCaps": "Все прописные", "textAllowOverlap": "Разрешить перекрытие", + "textApril": "Апрель", + "textAugust": "Август", "textAuto": "Авто", "textAutomatic": "Автоматический", "textBack": "Назад", @@ -226,6 +228,7 @@ "textColor": "Цвет", "textContinueFromPreviousSection": "Продолжить", "textCustomColor": "Пользовательский цвет", + "textDecember": "Декабрь", "textDifferentFirstPage": "Особый для первой страницы", "textDifferentOddAndEvenPages": "Разные для четных и нечетных", "textDisplay": "Отобразить", @@ -234,6 +237,7 @@ "textEditLink": "Редактировать ссылку", "textEffects": "Эффекты", "textEmptyImgUrl": "Необходимо указать URL рисунка.", + "textFebruary": "Февраль", "textFill": "Заливка", "textFirstColumn": "Первый столбец", "textFirstLine": "Первая строка", @@ -251,6 +255,9 @@ "textImageURL": "URL рисунка", "textInFront": "Перед текстом", "textInline": "В тексте", + "textJanuary": "Январь", + "textJuly": "Июль", + "textJune": "Июнь", "textKeepLinesTogether": "Не разрывать абзац", "textKeepWithNext": "Не отрывать от следующего", "textLastColumn": "Последний столбец", @@ -259,6 +266,8 @@ "textLink": "Ссылка", "textLinkSettings": "Настройки ссылки", "textLinkToPrevious": "Связать с предыдущим", + "textMarch": "Март", + "textMay": "Май", "textMo": "Пн", "textMoveBackward": "Перенести назад", "textMoveForward": "Перенести вперед", @@ -266,7 +275,10 @@ "textNone": "Нет", "textNoStyles": "Для этого типа диаграмм нет стилей.", "textNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"", + "textNovember": "Ноябрь", "textNumbers": "Нумерация", + "textOctober": "Октябрь", + "textOk": "Ok", "textOpacity": "Непрозрачность", "textOptions": "Параметры", "textOrphanControl": "Запрет висячих строк", @@ -291,6 +303,7 @@ "textScreenTip": "Подсказка", "textSelectObjectToEdit": "Выберите объект для редактирования", "textSendToBackground": "Перенести на задний план", + "textSeptember": "Сентябрь", "textSettings": "Настройки", "textShape": "Фигура", "textSize": "Размер", @@ -316,21 +329,8 @@ "textType": "Тип", "textWe": "Ср", "textWrap": "Стиль обтекания", - "textApril": "April", - "textAugust": "August", - "textDecember": "December", "textDesign": "Design", - "textEmpty": "Empty", - "textFebruary": "February", - "textJanuary": "January", - "textJuly": "July", - "textJune": "June", - "textMarch": "March", - "textMay": "May", - "textNovember": "November", - "textOctober": "October", - "textOk": "Ok", - "textSeptember": "September" + "textEmpty": "Empty" }, "Error": { "convertationTimeoutText": "Превышено время ожидания конвертации.", diff --git a/apps/documenteditor/mobile/locale/zh.json b/apps/documenteditor/mobile/locale/zh.json index 807fcf90b..f581a2ae0 100644 --- a/apps/documenteditor/mobile/locale/zh.json +++ b/apps/documenteditor/mobile/locale/zh.json @@ -218,7 +218,7 @@ "textBehind": "之后", "textBorder": "边界", "textBringToForeground": "放到最上面", - "textBullets": "着重号", + "textBullets": "项目符号", "textBulletsAndNumbers": "项目符号与编号", "textCellMargins": "单元格边距", "textChart": "图表", diff --git a/apps/presentationeditor/mobile/locale/nl.json b/apps/presentationeditor/mobile/locale/nl.json index 0a7257bf1..991b0f073 100644 --- a/apps/presentationeditor/mobile/locale/nl.json +++ b/apps/presentationeditor/mobile/locale/nl.json @@ -33,13 +33,13 @@ "textTryUndoRedo": "De functies Ongedaan maken/Annuleren zijn uitgeschakeld in de Modus Gezamenlijk bewerken.", "textUsers": "Gebruikers" }, + "HighlightColorPalette": { + "textNoFill": "Geen vulling" + }, "ThemeColorPalette": { "textCustomColors": "Aangepaste kleuren", "textStandartColors": "Standaardkleuren", "textThemeColors": "Themakleuren" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -107,6 +107,7 @@ "textHasMacros": "Het bestand bevat automatische macro's.
Wilt u macro's uitvoeren?", "textNo": "Nee", "textNoLicenseTitle": "Licentielimiet bereikt", + "textNoTextFound": "Tekst niet gevonden", "textOpenFile": "Voer een wachtwoord in om dit bestand te openen", "textPaidFeature": "Betaalde functie", "textRemember": "Bewaar mijn keuze", @@ -124,7 +125,6 @@ "warnNoLicense": "U hebt de limiet bereikt voor gelijktijdige verbindingen met %1 gelijktijdige gebruikers. Dit document wordt alleen geopend om te bekijken. Neem contact op met %1 verkoopteam voor persoonlijke upgradevoorwaarden.", "warnNoLicenseUsers": "U heeft de gebruikerslimiet voor %1 gelijktijdige gebruikers bereikt. Neem contact op met de verkoopafdeling voor persoonlijke upgradevoorwaarden.", "warnProcessRightsChange": "Je hebt geen toestemming om het bestand te bewerken.", - "textNoTextFound": "Text not found", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" } @@ -228,6 +228,7 @@ "textLinkTo": "Koppelen aan", "textLinkType": "Type koppeling", "textNextSlide": "Volgende dia", + "textOk": "OK", "textOther": "Overige", "textPictureFromLibrary": "Afbeelding uit bibliotheek", "textPictureFromURL": "Afbeelding van URL", @@ -240,8 +241,7 @@ "textSlideNumber": "Dianummer", "textTable": "Tabel", "textTableSize": "Tabelgrootte", - "txtNotUrl": "Dit veld moet een URL bevatten in de notatie \"http://www.internet.nl\"", - "textOk": "Ok" + "txtNotUrl": "Dit veld moet een URL bevatten in de notatie \"http://www.internet.nl\"" }, "Edit": { "notcriticalErrorTitle": "Waarschuwing", @@ -261,6 +261,7 @@ "textAllCaps": "Allemaal hoofdletters", "textApplyAll": "Toepassen op alle dia's", "textAuto": "Automatisch", + "textAutomatic": "Automatisch", "textBack": "Terug", "textBandedColumn": "Gestreepte kolom", "textBandedRow": "Gestreepte rij", @@ -285,6 +286,7 @@ "textDefault": "Geselecteerde tekst", "textDelay": "Vertragen", "textDeleteSlide": "Dia verwijderen", + "textDesign": "Ontwerp", "textDisplay": "Weergeven", "textDistanceFromText": "Afstand van tekst", "textDistributeHorizontally": "Horizontaal verdelen", @@ -336,6 +338,7 @@ "textNoTextFound": "Tekst niet gevonden", "textNotUrl": "Dit veld moet een URL bevatten in de notatie \"http://www.internet.nl\"", "textNumbers": "Nummers", + "textOk": "OK", "textOpacity": "Ondoorzichtigheid", "textOptions": "Opties", "textPictureFromLibrary": "Afbeelding uit bibliotheek", @@ -390,10 +393,7 @@ "textZoom": "Zoomen", "textZoomIn": "Inzoomen", "textZoomOut": "Uitzoomen", - "textZoomRotate": "Zoomen en draaien", - "textAutomatic": "Automatic", - "textDesign": "Design", - "textOk": "Ok" + "textZoomRotate": "Zoomen en draaien" }, "Settings": { "mniSlideStandard": "Standaard (4:3)", @@ -410,6 +410,7 @@ "textColorSchemes": "Kleurschema's", "textComment": "Opmerking", "textCreated": "Aangemaakt", + "textDarkTheme": "Donker thema", "textDisableAll": "Alles uitschakelen", "textDisableAllMacrosWithNotification": "Alle macro's met notificaties uitschakelen", "textDisableAllMacrosWithoutNotification": "Alle macro's met notificatie uitschakelen", @@ -472,8 +473,7 @@ "txtScheme6": "Concours", "txtScheme7": "Vermogen", "txtScheme8": "Stroom", - "txtScheme9": "Gieterij", - "textDarkTheme": "Dark Theme" + "txtScheme9": "Gieterij" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/ru.json b/apps/presentationeditor/mobile/locale/ru.json index ec2f8f15a..fa1d2514e 100644 --- a/apps/presentationeditor/mobile/locale/ru.json +++ b/apps/presentationeditor/mobile/locale/ru.json @@ -228,6 +228,7 @@ "textLinkTo": "Связать с", "textLinkType": "Тип ссылки", "textNextSlide": "Следующий слайд", + "textOk": "Ok", "textOther": "Другое", "textPictureFromLibrary": "Рисунок из библиотеки", "textPictureFromURL": "Рисунок по URL", @@ -240,8 +241,7 @@ "textSlideNumber": "Номер слайда", "textTable": "Таблица", "textTableSize": "Размер таблицы", - "txtNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"", - "textOk": "Ok" + "txtNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"" }, "Edit": { "notcriticalErrorTitle": "Внимание", @@ -261,6 +261,7 @@ "textAllCaps": "Все прописные", "textApplyAll": "Применить ко всем слайдам", "textAuto": "Авто", + "textAutomatic": "Автоматический", "textBack": "Назад", "textBandedColumn": "Чередовать столбцы", "textBandedRow": "Чередовать строки", @@ -336,6 +337,7 @@ "textNoTextFound": "Текст не найден", "textNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"", "textNumbers": "Нумерация", + "textOk": "Ok", "textOpacity": "Непрозрачность", "textOptions": "Параметры", "textPictureFromLibrary": "Рисунок из библиотеки", @@ -391,9 +393,7 @@ "textZoomIn": "Увеличение", "textZoomOut": "Уменьшение", "textZoomRotate": "Увеличение с поворотом", - "textAutomatic": "Automatic", - "textDesign": "Design", - "textOk": "Ok" + "textDesign": "Design" }, "Settings": { "mniSlideStandard": "Стандартный (4:3)", diff --git a/apps/presentationeditor/mobile/locale/tr.json b/apps/presentationeditor/mobile/locale/tr.json index fd4abc8d3..c4f7ee2e5 100644 --- a/apps/presentationeditor/mobile/locale/tr.json +++ b/apps/presentationeditor/mobile/locale/tr.json @@ -391,9 +391,9 @@ "textZoomRotate": "Büyüt ve Döndür", "textAutomatic": "Automatic", "textDesign": "Design", + "textOk": "Tamam", "textPush": "Push", - "textWedge": "Wedge", - "textOk": "Tamam" + "textWedge": "Wedge" }, "Settings": { "mniSlideStandard": "Standart (4:3)", diff --git a/apps/presentationeditor/mobile/locale/zh.json b/apps/presentationeditor/mobile/locale/zh.json index a6d48071b..c3f356180 100644 --- a/apps/presentationeditor/mobile/locale/zh.json +++ b/apps/presentationeditor/mobile/locale/zh.json @@ -271,7 +271,7 @@ "textBottomLeft": "左下", "textBottomRight": "右下", "textBringToForeground": "放到最上面", - "textBullets": "着重号", + "textBullets": "项目符号", "textBulletsAndNumbers": "项目符号与编号", "textCaseSensitive": "区分大小写", "textCellMargins": "单元格边距", @@ -380,7 +380,7 @@ "textTopRight": "右上", "textTotalRow": "总行", "textTransition": "过渡", - "textTransitions": "转换", + "textTransitions": "切换", "textType": "类型", "textUnCover": "揭露", "textVerticalIn": "铅直进入", diff --git a/apps/spreadsheeteditor/mobile/locale/az.json b/apps/spreadsheeteditor/mobile/locale/az.json index 606c82a0b..26220ebe9 100644 --- a/apps/spreadsheeteditor/mobile/locale/az.json +++ b/apps/spreadsheeteditor/mobile/locale/az.json @@ -155,6 +155,7 @@ "warnNoLicense": "Siz 1% redaktorlarına eyni vaxtda qoşulma limitinə çatdınız. Bu sənəd yalnız baxmaq üçün açılacaq. Şəxsi təkmilləşdirmə şərtləri üçün 1% satış komandası ilə əlaqə saxlayın.", "warnNoLicenseUsers": "1% redaktor üçün istifadəçi limitinə çatdınız. Şəxsi təkmilləşdirmə şərtləri üçün 1% satış komandası ilə əlaqə saxlayın.", "warnProcessRightsChange": "Faylı redaktə etmək icazəniz yoxdur.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", "textNoTextFound": "Text not found", "textOk": "Ok", diff --git a/apps/spreadsheeteditor/mobile/locale/be.json b/apps/spreadsheeteditor/mobile/locale/be.json index 2e6976626..d4ec07be8 100644 --- a/apps/spreadsheeteditor/mobile/locale/be.json +++ b/apps/spreadsheeteditor/mobile/locale/be.json @@ -159,7 +159,8 @@ "textOk": "Ok", "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textNoTextFound": "Text not found", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." } }, "Error": { diff --git a/apps/spreadsheeteditor/mobile/locale/bg.json b/apps/spreadsheeteditor/mobile/locale/bg.json index 2e6976626..d4ec07be8 100644 --- a/apps/spreadsheeteditor/mobile/locale/bg.json +++ b/apps/spreadsheeteditor/mobile/locale/bg.json @@ -159,7 +159,8 @@ "textOk": "Ok", "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textNoTextFound": "Text not found", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." } }, "Error": { diff --git a/apps/spreadsheeteditor/mobile/locale/ca.json b/apps/spreadsheeteditor/mobile/locale/ca.json index c46797523..86767df88 100644 --- a/apps/spreadsheeteditor/mobile/locale/ca.json +++ b/apps/spreadsheeteditor/mobile/locale/ca.json @@ -155,6 +155,7 @@ "warnNoLicense": "Has arribat al límit de connexions simultànies a %1 editors. Aquest document només s'obrirà en mode lectura. Contacta amb l'equip de vendes %1 per a les condicions d'una actualització personal.", "warnNoLicenseUsers": "Has arribat al límit d'usuaris per a %1 editors. Contacta amb l'equip de vendes de %1 per obtenir les condicions de millora personals dels teus serveis.", "warnProcessRightsChange": "No tens permís per editar el fitxer.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", "textNoTextFound": "Text not found", "textOk": "Ok", diff --git a/apps/spreadsheeteditor/mobile/locale/cs.json b/apps/spreadsheeteditor/mobile/locale/cs.json index 3e8551ec0..f47b269df 100644 --- a/apps/spreadsheeteditor/mobile/locale/cs.json +++ b/apps/spreadsheeteditor/mobile/locale/cs.json @@ -155,6 +155,7 @@ "warnNoLicense": "Došlo k dosažení limitu souběžného připojení %1 editorů. Tento dokument bude otevřen pouze pro náhled. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", "warnNoLicenseUsers": "Došlo k dosažení limitu %1 editorů. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", "warnProcessRightsChange": "Nemáte oprávnění pro úpravu tohoto dokumentu.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", "textNoTextFound": "Text not found", "textOk": "Ok", diff --git a/apps/spreadsheeteditor/mobile/locale/da.json b/apps/spreadsheeteditor/mobile/locale/da.json index b403fa641..517c50e5f 100644 --- a/apps/spreadsheeteditor/mobile/locale/da.json +++ b/apps/spreadsheeteditor/mobile/locale/da.json @@ -141,6 +141,7 @@ "warnLicenseLimitedRenewed": "\nLicensen skal fornyes. Du har begrænset adgang til dokumentredigeringsfunktioner.
Kontakt din administrator for at få fuld adgang", "warnLicenseUsersExceeded": "Det tilladte antal af samtidige brugere er oversteget, og dokumentet vil blive åbnet i visningstilstand.
Kontakt venligst din administrator for mere information. ", "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", "errorProcessSaveResult": "Saving 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.", diff --git a/apps/spreadsheeteditor/mobile/locale/de.json b/apps/spreadsheeteditor/mobile/locale/de.json index eccbb5ee3..f756f2d7c 100644 --- a/apps/spreadsheeteditor/mobile/locale/de.json +++ b/apps/spreadsheeteditor/mobile/locale/de.json @@ -155,6 +155,7 @@ "warnNoLicense": "Sie haben die maximale Anzahl von gleichzeitigen Verbindungen in %1-Editoren erreicht. Die Bearbeitung ist jetzt in diesem Dokument nicht verfügbar. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", "warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", "warnProcessRightsChange": "Sie können diese Datei nicht bearbeiten.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", "textNoTextFound": "Text not found", "textOk": "Ok", diff --git a/apps/spreadsheeteditor/mobile/locale/el.json b/apps/spreadsheeteditor/mobile/locale/el.json index 817492387..3d4f3fcb5 100644 --- a/apps/spreadsheeteditor/mobile/locale/el.json +++ b/apps/spreadsheeteditor/mobile/locale/el.json @@ -155,6 +155,7 @@ "warnNoLicense": "Φτάσατε το όριο ταυτόχρονων συνδέσεων σε %1 συντάκτες. Το έγγραφο θα ανοίξει μόνο για ανάγνωση. Επικοινωνήστε με την ομάδα πωλήσεων %1 για τους όρους αναβάθμισης.", "warnNoLicenseUsers": "Έχετε φτάσει το όριο χρήστη για συντάκτες %1.
Επικοινωνήστε με την ομάδα πωλήσεων %1 για προσωπικούς όρους αναβάθμισης.", "warnProcessRightsChange": "Δεν έχετε δικαίωμα επεξεργασίας του αρχείου.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", "textNoTextFound": "Text not found", "textOk": "Ok", diff --git a/apps/spreadsheeteditor/mobile/locale/es.json b/apps/spreadsheeteditor/mobile/locale/es.json index a2c8dc85a..070f8cd2c 100644 --- a/apps/spreadsheeteditor/mobile/locale/es.json +++ b/apps/spreadsheeteditor/mobile/locale/es.json @@ -155,6 +155,7 @@ "warnNoLicense": "Ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización. Póngase en contacto con el equipo de ventas de %1 para conocer las condiciones de actualización personal.", "warnNoLicenseUsers": "Ha alcanzado el límite de usuarios para %1 editores. Póngase en contacto con el equipo de ventas de %1 para conocer las condiciones de actualización personal.", "warnProcessRightsChange": "No tiene permiso para editar el archivo.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", "textNoTextFound": "Text not found", "textOk": "Ok", diff --git a/apps/spreadsheeteditor/mobile/locale/fr.json b/apps/spreadsheeteditor/mobile/locale/fr.json index c4234077e..4f57b80e7 100644 --- a/apps/spreadsheeteditor/mobile/locale/fr.json +++ b/apps/spreadsheeteditor/mobile/locale/fr.json @@ -155,6 +155,7 @@ "warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert en lecture seule. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", "warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", "warnProcessRightsChange": "Vous n'avez pas la permission de modifier ce fichier.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", "textNoTextFound": "Text not found", "textOk": "Ok", diff --git a/apps/spreadsheeteditor/mobile/locale/gl.json b/apps/spreadsheeteditor/mobile/locale/gl.json index 26a6ce7bb..a30206838 100644 --- a/apps/spreadsheeteditor/mobile/locale/gl.json +++ b/apps/spreadsheeteditor/mobile/locale/gl.json @@ -155,6 +155,7 @@ "warnNoLicense": "Alcanzou o límite de conexións simultáneas con %1 editores. Este documento abrirase para as úa visualización. Póñase en contacto co equipo de vendas de %1 para coñecer as condicións de actualización persoal.", "warnNoLicenseUsers": "Alcanzou o límite de usuarios para os editores de %1.
Contacte co equipo de vendas de %1 para coñecer os termos de actualización persoal.", "warnProcessRightsChange": "Non ten permiso para editar o ficheiro.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", "textNoTextFound": "Text not found", "textOk": "Ok", diff --git a/apps/spreadsheeteditor/mobile/locale/hu.json b/apps/spreadsheeteditor/mobile/locale/hu.json index 43ca11f91..490ec1839 100644 --- a/apps/spreadsheeteditor/mobile/locale/hu.json +++ b/apps/spreadsheeteditor/mobile/locale/hu.json @@ -155,6 +155,7 @@ "warnNoLicense": "Elérte a(z) %1 szerkesztővel való egyidejű kapcsolódási korlátot. Ez a dokumentum csak megtekintésre nyílik meg. Lépjen kapcsolatba a(z) %1 értékesítési csapattal a személyes frissítés feltételekért.", "warnNoLicenseUsers": "Elérte a(z) %1 szerkesztőhöz tartozó felhasználói korlátját. Vegye fel a kapcsolatot a(z) %1 értékesítési csapattal a személyes frissítési feltételekért.", "warnProcessRightsChange": "Nincs engedélye a fájl szerkesztésére.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", "textNoTextFound": "Text not found", "textOk": "Ok", diff --git a/apps/spreadsheeteditor/mobile/locale/it.json b/apps/spreadsheeteditor/mobile/locale/it.json index 3ad8e0585..e3d0b4b3b 100644 --- a/apps/spreadsheeteditor/mobile/locale/it.json +++ b/apps/spreadsheeteditor/mobile/locale/it.json @@ -155,6 +155,7 @@ "warnNoLicense": "Hai raggiunto il limite delle connessioni simultanee agli editor %1. Questo documento sarà aperto solo in modalità di visualizzazione. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", "warnNoLicenseUsers": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", "warnProcessRightsChange": "Non hai il permesso di modificare il file.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", "textNoTextFound": "Text not found", "textOk": "Ok", diff --git a/apps/spreadsheeteditor/mobile/locale/ja.json b/apps/spreadsheeteditor/mobile/locale/ja.json index eee566cdf..96a7e5d35 100644 --- a/apps/spreadsheeteditor/mobile/locale/ja.json +++ b/apps/spreadsheeteditor/mobile/locale/ja.json @@ -155,6 +155,7 @@ "warnNoLicense": "%1エディター 時接続数の制限に達しました。この文書が見るだけのために開かれる。個人的なアップグレード条件については、%1営業チームを連絡してください。", "warnNoLicenseUsers": "%1エディターのユーザー制限に達しました。 個人的なアップグレード条件については、%1営業チームを連絡してください。", "warnProcessRightsChange": "ファイルを編集する権限がありません!", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", "textNoTextFound": "Text not found", "textOk": "Ok", diff --git a/apps/spreadsheeteditor/mobile/locale/ko.json b/apps/spreadsheeteditor/mobile/locale/ko.json index 9e8913936..1cf3ec435 100644 --- a/apps/spreadsheeteditor/mobile/locale/ko.json +++ b/apps/spreadsheeteditor/mobile/locale/ko.json @@ -155,6 +155,7 @@ "warnNoLicense": "% 1 편집 연결 수 제한에 도달했습니다. 이 문서는 보기 모드로 열립니다. 개인적인 업그레이드 사항은 % 1 영업팀에 연락하십시오.", "warnNoLicenseUsers": "ONLYOFFICE 편집자의이 버전은 동시 사용자에게 일정한 제한이 있습니다.
더 필요한 것이 있으면 현재 라이센스를 업그레이드하거나 상용 라이센스를 구입하십시오.", "warnProcessRightsChange": "파일을 수정할 수 있는 권한이 없습니다.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", "textNoTextFound": "Text not found", "textOk": "Ok", diff --git a/apps/spreadsheeteditor/mobile/locale/lo.json b/apps/spreadsheeteditor/mobile/locale/lo.json index 2e6976626..d4ec07be8 100644 --- a/apps/spreadsheeteditor/mobile/locale/lo.json +++ b/apps/spreadsheeteditor/mobile/locale/lo.json @@ -159,7 +159,8 @@ "textOk": "Ok", "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textNoTextFound": "Text not found", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." } }, "Error": { diff --git a/apps/spreadsheeteditor/mobile/locale/lv.json b/apps/spreadsheeteditor/mobile/locale/lv.json index 2e6976626..d4ec07be8 100644 --- a/apps/spreadsheeteditor/mobile/locale/lv.json +++ b/apps/spreadsheeteditor/mobile/locale/lv.json @@ -159,7 +159,8 @@ "textOk": "Ok", "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textNoTextFound": "Text not found", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." } }, "Error": { diff --git a/apps/spreadsheeteditor/mobile/locale/nb.json b/apps/spreadsheeteditor/mobile/locale/nb.json index 2e6976626..d4ec07be8 100644 --- a/apps/spreadsheeteditor/mobile/locale/nb.json +++ b/apps/spreadsheeteditor/mobile/locale/nb.json @@ -159,7 +159,8 @@ "textOk": "Ok", "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textNoTextFound": "Text not found", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." } }, "Error": { diff --git a/apps/spreadsheeteditor/mobile/locale/nl.json b/apps/spreadsheeteditor/mobile/locale/nl.json index d52a6cd89..e36a8c576 100644 --- a/apps/spreadsheeteditor/mobile/locale/nl.json +++ b/apps/spreadsheeteditor/mobile/locale/nl.json @@ -155,6 +155,7 @@ "warnNoLicense": "U hebt de limiet bereikt voor gelijktijdige verbindingen met %1 gelijktijdige gebruikers. Dit document wordt alleen geopend om te bekijken. Neem contact op met %1 verkoopteam voor persoonlijke upgradevoorwaarden.", "warnNoLicenseUsers": "U heeft de gebruikerslimiet voor %1 gelijktijdige gebruikers bereikt. Neem contact op met de verkoopafdeling voor persoonlijke upgradevoorwaarden.", "warnProcessRightsChange": "Je hebt geen toestemming om het bestand te bewerken.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", "textNoTextFound": "Text not found", "textOk": "Ok", @@ -570,6 +571,7 @@ "textComments": "Opmerkingen", "textCreated": "Aangemaakt", "textCustomSize": "Aangepaste grootte", + "textDarkTheme": "Donker thema", "textDelimeter": "Scheidingsteken", "textDisableAll": "Alles uitschakelen", "textDisableAllMacrosWithNotification": "Schakel alle macro's uit met een melding", @@ -670,8 +672,7 @@ "txtSemicolon": "Puntkomma", "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?", - "textDarkTheme": "Dark Theme" + "warnDownloadAs": "Als u doorgaat met opslaan in dit formaat, gaat alle opmaak verloren en blijft alleen de tekst behouden.
Wilt u doorgaan?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/pl.json b/apps/spreadsheeteditor/mobile/locale/pl.json index 2e6976626..d4ec07be8 100644 --- a/apps/spreadsheeteditor/mobile/locale/pl.json +++ b/apps/spreadsheeteditor/mobile/locale/pl.json @@ -159,7 +159,8 @@ "textOk": "Ok", "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textNoTextFound": "Text not found", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." } }, "Error": { diff --git a/apps/spreadsheeteditor/mobile/locale/pt.json b/apps/spreadsheeteditor/mobile/locale/pt.json index 247ad119f..e5deb6b52 100644 --- a/apps/spreadsheeteditor/mobile/locale/pt.json +++ b/apps/spreadsheeteditor/mobile/locale/pt.json @@ -159,7 +159,8 @@ "warnLicenseUsersExceeded": "Você atingiu o limite de usuários para editores %1. Entre em contato com seu administrador para saber mais.", "warnNoLicense": "Você atingiu o limite de conexões simultâneas para% 1 editores. Este documento será aberto apenas para visualização. Contate a equipe de vendas% 1 para termos de atualização pessoal.", "warnNoLicenseUsers": "Você atingiu o limite de usuários para editores %1.
Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", - "warnProcessRightsChange": "Você não tem permissão para editar o arquivo." + "warnProcessRightsChange": "Você não tem permissão para editar o arquivo.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." } }, "Error": { diff --git a/apps/spreadsheeteditor/mobile/locale/ro.json b/apps/spreadsheeteditor/mobile/locale/ro.json index 2df8a05eb..e5b615b33 100644 --- a/apps/spreadsheeteditor/mobile/locale/ro.json +++ b/apps/spreadsheeteditor/mobile/locale/ro.json @@ -155,6 +155,7 @@ "warnNoLicense": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare. Contactați %1 Departamentul de Vânzări pentru acordarea condițiilor personale de actualizare.", "warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori ai %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.", "warnProcessRightsChange": "Nu aveți permisiunea de editare pentru fișier.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", "textNoTextFound": "Text not found", "textOk": "Ok", diff --git a/apps/spreadsheeteditor/mobile/locale/ru.json b/apps/spreadsheeteditor/mobile/locale/ru.json index c85bea8c7..6f142c808 100644 --- a/apps/spreadsheeteditor/mobile/locale/ru.json +++ b/apps/spreadsheeteditor/mobile/locale/ru.json @@ -145,6 +145,7 @@ "textNoChoices": "Нет вариантов для заполнения ячейки.
Для замены можно выбрать только текстовые значения из столбца.", "textNoLicenseTitle": "Лицензионное ограничение", "textNoTextFound": "Текст не найден", + "textOk": "Ok", "textPaidFeature": "Платная функция", "textRemember": "Запомнить мой выбор", "textReplaceSkipped": "Замена выполнена. Пропущено вхождений - {0}.", @@ -159,7 +160,7 @@ "warnNoLicense": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт на просмотр. Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия обновления.", "warnNoLicenseUsers": "Вы достигли лимита на количество пользователей редакторов %1. Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия обновления.", "warnProcessRightsChange": "У вас нет прав на редактирование этого файла.", - "textOk": "Ok" + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." } }, "Error": { @@ -174,6 +175,7 @@ "errorAutoFilterDataRange": "Операция не может быть произведена для выбранного диапазона ячеек.
Выделите однородный диапазон данных внутри или за пределами таблицы и повторите попытку.", "errorAutoFilterHiddenRange": "Операция не может быть произведена, так как область содержит отфильтрованные ячейки.
Выведите на экран скрытые фильтром элементы и повторите попытку.", "errorBadImageUrl": "Неправильный URL-адрес рисунка", + "errorCannotUseCommandProtectedSheet": "Данную команду нельзя использовать на защищенном листе. Необходимо сначала снять защиту листа.
Возможно, потребуется ввести пароль.", "errorChangeArray": "Нельзя изменить часть массива.", "errorChangeOnProtectedSheet": "Ячейка или диаграмма, которую вы пытаетесь изменить, находится на защищенном листе. Чтобы внести изменения, снимите защиту листа. Может потребоваться пароль.", "errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору.
Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.", @@ -232,8 +234,7 @@ "unknownErrorText": "Неизвестная ошибка.", "uploadImageExtMessage": "Неизвестный формат рисунка.", "uploadImageFileCountMessage": "Ни одного рисунка не загружено.", - "uploadImageSizeMessage": "Слишком большой рисунок. Максимальный размер - 25 MB.", - "errorCannotUseCommandProtectedSheet": "You cannot use this command on a protected sheet. To use this command, unprotect the sheet.
You might be requested to enter a password." + "uploadImageSizeMessage": "Слишком большой рисунок. Максимальный размер - 25 MB." }, "LongActions": { "advDRMPassword": "Пароль", @@ -288,16 +289,16 @@ "textErrorRemoveSheet": "Не удалось удалить лист.", "textHide": "Скрыть", "textMore": "Ещё", + "textMove": "Переместить", + "textMoveBack": "Переместить назад", + "textMoveForward": "Переместить вперед", "textOk": "Ok", "textRename": "Переименовать", "textRenameSheet": "Переименовать лист", "textSheet": "Лист", "textSheetName": "Имя листа", "textUnhide": "Показать", - "textWarnDeleteSheet": "Лист может содержать данные. Продолжить операцию?", - "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "textWarnDeleteSheet": "Лист может содержать данные. Продолжить операцию?" }, "Toolbar": { "dlgLeaveMsgText": "В документе есть несохраненные изменения. Нажмите 'Остаться на странице', чтобы дождаться автосохранения. Нажмите 'Уйти со страницы', чтобы сбросить все несохраненные изменения.", @@ -340,6 +341,7 @@ "textLink": "Ссылка", "textLinkSettings": "Настройки ссылки", "textLinkType": "Тип ссылки", + "textOk": "Ok", "textOther": "Другое", "textPictureFromLibrary": "Рисунок из библиотеки", "textPictureFromURL": "Рисунок по URL", @@ -357,8 +359,7 @@ "txtNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"", "txtSorting": "Сортировка", "txtSortSelected": "Сортировать выделенное", - "txtYes": "Да", - "textOk": "Ok" + "txtYes": "Да" }, "Edit": { "notcriticalErrorTitle": "Внимание", @@ -377,6 +378,7 @@ "textAngleClockwise": "Текст по часовой стрелке", "textAngleCounterclockwise": "Текст против часовой стрелки", "textAuto": "Авто", + "textAutomatic": "Автоматический", "textAxisCrosses": "Пересечение с осью", "textAxisOptions": "Параметры оси", "textAxisPosition": "Положение оси", @@ -477,6 +479,7 @@ "textNoOverlay": "Без наложения", "textNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"", "textNumber": "Числовой", + "textOk": "Ok", "textOnTickMarks": "Деления", "textOpacity": "Непрозрачность", "textOut": "Снаружи", @@ -538,9 +541,7 @@ "textYen": "Йена", "txtNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"", "txtSortHigh2Low": "Сортировка по убыванию", - "txtSortLow2High": "Сортировка по возрастанию", - "textAutomatic": "Automatic", - "textOk": "Ok" + "txtSortLow2High": "Сортировка по возрастанию" }, "Settings": { "advCSVOptions": "Выбрать параметры CSV", diff --git a/apps/spreadsheeteditor/mobile/locale/sk.json b/apps/spreadsheeteditor/mobile/locale/sk.json index 2e6976626..d4ec07be8 100644 --- a/apps/spreadsheeteditor/mobile/locale/sk.json +++ b/apps/spreadsheeteditor/mobile/locale/sk.json @@ -159,7 +159,8 @@ "textOk": "Ok", "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textNoTextFound": "Text not found", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." } }, "Error": { diff --git a/apps/spreadsheeteditor/mobile/locale/sl.json b/apps/spreadsheeteditor/mobile/locale/sl.json index 2e6976626..d4ec07be8 100644 --- a/apps/spreadsheeteditor/mobile/locale/sl.json +++ b/apps/spreadsheeteditor/mobile/locale/sl.json @@ -159,7 +159,8 @@ "textOk": "Ok", "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textNoTextFound": "Text not found", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." } }, "Error": { diff --git a/apps/spreadsheeteditor/mobile/locale/tr.json b/apps/spreadsheeteditor/mobile/locale/tr.json index ce03ac93b..d669b5e2e 100644 --- a/apps/spreadsheeteditor/mobile/locale/tr.json +++ b/apps/spreadsheeteditor/mobile/locale/tr.json @@ -159,7 +159,8 @@ "warnLicenseUsersExceeded": "%1 düzenleyici için kullanıcı sınırına ulaştınız. Daha fazla bilgi edinmek için yöneticinizle iletişime geçin.", "warnNoLicense": "%1 düzenleyiciye eşzamanlı bağlantı sınırına ulaştınız. Bu belge yalnızca görüntüleme için açılacaktır. Kişisel yükseltme koşulları için %1 satış ekibiyle iletişime geçin.", "warnNoLicenseUsers": "%1 düzenleyici için kullanıcı sınırına ulaştınız. Kişisel yükseltme koşulları için %1 satış ekibiyle iletişime geçin.", - "warnProcessRightsChange": "Dosyayı düzenleme izniniz yok." + "warnProcessRightsChange": "Dosyayı düzenleme izniniz yok.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." } }, "Error": { diff --git a/apps/spreadsheeteditor/mobile/locale/uk.json b/apps/spreadsheeteditor/mobile/locale/uk.json index 2e6976626..d4ec07be8 100644 --- a/apps/spreadsheeteditor/mobile/locale/uk.json +++ b/apps/spreadsheeteditor/mobile/locale/uk.json @@ -159,7 +159,8 @@ "textOk": "Ok", "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textNoTextFound": "Text not found", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." } }, "Error": { diff --git a/apps/spreadsheeteditor/mobile/locale/vi.json b/apps/spreadsheeteditor/mobile/locale/vi.json index 2e6976626..d4ec07be8 100644 --- a/apps/spreadsheeteditor/mobile/locale/vi.json +++ b/apps/spreadsheeteditor/mobile/locale/vi.json @@ -159,7 +159,8 @@ "textOk": "Ok", "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textNoTextFound": "Text not found", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." } }, "Error": { diff --git a/apps/spreadsheeteditor/mobile/locale/zh.json b/apps/spreadsheeteditor/mobile/locale/zh.json index f4804b38c..b89cf1478 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh.json +++ b/apps/spreadsheeteditor/mobile/locale/zh.json @@ -155,6 +155,7 @@ "warnNoLicense": "你已经触发了 %1 编辑器的同时在线数限制. 该文档打开后,你将只能查看。请联系 %1 的销售团队,获取个人升级条款。", "warnNoLicenseUsers": "你触发了 %1 编辑器的同时在线数限制。请与 %1 的销售团队联系,以获取个人升级条款。", "warnProcessRightsChange": "你没有编辑文件的权限。", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", "textNoTextFound": "Text not found", "textOk": "Ok", From 573565ff68642c99fffc273ac63d50e2f6be647a Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 21 Jan 2022 21:01:18 +0300 Subject: [PATCH 073/217] [PE][DE] Bug 53978 --- apps/documenteditor/main/app/view/ControlSettingsDialog.js | 2 +- apps/documenteditor/main/app/view/DateTimeDialog.js | 2 +- apps/presentationeditor/main/app/view/DateTimeDialog.js | 2 +- apps/presentationeditor/main/app/view/HeaderFooterDialog.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/documenteditor/main/app/view/ControlSettingsDialog.js b/apps/documenteditor/main/app/view/ControlSettingsDialog.js index 29662dff5..46f42eb2d 100644 --- a/apps/documenteditor/main/app/view/ControlSettingsDialog.js +++ b/apps/documenteditor/main/app/view/ControlSettingsDialog.js @@ -205,7 +205,7 @@ define([ 'text!documenteditor/main/app/template/ControlSettingsDialog.template', // date picker var data = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0C07 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A }, - { value: 0x040B }, { value: 0x040C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, + { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, { value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 }]; data.forEach(function(item) { var langinfo = Common.util.LanguageInfo.getLocalLanguageName(item.value); diff --git a/apps/documenteditor/main/app/view/DateTimeDialog.js b/apps/documenteditor/main/app/view/DateTimeDialog.js index 1fc95805e..931ad20a2 100644 --- a/apps/documenteditor/main/app/view/DateTimeDialog.js +++ b/apps/documenteditor/main/app/view/DateTimeDialog.js @@ -89,7 +89,7 @@ define([ Common.UI.Window.prototype.render.call(this); var data = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0C07 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A }, - { value: 0x040B }, { value: 0x040C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, + { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, { value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 }]; data.forEach(function(item) { var langinfo = Common.util.LanguageInfo.getLocalLanguageName(item.value); diff --git a/apps/presentationeditor/main/app/view/DateTimeDialog.js b/apps/presentationeditor/main/app/view/DateTimeDialog.js index ce875c21a..397aba526 100644 --- a/apps/presentationeditor/main/app/view/DateTimeDialog.js +++ b/apps/presentationeditor/main/app/view/DateTimeDialog.js @@ -89,7 +89,7 @@ define([ Common.UI.Window.prototype.render.call(this); var data = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0C07 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A }, - { value: 0x040B }, { value: 0x040C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, + { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, { value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 }]; data.forEach(function(item) { var langinfo = Common.util.LanguageInfo.getLocalLanguageName(item.value); diff --git a/apps/presentationeditor/main/app/view/HeaderFooterDialog.js b/apps/presentationeditor/main/app/view/HeaderFooterDialog.js index 9eac4598e..41480db38 100644 --- a/apps/presentationeditor/main/app/view/HeaderFooterDialog.js +++ b/apps/presentationeditor/main/app/view/HeaderFooterDialog.js @@ -123,7 +123,7 @@ define(['text!presentationeditor/main/app/template/HeaderFooterDialog.template', }); var data = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0C07 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A }, - { value: 0x040B }, { value: 0x040C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, + { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, { value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 }]; data.forEach(function(item) { var langinfo = Common.util.LanguageInfo.getLocalLanguageName(item.value); From fbe946719bdf428af4c9ae9d89e83ae1c076e7a9 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 24 Jan 2022 12:29:08 +0300 Subject: [PATCH 074/217] [PE] Refactoring --- apps/presentationeditor/main/app/template/Toolbar.template | 3 --- 1 file changed, 3 deletions(-) diff --git a/apps/presentationeditor/main/app/template/Toolbar.template b/apps/presentationeditor/main/app/template/Toolbar.template index 65c6dc50c..300c2f067 100644 --- a/apps/presentationeditor/main/app/template/Toolbar.template +++ b/apps/presentationeditor/main/app/template/Toolbar.template @@ -220,7 +220,6 @@
-
@@ -245,7 +244,6 @@
-
@@ -256,7 +254,6 @@
-
From a14533a9d4a2463994826e4b1df93eaaec0b97dd Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 24 Jan 2022 19:07:47 +0300 Subject: [PATCH 075/217] [DE forms] Bug 54910 --- .../app/controller/ApplicationController.js | 22 +++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/apps/documenteditor/forms/app/controller/ApplicationController.js b/apps/documenteditor/forms/app/controller/ApplicationController.js index 1a49a998c..394dae778 100644 --- a/apps/documenteditor/forms/app/controller/ApplicationController.js +++ b/apps/documenteditor/forms/app/controller/ApplicationController.js @@ -103,6 +103,8 @@ define([ this.api.asc_registerCallback('asc_onCountPages', this.onCountPages.bind(this)); this.api.asc_registerCallback('asc_onCurrentPage', this.onCurrentPage.bind(this)); this.api.asc_registerCallback('asc_onDocumentModifiedChanged', _.bind(this.onDocumentModifiedChanged, this)); + this.api.asc_registerCallback('asc_onCoAuthoringDisconnect', _.bind(this.onApiServerDisconnect, this)); + Common.NotificationCenter.on('api:disconnect', _.bind(this.onApiServerDisconnect, this)); // Initialize api gateway Common.Gateway.on('init', this.loadConfig.bind(this)); @@ -671,7 +673,7 @@ define([ } if (this._state.licenseType!==Asc.c_oLicenseResult.SuccessLimit && this.appOptions.canFillForms) { - this.disableEditing(true); + Common.NotificationCenter.trigger('api:disconnect'); } var value = Common.localStorage.getItem("de-license-warning"); @@ -1775,9 +1777,21 @@ define([ } }, - disableEditing: function(state) { - this.view && this.view.btnClear && this.view.btnClear.setDisabled(state); - this._isDisabled = state; + onApiServerDisconnect: function(enableDownload) { + this._state.isDisconnected = true; + this._isDisabled = true; + this.view && this.view.btnClear && this.view.btnClear.setDisabled(true); + if (!enableDownload) { + this.appOptions.canPrint = this.appOptions.canDownload = false; + this.view && this.view.btnDownload.setDisabled(true); + this.view && this.view.btnSubmit.setDisabled(true); + if (this.view && this.view.btnOptions && this.view.btnOptions.menu) { + this.view.btnOptions.menu.items[0].setDisabled(true); // print + this.view.btnOptions.menu.items[2].setDisabled(true); // download + this.view.btnOptions.menu.items[3].setDisabled(true); // download docx + this.view.btnOptions.menu.items[4].setDisabled(true); // download pdf + } + } }, errorDefaultMessage : 'Error code: %1', From 7a5d73624b06b67f91b23281c55cb53422a5b5fe Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Tue, 25 Jan 2022 11:38:18 +0300 Subject: [PATCH 076/217] [SSE] Fix Bug 54820 --- apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx b/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx index 6c6906937..18dd0518c 100644 --- a/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx @@ -44,6 +44,7 @@ const EditCell = props => { onFontSize: props.onFontSize, onFontClick: props.onFontClick }}/> + {!wsProps.FormatCells && <> @@ -127,8 +128,7 @@ const EditCell = props => { )})} ) : null} - } - + } ) }; From b70f1fc3ef12323e010c6971356943bb635d675d Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Tue, 25 Jan 2022 12:37:36 +0300 Subject: [PATCH 077/217] [SSE] Fix Bug 54969 --- apps/common/mobile/resources/less/common.less | 9 --------- apps/spreadsheeteditor/mobile/src/less/app.less | 14 +++++++++++--- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/apps/common/mobile/resources/less/common.less b/apps/common/mobile/resources/less/common.less index 435e7e547..2c413cf4e 100644 --- a/apps/common/mobile/resources/less/common.less +++ b/apps/common/mobile/resources/less/common.less @@ -909,15 +909,6 @@ input[type="number"]::-webkit-inner-spin-button { } } } - .function-info { - p { - color: @text-secondary; - } - h3 { - font-weight: 500; - color: @text-normal; - } - } } } } diff --git a/apps/spreadsheeteditor/mobile/src/less/app.less b/apps/spreadsheeteditor/mobile/src/less/app.less index 602a063e5..ce6c67388 100644 --- a/apps/spreadsheeteditor/mobile/src/less/app.less +++ b/apps/spreadsheeteditor/mobile/src/less/app.less @@ -54,13 +54,21 @@ //--f7-page-content-extra-padding-top: 37px; } -.function-info { - padding: 0 15px; -} .page-function-info { &.page-content, .page-content { background-color: @background-primary; } + + .function-info { + padding: 0 15px; + h3 { + color: @text-normal; + } + + p { + color: @text-secondary; + } + } } .username-tip.active { From cde9f19aecc39030c599d8d1575b32e00c6becc0 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 25 Jan 2022 15:03:42 +0300 Subject: [PATCH 078/217] Use callback in search function --- apps/documenteditor/main/app/controller/LeftMenu.js | 10 +++++----- apps/documenteditor/mobile/src/controller/Search.jsx | 9 ++++----- .../presentationeditor/main/app/controller/LeftMenu.js | 10 +++++----- .../mobile/src/controller/Search.jsx | 7 ++++--- apps/spreadsheeteditor/main/app/controller/LeftMenu.js | 10 +++++----- .../spreadsheeteditor/mobile/src/controller/Search.jsx | 6 +++--- 6 files changed, 26 insertions(+), 26 deletions(-) diff --git a/apps/documenteditor/main/app/controller/LeftMenu.js b/apps/documenteditor/main/app/controller/LeftMenu.js index 270215f25..9d95cd407 100644 --- a/apps/documenteditor/main/app/controller/LeftMenu.js +++ b/apps/documenteditor/main/app/controller/LeftMenu.js @@ -560,15 +560,15 @@ define([ onQuerySearch: function(d, w, opts) { if (opts.textsearch && opts.textsearch.length) { - if (!this.api.asc_findText(opts.textsearch, d != 'back', opts.matchcase, opts.matchword)) { - var me = this; - Common.UI.info({ - msg: this.textNoTextFound, + var me = this; + this.api.asc_findText(opts.textsearch, d != 'back', opts.matchcase, function(resultCount) { + !resultCount && Common.UI.info({ + msg: me.textNoTextFound, callback: function() { me.dlgSearch.focus(); } }); - } + }); } }, diff --git a/apps/documenteditor/mobile/src/controller/Search.jsx b/apps/documenteditor/mobile/src/controller/Search.jsx index c5f062726..dca750607 100644 --- a/apps/documenteditor/mobile/src/controller/Search.jsx +++ b/apps/documenteditor/mobile/src/controller/Search.jsx @@ -110,11 +110,10 @@ const Search = withTranslation()(props => { if (params.find && params.find.length) { if(params.highlight) api.asc_selectSearchingResults(true); - - if (!api.asc_findText(params.find, params.forward, params.caseSensitive, params.highlight) ) { - f7.dialog.alert(null, _t.textNoTextFound); - } - } + + api.asc_findText(params.find, params.forward, params.caseSensitive, function(resultCount) { + !resultCount && f7.dialog.alert(null, _t.textNoTextFound); + }); }; const onchangeSearchQuery = params => { diff --git a/apps/presentationeditor/main/app/controller/LeftMenu.js b/apps/presentationeditor/main/app/controller/LeftMenu.js index 3be667173..b71cd5294 100644 --- a/apps/presentationeditor/main/app/controller/LeftMenu.js +++ b/apps/presentationeditor/main/app/controller/LeftMenu.js @@ -438,15 +438,15 @@ define([ onQuerySearch: function(d, w, opts) { if (opts.textsearch && opts.textsearch.length) { - if (!this.api.findText(opts.textsearch, d != 'back', opts.matchcase)) { - var me = this; - Common.UI.info({ - msg: this.textNoTextFound, + var me = this; + this.api.asc_findText(opts.textsearch, d != 'back', opts.matchcase, function(resultCount) { + !resultCount && Common.UI.info({ + msg: me.textNoTextFound, callback: function() { me.dlgSearch.focus(); } }); - } + }); } }, diff --git a/apps/presentationeditor/mobile/src/controller/Search.jsx b/apps/presentationeditor/mobile/src/controller/Search.jsx index 23fd51cb1..d6dc11a94 100644 --- a/apps/presentationeditor/mobile/src/controller/Search.jsx +++ b/apps/presentationeditor/mobile/src/controller/Search.jsx @@ -88,9 +88,10 @@ const Search = withTranslation()(props => { f7.popover.close('.document-menu.modal-in', false); if (params.find && params.find.length) { - if (!api.findText(params.find, params.forward, params.caseSensitive) ) { - f7.dialog.alert(null, _t.textNoTextFound); - } + api.asc_findText(params.find, params.forward, params.caseSensitive, function(resultCount) { + !resultCount && f7.dialog.alert(null, _t.textNoTextFound); + }); + } }; diff --git a/apps/spreadsheeteditor/main/app/controller/LeftMenu.js b/apps/spreadsheeteditor/main/app/controller/LeftMenu.js index 40139a084..ebd80e5a2 100644 --- a/apps/spreadsheeteditor/main/app/controller/LeftMenu.js +++ b/apps/spreadsheeteditor/main/app/controller/LeftMenu.js @@ -566,15 +566,15 @@ define([ options.asc_setScanByRows(this.dlgSearch.menuSearch.menu.items[0].checked); options.asc_setLookIn(this.dlgSearch.menuLookin.menu.items[0].checked?Asc.c_oAscFindLookIn.Formulas:Asc.c_oAscFindLookIn.Value); - if (!this.api.asc_findText(options)) { - var me = this; - Common.UI.info({ - msg: this.textNoTextFound, + var me = this; + this.api.asc_findText(options, function(resultCount) { + !resultCount && Common.UI.info({ + msg: me.textNoTextFound, callback: function() { me.dlgSearch.focus(); } }); - } + }); // } }, diff --git a/apps/spreadsheeteditor/mobile/src/controller/Search.jsx b/apps/spreadsheeteditor/mobile/src/controller/Search.jsx index f67b8e065..c4d33a82c 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Search.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Search.jsx @@ -165,9 +165,9 @@ const Search = withTranslation()(props => { if (params.highlight) api.asc_selectSearchingResults(true); - if (!api.asc_findText(options)) { - f7.dialog.alert(null, _t.textNoTextFound); - } + api.asc_findText(options, function(resultCount) { + !resultCount && f7.dialog.alert(null, _t.textNoTextFound); + }); } }; From 9acf7e4d710dbcd72f8fb5da2182fd86abb7703c Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 25 Jan 2022 15:21:38 +0300 Subject: [PATCH 079/217] [DE mobile] Fix bug --- apps/documenteditor/mobile/src/controller/Search.jsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/apps/documenteditor/mobile/src/controller/Search.jsx b/apps/documenteditor/mobile/src/controller/Search.jsx index dca750607..b51fadee1 100644 --- a/apps/documenteditor/mobile/src/controller/Search.jsx +++ b/apps/documenteditor/mobile/src/controller/Search.jsx @@ -108,12 +108,13 @@ const Search = withTranslation()(props => { f7.popover.close('.document-menu.modal-in', false); if (params.find && params.find.length) { - - if(params.highlight) api.asc_selectSearchingResults(true); - api.asc_findText(params.find, params.forward, params.caseSensitive, function(resultCount) { + if (params.highlight) api.asc_selectSearchingResults(true); + + api.asc_findText(params.find, params.forward, params.caseSensitive, function (resultCount) { !resultCount && f7.dialog.alert(null, _t.textNoTextFound); }); + } }; const onchangeSearchQuery = params => { From 49e5d3ff6e4c260b7868c2ff480e7c535be9b2ec Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Tue, 25 Jan 2022 21:08:58 +0300 Subject: [PATCH 080/217] [SSE] Correct icon 'add' --- .../mobile/src/less/statusbar.less | 20 +++++++++++-------- .../mobile/src/view/Statusbar.jsx | 2 +- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/src/less/statusbar.less b/apps/spreadsheeteditor/mobile/src/less/statusbar.less index 2daf9242a..c2cebdd47 100644 --- a/apps/spreadsheeteditor/mobile/src/less/statusbar.less +++ b/apps/spreadsheeteditor/mobile/src/less/statusbar.less @@ -61,14 +61,18 @@ } } - i.icon { - width: 22px; - height: 22px; - &.icon-plus { - // @source: ''; - // .encoded-svg-mask(@source, @fontColor); - // background-image: none; - .encoded-svg-mask('') + .tab { + i.icon { + width: 18px; + height: 18px; + &.icon-plus.bold{ + + // @source: ''; + // .encoded-svg-mask(@source, @fontColor); + // background-image: none; + .encoded-svg-mask('') + } } } + } diff --git a/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx b/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx index bc1ccf646..6c09899e9 100644 --- a/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx @@ -73,7 +73,7 @@ const StatusbarView = inject('storeAppOptions', 'sheets', 'users')(observer(prop {isEdit &&
- +
} From 3cb046e3430dc1910d92e058ae9fecf3fe3407a7 Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Thu, 27 Jan 2022 16:44:29 +0300 Subject: [PATCH 081/217] [SSE] Fix Bug 54924 --- .../mobile/src/controller/ContextMenu.jsx | 37 ++++++++----------- .../mobile/src/store/appOptions.js | 2 +- 2 files changed, 16 insertions(+), 23 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx b/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx index c347f4353..f57aebe28 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx @@ -214,7 +214,7 @@ class ContextMenu extends ContextMenuController { if (isEdit && EditorUIController.ContextMenu) { return EditorUIController.ContextMenu.mapMenuItems(this); } else { - const {canViewComments, canCoAuthoring, canComments } = this.props; + const {canViewComments} = this.props; const api = Common.EditorApi.get(); const cellinfo = api.asc_getCellInfo(); @@ -238,32 +238,25 @@ class ContextMenu extends ContextMenuController { case Asc.c_oAscSelectionType.RangeShapeText: istextshapemenu = true; break; } - itemsIcon.push({ - event: 'copy', - icon: 'icon-copy' - }); - - if (iscellmenu && cellinfo.asc_getHyperlink()) { - itemsText.push({ - caption: _t.menuOpenLink, - event: 'openlink' + itemsIcon.push({ + event: 'copy', + icon: 'icon-copy' }); - } - if(!isDisconnected) { - if (canViewComments && hasComments && hasComments.length>0) { - itemsText.push({ - caption: _t.menuViewComment, - event: 'viewcomment' - }); - } - if (iscellmenu && !api.isCellEdited && canCoAuthoring && canComments && hasComments && hasComments.length<1) { + if (iscellmenu && cellinfo.asc_getHyperlink()) { itemsText.push({ - caption: _t.menuAddComment, - event: 'addcomment' + caption: _t.menuOpenLink, + event: 'openlink' }); } - } + if(!isDisconnected) { + if (canViewComments && hasComments && hasComments.length>0) { + itemsText.push({ + caption: _t.menuViewComment, + event: 'viewcomment' + }); + } + } return itemsIcon.concat(itemsText); } diff --git a/apps/spreadsheeteditor/mobile/src/store/appOptions.js b/apps/spreadsheeteditor/mobile/src/store/appOptions.js index d21a85617..7f8078ef7 100644 --- a/apps/spreadsheeteditor/mobile/src/store/appOptions.js +++ b/apps/spreadsheeteditor/mobile/src/store/appOptions.js @@ -90,7 +90,7 @@ export class storeAppOptions { this.canEdit = permissions.edit !== false && // can edit or review (this.config.canRequestEditRights || this.config.mode !== 'view') && isSupportEditFeature; // if mode=="view" -> canRequestEditRights must be defined // (!this.isReviewOnly || this.canLicense) && // if isReviewOnly==true -> canLicense must be true - this.isEdit = (this.canLicense || this.isEditDiagram || this.isEditMailMerge) && permissions.edit !== false && this.config.mode !== 'view' && true; + this.isEdit = (this.canLicense || this.isEditDiagram || this.isEditMailMerge) && permissions.edit !== false && this.config.mode !== 'view' && isSupportEditFeature && true; this.canComments = this.canLicense && (permissions.comment === undefined ? this.isEdit : permissions.comment) && (this.config.mode !== 'view'); this.canComments = this.canComments && !((typeof (this.customization) == 'object') && this.customization.comments===false); this.canViewComments = this.canComments || !((typeof (this.customization) == 'object') && this.customization.comments===false); From fc1267c4ddb7fcca6de92d77c9e877d221062716 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Thu, 27 Jan 2022 17:43:02 +0400 Subject: [PATCH 082/217] [PE SSE mobile] Fix Bug 55043 --- .../mobile/src/view/settings/Settings.jsx | 6 +-- .../mobile/src/view/settings/Settings.jsx | 52 ++++++++++++++---- .../mobile/src/store/appOptions.js | 6 ++- .../mobile/src/view/settings/Settings.jsx | 54 +++++++++++++++---- 4 files changed, 94 insertions(+), 24 deletions(-) diff --git a/apps/documenteditor/mobile/src/view/settings/Settings.jsx b/apps/documenteditor/mobile/src/view/settings/Settings.jsx index 5802f473e..ea0bafd9e 100644 --- a/apps/documenteditor/mobile/src/view/settings/Settings.jsx +++ b/apps/documenteditor/mobile/src/view/settings/Settings.jsx @@ -152,9 +152,9 @@ const SettingsList = inject("storeAppOptions", "storeReview")(observer(props => } {_canDownloadOrigin && - - - + + + } {_canPrint && diff --git a/apps/presentationeditor/mobile/src/view/settings/Settings.jsx b/apps/presentationeditor/mobile/src/view/settings/Settings.jsx index c82a192ec..afc2f4402 100644 --- a/apps/presentationeditor/mobile/src/view/settings/Settings.jsx +++ b/apps/presentationeditor/mobile/src/view/settings/Settings.jsx @@ -112,11 +112,36 @@ const SettingsList = inject("storeAppOptions", "storeToolbarSettings")(observer( }; const appOptions = props.storeAppOptions; - let _isEdit = false; + let _isEdit = false, + _canDownload = false, + _canDownloadOrigin = false, + _canAbout = true, + _canHelp = true, + _canPrint = false; - if (!appOptions.isDisconnected) { + if (appOptions.isDisconnected) { + _isEdit = false; + if (!appOptions.enableDownload) + _canPrint = _canDownload = _canDownloadOrigin = false; + } else { _isEdit = appOptions.isEdit; - } + _canDownload = appOptions.canDownload; + _canDownloadOrigin = appOptions.canDownloadOrigin; + _canPrint = appOptions.canPrint; + if (appOptions.customization && appOptions.canBrandingExt) { + _canAbout = (appOptions.customization.about!==false); + } + if (appOptions.customization) { + _canHelp = (appOptions.customization.help!==false); + } + } + + const onDownloadOrigin = () => { + closeModal(); + setTimeout(() => { + Common.EditorApi.get().asc_DownloadOrigin(); + }, 0); + }; return ( @@ -141,12 +166,21 @@ const SettingsList = inject("storeAppOptions", "storeToolbarSettings")(observer( - - - - - - + {_canDownload && + + + + } + {_canDownloadOrigin && + + + + } + {_canPrint && + + + + } diff --git a/apps/spreadsheeteditor/mobile/src/store/appOptions.js b/apps/spreadsheeteditor/mobile/src/store/appOptions.js index d21a85617..16434e8da 100644 --- a/apps/spreadsheeteditor/mobile/src/store/appOptions.js +++ b/apps/spreadsheeteditor/mobile/src/store/appOptions.js @@ -100,8 +100,10 @@ export class storeAppOptions { this.canPrint = (permissions.print !== false); this.isRestrictedEdit = !this.isEdit && this.canComments; this.trialMode = params.asc_getLicenseMode(); - this.canDownloadOrigin = permissions.download !== false; - this.canDownload = permissions.download !== false; + + const type = /^(?:(pdf|djvu|xps|oxps))$/.exec(document.fileType); + this.canDownloadOrigin = permissions.download !== false && (type && typeof type[1] === 'string'); + this.canDownload = permissions.download !== false && (!type || typeof type[1] !== 'string'); this.canUseReviewPermissions = this.canLicense && (!!permissions.reviewGroups || this.customization && this.customization.reviewPermissions && (typeof (this.customization.reviewPermissions) == 'object')); this.canUseCommentPermissions = this.canLicense && !!permissions.commentGroups; diff --git a/apps/spreadsheeteditor/mobile/src/view/settings/Settings.jsx b/apps/spreadsheeteditor/mobile/src/view/settings/Settings.jsx index c3098cedb..eb8f1929d 100644 --- a/apps/spreadsheeteditor/mobile/src/view/settings/Settings.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/settings/Settings.jsx @@ -117,11 +117,36 @@ const SettingsList = inject("storeAppOptions")(observer(props => { }; const appOptions = props.storeAppOptions; - let _isEdit = false; - - if (!appOptions.isDisconnected) { + let _isEdit = false, + _canDownload = false, + _canDownloadOrigin = false, + _canAbout = true, + _canHelp = true, + _canPrint = false; + + if (appOptions.isDisconnected) { + _isEdit = false; + if (!appOptions.enableDownload) + _canPrint = _canDownload = _canDownloadOrigin = false; + } else { _isEdit = appOptions.isEdit; - } + _canDownload = appOptions.canDownload; + _canDownloadOrigin = appOptions.canDownloadOrigin; + _canPrint = appOptions.canPrint; + if (appOptions.customization && appOptions.canBrandingExt) { + _canAbout = (appOptions.customization.about!==false); + } + if (appOptions.customization) { + _canHelp = (appOptions.customization.help!==false); + } + } + + const onDownloadOrigin = () => { + closeModal(); + setTimeout(() => { + Common.EditorApi.get().asc_DownloadOrigin(); + }, 0); + }; return ( @@ -146,12 +171,21 @@ const SettingsList = inject("storeAppOptions")(observer(props => { - - - - - - + {_canDownload && + + + + } + {_canDownloadOrigin && + + + + } + {_canPrint && + + + + } From ab17a7161a6837d358b6a44ea39c28150fa9a4a4 Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Thu, 27 Jan 2022 17:17:09 +0300 Subject: [PATCH 083/217] [DE] Fix Bug 55111 --- apps/common/mobile/resources/less/common-material.less | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/common/mobile/resources/less/common-material.less b/apps/common/mobile/resources/less/common-material.less index da9496959..05ec85112 100644 --- a/apps/common/mobile/resources/less/common-material.less +++ b/apps/common/mobile/resources/less/common-material.less @@ -29,6 +29,8 @@ --f7-range-knob-color: @brandColor; --f7-range-knob-size: 16px; + --f7-list-item-after-text-color: @text-normal; + --f7-link-highlight-color: transparent; --f7-link-touch-ripple-color: @touchColor; From c043d0c858e273d64b7812fe04edef39cc63972b Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Fri, 28 Jan 2022 11:32:57 +0300 Subject: [PATCH 084/217] [mobile] fix bug 55103 --- apps/common/mobile/utils/htmlutils.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/apps/common/mobile/utils/htmlutils.js b/apps/common/mobile/utils/htmlutils.js index 377c4c755..dd3f690b4 100644 --- a/apps/common/mobile/utils/htmlutils.js +++ b/apps/common/mobile/utils/htmlutils.js @@ -1,10 +1,9 @@ let obj = !localStorage ? {id: 'theme-light', type: 'light'} : JSON.parse(localStorage.getItem("ui-theme")); if ( !obj ) { - if ( window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches ) { - obj = {id: 'theme-dark', type: 'dark'}; - localStorage && localStorage.setItem("ui-theme", JSON.stringify(obj)); - } + obj = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches ? + {id: 'theme-dark', type: 'dark'} : {id: 'theme-light', type: 'light'}; + localStorage && localStorage.setItem("ui-theme", JSON.stringify(obj)); } document.body.classList.add(`theme-type-${obj.type}`); From a402d2efdc4a6318569460fe2451184e88b87ba1 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Sat, 29 Jan 2022 22:04:56 +0300 Subject: [PATCH 085/217] [mobile] changed loading status order --- .../mobile/src/controller/LongActions.jsx | 48 ++++++++++--------- .../mobile/src/controller/LongActions.jsx | 43 +++++++++-------- .../mobile/src/controller/LongActions.jsx | 47 +++++++++--------- 3 files changed, 74 insertions(+), 64 deletions(-) diff --git a/apps/documenteditor/mobile/src/controller/LongActions.jsx b/apps/documenteditor/mobile/src/controller/LongActions.jsx index 28343acc5..de95424c1 100644 --- a/apps/documenteditor/mobile/src/controller/LongActions.jsx +++ b/apps/documenteditor/mobile/src/controller/LongActions.jsx @@ -1,9 +1,10 @@ import React, { useEffect } from 'react'; import { f7 } from 'framework7-react'; +import { inject } from 'mobx-react'; import { useTranslation } from 'react-i18next'; import IrregularStack from "../../../../common/mobile/utils/IrregularStack"; -const LongActionsController = () => { +const LongActionsController = inject('storeAppOptions')(({storeAppOptions}) => { const {t} = useTranslation(); const _t = t("LongActions", { returnObjects: true }); @@ -74,96 +75,99 @@ const LongActionsController = () => { const setLongActionView = (action) => { let title = ''; - let text = ''; + // let text = ''; + switch (action.id) { case Asc.c_oAscAsyncAction['Open']: - title = _t.openTitleText; - text = _t.openTextText; + // title = _t.openTitleText; + // text = _t.openTextText; + title = _t.textLoadingDocument; break; case Asc.c_oAscAsyncAction['Save']: title = _t.saveTitleText; - text = _t.saveTextText; + // text = _t.saveTextText; break; case Asc.c_oAscAsyncAction['LoadDocumentFonts']: + if ( !storeAppOptions.isDocReady ) return; title = _t.loadFontsTitleText; - text = _t.loadFontsTextText; + // text = _t.loadFontsTextText; break; case Asc.c_oAscAsyncAction['LoadDocumentImages']: title = _t.loadImagesTitleText; - text = _t.loadImagesTextText; + // text = _t.loadImagesTextText; break; case Asc.c_oAscAsyncAction['LoadFont']: title = _t.loadFontTitleText; - text = _t.loadFontTextText; + // text = _t.loadFontTextText; break; case Asc.c_oAscAsyncAction['LoadImage']: title = _t.loadImageTitleText; - text = _t.loadImageTextText; + // text = _t.loadImageTextText; break; case Asc.c_oAscAsyncAction['DownloadAs']: title = _t.downloadTitleText; - text = _t.downloadTextText; + // text = _t.downloadTextText; break; case Asc.c_oAscAsyncAction['Print']: title = _t.printTitleText; - text = _t.printTextText; + // text = _t.printTextText; break; case Asc.c_oAscAsyncAction['UploadImage']: title = _t.uploadImageTitleText; - text = _t.uploadImageTextText; + // text = _t.uploadImageTextText; break; case Asc.c_oAscAsyncAction['ApplyChanges']: title = _t.applyChangesTitleText; - text = _t.applyChangesTextText; + // text = _t.applyChangesTextText; break; case Asc.c_oAscAsyncAction['PrepareToSave']: title = _t.savePreparingText; - text = _t.savePreparingTitle; + // text = _t.savePreparingTitle; break; case Asc.c_oAscAsyncAction['MailMergeLoadFile']: title = _t.mailMergeLoadFileText; - text = _t.mailMergeLoadFileTitle; + // text = _t.mailMergeLoadFileTitle; break; case Asc.c_oAscAsyncAction['DownloadMerge']: title = _t.downloadMergeTitle; - text = _t.downloadMergeText; + // text = _t.downloadMergeText; break; case Asc.c_oAscAsyncAction['SendMailMerge']: title = _t.sendMergeTitle; - text = _t.sendMergeText; + // text = _t.sendMergeText; break; case Asc.c_oAscAsyncAction['Waiting']: title = _t.waitText; - text = _t.waitText; + // text = _t.waitText; break; case ApplyEditRights: title = _t.txtEditingMode; - text = _t.txtEditingMode; + // text = _t.txtEditingMode; break; case LoadingDocument: title = _t.loadingDocumentTitleText; - text = _t.loadingDocumentTextText; + // text = _t.loadingDocumentTextText; break; default: if (typeof action.id == 'string'){ title = action.id; - text = action.id; + // text = action.id; } break; } @@ -194,6 +198,6 @@ const LongActionsController = () => { } return null; -}; +}); export default LongActionsController; \ No newline at end of file diff --git a/apps/presentationeditor/mobile/src/controller/LongActions.jsx b/apps/presentationeditor/mobile/src/controller/LongActions.jsx index 378f11865..61614d9a5 100644 --- a/apps/presentationeditor/mobile/src/controller/LongActions.jsx +++ b/apps/presentationeditor/mobile/src/controller/LongActions.jsx @@ -1,9 +1,10 @@ import React, { useEffect } from 'react'; import { f7 } from 'framework7-react'; +import { inject } from 'mobx-react'; import { useTranslation } from 'react-i18next'; import IrregularStack from "../../../../common/mobile/utils/IrregularStack"; -const LongActionsController = () => { +const LongActionsController = inject('storeAppOptions')(({storeAppOptions}) => { const {t} = useTranslation(); const _t = t("LongActions", {returnObjects: true}); @@ -74,86 +75,88 @@ const LongActionsController = () => { const setLongActionView = (action) => { let title = ''; - let text = ''; + // let text = ''; switch (action.id) { case Asc.c_oAscAsyncAction['Open']: - title = _t.openTitleText; - text = _t.openTextText; + title = _t.textLoadingDocument; + // title = _t.openTitleText; + // text = _t.openTextText; break; case Asc.c_oAscAsyncAction['Save']: title = _t.saveTitleText; - text = _t.saveTextText; + // text = _t.saveTextText; break; case Asc.c_oAscAsyncAction['LoadDocumentFonts']: + if ( !storeAppOptions.isDocReady ) return; title = _t.loadFontsTitleText; - text = _t.loadFontsTextText; + // text = _t.loadFontsTextText; break; case Asc.c_oAscAsyncAction['LoadDocumentImages']: title = _t.loadImagesTitleText; - text = _t.loadImagesTextText; + // text = _t.loadImagesTextText; break; case Asc.c_oAscAsyncAction['LoadFont']: title = _t.loadFontTitleText; - text = _t.loadFontTextText; + // text = _t.loadFontTextText; break; case Asc.c_oAscAsyncAction['LoadImage']: title = _t.loadImageTitleText; - text = _t.loadImageTextText; + // text = _t.loadImageTextText; break; case Asc.c_oAscAsyncAction['DownloadAs']: title = _t.downloadTitleText; - text = _t.downloadTextText; + // text = _t.downloadTextText; break; case Asc.c_oAscAsyncAction['Print']: title = _t.printTitleText; - text = _t.printTextText; + // text = _t.printTextText; break; case Asc.c_oAscAsyncAction['UploadImage']: title = _t.uploadImageTitleText; - text = _t.uploadImageTextText; + // text = _t.uploadImageTextText; break; case Asc.c_oAscAsyncAction['LoadTheme']: title = _t.loadThemeTitleText; - text = _t.loadThemeTextText; + // text = _t.loadThemeTextText; break; case Asc.c_oAscAsyncAction['ApplyChanges']: title = _t.applyChangesTitleText; - text = _t.applyChangesTextText; + // text = _t.applyChangesTextText; break; case Asc.c_oAscAsyncAction['PrepareToSave']: title = _t.savePreparingText; - text = _t.savePreparingTitle; + // text = _t.savePreparingTitle; break; case Asc.c_oAscAsyncAction['Waiting']: title = _t.waitText; - text = _t.waitText; + // text = _t.waitText; break; case ApplyEditRights: title = _t.txtEditingMode; - text = _t.txtEditingMode; + // text = _t.txtEditingMode; break; case LoadingDocument: title = _t.loadingDocumentTitleText; - text = _t.loadingDocumentTextText; + // text = _t.loadingDocumentTextText; break; default: if (typeof action.id == 'string'){ title = action.id; - text = action.id; + // text = action.id; } break; } @@ -183,6 +186,6 @@ const LongActionsController = () => { }; return null; -}; +}); export default LongActionsController; \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/src/controller/LongActions.jsx b/apps/spreadsheeteditor/mobile/src/controller/LongActions.jsx index 27a81cd59..fb7e66519 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/LongActions.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/LongActions.jsx @@ -1,10 +1,11 @@ import React, { useEffect } from 'react'; import { f7 } from 'framework7-react'; +import { inject } from 'mobx-react'; import { useTranslation } from 'react-i18next'; import IrregularStack from "../../../../common/mobile/utils/IrregularStack"; import { Device } from '../../../../common/mobile/utils/device'; -const LongActionsController = () => { +const LongActionsController = inject('storeAppOptions')(({storeAppOptions}) => { const {t} = useTranslation(); const _t = t("LongActions", { returnObjects: true }); @@ -77,96 +78,98 @@ const LongActionsController = () => { const setLongActionView = (action) => { let title = ''; - let text = ''; + // let text = ''; switch (action.id) { case Asc.c_oAscAsyncAction['Open']: - title = _t.openTitleText; - text = _t.openTextText; + title = _t.textLoadingDocument; + // title = _t.openTitleText; + // text = _t.openTextText; break; case Asc.c_oAscAsyncAction['Save']: title = _t.saveTitleText; - text = _t.saveTextText; + // text = _t.saveTextText; break; case Asc.c_oAscAsyncAction['LoadDocumentFonts']: + if ( !storeAppOptions.isDocReady ) return; title = _t.loadFontsTitleText; - text = _t.loadFontsTextText; + // text = _t.loadFontsTextText; break; case Asc.c_oAscAsyncAction['LoadDocumentImages']: title = _t.loadImagesTitleText; - text = _t.loadImagesTextText; + // text = _t.loadImagesTextText; break; case Asc.c_oAscAsyncAction['LoadFont']: title = _t.loadFontTitleText; - text = _t.loadFontTextText; + // text = _t.loadFontTextText; break; case Asc.c_oAscAsyncAction['LoadImage']: title = _t.loadImageTitleText; - text = _t.loadImageTextText; + // text = _t.loadImageTextText; break; case Asc.c_oAscAsyncAction['DownloadAs']: title = _t.downloadTitleText; - text = _t.downloadTextText; + // text = _t.downloadTextText; break; case Asc.c_oAscAsyncAction['Print']: title = _t.printTitleText; - text = _t.printTextText; + // text = _t.printTextText; break; case Asc.c_oAscAsyncAction['UploadImage']: title = _t.uploadImageTitleText; - text = _t.uploadImageTextText; + // text = _t.uploadImageTextText; break; case Asc.c_oAscAsyncAction['ApplyChanges']: title = _t.applyChangesTitleText; - text = _t.applyChangesTextText; + // text = _t.applyChangesTextText; break; case Asc.c_oAscAsyncAction['PrepareToSave']: title = _t.savePreparingText; - text = _t.savePreparingTitle; + // text = _t.savePreparingTitle; break; case Asc.c_oAscAsyncAction['MailMergeLoadFile']: title = _t.mailMergeLoadFileText; - text = _t.mailMergeLoadFileTitle; + // text = _t.mailMergeLoadFileTitle; break; case Asc.c_oAscAsyncAction['DownloadMerge']: title = _t.downloadMergeTitle; - text = _t.downloadMergeText; + // text = _t.downloadMergeText; break; case Asc.c_oAscAsyncAction['SendMailMerge']: title = _t.sendMergeTitle; - text = _t.sendMergeText; + // text = _t.sendMergeText; break; case Asc.c_oAscAsyncAction['Waiting']: title = _t.waitText; - text = _t.waitText; + // text = _t.waitText; break; case ApplyEditRights: title = _t.txtEditingMode; - text = _t.txtEditingMode; + // text = _t.txtEditingMode; break; case LoadingDocument: title = _t.loadingDocumentTitleText; - text = _t.loadingDocumentTextText; + // text = _t.loadingDocumentTextText; break; default: if (typeof action.id == 'string'){ title = action.id; - text = action.id; + // text = action.id; } break; } @@ -250,6 +253,6 @@ const LongActionsController = () => { }; return null; -}; +}); export default LongActionsController; \ No newline at end of file From de614733c423f42b584957f1750b8d8a66b86077 Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Mon, 31 Jan 2022 11:30:04 +0300 Subject: [PATCH 086/217] [SSE] Fix Bug 55113 --- apps/spreadsheeteditor/mobile/src/less/celleditor.less | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/spreadsheeteditor/mobile/src/less/celleditor.less b/apps/spreadsheeteditor/mobile/src/less/celleditor.less index f59c51d7d..629d01609 100644 --- a/apps/spreadsheeteditor/mobile/src/less/celleditor.less +++ b/apps/spreadsheeteditor/mobile/src/less/celleditor.less @@ -61,6 +61,8 @@ //font-size: 17px; text-align: center; + color: @text-normal; + &[disabled] { color: @gray-darker; opacity: 0.5; From cf2f8820b98afd8c094ba9c7811c560bb62d8cb2 Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Mon, 31 Jan 2022 15:26:01 +0300 Subject: [PATCH 087/217] [SSE] Fix Bug 55134, 55186 --- .../src/view/settings/ApplicationSettings.jsx | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/apps/documenteditor/mobile/src/view/settings/ApplicationSettings.jsx b/apps/documenteditor/mobile/src/view/settings/ApplicationSettings.jsx index a9500b69c..f09d4eb2f 100644 --- a/apps/documenteditor/mobile/src/view/settings/ApplicationSettings.jsx +++ b/apps/documenteditor/mobile/src/view/settings/ApplicationSettings.jsx @@ -50,11 +50,6 @@ const PageApplicationSettings = props => { }} /> - - {Themes.switchDarkTheme(!toggle), setIsThemeDark(!toggle)}}> - - {/*ToDo: if (DisplayMode == "final" || DisplayMode == "original") {disabled} */} @@ -95,6 +90,15 @@ const PageApplicationSettings = props => { /> + + + + {Themes.switchDarkTheme(!toggle), setIsThemeDark(!toggle)}}> + + + + {_isShowMacros && Date: Mon, 31 Jan 2022 16:11:43 +0300 Subject: [PATCH 088/217] Update translation --- apps/documenteditor/embed/locale/be.json | 12 + apps/documenteditor/embed/locale/ca.json | 30 +- apps/documenteditor/embed/locale/uk.json | 30 +- apps/documenteditor/forms/locale/be.json | 116 +++ apps/documenteditor/forms/locale/es.json | 5 + apps/documenteditor/forms/locale/fr.json | 5 + apps/documenteditor/forms/locale/it.json | 5 + apps/documenteditor/forms/locale/ja.json | 4 +- apps/documenteditor/forms/locale/ro.json | 5 + apps/documenteditor/forms/locale/tr.json | 11 +- apps/documenteditor/forms/locale/zh.json | 5 + apps/documenteditor/main/locale/be.json | 59 +- apps/documenteditor/main/locale/ca.json | 8 +- apps/documenteditor/main/locale/el.json | 80 +- apps/documenteditor/main/locale/es.json | 94 +- apps/documenteditor/main/locale/fr.json | 78 +- apps/documenteditor/main/locale/it.json | 12 +- apps/documenteditor/main/locale/ja.json | 65 +- apps/documenteditor/main/locale/ro.json | 92 +- apps/documenteditor/main/locale/ru.json | 1 + apps/documenteditor/main/locale/tr.json | 202 ++--- apps/documenteditor/main/locale/uk.json | 57 +- apps/documenteditor/main/locale/zh.json | 80 +- apps/presentationeditor/embed/locale/be.json | 6 + apps/presentationeditor/embed/locale/ca.json | 18 +- apps/presentationeditor/embed/locale/uk.json | 8 + apps/presentationeditor/main/locale/be.json | 85 +- apps/presentationeditor/main/locale/ca.json | 90 +- apps/presentationeditor/main/locale/es.json | 251 +++++- apps/presentationeditor/main/locale/fr.json | 241 +++++- apps/presentationeditor/main/locale/it.json | 22 +- apps/presentationeditor/main/locale/ja.json | 16 +- apps/presentationeditor/main/locale/ro.json | 251 +++++- apps/presentationeditor/main/locale/ru.json | 123 ++- apps/presentationeditor/main/locale/tr.json | 202 +++-- apps/presentationeditor/main/locale/uk.json | 78 +- apps/presentationeditor/main/locale/zh.json | 255 +++++- apps/spreadsheeteditor/embed/locale/be.json | 4 + apps/spreadsheeteditor/embed/locale/ca.json | 22 +- apps/spreadsheeteditor/embed/locale/uk.json | 8 + apps/spreadsheeteditor/main/locale/be.json | 166 +++- apps/spreadsheeteditor/main/locale/ca.json | 69 +- apps/spreadsheeteditor/main/locale/es.json | 86 +- apps/spreadsheeteditor/main/locale/fr.json | 78 ++ apps/spreadsheeteditor/main/locale/ja.json | 7 +- apps/spreadsheeteditor/main/locale/ro.json | 84 +- apps/spreadsheeteditor/main/locale/tr.json | 168 ++-- apps/spreadsheeteditor/main/locale/uk.json | 854 ++++++++++++++++++- apps/spreadsheeteditor/main/locale/zh.json | 82 +- 49 files changed, 3802 insertions(+), 528 deletions(-) diff --git a/apps/documenteditor/embed/locale/be.json b/apps/documenteditor/embed/locale/be.json index f633f1902..bbf138fda 100644 --- a/apps/documenteditor/embed/locale/be.json +++ b/apps/documenteditor/embed/locale/be.json @@ -11,21 +11,33 @@ "DE.ApplicationController.downloadTextText": "Спампоўванне дакумента...", "DE.ApplicationController.errorAccessDeny": "Вы спрабуеце выканаць дзеянне, на якое не маеце правоў.
Калі ласка, звярніцеся да адміністратара сервера дакументаў.", "DE.ApplicationController.errorDefaultMessage": "Код памылкі: %1", + "DE.ApplicationController.errorEditingDownloadas": "Падчас працы з дакументам адбылася памылка.
Выкарыстайце параметр \"Спампаваць як…\", каб захаваць рэзервовую копію файла на цвёрды дыск камп’ютара.", "DE.ApplicationController.errorFilePassProtect": "Файл абаронены паролем, яго немагчыма адкрыць.", "DE.ApplicationController.errorFileSizeExceed": "Памер файла перавышае ліміт, вызначаны для вашага сервера.
Звярніцеся да адміністратара сервера дакументаў за дадатковымі звесткамі.", + "DE.ApplicationController.errorForceSave": "Падчас захавання файла адбылася памылка. Калі ласка, выкарыстайце параметр \"Спампаваць як\", каб захаваць файл на цвёрдым дыску камп’ютара, альбо паспрабуйце яшчэ раз пазней.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Злучэнне з інтэрнэтам было адноўлена, і версія файла змянілася.
Перш чым працягнуць працу, неабходна спампаваць файл альбо скапіяваць яго змесціва, каб захаваць даныя, а пасля перазагрузіць старонку.", "DE.ApplicationController.errorUserDrop": "На дадзены момант файл недаступны.", "DE.ApplicationController.notcriticalErrorTitle": "Увага", + "DE.ApplicationController.openErrorText": "Падчас адкрыцця файла адбылася памылка.", "DE.ApplicationController.scriptLoadError": "Занадта павольнае злучэнне, не ўсе кампаненты атрымалася загрузіць. Калі ласка, абнавіце старонку.", + "DE.ApplicationController.textAnonymous": "Ананімны карыстальнік", + "DE.ApplicationController.textClear": "Ачысціць усе палі", + "DE.ApplicationController.textGuest": "Госць", "DE.ApplicationController.textLoadingDocument": "Загрузка дакумента", "DE.ApplicationController.textOf": "з", + "DE.ApplicationController.textRequired": "Запоўніце ўсе абавязковыя палі, патрэбныя для адпраўлення формы. ", + "DE.ApplicationController.textSubmited": "Форма паспяхова адпраўленая
Пстрыкніце, каб закрыць падказку", "DE.ApplicationController.txtClose": "Закрыць", "DE.ApplicationController.txtEmpty": "(Пуста)", + "DE.ApplicationController.txtPressLink": "Націсніце CTRL і пстрыкніце па спасылцы", "DE.ApplicationController.unknownErrorText": "Невядомая памылка.", "DE.ApplicationController.unsupportedBrowserErrorText": "Ваш браўзер не падтрымліваецца.", "DE.ApplicationController.waitText": "Калі ласка, пачакайце...", "DE.ApplicationView.txtDownload": "Спампаваць", + "DE.ApplicationView.txtDownloadDocx": "Спампаваць як docx", + "DE.ApplicationView.txtDownloadPdf": "Спампаваць як PDF", "DE.ApplicationView.txtEmbed": "Убудаваць", + "DE.ApplicationView.txtFileLocation": "Перайсці да дакументаў", "DE.ApplicationView.txtFullScreen": "Поўнаэкранны рэжым", "DE.ApplicationView.txtPrint": "Друк", "DE.ApplicationView.txtShare": "Падзяліцца" diff --git a/apps/documenteditor/embed/locale/ca.json b/apps/documenteditor/embed/locale/ca.json index b19dd1fd5..032de7987 100644 --- a/apps/documenteditor/embed/locale/ca.json +++ b/apps/documenteditor/embed/locale/ca.json @@ -4,35 +4,35 @@ "common.view.modals.txtHeight": "Alçada", "common.view.modals.txtShare": "Comparteix l'enllaç", "common.view.modals.txtWidth": "Amplada", - "DE.ApplicationController.convertationErrorText": "No s'ha pogut convertir", + "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.downloadErrorText": "La baixada ha fallat.", "DE.ApplicationController.downloadTextText": "S'està baixant el document...", - "DE.ApplicationController.errorAccessDeny": "No teniu permisos per realitzar aquesta acció.
Contacteu amb l'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-ho com a ...\" per desar la còpia de seguretat del fitxer al disc dur de l'ordinador.", + "DE.ApplicationController.errorAccessDeny": "No teniu permisos per realitzar aquesta acció.
Contacteu amb l'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ó «Anomena i baixa...» per desar la còpia de seguretat del fitxer al disc dur de l'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 servidor. Contacteu amb l'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.errorLoadingFont": "No s'han carregat els tipus de lletra.
Contacteu amb l'administrador del servidor de documents.", + "DE.ApplicationController.errorFileSizeExceed": "La mida del fitxer supera el límit establert per al servidor.
Contacteu amb l'administrador del servidor de documents per a obtenir més informació.", + "DE.ApplicationController.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitzeu l'opció «Anomena i baixa» per desar el fitxer al disc dur de l’ordinador o torneu-ho a provar més endavant.", + "DE.ApplicationController.errorLoadingFont": "No s'han carregat les famílies tipogràfiques.
Contacteu amb l'administrador del servidor de documents.", "DE.ApplicationController.errorSubmit": "No s'ha pogut enviar.", - "DE.ApplicationController.errorTokenExpire": "El testimoni de seguretat del document ha caducat.
Contacteu amb l'administrador del servidor de documents.", - "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 la pàgina.", + "DE.ApplicationController.errorTokenExpire": "El testimoni de seguretat del document ha caducat.
Contacteu amb l'administrador del servidor de documents.", + "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 a assegurar-vos que no es perdi res i, després, torneu a carregar la pàgina.", "DE.ApplicationController.errorUserDrop": "No es pot accedir al fitxer.", "DE.ApplicationController.notcriticalErrorTitle": "Advertiment", "DE.ApplicationController.openErrorText": "S'ha produït un error en obrir el fitxer.", - "DE.ApplicationController.scriptLoadError": "La connexió és massa lenta, alguns dels components no s’han pogut carregar. Torneu a carregar la pàgina.", + "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": "Esborra tots els camps", - "DE.ApplicationController.textGotIt": "Ho tinc", + "DE.ApplicationController.textGotIt": "Entesos", "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": "Empleneu tots els camps necessaris per enviar el formulari.", "DE.ApplicationController.textSubmit": "Envia", - "DE.ApplicationController.textSubmited": "El formulari s'ha enviat amb èxit
Feu clic per tancar el consell", + "DE.ApplicationController.textSubmited": "El formulari s'ha enviat amb èxit
Feu clic per a tancar el consell", "DE.ApplicationController.txtClose": "Tanca", "DE.ApplicationController.txtEmpty": "(Buit)", "DE.ApplicationController.txtPressLink": "Premeu CTRL i feu clic a l'enllaç", @@ -41,10 +41,10 @@ "DE.ApplicationController.waitText": "Espereu...", "DE.ApplicationView.txtDownload": "Baixa", "DE.ApplicationView.txtDownloadDocx": "Baixa-ho com a .docx", - "DE.ApplicationView.txtDownloadPdf": "Baixa-ho com a pdf", + "DE.ApplicationView.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.txtFullScreen": "Pantalla completa", "DE.ApplicationView.txtPrint": "Imprimeix", "DE.ApplicationView.txtShare": "Comparteix" } \ No newline at end of file diff --git a/apps/documenteditor/embed/locale/uk.json b/apps/documenteditor/embed/locale/uk.json index 9970b4f0c..1059fa8d8 100644 --- a/apps/documenteditor/embed/locale/uk.json +++ b/apps/documenteditor/embed/locale/uk.json @@ -1,30 +1,50 @@ { "common.view.modals.txtCopy": "Копіювати в буфер обміну", - "common.view.modals.txtEmbed": "Вставити", + "common.view.modals.txtEmbed": "Вбудувати", "common.view.modals.txtHeight": "Висота", "common.view.modals.txtShare": "Поділитися посиланням", "common.view.modals.txtWidth": "Ширина", - "DE.ApplicationController.convertationErrorText": "Не вдалося поспілкуватися.", - "DE.ApplicationController.convertationTimeoutText": "Термін переходу перевищено.", + "DE.ApplicationController.convertationErrorText": "Не вдалося конвертувати", + "DE.ApplicationController.convertationTimeoutText": "Перевищено час очікування конверсії.", "DE.ApplicationController.criticalErrorTitle": "Помилка", "DE.ApplicationController.downloadErrorText": "Завантаження не вдалося", "DE.ApplicationController.downloadTextText": "Завантаження документу...", "DE.ApplicationController.errorAccessDeny": "Ви намагаєтеся виконати дію, на яку у вас немає прав.
Будь ласка, зв'яжіться з адміністратором вашого Сервера документів.", "DE.ApplicationController.errorDefaultMessage": "Код помилки: %1", + "DE.ApplicationController.errorEditingDownloadas": "Під час роботи з документом сталася помилка.
Використовуйте опцію 'Завантажити як...', щоб зберегти резервну копію файлу на жорсткий диск комп'ютера.", "DE.ApplicationController.errorFilePassProtect": "Документ захищений паролем і його неможливо відкрити.", "DE.ApplicationController.errorFileSizeExceed": "Розмір файлу перевищує обмеження, встановлені для вашого сервера.
Для детальної інформації зверніться до адміністратора сервера документів.", + "DE.ApplicationController.errorForceSave": "Під час збереження файлу сталася помилка.
Використовуйте опцію 'Завантажити як...', щоб зберегти файл на жорсткий диск комп'ютера або спробуйте пізніше.", + "DE.ApplicationController.errorLoadingFont": "Шрифти не завантажені.
Будь ласка, зверніться до адміністратора Сервера документів.", + "DE.ApplicationController.errorSubmit": "Не вдалося відправити.", + "DE.ApplicationController.errorTokenExpire": "Минув термін дії токена безпеки документа.
Будь ласка, зверніться до адміністратора Сервера документів.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Підключення до Інтернету було відновлено, а версія файлу змінена.
Перш ніж продовжувати роботу, потрібно завантажити файл або скопіювати його вміст, щоб переконатися, що нічого не втрачено, а потім перезавантажити цю сторінку.", "DE.ApplicationController.errorUserDrop": "На даний момент файл не доступний.", "DE.ApplicationController.notcriticalErrorTitle": "Застереження", + "DE.ApplicationController.openErrorText": "Під час відкриття файлу сталася помилка.", "DE.ApplicationController.scriptLoadError": "З'єднання занадто повільне, деякі компоненти не вдалося завантажити. Перезавантажте сторінку.", + "DE.ApplicationController.textAnonymous": "Анонімний користувач", + "DE.ApplicationController.textClear": "Очистити всі поля", + "DE.ApplicationController.textGotIt": "ОК", + "DE.ApplicationController.textGuest": "Гість", "DE.ApplicationController.textLoadingDocument": "Завантаження документа", + "DE.ApplicationController.textNext": "Наступне поле", "DE.ApplicationController.textOf": "з", + "DE.ApplicationController.textRequired": "Заповніть всі обов'язкові поля для відправлення форми.", + "DE.ApplicationController.textSubmit": "Відправити", + "DE.ApplicationController.textSubmited": "Форму успішно відправлено
Натисніть, щоб закрити підказку", "DE.ApplicationController.txtClose": "Закрити", + "DE.ApplicationController.txtEmpty": "(Пусто)", + "DE.ApplicationController.txtPressLink": "Натисніть CTRL та клацніть по посиланню", "DE.ApplicationController.unknownErrorText": "Невідома помилка.", "DE.ApplicationController.unsupportedBrowserErrorText": "Ваш браузер не підтримується", "DE.ApplicationController.waitText": "Будь ласка, зачекайте...", - "DE.ApplicationView.txtDownload": "Завантажити", - "DE.ApplicationView.txtEmbed": "Вставити", + "DE.ApplicationView.txtDownload": "Завантажити файл", + "DE.ApplicationView.txtDownloadDocx": "Завантажити як docx", + "DE.ApplicationView.txtDownloadPdf": "Завантажити як pdf", + "DE.ApplicationView.txtEmbed": "Вбудувати", + "DE.ApplicationView.txtFileLocation": "Відкрити розташування файлу", "DE.ApplicationView.txtFullScreen": "Повноекранний режим", + "DE.ApplicationView.txtPrint": "Друк", "DE.ApplicationView.txtShare": "Доступ" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/be.json b/apps/documenteditor/forms/locale/be.json index d906cec0d..77d1c9028 100644 --- a/apps/documenteditor/forms/locale/be.json +++ b/apps/documenteditor/forms/locale/be.json @@ -1,5 +1,76 @@ { + "Common.UI.Calendar.textApril": "красавік", + "Common.UI.Calendar.textAugust": "жнівень", + "Common.UI.Calendar.textDecember": "Снежань", + "Common.UI.Calendar.textFebruary": "Люты", + "Common.UI.Calendar.textJanuary": "Студзень", + "Common.UI.Calendar.textJuly": "Ліпень", + "Common.UI.Calendar.textJune": "Чэрвень", + "Common.UI.Calendar.textMarch": "Сакавік", + "Common.UI.Calendar.textMay": "Травень", + "Common.UI.Calendar.textMonths": "Месяцы", + "Common.UI.Calendar.textNovember": "Лістапад", + "Common.UI.Calendar.textOctober": "Кастрычнік", + "Common.UI.Calendar.textSeptember": "Верасень", + "Common.UI.Calendar.textShortApril": "Кра", + "Common.UI.Calendar.textShortAugust": "Жні", + "Common.UI.Calendar.textShortDecember": "Сне", + "Common.UI.Calendar.textShortFebruary": "Лют", + "Common.UI.Calendar.textShortFriday": "Пт", + "Common.UI.Calendar.textShortJanuary": "Сту", + "Common.UI.Calendar.textShortJuly": "Ліп", + "Common.UI.Calendar.textShortJune": "Чэр", + "Common.UI.Calendar.textShortMarch": "Сак", + "Common.UI.Calendar.textShortMay": "Травень", + "Common.UI.Calendar.textShortMonday": "Пн", + "Common.UI.Calendar.textShortNovember": "Ліс", + "Common.UI.Calendar.textShortOctober": "Кас", + "Common.UI.Calendar.textShortSaturday": "Сб", + "Common.UI.Calendar.textShortSeptember": "Вер", + "Common.UI.Calendar.textShortSunday": "Нд", + "Common.UI.Calendar.textShortThursday": "Чц", + "Common.UI.Calendar.textShortTuesday": "Аў", + "Common.UI.Calendar.textShortWednesday": "Сер", + "Common.UI.Calendar.textYears": "Гады", + "Common.UI.Themes.txtThemeDark": "Цёмная", + "Common.UI.Themes.txtThemeLight": "Светлая", + "Common.UI.Window.cancelButtonText": "Скасаваць", + "Common.UI.Window.closeButtonText": "Закрыць", + "Common.UI.Window.noButtonText": "Не", + "Common.UI.Window.okButtonText": "Добра", + "Common.UI.Window.textConfirmation": "Пацвярджэнне", + "Common.UI.Window.textDontShow": "Больш не паказваць гэтае паведамленне", + "Common.UI.Window.textError": "Памылка", + "Common.UI.Window.textInformation": "Інфармацыя", + "Common.UI.Window.textWarning": "Увага", + "Common.UI.Window.yesButtonText": "Так", + "Common.Views.CopyWarningDialog.textDontShow": "Больш не паказваць гэтае паведамленне", + "Common.Views.CopyWarningDialog.textTitle": "Скапіяваць, выразаць, уставіць", + "Common.Views.CopyWarningDialog.textToCopy": "для капіявання", + "Common.Views.CopyWarningDialog.textToCut": "для выразання", + "Common.Views.CopyWarningDialog.textToPaste": "для ўстаўкі", + "Common.Views.EmbedDialog.textHeight": "Вышыня", + "Common.Views.EmbedDialog.textTitle": "Убудаваць", + "Common.Views.EmbedDialog.textWidth": "Шырыня", + "Common.Views.EmbedDialog.txtCopy": "Скапіяваць у буфер абмену", "Common.Views.ImageFromUrlDialog.textUrl": "Устаўце URL выявы:", + "Common.Views.ImageFromUrlDialog.txtEmpty": "Гэтае поле неабходна запоўніць", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "Гэтае поле павінна быць URL-адрасам фармату \"http://www.example.com\"", + "Common.Views.OpenDialog.closeButtonText": "Закрыць файл", + "Common.Views.OpenDialog.txtEncoding": "Кадаванне", + "Common.Views.OpenDialog.txtIncorrectPwd": "Уведзены хібны пароль.", + "Common.Views.OpenDialog.txtOpenFile": "Каб адкрыць файл, увядзіце пароль", + "Common.Views.OpenDialog.txtPassword": "Пароль", + "Common.Views.OpenDialog.txtPreview": "Прагляд", + "Common.Views.OpenDialog.txtProtected": "Калі вы ўвядзеце пароль і адкрыеце файл бягучы пароль да файла скінецца.", + "Common.Views.OpenDialog.txtTitle": "Абраць параметры %1", + "Common.Views.OpenDialog.txtTitleProtected": "Абаронены файл", + "Common.Views.SaveAsDlg.textLoading": "Загрузка", + "Common.Views.SaveAsDlg.textTitle": "Каталог для захавання", + "Common.Views.SelectFileDlg.textLoading": "Загрузка", + "Common.Views.SelectFileDlg.textTitle": "Абраць крыніцу даных", + "Common.Views.ShareDialog.textTitle": "Падзяліцца спасылкай", + "Common.Views.ShareDialog.txtCopy": "Скапіяваць у буфер абмену", "DE.Controllers.ApplicationController.convertationErrorText": "Пераўтварыць не атрымалася.", "DE.Controllers.ApplicationController.convertationTimeoutText": "Час чакання пераўтварэння сышоў.", "DE.Controllers.ApplicationController.criticalErrorTitle": "Памылка", @@ -7,26 +78,71 @@ "DE.Controllers.ApplicationController.downloadTextText": "Спампоўванне дакумента...", "DE.Controllers.ApplicationController.errorAccessDeny": "Вы спрабуеце выканаць дзеянне, на якое не маеце правоў.
Калі ласка, звярніцеся да адміністратара сервера дакументаў.", "DE.Controllers.ApplicationController.errorBadImageUrl": "Хібны URL-адрас выявы", + "DE.Controllers.ApplicationController.errorConnectToServer": "Не атрымалася захаваць дакумент. Праверце налады злучэння альбо звярніцеся да вашага адміністратара.
Калі вы націснеце кнопку \"Добра\", вам прапануецца спампаваць дакумент.", + "DE.Controllers.ApplicationController.errorDataEncrypted": "Атрыманы зашыфраваныя змены, іх немагчыма расшыфраваць.", "DE.Controllers.ApplicationController.errorDefaultMessage": "Код памылкі: %1", "DE.Controllers.ApplicationController.errorEditingDownloadas": "Падчас працы з дакументам адбылася памылка.
Выкарыстайце параметр \"Спампаваць як…\", каб захаваць рэзервовую копію файла на цвёрды дыск камп’ютара.", + "DE.Controllers.ApplicationController.errorEditingSaveas": "Падчас працы з дакументам адбылася памылка.
Выкарыстайце параметр \"Захаваць як…\", каб захаваць рэзервовую копію файла на цвёрды дыск камп’ютара.", "DE.Controllers.ApplicationController.errorFilePassProtect": "Файл абаронены паролем, яго немагчыма адкрыць.", "DE.Controllers.ApplicationController.errorFileSizeExceed": "Памер файла перавышае ліміт, вызначаны для вашага сервера.
Звярніцеся да адміністратара сервера дакументаў за дадатковымі звесткамі.", "DE.Controllers.ApplicationController.errorForceSave": "Падчас захавання файла адбылася памылка. Калі ласка, выкарыстайце параметр \"Спампаваць як\", каб захаваць файл на цвёрдым дыску камп’ютара, альбо паспрабуйце яшчэ раз пазней.", + "DE.Controllers.ApplicationController.errorServerVersion": "Рэдактар быў абноўлены. Старонка перазагрузіцца, каб ужыць змены.", + "DE.Controllers.ApplicationController.errorSessionAbsolute": "Час сеанса рэдагавання дакумента сышоў. Калі ласка, абнавіце старонку.", + "DE.Controllers.ApplicationController.errorSessionIdle": "Дакумент працяглы час не рэдагаваўся. Калі ласка, абнавіце старонку.", + "DE.Controllers.ApplicationController.errorSessionToken": "Злучэнне з серверам перарванае. Калі ласка, абнавіце старонку.", + "DE.Controllers.ApplicationController.errorToken": "Токен бяспекі дакумента мае хібны фармат.
Калі ласка, звярніцеся да адміністатара сервера дакументаў.", + "DE.Controllers.ApplicationController.errorTokenExpire": "Тэрмін дзеяння токена бяспекі дакумента сышоў.
Калі ласка, звярніцеся да адміністратара сервера дакументаў.", + "DE.Controllers.ApplicationController.errorUpdateVersion": "Версія файла была змененая. Старонка будзе перазагружаная.", "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "Злучэнне з інтэрнэтам было адноўлена, і версія файла змянілася.
Перш чым працягнуць працу, неабходна спампаваць файл альбо скапіяваць яго змесціва, каб захаваць даныя, а пасля перазагрузіць старонку.", "DE.Controllers.ApplicationController.errorUserDrop": "На дадзены момант файл недаступны.", + "DE.Controllers.ApplicationController.errorViewerDisconnect": "Злучэнне страчана. Вы зможаце праглядаць дакумент,
але не зможаце спампаваць альбо надрукаваць яго да аднаўлення злучэння і перазагрузкі старонкі.", "DE.Controllers.ApplicationController.mniImageFromFile": "Выява з файла", "DE.Controllers.ApplicationController.mniImageFromStorage": "Выява са сховішча", "DE.Controllers.ApplicationController.mniImageFromUrl": "Выява па URL", "DE.Controllers.ApplicationController.notcriticalErrorTitle": "Увага", + "DE.Controllers.ApplicationController.openErrorText": "Падчас адкрыцця файла адбылася памылка.", + "DE.Controllers.ApplicationController.saveErrorText": "Падчас захавання файла адбылася памылка.", "DE.Controllers.ApplicationController.scriptLoadError": "Занадта павольнае злучэнне, не ўсе кампаненты атрымалася загрузіць. Калі ласка, абнавіце старонку.", + "DE.Controllers.ApplicationController.textAnonymous": "Ананімны карыстальнік", + "DE.Controllers.ApplicationController.textBuyNow": "Наведаць сайт", + "DE.Controllers.ApplicationController.textContactUs": "Звязацца з аддзелам продажу", + "DE.Controllers.ApplicationController.textGuest": "Госць", "DE.Controllers.ApplicationController.textLoadingDocument": "Загрузка дакумента", + "DE.Controllers.ApplicationController.textNoLicenseTitle": "Ліцэнзійнае абмежаванне", "DE.Controllers.ApplicationController.textOf": "з", + "DE.Controllers.ApplicationController.textRequired": "Запоўніце ўсе абавязковыя палі, патрэбныя для адпраўлення формы. ", "DE.Controllers.ApplicationController.textSaveAs": "Захаваць як PDF", + "DE.Controllers.ApplicationController.textSaveAsDesktop": "Захаваць як…", + "DE.Controllers.ApplicationController.textSubmited": "Форма паспяхова адпраўленая
Пстрыкніце, каб закрыць падказку", + "DE.Controllers.ApplicationController.titleLicenseExp": "Тэрмін дзеяння ліцэнзіі сышоў", + "DE.Controllers.ApplicationController.titleServerVersion": "Рэдактар абноўлены", + "DE.Controllers.ApplicationController.titleUpdateVersion": "Версія змянілася", + "DE.Controllers.ApplicationController.txtArt": "Увядзіце ваш тэкст", + "DE.Controllers.ApplicationController.txtChoose": "Абярыце элемент", "DE.Controllers.ApplicationController.txtClose": "Закрыць", + "DE.Controllers.ApplicationController.txtEmpty": "(Пуста)", + "DE.Controllers.ApplicationController.txtEnterDate": "Увядзіце дату", + "DE.Controllers.ApplicationController.txtPressLink": "Націсніце CTRL і пстрыкніце па спасылцы", + "DE.Controllers.ApplicationController.txtUntitled": "Без назвы", "DE.Controllers.ApplicationController.unknownErrorText": "Невядомая памылка.", "DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "Ваш браўзер не падтрымліваецца.", "DE.Controllers.ApplicationController.uploadImageExtMessage": "Невядомы фармат выявы.", "DE.Controllers.ApplicationController.waitText": "Калі ласка, пачакайце...", + "DE.Controllers.ApplicationController.warnLicenseExceeded": "Вы дасягнулі абмежавання па адначасовай колькасці падлучэнняў да рэдактараў %1.Гэты дакумент будзе адкрыты для прагляду.
Звяжыцеся з адміністратарам, каб даведацца больш.", + "DE.Controllers.ApplicationController.warnLicenseExp": "Тэрмін дзеяння ліцэнзіі сышоў.
Калі ласка, абнавіце ліцэнзію, пасля абнавіце старонку.", + "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "Тэрмін дзеяння ліцэнзіі сышоў.
У вас няма доступу да функцый рэдагавання дакументаў.
Калі ласка, звярніцеся да адміністратара.", + "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "Патрэбна абнавіць ліцэнзію.
У вас абмежаваны доступ да функцый рэдагавання дакументаў.
Каб атрымаць поўны доступ, звярніцеся да адміністратара", + "DE.Controllers.ApplicationController.warnNoLicense": "Вы дасягнулі абмежавання па адначасовай колькасці падлучэнняў да рэдактараў %1.Гэты дакумент будзе адкрыты для прагляду.
Напішыце ў аддзел продажу %1,каб абмеркаваць асабістыя ўмовы ліцэнзіявання.", + "DE.Views.ApplicationView.textClear": "Ачысціць усе палі", + "DE.Views.ApplicationView.textCopy": "Капіяваць", + "DE.Views.ApplicationView.textCut": "Выразаць", + "DE.Views.ApplicationView.textFitToPage": "Па памерах старонкі", + "DE.Views.ApplicationView.textFitToWidth": "Па шырыні", + "DE.Views.ApplicationView.textPaste": "Уставіць", + "DE.Views.ApplicationView.textPrintSel": "Надрукаваць вылучанае", + "DE.Views.ApplicationView.textRedo": "Паўтарыць", + "DE.Views.ApplicationView.textUndo": "Адрабіць", + "DE.Views.ApplicationView.textZoom": "Маштаб", "DE.Views.ApplicationView.txtDownload": "Спампаваць", "DE.Views.ApplicationView.txtDownloadDocx": "Спампаваць як docx", "DE.Views.ApplicationView.txtDownloadPdf": "Спампаваць як PDF", diff --git a/apps/documenteditor/forms/locale/es.json b/apps/documenteditor/forms/locale/es.json index 038c2283d..e716dccca 100644 --- a/apps/documenteditor/forms/locale/es.json +++ b/apps/documenteditor/forms/locale/es.json @@ -123,6 +123,7 @@ "DE.Controllers.ApplicationController.textSaveAs": "Guardar como PDF", "DE.Controllers.ApplicationController.textSaveAsDesktop": "Guardar como...", "DE.Controllers.ApplicationController.textSubmited": "Formulario enviado con éxito
Haga clic para cerrar el consejo", + "DE.Controllers.ApplicationController.titleLicenseExp": "La licencia ha expirado", "DE.Controllers.ApplicationController.titleServerVersion": "Editor ha sido actualizado", "DE.Controllers.ApplicationController.titleUpdateVersion": "Versión se ha cambiado", "DE.Controllers.ApplicationController.txtArt": "Escriba el texto aquí", @@ -139,6 +140,7 @@ "DE.Controllers.ApplicationController.uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB.", "DE.Controllers.ApplicationController.waitText": "Por favor, espere...", "DE.Controllers.ApplicationController.warnLicenseExceeded": "Usted ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización.
Por favor, contacte con su administrador para recibir más información.", + "DE.Controllers.ApplicationController.warnLicenseExp": "Su licencia ha expirado.
Actualice su licencia y después recargue la página.", "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "Licencia expirada.
No tiene acceso a la funcionalidad de edición de documentos.
Por favor, póngase en contacto con su administrador.", "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "La licencia requiere ser renovada.
Tiene un acceso limitado a la funcionalidad de edición de documentos.
Por favor, póngase en contacto con su administrador para obtener un acceso completo", "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "Usted ha alcanzado el límite de usuarios para los editores de %1. Por favor, contacte con su administrador para recibir más información.", @@ -147,12 +149,15 @@ "DE.Views.ApplicationView.textClear": "Borrar todos los campos", "DE.Views.ApplicationView.textCopy": "Copiar ", "DE.Views.ApplicationView.textCut": "Cortar", + "DE.Views.ApplicationView.textFitToPage": "Ajustar a la página", + "DE.Views.ApplicationView.textFitToWidth": "Ajustar al ancho", "DE.Views.ApplicationView.textNext": "Campo siguiente", "DE.Views.ApplicationView.textPaste": "Pegar", "DE.Views.ApplicationView.textPrintSel": "Imprimir selección", "DE.Views.ApplicationView.textRedo": "Rehacer", "DE.Views.ApplicationView.textSubmit": "Enviar", "DE.Views.ApplicationView.textUndo": "Deshacer", + "DE.Views.ApplicationView.textZoom": "Zoom", "DE.Views.ApplicationView.txtDarkMode": "Modo oscuro", "DE.Views.ApplicationView.txtDownload": "Descargar", "DE.Views.ApplicationView.txtDownloadDocx": "Descargar como docx", diff --git a/apps/documenteditor/forms/locale/fr.json b/apps/documenteditor/forms/locale/fr.json index 6bde97b24..a872d7c4c 100644 --- a/apps/documenteditor/forms/locale/fr.json +++ b/apps/documenteditor/forms/locale/fr.json @@ -123,6 +123,7 @@ "DE.Controllers.ApplicationController.textSaveAs": "Enregistrer comme PDF", "DE.Controllers.ApplicationController.textSaveAsDesktop": "Enregistrer sous...", "DE.Controllers.ApplicationController.textSubmited": "Le formulaire a été soumis avec succès
Cliquez ici pour fermer l'astuce", + "DE.Controllers.ApplicationController.titleLicenseExp": "Licence expirée", "DE.Controllers.ApplicationController.titleServerVersion": "L'éditeur est mis à jour", "DE.Controllers.ApplicationController.titleUpdateVersion": "La version a été modifiée", "DE.Controllers.ApplicationController.txtArt": "Saisissez votre texte", @@ -139,6 +140,7 @@ "DE.Controllers.ApplicationController.uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo.", "DE.Controllers.ApplicationController.waitText": "Veuillez patienter...", "DE.Controllers.ApplicationController.warnLicenseExceeded": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert en mode lecture seule.
Veuillez contacter votre administrateur pour en savoir davantage.", + "DE.Controllers.ApplicationController.warnLicenseExp": "Votre licence a expiré.
Veuillez mettre à jour votre licence et actualiser la page.", "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "La licence est expirée.
Vous n'avez plus d'accès aux outils d'édition.
Veuillez contacter votre administrateur.", "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "La licence doit être renouvelée.
Vous avez un accès limité aux outils d'édition des documents.
Veuillez contacter votre administrateur pour obtenir un accès complet.", "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Veuillez contacter votre administrateur pour en savoir davantage.", @@ -147,12 +149,15 @@ "DE.Views.ApplicationView.textClear": "Effacer tous les champs", "DE.Views.ApplicationView.textCopy": "Copier", "DE.Views.ApplicationView.textCut": "Couper", + "DE.Views.ApplicationView.textFitToPage": "Ajuster à la page", + "DE.Views.ApplicationView.textFitToWidth": "Ajuster à la largeur", "DE.Views.ApplicationView.textNext": "Champ suivant", "DE.Views.ApplicationView.textPaste": "Coller", "DE.Views.ApplicationView.textPrintSel": "Imprimer la sélection", "DE.Views.ApplicationView.textRedo": "Rétablir", "DE.Views.ApplicationView.textSubmit": "Soumettre ", "DE.Views.ApplicationView.textUndo": "Annuler", + "DE.Views.ApplicationView.textZoom": "Zoom", "DE.Views.ApplicationView.txtDarkMode": "Mode sombre", "DE.Views.ApplicationView.txtDownload": "Télécharger", "DE.Views.ApplicationView.txtDownloadDocx": "Télécharger en tant que docx", diff --git a/apps/documenteditor/forms/locale/it.json b/apps/documenteditor/forms/locale/it.json index 26d00de29..f6fa1b13e 100644 --- a/apps/documenteditor/forms/locale/it.json +++ b/apps/documenteditor/forms/locale/it.json @@ -123,6 +123,7 @@ "DE.Controllers.ApplicationController.textSaveAs": "Salvare come PDF", "DE.Controllers.ApplicationController.textSaveAsDesktop": "Salvare come...", "DE.Controllers.ApplicationController.textSubmited": "Modulo inviato con successo
Fare click per chiudere la notifica
", + "DE.Controllers.ApplicationController.titleLicenseExp": "La licenza è scaduta", "DE.Controllers.ApplicationController.titleServerVersion": "L'editor è stato aggiornato", "DE.Controllers.ApplicationController.titleUpdateVersion": "La versione è stata cambiata", "DE.Controllers.ApplicationController.txtArt": "Il tuo testo qui", @@ -139,6 +140,7 @@ "DE.Controllers.ApplicationController.uploadImageSizeMessage": "L'immagine è troppo grande. La dimensione massima è 25 MB.", "DE.Controllers.ApplicationController.waitText": "Per favore, attendi...", "DE.Controllers.ApplicationController.warnLicenseExceeded": "Hai raggiunto il limite delle connessioni simultanee con gli editor %1. Questo documento verrà aperto solo per la visualizzazione.
Ti preghiamo di contattare il tuo amministratore per maggior informazioni.", + "DE.Controllers.ApplicationController.warnLicenseExp": "La tua licenza è scaduta.
Si prega di aggiornare la licenza e ricaricare la pagina.", "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "Licenza è scaduta.
Non hai accesso alle funzionalità di modifica dei documenti.
Ti preghiamo di contattare l'amministratore.", "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "La licenza va rinnovata.
Hai un accesso limitato alle funzionalità di modifica dei documenti.
Ti preghiamo di contattare l'amministratore per ottenere l'accesso completo", "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il tuo amministratore per maggior informazioni.", @@ -147,12 +149,15 @@ "DE.Views.ApplicationView.textClear": "‎Cancellare tutti i campi‎", "DE.Views.ApplicationView.textCopy": "Copiare", "DE.Views.ApplicationView.textCut": "Tagliare", + "DE.Views.ApplicationView.textFitToPage": "Adatta alla pagina", + "DE.Views.ApplicationView.textFitToWidth": "Adatta alla larghezza", "DE.Views.ApplicationView.textNext": "Campo successivo", "DE.Views.ApplicationView.textPaste": "Incollare", "DE.Views.ApplicationView.textPrintSel": "Stampare selezione", "DE.Views.ApplicationView.textRedo": "Ripetere", "DE.Views.ApplicationView.textSubmit": "‎Invia‎", "DE.Views.ApplicationView.textUndo": "Annullare", + "DE.Views.ApplicationView.textZoom": "Zoom", "DE.Views.ApplicationView.txtDarkMode": "Modalità scura", "DE.Views.ApplicationView.txtDownload": "Scarica", "DE.Views.ApplicationView.txtDownloadDocx": "Scarica come .docx", diff --git a/apps/documenteditor/forms/locale/ja.json b/apps/documenteditor/forms/locale/ja.json index 7094e091b..5b4954d65 100644 --- a/apps/documenteditor/forms/locale/ja.json +++ b/apps/documenteditor/forms/locale/ja.json @@ -101,7 +101,7 @@ "DE.Controllers.ApplicationController.errorUpdateVersion": "ファイルが変更されました。ページがリロードされます。", "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "インターネット接続が復旧し、ファイルのバージョンが更新されています。
作業を継続する前に、ファイルをダウンロードするか内容をコピーして、変更が消えてしまわないようにしてからページを再読み込みしてください。", "DE.Controllers.ApplicationController.errorUserDrop": "今、ファイルにアクセスすることはできません。", - "DE.Controllers.ApplicationController.errorViewerDisconnect": "接続が失われました。文書の表示は可能ですが、
接続が復元されてページが再ロードされるまで、ダウンロードまたは印刷することはできません。", + "DE.Controllers.ApplicationController.errorViewerDisconnect": "接続が失われました。文書の表示は可能ですが、
再度接続されてページが再ロードされるまで、ダウンロードまたは印刷することはできません。", "DE.Controllers.ApplicationController.mniImageFromFile": "ファイルからの画像", "DE.Controllers.ApplicationController.mniImageFromStorage": "ストレージから画像を読み込む", "DE.Controllers.ApplicationController.mniImageFromUrl": "URLから画像を読み込む", @@ -139,6 +139,7 @@ "DE.Controllers.ApplicationController.uploadImageSizeMessage": "画像サイズの上限を超えました。サイズの上限は25MBです。", "DE.Controllers.ApplicationController.waitText": "少々お待ちください...", "DE.Controllers.ApplicationController.warnLicenseExceeded": "%1エディターへの同時接続の制限に達しました。 このドキュメントは表示専用で開かれます。
詳細については、管理者にお問い合わせください。", + "DE.Controllers.ApplicationController.warnLicenseExp": "ライセンスの有効期限が切れています。
ライセンスを更新してページをリロードしてください。", "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "ライセンスの有効期限が切れています。
ドキュメント編集機能にアクセスできません。
管理者にご連絡ください。", "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "ライセンスを更新する必要があります。
ドキュメント編集機能へのアクセスが制限されています。
フルアクセスを取得するには、管理者にご連絡ください", "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "%1エディターのユーザー制限に達しました。 詳細については、管理者にお問い合わせください。", @@ -153,6 +154,7 @@ "DE.Views.ApplicationView.textRedo": "やり直す", "DE.Views.ApplicationView.textSubmit": "送信", "DE.Views.ApplicationView.textUndo": "元に戻す", + "DE.Views.ApplicationView.textZoom": "ズーム", "DE.Views.ApplicationView.txtDarkMode": "ダークモード", "DE.Views.ApplicationView.txtDownload": "ダウンロード", "DE.Views.ApplicationView.txtDownloadDocx": "docxとして保存", diff --git a/apps/documenteditor/forms/locale/ro.json b/apps/documenteditor/forms/locale/ro.json index 9587372fa..667cb9c0e 100644 --- a/apps/documenteditor/forms/locale/ro.json +++ b/apps/documenteditor/forms/locale/ro.json @@ -123,6 +123,7 @@ "DE.Controllers.ApplicationController.textSaveAs": "Salvare ca PDF", "DE.Controllers.ApplicationController.textSaveAsDesktop": "Salvare ca...", "DE.Controllers.ApplicationController.textSubmited": "Formularul a fost remis cu succes
Faceţi clic pentru a închide sfatul", + "DE.Controllers.ApplicationController.titleLicenseExp": "Licența a expirat", "DE.Controllers.ApplicationController.titleServerVersion": "Editorul a fost actualizat", "DE.Controllers.ApplicationController.titleUpdateVersion": "Versiunea s-a modificat", "DE.Controllers.ApplicationController.txtArt": "Textul dvs. aici", @@ -139,6 +140,7 @@ "DE.Controllers.ApplicationController.uploadImageSizeMessage": "Imaginea este prea mare. Limita de dimensiune este de 25 MB.", "DE.Controllers.ApplicationController.waitText": "Vă rugăm să așteptați...", "DE.Controllers.ApplicationController.warnLicenseExceeded": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare.
Pentru detalii, contactați administratorul dvs.", + "DE.Controllers.ApplicationController.warnLicenseExp": "Licența dvs. a expirat.
Licența urmează să fie reînnoită iar pagina reîmprospătată.", "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "Licența dvs. a expirat.
Nu aveți acces la funcții de editare a documentului.
Contactați administratorul dvs. de rețeea.", "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "Licență urmează să fie reînnoită.
Funcțiile de editare sunt cu acces limitat.
Pentru a obține acces nelimitat, contactați administratorul dvs. de rețea.", "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori ai %1 editoare. Pentru detalii, contactați administratorul dvs.", @@ -147,12 +149,15 @@ "DE.Views.ApplicationView.textClear": "Goleşte toate câmpurile", "DE.Views.ApplicationView.textCopy": "Copiere", "DE.Views.ApplicationView.textCut": "Decupare", + "DE.Views.ApplicationView.textFitToPage": "Portivire la pagina", + "DE.Views.ApplicationView.textFitToWidth": "Potrivire lățime", "DE.Views.ApplicationView.textNext": "Câmpul următor", "DE.Views.ApplicationView.textPaste": "Lipire", "DE.Views.ApplicationView.textPrintSel": "Imprimare selecție", "DE.Views.ApplicationView.textRedo": "Refacere", "DE.Views.ApplicationView.textSubmit": "Remitere", "DE.Views.ApplicationView.textUndo": "Anulează", + "DE.Views.ApplicationView.textZoom": "Zoom", "DE.Views.ApplicationView.txtDarkMode": "Modul Întunecat", "DE.Views.ApplicationView.txtDownload": "Descărcare", "DE.Views.ApplicationView.txtDownloadDocx": "Descărcare ca docx", diff --git a/apps/documenteditor/forms/locale/tr.json b/apps/documenteditor/forms/locale/tr.json index c317dee4a..f44f53409 100644 --- a/apps/documenteditor/forms/locale/tr.json +++ b/apps/documenteditor/forms/locale/tr.json @@ -56,16 +56,20 @@ "Common.Views.EmbedDialog.textWidth": "Genişlik", "Common.Views.EmbedDialog.txtCopy": "Panoya kopyala", "Common.Views.EmbedDialog.warnCopy": "Tarayıcı hatası! [Ctrl] + [C] klavye kısayolunu kullanın", + "Common.Views.ImageFromUrlDialog.textUrl": "Resim URL'sini yapıştır:", "Common.Views.OpenDialog.closeButtonText": "Dosyayı Kapat", "Common.Views.OpenDialog.txtEncoding": "Kodlama", "Common.Views.OpenDialog.txtIncorrectPwd": "Şifre hatalı.", "Common.Views.OpenDialog.txtOpenFile": "Dosyayı Açmak için Parola Girin", "Common.Views.OpenDialog.txtPassword": "Şifre", + "Common.Views.OpenDialog.txtPreview": "Önizleme", "Common.Views.OpenDialog.txtProtected": "Şifreyi girip dosyayı açtığınızda, dosyanın mevcut şifresi sıfırlanacaktır.", "Common.Views.OpenDialog.txtTitle": "%1 seçenekleri seçin", + "Common.Views.OpenDialog.txtTitleProtected": "Korumalı Dosya", "Common.Views.SaveAsDlg.textLoading": "Yükleniyor", "Common.Views.SaveAsDlg.textTitle": "Kaydetmek için klasör", "Common.Views.SelectFileDlg.textLoading": "Yükleniyor", + "Common.Views.SelectFileDlg.textTitle": "Veri Kaynağını Seçin", "Common.Views.ShareDialog.textTitle": "Bağlantıyı Paylaş", "Common.Views.ShareDialog.txtCopy": "Panoya kopyala", "Common.Views.ShareDialog.warnCopy": "Tarayıcı hatası! [Ctrl] + [C] klavye kısayolunu kullanın", @@ -76,7 +80,7 @@ "DE.Controllers.ApplicationController.downloadTextText": "Döküman yükleniyor...", "DE.Controllers.ApplicationController.errorAccessDeny": "Hakkınız olmayan bir eylem gerçekleştirmeye çalışıyorsunuz.
Lütfen Belge Sunucu yöneticinize başvurun.", "DE.Controllers.ApplicationController.errorBadImageUrl": "Resim URL'si yanlış", - "DE.Controllers.ApplicationController.errorConnectToServer": "Belge kaydedilemedi. Lütfen internet bağlantınızı kontrol edin veya yöneticiniz ile iletişime geçin.
'TAMAM' tuşuna tıkladığınızda belgeyi indirebileceksiniz.", + "DE.Controllers.ApplicationController.errorConnectToServer": "Belge kaydedilemedi. Lütfen internet bağlantınızı kontrol edin veya yöneticiniz ile iletişime geçin.
'OK' tuşuna tıkladığınızda belgeyi indirebileceksiniz.", "DE.Controllers.ApplicationController.errorDataEncrypted": "Şifreli değişiklikler alındı, deşifre edilemezler.", "DE.Controllers.ApplicationController.errorDefaultMessage": "Hata kodu: %1", "DE.Controllers.ApplicationController.errorEditingDownloadas": "Dosyayla çalışırken hata meydana geldi. 'Farklı Kaydet...' seçeneğini kullanarak dosyayı bilgisayarınıza yedekleyin.", @@ -86,6 +90,7 @@ "DE.Controllers.ApplicationController.errorForceSave": "Dosya indirilirken bir hata oluştu. Dosyayı bilgisayarınıza kaydetmek için lütfen 'Farklı Kaydet' seçeneğini kullanın veya daha sonra tekrar deneyin.", "DE.Controllers.ApplicationController.errorLoadingFont": "Yazı tipleri yüklenmedi.
Lütfen Doküman Sunucusu yöneticinize başvurun.", "DE.Controllers.ApplicationController.errorServerVersion": "Editör versiyonu güncellendi. Değişikliklerin uygulanabilmesi için sayfa yenilenecek.", + "DE.Controllers.ApplicationController.errorSessionToken": "Sunucu bağlantısı yarıda kesildi. Lütfen sayfayı yeniden yükleyin.", "DE.Controllers.ApplicationController.errorSubmit": "Kaydetme başarısız oldu.", "DE.Controllers.ApplicationController.errorTokenExpire": "Belge güvenlik belirteci süresi doldu.
Lütfen Belge Sunucusu yöneticinize başvurun.", "DE.Controllers.ApplicationController.errorUpdateVersion": "Dosya versiyonu değiştirildi. Sayfa yenilenecek.", @@ -109,7 +114,10 @@ "DE.Controllers.ApplicationController.textNoLicenseTitle": "Lisans limitine ulaşıldı.", "DE.Controllers.ApplicationController.textOf": "'in", "DE.Controllers.ApplicationController.textRequired": "Formu gönderebilmek için gerekli tüm alanları doldurun.", + "DE.Controllers.ApplicationController.textSaveAs": "PDF olarak kaydet", + "DE.Controllers.ApplicationController.textSaveAsDesktop": "Farklı kaydet", "DE.Controllers.ApplicationController.textSubmited": "Form başarılı bir şekilde kaydedildi
İpucunu kapatmak için tıklayın", + "DE.Controllers.ApplicationController.titleLicenseExp": "Lisans süresi doldu", "DE.Controllers.ApplicationController.titleServerVersion": "Editör güncellendi", "DE.Controllers.ApplicationController.titleUpdateVersion": "Versiyon değişti", "DE.Controllers.ApplicationController.txtArt": "Metni buraya giriniz", @@ -139,6 +147,7 @@ "DE.Views.ApplicationView.textNext": "Sonraki alan", "DE.Views.ApplicationView.textPaste": "Yapıştır", "DE.Views.ApplicationView.textPrintSel": "Seçimi Yazdır", + "DE.Views.ApplicationView.textRedo": "Yinele", "DE.Views.ApplicationView.textSubmit": "Kaydet", "DE.Views.ApplicationView.textUndo": "Geri Al", "DE.Views.ApplicationView.txtDarkMode": "Karanlık mod", diff --git a/apps/documenteditor/forms/locale/zh.json b/apps/documenteditor/forms/locale/zh.json index 826b6d6d0..baef73341 100644 --- a/apps/documenteditor/forms/locale/zh.json +++ b/apps/documenteditor/forms/locale/zh.json @@ -123,6 +123,7 @@ "DE.Controllers.ApplicationController.textSaveAs": "另存为PDF", "DE.Controllers.ApplicationController.textSaveAsDesktop": "另存为...", "DE.Controllers.ApplicationController.textSubmited": "表单提交成功
点击以关闭提示", + "DE.Controllers.ApplicationController.titleLicenseExp": "许可证已过期", "DE.Controllers.ApplicationController.titleServerVersion": "编辑器已更新", "DE.Controllers.ApplicationController.titleUpdateVersion": "版本已更改", "DE.Controllers.ApplicationController.txtArt": "在此输入文字", @@ -139,6 +140,7 @@ "DE.Controllers.ApplicationController.uploadImageSizeMessage": "图片太大了。最大允许的大小为 25 MB.", "DE.Controllers.ApplicationController.waitText": "请稍候...", "DE.Controllers.ApplicationController.warnLicenseExceeded": "您已达到同时连接 %1 编辑器的限制。该文档将打开以查看。
请联系管理员以了解更多。", + "DE.Controllers.ApplicationController.warnLicenseExp": "您的许可证已过期。
请更新您的许可证并刷新页面。", "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "许可证已过期。
您无法使用文件编辑功能。
请联系管理员。", "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "许可证需更新。
您使用文件编辑功能限制。
请联系管理员以取得完整权限。", "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "您已达到%1编辑器的用户数量限制。请联系您的管理员以了解更多。", @@ -147,12 +149,15 @@ "DE.Views.ApplicationView.textClear": "清除所有字段", "DE.Views.ApplicationView.textCopy": "复制", "DE.Views.ApplicationView.textCut": "剪切", + "DE.Views.ApplicationView.textFitToPage": "适合页面", + "DE.Views.ApplicationView.textFitToWidth": "适合宽度", "DE.Views.ApplicationView.textNext": "下一字段", "DE.Views.ApplicationView.textPaste": "粘贴", "DE.Views.ApplicationView.textPrintSel": "打印所选内容", "DE.Views.ApplicationView.textRedo": "重做", "DE.Views.ApplicationView.textSubmit": "提交", "DE.Views.ApplicationView.textUndo": "撤消", + "DE.Views.ApplicationView.textZoom": "缩放", "DE.Views.ApplicationView.txtDarkMode": "深色模式", "DE.Views.ApplicationView.txtDownload": "下载", "DE.Views.ApplicationView.txtDownloadDocx": "下载为docx", diff --git a/apps/documenteditor/main/locale/be.json b/apps/documenteditor/main/locale/be.json index 7a981bf17..eba9b2179 100644 --- a/apps/documenteditor/main/locale/be.json +++ b/apps/documenteditor/main/locale/be.json @@ -18,6 +18,7 @@ "Common.Controllers.ReviewChanges.textBreakBefore": "З новай старонкі", "Common.Controllers.ReviewChanges.textCaps": "Усе ў верхнім рэгістры", "Common.Controllers.ReviewChanges.textCenter": "Выраўноўванне па цэнтры", + "Common.Controllers.ReviewChanges.textChar": "Па знаках", "Common.Controllers.ReviewChanges.textChart": "Дыяграма", "Common.Controllers.ReviewChanges.textColor": "Колер шрыфту", "Common.Controllers.ReviewChanges.textContextual": "Не дадаваць прамежак паміж абзацамі аднаго стылю", @@ -61,6 +62,7 @@ "Common.Controllers.ReviewChanges.textRight": "Выраўнаваць па праваму краю", "Common.Controllers.ReviewChanges.textShape": "Фігура", "Common.Controllers.ReviewChanges.textShd": "Колер фону", + "Common.Controllers.ReviewChanges.textShow": "Паказваць змены", "Common.Controllers.ReviewChanges.textSmallCaps": "Малыя прапісныя", "Common.Controllers.ReviewChanges.textSpacing": "Прамежак", "Common.Controllers.ReviewChanges.textSpacingAfter": "Прамежак пасля", @@ -150,6 +152,7 @@ "Common.UI.ThemeColorPalette.textStandartColors": "Стандартныя колеры", "Common.UI.ThemeColorPalette.textThemeColors": "Колеры тэмы", "Common.UI.Themes.txtThemeDark": "Цёмная", + "Common.UI.Themes.txtThemeLight": "Светлая", "Common.UI.Window.cancelButtonText": "Скасаваць", "Common.UI.Window.closeButtonText": "Закрыць", "Common.UI.Window.noButtonText": "Не", @@ -303,6 +306,7 @@ "Common.Views.ReviewChanges.strFastDesc": "Сумеснае рэдагаванне ў рэжыме рэальнага часу. Ўсе змены захоўваюцца аўтаматычна.", "Common.Views.ReviewChanges.strStrict": "Строгі", "Common.Views.ReviewChanges.strStrictDesc": "Выкарыстоўвайце кнопку \"Захаваць\" для сінхранізацыі вашых змен і змен іншых карыстальнікаў.", + "Common.Views.ReviewChanges.textEnable": "Уключыць", "Common.Views.ReviewChanges.tipAcceptCurrent": "Ухваліць бягучыя змены", "Common.Views.ReviewChanges.tipCoAuthMode": "Уключыць рэжым сумеснага рэдагавання", "Common.Views.ReviewChanges.tipCommentRem": "Выдаліць каментары", @@ -327,6 +331,7 @@ "Common.Views.ReviewChanges.txtCommentRemMy": "Выдаліць мае каментары", "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Выдаліць мае бягучыя каментары", "Common.Views.ReviewChanges.txtCommentRemove": "Выдаліць", + "Common.Views.ReviewChanges.txtCommentResolve": "Вырашыць", "Common.Views.ReviewChanges.txtCompare": "Параўнаць", "Common.Views.ReviewChanges.txtDocLang": "Мова", "Common.Views.ReviewChanges.txtEditing": "рэдагаванне", @@ -368,7 +373,10 @@ "Common.Views.ReviewPopover.textOpenAgain": "Адкрыць зноў", "Common.Views.ReviewPopover.textReply": "Адказаць", "Common.Views.ReviewPopover.textResolve": "Вырашыць", + "Common.Views.ReviewPopover.txtAccept": "Ухваліць", + "Common.Views.ReviewPopover.txtDeleteTip": "Выдаліць", "Common.Views.ReviewPopover.txtEditTip": "Рэдагаваць", + "Common.Views.ReviewPopover.txtReject": "Адхіліць", "Common.Views.SaveAsDlg.textLoading": "Загрузка", "Common.Views.SaveAsDlg.textTitle": "Каталог для захавання", "Common.Views.SelectFileDlg.textLoading": "Загрузка", @@ -424,6 +432,7 @@ "Common.Views.SymbolTableDialog.textTitle": "Сімвал", "Common.Views.SymbolTableDialog.textTradeMark": "Сімвал таварнага знака", "Common.Views.UserNameDialog.textLabel": "Адмеціна:", + "Common.Views.UserNameDialog.textLabelError": "Адмеціна не можа быць пустой", "DE.Controllers.LeftMenu.leavePageText": "Усе незахаваныя змены ў гэтым дакуменце страцяцца.
Націсніце \"Скасаваць\" і \"Захаваць\", каб захаваць іх. Націсніце \"Добра\", каб адкінуць незахаваныя змены.", "DE.Controllers.LeftMenu.newDocumentTitle": "Дакумент без назвы", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Увага", @@ -479,7 +488,7 @@ "DE.Controllers.Main.errorUserDrop": "На дадзены момант файл недаступны.", "DE.Controllers.Main.errorUsersExceed": "Перасягнута колькасць карыстальнікаў, дазволеных згодна тарыфу", "DE.Controllers.Main.errorViewerDisconnect": "Злучэнне страчана. Вы зможаце праглядаць дакумент,
але не зможаце спампаваць альбо надрукаваць яго да аднаўлення злучэння і перазагрузкі старонкі.", - "DE.Controllers.Main.leavePageText": "У дакуменце ёсць незахаваныя змены. Пстрыкніце \"Застацца на гэтай старонцы\", пасля \"Захаваць\". Націсніце \"Сысці са старонкі\", каб адкінуць змены.", + "DE.Controllers.Main.leavePageText": "У дакуменце ёсць незахаваныя змены. Пстрыкніце \"Застацца на гэтай старонцы\", пасля \"Захаваць\". Націсніце \"Пакінуць старонку\", каб адкінуць змены.", "DE.Controllers.Main.loadFontsTextText": "Загрузка даных…", "DE.Controllers.Main.loadFontsTitleText": "Загрузка даных", "DE.Controllers.Main.loadFontTextText": "Загрузка даных…", @@ -520,6 +529,7 @@ "DE.Controllers.Main.textConvertEquation": "Гэтае раўнанне створана ў старой версіі рэдактара раўнанняў, якая больш не падтрымліваецца. Каб змяніць раўнанне, яго неабходна пераўтварыць у фармат Math ML.
Пераўтварыць?", "DE.Controllers.Main.textCustomLoader": "Звярніце ўвагу, што па ўмовах ліцэнзіі вы не можаце змяняць экран загрузкі.
Калі ласка, звярніцеся ў аддзел продажу.", "DE.Controllers.Main.textDisconnect": "Злучэнне страчана", + "DE.Controllers.Main.textGuest": "Госць", "DE.Controllers.Main.textHasMacros": "Файл змяшчае макрасы з аўтазапускам.
Хочаце запусціць макрасы?", "DE.Controllers.Main.textLearnMore": "Падрабязней", "DE.Controllers.Main.textLoadingDocument": "Загрузка дакумента", @@ -529,6 +539,7 @@ "DE.Controllers.Main.textShape": "Фігура", "DE.Controllers.Main.textStrict": "Строгі рэжым", "DE.Controllers.Main.textTryUndoRedo": "Функцыі скасавання і паўтору дзеянняў выключаныя ў хуткім рэжыме сумеснага рэдагавання.
Націсніце кнопку \"Строгі рэжым\", каб пераключыцца ў строгі рэжым сумеснага рэдагавання, каб рэдагаваць файл без іншых карыстальнікаў і адпраўляць змены толькі пасля іх захавання. Пераключацца паміж рэжымамі сумеснага рэдагавання можна з дапамогай дадатковых налад рэдактара.", + "DE.Controllers.Main.textTryUndoRedoWarn": "Функцыі скасавання і паўтору дзеянняў выключаныя ў хуткім рэжыме сумеснага рэдагавання.", "DE.Controllers.Main.titleLicenseExp": "Тэрмін дзеяння ліцэнзіі сышоў", "DE.Controllers.Main.titleServerVersion": "Рэдактар абноўлены", "DE.Controllers.Main.titleUpdateVersion": "Версія змянілася", @@ -561,6 +572,7 @@ "DE.Controllers.Main.txtMissArg": "Аргумент адсутнічае", "DE.Controllers.Main.txtMissOperator": "Аператар адсутнічае", "DE.Controllers.Main.txtNeedSynchronize": "Ёсць абнаўленні", + "DE.Controllers.Main.txtNone": "Няма", "DE.Controllers.Main.txtNoTableOfContents": "У дакуменце няма загалоўкаў. Выкарыстайце стыль загалоўка да тэксту, каб ён з’явіўся ў змесце.", "DE.Controllers.Main.txtNoText": "Памылка! У дакуменце адсутнічае тэкст пазначанага стылю.", "DE.Controllers.Main.txtNotInTable": "Не ў табліцы", @@ -785,6 +797,8 @@ "DE.Controllers.Main.warnBrowserZoom": "Бягучыя налады маштабу старонкі падтрымліваюцца браўзерам толькі часткова. Калі ласка, скінце да прадвызначанага значэння націснуўшы Ctrl+О.", "DE.Controllers.Main.warnLicenseExceeded": "Вы дасягнулі абмежавання па адначасовай колькасці падлучэнняў да рэдактараў %1.Гэты дакумент будзе адкрыты для прагляду.
Звяжыцеся з адміністратарам, каб даведацца больш.", "DE.Controllers.Main.warnLicenseExp": "Тэрмін дзеяння ліцэнзіі сышоў.
Калі ласка, абнавіце ліцэнзію, пасля абнавіце старонку.", + "DE.Controllers.Main.warnLicenseLimitedNoAccess": "Тэрмін дзеяння ліцэнзіі сышоў.
У вас няма доступу да функцый рэдагавання дакументаў.
Калі ласка, звярніцеся да адміністратара.", + "DE.Controllers.Main.warnLicenseLimitedRenewed": "Патрэбна абнавіць ліцэнзію.
У вас абмежаваны доступ да функцый рэдагавання дакументаў.
Каб атрымаць поўны доступ, звярніцеся да адміністратара", "DE.Controllers.Main.warnLicenseUsersExceeded": "Вы дасягнулі абмежавання па адначасовай колькасці падлучэнняў да рэдактараў %1.
Звяжыцеся з адміністратарам, каб даведацца больш.", "DE.Controllers.Main.warnNoLicense": "Вы дасягнулі абмежавання па адначасовай колькасці падлучэнняў да рэдактараў %1.Гэты дакумент будзе адкрыты для прагляду.
Напішыце ў аддзел продажу %1,каб абмеркаваць асабістыя ўмовы ліцэнзіявання.", "DE.Controllers.Main.warnNoLicenseUsers": "Вы дасягнулі абмежавання па адначасовай колькасці падлучэнняў да рэдактараў %1.
Напішыце ў аддзел продажу %1,каб абмеркаваць асабістыя ўмовы ліцэнзіявання.", @@ -810,6 +824,7 @@ "DE.Controllers.Toolbar.textMatrix": "Матрыцы", "DE.Controllers.Toolbar.textOperator": "Аператары", "DE.Controllers.Toolbar.textRadical": "Радыкалы", + "DE.Controllers.Toolbar.textRecentlyUsed": "Апошнія выкарыстаныя", "DE.Controllers.Toolbar.textScript": "Індэксы", "DE.Controllers.Toolbar.textSymbols": "Сімвалы", "DE.Controllers.Toolbar.textWarning": "Увага", @@ -1095,7 +1110,7 @@ "DE.Controllers.Toolbar.txtSymbol_mu": "Мю", "DE.Controllers.Toolbar.txtSymbol_nabla": "Набла", "DE.Controllers.Toolbar.txtSymbol_neq": "Не роўна", - "DE.Controllers.Toolbar.txtSymbol_ni": "Утрымлівае як чальца", + "DE.Controllers.Toolbar.txtSymbol_ni": "Утрымлівае як член", "DE.Controllers.Toolbar.txtSymbol_not": "Знак адмаўлення", "DE.Controllers.Toolbar.txtSymbol_notexists": "Не існуе", "DE.Controllers.Toolbar.txtSymbol_nu": "Ню", @@ -1323,6 +1338,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": "Выдаліць гіперспасылку", @@ -1351,6 +1367,7 @@ "DE.Views.DocumentHolder.textArrangeForward": "Перамясціць уперад", "DE.Views.DocumentHolder.textArrangeFront": "Перанесці на пярэдні план", "DE.Views.DocumentHolder.textCells": "Ячэйкі", + "DE.Views.DocumentHolder.textCol": "Выдаліць увесь слупок", "DE.Views.DocumentHolder.textContentControls": "Кіраванне змесцівам", "DE.Views.DocumentHolder.textContinueNumbering": "Працягнуць нумарацыю", "DE.Views.DocumentHolder.textCopy": "Капіяваць", @@ -1369,6 +1386,7 @@ "DE.Views.DocumentHolder.textFromStorage": "Са сховішча", "DE.Views.DocumentHolder.textFromUrl": "Па URL", "DE.Views.DocumentHolder.textJoinList": "Аб’яднаць з папярэднім спісам", + "DE.Views.DocumentHolder.textLeft": "Ячэйкі са зрухам улева", "DE.Views.DocumentHolder.textNest": "Уставіць табліцу", "DE.Views.DocumentHolder.textNextPage": "Наступная старонка", "DE.Views.DocumentHolder.textNumberingValue": "Пачатковае значэнне", @@ -1377,10 +1395,12 @@ "DE.Views.DocumentHolder.textRefreshField": "Абнавіць поле", "DE.Views.DocumentHolder.textRemove": "Выдаліць", "DE.Views.DocumentHolder.textRemoveControl": "Выдаліць элемент кіравання змесцівам", + "DE.Views.DocumentHolder.textRemPicture": "Выдаліць выяву", "DE.Views.DocumentHolder.textReplace": "Замяніць выяву", "DE.Views.DocumentHolder.textRotate": "Паварочванне", "DE.Views.DocumentHolder.textRotate270": "Павярнуць улева на 90°", "DE.Views.DocumentHolder.textRotate90": "Павярнуць управа на 90°", + "DE.Views.DocumentHolder.textRow": "Выдаліць увесь радок", "DE.Views.DocumentHolder.textSeparateList": "Падзяліць спіс", "DE.Views.DocumentHolder.textSettings": "Налады", "DE.Views.DocumentHolder.textSeveral": "Некалькі радкоў/слупкоў", @@ -1392,6 +1412,7 @@ "DE.Views.DocumentHolder.textShapeAlignTop": "Выраўнаваць па верхняму краю", "DE.Views.DocumentHolder.textStartNewList": "Распачаць новы спіс", "DE.Views.DocumentHolder.textStartNumberingFrom": "Вызначыць першапачатковае значэнне", + "DE.Views.DocumentHolder.textTitleCellsRemove": "Выдаліць ячэйкі", "DE.Views.DocumentHolder.textTOC": "Змест", "DE.Views.DocumentHolder.textTOCSettings": "Налады зместу", "DE.Views.DocumentHolder.textUndo": "Адрабіць", @@ -1648,11 +1669,26 @@ "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Паказваць апавяшчэнне", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Адключыць усе макрасы з апавяшчэннем", "DE.Views.FileMenuPanels.Settings.txtWin": "як Windows", + "DE.Views.FormSettings.textAspect": "Захоўваць прапорцыі", "DE.Views.FormSettings.textAutofit": "Аўтазапаўненне", + "DE.Views.FormSettings.textBackgroundColor": "Колер фону", "DE.Views.FormSettings.textColor": "Колер межаў", + "DE.Views.FormSettings.textCombobox": "Поле са спісам", "DE.Views.FormSettings.textDelete": "Выдаліць", "DE.Views.FormSettings.textFromFile": "З файла", + "DE.Views.FormSettings.textFromStorage": "Са сховішча", + "DE.Views.FormSettings.textFromUrl": "Па URL", + "DE.Views.FormSettings.textNever": "Ніколі", "DE.Views.FormSettings.textNoBorder": "Без межаў", + "DE.Views.FormSettings.textPlaceholder": "Запаўняльнік", + "DE.Views.FormSettings.textRequired": "Патрабуецца", + "DE.Views.FormSettings.textSelectImage": "Абраць выяву", + "DE.Views.FormSettings.textTipDown": "Перамясціць уніз", + "DE.Views.FormSettings.textTipUp": "Перамясціць уверх", + "DE.Views.FormsTab.capBtnComboBox": "Поле са спісам", + "DE.Views.FormsTab.textNoHighlight": "Без падсвятлення", + "DE.Views.FormsTab.tipImageField": "Уставіць выяву", + "DE.Views.FormsTab.txtUntitled": "Без назвы", "DE.Views.HeaderFooterSettings.textBottomCenter": "Знізу па цэнтры", "DE.Views.HeaderFooterSettings.textBottomLeft": "Знізу злева", "DE.Views.HeaderFooterSettings.textBottomPage": "Унізе старонкі", @@ -1703,6 +1739,7 @@ "DE.Views.ImageSettings.textHintFlipV": "Адлюстраваць па вертыкалі", "DE.Views.ImageSettings.textInsert": "Замяніць выяву", "DE.Views.ImageSettings.textOriginalSize": "Актуальны памер", + "DE.Views.ImageSettings.textRecentlyUsed": "Апошнія выкарыстаныя", "DE.Views.ImageSettings.textRotate90": "Павярнуць на 90°", "DE.Views.ImageSettings.textRotation": "Паварочванне", "DE.Views.ImageSettings.textSize": "Памер", @@ -1966,6 +2003,9 @@ "DE.Views.PageSizeDialog.textWidth": "Шырыня", "DE.Views.PageSizeDialog.txtCustom": "Адвольны", "DE.Views.ParagraphSettings.strIndent": "Водступы", + "DE.Views.ParagraphSettings.strIndentsLeftText": "Злева", + "DE.Views.ParagraphSettings.strIndentsRightText": "Справа", + "DE.Views.ParagraphSettings.strIndentsSpecial": "Адмысловы", "DE.Views.ParagraphSettings.strLineHeight": "Прамежак паміж радкамі", "DE.Views.ParagraphSettings.strParagraphSpacing": "Прамежак паміж абзацамі", "DE.Views.ParagraphSettings.strSomeParagraphSpace": "Не дадаваць прамежак паміж абзацамі аднаго стылю", @@ -2095,6 +2135,7 @@ "DE.Views.ShapeSettings.textPatternFill": "Узор", "DE.Views.ShapeSettings.textPosition": "Пазіцыя", "DE.Views.ShapeSettings.textRadial": "Радыяльны", + "DE.Views.ShapeSettings.textRecentlyUsed": "Апошнія выкарыстаныя", "DE.Views.ShapeSettings.textRotate90": "Павярнуць на 90°", "DE.Views.ShapeSettings.textRotation": "Паварочванне", "DE.Views.ShapeSettings.textSelectImage": "Абраць выяву", @@ -2175,6 +2216,7 @@ "DE.Views.TableOfContentsSettings.textRadioStyles": "Абраныя стылі", "DE.Views.TableOfContentsSettings.textStyle": "Стыль", "DE.Views.TableOfContentsSettings.textStyles": "Стылі", + "DE.Views.TableOfContentsSettings.textTable": "Табліца", "DE.Views.TableOfContentsSettings.textTitle": "Змест", "DE.Views.TableOfContentsSettings.txtClassic": "Класічны", "DE.Views.TableOfContentsSettings.txtCurrent": "Бягучы", @@ -2309,6 +2351,7 @@ "DE.Views.TableSettingsAdvanced.txtNoBorders": "Без межаў", "DE.Views.TableSettingsAdvanced.txtPercent": "Адсотак", "DE.Views.TableSettingsAdvanced.txtPt": "Пункт", + "DE.Views.TableToTextDialog.textOther": "Іншае", "DE.Views.TextArtSettings.strColor": "Колер", "DE.Views.TextArtSettings.strFill": "Заліўка", "DE.Views.TextArtSettings.strSize": "Памер", @@ -2334,6 +2377,8 @@ "DE.Views.TextArtSettings.txtNoBorders": "Без абвядзення", "DE.Views.TextToTableDialog.textColumns": "Слупкі", "DE.Views.TextToTableDialog.textOther": "Іншае", + "DE.Views.TextToTableDialog.textPara": "Абзацы", + "DE.Views.TextToTableDialog.textTableSize": "Памеры табліцы", "DE.Views.TextToTableDialog.txtAutoText": "Аўта", "DE.Views.Toolbar.capBtnAddComment": "Дадаць каментар", "DE.Views.Toolbar.capBtnBlankPage": "Пустая старонка", @@ -2369,6 +2414,9 @@ "DE.Views.Toolbar.mniEditFooter": "Рэдагаваць ніжні калантытул", "DE.Views.Toolbar.mniEditHeader": "Рэдагаваць верхні калантытул", "DE.Views.Toolbar.mniEraseTable": "Ачысціць табліцу", + "DE.Views.Toolbar.mniFromFile": "З файла", + "DE.Views.Toolbar.mniFromStorage": "Са сховішча", + "DE.Views.Toolbar.mniFromUrl": "Па URL", "DE.Views.Toolbar.mniHiddenBorders": "Схаваныя межы табліц", "DE.Views.Toolbar.mniHiddenChars": "Недрукуемыя сімвалы", "DE.Views.Toolbar.mniHighlightControls": "Налады падсвятлення", @@ -2439,12 +2487,13 @@ "DE.Views.Toolbar.textSuppressForCurrentParagraph": "Адключыць для бягучага абзаца", "DE.Views.Toolbar.textTabCollaboration": "Сумесная праца", "DE.Views.Toolbar.textTabFile": "Файл", - "DE.Views.Toolbar.textTabHome": "Хатняя", - "DE.Views.Toolbar.textTabInsert": "Уставіць", + "DE.Views.Toolbar.textTabHome": "Асноўныя функцыі", + "DE.Views.Toolbar.textTabInsert": "Устаўка", "DE.Views.Toolbar.textTabLayout": "Макет", "DE.Views.Toolbar.textTabLinks": "Спасылкі", "DE.Views.Toolbar.textTabProtect": "Абарона", "DE.Views.Toolbar.textTabReview": "Перагляд", + "DE.Views.Toolbar.textTabView": "Выгляд", "DE.Views.Toolbar.textTitleError": "Памылка", "DE.Views.Toolbar.textToCurrent": "На бягучай пазіцыі", "DE.Views.Toolbar.textTop": "Верх:", @@ -2534,6 +2583,8 @@ "DE.Views.Toolbar.txtScheme7": "Справядлівасць", "DE.Views.Toolbar.txtScheme8": "Плаваючая", "DE.Views.Toolbar.txtScheme9": "Ліцейня", + "DE.Views.ViewTab.textNavigation": "Навігацыя", + "DE.Views.ViewTab.textZoom": "Маштаб", "DE.Views.WatermarkSettingsDialog.textAuto": "Аўта", "DE.Views.WatermarkSettingsDialog.textBold": "Тоўсты", "DE.Views.WatermarkSettingsDialog.textColor": "Колер тэксту", diff --git a/apps/documenteditor/main/locale/ca.json b/apps/documenteditor/main/locale/ca.json index 2d04a34a1..a09b28f8e 100644 --- a/apps/documenteditor/main/locale/ca.json +++ b/apps/documenteditor/main/locale/ca.json @@ -332,7 +332,7 @@ "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.textStart": "Inici", "Common.Views.Plugins.textStop": "Atura", "Common.Views.Protection.hintAddPwd": "Xifra amb contrasenya", "Common.Views.Protection.hintPwd": "Canvia o suprimeix la contrasenya", @@ -1870,7 +1870,7 @@ "DE.Views.HeaderFooterSettings.textBottomRight": "Part inferior dreta", "DE.Views.HeaderFooterSettings.textDiffFirst": "Primera pàgina diferent", "DE.Views.HeaderFooterSettings.textDiffOdd": "Pàgines senars i parells diferents", - "DE.Views.HeaderFooterSettings.textFrom": "Començar a", + "DE.Views.HeaderFooterSettings.textFrom": "Inicia a", "DE.Views.HeaderFooterSettings.textHeaderFromBottom": "Peu de pàgina inferior", "DE.Views.HeaderFooterSettings.textHeaderFromTop": "Capçalera de dalt", "DE.Views.HeaderFooterSettings.textInsertCurrent": "Insereix en la posició actual", @@ -2027,7 +2027,7 @@ "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ça a", + "DE.Views.LineNumbersDialog.textStartAt": "Inicia a", "DE.Views.LineNumbersDialog.textTitle": "Números de línia", "DE.Views.LineNumbersDialog.txtAutoText": "Automàtic", "DE.Views.Links.capBtnBookmarks": "Marcador", @@ -2157,7 +2157,7 @@ "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çar a", + "DE.Views.NoteSettingsDialog.textStart": "Inicia a", "DE.Views.NoteSettingsDialog.textTextBottom": "Per sota del text", "DE.Views.NoteSettingsDialog.textTitle": "Configuració de notes", "DE.Views.NotesRemoveDialog.textEnd": "Suprimeix totes les notes al final", diff --git a/apps/documenteditor/main/locale/el.json b/apps/documenteditor/main/locale/el.json index 691254cd1..3500d876c 100644 --- a/apps/documenteditor/main/locale/el.json +++ b/apps/documenteditor/main/locale/el.json @@ -168,6 +168,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Νέο", "Common.UI.ExtendedColorDialog.textRGBErr": "Η τιμή που βάλατε δεν είναι αποδεκτή.
Παρακαλούμε βάλτε μια αριθμητική τιμή μεταξύ 0 και 255.", "Common.UI.HSBColorPicker.textNoColor": "Χωρίς Χρώμα", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Απόκρυψη συνθηματικού", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Εμφάνιση συνθηματικού", "Common.UI.SearchDialog.textHighlight": "Επισήμανση αποτελεσμάτων", "Common.UI.SearchDialog.textMatchCase": "Με διάκριση πεζών - κεφαλαίων γραμμάτων", "Common.UI.SearchDialog.textReplaceDef": "Εισάγετε το κείμενο αντικατάστασης", @@ -211,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Αυτόματες λίστες κουκκίδων", "Common.Views.AutoCorrectDialog.textBy": "Από", "Common.Views.AutoCorrectDialog.textDelete": "Διαγραφή", + "Common.Views.AutoCorrectDialog.textFLCells": "Να γίνει κεφαλαίο το πρώτο γράμμα των κελιών του πίνακα", "Common.Views.AutoCorrectDialog.textFLSentence": "Κεφαλαιοποιήστε το πρώτο γράμμα των προτάσεων", "Common.Views.AutoCorrectDialog.textHyperlink": "Μονοπάτια δικτύου και διαδικτύου με υπερσυνδέσμους", "Common.Views.AutoCorrectDialog.textHyphens": "Παύλες (--) με πλατιά παύλα (—)", @@ -236,12 +239,14 @@ "Common.Views.Comments.mniAuthorDesc": "Συγγραφέας Ω έως Α", "Common.Views.Comments.mniDateAsc": "Παλαιότερο", "Common.Views.Comments.mniDateDesc": "Νεότερο", + "Common.Views.Comments.mniFilterGroups": "Φιλτράρισμα κατά Ομάδα", "Common.Views.Comments.mniPositionAsc": "Από πάνω", "Common.Views.Comments.mniPositionDesc": "Από κάτω", "Common.Views.Comments.textAdd": "Προσθήκη", "Common.Views.Comments.textAddComment": "Προσθήκη Σχολίου", "Common.Views.Comments.textAddCommentToDoc": "Προσθήκη Σχολίου στο Έγγραφο", "Common.Views.Comments.textAddReply": "Προσθήκη Απάντησης", + "Common.Views.Comments.textAll": "Όλα", "Common.Views.Comments.textAnonym": "Επισκέπτης", "Common.Views.Comments.textCancel": "Ακύρωση", "Common.Views.Comments.textClose": "Κλείσιμο", @@ -255,6 +260,7 @@ "Common.Views.Comments.textResolve": "Επίλυση", "Common.Views.Comments.textResolved": "Επιλύθηκε", "Common.Views.Comments.textSort": "Ταξινόμηση σχολίων", + "Common.Views.Comments.textViewResolved": "Δεν έχετε άδεια να ανοίξετε ξανά το σχόλιο", "Common.Views.CopyWarningDialog.textDontShow": "Να μην εμφανίζεται αυτό το μήνυμα ξανά", "Common.Views.CopyWarningDialog.textMsg": "Η αντιγραφή, η αποκοπή και η επικόλληση μέσω των κουμπιών της εργαλειοθήκης του συντάκτη καθώς και οι ενέργειες του μενού συμφραζομένων εφαρμόζονται μόνο εντός αυτής της καρτέλας.

Για αντιγραφή ή επικόλληση από ή προς εφαρμογές εκτός της καρτέλας χρησιμοποιήστε τους ακόλουθους συνδυασμούς πλήκτρων:", "Common.Views.CopyWarningDialog.textTitle": "Ενέργειες Αντιγραφής, Αποκοπής και Επικόλλησης", @@ -431,6 +437,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Άνοιγμα Ξανά", "Common.Views.ReviewPopover.textReply": "Απάντηση", "Common.Views.ReviewPopover.textResolve": "Επίλυση", + "Common.Views.ReviewPopover.textViewResolved": "Δεν έχετε άδεια να ανοίξετε ξανά το σχόλιο", "Common.Views.ReviewPopover.txtAccept": "Αποδοχή", "Common.Views.ReviewPopover.txtDeleteTip": "Διαγραφή", "Common.Views.ReviewPopover.txtEditTip": "Επεξεργασία", @@ -602,6 +609,7 @@ "DE.Controllers.Main.textLongName": "Εισάγετε ένα όνομα μικρότερο από 128 χαρακτήρες.", "DE.Controllers.Main.textNoLicenseTitle": "Το όριο άδειας συμπληρώθηκε.", "DE.Controllers.Main.textPaidFeature": "Δυνατότητα επί πληρωμή", + "DE.Controllers.Main.textReconnect": "Η σύνδεση αποκαταστάθηκε", "DE.Controllers.Main.textRemember": "Να θυμάσαι την επιλογή μου για όλα τα αρχεία", "DE.Controllers.Main.textRenameError": "Το όνομα χρήστη δεν μπορεί να είναι κενό.", "DE.Controllers.Main.textRenameLabel": "Εισάγετε ένα όνομα για συνεργατική χρήση", @@ -879,6 +887,7 @@ "DE.Controllers.Main.warnProcessRightsChange": "Σας έχει απαγορευτεί το δικαίωμα επεξεργασίας του αρχείου.", "DE.Controllers.Navigation.txtBeginning": "Έναρξη εγγράφου", "DE.Controllers.Navigation.txtGotoBeginning": "Μετάβαση στην αρχή του εγγράφου", + "DE.Controllers.Statusbar.textDisconnect": "Η σύνδεση χάθηκε
Απόπειρα επανασύνδεσης. Παρακαλούμε, ελέγξτε τις ρυθμίσεις σύνδεσης.", "DE.Controllers.Statusbar.textHasChanges": "Έχουν εντοπιστεί νέες αλλαγές", "DE.Controllers.Statusbar.textSetTrackChanges": "Βρίσκεστε σε κατάσταση Παρακολούθησης Αλλαγών", "DE.Controllers.Statusbar.textTrackChanges": "Το έγγραφο είναι ανοιχτό σε κατάσταση Παρακολούθησης Αλλαγών", @@ -902,10 +911,22 @@ "DE.Controllers.Toolbar.textMatrix": "Πίνακες", "DE.Controllers.Toolbar.textOperator": "Τελεστές", "DE.Controllers.Toolbar.textRadical": "Ρίζες", + "DE.Controllers.Toolbar.textRecentlyUsed": "Πρόσφατα Χρησιμοποιημένα", "DE.Controllers.Toolbar.textScript": "Δέσμες ενεργειών", "DE.Controllers.Toolbar.textSymbols": "Σύμβολα", "DE.Controllers.Toolbar.textTabForms": "Φόρμες", "DE.Controllers.Toolbar.textWarning": "Προειδοποίηση", + "DE.Controllers.Toolbar.tipMarkersArrow": "Κουκίδες βέλη", + "DE.Controllers.Toolbar.tipMarkersCheckmark": "Κουκίδες τσεκαρίσματος", + "DE.Controllers.Toolbar.tipMarkersDash": "Κουκίδες παύλας", + "DE.Controllers.Toolbar.tipMarkersFRhombus": "Κουκίδες πλήρους ρόμβου", + "DE.Controllers.Toolbar.tipMarkersFRound": "Κουκίδες πλήρεις στρογγυλές", + "DE.Controllers.Toolbar.tipMarkersFSquare": "Κουκίδες πλήρεις τετράγωνες", + "DE.Controllers.Toolbar.tipMarkersHRound": "Κουκίδες κούφιες στρογγυλές", + "DE.Controllers.Toolbar.tipMarkersStar": "Κουκίδες αστέρια", + "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Κουκίδες αριθμημένες πολυεπίπεδες", + "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Κουκίδες συμβόλων πολυεπίπεδες", + "DE.Controllers.Toolbar.tipMultiLevelVarious": "Κουκίδες πολλαπλώς αριθμημένες πολυεπίπεδες", "DE.Controllers.Toolbar.txtAccent_Accent": "Οξεία", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Από πάνω βέλος δεξιά-αριστερά", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Από πάνω βέλος προς αριστερά", @@ -1281,9 +1302,9 @@ "DE.Views.ChartSettings.textUndock": "Απαγκίστρωση από τον πίνακα", "DE.Views.ChartSettings.textWidth": "Πλάτος", "DE.Views.ChartSettings.textWrap": "Τεχνοτροπία Αναδίπλωσης", - "DE.Views.ChartSettings.txtBehind": "Πίσω", - "DE.Views.ChartSettings.txtInFront": "Στην πρόσοψη", - "DE.Views.ChartSettings.txtInline": "Εντός κειμένου", + "DE.Views.ChartSettings.txtBehind": "Πίσω από το Κείμενο", + "DE.Views.ChartSettings.txtInFront": "Μπροστά από το Κείμενο", + "DE.Views.ChartSettings.txtInline": "Εντός Κειμένου", "DE.Views.ChartSettings.txtSquare": "Τετράγωνο", "DE.Views.ChartSettings.txtThrough": "Διά μέσου", "DE.Views.ChartSettings.txtTight": "Σφιχτό", @@ -1457,6 +1478,7 @@ "DE.Views.DocumentHolder.textDistributeCols": "Κατανομή στηλών", "DE.Views.DocumentHolder.textDistributeRows": "Κατανομή γραμμών", "DE.Views.DocumentHolder.textEditControls": "Ρυθμίσεις ελέγχου περιεχομένου", + "DE.Views.DocumentHolder.textEditPoints": "Επεξεργασία Σημείων", "DE.Views.DocumentHolder.textEditWrapBoundary": "Επεξεργασία Ορίων Αναδίπλωσης", "DE.Views.DocumentHolder.textFlipH": "Οριζόντια Περιστροφή", "DE.Views.DocumentHolder.textFlipV": "Κατακόρυφη Περιστροφή", @@ -1505,6 +1527,14 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Ανανέωση πίνακα περιεχομένων", "DE.Views.DocumentHolder.textWrap": "Τεχνοτροπία Αναδίπλωσης", "DE.Views.DocumentHolder.tipIsLocked": "Αυτό το στοιχείο επεξεργάζεται αυτήν τη στιγμή από άλλο χρήστη.", + "DE.Views.DocumentHolder.tipMarkersArrow": "Κουκίδες βέλη", + "DE.Views.DocumentHolder.tipMarkersCheckmark": "Κουκίδες τσεκαρίσματος", + "DE.Views.DocumentHolder.tipMarkersDash": "Κουκίδες παύλας", + "DE.Views.DocumentHolder.tipMarkersFRhombus": "Κουκίδες πλήρους ρόμβου", + "DE.Views.DocumentHolder.tipMarkersFRound": "Κουκίδες πλήρεις στρογγυλές", + "DE.Views.DocumentHolder.tipMarkersFSquare": "Κουκίδες πλήρεις τετράγωνες", + "DE.Views.DocumentHolder.tipMarkersHRound": "Κουκίδες κούφιες στρογγυλές", + "DE.Views.DocumentHolder.tipMarkersStar": "Κουκίδες αστέρια", "DE.Views.DocumentHolder.toDictionaryText": "Προσθήκη στο Λεξικό", "DE.Views.DocumentHolder.txtAddBottom": "Προσθήκη κάτω περιγράμματος", "DE.Views.DocumentHolder.txtAddFractionBar": "Προσθήκη γραμμής κλάσματος", @@ -1516,7 +1546,7 @@ "DE.Views.DocumentHolder.txtAddTop": "Προσθήκη επάνω περιγράμματος", "DE.Views.DocumentHolder.txtAddVer": "Προσθήκη κατακόρυφης γραμμής", "DE.Views.DocumentHolder.txtAlignToChar": "Στοίχιση σε χαρακτήρα", - "DE.Views.DocumentHolder.txtBehind": "Πίσω", + "DE.Views.DocumentHolder.txtBehind": "Πίσω από το Κείμενο", "DE.Views.DocumentHolder.txtBorderProps": "Ιδιότητες περιγράμματος", "DE.Views.DocumentHolder.txtBottom": "Κάτω", "DE.Views.DocumentHolder.txtColumnAlign": "Στοίχιση στήλης", @@ -1552,8 +1582,8 @@ "DE.Views.DocumentHolder.txtHideTopLimit": "Απόκρυψη άνω ορίου", "DE.Views.DocumentHolder.txtHideVer": "Απόκρυψη κατακόρυφης γραμμής", "DE.Views.DocumentHolder.txtIncreaseArg": "Αύξηση μεγέθους ορίσματος", - "DE.Views.DocumentHolder.txtInFront": "Στην πρόσοψη", - "DE.Views.DocumentHolder.txtInline": "Εντός κειμένου", + "DE.Views.DocumentHolder.txtInFront": "Μπροστά από το Κείμενο", + "DE.Views.DocumentHolder.txtInline": "Εντός Κειμένου", "DE.Views.DocumentHolder.txtInsertArgAfter": "Εισαγωγή ορίσματος μετά", "DE.Views.DocumentHolder.txtInsertArgBefore": "Εισαγωγή ορίσματος πριν", "DE.Views.DocumentHolder.txtInsertBreak": "Εισαγωγή χειροκίνητης αλλαγής", @@ -1871,6 +1901,7 @@ "DE.Views.ImageSettings.textCrop": "Περικοπή", "DE.Views.ImageSettings.textCropFill": "Γέμισμα", "DE.Views.ImageSettings.textCropFit": "Προσαρμογή", + "DE.Views.ImageSettings.textCropToShape": "Περικοπή στο σχήμα", "DE.Views.ImageSettings.textEdit": "Επεξεργασία", "DE.Views.ImageSettings.textEditObject": "Επεξεργασία Αντικειμένου", "DE.Views.ImageSettings.textFitMargins": "Προσαρμογή στο Περιθώριο", @@ -1885,14 +1916,15 @@ "DE.Views.ImageSettings.textHintFlipV": "Κατακόρυφη Περιστροφή", "DE.Views.ImageSettings.textInsert": "Αντικατάσταση Εικόνας", "DE.Views.ImageSettings.textOriginalSize": "Πραγματικό Μέγεθος", + "DE.Views.ImageSettings.textRecentlyUsed": "Πρόσφατα Χρησιμοποιημένα", "DE.Views.ImageSettings.textRotate90": "Περιστροφή 90°", "DE.Views.ImageSettings.textRotation": "Περιστροφή", "DE.Views.ImageSettings.textSize": "Μέγεθος", "DE.Views.ImageSettings.textWidth": "Πλάτος", "DE.Views.ImageSettings.textWrap": "Τεχνοτροπία Αναδίπλωσης", - "DE.Views.ImageSettings.txtBehind": "Πίσω", - "DE.Views.ImageSettings.txtInFront": "Στην πρόσοψη", - "DE.Views.ImageSettings.txtInline": "Εντός κειμένου", + "DE.Views.ImageSettings.txtBehind": "Πίσω από το Κείμενο", + "DE.Views.ImageSettings.txtInFront": "Μπροστά από το Κείμενο", + "DE.Views.ImageSettings.txtInline": "Εντός Κειμένου", "DE.Views.ImageSettings.txtSquare": "Τετράγωνο", "DE.Views.ImageSettings.txtThrough": "Διά μέσου", "DE.Views.ImageSettings.txtTight": "Σφιχτό", @@ -1965,9 +1997,9 @@ "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Πλάτη & Βέλη", "DE.Views.ImageSettingsAdvanced.textWidth": "Πλάτος", "DE.Views.ImageSettingsAdvanced.textWrap": "Τεχνοτροπία Αναδίπλωσης", - "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Πίσω", - "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Στην πρόσοψη", - "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "Εντός κειμένου", + "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Πίσω από το Κείμενο", + "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Μπροστά από το Κείμενο", + "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "Εντός Κειμένου", "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Τετράγωνο", "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Διά μέσου", "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Σφιχτό", @@ -2155,6 +2187,11 @@ "DE.Views.PageSizeDialog.textTitle": "Μέγεθος Σελίδας", "DE.Views.PageSizeDialog.textWidth": "Πλάτος", "DE.Views.PageSizeDialog.txtCustom": "Προσαρμοσμένο", + "DE.Views.PageThumbnails.textClosePanel": "Κλείσιμο προεπισκοπήσεων σελίδων", + "DE.Views.PageThumbnails.textHighlightVisiblePart": "Επισήμανση ορατού τμήματος σελίδας", + "DE.Views.PageThumbnails.textPageThumbnails": "Προεπισκοπήσεις Σελίδων", + "DE.Views.PageThumbnails.textThumbnailsSettings": "Ρυθμίσεις προεπισκοπήσεων", + "DE.Views.PageThumbnails.textThumbnailsSize": "Μέγεθος προεπισκοπήσεων", "DE.Views.ParagraphSettings.strIndent": "Εσοχές", "DE.Views.ParagraphSettings.strIndentsLeftText": "Αριστερά", "DE.Views.ParagraphSettings.strIndentsRightText": "Δεξιά", @@ -2290,6 +2327,7 @@ "DE.Views.ShapeSettings.textPatternFill": "Μοτίβο", "DE.Views.ShapeSettings.textPosition": "Θέση", "DE.Views.ShapeSettings.textRadial": "Ακτινική", + "DE.Views.ShapeSettings.textRecentlyUsed": "Πρόσφατα Χρησιμοποιημένα", "DE.Views.ShapeSettings.textRotate90": "Περιστροφή 90°", "DE.Views.ShapeSettings.textRotation": "Περιστροφή", "DE.Views.ShapeSettings.textSelectImage": "Επιλογή Εικόνας", @@ -2301,7 +2339,7 @@ "DE.Views.ShapeSettings.textWrap": "Τεχνοτροπία Αναδίπλωσης", "DE.Views.ShapeSettings.tipAddGradientPoint": "Προσθήκη σημείου διαβάθμισης", "DE.Views.ShapeSettings.tipRemoveGradientPoint": "Αφαίρεση σημείου διαβάθμισης", - "DE.Views.ShapeSettings.txtBehind": "Πίσω", + "DE.Views.ShapeSettings.txtBehind": "Πίσω από το Κείμενο", "DE.Views.ShapeSettings.txtBrownPaper": "Καφέ Χαρτί", "DE.Views.ShapeSettings.txtCanvas": "Καμβάς", "DE.Views.ShapeSettings.txtCarton": "Χαρτόνι", @@ -2309,8 +2347,8 @@ "DE.Views.ShapeSettings.txtGrain": "Κόκκος", "DE.Views.ShapeSettings.txtGranite": "Γρανίτης", "DE.Views.ShapeSettings.txtGreyPaper": "Γκρι Χαρτί", - "DE.Views.ShapeSettings.txtInFront": "Στην πρόσοψη", - "DE.Views.ShapeSettings.txtInline": "Εντός κειμένου", + "DE.Views.ShapeSettings.txtInFront": "Μπροστά από το Κείμενο", + "DE.Views.ShapeSettings.txtInline": "Εντός Κειμένου", "DE.Views.ShapeSettings.txtKnit": "Πλέκω", "DE.Views.ShapeSettings.txtLeather": "Δέρμα", "DE.Views.ShapeSettings.txtNoBorders": "Χωρίς Γραμμή", @@ -2570,7 +2608,7 @@ "DE.Views.Toolbar.capBtnInsControls": "Ρυθμίσεις Περιεχομένου", "DE.Views.Toolbar.capBtnInsDropcap": "Αρχίγραμμα", "DE.Views.Toolbar.capBtnInsEquation": "Εξίσωση", - "DE.Views.Toolbar.capBtnInsHeader": "Κεφαλίδα/Υποσέλιδο", + "DE.Views.Toolbar.capBtnInsHeader": "Κεφαλίδα & Υποσέλιδο", "DE.Views.Toolbar.capBtnInsImage": "Εικόνα", "DE.Views.Toolbar.capBtnInsPagebreak": "Αλλαγές", "DE.Views.Toolbar.capBtnInsShape": "Σχήμα", @@ -2681,6 +2719,7 @@ "DE.Views.Toolbar.textTabLinks": "Παραπομπές", "DE.Views.Toolbar.textTabProtect": "Προστασία", "DE.Views.Toolbar.textTabReview": "Επισκόπηση", + "DE.Views.Toolbar.textTabView": "Προβολή", "DE.Views.Toolbar.textTitleError": "Σφάλμα", "DE.Views.Toolbar.textToCurrent": "Στην τρέχουσα θέση", "DE.Views.Toolbar.textTop": "Πάνω:", @@ -2772,6 +2811,15 @@ "DE.Views.Toolbar.txtScheme7": "Μετοχή", "DE.Views.Toolbar.txtScheme8": "Αιώρηση", "DE.Views.Toolbar.txtScheme9": "Χυτήριο", + "DE.Views.ViewTab.textAlwaysShowToolbar": "Να εμφανίζεται πάντα η γραμμή εργαλείων", + "DE.Views.ViewTab.textDarkDocument": "Σκούρο έγγραφο", + "DE.Views.ViewTab.textFitToPage": "Προσαρμογή στη Σελίδα", + "DE.Views.ViewTab.textFitToWidth": "Προσαρμογή στο Πλάτος", + "DE.Views.ViewTab.textInterfaceTheme": "Θέμα διεπαφής", + "DE.Views.ViewTab.textNavigation": "Πλοήγηση", + "DE.Views.ViewTab.textRulers": "Χάρακες", + "DE.Views.ViewTab.textStatusBar": "Γραμμή Κατάστασης", + "DE.Views.ViewTab.textZoom": "Εστίαση", "DE.Views.WatermarkSettingsDialog.textAuto": "Αυτόματα", "DE.Views.WatermarkSettingsDialog.textBold": "Έντονα", "DE.Views.WatermarkSettingsDialog.textColor": "Χρώμα κειμένου", diff --git a/apps/documenteditor/main/locale/es.json b/apps/documenteditor/main/locale/es.json index 662510ecc..35122a219 100644 --- a/apps/documenteditor/main/locale/es.json +++ b/apps/documenteditor/main/locale/es.json @@ -50,7 +50,7 @@ "Common.Controllers.ReviewChanges.textNum": "Cambiar numeración", "Common.Controllers.ReviewChanges.textOff": "{0} ya no utiliza el seguimiento de cambios.", "Common.Controllers.ReviewChanges.textOffGlobal": "{0} ha deshabilitado el seguimiento de cambios para todos.", - "Common.Controllers.ReviewChanges.textOn": "{0} está usando ahora el seguimiento de cambios.", + "Common.Controllers.ReviewChanges.textOn": "{0} está usando el seguimiento de cambios.", "Common.Controllers.ReviewChanges.textOnGlobal": "{0} ha habilitado el seguimiento de cambios para todos.", "Common.Controllers.ReviewChanges.textParaDeleted": "Párrafo eliminado", "Common.Controllers.ReviewChanges.textParaFormatted": "Paragraph Formatted", @@ -168,6 +168,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Nuevo", "Common.UI.ExtendedColorDialog.textRGBErr": "El valor introducido es incorrecto.
Por favor, introduzca un valor numérico de 0 a 225.", "Common.UI.HSBColorPicker.textNoColor": "Sin color", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Ocultar la contraseña", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Mostrar la contraseña", "Common.UI.SearchDialog.textHighlight": "Resaltar resultados", "Common.UI.SearchDialog.textMatchCase": "Sensible a mayúsculas y minúsculas", "Common.UI.SearchDialog.textReplaceDef": "Introduzca el texto de sustitución", @@ -200,7 +202,7 @@ "Common.Views.About.txtAddress": "dirección: ", "Common.Views.About.txtLicensee": "LICENCIATARIO ", "Common.Views.About.txtLicensor": "LICENCIANTE", - "Common.Views.About.txtMail": "email: ", + "Common.Views.About.txtMail": "correo: ", "Common.Views.About.txtPoweredBy": "Desarrollado por", "Common.Views.About.txtTel": "tel.: ", "Common.Views.About.txtVersion": "Versión ", @@ -211,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Listas con viñetas automáticas", "Common.Views.AutoCorrectDialog.textBy": "Por", "Common.Views.AutoCorrectDialog.textDelete": "Eliminar", + "Common.Views.AutoCorrectDialog.textFLCells": "Poner en mayúsculas la primera letra de las celdas de la tabla", "Common.Views.AutoCorrectDialog.textFLSentence": "Poner en mayúscula la primera letra de una oración", "Common.Views.AutoCorrectDialog.textHyperlink": "Rutas de red e Internet por hipervínculos", "Common.Views.AutoCorrectDialog.textHyphens": "Guiones (--) con guión (—)", @@ -236,12 +239,14 @@ "Common.Views.Comments.mniAuthorDesc": "Autor de Z a A", "Common.Views.Comments.mniDateAsc": "Más antiguo", "Common.Views.Comments.mniDateDesc": "Más reciente", + "Common.Views.Comments.mniFilterGroups": "Filtrar por grupo", "Common.Views.Comments.mniPositionAsc": "Desde arriba", "Common.Views.Comments.mniPositionDesc": "Desde abajo", "Common.Views.Comments.textAdd": "Añadir", "Common.Views.Comments.textAddComment": "Añadir comentario", "Common.Views.Comments.textAddCommentToDoc": "Añadir comentario al documento", "Common.Views.Comments.textAddReply": "Añadir respuesta", + "Common.Views.Comments.textAll": "Todo", "Common.Views.Comments.textAnonym": "Visitante", "Common.Views.Comments.textCancel": "Cancelar", "Common.Views.Comments.textClose": "Cerrar", @@ -255,6 +260,7 @@ "Common.Views.Comments.textResolve": "Resolver", "Common.Views.Comments.textResolved": "Resuelto", "Common.Views.Comments.textSort": "Ordenar comentarios", + "Common.Views.Comments.textViewResolved": "No tiene permiso para volver a abrir el documento", "Common.Views.CopyWarningDialog.textDontShow": "No volver a mostrar este mensaje", "Common.Views.CopyWarningDialog.textMsg": "Se puede realizar las acciones de copiar, cortar y pegar usando los botones en la barra de herramientas y el menú contextual sólo en esta pestaña del editor.

Si quiere copiar o pegar algo fuera de esta pestaña, usa las combinaciones de teclas siguientes:", "Common.Views.CopyWarningDialog.textTitle": "Funciones de Copiar, Cortar y Pegar", @@ -426,11 +432,12 @@ "Common.Views.ReviewPopover.textClose": "Cerrar", "Common.Views.ReviewPopover.textEdit": "OK", "Common.Views.ReviewPopover.textFollowMove": "Seguir movimiento", - "Common.Views.ReviewPopover.textMention": "+mención proporcionará acceso al documento y enviará un correo electrónico", - "Common.Views.ReviewPopover.textMentionNotify": "+mención notificará al usuario por correo electrónico", + "Common.Views.ReviewPopover.textMention": "+mención proporcionará acceso al documento y enviará un correo", + "Common.Views.ReviewPopover.textMentionNotify": "+mención notificará al usuario por correo", "Common.Views.ReviewPopover.textOpenAgain": "Abrir de nuevo", "Common.Views.ReviewPopover.textReply": "Responder", "Common.Views.ReviewPopover.textResolve": "Resolver", + "Common.Views.ReviewPopover.textViewResolved": "No tiene permiso para volver a abrir el documento", "Common.Views.ReviewPopover.txtAccept": "Aceptar", "Common.Views.ReviewPopover.txtDeleteTip": "Eliminar", "Common.Views.ReviewPopover.txtEditTip": "Editar", @@ -528,7 +535,7 @@ "DE.Controllers.Main.errorDirectUrl": "Por favor, verifique el vínculo al documento.
Este vínculo debe ser un vínculo directo al archivo para descargar.", "DE.Controllers.Main.errorEditingDownloadas": "Se produjo un error durante el trabajo con el documento.
Use la opción 'Descargar como...' para guardar la copia de seguridad de este archivo en el disco duro de su computadora.", "DE.Controllers.Main.errorEditingSaveas": "Se produjo un error durante el trabajo con el documento.
Use la opción 'Guardar como...' para guardar la copia de seguridad de este archivo en el disco duro de su computadora.", - "DE.Controllers.Main.errorEmailClient": "No se pudo encontrar ningun cliente de email", + "DE.Controllers.Main.errorEmailClient": "No se pudo encontrar ningun cliente de correo", "DE.Controllers.Main.errorFilePassProtect": "El archivo está protegido por una contraseña y no puede ser abierto.", "DE.Controllers.Main.errorFileSizeExceed": "El tamaño del archivo excede la limitación establecida para su servidor.
Por favor, póngase en contacto con el administrador del Servidor de Documentos para obtener más detalles.", "DE.Controllers.Main.errorForceSave": "Ha ocurrido un error mientras", @@ -602,6 +609,7 @@ "DE.Controllers.Main.textLongName": "Escriba un nombre que tenga menos de 128 caracteres.", "DE.Controllers.Main.textNoLicenseTitle": "Se ha alcanzado el límite de licencias", "DE.Controllers.Main.textPaidFeature": "Función de pago", + "DE.Controllers.Main.textReconnect": "Se ha restablecido la conexión", "DE.Controllers.Main.textRemember": "Recordar mi elección para todos los archivos", "DE.Controllers.Main.textRenameError": "El nombre de usuario no debe estar vacío.", "DE.Controllers.Main.textRenameLabel": "Escriba un nombre que se utilizará para la colaboración", @@ -879,6 +887,7 @@ "DE.Controllers.Main.warnProcessRightsChange": "El derecho de edición del archivo es denegado", "DE.Controllers.Navigation.txtBeginning": "Principio del documento", "DE.Controllers.Navigation.txtGotoBeginning": "Ir al principio de", + "DE.Controllers.Statusbar.textDisconnect": "Se ha perdido la conexión
Intentando conectar. Compruebe la configuración de la conexión.", "DE.Controllers.Statusbar.textHasChanges": "Nuevos cambios han sido encontrado", "DE.Controllers.Statusbar.textSetTrackChanges": "Usted está en el modo de seguimiento de cambios", "DE.Controllers.Statusbar.textTrackChanges": "El documento se abre con el modo de cambio de pista activado", @@ -902,10 +911,22 @@ "DE.Controllers.Toolbar.textMatrix": "Matrices", "DE.Controllers.Toolbar.textOperator": "Operadores", "DE.Controllers.Toolbar.textRadical": "Radicales", + "DE.Controllers.Toolbar.textRecentlyUsed": "Usados recientemente", "DE.Controllers.Toolbar.textScript": "Letras", "DE.Controllers.Toolbar.textSymbols": "Símbolos", "DE.Controllers.Toolbar.textTabForms": "Formularios", "DE.Controllers.Toolbar.textWarning": "Aviso", + "DE.Controllers.Toolbar.tipMarkersArrow": "Viñetas de flecha", + "DE.Controllers.Toolbar.tipMarkersCheckmark": "Viñetas de marca de verificación", + "DE.Controllers.Toolbar.tipMarkersDash": "Viñetas guión", + "DE.Controllers.Toolbar.tipMarkersFRhombus": "Rombos rellenos", + "DE.Controllers.Toolbar.tipMarkersFRound": "Viñetas redondas rellenas", + "DE.Controllers.Toolbar.tipMarkersFSquare": "Viñetas cuadradas rellenas", + "DE.Controllers.Toolbar.tipMarkersHRound": "Viñetas redondas huecas", + "DE.Controllers.Toolbar.tipMarkersStar": "Viñetas de estrella", + "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Viñetas numeradas de varios niveles", + "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Viñetas de símbolos de varios niveles", + "DE.Controllers.Toolbar.tipMultiLevelVarious": "Viñetas numeradas de varios niveles", "DE.Controllers.Toolbar.txtAccent_Accent": "Acento agudo", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Flecha derecha-izquierda superior", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Flecha superior hacia izquierda", @@ -1281,9 +1302,9 @@ "DE.Views.ChartSettings.textUndock": "Desacoplar de panel", "DE.Views.ChartSettings.textWidth": "Ancho", "DE.Views.ChartSettings.textWrap": "Ajuste de texto", - "DE.Views.ChartSettings.txtBehind": "Detrás", - "DE.Views.ChartSettings.txtInFront": "Adelante", - "DE.Views.ChartSettings.txtInline": "Alineado", + "DE.Views.ChartSettings.txtBehind": "Detrás del texto", + "DE.Views.ChartSettings.txtInFront": "Delante del texto", + "DE.Views.ChartSettings.txtInline": "En línea con el texto", "DE.Views.ChartSettings.txtSquare": "Cuadrado", "DE.Views.ChartSettings.txtThrough": "A través", "DE.Views.ChartSettings.txtTight": "Estrecho", @@ -1457,6 +1478,7 @@ "DE.Views.DocumentHolder.textDistributeCols": "Distribuir columnas", "DE.Views.DocumentHolder.textDistributeRows": "Distribuir filas", "DE.Views.DocumentHolder.textEditControls": "Los ajustes del control de contenido", + "DE.Views.DocumentHolder.textEditPoints": "Modificar puntos", "DE.Views.DocumentHolder.textEditWrapBoundary": "Editar límite de ajuste", "DE.Views.DocumentHolder.textFlipH": "Voltear horizontalmente", "DE.Views.DocumentHolder.textFlipV": "Voltear verticalmente", @@ -1505,6 +1527,14 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Actualize la tabla de contenidos", "DE.Views.DocumentHolder.textWrap": "Ajuste de texto", "DE.Views.DocumentHolder.tipIsLocked": "Otro usuario está editando este elemento ahora.", + "DE.Views.DocumentHolder.tipMarkersArrow": "Viñetas de flecha", + "DE.Views.DocumentHolder.tipMarkersCheckmark": "Viñetas de marca de verificación", + "DE.Views.DocumentHolder.tipMarkersDash": "Viñetas guión", + "DE.Views.DocumentHolder.tipMarkersFRhombus": "Rombos rellenos", + "DE.Views.DocumentHolder.tipMarkersFRound": "Viñetas redondas rellenas", + "DE.Views.DocumentHolder.tipMarkersFSquare": "Viñetas cuadradas rellenas", + "DE.Views.DocumentHolder.tipMarkersHRound": "Viñetas redondas huecas", + "DE.Views.DocumentHolder.tipMarkersStar": "Viñetas de estrella", "DE.Views.DocumentHolder.toDictionaryText": "Añadir al diccionario", "DE.Views.DocumentHolder.txtAddBottom": "Añadir borde inferior", "DE.Views.DocumentHolder.txtAddFractionBar": "Añadir barra de fracción", @@ -1516,7 +1546,7 @@ "DE.Views.DocumentHolder.txtAddTop": "Añadir borde superior", "DE.Views.DocumentHolder.txtAddVer": "Añadir línea vertical", "DE.Views.DocumentHolder.txtAlignToChar": "Alinear a carácter", - "DE.Views.DocumentHolder.txtBehind": "Detrás", + "DE.Views.DocumentHolder.txtBehind": "Detrás del texto", "DE.Views.DocumentHolder.txtBorderProps": "Propiedades de borde", "DE.Views.DocumentHolder.txtBottom": "Inferior", "DE.Views.DocumentHolder.txtColumnAlign": "Alineación de columna", @@ -1552,8 +1582,8 @@ "DE.Views.DocumentHolder.txtHideTopLimit": "Ocultar límite superior", "DE.Views.DocumentHolder.txtHideVer": "Ocultar línea vertical", "DE.Views.DocumentHolder.txtIncreaseArg": "Aumentar el tamaño del argumento", - "DE.Views.DocumentHolder.txtInFront": "Adelante", - "DE.Views.DocumentHolder.txtInline": "Alineado", + "DE.Views.DocumentHolder.txtInFront": "Delante del texto", + "DE.Views.DocumentHolder.txtInline": "En línea con el texto", "DE.Views.DocumentHolder.txtInsertArgAfter": "Insertar argumento después", "DE.Views.DocumentHolder.txtInsertArgBefore": "Insertar argumento antes", "DE.Views.DocumentHolder.txtInsertBreak": "Insertar grieta manual", @@ -1871,6 +1901,7 @@ "DE.Views.ImageSettings.textCrop": "Recortar", "DE.Views.ImageSettings.textCropFill": "Relleno", "DE.Views.ImageSettings.textCropFit": "Adaptar", + "DE.Views.ImageSettings.textCropToShape": "Recortar a la forma", "DE.Views.ImageSettings.textEdit": "Editar", "DE.Views.ImageSettings.textEditObject": "Editar objeto", "DE.Views.ImageSettings.textFitMargins": "Ajustar al margen", @@ -1885,14 +1916,15 @@ "DE.Views.ImageSettings.textHintFlipV": "Volteo Vertical", "DE.Views.ImageSettings.textInsert": "Reemplazar imagen", "DE.Views.ImageSettings.textOriginalSize": "Tamaño real", + "DE.Views.ImageSettings.textRecentlyUsed": "Usados recientemente", "DE.Views.ImageSettings.textRotate90": "Girar 90°", "DE.Views.ImageSettings.textRotation": "Rotación", "DE.Views.ImageSettings.textSize": "Tamaño", "DE.Views.ImageSettings.textWidth": "Ancho", "DE.Views.ImageSettings.textWrap": "Ajuste de texto", - "DE.Views.ImageSettings.txtBehind": "Detrás", - "DE.Views.ImageSettings.txtInFront": "Adelante", - "DE.Views.ImageSettings.txtInline": "Alineado", + "DE.Views.ImageSettings.txtBehind": "Detrás del texto", + "DE.Views.ImageSettings.txtInFront": "Delante del texto", + "DE.Views.ImageSettings.txtInline": "En línea con el texto", "DE.Views.ImageSettings.txtSquare": "Cuadrado", "DE.Views.ImageSettings.txtThrough": "A través", "DE.Views.ImageSettings.txtTight": "Estrecho", @@ -1965,9 +1997,9 @@ "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Grosores y flechas", "DE.Views.ImageSettingsAdvanced.textWidth": "Ancho", "DE.Views.ImageSettingsAdvanced.textWrap": "Ajuste de texto", - "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Detrás", - "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Adelante", - "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "Alineado", + "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Detrás del texto", + "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Delante del texto", + "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "En línea con el texto", "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Cuadrado", "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "A través", "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Estrecho", @@ -2060,7 +2092,7 @@ "DE.Views.MailMergeEmailDlg.textHTML": "HTML", "DE.Views.MailMergeEmailDlg.textMessage": "Mensaje", "DE.Views.MailMergeEmailDlg.textSubject": "Línea de tema", - "DE.Views.MailMergeEmailDlg.textTitle": "Enviar vía email", + "DE.Views.MailMergeEmailDlg.textTitle": "Enviar por correo", "DE.Views.MailMergeEmailDlg.textTo": "Para", "DE.Views.MailMergeEmailDlg.textWarning": "¡Aviso!", "DE.Views.MailMergeEmailDlg.textWarningMsg": "Note, por favor, que no se puede detener el envío, una vez pulsado el botón 'Enviar'.", @@ -2074,7 +2106,7 @@ "DE.Views.MailMergeSettings.textDocx": "Docx", "DE.Views.MailMergeSettings.textDownload": "Descargar", "DE.Views.MailMergeSettings.textEditData": "Editar lista de destinatarios", - "DE.Views.MailMergeSettings.textEmail": "Email", + "DE.Views.MailMergeSettings.textEmail": "Correo", "DE.Views.MailMergeSettings.textFrom": "De", "DE.Views.MailMergeSettings.textGoToMail": "Siga a Correo", "DE.Views.MailMergeSettings.textHighlight": "Resaltar campos unidos", @@ -2087,7 +2119,7 @@ "DE.Views.MailMergeSettings.textPortal": "Guardar", "DE.Views.MailMergeSettings.textPreview": "Vista previa de resultados", "DE.Views.MailMergeSettings.textReadMore": "Más información", - "DE.Views.MailMergeSettings.textSendMsg": "Todos los mensajes de email están listos y se enviarán en poco tiempo.
La velocidad de envío depende de su servicio de correo.
Usted puede continuar trabajando en el documento o cerrarlo. Una vez terminada la operación la notificación se enviará a su dirección de email registrado.", + "DE.Views.MailMergeSettings.textSendMsg": "Todos los mensajes de correo están listos y se enviarán en breve.
La velocidad de envío dependerá de su servicio de correo.
Usted puede continuar trabajando en el documento o cerrarlo. Una vez terminada la operación la notificación se enviará a su dirección de correo de registro.", "DE.Views.MailMergeSettings.textTo": "a", "DE.Views.MailMergeSettings.txtFirst": "Primer campo", "DE.Views.MailMergeSettings.txtFromToError": "El valor \"De\" debe ser menor que \"A\"", @@ -2155,6 +2187,11 @@ "DE.Views.PageSizeDialog.textTitle": "Tamaño de página", "DE.Views.PageSizeDialog.textWidth": "Ancho", "DE.Views.PageSizeDialog.txtCustom": "Personalizado", + "DE.Views.PageThumbnails.textClosePanel": "Cerrar las miniaturas de las páginas", + "DE.Views.PageThumbnails.textHighlightVisiblePart": "Resaltar la parte visible de la página", + "DE.Views.PageThumbnails.textPageThumbnails": "Miniaturas de página", + "DE.Views.PageThumbnails.textThumbnailsSettings": "Configuración de las miniaturas", + "DE.Views.PageThumbnails.textThumbnailsSize": "Tamaño de las miniaturas", "DE.Views.ParagraphSettings.strIndent": "Sangrías", "DE.Views.ParagraphSettings.strIndentsLeftText": "A la izquierda", "DE.Views.ParagraphSettings.strIndentsRightText": "A la derecha", @@ -2290,6 +2327,7 @@ "DE.Views.ShapeSettings.textPatternFill": "Patrón", "DE.Views.ShapeSettings.textPosition": "Posición", "DE.Views.ShapeSettings.textRadial": "Radial", + "DE.Views.ShapeSettings.textRecentlyUsed": "Usados recientemente", "DE.Views.ShapeSettings.textRotate90": "Girar 90°", "DE.Views.ShapeSettings.textRotation": "Rotación", "DE.Views.ShapeSettings.textSelectImage": "Seleccionar imagen", @@ -2301,7 +2339,7 @@ "DE.Views.ShapeSettings.textWrap": "Ajuste de texto", "DE.Views.ShapeSettings.tipAddGradientPoint": "Añadir punto de degradado", "DE.Views.ShapeSettings.tipRemoveGradientPoint": "Eliminar punto de degradado", - "DE.Views.ShapeSettings.txtBehind": "Detrás", + "DE.Views.ShapeSettings.txtBehind": "Detrás del texto", "DE.Views.ShapeSettings.txtBrownPaper": "Papel marrón", "DE.Views.ShapeSettings.txtCanvas": "Lienzo", "DE.Views.ShapeSettings.txtCarton": "Cartón", @@ -2309,8 +2347,8 @@ "DE.Views.ShapeSettings.txtGrain": "Grano", "DE.Views.ShapeSettings.txtGranite": "Granito", "DE.Views.ShapeSettings.txtGreyPaper": "Papel gris", - "DE.Views.ShapeSettings.txtInFront": "Adelante", - "DE.Views.ShapeSettings.txtInline": "Alineado", + "DE.Views.ShapeSettings.txtInFront": "Delante del texto", + "DE.Views.ShapeSettings.txtInline": "En línea con el texto", "DE.Views.ShapeSettings.txtKnit": "Tejido", "DE.Views.ShapeSettings.txtLeather": "Piel", "DE.Views.ShapeSettings.txtNoBorders": "Sin línea", @@ -2681,6 +2719,7 @@ "DE.Views.Toolbar.textTabLinks": "Referencias", "DE.Views.Toolbar.textTabProtect": "Protección", "DE.Views.Toolbar.textTabReview": "Revisar", + "DE.Views.Toolbar.textTabView": "Vista", "DE.Views.Toolbar.textTitleError": "Error", "DE.Views.Toolbar.textToCurrent": "A la posición actual", "DE.Views.Toolbar.textTop": "Top: ", @@ -2772,6 +2811,15 @@ "DE.Views.Toolbar.txtScheme7": "Equidad ", "DE.Views.Toolbar.txtScheme8": "Flujo", "DE.Views.Toolbar.txtScheme9": "Fundición", + "DE.Views.ViewTab.textAlwaysShowToolbar": "Mostrar siempre la barra de herramientas", + "DE.Views.ViewTab.textDarkDocument": "Documento oscuro", + "DE.Views.ViewTab.textFitToPage": "Ajustar a la página", + "DE.Views.ViewTab.textFitToWidth": "Ajustar al ancho", + "DE.Views.ViewTab.textInterfaceTheme": "Tema del interfaz", + "DE.Views.ViewTab.textNavigation": "Navegación", + "DE.Views.ViewTab.textRulers": "Reglas", + "DE.Views.ViewTab.textStatusBar": "Barra de estado", + "DE.Views.ViewTab.textZoom": "Zoom", "DE.Views.WatermarkSettingsDialog.textAuto": "Auto", "DE.Views.WatermarkSettingsDialog.textBold": "Negrita", "DE.Views.WatermarkSettingsDialog.textColor": "Color de texto", diff --git a/apps/documenteditor/main/locale/fr.json b/apps/documenteditor/main/locale/fr.json index 3d9062c2a..93ca6b04c 100644 --- a/apps/documenteditor/main/locale/fr.json +++ b/apps/documenteditor/main/locale/fr.json @@ -168,6 +168,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Nouvelle", "Common.UI.ExtendedColorDialog.textRGBErr": "La valeur saisie est incorrecte.
Entrez une valeur numérique de 0 à 255.", "Common.UI.HSBColorPicker.textNoColor": "Pas de couleur", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Masquer le mot de passe", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Afficher le mot de passe", "Common.UI.SearchDialog.textHighlight": "Surligner les résultats", "Common.UI.SearchDialog.textMatchCase": "Сas sensible", "Common.UI.SearchDialog.textReplaceDef": "Saisissez le texte de remplacement", @@ -211,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Listes à puces automatiques", "Common.Views.AutoCorrectDialog.textBy": "Par", "Common.Views.AutoCorrectDialog.textDelete": "Supprimer", + "Common.Views.AutoCorrectDialog.textFLCells": "Mettre la première lettre des cellules du tableau en majuscule", "Common.Views.AutoCorrectDialog.textFLSentence": "Majuscule en début de phrase", "Common.Views.AutoCorrectDialog.textHyperlink": "Adresses Internet et réseau avec des liens hypertextes", "Common.Views.AutoCorrectDialog.textHyphens": "Traits d’union (--) avec tiret (—)", @@ -236,12 +239,14 @@ "Common.Views.Comments.mniAuthorDesc": "Auteur de Z à A", "Common.Views.Comments.mniDateAsc": "Plus ancien", "Common.Views.Comments.mniDateDesc": "Plus récent", + "Common.Views.Comments.mniFilterGroups": "Filtrer par groupe", "Common.Views.Comments.mniPositionAsc": "Du haut", "Common.Views.Comments.mniPositionDesc": "Du bas", "Common.Views.Comments.textAdd": "Ajouter", "Common.Views.Comments.textAddComment": "Ajouter", "Common.Views.Comments.textAddCommentToDoc": "Ajouter un commentaire au document", "Common.Views.Comments.textAddReply": "Ajouter une réponse", + "Common.Views.Comments.textAll": "Tout", "Common.Views.Comments.textAnonym": "Invité", "Common.Views.Comments.textCancel": "Annuler", "Common.Views.Comments.textClose": "Fermer", @@ -255,6 +260,7 @@ "Common.Views.Comments.textResolve": "Résoudre", "Common.Views.Comments.textResolved": "Résolu", "Common.Views.Comments.textSort": "Trier les commentaires", + "Common.Views.Comments.textViewResolved": "Vous n'avez pas la permission de rouvrir le commentaire", "Common.Views.CopyWarningDialog.textDontShow": "Ne plus afficher ce message", "Common.Views.CopyWarningDialog.textMsg": "Vous pouvez réaliser les actions de copier, couper et coller en utilisant les boutons de la barre d'outils et à l'aide du menu contextuel à partir de cet onglet uniquement.

Pour copier ou coller de / vers les applications en dehors de l'onglet de l'éditeur, utilisez les combinaisons de touches suivantes :", "Common.Views.CopyWarningDialog.textTitle": "Fonctions de Copier, Couper et Coller", @@ -431,6 +437,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Ouvrir à nouveau", "Common.Views.ReviewPopover.textReply": "Répondre", "Common.Views.ReviewPopover.textResolve": "Résoudre", + "Common.Views.ReviewPopover.textViewResolved": "Vous n'avez pas la permission de rouvrir le commentaire", "Common.Views.ReviewPopover.txtAccept": "Accepter", "Common.Views.ReviewPopover.txtDeleteTip": "Supprimer", "Common.Views.ReviewPopover.txtEditTip": "Modifier", @@ -602,6 +609,7 @@ "DE.Controllers.Main.textLongName": "Entrez un nom inférieur à 128 caractères.", "DE.Controllers.Main.textNoLicenseTitle": "La limite de la licence est atteinte", "DE.Controllers.Main.textPaidFeature": "Fonction payante", + "DE.Controllers.Main.textReconnect": "La connexion est restaurée", "DE.Controllers.Main.textRemember": "Se souvenir de mon choix pour tous les fichiers", "DE.Controllers.Main.textRenameError": "Le nom d'utilisateur ne peut être vide.", "DE.Controllers.Main.textRenameLabel": "Entrez un nom à utiliser pour la collaboration", @@ -879,6 +887,7 @@ "DE.Controllers.Main.warnProcessRightsChange": "Le droit d'édition du fichier vous a été refusé.", "DE.Controllers.Navigation.txtBeginning": "Début du document", "DE.Controllers.Navigation.txtGotoBeginning": "Aller au début du document", + "DE.Controllers.Statusbar.textDisconnect": "La connexion est perdue
Tentative de connexion. Veuillez vérifier les paramètres de connexion.", "DE.Controllers.Statusbar.textHasChanges": "Nouveaux changements ont été suivis", "DE.Controllers.Statusbar.textSetTrackChanges": "Vous êtes dans le mode de suivi des modifications.", "DE.Controllers.Statusbar.textTrackChanges": "Le document est ouvert avec le mode Suivi des modifications activé", @@ -902,10 +911,22 @@ "DE.Controllers.Toolbar.textMatrix": "Matrices", "DE.Controllers.Toolbar.textOperator": "Opérateurs", "DE.Controllers.Toolbar.textRadical": "Radicaux", + "DE.Controllers.Toolbar.textRecentlyUsed": "Récemment utilisé", "DE.Controllers.Toolbar.textScript": "Scripts", "DE.Controllers.Toolbar.textSymbols": "Symboles", "DE.Controllers.Toolbar.textTabForms": "Formulaires", "DE.Controllers.Toolbar.textWarning": "Avertissement", + "DE.Controllers.Toolbar.tipMarkersArrow": "Puces fléchées", + "DE.Controllers.Toolbar.tipMarkersCheckmark": "Puces coches", + "DE.Controllers.Toolbar.tipMarkersDash": "Tirets", + "DE.Controllers.Toolbar.tipMarkersFRhombus": "Losanges remplis", + "DE.Controllers.Toolbar.tipMarkersFRound": "Puces arrondies remplies", + "DE.Controllers.Toolbar.tipMarkersFSquare": "Puces carrées remplies", + "DE.Controllers.Toolbar.tipMarkersHRound": "Puces rondes vides", + "DE.Controllers.Toolbar.tipMarkersStar": "Puces en étoile", + "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Puces numérotées à plusieurs niveaux", + "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Puces de symboles à plusieurs niveaux", + "DE.Controllers.Toolbar.tipMultiLevelVarious": "Puces numérotées à plusieurs niveaux", "DE.Controllers.Toolbar.txtAccent_Accent": "Aigu", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Flèche gauche-droite au-dessus", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Flèche vers la gauche au-dessus", @@ -1281,9 +1302,9 @@ "DE.Views.ChartSettings.textUndock": "Détacher du panneau", "DE.Views.ChartSettings.textWidth": "Largeur", "DE.Views.ChartSettings.textWrap": "Style d'habillage", - "DE.Views.ChartSettings.txtBehind": "Derrière", - "DE.Views.ChartSettings.txtInFront": "Devant", - "DE.Views.ChartSettings.txtInline": "En ligne", + "DE.Views.ChartSettings.txtBehind": "Derrière le texte", + "DE.Views.ChartSettings.txtInFront": "Devant le texte", + "DE.Views.ChartSettings.txtInline": "Aligné sur le texte", "DE.Views.ChartSettings.txtSquare": "Carré", "DE.Views.ChartSettings.txtThrough": "Au travers", "DE.Views.ChartSettings.txtTight": "Rapproché", @@ -1457,6 +1478,7 @@ "DE.Views.DocumentHolder.textDistributeCols": "Distribuer les colonnes", "DE.Views.DocumentHolder.textDistributeRows": "Distribuer les lignes", "DE.Views.DocumentHolder.textEditControls": "Paramètres de contrôle du contenu", + "DE.Views.DocumentHolder.textEditPoints": "Modifier les points", "DE.Views.DocumentHolder.textEditWrapBoundary": "Modifier les limites du renvoi à la ligne", "DE.Views.DocumentHolder.textFlipH": "Retourner horizontalement", "DE.Views.DocumentHolder.textFlipV": "Retourner verticalement", @@ -1505,6 +1527,14 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Actualiser la table des matières", "DE.Views.DocumentHolder.textWrap": "Style d'habillage", "DE.Views.DocumentHolder.tipIsLocked": "Cet élément est en cours d'édition par un autre utilisateur.", + "DE.Views.DocumentHolder.tipMarkersArrow": "Puces fléchées", + "DE.Views.DocumentHolder.tipMarkersCheckmark": "Puces coches", + "DE.Views.DocumentHolder.tipMarkersDash": "Tirets", + "DE.Views.DocumentHolder.tipMarkersFRhombus": "Losanges remplis", + "DE.Views.DocumentHolder.tipMarkersFRound": "Puces arrondies remplies", + "DE.Views.DocumentHolder.tipMarkersFSquare": "Puces carrées remplies", + "DE.Views.DocumentHolder.tipMarkersHRound": "Puces rondes vides", + "DE.Views.DocumentHolder.tipMarkersStar": "Puces en étoile", "DE.Views.DocumentHolder.toDictionaryText": "Ajouter au dictionnaire", "DE.Views.DocumentHolder.txtAddBottom": "Ajouter bordure inférieure", "DE.Views.DocumentHolder.txtAddFractionBar": "Ajouter barre de fraction", @@ -1516,7 +1546,7 @@ "DE.Views.DocumentHolder.txtAddTop": "Ajouter une bordure supérieure", "DE.Views.DocumentHolder.txtAddVer": "Ajouter une ligne verticale", "DE.Views.DocumentHolder.txtAlignToChar": "Aligner à caractère", - "DE.Views.DocumentHolder.txtBehind": "Derrière", + "DE.Views.DocumentHolder.txtBehind": "Derrière le texte", "DE.Views.DocumentHolder.txtBorderProps": "Propriétés de bordure", "DE.Views.DocumentHolder.txtBottom": "En bas", "DE.Views.DocumentHolder.txtColumnAlign": "L'alignement de la colonne", @@ -1552,8 +1582,8 @@ "DE.Views.DocumentHolder.txtHideTopLimit": "Cacher limite supérieure", "DE.Views.DocumentHolder.txtHideVer": "Cacher ligne verticale", "DE.Views.DocumentHolder.txtIncreaseArg": "Augmenter la taille de l'argument", - "DE.Views.DocumentHolder.txtInFront": "Devant", - "DE.Views.DocumentHolder.txtInline": "En ligne", + "DE.Views.DocumentHolder.txtInFront": "Devant le texte", + "DE.Views.DocumentHolder.txtInline": "Aligné sur le texte", "DE.Views.DocumentHolder.txtInsertArgAfter": "Insérez l'argument après", "DE.Views.DocumentHolder.txtInsertArgBefore": "Insérez argument devant", "DE.Views.DocumentHolder.txtInsertBreak": "Insérer pause manuelle", @@ -1871,6 +1901,7 @@ "DE.Views.ImageSettings.textCrop": "Rogner", "DE.Views.ImageSettings.textCropFill": "Remplissage", "DE.Views.ImageSettings.textCropFit": "Ajuster", + "DE.Views.ImageSettings.textCropToShape": "Rogner à la forme", "DE.Views.ImageSettings.textEdit": "Modifier", "DE.Views.ImageSettings.textEditObject": "Modifier l'objet", "DE.Views.ImageSettings.textFitMargins": "Ajuster aux marges", @@ -1885,14 +1916,15 @@ "DE.Views.ImageSettings.textHintFlipV": "Retourner verticalement", "DE.Views.ImageSettings.textInsert": "Remplacer l’image", "DE.Views.ImageSettings.textOriginalSize": "Taille actuelle", + "DE.Views.ImageSettings.textRecentlyUsed": "Récemment utilisé", "DE.Views.ImageSettings.textRotate90": "Faire pivoter de 90°", "DE.Views.ImageSettings.textRotation": "Rotation", "DE.Views.ImageSettings.textSize": "Taille", "DE.Views.ImageSettings.textWidth": "Largeur", "DE.Views.ImageSettings.textWrap": "Style d'habillage", - "DE.Views.ImageSettings.txtBehind": "Derrière", - "DE.Views.ImageSettings.txtInFront": "Devant", - "DE.Views.ImageSettings.txtInline": "En ligne", + "DE.Views.ImageSettings.txtBehind": "Derrière le texte", + "DE.Views.ImageSettings.txtInFront": "Devant le texte", + "DE.Views.ImageSettings.txtInline": "Aligné sur le texte", "DE.Views.ImageSettings.txtSquare": "Carré", "DE.Views.ImageSettings.txtThrough": "Au travers", "DE.Views.ImageSettings.txtTight": "Rapproché", @@ -1965,9 +1997,9 @@ "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Poids et flèches", "DE.Views.ImageSettingsAdvanced.textWidth": "Largeur", "DE.Views.ImageSettingsAdvanced.textWrap": "Style d'habillage", - "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Derrière", - "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Devant", - "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "En ligne", + "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Derrière le texte", + "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Devant le texte", + "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "Aligné sur le texte", "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Carré", "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Au travers", "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Rapproché", @@ -2155,6 +2187,11 @@ "DE.Views.PageSizeDialog.textTitle": "Taille de la page", "DE.Views.PageSizeDialog.textWidth": "Largeur", "DE.Views.PageSizeDialog.txtCustom": "Personnalisé", + "DE.Views.PageThumbnails.textClosePanel": "Fermer les miniatures des pages", + "DE.Views.PageThumbnails.textHighlightVisiblePart": "Mettre en surbrillance la partie visible de la page", + "DE.Views.PageThumbnails.textPageThumbnails": "Miniatures des pages", + "DE.Views.PageThumbnails.textThumbnailsSettings": "Paramètres des miniatures", + "DE.Views.PageThumbnails.textThumbnailsSize": "Taille des miniatures", "DE.Views.ParagraphSettings.strIndent": "Retraits", "DE.Views.ParagraphSettings.strIndentsLeftText": "À gauche", "DE.Views.ParagraphSettings.strIndentsRightText": "Droite", @@ -2290,6 +2327,7 @@ "DE.Views.ShapeSettings.textPatternFill": "Modèle", "DE.Views.ShapeSettings.textPosition": "Position", "DE.Views.ShapeSettings.textRadial": "Radial", + "DE.Views.ShapeSettings.textRecentlyUsed": "Récemment utilisé", "DE.Views.ShapeSettings.textRotate90": "Faire pivoter de 90°", "DE.Views.ShapeSettings.textRotation": "Rotation", "DE.Views.ShapeSettings.textSelectImage": "Sélectionner l'image", @@ -2301,7 +2339,7 @@ "DE.Views.ShapeSettings.textWrap": "Style d'habillage", "DE.Views.ShapeSettings.tipAddGradientPoint": "Ajouter un point de dégradé", "DE.Views.ShapeSettings.tipRemoveGradientPoint": "Supprimer le point de dégradé", - "DE.Views.ShapeSettings.txtBehind": "Derrière", + "DE.Views.ShapeSettings.txtBehind": "Derrière le texte", "DE.Views.ShapeSettings.txtBrownPaper": "Papier brun", "DE.Views.ShapeSettings.txtCanvas": "Toile", "DE.Views.ShapeSettings.txtCarton": "Carton", @@ -2309,8 +2347,8 @@ "DE.Views.ShapeSettings.txtGrain": "Grain", "DE.Views.ShapeSettings.txtGranite": "Granit", "DE.Views.ShapeSettings.txtGreyPaper": "Papier gris", - "DE.Views.ShapeSettings.txtInFront": "Devant", - "DE.Views.ShapeSettings.txtInline": "En ligne", + "DE.Views.ShapeSettings.txtInFront": "Devant le texte", + "DE.Views.ShapeSettings.txtInline": "Aligné sur le texte", "DE.Views.ShapeSettings.txtKnit": "Tricot", "DE.Views.ShapeSettings.txtLeather": "Cuir", "DE.Views.ShapeSettings.txtNoBorders": "Pas de ligne", @@ -2681,6 +2719,7 @@ "DE.Views.Toolbar.textTabLinks": "Références", "DE.Views.Toolbar.textTabProtect": "Protection", "DE.Views.Toolbar.textTabReview": "Révision", + "DE.Views.Toolbar.textTabView": "Afficher", "DE.Views.Toolbar.textTitleError": "Erreur", "DE.Views.Toolbar.textToCurrent": "À la position actuelle", "DE.Views.Toolbar.textTop": "En haut: ", @@ -2772,6 +2811,15 @@ "DE.Views.Toolbar.txtScheme7": "Capitaux", "DE.Views.Toolbar.txtScheme8": "Flux", "DE.Views.Toolbar.txtScheme9": "Fonderie", + "DE.Views.ViewTab.textAlwaysShowToolbar": "Toujours afficher la barre d'outils", + "DE.Views.ViewTab.textDarkDocument": "Document sombre", + "DE.Views.ViewTab.textFitToPage": "Ajuster à la page", + "DE.Views.ViewTab.textFitToWidth": "Ajuster à la largeur", + "DE.Views.ViewTab.textInterfaceTheme": "Thème d’interface", + "DE.Views.ViewTab.textNavigation": "Navigation", + "DE.Views.ViewTab.textRulers": "Règles", + "DE.Views.ViewTab.textStatusBar": "Barre d'état", + "DE.Views.ViewTab.textZoom": "Zoom", "DE.Views.WatermarkSettingsDialog.textAuto": "Auto", "DE.Views.WatermarkSettingsDialog.textBold": "Gras", "DE.Views.WatermarkSettingsDialog.textColor": "Couleur du texte", diff --git a/apps/documenteditor/main/locale/it.json b/apps/documenteditor/main/locale/it.json index d7581dec9..b2d9d5733 100644 --- a/apps/documenteditor/main/locale/it.json +++ b/apps/documenteditor/main/locale/it.json @@ -1283,7 +1283,7 @@ "DE.Views.ChartSettings.textWrap": "Stile di disposizione testo", "DE.Views.ChartSettings.txtBehind": "Dietro al testo", "DE.Views.ChartSettings.txtInFront": "Davanti al testo", - "DE.Views.ChartSettings.txtInline": "In linea", + "DE.Views.ChartSettings.txtInline": "In linea con il testo", "DE.Views.ChartSettings.txtSquare": "Quadrato", "DE.Views.ChartSettings.txtThrough": "All'interno", "DE.Views.ChartSettings.txtTight": "Ravvicinato", @@ -1553,7 +1553,7 @@ "DE.Views.DocumentHolder.txtHideVer": "Nascondi linea verticale", "DE.Views.DocumentHolder.txtIncreaseArg": "Aumenta dimensione argomento", "DE.Views.DocumentHolder.txtInFront": "Davanti al testo", - "DE.Views.DocumentHolder.txtInline": "In linea", + "DE.Views.DocumentHolder.txtInline": "In linea con il testo", "DE.Views.DocumentHolder.txtInsertArgAfter": "Inserisci argomento dopo", "DE.Views.DocumentHolder.txtInsertArgBefore": "Inserisci argomento prima", "DE.Views.DocumentHolder.txtInsertBreak": "Inserisci interruzione manuale", @@ -1892,7 +1892,7 @@ "DE.Views.ImageSettings.textWrap": "Stile di disposizione testo", "DE.Views.ImageSettings.txtBehind": "Dietro al testo", "DE.Views.ImageSettings.txtInFront": "Davanti al testo", - "DE.Views.ImageSettings.txtInline": "In linea", + "DE.Views.ImageSettings.txtInline": "In linea con il testo", "DE.Views.ImageSettings.txtSquare": "Quadrato", "DE.Views.ImageSettings.txtThrough": "All'interno", "DE.Views.ImageSettings.txtTight": "Ravvicinato", @@ -1967,7 +1967,7 @@ "DE.Views.ImageSettingsAdvanced.textWrap": "Stile di disposizione testo", "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Dietro al testo", "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Davanti al testo", - "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "In linea", + "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "In linea con il testo", "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Quadrato", "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "All'interno", "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Ravvicinato", @@ -2310,7 +2310,7 @@ "DE.Views.ShapeSettings.txtGranite": "Granito", "DE.Views.ShapeSettings.txtGreyPaper": "Carta grigia", "DE.Views.ShapeSettings.txtInFront": "Davanti al testo", - "DE.Views.ShapeSettings.txtInline": "In linea", + "DE.Views.ShapeSettings.txtInline": "In linea con il testo", "DE.Views.ShapeSettings.txtKnit": "A maglia", "DE.Views.ShapeSettings.txtLeather": "Cuoio", "DE.Views.ShapeSettings.txtNoBorders": "Nessuna linea", @@ -2570,7 +2570,7 @@ "DE.Views.Toolbar.capBtnInsControls": "Controlli del contenuto", "DE.Views.Toolbar.capBtnInsDropcap": "Capolettera", "DE.Views.Toolbar.capBtnInsEquation": "Equazione", - "DE.Views.Toolbar.capBtnInsHeader": "Inntestazioni/Piè di pagina", + "DE.Views.Toolbar.capBtnInsHeader": "Intestazione/Piè di pagina", "DE.Views.Toolbar.capBtnInsImage": "Immagine", "DE.Views.Toolbar.capBtnInsPagebreak": "Interruzione di pagina", "DE.Views.Toolbar.capBtnInsShape": "Forma", diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json index b9b088f18..7b1687599 100644 --- a/apps/documenteditor/main/locale/ja.json +++ b/apps/documenteditor/main/locale/ja.json @@ -126,21 +126,21 @@ "Common.Translation.warnFileLockedBtnView": "閲覧可能", "Common.UI.ButtonColored.textAutoColor": "自動​", "Common.UI.ButtonColored.textNewColor": "ユーザー設定の色", - "Common.UI.Calendar.textApril": "四月", - "Common.UI.Calendar.textAugust": "八月", - "Common.UI.Calendar.textDecember": "十二月", - "Common.UI.Calendar.textFebruary": "二月", - "Common.UI.Calendar.textJanuary": "一月", - "Common.UI.Calendar.textJuly": "七月", - "Common.UI.Calendar.textJune": "六月", - "Common.UI.Calendar.textMarch": "三月", - "Common.UI.Calendar.textMay": "五月", + "Common.UI.Calendar.textApril": "4月", + "Common.UI.Calendar.textAugust": "8月", + "Common.UI.Calendar.textDecember": "12月", + "Common.UI.Calendar.textFebruary": "2月", + "Common.UI.Calendar.textJanuary": "1月", + "Common.UI.Calendar.textJuly": "7月", + "Common.UI.Calendar.textJune": "6月", + "Common.UI.Calendar.textMarch": "3月", + "Common.UI.Calendar.textMay": "5月", "Common.UI.Calendar.textMonths": "月", - "Common.UI.Calendar.textNovember": "十一月", - "Common.UI.Calendar.textOctober": "十月", - "Common.UI.Calendar.textSeptember": "九月", + "Common.UI.Calendar.textNovember": "11月", + "Common.UI.Calendar.textOctober": "10月", + "Common.UI.Calendar.textSeptember": "9月", "Common.UI.Calendar.textShortApril": "四月", - "Common.UI.Calendar.textShortAugust": "八月", + "Common.UI.Calendar.textShortAugust": "8月", "Common.UI.Calendar.textShortDecember": "十二月", "Common.UI.Calendar.textShortFebruary": "二月", "Common.UI.Calendar.textShortFriday": "金", @@ -148,12 +148,12 @@ "Common.UI.Calendar.textShortJuly": "七月", "Common.UI.Calendar.textShortJune": "六月", "Common.UI.Calendar.textShortMarch": "三月", - "Common.UI.Calendar.textShortMay": "五月", + "Common.UI.Calendar.textShortMay": "5月", "Common.UI.Calendar.textShortMonday": "月", "Common.UI.Calendar.textShortNovember": "十一月", - "Common.UI.Calendar.textShortOctober": "十月", + "Common.UI.Calendar.textShortOctober": "10月", "Common.UI.Calendar.textShortSaturday": "土", - "Common.UI.Calendar.textShortSeptember": "九月", + "Common.UI.Calendar.textShortSeptember": "9月", "Common.UI.Calendar.textShortSunday": "日", "Common.UI.Calendar.textShortThursday": "木", "Common.UI.Calendar.textShortTuesday": "火", @@ -168,6 +168,8 @@ "Common.UI.ExtendedColorDialog.textNew": "新しい", "Common.UI.ExtendedColorDialog.textRGBErr": "入力された値が正しくありません。
0〜255の数値を入力してください。", "Common.UI.HSBColorPicker.textNoColor": "色なし", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "パスワードを隠す", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "パスワードを表示する", "Common.UI.SearchDialog.textHighlight": "結果を強調表示", "Common.UI.SearchDialog.textMatchCase": "大文字と小文字の区別", "Common.UI.SearchDialog.textReplaceDef": "代替テキストの挿入する", @@ -236,12 +238,14 @@ "Common.Views.Comments.mniAuthorDesc": "ZからAへで作者を表示する", "Common.Views.Comments.mniDateAsc": "最も古い", "Common.Views.Comments.mniDateDesc": "最も新しい", + "Common.Views.Comments.mniFilterGroups": "グループでフィルター", "Common.Views.Comments.mniPositionAsc": "上から", "Common.Views.Comments.mniPositionDesc": "下から", "Common.Views.Comments.textAdd": "追加", "Common.Views.Comments.textAddComment": "コメントの追加", "Common.Views.Comments.textAddCommentToDoc": "ドキュメントにコメントの追加", "Common.Views.Comments.textAddReply": "返信の追加", + "Common.Views.Comments.textAll": "すべて", "Common.Views.Comments.textAnonym": "ゲスト", "Common.Views.Comments.textCancel": "キャンセル", "Common.Views.Comments.textClose": "閉じる", @@ -255,6 +259,7 @@ "Common.Views.Comments.textResolve": "解決", "Common.Views.Comments.textResolved": "解決済み", "Common.Views.Comments.textSort": "コメントを並べ替える", + "Common.Views.Comments.textViewResolved": "コメントを再開する権限がありません", "Common.Views.CopyWarningDialog.textDontShow": "今後このメッセージを表示しない", "Common.Views.CopyWarningDialog.textMsg": "このタブの編集のツールバーのボタンとコンテキストメニューを使って、コピー、分割と貼り付けをすることができます。

他のアプリケーションにコピーと貼り付けのために、次のショートカットキー を使ってください:", "Common.Views.CopyWarningDialog.textTitle": "コピー,切り取り,貼り付けの操作", @@ -274,7 +279,7 @@ "Common.Views.Header.textAdvSettings": "詳細設定", "Common.Views.Header.textBack": "ファイルのURLを開く", "Common.Views.Header.textCompactView": "ツールバーを隠す", - "Common.Views.Header.textHideLines": "ルーラを隠す", + "Common.Views.Header.textHideLines": "ルーラーを表示しない", "Common.Views.Header.textHideStatusBar": "ステータスバーを表示しない", "Common.Views.Header.textRemoveFavorite": "お気に入りから削除", "Common.Views.Header.textZoom": "拡大率", @@ -431,6 +436,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "もう一度開きます", "Common.Views.ReviewPopover.textReply": "返事する", "Common.Views.ReviewPopover.textResolve": "解決", + "Common.Views.ReviewPopover.textViewResolved": "コメントを再開する権限がありません", "Common.Views.ReviewPopover.txtAccept": "同意する", "Common.Views.ReviewPopover.txtDeleteTip": "削除", "Common.Views.ReviewPopover.txtEditTip": "編集", @@ -551,7 +557,7 @@ "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "インターネット接続が復旧し、ファイルのバージョンが更新されています。
作業を継続する前に、ファイルをダウンロードするか内容をコピーして、変更が消えてしまわないようにしてからページを再読み込みしてください。", "DE.Controllers.Main.errorUserDrop": "ファイルにアクセスできません", "DE.Controllers.Main.errorUsersExceed": "料金プランによってユーザ数を超過しています。", - "DE.Controllers.Main.errorViewerDisconnect": "接続が切断された。文書を表示が可能ですが、
接続を復旧し、ページを再読み込む前に、ダウンロード・印刷できません。", + "DE.Controllers.Main.errorViewerDisconnect": "接続が失われました。文書の表示は可能ですが、
再度接続されてページが再ロードされるまで、ダウンロードまたは印刷することはできません。", "DE.Controllers.Main.leavePageText": "この文書の保存されていない変更があります。保存するために「このページにとどまる」、「保存」をクリックしてください。全ての保存しない変更をキャンサルするために「このページを離れる」をクリックしてください。", "DE.Controllers.Main.leavePageTextOnClose": "変更を保存せずにドキュメントを閉じると変更が失われます。
保存するには\"キャンセル\"を押して、保存をしてください。保存せずに破棄するには\"OK\"をクリックしてください。", "DE.Controllers.Main.loadFontsTextText": "データを読み込んでいます", @@ -870,7 +876,7 @@ "DE.Controllers.Main.warnBrowserIE9": "IE9にアプリケーションの機能のレベルが低いです。IE10または次のバージョンを使ってください。", "DE.Controllers.Main.warnBrowserZoom": "お使いのブラウザの現在のズームの設定は完全にサポートされていません。Ctrl+0を押して、デフォルトのズームにリセットしてください。", "DE.Controllers.Main.warnLicenseExceeded": "%1エディターへの同時接続の制限に達しました。 このドキュメントは表示専用で開かれます。
詳細については、管理者にお問い合わせください。", - "DE.Controllers.Main.warnLicenseExp": "ライセンスの期限が切れました。
ライセンスを更新して、ページをリロードしてください。", + "DE.Controllers.Main.warnLicenseExp": "ライセンスの有効期限が切れています。
ライセンスを更新してページをリロードしてください。", "DE.Controllers.Main.warnLicenseLimitedNoAccess": "ライセンスの有効期限が切れています。
ドキュメント編集機能にアクセスできません。
管理者にご連絡ください。", "DE.Controllers.Main.warnLicenseLimitedRenewed": "ライセンスを更新する必要があります。
ドキュメント編集機能へのアクセスが制限されています。
フルアクセスを取得するには、管理者にご連絡ください", "DE.Controllers.Main.warnLicenseUsersExceeded": "%1エディターのユーザー制限に達しました。 詳細については、管理者にお問い合わせください。", @@ -879,6 +885,7 @@ "DE.Controllers.Main.warnProcessRightsChange": "ファイルを編集する権限を拒否されています。", "DE.Controllers.Navigation.txtBeginning": "文書の先頭", "DE.Controllers.Navigation.txtGotoBeginning": "文書の先頭に移動します", + "DE.Controllers.Statusbar.textDisconnect": "切断されました
設定を確認してください。", "DE.Controllers.Statusbar.textHasChanges": "新しい変更が追跡された。", "DE.Controllers.Statusbar.textSetTrackChanges": "変更履歴モードで編集中です", "DE.Controllers.Statusbar.textTrackChanges": "有効な変更履歴のモードにドキュメントがドキュメントが開かれました。", @@ -906,6 +913,13 @@ "DE.Controllers.Toolbar.textSymbols": "記号", "DE.Controllers.Toolbar.textTabForms": "フォーム", "DE.Controllers.Toolbar.textWarning": "警告", + "DE.Controllers.Toolbar.tipMarkersArrow": "箇条書き(矢印)", + "DE.Controllers.Toolbar.tipMarkersCheckmark": "箇条書き(チェックマーク)", + "DE.Controllers.Toolbar.tipMarkersFRhombus": "箇条書き(ひし形)", + "DE.Controllers.Toolbar.tipMarkersFRound": "箇条書き(丸)", + "DE.Controllers.Toolbar.tipMarkersFSquare": "箇条書き(四角)", + "DE.Controllers.Toolbar.tipMarkersHRound": "箇条書き(円)", + "DE.Controllers.Toolbar.tipMarkersStar": "箇条書き(星)", "DE.Controllers.Toolbar.txtAccent_Accent": "アキュート", "DE.Controllers.Toolbar.txtAccent_ArrowD": "左右双方向矢印 (上)", "DE.Controllers.Toolbar.txtAccent_ArrowL": "左に矢印 (上)", @@ -1505,6 +1519,13 @@ "DE.Views.DocumentHolder.textUpdateTOC": "目次を更新する", "DE.Views.DocumentHolder.textWrap": "折り返しの種類と配置", "DE.Views.DocumentHolder.tipIsLocked": "今、この要素が他のユーザによって編集されています。", + "DE.Views.DocumentHolder.tipMarkersArrow": "箇条書き(矢印)", + "DE.Views.DocumentHolder.tipMarkersCheckmark": "箇条書き(チェックマーク)", + "DE.Views.DocumentHolder.tipMarkersFRhombus": "箇条書き(ひし形)", + "DE.Views.DocumentHolder.tipMarkersFRound": "箇条書き(丸)", + "DE.Views.DocumentHolder.tipMarkersFSquare": "箇条書き(四角)", + "DE.Views.DocumentHolder.tipMarkersHRound": "箇条書き(円)", + "DE.Views.DocumentHolder.tipMarkersStar": "箇条書き(星)", "DE.Views.DocumentHolder.toDictionaryText": "辞書に追加", "DE.Views.DocumentHolder.txtAddBottom": "下罫線の追加", "DE.Views.DocumentHolder.txtAddFractionBar": "分数罫の追加", @@ -2681,6 +2702,7 @@ "DE.Views.Toolbar.textTabLinks": "参考資料", "DE.Views.Toolbar.textTabProtect": "保護", "DE.Views.Toolbar.textTabReview": "見直し", + "DE.Views.Toolbar.textTabView": "表示", "DE.Views.Toolbar.textTitleError": "エラー", "DE.Views.Toolbar.textToCurrent": "現在の場所", "DE.Views.Toolbar.textTop": "トップ:", @@ -2772,6 +2794,11 @@ "DE.Views.Toolbar.txtScheme7": "株主資本", "DE.Views.Toolbar.txtScheme8": "フロー", "DE.Views.Toolbar.txtScheme9": "エコロジー", + "DE.Views.ViewTab.textAlwaysShowToolbar": "常にツールバーを表示する", + "DE.Views.ViewTab.textFitToPage": "ページに合わせる", + "DE.Views.ViewTab.textInterfaceTheme": "インターフェイスのテーマ", + "DE.Views.ViewTab.textRulers": "ルーラー", + "DE.Views.ViewTab.textZoom": "ズーム", "DE.Views.WatermarkSettingsDialog.textAuto": "自動", "DE.Views.WatermarkSettingsDialog.textBold": "太字", "DE.Views.WatermarkSettingsDialog.textColor": "テキスト色", diff --git a/apps/documenteditor/main/locale/ro.json b/apps/documenteditor/main/locale/ro.json index f7dc86b34..87217ce37 100644 --- a/apps/documenteditor/main/locale/ro.json +++ b/apps/documenteditor/main/locale/ro.json @@ -168,6 +168,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Nou", "Common.UI.ExtendedColorDialog.textRGBErr": "Valoarea introdusă nu este corectă.
Introduceți valoarea numerică de la 0 până la 255.", "Common.UI.HSBColorPicker.textNoColor": "Fără culoare", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Ascunde parola", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Afișează parola", "Common.UI.SearchDialog.textHighlight": "Evidențierea rezultatelor", "Common.UI.SearchDialog.textMatchCase": "Sensibil la litere mari și mici", "Common.UI.SearchDialog.textReplaceDef": "Introduceți textul înlocuitor", @@ -211,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Creare automată a listei cu marcatori", "Common.Views.AutoCorrectDialog.textBy": "După", "Common.Views.AutoCorrectDialog.textDelete": "Ștergere", + "Common.Views.AutoCorrectDialog.textFLCells": "Scrie cu majusculă prima litera din fiecare celulă de tabel", "Common.Views.AutoCorrectDialog.textFLSentence": "Scrie cu majusculă prima literă a propoziției", "Common.Views.AutoCorrectDialog.textHyperlink": "Căi Internet și de rețea cu hyperlink-uri", "Common.Views.AutoCorrectDialog.textHyphens": "Cratime (--) cu linie de dialog (—)", @@ -236,12 +239,14 @@ "Common.Views.Comments.mniAuthorDesc": "Autor de la Z la A", "Common.Views.Comments.mniDateAsc": "Cele mai vechi", "Common.Views.Comments.mniDateDesc": "Cele mai recente", + "Common.Views.Comments.mniFilterGroups": "Filtrare după grup", "Common.Views.Comments.mniPositionAsc": "De sus", "Common.Views.Comments.mniPositionDesc": "De jos", "Common.Views.Comments.textAdd": "Adaugă", "Common.Views.Comments.textAddComment": "Adaugă comentariu", "Common.Views.Comments.textAddCommentToDoc": "Adăugare comentariu la document", "Common.Views.Comments.textAddReply": "Adăugare răspuns", + "Common.Views.Comments.textAll": "Toate", "Common.Views.Comments.textAnonym": "Invitat", "Common.Views.Comments.textCancel": "Revocare", "Common.Views.Comments.textClose": "Închidere", @@ -255,6 +260,7 @@ "Common.Views.Comments.textResolve": "Rezolvare", "Common.Views.Comments.textResolved": "Rezolvat", "Common.Views.Comments.textSort": "Sortare comentarii", + "Common.Views.Comments.textViewResolved": "Dvs. nu aveți permisiunea de a redeschide comentariu", "Common.Views.CopyWarningDialog.textDontShow": "Nu afișa acest mesaj din nou", "Common.Views.CopyWarningDialog.textMsg": "Operațiuni de copiere, decupare și lipire din bară de instrumente sau meniul contextual al editorului se execută numai în editorul.

Pentru copiere și lipire din sau în aplicații exterioare folosiți următoarele combinații de taste:", "Common.Views.CopyWarningDialog.textTitle": "Comenzile de copiere, decupare și lipire", @@ -273,7 +279,7 @@ "Common.Views.Header.textAddFavorite": "Marcare ca preferat", "Common.Views.Header.textAdvSettings": "Setări avansate", "Common.Views.Header.textBack": "Deschidere locația fișierului", - "Common.Views.Header.textCompactView": "Ascundere bară de instrumente", + "Common.Views.Header.textCompactView": "Ascunde bară de instrumente", "Common.Views.Header.textHideLines": "Ascundere rigle", "Common.Views.Header.textHideStatusBar": "Ascundere bară de stare", "Common.Views.Header.textRemoveFavorite": "Eliminare din Preferințe", @@ -431,6 +437,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Deschidere din nou", "Common.Views.ReviewPopover.textReply": "Răspunde", "Common.Views.ReviewPopover.textResolve": "Rezolvare", + "Common.Views.ReviewPopover.textViewResolved": "Dvs. nu aveți permisiunea de a redeschide comentariu", "Common.Views.ReviewPopover.txtAccept": "Acceptare", "Common.Views.ReviewPopover.txtDeleteTip": "Ștergere", "Common.Views.ReviewPopover.txtEditTip": "Editare", @@ -602,6 +609,7 @@ "DE.Controllers.Main.textLongName": "Numărul maxim de caractere dintr-un nume este 128 caractere.", "DE.Controllers.Main.textNoLicenseTitle": "Ați atins limita stabilită de licență", "DE.Controllers.Main.textPaidFeature": "Funcția contra plată", + "DE.Controllers.Main.textReconnect": "Conexiunea este restabilită", "DE.Controllers.Main.textRemember": "Salvează setările pentru toate fișiere", "DE.Controllers.Main.textRenameError": "Numele utilizatorului trebuie comletat.", "DE.Controllers.Main.textRenameLabel": "Introduceți numele pentru lucrul în colaborare", @@ -805,11 +813,11 @@ "DE.Controllers.Main.txtShape_star16": "Stea cu 16 colțuri", "DE.Controllers.Main.txtShape_star24": "Stea cu 24 colțuri", "DE.Controllers.Main.txtShape_star32": "Stea cu 32 colțuri", - "DE.Controllers.Main.txtShape_star4": "Stea cu 4 colțuri", - "DE.Controllers.Main.txtShape_star5": "Stea cu 5 colțuri", - "DE.Controllers.Main.txtShape_star6": "Stea cu 6 colțuri", - "DE.Controllers.Main.txtShape_star7": "Stea cu 7 colțuri", - "DE.Controllers.Main.txtShape_star8": "Stea cu 8 colțuri", + "DE.Controllers.Main.txtShape_star4": "Stea în 4 colțuri", + "DE.Controllers.Main.txtShape_star5": "Stea în 5 colțuri", + "DE.Controllers.Main.txtShape_star6": "Stea în 6 colțuri", + "DE.Controllers.Main.txtShape_star7": "Stea în 7 colțuri", + "DE.Controllers.Main.txtShape_star8": "Stea în 8 colțuri", "DE.Controllers.Main.txtShape_stripedRightArrow": "Săgeată dreapta vărgată", "DE.Controllers.Main.txtShape_sun": "Soare", "DE.Controllers.Main.txtShape_teardrop": "Lacrimă", @@ -879,6 +887,7 @@ "DE.Controllers.Main.warnProcessRightsChange": "Accesul la editarea fișierului refuzat.", "DE.Controllers.Navigation.txtBeginning": "Începutul documentului", "DE.Controllers.Navigation.txtGotoBeginning": "Salt la începutul documentului", + "DE.Controllers.Statusbar.textDisconnect": "Conexiunea a fost pierdută
Încercare de conectare. Verificați setările conexiunii.", "DE.Controllers.Statusbar.textHasChanges": "Au fost identificate noile modificări", "DE.Controllers.Statusbar.textSetTrackChanges": "Sunteți în modul Urmărire Modificări", "DE.Controllers.Statusbar.textTrackChanges": "Urmărire modificări a fost activată în documentul deschis", @@ -902,10 +911,22 @@ "DE.Controllers.Toolbar.textMatrix": "Matrice", "DE.Controllers.Toolbar.textOperator": "Operatori", "DE.Controllers.Toolbar.textRadical": "Radicale", + "DE.Controllers.Toolbar.textRecentlyUsed": "Utilizate recent", "DE.Controllers.Toolbar.textScript": "Scripturile", "DE.Controllers.Toolbar.textSymbols": "Simboluri", "DE.Controllers.Toolbar.textTabForms": "Formulare", "DE.Controllers.Toolbar.textWarning": "Avertisment", + "DE.Controllers.Toolbar.tipMarkersArrow": "Listă cu marcatori săgeată", + "DE.Controllers.Toolbar.tipMarkersCheckmark": "Listă cu marcatori simbol de bifare", + "DE.Controllers.Toolbar.tipMarkersDash": "Listă cu marcatori cu o liniuță", + "DE.Controllers.Toolbar.tipMarkersFRhombus": "Listă cu marcatori romb umplut", + "DE.Controllers.Toolbar.tipMarkersFRound": "Listă cu marcatori cerc umplut", + "DE.Controllers.Toolbar.tipMarkersFSquare": "Listă cu marcatori pătrat umplut", + "DE.Controllers.Toolbar.tipMarkersHRound": "Listă cu marcatori cerc gol ", + "DE.Controllers.Toolbar.tipMarkersStar": "Listă cu marcatori stele", + "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Listă multinivel numerotată", + "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Listă multinivel cu marcatori", + "DE.Controllers.Toolbar.tipMultiLevelVarious": "Listă multinivel cu numerotare diversă ", "DE.Controllers.Toolbar.txtAccent_Accent": "Ascuțit", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Săgeată deasupra de la dreapta la stînga", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Săgeată deasupra spre stânga ", @@ -1281,9 +1302,9 @@ "DE.Views.ChartSettings.textUndock": "Detașare de panou", "DE.Views.ChartSettings.textWidth": "Lățime", "DE.Views.ChartSettings.textWrap": "Stil de încadrare", - "DE.Views.ChartSettings.txtBehind": "În urmă", - "DE.Views.ChartSettings.txtInFront": "În prim-plan", - "DE.Views.ChartSettings.txtInline": "În linie", + "DE.Views.ChartSettings.txtBehind": "În spatele textului", + "DE.Views.ChartSettings.txtInFront": "În fața textului", + "DE.Views.ChartSettings.txtInline": "În linie cu textul", "DE.Views.ChartSettings.txtSquare": "Pătrat", "DE.Views.ChartSettings.txtThrough": "Printre", "DE.Views.ChartSettings.txtTight": "Strâns", @@ -1457,6 +1478,7 @@ "DE.Views.DocumentHolder.textDistributeCols": "Distribuire coloane", "DE.Views.DocumentHolder.textDistributeRows": "Distribuire rânduri", "DE.Views.DocumentHolder.textEditControls": "Setări control de conținut", + "DE.Views.DocumentHolder.textEditPoints": "Editare puncte", "DE.Views.DocumentHolder.textEditWrapBoundary": "Editare bordură la text", "DE.Views.DocumentHolder.textFlipH": "Răsturnare orizontală", "DE.Views.DocumentHolder.textFlipV": "Răsturnare verticală", @@ -1505,6 +1527,14 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Actualizare cuprins", "DE.Views.DocumentHolder.textWrap": "Stil de încadrare", "DE.Views.DocumentHolder.tipIsLocked": "La moment acest obiect este editat de către un alt utilizator.", + "DE.Views.DocumentHolder.tipMarkersArrow": "Listă cu marcatori săgeată", + "DE.Views.DocumentHolder.tipMarkersCheckmark": "Listă cu marcatori simbol de bifare", + "DE.Views.DocumentHolder.tipMarkersDash": "Listă cu marcatori cu o liniuță", + "DE.Views.DocumentHolder.tipMarkersFRhombus": "Listă cu marcatori romb umplut", + "DE.Views.DocumentHolder.tipMarkersFRound": "Listă cu marcatori cerc umplut", + "DE.Views.DocumentHolder.tipMarkersFSquare": "Listă cu marcatori pătrat umplut", + "DE.Views.DocumentHolder.tipMarkersHRound": "Listă cu marcatori cerc gol ", + "DE.Views.DocumentHolder.tipMarkersStar": "Listă cu marcatori stele", "DE.Views.DocumentHolder.toDictionaryText": "Adăugare la dicționar", "DE.Views.DocumentHolder.txtAddBottom": "Adăugare bordură de jos", "DE.Views.DocumentHolder.txtAddFractionBar": "Adăugare linia de fracție", @@ -1516,7 +1546,7 @@ "DE.Views.DocumentHolder.txtAddTop": "Adăugare bordură de sus", "DE.Views.DocumentHolder.txtAddVer": "Adăugare linia verticală", "DE.Views.DocumentHolder.txtAlignToChar": "Aliniere la caracter", - "DE.Views.DocumentHolder.txtBehind": "În urmă", + "DE.Views.DocumentHolder.txtBehind": "În spatele textului", "DE.Views.DocumentHolder.txtBorderProps": "Proprietăți bordura", "DE.Views.DocumentHolder.txtBottom": "Jos", "DE.Views.DocumentHolder.txtColumnAlign": "Alinierea coloanei", @@ -1552,8 +1582,8 @@ "DE.Views.DocumentHolder.txtHideTopLimit": "Ascundere limită superioară", "DE.Views.DocumentHolder.txtHideVer": "Ascundere linie verticală", "DE.Views.DocumentHolder.txtIncreaseArg": "Mărire dimensiune argument", - "DE.Views.DocumentHolder.txtInFront": "În prim-plan", - "DE.Views.DocumentHolder.txtInline": "În linie", + "DE.Views.DocumentHolder.txtInFront": "În fața textului", + "DE.Views.DocumentHolder.txtInline": "În linie cu textul", "DE.Views.DocumentHolder.txtInsertArgAfter": "Inserare argument după", "DE.Views.DocumentHolder.txtInsertArgBefore": "Inserare argument înainte", "DE.Views.DocumentHolder.txtInsertBreak": "Inserare întrerupere manuală", @@ -1871,6 +1901,7 @@ "DE.Views.ImageSettings.textCrop": "Trunchiere", "DE.Views.ImageSettings.textCropFill": "Umplere", "DE.Views.ImageSettings.textCropFit": "Potrivire", + "DE.Views.ImageSettings.textCropToShape": "Trunchiere la formă", "DE.Views.ImageSettings.textEdit": "Editare", "DE.Views.ImageSettings.textEditObject": "Editare obiect", "DE.Views.ImageSettings.textFitMargins": "Portivire la margină", @@ -1885,14 +1916,15 @@ "DE.Views.ImageSettings.textHintFlipV": "Răsturnare verticală", "DE.Views.ImageSettings.textInsert": "Înlocuire imagine", "DE.Views.ImageSettings.textOriginalSize": "Dimensiunea reală", + "DE.Views.ImageSettings.textRecentlyUsed": "Utilizate recent", "DE.Views.ImageSettings.textRotate90": "Rotire 90°", "DE.Views.ImageSettings.textRotation": "Rotație", "DE.Views.ImageSettings.textSize": "Dimensiune", "DE.Views.ImageSettings.textWidth": "Lățime", "DE.Views.ImageSettings.textWrap": "Stil de încadrare", - "DE.Views.ImageSettings.txtBehind": "În urmă", - "DE.Views.ImageSettings.txtInFront": "În prim-plan", - "DE.Views.ImageSettings.txtInline": "În linie", + "DE.Views.ImageSettings.txtBehind": "În spatele textului", + "DE.Views.ImageSettings.txtInFront": "În fața textului", + "DE.Views.ImageSettings.txtInline": "În linie cu textul", "DE.Views.ImageSettings.txtSquare": "Pătrat", "DE.Views.ImageSettings.txtThrough": "Printre", "DE.Views.ImageSettings.txtTight": "Strâns", @@ -1965,9 +1997,9 @@ "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Stil linie și setări săgeată", "DE.Views.ImageSettingsAdvanced.textWidth": "Lățime", "DE.Views.ImageSettingsAdvanced.textWrap": "Stil de încadrare", - "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "În urmă", - "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "În prim-plan", - "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "În linie", + "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "În spatele textului", + "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "În fața textului", + "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "În linie cu textul", "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Pătrat", "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Printre", "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Strâns", @@ -2155,6 +2187,11 @@ "DE.Views.PageSizeDialog.textTitle": "Dimensiune pagină", "DE.Views.PageSizeDialog.textWidth": "Lățime", "DE.Views.PageSizeDialog.txtCustom": "Particularizat", + "DE.Views.PageThumbnails.textClosePanel": "Închide miniaturi de pagini", + "DE.Views.PageThumbnails.textHighlightVisiblePart": "Evidențiază partea vizibilă a paginii", + "DE.Views.PageThumbnails.textPageThumbnails": "Miniaturi Pagini", + "DE.Views.PageThumbnails.textThumbnailsSettings": "Setări miniaturi", + "DE.Views.PageThumbnails.textThumbnailsSize": "Dimensiunea miniaturilor", "DE.Views.ParagraphSettings.strIndent": "Indentări", "DE.Views.ParagraphSettings.strIndentsLeftText": "Stânga", "DE.Views.ParagraphSettings.strIndentsRightText": "Dreapta", @@ -2290,6 +2327,7 @@ "DE.Views.ShapeSettings.textPatternFill": "Model", "DE.Views.ShapeSettings.textPosition": "Poziție", "DE.Views.ShapeSettings.textRadial": "Radială", + "DE.Views.ShapeSettings.textRecentlyUsed": "Utilizate recent", "DE.Views.ShapeSettings.textRotate90": "Rotire 90°", "DE.Views.ShapeSettings.textRotation": "Rotație", "DE.Views.ShapeSettings.textSelectImage": "Selectați imaginea", @@ -2301,7 +2339,7 @@ "DE.Views.ShapeSettings.textWrap": "Stil de încadrare", "DE.Views.ShapeSettings.tipAddGradientPoint": "Adăugare stop gradient", "DE.Views.ShapeSettings.tipRemoveGradientPoint": "Eliminare stop gradient", - "DE.Views.ShapeSettings.txtBehind": "În urmă", + "DE.Views.ShapeSettings.txtBehind": "În spatele textului", "DE.Views.ShapeSettings.txtBrownPaper": "Hârtie reciclată", "DE.Views.ShapeSettings.txtCanvas": "Pânză", "DE.Views.ShapeSettings.txtCarton": "Carton", @@ -2309,8 +2347,8 @@ "DE.Views.ShapeSettings.txtGrain": "Nisip", "DE.Views.ShapeSettings.txtGranite": "Granit", "DE.Views.ShapeSettings.txtGreyPaper": "Hârtie de ziar", - "DE.Views.ShapeSettings.txtInFront": "În prim-plan", - "DE.Views.ShapeSettings.txtInline": "În linie", + "DE.Views.ShapeSettings.txtInFront": "În fața textului", + "DE.Views.ShapeSettings.txtInline": "În linie cu textul", "DE.Views.ShapeSettings.txtKnit": "Dril", "DE.Views.ShapeSettings.txtLeather": "Piele", "DE.Views.ShapeSettings.txtNoBorders": "Fără linie", @@ -2570,7 +2608,7 @@ "DE.Views.Toolbar.capBtnInsControls": "Control de conținut", "DE.Views.Toolbar.capBtnInsDropcap": "Majusculă încorporată", "DE.Views.Toolbar.capBtnInsEquation": "Ecuație", - "DE.Views.Toolbar.capBtnInsHeader": "Antet/Subsol", + "DE.Views.Toolbar.capBtnInsHeader": "Antet și subsol", "DE.Views.Toolbar.capBtnInsImage": "Imagine", "DE.Views.Toolbar.capBtnInsPagebreak": "Întreruperi", "DE.Views.Toolbar.capBtnInsShape": "Forma", @@ -2681,6 +2719,7 @@ "DE.Views.Toolbar.textTabLinks": "Referințe", "DE.Views.Toolbar.textTabProtect": "Protejare", "DE.Views.Toolbar.textTabReview": "Revizuire", + "DE.Views.Toolbar.textTabView": "Vizualizare", "DE.Views.Toolbar.textTitleError": "Eroare", "DE.Views.Toolbar.textToCurrent": "Poziția curentă", "DE.Views.Toolbar.textTop": "Sus:", @@ -2772,6 +2811,15 @@ "DE.Views.Toolbar.txtScheme7": "Echilibru", "DE.Views.Toolbar.txtScheme8": "Flux", "DE.Views.Toolbar.txtScheme9": "Forjă", + "DE.Views.ViewTab.textAlwaysShowToolbar": "Afișează bară de instrumente permanent", + "DE.Views.ViewTab.textDarkDocument": "Document întunecat", + "DE.Views.ViewTab.textFitToPage": "Portivire la pagina", + "DE.Views.ViewTab.textFitToWidth": "Potrivire lățime", + "DE.Views.ViewTab.textInterfaceTheme": "Tema interfeței", + "DE.Views.ViewTab.textNavigation": "Navigare", + "DE.Views.ViewTab.textRulers": "Rigle", + "DE.Views.ViewTab.textStatusBar": "Bară de stare", + "DE.Views.ViewTab.textZoom": "Zoom", "DE.Views.WatermarkSettingsDialog.textAuto": "Auto", "DE.Views.WatermarkSettingsDialog.textBold": "Aldin", "DE.Views.WatermarkSettingsDialog.textColor": "Culoare text", diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json index 91fffa2a3..7823ce47e 100644 --- a/apps/documenteditor/main/locale/ru.json +++ b/apps/documenteditor/main/locale/ru.json @@ -2812,6 +2812,7 @@ "DE.Views.Toolbar.txtScheme8": "Поток", "DE.Views.Toolbar.txtScheme9": "Литейная", "DE.Views.ViewTab.textAlwaysShowToolbar": "Всегда показывать панель инструментов", + "DE.Views.ViewTab.textDarkDocument": "Темный документ", "DE.Views.ViewTab.textFitToPage": "По размеру страницы", "DE.Views.ViewTab.textFitToWidth": "По ширине", "DE.Views.ViewTab.textInterfaceTheme": "Тема интерфейса", diff --git a/apps/documenteditor/main/locale/tr.json b/apps/documenteditor/main/locale/tr.json index e203e13b9..4f1966499 100644 --- a/apps/documenteditor/main/locale/tr.json +++ b/apps/documenteditor/main/locale/tr.json @@ -15,14 +15,14 @@ "Common.Controllers.ReviewChanges.textAuto": "Otomatik", "Common.Controllers.ReviewChanges.textBaseline": "Kenar çizgisi", "Common.Controllers.ReviewChanges.textBold": "Kalın", - "Common.Controllers.ReviewChanges.textBreakBefore": "Page break before", + "Common.Controllers.ReviewChanges.textBreakBefore": "Sonrasında yeni sayfaya geç", "Common.Controllers.ReviewChanges.textCaps": "Tümü büyük harf", "Common.Controllers.ReviewChanges.textCenter": "Ortaya Hizala", "Common.Controllers.ReviewChanges.textChar": "Karakter seviyesi", "Common.Controllers.ReviewChanges.textChart": "Chart", "Common.Controllers.ReviewChanges.textColor": "Font color", "Common.Controllers.ReviewChanges.textContextual": "Aynı stildeki paragraflar arasına aralık ekleme", - "Common.Controllers.ReviewChanges.textDeleted": "Silindi:", + "Common.Controllers.ReviewChanges.textDeleted": "Silinen:", "Common.Controllers.ReviewChanges.textDStrikeout": "Double strikeout", "Common.Controllers.ReviewChanges.textEquation": "Equation", "Common.Controllers.ReviewChanges.textExact": "exactly", @@ -34,14 +34,14 @@ "Common.Controllers.ReviewChanges.textIndentLeft": "Indent left", "Common.Controllers.ReviewChanges.textIndentRight": "Indent right", "Common.Controllers.ReviewChanges.textInserted": "Eklenen:", - "Common.Controllers.ReviewChanges.textItalic": "Italic", + "Common.Controllers.ReviewChanges.textItalic": "Eğik", "Common.Controllers.ReviewChanges.textJustify": "İki yana hizala", "Common.Controllers.ReviewChanges.textKeepLines": "Keep lines together", "Common.Controllers.ReviewChanges.textKeepNext": "Keep with next", "Common.Controllers.ReviewChanges.textLeft": "Sola hizala", "Common.Controllers.ReviewChanges.textLineSpacing": "Line Spacing: ", "Common.Controllers.ReviewChanges.textMultiple": "multiple", - "Common.Controllers.ReviewChanges.textNoBreakBefore": "No page break before", + "Common.Controllers.ReviewChanges.textNoBreakBefore": "\"Sonrasında yeni sayfaya geç\" yok", "Common.Controllers.ReviewChanges.textNoContextual": "Aynı stildeki paragraflar arasına aralık ekleyin", "Common.Controllers.ReviewChanges.textNoKeepLines": "Don't keep lines together", "Common.Controllers.ReviewChanges.textNoKeepNext": "Don't keep with next", @@ -184,9 +184,9 @@ "Common.UI.SynchronizeTip.textSynchronize": "Döküman başka bir kullanıcı tarafından değiştirildi.
Lütfen değişikleri kaydetmek için tıklayın ve güncellemeleri yenileyin.", "Common.UI.ThemeColorPalette.textStandartColors": "Standart Renkler", "Common.UI.ThemeColorPalette.textThemeColors": "Tema Renkleri", - "Common.UI.Themes.txtThemeClassicLight": "Açık mod", + "Common.UI.Themes.txtThemeClassicLight": "Klasik Aydınlık", "Common.UI.Themes.txtThemeDark": "Karanlık", - "Common.UI.Themes.txtThemeLight": "Açık", + "Common.UI.Themes.txtThemeLight": "Aydınlık", "Common.UI.Window.cancelButtonText": "İptal Et", "Common.UI.Window.closeButtonText": "Kapat", "Common.UI.Window.noButtonText": "Hayır", @@ -221,7 +221,7 @@ "Common.Views.AutoCorrectDialog.textNumbered": "Otomatik numaralı liste", "Common.Views.AutoCorrectDialog.textQuotes": "\"Akıllı tırnak\" ile \"düz tırnak\"", "Common.Views.AutoCorrectDialog.textRecognized": "Bilinen fonksiyonlar", - "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Aşağıdaki ifadeler tanınan matematik ifadeleridir. Otomatik olarak italik yazılmazlar.", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Aşağıdaki ifadeler tanınan matematik ifadeleridir. Otomatik olarak eğik yazılmazlar.", "Common.Views.AutoCorrectDialog.textReplace": "Değiştir", "Common.Views.AutoCorrectDialog.textReplaceText": "Yazarken Değiştir ", "Common.Views.AutoCorrectDialog.textReplaceType": "Metni yazarken değiştirin", @@ -252,7 +252,7 @@ "Common.Views.Comments.textClose": "Kapat", "Common.Views.Comments.textClosePanel": "Yorumları kapat", "Common.Views.Comments.textComments": "Yorumlar", - "Common.Views.Comments.textEdit": "Düzenle", + "Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEnterCommentHint": "Yorumunuzu buraya giriniz", "Common.Views.Comments.textHintAddComment": "Yorum Ekle", "Common.Views.Comments.textOpenAgain": "Tekrar Aç", @@ -288,7 +288,7 @@ "Common.Views.Header.tipDownload": "Dosyayı indir", "Common.Views.Header.tipGoEdit": "Mevcut belgeyi düzenle", "Common.Views.Header.tipPrint": "Sayfayı yazdır", - "Common.Views.Header.tipRedo": "Tekrar yap", + "Common.Views.Header.tipRedo": "Yinele", "Common.Views.Header.tipSave": "Kaydet", "Common.Views.Header.tipUndo": "Geri Al", "Common.Views.Header.tipViewSettings": "Seçenekler", @@ -315,19 +315,19 @@ "Common.Views.LanguageDialog.labelSelect": "Belge dilini seçin", "Common.Views.OpenDialog.closeButtonText": "Dosyayı Kapat", "Common.Views.OpenDialog.txtEncoding": "Encoding ", - "Common.Views.OpenDialog.txtIncorrectPwd": "Şifre hatalı.", + "Common.Views.OpenDialog.txtIncorrectPwd": "Parola hatalı.", "Common.Views.OpenDialog.txtOpenFile": "Dosyayı Açmak için Parola Girin", - "Common.Views.OpenDialog.txtPassword": "Şifre", + "Common.Views.OpenDialog.txtPassword": "Parola", "Common.Views.OpenDialog.txtPreview": "Önizleme", - "Common.Views.OpenDialog.txtProtected": "Şifreyi girip dosyayı açtığınızda, dosyanın mevcut şifresi sıfırlanacaktır.", + "Common.Views.OpenDialog.txtProtected": "Parolayı girip dosyayı açtığınızda, dosyanın mevcut parolası sıfırlanacaktır.", "Common.Views.OpenDialog.txtTitle": "Choose %1 options", "Common.Views.OpenDialog.txtTitleProtected": "Korumalı dosya", - "Common.Views.PasswordDialog.txtDescription": "Bu belgeyi korumak için bir şifre belirleyin", + "Common.Views.PasswordDialog.txtDescription": "Bu belgeyi korumak için bir parola belirleyin", "Common.Views.PasswordDialog.txtIncorrectPwd": "Onay şifresi aynı değil", "Common.Views.PasswordDialog.txtPassword": "Parola", - "Common.Views.PasswordDialog.txtRepeat": "Şifreyi tekrar girin", - "Common.Views.PasswordDialog.txtTitle": "Şifreyi belirle", - "Common.Views.PasswordDialog.txtWarning": "Dikkat: Parolayı kaybeder veya unutursanız, kurtarılamaz.", + "Common.Views.PasswordDialog.txtRepeat": "Parolayı tekrar girin", + "Common.Views.PasswordDialog.txtTitle": "Parola Belirle", + "Common.Views.PasswordDialog.txtWarning": "Dikkat: Parolayı kaybeder veya unutursanız, kurtarılamaz. Lütfen parolayı güvenli bir yerde saklayın.", "Common.Views.PluginDlg.textLoading": "Yükleniyor", "Common.Views.Plugins.groupCaption": "Eklentiler", "Common.Views.Plugins.strPlugins": "Plugin", @@ -335,11 +335,11 @@ "Common.Views.Plugins.textStart": "Başlat", "Common.Views.Plugins.textStop": "Bitir", "Common.Views.Protection.hintAddPwd": "Parola ile şifreleyin", - "Common.Views.Protection.hintPwd": "Şifreyi değiştir veya sil", + "Common.Views.Protection.hintPwd": "Parolayı değiştir veya sil", "Common.Views.Protection.hintSignature": "Dijital imza veya imza satırı ekleyin", - "Common.Views.Protection.txtAddPwd": "Şifre ekle", - "Common.Views.Protection.txtChangePwd": "Şifre Değiştir", - "Common.Views.Protection.txtDeletePwd": "Şifreyi sil", + "Common.Views.Protection.txtAddPwd": "Parola ekle", + "Common.Views.Protection.txtChangePwd": "Parolayı değiştir", + "Common.Views.Protection.txtDeletePwd": "Parolayı sil", "Common.Views.Protection.txtEncrypt": "Şifrele", "Common.Views.Protection.txtInvisibleSignature": "Dijital imza ekle", "Common.Views.Protection.txtSignature": "İmza", @@ -450,7 +450,7 @@ "Common.Views.SignDialog.textCertificate": "Sertifika", "Common.Views.SignDialog.textChange": "Değiştir", "Common.Views.SignDialog.textInputName": "İmzalayan adını girin", - "Common.Views.SignDialog.textItalic": "İtalik", + "Common.Views.SignDialog.textItalic": "Eğik", "Common.Views.SignDialog.textNameError": "İmzalayan adı boş bırakılmamalıdır.", "Common.Views.SignDialog.textPurpose": "Bu belgeyi imzalamanın amacı", "Common.Views.SignDialog.textSelect": "Seç", @@ -500,7 +500,7 @@ "Common.Views.UserNameDialog.textDontShow": "Bana bir daha sorma", "Common.Views.UserNameDialog.textLabel": "Etiket:", "Common.Views.UserNameDialog.textLabelError": "Etiket boş olamaz.", - "DE.Controllers.LeftMenu.leavePageText": "Bu belgedeki kaydedilmemiş tüm değişiklikler kaybolacak.
Bunları kaydetmek için \"İptal\"i ve ardından \"Kaydet\"i tıklayın. Kaydedilmemiş tüm değişiklikleri atmak için \"Tamam\" ı tıklayın.", + "DE.Controllers.LeftMenu.leavePageText": "Bu belgedeki kaydedilmemiş tüm değişiklikler kaybolacak.
Bunları kaydetmek için \"İptal\"i ve ardından \"Kaydet\"i tıklayın. Kaydedilmemiş tüm değişiklikleri atmak için \"OK\" ı tıklayın.", "DE.Controllers.LeftMenu.newDocumentTitle": "İsimlendirilmemiş döküman", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Uyarı", "DE.Controllers.LeftMenu.requestEditRightsText": "Düzenleme hakları isteniyor...", @@ -514,7 +514,7 @@ "DE.Controllers.Main.applyChangesTextText": "Değişiklikler yükleniyor...", "DE.Controllers.Main.applyChangesTitleText": "Değişiklikler Yükleniyor", "DE.Controllers.Main.convertationTimeoutText": "Değişim süresi geçti.", - "DE.Controllers.Main.criticalErrorExtText": "Döküman listesine dönmek için \"TAMAM\"'a tıklayın", + "DE.Controllers.Main.criticalErrorExtText": "Döküman listesine dönmek için \"OK\"'a tıklayın", "DE.Controllers.Main.criticalErrorTitle": "Hata", "DE.Controllers.Main.downloadErrorText": "Yükleme başarısız oldu.", "DE.Controllers.Main.downloadMergeText": "Downloading...", @@ -526,7 +526,7 @@ "DE.Controllers.Main.errorCoAuthoringDisconnect": "Sunucu bağlantısı kesildi. Döküman şu an düzenlenemez.", "DE.Controllers.Main.errorComboSeries": "Bir kombinasyon grafiği oluşturmak için en az iki veri serisi seçin.", "DE.Controllers.Main.errorCompare": "Belgeleri Karşılaştır özelliği, birlikte düzenleme sırasında kullanılamaz.", - "DE.Controllers.Main.errorConnectToServer": "Belge kaydedilemedi. Lütfen bağlantı ayarlarını kontrol edin veya yöneticinizle iletişime geçin.
'Tamam' düğmesini tıkladığınızda, belgeyi indirmeniz istenecektir.", + "DE.Controllers.Main.errorConnectToServer": "Belge kaydedilemedi. Lütfen bağlantı ayarlarını kontrol edin veya yöneticinizle iletişime geçin.
'OK' düğmesini tıkladığınızda, belgeyi indirmeniz istenecektir.", "DE.Controllers.Main.errorDatabaseConnection": "Harci hata.
Veri tabanı bağlantı hatası. Hata devam ederse lütfen destek ile iletişime geçin.", "DE.Controllers.Main.errorDataEncrypted": "Şifreli değişiklikler algılandı, çözülemiyor.", "DE.Controllers.Main.errorDataRange": "Yanlış veri aralığı.", @@ -548,7 +548,7 @@ "DE.Controllers.Main.errorSessionAbsolute": "Doküman düzenleme oturumu sona erdi. Lütfen sayfayı yeniden yükleyin.", "DE.Controllers.Main.errorSessionIdle": "Belge oldukça uzun süredir düzenlenmedi. Lütfen sayfayı yeniden yükleyin.", "DE.Controllers.Main.errorSessionToken": "Sunucu bağlantısı yarıda kesildi. Lütfen sayfayı yeniden yükleyin.", - "DE.Controllers.Main.errorSetPassword": "Şifre ayarlanamadı.", + "DE.Controllers.Main.errorSetPassword": "Parola ayarlanamadı.", "DE.Controllers.Main.errorStockChart": "Yanlış dizi sırası. Stok grafiği oluşturma için tablodaki verileri şu sırada yerleştirin:
açılış fiyatı, maksimum fiyat, minimum fiyat, kapanış fiyatı. ", "DE.Controllers.Main.errorSubmit": "Kaydetme başarısız oldu.", "DE.Controllers.Main.errorToken": "Belge güvenlik belirteci doğru şekilde oluşturulmamış

Lütfen Document Server yöneticinize başvurun.", @@ -559,7 +559,7 @@ "DE.Controllers.Main.errorUsersExceed": "Fiyat planının izin verdiği kullanıcı sayısı aşıldı", "DE.Controllers.Main.errorViewerDisconnect": "Bağlantı kesildi. Belgeyi yine de görüntüleyebilirsiniz,
ancak bağlantı yeniden kurulana ve sayfa yeniden yüklenene kadar indiremez veya yazdıramazsınız.", "DE.Controllers.Main.leavePageText": "Bu dökümandaki değişiklikleri kaydetmediniz. \"Bu sayfada kal\"'a tıklayınız ve sonrasında kaydetmek için \"Kaydet\"'e tıklayınız. Kaydedilmeyen değişikliklerin tümünü göz ardı etmek için \"Bu Sayfadan Ayrıl\"'a tıklayınız.", - "DE.Controllers.Main.leavePageTextOnClose": "Bu belgedeki kaydedilmemiş tüm değişiklikler kaybolacak.
Bunları kaydetmek için \"İptal\"i ve ardından \"Kaydet\"i tıklayın. Kaydedilmemiş tüm değişiklikleri atmak için \"Tamam\" ı tıklayın.", + "DE.Controllers.Main.leavePageTextOnClose": "Bu belgedeki kaydedilmemiş tüm değişiklikler kaybolacak.
Bunları kaydetmek için \"İptal\"i ve ardından \"Kaydet\"i tıklayın. Kaydedilmemiş tüm değişiklikleri atmak için \"OK\" ı tıklayın.", "DE.Controllers.Main.loadFontsTextText": "Veri yükleniyor...", "DE.Controllers.Main.loadFontsTitleText": "Veri yükleniyor", "DE.Controllers.Main.loadFontTextText": "Veri yükleniyor...", @@ -611,11 +611,11 @@ "DE.Controllers.Main.textReconnect": "Yeniden bağlanıldı", "DE.Controllers.Main.textRemember": "Seçimimi tüm dosyalar için hatırla", "DE.Controllers.Main.textRenameError": "Kullanıcı adı boş bırakılmamalıdır.", - "DE.Controllers.Main.textRenameLabel": "İşbirliği için kullanılacak bir ad girin", + "DE.Controllers.Main.textRenameLabel": "Ortak çalışma için kullanılacak bir ad girin", "DE.Controllers.Main.textShape": "Şekil", "DE.Controllers.Main.textStrict": "Strict mode", - "DE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.
Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.", - "DE.Controllers.Main.textTryUndoRedoWarn": "Hızlı birlikte düzenleme modunda geri al/ileri al fonksiyonları devre dışıdır.", + "DE.Controllers.Main.textTryUndoRedo": "Geri al/Yinele fonksiyonları hızlı ortak çalışma modunda devre dışı kalır.
'Katı mod' tuşuna tıklayarak Katı ortak düzenleme moduna geçebilir ve diğer kullanıcıların müdehalesi olmadan, yalnızca siz belgeyi kaydettikten sonra değişiklik yapılmasını sağlayabilirsiniz. Ortak çalışma moduna tekrar dönmek için Gelişmiş ayarları kullanabilirsiniz.", + "DE.Controllers.Main.textTryUndoRedoWarn": "Hızlı ortak düzenleme modunda geri al/yinele fonksiyonları devre dışıdır.", "DE.Controllers.Main.titleLicenseExp": "Lisans süresi doldu", "DE.Controllers.Main.titleServerVersion": "Editör güncellendi", "DE.Controllers.Main.titleUpdateVersion": "Versiyon değiştirildi", @@ -640,7 +640,7 @@ "DE.Controllers.Main.txtFirstPage": "İlk sayfa", "DE.Controllers.Main.txtFooter": "Altbilgi", "DE.Controllers.Main.txtFormulaNotInTable": "Tabloda Olmayan Formül", - "DE.Controllers.Main.txtHeader": "Üst Başlık", + "DE.Controllers.Main.txtHeader": "Üst Bilgi", "DE.Controllers.Main.txtHyperlink": "Köprü", "DE.Controllers.Main.txtIndTooLarge": "Dizin Çok Büyük", "DE.Controllers.Main.txtLines": "Satırlar", @@ -707,7 +707,7 @@ "DE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Kavisli Çift Ok Bağlayıcı", "DE.Controllers.Main.txtShape_curvedDownArrow": "Eğri Aşağı Ok", "DE.Controllers.Main.txtShape_curvedLeftArrow": "Kavisli Sol Ok", - "DE.Controllers.Main.txtShape_curvedRightArrow": "Kavisli Sağ Ok", + "DE.Controllers.Main.txtShape_curvedRightArrow": "Kavisli Sağa Ok", "DE.Controllers.Main.txtShape_curvedUpArrow": "Kavisli Yukarı OK", "DE.Controllers.Main.txtShape_decagon": "Dekagon", "DE.Controllers.Main.txtShape_diagStripe": "Çapraz Çizgi", @@ -792,7 +792,7 @@ "DE.Controllers.Main.txtShape_rect": "Dikdörtgen", "DE.Controllers.Main.txtShape_ribbon": "Aşağı Ribbon", "DE.Controllers.Main.txtShape_ribbon2": "Yukarı Ribbon", - "DE.Controllers.Main.txtShape_rightArrow": "Sağ Ok", + "DE.Controllers.Main.txtShape_rightArrow": "Sağa Ok", "DE.Controllers.Main.txtShape_rightArrowCallout": "Sağ Ok Belirtme Çizgisi ", "DE.Controllers.Main.txtShape_rightBrace": "Sağ Ayraç", "DE.Controllers.Main.txtShape_rightBracket": "Sağ Köşeli Ayraç", @@ -807,16 +807,16 @@ "DE.Controllers.Main.txtShape_snip2SameRect": "Aynı Yan Köşe Dikdörtgeni Kes", "DE.Controllers.Main.txtShape_snipRoundRect": "Yuvarlak Tek Köşe Dikdörtgen Kes", "DE.Controllers.Main.txtShape_spline": "Eğri", - "DE.Controllers.Main.txtShape_star10": "10-Numara Yıldız", - "DE.Controllers.Main.txtShape_star12": "12-Numara Yıldız", - "DE.Controllers.Main.txtShape_star16": "16-Numara Yıldız", - "DE.Controllers.Main.txtShape_star24": "24-Numara Yıldız", - "DE.Controllers.Main.txtShape_star32": "32-Numara Yıldız", - "DE.Controllers.Main.txtShape_star4": "4-Numara Yıldız", - "DE.Controllers.Main.txtShape_star5": "5-Numara Yıldız", - "DE.Controllers.Main.txtShape_star6": "6-Numara Yıldız", - "DE.Controllers.Main.txtShape_star7": "7-Numara Yıldız", - "DE.Controllers.Main.txtShape_star8": "8-Numara Yıldız", + "DE.Controllers.Main.txtShape_star10": "10 Köşeli Yıldız", + "DE.Controllers.Main.txtShape_star12": "12 Köşeli Yıldız", + "DE.Controllers.Main.txtShape_star16": "16 Köşeli Yıldız", + "DE.Controllers.Main.txtShape_star24": "24 Köşeli Yıldız", + "DE.Controllers.Main.txtShape_star32": "32 Köşeli Yıldız", + "DE.Controllers.Main.txtShape_star4": "4 Köşeli Yıldız", + "DE.Controllers.Main.txtShape_star5": "5 Köşeli Yıldız", + "DE.Controllers.Main.txtShape_star6": "6 Köşeli Yıldız", + "DE.Controllers.Main.txtShape_star7": "7 Köşeli Yıldız", + "DE.Controllers.Main.txtShape_star8": "8 Köşeli Yıldız", "DE.Controllers.Main.txtShape_stripedRightArrow": "Çizgili Sağ Ok", "DE.Controllers.Main.txtShape_sun": "Güneş", "DE.Controllers.Main.txtShape_teardrop": "Damla", @@ -834,7 +834,7 @@ "DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Yuvarlak Dikdörtgen Belirtme ", "DE.Controllers.Main.txtStarsRibbons": "Yıldızlar & Kurdeleler", "DE.Controllers.Main.txtStyle_Caption": "Resim yazısı", - "DE.Controllers.Main.txtStyle_endnote_text": "Endnote metni", + "DE.Controllers.Main.txtStyle_endnote_text": "Son not metni", "DE.Controllers.Main.txtStyle_footnote_text": "Dipnot metni", "DE.Controllers.Main.txtStyle_Heading_1": "Başlık 1", "DE.Controllers.Main.txtStyle_Heading_2": "Başlık 2", @@ -891,7 +891,7 @@ "DE.Controllers.Statusbar.textSetTrackChanges": "Değişiklikleri İzle modundasınız", "DE.Controllers.Statusbar.textTrackChanges": "The document is opened with the Track Changes mode enabled", "DE.Controllers.Statusbar.tipReview": "Değişiklikleri izle", - "DE.Controllers.Statusbar.zoomText": "Zum {0}%", + "DE.Controllers.Statusbar.zoomText": "Yakınlaştırma {0}%", "DE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.
The text style will be displayed using one of the device fonts, the saved font will be used when it is available.
Do you want to continue?", "DE.Controllers.Toolbar.dataUrl": "Bir veri URL'si yapıştırın", "DE.Controllers.Toolbar.notcriticalErrorTitle": "Uyarı", @@ -1199,7 +1199,7 @@ "DE.Controllers.Toolbar.txtSymbol_kappa": "Kappa", "DE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", "DE.Controllers.Toolbar.txtSymbol_leftarrow": "Left Arrow", - "DE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Left-Right Arrow", + "DE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Sol-sağ ok", "DE.Controllers.Toolbar.txtSymbol_leq": "Less Than or Equal To", "DE.Controllers.Toolbar.txtSymbol_less": "Less Than", "DE.Controllers.Toolbar.txtSymbol_ll": "Much Less Than", @@ -1226,7 +1226,7 @@ "DE.Controllers.Toolbar.txtSymbol_qed": "End of Proof", "DE.Controllers.Toolbar.txtSymbol_rddots": "Up Right Diagonal Ellipsis", "DE.Controllers.Toolbar.txtSymbol_rho": "Rho", - "DE.Controllers.Toolbar.txtSymbol_rightarrow": "Right Arrow", + "DE.Controllers.Toolbar.txtSymbol_rightarrow": "Sağa Ok", "DE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", "DE.Controllers.Toolbar.txtSymbol_sqrt": "Radical Sign", "DE.Controllers.Toolbar.txtSymbol_tau": "Tau", @@ -1235,12 +1235,12 @@ "DE.Controllers.Toolbar.txtSymbol_times": "Multiplication Sign", "DE.Controllers.Toolbar.txtSymbol_uparrow": "Up Arrow", "DE.Controllers.Toolbar.txtSymbol_upsilon": "Upsilon", - "DE.Controllers.Toolbar.txtSymbol_varepsilon": "Epsilon Variant", - "DE.Controllers.Toolbar.txtSymbol_varphi": "Phi Variant", - "DE.Controllers.Toolbar.txtSymbol_varpi": "Pi Variant", - "DE.Controllers.Toolbar.txtSymbol_varrho": "Rho Variant", - "DE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma Variant", - "DE.Controllers.Toolbar.txtSymbol_vartheta": "Theta Variant", + "DE.Controllers.Toolbar.txtSymbol_varepsilon": "Epsilon varyantı", + "DE.Controllers.Toolbar.txtSymbol_varphi": "Phi varyantı", + "DE.Controllers.Toolbar.txtSymbol_varpi": "Pi varyantı", + "DE.Controllers.Toolbar.txtSymbol_varrho": "Rho varyantı", + "DE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma varyantı", + "DE.Controllers.Toolbar.txtSymbol_vartheta": "Teta Varyantı", "DE.Controllers.Toolbar.txtSymbol_vdots": "Vertical Ellipsis", "DE.Controllers.Toolbar.txtSymbol_xsi": "Xi", "DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", @@ -1394,12 +1394,12 @@ "DE.Views.DocumentHolder.addCommentText": "Yorum Ekle", "DE.Views.DocumentHolder.advancedDropCapText": "Büyük Harf Ayarları", "DE.Views.DocumentHolder.advancedFrameText": "Çerçeve Gelişmiş Ayarlar", - "DE.Views.DocumentHolder.advancedParagraphText": "Paragraf Gelişmiş Ayarlar", + "DE.Views.DocumentHolder.advancedParagraphText": "Gelişmiş Paragraf Ayarları", "DE.Views.DocumentHolder.advancedTableText": "Tablo Gelişmiş Ayarlar", "DE.Views.DocumentHolder.advancedText": "Gelişmiş Ayarlar", "DE.Views.DocumentHolder.alignmentText": "Hiza", "DE.Views.DocumentHolder.belowText": "Altında", - "DE.Views.DocumentHolder.breakBeforeText": "Şundan önce sayfa kesmesi:", + "DE.Views.DocumentHolder.breakBeforeText": "Sonrasında yeni sayfaya geç", "DE.Views.DocumentHolder.bulletsText": "Madde ve Sayılar", "DE.Views.DocumentHolder.cellAlignText": "Hücre Dikey Hizalama", "DE.Views.DocumentHolder.cellText": "Hücre", @@ -1416,10 +1416,10 @@ "DE.Views.DocumentHolder.directionText": "Text Direction", "DE.Views.DocumentHolder.editChartText": "Veri düzenle", "DE.Views.DocumentHolder.editFooterText": "Altlığı Düzenle", - "DE.Views.DocumentHolder.editHeaderText": "Üstlüğü Düzenle", - "DE.Views.DocumentHolder.editHyperlinkText": "Hiper bağı düzenle", + "DE.Views.DocumentHolder.editHeaderText": "Üst Bilgiyi Düzenle", + "DE.Views.DocumentHolder.editHyperlinkText": "Köprüyü Düzenle", "DE.Views.DocumentHolder.guestText": "Misafir", - "DE.Views.DocumentHolder.hyperlinkText": "Hiper bağ", + "DE.Views.DocumentHolder.hyperlinkText": "Köprü", "DE.Views.DocumentHolder.ignoreAllSpellText": "Hepsini yoksay", "DE.Views.DocumentHolder.ignoreSpellText": "Yoksay", "DE.Views.DocumentHolder.imageText": "Resim Gelişmiş Ayarlar", @@ -1433,17 +1433,17 @@ "DE.Views.DocumentHolder.keepLinesText": "Satırları birlikte tut", "DE.Views.DocumentHolder.langText": "Dil Seç", "DE.Views.DocumentHolder.leftText": "Sol", - "DE.Views.DocumentHolder.loadSpellText": "Varyantlar yükleniyor...", + "DE.Views.DocumentHolder.loadSpellText": "Öneriler yükleniyor...", "DE.Views.DocumentHolder.mergeCellsText": "Hücreleri birleştir", - "DE.Views.DocumentHolder.moreText": "Daha fazla varyant...", - "DE.Views.DocumentHolder.noSpellVariantsText": "Varyant yok", + "DE.Views.DocumentHolder.moreText": "Daha fazla öneri...", + "DE.Views.DocumentHolder.noSpellVariantsText": "Öneri yok", "DE.Views.DocumentHolder.notcriticalErrorTitle": "Uyarı", "DE.Views.DocumentHolder.originalSizeText": "Gerçek Boyut", "DE.Views.DocumentHolder.paragraphText": "Paragraf", - "DE.Views.DocumentHolder.removeHyperlinkText": "Hiper bağı kaldır", + "DE.Views.DocumentHolder.removeHyperlinkText": "Köprüyü kaldır", "DE.Views.DocumentHolder.rightText": "Sağ", "DE.Views.DocumentHolder.rowText": "Satır", - "DE.Views.DocumentHolder.saveStyleText": "Create new style", + "DE.Views.DocumentHolder.saveStyleText": "Yeni stil oluştur", "DE.Views.DocumentHolder.selectCellText": "Hücre seçin", "DE.Views.DocumentHolder.selectColumnText": "Sütun Seçin", "DE.Views.DocumentHolder.selectRowText": "Satır Seç", @@ -1457,7 +1457,7 @@ "DE.Views.DocumentHolder.strDetails": "İmza Ayrıntıları", "DE.Views.DocumentHolder.strSetup": "İmza Kurulumu", "DE.Views.DocumentHolder.strSign": "İmzala", - "DE.Views.DocumentHolder.styleText": "Formatting as Style", + "DE.Views.DocumentHolder.styleText": "Stil Olarak Biçimlendirme", "DE.Views.DocumentHolder.tableText": "Tablo", "DE.Views.DocumentHolder.textAlign": "Hizala", "DE.Views.DocumentHolder.textArrange": "Düzenle", @@ -1673,7 +1673,7 @@ "DE.Views.EditListItemDialog.textValue": "Değer", "DE.Views.EditListItemDialog.textValueError": "Aynı değere sahip bir öğe zaten var.", "DE.Views.FileMenu.btnBackCaption": "Dosya konumunu aç", - "DE.Views.FileMenu.btnCloseMenuCaption": "Menüyü kapat", + "DE.Views.FileMenu.btnCloseMenuCaption": "Menüyü Kapat", "DE.Views.FileMenu.btnCreateNewCaption": "Yeni oluştur", "DE.Views.FileMenu.btnDownloadCaption": "Farklı İndir...", "DE.Views.FileMenu.btnExitCaption": "Çıkış", @@ -1699,7 +1699,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Yazar Ekle", "DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Metin Ekle", "DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Uygulama", - "DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Yayıncı", + "DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Yazar", "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Erişim haklarını değiştir", "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Yorum", "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Oluşturuldu", @@ -1711,17 +1711,17 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Paragraflar", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokasyon", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Hakkı olan kişiler", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Aralıklarla simgeler", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Boşluklarla birlikte karakterler", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "İstatistikler", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Konu", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Simgeler", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Karakterler", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Başlık", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Yüklendi", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Kelimeler", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Erişim haklarını değiştir", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Hakkı olan kişiler", "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Uyarı", - "DE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Şifre ile", + "DE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Parola ile", "DE.Views.FileMenuPanels.ProtectDoc.strProtect": "Belgeyi koru", "DE.Views.FileMenuPanels.ProtectDoc.strSignature": "İmza ile", "DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Belge Düzenle", @@ -1745,7 +1745,7 @@ "DE.Views.FileMenuPanels.Settings.strLiveComment": "Canlı yorum yapma seçeneğini aç", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Makro Ayarları", "DE.Views.FileMenuPanels.Settings.strPaste": "Kes, kopyala ve yapıştır", - "DE.Views.FileMenuPanels.Settings.strPasteButton": "İçerik yapıştırıldığında Yapıştır Seçenekleri düğmesini göster", + "DE.Views.FileMenuPanels.Settings.strPasteButton": "İçerik yapıştırıldığında Yapıştırma Seçenekleri düğmesini göster", "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Çözülmüş yorumların görünümünü aç", "DE.Views.FileMenuPanels.Settings.strReviewHover": "Değişiklikleri İzle Ekranı", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Gerçek Zamanlı Ortak Düzenleme Değişiklikleri", @@ -1753,7 +1753,7 @@ "DE.Views.FileMenuPanels.Settings.strStrict": "Strict", "DE.Views.FileMenuPanels.Settings.strTheme": "Arayüz teması", "DE.Views.FileMenuPanels.Settings.strUnit": "Ölçüm birimi", - "DE.Views.FileMenuPanels.Settings.strZoom": "Varsayılan Zum Değeri", + "DE.Views.FileMenuPanels.Settings.strZoom": "Varsayılan Yakınlaştırma Değeri", "DE.Views.FileMenuPanels.Settings.text10Minutes": "Her 10 dakika", "DE.Views.FileMenuPanels.Settings.text30Minutes": "Her 30 dakika", "DE.Views.FileMenuPanels.Settings.text5Minutes": "Her 5 Dakika", @@ -1780,7 +1780,7 @@ "DE.Views.FileMenuPanels.Settings.txtLast": "Sonuncuyu göster", "DE.Views.FileMenuPanels.Settings.txtLiveComment": "Canlı Yorum", "DE.Views.FileMenuPanels.Settings.txtMac": "OS X olarak", - "DE.Views.FileMenuPanels.Settings.txtNative": "Yerli", + "DE.Views.FileMenuPanels.Settings.txtNative": "Yerel", "DE.Views.FileMenuPanels.Settings.txtNone": "Hiçbirini gösterme", "DE.Views.FileMenuPanels.Settings.txtProofing": "Prova", "DE.Views.FileMenuPanels.Settings.txtPt": "Nokta", @@ -1871,7 +1871,7 @@ "DE.Views.HeaderFooterSettings.textDiffOdd": "Farklı tek ve çift sayfalar", "DE.Views.HeaderFooterSettings.textFrom": "Başlangıç", "DE.Views.HeaderFooterSettings.textHeaderFromBottom": "Alttan alt başlık", - "DE.Views.HeaderFooterSettings.textHeaderFromTop": "Yukarıdan Üst Başlık", + "DE.Views.HeaderFooterSettings.textHeaderFromTop": "Yukarıdan Üst Bilgi", "DE.Views.HeaderFooterSettings.textInsertCurrent": "Mevcut Pozisyona Ekle", "DE.Views.HeaderFooterSettings.textOptions": "Seçenekler", "DE.Views.HeaderFooterSettings.textPageNum": "Sayfa numarası ekle", @@ -1887,7 +1887,7 @@ "DE.Views.HyperlinkSettingsDialog.textDisplay": "Görüntüle", "DE.Views.HyperlinkSettingsDialog.textExternal": "Harici köprü", "DE.Views.HyperlinkSettingsDialog.textInternal": "Dökümana ekle", - "DE.Views.HyperlinkSettingsDialog.textTitle": "Köprü ayarları", + "DE.Views.HyperlinkSettingsDialog.textTitle": "Köprü Ayarları", "DE.Views.HyperlinkSettingsDialog.textTooltip": "Ekranİpucu metni", "DE.Views.HyperlinkSettingsDialog.textUrl": "Şuna bağlantıla:", "DE.Views.HyperlinkSettingsDialog.txtBeginning": "Döküman başlangıcı", @@ -2213,7 +2213,7 @@ "DE.Views.ParagraphSettingsAdvanced.noTabs": "Belirtilen sekmeler bu alanda görünecektir", "DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Tüm başlıklar", "DE.Views.ParagraphSettingsAdvanced.strBorders": "Kenarlıklar & Dolgu", - "DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Şundan önce sayfa kesmesi:", + "DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Sonrasında yeni sayfaya geç", "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Üstü çift çizili", "DE.Views.ParagraphSettingsAdvanced.strIndent": "Girintiler", "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Sol", @@ -2285,14 +2285,14 @@ "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Sınır yok", "DE.Views.RightMenu.txtChartSettings": "Grafik Ayarları", "DE.Views.RightMenu.txtFormSettings": "Form Ayarları", - "DE.Views.RightMenu.txtHeaderFooterSettings": "Üst Başlık ve Alt Başlık Ayarları", + "DE.Views.RightMenu.txtHeaderFooterSettings": "Üst ve Alt Bilgi ayarları", "DE.Views.RightMenu.txtImageSettings": "Resim Ayarları", "DE.Views.RightMenu.txtMailMergeSettings": "Mail Merge Settings", "DE.Views.RightMenu.txtParagraphSettings": "Paragraf Ayarları", "DE.Views.RightMenu.txtShapeSettings": "Şekil Ayarları", "DE.Views.RightMenu.txtSignatureSettings": "İmza ayarları", "DE.Views.RightMenu.txtTableSettings": "Tablo Ayarları", - "DE.Views.RightMenu.txtTextArtSettings": "Text Art Settings", + "DE.Views.RightMenu.txtTextArtSettings": "Yazı Sanatı ayarları", "DE.Views.ShapeSettings.strBackground": "Arka plan rengi", "DE.Views.ShapeSettings.strChange": "Otomatik Şeklini Değiştir", "DE.Views.ShapeSettings.strColor": "Renk", @@ -2374,7 +2374,7 @@ "DE.Views.SignatureSettings.txtSigned": "Belgeye geçerli imzalar eklendi. Belge, düzenlemeye karşı korumalıdır.", "DE.Views.SignatureSettings.txtSignedInvalid": "Belgedeki bazı dijital imzalar geçersiz veya doğrulanamadı. Belge, düzenlemeye karşı korumalıdır.", "DE.Views.Statusbar.goToPageText": "Sayfaya Git", - "DE.Views.Statusbar.pageIndexText": "{1}'in {0}. sayfası", + "DE.Views.Statusbar.pageIndexText": "Sayfa {0}/{1}", "DE.Views.Statusbar.tipFitPage": "Sayfaya Sığdır", "DE.Views.Statusbar.tipFitWidth": "Genişliğe Sığdır", "DE.Views.Statusbar.tipSetLang": "Metin Dili Belirle", @@ -2382,7 +2382,7 @@ "DE.Views.Statusbar.tipZoomIn": "Yakınlaştır", "DE.Views.Statusbar.tipZoomOut": "Uzaklaştır", "DE.Views.Statusbar.txtPageNumInvalid": "Sayı numarası geçersiz", - "DE.Views.StyleTitleDialog.textHeader": "Create New Style", + "DE.Views.StyleTitleDialog.textHeader": "Yeni stil oluştur", "DE.Views.StyleTitleDialog.textNextStyle": "Next paragraph style", "DE.Views.StyleTitleDialog.textTitle": "Title", "DE.Views.StyleTitleDialog.txtEmpty": "Bu alan gereklidir", @@ -2438,7 +2438,7 @@ "DE.Views.TableSettings.selectTableText": "Tablo Seç", "DE.Views.TableSettings.splitCellsText": "Hücreyi Böl...", "DE.Views.TableSettings.splitCellTitleText": "Hücreyi Böl", - "DE.Views.TableSettings.strRepeatRow": "Her sayfanın başında üst başlık sırası olarak tekrarla", + "DE.Views.TableSettings.strRepeatRow": "Her sayfanın en üstünde üst bilgi satırı olarak tekrarla", "DE.Views.TableSettings.textAddFormula": "Formül ekle", "DE.Views.TableSettings.textAdvanced": "Gelişmiş ayarları göster", "DE.Views.TableSettings.textBackColor": "Arka plan rengi", @@ -2453,7 +2453,7 @@ "DE.Views.TableSettings.textEdit": "Satırlar & Sütunlar", "DE.Views.TableSettings.textEmptyTemplate": "Şablon yok", "DE.Views.TableSettings.textFirst": "ilk", - "DE.Views.TableSettings.textHeader": "Üst Başlık", + "DE.Views.TableSettings.textHeader": "Üst Bilgi", "DE.Views.TableSettings.textHeight": "Yükseklik", "DE.Views.TableSettings.textLast": "Son", "DE.Views.TableSettings.textRows": "Satırlar", @@ -2607,13 +2607,13 @@ "DE.Views.Toolbar.capBtnInsControls": "İçerik Kontrolleri", "DE.Views.Toolbar.capBtnInsDropcap": "Büyük Harf", "DE.Views.Toolbar.capBtnInsEquation": "Denklem", - "DE.Views.Toolbar.capBtnInsHeader": "Üstbilgi/dipnot", + "DE.Views.Toolbar.capBtnInsHeader": "Üst/Alt Bilgi", "DE.Views.Toolbar.capBtnInsImage": "Resim", "DE.Views.Toolbar.capBtnInsPagebreak": "Sonlar", "DE.Views.Toolbar.capBtnInsShape": "Şekil", "DE.Views.Toolbar.capBtnInsSymbol": "Simge", "DE.Views.Toolbar.capBtnInsTable": "Tablo", - "DE.Views.Toolbar.capBtnInsTextart": "Metin art", + "DE.Views.Toolbar.capBtnInsTextart": "Yazı Sanatı", "DE.Views.Toolbar.capBtnInsTextbox": "Metin Kutusu", "DE.Views.Toolbar.capBtnLineNumbers": "Satır Numaraları", "DE.Views.Toolbar.capBtnMargins": "Kenar Boşlukları", @@ -2631,7 +2631,7 @@ "DE.Views.Toolbar.mniEditControls": "Kontrol Ayarları", "DE.Views.Toolbar.mniEditDropCap": "Büyük Harf Ayarları", "DE.Views.Toolbar.mniEditFooter": "Altlığı Düzenle", - "DE.Views.Toolbar.mniEditHeader": "Üstlüğü Düzenle", + "DE.Views.Toolbar.mniEditHeader": "Üst Bilgiyi Düzenle", "DE.Views.Toolbar.mniEraseTable": "Tabloyu sil", "DE.Views.Toolbar.mniFromFile": "Dosyadan", "DE.Views.Toolbar.mniFromStorage": "Depolama alanından", @@ -2668,13 +2668,13 @@ "DE.Views.Toolbar.textEditWatermark": "Özel Filigran", "DE.Views.Toolbar.textEvenPage": "Çift Sayfa", "DE.Views.Toolbar.textInMargin": "Kenar boşluğunda", - "DE.Views.Toolbar.textInsColumnBreak": "Sütun kesmesi ekle", + "DE.Views.Toolbar.textInsColumnBreak": "Sütun Sonu Ekle", "DE.Views.Toolbar.textInsertPageCount": "Sayfa sayısı ekle", "DE.Views.Toolbar.textInsertPageNumber": "Sayfa numarası ekle", - "DE.Views.Toolbar.textInsPageBreak": "Sayfa Kesmesi Ekle", - "DE.Views.Toolbar.textInsSectionBreak": "Bölüm kesmesi ekle", + "DE.Views.Toolbar.textInsPageBreak": "Sayfa Sonu Ekle", + "DE.Views.Toolbar.textInsSectionBreak": "Bölüm Sonu Ekle", "DE.Views.Toolbar.textInText": "Metinde", - "DE.Views.Toolbar.textItalic": "İtalik", + "DE.Views.Toolbar.textItalic": "Eğik", "DE.Views.Toolbar.textLandscape": "Yatay", "DE.Views.Toolbar.textLeft": "Sol:", "DE.Views.Toolbar.textListSettings": "Liste Ayarları", @@ -2703,19 +2703,19 @@ "DE.Views.Toolbar.textStrikeout": "Üstü çizili", "DE.Views.Toolbar.textStyleMenuDelete": "Delete style", "DE.Views.Toolbar.textStyleMenuDeleteAll": "Delete all custom styles", - "DE.Views.Toolbar.textStyleMenuNew": "New style from selection", + "DE.Views.Toolbar.textStyleMenuNew": "Seçimden yeni stil", "DE.Views.Toolbar.textStyleMenuRestore": "Restore to default", "DE.Views.Toolbar.textStyleMenuRestoreAll": "Restore all to default styles", "DE.Views.Toolbar.textStyleMenuUpdate": "Seçimden güncelle", "DE.Views.Toolbar.textSubscript": "Altsimge", "DE.Views.Toolbar.textSuperscript": "Üstsimge", "DE.Views.Toolbar.textSuppressForCurrentParagraph": "Bu paragraf için gizle", - "DE.Views.Toolbar.textTabCollaboration": "Ortak çalışma", + "DE.Views.Toolbar.textTabCollaboration": "Ortak Çalışma", "DE.Views.Toolbar.textTabFile": "Dosya", "DE.Views.Toolbar.textTabHome": "Ana Sayfa", "DE.Views.Toolbar.textTabInsert": "Ekle", "DE.Views.Toolbar.textTabLayout": "Tasarım", - "DE.Views.Toolbar.textTabLinks": "Başvurular", + "DE.Views.Toolbar.textTabLinks": "Kaynakça", "DE.Views.Toolbar.textTabProtect": "Koruma", "DE.Views.Toolbar.textTabReview": "İnceleme", "DE.Views.Toolbar.textTabView": "Görüntüle", @@ -2725,7 +2725,7 @@ "DE.Views.Toolbar.textUnderline": "Altı çizili", "DE.Views.Toolbar.tipAlignCenter": "Ortaya hizala", "DE.Views.Toolbar.tipAlignJust": "İki yana yaslı", - "DE.Views.Toolbar.tipAlignLeft": "Sola Hizala", + "DE.Views.Toolbar.tipAlignLeft": "Sola hizala", "DE.Views.Toolbar.tipAlignRight": "Sağa hizala", "DE.Views.Toolbar.tipBack": "Geri", "DE.Views.Toolbar.tipBlankPage": "Boş sayfa ekle", @@ -2738,10 +2738,10 @@ "DE.Views.Toolbar.tipCopy": "Kopyala", "DE.Views.Toolbar.tipCopyStyle": "Stili Kopyala", "DE.Views.Toolbar.tipDateTime": "Şimdiki tarih ve saati ekle", - "DE.Views.Toolbar.tipDecFont": "Yazı Boyutu Azaltımı", - "DE.Views.Toolbar.tipDecPrLeft": "Girintiyi Azalt", + "DE.Views.Toolbar.tipDecFont": "Yazı boyutunu azalt", + "DE.Views.Toolbar.tipDecPrLeft": "Girintiyi azalt", "DE.Views.Toolbar.tipDropCap": "Büyük Harf Ekle", - "DE.Views.Toolbar.tipEditHeader": "Alt yada üst başlığı düzenle", + "DE.Views.Toolbar.tipEditHeader": "Alt veya üst bilgiyi düzenle", "DE.Views.Toolbar.tipFontColor": "Yazı Tipi Rengi", "DE.Views.Toolbar.tipFontName": "Yazı Tipi", "DE.Views.Toolbar.tipFontSize": "Yazıtipi boyutu", @@ -2749,8 +2749,8 @@ "DE.Views.Toolbar.tipImgAlign": "Objeleri hizala", "DE.Views.Toolbar.tipImgGroup": "Grup objeleri", "DE.Views.Toolbar.tipImgWrapping": "Metni Kaydır", - "DE.Views.Toolbar.tipIncFont": "Yazı Tipi Boyut Arttırımı", - "DE.Views.Toolbar.tipIncPrLeft": "Girintiyi Arttır", + "DE.Views.Toolbar.tipIncFont": "Yazı boyutunu arttır", + "DE.Views.Toolbar.tipIncPrLeft": "Girintiyi arttır", "DE.Views.Toolbar.tipInsertChart": "Tablo ekle", "DE.Views.Toolbar.tipInsertEquation": "Insert Equation", "DE.Views.Toolbar.tipInsertImage": "Resim ekle", @@ -2759,12 +2759,12 @@ "DE.Views.Toolbar.tipInsertSymbol": "Simge ekle", "DE.Views.Toolbar.tipInsertTable": "Tablo ekle", "DE.Views.Toolbar.tipInsertText": "Metin kutusu ekle", - "DE.Views.Toolbar.tipInsertTextArt": "Metin Art Ekle", + "DE.Views.Toolbar.tipInsertTextArt": "Yazı Sanatı Ekle", "DE.Views.Toolbar.tipLineNumbers": "Satır numaralarını göster", - "DE.Views.Toolbar.tipLineSpace": "Paragraf Satır Aralığı", + "DE.Views.Toolbar.tipLineSpace": "Paragraf satır aralığı", "DE.Views.Toolbar.tipMailRecepients": "Mail Merge", "DE.Views.Toolbar.tipMarkers": "Maddeler", - "DE.Views.Toolbar.tipMultilevels": "Çerçeve", + "DE.Views.Toolbar.tipMultilevels": "Çok düzeyli liste", "DE.Views.Toolbar.tipNumbers": "Numaralandırma", "DE.Views.Toolbar.tipPageBreak": "Sayfa yada Bölüm Kesmesi Ekle", "DE.Views.Toolbar.tipPageMargins": "Sayfa kenar boşlukları", @@ -2774,7 +2774,7 @@ "DE.Views.Toolbar.tipPaste": "Yapıştır", "DE.Views.Toolbar.tipPrColor": "Paragraf Arka Plan Rengi", "DE.Views.Toolbar.tipPrint": "Yazdır", - "DE.Views.Toolbar.tipRedo": "Tekrar yap", + "DE.Views.Toolbar.tipRedo": "Yinele", "DE.Views.Toolbar.tipSave": "Kaydet", "DE.Views.Toolbar.tipSaveCoauth": "Diğer kullanıcıların görmesi için değişikliklerinizi kaydedin.", "DE.Views.Toolbar.tipSendBackward": "Geri taşı", @@ -2829,7 +2829,7 @@ "DE.Views.WatermarkSettingsDialog.textFromUrl": "URL adresinden", "DE.Views.WatermarkSettingsDialog.textHor": "Yatay", "DE.Views.WatermarkSettingsDialog.textImageW": "Resim filigranı", - "DE.Views.WatermarkSettingsDialog.textItalic": "İtalik", + "DE.Views.WatermarkSettingsDialog.textItalic": "Eğik", "DE.Views.WatermarkSettingsDialog.textLanguage": "Dil", "DE.Views.WatermarkSettingsDialog.textLayout": "Yerleşim", "DE.Views.WatermarkSettingsDialog.textNone": "Filigran Yok", diff --git a/apps/documenteditor/main/locale/uk.json b/apps/documenteditor/main/locale/uk.json index 116302395..63fc949e4 100644 --- a/apps/documenteditor/main/locale/uk.json +++ b/apps/documenteditor/main/locale/uk.json @@ -26,7 +26,7 @@ "Common.Controllers.ReviewChanges.textDStrikeout": "Подвійне перекреслення", "Common.Controllers.ReviewChanges.textEquation": "Рівняння", "Common.Controllers.ReviewChanges.textExact": "Точно", - "Common.Controllers.ReviewChanges.textFirstLine": "Перша лінія", + "Common.Controllers.ReviewChanges.textFirstLine": "Перший рядок", "Common.Controllers.ReviewChanges.textFontSize": "Розмір шрифту", "Common.Controllers.ReviewChanges.textFormatted": "Форматований", "Common.Controllers.ReviewChanges.textHighlight": "Колір позначення", @@ -260,6 +260,7 @@ "Common.Views.Comments.textResolve": "Вирішити", "Common.Views.Comments.textResolved": "Вирішено", "Common.Views.Comments.textSort": "Сортувати коментарі", + "Common.Views.Comments.textViewResolved": "У вас немає прав для повторного відкриття коментарю", "Common.Views.CopyWarningDialog.textDontShow": "Не показувати це повідомлення знову", "Common.Views.CopyWarningDialog.textMsg": "Копіювання, вирізання та вставка за допомогою кнопок панелі інструментів редактора та дій контекстного меню буде виконуватися тільки на цій вкладці редактора.

Щоб скопіювати або вставити в або з застосунку за межами вкладки редактора, використовуйте такі комбінації клавіш:", "Common.Views.CopyWarningDialog.textTitle": "Копіювати, вирізати та вставити дії", @@ -436,6 +437,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Відкрити знову", "Common.Views.ReviewPopover.textReply": "Відповісти", "Common.Views.ReviewPopover.textResolve": "Вирішити", + "Common.Views.ReviewPopover.textViewResolved": "У вас немає прав для повторного відкриття коментарю", "Common.Views.ReviewPopover.txtAccept": "Прийняти", "Common.Views.ReviewPopover.txtDeleteTip": "Видалити", "Common.Views.ReviewPopover.txtEditTip": "Редагувати", @@ -516,10 +518,10 @@ "DE.Controllers.Main.criticalErrorExtText": "Клацніть \"Гаразд\", щоб повернутися до списку документів.", "DE.Controllers.Main.criticalErrorTitle": "Помилка", "DE.Controllers.Main.downloadErrorText": "Звантаження не вдалося", - "DE.Controllers.Main.downloadMergeText": "Звантаження...", - "DE.Controllers.Main.downloadMergeTitle": "Звантаження", + "DE.Controllers.Main.downloadMergeText": "Завантаження...", + "DE.Controllers.Main.downloadMergeTitle": "Завантаження", "DE.Controllers.Main.downloadTextText": "Завантаження документу...", - "DE.Controllers.Main.downloadTitleText": "Звантаження документу", + "DE.Controllers.Main.downloadTitleText": "Завантаження документу", "DE.Controllers.Main.errorAccessDeny": "Ви намагаєтеся виконати дію, у якої у вас немає прав.
Будь ласка, зв'яжіться з адміністратором вашого Сервера документів.", "DE.Controllers.Main.errorBadImageUrl": "URL-адреса зображення невірна", "DE.Controllers.Main.errorCoAuthoringDisconnect": "З'єднання з сервером втрачено. Документ не можна редагувати прямо зараз.", @@ -530,7 +532,7 @@ "DE.Controllers.Main.errorDataEncrypted": "Отримані зашифровані зміни, їх неможливо розшифрувати.", "DE.Controllers.Main.errorDataRange": "Неправильний діапазон даних.", "DE.Controllers.Main.errorDefaultMessage": "Код помилки: %1 ", - "DE.Controllers.Main.errorDirectUrl": "Будь ласка, перевірте посилання на документ.
Це посилання має бути прямим лінком на файл для звантаження.", + "DE.Controllers.Main.errorDirectUrl": "Будь ласка, перевірте посилання на документ.
Це посилання має бути прямим лінком на файл для завантаження.", "DE.Controllers.Main.errorEditingDownloadas": "Помилка під час роботи з документом.
Будь ласка, скористайтеся пунктом \"Завантажити як...\" для збереження резервної копії на ваш локальний диск.", "DE.Controllers.Main.errorEditingSaveas": "В ході роботі з документом виникла помилка.
Використовуйте опцію 'Зберегти як...' щоб зберегти резервну копію файлу на диск комп'ютера.", "DE.Controllers.Main.errorEmailClient": "Не знайдений поштовий клієнт", @@ -885,6 +887,7 @@ "DE.Controllers.Main.warnProcessRightsChange": "Вам відмовлено у наданні права редагувати файл.", "DE.Controllers.Navigation.txtBeginning": "Початок документа", "DE.Controllers.Navigation.txtGotoBeginning": "Перейти до початку документу", + "DE.Controllers.Statusbar.textDisconnect": "З'єднання втрачено
Спроба підключення. Перевірте налаштування підключення.", "DE.Controllers.Statusbar.textHasChanges": "Нові зміни були відстежені", "DE.Controllers.Statusbar.textSetTrackChanges": "Ви перебуваєте в режимі відстеження змін", "DE.Controllers.Statusbar.textTrackChanges": "Документ відкривається за допомогою режиму відстеження змін", @@ -921,6 +924,9 @@ "DE.Controllers.Toolbar.tipMarkersFSquare": "Заповнені квадратні маркери", "DE.Controllers.Toolbar.tipMarkersHRound": "Пусті круглі маркери", "DE.Controllers.Toolbar.tipMarkersStar": "Маркери-зірочки", + "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Багаторівневі нумеровані маркери", + "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Багаторівневі маркери-символи", + "DE.Controllers.Toolbar.tipMultiLevelVarious": "Багаторівневі різні нумеровані маркери", "DE.Controllers.Toolbar.txtAccent_Accent": "Гострий", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Стрілка праворуч вліво вище", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Стрілка вліво вгору", @@ -1296,9 +1302,9 @@ "DE.Views.ChartSettings.textUndock": "Скасувати з панелі", "DE.Views.ChartSettings.textWidth": "Ширина", "DE.Views.ChartSettings.textWrap": "Стиль упаковки", - "DE.Views.ChartSettings.txtBehind": "Позаду", - "DE.Views.ChartSettings.txtInFront": "Попереду", - "DE.Views.ChartSettings.txtInline": "Вбудований", + "DE.Views.ChartSettings.txtBehind": "За текстом", + "DE.Views.ChartSettings.txtInFront": "Перед текстом", + "DE.Views.ChartSettings.txtInline": "В тексті", "DE.Views.ChartSettings.txtSquare": "Площа", "DE.Views.ChartSettings.txtThrough": "Через", "DE.Views.ChartSettings.txtTight": "Тісно", @@ -1472,6 +1478,7 @@ "DE.Views.DocumentHolder.textDistributeCols": "Вирівняти ширину стовпчиків", "DE.Views.DocumentHolder.textDistributeRows": "Вирівняти висоту рядків", "DE.Views.DocumentHolder.textEditControls": "Параметри елемента керування вмістом", + "DE.Views.DocumentHolder.textEditPoints": "Змінити точки", "DE.Views.DocumentHolder.textEditWrapBoundary": "Редагувати обтікання кордону", "DE.Views.DocumentHolder.textFlipH": "Перевернути горизонтально", "DE.Views.DocumentHolder.textFlipV": "Перевернути вертикально", @@ -1539,7 +1546,7 @@ "DE.Views.DocumentHolder.txtAddTop": "Додати верхню межу", "DE.Views.DocumentHolder.txtAddVer": "Додати вертикальну лінію", "DE.Views.DocumentHolder.txtAlignToChar": "Вирівняти до символу", - "DE.Views.DocumentHolder.txtBehind": "Позаду", + "DE.Views.DocumentHolder.txtBehind": "За текстом", "DE.Views.DocumentHolder.txtBorderProps": "Прикордонні властивості", "DE.Views.DocumentHolder.txtBottom": "Внизу", "DE.Views.DocumentHolder.txtColumnAlign": "Вирівнювання стовпчика", @@ -1575,8 +1582,8 @@ "DE.Views.DocumentHolder.txtHideTopLimit": "Сховати верхню межу", "DE.Views.DocumentHolder.txtHideVer": "Сховати вертикальну лінійку", "DE.Views.DocumentHolder.txtIncreaseArg": "Збільшити розмір аргументів", - "DE.Views.DocumentHolder.txtInFront": "Попереду", - "DE.Views.DocumentHolder.txtInline": "Вбудований", + "DE.Views.DocumentHolder.txtInFront": "Перед текстом", + "DE.Views.DocumentHolder.txtInline": "В тексті", "DE.Views.DocumentHolder.txtInsertArgAfter": "Вставити аргумент після", "DE.Views.DocumentHolder.txtInsertArgBefore": "Вставити аргумент перед", "DE.Views.DocumentHolder.txtInsertBreak": "Вставити ручне переривання", @@ -1915,9 +1922,9 @@ "DE.Views.ImageSettings.textSize": "Розмір", "DE.Views.ImageSettings.textWidth": "Ширина", "DE.Views.ImageSettings.textWrap": "Стиль упаковки", - "DE.Views.ImageSettings.txtBehind": "Позаду", - "DE.Views.ImageSettings.txtInFront": "Попереду", - "DE.Views.ImageSettings.txtInline": "Вбудований", + "DE.Views.ImageSettings.txtBehind": "За текстом", + "DE.Views.ImageSettings.txtInFront": "Перед текстом", + "DE.Views.ImageSettings.txtInline": "В тексті", "DE.Views.ImageSettings.txtSquare": "Площа", "DE.Views.ImageSettings.txtThrough": "Через", "DE.Views.ImageSettings.txtTight": "Тісно", @@ -1990,9 +1997,9 @@ "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Ваги та стрілки", "DE.Views.ImageSettingsAdvanced.textWidth": "Ширина", "DE.Views.ImageSettingsAdvanced.textWrap": "Стиль упаковки", - "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Позаду", - "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Попереду", - "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "Вбудований", + "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "За текстом", + "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Перед текстом", + "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "В тексті", "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Площа", "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Через", "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Тісно", @@ -2180,6 +2187,11 @@ "DE.Views.PageSizeDialog.textTitle": "Розмір сторінки", "DE.Views.PageSizeDialog.textWidth": "Ширина", "DE.Views.PageSizeDialog.txtCustom": "Особливий", + "DE.Views.PageThumbnails.textClosePanel": "Закрити ескізи сторінок", + "DE.Views.PageThumbnails.textHighlightVisiblePart": "Виділити видиму частину сторінки", + "DE.Views.PageThumbnails.textPageThumbnails": "Ескізи сторінок", + "DE.Views.PageThumbnails.textThumbnailsSettings": "Параметри ескізів", + "DE.Views.PageThumbnails.textThumbnailsSize": "Розмір ескізів", "DE.Views.ParagraphSettings.strIndent": "Відступи", "DE.Views.ParagraphSettings.strIndentsLeftText": "Ліворуч", "DE.Views.ParagraphSettings.strIndentsRightText": "Праворуч", @@ -2327,7 +2339,7 @@ "DE.Views.ShapeSettings.textWrap": "Стиль упаковки", "DE.Views.ShapeSettings.tipAddGradientPoint": "Додати точку градієнта", "DE.Views.ShapeSettings.tipRemoveGradientPoint": "Видалити точку градієнта", - "DE.Views.ShapeSettings.txtBehind": "Позаду", + "DE.Views.ShapeSettings.txtBehind": "За текстом", "DE.Views.ShapeSettings.txtBrownPaper": "Коричневий папір", "DE.Views.ShapeSettings.txtCanvas": "Полотно", "DE.Views.ShapeSettings.txtCarton": "Картинка", @@ -2335,8 +2347,8 @@ "DE.Views.ShapeSettings.txtGrain": "Крупинка", "DE.Views.ShapeSettings.txtGranite": "Граніт", "DE.Views.ShapeSettings.txtGreyPaper": "Сірий папер", - "DE.Views.ShapeSettings.txtInFront": "Попереду", - "DE.Views.ShapeSettings.txtInline": "Вбудований", + "DE.Views.ShapeSettings.txtInFront": "Перед текстом", + "DE.Views.ShapeSettings.txtInline": "В тексті", "DE.Views.ShapeSettings.txtKnit": "В'язати", "DE.Views.ShapeSettings.txtLeather": "Шкіра", "DE.Views.ShapeSettings.txtNoBorders": "Немає лінії", @@ -2596,7 +2608,7 @@ "DE.Views.Toolbar.capBtnInsControls": "Елементи керування вмістом", "DE.Views.Toolbar.capBtnInsDropcap": "Буквиця", "DE.Views.Toolbar.capBtnInsEquation": "Рівняння", - "DE.Views.Toolbar.capBtnInsHeader": "Заголовок / нижній колонтитул", + "DE.Views.Toolbar.capBtnInsHeader": "Колонтитули", "DE.Views.Toolbar.capBtnInsImage": "Картинка", "DE.Views.Toolbar.capBtnInsPagebreak": "Перерви", "DE.Views.Toolbar.capBtnInsShape": "Форма", @@ -2707,6 +2719,7 @@ "DE.Views.Toolbar.textTabLinks": "Посилання", "DE.Views.Toolbar.textTabProtect": "Захист", "DE.Views.Toolbar.textTabReview": "Перевірити", + "DE.Views.Toolbar.textTabView": "Вигляд", "DE.Views.Toolbar.textTitleError": "Помилка", "DE.Views.Toolbar.textToCurrent": "До поточної позиції", "DE.Views.Toolbar.textTop": "Верх:", @@ -2798,12 +2811,14 @@ "DE.Views.Toolbar.txtScheme7": "Власний", "DE.Views.Toolbar.txtScheme8": "Розпливатися", "DE.Views.Toolbar.txtScheme9": "Ливарня", + "DE.Views.ViewTab.textAlwaysShowToolbar": "Завжди показувати панель інструментів", "DE.Views.ViewTab.textFitToPage": "За розміром сторінки", "DE.Views.ViewTab.textFitToWidth": "По ширині", "DE.Views.ViewTab.textInterfaceTheme": "Тема інтерфейсу", "DE.Views.ViewTab.textNavigation": "Навігація", "DE.Views.ViewTab.textRulers": "Лінійки", "DE.Views.ViewTab.textStatusBar": "Рядок стану", + "DE.Views.ViewTab.textZoom": "Масштаб", "DE.Views.WatermarkSettingsDialog.textAuto": "Авто", "DE.Views.WatermarkSettingsDialog.textBold": "Грубий", "DE.Views.WatermarkSettingsDialog.textColor": "Колір тексту", diff --git a/apps/documenteditor/main/locale/zh.json b/apps/documenteditor/main/locale/zh.json index f6535cdb9..e32da15e7 100644 --- a/apps/documenteditor/main/locale/zh.json +++ b/apps/documenteditor/main/locale/zh.json @@ -168,6 +168,8 @@ "Common.UI.ExtendedColorDialog.textNew": "新", "Common.UI.ExtendedColorDialog.textRGBErr": "输入的值不正确。
请输入介于0和255之间的数值。", "Common.UI.HSBColorPicker.textNoColor": "没有颜色", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "隐藏密码", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "显示密码", "Common.UI.SearchDialog.textHighlight": "高亮效果", "Common.UI.SearchDialog.textMatchCase": "区分大小写", "Common.UI.SearchDialog.textReplaceDef": "输入替换文字", @@ -211,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "自动项目符号列表", "Common.Views.AutoCorrectDialog.textBy": "依据", "Common.Views.AutoCorrectDialog.textDelete": "删除", + "Common.Views.AutoCorrectDialog.textFLCells": "表格单元格的首字母大写", "Common.Views.AutoCorrectDialog.textFLSentence": "将句子首字母大写", "Common.Views.AutoCorrectDialog.textHyperlink": "带超链接的互联网与网络路径", "Common.Views.AutoCorrectDialog.textHyphens": "连带字符(-)改为破折号(-)", @@ -236,12 +239,14 @@ "Common.Views.Comments.mniAuthorDesc": "作者 (Z到A)", "Common.Views.Comments.mniDateAsc": "最老", "Common.Views.Comments.mniDateDesc": "最新", + "Common.Views.Comments.mniFilterGroups": "按组筛选", "Common.Views.Comments.mniPositionAsc": "自上而下", "Common.Views.Comments.mniPositionDesc": "自下而上", "Common.Views.Comments.textAdd": "添加", "Common.Views.Comments.textAddComment": "添加批注", "Common.Views.Comments.textAddCommentToDoc": "添加批注到文档", "Common.Views.Comments.textAddReply": "添加回复", + "Common.Views.Comments.textAll": "所有", "Common.Views.Comments.textAnonym": "游客", "Common.Views.Comments.textCancel": "取消", "Common.Views.Comments.textClose": "关闭", @@ -255,6 +260,7 @@ "Common.Views.Comments.textResolve": "解决", "Common.Views.Comments.textResolved": "已解决", "Common.Views.Comments.textSort": "评注排序", + "Common.Views.Comments.textViewResolved": "您没有重开评论的权限", "Common.Views.CopyWarningDialog.textDontShow": "不要再显示此消息", "Common.Views.CopyWarningDialog.textMsg": "使用编辑器工具栏按钮和上下文菜单操作复制,剪切和粘贴操作将仅在此编辑器选项卡中执行。

要在编辑器选项卡之外复制或粘贴到应用程序,请使用以下键盘组合:", "Common.Views.CopyWarningDialog.textTitle": "复制,剪切和粘贴操作", @@ -431,6 +437,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "再次打开", "Common.Views.ReviewPopover.textReply": "回复", "Common.Views.ReviewPopover.textResolve": "解决", + "Common.Views.ReviewPopover.textViewResolved": "您没有重开评论的权限", "Common.Views.ReviewPopover.txtAccept": "接受", "Common.Views.ReviewPopover.txtDeleteTip": "删除", "Common.Views.ReviewPopover.txtEditTip": "编辑", @@ -602,6 +609,7 @@ "DE.Controllers.Main.textLongName": "输入名称,要求小于128字符。", "DE.Controllers.Main.textNoLicenseTitle": "已达到许可证限制", "DE.Controllers.Main.textPaidFeature": "付费功能", + "DE.Controllers.Main.textReconnect": "连接已恢复", "DE.Controllers.Main.textRemember": "记住我为所有文件的选择", "DE.Controllers.Main.textRenameError": "用户名不能留空。", "DE.Controllers.Main.textRenameLabel": "输入名称,可用于协作。", @@ -879,6 +887,7 @@ "DE.Controllers.Main.warnProcessRightsChange": "您被拒绝编辑文件的权限。", "DE.Controllers.Navigation.txtBeginning": "文档开头", "DE.Controllers.Navigation.txtGotoBeginning": "转到文档开头", + "DE.Controllers.Statusbar.textDisconnect": "连接失败
正在尝试连接。请检查连接设置。", "DE.Controllers.Statusbar.textHasChanges": "已经跟踪了新的变化", "DE.Controllers.Statusbar.textSetTrackChanges": "你现在处于审阅模式。", "DE.Controllers.Statusbar.textTrackChanges": "打开文档,并启用“跟踪更改”模式", @@ -902,10 +911,22 @@ "DE.Controllers.Toolbar.textMatrix": "矩阵", "DE.Controllers.Toolbar.textOperator": "运营商", "DE.Controllers.Toolbar.textRadical": "自由基", + "DE.Controllers.Toolbar.textRecentlyUsed": "最近使用的", "DE.Controllers.Toolbar.textScript": "脚本", "DE.Controllers.Toolbar.textSymbols": "符号", "DE.Controllers.Toolbar.textTabForms": "表单", "DE.Controllers.Toolbar.textWarning": "警告", + "DE.Controllers.Toolbar.tipMarkersArrow": "箭头项目符号", + "DE.Controllers.Toolbar.tipMarkersCheckmark": "选中标记项目符号", + "DE.Controllers.Toolbar.tipMarkersDash": "划线项目符号", + "DE.Controllers.Toolbar.tipMarkersFRhombus": "实心菱形项目符号", + "DE.Controllers.Toolbar.tipMarkersFRound": "实心圆形项目符号", + "DE.Controllers.Toolbar.tipMarkersFSquare": "实心方形项目符号", + "DE.Controllers.Toolbar.tipMarkersHRound": "空心圆形项目符号", + "DE.Controllers.Toolbar.tipMarkersStar": "星形项目符号", + "DE.Controllers.Toolbar.tipMultiLevelNumbered": "多级编号", + "DE.Controllers.Toolbar.tipMultiLevelSymbols": "多级项目符号", + "DE.Controllers.Toolbar.tipMultiLevelVarious": "多级各种编号", "DE.Controllers.Toolbar.txtAccent_Accent": "急性", "DE.Controllers.Toolbar.txtAccent_ArrowD": "右上方的箭头在上方", "DE.Controllers.Toolbar.txtAccent_ArrowL": "向左箭头", @@ -1281,9 +1302,9 @@ "DE.Views.ChartSettings.textUndock": "离开面板", "DE.Views.ChartSettings.textWidth": "宽度", "DE.Views.ChartSettings.textWrap": "包裹风格", - "DE.Views.ChartSettings.txtBehind": "之后", - "DE.Views.ChartSettings.txtInFront": "前面", - "DE.Views.ChartSettings.txtInline": "内嵌", + "DE.Views.ChartSettings.txtBehind": "衬于​​文字下方", + "DE.Views.ChartSettings.txtInFront": "浮于文字上方", + "DE.Views.ChartSettings.txtInline": "嵌入型​​", "DE.Views.ChartSettings.txtSquare": "正方形", "DE.Views.ChartSettings.txtThrough": "通过", "DE.Views.ChartSettings.txtTight": "紧", @@ -1457,6 +1478,7 @@ "DE.Views.DocumentHolder.textDistributeCols": "分布列", "DE.Views.DocumentHolder.textDistributeRows": "分布行", "DE.Views.DocumentHolder.textEditControls": "内容控制设置", + "DE.Views.DocumentHolder.textEditPoints": "编辑点", "DE.Views.DocumentHolder.textEditWrapBoundary": "编辑环绕边界", "DE.Views.DocumentHolder.textFlipH": "水平翻转", "DE.Views.DocumentHolder.textFlipV": "垂直翻转", @@ -1505,6 +1527,14 @@ "DE.Views.DocumentHolder.textUpdateTOC": "刷新目录", "DE.Views.DocumentHolder.textWrap": "包裹风格", "DE.Views.DocumentHolder.tipIsLocked": "此元素正在由其他用户编辑。", + "DE.Views.DocumentHolder.tipMarkersArrow": "箭头项目符号", + "DE.Views.DocumentHolder.tipMarkersCheckmark": "选中标记项目符号", + "DE.Views.DocumentHolder.tipMarkersDash": "划线项目符号", + "DE.Views.DocumentHolder.tipMarkersFRhombus": "实心菱形项目符号", + "DE.Views.DocumentHolder.tipMarkersFRound": "实心圆形项目符号", + "DE.Views.DocumentHolder.tipMarkersFSquare": "实心方形项目符号", + "DE.Views.DocumentHolder.tipMarkersHRound": "空心圆形项目符号", + "DE.Views.DocumentHolder.tipMarkersStar": "星形项目符号", "DE.Views.DocumentHolder.toDictionaryText": "添加到词典", "DE.Views.DocumentHolder.txtAddBottom": "添加底部边框", "DE.Views.DocumentHolder.txtAddFractionBar": "添加分数栏", @@ -1516,7 +1546,7 @@ "DE.Views.DocumentHolder.txtAddTop": "添加顶部边框", "DE.Views.DocumentHolder.txtAddVer": "添加垂直线", "DE.Views.DocumentHolder.txtAlignToChar": "字符对齐", - "DE.Views.DocumentHolder.txtBehind": "之后", + "DE.Views.DocumentHolder.txtBehind": "衬于​​文字下方", "DE.Views.DocumentHolder.txtBorderProps": "边框属性", "DE.Views.DocumentHolder.txtBottom": "底部", "DE.Views.DocumentHolder.txtColumnAlign": "列对齐", @@ -1552,8 +1582,8 @@ "DE.Views.DocumentHolder.txtHideTopLimit": "隐藏上限", "DE.Views.DocumentHolder.txtHideVer": "隐藏垂直线", "DE.Views.DocumentHolder.txtIncreaseArg": "增加参数大小", - "DE.Views.DocumentHolder.txtInFront": "前面", - "DE.Views.DocumentHolder.txtInline": "内嵌", + "DE.Views.DocumentHolder.txtInFront": "浮于文字上方", + "DE.Views.DocumentHolder.txtInline": "嵌入型​​", "DE.Views.DocumentHolder.txtInsertArgAfter": "插入参数", "DE.Views.DocumentHolder.txtInsertArgBefore": "之前插入参数", "DE.Views.DocumentHolder.txtInsertBreak": "插入手动中断", @@ -1871,6 +1901,7 @@ "DE.Views.ImageSettings.textCrop": "裁剪", "DE.Views.ImageSettings.textCropFill": "填满", "DE.Views.ImageSettings.textCropFit": "最佳", + "DE.Views.ImageSettings.textCropToShape": "裁剪为形状", "DE.Views.ImageSettings.textEdit": "修改", "DE.Views.ImageSettings.textEditObject": "编辑对象", "DE.Views.ImageSettings.textFitMargins": "适合边距", @@ -1885,14 +1916,15 @@ "DE.Views.ImageSettings.textHintFlipV": "垂直翻转", "DE.Views.ImageSettings.textInsert": "替换图像", "DE.Views.ImageSettings.textOriginalSize": "实际大小", + "DE.Views.ImageSettings.textRecentlyUsed": "最近使用的", "DE.Views.ImageSettings.textRotate90": "旋转90°", "DE.Views.ImageSettings.textRotation": "旋转", "DE.Views.ImageSettings.textSize": "大小", "DE.Views.ImageSettings.textWidth": "宽度", "DE.Views.ImageSettings.textWrap": "包裹风格", - "DE.Views.ImageSettings.txtBehind": "之后", - "DE.Views.ImageSettings.txtInFront": "前面", - "DE.Views.ImageSettings.txtInline": "内嵌", + "DE.Views.ImageSettings.txtBehind": "衬于​​文字下方", + "DE.Views.ImageSettings.txtInFront": "浮于文字上方", + "DE.Views.ImageSettings.txtInline": "嵌入型​​", "DE.Views.ImageSettings.txtSquare": "正方形", "DE.Views.ImageSettings.txtThrough": "通过", "DE.Views.ImageSettings.txtTight": "紧", @@ -1965,9 +1997,9 @@ "DE.Views.ImageSettingsAdvanced.textWeightArrows": "重量和箭头", "DE.Views.ImageSettingsAdvanced.textWidth": "宽度", "DE.Views.ImageSettingsAdvanced.textWrap": "包裹风格", - "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "之后", - "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "前面", - "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "内嵌", + "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "衬于​​文字下方", + "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "浮于文字上方", + "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "嵌入型​​", "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "正方形", "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "通过", "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "紧", @@ -2155,6 +2187,11 @@ "DE.Views.PageSizeDialog.textTitle": "页面大小", "DE.Views.PageSizeDialog.textWidth": "宽度", "DE.Views.PageSizeDialog.txtCustom": "自定义", + "DE.Views.PageThumbnails.textClosePanel": "关闭页面缩略图", + "DE.Views.PageThumbnails.textHighlightVisiblePart": "突出显示页面的可见部分", + "DE.Views.PageThumbnails.textPageThumbnails": "页面缩略图", + "DE.Views.PageThumbnails.textThumbnailsSettings": "缩略图设置", + "DE.Views.PageThumbnails.textThumbnailsSize": "缩略图大小", "DE.Views.ParagraphSettings.strIndent": "缩进", "DE.Views.ParagraphSettings.strIndentsLeftText": "左", "DE.Views.ParagraphSettings.strIndentsRightText": "右", @@ -2290,6 +2327,7 @@ "DE.Views.ShapeSettings.textPatternFill": "模式", "DE.Views.ShapeSettings.textPosition": "位置", "DE.Views.ShapeSettings.textRadial": "径向", + "DE.Views.ShapeSettings.textRecentlyUsed": "最近使用的", "DE.Views.ShapeSettings.textRotate90": "旋转90°", "DE.Views.ShapeSettings.textRotation": "旋转", "DE.Views.ShapeSettings.textSelectImage": "选取图片", @@ -2301,7 +2339,7 @@ "DE.Views.ShapeSettings.textWrap": "包裹风格", "DE.Views.ShapeSettings.tipAddGradientPoint": "新增渐变点", "DE.Views.ShapeSettings.tipRemoveGradientPoint": "删除渐变点", - "DE.Views.ShapeSettings.txtBehind": "之后", + "DE.Views.ShapeSettings.txtBehind": "衬于​​文字下方", "DE.Views.ShapeSettings.txtBrownPaper": "牛皮纸", "DE.Views.ShapeSettings.txtCanvas": "画布", "DE.Views.ShapeSettings.txtCarton": "纸板", @@ -2309,8 +2347,8 @@ "DE.Views.ShapeSettings.txtGrain": "颗粒", "DE.Views.ShapeSettings.txtGranite": "花岗岩", "DE.Views.ShapeSettings.txtGreyPaper": "灰纸", - "DE.Views.ShapeSettings.txtInFront": "前面", - "DE.Views.ShapeSettings.txtInline": "内嵌", + "DE.Views.ShapeSettings.txtInFront": "浮于文字上方", + "DE.Views.ShapeSettings.txtInline": "嵌入型​​", "DE.Views.ShapeSettings.txtKnit": "针织", "DE.Views.ShapeSettings.txtLeather": "真皮", "DE.Views.ShapeSettings.txtNoBorders": "没有线", @@ -2570,7 +2608,7 @@ "DE.Views.Toolbar.capBtnInsControls": "内容控件", "DE.Views.Toolbar.capBtnInsDropcap": "下沉", "DE.Views.Toolbar.capBtnInsEquation": "方程式", - "DE.Views.Toolbar.capBtnInsHeader": "页眉/页脚", + "DE.Views.Toolbar.capBtnInsHeader": "页眉&页脚", "DE.Views.Toolbar.capBtnInsImage": "图片", "DE.Views.Toolbar.capBtnInsPagebreak": "分隔符", "DE.Views.Toolbar.capBtnInsShape": "形状", @@ -2681,6 +2719,7 @@ "DE.Views.Toolbar.textTabLinks": "引用", "DE.Views.Toolbar.textTabProtect": "保护", "DE.Views.Toolbar.textTabReview": "审阅", + "DE.Views.Toolbar.textTabView": "视图", "DE.Views.Toolbar.textTitleError": "错误", "DE.Views.Toolbar.textToCurrent": "到当前位置", "DE.Views.Toolbar.textTop": "顶边: ", @@ -2772,6 +2811,15 @@ "DE.Views.Toolbar.txtScheme7": "公平", "DE.Views.Toolbar.txtScheme8": "流动", "DE.Views.Toolbar.txtScheme9": "发现", + "DE.Views.ViewTab.textAlwaysShowToolbar": "始终显示工具栏", + "DE.Views.ViewTab.textDarkDocument": "黑暗文件", + "DE.Views.ViewTab.textFitToPage": "适合页面", + "DE.Views.ViewTab.textFitToWidth": "适合宽度", + "DE.Views.ViewTab.textInterfaceTheme": "界面主题", + "DE.Views.ViewTab.textNavigation": "导航", + "DE.Views.ViewTab.textRulers": "标尺", + "DE.Views.ViewTab.textStatusBar": "状态栏", + "DE.Views.ViewTab.textZoom": "缩放", "DE.Views.WatermarkSettingsDialog.textAuto": "自动", "DE.Views.WatermarkSettingsDialog.textBold": "加粗", "DE.Views.WatermarkSettingsDialog.textColor": "文字颜色", diff --git a/apps/presentationeditor/embed/locale/be.json b/apps/presentationeditor/embed/locale/be.json index 0d2f6ebd0..164a5e089 100644 --- a/apps/presentationeditor/embed/locale/be.json +++ b/apps/presentationeditor/embed/locale/be.json @@ -13,10 +13,15 @@ "PE.ApplicationController.errorDefaultMessage": "Код памылкі: %1", "PE.ApplicationController.errorFilePassProtect": "Файл абаронены паролем, яго немагчыма адкрыць.", "PE.ApplicationController.errorFileSizeExceed": "Памер файла перавышае ліміт, вызначаны для вашага сервера.
Звярніцеся да адміністратара сервера дакументаў за дадатковымі звесткамі.", + "PE.ApplicationController.errorForceSave": "Падчас захавання файла адбылася памылка. Калі ласка, выкарыстайце параметр \"Спампаваць як\", каб захаваць файл на цвёрдым дыску камп’ютара, альбо паспрабуйце яшчэ раз пазней.", + "PE.ApplicationController.errorTokenExpire": "Тэрмін дзеяння токена бяспекі дакумента сышоў.
Калі ласка, звярніцеся да адміністратара сервера дакументаў.", "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Злучэнне з інтэрнэтам было адноўлена, і версія файла змянілася.
Перш чым працягнуць працу, неабходна спампаваць файл альбо скапіяваць яго змесціва, каб захаваць даныя, а пасля перазагрузіць старонку.", "PE.ApplicationController.errorUserDrop": "На дадзены момант файл недаступны.", "PE.ApplicationController.notcriticalErrorTitle": "Увага", + "PE.ApplicationController.openErrorText": "Падчас адкрыцця файла адбылася памылка.", "PE.ApplicationController.scriptLoadError": "Занадта павольнае злучэнне, не ўсе кампаненты атрымалася загрузіць. Калі ласка, абнавіце старонку.", + "PE.ApplicationController.textAnonymous": "Ананімны карыстальнік", + "PE.ApplicationController.textGuest": "Госць", "PE.ApplicationController.textLoadingDocument": "Загрузка прэзентацыі", "PE.ApplicationController.textOf": "з", "PE.ApplicationController.txtClose": "Закрыць", @@ -25,6 +30,7 @@ "PE.ApplicationController.waitText": "Калі ласка, пачакайце...", "PE.ApplicationView.txtDownload": "Спампаваць", "PE.ApplicationView.txtEmbed": "Убудаваць", + "PE.ApplicationView.txtFileLocation": "Перайсці да дакументаў", "PE.ApplicationView.txtFullScreen": "Поўнаэкранны рэжым", "PE.ApplicationView.txtPrint": "Друк", "PE.ApplicationView.txtShare": "Падзяліцца" diff --git a/apps/presentationeditor/embed/locale/ca.json b/apps/presentationeditor/embed/locale/ca.json index 201cfbf80..6b1e63a0e 100644 --- a/apps/presentationeditor/embed/locale/ca.json +++ b/apps/presentationeditor/embed/locale/ca.json @@ -4,23 +4,23 @@ "common.view.modals.txtHeight": "Alçada", "common.view.modals.txtShare": "Comparteix l'enllaç", "common.view.modals.txtWidth": "Amplada", - "PE.ApplicationController.convertationErrorText": "No s'ha pogut convertir", + "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": "S'ha produït un error en la baixada", + "PE.ApplicationController.downloadErrorText": "La baixada ha fallat.", "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 supera el límit establert pel servidor. Contacteu amb l'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-ho com a\" per desar el fitxer al disc dur de l’ordinador o torneu-ho a provar més endavant.", - "PE.ApplicationController.errorLoadingFont": "No s'han carregat els tipus de lletra.
Contacteu amb l'administrador del servidor de documents.", - "PE.ApplicationController.errorTokenExpire": "El testimoni de seguretat del document ha caducat.
Contacteu amb l'administrador del servidor de documents.", - "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 la pàgina.", + "PE.ApplicationController.errorFileSizeExceed": "La mida del fitxer supera el límit establert per al servidor.
Contacteu amb l'administrador del servidor de documents per a obtenir més informació.", + "PE.ApplicationController.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitzeu l'opció «Anomena i baixa» per a desar el fitxer al disc dur de l’ordinador o torneu-ho a provar més endavant.", + "PE.ApplicationController.errorLoadingFont": "No s'han carregat les famílies tipogràfiques.
Contacteu amb l'administrador del servidor de documents.", + "PE.ApplicationController.errorTokenExpire": "El testimoni de seguretat del document ha caducat.
Contacteu amb l'administrador del servidor de documents.", + "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 a assegurar-vos que no es perdi res i, després, torneu a carregar la pàgina.", "PE.ApplicationController.errorUserDrop": "No es pot accedir al fitxer.", "PE.ApplicationController.notcriticalErrorTitle": "Advertiment", "PE.ApplicationController.openErrorText": "S'ha produït un error en obrir el fitxer.", - "PE.ApplicationController.scriptLoadError": "La connexió és massa lenta, alguns dels components no s’han pogut carregar. Torneu a carregar la pàgina.", + "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": "S'està carregant la presentació", @@ -32,7 +32,7 @@ "PE.ApplicationView.txtDownload": "Baixa", "PE.ApplicationView.txtEmbed": "Incrusta", "PE.ApplicationView.txtFileLocation": "Obre la ubicació del fitxer", - "PE.ApplicationView.txtFullScreen": "Pantalla sencera", + "PE.ApplicationView.txtFullScreen": "Pantalla completa", "PE.ApplicationView.txtPrint": "Imprimeix", "PE.ApplicationView.txtShare": "Comparteix" } \ No newline at end of file diff --git a/apps/presentationeditor/embed/locale/uk.json b/apps/presentationeditor/embed/locale/uk.json index 5c4770de8..71bbd506c 100644 --- a/apps/presentationeditor/embed/locale/uk.json +++ b/apps/presentationeditor/embed/locale/uk.json @@ -13,10 +13,16 @@ "PE.ApplicationController.errorDefaultMessage": "Код помилки: %1", "PE.ApplicationController.errorFilePassProtect": "Документ захищений паролем і його неможливо відкрити.", "PE.ApplicationController.errorFileSizeExceed": "Розмір файлу перевищує обмеження, встановлені для вашого сервера.
Для детальної інформації зверніться до адміністратора сервера документів.", + "PE.ApplicationController.errorForceSave": "Під час збереження файлу сталася помилка.
Використовуйте опцію 'Завантажити як...', щоб зберегти файл на жорсткий диск комп'ютера або спробуйте пізніше.", + "PE.ApplicationController.errorLoadingFont": "Шрифти не завантажені.
Будь ласка, зверніться до адміністратора Сервера документів.", + "PE.ApplicationController.errorTokenExpire": "Термін дії токену безпеки документа закінчився.
Будь ласка, зв'яжіться з адміністратором сервера документів.", "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Підключення до Інтернету було відновлено, а версія файлу змінена.
Перш ніж продовжувати роботу, потрібно завантажити файл або скопіювати його вміст, щоб переконатися, що нічого не втрачено, а потім перезавантажити цю сторінку.", "PE.ApplicationController.errorUserDrop": "На даний момент файл не доступний.", "PE.ApplicationController.notcriticalErrorTitle": "Застереження", + "PE.ApplicationController.openErrorText": "Під час відкриття файлу сталася помилка.", "PE.ApplicationController.scriptLoadError": "З'єднання занадто повільне, деякі компоненти не вдалося завантажити. Перезавантажте сторінку.", + "PE.ApplicationController.textAnonymous": "Анонімний користувач", + "PE.ApplicationController.textGuest": "Гість", "PE.ApplicationController.textLoadingDocument": "Завантаження презентації", "PE.ApplicationController.textOf": "з", "PE.ApplicationController.txtClose": "Закрити", @@ -25,6 +31,8 @@ "PE.ApplicationController.waitText": "Будь ласка, зачекайте...", "PE.ApplicationView.txtDownload": "Завантажити", "PE.ApplicationView.txtEmbed": "Вставити", + "PE.ApplicationView.txtFileLocation": "Відкрити розташування файлу", "PE.ApplicationView.txtFullScreen": "Повноекранний режим", + "PE.ApplicationView.txtPrint": "Друк", "PE.ApplicationView.txtShare": "Доступ" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/be.json b/apps/presentationeditor/main/locale/be.json index fc754849c..75e7ad1b2 100644 --- a/apps/presentationeditor/main/locale/be.json +++ b/apps/presentationeditor/main/locale/be.json @@ -7,15 +7,53 @@ "Common.Controllers.ExternalDiagramEditor.warningTitle": "Увага", "Common.define.chartData.textArea": "Вобласць", "Common.define.chartData.textBar": "Лінія", + "Common.define.chartData.textBarNormal3d": "Трохвымерная гістаграма з групаваннем", + "Common.define.chartData.textBarNormal3dPerspective": "Трохвымерная гістаграма", + "Common.define.chartData.textBarStacked3d": "Трохвымерная састаўная гістаграма", + "Common.define.chartData.textBarStackedPer3d": "Трохвымерная састаўная гістаграма 100%", "Common.define.chartData.textCharts": "Дыяграмы", "Common.define.chartData.textColumn": "Гістаграма", + "Common.define.chartData.textHBarNormal3d": "Трохвымерная лінейная з групаваннем", "Common.define.chartData.textLine": "Графік", "Common.define.chartData.textPie": "Па крузе", "Common.define.chartData.textPoint": "XY (рассеяная)", "Common.define.chartData.textStock": "Біржа", "Common.define.chartData.textSurface": "Паверхня", + "Common.define.effectData.textBox": "Скрыня", + "Common.define.effectData.textCollapse": "Згарнуць", + "Common.define.effectData.textDiamond": "Ромб", + "Common.define.effectData.textExpand": "Пашырыць", + "Common.define.effectData.textFillColor": "Колер фону", + "Common.define.effectData.textFlip": "Пераварочванне", + "Common.define.effectData.textFontColor": "Колер шрыфту", + "Common.define.effectData.textHeart": "Сэрца", + "Common.define.effectData.textHexagon": "Шасцівугольнік", + "Common.define.effectData.textHorizontal": "Гарызантальна", + "Common.define.effectData.textHorizontalIn": "Гарызантальна ўнутр", + "Common.define.effectData.textHorizontalOut": "Па гарызанталі вонкі", + "Common.define.effectData.textIn": "Унутры", + "Common.define.effectData.textModerate": "Сярэднія", + "Common.define.effectData.textOctagon": "Васьмівугольнік", + "Common.define.effectData.textOut": "Звонку", + "Common.define.effectData.textParallelogram": "Паралелаграм", + "Common.define.effectData.textPentagon": "Пяцівугольнік", + "Common.define.effectData.textRight": "Справа", + "Common.define.effectData.textRightTriangle": "Прамавугольны трохвугольнік", + "Common.define.effectData.textShape": "Фігура", + "Common.define.effectData.textSpecial": "Адмысловы", + "Common.define.effectData.textSplit": "Панарама", + "Common.define.effectData.textStretch": "Расцягванне", + "Common.define.effectData.textTrapezoid": "Трапецыя", + "Common.define.effectData.textUnderline": "Падкрэслены", + "Common.define.effectData.textUp": "Уверх", + "Common.define.effectData.textVerticalIn": "Вертыкальна ўнутр", + "Common.define.effectData.textVerticalOut": "Вертыкальна вонкі", + "Common.define.effectData.textWedge": "Клін", + "Common.define.effectData.textWipe": "З’яўленне", + "Common.define.effectData.textZoom": "Маштаб", "Common.Translation.warnFileLocked": "Дакумент выкарыстоўваецца іншай праграмай. Вы можаце працягнуць рэдагаванне і захаваць яго як копію.", "Common.UI.ButtonColored.textAutoColor": "Аўтаматычна", + "Common.UI.ButtonColored.textNewColor": "Дадаць новы адвольны колер", "Common.UI.ComboBorderSize.txtNoBorders": "Без межаў", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Без межаў", "Common.UI.ComboDataView.emptyComboText": "Без стыляў", @@ -39,6 +77,8 @@ "Common.UI.SynchronizeTip.textSynchronize": "Дакумент быў зменены іншым карыстальнікам.
Націсніце, каб захаваць свае змены і загрузіць абнаўленні.", "Common.UI.ThemeColorPalette.textStandartColors": "Стандартныя колеры", "Common.UI.ThemeColorPalette.textThemeColors": "Колеры тэмы", + "Common.UI.Themes.txtThemeDark": "Цёмная", + "Common.UI.Themes.txtThemeLight": "Светлая", "Common.UI.Window.cancelButtonText": "Скасаваць", "Common.UI.Window.closeButtonText": "Закрыць", "Common.UI.Window.noButtonText": "Не", @@ -61,10 +101,12 @@ "Common.Views.AutoCorrectDialog.textAdd": "Дадаць", "Common.Views.AutoCorrectDialog.textApplyText": "Ужываць падчас уводу", "Common.Views.AutoCorrectDialog.textAutoFormat": "Аўтафарматаванне падчас уводу", + "Common.Views.AutoCorrectDialog.textBulleted": "Спісы з адзнакамі", "Common.Views.AutoCorrectDialog.textBy": "На", "Common.Views.AutoCorrectDialog.textDelete": "Выдаліць", "Common.Views.AutoCorrectDialog.textHyphens": "Злучкі (--) на працяжнік (—)", "Common.Views.AutoCorrectDialog.textMathCorrect": "Аўтазамена матэматычнымі сімваламі", + "Common.Views.AutoCorrectDialog.textNumbered": "Нумараваныя спісы", "Common.Views.AutoCorrectDialog.textRecognized": "Распазнаныя формулы", "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Гэтыя выразы распазнаныя як матэматычныя. Яны не будуць пазначацца курсівам.", "Common.Views.AutoCorrectDialog.textReplace": "Замяніць", @@ -130,9 +172,11 @@ "Common.Views.Header.txtAccessRights": "Змяніць правы на доступ", "Common.Views.Header.txtRename": "Змяніць назву", "Common.Views.History.textCloseHistory": "Закрыць гісторыю", + "Common.Views.History.textHide": "Згарнуць", "Common.Views.History.textHideAll": "Схаваць падрабязныя змены", "Common.Views.History.textRestore": "Аднавіць", "Common.Views.History.textShow": "Пашырыць", + "Common.Views.History.textShowAll": "Паказаць падрабязныя змены", "Common.Views.History.textVer": "вер.", "Common.Views.ImageFromUrlDialog.textUrl": "Устаўце URL выявы:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Гэтае поле неабходна запоўніць", @@ -248,6 +292,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Адкрыць зноў", "Common.Views.ReviewPopover.textReply": "Адказаць", "Common.Views.ReviewPopover.textResolve": "Вырашыць", + "Common.Views.ReviewPopover.txtEditTip": "Рэдагаваць", "Common.Views.SaveAsDlg.textLoading": "Загрузка", "Common.Views.SaveAsDlg.textTitle": "Каталог для захавання", "Common.Views.SelectFileDlg.textLoading": "Загрузка", @@ -304,6 +349,7 @@ "Common.Views.SymbolTableDialog.textTradeMark": "Сімвал таварнага знака", "Common.Views.UserNameDialog.textLabel": "Адмеціна:", "Common.Views.UserNameDialog.textLabelError": "Адмеціна не можа быць пустой", + "PE.Controllers.LeftMenu.leavePageText": "Усе незахаваныя змены ў гэтым дакуменце страцяцца.
Націсніце \"Скасаваць\" і \"Захаваць\", каб захаваць іх. Націсніце \"Добра\", каб адкінуць незахаваныя змены.", "PE.Controllers.LeftMenu.newDocumentTitle": "Прэзентацыя без назвы", "PE.Controllers.LeftMenu.notcriticalErrorTitle": "Увага", "PE.Controllers.LeftMenu.requestEditRightsText": "Запыт правоў на рэдагаванне…", @@ -349,7 +395,7 @@ "PE.Controllers.Main.errorUserDrop": "На дадзены момант файл недаступны.", "PE.Controllers.Main.errorUsersExceed": "Перасягнута колькасць карыстальнікаў, дазволеных згодна тарыфу", "PE.Controllers.Main.errorViewerDisconnect": "Злучэнне страчана. Вы зможаце праглядаць дакумент,
але не зможаце спампаваць альбо надрукаваць яго да аднаўлення злучэння і перазагрузкі старонкі.", - "PE.Controllers.Main.leavePageText": "У прэзентацыі ёсць незахаваныя змены. Каб захаваць іх, націсніце \"Застацца на гэтай старонцы\", пасля \"Захаваць\". Націсніце \"Сысці са старонкі\", каб адкінуць незахаваныя змены.", + "PE.Controllers.Main.leavePageText": "У прэзентацыі ёсць незахаваныя змены. Каб захаваць іх, націсніце \"Застацца на гэтай старонцы\", пасля \"Захаваць\". Націсніце \"Пакінуць старонку\", каб адкінуць незахаваныя змены.", "PE.Controllers.Main.loadFontsTextText": "Загрузка даных…", "PE.Controllers.Main.loadFontsTitleText": "Загрузка даных", "PE.Controllers.Main.loadFontTextText": "Загрузка даных…", @@ -398,6 +444,7 @@ "PE.Controllers.Main.textShape": "Фігура", "PE.Controllers.Main.textStrict": "Строгі рэжым", "PE.Controllers.Main.textTryUndoRedo": "Функцыі скасавання і паўтору дзеянняў выключаныя ў хуткім рэжыме сумеснага рэдагавання.
Націсніце кнопку \"Строгі рэжым\", каб пераключыцца ў строгі рэжым сумеснага рэдагавання, каб рэдагаваць файл без іншых карыстальнікаў і адпраўляць змены толькі пасля іх захавання. Пераключацца паміж рэжымамі сумеснага рэдагавання можна з дапамогай дадатковых налад рэдактара.", + "PE.Controllers.Main.textTryUndoRedoWarn": "Функцыі скасавання і паўтору дзеянняў выключаныя ў хуткім рэжыме сумеснага рэдагавання.", "PE.Controllers.Main.titleLicenseExp": "Тэрмін дзеяння ліцэнзіі сышоў", "PE.Controllers.Main.titleServerVersion": "Рэдактар абноўлены", "PE.Controllers.Main.txtAddFirstSlide": "Пстрыкніце, каб дадаць першы слайд", @@ -422,6 +469,7 @@ "PE.Controllers.Main.txtMath": "Матэматычныя знакі", "PE.Controllers.Main.txtMedia": "Медыя", "PE.Controllers.Main.txtNeedSynchronize": "Ёсць абнаўленні", + "PE.Controllers.Main.txtNone": "Няма", "PE.Controllers.Main.txtPicture": "Малюнак", "PE.Controllers.Main.txtRectangles": "Прамавугольнікі", "PE.Controllers.Main.txtSeries": "Шэраг", @@ -665,6 +713,8 @@ "PE.Controllers.Main.warnBrowserZoom": "Бягучыя налады маштабу старонкі падтрымліваюцца браўзерам толькі часткова. Калі ласка, скінце да прадвызначанага значэння націснуўшы Ctrl+О.", "PE.Controllers.Main.warnLicenseExceeded": "Вы дасягнулі абмежавання па адначасовай колькасці падлучэнняў да рэдактараў %1.Гэты дакумент будзе адкрыты для прагляду.
Звяжыцеся з адміністратарам, каб даведацца больш.", "PE.Controllers.Main.warnLicenseExp": "Тэрмін дзеяння ліцэнзіі сышоў.
Калі ласка, абнавіце ліцэнзію, пасля абнавіце старонку.", + "PE.Controllers.Main.warnLicenseLimitedNoAccess": "Тэрмін дзеяння ліцэнзіі сышоў.
У вас няма доступу да функцый рэдагавання дакументаў.
Калі ласка, звярніцеся да адміністратара.", + "PE.Controllers.Main.warnLicenseLimitedRenewed": "Патрэбна абнавіць ліцэнзію.
У вас абмежаваны доступ да функцый рэдагавання дакументаў.
Каб атрымаць поўны доступ, звярніцеся да адміністратара", "PE.Controllers.Main.warnLicenseUsersExceeded": "Вы дасягнулі абмежавання па адначасовай колькасці падлучэнняў да рэдактараў %1.
Звяжыцеся з адміністратарам, каб даведацца больш.", "PE.Controllers.Main.warnNoLicense": "Вы дасягнулі абмежавання па адначасовай колькасці падлучэнняў да рэдактараў %1.Гэты дакумент будзе адкрыты для прагляду.
Напішыце ў аддзел продажу %1,каб абмеркаваць асабістыя ўмовы ліцэнзіявання.", "PE.Controllers.Main.warnNoLicenseUsers": "Вы дасягнулі абмежавання па адначасовай колькасці падлучэнняў да рэдактараў %1.
Напішыце ў аддзел продажу %1,каб абмеркаваць асабістыя ўмовы ліцэнзіявання.", @@ -967,7 +1017,7 @@ "PE.Controllers.Toolbar.txtSymbol_mu": "Мю", "PE.Controllers.Toolbar.txtSymbol_nabla": "Набла", "PE.Controllers.Toolbar.txtSymbol_neq": "Не роўна", - "PE.Controllers.Toolbar.txtSymbol_ni": "Утрымлівае як чальца", + "PE.Controllers.Toolbar.txtSymbol_ni": "Утрымлівае як член", "PE.Controllers.Toolbar.txtSymbol_not": "Знак адмаўлення", "PE.Controllers.Toolbar.txtSymbol_notexists": "Не існуе", "PE.Controllers.Toolbar.txtSymbol_nu": "Ню", @@ -1005,6 +1055,12 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Дзэта", "PE.Controllers.Viewport.textFitPage": "Па памерах слайда", "PE.Controllers.Viewport.textFitWidth": "Па шырыні", + "PE.Views.Animation.strDelay": "Затрымка", + "PE.Views.Animation.strDuration": "Працягласць", + "PE.Views.Animation.strStart": "Запуск", + "PE.Views.Animation.textMultiple": "множнік", + "PE.Views.Animation.textNone": "Няма", + "PE.Views.Animation.txtPreview": "Прагляд", "PE.Views.ChartSettings.textAdvanced": "Дадатковыя налады", "PE.Views.ChartSettings.textChartType": "Змяніць тып дыяграмы", "PE.Views.ChartSettings.textEditData": "Рэдагаваць даныя", @@ -1232,6 +1288,7 @@ "PE.Views.FileMenu.btnSaveCopyAsCaption": "Захаваць копію як…", "PE.Views.FileMenu.btnSettingsCaption": "Дадатковыя налады…", "PE.Views.FileMenu.btnToEditCaption": "Рэдагаваць прэзентацыю", + "PE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Стварыць новы", "PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Ужыць", "PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Дадаць аўтара", "PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Дадаць тэкст", @@ -1360,6 +1417,7 @@ "PE.Views.ImageSettings.textHintFlipV": "Адлюстраваць па вертыкалі", "PE.Views.ImageSettings.textInsert": "Замяніць выяву", "PE.Views.ImageSettings.textOriginalSize": "Актуальны памер", + "PE.Views.ImageSettings.textRecentlyUsed": "Апошнія выкарыстаныя", "PE.Views.ImageSettings.textRotate90": "Павярнуць на 90°", "PE.Views.ImageSettings.textRotation": "Паварочванне", "PE.Views.ImageSettings.textSize": "Памер", @@ -1479,6 +1537,7 @@ "PE.Views.ShapeSettings.textPatternFill": "Узор", "PE.Views.ShapeSettings.textPosition": "Пазіцыя", "PE.Views.ShapeSettings.textRadial": "Радыяльны", + "PE.Views.ShapeSettings.textRecentlyUsed": "Апошнія выкарыстаныя", "PE.Views.ShapeSettings.textRotate90": "Павярнуць на 90°", "PE.Views.ShapeSettings.textRotation": "Паварочванне", "PE.Views.ShapeSettings.textSelectImage": "Абраць выяву", @@ -1760,7 +1819,7 @@ "PE.Views.Toolbar.capInsertText": "Надпіс", "PE.Views.Toolbar.capInsertVideo": "Відэа", "PE.Views.Toolbar.capTabFile": "Файл", - "PE.Views.Toolbar.capTabHome": "Хатняя", + "PE.Views.Toolbar.capTabHome": "Асноўныя функцыі", "PE.Views.Toolbar.capTabInsert": "Уставіць", "PE.Views.Toolbar.mniCustomTable": "Уставіць адвольную табліцу", "PE.Views.Toolbar.mniImageFromFile": "Выява з файла", @@ -1769,6 +1828,7 @@ "PE.Views.Toolbar.mniSlideAdvanced": "Дадатковыя налады", "PE.Views.Toolbar.mniSlideStandard": "Стандартны (4:3)", "PE.Views.Toolbar.mniSlideWide": "Шырокаэкранны (16:9)", + "PE.Views.Toolbar.strMenuNoFill": "Без заліўкі", "PE.Views.Toolbar.textAlignBottom": "Выраўноўванне тэксту па ніжняму краю", "PE.Views.Toolbar.textAlignCenter": "Тэкст па цэнтры", "PE.Views.Toolbar.textAlignJust": "Выраўноўванне па шырыні", @@ -1781,8 +1841,10 @@ "PE.Views.Toolbar.textArrangeForward": "Перамясціць уперад", "PE.Views.Toolbar.textArrangeFront": "Перанесці на пярэдні план", "PE.Views.Toolbar.textBold": "Тоўсты", + "PE.Views.Toolbar.textColumnsCustom": "Адвольныя слупкі", "PE.Views.Toolbar.textItalic": "Курсіў", "PE.Views.Toolbar.textListSettings": "Налады спіса", + "PE.Views.Toolbar.textRecentlyUsed": "Апошнія выкарыстаныя", "PE.Views.Toolbar.textShapeAlignBottom": "Выраўнаваць па ніжняму краю", "PE.Views.Toolbar.textShapeAlignCenter": "Выраўнаваць па цэнтры", "PE.Views.Toolbar.textShapeAlignLeft": "Выраўнаваць па леваму краю", @@ -1798,8 +1860,8 @@ "PE.Views.Toolbar.textSuperscript": "Надрадковыя", "PE.Views.Toolbar.textTabCollaboration": "Сумесная праца", "PE.Views.Toolbar.textTabFile": "Файл", - "PE.Views.Toolbar.textTabHome": "Хатняя", - "PE.Views.Toolbar.textTabInsert": "Уставіць", + "PE.Views.Toolbar.textTabHome": "Асноўныя функцыі", + "PE.Views.Toolbar.textTabInsert": "Устаўка", "PE.Views.Toolbar.textTabProtect": "Абарона", "PE.Views.Toolbar.textTitleError": "Памылка", "PE.Views.Toolbar.textUnderline": "Падкрэслены", @@ -1809,6 +1871,7 @@ "PE.Views.Toolbar.tipChangeSlide": "Змяніць макет слайда", "PE.Views.Toolbar.tipClearStyle": "Ачысціць стыль", "PE.Views.Toolbar.tipColorSchemas": "Змяніць каляровую схему", + "PE.Views.Toolbar.tipColumns": "Уставіць слупкі", "PE.Views.Toolbar.tipCopy": "Капіяваць", "PE.Views.Toolbar.tipCopyStyle": "Скапіяваць стыль", "PE.Views.Toolbar.tipDateTime": "Уставіць быгучую назву і час", @@ -1851,6 +1914,7 @@ "PE.Views.Toolbar.tipViewSettings": "Налады прагляду", "PE.Views.Toolbar.txtDistribHor": "Размеркаваць па гарызанталі", "PE.Views.Toolbar.txtDistribVert": "Размеркаваць па вертыкалі", + "PE.Views.Toolbar.txtDuplicateSlide": "Дубляваць слайд", "PE.Views.Toolbar.txtGroup": "Згрупаваць", "PE.Views.Toolbar.txtObjectsAlign": "Выраўнаваць абраныя аб’екты", "PE.Views.Toolbar.txtScheme1": "Офіс", @@ -1880,6 +1944,7 @@ "PE.Views.Transitions.strDuration": "Працягласць", "PE.Views.Transitions.strStartOnClick": "Запускаць пстрычкай", "PE.Views.Transitions.textBlack": "Праз чорны", + "PE.Views.Transitions.textBottom": "Знізу", "PE.Views.Transitions.textBottomLeft": "Знізу злева", "PE.Views.Transitions.textBottomRight": "Знізу справа", "PE.Views.Transitions.textClock": "Гадзіннік", @@ -1889,18 +1954,26 @@ "PE.Views.Transitions.textFade": "Выцвітанне", "PE.Views.Transitions.textHorizontalIn": "Гарызантальна ўнутр", "PE.Views.Transitions.textHorizontalOut": "Па гарызанталі вонкі", + "PE.Views.Transitions.textLeft": "Злева", + "PE.Views.Transitions.textNone": "Няма", "PE.Views.Transitions.textPush": "Ссоўванне", "PE.Views.Transitions.textSmoothly": "Плаўна", "PE.Views.Transitions.textSplit": "Панарама", + "PE.Views.Transitions.textTop": "Верхняе", "PE.Views.Transitions.textTopLeft": "Уверсе злева", "PE.Views.Transitions.textTopRight": "Уверсе справа", "PE.Views.Transitions.textUnCover": "Адкрыццё", "PE.Views.Transitions.textVerticalIn": "Вертыкальна ўнутр", "PE.Views.Transitions.textVerticalOut": "Вертыкальна вонкі", + "PE.Views.Transitions.textWedge": "Клін", "PE.Views.Transitions.textWipe": "З’яўленне", "PE.Views.Transitions.textZoom": "Маштаб", + "PE.Views.Transitions.textZoomIn": "Павелічэнне", + "PE.Views.Transitions.textZoomOut": "Памяншэнне", "PE.Views.Transitions.textZoomRotate": "Павелічэнне і паварочванне", "PE.Views.Transitions.txtApplyToAll": "Ужыць да ўсіх слайдаў", "PE.Views.Transitions.txtParameters": "Параметры", - "PE.Views.Transitions.txtPreview": "Прагляд" + "PE.Views.Transitions.txtPreview": "Прагляд", + "PE.Views.ViewTab.textFitToSlide": "Па памерах слайда", + "PE.Views.ViewTab.textZoom": "Маштаб" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ca.json b/apps/presentationeditor/main/locale/ca.json index 4b84ab8e7..07e843b29 100644 --- a/apps/presentationeditor/main/locale/ca.json +++ b/apps/presentationeditor/main/locale/ca.json @@ -155,18 +155,85 @@ "Common.define.effectData.textObjectColor": "Color de l'objecte", "Common.define.effectData.textOctagon": "Octàgon", "Common.define.effectData.textOut": "Fora", + "Common.define.effectData.textOutFromScreenBottom": "Redueix des de la part inferior de la pantalla", + "Common.define.effectData.textOutSlightly": "Redueix lleugerament", + "Common.define.effectData.textParallelogram": "Paral·lelogram", "Common.define.effectData.textPath": "Recorregut", + "Common.define.effectData.textPeanut": "Cacauet", + "Common.define.effectData.textPeekIn": "Ullada endins", + "Common.define.effectData.textPeekOut": "Ullada enfora", + "Common.define.effectData.textPentagon": "Pentàgon", + "Common.define.effectData.textPinwheel": "Remolí", + "Common.define.effectData.textPlus": "Més", + "Common.define.effectData.textPointStar": "Estel de punta", "Common.define.effectData.textPointStar4": "Estrella de 4 puntes", "Common.define.effectData.textPointStar5": "Estrella de 5 puntes", "Common.define.effectData.textPointStar6": "Estrella de 6 puntes", "Common.define.effectData.textPointStar8": "Estrella de 8 puntes", + "Common.define.effectData.textPulse": "Batec", + "Common.define.effectData.textRandomBars": "Barres aleatòries", + "Common.define.effectData.textRight": "Dreta", "Common.define.effectData.textRightDown": "Dreta i avall", + "Common.define.effectData.textRightTriangle": "Triangle rectangle", "Common.define.effectData.textRightUp": "Dreta i amunt", + "Common.define.effectData.textRiseUp": "S'aixeca", + "Common.define.effectData.textSCurve1": "Corba S 1", + "Common.define.effectData.textSCurve2": "Corba S 2", + "Common.define.effectData.textShape": "Forma", + "Common.define.effectData.textShimmer": "Resplendir", + "Common.define.effectData.textShrinkTurn": "Encongir i girar", + "Common.define.effectData.textSineWave": "Corba sinusoide", + "Common.define.effectData.textSinkDown": "Enfonsar", + "Common.define.effectData.textSlideCenter": "Centre de la diapositiva", + "Common.define.effectData.textSpecial": "Especial", + "Common.define.effectData.textSpin": "Gira", + "Common.define.effectData.textSpinner": "Control de gir", + "Common.define.effectData.textSpiralIn": "Espiral cap endins", + "Common.define.effectData.textSpiralLeft": "Espiral cap a l'esquerra", + "Common.define.effectData.textSpiralOut": "Espiral cap enfora", + "Common.define.effectData.textSpiralRight": "Espiral cap a la dreta", + "Common.define.effectData.textSplit": "Divideix", "Common.define.effectData.textSpoke1": "1 radi", "Common.define.effectData.textSpoke2": "2 radis", "Common.define.effectData.textSpoke3": "3 radis", "Common.define.effectData.textSpoke4": "4 radis", "Common.define.effectData.textSpoke8": "8 radis", + "Common.define.effectData.textSpring": "Molla", + "Common.define.effectData.textSquare": "Quadrat", + "Common.define.effectData.textStairsDown": "Escales descendents", + "Common.define.effectData.textStretch": "Estirament", + "Common.define.effectData.textStrips": "Tires", + "Common.define.effectData.textSubtle": "Subtils", + "Common.define.effectData.textSwivel": "Gir", + "Common.define.effectData.textSwoosh": "Xiulet", + "Common.define.effectData.textTeardrop": "Llàgrima", + "Common.define.effectData.textTeeter": "Trontollar", + "Common.define.effectData.textToBottom": "Cap a baix", + "Common.define.effectData.textToBottomLeft": "Cap a baix a l'esquerra", + "Common.define.effectData.textToBottomRight": "Cap a baix a la dreta", + "Common.define.effectData.textToFromScreenBottom": "Redueix cap a la part inferior de la pantalla", + "Common.define.effectData.textToLeft": "Cap a la dreta", + "Common.define.effectData.textToRight": "Cap a la dreta", + "Common.define.effectData.textToTop": "Cap a dalt", + "Common.define.effectData.textToTopLeft": "Cap a dalt a l'esquerra", + "Common.define.effectData.textToTopRight": "Cap a dalt a la dreta", + "Common.define.effectData.textTransparency": "Transparència", + "Common.define.effectData.textTrapezoid": "Trapezi", + "Common.define.effectData.textTurnDown": "Girar cap avall", + "Common.define.effectData.textTurnDownRight": "Girar cap a la dreta i avall", + "Common.define.effectData.textTurnUp": "Girar cap amunt", + "Common.define.effectData.textTurnUpRight": "Girar cap a la dreta i amunt", + "Common.define.effectData.textUnderline": "Subratlla", + "Common.define.effectData.textUp": "Amunt", + "Common.define.effectData.textVertical": "Vertical", + "Common.define.effectData.textVerticalFigure": "Figura 8 vertical", + "Common.define.effectData.textVerticalIn": "Vertical entrant", + "Common.define.effectData.textVerticalOut": "Vertical sortint", + "Common.define.effectData.textWave": "Ona", + "Common.define.effectData.textWedge": "Falca", + "Common.define.effectData.textWheel": "Rodar", + "Common.define.effectData.textWhip": "Agitar", + "Common.define.effectData.textWipe": "Elimina", "Common.define.effectData.textZigzag": "Zig-zag", "Common.define.effectData.textZoom": "Zoom", "Common.Translation.warnFileLocked": "El document és obert en una altra aplicació. Podeu continuar editant i guardar-lo com a còpia.", @@ -184,6 +251,7 @@ "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.InputFieldBtnPassword.textHintHidePwd": "Amaga la contrasenya", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Mostra la contrasenya", "Common.UI.SearchDialog.textHighlight": "Ressalta els resultats", "Common.UI.SearchDialog.textMatchCase": "Sensible a majúscules i minúscules", "Common.UI.SearchDialog.textReplaceDef": "Introdueix el text de substitució", @@ -339,7 +407,7 @@ "Common.Views.ListSettingsDialog.txtNone": "Cap", "Common.Views.ListSettingsDialog.txtOfText": "% del text", "Common.Views.ListSettingsDialog.txtSize": "Mida", - "Common.Views.ListSettingsDialog.txtStart": "Comença a", + "Common.Views.ListSettingsDialog.txtStart": "Inicia a", "Common.Views.ListSettingsDialog.txtSymbol": "Símbol", "Common.Views.ListSettingsDialog.txtTitle": "Configuració de la llista", "Common.Views.ListSettingsDialog.txtType": "Tipus", @@ -361,7 +429,7 @@ "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.textStart": "Inici", "Common.Views.Plugins.textStop": "Atura", "Common.Views.Protection.hintAddPwd": "Xifra amb contrasenya", "Common.Views.Protection.hintPwd": "Canvia o suprimeix la contrasenya", @@ -1218,6 +1286,11 @@ "PE.Controllers.Viewport.textFitWidth": "Ajusta-ho a l'amplària", "PE.Views.Animation.strDelay": "Retard", "PE.Views.Animation.strDuration": "Durada", + "PE.Views.Animation.strRepeat": "Repeteix", + "PE.Views.Animation.strRewind": "Rebobina", + "PE.Views.Animation.strStart": "Inici", + "PE.Views.Animation.strTrigger": "Disparador", + "PE.Views.Animation.textMoreEffects": "Mostra més efectes", "PE.Views.Animation.textMoveEarlier": "Abans", "PE.Views.Animation.textMoveLater": "Després", "PE.Views.Animation.textMultiple": "múltiple", @@ -1226,8 +1299,13 @@ "PE.Views.Animation.textOnClickSequence": "Al fer una Seqüència de clics", "PE.Views.Animation.textStartAfterPrevious": "Després de l'anterior", "PE.Views.Animation.textStartOnClick": "En clicar", + "PE.Views.Animation.textStartWithPrevious": "Amb l'anterior", "PE.Views.Animation.txtAddEffect": "Afegeix una animació", "PE.Views.Animation.txtAnimationPane": "Subfinestra d'animacions", + "PE.Views.Animation.txtParameters": "Paràmetres", + "PE.Views.Animation.txtPreview": "Visualització prèvia", + "PE.Views.Animation.txtSec": "S", + "PE.Views.AnimationDialog.textPreviewEffect": "Visualització prèvia de l'efecte", "PE.Views.AnimationDialog.textTitle": "Més efectes", "PE.Views.ChartSettings.textAdvanced": "Mostra la configuració avançada", "PE.Views.ChartSettings.textChartType": "Canvia el tipus de gràfic", @@ -1595,6 +1673,7 @@ "PE.Views.ImageSettings.textHintFlipV": "Capgira verticalment", "PE.Views.ImageSettings.textInsert": "Substitueix la imatge", "PE.Views.ImageSettings.textOriginalSize": "Mida real", + "PE.Views.ImageSettings.textRecentlyUsed": "S'ha utilitzat recentment", "PE.Views.ImageSettings.textRotate90": "Girar 90°", "PE.Views.ImageSettings.textRotation": "Rotació", "PE.Views.ImageSettings.textSize": "Mida", @@ -1716,6 +1795,7 @@ "PE.Views.ShapeSettings.textPatternFill": "Patró", "PE.Views.ShapeSettings.textPosition": "Posició", "PE.Views.ShapeSettings.textRadial": "Radial", + "PE.Views.ShapeSettings.textRecentlyUsed": "S'ha utilitzat recentment", "PE.Views.ShapeSettings.textRotate90": "Girar 90°", "PE.Views.ShapeSettings.textRotation": "Rotació", "PE.Views.ShapeSettings.textSelectImage": "Selecciona la imatge", @@ -2032,6 +2112,7 @@ "PE.Views.Toolbar.textColumnsTwo": "Dues columnes", "PE.Views.Toolbar.textItalic": "Cursiva", "PE.Views.Toolbar.textListSettings": "Configuració de la llista", + "PE.Views.Toolbar.textRecentlyUsed": "S'ha utilitzat recentment", "PE.Views.Toolbar.textShapeAlignBottom": "Alineació a baix", "PE.Views.Toolbar.textShapeAlignCenter": "Alineació al centre", "PE.Views.Toolbar.textShapeAlignLeft": "Alineació a l'esquerra", @@ -2052,6 +2133,7 @@ "PE.Views.Toolbar.textTabInsert": "Insereix", "PE.Views.Toolbar.textTabProtect": "Protecció", "PE.Views.Toolbar.textTabTransitions": "Transicions", + "PE.Views.Toolbar.textTabView": "Visualització", "PE.Views.Toolbar.textTitleError": "Error", "PE.Views.Toolbar.textUnderline": "Subratllat", "PE.Views.Toolbar.tipAddSlide": "Afegeix una diapositiva", @@ -2134,7 +2216,7 @@ "PE.Views.Toolbar.txtUngroup": "Desagrupa", "PE.Views.Transitions.strDelay": "Retard", "PE.Views.Transitions.strDuration": "Durada", - "PE.Views.Transitions.strStartOnClick": "Inicia clicant", + "PE.Views.Transitions.strStartOnClick": "Inicia fent clic", "PE.Views.Transitions.textBlack": "En negre", "PE.Views.Transitions.textBottom": "Part inferior", "PE.Views.Transitions.textBottomLeft": "Part inferior-Esquerra", @@ -2173,5 +2255,7 @@ "PE.Views.ViewTab.textFitToWidth": "Ajusta-ho a l'amplària", "PE.Views.ViewTab.textInterfaceTheme": "Tema de la interfície", "PE.Views.ViewTab.textNotes": "Notes", + "PE.Views.ViewTab.textRulers": "Regles", + "PE.Views.ViewTab.textStatusBar": "Barra d'estat", "PE.Views.ViewTab.textZoom": "Zoom" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/es.json b/apps/presentationeditor/main/locale/es.json index 2056381dd..139dea7d3 100644 --- a/apps/presentationeditor/main/locale/es.json +++ b/apps/presentationeditor/main/locale/es.json @@ -47,6 +47,195 @@ "Common.define.chartData.textScatterSmoothMarker": "Dispersión con líneas suavizadas y marcadores", "Common.define.chartData.textStock": "De cotizaciones", "Common.define.chartData.textSurface": "Superficie", + "Common.define.effectData.textAcross": "Horizontal", + "Common.define.effectData.textAppear": "Aparecer", + "Common.define.effectData.textArcDown": "Arco hacia abajo", + "Common.define.effectData.textArcLeft": "Arco hacia a la izquierda", + "Common.define.effectData.textArcRight": "Arco hacia la derecha", + "Common.define.effectData.textArcUp": "Arco hacia arriba", + "Common.define.effectData.textBasic": "Básico", + "Common.define.effectData.textBasicSwivel": "Giro básico", + "Common.define.effectData.textBasicZoom": "Zoom básico", + "Common.define.effectData.textBean": "Alubia", + "Common.define.effectData.textBlinds": "Persianas", + "Common.define.effectData.textBlink": "Intermitente", + "Common.define.effectData.textBoldFlash": "Flash en negrita", + "Common.define.effectData.textBoldReveal": "Revelar en negrita", + "Common.define.effectData.textBoomerang": "Bumerán", + "Common.define.effectData.textBounce": "Rebote", + "Common.define.effectData.textBounceLeft": "Rebote hacia la izquierda", + "Common.define.effectData.textBounceRight": "Rebote hacia la derecha", + "Common.define.effectData.textBox": "Cuadro", + "Common.define.effectData.textBrushColor": "Color del pincel", + "Common.define.effectData.textCenterRevolve": "Girar hacia el centro", + "Common.define.effectData.textCheckerboard": "Cuadros bicolores", + "Common.define.effectData.textCircle": "Círculo", + "Common.define.effectData.textCollapse": "Contraer", + "Common.define.effectData.textColorPulse": "Pulso de color", + "Common.define.effectData.textComplementaryColor": "Color complementario", + "Common.define.effectData.textComplementaryColor2": "Color complementario 2", + "Common.define.effectData.textCompress": "Comprimir", + "Common.define.effectData.textContrast": "Contraste ", + "Common.define.effectData.textContrastingColor": "Color de contraste", + "Common.define.effectData.textCredits": "Créditos", + "Common.define.effectData.textCrescentMoon": "Luna creciente", + "Common.define.effectData.textCurveDown": "Curva hacia abajo", + "Common.define.effectData.textCurvedSquare": "Cuadrado curvado", + "Common.define.effectData.textCurvedX": "X curvada", + "Common.define.effectData.textCurvyLeft": "Curvas hacia la izquierda", + "Common.define.effectData.textCurvyRight": "Curvas hacia la derecha", + "Common.define.effectData.textCurvyStar": "Estrella curvada", + "Common.define.effectData.textCustomPath": "Ruta personalizada", + "Common.define.effectData.textCuverUp": "Curva hacia arriba", + "Common.define.effectData.textDarken": "Oscurecer", + "Common.define.effectData.textDecayingWave": "Serpentina", + "Common.define.effectData.textDesaturate": "Saturación reducida", + "Common.define.effectData.textDiagonalDownRight": "Diagonal hacia abajo derecha", + "Common.define.effectData.textDiagonalUpRight": "Diagonal hacia arriba derecha", + "Common.define.effectData.textDiamond": "Rombo", + "Common.define.effectData.textDisappear": "Desaparecer", + "Common.define.effectData.textDissolveIn": "Disolver hacia dentro", + "Common.define.effectData.textDissolveOut": "Disolver hacia fuera", + "Common.define.effectData.textDown": "Abajo", + "Common.define.effectData.textDrop": "Colocar", + "Common.define.effectData.textEmphasis": "Efecto de énfasis", + "Common.define.effectData.textEntrance": "Efecto de entrada", + "Common.define.effectData.textEqualTriangle": "Triángulo equilátero", + "Common.define.effectData.textExciting": "Llamativo", + "Common.define.effectData.textExit": "Efecto de salida", + "Common.define.effectData.textExpand": "Expandir", + "Common.define.effectData.textFade": "Desvanecer", + "Common.define.effectData.textFigureFour": "Figura 8 cuatro veces", + "Common.define.effectData.textFillColor": "Color de relleno", + "Common.define.effectData.textFlip": "Voltear", + "Common.define.effectData.textFloat": "Flotante", + "Common.define.effectData.textFloatDown": "Flotante hacia abajo", + "Common.define.effectData.textFloatIn": "Flotante hacia dentro", + "Common.define.effectData.textFloatOut": "Flotante hacia fuera", + "Common.define.effectData.textFloatUp": "Flotante hacia arriba", + "Common.define.effectData.textFlyIn": "Volar hacia dentro", + "Common.define.effectData.textFlyOut": "Volar hacia fuera", + "Common.define.effectData.textFontColor": "Color de fuente", + "Common.define.effectData.textFootball": "Fútbol", + "Common.define.effectData.textFromBottom": "Desde abajo", + "Common.define.effectData.textFromBottomLeft": "Desde la parte inferior izquierda", + "Common.define.effectData.textFromBottomRight": "Desde la parte inferior derecha", + "Common.define.effectData.textFromLeft": "Desde la izquierda", + "Common.define.effectData.textFromRight": "Desde la derecha", + "Common.define.effectData.textFromTop": "Desde arriba", + "Common.define.effectData.textFromTopLeft": "Desde la parte superior izquierda", + "Common.define.effectData.textFromTopRight": "Desde la parte superior derecha", + "Common.define.effectData.textFunnel": "Embudo", + "Common.define.effectData.textGrowShrink": "Aumentar/Encoger", + "Common.define.effectData.textGrowTurn": "Aumentar y girar", + "Common.define.effectData.textGrowWithColor": "Aumentar con color", + "Common.define.effectData.textHeart": "Corazón", + "Common.define.effectData.textHeartbeat": "Latido", + "Common.define.effectData.textHexagon": "Hexágono", + "Common.define.effectData.textHorizontal": "Horizontal ", + "Common.define.effectData.textHorizontalFigure": "Figura 8 horizontal", + "Common.define.effectData.textHorizontalIn": "Horizontal entrante", + "Common.define.effectData.textHorizontalOut": "Horizontal saliente", + "Common.define.effectData.textIn": "Hacia dentro", + "Common.define.effectData.textInFromScreenCenter": "Aumentar desde el centro de pantalla", + "Common.define.effectData.textInSlightly": "Acercar ligeramente", + "Common.define.effectData.textInToScreenCenter": "Aumentar hacia el centro de la pantalla", + "Common.define.effectData.textInvertedSquare": "Cuadrado invertido", + "Common.define.effectData.textInvertedTriangle": "Triángulo invertido", + "Common.define.effectData.textLeft": "Izquierda", + "Common.define.effectData.textLeftDown": "Izquierda y abajo", + "Common.define.effectData.textLeftUp": "Izquierda y arriba", + "Common.define.effectData.textLighten": "Iluninar", + "Common.define.effectData.textLineColor": "Color de línea", + "Common.define.effectData.textLinesCurves": "Líneas curvas", + "Common.define.effectData.textLoopDeLoop": "Bucle", + "Common.define.effectData.textModerate": "Moderado", + "Common.define.effectData.textNeutron": "Neutrón", + "Common.define.effectData.textObjectCenter": "Centro del objeto", + "Common.define.effectData.textObjectColor": "Color de objeto", + "Common.define.effectData.textOctagon": "Octágono", + "Common.define.effectData.textOut": "Hacia fuera", + "Common.define.effectData.textOutFromScreenBottom": "Alejar desde la zona inferior de la pantalla", + "Common.define.effectData.textOutSlightly": "Alejar ligeramente", + "Common.define.effectData.textParallelogram": "Paralelogramo", + "Common.define.effectData.textPath": "Ruta de movimiento", + "Common.define.effectData.textPeanut": "Cacahuete", + "Common.define.effectData.textPeekIn": "Desplegar hacia arriba", + "Common.define.effectData.textPeekOut": "Desplegar hacia abajo", + "Common.define.effectData.textPentagon": "Pentágono", + "Common.define.effectData.textPinwheel": "Remolino", + "Common.define.effectData.textPlus": "Más", + "Common.define.effectData.textPointStar": "Estrella de puntas", + "Common.define.effectData.textPointStar4": "Estrella de 4 puntas", + "Common.define.effectData.textPointStar5": "Estrella de 5 puntas", + "Common.define.effectData.textPointStar6": "Estrella de 6 puntas", + "Common.define.effectData.textPointStar8": "Estrella de 8 puntas", + "Common.define.effectData.textPulse": "Impulso", + "Common.define.effectData.textRandomBars": "Barras aleatorias", + "Common.define.effectData.textRight": "A la derecha", + "Common.define.effectData.textRightDown": "Derecha y abajo", + "Common.define.effectData.textRightTriangle": "Triángulo rectángulo", + "Common.define.effectData.textRightUp": "Derecha y arriba", + "Common.define.effectData.textRiseUp": "Desplegar hacia arriba", + "Common.define.effectData.textSCurve1": "Curva S 1", + "Common.define.effectData.textSCurve2": "Curva S 2", + "Common.define.effectData.textShape": "Forma", + "Common.define.effectData.textShimmer": "Reflejos", + "Common.define.effectData.textShrinkTurn": "Reducir y girar", + "Common.define.effectData.textSineWave": "Sine Wave", + "Common.define.effectData.textSinkDown": "Hundir", + "Common.define.effectData.textSlideCenter": "Centro de la diapositiva", + "Common.define.effectData.textSpecial": "Especial", + "Common.define.effectData.textSpin": "Girar", + "Common.define.effectData.textSpinner": "Centrifugado", + "Common.define.effectData.textSpiralIn": "Espiral hacia dentro", + "Common.define.effectData.textSpiralLeft": "Espiral hacia la izquierda", + "Common.define.effectData.textSpiralOut": "Espiral hacia fuera", + "Common.define.effectData.textSpiralRight": "Espiral hacia la derecha", + "Common.define.effectData.textSplit": "Dividir", + "Common.define.effectData.textSpoke1": "1 radio", + "Common.define.effectData.textSpoke2": "2 radios", + "Common.define.effectData.textSpoke3": "3 radios", + "Common.define.effectData.textSpoke4": "4 radios", + "Common.define.effectData.textSpoke8": "8 radios", + "Common.define.effectData.textSpring": "Muelle", + "Common.define.effectData.textSquare": "Cuadrado", + "Common.define.effectData.textStairsDown": "Escaleras abajo", + "Common.define.effectData.textStretch": "Estirar", + "Common.define.effectData.textStrips": "Rayas", + "Common.define.effectData.textSubtle": "Sutil", + "Common.define.effectData.textSwivel": "Rótula", + "Common.define.effectData.textSwoosh": "Silbido", + "Common.define.effectData.textTeardrop": "Lágrima", + "Common.define.effectData.textTeeter": "Tambalear", + "Common.define.effectData.textToBottom": "Hacia abajo", + "Common.define.effectData.textToBottomLeft": "Hacia abajo a la izquierda", + "Common.define.effectData.textToBottomRight": "Hacia abajo a la derecha", + "Common.define.effectData.textToFromScreenBottom": "De fuera hacia la parte inferior de la pantalla", + "Common.define.effectData.textToLeft": "A la izquierda", + "Common.define.effectData.textToRight": "A la derecha", + "Common.define.effectData.textToTop": "Hacia arriba", + "Common.define.effectData.textToTopLeft": "Hacia arriba a la izquierda", + "Common.define.effectData.textToTopRight": "Hacia arriba a la derecha", + "Common.define.effectData.textTransparency": "Transparencia", + "Common.define.effectData.textTrapezoid": "Trapecio", + "Common.define.effectData.textTurnDown": "Giro hacia abajo", + "Common.define.effectData.textTurnDownRight": "Girar hacia abajo y a la derecha", + "Common.define.effectData.textTurnUp": "Girar hacia arriba", + "Common.define.effectData.textTurnUpRight": "Girar hacia arriba a la derecha", + "Common.define.effectData.textUnderline": "Subrayar", + "Common.define.effectData.textUp": "Arriba", + "Common.define.effectData.textVertical": "Vertical", + "Common.define.effectData.textVerticalFigure": "Figura 8 vertical", + "Common.define.effectData.textVerticalIn": "Vertical entrante", + "Common.define.effectData.textVerticalOut": "Vertical saliente", + "Common.define.effectData.textWave": "Onda", + "Common.define.effectData.textWedge": "Cuña", + "Common.define.effectData.textWheel": "Rueda", + "Common.define.effectData.textWhip": "Fusta", + "Common.define.effectData.textWipe": "Barrido", + "Common.define.effectData.textZigzag": "Zigzag", + "Common.define.effectData.textZoom": "Zoom", "Common.Translation.warnFileLocked": "El archivo está siendo editado en otra aplicación. Puede continuar editándolo y guardarlo como una copia.", "Common.Translation.warnFileLockedBtnEdit": "Crear copia", "Common.Translation.warnFileLockedBtnView": "Abrir para visualizar", @@ -61,6 +250,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Nuevo", "Common.UI.ExtendedColorDialog.textRGBErr": "El valor introducido es incorrecto.
Por favor, introduzca un valor numérico de 0 a 225.", "Common.UI.HSBColorPicker.textNoColor": "Sin Color", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Ocultar la contraseña", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Mostrar la contraseña", "Common.UI.SearchDialog.textHighlight": "Resaltar resultados", "Common.UI.SearchDialog.textMatchCase": "Sensible a mayúsculas y minúsculas", "Common.UI.SearchDialog.textReplaceDef": "Introduzca el texto de sustitución", @@ -93,7 +284,7 @@ "Common.Views.About.txtAddress": "dirección: ", "Common.Views.About.txtLicensee": "LICENCIATARIO ", "Common.Views.About.txtLicensor": "LICENCIANTE", - "Common.Views.About.txtMail": "email: ", + "Common.Views.About.txtMail": "correo: ", "Common.Views.About.txtPoweredBy": "Desarrollado por", "Common.Views.About.txtTel": "tel.: ", "Common.Views.About.txtVersion": "Versión ", @@ -104,6 +295,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Listas con viñetas automáticas", "Common.Views.AutoCorrectDialog.textBy": "Por", "Common.Views.AutoCorrectDialog.textDelete": "Eliminar", + "Common.Views.AutoCorrectDialog.textFLCells": "Poner en mayúsculas la primera letra de las celdas de la tabla", "Common.Views.AutoCorrectDialog.textFLSentence": "Poner en mayúscula la primera letra de una oración", "Common.Views.AutoCorrectDialog.textHyperlink": "Rutas de red e Internet por hipervínculos", "Common.Views.AutoCorrectDialog.textHyphens": "Guiones (--) con guión largo (—)", @@ -129,12 +321,14 @@ "Common.Views.Comments.mniAuthorDesc": "Autor de Z a A", "Common.Views.Comments.mniDateAsc": "Más antiguo", "Common.Views.Comments.mniDateDesc": "Más reciente", + "Common.Views.Comments.mniFilterGroups": "Filtrar por grupo", "Common.Views.Comments.mniPositionAsc": "Desde arriba", "Common.Views.Comments.mniPositionDesc": "Desde abajo", "Common.Views.Comments.textAdd": "Añadir", "Common.Views.Comments.textAddComment": "Añadir", "Common.Views.Comments.textAddCommentToDoc": "Añadir comentario a documento", "Common.Views.Comments.textAddReply": "Añadir respuesta", + "Common.Views.Comments.textAll": "Todo", "Common.Views.Comments.textAnonym": "Visitante", "Common.Views.Comments.textCancel": "Cancelar", "Common.Views.Comments.textClose": "Cerrar", @@ -148,6 +342,7 @@ "Common.Views.Comments.textResolve": "Resolver", "Common.Views.Comments.textResolved": "Resuelto", "Common.Views.Comments.textSort": "Ordenar comentarios", + "Common.Views.Comments.textViewResolved": "No tiene permiso para volver a abrir el documento", "Common.Views.CopyWarningDialog.textDontShow": "No volver a mostrar este mensaje", "Common.Views.CopyWarningDialog.textMsg": "Se puede realizar las acciones de copiar, cortar y pegar usando los botones en la barra de herramientas y el menú contextual sólo en esta pestaña del editor.

Si quiere copiar o pegar algo fuera de esta pestaña, usa las combinaciones de teclas siguientes:", "Common.Views.CopyWarningDialog.textTitle": "Funciones de Copiar, Cortar y Pegar", @@ -307,11 +502,12 @@ "Common.Views.ReviewPopover.textCancel": "Cancelar", "Common.Views.ReviewPopover.textClose": "Cerrar", "Common.Views.ReviewPopover.textEdit": "OK", - "Common.Views.ReviewPopover.textMention": "+mención proporcionará acceso al documento y enviará un correo electrónico", - "Common.Views.ReviewPopover.textMentionNotify": "+mención notificará al usuario por correo electrónico", + "Common.Views.ReviewPopover.textMention": "+mención proporcionará acceso al documento y enviará un correo", + "Common.Views.ReviewPopover.textMentionNotify": "+mención notificará al usuario por correo", "Common.Views.ReviewPopover.textOpenAgain": "Abrir de nuevo", "Common.Views.ReviewPopover.textReply": "Responder", "Common.Views.ReviewPopover.textResolve": "Resolver", + "Common.Views.ReviewPopover.textViewResolved": "No tiene permiso para volver a abrir el documento", "Common.Views.ReviewPopover.txtDeleteTip": "Eliminar", "Common.Views.ReviewPopover.txtEditTip": "Editar", "Common.Views.SaveAsDlg.textLoading": "Cargando", @@ -400,7 +596,7 @@ "PE.Controllers.Main.errorDefaultMessage": "Código de error: %1", "PE.Controllers.Main.errorEditingDownloadas": "Se produjo un error durante el trabajo con el documento.
Use la opción 'Descargar como...' para guardar la copia de seguridad de este archivo en el disco duro de su computadora.", "PE.Controllers.Main.errorEditingSaveas": "Se produjo un error durante el trabajo con el documento.
Use la opción 'Guardar como...' para guardar la copia de seguridad de este archivo en el disco duro de su computadora.", - "PE.Controllers.Main.errorEmailClient": "No se pudo encontrar ningun cliente de email", + "PE.Controllers.Main.errorEmailClient": "No se pudo encontrar ningun cliente de correo", "PE.Controllers.Main.errorFilePassProtect": "El archivo está protegido por una contraseña y no puede ser abierto.", "PE.Controllers.Main.errorFileSizeExceed": "El tamaño del archivo supera la configuración del servidor.
Póngase en contacto con el administrador del servidor para obtener más detalles. ", "PE.Controllers.Main.errorForceSave": "Ha ocurrido un error mientras guardaba el archivo. Por favor use la opción \"Descargar\" para guardar el archivo en el disco duro de su ordenador o inténtelo de nuevo más tarde.", @@ -469,6 +665,7 @@ "PE.Controllers.Main.textLongName": "Escriba un nombre que tenga menos de 128 caracteres.", "PE.Controllers.Main.textNoLicenseTitle": "Se ha alcanzado el límite de licencias", "PE.Controllers.Main.textPaidFeature": "Función de pago", + "PE.Controllers.Main.textReconnect": "Se ha restablecido la conexión", "PE.Controllers.Main.textRemember": "Recordar mi elección para todos los archivos", "PE.Controllers.Main.textRenameError": "El nombre de usuario no debe estar vacío.", "PE.Controllers.Main.textRenameLabel": "Escriba un nombre que se utilizará para la colaboración", @@ -750,6 +947,7 @@ "PE.Controllers.Main.warnNoLicense": "Usted ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización.
Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.", "PE.Controllers.Main.warnNoLicenseUsers": "Usted ha alcanzado el límite de usuarios para los editores de %1. Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.", "PE.Controllers.Main.warnProcessRightsChange": "El derecho de edición del archivo es denegado.", + "PE.Controllers.Statusbar.textDisconnect": "Se ha perdido la conexión
Intentando conectar. Compruebe la configuración de la conexión.", "PE.Controllers.Statusbar.zoomText": "Zoom {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "El tipo de letra que usted va a guardar no está disponible en este dispositivo.
El estilo de letra se mostrará usando uno de los tipos de letra del dispositivo, el tipo de letra guardado va a usarse cuando esté disponible.
¿Desea continuar?", "PE.Controllers.Toolbar.textAccent": "Acentos", @@ -1086,6 +1284,29 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Dseda", "PE.Controllers.Viewport.textFitPage": "Ajustar a la diapositiva", "PE.Controllers.Viewport.textFitWidth": "Ajustar al ancho", + "PE.Views.Animation.strDelay": "Retraso", + "PE.Views.Animation.strDuration": "Duración ", + "PE.Views.Animation.strRepeat": "Repetir", + "PE.Views.Animation.strRewind": "Rebobinar", + "PE.Views.Animation.strStart": "Iniciar", + "PE.Views.Animation.strTrigger": "Desencadenador", + "PE.Views.Animation.textMoreEffects": "Mostrar más efectos", + "PE.Views.Animation.textMoveEarlier": "Mover antes", + "PE.Views.Animation.textMoveLater": "Mover después", + "PE.Views.Animation.textMultiple": "Múltiple", + "PE.Views.Animation.textNone": "Ninguno", + "PE.Views.Animation.textOnClickOf": "Al hacer clic con", + "PE.Views.Animation.textOnClickSequence": "Secuencia de clics", + "PE.Views.Animation.textStartAfterPrevious": "Después de la anterior", + "PE.Views.Animation.textStartOnClick": "Al hacer clic", + "PE.Views.Animation.textStartWithPrevious": "Con la anterior", + "PE.Views.Animation.txtAddEffect": "Agregar animación", + "PE.Views.Animation.txtAnimationPane": "Panel de animación", + "PE.Views.Animation.txtParameters": "Parámetros", + "PE.Views.Animation.txtPreview": "Vista previa", + "PE.Views.Animation.txtSec": "S", + "PE.Views.AnimationDialog.textPreviewEffect": "Vista previa del efecto", + "PE.Views.AnimationDialog.textTitle": "Más efectos", "PE.Views.ChartSettings.textAdvanced": "Mostrar ajustes avanzados", "PE.Views.ChartSettings.textChartType": "Cambiar tipo de gráfico", "PE.Views.ChartSettings.textEditData": "Editar datos", @@ -1165,6 +1386,7 @@ "PE.Views.DocumentHolder.textCut": "Cortar", "PE.Views.DocumentHolder.textDistributeCols": "Distribuir columnas", "PE.Views.DocumentHolder.textDistributeRows": "Distribuir filas", + "PE.Views.DocumentHolder.textEditPoints": "Modificar puntos", "PE.Views.DocumentHolder.textFlipH": "Voltear horizontalmente", "PE.Views.DocumentHolder.textFlipV": "Voltear verticalmente", "PE.Views.DocumentHolder.textFromFile": "De archivo", @@ -1249,6 +1471,8 @@ "PE.Views.DocumentHolder.txtLimitUnder": "Límite debajo del texto", "PE.Views.DocumentHolder.txtMatchBrackets": "Coincidir corchetes con el alto de los argumentos", "PE.Views.DocumentHolder.txtMatrixAlign": "Alineación de la matriz", + "PE.Views.DocumentHolder.txtMoveSlidesToEnd": "Desplazar la diapositiva al final", + "PE.Views.DocumentHolder.txtMoveSlidesToStart": "Desplazar la diapositiva al principio", "PE.Views.DocumentHolder.txtNewSlide": "Diapositiva nueva", "PE.Views.DocumentHolder.txtOverbar": "Barra sobre texto", "PE.Views.DocumentHolder.txtPasteDestFormat": "Use el tema de destino", @@ -1434,6 +1658,7 @@ "PE.Views.ImageSettings.textCrop": "Recortar", "PE.Views.ImageSettings.textCropFill": "Relleno", "PE.Views.ImageSettings.textCropFit": "Adaptar", + "PE.Views.ImageSettings.textCropToShape": "Recortar a la forma", "PE.Views.ImageSettings.textEdit": "Editar", "PE.Views.ImageSettings.textEditObject": "Editar objeto", "PE.Views.ImageSettings.textFitSlide": "Ajustar a la diapositiva", @@ -1448,6 +1673,7 @@ "PE.Views.ImageSettings.textHintFlipV": "Volteo Vertical", "PE.Views.ImageSettings.textInsert": "Reemplazar imagen", "PE.Views.ImageSettings.textOriginalSize": "Tamaño actual", + "PE.Views.ImageSettings.textRecentlyUsed": "Usados recientemente", "PE.Views.ImageSettings.textRotate90": "Girar 90°", "PE.Views.ImageSettings.textRotation": "Rotación", "PE.Views.ImageSettings.textSize": "Tamaño", @@ -1489,7 +1715,7 @@ "PE.Views.ParagraphSettings.textAt": "en", "PE.Views.ParagraphSettings.textAtLeast": "Por lo menos", "PE.Views.ParagraphSettings.textAuto": "Múltiple", - "PE.Views.ParagraphSettings.textExact": "Exacto", + "PE.Views.ParagraphSettings.textExact": "Exactamente", "PE.Views.ParagraphSettings.txtAutoText": "Auto", "PE.Views.ParagraphSettingsAdvanced.noTabs": "Las pestañas especificadas aparecerán en este campo", "PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Mayúsculas", @@ -1569,6 +1795,7 @@ "PE.Views.ShapeSettings.textPatternFill": "Patrón", "PE.Views.ShapeSettings.textPosition": "Posición", "PE.Views.ShapeSettings.textRadial": "Radial", + "PE.Views.ShapeSettings.textRecentlyUsed": "Usados recientemente", "PE.Views.ShapeSettings.textRotate90": "Girar 90°", "PE.Views.ShapeSettings.textRotation": "Rotación", "PE.Views.ShapeSettings.textSelectImage": "Seleccionar imagen", @@ -1885,6 +2112,7 @@ "PE.Views.Toolbar.textColumnsTwo": "Dos columnas", "PE.Views.Toolbar.textItalic": "Cursiva", "PE.Views.Toolbar.textListSettings": "Ajustes de lista", + "PE.Views.Toolbar.textRecentlyUsed": "Usados recientemente", "PE.Views.Toolbar.textShapeAlignBottom": "Alinear en la parte inferior", "PE.Views.Toolbar.textShapeAlignCenter": "Alinear al centro", "PE.Views.Toolbar.textShapeAlignLeft": "Alinear a la izquierda", @@ -1898,12 +2126,14 @@ "PE.Views.Toolbar.textStrikeout": "Tachado", "PE.Views.Toolbar.textSubscript": "Subíndice", "PE.Views.Toolbar.textSuperscript": "Sobreíndice", + "PE.Views.Toolbar.textTabAnimation": "Animación", "PE.Views.Toolbar.textTabCollaboration": "Colaboración", "PE.Views.Toolbar.textTabFile": "Archivo", "PE.Views.Toolbar.textTabHome": "Inicio", "PE.Views.Toolbar.textTabInsert": "Insertar", "PE.Views.Toolbar.textTabProtect": "Protección", "PE.Views.Toolbar.textTabTransitions": "Transiciones", + "PE.Views.Toolbar.textTabView": "Vista", "PE.Views.Toolbar.textTitleError": "Error", "PE.Views.Toolbar.textUnderline": "Subrayar", "PE.Views.Toolbar.tipAddSlide": "Añadir diapositiva", @@ -1957,6 +2187,7 @@ "PE.Views.Toolbar.tipViewSettings": "Mostrar ajustes", "PE.Views.Toolbar.txtDistribHor": "Distribuir horizontalmente", "PE.Views.Toolbar.txtDistribVert": "Distribuir verticalmente", + "PE.Views.Toolbar.txtDuplicateSlide": "Duplicar diapositiva", "PE.Views.Toolbar.txtGroup": "Agrupar", "PE.Views.Toolbar.txtObjectsAlign": "Alinear objetos seleccionados", "PE.Views.Toolbar.txtScheme1": "Oficina", @@ -2018,5 +2249,13 @@ "PE.Views.Transitions.txtApplyToAll": "Aplicar a todas las diapositivas", "PE.Views.Transitions.txtParameters": "Parámetros", "PE.Views.Transitions.txtPreview": "Vista previa", - "PE.Views.Transitions.txtSec": "S" + "PE.Views.Transitions.txtSec": "S", + "PE.Views.ViewTab.textAlwaysShowToolbar": "Mostrar siempre la barra de herramientas", + "PE.Views.ViewTab.textFitToSlide": "Ajustar a la diapositiva", + "PE.Views.ViewTab.textFitToWidth": "Ajustar al ancho", + "PE.Views.ViewTab.textInterfaceTheme": "Tema del interfaz", + "PE.Views.ViewTab.textNotes": "Notas", + "PE.Views.ViewTab.textRulers": "Reglas", + "PE.Views.ViewTab.textStatusBar": "Barra de estado", + "PE.Views.ViewTab.textZoom": "Zoom" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/fr.json b/apps/presentationeditor/main/locale/fr.json index 2c4d28c66..58bf7458a 100644 --- a/apps/presentationeditor/main/locale/fr.json +++ b/apps/presentationeditor/main/locale/fr.json @@ -47,6 +47,195 @@ "Common.define.chartData.textScatterSmoothMarker": "disperser avec des lignes lisses et marqueurs", "Common.define.chartData.textStock": "Boursier", "Common.define.chartData.textSurface": "Surface", + "Common.define.effectData.textAcross": "Horizontalement", + "Common.define.effectData.textAppear": "Apparaître", + "Common.define.effectData.textArcDown": "Arc vers le bas", + "Common.define.effectData.textArcLeft": "Arc à gauche", + "Common.define.effectData.textArcRight": "Arc à droite", + "Common.define.effectData.textArcUp": "Arc vers le haut", + "Common.define.effectData.textBasic": "Simple", + "Common.define.effectData.textBasicSwivel": "Rotation de base", + "Common.define.effectData.textBasicZoom": "Zoom simple", + "Common.define.effectData.textBean": "Haricot", + "Common.define.effectData.textBlinds": "Stores", + "Common.define.effectData.textBlink": "Clignoter", + "Common.define.effectData.textBoldFlash": "Flash marqué", + "Common.define.effectData.textBoldReveal": "Faire ressortir le gras", + "Common.define.effectData.textBoomerang": "Boomerang", + "Common.define.effectData.textBounce": "Rebondir", + "Common.define.effectData.textBounceLeft": "Rebondir à gauche", + "Common.define.effectData.textBounceRight": "Rebondir à droite", + "Common.define.effectData.textBox": "Carré", + "Common.define.effectData.textBrushColor": "Couleur de pinceau", + "Common.define.effectData.textCenterRevolve": "Rotation au centre", + "Common.define.effectData.textCheckerboard": "Damier", + "Common.define.effectData.textCircle": "Cercle", + "Common.define.effectData.textCollapse": "Réduire", + "Common.define.effectData.textColorPulse": "Impulsion couleur", + "Common.define.effectData.textComplementaryColor": "Couleur complémentaire", + "Common.define.effectData.textComplementaryColor2": "Couleur complémentaire 2", + "Common.define.effectData.textCompress": "Compresser", + "Common.define.effectData.textContrast": "Contraste", + "Common.define.effectData.textContrastingColor": "Couleur de contraste", + "Common.define.effectData.textCredits": "Crédits", + "Common.define.effectData.textCrescentMoon": "Croissant de lune", + "Common.define.effectData.textCurveDown": "Courbe vers le bas", + "Common.define.effectData.textCurvedSquare": "Carré courbé", + "Common.define.effectData.textCurvedX": "X courbé", + "Common.define.effectData.textCurvyLeft": "Gauche courbée", + "Common.define.effectData.textCurvyRight": "Droite courbée", + "Common.define.effectData.textCurvyStar": "Étoile courbée", + "Common.define.effectData.textCustomPath": "Chemin personnalisé", + "Common.define.effectData.textCuverUp": "Courbe vers le haut", + "Common.define.effectData.textDarken": "Assombrir", + "Common.define.effectData.textDecayingWave": "Vague tombante", + "Common.define.effectData.textDesaturate": "Désaturer", + "Common.define.effectData.textDiagonalDownRight": "Diagonale bas à droite", + "Common.define.effectData.textDiagonalUpRight": "Diagonal haut à droite", + "Common.define.effectData.textDiamond": "Losange", + "Common.define.effectData.textDisappear": "Disparaître", + "Common.define.effectData.textDissolveIn": "Dissolution interne", + "Common.define.effectData.textDissolveOut": "Dissolution externe", + "Common.define.effectData.textDown": "Bas", + "Common.define.effectData.textDrop": "Déplacer", + "Common.define.effectData.textEmphasis": "Effet d’accentuation", + "Common.define.effectData.textEntrance": "Effet d’entrée", + "Common.define.effectData.textEqualTriangle": "Triangle équilatéral", + "Common.define.effectData.textExciting": "Captivant", + "Common.define.effectData.textExit": "Effet de sortie", + "Common.define.effectData.textExpand": "Développer", + "Common.define.effectData.textFade": "Fondu", + "Common.define.effectData.textFigureFour": "Figure quatre 8", + "Common.define.effectData.textFillColor": "Couleur de remplissage", + "Common.define.effectData.textFlip": "Retourner", + "Common.define.effectData.textFloat": "Flottant", + "Common.define.effectData.textFloatDown": "Flottant vers le bas", + "Common.define.effectData.textFloatIn": "Flottant entrant", + "Common.define.effectData.textFloatOut": "Flottant sortant", + "Common.define.effectData.textFloatUp": "Flottant vers le haut", + "Common.define.effectData.textFlyIn": "Passage vers l’intérieur", + "Common.define.effectData.textFlyOut": "Passage vers l’extérieur", + "Common.define.effectData.textFontColor": "Couleur de police", + "Common.define.effectData.textFootball": "Football", + "Common.define.effectData.textFromBottom": "À partir du bas", + "Common.define.effectData.textFromBottomLeft": "À partir du coin inférieur gauche", + "Common.define.effectData.textFromBottomRight": "À partir du coin inférieur droit", + "Common.define.effectData.textFromLeft": "À partir de la gauche", + "Common.define.effectData.textFromRight": "À partir de la droite", + "Common.define.effectData.textFromTop": "À partir du haut", + "Common.define.effectData.textFromTopLeft": "À partir du coin supérieur gauche", + "Common.define.effectData.textFromTopRight": "À partir du coin supérieur droit", + "Common.define.effectData.textFunnel": "Entonnoir", + "Common.define.effectData.textGrowShrink": "Agrandir/Rétrécir", + "Common.define.effectData.textGrowTurn": "Agrandir et tourner", + "Common.define.effectData.textGrowWithColor": "Agrandir avec de la couleur", + "Common.define.effectData.textHeart": "Coeur", + "Common.define.effectData.textHeartbeat": "Pulsation", + "Common.define.effectData.textHexagon": "Hexagone", + "Common.define.effectData.textHorizontal": "Horizontal", + "Common.define.effectData.textHorizontalFigure": "Figure 8 horizontal", + "Common.define.effectData.textHorizontalIn": "Horizontal intérieur", + "Common.define.effectData.textHorizontalOut": "Horizontal extérieur", + "Common.define.effectData.textIn": "Vers l’intérieur", + "Common.define.effectData.textInFromScreenCenter": "Avant depuis le centre de l’écran", + "Common.define.effectData.textInSlightly": "Avant léger", + "Common.define.effectData.textInToScreenCenter": "Avant vers le centre de l’écran", + "Common.define.effectData.textInvertedSquare": "Carré inversé", + "Common.define.effectData.textInvertedTriangle": "Triangle inversé", + "Common.define.effectData.textLeft": "Gauche", + "Common.define.effectData.textLeftDown": "Gauche bas", + "Common.define.effectData.textLeftUp": "Gauche haut", + "Common.define.effectData.textLighten": "Éclaircir", + "Common.define.effectData.textLineColor": "Couleur du trait", + "Common.define.effectData.textLinesCurves": "Lignes сourbes", + "Common.define.effectData.textLoopDeLoop": "Boucle", + "Common.define.effectData.textModerate": "Modérer", + "Common.define.effectData.textNeutron": "Neutron", + "Common.define.effectData.textObjectCenter": "Centre de l’objet", + "Common.define.effectData.textObjectColor": "Couleur de l’objet", + "Common.define.effectData.textOctagon": "Octogone", + "Common.define.effectData.textOut": "Arrière", + "Common.define.effectData.textOutFromScreenBottom": "Arrière depuis le bas de l’écran", + "Common.define.effectData.textOutSlightly": "Arrière léger", + "Common.define.effectData.textParallelogram": "Parallélogramme", + "Common.define.effectData.textPath": "Trajectoire du mouvement", + "Common.define.effectData.textPeanut": "Cacahuète", + "Common.define.effectData.textPeekIn": "Insertion furtive", + "Common.define.effectData.textPeekOut": "Sortie furtive", + "Common.define.effectData.textPentagon": "Pentagone", + "Common.define.effectData.textPinwheel": "Moulin à vent", + "Common.define.effectData.textPlus": "Plus", + "Common.define.effectData.textPointStar": "Étoile", + "Common.define.effectData.textPointStar4": "Étoile à 4 branches", + "Common.define.effectData.textPointStar5": "Étoile à 5 branches", + "Common.define.effectData.textPointStar6": "Étoile à 6 branches", + "Common.define.effectData.textPointStar8": "Étoile à 8 branches", + "Common.define.effectData.textPulse": "Pulsation", + "Common.define.effectData.textRandomBars": "Barres aléatoires", + "Common.define.effectData.textRight": "À droite", + "Common.define.effectData.textRightDown": " Droit bas", + "Common.define.effectData.textRightTriangle": "Triangle rectangle", + "Common.define.effectData.textRightUp": "Droit haut", + "Common.define.effectData.textRiseUp": "Élever", + "Common.define.effectData.textSCurve1": "Courbe S 1", + "Common.define.effectData.textSCurve2": "Courbe S 2", + "Common.define.effectData.textShape": "Forme", + "Common.define.effectData.textShimmer": "Miroiter", + "Common.define.effectData.textShrinkTurn": "Rétrécir et faire pivoter", + "Common.define.effectData.textSineWave": "Vague sinusoïdale", + "Common.define.effectData.textSinkDown": "Chute", + "Common.define.effectData.textSlideCenter": "Centre de la diapositive", + "Common.define.effectData.textSpecial": "Spécial", + "Common.define.effectData.textSpin": "Rotation", + "Common.define.effectData.textSpinner": "Tourbillon", + "Common.define.effectData.textSpiralIn": "Spirale vers l'intérieur", + "Common.define.effectData.textSpiralLeft": "Spirale à gauche", + "Common.define.effectData.textSpiralOut": "Spirale vers l'extérieur", + "Common.define.effectData.textSpiralRight": "Spirale à droite", + "Common.define.effectData.textSplit": "Fractionner", + "Common.define.effectData.textSpoke1": "1 rayon", + "Common.define.effectData.textSpoke2": "2 rayons", + "Common.define.effectData.textSpoke3": "3 rayons", + "Common.define.effectData.textSpoke4": "4 rayons", + "Common.define.effectData.textSpoke8": "8 rayons", + "Common.define.effectData.textSpring": "Ressort", + "Common.define.effectData.textSquare": "Carré", + "Common.define.effectData.textStairsDown": "Escalier descendant", + "Common.define.effectData.textStretch": "Étirer", + "Common.define.effectData.textStrips": "Bandes", + "Common.define.effectData.textSubtle": "Discret", + "Common.define.effectData.textSwivel": "Pivotant", + "Common.define.effectData.textSwoosh": "Swoosh", + "Common.define.effectData.textTeardrop": "Larme ", + "Common.define.effectData.textTeeter": "Chanceler", + "Common.define.effectData.textToBottom": "Vers le bas", + "Common.define.effectData.textToBottomLeft": "Vers le coin inférieur gauche", + "Common.define.effectData.textToBottomRight": "Vers le coin inférieur droit", + "Common.define.effectData.textToFromScreenBottom": "Arrière vers le bas de l’écran", + "Common.define.effectData.textToLeft": "Vers la gauche", + "Common.define.effectData.textToRight": "Vers la droite", + "Common.define.effectData.textToTop": "Vers le haut", + "Common.define.effectData.textToTopLeft": "Vers le coin supérieur gauche", + "Common.define.effectData.textToTopRight": "Vers le coins supérieur droit", + "Common.define.effectData.textTransparency": "Transparence", + "Common.define.effectData.textTrapezoid": "Trapèze", + "Common.define.effectData.textTurnDown": "Tourner vers le bas", + "Common.define.effectData.textTurnDownRight": "Tourner vers le bas à droite", + "Common.define.effectData.textTurnUp": "Tourner vers le haut", + "Common.define.effectData.textTurnUpRight": "Tourner vers le haut à droite", + "Common.define.effectData.textUnderline": "Souligner", + "Common.define.effectData.textUp": "En haut", + "Common.define.effectData.textVertical": "Vertical", + "Common.define.effectData.textVerticalFigure": "Figure 8 vertical", + "Common.define.effectData.textVerticalIn": "Verticalement vers l’avant", + "Common.define.effectData.textVerticalOut": "Verticalement vers l’arrière", + "Common.define.effectData.textWave": "Onde", + "Common.define.effectData.textWedge": "Coin", + "Common.define.effectData.textWheel": "Roue", + "Common.define.effectData.textWhip": "Fouet", + "Common.define.effectData.textWipe": "Effacer", + "Common.define.effectData.textZigzag": "Zigzag", + "Common.define.effectData.textZoom": "Zoom", "Common.Translation.warnFileLocked": "Ce fichier a été modifié avec une autre application. Vous pouvez continuer à le modifier et l'enregistrer comme une copie.", "Common.Translation.warnFileLockedBtnEdit": "Créer une copie", "Common.Translation.warnFileLockedBtnView": "Ouvrir pour visualisation", @@ -61,6 +250,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Nouveau", "Common.UI.ExtendedColorDialog.textRGBErr": "La valeur saisie est incorrecte.
Entrez une valeur numérique de 0 à 255.", "Common.UI.HSBColorPicker.textNoColor": "Pas de couleur", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Masquer le mot de passe", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Afficher le mot de passe", "Common.UI.SearchDialog.textHighlight": "Surligner les résultats", "Common.UI.SearchDialog.textMatchCase": "Сas sensible", "Common.UI.SearchDialog.textReplaceDef": "Saisissez le texte de remplacement", @@ -104,6 +295,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Listes à puces automatiques", "Common.Views.AutoCorrectDialog.textBy": "Par", "Common.Views.AutoCorrectDialog.textDelete": "Supprimer", + "Common.Views.AutoCorrectDialog.textFLCells": "Mettre la première lettre des cellules du tableau en majuscule", "Common.Views.AutoCorrectDialog.textFLSentence": "Majuscule en début de phrase", "Common.Views.AutoCorrectDialog.textHyperlink": "Adresses Internet et réseau avec des liens hypertextes", "Common.Views.AutoCorrectDialog.textHyphens": "Traits d’union (--) par un tiret (—)", @@ -129,12 +321,14 @@ "Common.Views.Comments.mniAuthorDesc": "Auteur de Z à A", "Common.Views.Comments.mniDateAsc": "Plus ancien", "Common.Views.Comments.mniDateDesc": "Plus récent", + "Common.Views.Comments.mniFilterGroups": "Filtrer par groupe", "Common.Views.Comments.mniPositionAsc": "Du haut", "Common.Views.Comments.mniPositionDesc": "Du bas", "Common.Views.Comments.textAdd": "Ajouter", "Common.Views.Comments.textAddComment": "Ajouter", "Common.Views.Comments.textAddCommentToDoc": "Ajouter un commentaire au document", "Common.Views.Comments.textAddReply": "Ajouter une réponse", + "Common.Views.Comments.textAll": "Tout", "Common.Views.Comments.textAnonym": "Invité", "Common.Views.Comments.textCancel": "Annuler", "Common.Views.Comments.textClose": "Fermer", @@ -148,6 +342,7 @@ "Common.Views.Comments.textResolve": "Résoudre", "Common.Views.Comments.textResolved": "Résolu", "Common.Views.Comments.textSort": "Trier les commentaires", + "Common.Views.Comments.textViewResolved": "Vous n'avez pas la permission de rouvrir le commentaire", "Common.Views.CopyWarningDialog.textDontShow": "Ne plus afficher ce message", "Common.Views.CopyWarningDialog.textMsg": "Vous pouvez réaliser les actions de copier, couper et coller en utilisant les boutons de la barre d'outils et à l'aide du menu contextuel à partir de cet onglet uniquement.

Pour copier ou coller de / vers les applications en dehors de l'onglet de l'éditeur, utilisez les combinaisons de touches suivantes :", "Common.Views.CopyWarningDialog.textTitle": "Fonctions de Copier, Couper et Coller", @@ -312,6 +507,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Ouvrir à nouveau", "Common.Views.ReviewPopover.textReply": "Répondre", "Common.Views.ReviewPopover.textResolve": "Résoudre", + "Common.Views.ReviewPopover.textViewResolved": "Vous n'avez pas la permission de rouvrir le commentaire", "Common.Views.ReviewPopover.txtDeleteTip": "Supprimer", "Common.Views.ReviewPopover.txtEditTip": "Modifier", "Common.Views.SaveAsDlg.textLoading": "Chargement", @@ -469,6 +665,7 @@ "PE.Controllers.Main.textLongName": "Entrez un nom qui a moins de 128 caractères.", "PE.Controllers.Main.textNoLicenseTitle": "La limite de la licence est atteinte", "PE.Controllers.Main.textPaidFeature": "Fonction payante", + "PE.Controllers.Main.textReconnect": "La connexion est restaurée", "PE.Controllers.Main.textRemember": "Se souvenir de mon choix", "PE.Controllers.Main.textRenameError": "Le nom d'utilisateur ne peut être vide.", "PE.Controllers.Main.textRenameLabel": "Entrez un nom à utiliser pour la collaboration", @@ -750,6 +947,7 @@ "PE.Controllers.Main.warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert à la lecture seulement.
Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", "PE.Controllers.Main.warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", "PE.Controllers.Main.warnProcessRightsChange": "Le droit d'édition du fichier vous a été refusé.", + "PE.Controllers.Statusbar.textDisconnect": "La connexion est perdue
Tentative de connexion. Veuillez vérifier les paramètres de connexion.", "PE.Controllers.Statusbar.zoomText": "Zoom {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "La police que vous allez enregistrer n'est pas disponible sur l'appareil actuel.
Le style du texte sera affiché à l'aide de l'une des polices de système, la police sauvée sera utilisée lorsqu'elle est disponible.
Voulez-vous continuer?", "PE.Controllers.Toolbar.textAccent": "Types d'accentuation", @@ -1086,6 +1284,29 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Zêta", "PE.Controllers.Viewport.textFitPage": "Ajuster à la diapositive", "PE.Controllers.Viewport.textFitWidth": "Ajuster à la largeur", + "PE.Views.Animation.strDelay": "Retard", + "PE.Views.Animation.strDuration": "Durée", + "PE.Views.Animation.strRepeat": "Répéter", + "PE.Views.Animation.strRewind": "Rembobiner", + "PE.Views.Animation.strStart": "Démarrer", + "PE.Views.Animation.strTrigger": "Déclencheur", + "PE.Views.Animation.textMoreEffects": "Afficher plus d'effets", + "PE.Views.Animation.textMoveEarlier": "Déplacer avant", + "PE.Views.Animation.textMoveLater": "Déplacer après", + "PE.Views.Animation.textMultiple": "Multiple ", + "PE.Views.Animation.textNone": "Aucun", + "PE.Views.Animation.textOnClickOf": "Au clic sur", + "PE.Views.Animation.textOnClickSequence": "Séquence de clics", + "PE.Views.Animation.textStartAfterPrevious": "Après le précédent", + "PE.Views.Animation.textStartOnClick": "Au clic", + "PE.Views.Animation.textStartWithPrevious": "Avec la précédente", + "PE.Views.Animation.txtAddEffect": "Ajouter une animation", + "PE.Views.Animation.txtAnimationPane": "Volet Animation", + "PE.Views.Animation.txtParameters": "Paramètres", + "PE.Views.Animation.txtPreview": "Aperçu", + "PE.Views.Animation.txtSec": "s", + "PE.Views.AnimationDialog.textPreviewEffect": "Effet d'aperçu", + "PE.Views.AnimationDialog.textTitle": "Autres effets", "PE.Views.ChartSettings.textAdvanced": "Afficher les paramètres avancés", "PE.Views.ChartSettings.textChartType": "Modifier le type de graphique", "PE.Views.ChartSettings.textEditData": "Modifier les données", @@ -1165,6 +1386,7 @@ "PE.Views.DocumentHolder.textCut": "Couper", "PE.Views.DocumentHolder.textDistributeCols": "Distribuer les colonnes", "PE.Views.DocumentHolder.textDistributeRows": "Distribuer les lignes", + "PE.Views.DocumentHolder.textEditPoints": "Modifier les points", "PE.Views.DocumentHolder.textFlipH": "Retourner horizontalement", "PE.Views.DocumentHolder.textFlipV": "Retourner verticalement", "PE.Views.DocumentHolder.textFromFile": "D'un fichier", @@ -1249,6 +1471,8 @@ "PE.Views.DocumentHolder.txtLimitUnder": "Limite en dessous du texte", "PE.Views.DocumentHolder.txtMatchBrackets": "Egaler crochets à la hauteur de l'argument", "PE.Views.DocumentHolder.txtMatrixAlign": "Alignement de la matrice", + "PE.Views.DocumentHolder.txtMoveSlidesToEnd": "Déplacer la diapositive vers la fin", + "PE.Views.DocumentHolder.txtMoveSlidesToStart": "Déplacer la diapositive au début", "PE.Views.DocumentHolder.txtNewSlide": "Nouvelle diapositive", "PE.Views.DocumentHolder.txtOverbar": "Barre au-dessus d'un texte", "PE.Views.DocumentHolder.txtPasteDestFormat": "Utiliser le thème de destination", @@ -1434,6 +1658,7 @@ "PE.Views.ImageSettings.textCrop": "Rogner", "PE.Views.ImageSettings.textCropFill": "Remplissage", "PE.Views.ImageSettings.textCropFit": "Ajuster", + "PE.Views.ImageSettings.textCropToShape": "Rogner à la forme", "PE.Views.ImageSettings.textEdit": "Modifier", "PE.Views.ImageSettings.textEditObject": "Modifier l'objet", "PE.Views.ImageSettings.textFitSlide": "Ajuster à la diapositive", @@ -1448,6 +1673,7 @@ "PE.Views.ImageSettings.textHintFlipV": "Retourner verticalement", "PE.Views.ImageSettings.textInsert": "Remplacer l’image", "PE.Views.ImageSettings.textOriginalSize": "Taille actuelle", + "PE.Views.ImageSettings.textRecentlyUsed": "Récemment utilisé", "PE.Views.ImageSettings.textRotate90": "Faire pivoter de 90°", "PE.Views.ImageSettings.textRotation": "Rotation", "PE.Views.ImageSettings.textSize": "Taille", @@ -1569,6 +1795,7 @@ "PE.Views.ShapeSettings.textPatternFill": "Modèle", "PE.Views.ShapeSettings.textPosition": "Position", "PE.Views.ShapeSettings.textRadial": "Radial", + "PE.Views.ShapeSettings.textRecentlyUsed": "Récemment utilisé", "PE.Views.ShapeSettings.textRotate90": "Faire pivoter de 90°", "PE.Views.ShapeSettings.textRotation": "Rotation", "PE.Views.ShapeSettings.textSelectImage": "Sélectionner l'image", @@ -1885,6 +2112,7 @@ "PE.Views.Toolbar.textColumnsTwo": "Deux colonnes", "PE.Views.Toolbar.textItalic": "Italique", "PE.Views.Toolbar.textListSettings": "Paramètres de la liste", + "PE.Views.Toolbar.textRecentlyUsed": "Récemment utilisé", "PE.Views.Toolbar.textShapeAlignBottom": "Aligner en bas", "PE.Views.Toolbar.textShapeAlignCenter": "Aligner au centre", "PE.Views.Toolbar.textShapeAlignLeft": "Aligner à gauche", @@ -1898,12 +2126,14 @@ "PE.Views.Toolbar.textStrikeout": "Barré", "PE.Views.Toolbar.textSubscript": "Indice", "PE.Views.Toolbar.textSuperscript": "Exposant", + "PE.Views.Toolbar.textTabAnimation": "Animation", "PE.Views.Toolbar.textTabCollaboration": "Collaboration", "PE.Views.Toolbar.textTabFile": "Fichier", "PE.Views.Toolbar.textTabHome": "Accueil", "PE.Views.Toolbar.textTabInsert": "Insertion", "PE.Views.Toolbar.textTabProtect": "Protection", "PE.Views.Toolbar.textTabTransitions": "Transitions", + "PE.Views.Toolbar.textTabView": "Afficher", "PE.Views.Toolbar.textTitleError": "Erreur", "PE.Views.Toolbar.textUnderline": "Souligné", "PE.Views.Toolbar.tipAddSlide": "Ajouter diapositive", @@ -1957,6 +2187,7 @@ "PE.Views.Toolbar.tipViewSettings": "Paramètres d'affichage", "PE.Views.Toolbar.txtDistribHor": "Distribuer horizontalement", "PE.Views.Toolbar.txtDistribVert": "Distribuer verticalement", + "PE.Views.Toolbar.txtDuplicateSlide": "Dupliquer la diapositive", "PE.Views.Toolbar.txtGroup": "Grouper", "PE.Views.Toolbar.txtObjectsAlign": "Aligner les objets sélectionnés", "PE.Views.Toolbar.txtScheme1": "Office", @@ -2018,5 +2249,13 @@ "PE.Views.Transitions.txtApplyToAll": "Appliquer à toutes les diapositives", "PE.Views.Transitions.txtParameters": "Paramètres", "PE.Views.Transitions.txtPreview": "Aperçu", - "PE.Views.Transitions.txtSec": "s" + "PE.Views.Transitions.txtSec": "s", + "PE.Views.ViewTab.textAlwaysShowToolbar": "Toujours afficher la barre d'outils", + "PE.Views.ViewTab.textFitToSlide": "Ajuster à la diapositive", + "PE.Views.ViewTab.textFitToWidth": "Ajuster à la largeur", + "PE.Views.ViewTab.textInterfaceTheme": "Thème d’interface", + "PE.Views.ViewTab.textNotes": "Notes", + "PE.Views.ViewTab.textRulers": "Règles", + "PE.Views.ViewTab.textStatusBar": "Barre d'état", + "PE.Views.ViewTab.textZoom": "Zoom" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/it.json b/apps/presentationeditor/main/locale/it.json index b58c5b82d..0a287eb6d 100644 --- a/apps/presentationeditor/main/locale/it.json +++ b/apps/presentationeditor/main/locale/it.json @@ -47,6 +47,17 @@ "Common.define.chartData.textScatterSmoothMarker": "Grafico a dispersione con linee e indicatori", "Common.define.chartData.textStock": "Azionario", "Common.define.chartData.textSurface": "Superficie", + "Common.define.effectData.textCollapse": "Riduci", + "Common.define.effectData.textContrast": "Contrasto", + "Common.define.effectData.textExpand": "Espandi", + "Common.define.effectData.textFade": "Dissolvenza", + "Common.define.effectData.textFillColor": "Colore di riempimento", + "Common.define.effectData.textFromBottom": "Dal basso", + "Common.define.effectData.textHeart": "Cuore", + "Common.define.effectData.textHexagon": "Esagono", + "Common.define.effectData.textHorizontal": "Orizzontale", + "Common.define.effectData.textVertical": "Verticale", + "Common.define.effectData.textWave": "Onda", "Common.Translation.warnFileLocked": "Il file è in fase di modifica in un'altra applicazione. Puoi continuare a modificarlo e salvarlo come copia.", "Common.Translation.warnFileLockedBtnEdit": "Crea una copia", "Common.Translation.warnFileLockedBtnView": "‎Aperto per la visualizzazione‎", @@ -1086,6 +1097,9 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "PE.Controllers.Viewport.textFitPage": "Adatta alla diapositiva", "PE.Controllers.Viewport.textFitWidth": "Adatta alla larghezza", + "PE.Views.Animation.strDuration": "Durata", + "PE.Views.Animation.txtParameters": "Parametri", + "PE.Views.Animation.txtPreview": "Anteprima", "PE.Views.ChartSettings.textAdvanced": "Mostra impostazioni avanzate", "PE.Views.ChartSettings.textChartType": "Cambia tipo di grafico", "PE.Views.ChartSettings.textEditData": "Modifica dati", @@ -1448,6 +1462,7 @@ "PE.Views.ImageSettings.textHintFlipV": "Capovolgi verticalmente", "PE.Views.ImageSettings.textInsert": "Sostituisci immagine", "PE.Views.ImageSettings.textOriginalSize": "Dimensione reale", + "PE.Views.ImageSettings.textRecentlyUsed": "Usati di recente", "PE.Views.ImageSettings.textRotate90": "Ruota di 90°", "PE.Views.ImageSettings.textRotation": "Rotazione", "PE.Views.ImageSettings.textSize": "Dimensione", @@ -1569,6 +1584,7 @@ "PE.Views.ShapeSettings.textPatternFill": "Modello", "PE.Views.ShapeSettings.textPosition": "Posizione", "PE.Views.ShapeSettings.textRadial": "Radiale", + "PE.Views.ShapeSettings.textRecentlyUsed": "Usati di recente", "PE.Views.ShapeSettings.textRotate90": "Ruota di 90°", "PE.Views.ShapeSettings.textRotation": "Rotazione", "PE.Views.ShapeSettings.textSelectImage": "Seleziona immagine", @@ -1885,6 +1901,7 @@ "PE.Views.Toolbar.textColumnsTwo": "Due colonne", "PE.Views.Toolbar.textItalic": "Corsivo", "PE.Views.Toolbar.textListSettings": "Impostazioni elenco", + "PE.Views.Toolbar.textRecentlyUsed": "Usati di recente", "PE.Views.Toolbar.textShapeAlignBottom": "Allinea in basso", "PE.Views.Toolbar.textShapeAlignCenter": "Allinea al centro", "PE.Views.Toolbar.textShapeAlignLeft": "Allinea a sinistra", @@ -1904,6 +1921,7 @@ "PE.Views.Toolbar.textTabInsert": "Inserisci", "PE.Views.Toolbar.textTabProtect": "Protezione", "PE.Views.Toolbar.textTabTransitions": "Transizioni", + "PE.Views.Toolbar.textTabView": "Visualizza", "PE.Views.Toolbar.textTitleError": "Errore", "PE.Views.Toolbar.textUnderline": "Sottolineato", "PE.Views.Toolbar.tipAddSlide": "Aggiungi diapositiva", @@ -2018,5 +2036,7 @@ "PE.Views.Transitions.txtApplyToAll": "Applicare a tutte le diapositive", "PE.Views.Transitions.txtParameters": "Parametri", "PE.Views.Transitions.txtPreview": "Anteprima", - "PE.Views.Transitions.txtSec": "s" + "PE.Views.Transitions.txtSec": "s", + "PE.Views.ViewTab.textFitToSlide": "Adatta alla diapositiva", + "PE.Views.ViewTab.textFitToWidth": "Adatta alla larghezza" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ja.json b/apps/presentationeditor/main/locale/ja.json index a0c1c3f0f..d454ffdb1 100644 --- a/apps/presentationeditor/main/locale/ja.json +++ b/apps/presentationeditor/main/locale/ja.json @@ -47,6 +47,8 @@ "Common.define.chartData.textScatterSmoothMarker": "マーカーと平滑線付き散布図", "Common.define.chartData.textStock": "株価チャート", "Common.define.chartData.textSurface": "表面", + "Common.define.effectData.textFade": "フェード", + "Common.define.effectData.textZoom": "ズーム", "Common.Translation.warnFileLocked": "文書が他のアプリで編集されています。編集を続けて、コピーとして保存できます。", "Common.Translation.warnFileLockedBtnEdit": "コピーを作成", "Common.Translation.warnFileLockedBtnView": "見に開く", @@ -61,6 +63,8 @@ "Common.UI.ExtendedColorDialog.textNew": "新しい", "Common.UI.ExtendedColorDialog.textRGBErr": "入力された値が正しくありません。
0〜255の数値を入力してください。", "Common.UI.HSBColorPicker.textNoColor": "色なし", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "パスワードを隠す", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "パスワードを表示する", "Common.UI.SearchDialog.textHighlight": "結果を強調表示", "Common.UI.SearchDialog.textMatchCase": "大文字と小文字の区別", "Common.UI.SearchDialog.textReplaceDef": "代替テキストの挿入", @@ -129,6 +133,7 @@ "Common.Views.Comments.mniAuthorDesc": "ZからAへで作者を表示する", "Common.Views.Comments.mniDateAsc": "最も古い", "Common.Views.Comments.mniDateDesc": "最も新しい", + "Common.Views.Comments.mniFilterGroups": "グループでフィルター", "Common.Views.Comments.mniPositionAsc": "上から", "Common.Views.Comments.mniPositionDesc": "下から", "Common.Views.Comments.textAdd": "追加", @@ -420,7 +425,7 @@ "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "インターネット接続が復旧し、ファイルのバージョンが更新されました。
作業を継続する前に、ファイルをダウンロードするか、内容をコピーして、変更が消えてしまわないように確認してから、ページを再びお読み込みください。", "PE.Controllers.Main.errorUserDrop": "今、ファイルにアクセスすることはできません。", "PE.Controllers.Main.errorUsersExceed": "料金プランによってユーザ数を超過しています。", - "PE.Controllers.Main.errorViewerDisconnect": "接続が接続が失われました。文書を表示が可能ですが、
接続が復元されてページが再ロードされるまで、ダウンロードまたは印刷することはできません。", + "PE.Controllers.Main.errorViewerDisconnect": "接続が失われました。文書の表示は可能ですが、
再度接続されてページが再ロードされるまで、ダウンロードまたは印刷することはできません。", "PE.Controllers.Main.leavePageText": "このプレゼンテーションの保存されていない変更があります。保存するために「このページにとどまる」、「保存」をクリックしてください。全ての保存しない変更をキャンサルするために「このページを離れる」をクリックしてください。", "PE.Controllers.Main.leavePageTextOnClose": "このプレゼンテーションで保存されていない変更はすべて失われます。
\"キャンセル\"をクリックしてから \"保存 \"をクリックすると、変更内容が保存されます。OK \"をクリックすると、保存されていないすべての変更が破棄されます。", "PE.Controllers.Main.loadFontsTextText": "データを読み込んでいます...", @@ -1086,6 +1091,7 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "ゼータ", "PE.Controllers.Viewport.textFitPage": "スライドのサイズに合わせる", "PE.Controllers.Viewport.textFitWidth": "幅に合わせる", + "PE.Views.Animation.txtPreview": "プレビュー", "PE.Views.ChartSettings.textAdvanced": "詳細設定の表示", "PE.Views.ChartSettings.textChartType": "グラフの種類の変更", "PE.Views.ChartSettings.textEditData": "データの編集", @@ -1376,7 +1382,7 @@ "PE.Views.FileMenuPanels.Settings.textDisabled": "無効", "PE.Views.FileMenuPanels.Settings.textForceSave": "中間バージョンの保存", "PE.Views.FileMenuPanels.Settings.textMinute": "1 分ごと", - "PE.Views.FileMenuPanels.Settings.txtAll": "全ての表示", + "PE.Views.FileMenuPanels.Settings.txtAll": "全て表示", "PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "オートコレクト設定", "PE.Views.FileMenuPanels.Settings.txtCacheMode": "既定のキャッシュ モード", "PE.Views.FileMenuPanels.Settings.txtCm": "センチ", @@ -1903,7 +1909,8 @@ "PE.Views.Toolbar.textTabHome": "ホーム", "PE.Views.Toolbar.textTabInsert": "挿入", "PE.Views.Toolbar.textTabProtect": "保護", - "PE.Views.Toolbar.textTabTransitions": "遷移", + "PE.Views.Toolbar.textTabTransitions": "切り替え効果", + "PE.Views.Toolbar.textTabView": "表示", "PE.Views.Toolbar.textTitleError": "エラー", "PE.Views.Toolbar.textUnderline": "下線", "PE.Views.Toolbar.tipAddSlide": "スライドの追加", @@ -2018,5 +2025,6 @@ "PE.Views.Transitions.txtApplyToAll": "全てのスライドに適用する", "PE.Views.Transitions.txtParameters": "パラメーター", "PE.Views.Transitions.txtPreview": "プレビュー", - "PE.Views.Transitions.txtSec": "秒" + "PE.Views.Transitions.txtSec": "秒", + "PE.Views.ViewTab.textZoom": "ズーム" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ro.json b/apps/presentationeditor/main/locale/ro.json index 12803d15e..8579b03b8 100644 --- a/apps/presentationeditor/main/locale/ro.json +++ b/apps/presentationeditor/main/locale/ro.json @@ -47,6 +47,195 @@ "Common.define.chartData.textScatterSmoothMarker": "Diagramă prin puncte cu linii netede și marcatori", "Common.define.chartData.textStock": "Bursiere", "Common.define.chartData.textSurface": "Suprafața", + "Common.define.effectData.textAcross": "În diagonală", + "Common.define.effectData.textAppear": "Apariție", + "Common.define.effectData.textArcDown": "Arcuire în jos", + "Common.define.effectData.textArcLeft": "Arcuire spre stânga", + "Common.define.effectData.textArcRight": "Arcuire spre dreapta", + "Common.define.effectData.textArcUp": "Arcuire în sus", + "Common.define.effectData.textBasic": "De bază", + "Common.define.effectData.textBasicSwivel": "Învârtire simplă", + "Common.define.effectData.textBasicZoom": "Zoom simplu", + "Common.define.effectData.textBean": "Fasole", + "Common.define.effectData.textBlinds": "Jaluzele", + "Common.define.effectData.textBlink": "Clipire", + "Common.define.effectData.textBoldFlash": "Sclipire+aldin", + "Common.define.effectData.textBoldReveal": "Descoperă+aldin", + "Common.define.effectData.textBoomerang": "Bumerang", + "Common.define.effectData.textBounce": "Săritură", + "Common.define.effectData.textBounceLeft": "Săritură spre stânga", + "Common.define.effectData.textBounceRight": "Săritură spre dreapta", + "Common.define.effectData.textBox": "Casetă", + "Common.define.effectData.textBrushColor": "Periere culoare", + "Common.define.effectData.textCenterRevolve": "Rotație centrală", + "Common.define.effectData.textCheckerboard": "Tablă de șah", + "Common.define.effectData.textCircle": "Cerc", + "Common.define.effectData.textCollapse": "Restrângere", + "Common.define.effectData.textColorPulse": "Puls culoare", + "Common.define.effectData.textComplementaryColor": "Culoare complementară", + "Common.define.effectData.textComplementaryColor2": "Culoare complementară 2", + "Common.define.effectData.textCompress": "Comprimare", + "Common.define.effectData.textContrast": "Contrast", + "Common.define.effectData.textContrastingColor": "Culoare de contrast", + "Common.define.effectData.textCredits": "Generic", + "Common.define.effectData.textCrescentMoon": "Lună în creștere", + "Common.define.effectData.textCurveDown": "Curbat în jos", + "Common.define.effectData.textCurvedSquare": "Pătrat curbat", + "Common.define.effectData.textCurvedX": "X curbat", + "Common.define.effectData.textCurvyLeft": "Curbat la stânga", + "Common.define.effectData.textCurvyRight": "Curbat spre dreapta", + "Common.define.effectData.textCurvyStar": "Stea rotunjita", + "Common.define.effectData.textCustomPath": "Cale particularizată", + "Common.define.effectData.textCuverUp": "Curbat în sus", + "Common.define.effectData.textDarken": "Întunecat", + "Common.define.effectData.textDecayingWave": "Val descendent", + "Common.define.effectData.textDesaturate": "Nesaturat", + "Common.define.effectData.textDiagonalDownRight": "În diaginală spre drepta jos", + "Common.define.effectData.textDiagonalUpRight": "În diagonală spre dreapta sus", + "Common.define.effectData.textDiamond": "Romb", + "Common.define.effectData.textDisappear": "Dispariție", + "Common.define.effectData.textDissolveIn": "Dizolvare spre interior", + "Common.define.effectData.textDissolveOut": "Dizolvare spre exterior", + "Common.define.effectData.textDown": "În jos", + "Common.define.effectData.textDrop": "Picătură", + "Common.define.effectData.textEmphasis": "Efect de evidențiere", + "Common.define.effectData.textEntrance": "Efect de intrare", + "Common.define.effectData.textEqualTriangle": "Triunghi echilateral", + "Common.define.effectData.textExciting": "Emoționant", + "Common.define.effectData.textExit": "Efect de ieșire", + "Common.define.effectData.textExpand": "Extindere", + "Common.define.effectData.textFade": "Estompare", + "Common.define.effectData.textFigureFour": "Cifra 8 de patru ori", + "Common.define.effectData.textFillColor": "Culoare de umplere", + "Common.define.effectData.textFlip": "Răsturnare", + "Common.define.effectData.textFloat": "Flotant", + "Common.define.effectData.textFloatDown": "Flotant în jos", + "Common.define.effectData.textFloatIn": "Plutire în interior", + "Common.define.effectData.textFloatOut": "Plutire în exterior", + "Common.define.effectData.textFloatUp": "Flotant în sus", + "Common.define.effectData.textFlyIn": "Zbor înauntru", + "Common.define.effectData.textFlyOut": "Flotant în jos", + "Common.define.effectData.textFontColor": "Culoare font", + "Common.define.effectData.textFootball": "Fotbal", + "Common.define.effectData.textFromBottom": "De jos", + "Common.define.effectData.textFromBottomLeft": "Din stânga jos", + "Common.define.effectData.textFromBottomRight": "Din dreapta jos", + "Common.define.effectData.textFromLeft": "Din stânga", + "Common.define.effectData.textFromRight": "Din dreapta", + "Common.define.effectData.textFromTop": "De sus", + "Common.define.effectData.textFromTopLeft": "Din stânga sus", + "Common.define.effectData.textFromTopRight": "Din dreapta sus", + "Common.define.effectData.textFunnel": "Extrage", + "Common.define.effectData.textGrowShrink": "Creștere/ Micșorare", + "Common.define.effectData.textGrowTurn": "Creștere și întoarcere", + "Common.define.effectData.textGrowWithColor": "Creștere cu culoare", + "Common.define.effectData.textHeart": "Inimă", + "Common.define.effectData.textHeartbeat": "Bătaia inimii", + "Common.define.effectData.textHexagon": "Hexagon", + "Common.define.effectData.textHorizontal": "Orizontală", + "Common.define.effectData.textHorizontalFigure": "Cifra 8 orizontală", + "Common.define.effectData.textHorizontalIn": "Orizontal în interior", + "Common.define.effectData.textHorizontalOut": "Orizontal în exterior", + "Common.define.effectData.textIn": "În interior", + "Common.define.effectData.textInFromScreenCenter": "În interior din centrul ecranului", + "Common.define.effectData.textInSlightly": "Ușor în interior", + "Common.define.effectData.textInToScreenCenter": "În interior către centrul ecranului", + "Common.define.effectData.textInvertedSquare": "Pătrat invers", + "Common.define.effectData.textInvertedTriangle": "Triunghi invers", + "Common.define.effectData.textLeft": "Stânga", + "Common.define.effectData.textLeftDown": "În stânga jos", + "Common.define.effectData.textLeftUp": "În stânga sus", + "Common.define.effectData.textLighten": "Luminare", + "Common.define.effectData.textLineColor": "Culoare linie", + "Common.define.effectData.textLinesCurves": "Linii Curbe", + "Common.define.effectData.textLoopDeLoop": "Bucle", + "Common.define.effectData.textModerate": "Moderat", + "Common.define.effectData.textNeutron": "Neutron", + "Common.define.effectData.textObjectCenter": "Centrul obiectului", + "Common.define.effectData.textObjectColor": "Culoare obiect", + "Common.define.effectData.textOctagon": "Octogon", + "Common.define.effectData.textOut": "În exterior", + "Common.define.effectData.textOutFromScreenBottom": "În exterior din josul ecranului", + "Common.define.effectData.textOutSlightly": "Ușor în exterior", + "Common.define.effectData.textParallelogram": "Paralelogram", + "Common.define.effectData.textPath": "Cale de mișcare", + "Common.define.effectData.textPeanut": "Alună", + "Common.define.effectData.textPeekIn": "Glisare rapidă spre interior", + "Common.define.effectData.textPeekOut": "Glisare rapidă spre exterior", + "Common.define.effectData.textPentagon": "Pentagon", + "Common.define.effectData.textPinwheel": "Morișcă", + "Common.define.effectData.textPlus": "Plus", + "Common.define.effectData.textPointStar": "Stea cu puncte", + "Common.define.effectData.textPointStar4": "Stea în 4 colțuri", + "Common.define.effectData.textPointStar5": "Stea în 5 colțuri", + "Common.define.effectData.textPointStar6": "Stea în 6 colțuri", + "Common.define.effectData.textPointStar8": "Stea în 8 colțuri", + "Common.define.effectData.textPulse": "Impuls", + "Common.define.effectData.textRandomBars": "Bare aleatoare", + "Common.define.effectData.textRight": "Dreapta", + "Common.define.effectData.textRightDown": "În dreapta jos", + "Common.define.effectData.textRightTriangle": "Triunghi drept", + "Common.define.effectData.textRightUp": "În dreapta sus", + "Common.define.effectData.textRiseUp": "Se ridică", + "Common.define.effectData.textSCurve1": "Curbă S1", + "Common.define.effectData.textSCurve2": "Curbă S2", + "Common.define.effectData.textShape": "Forma", + "Common.define.effectData.textShimmer": "Licărire", + "Common.define.effectData.textShrinkTurn": "Micșorare și întoarcere", + "Common.define.effectData.textSineWave": "Val sinusoidal", + "Common.define.effectData.textSinkDown": "Scufundare", + "Common.define.effectData.textSlideCenter": "Centrul diapozitivului", + "Common.define.effectData.textSpecial": "Special", + "Common.define.effectData.textSpin": "Rotire", + "Common.define.effectData.textSpinner": "Incrementare/Decrementare", + "Common.define.effectData.textSpiralIn": "Spirală spre interior", + "Common.define.effectData.textSpiralLeft": "Spirală spre stânga", + "Common.define.effectData.textSpiralOut": "Spirală spre exterior", + "Common.define.effectData.textSpiralRight": "Spirală spre dreapta", + "Common.define.effectData.textSplit": "Scindare", + "Common.define.effectData.textSpoke1": "1 spiță", + "Common.define.effectData.textSpoke2": "2 spițe", + "Common.define.effectData.textSpoke3": "3 spițe", + "Common.define.effectData.textSpoke4": "4 spițe", + "Common.define.effectData.textSpoke8": "8 spițe", + "Common.define.effectData.textSpring": "Salt", + "Common.define.effectData.textSquare": "Pătrat", + "Common.define.effectData.textStairsDown": "Scări în jos", + "Common.define.effectData.textStretch": "Întindere", + "Common.define.effectData.textStrips": "Fâșii", + "Common.define.effectData.textSubtle": "Subtil", + "Common.define.effectData.textSwivel": "Învârtire", + "Common.define.effectData.textSwoosh": "Șuierat", + "Common.define.effectData.textTeardrop": "Lacrimă", + "Common.define.effectData.textTeeter": "Balansare", + "Common.define.effectData.textToBottom": "În jos", + "Common.define.effectData.textToBottomLeft": "Spre stânga jos", + "Common.define.effectData.textToBottomRight": "Spre dreapta jos", + "Common.define.effectData.textToFromScreenBottom": "În exterior către josul ecranului", + "Common.define.effectData.textToLeft": "Spre stânga", + "Common.define.effectData.textToRight": "Spre dreapta", + "Common.define.effectData.textToTop": "În sus", + "Common.define.effectData.textToTopLeft": "Spre stânga sus", + "Common.define.effectData.textToTopRight": "Spre dreapta sus", + "Common.define.effectData.textTransparency": "Transparență", + "Common.define.effectData.textTrapezoid": "Trapez", + "Common.define.effectData.textTurnDown": "Întoarcere în jos", + "Common.define.effectData.textTurnDownRight": "Întoarcere spre dreapta jos", + "Common.define.effectData.textTurnUp": "Întoarcere în sus", + "Common.define.effectData.textTurnUpRight": "Întoarcere spre dreapta sus", + "Common.define.effectData.textUnderline": "Subliniat", + "Common.define.effectData.textUp": "În sus", + "Common.define.effectData.textVertical": "Vertical", + "Common.define.effectData.textVerticalFigure": "Cifra 8 verticală", + "Common.define.effectData.textVerticalIn": "Vertical în interior", + "Common.define.effectData.textVerticalOut": "Vertical în exterior", + "Common.define.effectData.textWave": "Ondulare", + "Common.define.effectData.textWedge": "Pană", + "Common.define.effectData.textWheel": "Roată", + "Common.define.effectData.textWhip": "Bici", + "Common.define.effectData.textWipe": "Ștergere", + "Common.define.effectData.textZigzag": "Zigzag", + "Common.define.effectData.textZoom": "Zoom", "Common.Translation.warnFileLocked": "Fișierul este editat într-o altă aplicație. Puteți continua să editați și să-l salvați ca o copie.", "Common.Translation.warnFileLockedBtnEdit": "Crează o copie", "Common.Translation.warnFileLockedBtnView": "Deschide vizualizarea", @@ -61,6 +250,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Nou", "Common.UI.ExtendedColorDialog.textRGBErr": "Valoarea introdusă nu este corectă.
Introduceți valoarea numerică de la 0 până la 255.", "Common.UI.HSBColorPicker.textNoColor": "Fără culoare", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Ascunde parola", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Afișează parola", "Common.UI.SearchDialog.textHighlight": "Evidențierea rezultatelor", "Common.UI.SearchDialog.textMatchCase": "Sensibil la litere mari și mici", "Common.UI.SearchDialog.textReplaceDef": "Introduceți textul înlocuitor", @@ -104,6 +295,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Creare automată a listei cu marcatori", "Common.Views.AutoCorrectDialog.textBy": "După", "Common.Views.AutoCorrectDialog.textDelete": "Ștergere", + "Common.Views.AutoCorrectDialog.textFLCells": "Scrie cu majusculă prima litera din fiecare celulă de tabel", "Common.Views.AutoCorrectDialog.textFLSentence": "Scrie cu majusculă prima literă a propoziției", "Common.Views.AutoCorrectDialog.textHyperlink": "Căi Internet și de rețea cu hyperlink-uri", "Common.Views.AutoCorrectDialog.textHyphens": "Cratime (--) cu linie de dialog (—)", @@ -129,12 +321,14 @@ "Common.Views.Comments.mniAuthorDesc": "Autor de la Z la A", "Common.Views.Comments.mniDateAsc": "Cele mai vechi", "Common.Views.Comments.mniDateDesc": "Cele mai recente", + "Common.Views.Comments.mniFilterGroups": "Filtrare după grup", "Common.Views.Comments.mniPositionAsc": "De sus", "Common.Views.Comments.mniPositionDesc": "De jos", "Common.Views.Comments.textAdd": "Adaugă", "Common.Views.Comments.textAddComment": "Adaugă comentariu", "Common.Views.Comments.textAddCommentToDoc": "Adăugare comentariu la document", "Common.Views.Comments.textAddReply": "Adăugare răspuns", + "Common.Views.Comments.textAll": "Toate", "Common.Views.Comments.textAnonym": "Invitat", "Common.Views.Comments.textCancel": "Revocare", "Common.Views.Comments.textClose": "Închidere", @@ -148,6 +342,7 @@ "Common.Views.Comments.textResolve": "Rezolvare", "Common.Views.Comments.textResolved": "Rezolvat", "Common.Views.Comments.textSort": "Sortare comentarii", + "Common.Views.Comments.textViewResolved": "Dvs. nu aveți permisiunea de a redeschide comentariu", "Common.Views.CopyWarningDialog.textDontShow": "Nu afișa acest mesaj din nou", "Common.Views.CopyWarningDialog.textMsg": "Operațiuni de copiere, decupare și lipire din bară de instrumente sau meniul contextual al editorului se execută numai în editorul.

Pentru copiere și lipire din sau în aplicații exterioare folosiți următoarele combinații de taste:", "Common.Views.CopyWarningDialog.textTitle": "Comenzile de copiere, decupare și lipire", @@ -312,6 +507,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Deschidere din nou", "Common.Views.ReviewPopover.textReply": "Răspunde", "Common.Views.ReviewPopover.textResolve": "Rezolvare", + "Common.Views.ReviewPopover.textViewResolved": "Dvs. nu aveți permisiunea de a redeschide comentariu", "Common.Views.ReviewPopover.txtDeleteTip": "Ștergere", "Common.Views.ReviewPopover.txtEditTip": "Editare", "Common.Views.SaveAsDlg.textLoading": "Încărcare", @@ -469,6 +665,7 @@ "PE.Controllers.Main.textLongName": "Numărul maxim de caractere dintr-un nume este 128 caractere.", "PE.Controllers.Main.textNoLicenseTitle": "Ați atins limita stabilită de licență", "PE.Controllers.Main.textPaidFeature": "Funcția contra plată", + "PE.Controllers.Main.textReconnect": "Conexiunea este restabilită", "PE.Controllers.Main.textRemember": "Salvează setările pentru toate fișiere", "PE.Controllers.Main.textRenameError": "Numele utilizatorului trebuie comletat.", "PE.Controllers.Main.textRenameLabel": "Introduceți numele pentru lucrul în colaborare", @@ -655,11 +852,11 @@ "PE.Controllers.Main.txtShape_star16": "Stea cu 16 colțuri", "PE.Controllers.Main.txtShape_star24": "Stea cu 24 colțuri", "PE.Controllers.Main.txtShape_star32": "Stea cu 32 colțuri", - "PE.Controllers.Main.txtShape_star4": "Stea cu 4 colțuri", - "PE.Controllers.Main.txtShape_star5": "Stea cu 5 colțuri", - "PE.Controllers.Main.txtShape_star6": "Stea cu 6 colțuri", - "PE.Controllers.Main.txtShape_star7": "Stea cu 7 colțuri", - "PE.Controllers.Main.txtShape_star8": "Stea cu 8 colțuri", + "PE.Controllers.Main.txtShape_star4": "Stea în 4 colțuri", + "PE.Controllers.Main.txtShape_star5": "Stea în 5 colțuri", + "PE.Controllers.Main.txtShape_star6": "Stea în 6 colțuri", + "PE.Controllers.Main.txtShape_star7": "Stea în 7 colțuri", + "PE.Controllers.Main.txtShape_star8": "Stea în 8 colțuri", "PE.Controllers.Main.txtShape_stripedRightArrow": "Săgeată dreapta vărgată", "PE.Controllers.Main.txtShape_sun": "Soare", "PE.Controllers.Main.txtShape_teardrop": "Lacrimă", @@ -750,6 +947,7 @@ "PE.Controllers.Main.warnNoLicense": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare.
Contactați %1 Departamentul de Vânzări pentru acordarea condițiilor personale de licențiere.", "PE.Controllers.Main.warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori ai %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.", "PE.Controllers.Main.warnProcessRightsChange": "Accesul la editarea fișierului refuzat.", + "PE.Controllers.Statusbar.textDisconnect": "Conexiunea a fost pierdută
Încercare de conectare. Verificați setările conexiunii.", "PE.Controllers.Statusbar.zoomText": "Zoom {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "Fonturi pe care doriți să le salvați nu sunt disponibile pe acest dispozitiv.
Textul va apărea scris cu fontul și stilul disponibil pe sistem, fontul salvat va fi aplicat de îndată ce devine disponibil.
Doriți să continuați?", "PE.Controllers.Toolbar.textAccent": "Accente", @@ -1086,6 +1284,29 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "PE.Controllers.Viewport.textFitPage": "Se aliniază la diapozitiv", "PE.Controllers.Viewport.textFitWidth": "Potrivire lățime", + "PE.Views.Animation.strDelay": "Amânare", + "PE.Views.Animation.strDuration": "Durată", + "PE.Views.Animation.strRepeat": "Repetare", + "PE.Views.Animation.strRewind": "Derulare înapoi", + "PE.Views.Animation.strStart": "Pornire", + "PE.Views.Animation.strTrigger": "Trigger", + "PE.Views.Animation.textMoreEffects": "Mai multe efecte", + "PE.Views.Animation.textMoveEarlier": "Mutare mai devreme", + "PE.Views.Animation.textMoveLater": "Mutare mai târziu", + "PE.Views.Animation.textMultiple": "Multiplu", + "PE.Views.Animation.textNone": "Fără", + "PE.Views.Animation.textOnClickOf": "La clic pe", + "PE.Views.Animation.textOnClickSequence": "Secvență în clicuri", + "PE.Views.Animation.textStartAfterPrevious": "După anterioul", + "PE.Views.Animation.textStartOnClick": "La clic", + "PE.Views.Animation.textStartWithPrevious": "Cu anteriorul", + "PE.Views.Animation.txtAddEffect": "Adăugare animație", + "PE.Views.Animation.txtAnimationPane": "Panou de animație", + "PE.Views.Animation.txtParameters": "Opțiuni", + "PE.Views.Animation.txtPreview": "Previzualizare", + "PE.Views.Animation.txtSec": "s", + "PE.Views.AnimationDialog.textPreviewEffect": "Previzualizare efect", + "PE.Views.AnimationDialog.textTitle": "Mai multe efecte", "PE.Views.ChartSettings.textAdvanced": "Afișare setări avansate", "PE.Views.ChartSettings.textChartType": "Modificare tip diagramă", "PE.Views.ChartSettings.textEditData": "Editare date", @@ -1165,6 +1386,7 @@ "PE.Views.DocumentHolder.textCut": "Decupare", "PE.Views.DocumentHolder.textDistributeCols": "Distribuire coloane", "PE.Views.DocumentHolder.textDistributeRows": "Distribuire rânduri", + "PE.Views.DocumentHolder.textEditPoints": "Editare puncte", "PE.Views.DocumentHolder.textFlipH": "Răsturnare orizontală", "PE.Views.DocumentHolder.textFlipV": "Răsturnare verticală", "PE.Views.DocumentHolder.textFromFile": "Din Fișier", @@ -1249,6 +1471,8 @@ "PE.Views.DocumentHolder.txtLimitUnder": "Limită sub textul", "PE.Views.DocumentHolder.txtMatchBrackets": "Portivire delimitatori la înălțimea argumentului", "PE.Views.DocumentHolder.txtMatrixAlign": "Aliniere matrice", + "PE.Views.DocumentHolder.txtMoveSlidesToEnd": "Mutare diapozitiv la sfârşit", + "PE.Views.DocumentHolder.txtMoveSlidesToStart": "Mutare diapozitiv la început", "PE.Views.DocumentHolder.txtNewSlide": "Diapozitiv nou", "PE.Views.DocumentHolder.txtOverbar": "Bară deasupra textului", "PE.Views.DocumentHolder.txtPasteDestFormat": "Utilizare temă destinație", @@ -1434,6 +1658,7 @@ "PE.Views.ImageSettings.textCrop": "Trunchiere", "PE.Views.ImageSettings.textCropFill": "Umplere", "PE.Views.ImageSettings.textCropFit": "Potrivire", + "PE.Views.ImageSettings.textCropToShape": "Trunchiere la formă", "PE.Views.ImageSettings.textEdit": "Editare", "PE.Views.ImageSettings.textEditObject": "Editare obiect", "PE.Views.ImageSettings.textFitSlide": "Se aliniază la diapozitiv", @@ -1448,6 +1673,7 @@ "PE.Views.ImageSettings.textHintFlipV": "Răsturnare verticală", "PE.Views.ImageSettings.textInsert": "Înlocuire imagine", "PE.Views.ImageSettings.textOriginalSize": "Dimensiunea reală", + "PE.Views.ImageSettings.textRecentlyUsed": "Utilizate recent", "PE.Views.ImageSettings.textRotate90": "Rotire 90°", "PE.Views.ImageSettings.textRotation": "Rotație", "PE.Views.ImageSettings.textSize": "Dimensiune", @@ -1569,6 +1795,7 @@ "PE.Views.ShapeSettings.textPatternFill": "Model", "PE.Views.ShapeSettings.textPosition": "Poziție", "PE.Views.ShapeSettings.textRadial": "Radială", + "PE.Views.ShapeSettings.textRecentlyUsed": "Utilizate recent", "PE.Views.ShapeSettings.textRotate90": "Rotire 90°", "PE.Views.ShapeSettings.textRotation": "Rotație", "PE.Views.ShapeSettings.textSelectImage": "Selectați imaginea", @@ -1885,6 +2112,7 @@ "PE.Views.Toolbar.textColumnsTwo": "Două coloane", "PE.Views.Toolbar.textItalic": "Cursiv", "PE.Views.Toolbar.textListSettings": "Setări lista", + "PE.Views.Toolbar.textRecentlyUsed": "Utilizate recent", "PE.Views.Toolbar.textShapeAlignBottom": "Aliniere jos", "PE.Views.Toolbar.textShapeAlignCenter": "Aliniere la centru", "PE.Views.Toolbar.textShapeAlignLeft": "Aliniere la stânga", @@ -1898,12 +2126,14 @@ "PE.Views.Toolbar.textStrikeout": "Tăiere cu o linie", "PE.Views.Toolbar.textSubscript": "Indice", "PE.Views.Toolbar.textSuperscript": "Exponent", + "PE.Views.Toolbar.textTabAnimation": "Animație", "PE.Views.Toolbar.textTabCollaboration": "Colaborare", "PE.Views.Toolbar.textTabFile": "Fişier", "PE.Views.Toolbar.textTabHome": "Acasă", "PE.Views.Toolbar.textTabInsert": "Inserare", "PE.Views.Toolbar.textTabProtect": "Protejare", "PE.Views.Toolbar.textTabTransitions": "Tranziții", + "PE.Views.Toolbar.textTabView": "Vizualizare", "PE.Views.Toolbar.textTitleError": "Eroare", "PE.Views.Toolbar.textUnderline": "Subliniat", "PE.Views.Toolbar.tipAddSlide": "Adăugare diapozitiv", @@ -1957,6 +2187,7 @@ "PE.Views.Toolbar.tipViewSettings": "Setări vizualizare", "PE.Views.Toolbar.txtDistribHor": "Distribuire pe orizontală", "PE.Views.Toolbar.txtDistribVert": "Distribuire pe verticală", + "PE.Views.Toolbar.txtDuplicateSlide": "Dublare diapozitiv", "PE.Views.Toolbar.txtGroup": "Grupare", "PE.Views.Toolbar.txtObjectsAlign": "Alinierea obiectelor selectate", "PE.Views.Toolbar.txtScheme1": "Office", @@ -2018,5 +2249,13 @@ "PE.Views.Transitions.txtApplyToAll": "Aplicarea la toate diapozitivele ", "PE.Views.Transitions.txtParameters": "Opțiuni", "PE.Views.Transitions.txtPreview": "Previzualizare", - "PE.Views.Transitions.txtSec": "s" + "PE.Views.Transitions.txtSec": "s", + "PE.Views.ViewTab.textAlwaysShowToolbar": "Afișează bară de instrumente permanent", + "PE.Views.ViewTab.textFitToSlide": "Se aliniază la diapozitiv", + "PE.Views.ViewTab.textFitToWidth": "Potrivire lățime", + "PE.Views.ViewTab.textInterfaceTheme": "Tema interfeței", + "PE.Views.ViewTab.textNotes": "Note", + "PE.Views.ViewTab.textRulers": "Rigle", + "PE.Views.ViewTab.textStatusBar": "Bară de stare", + "PE.Views.ViewTab.textZoom": "Zoom" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ru.json b/apps/presentationeditor/main/locale/ru.json index 13b150572..59df123e8 100644 --- a/apps/presentationeditor/main/locale/ru.json +++ b/apps/presentationeditor/main/locale/ru.json @@ -47,10 +47,13 @@ "Common.define.chartData.textScatterSmoothMarker": "Точечная с гладкими кривыми и маркерами", "Common.define.chartData.textStock": "Биржевая", "Common.define.chartData.textSurface": "Поверхность", + "Common.define.effectData.textAcross": "По горизонтали", + "Common.define.effectData.textAppear": "Возникновение", "Common.define.effectData.textArcDown": "Вниз по дуге", "Common.define.effectData.textArcLeft": "Влево по дуге", "Common.define.effectData.textArcRight": "Вправо по дуге", "Common.define.effectData.textArcUp": "Вверх по дуге", + "Common.define.effectData.textBasic": "Базовые", "Common.define.effectData.textBasicSwivel": "Простое вращение", "Common.define.effectData.textBasicZoom": "Простое увеличение", "Common.define.effectData.textBean": "Боб", @@ -62,9 +65,12 @@ "Common.define.effectData.textBounce": "Выскакивание", "Common.define.effectData.textBounceLeft": "Выскакивание влево", "Common.define.effectData.textBounceRight": "Выскакивание вправо", + "Common.define.effectData.textBox": "Прямоугольник", + "Common.define.effectData.textBrushColor": "Перекрашивание", "Common.define.effectData.textCenterRevolve": "Поворот вокруг центра", "Common.define.effectData.textCheckerboard": "Шахматная доска", "Common.define.effectData.textCircle": "Круг", + "Common.define.effectData.textCollapse": "Свертывание", "Common.define.effectData.textColorPulse": "Цветовая пульсация", "Common.define.effectData.textComplementaryColor": "Дополнительный цвет", "Common.define.effectData.textComplementaryColor2": "Дополнительный цвет 2", @@ -83,54 +89,153 @@ "Common.define.effectData.textCuverUp": "Скачок вверх", "Common.define.effectData.textDarken": "Затемнение", "Common.define.effectData.textDecayingWave": "Затухающая волна", - "Common.define.effectData.textDesaturate": "Обесцветить", + "Common.define.effectData.textDesaturate": "Обесцвечивание", "Common.define.effectData.textDiagonalDownRight": "По диагонали в правый нижний угол", "Common.define.effectData.textDiagonalUpRight": "По диагонали в верхний правый угол", "Common.define.effectData.textDiamond": "Ромб", "Common.define.effectData.textDisappear": "Исчезновение", "Common.define.effectData.textDissolveIn": "Растворение", "Common.define.effectData.textDissolveOut": "Растворение", + "Common.define.effectData.textDown": "Вниз", + "Common.define.effectData.textDrop": "Падение", "Common.define.effectData.textEmphasis": "Эффект выделения", "Common.define.effectData.textEntrance": "Эффект входа", "Common.define.effectData.textEqualTriangle": "Равносторонний треугольник", + "Common.define.effectData.textExciting": "Сложные", + "Common.define.effectData.textExit": "Эффект выхода", + "Common.define.effectData.textExpand": "Развертывание", + "Common.define.effectData.textFade": "Выцветание", + "Common.define.effectData.textFigureFour": "Удвоенный знак 8", "Common.define.effectData.textFillColor": "Цвет заливки", + "Common.define.effectData.textFlip": "Переворот", + "Common.define.effectData.textFloat": "Плавное приближение", + "Common.define.effectData.textFloatDown": "Плавное перемещение вниз", + "Common.define.effectData.textFloatIn": "Плавное приближение", + "Common.define.effectData.textFloatOut": "Плавное удаление", + "Common.define.effectData.textFloatUp": "Плавное перемещение вверх", + "Common.define.effectData.textFlyIn": "Влет", + "Common.define.effectData.textFlyOut": "Вылет за край листа", "Common.define.effectData.textFontColor": "Цвет шрифта", + "Common.define.effectData.textFootball": "Овал", "Common.define.effectData.textFromBottom": "Снизу вверх", + "Common.define.effectData.textFromBottomLeft": "Снизу слева", + "Common.define.effectData.textFromBottomRight": "Снизу справа", "Common.define.effectData.textFromLeft": "Слева направо", "Common.define.effectData.textFromRight": "Справа налево", "Common.define.effectData.textFromTop": "Сверху вниз", + "Common.define.effectData.textFromTopLeft": "Сверху слева", + "Common.define.effectData.textFromTopRight": "Сверху справа", + "Common.define.effectData.textFunnel": "Воронка", "Common.define.effectData.textGrowShrink": "Изменение размера", "Common.define.effectData.textGrowTurn": "Увеличение с поворотом", "Common.define.effectData.textGrowWithColor": "Увеличение с изменением цвета", "Common.define.effectData.textHeart": "Сердце", "Common.define.effectData.textHeartbeat": "Пульс", "Common.define.effectData.textHexagon": "Шестиугольник", + "Common.define.effectData.textHorizontal": "По горизонтали", + "Common.define.effectData.textHorizontalFigure": "Горизонтальный знак 8", + "Common.define.effectData.textHorizontalIn": "По горизонтали внутрь", + "Common.define.effectData.textHorizontalOut": "По горизонтали наружу", + "Common.define.effectData.textIn": "Внутрь", + "Common.define.effectData.textInFromScreenCenter": "Увеличение из центра экрана", + "Common.define.effectData.textInSlightly": "Небольшое увеличение", + "Common.define.effectData.textInToScreenCenter": "Увеличение к центру экрана", "Common.define.effectData.textInvertedSquare": "Квадрат наизнанку", "Common.define.effectData.textInvertedTriangle": "Треугольник наизнанку", + "Common.define.effectData.textLeft": "Влево", + "Common.define.effectData.textLeftDown": "Влево и вниз", + "Common.define.effectData.textLeftUp": "Влево и вверх", + "Common.define.effectData.textLighten": "Высветление", + "Common.define.effectData.textLineColor": "Цвет линии", + "Common.define.effectData.textLinesCurves": "Линии и кривые", "Common.define.effectData.textLoopDeLoop": "Петля", + "Common.define.effectData.textModerate": "Средние", + "Common.define.effectData.textNeutron": "Нейтрон", + "Common.define.effectData.textObjectCenter": "Центр объекта", "Common.define.effectData.textObjectColor": "Цвет объекта", "Common.define.effectData.textOctagon": "Восьмиугольник", + "Common.define.effectData.textOut": "Наружу", + "Common.define.effectData.textOutFromScreenBottom": "Уменьшение из нижней части экрана", + "Common.define.effectData.textOutSlightly": "Небольшое уменьшение", "Common.define.effectData.textParallelogram": "Параллелограмм", + "Common.define.effectData.textPath": "Путь перемещения", + "Common.define.effectData.textPeanut": "Земляной орех", + "Common.define.effectData.textPeekIn": "Сбор", + "Common.define.effectData.textPeekOut": "Задвигание", "Common.define.effectData.textPentagon": "Пятиугольник", + "Common.define.effectData.textPinwheel": "Колесо", + "Common.define.effectData.textPlus": "Плюс", + "Common.define.effectData.textPointStar": "Остроконечная звезда", "Common.define.effectData.textPointStar4": "4-конечная звезда", "Common.define.effectData.textPointStar5": "5-конечная звезда", "Common.define.effectData.textPointStar6": "6-конечная звезда", "Common.define.effectData.textPointStar8": "8-конечная звезда", + "Common.define.effectData.textPulse": "Пульсация", + "Common.define.effectData.textRandomBars": "Случайные полосы", + "Common.define.effectData.textRight": "Вправо", + "Common.define.effectData.textRightDown": "Вправо и вниз", "Common.define.effectData.textRightTriangle": "Прямоугольный треугольник", + "Common.define.effectData.textRightUp": "Вправо и вверх", + "Common.define.effectData.textRiseUp": "Подъем", + "Common.define.effectData.textSCurve1": "Синусоида 1", + "Common.define.effectData.textSCurve2": "Синусоида 2", "Common.define.effectData.textShape": "Фигура", "Common.define.effectData.textShimmer": "Мерцание", "Common.define.effectData.textShrinkTurn": "Уменьшение с поворотом", + "Common.define.effectData.textSineWave": "Частая синусоида", + "Common.define.effectData.textSinkDown": "Падение", + "Common.define.effectData.textSlideCenter": "Центр слайда", + "Common.define.effectData.textSpecial": "Особые", + "Common.define.effectData.textSpin": "Вращение", + "Common.define.effectData.textSpinner": "Центрифуга", + "Common.define.effectData.textSpiralIn": "Спираль", + "Common.define.effectData.textSpiralLeft": "Влево по спирали", + "Common.define.effectData.textSpiralOut": "Вылет по спирали", + "Common.define.effectData.textSpiralRight": "Вправо по спирали", + "Common.define.effectData.textSplit": "Панорама", "Common.define.effectData.textSpoke1": "1 сектор", "Common.define.effectData.textSpoke2": "2 сектора", "Common.define.effectData.textSpoke3": "3 сектора", "Common.define.effectData.textSpoke4": "4 сектора", "Common.define.effectData.textSpoke8": "8 секторов", + "Common.define.effectData.textSpring": "Пружина", + "Common.define.effectData.textSquare": "Квадрат", + "Common.define.effectData.textStairsDown": "Вниз по лестнице", + "Common.define.effectData.textStretch": "Растяжение", + "Common.define.effectData.textStrips": "Ленты", + "Common.define.effectData.textSubtle": "Простые", + "Common.define.effectData.textSwivel": "Вращение", + "Common.define.effectData.textSwoosh": "Лист", "Common.define.effectData.textTeardrop": "Капля", + "Common.define.effectData.textTeeter": "Качание", + "Common.define.effectData.textToBottom": "Вниз", + "Common.define.effectData.textToBottomLeft": "Вниз влево", + "Common.define.effectData.textToBottomRight": "Вниз вправо", + "Common.define.effectData.textToFromScreenBottom": "Уменьшение к нижней части экрана", + "Common.define.effectData.textToLeft": "Влево", + "Common.define.effectData.textToRight": "Вправо", + "Common.define.effectData.textToTop": "Вверх", + "Common.define.effectData.textToTopLeft": "Вверх влево", + "Common.define.effectData.textToTopRight": "Вверх вправо", "Common.define.effectData.textTransparency": "Прозрачность", "Common.define.effectData.textTrapezoid": "Трапеция", + "Common.define.effectData.textTurnDown": "Вправо и вниз", + "Common.define.effectData.textTurnDownRight": "Вниз и вправо", + "Common.define.effectData.textTurnUp": "Вправо и вверх", + "Common.define.effectData.textTurnUpRight": "Вверх и вправо", + "Common.define.effectData.textUnderline": "Подчёркивание", + "Common.define.effectData.textUp": "Вверх", + "Common.define.effectData.textVertical": "По вертикали", + "Common.define.effectData.textVerticalFigure": "Вертикальный знак 8", + "Common.define.effectData.textVerticalIn": "По вертикали внутрь", + "Common.define.effectData.textVerticalOut": "По вертикали наружу", "Common.define.effectData.textWave": "Волна", + "Common.define.effectData.textWedge": "Симметрично по кругу", "Common.define.effectData.textWheel": "Колесо", + "Common.define.effectData.textWhip": "Кнут", + "Common.define.effectData.textWipe": "Появление", "Common.define.effectData.textZigzag": "Зигзаг", + "Common.define.effectData.textZoom": "Масштабирование", "Common.Translation.warnFileLocked": "Файл редактируется в другом приложении. Вы можете продолжить редактирование и сохранить его как копию.", "Common.Translation.warnFileLockedBtnEdit": "Создать копию", "Common.Translation.warnFileLockedBtnView": "Открыть на просмотр", @@ -1181,13 +1286,27 @@ "PE.Controllers.Viewport.textFitWidth": "По ширине", "PE.Views.Animation.strDelay": "Задержка", "PE.Views.Animation.strDuration": "Длит.", + "PE.Views.Animation.strRepeat": "Повтор", + "PE.Views.Animation.strRewind": "Перемотка назад", + "PE.Views.Animation.strStart": "Запуск", + "PE.Views.Animation.strTrigger": "Триггер", + "PE.Views.Animation.textMoreEffects": "Показать больше эффектов", + "PE.Views.Animation.textMoveEarlier": "Переместить назад", + "PE.Views.Animation.textMoveLater": "Переместить вперед", + "PE.Views.Animation.textMultiple": "Несколько", + "PE.Views.Animation.textNone": "Нет", + "PE.Views.Animation.textOnClickOf": "По щелчку на", + "PE.Views.Animation.textOnClickSequence": "По последовательности щелчков", "PE.Views.Animation.textStartAfterPrevious": "После предыдущего", + "PE.Views.Animation.textStartOnClick": "По щелчку", "PE.Views.Animation.textStartWithPrevious": "Вместе с предыдущим", "PE.Views.Animation.txtAddEffect": "Добавить анимацию", "PE.Views.Animation.txtAnimationPane": "Область анимации", "PE.Views.Animation.txtParameters": "Параметры", "PE.Views.Animation.txtPreview": "Просмотр", "PE.Views.Animation.txtSec": "сек", + "PE.Views.AnimationDialog.textPreviewEffect": "Просмотр эффекта", + "PE.Views.AnimationDialog.textTitle": "Другие эффекты", "PE.Views.ChartSettings.textAdvanced": "Дополнительные параметры", "PE.Views.ChartSettings.textChartType": "Изменить тип диаграммы", "PE.Views.ChartSettings.textEditData": "Изменить данные", @@ -2135,6 +2254,8 @@ "PE.Views.ViewTab.textFitToSlide": "По размеру слайда", "PE.Views.ViewTab.textFitToWidth": "По ширине", "PE.Views.ViewTab.textInterfaceTheme": "Тема интерфейса", + "PE.Views.ViewTab.textNotes": "Заметки", "PE.Views.ViewTab.textRulers": "Линейки", + "PE.Views.ViewTab.textStatusBar": "Строка состояния", "PE.Views.ViewTab.textZoom": "Масштаб" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/tr.json b/apps/presentationeditor/main/locale/tr.json index 86396b6b9..d61ce0a1a 100644 --- a/apps/presentationeditor/main/locale/tr.json +++ b/apps/presentationeditor/main/locale/tr.json @@ -60,15 +60,70 @@ "Common.define.effectData.textBlinds": "Güneşlik", "Common.define.effectData.textBlink": "Parlama", "Common.define.effectData.textBoldFlash": "Kalın Flaş", + "Common.define.effectData.textBoldReveal": "Kalın Gösterim", + "Common.define.effectData.textBoomerang": "Bumerang", + "Common.define.effectData.textBounce": "Zıplama", + "Common.define.effectData.textBounceLeft": "Sola Zıplama", + "Common.define.effectData.textBounceRight": "Sağa Zıplama", + "Common.define.effectData.textBox": "Kutucuk", + "Common.define.effectData.textBrushColor": "Fırça Rengi", + "Common.define.effectData.textCenterRevolve": "Merkezde Dönme", + "Common.define.effectData.textCheckerboard": "Dama tahtası", + "Common.define.effectData.textCircle": "Daire", + "Common.define.effectData.textCollapse": "Daralt", + "Common.define.effectData.textColorPulse": "Renk Darbesi", + "Common.define.effectData.textComplementaryColor": "Tamamlayıcı Renk", + "Common.define.effectData.textComplementaryColor2": "Tamamlayıcı Renk 2", + "Common.define.effectData.textCompress": "Sıkıştırılmış", + "Common.define.effectData.textContrast": "Kontrast", + "Common.define.effectData.textContrastingColor": "Kontrast Renk", + "Common.define.effectData.textCredits": "Krediler", + "Common.define.effectData.textCrescentMoon": "Hilal", + "Common.define.effectData.textCurveDown": "Aşağı Eğri", + "Common.define.effectData.textCurvedSquare": "Kavisli Kare", + "Common.define.effectData.textCurvedX": "Kavisli X", + "Common.define.effectData.textCurvyLeft": "Kıvrımlı Sol", + "Common.define.effectData.textCurvyRight": "Kıvrımlı Sağ", + "Common.define.effectData.textCurvyStar": "Kıvrımlı Yıldız", + "Common.define.effectData.textCustomPath": "Özel Yol", + "Common.define.effectData.textCuverUp": "Yukarı Eğri", + "Common.define.effectData.textDarken": "Karart", + "Common.define.effectData.textDecayingWave": "Azalan Dalga", + "Common.define.effectData.textDesaturate": "Doymamışlık", + "Common.define.effectData.textDiagonalDownRight": "Çapraz Aşağı Sağ", + "Common.define.effectData.textDiagonalUpRight": "Çapraz Yukarı Sağ", + "Common.define.effectData.textDiamond": "Elmas", + "Common.define.effectData.textDisappear": "Kaybolarak", + "Common.define.effectData.textDissolveIn": "Çözülerek", + "Common.define.effectData.textDissolveOut": "Dışarı Çözülerek", + "Common.define.effectData.textDown": "Aşağı", + "Common.define.effectData.textDrop": "Düşerek", + "Common.define.effectData.textEmphasis": "Vurgu Etkisi", + "Common.define.effectData.textEntrance": "Giriş Etkisi", + "Common.define.effectData.textEqualTriangle": "Eşkenar Üçgen", + "Common.define.effectData.textExciting": "Heyecanlandırıcı", + "Common.define.effectData.textExit": "Çıkış Etkisi", + "Common.define.effectData.textExpand": "Genişlet", + "Common.define.effectData.textFade": "Gölge", "Common.define.effectData.textLeftDown": "Sol Alt", "Common.define.effectData.textLeftUp": "Sol Üst", + "Common.define.effectData.textPointStar4": "4 Köşeli Yıldız", + "Common.define.effectData.textPointStar5": "5 Köşeli Yıldız", + "Common.define.effectData.textPointStar6": "6 Köşeli Yıldız", + "Common.define.effectData.textPointStar8": "8 Köşeli Yıldız", + "Common.define.effectData.textRight": "Sağ", "Common.define.effectData.textRightDown": "Sağ Alt", + "Common.define.effectData.textRightTriangle": "Sağ Üçgen", "Common.define.effectData.textRightUp": "Sağ Üst", "Common.define.effectData.textSpoke1": "1 Konuştu", "Common.define.effectData.textSpoke2": "2 Konuştu", "Common.define.effectData.textSpoke3": "3 Konuştu", "Common.define.effectData.textSpoke4": "4 Konuştu", "Common.define.effectData.textSpoke8": "8 Konuştu", + "Common.define.effectData.textUnderline": "Altı çizili", + "Common.define.effectData.textUp": "Yukarı", + "Common.define.effectData.textVertical": "Dikey", + "Common.define.effectData.textZigzag": "Zikzak", "Common.define.effectData.textZoom": "Yakınlaştırma", "Common.Translation.warnFileLocked": "Dosya başka bir uygulamada düzenleniyor. Düzenlemeye devam edebilir ve kopya olarak kaydedebilirsiniz.", "Common.Translation.warnFileLockedBtnEdit": "Kopya oluştur", @@ -100,9 +155,9 @@ "Common.UI.SynchronizeTip.textSynchronize": "Döküman başka bir kullanıcı tarafından değiştirildi.
Lütfen değişikleri kaydetmek için tıklayın ve güncellemeleri yenileyin.", "Common.UI.ThemeColorPalette.textStandartColors": "Standart Renkler", "Common.UI.ThemeColorPalette.textThemeColors": "Tema Renkleri", - "Common.UI.Themes.txtThemeClassicLight": "Açık mod", + "Common.UI.Themes.txtThemeClassicLight": "Klasik Aydınlık", "Common.UI.Themes.txtThemeDark": "Karanlık", - "Common.UI.Themes.txtThemeLight": "Açık", + "Common.UI.Themes.txtThemeLight": "Aydınlık", "Common.UI.Window.cancelButtonText": "İptal", "Common.UI.Window.closeButtonText": "Kapat", "Common.UI.Window.noButtonText": "Hayır", @@ -129,6 +184,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Otomatik madde listesi", "Common.Views.AutoCorrectDialog.textBy": "Tarafından", "Common.Views.AutoCorrectDialog.textDelete": "Sil", + "Common.Views.AutoCorrectDialog.textFLCells": "Tablo hücrelerinin ilk harfini büyük harf yap", "Common.Views.AutoCorrectDialog.textFLSentence": "Cümlelerin ilk harfini büyük yaz", "Common.Views.AutoCorrectDialog.textHyperlink": "Köprülü internet ve ağ yolları", "Common.Views.AutoCorrectDialog.textHyphens": "Kısa çizgi (--) ve tire (—) ", @@ -136,7 +192,7 @@ "Common.Views.AutoCorrectDialog.textNumbered": "Otomatik numaralı liste", "Common.Views.AutoCorrectDialog.textQuotes": "\"Akıllı tırnak\" ile \"düz tırnak\"", "Common.Views.AutoCorrectDialog.textRecognized": "Bilinen fonksiyonlar", - "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Aşağıdaki ifadeler tanınan matematik ifadeleridir. Otomatik olarak italik yazılmazlar.", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Aşağıdaki ifadeler tanınan matematik ifadeleridir. Otomatik olarak eğik yazılmazlar.", "Common.Views.AutoCorrectDialog.textReplace": "Değiştir", "Common.Views.AutoCorrectDialog.textReplaceText": "Yazarken Değiştir ", "Common.Views.AutoCorrectDialog.textReplaceType": "Metni yazarken değiştirin", @@ -203,7 +259,7 @@ "Common.Views.Header.tipDownload": "Dosyayı indir", "Common.Views.Header.tipGoEdit": "Mevcut belgeyi düzenle", "Common.Views.Header.tipPrint": "Belgeyi yazdır", - "Common.Views.Header.tipRedo": "Tekrar yap", + "Common.Views.Header.tipRedo": "Yinele", "Common.Views.Header.tipSave": "Kaydet", "Common.Views.Header.tipUndo": "Geri Al", "Common.Views.Header.tipUndock": "Ayrı pencereye çıkarın", @@ -244,18 +300,18 @@ "Common.Views.ListSettingsDialog.txtType": "Tür", "Common.Views.OpenDialog.closeButtonText": "Dosyayı Kapat", "Common.Views.OpenDialog.txtEncoding": "Kodlama", - "Common.Views.OpenDialog.txtIncorrectPwd": "Şifre hatalı.", + "Common.Views.OpenDialog.txtIncorrectPwd": "Parola hatalı.", "Common.Views.OpenDialog.txtOpenFile": "Dosyayı Açmak için Parola Girin", "Common.Views.OpenDialog.txtPassword": "Parola", - "Common.Views.OpenDialog.txtProtected": "Şifreyi girip dosyayı açtığınızda, dosyanın mevcut şifresi sıfırlanacaktır.", + "Common.Views.OpenDialog.txtProtected": "Parolayı girip dosyayı açtığınızda, dosyanın mevcut parolası sıfırlanacaktır.", "Common.Views.OpenDialog.txtTitle": "%1 seçenekleri seçin", "Common.Views.OpenDialog.txtTitleProtected": "Korumalı dosya", - "Common.Views.PasswordDialog.txtDescription": "Bu belgeyi korumak için bir şifre belirleyin", + "Common.Views.PasswordDialog.txtDescription": "Bu belgeyi korumak için bir parola belirleyin", "Common.Views.PasswordDialog.txtIncorrectPwd": "Onay şifresi aynı değil", "Common.Views.PasswordDialog.txtPassword": "Parola", - "Common.Views.PasswordDialog.txtRepeat": "Şifreyi tekrar girin", - "Common.Views.PasswordDialog.txtTitle": "Şifreyi belirle", - "Common.Views.PasswordDialog.txtWarning": "Dikkat: Parolayı kaybeder veya unutursanız, kurtarılamaz.", + "Common.Views.PasswordDialog.txtRepeat": "Parolayı tekrar girin", + "Common.Views.PasswordDialog.txtTitle": "Parola Belirle", + "Common.Views.PasswordDialog.txtWarning": "Dikkat: Parolayı kaybeder veya unutursanız, kurtarılamaz. Lütfen parolayı güvenli bir yerde saklayın.", "Common.Views.PluginDlg.textLoading": "Yükleniyor", "Common.Views.Plugins.groupCaption": "Eklentiler", "Common.Views.Plugins.strPlugins": "Eklentiler", @@ -267,7 +323,7 @@ "Common.Views.Protection.hintSignature": "Dijital imza veya imza satırı ekleyin", "Common.Views.Protection.txtAddPwd": "Parola ekle", "Common.Views.Protection.txtChangePwd": "Parolayı Değiştir", - "Common.Views.Protection.txtDeletePwd": "Şifreyi sil", + "Common.Views.Protection.txtDeletePwd": "Parolayı sil", "Common.Views.Protection.txtEncrypt": "Şifrele", "Common.Views.Protection.txtInvisibleSignature": "Dijital imza ekle", "Common.Views.Protection.txtSignature": "İmza", @@ -348,7 +404,7 @@ "Common.Views.SignDialog.textCertificate": "Sertifika", "Common.Views.SignDialog.textChange": "Değiştir", "Common.Views.SignDialog.textInputName": "İmzalayan adını girin", - "Common.Views.SignDialog.textItalic": "İtalik", + "Common.Views.SignDialog.textItalic": "Eğik", "Common.Views.SignDialog.textNameError": "İmzalayan adı boş bırakılmamalıdır.", "Common.Views.SignDialog.textPurpose": "Bu belgeyi imzalamanın amacı", "Common.Views.SignDialog.textSelect": "Seç", @@ -398,7 +454,7 @@ "Common.Views.UserNameDialog.textDontShow": "Bana bir daha sorma", "Common.Views.UserNameDialog.textLabel": "Etiket:", "Common.Views.UserNameDialog.textLabelError": "Etiket boş olamaz.", - "PE.Controllers.LeftMenu.leavePageText": "Bu belgedeki kaydedilmemiş tüm değişiklikler kaybolacak.
Bunları kaydetmek için \"İptal\"i ve ardından \"Kaydet\"i tıklayın. Kaydedilmemiş tüm değişiklikleri atmak için \"Tamam\" ı tıklayın.", + "PE.Controllers.LeftMenu.leavePageText": "Bu belgedeki kaydedilmemiş tüm değişiklikler kaybolacak.
Bunları kaydetmek için \"İptal\"i ve ardından \"Kaydet\"i tıklayın. Kaydedilmemiş tüm değişiklikleri atmak için \"OK\" ı tıklayın.", "PE.Controllers.LeftMenu.newDocumentTitle": "İsim verilmemiş sunum", "PE.Controllers.LeftMenu.notcriticalErrorTitle": "Uyarı", "PE.Controllers.LeftMenu.requestEditRightsText": "Düzenleme hakları isteniyor...", @@ -410,7 +466,7 @@ "PE.Controllers.Main.applyChangesTextText": "Veri yükleniyor...", "PE.Controllers.Main.applyChangesTitleText": "Veri yükleniyor", "PE.Controllers.Main.convertationTimeoutText": "Değişim süresi aşıldı.", - "PE.Controllers.Main.criticalErrorExtText": "Döküman listesine dönmek için \"TAMAM\"'a tıklayın", + "PE.Controllers.Main.criticalErrorExtText": "Döküman listesine dönmek için \"OK\"'a tıklayın", "PE.Controllers.Main.criticalErrorTitle": "Hata", "PE.Controllers.Main.downloadErrorText": "İndirme başarısız oldu.", "PE.Controllers.Main.downloadTextText": "Belge indiriliyor...", @@ -419,7 +475,7 @@ "PE.Controllers.Main.errorBadImageUrl": "Resim URL'si yanlış", "PE.Controllers.Main.errorCoAuthoringDisconnect": "Sunucu bağlantısı kesildi. Döküman şu an düzenlenemez.", "PE.Controllers.Main.errorComboSeries": "Bir kombinasyon grafiği oluşturmak için en az iki veri serisi seçin.", - "PE.Controllers.Main.errorConnectToServer": "Belge kaydedilemedi. Lütfen internet bağlantınızı kontrol edin veya yöneticiniz ile iletişime geçin.
'TAMAM' tuşuna tıkladığınızda belgeyi indirebileceksiniz.", + "PE.Controllers.Main.errorConnectToServer": "Belge kaydedilemedi. Lütfen internet bağlantınızı kontrol edin veya yöneticiniz ile iletişime geçin.
'OK' tuşuna tıkladığınızda belgeyi indirebileceksiniz.", "PE.Controllers.Main.errorDatabaseConnection": "Harci hata.
Veri tabanı bağlantı hatası. Hata devam ederse lütfen destek ile iletişime geçin.", "PE.Controllers.Main.errorDataEncrypted": "Şifreli değişiklikler algılandı, çözülemiyor.", "PE.Controllers.Main.errorDataRange": "Yanlış veri aralığı.", @@ -438,7 +494,7 @@ "PE.Controllers.Main.errorSessionAbsolute": "Belge düzenleme oturumu sona erdi. Lütfen sayfayı yeniden yükleyin.", "PE.Controllers.Main.errorSessionIdle": "Belge oldukça uzun süredir düzenlenmedi. Lütfen sayfayı yeniden yükleyin.", "PE.Controllers.Main.errorSessionToken": "Sunucu bağlantısı yarıda kesildi. Lütfen sayfayı yeniden yükleyin.", - "PE.Controllers.Main.errorSetPassword": "Şifre ayarlanamadı.", + "PE.Controllers.Main.errorSetPassword": "Parola ayarlanamadı.", "PE.Controllers.Main.errorStockChart": "Yanlış dizi sırası. Stok grafiği oluşturma için tablodaki verileri şu sırada yerleştirin:
açılış fiyatı, maksimum fiyat, minimum fiyat, kapanış fiyatı. ", "PE.Controllers.Main.errorToken": "Belge güvenlik belirteci doğru şekilde oluşturulmamış.
Lütfen Belge Sunucu yöneticinize başvurun.", "PE.Controllers.Main.errorTokenExpire": "Belge güvenlik belirteci süresi doldu.
Lütfen Belge Sunucusu yöneticinize başvurun.", @@ -448,7 +504,7 @@ "PE.Controllers.Main.errorUsersExceed": "Fiyat planının izin verdiği kullanıcı sayısı aşıldı", "PE.Controllers.Main.errorViewerDisconnect": "Bağlantı kesildi. Belgeyi yine de görüntüleyebilirsiniz,
ancak bağlantı yeniden kurulana ve sayfa yeniden yüklenene kadar indiremez veya yazdıramazsınız.", "PE.Controllers.Main.leavePageText": "Sunumda kaydedilmemiş değişiklikler var. Kaydetmek için 'Bu Sayfada Kal'a daha sonra da 'Kaydet'e tıklayınız.Kaydedilmemiş tüm değişiklikleri göz ardı etmek için 'Bu Sayfadan Ayrıl'a tıklayın.", - "PE.Controllers.Main.leavePageTextOnClose": "Bu sunudaki kaydedilmemiş tüm değişiklikler kaybolacak.
Bunları kaydetmek için \"İptal\"i ve ardından \"Kaydet\"i tıklayın. Kaydedilmemiş tüm değişiklikleri atmak için \"Tamam\" ı tıklayın.", + "PE.Controllers.Main.leavePageTextOnClose": "Bu sunudaki kaydedilmemiş tüm değişiklikler kaybolacak.
Bunları kaydetmek için \"İptal\"i ve ardından \"Kaydet\"i tıklayın. Kaydedilmemiş tüm değişiklikleri atmak için \"OK\" ı tıklayın.", "PE.Controllers.Main.loadFontsTextText": "Veri yükleniyor...", "PE.Controllers.Main.loadFontsTitleText": "Veri yükleniyor", "PE.Controllers.Main.loadFontTextText": "Veri yükleniyor...", @@ -495,17 +551,18 @@ "PE.Controllers.Main.textLongName": "128 Karakterden kısa bir ad girin.", "PE.Controllers.Main.textNoLicenseTitle": "Lisans limitine ulaşıldı.", "PE.Controllers.Main.textPaidFeature": "Ücretli Özellik", + "PE.Controllers.Main.textReconnect": "Yeniden bağlanıldı", "PE.Controllers.Main.textRemember": "Seçimimi tüm dosyalar için hatırla", "PE.Controllers.Main.textRenameError": "Kullanıcı adı boş bırakılmamalıdır.", "PE.Controllers.Main.textRenameLabel": "İşbirliği için kullanılacak bir ad girin", "PE.Controllers.Main.textShape": "Şekil", "PE.Controllers.Main.textStrict": "Strict mode", - "PE.Controllers.Main.textTryUndoRedo": "Geri al/İleri al fonksiyonları hızlı birlikte çalışma modunda devre dışı kalır.
'Katı mod' tuşuna tıklayarak Katı birlikte düzenleme moduna geçebilir ve diğer kullanıcıların müdehalesi olmadan, yalnızca siz belgeyi kaydettikten sonra değişiklik yapılmasını sağlayın. Ortak çalışma moduna tekrar dönmek için Gelişmiş ayarları kullanabilirsiniz.", - "PE.Controllers.Main.textTryUndoRedoWarn": "Hızlı birlikte düzenleme modunda geri al/ileri al fonksiyonları devre dışıdır.", + "PE.Controllers.Main.textTryUndoRedo": "Geri al/Yinele fonksiyonları hızlı ortak çalışma modunda devre dışı kalır.
'Katı mod' tuşuna tıklayarak Katı ortak düzenleme moduna geçebilir ve diğer kullanıcıların müdehalesi olmadan, yalnızca siz belgeyi kaydettikten sonra değişiklik yapılmasını sağlayabilirsiniz. Ortak çalışma moduna tekrar dönmek için Gelişmiş ayarları kullanabilirsiniz.", + "PE.Controllers.Main.textTryUndoRedoWarn": "Hızlı ortak düzenleme modunda geri al/yinele fonksiyonları devre dışıdır.", "PE.Controllers.Main.titleLicenseExp": "Lisans süresi doldu", "PE.Controllers.Main.titleServerVersion": "Editör güncellendi", "PE.Controllers.Main.txtAddFirstSlide": "İlk sunumu eklemek için tıklayın", - "PE.Controllers.Main.txtAddNotes": "Notlara eklemek için tıklayın", + "PE.Controllers.Main.txtAddNotes": "Not eklemek için tıklayın", "PE.Controllers.Main.txtArt": "Metni buraya giriniz", "PE.Controllers.Main.txtBasicShapes": "Temel Şekiller", "PE.Controllers.Main.txtButtons": "Tuşlar", @@ -519,9 +576,9 @@ "PE.Controllers.Main.txtErrorLoadHistory": "Geçmiş yüklenemedi", "PE.Controllers.Main.txtFiguredArrows": "Şekilli Oklar", "PE.Controllers.Main.txtFooter": "Altbilgi", - "PE.Controllers.Main.txtHeader": "Başlık", + "PE.Controllers.Main.txtHeader": "Üst Bilgi", "PE.Controllers.Main.txtImage": "Resim", - "PE.Controllers.Main.txtLines": "Satırlar", + "PE.Controllers.Main.txtLines": "Çizgiler", "PE.Controllers.Main.txtLoading": "Yükleniyor...", "PE.Controllers.Main.txtMath": "Matematik", "PE.Controllers.Main.txtMedia": "Medya", @@ -576,7 +633,7 @@ "PE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Kavisli Çift Ok Bağlayıcı", "PE.Controllers.Main.txtShape_curvedDownArrow": "Eğri Aşağı Ok", "PE.Controllers.Main.txtShape_curvedLeftArrow": "Kavisli Sol Ok", - "PE.Controllers.Main.txtShape_curvedRightArrow": "Kavisli Sağ Ok", + "PE.Controllers.Main.txtShape_curvedRightArrow": "Kavisli Sağa Ok", "PE.Controllers.Main.txtShape_curvedUpArrow": "Kavisli Yukarı OK", "PE.Controllers.Main.txtShape_decagon": "Dekagon", "PE.Controllers.Main.txtShape_diagStripe": "Çapraz Çizgi", @@ -661,7 +718,7 @@ "PE.Controllers.Main.txtShape_rect": "Dikdörtgen", "PE.Controllers.Main.txtShape_ribbon": "Aşağı Ribbon", "PE.Controllers.Main.txtShape_ribbon2": "Yukarı Ribbon", - "PE.Controllers.Main.txtShape_rightArrow": "Sağ Ok", + "PE.Controllers.Main.txtShape_rightArrow": "Sağa Ok", "PE.Controllers.Main.txtShape_rightArrowCallout": "Sağ Ok Belirtme Çizgisi ", "PE.Controllers.Main.txtShape_rightBrace": "Sağ Ayraç", "PE.Controllers.Main.txtShape_rightBracket": "Sağ Köşeli Ayraç", @@ -676,16 +733,16 @@ "PE.Controllers.Main.txtShape_snip2SameRect": "Aynı Yan Köşe Dikdörtgeni Kes", "PE.Controllers.Main.txtShape_snipRoundRect": "Yuvarlak Tek Köşe Dikdörtgen Kes", "PE.Controllers.Main.txtShape_spline": "Eğri", - "PE.Controllers.Main.txtShape_star10": "10-Numara Yıldız", - "PE.Controllers.Main.txtShape_star12": "12-Numara Yıldız", - "PE.Controllers.Main.txtShape_star16": "16-Numara Yıldız", - "PE.Controllers.Main.txtShape_star24": "24-Numara Yıldız", - "PE.Controllers.Main.txtShape_star32": "32-Numara Yıldız", - "PE.Controllers.Main.txtShape_star4": "4-Numara Yıldız", - "PE.Controllers.Main.txtShape_star5": "5-Numara Yıldız", - "PE.Controllers.Main.txtShape_star6": "6-Numara Yıldız", - "PE.Controllers.Main.txtShape_star7": "7-Numara Yıldız", - "PE.Controllers.Main.txtShape_star8": "8-Numara Yıldız", + "PE.Controllers.Main.txtShape_star10": "10 Köşeli Yıldız", + "PE.Controllers.Main.txtShape_star12": "12 Köşeli Yıldız", + "PE.Controllers.Main.txtShape_star16": "16 Köşeli Yıldız", + "PE.Controllers.Main.txtShape_star24": "24 Köşeli Yıldız", + "PE.Controllers.Main.txtShape_star32": "32 Köşeli Yıldız", + "PE.Controllers.Main.txtShape_star4": "4 Köşeli Yıldız", + "PE.Controllers.Main.txtShape_star5": "5 Köşeli Yıldız", + "PE.Controllers.Main.txtShape_star6": "6 Köşeli Yıldız", + "PE.Controllers.Main.txtShape_star7": "7 Köşeli Yıldız", + "PE.Controllers.Main.txtShape_star8": "8 Köşeli Yıldız", "PE.Controllers.Main.txtShape_stripedRightArrow": "Çizgili Sağ Ok", "PE.Controllers.Main.txtShape_sun": "Güneş", "PE.Controllers.Main.txtShape_teardrop": "Damla", @@ -717,7 +774,7 @@ "PE.Controllers.Main.txtSldLtTObjOverTx": "Metin Üstünde Obje", "PE.Controllers.Main.txtSldLtTObjTx": "Başlık, Obje ve Altyazı", "PE.Controllers.Main.txtSldLtTPicTx": "Resim ve Başlık", - "PE.Controllers.Main.txtSldLtTSecHead": "Bölüm Üst Başlığı", + "PE.Controllers.Main.txtSldLtTSecHead": "Bölüm Üst Bilgisi", "PE.Controllers.Main.txtSldLtTTbl": "Tablo", "PE.Controllers.Main.txtSldLtTTitle": "Başlık", "PE.Controllers.Main.txtSldLtTTitleOnly": "Sadece Başlık", @@ -738,7 +795,7 @@ "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Dikey Başlık ve Grafik Üstünde Metin", "PE.Controllers.Main.txtSldLtTVertTx": "Dikey Metin", "PE.Controllers.Main.txtSlideNumber": "Slayt numarası", - "PE.Controllers.Main.txtSlideSubtitle": "Slayt altyazısı", + "PE.Controllers.Main.txtSlideSubtitle": "Slayt alt başlığı", "PE.Controllers.Main.txtSlideText": "Slayt metni", "PE.Controllers.Main.txtSlideTitle": "Slayt başlığı", "PE.Controllers.Main.txtStarsRibbons": "Yıldızlar & Kurdeleler", @@ -749,7 +806,7 @@ "PE.Controllers.Main.txtTheme_dotted": "Noktalı", "PE.Controllers.Main.txtTheme_green": "Yeşil", "PE.Controllers.Main.txtTheme_green_leaf": "Yeşil yaprak", - "PE.Controllers.Main.txtTheme_lines": "Satırlar", + "PE.Controllers.Main.txtTheme_lines": "Çizgiler", "PE.Controllers.Main.txtTheme_office": "Ofis", "PE.Controllers.Main.txtTheme_office_theme": "Office Teması", "PE.Controllers.Main.txtTheme_official": "Resmi", @@ -1066,7 +1123,7 @@ "PE.Controllers.Toolbar.txtSymbol_kappa": "Kappa", "PE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", "PE.Controllers.Toolbar.txtSymbol_leftarrow": "Sol Ok", - "PE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Sol-Sağ Ok", + "PE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Sol-sağ ok", "PE.Controllers.Toolbar.txtSymbol_leq": "Küçük eşittir", "PE.Controllers.Toolbar.txtSymbol_less": "Küçüktür", "PE.Controllers.Toolbar.txtSymbol_ll": "Çok Küçüktür", @@ -1093,7 +1150,7 @@ "PE.Controllers.Toolbar.txtSymbol_qed": "İspat Sonu", "PE.Controllers.Toolbar.txtSymbol_rddots": "Yukarı Sağ Diyagonal Elips", "PE.Controllers.Toolbar.txtSymbol_rho": "Rho", - "PE.Controllers.Toolbar.txtSymbol_rightarrow": "Sağ Ok", + "PE.Controllers.Toolbar.txtSymbol_rightarrow": "Sağa Ok", "PE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", "PE.Controllers.Toolbar.txtSymbol_sqrt": "Kök İşareti", "PE.Controllers.Toolbar.txtSymbol_tau": "Tau", @@ -1102,17 +1159,20 @@ "PE.Controllers.Toolbar.txtSymbol_times": "Çarpma İşareti", "PE.Controllers.Toolbar.txtSymbol_uparrow": "Yukarı Oku", "PE.Controllers.Toolbar.txtSymbol_upsilon": "Epsilon", - "PE.Controllers.Toolbar.txtSymbol_varepsilon": "Epsilon Varyantı", - "PE.Controllers.Toolbar.txtSymbol_varphi": "Phi Varyantı", - "PE.Controllers.Toolbar.txtSymbol_varpi": "Pi Varyantı", - "PE.Controllers.Toolbar.txtSymbol_varrho": "Rho Varyantı", - "PE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma Varyantı", - "PE.Controllers.Toolbar.txtSymbol_vartheta": "Teta Varyantı", + "PE.Controllers.Toolbar.txtSymbol_varepsilon": "Epsilon varyantı", + "PE.Controllers.Toolbar.txtSymbol_varphi": "Phi varyantı", + "PE.Controllers.Toolbar.txtSymbol_varpi": "Pi varyantı", + "PE.Controllers.Toolbar.txtSymbol_varrho": "Rho varyantı", + "PE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma varyantı", + "PE.Controllers.Toolbar.txtSymbol_vartheta": "Teta varyantı", "PE.Controllers.Toolbar.txtSymbol_vdots": "Dikey Elips", "PE.Controllers.Toolbar.txtSymbol_xsi": "Xi", "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "PE.Controllers.Viewport.textFitPage": "Slayta sığdır", "PE.Controllers.Viewport.textFitWidth": "Genişliğe Sığdır", + "PE.Views.Animation.strDelay": "Geciktir", + "PE.Views.Animation.strDuration": "Süre", + "PE.Views.Animation.strRepeat": "Tekrar", "PE.Views.Animation.textStartAfterPrevious": "Öncekinden Sonra", "PE.Views.Animation.txtAddEffect": "Animasyon ekle", "PE.Views.Animation.txtAnimationPane": "Animasyon Bölmesi", @@ -1139,7 +1199,7 @@ "PE.Views.DocumentHolder.addCommentText": "Yorum Ekle", "PE.Views.DocumentHolder.addToLayoutText": "Tasarım ekle", "PE.Views.DocumentHolder.advancedImageText": "Resim Gelişmiş Ayarlar", - "PE.Views.DocumentHolder.advancedParagraphText": "Paragraf Gelişmiş Ayarlar", + "PE.Views.DocumentHolder.advancedParagraphText": "Gelişmiş Paragraf Ayarları", "PE.Views.DocumentHolder.advancedShapeText": "Şekil Gelişmiş Ayarlar", "PE.Views.DocumentHolder.advancedTableText": "Tablo Gelişmiş Ayarlar", "PE.Views.DocumentHolder.alignmentText": "Hizalama", @@ -1157,7 +1217,7 @@ "PE.Views.DocumentHolder.directHText": "Yatay", "PE.Views.DocumentHolder.directionText": "Text Direction", "PE.Views.DocumentHolder.editChartText": "Veri düzenle", - "PE.Views.DocumentHolder.editHyperlinkText": "Hiper bağı düzenle", + "PE.Views.DocumentHolder.editHyperlinkText": "Köprüyü Düzenle", "PE.Views.DocumentHolder.hyperlinkText": "Köprü", "PE.Views.DocumentHolder.ignoreAllSpellText": "Hepsini yoksay", "PE.Views.DocumentHolder.ignoreSpellText": "Yoksay", @@ -1170,13 +1230,13 @@ "PE.Views.DocumentHolder.insertText": "Ekle", "PE.Views.DocumentHolder.langText": "Dil Seç", "PE.Views.DocumentHolder.leftText": "Sol", - "PE.Views.DocumentHolder.loadSpellText": "Varyantlar yükleniyor...", + "PE.Views.DocumentHolder.loadSpellText": "Öneriler yükleniyor...", "PE.Views.DocumentHolder.mergeCellsText": "Hücreleri birleştir", "PE.Views.DocumentHolder.mniCustomTable": "Özel Tablo Ekle", - "PE.Views.DocumentHolder.moreText": "Daha fazla varyant...", - "PE.Views.DocumentHolder.noSpellVariantsText": "Varyant yok", + "PE.Views.DocumentHolder.moreText": "Daha fazla öneri...", + "PE.Views.DocumentHolder.noSpellVariantsText": "Öneri yok", "PE.Views.DocumentHolder.originalSizeText": "Gerçek Boyut", - "PE.Views.DocumentHolder.removeHyperlinkText": "Köprüyü kaldır", + "PE.Views.DocumentHolder.removeHyperlinkText": "Köprüyü Kaldır", "PE.Views.DocumentHolder.rightText": "Sağ", "PE.Views.DocumentHolder.rowText": "Satır", "PE.Views.DocumentHolder.selectText": "Seç", @@ -1195,6 +1255,7 @@ "PE.Views.DocumentHolder.textCut": "Kes", "PE.Views.DocumentHolder.textDistributeCols": "Sütunları dağıt", "PE.Views.DocumentHolder.textDistributeRows": "Satırları dağıt", + "PE.Views.DocumentHolder.textEditPoints": "Noktaları Düzenle", "PE.Views.DocumentHolder.textFlipH": "Yatay olarak çevir", "PE.Views.DocumentHolder.textFlipV": "Dikey Çevir", "PE.Views.DocumentHolder.textFromFile": "Dosyadan", @@ -1313,7 +1374,7 @@ "PE.Views.DocumentHolder.txtWarnUrl": "Bu bağlantıyı tıklamak cihazınıza ve verilerinize zarar verebilir.
Devam etmek istediğinizden emin misiniz?", "PE.Views.DocumentHolder.vertAlignText": "Dikey Hizalama", "PE.Views.DocumentPreview.goToSlideText": "Slayta Git", - "PE.Views.DocumentPreview.slideIndexText": "Slayt {1}'in {0}'ı", + "PE.Views.DocumentPreview.slideIndexText": "Slayt {0}/{1}", "PE.Views.DocumentPreview.txtClose": "Önizlemeyi Kapat", "PE.Views.DocumentPreview.txtEndSlideshow": "Slayt gösterisi sonu", "PE.Views.DocumentPreview.txtExitFullScreen": "Tam ekrandan çık", @@ -1327,7 +1388,7 @@ "PE.Views.DocumentPreview.txtReset": "Sıfırla", "PE.Views.FileMenu.btnAboutCaption": "Hakkında", "PE.Views.FileMenu.btnBackCaption": "Dosya konumunu aç", - "PE.Views.FileMenu.btnCloseMenuCaption": "Menüyü kapat", + "PE.Views.FileMenu.btnCloseMenuCaption": "Menüyü Kapat", "PE.Views.FileMenu.btnCreateNewCaption": "Yeni oluştur", "PE.Views.FileMenu.btnDownloadCaption": "Farklı İndir...", "PE.Views.FileMenu.btnExitCaption": "Çıkış", @@ -1352,7 +1413,7 @@ "PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Yazar Ekle", "PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Metin Ekle", "PE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Uygulama", - "PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Yayıncı", + "PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Yazar", "PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Erişim haklarını değiştir", "PE.Views.FileMenuPanels.DocumentInfo.txtComment": "Yorum", "PE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Oluşturuldu", @@ -1367,7 +1428,7 @@ "PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Erişim haklarını değiştir", "PE.Views.FileMenuPanels.DocumentRights.txtRights": "Hakkı olan kişiler", "PE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Uyarı", - "PE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Şifre ile", + "PE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Parola ile", "PE.Views.FileMenuPanels.ProtectDoc.strProtect": "Sunuyu Koru", "PE.Views.FileMenuPanels.ProtectDoc.strSignature": "İmza ile", "PE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Sunumu Düzenle", @@ -1389,7 +1450,7 @@ "PE.Views.FileMenuPanels.Settings.strInputMode": "Hiyeroglifleri aç", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Makro Ayarları", "PE.Views.FileMenuPanels.Settings.strPaste": "Kes, kopyala ve yapıştır", - "PE.Views.FileMenuPanels.Settings.strPasteButton": "İçerik yapıştırıldığında Yapıştır Seçenekleri düğmesini göster", + "PE.Views.FileMenuPanels.Settings.strPasteButton": "İçerik yapıştırıldığında Yapıştırma Seçenekleri düğmesini göster", "PE.Views.FileMenuPanels.Settings.strShowChanges": "Gerçek Zamanlı Ortak Düzenleme Değişiklikleri", "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Yazım denetimi seçeneğini aç", "PE.Views.FileMenuPanels.Settings.strStrict": "Strict", @@ -1416,7 +1477,7 @@ "PE.Views.FileMenuPanels.Settings.txtInput": "Girdiyi Değiştir", "PE.Views.FileMenuPanels.Settings.txtLast": "Sonuncuyu göster", "PE.Views.FileMenuPanels.Settings.txtMac": "OS X olarak", - "PE.Views.FileMenuPanels.Settings.txtNative": "Yerli", + "PE.Views.FileMenuPanels.Settings.txtNative": "Yerel", "PE.Views.FileMenuPanels.Settings.txtProofing": "Prova", "PE.Views.FileMenuPanels.Settings.txtPt": "Nokta", "PE.Views.FileMenuPanels.Settings.txtRunMacros": "Hepsini Etkinleştir", @@ -1451,7 +1512,7 @@ "PE.Views.HyperlinkSettingsDialog.textInternalLink": "Bu Dökümana Yerleştir", "PE.Views.HyperlinkSettingsDialog.textSlides": "Slaytlar", "PE.Views.HyperlinkSettingsDialog.textTipText": "Ekranİpucu metni", - "PE.Views.HyperlinkSettingsDialog.textTitle": "Köprü ayarları", + "PE.Views.HyperlinkSettingsDialog.textTitle": "Köprü Ayarları", "PE.Views.HyperlinkSettingsDialog.txtEmpty": "Bu alan gereklidir", "PE.Views.HyperlinkSettingsDialog.txtFirst": "İlk Slayt", "PE.Views.HyperlinkSettingsDialog.txtLast": "Son Slayt", @@ -1464,6 +1525,7 @@ "PE.Views.ImageSettings.textCrop": "Kırpmak", "PE.Views.ImageSettings.textCropFill": "Doldur", "PE.Views.ImageSettings.textCropFit": "Sığdır", + "PE.Views.ImageSettings.textCropToShape": "Şekillendirmek için kırp", "PE.Views.ImageSettings.textEdit": "Düzenle", "PE.Views.ImageSettings.textEditObject": "Obje Düzenle", "PE.Views.ImageSettings.textFitSlide": "Slayta sığdır", @@ -1478,6 +1540,7 @@ "PE.Views.ImageSettings.textHintFlipV": "Dikey Çevir", "PE.Views.ImageSettings.textInsert": "Resimi Değiştir", "PE.Views.ImageSettings.textOriginalSize": "Gerçek Boyut", + "PE.Views.ImageSettings.textRecentlyUsed": "Son Kullanılanlar", "PE.Views.ImageSettings.textRotate90": "Döndür 90°", "PE.Views.ImageSettings.textRotation": "Döndürme", "PE.Views.ImageSettings.textSize": "Boyut", @@ -1565,7 +1628,7 @@ "PE.Views.RightMenu.txtSignatureSettings": "İmza ayarları", "PE.Views.RightMenu.txtSlideSettings": "Slayt Ayarları", "PE.Views.RightMenu.txtTableSettings": "Tablo Ayarları", - "PE.Views.RightMenu.txtTextArtSettings": "Text Art Settings", + "PE.Views.RightMenu.txtTextArtSettings": "Yazı Sanatı ayarları", "PE.Views.ShapeSettings.strBackground": "Arka plan rengi", "PE.Views.ShapeSettings.strChange": "Otomatik Şeklini Değiştir", "PE.Views.ShapeSettings.strColor": "Renk", @@ -1599,6 +1662,7 @@ "PE.Views.ShapeSettings.textPatternFill": "Desen", "PE.Views.ShapeSettings.textPosition": "Pozisyon", "PE.Views.ShapeSettings.textRadial": "Radyal", + "PE.Views.ShapeSettings.textRecentlyUsed": "Son Kullanılanlar", "PE.Views.ShapeSettings.textRotate90": "Döndür 90°", "PE.Views.ShapeSettings.textRotation": "Döndürme", "PE.Views.ShapeSettings.textSelectImage": "Resim Seç", @@ -1741,7 +1805,7 @@ "PE.Views.SlideSizeSettings.txtStandard": "Standart (4:3)", "PE.Views.SlideSizeSettings.txtWidescreen": "Geniş ekran", "PE.Views.Statusbar.goToPageText": "Slayta Git", - "PE.Views.Statusbar.pageIndexText": "Slayt {1}'in {0}'ı", + "PE.Views.Statusbar.pageIndexText": "Slayt {0}/{1}", "PE.Views.Statusbar.textShowBegin": "Başlangıçtan itibaren göster", "PE.Views.Statusbar.textShowCurrent": "Mevcut slayttan itibaren göster", "PE.Views.Statusbar.textShowPresenterView": "Sunucu görünümüne geç", @@ -1780,7 +1844,7 @@ "PE.Views.TableSettings.textEdit": "Satırlar & Sütunlar", "PE.Views.TableSettings.textEmptyTemplate": "Şablon yok", "PE.Views.TableSettings.textFirst": "ilk", - "PE.Views.TableSettings.textHeader": "Üst Başlık", + "PE.Views.TableSettings.textHeader": "Üst Bilgi", "PE.Views.TableSettings.textHeight": "Yükseklik", "PE.Views.TableSettings.textLast": "Son", "PE.Views.TableSettings.textRows": "Satırlar", @@ -1913,8 +1977,9 @@ "PE.Views.Toolbar.textColumnsOne": "Bir Sütun", "PE.Views.Toolbar.textColumnsThree": "Üç Sütun", "PE.Views.Toolbar.textColumnsTwo": "İki Sütun", - "PE.Views.Toolbar.textItalic": "İtalik", + "PE.Views.Toolbar.textItalic": "Eğik", "PE.Views.Toolbar.textListSettings": "Liste Ayarları", + "PE.Views.Toolbar.textRecentlyUsed": "Son Kullanılanlar", "PE.Views.Toolbar.textShapeAlignBottom": "Alta Hizala", "PE.Views.Toolbar.textShapeAlignCenter": "Ortaya Hizala", "PE.Views.Toolbar.textShapeAlignLeft": "Sola Hizala", @@ -1929,12 +1994,12 @@ "PE.Views.Toolbar.textSubscript": "Altsimge", "PE.Views.Toolbar.textSuperscript": "Üstsimge", "PE.Views.Toolbar.textTabAnimation": "Animasyon", - "PE.Views.Toolbar.textTabCollaboration": "Ortak çalışma", + "PE.Views.Toolbar.textTabCollaboration": "Ortak Çalışma", "PE.Views.Toolbar.textTabFile": "Dosya", "PE.Views.Toolbar.textTabHome": "Ana Sayfa", "PE.Views.Toolbar.textTabInsert": "Ekle", "PE.Views.Toolbar.textTabProtect": "Koruma", - "PE.Views.Toolbar.textTabTransitions": "geçişler", + "PE.Views.Toolbar.textTabTransitions": "Geçişler", "PE.Views.Toolbar.textTitleError": "Hata", "PE.Views.Toolbar.textUnderline": "Altı çizili", "PE.Views.Toolbar.tipAddSlide": "Slayt ekle", @@ -1948,7 +2013,7 @@ "PE.Views.Toolbar.tipCopy": "Kopyala", "PE.Views.Toolbar.tipCopyStyle": "Stili Kopyala", "PE.Views.Toolbar.tipDateTime": "Şimdiki tarih ve saati ekle", - "PE.Views.Toolbar.tipDecFont": "Yazı Boyutu Azaltımı", + "PE.Views.Toolbar.tipDecFont": "Yazı boyutunu azalt", "PE.Views.Toolbar.tipDecPrLeft": "Girintiyi Azalt", "PE.Views.Toolbar.tipEditHeader": "Altlığı Düzenle", "PE.Views.Toolbar.tipFontColor": "Yazı Tipi Rengi", @@ -1956,7 +2021,7 @@ "PE.Views.Toolbar.tipFontSize": "Yazıtipi boyutu", "PE.Views.Toolbar.tipHAligh": "Yatay Hizala", "PE.Views.Toolbar.tipHighlightColor": "Vurgu Rengi", - "PE.Views.Toolbar.tipIncFont": "Yazı Tipi Boyut Arttırımı", + "PE.Views.Toolbar.tipIncFont": "Yazı boyutunu arttır", "PE.Views.Toolbar.tipIncPrLeft": "Girintiyi Arttır", "PE.Views.Toolbar.tipInsertAudio": "Ses ekle", "PE.Views.Toolbar.tipInsertChart": "Tablo ekle", @@ -1967,7 +2032,7 @@ "PE.Views.Toolbar.tipInsertSymbol": "Simge ekle", "PE.Views.Toolbar.tipInsertTable": "Tablo ekle", "PE.Views.Toolbar.tipInsertText": "Metin kutusu ekle", - "PE.Views.Toolbar.tipInsertTextArt": "Metin Art Ekle", + "PE.Views.Toolbar.tipInsertTextArt": "Yazı Sanatı Ekle", "PE.Views.Toolbar.tipInsertVideo": "Video ekle", "PE.Views.Toolbar.tipLineSpace": "Satır Aralığı", "PE.Views.Toolbar.tipMarkers": "Maddeler", @@ -1975,7 +2040,7 @@ "PE.Views.Toolbar.tipPaste": "Yapıştır", "PE.Views.Toolbar.tipPreview": "Önizlemeye Başla", "PE.Views.Toolbar.tipPrint": "Yazdır", - "PE.Views.Toolbar.tipRedo": "Tekrar yap", + "PE.Views.Toolbar.tipRedo": "Yinele", "PE.Views.Toolbar.tipSave": "Kaydet", "PE.Views.Toolbar.tipSaveCoauth": "Diğer kullanıcıların görmesi için değişikliklerinizi kaydedin.", "PE.Views.Toolbar.tipShapeAlign": "Şekli Hizala", @@ -1988,6 +2053,7 @@ "PE.Views.Toolbar.tipViewSettings": "Ayarları Göster", "PE.Views.Toolbar.txtDistribHor": "Yatay olarak dağıt", "PE.Views.Toolbar.txtDistribVert": "Dikey olarak dağıt", + "PE.Views.Toolbar.txtDuplicateSlide": "Slaytı kopyala", "PE.Views.Toolbar.txtGroup": "Grup", "PE.Views.Toolbar.txtObjectsAlign": "Seçili Objeleri Hizala", "PE.Views.Toolbar.txtScheme1": "Ofis", diff --git a/apps/presentationeditor/main/locale/uk.json b/apps/presentationeditor/main/locale/uk.json index 800c0b779..5f59d07a0 100644 --- a/apps/presentationeditor/main/locale/uk.json +++ b/apps/presentationeditor/main/locale/uk.json @@ -51,28 +51,84 @@ "Common.define.effectData.textArcLeft": "Ліворуч по дузі", "Common.define.effectData.textArcRight": "Праворуч по дузі", "Common.define.effectData.textArcUp": "Вгору по дузі", + "Common.define.effectData.textBasicSwivel": "Просте обертання", + "Common.define.effectData.textBasicZoom": "Просте збільшення", + "Common.define.effectData.textBean": "Біб", + "Common.define.effectData.textBlinds": "Жалюзі", + "Common.define.effectData.textBlink": "Блимання", + "Common.define.effectData.textBoldFlash": "Напівжирний напис", + "Common.define.effectData.textBoldReveal": "Накладання напівжирного", + "Common.define.effectData.textBoomerang": "Бумеранг", + "Common.define.effectData.textBounce": "Вистрибування", + "Common.define.effectData.textBounceLeft": "Вистрибування ліворуч", + "Common.define.effectData.textBounceRight": "Вистрибування праворуч", + "Common.define.effectData.textCenterRevolve": "Поворот навколо центру", + "Common.define.effectData.textCheckerboard": "Шахова дошка", + "Common.define.effectData.textCircle": "Круг", + "Common.define.effectData.textColorPulse": "Кольорова пульсація", "Common.define.effectData.textComplementaryColor": "Додатковий колір", "Common.define.effectData.textComplementaryColor2": "Додатковий колір 2", + "Common.define.effectData.textCompress": "Стиснення", "Common.define.effectData.textContrast": "Контраст", "Common.define.effectData.textContrastingColor": "Колір, що контрастує ", + "Common.define.effectData.textCredits": "Титри", + "Common.define.effectData.textCrescentMoon": "Напівмісяць", + "Common.define.effectData.textCurveDown": "Стрибок вниз", + "Common.define.effectData.textCurvedSquare": "Закруглений квадрат", + "Common.define.effectData.textCurvedX": "Заокруглений хрестик", + "Common.define.effectData.textCurvyLeft": "Ліворуч по кривій", + "Common.define.effectData.textCurvyRight": "Праворуч по кривій", + "Common.define.effectData.textCurvyStar": "Закруглена зірка", + "Common.define.effectData.textCustomPath": "Користувальницький шлях", + "Common.define.effectData.textCuverUp": "Стрибок вгору", + "Common.define.effectData.textDarken": "Затемнення", + "Common.define.effectData.textDecayingWave": "Згасаюча хвиля", + "Common.define.effectData.textDesaturate": "Знебарвити", + "Common.define.effectData.textDiagonalDownRight": "По діагоналі у правий нижній кут", + "Common.define.effectData.textDiagonalUpRight": "По діагоналі у верхній правий кут", + "Common.define.effectData.textDiamond": "Ромб", + "Common.define.effectData.textDisappear": "Зникнення", + "Common.define.effectData.textDissolveIn": "Розчинення", + "Common.define.effectData.textDissolveOut": "Розчинення", + "Common.define.effectData.textEmphasis": "Ефект виділення", + "Common.define.effectData.textEntrance": "Ефект входу", + "Common.define.effectData.textEqualTriangle": "Рівносторонній трикутник", + "Common.define.effectData.textFillColor": "Колір заливки", "Common.define.effectData.textFontColor": "Колір шрифту", + "Common.define.effectData.textFromBottom": "Знизу вверх", + "Common.define.effectData.textFromLeft": "Зліва направо", + "Common.define.effectData.textFromRight": "Справа наліво", + "Common.define.effectData.textFromTop": "Зверху вниз", + "Common.define.effectData.textGrowShrink": "Зміна розміру", + "Common.define.effectData.textGrowTurn": "Збільшення з поворотом", + "Common.define.effectData.textGrowWithColor": "Збільшення зі зміною кольору", + "Common.define.effectData.textHeart": "Серце", + "Common.define.effectData.textHeartbeat": "Пульс", + "Common.define.effectData.textHexagon": "Шестикутник", "Common.define.effectData.textInvertedSquare": "Обернений квадрат", "Common.define.effectData.textInvertedTriangle": "Перевернутий трикутник", + "Common.define.effectData.textLoopDeLoop": "Петля", + "Common.define.effectData.textOctagon": "Восьмикутник", + "Common.define.effectData.textParallelogram": "Паралелограм", "Common.define.effectData.textPentagon": "П'ятикутник", "Common.define.effectData.textPointStar4": "4-кутна зірка", "Common.define.effectData.textPointStar5": "5-кутна зірка", "Common.define.effectData.textPointStar6": "6-кутна зірка", "Common.define.effectData.textPointStar8": "8-кутна зірка", "Common.define.effectData.textRightTriangle": "Прямокутний трикутник", + "Common.define.effectData.textShape": "Фігура", "Common.define.effectData.textShrinkTurn": "Зменшення з поворотом", "Common.define.effectData.textSpoke1": "1 сектор", "Common.define.effectData.textSpoke2": "2 сектори", "Common.define.effectData.textSpoke3": "3 сектори", "Common.define.effectData.textSpoke4": "4 сектори", "Common.define.effectData.textSpoke8": "8 секторів", + "Common.define.effectData.textTeardrop": "Крапля", "Common.define.effectData.textTransparency": "Прозорість", + "Common.define.effectData.textTrapezoid": "Трапеція", "Common.define.effectData.textWave": "Хвиля", "Common.define.effectData.textWheel": "Колесо", + "Common.define.effectData.textZigzag": "Зиґзаґ", "Common.Translation.warnFileLocked": "Файл редагується в іншій програмі. Ви можете продовжити редагування та зберегти його як копію.", "Common.Translation.warnFileLockedBtnEdit": "Створити копію", "Common.Translation.warnFileLockedBtnView": "Відкрити на перегляд", @@ -179,6 +235,7 @@ "Common.Views.Comments.textResolve": "Вирішити", "Common.Views.Comments.textResolved": "Вирішено", "Common.Views.Comments.textSort": "Сортувати коментарі", + "Common.Views.Comments.textViewResolved": "У вас немає прав для повторного відкриття коментарю", "Common.Views.CopyWarningDialog.textDontShow": "Не показувати це повідомлення знову", "Common.Views.CopyWarningDialog.textMsg": "Копіювання, вирізання та вставлення дій за допомогою кнопок панелі інструментів редактора та дій контекстного меню буде виконуватися тільки на цій вкладці редактора.

Щоб скопіювати або вставити до або з додатків за межами вкладки редактора, використовуйте такі комбінації клавіш:", "Common.Views.CopyWarningDialog.textTitle": "Копіювати, вирізати та вставити дії", @@ -343,6 +400,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Відкрити знову", "Common.Views.ReviewPopover.textReply": "Відповісти", "Common.Views.ReviewPopover.textResolve": "Вирішити", + "Common.Views.ReviewPopover.textViewResolved": "У вас немає прав для повторного відкриття коментарю", "Common.Views.ReviewPopover.txtDeleteTip": "Видалити", "Common.Views.ReviewPopover.txtEditTip": "Редагувати", "Common.Views.SaveAsDlg.textLoading": "Завантаження", @@ -782,6 +840,7 @@ "PE.Controllers.Main.warnNoLicense": "Ви досягли ліміту на одночасне підключення до редакторів %1. Цей документ буде відкрито для перегляду.
Напишіть у відділ продажу %1, щоб обговорити індивідуальні умови ліцензування.", "PE.Controllers.Main.warnNoLicenseUsers": "Ви досягли ліміту на одночасне підключення до редакторів %1.
Напишіть у відділ продаж %1, для обговорення індивідуальних умов ліцензування.", "PE.Controllers.Main.warnProcessRightsChange": "Вам відмовлено у наданні права редагувати файл.", + "PE.Controllers.Statusbar.textDisconnect": "З'єднання втрачено
Спроба підключення. Перевірте налаштування підключення.", "PE.Controllers.Statusbar.zoomText": "Збільшити {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "Шрифт, який ви збираєтеся зберегти, недоступний на поточному пристрої.
Текстовий стиль відображатиметься за допомогою одного з системних шрифтів, збережений шрифт буде використовуватися, коли він буде доступний.
Ви хочете продовжити ?", "PE.Controllers.Toolbar.textAccent": "Акценти", @@ -1118,8 +1177,16 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Зета", "PE.Controllers.Viewport.textFitPage": "За розміром слайду", "PE.Controllers.Viewport.textFitWidth": "По ширині", + "PE.Views.Animation.strDelay": "Затримка", + "PE.Views.Animation.strDuration": "Трив.", + "PE.Views.Animation.textMoreEffects": "Мерехтіння", + "PE.Views.Animation.textStartAfterPrevious": "Після попереднього", + "PE.Views.Animation.textStartWithPrevious": "Разом із попереднім", "PE.Views.Animation.txtAddEffect": "Додати анімацію", "PE.Views.Animation.txtAnimationPane": "Область анімації", + "PE.Views.Animation.txtParameters": "Параметри", + "PE.Views.Animation.txtPreview": "Перегляд", + "PE.Views.Animation.txtSec": "сек", "PE.Views.ChartSettings.textAdvanced": "Показати додаткові налаштування", "PE.Views.ChartSettings.textChartType": "Змінити тип діаграми", "PE.Views.ChartSettings.textEditData": "Редагувати дату", @@ -1199,6 +1266,7 @@ "PE.Views.DocumentHolder.textCut": "Вирізати", "PE.Views.DocumentHolder.textDistributeCols": "Вирівняти ширину стовпчиків", "PE.Views.DocumentHolder.textDistributeRows": "Вирівняти висоту рядків", + "PE.Views.DocumentHolder.textEditPoints": "Змінити точки", "PE.Views.DocumentHolder.textFlipH": "Перевернути горизонтально", "PE.Views.DocumentHolder.textFlipV": "Перевернути вертикально", "PE.Views.DocumentHolder.textFromFile": "З файлу", @@ -1283,6 +1351,8 @@ "PE.Views.DocumentHolder.txtLimitUnder": "Обмеження під текстом", "PE.Views.DocumentHolder.txtMatchBrackets": "Відповідність дужок до висоти аргументів", "PE.Views.DocumentHolder.txtMatrixAlign": "Вирівнювання матриці", + "PE.Views.DocumentHolder.txtMoveSlidesToEnd": "Перемістити слайд у кінець", + "PE.Views.DocumentHolder.txtMoveSlidesToStart": "Перемістити слайд на початок", "PE.Views.DocumentHolder.txtNewSlide": "Новий слайд", "PE.Views.DocumentHolder.txtOverbar": "Риска над текстом", "PE.Views.DocumentHolder.txtPasteDestFormat": "Використовувати кінцеву тему", @@ -1936,12 +2006,14 @@ "PE.Views.Toolbar.textStrikeout": "Викреслити", "PE.Views.Toolbar.textSubscript": "Підрядковий", "PE.Views.Toolbar.textSuperscript": "Надрядковий", + "PE.Views.Toolbar.textTabAnimation": "Анімація", "PE.Views.Toolbar.textTabCollaboration": "Співпраця", "PE.Views.Toolbar.textTabFile": "Файл", "PE.Views.Toolbar.textTabHome": "Домашній", "PE.Views.Toolbar.textTabInsert": "Вставити", "PE.Views.Toolbar.textTabProtect": "Захист", "PE.Views.Toolbar.textTabTransitions": "Переходи", + "PE.Views.Toolbar.textTabView": "Вигляд", "PE.Views.Toolbar.textTitleError": "Помилка", "PE.Views.Toolbar.textUnderline": "Підкреслений", "PE.Views.Toolbar.tipAddSlide": "Додати слайд", @@ -1995,6 +2067,7 @@ "PE.Views.Toolbar.tipViewSettings": "Налаштування перегляду", "PE.Views.Toolbar.txtDistribHor": "Розподілити горизонтально", "PE.Views.Toolbar.txtDistribVert": "Розподілити вертикально", + "PE.Views.Toolbar.txtDuplicateSlide": "Продублювати слайд", "PE.Views.Toolbar.txtGroup": "Група", "PE.Views.Toolbar.txtObjectsAlign": "Вирівняти виділені об'єкти", "PE.Views.Toolbar.txtScheme1": "Офіс", @@ -2057,7 +2130,10 @@ "PE.Views.Transitions.txtParameters": "Параметри", "PE.Views.Transitions.txtPreview": "Перегляд", "PE.Views.Transitions.txtSec": "сек", + "PE.Views.ViewTab.textAlwaysShowToolbar": "Завжди показувати панель інструментів", "PE.Views.ViewTab.textFitToSlide": "За розміром слайду", "PE.Views.ViewTab.textFitToWidth": "По ширині", - "PE.Views.ViewTab.textInterfaceTheme": "Тема інтерфейсу" + "PE.Views.ViewTab.textInterfaceTheme": "Тема інтерфейсу", + "PE.Views.ViewTab.textRulers": "Лінійки", + "PE.Views.ViewTab.textZoom": "Масштаб" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/zh.json b/apps/presentationeditor/main/locale/zh.json index 8941325e2..a83075c55 100644 --- a/apps/presentationeditor/main/locale/zh.json +++ b/apps/presentationeditor/main/locale/zh.json @@ -47,6 +47,195 @@ "Common.define.chartData.textScatterSmoothMarker": "带平滑线和数据标记的散点图", "Common.define.chartData.textStock": "股票", "Common.define.chartData.textSurface": "平面", + "Common.define.effectData.textAcross": "横向", + "Common.define.effectData.textAppear": "出现", + "Common.define.effectData.textArcDown": "向下弧线", + "Common.define.effectData.textArcLeft": "向左弧线", + "Common.define.effectData.textArcRight": "向右弧线", + "Common.define.effectData.textArcUp": "向上弧线", + "Common.define.effectData.textBasic": "基本", + "Common.define.effectData.textBasicSwivel": "基本旋转", + "Common.define.effectData.textBasicZoom": "基本缩放", + "Common.define.effectData.textBean": "豆荚", + "Common.define.effectData.textBlinds": "百叶窗", + "Common.define.effectData.textBlink": "闪烁", + "Common.define.effectData.textBoldFlash": "加粗闪烁", + "Common.define.effectData.textBoldReveal": "加粗展示", + "Common.define.effectData.textBoomerang": "飞旋", + "Common.define.effectData.textBounce": "弹跳", + "Common.define.effectData.textBounceLeft": "向左弹跳", + "Common.define.effectData.textBounceRight": "向右弹跳", + "Common.define.effectData.textBox": "盒状", + "Common.define.effectData.textBrushColor": "画笔颜色", + "Common.define.effectData.textCenterRevolve": "中心旋转", + "Common.define.effectData.textCheckerboard": "棋盘", + "Common.define.effectData.textCircle": "圆形", + "Common.define.effectData.textCollapse": "折叠", + "Common.define.effectData.textColorPulse": "彩色脉冲", + "Common.define.effectData.textComplementaryColor": "补色", + "Common.define.effectData.textComplementaryColor2": "补色2", + "Common.define.effectData.textCompress": "压缩", + "Common.define.effectData.textContrast": "对比度", + "Common.define.effectData.textContrastingColor": "对比色", + "Common.define.effectData.textCredits": "字幕式", + "Common.define.effectData.textCrescentMoon": "新月形", + "Common.define.effectData.textCurveDown": "向下曲线", + "Common.define.effectData.textCurvedSquare": "圆角正方形", + "Common.define.effectData.textCurvedX": "弯曲的X", + "Common.define.effectData.textCurvyLeft": "向左曲线", + "Common.define.effectData.textCurvyRight": "向右曲线", + "Common.define.effectData.textCurvyStar": "弯曲星形", + "Common.define.effectData.textCustomPath": "自定义路径", + "Common.define.effectData.textCuverUp": "向上曲线", + "Common.define.effectData.textDarken": "加深", + "Common.define.effectData.textDecayingWave": "衰减波", + "Common.define.effectData.textDesaturate": "不饱和", + "Common.define.effectData.textDiagonalDownRight": "对角线向右下", + "Common.define.effectData.textDiagonalUpRight": "对角线向右上", + "Common.define.effectData.textDiamond": "菱形", + "Common.define.effectData.textDisappear": "消失", + "Common.define.effectData.textDissolveIn": "向内溶解", + "Common.define.effectData.textDissolveOut": "向外溶解", + "Common.define.effectData.textDown": "向下", + "Common.define.effectData.textDrop": "掉落", + "Common.define.effectData.textEmphasis": "强调效果", + "Common.define.effectData.textEntrance": "进入效果", + "Common.define.effectData.textEqualTriangle": "等边三角形", + "Common.define.effectData.textExciting": "华丽", + "Common.define.effectData.textExit": "退出效果", + "Common.define.effectData.textExpand": "展开", + "Common.define.effectData.textFade": "淡化", + "Common.define.effectData.textFigureFour": "双八串接", + "Common.define.effectData.textFillColor": "填充颜色", + "Common.define.effectData.textFlip": "翻转", + "Common.define.effectData.textFloat": "浮动", + "Common.define.effectData.textFloatDown": "下浮", + "Common.define.effectData.textFloatIn": "浮入", + "Common.define.effectData.textFloatOut": "浮出", + "Common.define.effectData.textFloatUp": "上浮", + "Common.define.effectData.textFlyIn": "飞入", + "Common.define.effectData.textFlyOut": "飞出", + "Common.define.effectData.textFontColor": "字体颜色", + "Common.define.effectData.textFootball": "橄榄球形", + "Common.define.effectData.textFromBottom": "自底部", + "Common.define.effectData.textFromBottomLeft": "从左下部", + "Common.define.effectData.textFromBottomRight": "从右下部", + "Common.define.effectData.textFromLeft": "从左侧", + "Common.define.effectData.textFromRight": "从右侧", + "Common.define.effectData.textFromTop": "从顶部", + "Common.define.effectData.textFromTopLeft": "从左上部", + "Common.define.effectData.textFromTopRight": "从右上部", + "Common.define.effectData.textFunnel": "漏斗", + "Common.define.effectData.textGrowShrink": "放大/缩小", + "Common.define.effectData.textGrowTurn": "翻转式由远及近", + "Common.define.effectData.textGrowWithColor": "彩色延伸", + "Common.define.effectData.textHeart": "心形", + "Common.define.effectData.textHeartbeat": "心跳", + "Common.define.effectData.textHexagon": "六边形", + "Common.define.effectData.textHorizontal": "水平的", + "Common.define.effectData.textHorizontalFigure": "水平数字8", + "Common.define.effectData.textHorizontalIn": "上下向中央收缩", + "Common.define.effectData.textHorizontalOut": "中央向上下展开", + "Common.define.effectData.textIn": "在", + "Common.define.effectData.textInFromScreenCenter": "从屏幕中心放大", + "Common.define.effectData.textInSlightly": "轻微放大", + "Common.define.effectData.textInToScreenCenter": "缩大到屏幕中心", + "Common.define.effectData.textInvertedSquare": "正方形结", + "Common.define.effectData.textInvertedTriangle": "三角结", + "Common.define.effectData.textLeft": "左侧", + "Common.define.effectData.textLeftDown": "左下", + "Common.define.effectData.textLeftUp": "左上", + "Common.define.effectData.textLighten": "变淡", + "Common.define.effectData.textLineColor": "线条颜色", + "Common.define.effectData.textLinesCurves": "直线曲线", + "Common.define.effectData.textLoopDeLoop": "涟漪", + "Common.define.effectData.textModerate": "中等", + "Common.define.effectData.textNeutron": "中子", + "Common.define.effectData.textObjectCenter": "对象中心", + "Common.define.effectData.textObjectColor": "对象颜色", + "Common.define.effectData.textOctagon": "八边形", + "Common.define.effectData.textOut": "向外", + "Common.define.effectData.textOutFromScreenBottom": "从屏幕底部缩小", + "Common.define.effectData.textOutSlightly": "轻微缩小", + "Common.define.effectData.textParallelogram": "平行四边形", + "Common.define.effectData.textPath": "动作路径", + "Common.define.effectData.textPeanut": "花生", + "Common.define.effectData.textPeekIn": "切入", + "Common.define.effectData.textPeekOut": "切出", + "Common.define.effectData.textPentagon": "五边形", + "Common.define.effectData.textPinwheel": "玩具风车", + "Common.define.effectData.textPlus": "加号", + "Common.define.effectData.textPointStar": "点星", + "Common.define.effectData.textPointStar4": "四角形", + "Common.define.effectData.textPointStar5": "五角星", + "Common.define.effectData.textPointStar6": "六角星", + "Common.define.effectData.textPointStar8": "八角星", + "Common.define.effectData.textPulse": "脉冲", + "Common.define.effectData.textRandomBars": "随机线条", + "Common.define.effectData.textRight": "右侧", + "Common.define.effectData.textRightDown": "右下", + "Common.define.effectData.textRightTriangle": "直角三角形", + "Common.define.effectData.textRightUp": "右上", + "Common.define.effectData.textRiseUp": "升起", + "Common.define.effectData.textSCurve1": "S形曲线1", + "Common.define.effectData.textSCurve2": "S形曲线2", + "Common.define.effectData.textShape": "形状", + "Common.define.effectData.textShimmer": "闪现", + "Common.define.effectData.textShrinkTurn": "收缩并旋转", + "Common.define.effectData.textSineWave": "正弦波", + "Common.define.effectData.textSinkDown": "下沉", + "Common.define.effectData.textSlideCenter": "幻灯片中心", + "Common.define.effectData.textSpecial": "特殊", + "Common.define.effectData.textSpin": "旋转", + "Common.define.effectData.textSpinner": "回旋", + "Common.define.effectData.textSpiralIn": "螺旋飞入", + "Common.define.effectData.textSpiralLeft": "螺旋向左", + "Common.define.effectData.textSpiralOut": "螺旋飞出", + "Common.define.effectData.textSpiralRight": "螺旋向右", + "Common.define.effectData.textSplit": "拆分", + "Common.define.effectData.textSpoke1": "1轮辐图案", + "Common.define.effectData.textSpoke2": "2轮辐图案", + "Common.define.effectData.textSpoke3": "3轮辐图案", + "Common.define.effectData.textSpoke4": "4轮辐图案", + "Common.define.effectData.textSpoke8": "8轮辐图案", + "Common.define.effectData.textSpring": "弹簧", + "Common.define.effectData.textSquare": "正方形", + "Common.define.effectData.textStairsDown": "向下阶梯", + "Common.define.effectData.textStretch": "伸展", + "Common.define.effectData.textStrips": "阶梯状", + "Common.define.effectData.textSubtle": "细微", + "Common.define.effectData.textSwivel": "旋转", + "Common.define.effectData.textSwoosh": "飘扬形", + "Common.define.effectData.textTeardrop": "泪珠形", + "Common.define.effectData.textTeeter": "跷跷板", + "Common.define.effectData.textToBottom": "到底部", + "Common.define.effectData.textToBottomLeft": "到左下部", + "Common.define.effectData.textToBottomRight": "到右下部", + "Common.define.effectData.textToFromScreenBottom": "缩小到屏幕底部", + "Common.define.effectData.textToLeft": "到左侧", + "Common.define.effectData.textToRight": "到右侧", + "Common.define.effectData.textToTop": "到顶部", + "Common.define.effectData.textToTopLeft": "到左上部", + "Common.define.effectData.textToTopRight": "到右上部", + "Common.define.effectData.textTransparency": "透明", + "Common.define.effectData.textTrapezoid": "梯形", + "Common.define.effectData.textTurnDown": "向下转", + "Common.define.effectData.textTurnDownRight": "向右下转", + "Common.define.effectData.textTurnUp": "向上转", + "Common.define.effectData.textTurnUpRight": "向右上转", + "Common.define.effectData.textUnderline": "下划线", + "Common.define.effectData.textUp": "上", + "Common.define.effectData.textVertical": "垂直", + "Common.define.effectData.textVerticalFigure": "垂直数字8", + "Common.define.effectData.textVerticalIn": "左右向中央收缩", + "Common.define.effectData.textVerticalOut": "中央向左右展开", + "Common.define.effectData.textWave": "波浪", + "Common.define.effectData.textWedge": "楔形", + "Common.define.effectData.textWheel": "轮子", + "Common.define.effectData.textWhip": "挥鞭式", + "Common.define.effectData.textWipe": "擦除", + "Common.define.effectData.textZigzag": "弯弯曲曲", + "Common.define.effectData.textZoom": "缩放", "Common.Translation.warnFileLocked": "另一个应用程序正在编辑本文件。您在可以继续编辑,并另存为副本。", "Common.Translation.warnFileLockedBtnEdit": "创建拷贝", "Common.Translation.warnFileLockedBtnView": "打开以查看", @@ -61,6 +250,8 @@ "Common.UI.ExtendedColorDialog.textNew": "新", "Common.UI.ExtendedColorDialog.textRGBErr": "输入的值不正确。
请输入介于0和255之间的数值。", "Common.UI.HSBColorPicker.textNoColor": "没有颜色", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "隐藏密码", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "显示密码", "Common.UI.SearchDialog.textHighlight": "高亮效果", "Common.UI.SearchDialog.textMatchCase": "区分大小写", "Common.UI.SearchDialog.textReplaceDef": "输入替换文字", @@ -104,6 +295,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "自动项目符号列表", "Common.Views.AutoCorrectDialog.textBy": "依据", "Common.Views.AutoCorrectDialog.textDelete": "删除", + "Common.Views.AutoCorrectDialog.textFLCells": "表格单元格的首字母大写", "Common.Views.AutoCorrectDialog.textFLSentence": "句首字母大写", "Common.Views.AutoCorrectDialog.textHyperlink": "带超链接的互联网与网络路径", "Common.Views.AutoCorrectDialog.textHyphens": "连带字符(-)改为破折号(-)", @@ -129,12 +321,14 @@ "Common.Views.Comments.mniAuthorDesc": "作者 Z到A", "Common.Views.Comments.mniDateAsc": "最旧", "Common.Views.Comments.mniDateDesc": "最新", + "Common.Views.Comments.mniFilterGroups": "按组筛选", "Common.Views.Comments.mniPositionAsc": "自上而下", "Common.Views.Comments.mniPositionDesc": "自下而上", "Common.Views.Comments.textAdd": "添加", "Common.Views.Comments.textAddComment": "添加批注", "Common.Views.Comments.textAddCommentToDoc": "添加批注到文档", "Common.Views.Comments.textAddReply": "添加回复", + "Common.Views.Comments.textAll": "所有", "Common.Views.Comments.textAnonym": "游客", "Common.Views.Comments.textCancel": "取消", "Common.Views.Comments.textClose": "关闭", @@ -148,6 +342,7 @@ "Common.Views.Comments.textResolve": "解决", "Common.Views.Comments.textResolved": "已解决", "Common.Views.Comments.textSort": "评论排序", + "Common.Views.Comments.textViewResolved": "您没有重开评论的权限", "Common.Views.CopyWarningDialog.textDontShow": "不要再显示此消息", "Common.Views.CopyWarningDialog.textMsg": "使用编辑器工具栏按钮和上下文菜单操作复制,剪切和粘贴操作将仅在此编辑器选项卡中执行。

要在编辑器选项卡之外复制或粘贴到应用程序,请使用以下键盘组合:", "Common.Views.CopyWarningDialog.textTitle": "复制,剪切和粘贴操作", @@ -312,6 +507,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "再次打开", "Common.Views.ReviewPopover.textReply": "回复", "Common.Views.ReviewPopover.textResolve": "解决", + "Common.Views.ReviewPopover.textViewResolved": "您没有重开评论的权限", "Common.Views.ReviewPopover.txtDeleteTip": "删除", "Common.Views.ReviewPopover.txtEditTip": "编辑", "Common.Views.SaveAsDlg.textLoading": "载入中", @@ -469,6 +665,7 @@ "PE.Controllers.Main.textLongName": "输入名称,要求小于128字符。", "PE.Controllers.Main.textNoLicenseTitle": "已达到许可证限制", "PE.Controllers.Main.textPaidFeature": "付费功能", + "PE.Controllers.Main.textReconnect": "连接已恢复", "PE.Controllers.Main.textRemember": "针对所有的文件记住我的选择", "PE.Controllers.Main.textRenameError": "用户名不能留空。", "PE.Controllers.Main.textRenameLabel": "输入名称,可用于协作。", @@ -750,6 +947,7 @@ "PE.Controllers.Main.warnNoLicense": "您已达到同时连接%1编辑器的限制。该文档将被打开仅供查看。
请联系%1销售团队以了解个人升级条款。", "PE.Controllers.Main.warnNoLicenseUsers": "您已达到%1编辑器的用户限制。请联系%1销售团队以了解个人升级条款。", "PE.Controllers.Main.warnProcessRightsChange": "您被拒绝编辑文件的权限。", + "PE.Controllers.Statusbar.textDisconnect": "连接失败
正在尝试连接。请检查连接设置。", "PE.Controllers.Statusbar.zoomText": "缩放%{0}", "PE.Controllers.Toolbar.confirmAddFontName": "您要保存的字体在当前设备上不可用。
使用其中一种系统字体显示文本样式,当可用时将使用保存的字体。
是否要继续?", "PE.Controllers.Toolbar.textAccent": "口音", @@ -1086,6 +1284,29 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "PE.Controllers.Viewport.textFitPage": "适合幻灯片", "PE.Controllers.Viewport.textFitWidth": "适合宽度", + "PE.Views.Animation.strDelay": "延迟", + "PE.Views.Animation.strDuration": "持续时间", + "PE.Views.Animation.strRepeat": "重复", + "PE.Views.Animation.strRewind": "后退", + "PE.Views.Animation.strStart": "开始", + "PE.Views.Animation.strTrigger": "触发器", + "PE.Views.Animation.textMoreEffects": "显示其他效果", + "PE.Views.Animation.textMoveEarlier": "向前移动", + "PE.Views.Animation.textMoveLater": "向后移动", + "PE.Views.Animation.textMultiple": "多个", + "PE.Views.Animation.textNone": "无", + "PE.Views.Animation.textOnClickOf": "单击:", + "PE.Views.Animation.textOnClickSequence": "在单击序列中", + "PE.Views.Animation.textStartAfterPrevious": "上一动画之后", + "PE.Views.Animation.textStartOnClick": "单击", + "PE.Views.Animation.textStartWithPrevious": "与上一动画同时", + "PE.Views.Animation.txtAddEffect": "添加动画", + "PE.Views.Animation.txtAnimationPane": "动画窗格", + "PE.Views.Animation.txtParameters": "参数", + "PE.Views.Animation.txtPreview": "预览", + "PE.Views.Animation.txtSec": "秒", + "PE.Views.AnimationDialog.textPreviewEffect": "预览效果", + "PE.Views.AnimationDialog.textTitle": "其他效果", "PE.Views.ChartSettings.textAdvanced": "显示高级设置", "PE.Views.ChartSettings.textChartType": "更改图表类型", "PE.Views.ChartSettings.textEditData": "编辑数据", @@ -1147,7 +1368,7 @@ "PE.Views.DocumentHolder.noSpellVariantsText": "没有变量", "PE.Views.DocumentHolder.originalSizeText": "实际大小", "PE.Views.DocumentHolder.removeHyperlinkText": "删除超链接", - "PE.Views.DocumentHolder.rightText": "右", + "PE.Views.DocumentHolder.rightText": "右侧", "PE.Views.DocumentHolder.rowText": "行", "PE.Views.DocumentHolder.selectText": "请选择", "PE.Views.DocumentHolder.spellcheckText": "拼写检查", @@ -1165,6 +1386,7 @@ "PE.Views.DocumentHolder.textCut": "剪切", "PE.Views.DocumentHolder.textDistributeCols": "分布列", "PE.Views.DocumentHolder.textDistributeRows": "分布行", + "PE.Views.DocumentHolder.textEditPoints": "编辑点", "PE.Views.DocumentHolder.textFlipH": "水平翻转", "PE.Views.DocumentHolder.textFlipV": "垂直翻转", "PE.Views.DocumentHolder.textFromFile": "从文件导入", @@ -1249,6 +1471,8 @@ "PE.Views.DocumentHolder.txtLimitUnder": "在文本限制", "PE.Views.DocumentHolder.txtMatchBrackets": "匹配括号到参数高度", "PE.Views.DocumentHolder.txtMatrixAlign": "矩阵对齐", + "PE.Views.DocumentHolder.txtMoveSlidesToEnd": "将幻灯片移至终点", + "PE.Views.DocumentHolder.txtMoveSlidesToStart": "将幻灯片移至开头", "PE.Views.DocumentHolder.txtNewSlide": "新幻灯片", "PE.Views.DocumentHolder.txtOverbar": "文本上一条", "PE.Views.DocumentHolder.txtPasteDestFormat": "使用目标主题", @@ -1434,6 +1658,7 @@ "PE.Views.ImageSettings.textCrop": "裁剪", "PE.Views.ImageSettings.textCropFill": "填满", "PE.Views.ImageSettings.textCropFit": "最佳", + "PE.Views.ImageSettings.textCropToShape": "裁剪为形状", "PE.Views.ImageSettings.textEdit": "修改", "PE.Views.ImageSettings.textEditObject": "编辑对象", "PE.Views.ImageSettings.textFitSlide": "适合幻灯片", @@ -1448,6 +1673,7 @@ "PE.Views.ImageSettings.textHintFlipV": "垂直翻转", "PE.Views.ImageSettings.textInsert": "替换图像", "PE.Views.ImageSettings.textOriginalSize": "实际大小", + "PE.Views.ImageSettings.textRecentlyUsed": "最近使用的", "PE.Views.ImageSettings.textRotate90": "旋转90°", "PE.Views.ImageSettings.textRotation": "旋转", "PE.Views.ImageSettings.textSize": "大小", @@ -1489,7 +1715,7 @@ "PE.Views.ParagraphSettings.textAt": "在", "PE.Views.ParagraphSettings.textAtLeast": "至少", "PE.Views.ParagraphSettings.textAuto": "多", - "PE.Views.ParagraphSettings.textExact": "精确地", + "PE.Views.ParagraphSettings.textExact": "精确", "PE.Views.ParagraphSettings.txtAutoText": "自动", "PE.Views.ParagraphSettingsAdvanced.noTabs": "指定的选项卡将显示在此字段中", "PE.Views.ParagraphSettingsAdvanced.strAllCaps": "全部大写", @@ -1497,7 +1723,7 @@ "PE.Views.ParagraphSettingsAdvanced.strIndent": "缩进", "PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "左", "PE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "行间距", - "PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "对", + "PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "右侧", "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "后", "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "前", "PE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "特别", @@ -1525,7 +1751,7 @@ "PE.Views.ParagraphSettingsAdvanced.textTabCenter": "中心", "PE.Views.ParagraphSettingsAdvanced.textTabLeft": "左", "PE.Views.ParagraphSettingsAdvanced.textTabPosition": "标签的位置", - "PE.Views.ParagraphSettingsAdvanced.textTabRight": "右", + "PE.Views.ParagraphSettingsAdvanced.textTabRight": "右侧", "PE.Views.ParagraphSettingsAdvanced.textTitle": "段落 - 高级设置", "PE.Views.ParagraphSettingsAdvanced.txtAutoText": "自动", "PE.Views.RightMenu.txtChartSettings": "图表设置", @@ -1569,6 +1795,7 @@ "PE.Views.ShapeSettings.textPatternFill": "模式", "PE.Views.ShapeSettings.textPosition": "位置", "PE.Views.ShapeSettings.textRadial": "径向", + "PE.Views.ShapeSettings.textRecentlyUsed": "最近使用的", "PE.Views.ShapeSettings.textRotate90": "旋转90°", "PE.Views.ShapeSettings.textRotation": "旋转", "PE.Views.ShapeSettings.textSelectImage": "选取图片", @@ -1619,7 +1846,7 @@ "PE.Views.ShapeSettingsAdvanced.textMiter": "米特", "PE.Views.ShapeSettingsAdvanced.textNofit": "不要使用自动适应", "PE.Views.ShapeSettingsAdvanced.textResizeFit": "调整形状以适应文本", - "PE.Views.ShapeSettingsAdvanced.textRight": "右", + "PE.Views.ShapeSettingsAdvanced.textRight": "右侧", "PE.Views.ShapeSettingsAdvanced.textRotation": "旋转", "PE.Views.ShapeSettingsAdvanced.textRound": "圆", "PE.Views.ShapeSettingsAdvanced.textShrink": "超出时压缩文本", @@ -1786,7 +2013,7 @@ "PE.Views.TableSettingsAdvanced.textDefaultMargins": "默认边距", "PE.Views.TableSettingsAdvanced.textLeft": "左", "PE.Views.TableSettingsAdvanced.textMargins": "元数据边缘", - "PE.Views.TableSettingsAdvanced.textRight": "右", + "PE.Views.TableSettingsAdvanced.textRight": "右侧", "PE.Views.TableSettingsAdvanced.textTitle": "表-高级设置", "PE.Views.TableSettingsAdvanced.textTop": "顶部", "PE.Views.TableSettingsAdvanced.textWidthSpaces": "边距", @@ -1885,6 +2112,7 @@ "PE.Views.Toolbar.textColumnsTwo": "两列", "PE.Views.Toolbar.textItalic": "斜体", "PE.Views.Toolbar.textListSettings": "列表设置", + "PE.Views.Toolbar.textRecentlyUsed": "最近使用的", "PE.Views.Toolbar.textShapeAlignBottom": "底部对齐", "PE.Views.Toolbar.textShapeAlignCenter": "居中对齐", "PE.Views.Toolbar.textShapeAlignLeft": "左对齐", @@ -1898,12 +2126,14 @@ "PE.Views.Toolbar.textStrikeout": "加删除线", "PE.Views.Toolbar.textSubscript": "下标", "PE.Views.Toolbar.textSuperscript": "上标", + "PE.Views.Toolbar.textTabAnimation": "动画", "PE.Views.Toolbar.textTabCollaboration": "协作", "PE.Views.Toolbar.textTabFile": "文件", "PE.Views.Toolbar.textTabHome": "主页", "PE.Views.Toolbar.textTabInsert": "插入", "PE.Views.Toolbar.textTabProtect": "保护", "PE.Views.Toolbar.textTabTransitions": "切换", + "PE.Views.Toolbar.textTabView": "视图", "PE.Views.Toolbar.textTitleError": "错误", "PE.Views.Toolbar.textUnderline": "下划线", "PE.Views.Toolbar.tipAddSlide": "添加幻灯片", @@ -1957,6 +2187,7 @@ "PE.Views.Toolbar.tipViewSettings": "视图设置", "PE.Views.Toolbar.txtDistribHor": "水平分布", "PE.Views.Toolbar.txtDistribVert": "垂直分布", + "PE.Views.Toolbar.txtDuplicateSlide": "复制幻灯片", "PE.Views.Toolbar.txtGroup": "团队", "PE.Views.Toolbar.txtObjectsAlign": "对齐所选对象", "PE.Views.Toolbar.txtScheme1": "公司地址", @@ -2000,7 +2231,7 @@ "PE.Views.Transitions.textLeft": "左", "PE.Views.Transitions.textNone": "无", "PE.Views.Transitions.textPush": "推送", - "PE.Views.Transitions.textRight": "右", + "PE.Views.Transitions.textRight": "右侧", "PE.Views.Transitions.textSmoothly": "平滑", "PE.Views.Transitions.textSplit": "拆分", "PE.Views.Transitions.textTop": "顶部", @@ -2018,5 +2249,13 @@ "PE.Views.Transitions.txtApplyToAll": "适用于所有幻灯片", "PE.Views.Transitions.txtParameters": "参数", "PE.Views.Transitions.txtPreview": "预览", - "PE.Views.Transitions.txtSec": "S" + "PE.Views.Transitions.txtSec": "S", + "PE.Views.ViewTab.textAlwaysShowToolbar": "始终显示工具栏", + "PE.Views.ViewTab.textFitToSlide": "适合幻灯片", + "PE.Views.ViewTab.textFitToWidth": "适合宽度", + "PE.Views.ViewTab.textInterfaceTheme": "界面主题", + "PE.Views.ViewTab.textNotes": "备注", + "PE.Views.ViewTab.textRulers": "标尺", + "PE.Views.ViewTab.textStatusBar": "状态栏", + "PE.Views.ViewTab.textZoom": "缩放" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/embed/locale/be.json b/apps/spreadsheeteditor/embed/locale/be.json index 25bc8d708..97b6f0a85 100644 --- a/apps/spreadsheeteditor/embed/locale/be.json +++ b/apps/spreadsheeteditor/embed/locale/be.json @@ -13,10 +13,14 @@ "SSE.ApplicationController.errorDefaultMessage": "Код памылкі: %1", "SSE.ApplicationController.errorFilePassProtect": "Файл абаронены паролем, яго немагчыма адкрыць.", "SSE.ApplicationController.errorFileSizeExceed": "Памер файла перавышае ліміт, вызначаны для вашага сервера.
Звярніцеся да адміністратара сервера дакументаў за дадатковымі звесткамі.", + "SSE.ApplicationController.errorForceSave": "Падчас захавання файла адбылася памылка. Калі ласка, выкарыстайце параметр \"Спампаваць як\", каб захаваць файл на цвёрдым дыску камп’ютара, альбо паспрабуйце яшчэ раз пазней.", "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Злучэнне з інтэрнэтам было адноўлена, і версія файла змянілася.
Перш чым працягнуць працу, неабходна спампаваць файл альбо скапіяваць яго змесціва, каб захаваць даныя, а пасля перазагрузіць старонку.", "SSE.ApplicationController.errorUserDrop": "На дадзены момант файл недаступны.", "SSE.ApplicationController.notcriticalErrorTitle": "Увага", + "SSE.ApplicationController.openErrorText": "Падчас адкрыцця файла адбылася памылка", "SSE.ApplicationController.scriptLoadError": "Занадта павольнае злучэнне, не ўсе кампаненты атрымалася загрузіць. Калі ласка, абнавіце старонку.", + "SSE.ApplicationController.textAnonymous": "Ананімны карыстальнік", + "SSE.ApplicationController.textGuest": "Госць", "SSE.ApplicationController.textLoadingDocument": "Загрузка табліцы", "SSE.ApplicationController.textOf": "з", "SSE.ApplicationController.txtClose": "Закрыць", diff --git a/apps/spreadsheeteditor/embed/locale/ca.json b/apps/spreadsheeteditor/embed/locale/ca.json index 1829cadd7..841b0042f 100644 --- a/apps/spreadsheeteditor/embed/locale/ca.json +++ b/apps/spreadsheeteditor/embed/locale/ca.json @@ -4,23 +4,23 @@ "common.view.modals.txtHeight": "Alçada", "common.view.modals.txtShare": "Comparteix l'enllaç", "common.view.modals.txtWidth": "Amplada", - "SSE.ApplicationController.convertationErrorText": "No s'ha pogut convertir", + "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": "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ó.
Contacteu amb l'administrador del servidor de documents.", + "SSE.ApplicationController.downloadErrorText": "La baixada ha fallat.", + "SSE.ApplicationController.downloadTextText": "S'està baixant el full de càlcul...", + "SSE.ApplicationController.errorAccessDeny": "No teniu permisos per realitzar aquesta acció.
Contacteu amb l'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 supera el límit establert pel servidor. Contacteu amb l'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.errorLoadingFont": "No s'han carregat els tipus de lletra.
Contacteu amb l'administrador del servidor de documents.", - "SSE.ApplicationController.errorTokenExpire": "El testimoni de seguretat del document ha caducat.
Contacteu amb l'administrador del servidor de documents.", - "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 la pàgina.", + "SSE.ApplicationController.errorFileSizeExceed": "La mida del fitxer supera el límit establert per al servidor.
Contacteu amb l'administrador del servidor de documents per a obtenir més informació.", + "SSE.ApplicationController.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitzeu l'opció «Anomena i baixa» per a desar el fitxer al disc dur de l’ordinador o torneu-ho a provar més endavant.", + "SSE.ApplicationController.errorLoadingFont": "No s'han carregat les famílies tipogràfiques.
Contacteu amb l'administrador del servidor de documents.", + "SSE.ApplicationController.errorTokenExpire": "El testimoni de seguretat del document ha caducat.
Contacteu amb l'administrador del servidor de documents.", + "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 a assegurar-vos que no es perdi res i, després, torneu a carregar la pàgina.", "SSE.ApplicationController.errorUserDrop": "No es pot accedir al fitxer.", "SSE.ApplicationController.notcriticalErrorTitle": "Advertiment", "SSE.ApplicationController.openErrorText": "S'ha produït un error en obrir el fitxer.", - "SSE.ApplicationController.scriptLoadError": "La connexió és massa lenta, alguns dels components no s’han pogut carregar. Torneu a carregar la pàgina.", + "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": "S'està carregant el full de càlcul", @@ -32,7 +32,7 @@ "SSE.ApplicationView.txtDownload": "Baixa", "SSE.ApplicationView.txtEmbed": "Incrusta", "SSE.ApplicationView.txtFileLocation": "Obre la ubicació del fitxer", - "SSE.ApplicationView.txtFullScreen": "Pantalla sencera", + "SSE.ApplicationView.txtFullScreen": "Pantalla completa", "SSE.ApplicationView.txtPrint": "Imprimeix", "SSE.ApplicationView.txtShare": "Comparteix" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/embed/locale/uk.json b/apps/spreadsheeteditor/embed/locale/uk.json index 985b253e9..9467549ba 100644 --- a/apps/spreadsheeteditor/embed/locale/uk.json +++ b/apps/spreadsheeteditor/embed/locale/uk.json @@ -13,10 +13,16 @@ "SSE.ApplicationController.errorDefaultMessage": "Код помилки: %1", "SSE.ApplicationController.errorFilePassProtect": "Документ захищений паролем і його неможливо відкрити.", "SSE.ApplicationController.errorFileSizeExceed": "Розмір файлу перевищує обмеження, встановлені для вашого сервера.
Для детальної інформації зверніться до адміністратора сервера документів.", + "SSE.ApplicationController.errorForceSave": "Під час збереження файлу сталася помилка.
Використовуйте опцію 'Завантажити як...', щоб зберегти файл на жорсткий диск комп'ютера або спробуйте пізніше.", + "SSE.ApplicationController.errorLoadingFont": "Шрифти не завантажені.
Будь ласка, зверніться до адміністратора Сервера документів.", + "SSE.ApplicationController.errorTokenExpire": "Термін дії токену безпеки документа закінчився.
Будь ласка, зв'яжіться з адміністратором сервера документів.", "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Підключення до Інтернету було відновлено, а версія файлу змінена.
Перш ніж продовжувати роботу, потрібно завантажити файл або скопіювати його вміст, щоб переконатися, що нічого не втрачено, а потім перезавантажити цю сторінку.", "SSE.ApplicationController.errorUserDrop": "На даний момент файл не доступний.", "SSE.ApplicationController.notcriticalErrorTitle": "Застереження", + "SSE.ApplicationController.openErrorText": "Під час відкриття файлу сталася помилка.", "SSE.ApplicationController.scriptLoadError": "З'єднання занадто повільне, деякі компоненти не вдалося завантажити. Перезавантажте сторінку.", + "SSE.ApplicationController.textAnonymous": "Анонімний користувач", + "SSE.ApplicationController.textGuest": "Гість", "SSE.ApplicationController.textLoadingDocument": "Завантаження електронної таблиці", "SSE.ApplicationController.textOf": "з", "SSE.ApplicationController.txtClose": "Закрити", @@ -25,6 +31,8 @@ "SSE.ApplicationController.waitText": "Будьласка, зачекайте...", "SSE.ApplicationView.txtDownload": "Завантажити", "SSE.ApplicationView.txtEmbed": "Вставити", + "SSE.ApplicationView.txtFileLocation": "Відкрити розташування файлу", "SSE.ApplicationView.txtFullScreen": "Повноекранний режим", + "SSE.ApplicationView.txtPrint": "Друк", "SSE.ApplicationView.txtShare": "Доступ" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/be.json b/apps/spreadsheeteditor/main/locale/be.json index bbbb99d24..253ad5464 100644 --- a/apps/spreadsheeteditor/main/locale/be.json +++ b/apps/spreadsheeteditor/main/locale/be.json @@ -4,9 +4,14 @@ "Common.Controllers.Chat.textEnterMessage": "Увядзіце сюды сваё паведамленне", "Common.define.chartData.textArea": "Вобласць", "Common.define.chartData.textBar": "Лінія", + "Common.define.chartData.textBarNormal3d": "Трохвымерная гістаграма з групаваннем", + "Common.define.chartData.textBarNormal3dPerspective": "Трохвымерная гістаграма", + "Common.define.chartData.textBarStacked3d": "Трохвымерная састаўная гістаграма", + "Common.define.chartData.textBarStackedPer3d": "Трохвымерная састаўная гістаграма 100%", "Common.define.chartData.textCharts": "Дыяграмы", "Common.define.chartData.textColumn": "Гістаграма", "Common.define.chartData.textColumnSpark": "Гістаграма", + "Common.define.chartData.textHBarNormal3d": "Трохвымерная лінейная з групаваннем", "Common.define.chartData.textLine": "Графік", "Common.define.chartData.textLineSpark": "Графік", "Common.define.chartData.textPie": "Па крузе", @@ -15,7 +20,23 @@ "Common.define.chartData.textStock": "Біржа", "Common.define.chartData.textSurface": "Паверхня", "Common.define.chartData.textWinLossSpark": "Выйгрыш/параза", + "Common.define.conditionalData.textAbove": "вышэй", + "Common.define.conditionalData.textAverage": "Сярэдняе", + "Common.define.conditionalData.textBegins": "Пачынаецца з", + "Common.define.conditionalData.textBelow": "ніжэй", + "Common.define.conditionalData.textBetween": "паміж", + "Common.define.conditionalData.textBlank": "Пусты", + "Common.define.conditionalData.textBottom": "Ніжняе", + "Common.define.conditionalData.textContains": "Змяшчае", + "Common.define.conditionalData.textEnds": "Заканчваецца на", + "Common.define.conditionalData.textError": "Памылка", + "Common.define.conditionalData.textFormula": "Формула", + "Common.define.conditionalData.textGreater": "Больш", + "Common.define.conditionalData.textGreaterEq": "Больш альбо роўна", + "Common.define.conditionalData.textLessEq": "Менш альбо роўна", "Common.Translation.warnFileLocked": "Дакумент выкарыстоўваецца іншай праграмай. Вы можаце працягнуць рэдагаванне і захаваць яго як копію.", + "Common.UI.ButtonColored.textAutoColor": "Аўтаматычна", + "Common.UI.ButtonColored.textNewColor": "Дадаць новы адвольны колер", "Common.UI.ComboBorderSize.txtNoBorders": "Без межаў", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Без межаў", "Common.UI.ComboDataView.emptyComboText": "Без стыляў", @@ -39,6 +60,8 @@ "Common.UI.SynchronizeTip.textSynchronize": "Дакумент быў зменены іншым карыстальнікам.
Націсніце, каб захаваць свае змены і загрузіць абнаўленні.", "Common.UI.ThemeColorPalette.textStandartColors": "Стандартныя колеры", "Common.UI.ThemeColorPalette.textThemeColors": "Колеры тэмы", + "Common.UI.Themes.txtThemeDark": "Цёмная", + "Common.UI.Themes.txtThemeLight": "Светлая", "Common.UI.Window.cancelButtonText": "Скасаваць", "Common.UI.Window.closeButtonText": "Закрыць", "Common.UI.Window.noButtonText": "Не", @@ -60,6 +83,7 @@ "Common.Views.About.txtVersion": "Версія", "Common.Views.AutoCorrectDialog.textAdd": "Дадаць", "Common.Views.AutoCorrectDialog.textApplyAsWork": "Ужываць падчас працы", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Аўтазамена", "Common.Views.AutoCorrectDialog.textAutoFormat": "Аўтафарматаванне падчас уводу", "Common.Views.AutoCorrectDialog.textBy": "На", "Common.Views.AutoCorrectDialog.textDelete": "Выдаліць", @@ -83,6 +107,7 @@ "Common.Views.Comments.textAddComment": "Дадаць каментар", "Common.Views.Comments.textAddCommentToDoc": "Дадаць каментар да дакумента", "Common.Views.Comments.textAddReply": "Дадаць адказ", + "Common.Views.Comments.textAll": "Усе", "Common.Views.Comments.textAnonym": "Госць", "Common.Views.Comments.textCancel": "Скасаваць", "Common.Views.Comments.textClose": "Закрыць", @@ -127,6 +152,9 @@ "Common.Views.Header.tipViewUsers": "Прагляд карыстальнікаў і кіраванне правамі на доступ да дакумента", "Common.Views.Header.txtAccessRights": "Змяніць правы на доступ", "Common.Views.Header.txtRename": "Змяніць назву", + "Common.Views.History.textCloseHistory": "Закрыць гісторыю", + "Common.Views.History.textHideAll": "Схаваць падрабязныя змены", + "Common.Views.History.textShow": "Пашырыць", "Common.Views.ImageFromUrlDialog.textUrl": "Устаўце URL выявы:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Гэтае поле неабходна запоўніць", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Гэтае поле павінна быць URL-адрасам фармату \"http://www.example.com\"", @@ -144,6 +172,7 @@ "Common.Views.ListSettingsDialog.txtTitle": "Налады спіса", "Common.Views.ListSettingsDialog.txtType": "Тып", "Common.Views.OpenDialog.closeButtonText": "Закрыць файл", + "Common.Views.OpenDialog.textInvalidRange": "Хібны дыяпазон ячэек", "Common.Views.OpenDialog.txtAdvanced": "Дадаткова", "Common.Views.OpenDialog.txtColon": "Двукроп’е", "Common.Views.OpenDialog.txtComma": "Коска", @@ -241,6 +270,8 @@ "Common.Views.ReviewPopover.textOpenAgain": "Адкрыць зноў", "Common.Views.ReviewPopover.textReply": "Адказаць", "Common.Views.ReviewPopover.textResolve": "Вырашыць", + "Common.Views.ReviewPopover.txtDeleteTip": "Выдаліць", + "Common.Views.ReviewPopover.txtEditTip": "Рэдагаваць", "Common.Views.SaveAsDlg.textLoading": "Загрузка", "Common.Views.SaveAsDlg.textTitle": "Каталог для захавання", "Common.Views.SelectFileDlg.textLoading": "Загрузка", @@ -295,6 +326,9 @@ "Common.Views.SymbolTableDialog.textSymbols": "Сімвалы", "Common.Views.SymbolTableDialog.textTitle": "Сімвал", "Common.Views.SymbolTableDialog.textTradeMark": "Сімвал таварнага знака", + "Common.Views.UserNameDialog.textLabel": "Адмеціна:", + "Common.Views.UserNameDialog.textLabelError": "Адмеціна не можа быць пустой", + "SSE.Controllers.DataTab.textColumns": "Слупкі", "SSE.Controllers.DataTab.textWizard": "Тэкст па слупках", "SSE.Controllers.DataTab.txtExpand": "Пашырыць", "SSE.Controllers.DataTab.txtExpandRemDuplicates": "Даныя побач з абраным дыяпазонам не выдаляцца. Хочаце пашырыць абраны дыяпазон, каб уключыць даныя з вакольных ячэек, альбо працягнуць толькі з абраным дыяпазонам? ", @@ -466,6 +500,7 @@ "SSE.Controllers.LeftMenu.textByRows": "Па радках", "SSE.Controllers.LeftMenu.textFormulas": "Формулы", "SSE.Controllers.LeftMenu.textItemEntireCell": "Усё змесціва ячэек", + "SSE.Controllers.LeftMenu.textLoadHistory": "Загрузка гісторыі версій…", "SSE.Controllers.LeftMenu.textLookin": "Шукаць у", "SSE.Controllers.LeftMenu.textNoTextFound": "Шукаемых даных не знойдзена. Калі ласка, змяніце параметры пошуку.", "SSE.Controllers.LeftMenu.textReplaceSkipped": "Заменена. Мінута ўваходжанняў - {0}.", @@ -560,7 +595,7 @@ "SSE.Controllers.Main.errorWrongBracketsCount": "Ва ўведзенай формуле ёсць памылка.
Выкарыстана хібная колькасць дужак.", "SSE.Controllers.Main.errorWrongOperator": "Ва ўведзенай формуле ёсць памылка. Выкарыстаны хібны аператар.
Калі ласка, выпраўце памылку.", "SSE.Controllers.Main.errRemDuplicates": "Знойдзена і выдалена паўторных значэнняў: {0}, засталося непаўторных значэнняў: {1}.", - "SSE.Controllers.Main.leavePageText": "У электроннай табліцы ёсць незахаваныя змены. Каб захаваць іх, націсніце \"Застацца на гэтай старонцы\", пасля \"Захаваць\". Націсніце \"Сысці са старонкі\", каб скінуць усе незахаваныя змены.", + "SSE.Controllers.Main.leavePageText": "У электроннай табліцы ёсць незахаваныя змены. Каб захаваць іх, націсніце \"Застацца на гэтай старонцы\", пасля \"Захаваць\". Націсніце \"Пакінуць старонку\", каб скінуць усе незахаваныя змены.", "SSE.Controllers.Main.loadFontsTextText": "Загрузка даных…", "SSE.Controllers.Main.loadFontsTitleText": "Загрузка даных", "SSE.Controllers.Main.loadFontTextText": "Загрузка даных…", @@ -585,13 +620,18 @@ "SSE.Controllers.Main.saveTitleText": "Захаванне табліцы", "SSE.Controllers.Main.scriptLoadError": "Занадта павольнае злучэнне, не ўсе кампаненты атрымалася загрузіць. Калі ласка, абнавіце старонку.", "SSE.Controllers.Main.textAnonymous": "Ананімны карыстальнік", + "SSE.Controllers.Main.textApplyAll": "Ужыць да ўсіх раўнанняў", "SSE.Controllers.Main.textBuyNow": "Наведаць сайт", + "SSE.Controllers.Main.textChangesSaved": "Усе змены захаваныя", "SSE.Controllers.Main.textClose": "Закрыць", "SSE.Controllers.Main.textCloseTip": "Пстрыкніце, каб закрыць гэтую падказку", "SSE.Controllers.Main.textConfirm": "Пацвярджэнне", "SSE.Controllers.Main.textContactUs": "Звязацца з аддзелам продажу", "SSE.Controllers.Main.textCustomLoader": "Звярніце ўвагу, што па ўмовах ліцэнзіі вы не можаце змяняць экран загрузкі.
Калі ласка, звярніцеся ў аддзел продажу.", + "SSE.Controllers.Main.textDisconnect": "Злучэнне страчана", + "SSE.Controllers.Main.textGuest": "Госць", "SSE.Controllers.Main.textHasMacros": "Файл змяшчае макрасы з аўтазапускам.
Хочаце запусціць макрасы?", + "SSE.Controllers.Main.textLearnMore": "Падрабязней", "SSE.Controllers.Main.textLoadingDocument": "Загрузка табліцы", "SSE.Controllers.Main.textNo": "Не", "SSE.Controllers.Main.textNoLicenseTitle": "Ліцэнзійнае абмежаванне", @@ -620,15 +660,18 @@ "SSE.Controllers.Main.txtDate": "Дата", "SSE.Controllers.Main.txtDiagramTitle": "Загаловак дыяграмы", "SSE.Controllers.Main.txtEditingMode": "Актывацыя рэжыму рэдагавання…", + "SSE.Controllers.Main.txtErrorLoadHistory": "Не атрымалася загрузіць гісторыю", "SSE.Controllers.Main.txtFiguredArrows": "Фігурныя стрэлкі", "SSE.Controllers.Main.txtFile": "Файл", "SSE.Controllers.Main.txtGrandTotal": "Агульны вынік", + "SSE.Controllers.Main.txtGroup": "Згрупаваць", "SSE.Controllers.Main.txtLines": "Лініі", "SSE.Controllers.Main.txtMath": "Матэматычныя знакі", + "SSE.Controllers.Main.txtMonths": "Месяцы", "SSE.Controllers.Main.txtMultiSelect": "Масавы выбар (Alt+S) ", "SSE.Controllers.Main.txtPage": "Старонка", "SSE.Controllers.Main.txtPageOf": "Старонка %1 з %2", - "SSE.Controllers.Main.txtPages": "Старонак", + "SSE.Controllers.Main.txtPages": "Старонкі", "SSE.Controllers.Main.txtPreparedBy": "Падрыхтаваў", "SSE.Controllers.Main.txtPrintArea": "Вобласць_друку", "SSE.Controllers.Main.txtRectangles": "Прамавугольнікі", @@ -824,7 +867,7 @@ "SSE.Controllers.Main.txtStyle_Normal": "Звычайны", "SSE.Controllers.Main.txtStyle_Note": "Нататка", "SSE.Controllers.Main.txtStyle_Output": "Вывад", - "SSE.Controllers.Main.txtStyle_Percent": "У адсотках", + "SSE.Controllers.Main.txtStyle_Percent": "Адсотак", "SSE.Controllers.Main.txtStyle_Title": "Назва", "SSE.Controllers.Main.txtStyle_Total": "Агулам", "SSE.Controllers.Main.txtStyle_Warning_Text": "Тэкст папярэджання", @@ -836,6 +879,8 @@ "SSE.Controllers.Main.txtYAxis": "Вось Y", "SSE.Controllers.Main.unknownErrorText": "Невядомая памылка.", "SSE.Controllers.Main.unsupportedBrowserErrorText": "Ваш браўзер не падтрымліваецца.", + "SSE.Controllers.Main.uploadDocFileCountMessage": "Ніводнага дакумента не загружана. ", + "SSE.Controllers.Main.uploadDocSizeMessage": "Перасягнуты максімальны памер дакумента.", "SSE.Controllers.Main.uploadImageExtMessage": "Невядомы фармат выявы.", "SSE.Controllers.Main.uploadImageFileCountMessage": "Выяў не запампавана.", "SSE.Controllers.Main.uploadImageSizeMessage": "Перасягнуты максімальны памер выявы.", @@ -846,6 +891,8 @@ "SSE.Controllers.Main.warnBrowserZoom": "Бягучыя налады маштабу старонкі падтрымліваюцца браўзерам толькі часткова. Калі ласка, скінце да прадвызначанага значэння націснуўшы Ctrl+О.", "SSE.Controllers.Main.warnLicenseExceeded": "Вы дасягнулі абмежавання па адначасовай колькасці падлучэнняў да рэдактараў %1.Гэты дакумент будзе адкрыты для прагляду.
Звяжыцеся з адміністратарам, каб даведацца больш.", "SSE.Controllers.Main.warnLicenseExp": "Тэрмін дзеяння ліцэнзіі сышоў.
Калі ласка, абнавіце ліцэнзію, пасля абнавіце старонку.", + "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Тэрмін дзеяння ліцэнзіі сышоў.
У вас няма доступу да функцый рэдагавання дакументаў.
Калі ласка, звярніцеся да адміністратара.", + "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Патрэбна абнавіць ліцэнзію.
У вас абмежаваны доступ да функцый рэдагавання дакументаў.
Каб атрымаць поўны доступ, звярніцеся да адміністратара", "SSE.Controllers.Main.warnLicenseUsersExceeded": "Вы дасягнулі абмежавання па адначасовай колькасці падлучэнняў да рэдактараў %1.
Звяжыцеся з адміністратарам, каб даведацца больш.", "SSE.Controllers.Main.warnNoLicense": "Вы дасягнулі абмежавання па адначасовай колькасці падлучэнняў да рэдактараў %1.Гэты дакумент будзе адкрыты для прагляду.
Напішыце ў аддзел продажу %1,каб абмеркаваць асабістыя ўмовы ліцэнзіявання.", "SSE.Controllers.Main.warnNoLicenseUsers": "Вы дасягнулі абмежавання па адначасовай колькасці падлучэнняў да рэдактараў %1.
Напішыце ў аддзел продажу %1,каб абмеркаваць асабістыя ўмовы ліцэнзіявання.", @@ -1175,14 +1222,14 @@ "SSE.Controllers.Toolbar.txtSymbol_mu": "Мю", "SSE.Controllers.Toolbar.txtSymbol_nabla": "Набла", "SSE.Controllers.Toolbar.txtSymbol_neq": "Не роўна", - "SSE.Controllers.Toolbar.txtSymbol_ni": "Утрымлівае як чальца", + "SSE.Controllers.Toolbar.txtSymbol_ni": "Утрымлівае як член", "SSE.Controllers.Toolbar.txtSymbol_not": "Знак адмаўлення", "SSE.Controllers.Toolbar.txtSymbol_notexists": "Не існуе", "SSE.Controllers.Toolbar.txtSymbol_nu": "Ню", "SSE.Controllers.Toolbar.txtSymbol_o": "Амікрон", "SSE.Controllers.Toolbar.txtSymbol_omega": "Амега", "SSE.Controllers.Toolbar.txtSymbol_partial": "Часны дыферэнцыял", - "SSE.Controllers.Toolbar.txtSymbol_percent": "Адсотак", + "SSE.Controllers.Toolbar.txtSymbol_percent": "У адсотках", "SSE.Controllers.Toolbar.txtSymbol_phi": "Фі", "SSE.Controllers.Toolbar.txtSymbol_pi": "Пі", "SSE.Controllers.Toolbar.txtSymbol_plus": "Плюс", @@ -1225,6 +1272,7 @@ "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Падзяляльнік разрадаў тысяч", "SSE.Views.AdvancedSeparatorDialog.textLabel": "Налады вызначэння лічбавых даных", "SSE.Views.AdvancedSeparatorDialog.textTitle": "Дадатковыя налады", + "SSE.Views.AdvancedSeparatorDialog.txtNone": "(няма)", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Адвольны фільтр", "SSE.Views.AutoFilterDialog.textAddSelection": "Дадаць вылучанае ў фільтр", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Пустыя}", @@ -1287,12 +1335,13 @@ "SSE.Views.CellSettings.textGradient": "Градыент", "SSE.Views.CellSettings.textGradientColor": "Колер", "SSE.Views.CellSettings.textGradientFill": "Градыентная заліўка", + "SSE.Views.CellSettings.textItems": "элементаў", "SSE.Views.CellSettings.textLinear": "Лінейны", "SSE.Views.CellSettings.textNoFill": "Без заліўкі", "SSE.Views.CellSettings.textOrientation": "Арыентацыя тэксту", "SSE.Views.CellSettings.textPattern": "Узор", "SSE.Views.CellSettings.textPatternFill": "Узор", - "SSE.Views.CellSettings.textPosition": "Пазіцыя", + "SSE.Views.CellSettings.textPosition": "Пасада", "SSE.Views.CellSettings.textRadial": "Радыяльны", "SSE.Views.CellSettings.textSelectBorders": "Абярыце межы, да якіх патрэбна ўжыць абраны стыль", "SSE.Views.CellSettings.tipAddGradientPoint": "Дадаць кропку градыента", @@ -1350,6 +1399,7 @@ "SSE.Views.ChartSettings.strTemplate": "Шаблон", "SSE.Views.ChartSettings.textAdvanced": "Дадатковыя налады", "SSE.Views.ChartSettings.textBorderSizeErr": "Уведзена хібнае значэнне.
Калі ласка, ўвядзіце значэнне ад 0 да 1584 пунктаў.", + "SSE.Views.ChartSettings.textChangeType": "Змяніць тып", "SSE.Views.ChartSettings.textChartType": "Змяніць тып дыяграмы", "SSE.Views.ChartSettings.textEditData": "Рэдагаваць даныя і месца", "SSE.Views.ChartSettings.textFirstPoint": "Першая кропка", @@ -1493,6 +1543,7 @@ "SSE.Views.CreatePivotDialog.textSelectData": "Абраць даныя", "SSE.Views.CreatePivotDialog.textTitle": "Стварыць зводную табліцу", "SSE.Views.CreatePivotDialog.txtEmpty": "Гэтае поле неабходна запоўніць", + "SSE.Views.CreateSparklineDialog.textInvalidRange": "Хібны дыяпазон ячэек", "SSE.Views.DataTab.capBtnGroup": "Згрупаваць", "SSE.Views.DataTab.capBtnTextCustomSort": "Адвольнае сартаванне", "SSE.Views.DataTab.capBtnTextRemDuplicates": "Выдаліць паўторы", @@ -1510,6 +1561,20 @@ "SSE.Views.DataTab.tipRemDuplicates": "Выдаліць з аркуша паўторныя радкі", "SSE.Views.DataTab.tipToColumns": "Падзяліць тэкст ячэйкі па слупках", "SSE.Views.DataTab.tipUngroup": "Разгрупаваць дыяпазон ячэек", + "SSE.Views.DataValidationDialog.textData": "Даныя", + "SSE.Views.DataValidationDialog.textFormula": "Формула", + "SSE.Views.DataValidationDialog.textMax": "Максімум", + "SSE.Views.DataValidationDialog.textMessage": "Паведамленне", + "SSE.Views.DataValidationDialog.textMin": "Мінімум", + "SSE.Views.DataValidationDialog.txtBetween": "паміж", + "SSE.Views.DataValidationDialog.txtDate": "Дата", + "SSE.Views.DataValidationDialog.txtDecimal": "Дзесятковыя знакі", + "SSE.Views.DataValidationDialog.txtEqual": "Роўна", + "SSE.Views.DataValidationDialog.txtGreaterThan": "Больш", + "SSE.Views.DataValidationDialog.txtGreaterThanOrEqual": "Больш альбо роўна", + "SSE.Views.DataValidationDialog.txtLessThan": "Менш за", + "SSE.Views.DataValidationDialog.txtLessThanOrEqual": "Менш альбо роўна", + "SSE.Views.DataValidationDialog.txtNotEqual": "Не роўна", "SSE.Views.DigitalFilterDialog.capAnd": "і", "SSE.Views.DigitalFilterDialog.capCondition1": "роўна", "SSE.Views.DigitalFilterDialog.capCondition10": "не заканчваецца на", @@ -1566,6 +1631,7 @@ "SSE.Views.DocumentHolder.textArrangeForward": "Перамясціць уперад", "SSE.Views.DocumentHolder.textArrangeFront": "Перанесці на пярэдні план", "SSE.Views.DocumentHolder.textAverage": "Сярэдняе", + "SSE.Views.DocumentHolder.textBullets": "Адзнакі", "SSE.Views.DocumentHolder.textCount": "Колькасць", "SSE.Views.DocumentHolder.textCrop": "Абрэзаць", "SSE.Views.DocumentHolder.textCropFill": "Заліўка", @@ -1620,6 +1686,7 @@ "SSE.Views.DocumentHolder.txtCurrency": "Грашовы", "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Адвольная шырыня слупка", "SSE.Views.DocumentHolder.txtCustomRowHeight": "Адвольная вышыня радка", + "SSE.Views.DocumentHolder.txtCustomSort": "Адвольнае сартаванне", "SSE.Views.DocumentHolder.txtCut": "Выразаць", "SSE.Views.DocumentHolder.txtDate": "Дата", "SSE.Views.DocumentHolder.txtDelete": "Выдаліць", @@ -1641,7 +1708,7 @@ "SSE.Views.DocumentHolder.txtNumber": "Лічбавы", "SSE.Views.DocumentHolder.txtNumFormat": "Фармат нумара", "SSE.Views.DocumentHolder.txtPaste": "Уставіць", - "SSE.Views.DocumentHolder.txtPercentage": "У адсотках", + "SSE.Views.DocumentHolder.txtPercentage": "Адсотак", "SSE.Views.DocumentHolder.txtReapply": "Ужыць паўторна", "SSE.Views.DocumentHolder.txtRow": "Радок", "SSE.Views.DocumentHolder.txtRowHeight": "Вызначыць вышыню радка", @@ -1707,6 +1774,7 @@ "SSE.Views.FileMenu.btnSaveCopyAsCaption": "Захаваць копію як…", "SSE.Views.FileMenu.btnSettingsCaption": "Дадатковыя налады…", "SSE.Views.FileMenu.btnToEditCaption": "Рэдагаваць табліцу", + "SSE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Стварыць новы", "SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Ужыць", "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Дадаць аўтара", "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Дадаць тэкст", @@ -1802,6 +1870,40 @@ "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Агульныя", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Налады старонкі", "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Праверка правапісу", + "SSE.Views.FormatRulesEditDlg.fillColor": "Колер запаўнення", + "SSE.Views.FormatRulesEditDlg.textAllBorders": "Усе межы", + "SSE.Views.FormatRulesEditDlg.textAutomatic": "Аўтаматычна", + "SSE.Views.FormatRulesEditDlg.textAxis": "Восі", + "SSE.Views.FormatRulesEditDlg.textBold": "Тоўсты", + "SSE.Views.FormatRulesEditDlg.textBorder": "Мяжа", + "SSE.Views.FormatRulesEditDlg.textBordersStyle": "Стыль межаў", + "SSE.Views.FormatRulesEditDlg.textBottomBorders": "Ніжнія межы", + "SSE.Views.FormatRulesEditDlg.textClear": "Ачысціць", + "SSE.Views.FormatRulesEditDlg.textCustom": "Адвольны", + "SSE.Views.FormatRulesEditDlg.textDiagDownBorder": "Дыяганальная мяжа зверху ўніз", + "SSE.Views.FormatRulesEditDlg.textDiagUpBorder": "Дыяганальная мяжа знізу ўверх", + "SSE.Views.FormatRulesEditDlg.textFill": "Заліўка", + "SSE.Views.FormatRulesEditDlg.textFormat": "Фарматаванне", + "SSE.Views.FormatRulesEditDlg.textInvalidRange": "ПАМЫЛКА! хібны дыяпазон ячэек", + "SSE.Views.FormatRulesEditDlg.textItalic": "Курсіў", + "SSE.Views.FormatRulesEditDlg.textItem": "Элемент", + "SSE.Views.FormatRulesEditDlg.textLeftBorders": "Левыя межы", + "SSE.Views.FormatRulesEditDlg.textMiddleBorders": "Унутраныя гарызантальныя межы", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Дадаць новы адвольны колер", + "SSE.Views.FormatRulesEditDlg.textNoBorders": "Без межаў", + "SSE.Views.FormatRulesEditDlg.textNone": "Няма", + "SSE.Views.FormatRulesEditDlg.tipBorders": "Межы", + "SSE.Views.FormatRulesEditDlg.txtAccounting": "Фінансавы", + "SSE.Views.FormatRulesEditDlg.txtCurrency": "Грашовы", + "SSE.Views.FormatRulesEditDlg.txtDate": "Дата", + "SSE.Views.FormatRulesEditDlg.txtFraction": "Дроб", + "SSE.Views.FormatRulesManagerDlg.guestText": "Госць", + "SSE.Views.FormatRulesManagerDlg.textAbove": "Вышэй за сярэдняе", + "SSE.Views.FormatRulesManagerDlg.textBelow": "Ніжэй за сярэдняе", + "SSE.Views.FormatRulesManagerDlg.textDelete": "Выдаліць", + "SSE.Views.FormatRulesManagerDlg.textEdit": "Рэдагаваць", + "SSE.Views.FormatRulesManagerDlg.textFormat": "Фарматаванне", + "SSE.Views.FormatRulesManagerDlg.textNew": "Новы", "SSE.Views.FormatSettingsDialog.textCategory": "Катэгорыя", "SSE.Views.FormatSettingsDialog.textDecimal": "Дзесятковыя знакі", "SSE.Views.FormatSettingsDialog.textFormat": "Фармат", @@ -1995,7 +2097,7 @@ "SSE.Views.NamedRangeEditDlg.textInvalidName": "Назва мусіць пачынацца з літары альбо ніжняга падкрэслівання і не павінна змяшчаць непрыдатных сімвалаў.", "SSE.Views.NamedRangeEditDlg.textInvalidRange": "ПАМЫЛКА! хібны дыяпазон ячэек", "SSE.Views.NamedRangeEditDlg.textIsLocked": "ПАМЫЛКА! Гэты элемент рэдагуецца іншым карыстальнікам.", - "SSE.Views.NamedRangeEditDlg.textName": "Імя", + "SSE.Views.NamedRangeEditDlg.textName": "Назва", "SSE.Views.NamedRangeEditDlg.textReservedName": "Формулы ў ячэйках ужо змяшчаюць назву, якую вы спрабуеце выкарыстоўваць. Выкарыстайце іншую назву.", "SSE.Views.NamedRangeEditDlg.textScope": "Вобласць", "SSE.Views.NamedRangeEditDlg.textSelectData": "Абраць даныя", @@ -2097,6 +2199,8 @@ "SSE.Views.PivotDigitalFilterDialog.txtAnd": "і", "SSE.Views.PivotDigitalFilterDialog.txtTitleLabel": "Фільтр адмецін", "SSE.Views.PivotDigitalFilterDialog.txtTitleValue": "Фільтр значэнняў", + "SSE.Views.PivotGroupDialog.textBy": "На", + "SSE.Views.PivotGroupDialog.textDays": "дні", "SSE.Views.PivotSettings.textAdvanced": "Дадатковыя налады", "SSE.Views.PivotSettings.textColumns": "Слупкі", "SSE.Views.PivotSettings.textFields": "Абраць палі", @@ -2221,6 +2325,27 @@ "SSE.Views.PrintTitlesDialog.textSelectRange": "Абраць дыяпазон", "SSE.Views.PrintTitlesDialog.textTitle": "Друкаваць загалоўкі", "SSE.Views.PrintTitlesDialog.textTop": "Паўтараць радкі зверху", + "SSE.Views.PrintWithPreview.txtActualSize": "Актуальны памер", + "SSE.Views.PrintWithPreview.txtAllSheets": "Усе аркушы", + "SSE.Views.PrintWithPreview.txtCurrentSheet": "Бягучы аркуш", + "SSE.Views.PrintWithPreview.txtCustom": "Адвольны", + "SSE.Views.PrintWithPreview.txtCustomOptions": "Адвольныя параметры", + "SSE.Views.PrintWithPreview.txtFitCols": "Умясціць усе слупкі на адной старонцы", + "SSE.Views.PrintWithPreview.txtFitPage": "Умясціць аркуш на адной старонцы", + "SSE.Views.PrintWithPreview.txtFitRows": "Умясціць усе радкі на адной старонцы", + "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Налады калантытулаў", + "SSE.Views.PrintWithPreview.txtIgnore": "Ігнараваць вобласць друку", + "SSE.Views.PrintWithPreview.txtLandscape": "Альбомная", + "SSE.Views.PrintWithPreview.txtLeft": "Злева", + "SSE.Views.PrintWithPreview.txtMargins": "Палі", + "SSE.Views.ProtectDialog.textInvalidRange": "ПАМЫЛКА! хібны дыяпазон ячэек", + "SSE.Views.ProtectDialog.txtIncorrectPwd": "Паролі адрозніваюцца", + "SSE.Views.ProtectDialog.txtInsCols": "Уставіць слупкі", + "SSE.Views.ProtectRangesDlg.guestText": "Госць", + "SSE.Views.ProtectRangesDlg.textDelete": "Выдаліць", + "SSE.Views.ProtectRangesDlg.textEdit": "Рэдагаваць", + "SSE.Views.ProtectRangesDlg.textNew": "Новы", + "SSE.Views.ProtectRangesDlg.txtNo": "Не", "SSE.Views.RemoveDuplicatesDialog.textColumns": "Слупкі", "SSE.Views.RemoveDuplicatesDialog.textDescription": "Каб выдаліць паўторныя значэнні, абярыце адзін альбо некалькі слупкоў, якія іх змяшчаюць.", "SSE.Views.RemoveDuplicatesDialog.textHeaders": "Мае даныя змяшчаюць загалоўкі", @@ -2240,11 +2365,11 @@ "SSE.Views.RightMenu.txtTextArtSettings": "Налады Text Art", "SSE.Views.ScaleDialog.textAuto": "Аўта", "SSE.Views.ScaleDialog.textError": "Уведзена няправільнае значэнне.", - "SSE.Views.ScaleDialog.textFewPages": "старонкі", + "SSE.Views.ScaleDialog.textFewPages": "Старонкі", "SSE.Views.ScaleDialog.textFitTo": "Запоўніць не больш чым", "SSE.Views.ScaleDialog.textHeight": "Вышыня", "SSE.Views.ScaleDialog.textManyPages": "старонкі", - "SSE.Views.ScaleDialog.textOnePage": "старонка", + "SSE.Views.ScaleDialog.textOnePage": "Старонка", "SSE.Views.ScaleDialog.textScaleTo": "Вызначыць", "SSE.Views.ScaleDialog.textTitle": "Налады маштабу", "SSE.Views.ScaleDialog.textWidth": "Шырыня", @@ -2282,7 +2407,7 @@ "SSE.Views.ShapeSettings.textNoFill": "Без заліўкі", "SSE.Views.ShapeSettings.textOriginalSize": "Зыходны памер", "SSE.Views.ShapeSettings.textPatternFill": "Узор", - "SSE.Views.ShapeSettings.textPosition": "Пазіцыя", + "SSE.Views.ShapeSettings.textPosition": "Пасада", "SSE.Views.ShapeSettings.textRadial": "Радыяльны", "SSE.Views.ShapeSettings.textRotate90": "Павярнуць на 90°", "SSE.Views.ShapeSettings.textRotation": "Паварочванне", @@ -2385,7 +2510,7 @@ "SSE.Views.SlicerSettings.textLock": "Адключыць змену памеру альбо перамяшчэнне", "SSE.Views.SlicerSettings.textNewOld": "ад новых да старых", "SSE.Views.SlicerSettings.textOldNew": "ад старых да новых", - "SSE.Views.SlicerSettings.textPosition": "Пазіцыя", + "SSE.Views.SlicerSettings.textPosition": "Пасада", "SSE.Views.SlicerSettings.textSize": "Памер", "SSE.Views.SlicerSettings.textSmallLarge": "ад малога да вялікага", "SSE.Views.SlicerSettings.textStyle": "Стыль", @@ -2621,7 +2746,7 @@ "SSE.Views.TextArtSettings.textLinear": "Лінейны", "SSE.Views.TextArtSettings.textNoFill": "Без заліўкі", "SSE.Views.TextArtSettings.textPatternFill": "Узор", - "SSE.Views.TextArtSettings.textPosition": "Пазіцыя", + "SSE.Views.TextArtSettings.textPosition": "Пасада", "SSE.Views.TextArtSettings.textRadial": "Радыяльны", "SSE.Views.TextArtSettings.textSelectTexture": "Абраць", "SSE.Views.TextArtSettings.textStretch": "Расцягванне", @@ -2645,6 +2770,7 @@ "SSE.Views.TextArtSettings.txtPapyrus": "Папірус", "SSE.Views.TextArtSettings.txtWood": "Дрэва", "SSE.Views.Toolbar.capBtnAddComment": "Дадаць каментар", + "SSE.Views.Toolbar.capBtnColorSchemas": "Каляровая схема", "SSE.Views.Toolbar.capBtnComment": "Каментар", "SSE.Views.Toolbar.capBtnInsHeader": "Калантытулы", "SSE.Views.Toolbar.capBtnInsSlicer": "Зводка", @@ -2679,6 +2805,7 @@ "SSE.Views.Toolbar.textAlignTop": "Выраўнаваць па верхняму краю", "SSE.Views.Toolbar.textAllBorders": "Усе межы", "SSE.Views.Toolbar.textAuto": "Аўта", + "SSE.Views.Toolbar.textAutoColor": "Аўтаматычна", "SSE.Views.Toolbar.textBold": "Тоўсты", "SSE.Views.Toolbar.textBordersColor": "Колер межаў", "SSE.Views.Toolbar.textBordersStyle": "Стыль межаў", @@ -2694,13 +2821,14 @@ "SSE.Views.Toolbar.textDiagUpBorder": "Дыяганальная мяжа знізу ўверх", "SSE.Views.Toolbar.textEntireCol": "Слупок", "SSE.Views.Toolbar.textEntireRow": "Радок", - "SSE.Views.Toolbar.textFewPages": "старонак", + "SSE.Views.Toolbar.textFewPages": "Старонак", "SSE.Views.Toolbar.textHeight": "Вышыня", "SSE.Views.Toolbar.textHorizontal": "Гарызантальны тэкст", "SSE.Views.Toolbar.textInsDown": "Ячэйкі са зрухам уніз", "SSE.Views.Toolbar.textInsideBorders": "Унутраныя межы", "SSE.Views.Toolbar.textInsRight": "Ячэйкі са зрухам управа", "SSE.Views.Toolbar.textItalic": "Курсіў", + "SSE.Views.Toolbar.textItems": "элементаў", "SSE.Views.Toolbar.textLandscape": "Альбомная", "SSE.Views.Toolbar.textLeft": "Левае:", "SSE.Views.Toolbar.textLeftBorders": "Левыя межы", @@ -2714,7 +2842,7 @@ "SSE.Views.Toolbar.textMorePages": "Іншыя старонкі", "SSE.Views.Toolbar.textNewColor": "Дадаць новы адвольны колер", "SSE.Views.Toolbar.textNoBorders": "Без межаў", - "SSE.Views.Toolbar.textOnePage": "старонка", + "SSE.Views.Toolbar.textOnePage": "Старонка", "SSE.Views.Toolbar.textOutBorders": "Вонкавыя межы", "SSE.Views.Toolbar.textPageMarginsCustom": "Адвольныя палі", "SSE.Views.Toolbar.textPortrait": "Кніжная", @@ -2735,8 +2863,8 @@ "SSE.Views.Toolbar.textTabData": "Даныя", "SSE.Views.Toolbar.textTabFile": "Файл", "SSE.Views.Toolbar.textTabFormula": "Формула", - "SSE.Views.Toolbar.textTabHome": "Хатняя", - "SSE.Views.Toolbar.textTabInsert": "Уставіць", + "SSE.Views.Toolbar.textTabHome": "Асноўныя функцыі", + "SSE.Views.Toolbar.textTabInsert": "Устаўка", "SSE.Views.Toolbar.textTabLayout": "Макет", "SSE.Views.Toolbar.textTabProtect": "Абарона", "SSE.Views.Toolbar.textTabView": "Мініяцюра", @@ -2770,6 +2898,7 @@ "SSE.Views.Toolbar.tipDigStylePercent": "Стыль адсоткаў", "SSE.Views.Toolbar.tipEditChart": "Рэдагаваць дыяграму", "SSE.Views.Toolbar.tipEditChartData": "Абраць даныя", + "SSE.Views.Toolbar.tipEditChartType": "Змяніць тып дыяграмы", "SSE.Views.Toolbar.tipEditHeader": "Рэдагаваць калантытулы", "SSE.Views.Toolbar.tipFontColor": "Колер шрыфту", "SSE.Views.Toolbar.tipFontName": "Шрыфт", @@ -2844,7 +2973,7 @@ "SSE.Views.Toolbar.txtNoBorders": "Без межаў", "SSE.Views.Toolbar.txtNumber": "Лічбавы", "SSE.Views.Toolbar.txtPasteRange": "Уставіць назву", - "SSE.Views.Toolbar.txtPercentage": "У адсотках", + "SSE.Views.Toolbar.txtPercentage": "Адсотак", "SSE.Views.Toolbar.txtPound": "Фунт", "SSE.Views.Toolbar.txtRouble": "Расійскі рубель", "SSE.Views.Toolbar.txtScheme1": "Офіс", @@ -2933,6 +3062,7 @@ "SSE.Views.ViewTab.capBtnFreeze": "Замацаваць вобласці", "SSE.Views.ViewTab.capBtnSheetView": "Мініяцюра аркуша", "SSE.Views.ViewTab.textClose": "Закрыць", + "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "Схаваць панэль стану", "SSE.Views.ViewTab.textCreate": "Новы", "SSE.Views.ViewTab.textDefault": "Прадвызначана", "SSE.Views.ViewTab.textFormula": "Панэль формул", diff --git a/apps/spreadsheeteditor/main/locale/ca.json b/apps/spreadsheeteditor/main/locale/ca.json index 800a441e5..9aa292036 100644 --- a/apps/spreadsheeteditor/main/locale/ca.json +++ b/apps/spreadsheeteditor/main/locale/ca.json @@ -114,6 +114,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Crea", "Common.UI.ExtendedColorDialog.textRGBErr": "El valor introduït no és correcte.
Introdueix un valor numèric entre 0 i 255.", "Common.UI.HSBColorPicker.textNoColor": "Cap color", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Amaga la contrasenya", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Mostra la contrasenya", "Common.UI.SearchDialog.textHighlight": "Ressalta els resultats", "Common.UI.SearchDialog.textMatchCase": "Sensible a majúscules i minúscules", "Common.UI.SearchDialog.textReplaceDef": "Introdueix el text de substitució", @@ -178,6 +180,7 @@ "Common.Views.Comments.mniAuthorDesc": "Autor de la Z a la A", "Common.Views.Comments.mniDateAsc": "Més antic", "Common.Views.Comments.mniDateDesc": "Més recent", + "Common.Views.Comments.mniFilterGroups": "Filtra per grup", "Common.Views.Comments.mniPositionAsc": "Des de dalt", "Common.Views.Comments.mniPositionDesc": "Des de baix", "Common.Views.Comments.textAdd": "Afegeix", @@ -198,6 +201,7 @@ "Common.Views.Comments.textResolve": "Resol", "Common.Views.Comments.textResolved": "S'ha resolt", "Common.Views.Comments.textSort": "Ordena els comentaris", + "Common.Views.Comments.textViewResolved": "No teniu permís per tornar a obrir el comentari", "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, utilitza les combinacions de teclat següents:", "Common.Views.CopyWarningDialog.textTitle": "Accions de copia, talla i enganxa ", @@ -252,7 +256,7 @@ "Common.Views.ListSettingsDialog.txtNone": "Cap", "Common.Views.ListSettingsDialog.txtOfText": "% del text", "Common.Views.ListSettingsDialog.txtSize": "Mida", - "Common.Views.ListSettingsDialog.txtStart": "Comença a", + "Common.Views.ListSettingsDialog.txtStart": "Inicia a", "Common.Views.ListSettingsDialog.txtSymbol": "Símbol", "Common.Views.ListSettingsDialog.txtTitle": "Configuració de la llista", "Common.Views.ListSettingsDialog.txtType": "Tipus", @@ -287,7 +291,7 @@ "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.textStart": "Inici", "Common.Views.Plugins.textStop": "Atura", "Common.Views.Protection.hintAddPwd": "Xifra amb contrasenya", "Common.Views.Protection.hintPwd": "Canvia o suprimeix la contrasenya", @@ -365,6 +369,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Torna-ho a obrir", "Common.Views.ReviewPopover.textReply": "Respon", "Common.Views.ReviewPopover.textResolve": "Resol", + "Common.Views.ReviewPopover.textViewResolved": "No teniu permís per tornar a obrir el comentari", "Common.Views.ReviewPopover.txtDeleteTip": "Suprimeix", "Common.Views.ReviewPopover.txtEditTip": "Edita", "Common.Views.SaveAsDlg.textLoading": "S'està carregant", @@ -475,6 +480,7 @@ "SSE.Controllers.DocumentHolder.txtAddVer": "Afegeix una línia vertical", "SSE.Controllers.DocumentHolder.txtAlignToChar": "Alineació al caràcter", "SSE.Controllers.DocumentHolder.txtAll": "(Tots)", + "SSE.Controllers.DocumentHolder.txtAllTableHint": "Retorna el contingut sencer de la taula o de les columnes de la taula especificades, incloses les capçaleres de columna, les dades i les files totals", "SSE.Controllers.DocumentHolder.txtAnd": "i", "SSE.Controllers.DocumentHolder.txtBegins": "Comença amb", "SSE.Controllers.DocumentHolder.txtBelowAve": "Per sota de la mitja", @@ -484,6 +490,7 @@ "SSE.Controllers.DocumentHolder.txtColumn": "Columna", "SSE.Controllers.DocumentHolder.txtColumnAlign": "Alineació de la columna", "SSE.Controllers.DocumentHolder.txtContains": "Conté", + "SSE.Controllers.DocumentHolder.txtDataTableHint": "Retorna les cel·les de dades de la taula o les columnes de la taula especificades", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Redueix la mida de l'argument", "SSE.Controllers.DocumentHolder.txtDeleteArg": "Suprimeix l'argument", "SSE.Controllers.DocumentHolder.txtDeleteBreak": "Suprimeix el salt manual", @@ -507,6 +514,7 @@ "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Més gran o igual que", "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Caràcter sobre el text", "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Caràcter sota el text", + "SSE.Controllers.DocumentHolder.txtHeadersTableHint": "Retorna les capçaleres de columna de la taula o de les columnes de la taula especificades", "SSE.Controllers.DocumentHolder.txtHeight": "Alçada", "SSE.Controllers.DocumentHolder.txtHideBottom": "Amaga la vora inferior", "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "Amaga el límit inferior", @@ -587,6 +595,7 @@ "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Estira els claudàtors", "SSE.Controllers.DocumentHolder.txtThisRowHint": "Tria només aquesta fila de la columna especificada", "SSE.Controllers.DocumentHolder.txtTop": "Superior", + "SSE.Controllers.DocumentHolder.txtTotalsTableHint": "Retorna el total de files de la taula o de les columnes de la taula especificades", "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", @@ -641,6 +650,7 @@ "SSE.Controllers.Main.errorAutoFilterHiddenRange": "L’operació no es pot realitzar perquè l’àrea conté cel·les filtrades.
Desactiva els filtres i torna-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, selecciona les files o columnes de detall i agrupa-les.", + "SSE.Controllers.Main.errorCannotUseCommandProtectedSheet": "No podeu utilitzar aquesta ordre en un full protegit. Per utilitzar aquesta ordre, cal desprotegir el full.
És possible que se us demani que introduïu una contrasenya.", "SSE.Controllers.Main.errorChangeArray": "No pots canviar part d'una matriu.", "SSE.Controllers.Main.errorChangeFilteredRange": "Això canviarà un interval filtrat al full de càlcul.
Per completar aquesta tasca, suprimeix els filtres automàtics.", "SSE.Controllers.Main.errorChangeOnProtectedSheet": "La cel·la o el gràfic que intentes canviar es troba en un full protegit.
Per fer un canvi, desprotegeix el full. És possible que et demani que introdueixis una contrasenya.", @@ -770,7 +780,7 @@ "SSE.Controllers.Main.textNo": "No", "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. Espera...", + "SSE.Controllers.Main.textPleaseWait": "L’operació pot trigar més temps del previst. Espereu...", "SSE.Controllers.Main.textReconnect": "S'ha restablert la connexió", "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.", @@ -1089,6 +1099,7 @@ "SSE.Controllers.Toolbar.textPivot": "Taula dinàmica", "SSE.Controllers.Toolbar.textRadical": "Radicals", "SSE.Controllers.Toolbar.textRating": "Valoracions", + "SSE.Controllers.Toolbar.textRecentlyUsed": "S'ha utilitzat recentment", "SSE.Controllers.Toolbar.textScript": "Scripts", "SSE.Controllers.Toolbar.textShapes": "Formes", "SSE.Controllers.Toolbar.textSymbols": "Símbols", @@ -1430,6 +1441,7 @@ "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.textQualifier": "Qualificador del text", "SSE.Views.AdvancedSeparatorDialog.textTitle": "Configuració avançada", "SSE.Views.AdvancedSeparatorDialog.txtNone": "(cap)", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Filtre personalitzat", @@ -1877,6 +1889,7 @@ "SSE.Views.DocumentHolder.textCrop": "Retalla", "SSE.Views.DocumentHolder.textCropFill": "Emplena", "SSE.Views.DocumentHolder.textCropFit": "Ajusta", + "SSE.Views.DocumentHolder.textEditPoints": "Edita els punts", "SSE.Views.DocumentHolder.textEntriesList": "Selecciona des d'una llista desplegable", "SSE.Views.DocumentHolder.textFlipH": "Capgira horitzontalment", "SSE.Views.DocumentHolder.textFlipV": "Capgira verticalment", @@ -2246,6 +2259,7 @@ "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Edita la norma del format", "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Crea una norma de format", "SSE.Views.FormatRulesManagerDlg.guestText": "Convidat", + "SSE.Views.FormatRulesManagerDlg.lockText": "Blocat", "SSE.Views.FormatRulesManagerDlg.text1Above": "1 per sobre la mitjana de des. est.", "SSE.Views.FormatRulesManagerDlg.text1Below": "1 per sota la mitjana de des. est.", "SSE.Views.FormatRulesManagerDlg.text2Above": "2 per sobre la mitjana de des. est.", @@ -2422,6 +2436,7 @@ "SSE.Views.ImageSettings.textInsert": "Substitueix la imatge", "SSE.Views.ImageSettings.textKeepRatio": "Proporcions constants", "SSE.Views.ImageSettings.textOriginalSize": "Mida real", + "SSE.Views.ImageSettings.textRecentlyUsed": "S'ha utilitzat recentment", "SSE.Views.ImageSettings.textRotate90": "Gira 90°", "SSE.Views.ImageSettings.textRotation": "Rotació", "SSE.Views.ImageSettings.textSize": "Mida", @@ -2499,6 +2514,7 @@ "SSE.Views.NamedRangePasteDlg.txtTitle": "Enganxa el nom", "SSE.Views.NameManagerDlg.closeButtonText": "Tanca", "SSE.Views.NameManagerDlg.guestText": "Convidat", + "SSE.Views.NameManagerDlg.lockText": "Blocat", "SSE.Views.NameManagerDlg.textDataRange": "Interval de dades", "SSE.Views.NameManagerDlg.textDelete": "Suprimeix", "SSE.Views.NameManagerDlg.textEdit": "Edita", @@ -2735,6 +2751,38 @@ "SSE.Views.PrintWithPreview.txtApplyToAllSheets": "Aplica-ho a tots els fulls", "SSE.Views.PrintWithPreview.txtBottom": "Inferior", "SSE.Views.PrintWithPreview.txtCurrentSheet": "Full de càlcul actual", + "SSE.Views.PrintWithPreview.txtCustom": "Personalització", + "SSE.Views.PrintWithPreview.txtCustomOptions": "Opcions personalitzades", + "SSE.Views.PrintWithPreview.txtFitCols": "Ajusta totes les columnes en una pàgina", + "SSE.Views.PrintWithPreview.txtFitPage": "Ajusta el full en una pàgina", + "SSE.Views.PrintWithPreview.txtFitRows": "Ajusta totes les files en una pàgina", + "SSE.Views.PrintWithPreview.txtGridlinesAndHeadings": "Línies de la quadrícula i encapçalaments", + "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Configuració de capçalera/peu de pàgina", + "SSE.Views.PrintWithPreview.txtIgnore": "Ignora l'àrea d'impressió", + "SSE.Views.PrintWithPreview.txtLandscape": "Orientació horitzontal", + "SSE.Views.PrintWithPreview.txtLeft": "Esquerra", + "SSE.Views.PrintWithPreview.txtMargins": "Marges", + "SSE.Views.PrintWithPreview.txtOf": "de {0}", + "SSE.Views.PrintWithPreview.txtPage": "Pàgina", + "SSE.Views.PrintWithPreview.txtPageNumInvalid": "El número de pàgina no és vàlid", + "SSE.Views.PrintWithPreview.txtPageOrientation": "Orientació de la pàgina", + "SSE.Views.PrintWithPreview.txtPageSize": "Mida de la pàgina", + "SSE.Views.PrintWithPreview.txtPortrait": "Orientació vertical", + "SSE.Views.PrintWithPreview.txtPrint": "Imprimeix", + "SSE.Views.PrintWithPreview.txtPrintGrid": "Imprimeix les línies de la quadrícula", + "SSE.Views.PrintWithPreview.txtPrintHeadings": "Imprimeix els títols de files i columnes", + "SSE.Views.PrintWithPreview.txtPrintRange": "Interval d'impressió", + "SSE.Views.PrintWithPreview.txtPrintTitles": "Imprimeix els títols", + "SSE.Views.PrintWithPreview.txtRepeat": "Repeteix...", + "SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft": "Repeteix columnes a l'esquerra", + "SSE.Views.PrintWithPreview.txtRepeatRowsAtTop": "Repeteix files a la part superior", + "SSE.Views.PrintWithPreview.txtRight": "Dreta", + "SSE.Views.PrintWithPreview.txtSave": "Desa", + "SSE.Views.PrintWithPreview.txtScaling": "Escala", + "SSE.Views.PrintWithPreview.txtSelection": "Selecció", + "SSE.Views.PrintWithPreview.txtSettingsOfSheet": "Configuració del full", + "SSE.Views.PrintWithPreview.txtSheet": "Full: {0}", + "SSE.Views.PrintWithPreview.txtTop": "Superior", "SSE.Views.ProtectDialog.textExistName": "ERROR! L'interval amb aquest títol ja existeix", "SSE.Views.ProtectDialog.textInvalidName": "El títol de l'interval ha de començar amb una lletra i només pot contenir lletres, números i espais.", "SSE.Views.ProtectDialog.textInvalidRange": "ERROR! L'interval de cel·les no és vàlid", @@ -2769,6 +2817,7 @@ "SSE.Views.ProtectDialog.txtWBDescription": "Per evitar que altres usuaris vegin fulls de càlcul amagats, afegeixin, moguin, eliminin o amaguin fulls de càlcul i els canviïn el nom, pots protegir l'estructura del teu llibre de treball amb una contrasenya.", "SSE.Views.ProtectDialog.txtWBTitle": "Protegeix l'estructura de llibre de treball", "SSE.Views.ProtectRangesDlg.guestText": "Convidat", + "SSE.Views.ProtectRangesDlg.lockText": "Blocat", "SSE.Views.ProtectRangesDlg.textDelete": "Suprimeix", "SSE.Views.ProtectRangesDlg.textEdit": "Edita", "SSE.Views.ProtectRangesDlg.textEmpty": "No es permeten intervals per a l'edició.", @@ -2848,6 +2897,7 @@ "SSE.Views.ShapeSettings.textPatternFill": "Patró", "SSE.Views.ShapeSettings.textPosition": "Posició", "SSE.Views.ShapeSettings.textRadial": "Radial", + "SSE.Views.ShapeSettings.textRecentlyUsed": "S'ha utilitzat recentment", "SSE.Views.ShapeSettings.textRotate90": "Gira 90°", "SSE.Views.ShapeSettings.textRotation": "Rotació", "SSE.Views.ShapeSettings.textSelectImage": "Selecciona una imatge", @@ -3109,6 +3159,7 @@ "SSE.Views.Statusbar.tipAddTab": "Afegeix un full de càlcul", "SSE.Views.Statusbar.tipFirst": "Desplaça al primer full", "SSE.Views.Statusbar.tipLast": "Desplaça fins a l'últim full", + "SSE.Views.Statusbar.tipListOfSheets": "Llista de fulls", "SSE.Views.Statusbar.tipNext": "Desplaça la llista de fulls a la dreta", "SSE.Views.Statusbar.tipPrev": "Desplaça la llista de fulls a l’esquerra", "SSE.Views.Statusbar.tipZoomFactor": "Zoom", @@ -3297,6 +3348,8 @@ "SSE.Views.Toolbar.textPageMarginsCustom": "Marges personalitzats", "SSE.Views.Toolbar.textPortrait": "Orientació vertical", "SSE.Views.Toolbar.textPrint": "Imprimeix", + "SSE.Views.Toolbar.textPrintGridlines": "Imprimeix les línies de la quadrícula", + "SSE.Views.Toolbar.textPrintHeadings": "Imprimeix les capçaleres", "SSE.Views.Toolbar.textPrintOptions": "Configuració d'impressió", "SSE.Views.Toolbar.textRight": "Dreta:", "SSE.Views.Toolbar.textRightBorders": "Vores de la dreta", @@ -3377,7 +3430,14 @@ "SSE.Views.Toolbar.tipInsertTextart": "Insereix Text Art", "SSE.Views.Toolbar.tipMarkersArrow": "Pics de fletxa", "SSE.Views.Toolbar.tipMarkersCheckmark": "Pics de marca de selecció", + "SSE.Views.Toolbar.tipMarkersDash": "Pics de guió", + "SSE.Views.Toolbar.tipMarkersFRhombus": "Pics de rombes plens", + "SSE.Views.Toolbar.tipMarkersFRound": "Pics rodons plens", + "SSE.Views.Toolbar.tipMarkersFSquare": "Pics quadrats plens", + "SSE.Views.Toolbar.tipMarkersHRound": "Pics rodons buits", + "SSE.Views.Toolbar.tipMarkersStar": "Pics d'estrella", "SSE.Views.Toolbar.tipMerge": "Combina i centra", + "SSE.Views.Toolbar.tipNone": "cap", "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", @@ -3506,6 +3566,7 @@ "SSE.Views.ValueFieldSettingsDialog.txtVarp": "VarPobl", "SSE.Views.ViewManagerDlg.closeButtonText": "Tanca", "SSE.Views.ViewManagerDlg.guestText": "Convidat", + "SSE.Views.ViewManagerDlg.lockText": "Blocat", "SSE.Views.ViewManagerDlg.textDelete": "Suprimeix", "SSE.Views.ViewManagerDlg.textDuplicate": "Duplica", "SSE.Views.ViewManagerDlg.textEmpty": "Encara no s'ha creat cap visualització.", @@ -3531,7 +3592,9 @@ "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.textInterfaceTheme": "Tema de la interfície", "SSE.Views.ViewTab.textManager": "Administrador de la visualització", + "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Mostra l'ombra de les subfinestres immobilitzades", "SSE.Views.ViewTab.textUnFreeze": "Mobilitza subfinestres", "SSE.Views.ViewTab.textZeros": "Mostra zeros", "SSE.Views.ViewTab.textZoom": "Zoom", diff --git a/apps/spreadsheeteditor/main/locale/es.json b/apps/spreadsheeteditor/main/locale/es.json index 5111ed550..2dcd73f9c 100644 --- a/apps/spreadsheeteditor/main/locale/es.json +++ b/apps/spreadsheeteditor/main/locale/es.json @@ -114,6 +114,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Nuevo", "Common.UI.ExtendedColorDialog.textRGBErr": "El valor introducido es incorrecto.
Por favor, introduzca un valor numérico de 0 a 225.", "Common.UI.HSBColorPicker.textNoColor": "Sin Color", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Ocultar la contraseña", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Mostrar la contraseña", "Common.UI.SearchDialog.textHighlight": "Resaltar resultados", "Common.UI.SearchDialog.textMatchCase": "Sensible a mayúsculas y minúsculas", "Common.UI.SearchDialog.textReplaceDef": "Introduzca el texto de sustitución", @@ -146,7 +148,7 @@ "Common.Views.About.txtAddress": "dirección: ", "Common.Views.About.txtLicensee": "LICENCIATARIO ", "Common.Views.About.txtLicensor": "LICENCIANTE", - "Common.Views.About.txtMail": "email: ", + "Common.Views.About.txtMail": "correo: ", "Common.Views.About.txtPoweredBy": "Desarrollado por", "Common.Views.About.txtTel": "tel.: ", "Common.Views.About.txtVersion": "Versión ", @@ -178,12 +180,14 @@ "Common.Views.Comments.mniAuthorDesc": "Autor de Z a A", "Common.Views.Comments.mniDateAsc": "Más antiguo", "Common.Views.Comments.mniDateDesc": "Más reciente", + "Common.Views.Comments.mniFilterGroups": "Filtrar por grupo", "Common.Views.Comments.mniPositionAsc": "Desde arriba", "Common.Views.Comments.mniPositionDesc": "Desde abajo", "Common.Views.Comments.textAdd": "Añadir", "Common.Views.Comments.textAddComment": "Añadir", "Common.Views.Comments.textAddCommentToDoc": "Añadir comentario a documento", "Common.Views.Comments.textAddReply": "Añadir respuesta", + "Common.Views.Comments.textAll": "Todo", "Common.Views.Comments.textAnonym": "Visitante", "Common.Views.Comments.textCancel": "Cancelar", "Common.Views.Comments.textClose": "Cerrar", @@ -197,6 +201,7 @@ "Common.Views.Comments.textResolve": "Resolver", "Common.Views.Comments.textResolved": "Resuelto", "Common.Views.Comments.textSort": "Ordenar comentarios", + "Common.Views.Comments.textViewResolved": "No tiene permiso para volver a abrir el comentario", "Common.Views.CopyWarningDialog.textDontShow": "No volver a mostrar este mensaje", "Common.Views.CopyWarningDialog.textMsg": "Se puede realizar las acciones de copiar, cortar y pegar usando los botones en la barra de herramientas y el menú contextual sólo en esta pestaña del editor.

Si quiere copiar o pegar algo fuera de esta pestaña, use las combinaciones de teclas siguientes:", "Common.Views.CopyWarningDialog.textTitle": "Funciones de Copiar, Cortar y Pegar", @@ -359,11 +364,12 @@ "Common.Views.ReviewPopover.textCancel": "Cancelar", "Common.Views.ReviewPopover.textClose": "Cerrar", "Common.Views.ReviewPopover.textEdit": "OK", - "Common.Views.ReviewPopover.textMention": "+mención proporcionará acceso al documento y enviará un correo electrónico", - "Common.Views.ReviewPopover.textMentionNotify": "+mention notificará al usuario por correo electrónico", + "Common.Views.ReviewPopover.textMention": "+mención proporcionará acceso al documento y enviará un correo", + "Common.Views.ReviewPopover.textMentionNotify": "+mención notificará al usuario por correo", "Common.Views.ReviewPopover.textOpenAgain": "Abrir de nuevo", "Common.Views.ReviewPopover.textReply": "Responder", "Common.Views.ReviewPopover.textResolve": "Resolver", + "Common.Views.ReviewPopover.textViewResolved": "No tiene permiso para volver a abrir el comentario", "Common.Views.ReviewPopover.txtDeleteTip": "Eliminar", "Common.Views.ReviewPopover.txtEditTip": "Editar", "Common.Views.SaveAsDlg.textLoading": "Cargando", @@ -474,6 +480,7 @@ "SSE.Controllers.DocumentHolder.txtAddVer": "Añadir línea vertical", "SSE.Controllers.DocumentHolder.txtAlignToChar": "Alinear a carácter", "SSE.Controllers.DocumentHolder.txtAll": "(Todos)", + "SSE.Controllers.DocumentHolder.txtAllTableHint": "Devuelve todo el contenido de la tabla o de las columnas de la tabla especificadas, incluyendo las cabeceras de las columnas, los datos y las filas totales", "SSE.Controllers.DocumentHolder.txtAnd": "y", "SSE.Controllers.DocumentHolder.txtBegins": "Empieza con", "SSE.Controllers.DocumentHolder.txtBelowAve": "Debajo de la media", @@ -483,6 +490,7 @@ "SSE.Controllers.DocumentHolder.txtColumn": "Columna", "SSE.Controllers.DocumentHolder.txtColumnAlign": "Alineación de columna", "SSE.Controllers.DocumentHolder.txtContains": "Contiene", + "SSE.Controllers.DocumentHolder.txtDataTableHint": "Devuelve las celdas de datos de la tabla o de las columnas de la tabla especificadas", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Disminuir tamaño de argumento", "SSE.Controllers.DocumentHolder.txtDeleteArg": "Eliminar argumento", "SSE.Controllers.DocumentHolder.txtDeleteBreak": "Borrar abertura manual", @@ -506,6 +514,7 @@ "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Mayor que o igual a", "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Char sobre texto", "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Char debajo de texto", + "SSE.Controllers.DocumentHolder.txtHeadersTableHint": "Devuelve las cabeceras de las columnas de la tabla o de las columnas de la tabla especificadas", "SSE.Controllers.DocumentHolder.txtHeight": "Altura", "SSE.Controllers.DocumentHolder.txtHideBottom": "Esconder borde inferior", "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "Esconder límite inferior", @@ -584,7 +593,9 @@ "SSE.Controllers.DocumentHolder.txtSorting": "Ordenación", "SSE.Controllers.DocumentHolder.txtSortSelected": "Ordenar los objetos seleccionados", "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Estirar corchetes", + "SSE.Controllers.DocumentHolder.txtThisRowHint": "Elija solo esta fila de la columna especificada", "SSE.Controllers.DocumentHolder.txtTop": "Top", + "SSE.Controllers.DocumentHolder.txtTotalsTableHint": "Devuelve el total de filas de la tabla o de las columnas de la tabla especificadas", "SSE.Controllers.DocumentHolder.txtUnderbar": "Barra debajo de texto", "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Deshacer la expansión automática de la tabla", "SSE.Controllers.DocumentHolder.txtUseTextImport": "Usar el Asistente para importar texto", @@ -639,6 +650,7 @@ "SSE.Controllers.Main.errorAutoFilterHiddenRange": "No se puede realizar la operación porque el área contiene celdas filtradas.
Por favor muestre los elementos filtrados y vuelva a intentarlo.", "SSE.Controllers.Main.errorBadImageUrl": "URL de imagen es incorrecto", "SSE.Controllers.Main.errorCannotUngroup": "No se puede desagrupar. Para crear un esquema de documento seleccione filas o columnas y agrúpelas.", + "SSE.Controllers.Main.errorCannotUseCommandProtectedSheet": "No puede utilizar esta orden en una hoja protegida. Para usar esta orden, desproteja la hoja.
Es posible que le pidan una contraseña.", "SSE.Controllers.Main.errorChangeArray": "No se puede cambiar parte de una matriz.", "SSE.Controllers.Main.errorChangeFilteredRange": "Esto cambiará un rango filtrado de la hoja de cálculo.
Para completar esta tarea, quite los Autofiltros.", "SSE.Controllers.Main.errorChangeOnProtectedSheet": "La celda o el gráfico que está intentando cambiar se encuentra en una hoja protegida.
Para hacer un cambio, quitele la protección a la hoja. Es posible que se le pida que introduzca una contraseña.", @@ -658,7 +670,7 @@ "SSE.Controllers.Main.errorEditingDownloadas": "Se produjo un error durante el trabajo con el documento.
Use la opción 'Descargar como...' para guardar la copia de seguridad de este archivo en el disco duro de su computadora.", "SSE.Controllers.Main.errorEditingSaveas": "Se produjo un error durante el trabajo con el documento.
Use la opción 'Guardar como...' para guardar la copia de seguridad de este archivo en el disco duro de su computadora.", "SSE.Controllers.Main.errorEditView": "La vista de hoja existente no puede ser editada y las nuevas no se pueden crear en este momento, ya que algunas de ellas se están editando.", - "SSE.Controllers.Main.errorEmailClient": "No se pudo encontrar ningun cliente de email.", + "SSE.Controllers.Main.errorEmailClient": "No se pudo encontrar ningun cliente de correo", "SSE.Controllers.Main.errorFilePassProtect": "El archivo está protegido por una contraseña y no puede ser abierto.", "SSE.Controllers.Main.errorFileRequest": "Error externo.
Error de solicitud de archivo. Por favor póngase en contacto con soporte si el error se mantiene.", "SSE.Controllers.Main.errorFileSizeExceed": "El tamaño del archivo excede la limitación establecida para su servidor. Por favor, póngase en contacto con el administrador del Servidor de documentos para obtener más detalles. ", @@ -769,6 +781,7 @@ "SSE.Controllers.Main.textNoLicenseTitle": "Se ha alcanzado el límite de licencias", "SSE.Controllers.Main.textPaidFeature": "Función de pago", "SSE.Controllers.Main.textPleaseWait": "La operación puede tomar más tiempo de lo esperado. Espere por favor...", + "SSE.Controllers.Main.textReconnect": "Se ha restablecido la conexión", "SSE.Controllers.Main.textRemember": "Recordar mi elección para todos los archivos", "SSE.Controllers.Main.textRenameError": "El nombre de usuario no debe estar vacío.", "SSE.Controllers.Main.textRenameLabel": "Escriba un nombre que se utilizará para la colaboración", @@ -1060,6 +1073,7 @@ "SSE.Controllers.Statusbar.errorLastSheet": "Un libro debe contener al menos una hoja visible.", "SSE.Controllers.Statusbar.errorRemoveSheet": "Imposible borrar la hoja de cálculo.", "SSE.Controllers.Statusbar.strSheet": "Hoja", + "SSE.Controllers.Statusbar.textDisconnect": "Se ha perdido la conexión
Intentando conectar. Compruebe la configuración de la conexión.", "SSE.Controllers.Statusbar.textSheetViewTip": "Está en el modo Vista de Hoja. Los filtros y la ordenación son visibles solo para usted y aquellos que aún están en esta vista.", "SSE.Controllers.Statusbar.textSheetViewTipFilters": "Está en el modo de vista de hoja. Los filtros sólo los puede ver usted y los que aún están en esta vista.", "SSE.Controllers.Statusbar.warnDeleteSheet": "Las hojas de trabajo seleccionadas pueden contener datos. ¿Está seguro de que quiere proceder?", @@ -1085,6 +1099,7 @@ "SSE.Controllers.Toolbar.textPivot": "Tabla pivote", "SSE.Controllers.Toolbar.textRadical": "Radicales", "SSE.Controllers.Toolbar.textRating": "Clasificaciones", + "SSE.Controllers.Toolbar.textRecentlyUsed": "Usados recientemente", "SSE.Controllers.Toolbar.textScript": "Índices", "SSE.Controllers.Toolbar.textShapes": "Formas", "SSE.Controllers.Toolbar.textSymbols": "Símbolos", @@ -1426,7 +1441,9 @@ "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Separador decimal", "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Separador de miles", "SSE.Views.AdvancedSeparatorDialog.textLabel": "Ajustes utilizados para reconocer los datos numéricos", + "SSE.Views.AdvancedSeparatorDialog.textQualifier": "Calificador de texto", "SSE.Views.AdvancedSeparatorDialog.textTitle": "Ajustes Avanzados", + "SSE.Views.AdvancedSeparatorDialog.txtNone": "(ninguno)", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Filtro personalizado", "SSE.Views.AutoFilterDialog.textAddSelection": "Añadir selección actual para filtración", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Blanks}", @@ -1872,6 +1889,7 @@ "SSE.Views.DocumentHolder.textCrop": "Recortar", "SSE.Views.DocumentHolder.textCropFill": "Relleno", "SSE.Views.DocumentHolder.textCropFit": "Adaptar", + "SSE.Views.DocumentHolder.textEditPoints": "Modificar puntos", "SSE.Views.DocumentHolder.textEntriesList": "Seleccionar de la lista desplegable", "SSE.Views.DocumentHolder.textFlipH": "Voltear horizontalmente", "SSE.Views.DocumentHolder.textFlipV": "Voltear verticalmente", @@ -2241,6 +2259,7 @@ "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Editar regla de formato", "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Nueva regla de formato", "SSE.Views.FormatRulesManagerDlg.guestText": "Invitado", + "SSE.Views.FormatRulesManagerDlg.lockText": "Bloqueado", "SSE.Views.FormatRulesManagerDlg.text1Above": "1 desv. est. por encima del promedio", "SSE.Views.FormatRulesManagerDlg.text1Below": "1 desv. est. por debajo del promedio", "SSE.Views.FormatRulesManagerDlg.text2Above": "2 desv. est. por encima del promedio", @@ -2402,6 +2421,7 @@ "SSE.Views.ImageSettings.textCrop": "Recortar", "SSE.Views.ImageSettings.textCropFill": "Relleno", "SSE.Views.ImageSettings.textCropFit": "Adaptar", + "SSE.Views.ImageSettings.textCropToShape": "Recortar a la forma", "SSE.Views.ImageSettings.textEdit": "Editar", "SSE.Views.ImageSettings.textEditObject": "Editar objeto", "SSE.Views.ImageSettings.textFlip": "Volteo", @@ -2416,6 +2436,7 @@ "SSE.Views.ImageSettings.textInsert": "Reemplazar imagen", "SSE.Views.ImageSettings.textKeepRatio": "Proporciones constantes", "SSE.Views.ImageSettings.textOriginalSize": "Tamaño actual", + "SSE.Views.ImageSettings.textRecentlyUsed": "Usados recientemente", "SSE.Views.ImageSettings.textRotate90": "Girar 90°", "SSE.Views.ImageSettings.textRotation": "Rotación", "SSE.Views.ImageSettings.textSize": "Tamaño", @@ -2493,6 +2514,7 @@ "SSE.Views.NamedRangePasteDlg.txtTitle": "Pegar nombre", "SSE.Views.NameManagerDlg.closeButtonText": "Cerrar", "SSE.Views.NameManagerDlg.guestText": "Visitante", + "SSE.Views.NameManagerDlg.lockText": "Bloqueado", "SSE.Views.NameManagerDlg.textDataRange": "Alcance de Datos", "SSE.Views.NameManagerDlg.textDelete": "Eliminar", "SSE.Views.NameManagerDlg.textEdit": "Editar", @@ -2724,6 +2746,43 @@ "SSE.Views.PrintTitlesDialog.textSelectRange": "Seleccionar rango", "SSE.Views.PrintTitlesDialog.textTitle": "Imprimir títulos", "SSE.Views.PrintTitlesDialog.textTop": "Repetir filas en la parte superior", + "SSE.Views.PrintWithPreview.txtActualSize": "Tamaño real", + "SSE.Views.PrintWithPreview.txtAllSheets": "Todas las hojas", + "SSE.Views.PrintWithPreview.txtApplyToAllSheets": "Aplicar a todas las hojas", + "SSE.Views.PrintWithPreview.txtBottom": "Abajo ", + "SSE.Views.PrintWithPreview.txtCurrentSheet": "Hoja actual", + "SSE.Views.PrintWithPreview.txtCustom": "Personalizado", + "SSE.Views.PrintWithPreview.txtCustomOptions": "Opciones personalizadas", + "SSE.Views.PrintWithPreview.txtFitCols": "Ajustar todas las columnas en una página", + "SSE.Views.PrintWithPreview.txtFitPage": "Ajustar la hoja en una página", + "SSE.Views.PrintWithPreview.txtFitRows": "Ajustar todas las filas en una página", + "SSE.Views.PrintWithPreview.txtGridlinesAndHeadings": "Cuadrículas y encabezados", + "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Ajustes de encabezado / pie de página", + "SSE.Views.PrintWithPreview.txtIgnore": "Omitir el área de impresión", + "SSE.Views.PrintWithPreview.txtLandscape": "Horizontal", + "SSE.Views.PrintWithPreview.txtLeft": "A la izquierda", + "SSE.Views.PrintWithPreview.txtMargins": "Márgenes", + "SSE.Views.PrintWithPreview.txtOf": "de {0}", + "SSE.Views.PrintWithPreview.txtPage": "Página", + "SSE.Views.PrintWithPreview.txtPageNumInvalid": "Número de página no válido", + "SSE.Views.PrintWithPreview.txtPageOrientation": "Orientación de la página", + "SSE.Views.PrintWithPreview.txtPageSize": "Tamaño de la página", + "SSE.Views.PrintWithPreview.txtPortrait": "Vertical", + "SSE.Views.PrintWithPreview.txtPrint": "Imprimir", + "SSE.Views.PrintWithPreview.txtPrintGrid": "Imprimir líneas de cuadrícula", + "SSE.Views.PrintWithPreview.txtPrintHeadings": "Imprimir títulos de filas y columnas", + "SSE.Views.PrintWithPreview.txtPrintRange": "Área de impresión", + "SSE.Views.PrintWithPreview.txtPrintTitles": "Imprimir títulos", + "SSE.Views.PrintWithPreview.txtRepeat": "Repetir...", + "SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft": "Repetir columnas a la izquierda", + "SSE.Views.PrintWithPreview.txtRepeatRowsAtTop": "Repetir filas en la parte superior", + "SSE.Views.PrintWithPreview.txtRight": "A la derecha", + "SSE.Views.PrintWithPreview.txtSave": "Guardar", + "SSE.Views.PrintWithPreview.txtScaling": "Escala", + "SSE.Views.PrintWithPreview.txtSelection": "Selección ", + "SSE.Views.PrintWithPreview.txtSettingsOfSheet": "Ajustes de la hoja", + "SSE.Views.PrintWithPreview.txtSheet": "Hoja: {0}", + "SSE.Views.PrintWithPreview.txtTop": "Arriba", "SSE.Views.ProtectDialog.textExistName": "¡ERROR! El rango con ese título ya existe", "SSE.Views.ProtectDialog.textInvalidName": "El título del rango debe comenzar con una letra y sólo puede contener letras, números y espacios.", "SSE.Views.ProtectDialog.textInvalidRange": "¡ERROR! Rango de celdas no válido", @@ -2758,6 +2817,7 @@ "SSE.Views.ProtectDialog.txtWBDescription": "Para evitar que otros usuarios vean las hojas de cálculo ocultas, añadan, muevan, eliminen u oculten hojas de cálculo y cambien el nombre de las mismas, puede proteger la estructura de su libro con una contraseña.", "SSE.Views.ProtectDialog.txtWBTitle": "Proteger la estructura del Libro", "SSE.Views.ProtectRangesDlg.guestText": "Invitado", + "SSE.Views.ProtectRangesDlg.lockText": "Bloqueado", "SSE.Views.ProtectRangesDlg.textDelete": "Eliminar", "SSE.Views.ProtectRangesDlg.textEdit": "Editar", "SSE.Views.ProtectRangesDlg.textEmpty": "No hay rangos permitidos para la edición.", @@ -2837,6 +2897,7 @@ "SSE.Views.ShapeSettings.textPatternFill": "Patrón", "SSE.Views.ShapeSettings.textPosition": "Posición", "SSE.Views.ShapeSettings.textRadial": "Radial", + "SSE.Views.ShapeSettings.textRecentlyUsed": "Usados recientemente", "SSE.Views.ShapeSettings.textRotate90": "Girar 90°", "SSE.Views.ShapeSettings.textRotation": "Rotación", "SSE.Views.ShapeSettings.textSelectImage": "Seleccionar imagen", @@ -3098,6 +3159,7 @@ "SSE.Views.Statusbar.tipAddTab": "Añadir hoja de cálculo", "SSE.Views.Statusbar.tipFirst": "Desplazar hasta la primera hoja", "SSE.Views.Statusbar.tipLast": "Desplazar hasta la última hoja", + "SSE.Views.Statusbar.tipListOfSheets": "Lista de hojas", "SSE.Views.Statusbar.tipNext": "Desplazar la lista de hoja a la derecha", "SSE.Views.Statusbar.tipPrev": "Desplazar la lista de hoja a la izquierda", "SSE.Views.Statusbar.tipZoomFactor": "Zoom", @@ -3286,6 +3348,8 @@ "SSE.Views.Toolbar.textPageMarginsCustom": "Márgenes personalizados", "SSE.Views.Toolbar.textPortrait": "Vertical", "SSE.Views.Toolbar.textPrint": "Imprimir", + "SSE.Views.Toolbar.textPrintGridlines": "Imprimir líneas de cuadrícula", + "SSE.Views.Toolbar.textPrintHeadings": "Imprimir cabeceras", "SSE.Views.Toolbar.textPrintOptions": "Opciones de impresión", "SSE.Views.Toolbar.textRight": "Derecho: ", "SSE.Views.Toolbar.textRightBorders": "Bordes derechos", @@ -3364,7 +3428,16 @@ "SSE.Views.Toolbar.tipInsertTable": "Insertar tabla", "SSE.Views.Toolbar.tipInsertText": "Insertar cuadro de texto", "SSE.Views.Toolbar.tipInsertTextart": "Inserta Texto Arte", + "SSE.Views.Toolbar.tipMarkersArrow": "Viñetas de flecha", + "SSE.Views.Toolbar.tipMarkersCheckmark": "Viñetas de marca de verificación", + "SSE.Views.Toolbar.tipMarkersDash": "Viñetas guión", + "SSE.Views.Toolbar.tipMarkersFRhombus": "Rombos rellenos", + "SSE.Views.Toolbar.tipMarkersFRound": "Viñetas redondas rellenas", + "SSE.Views.Toolbar.tipMarkersFSquare": "Viñetas cuadradas rellenas", + "SSE.Views.Toolbar.tipMarkersHRound": "Viñetas redondas huecas", + "SSE.Views.Toolbar.tipMarkersStar": "Viñetas de estrella", "SSE.Views.Toolbar.tipMerge": "Combinar y centrar", + "SSE.Views.Toolbar.tipNone": "Ninguno", "SSE.Views.Toolbar.tipNumFormat": "Formato de número", "SSE.Views.Toolbar.tipPageMargins": "Márgenes de página", "SSE.Views.Toolbar.tipPageOrient": "Orientación de página", @@ -3493,6 +3566,7 @@ "SSE.Views.ValueFieldSettingsDialog.txtVarp": "Varp", "SSE.Views.ViewManagerDlg.closeButtonText": "Cerrar", "SSE.Views.ViewManagerDlg.guestText": "Invitado", + "SSE.Views.ViewManagerDlg.lockText": "Bloqueado", "SSE.Views.ViewManagerDlg.textDelete": "Eliminar", "SSE.Views.ViewManagerDlg.textDuplicate": "Duplicar", "SSE.Views.ViewManagerDlg.textEmpty": "Aún no se han creado vistas.", @@ -3508,7 +3582,9 @@ "SSE.Views.ViewManagerDlg.warnDeleteView": "Está tratando de eliminar la vista actualmente habilitada '%1'. ¿Cerrar esta vista y eliminarla?", "SSE.Views.ViewTab.capBtnFreeze": "Congelar paneles", "SSE.Views.ViewTab.capBtnSheetView": "Vista de hoja", + "SSE.Views.ViewTab.textAlwaysShowToolbar": "Mostrar siempre la barra de herramientas", "SSE.Views.ViewTab.textClose": "Cerrar", + "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "Combinar las barras de hoja y de estado", "SSE.Views.ViewTab.textCreate": "Nuevo", "SSE.Views.ViewTab.textDefault": "Predeterminado", "SSE.Views.ViewTab.textFormula": "Barra de fórmulas", @@ -3516,7 +3592,9 @@ "SSE.Views.ViewTab.textFreezeRow": "Inmovilizar fila superior", "SSE.Views.ViewTab.textGridlines": "Líneas de cuadrícula", "SSE.Views.ViewTab.textHeadings": "Encabezados", + "SSE.Views.ViewTab.textInterfaceTheme": "Tema del interfaz", "SSE.Views.ViewTab.textManager": "Administrador de vista", + "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Mostrar la sombra de los paneles inmovilizados", "SSE.Views.ViewTab.textUnFreeze": "Movilizar paneles", "SSE.Views.ViewTab.textZeros": "Mostrar ceros", "SSE.Views.ViewTab.textZoom": "Zoom", diff --git a/apps/spreadsheeteditor/main/locale/fr.json b/apps/spreadsheeteditor/main/locale/fr.json index f816049d4..07c5bc318 100644 --- a/apps/spreadsheeteditor/main/locale/fr.json +++ b/apps/spreadsheeteditor/main/locale/fr.json @@ -114,6 +114,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Nouveau", "Common.UI.ExtendedColorDialog.textRGBErr": "La valeur saisie est incorrecte.
Entrez une valeur numérique de 0 à 255.", "Common.UI.HSBColorPicker.textNoColor": "Pas de couleur", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Masquer le mot de passe", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Afficher le mot de passe", "Common.UI.SearchDialog.textHighlight": "Surligner les résultats", "Common.UI.SearchDialog.textMatchCase": "Сas sensible", "Common.UI.SearchDialog.textReplaceDef": "Saisissez le texte de remplacement", @@ -178,12 +180,14 @@ "Common.Views.Comments.mniAuthorDesc": "Auteur de Z à A", "Common.Views.Comments.mniDateAsc": "Plus ancien", "Common.Views.Comments.mniDateDesc": "Plus récent", + "Common.Views.Comments.mniFilterGroups": "Filtrer par groupe", "Common.Views.Comments.mniPositionAsc": "Du haut", "Common.Views.Comments.mniPositionDesc": "Du bas", "Common.Views.Comments.textAdd": "Ajouter", "Common.Views.Comments.textAddComment": "Ajouter", "Common.Views.Comments.textAddCommentToDoc": "Ajouter un commentaire au document", "Common.Views.Comments.textAddReply": "Ajouter une réponse", + "Common.Views.Comments.textAll": "Tout", "Common.Views.Comments.textAnonym": "Invité", "Common.Views.Comments.textCancel": "Annuler", "Common.Views.Comments.textClose": "Fermer", @@ -197,6 +201,7 @@ "Common.Views.Comments.textResolve": "Résoudre", "Common.Views.Comments.textResolved": "Résolu", "Common.Views.Comments.textSort": "Trier les commentaires", + "Common.Views.Comments.textViewResolved": "Vous n'avez pas la permission de rouvrir le commentaire", "Common.Views.CopyWarningDialog.textDontShow": "Ne plus afficher ce message", "Common.Views.CopyWarningDialog.textMsg": "Vous pouvez réaliser les actions de copier, couper et coller en utilisant les boutons de la barre d'outils et à l'aide du menu contextuel à partir de cet onglet uniquement.

Pour copier ou coller de / vers les applications en dehors de l'onglet de l'éditeur, utilisez les combinaisons de touches suivantes :", "Common.Views.CopyWarningDialog.textTitle": "Fonctions de Copier, Couper et Coller", @@ -364,6 +369,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Ouvrir à nouveau", "Common.Views.ReviewPopover.textReply": "Répondre", "Common.Views.ReviewPopover.textResolve": "Résoudre", + "Common.Views.ReviewPopover.textViewResolved": "Vous n'avez pas la permission de rouvrir le commentaire", "Common.Views.ReviewPopover.txtDeleteTip": "Supprimer", "Common.Views.ReviewPopover.txtEditTip": "Modifier", "Common.Views.SaveAsDlg.textLoading": "Chargement", @@ -474,6 +480,7 @@ "SSE.Controllers.DocumentHolder.txtAddVer": "Ajouter une ligne verticale", "SSE.Controllers.DocumentHolder.txtAlignToChar": "Aligner à caractère", "SSE.Controllers.DocumentHolder.txtAll": "(Tous)", + "SSE.Controllers.DocumentHolder.txtAllTableHint": "Renvoie le contenu complet du tableau ou les colonnes indiquées, y compris les titres des colonnes, les données et les lignes des totaux du tableau", "SSE.Controllers.DocumentHolder.txtAnd": "et", "SSE.Controllers.DocumentHolder.txtBegins": "Commence par", "SSE.Controllers.DocumentHolder.txtBelowAve": "Au dessous de la moyenne", @@ -483,6 +490,7 @@ "SSE.Controllers.DocumentHolder.txtColumn": "Colonne", "SSE.Controllers.DocumentHolder.txtColumnAlign": "L'alignement de la colonne", "SSE.Controllers.DocumentHolder.txtContains": "Contient", + "SSE.Controllers.DocumentHolder.txtDataTableHint": "Renvoie les cellules de données du tableau ou les colonnes indiquées ", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Diminuer la taille de l'argument", "SSE.Controllers.DocumentHolder.txtDeleteArg": "Supprimer l'argument", "SSE.Controllers.DocumentHolder.txtDeleteBreak": "Supprimer le saut manuel", @@ -506,6 +514,7 @@ "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Supérieur ou égal à", "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Char au-dessus du texte", "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Char en-dessus du texte", + "SSE.Controllers.DocumentHolder.txtHeadersTableHint": "Renvoie les titres des colonnes du tableau ou les colonnes indiquées ", "SSE.Controllers.DocumentHolder.txtHeight": "Hauteur", "SSE.Controllers.DocumentHolder.txtHideBottom": "Masquer bordure inférieure", "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "Cacher limite inférieure", @@ -584,7 +593,9 @@ "SSE.Controllers.DocumentHolder.txtSorting": "Tri", "SSE.Controllers.DocumentHolder.txtSortSelected": "Trier l'objet sélectionné ", "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Allonger des crochets", + "SSE.Controllers.DocumentHolder.txtThisRowHint": "Choisissez uniquement cette ligne de la colonne spécifiée", "SSE.Controllers.DocumentHolder.txtTop": "En haut", + "SSE.Controllers.DocumentHolder.txtTotalsTableHint": "Renvoie les lignes des totaux du tableau ou les colonnes indiquées ", "SSE.Controllers.DocumentHolder.txtUnderbar": "Barre en dessous d'un texte", "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Annuler l'expansion automatique du tableau", "SSE.Controllers.DocumentHolder.txtUseTextImport": "Utiliser l'assistant d'importation de texte", @@ -639,6 +650,7 @@ "SSE.Controllers.Main.errorAutoFilterHiddenRange": "L'opération ne peut pas être effectuée car la zone contient des cellules filtrées.
Veuillez supprimer les filtres et réessayez.", "SSE.Controllers.Main.errorBadImageUrl": "L'URL d'image est incorrecte", "SSE.Controllers.Main.errorCannotUngroup": "Impossible de dissocier. Pour construire un plan, sélectionnez les lignes ou les colonnes de détail et groupez-les.", + "SSE.Controllers.Main.errorCannotUseCommandProtectedSheet": "Vous ne pouvez pas utiliser cette commande sur une feuille protégée. Pour utiliser cette commande, retirez la protection de la feuille.
Il peut vous être demandé de saisir un mot de passe.", "SSE.Controllers.Main.errorChangeArray": "Impossible de modifier une partie de matrice.", "SSE.Controllers.Main.errorChangeFilteredRange": "Cette action va modifier une plage de données filtrée sur votre feuille de calcul.
Pour réaliser cette action, veuillez supprimer les filtres automatiques.", "SSE.Controllers.Main.errorChangeOnProtectedSheet": "La cellule ou le graphique que vous essayez de modifier se trouve sur une feuille protégée.
Pour effectuer une modification, déprotégez la feuille. Il se peut que l'on vous demande de saisir un mot de passe.", @@ -769,6 +781,7 @@ "SSE.Controllers.Main.textNoLicenseTitle": "La limite de la licence est atteinte", "SSE.Controllers.Main.textPaidFeature": "Fonction payante", "SSE.Controllers.Main.textPleaseWait": "L'opération peut prendre plus de temps que prévu. Veuillez patienter...", + "SSE.Controllers.Main.textReconnect": "La connexion est restaurée", "SSE.Controllers.Main.textRemember": "Se souvenir de mon choix pour tous les fichiers", "SSE.Controllers.Main.textRenameError": "Le nom d'utilisateur ne peut être vide.", "SSE.Controllers.Main.textRenameLabel": "Entrez un nom à utiliser pour la collaboration", @@ -1060,6 +1073,7 @@ "SSE.Controllers.Statusbar.errorLastSheet": "Un classeur doit avoir au moins une feuille de calcul visible.", "SSE.Controllers.Statusbar.errorRemoveSheet": "Impossible de supprimer la feuille de calcul.", "SSE.Controllers.Statusbar.strSheet": "Feuille", + "SSE.Controllers.Statusbar.textDisconnect": "La connexion est perdue
Tentative de connexion. Veuillez vérifier les paramètres de connexion.", "SSE.Controllers.Statusbar.textSheetViewTip": "Vous avez activé le mode d'affichage d'une feuille. Les filtres et les tris sont visibles uniquement à vous et à ceux/celles qui ont activé ce mode.", "SSE.Controllers.Statusbar.textSheetViewTipFilters": "Vous êtes dans le mode aperçu d'une feuille de calcul. Les filtres sont visibles seulement à vous et à ceux qui sont aussi dans ce mode. ", "SSE.Controllers.Statusbar.warnDeleteSheet": "La feuille de travail peut contenir des données. Êtes-vous sûr de vouloir continuer ?", @@ -1085,6 +1099,7 @@ "SSE.Controllers.Toolbar.textPivot": "Tableau croisé dynamique", "SSE.Controllers.Toolbar.textRadical": "Radicaux", "SSE.Controllers.Toolbar.textRating": "Évaluations", + "SSE.Controllers.Toolbar.textRecentlyUsed": "Récemment utilisé", "SSE.Controllers.Toolbar.textScript": "Scripts", "SSE.Controllers.Toolbar.textShapes": "Formes", "SSE.Controllers.Toolbar.textSymbols": "Symboles", @@ -1426,7 +1441,9 @@ "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Séparateur décimal", "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Séparateur de milliers", "SSE.Views.AdvancedSeparatorDialog.textLabel": "Paramètres de reconnaissance du format de nombre", + "SSE.Views.AdvancedSeparatorDialog.textQualifier": "Qualificateur de texte", "SSE.Views.AdvancedSeparatorDialog.textTitle": "Paramètres avancés", + "SSE.Views.AdvancedSeparatorDialog.txtNone": "(aucun)", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Filtre personnalisé", "SSE.Views.AutoFilterDialog.textAddSelection": "Ajouter la sélection actuelle pour filtrer", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Vides}", @@ -1872,6 +1889,7 @@ "SSE.Views.DocumentHolder.textCrop": "Rogner", "SSE.Views.DocumentHolder.textCropFill": "Remplissage", "SSE.Views.DocumentHolder.textCropFit": "Ajuster", + "SSE.Views.DocumentHolder.textEditPoints": "Modifier les points", "SSE.Views.DocumentHolder.textEntriesList": "Choisir dans la liste déroulante", "SSE.Views.DocumentHolder.textFlipH": "Retourner horizontalement", "SSE.Views.DocumentHolder.textFlipV": "Retourner verticalement", @@ -2241,6 +2259,7 @@ "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Modifier les règles de la mise en forme", "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Nouvelle règle de mise en forme", "SSE.Views.FormatRulesManagerDlg.guestText": "Invité", + "SSE.Views.FormatRulesManagerDlg.lockText": "Verrouillé", "SSE.Views.FormatRulesManagerDlg.text1Above": "1 écart type au-dessus de la moyenne", "SSE.Views.FormatRulesManagerDlg.text1Below": "1 écart type en dessous de la moyenne", "SSE.Views.FormatRulesManagerDlg.text2Above": "2 écarts types au-dessus de la moyenne", @@ -2402,6 +2421,7 @@ "SSE.Views.ImageSettings.textCrop": "Rogner", "SSE.Views.ImageSettings.textCropFill": "Remplissage", "SSE.Views.ImageSettings.textCropFit": "Ajuster", + "SSE.Views.ImageSettings.textCropToShape": "Rogner à la forme", "SSE.Views.ImageSettings.textEdit": "Modifier", "SSE.Views.ImageSettings.textEditObject": "Modifier l'objet", "SSE.Views.ImageSettings.textFlip": "Retournement", @@ -2416,6 +2436,7 @@ "SSE.Views.ImageSettings.textInsert": "Remplacer l’image", "SSE.Views.ImageSettings.textKeepRatio": "Proportions constantes", "SSE.Views.ImageSettings.textOriginalSize": "Taille actuelle", + "SSE.Views.ImageSettings.textRecentlyUsed": "Récemment utilisé", "SSE.Views.ImageSettings.textRotate90": "Faire pivoter de 90°", "SSE.Views.ImageSettings.textRotation": "Rotation", "SSE.Views.ImageSettings.textSize": "Taille", @@ -2493,6 +2514,7 @@ "SSE.Views.NamedRangePasteDlg.txtTitle": "Coller un nom ", "SSE.Views.NameManagerDlg.closeButtonText": "Fermer", "SSE.Views.NameManagerDlg.guestText": "Invité", + "SSE.Views.NameManagerDlg.lockText": "Verrouillé", "SSE.Views.NameManagerDlg.textDataRange": "Plage de données", "SSE.Views.NameManagerDlg.textDelete": "Supprimer", "SSE.Views.NameManagerDlg.textEdit": "Modifier", @@ -2724,6 +2746,43 @@ "SSE.Views.PrintTitlesDialog.textSelectRange": "Sélectionner la ligne", "SSE.Views.PrintTitlesDialog.textTitle": "Titres à imprimer", "SSE.Views.PrintTitlesDialog.textTop": "Répéter les lignes en haut", + "SSE.Views.PrintWithPreview.txtActualSize": "Taille réelle", + "SSE.Views.PrintWithPreview.txtAllSheets": "Toutes les feuilles", + "SSE.Views.PrintWithPreview.txtApplyToAllSheets": "Appliquer à toutes les feuilles", + "SSE.Views.PrintWithPreview.txtBottom": "Bas", + "SSE.Views.PrintWithPreview.txtCurrentSheet": "Feuille actuelle", + "SSE.Views.PrintWithPreview.txtCustom": "Personnalisé", + "SSE.Views.PrintWithPreview.txtCustomOptions": "Options personnalisées", + "SSE.Views.PrintWithPreview.txtFitCols": "Ajuster toutes les colonnes à une page", + "SSE.Views.PrintWithPreview.txtFitPage": "Ajuster la feuille à une page", + "SSE.Views.PrintWithPreview.txtFitRows": "Ajuster toutes les lignes à une page", + "SSE.Views.PrintWithPreview.txtGridlinesAndHeadings": "Quadrillage et titres", + "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Paramètres de l'en-tête/du pied de page", + "SSE.Views.PrintWithPreview.txtIgnore": "Ignorer la zone d'impression", + "SSE.Views.PrintWithPreview.txtLandscape": "Paysage", + "SSE.Views.PrintWithPreview.txtLeft": "A gauche", + "SSE.Views.PrintWithPreview.txtMargins": "Marges", + "SSE.Views.PrintWithPreview.txtOf": "de {0}", + "SSE.Views.PrintWithPreview.txtPage": "Page", + "SSE.Views.PrintWithPreview.txtPageNumInvalid": "Numéro de page non valide", + "SSE.Views.PrintWithPreview.txtPageOrientation": "Orientation de page", + "SSE.Views.PrintWithPreview.txtPageSize": "Taille de la page", + "SSE.Views.PrintWithPreview.txtPortrait": "Portrait", + "SSE.Views.PrintWithPreview.txtPrint": "Imprimer", + "SSE.Views.PrintWithPreview.txtPrintGrid": "Imprimer le quadrillage", + "SSE.Views.PrintWithPreview.txtPrintHeadings": "Imprimer les titres des lignes et des colonnes", + "SSE.Views.PrintWithPreview.txtPrintRange": "Zone d'impression", + "SSE.Views.PrintWithPreview.txtPrintTitles": "Imprimer les titres", + "SSE.Views.PrintWithPreview.txtRepeat": "Répéter...", + "SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft": "Répéter les colonnes à gauche", + "SSE.Views.PrintWithPreview.txtRepeatRowsAtTop": "Répéter les lignes en haut", + "SSE.Views.PrintWithPreview.txtRight": "A droite", + "SSE.Views.PrintWithPreview.txtSave": "Enregistrer", + "SSE.Views.PrintWithPreview.txtScaling": "Mise à l'échelle", + "SSE.Views.PrintWithPreview.txtSelection": "Sélection", + "SSE.Views.PrintWithPreview.txtSettingsOfSheet": "Paramètres de la feuille", + "SSE.Views.PrintWithPreview.txtSheet": "Feuille : {0}", + "SSE.Views.PrintWithPreview.txtTop": "Haut", "SSE.Views.ProtectDialog.textExistName": "ERREUR ! Une plage avec ce titre existe déjà", "SSE.Views.ProtectDialog.textInvalidName": "Le titre de la plage doit commencer par une lettre et ne peut contenir que des lettres, des chiffres et des espaces.", "SSE.Views.ProtectDialog.textInvalidRange": "ERREUR! La plage de cellules non valide", @@ -2758,6 +2817,7 @@ "SSE.Views.ProtectDialog.txtWBDescription": "Pour empêcher les autres utilisateurs d'afficher les feuilles de calcul cachées, d'ajouter, de déplacer, de supprimer ou de masquer des feuilles de calcul et de renommer des feuilles de calcul, vous pouvez protéger la structure de votre livre par un mot de passe.", "SSE.Views.ProtectDialog.txtWBTitle": "Protéger la structure du livre", "SSE.Views.ProtectRangesDlg.guestText": "Invité", + "SSE.Views.ProtectRangesDlg.lockText": "Verrouillé", "SSE.Views.ProtectRangesDlg.textDelete": "Supprimer", "SSE.Views.ProtectRangesDlg.textEdit": "Modifier", "SSE.Views.ProtectRangesDlg.textEmpty": "Aucune plage n'est autorisée pour la modification.", @@ -2837,6 +2897,7 @@ "SSE.Views.ShapeSettings.textPatternFill": "Modèle", "SSE.Views.ShapeSettings.textPosition": "Position", "SSE.Views.ShapeSettings.textRadial": "Radial", + "SSE.Views.ShapeSettings.textRecentlyUsed": "Récemment utilisé", "SSE.Views.ShapeSettings.textRotate90": "Faire pivoter de 90°", "SSE.Views.ShapeSettings.textRotation": "Rotation", "SSE.Views.ShapeSettings.textSelectImage": "Sélectionner l'image", @@ -3098,6 +3159,7 @@ "SSE.Views.Statusbar.tipAddTab": "Ajouter feuille de calcul", "SSE.Views.Statusbar.tipFirst": "Faire défiler vers la première feuille de calcul", "SSE.Views.Statusbar.tipLast": "Faire défiler vers la dernière feuille de calcul", + "SSE.Views.Statusbar.tipListOfSheets": "Liste des feuilles", "SSE.Views.Statusbar.tipNext": "Faire défiler la liste des feuilles à droite", "SSE.Views.Statusbar.tipPrev": "Faire défiler la liste des feuilles à gauche", "SSE.Views.Statusbar.tipZoomFactor": "Zoom", @@ -3286,6 +3348,8 @@ "SSE.Views.Toolbar.textPageMarginsCustom": "Marges personnalisées", "SSE.Views.Toolbar.textPortrait": "Portrait", "SSE.Views.Toolbar.textPrint": "Imprimer", + "SSE.Views.Toolbar.textPrintGridlines": "Imprimer le quadrillage", + "SSE.Views.Toolbar.textPrintHeadings": "Imprimer les titres", "SSE.Views.Toolbar.textPrintOptions": "Paramètres d'impression", "SSE.Views.Toolbar.textRight": "A droite: ", "SSE.Views.Toolbar.textRightBorders": "Bordures droites", @@ -3364,7 +3428,16 @@ "SSE.Views.Toolbar.tipInsertTable": "Insérer un tableau", "SSE.Views.Toolbar.tipInsertText": "Insérez zone de texte", "SSE.Views.Toolbar.tipInsertTextart": "Insérer Text Art", + "SSE.Views.Toolbar.tipMarkersArrow": "Puces fléchées", + "SSE.Views.Toolbar.tipMarkersCheckmark": "Puces coches", + "SSE.Views.Toolbar.tipMarkersDash": "Tirets", + "SSE.Views.Toolbar.tipMarkersFRhombus": "Losanges remplis", + "SSE.Views.Toolbar.tipMarkersFRound": "Puces arrondies remplies", + "SSE.Views.Toolbar.tipMarkersFSquare": "Puces carrées remplies", + "SSE.Views.Toolbar.tipMarkersHRound": "Puces rondes vides", + "SSE.Views.Toolbar.tipMarkersStar": "Puces en étoile", "SSE.Views.Toolbar.tipMerge": "Fusionner et centrer", + "SSE.Views.Toolbar.tipNone": "Aucun", "SSE.Views.Toolbar.tipNumFormat": "Format de nombre", "SSE.Views.Toolbar.tipPageMargins": "Marges de la page", "SSE.Views.Toolbar.tipPageOrient": "Orientation de la page", @@ -3493,6 +3566,7 @@ "SSE.Views.ValueFieldSettingsDialog.txtVarp": "Varp", "SSE.Views.ViewManagerDlg.closeButtonText": "Fermer", "SSE.Views.ViewManagerDlg.guestText": "Invité", + "SSE.Views.ViewManagerDlg.lockText": "Verrouillé", "SSE.Views.ViewManagerDlg.textDelete": "Supprimer", "SSE.Views.ViewManagerDlg.textDuplicate": "Dupliquer", "SSE.Views.ViewManagerDlg.textEmpty": "Aucun aperçu n'a été créé.", @@ -3508,7 +3582,9 @@ "SSE.Views.ViewManagerDlg.warnDeleteView": "Vous essayez de supprimer l'affichage '%1' qui est maintenant actif.
Fermer et supprimer cet affichage ?", "SSE.Views.ViewTab.capBtnFreeze": "Verrouiller les volets", "SSE.Views.ViewTab.capBtnSheetView": "Afficher une feuille", + "SSE.Views.ViewTab.textAlwaysShowToolbar": "Toujours afficher la barre d'outils", "SSE.Views.ViewTab.textClose": "Fermer", + "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "Combiner les barres des feuilles et d'état", "SSE.Views.ViewTab.textCreate": "Nouveau", "SSE.Views.ViewTab.textDefault": "Par défaut", "SSE.Views.ViewTab.textFormula": "Barre de formule", @@ -3516,7 +3592,9 @@ "SSE.Views.ViewTab.textFreezeRow": "Verouiller la ligne supérieure", "SSE.Views.ViewTab.textGridlines": "Quadrillage", "SSE.Views.ViewTab.textHeadings": "En-têtes", + "SSE.Views.ViewTab.textInterfaceTheme": "Thème d’interface", "SSE.Views.ViewTab.textManager": "Gestionnaire d'affichage", + "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Afficher l'ombre des zones figées", "SSE.Views.ViewTab.textUnFreeze": "Libérer les volets", "SSE.Views.ViewTab.textZeros": "Afficher des zéros", "SSE.Views.ViewTab.textZoom": "Changer l'échelle", diff --git a/apps/spreadsheeteditor/main/locale/ja.json b/apps/spreadsheeteditor/main/locale/ja.json index 8525ba8bf..f91ecad80 100644 --- a/apps/spreadsheeteditor/main/locale/ja.json +++ b/apps/spreadsheeteditor/main/locale/ja.json @@ -114,6 +114,8 @@ "Common.UI.ExtendedColorDialog.textNew": "新しい", "Common.UI.ExtendedColorDialog.textRGBErr": "入力された値が正しくありません。
0〜255の数値を入力してください。", "Common.UI.HSBColorPicker.textNoColor": "色なし", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "パスワードを隠す", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "パスワードを表示する", "Common.UI.SearchDialog.textHighlight": "結果を強調表示", "Common.UI.SearchDialog.textMatchCase": "大文字と小文字の区別", "Common.UI.SearchDialog.textReplaceDef": "代替テキストの挿入", @@ -178,6 +180,7 @@ "Common.Views.Comments.mniAuthorDesc": "ZからAへで作者を表示する", "Common.Views.Comments.mniDateAsc": "最も古い", "Common.Views.Comments.mniDateDesc": "最も新しい", + "Common.Views.Comments.mniFilterGroups": "グループでフィルター", "Common.Views.Comments.mniPositionAsc": "上から", "Common.Views.Comments.mniPositionDesc": "下から", "Common.Views.Comments.textAdd": "追加", @@ -712,7 +715,7 @@ "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "インターネット接続が復旧し、ファイルのバージョンが更新されました。
作業を継続する前に、ファイルをダウンロードするか、内容をコピーして、変更が消えてしまわないように確認してから、ページを再びお読み込みください。", "SSE.Controllers.Main.errorUserDrop": "今、ファイルにアクセスすることはできません。", "SSE.Controllers.Main.errorUsersExceed": "料金プランで許可されているユーザー数を超過しました。", - "SSE.Controllers.Main.errorViewerDisconnect": "接続が失われました。文書の表示が可能ですが、
接続が復元されてページが再ロードされるまで、ダウンロードまたは印刷することはできません。", + "SSE.Controllers.Main.errorViewerDisconnect": "接続が失われました。文書の表示は可能ですが、
再度接続されてページが再ロードされるまで、ダウンロードまたは印刷することはできません。", "SSE.Controllers.Main.errorWrongBracketsCount": "入力した数式は正しくありません。
かっこの数が正しくありません。", "SSE.Controllers.Main.errorWrongOperator": "入力した数式は正しくありません。誤った演算子が使用されました。
エラーを確認して修正してください。または、数式の編集をキャンセルするためにESCボタンを使用してください。", "SSE.Controllers.Main.errorWrongPassword": "パスワードが正しくありません。", @@ -1038,7 +1041,7 @@ "SSE.Controllers.Main.warnBrowserIE9": "IE9にアプリケーションの機能のレベルが低いです。IE10または次のバージョンを使ってください。", "SSE.Controllers.Main.warnBrowserZoom": "お使いのブラウザの現在のズームの設定は完全にサポートされていません。Ctrl+0を押して、デフォルトのズームにリセットしてください。", "SSE.Controllers.Main.warnLicenseExceeded": "%1エディターへの同時接続の制限に達しました。 このドキュメントは表示専用で開かれます。
詳細については、管理者にお問い合わせください。", - "SSE.Controllers.Main.warnLicenseExp": "ライセンスの期限が切れました。
ライセンスを更新して、ページをリロードしてください。", + "SSE.Controllers.Main.warnLicenseExp": "ライセンスの有効期限が切れています。
ライセンスを更新してページをリロードしてください。", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "ライセンスの有効期限が切れています。
ドキュメント編集機能にアクセスできません。
管理者にご連絡ください。", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "ライセンスを更新する必要があります。
ドキュメント編集機能へのアクセスが制限されています。
フルアクセスを取得するには、管理者にご連絡ください", "SSE.Controllers.Main.warnLicenseUsersExceeded": "%1エディターのユーザー制限に達しました。 詳細については、管理者にお問い合わせください。", diff --git a/apps/spreadsheeteditor/main/locale/ro.json b/apps/spreadsheeteditor/main/locale/ro.json index 8ade11089..17bc4d53e 100644 --- a/apps/spreadsheeteditor/main/locale/ro.json +++ b/apps/spreadsheeteditor/main/locale/ro.json @@ -114,6 +114,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Nou", "Common.UI.ExtendedColorDialog.textRGBErr": "Valoarea introdusă nu este corectă.
Introduceți valoarea numerică de la 0 până la 255.", "Common.UI.HSBColorPicker.textNoColor": "Fără culoare", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Ascunde parola", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Afișează parola", "Common.UI.SearchDialog.textHighlight": "Evidențierea rezultatelor", "Common.UI.SearchDialog.textMatchCase": "Sensibil la litere mari și mici", "Common.UI.SearchDialog.textReplaceDef": "Introduceți textul înlocuitor", @@ -178,12 +180,14 @@ "Common.Views.Comments.mniAuthorDesc": "Autor de la Z la A", "Common.Views.Comments.mniDateAsc": "Cele mai vechi", "Common.Views.Comments.mniDateDesc": "Cele mai recente", + "Common.Views.Comments.mniFilterGroups": "Filtrare după grup", "Common.Views.Comments.mniPositionAsc": "De sus", "Common.Views.Comments.mniPositionDesc": "De jos", "Common.Views.Comments.textAdd": "Adaugă", "Common.Views.Comments.textAddComment": "Adaugă comentariu", "Common.Views.Comments.textAddCommentToDoc": "Adăugare comentariu la document", "Common.Views.Comments.textAddReply": "Adăugare răspuns", + "Common.Views.Comments.textAll": "Toate", "Common.Views.Comments.textAnonym": "Invitat", "Common.Views.Comments.textCancel": "Anulare", "Common.Views.Comments.textClose": "Închidere", @@ -197,6 +201,7 @@ "Common.Views.Comments.textResolve": "Rezolvare", "Common.Views.Comments.textResolved": "Rezolvat", "Common.Views.Comments.textSort": "Sortare comentarii", + "Common.Views.Comments.textViewResolved": "Dvs. nu aveți permisiunea de a redeschide comentariu", "Common.Views.CopyWarningDialog.textDontShow": "Nu afișa acest mesaj din nou", "Common.Views.CopyWarningDialog.textMsg": "Operațiuni de copiere, decupare și lipire din bară de instrumente sau meniul contextual al editorului se execută numai în editorul.

Pentru copiere și lipire din sau în aplicații exterioare folosiți următoarele combinații de taste:", "Common.Views.CopyWarningDialog.textTitle": "Comenzile de copiere, decupare și lipire", @@ -213,7 +218,7 @@ "Common.Views.Header.textBack": "Deschidere locația fișierului", "Common.Views.Header.textCompactView": "Ascundere bară de instrumente", "Common.Views.Header.textHideLines": "Ascundere rigle", - "Common.Views.Header.textHideStatusBar": "Ascundere bară de stare", + "Common.Views.Header.textHideStatusBar": "A îmbina selectorii foii de lucru cu bara de stare", "Common.Views.Header.textRemoveFavorite": "Eliminare din Preferințe", "Common.Views.Header.textSaveBegin": "Salvare în progres...", "Common.Views.Header.textSaveChanged": "Modificat", @@ -364,6 +369,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Deschidere din nou", "Common.Views.ReviewPopover.textReply": "Răspunde", "Common.Views.ReviewPopover.textResolve": "Rezolvare", + "Common.Views.ReviewPopover.textViewResolved": "Dvs. nu aveți permisiunea de a redeschide comentariu", "Common.Views.ReviewPopover.txtDeleteTip": "Ștergere", "Common.Views.ReviewPopover.txtEditTip": "Editare", "Common.Views.SaveAsDlg.textLoading": "Încărcare", @@ -474,6 +480,7 @@ "SSE.Controllers.DocumentHolder.txtAddVer": "Adăugare linia verticală", "SSE.Controllers.DocumentHolder.txtAlignToChar": "Aliniere la caracter", "SSE.Controllers.DocumentHolder.txtAll": "(Toate)", + "SSE.Controllers.DocumentHolder.txtAllTableHint": "Returnează tot conţinutul unui tabel sau coloanele selectate într-un tabel inclusiv anteturi de coloane, rânduri de date și rânduri de totaluri ", "SSE.Controllers.DocumentHolder.txtAnd": "și", "SSE.Controllers.DocumentHolder.txtBegins": "începe cu", "SSE.Controllers.DocumentHolder.txtBelowAve": "Sub medie", @@ -483,6 +490,7 @@ "SSE.Controllers.DocumentHolder.txtColumn": "Coloană", "SSE.Controllers.DocumentHolder.txtColumnAlign": "Alinierea coloanei", "SSE.Controllers.DocumentHolder.txtContains": "conține", + "SSE.Controllers.DocumentHolder.txtDataTableHint": "Returnează celule de date dintr-un tabel sau colonele selectate într-un tabel", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Reducere argument dimensiune", "SSE.Controllers.DocumentHolder.txtDeleteArg": "Eliminare argument", "SSE.Controllers.DocumentHolder.txtDeleteBreak": "Eliminare întrerupere manuală", @@ -506,6 +514,7 @@ "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Mai mare sau egal", "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Caracter de deasupra textului", "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Caracter sub text", + "SSE.Controllers.DocumentHolder.txtHeadersTableHint": "Returnează titlurile coloanelor din tabel sau coloanele selectate într-un tabel ", "SSE.Controllers.DocumentHolder.txtHeight": "Înălțime", "SSE.Controllers.DocumentHolder.txtHideBottom": "Ascundere bordură de jos", "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "Ascundere limită inferioară", @@ -584,7 +593,9 @@ "SSE.Controllers.DocumentHolder.txtSorting": "Sortare", "SSE.Controllers.DocumentHolder.txtSortSelected": "Sortarea selecției", "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Întindere paranteze", + "SSE.Controllers.DocumentHolder.txtThisRowHint": "Numai acest rând din coloana selectată", "SSE.Controllers.DocumentHolder.txtTop": "Sus", + "SSE.Controllers.DocumentHolder.txtTotalsTableHint": "Returnează rândurile de totaluri dintr-un tabel sau coloanele selectate într-un tabel", "SSE.Controllers.DocumentHolder.txtUnderbar": "Bară dedesubt textului", "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Anulare extindere automată a tabelului ", "SSE.Controllers.DocumentHolder.txtUseTextImport": "Utilizați expertul import text", @@ -639,6 +650,7 @@ "SSE.Controllers.Main.errorAutoFilterHiddenRange": "Operațiunea nu poate fi efectuată deoarece zonă conține celule filtrate.
Reafișați elementele filtrate și încercați din nou.", "SSE.Controllers.Main.errorBadImageUrl": "URL-ul imaginii incorectă", "SSE.Controllers.Main.errorCannotUngroup": "Imposibil de anulat grupare. Pentru a crea o schiță, selectați rândurile sau coloanele de detalii și le grupați.", + "SSE.Controllers.Main.errorCannotUseCommandProtectedSheet": "Nu puteți folosi această comandă într-o foaie de calcul protejată. Ca să o folosiți, protejarea foii trebuie anulată.
Introducerea parolei poate fi necesară.", "SSE.Controllers.Main.errorChangeArray": "Nu puteți modifica parte dintr-o matrice.", "SSE.Controllers.Main.errorChangeFilteredRange": "Operațiunea va afecta zonă filtrată din foaia de calcul.
Pentru a termina operațiunea dezactivați filtrarea automată. ", "SSE.Controllers.Main.errorChangeOnProtectedSheet": "Celula sau diagrama pe care încercați să schimbați este din foaia de calcul protejată
Dezactivați protejarea foii de calcul.Este posibil să fie necesară introducerea parolei.", @@ -769,6 +781,7 @@ "SSE.Controllers.Main.textNoLicenseTitle": "Ați atins limita stabilită de licență", "SSE.Controllers.Main.textPaidFeature": "Funcția contra plată", "SSE.Controllers.Main.textPleaseWait": "Operațiunea durează mai mult decât s-a anticipat. Vă rugăm să așteptați...", + "SSE.Controllers.Main.textReconnect": "Conexiunea este restabilită", "SSE.Controllers.Main.textRemember": "Salvează setările pentru toate fișiere", "SSE.Controllers.Main.textRenameError": "Numele utilizatorului trebuie comletat.", "SSE.Controllers.Main.textRenameLabel": "Introduceți numele pentru lucrul în colaborare", @@ -1060,6 +1073,7 @@ "SSE.Controllers.Statusbar.errorLastSheet": "În registrul de calcul trebuie să fie vizibilă cel puțin o foie de lucru. ", "SSE.Controllers.Statusbar.errorRemoveSheet": "Imposibil de șters foaia de calcul.", "SSE.Controllers.Statusbar.strSheet": "Foaie", + "SSE.Controllers.Statusbar.textDisconnect": "Conexiunea a fost pierdută
Încercare de conectare. Verificați setările conexiunii.", "SSE.Controllers.Statusbar.textSheetViewTip": "Sunteți în modul de vizualizare foi. Filtre și sortare sunt vizibile numai de către dvs. și alți utilizatori care sunt în vizualizarea dată în acest moment.", "SSE.Controllers.Statusbar.textSheetViewTipFilters": "Sunteți în modul de Afișare foaie. Criteriile de filtrare sunt vizibile numai pentru dumneavoastră și altor persoane în afișare.", "SSE.Controllers.Statusbar.warnDeleteSheet": "Foile de calcul selectate pot conține datele. Sigur doriți să continuați?", @@ -1085,6 +1099,7 @@ "SSE.Controllers.Toolbar.textPivot": "Tabelă Pivot", "SSE.Controllers.Toolbar.textRadical": "Radicale", "SSE.Controllers.Toolbar.textRating": "Evaluări", + "SSE.Controllers.Toolbar.textRecentlyUsed": "Utilizate recent", "SSE.Controllers.Toolbar.textScript": "Scripturile", "SSE.Controllers.Toolbar.textShapes": "Forme", "SSE.Controllers.Toolbar.textSymbols": "Simboluri", @@ -1426,7 +1441,9 @@ "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Separator zecimal", "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Separator mii", "SSE.Views.AdvancedSeparatorDialog.textLabel": "Setări pentru recunoașterea modelelor numerice", + "SSE.Views.AdvancedSeparatorDialog.textQualifier": "Calificator text", "SSE.Views.AdvancedSeparatorDialog.textTitle": "Setări avansate", + "SSE.Views.AdvancedSeparatorDialog.txtNone": "(niciunul)", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Filtru particularizat", "SSE.Views.AutoFilterDialog.textAddSelection": "Se adaugă selecția curentă la filtru", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Necompletate}", @@ -1872,6 +1889,7 @@ "SSE.Views.DocumentHolder.textCrop": "Trunchiere", "SSE.Views.DocumentHolder.textCropFill": "Umplere", "SSE.Views.DocumentHolder.textCropFit": "Potrivire", + "SSE.Views.DocumentHolder.textEditPoints": "Editare puncte", "SSE.Views.DocumentHolder.textEntriesList": "Alege din listă verticală", "SSE.Views.DocumentHolder.textFlipH": "Răsturnare orizontală", "SSE.Views.DocumentHolder.textFlipV": "Răsturnare verticală", @@ -2241,6 +2259,7 @@ "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Editare regulă de formatare", "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Nouă regulă de formatare", "SSE.Views.FormatRulesManagerDlg.guestText": "Invitat", + "SSE.Views.FormatRulesManagerDlg.lockText": "Blocat", "SSE.Views.FormatRulesManagerDlg.text1Above": "1 abatere standard deasupra medie", "SSE.Views.FormatRulesManagerDlg.text1Below": "1 abatere standard sub medie", "SSE.Views.FormatRulesManagerDlg.text2Above": "2 abateri standard deasupra medie", @@ -2402,6 +2421,7 @@ "SSE.Views.ImageSettings.textCrop": "Trunchiere", "SSE.Views.ImageSettings.textCropFill": "Umplere", "SSE.Views.ImageSettings.textCropFit": "Potrivire", + "SSE.Views.ImageSettings.textCropToShape": "Trunchiere la formă", "SSE.Views.ImageSettings.textEdit": "Editare", "SSE.Views.ImageSettings.textEditObject": "Editare obiect", "SSE.Views.ImageSettings.textFlip": "Răsturnare", @@ -2416,6 +2436,7 @@ "SSE.Views.ImageSettings.textInsert": "Înlocuire imagine", "SSE.Views.ImageSettings.textKeepRatio": "Dimensiuni constante", "SSE.Views.ImageSettings.textOriginalSize": "Dimensiunea reală", + "SSE.Views.ImageSettings.textRecentlyUsed": "Utilizate recent", "SSE.Views.ImageSettings.textRotate90": "Rotire 90°", "SSE.Views.ImageSettings.textRotation": "Rotație", "SSE.Views.ImageSettings.textSize": "Dimensiune", @@ -2493,6 +2514,7 @@ "SSE.Views.NamedRangePasteDlg.txtTitle": "Lipire nume", "SSE.Views.NameManagerDlg.closeButtonText": "Închidere", "SSE.Views.NameManagerDlg.guestText": "Invitat", + "SSE.Views.NameManagerDlg.lockText": "Blocat", "SSE.Views.NameManagerDlg.textDataRange": "Zonă de date", "SSE.Views.NameManagerDlg.textDelete": "Ștergere", "SSE.Views.NameManagerDlg.textEdit": "Editare", @@ -2724,6 +2746,43 @@ "SSE.Views.PrintTitlesDialog.textSelectRange": "Selectați zonă", "SSE.Views.PrintTitlesDialog.textTitle": "Imprimare titluri", "SSE.Views.PrintTitlesDialog.textTop": "Rânduri de repetat la început", + "SSE.Views.PrintWithPreview.txtActualSize": "Dimensiunea reală", + "SSE.Views.PrintWithPreview.txtAllSheets": "Toate foile", + "SSE.Views.PrintWithPreview.txtApplyToAllSheets": "Se aplică la toate foile", + "SSE.Views.PrintWithPreview.txtBottom": "Jos", + "SSE.Views.PrintWithPreview.txtCurrentSheet": "Foaie curentă", + "SSE.Views.PrintWithPreview.txtCustom": "Particularizat", + "SSE.Views.PrintWithPreview.txtCustomOptions": "Opțiuni particularizate", + "SSE.Views.PrintWithPreview.txtFitCols": "Se potrivesc toate coloanele pe o singură pagină", + "SSE.Views.PrintWithPreview.txtFitPage": "Se potrivește foaia pe o singură pagină", + "SSE.Views.PrintWithPreview.txtFitRows": "Se potrivesc toate rândurile pe o pagină", + "SSE.Views.PrintWithPreview.txtGridlinesAndHeadings": "Linii de grilă și titluri", + "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Setări antet/subsol", + "SSE.Views.PrintWithPreview.txtIgnore": "Ignorare zonă de imprimare", + "SSE.Views.PrintWithPreview.txtLandscape": "Vedere", + "SSE.Views.PrintWithPreview.txtLeft": "Stânga", + "SSE.Views.PrintWithPreview.txtMargins": "Margini", + "SSE.Views.PrintWithPreview.txtOf": "din {0}", + "SSE.Views.PrintWithPreview.txtPage": "Pagina", + "SSE.Views.PrintWithPreview.txtPageNumInvalid": "Număr de pagină nevalid", + "SSE.Views.PrintWithPreview.txtPageOrientation": "Orientare pagină", + "SSE.Views.PrintWithPreview.txtPageSize": "Dimensiune pagină", + "SSE.Views.PrintWithPreview.txtPortrait": "Portret", + "SSE.Views.PrintWithPreview.txtPrint": "Imprimare", + "SSE.Views.PrintWithPreview.txtPrintGrid": "Imprimare linii de grilă", + "SSE.Views.PrintWithPreview.txtPrintHeadings": "Imprimare titluri rânduri și coloane", + "SSE.Views.PrintWithPreview.txtPrintRange": "Imprimare zonă", + "SSE.Views.PrintWithPreview.txtPrintTitles": "Imprimare titluri", + "SSE.Views.PrintWithPreview.txtRepeat": "Repetare...", + "SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft": "Coloane de repetat la stânga", + "SSE.Views.PrintWithPreview.txtRepeatRowsAtTop": "Rânduri de repetat la început", + "SSE.Views.PrintWithPreview.txtRight": "Dreapta", + "SSE.Views.PrintWithPreview.txtSave": "Salvează", + "SSE.Views.PrintWithPreview.txtScaling": "Scalare", + "SSE.Views.PrintWithPreview.txtSelection": "Selecție", + "SSE.Views.PrintWithPreview.txtSettingsOfSheet": "Paramatrii foii", + "SSE.Views.PrintWithPreview.txtSheet": "Foaia: {0}", + "SSE.Views.PrintWithPreview.txtTop": "Sus", "SSE.Views.ProtectDialog.textExistName": "EROARE! Titlul de zonă există deja", "SSE.Views.ProtectDialog.textInvalidName": "Titlul zonei trebuie să înceapă cu o literă și poate conține numai litere, cifre și spații.", "SSE.Views.ProtectDialog.textInvalidRange": "EROARE! Zonă de celule nu este validă", @@ -2758,6 +2817,7 @@ "SSE.Views.ProtectDialog.txtWBDescription": "Puteți proteja structura registrului de calcul prin parolă pentru împiedicarea utilizatorilor de a vizualiza registrele de calcul mascate, de a adăuga, deplasa, șterge, masca și redenumi registrele de calcul. ", "SSE.Views.ProtectDialog.txtWBTitle": "Protejarea structurei registrului de calcul", "SSE.Views.ProtectRangesDlg.guestText": "Invitat", + "SSE.Views.ProtectRangesDlg.lockText": "Blocat", "SSE.Views.ProtectRangesDlg.textDelete": "Ștergere", "SSE.Views.ProtectRangesDlg.textEdit": "Editare", "SSE.Views.ProtectRangesDlg.textEmpty": "Zonele permise pentru editare nu sunt", @@ -2837,6 +2897,7 @@ "SSE.Views.ShapeSettings.textPatternFill": "Model", "SSE.Views.ShapeSettings.textPosition": "Poziție", "SSE.Views.ShapeSettings.textRadial": "Radială", + "SSE.Views.ShapeSettings.textRecentlyUsed": "Utilizate recent", "SSE.Views.ShapeSettings.textRotate90": "Rotire 90°", "SSE.Views.ShapeSettings.textRotation": "Rotație", "SSE.Views.ShapeSettings.textSelectImage": "Selectați imaginea", @@ -3076,7 +3137,7 @@ "SSE.Views.Statusbar.itemInsert": "Inserare", "SSE.Views.Statusbar.itemMaximum": "Maxim", "SSE.Views.Statusbar.itemMinimum": "Minim", - "SSE.Views.Statusbar.itemMove": "Mută", + "SSE.Views.Statusbar.itemMove": "Mutare", "SSE.Views.Statusbar.itemProtect": "Protejare", "SSE.Views.Statusbar.itemRename": "Redenumire", "SSE.Views.Statusbar.itemStatus": "Statutul de salvare", @@ -3098,6 +3159,7 @@ "SSE.Views.Statusbar.tipAddTab": "Adăugare foaie de calcul", "SSE.Views.Statusbar.tipFirst": "Defilare la prima foie", "SSE.Views.Statusbar.tipLast": "Defilare la ultima foaie", + "SSE.Views.Statusbar.tipListOfSheets": "Lista foilor de calcul", "SSE.Views.Statusbar.tipNext": "Defilare printr-o foaie din dreapta", "SSE.Views.Statusbar.tipPrev": "Defilare printr-o foaie din stânga", "SSE.Views.Statusbar.tipZoomFactor": "Zoom", @@ -3205,7 +3267,7 @@ "SSE.Views.Toolbar.capBtnAddComment": "Adaugă comentariu", "SSE.Views.Toolbar.capBtnColorSchemas": "Schemă de culori", "SSE.Views.Toolbar.capBtnComment": "Comentariu", - "SSE.Views.Toolbar.capBtnInsHeader": "Antet/Subsol", + "SSE.Views.Toolbar.capBtnInsHeader": "Antet și subsol", "SSE.Views.Toolbar.capBtnInsSlicer": "Slicer", "SSE.Views.Toolbar.capBtnInsSymbol": "Simbol", "SSE.Views.Toolbar.capBtnMargins": "Margini", @@ -3286,6 +3348,8 @@ "SSE.Views.Toolbar.textPageMarginsCustom": "Margini particularizate", "SSE.Views.Toolbar.textPortrait": "Portret", "SSE.Views.Toolbar.textPrint": "Imprimare", + "SSE.Views.Toolbar.textPrintGridlines": "Imprimare linii de grilă", + "SSE.Views.Toolbar.textPrintHeadings": "Imprimare titluri", "SSE.Views.Toolbar.textPrintOptions": "Imprimare setări", "SSE.Views.Toolbar.textRight": "Dreapta:", "SSE.Views.Toolbar.textRightBorders": "Borduri dun dreapta", @@ -3364,7 +3428,16 @@ "SSE.Views.Toolbar.tipInsertTable": "Inserare tabel", "SSE.Views.Toolbar.tipInsertText": "Inserare casetă text", "SSE.Views.Toolbar.tipInsertTextart": "Inserare TextArt", + "SSE.Views.Toolbar.tipMarkersArrow": "Listă cu marcatori săgeată", + "SSE.Views.Toolbar.tipMarkersCheckmark": "Listă cu marcatori simbol de bifare", + "SSE.Views.Toolbar.tipMarkersDash": "Listă cu marcatori cu o liniuță", + "SSE.Views.Toolbar.tipMarkersFRhombus": "Listă cu marcatori romb umplut", + "SSE.Views.Toolbar.tipMarkersFRound": "Listă cu marcatori cerc umplut", + "SSE.Views.Toolbar.tipMarkersFSquare": "Listă cu marcatori pătrat umplut", + "SSE.Views.Toolbar.tipMarkersHRound": "Listă cu marcatori cerc gol ", + "SSE.Views.Toolbar.tipMarkersStar": "Listă cu marcatori stele", "SSE.Views.Toolbar.tipMerge": "Îmbinare și centrare", + "SSE.Views.Toolbar.tipNone": "Niciuna", "SSE.Views.Toolbar.tipNumFormat": "Formatul de număr", "SSE.Views.Toolbar.tipPageMargins": "Margini de pagină", "SSE.Views.Toolbar.tipPageOrient": "Orientare pagină", @@ -3493,6 +3566,7 @@ "SSE.Views.ValueFieldSettingsDialog.txtVarp": "Varp", "SSE.Views.ViewManagerDlg.closeButtonText": "Închidere", "SSE.Views.ViewManagerDlg.guestText": "Invitat", + "SSE.Views.ViewManagerDlg.lockText": "Blocat", "SSE.Views.ViewManagerDlg.textDelete": "Ștergere", "SSE.Views.ViewManagerDlg.textDuplicate": "Dubluri", "SSE.Views.ViewManagerDlg.textEmpty": "Nicio vizualizare nu a fost creată până când.", @@ -3508,7 +3582,9 @@ "SSE.Views.ViewManagerDlg.warnDeleteView": "Dvs. încercați să ștergeți o vizualizare activă pentru moment '%1'.
Doriți să o închideți și să o ștergeți?", "SSE.Views.ViewTab.capBtnFreeze": "Înghețare panouri", "SSE.Views.ViewTab.capBtnSheetView": "Vizualizare de foaie", + "SSE.Views.ViewTab.textAlwaysShowToolbar": "Afișează bară de instrumente permanent", "SSE.Views.ViewTab.textClose": "Închidere", + "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "A îmbina selectorii foii de lucru cu bara de stare", "SSE.Views.ViewTab.textCreate": "Nou", "SSE.Views.ViewTab.textDefault": "Implicit", "SSE.Views.ViewTab.textFormula": "Bara de formule", @@ -3516,7 +3592,9 @@ "SSE.Views.ViewTab.textFreezeRow": "Înghețarea rândului de sus", "SSE.Views.ViewTab.textGridlines": "Linii de grilă", "SSE.Views.ViewTab.textHeadings": "Titluri", + "SSE.Views.ViewTab.textInterfaceTheme": "Tema interfeței", "SSE.Views.ViewTab.textManager": "Manager vizualizări", + "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Afișare umbră pentru panouri înghețate", "SSE.Views.ViewTab.textUnFreeze": "Dezghețare panouri", "SSE.Views.ViewTab.textZeros": "Afișare un zero", "SSE.Views.ViewTab.textZoom": "Zoom", diff --git a/apps/spreadsheeteditor/main/locale/tr.json b/apps/spreadsheeteditor/main/locale/tr.json index b44ffd139..a0530f397 100644 --- a/apps/spreadsheeteditor/main/locale/tr.json +++ b/apps/spreadsheeteditor/main/locale/tr.json @@ -114,6 +114,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Yeni", "Common.UI.ExtendedColorDialog.textRGBErr": "Girilen değer yanlış.
Lütfen 0 ile 255 arasında sayısal değer giriniz.", "Common.UI.HSBColorPicker.textNoColor": "Renk yok", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Parolayı gizle", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Parolayı göster", "Common.UI.SearchDialog.textHighlight": "Vurgu sonuçları", "Common.UI.SearchDialog.textMatchCase": "Büyük küçük harfe duyarlı", "Common.UI.SearchDialog.textReplaceDef": "Yerine geçecek metini giriniz", @@ -128,9 +130,9 @@ "Common.UI.SynchronizeTip.textSynchronize": "Döküman başka bir kullanıcı tarafından değiştirildi.
Lütfen değişikleri kaydetmek için tıklayın ve güncellemeleri yenileyin.", "Common.UI.ThemeColorPalette.textStandartColors": "Standart Renkler", "Common.UI.ThemeColorPalette.textThemeColors": "Tema Renkleri", - "Common.UI.Themes.txtThemeClassicLight": "Açık mod", + "Common.UI.Themes.txtThemeClassicLight": "Klasik Aydınlık", "Common.UI.Themes.txtThemeDark": "Karanlık", - "Common.UI.Themes.txtThemeLight": "Açık", + "Common.UI.Themes.txtThemeLight": "Aydınlık", "Common.UI.Window.cancelButtonText": "İptal Et", "Common.UI.Window.closeButtonText": "Kapat", "Common.UI.Window.noButtonText": "Hayır", @@ -160,7 +162,7 @@ "Common.Views.AutoCorrectDialog.textMathCorrect": "Matematik Otomatik Düzeltme ", "Common.Views.AutoCorrectDialog.textNewRowCol": "Tabloya yeni satırlar ve sütunlar ekle", "Common.Views.AutoCorrectDialog.textRecognized": "Bilinen fonksiyonlar", - "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Aşağıdaki ifadeler tanınan matematik ifadeleridir. Otomatik olarak italik yazılmazlar.", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Aşağıdaki ifadeler tanınan matematik ifadeleridir. Otomatik olarak eğik yazılmazlar.", "Common.Views.AutoCorrectDialog.textReplace": "Değiştir", "Common.Views.AutoCorrectDialog.textReplaceText": "Yazarken Değiştir ", "Common.Views.AutoCorrectDialog.textReplaceType": "Metni yazarken değiştirin", @@ -178,18 +180,20 @@ "Common.Views.Comments.mniAuthorDesc": "Yazar Z'den A'ya", "Common.Views.Comments.mniDateAsc": "En eski", "Common.Views.Comments.mniDateDesc": "En yeni", + "Common.Views.Comments.mniFilterGroups": "Gruba göre Filtrele", "Common.Views.Comments.mniPositionAsc": "üstten", "Common.Views.Comments.mniPositionDesc": "Alttan", "Common.Views.Comments.textAdd": "Ekle", "Common.Views.Comments.textAddComment": "Yorum Ekle", "Common.Views.Comments.textAddCommentToDoc": "Dökümana yorum ekle", "Common.Views.Comments.textAddReply": "Cevap ekle", + "Common.Views.Comments.textAll": "Tümü", "Common.Views.Comments.textAnonym": "Misafir", "Common.Views.Comments.textCancel": "İptal Et", "Common.Views.Comments.textClose": "Kapat", "Common.Views.Comments.textClosePanel": "Yorumları kapat", "Common.Views.Comments.textComments": "Yorumlar", - "Common.Views.Comments.textEdit": "Düzenle", + "Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEnterCommentHint": "Yorumunuzu buraya giriniz", "Common.Views.Comments.textHintAddComment": "Yorum Ekle", "Common.Views.Comments.textOpenAgain": "Tekrar Aç", @@ -224,7 +228,7 @@ "Common.Views.Header.tipDownload": "Dosyayı indir", "Common.Views.Header.tipGoEdit": "Mevcut belgeyi düzenle", "Common.Views.Header.tipPrint": "Belgeyi yazdır", - "Common.Views.Header.tipRedo": "Tekrar yap", + "Common.Views.Header.tipRedo": "Yinele", "Common.Views.Header.tipSave": "Kaydet", "Common.Views.Header.tipUndo": "Geri Al", "Common.Views.Header.tipUndock": "Ayrı pencereye çıkarın", @@ -281,7 +285,7 @@ "Common.Views.PasswordDialog.txtPassword": "Şifre", "Common.Views.PasswordDialog.txtRepeat": "Şifreyi tekrar girin", "Common.Views.PasswordDialog.txtTitle": "Şifreyi belirle", - "Common.Views.PasswordDialog.txtWarning": "Dikkat: Parolayı kaybeder veya unutursanız, kurtarılamaz.", + "Common.Views.PasswordDialog.txtWarning": "Dikkat: Parolayı kaybeder veya unutursanız, kurtarılamaz. Lütfen parolayı güvenli bir yerde saklayın.", "Common.Views.PluginDlg.textLoading": "Yükleniyor", "Common.Views.Plugins.groupCaption": "Eklentiler", "Common.Views.Plugins.strPlugins": "Eklentiler", @@ -373,7 +377,7 @@ "Common.Views.SignDialog.textCertificate": "Sertifika", "Common.Views.SignDialog.textChange": "Değiştir", "Common.Views.SignDialog.textInputName": "İmzalayan adını girin", - "Common.Views.SignDialog.textItalic": "İtalik", + "Common.Views.SignDialog.textItalic": "Eğik", "Common.Views.SignDialog.textNameError": "İmzalayan adı boş bırakılmamalıdır.", "Common.Views.SignDialog.textPurpose": "Bu belgeyi imzalamanın amacı", "Common.Views.SignDialog.textSelect": "Seç", @@ -562,7 +566,7 @@ "SSE.Controllers.DocumentHolder.txtPasteValNumFormat": "Değer + sayı biçimi", "SSE.Controllers.DocumentHolder.txtPasteValues": "Sadece değerle yapıştır", "SSE.Controllers.DocumentHolder.txtPercent": "Yüzde", - "SSE.Controllers.DocumentHolder.txtRedoExpansion": "Tablo otomatik genişletmeyi yeniden yap", + "SSE.Controllers.DocumentHolder.txtRedoExpansion": "Tablo otomatik genişletmeyi yinele", "SSE.Controllers.DocumentHolder.txtRemFractionBar": "Kesir barını kaldır", "SSE.Controllers.DocumentHolder.txtRemLimit": "Limiti kaldır", "SSE.Controllers.DocumentHolder.txtRemoveAccentChar": "Aksan karakterini kaldır", @@ -583,6 +587,7 @@ "SSE.Controllers.DocumentHolder.txtSorting": "Sıralama", "SSE.Controllers.DocumentHolder.txtSortSelected": "Seçili olanları sırala", "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Parantezleri genişlet", + "SSE.Controllers.DocumentHolder.txtThisRowHint": "Belirtilen sütunun yalnızca bu satırını seçin", "SSE.Controllers.DocumentHolder.txtTop": "Üst", "SSE.Controllers.DocumentHolder.txtUnderbar": "Metin altında bar", "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Tablo otomatik genişletmesini geri al", @@ -624,7 +629,7 @@ "SSE.Controllers.Main.confirmPutMergeRange": "Kaynak veri birleştirilmiş hücreler içeriyor.
Tabloya yapıştırılmadan önce birleştirmeleri kaldırılmıştır.", "SSE.Controllers.Main.confirmReplaceFormulaInTable": "Başlık satırındaki formüller kaldırılacak ve statik metne dönüştürülecek.
Devam etmek istiyor musunuz?", "SSE.Controllers.Main.convertationTimeoutText": "Değişim süresi aşıldı.", - "SSE.Controllers.Main.criticalErrorExtText": "Döküman listesine dönmek için \"TAMAM\"'a tıklayın", + "SSE.Controllers.Main.criticalErrorExtText": "Döküman listesine dönmek için \"OK\"'a tıklayın", "SSE.Controllers.Main.criticalErrorTitle": "Hata", "SSE.Controllers.Main.downloadErrorText": "Yükleme başarısız oldu.", "SSE.Controllers.Main.downloadTextText": "E-Tablo indiriliyor...", @@ -638,11 +643,12 @@ "SSE.Controllers.Main.errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
Please unhide the filtered elements and try again.", "SSE.Controllers.Main.errorBadImageUrl": "Resim URL'si yanlış", "SSE.Controllers.Main.errorCannotUngroup": "Grup çözülemiyor. Bir anahat başlatmak için ayrıntı satırlarını veya sütunlarını seçin ve gruplayın.", + "SSE.Controllers.Main.errorCannotUseCommandProtectedSheet": "Bu komutu korumalı bir sayfada kullanamazsınız. Bu komutu kullanmak için sayfanın korumasını kaldırın.
Bir parola girmeniz istenebilir.", "SSE.Controllers.Main.errorChangeArray": "Bir dizinin bir bölümünü değiştiremezsiniz.", "SSE.Controllers.Main.errorChangeFilteredRange": "Bu, çalışma sayfanızdaki filtrelenmiş bir aralığı değiştirecektir.
Bu görevi tamamlamak için lütfen Otomatik Filtreleri kaldırın.", "SSE.Controllers.Main.errorChangeOnProtectedSheet": "Değiştirmeye çalıştığınız hücre veya grafik korumalı bir sayfada.
Değişiklik yapmak için sayfanın korumasını kaldırın. Bir şifre girmeniz istenebilir.", "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Sunucu bağlantısı kesildi. Döküman şu an düzenlenemez.", - "SSE.Controllers.Main.errorConnectToServer": "Belge kaydedilemedi. Lütfen internet bağlantınızı kontrol edin veya yöneticiniz ile iletişime geçin.
'TAMAM' tuşuna tıkladığınızda belgeyi indirebileceksiniz.", + "SSE.Controllers.Main.errorConnectToServer": "Belge kaydedilemedi. Lütfen internet bağlantınızı kontrol edin veya yöneticiniz ile iletişime geçin.
'OK' tuşuna tıkladığınızda belgeyi indirebileceksiniz.", "SSE.Controllers.Main.errorCopyMultiselectArea": "Bu komut çoklu seçimlerle kullanılamaz.
Tek bir aralık seçin ve tekrar deneyin.", "SSE.Controllers.Main.errorCountArg": "Girilen formülde hata oluştu.
Yanlış değişken sayısı kullanıldı.", "SSE.Controllers.Main.errorCountArgExceed": "Girilen formülde hata oluştu.
Değişken sayısı aşıldı.", @@ -717,7 +723,7 @@ "SSE.Controllers.Main.errorWrongPassword": "Verdiğiniz şifre doğru değil.", "SSE.Controllers.Main.errRemDuplicates": "Yinelenen değerler bulundu ve silindi: {0}, benzersiz değerler kaldı: {1}.", "SSE.Controllers.Main.leavePageText": "Spreadsheet'te kaydedilmemiş değişiklikler var. Kaydetmek için 'Bu Sayfada Kal'a daha sonra da 'Kaydet'e tıklayınız.Kaydedilmemiş tüm değişiklikleri göz ardı etmek için 'Bu Sayfadan Ayrıl'a tıklayın.", - "SSE.Controllers.Main.leavePageTextOnClose": "Bu e-tablodaki kaydedilmemiş tüm değişiklikler kaybolacak.
Bunları kaydetmek için \"İptal\"i ve ardından \"Kaydet\"i tıklayın. Kaydedilmemiş tüm değişiklikleri atmak için \"Tamam\" ı tıklayın.", + "SSE.Controllers.Main.leavePageTextOnClose": "Bu e-tablodaki kaydedilmemiş tüm değişiklikler kaybolacak.
Bunları kaydetmek için \"İptal\"i ve ardından \"Kaydet\"i tıklayın. Kaydedilmemiş tüm değişiklikleri atmak için \"OK\" ı tıklayın.", "SSE.Controllers.Main.loadFontsTextText": "Veri yükleniyor...", "SSE.Controllers.Main.loadFontsTitleText": "Veri yükleniyor", "SSE.Controllers.Main.loadFontTextText": "Veri yükleniyor...", @@ -730,7 +736,7 @@ "SSE.Controllers.Main.notcriticalErrorTitle": "Dikkat", "SSE.Controllers.Main.openErrorText": "Dosya açılırken bir hata oluştu", "SSE.Controllers.Main.openTextText": "E-tablo açılıyor...", - "SSE.Controllers.Main.openTitleText": "Spreadsheet Açılıyor", + "SSE.Controllers.Main.openTitleText": "E-Tablo Açılıyor", "SSE.Controllers.Main.pastInMergeAreaError": "Birleştirilmiş hücrenin parçası değiştirilemez", "SSE.Controllers.Main.printTextText": "Spreadsheet yazdırılıyor...", "SSE.Controllers.Main.printTitleText": "Spreadsheet Yazdırılıyor", @@ -753,6 +759,10 @@ "SSE.Controllers.Main.textConvertEquation": "Bu denklem, denklem düzenleyicinin artık desteklenmeyen eski bir sürümüyle oluşturulmuştur. Düzenlemek için denklemi Office Math ML formatına dönüştürün.
Şimdi dönüştürülsün mü?", "SSE.Controllers.Main.textCustomLoader": "Lütfen lisans şartlarına göre yükleyiciyi değiştirme hakkınız olmadığını unutmayın.
Fiyat teklifi almak için lütfen Satış Departmanımızla iletişime geçin.", "SSE.Controllers.Main.textDisconnect": "bağlantı kesildi", + "SSE.Controllers.Main.textFillOtherRows": "Diğer satırları doldur", + "SSE.Controllers.Main.textFormulaFilledAllRows": "Formülle doldurulmuş {0} satırda veri bulunuyor. Diğer boş satırların doldurulması birkaç dakika sürebilir.", + "SSE.Controllers.Main.textFormulaFilledAllRowsWithEmpty": "Formül ilk {0} satırı doldurdu. Diğer boş satırların doldurulması birkaç dakika sürebilir.", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherIsEmpty": "Formül, yalnızca ilk {0} satırı bellek kaydetme nedenine göre doldurdu. Bu sayfadaki diğer satırlarda veri yok.", "SSE.Controllers.Main.textGuest": "Ziyaretçi", "SSE.Controllers.Main.textHasMacros": "Dosya otomatik makrolar içeriyor.
Makroları çalıştırmak istiyor musunuz?", "SSE.Controllers.Main.textLearnMore": "Daha fazlası", @@ -763,13 +773,14 @@ "SSE.Controllers.Main.textNoLicenseTitle": "Lisans limitine ulaşıldı.", "SSE.Controllers.Main.textPaidFeature": "Ücretli Özellik", "SSE.Controllers.Main.textPleaseWait": "Operasyon beklenenden daha çok vakit alabilir. Lütfen bekleyin...", + "SSE.Controllers.Main.textReconnect": "Yeniden bağlanıldı", "SSE.Controllers.Main.textRemember": "Seçimimi tüm dosyalar için hatırla", "SSE.Controllers.Main.textRenameError": "Kullanıcı adı boş bırakılmamalıdır.", "SSE.Controllers.Main.textRenameLabel": "İşbirliği için kullanılacak bir ad girin", "SSE.Controllers.Main.textShape": "Şekil", "SSE.Controllers.Main.textStrict": "Strict mode", - "SSE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.
Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.", - "SSE.Controllers.Main.textTryUndoRedoWarn": "Hızlı birlikte düzenleme modunda geri al/ileri al fonksiyonları devre dışıdır.", + "SSE.Controllers.Main.textTryUndoRedo": "Geri al/Yinele fonksiyonları hızlı ortak çalışma modunda devre dışı kalır.
'Katı mod' tuşuna tıklayarak Katı ortak düzenleme moduna geçebilir ve diğer kullanıcıların müdehalesi olmadan, yalnızca siz belgeyi kaydettikten sonra değişiklik yapılmasını sağlayabilirsiniz. Ortak çalışma moduna tekrar dönmek için Gelişmiş ayarları kullanabilirsiniz.", + "SSE.Controllers.Main.textTryUndoRedoWarn": "Hızlı ortak düzenleme modunda geri al/yinele fonksiyonları devre dışıdır.", "SSE.Controllers.Main.textYes": "Evet", "SSE.Controllers.Main.titleLicenseExp": "Lisans süresi doldu", "SSE.Controllers.Main.titleServerVersion": "Editör güncellendi", @@ -860,7 +871,7 @@ "SSE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Kavisli Çift Ok Bağlayıcı", "SSE.Controllers.Main.txtShape_curvedDownArrow": "Eğri Aşağı Ok", "SSE.Controllers.Main.txtShape_curvedLeftArrow": "Kavisli Sol Ok", - "SSE.Controllers.Main.txtShape_curvedRightArrow": "Kavisli Sağ Ok", + "SSE.Controllers.Main.txtShape_curvedRightArrow": "Kavisli Sağa Ok", "SSE.Controllers.Main.txtShape_curvedUpArrow": "Kavisli Yukarı OK", "SSE.Controllers.Main.txtShape_decagon": "Dekagon", "SSE.Controllers.Main.txtShape_diagStripe": "Çapraz Çizgi", @@ -945,7 +956,7 @@ "SSE.Controllers.Main.txtShape_rect": "Dikdörtgen", "SSE.Controllers.Main.txtShape_ribbon": "Aşağı Ribbon", "SSE.Controllers.Main.txtShape_ribbon2": "Yukarı Ribbon", - "SSE.Controllers.Main.txtShape_rightArrow": "Sağ Ok", + "SSE.Controllers.Main.txtShape_rightArrow": "Sağa Ok", "SSE.Controllers.Main.txtShape_rightArrowCallout": "Sağ Ok Belirtme Çizgisi ", "SSE.Controllers.Main.txtShape_rightBrace": "Sağ Ayraç", "SSE.Controllers.Main.txtShape_rightBracket": "Sağ Köşeli Ayraç", @@ -960,16 +971,16 @@ "SSE.Controllers.Main.txtShape_snip2SameRect": "Aynı Yan Köşe Dikdörtgeni Kes", "SSE.Controllers.Main.txtShape_snipRoundRect": "Yuvarlak Tek Köşe Dikdörtgen Kes", "SSE.Controllers.Main.txtShape_spline": "eğri", - "SSE.Controllers.Main.txtShape_star10": "10-Numara Yıldız", - "SSE.Controllers.Main.txtShape_star12": "12-Numara Yıldız", - "SSE.Controllers.Main.txtShape_star16": "16-Numara Yıldız", - "SSE.Controllers.Main.txtShape_star24": "24-Numara Yıldız", - "SSE.Controllers.Main.txtShape_star32": "32-Numara Yıldız", - "SSE.Controllers.Main.txtShape_star4": "4-Numara Yıldız", - "SSE.Controllers.Main.txtShape_star5": "5-Numara Yıldız", - "SSE.Controllers.Main.txtShape_star6": "6-Numara Yıldız", - "SSE.Controllers.Main.txtShape_star7": "7-Numara Yıldız", - "SSE.Controllers.Main.txtShape_star8": "8-Numara Yıldız", + "SSE.Controllers.Main.txtShape_star10": "10 Köşeli Yıldız", + "SSE.Controllers.Main.txtShape_star12": "12 Köşeli Yıldız", + "SSE.Controllers.Main.txtShape_star16": "16 Köşeli Yıldız", + "SSE.Controllers.Main.txtShape_star24": "24 Köşeli Yıldız", + "SSE.Controllers.Main.txtShape_star32": "32 Köşeli Yıldız", + "SSE.Controllers.Main.txtShape_star4": "4 Köşeli Yıldız", + "SSE.Controllers.Main.txtShape_star5": "5 Köşeli Yıldız", + "SSE.Controllers.Main.txtShape_star6": "6 Köşeli Yıldız", + "SSE.Controllers.Main.txtShape_star7": "7 Köşeli Yıldız", + "SSE.Controllers.Main.txtShape_star8": "8 Köşeli Yıldız", "SSE.Controllers.Main.txtShape_stripedRightArrow": "Çizgili Sağ Ok", "SSE.Controllers.Main.txtShape_sun": "Güneş", "SSE.Controllers.Main.txtShape_teardrop": "Damla", @@ -1363,7 +1374,7 @@ "SSE.Controllers.Toolbar.txtSymbol_kappa": "Kappa", "SSE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", "SSE.Controllers.Toolbar.txtSymbol_leftarrow": "Sol Ok", - "SSE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Sol-Sağ Ok", + "SSE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Sol-sağ ok", "SSE.Controllers.Toolbar.txtSymbol_leq": "Küçük eşittir", "SSE.Controllers.Toolbar.txtSymbol_less": "Küçüktür", "SSE.Controllers.Toolbar.txtSymbol_ll": "Çok Küçüktür", @@ -1390,7 +1401,7 @@ "SSE.Controllers.Toolbar.txtSymbol_qed": "İspat Sonu", "SSE.Controllers.Toolbar.txtSymbol_rddots": "Yukarı Sağ Diyagonal Elips", "SSE.Controllers.Toolbar.txtSymbol_rho": "Rho", - "SSE.Controllers.Toolbar.txtSymbol_rightarrow": "Sağ Ok", + "SSE.Controllers.Toolbar.txtSymbol_rightarrow": "Sağa Ok", "SSE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", "SSE.Controllers.Toolbar.txtSymbol_sqrt": "Kök İşareti", "SSE.Controllers.Toolbar.txtSymbol_tau": "Tau", @@ -1399,12 +1410,12 @@ "SSE.Controllers.Toolbar.txtSymbol_times": "Çarpma İşareti", "SSE.Controllers.Toolbar.txtSymbol_uparrow": "Yukarı Oku", "SSE.Controllers.Toolbar.txtSymbol_upsilon": "Epsilon", - "SSE.Controllers.Toolbar.txtSymbol_varepsilon": "Epsilon Varyantı", - "SSE.Controllers.Toolbar.txtSymbol_varphi": "Phi Varyantı", - "SSE.Controllers.Toolbar.txtSymbol_varpi": "Pi Varyantı", - "SSE.Controllers.Toolbar.txtSymbol_varrho": "Rho Varyantı", - "SSE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma Varyantı", - "SSE.Controllers.Toolbar.txtSymbol_vartheta": "Teta Varyantı", + "SSE.Controllers.Toolbar.txtSymbol_varepsilon": "Epsilon varyantı", + "SSE.Controllers.Toolbar.txtSymbol_varphi": "Phi varyantı", + "SSE.Controllers.Toolbar.txtSymbol_varpi": "Pi varyantı", + "SSE.Controllers.Toolbar.txtSymbol_varrho": "Rho varyantı", + "SSE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma varyantı", + "SSE.Controllers.Toolbar.txtSymbol_vartheta": "Teta varyantı", "SSE.Controllers.Toolbar.txtSymbol_vdots": "Dikey Elips", "SSE.Controllers.Toolbar.txtSymbol_xsi": "Xi", "SSE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", @@ -1841,13 +1852,13 @@ "SSE.Views.DocumentHolder.directHText": "Horizontal", "SSE.Views.DocumentHolder.directionText": "Text Direction", "SSE.Views.DocumentHolder.editChartText": "Veri düzenle", - "SSE.Views.DocumentHolder.editHyperlinkText": "Hiper bağı düzenle", + "SSE.Views.DocumentHolder.editHyperlinkText": "Köprüyü Düzenle", "SSE.Views.DocumentHolder.insertColumnLeftText": "Sol Sütun", "SSE.Views.DocumentHolder.insertColumnRightText": "Sağ Sütun", "SSE.Views.DocumentHolder.insertRowAboveText": "Yukarı Satır", "SSE.Views.DocumentHolder.insertRowBelowText": "Aşağı Satır", "SSE.Views.DocumentHolder.originalSizeText": "Gerçek Boyut", - "SSE.Views.DocumentHolder.removeHyperlinkText": "Hiper bağı kaldır", + "SSE.Views.DocumentHolder.removeHyperlinkText": "Köprüyü Kaldır", "SSE.Views.DocumentHolder.selectColumnText": "Tüm sütun", "SSE.Views.DocumentHolder.selectDataText": "Sütun Verisi", "SSE.Views.DocumentHolder.selectRowText": "Satır", @@ -1868,6 +1879,7 @@ "SSE.Views.DocumentHolder.textCrop": "Kırpmak", "SSE.Views.DocumentHolder.textCropFill": "Doldur", "SSE.Views.DocumentHolder.textCropFit": "Sığdır", + "SSE.Views.DocumentHolder.textEditPoints": "Noktaları Düzenle", "SSE.Views.DocumentHolder.textEntriesList": "Açılır listeden seç", "SSE.Views.DocumentHolder.textFlipH": "Yatay olarak çevir", "SSE.Views.DocumentHolder.textFlipV": "Dikey Çevir", @@ -1910,7 +1922,7 @@ "SSE.Views.DocumentHolder.txtClearAll": "Hepsi", "SSE.Views.DocumentHolder.txtClearComments": "Yorumlar", "SSE.Views.DocumentHolder.txtClearFormat": "Biçim", - "SSE.Views.DocumentHolder.txtClearHyper": "Hiper bağlar", + "SSE.Views.DocumentHolder.txtClearHyper": "Köprüler", "SSE.Views.DocumentHolder.txtClearSparklineGroups": "Seçili Sparkline Grupları Temizle", "SSE.Views.DocumentHolder.txtClearSparklines": "Seçili Sparklineları Temizle", "SSE.Views.DocumentHolder.txtClearText": "Metin", @@ -1939,7 +1951,7 @@ "SSE.Views.DocumentHolder.txtGroup": "Grup", "SSE.Views.DocumentHolder.txtHide": "Gizle", "SSE.Views.DocumentHolder.txtInsert": "Ekle", - "SSE.Views.DocumentHolder.txtInsHyperlink": "Hiper bağ", + "SSE.Views.DocumentHolder.txtInsHyperlink": "Köprü", "SSE.Views.DocumentHolder.txtNumber": "Sayı", "SSE.Views.DocumentHolder.txtNumFormat": "Sayı Formatı", "SSE.Views.DocumentHolder.txtPaste": "Yapıştır", @@ -1960,7 +1972,7 @@ "SSE.Views.DocumentHolder.txtSortFontColor": "Seçili Yazı Rengi üstte", "SSE.Views.DocumentHolder.txtSparklines": "Sparklinelar", "SSE.Views.DocumentHolder.txtText": "Metin", - "SSE.Views.DocumentHolder.txtTextAdvanced": "Paragraf Gelişmiş Ayarları", + "SSE.Views.DocumentHolder.txtTextAdvanced": "Gelişmiş Paragraf Ayarları", "SSE.Views.DocumentHolder.txtTime": "Zaman", "SSE.Views.DocumentHolder.txtUngroup": "Gruptan çıkar", "SSE.Views.DocumentHolder.txtWidth": "Genişlik", @@ -1992,14 +2004,14 @@ "SSE.Views.FieldSettingsDialog.txtTop": "Grubun başında göster", "SSE.Views.FieldSettingsDialog.txtVar": "Varyans", "SSE.Views.FileMenu.btnBackCaption": "Dosya konumunu aç", - "SSE.Views.FileMenu.btnCloseMenuCaption": "Menüyü kapat", + "SSE.Views.FileMenu.btnCloseMenuCaption": "Menüyü Kapat", "SSE.Views.FileMenu.btnCreateNewCaption": "Yeni oluştur", "SSE.Views.FileMenu.btnDownloadCaption": "Farklı İndir...", "SSE.Views.FileMenu.btnExitCaption": "Çıkış", "SSE.Views.FileMenu.btnFileOpenCaption": "Aç...", "SSE.Views.FileMenu.btnHelpCaption": "Yardım...", "SSE.Views.FileMenu.btnHistoryCaption": "Sürüm tarihçesi", - "SSE.Views.FileMenu.btnInfoCaption": "Spreadsheet Bilgisi...", + "SSE.Views.FileMenu.btnInfoCaption": "E-Tablo Bilgisi...", "SSE.Views.FileMenu.btnPrintCaption": "Yazdır", "SSE.Views.FileMenu.btnProtectCaption": "Koru", "SSE.Views.FileMenu.btnRecentFilesCaption": "En sonunucuyu aç...", @@ -2017,7 +2029,7 @@ "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Yazar Ekle", "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Metin Ekle", "SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Uygulama", - "SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Yayıncı", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Yazar", "SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Erişim haklarını değiştir", "SSE.Views.FileMenuPanels.DocumentInfo.txtComment": "Yorum", "SSE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Olusturuldu", @@ -2046,7 +2058,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Canlı yorum yapma seçeneğini aç", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Makro Ayarları", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Kes, kopyala ve yapıştır", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "İçerik yapıştırıldığında Yapıştır Seçenekleri düğmesini göster", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "İçerik yapıştırıldığında Yapıştırma Seçenekleri düğmesini göster", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "R1C1 stilini aç", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Regional Settings", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Example: ", @@ -2057,7 +2069,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Binlik ayırıcı", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Ölçüm birimi", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings": "Bölgesel ayarlara dayalı ayırıcılar kullanın", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "Varsayılan Zum Değeri", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "Varsayılan Yakınlaştırma Değeri", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes": "Her 10 dakika", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text30Minutes": "Her 30 dakika", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text5Minutes": "Her 5 Dakika", @@ -2091,7 +2103,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Lao", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Letonca", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "OS X olarak", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Yerli", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Yerel", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNb": "Norveççe", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "Flemenkçe", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Parlat", @@ -2121,12 +2133,12 @@ "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Otomatik Düzeltme seçenekleri", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Prova", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Uyarı", - "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Şifre ile", + "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Parola ile", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Elektronik Tabloyu Koru", "SSE.Views.FileMenuPanels.ProtectDoc.strSignature": "İmza ile", "SSE.Views.FileMenuPanels.ProtectDoc.txtEdit": "E-Tabloyu düzenle", "SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Düzenleme, imzaları e-tablodan kaldıracak.
Devam edilsin mi?", - "SSE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Bu e-tablo şifre ile korunmuştur", + "SSE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Bu tablo parola ile korunmuştur", "SSE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "Bu elektronik tablonun imzalanması gerekiyor.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Elektronik tabloya geçerli imzalar eklendi. Elektronik tablo, düzenlemeye karşı korumalıdır.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Elektronik tablodaki bazı dijital imzalar geçersiz veya doğrulanamadı. Elektronik tablo, düzenlemeye karşı korumalıdır.", @@ -2176,7 +2188,7 @@ "SSE.Views.FormatRulesEditDlg.textInsideBorders": "İç Sınırlar", "SSE.Views.FormatRulesEditDlg.textInvalid": "Geçersiz veri aralığı.", "SSE.Views.FormatRulesEditDlg.textInvalidRange": "HATA! Geçersiz hücre aralığı", - "SSE.Views.FormatRulesEditDlg.textItalic": "İtalik", + "SSE.Views.FormatRulesEditDlg.textItalic": "Eğik", "SSE.Views.FormatRulesEditDlg.textItem": "Öğe", "SSE.Views.FormatRulesEditDlg.textLeft2Right": "Soldan sağa", "SSE.Views.FormatRulesEditDlg.textLeftBorders": "Sol Sınırlar", @@ -2268,6 +2280,7 @@ "SSE.Views.FormatRulesManagerDlg.textRules": "Kurallar", "SSE.Views.FormatRulesManagerDlg.textSelectData": "Veri Seç", "SSE.Views.FormatRulesManagerDlg.textSelection": "Şu anki seçim", + "SSE.Views.FormatRulesManagerDlg.textThisPivot": "Bu pivot", "SSE.Views.FormatRulesManagerDlg.textThisSheet": "Bu çalışma sayfası", "SSE.Views.FormatRulesManagerDlg.textThisTable": "Bu tablo", "SSE.Views.FormatRulesManagerDlg.textUnique": "Benzersiz değerler", @@ -2350,7 +2363,7 @@ "SSE.Views.HeaderFooterDialog.textFooter": "Altbilgi", "SSE.Views.HeaderFooterDialog.textHeader": "Başlık", "SSE.Views.HeaderFooterDialog.textInsert": "Ekle", - "SSE.Views.HeaderFooterDialog.textItalic": "İtalik", + "SSE.Views.HeaderFooterDialog.textItalic": "Eğik", "SSE.Views.HeaderFooterDialog.textLeft": "Sol", "SSE.Views.HeaderFooterDialog.textMaxError": "Girdiğiniz metin dizisi çok uzun. Kullanılan karakter sayısını azaltın.", "SSE.Views.HeaderFooterDialog.textNewColor": "Yeni Özel Renk Ekle", @@ -2365,7 +2378,7 @@ "SSE.Views.HeaderFooterDialog.textSubscript": "Alt Simge", "SSE.Views.HeaderFooterDialog.textSuperscript": "Üst Simge", "SSE.Views.HeaderFooterDialog.textTime": "Zaman", - "SSE.Views.HeaderFooterDialog.textTitle": "Üstbilgi/Altbilgi Ayarları", + "SSE.Views.HeaderFooterDialog.textTitle": "Üst/Alt Bilgi Ayarları", "SSE.Views.HeaderFooterDialog.textUnderline": "Altı çizili", "SSE.Views.HeaderFooterDialog.tipFontName": "Yazı Tipi", "SSE.Views.HeaderFooterDialog.tipFontSize": "Yazı Boyutu", @@ -2386,7 +2399,7 @@ "SSE.Views.HyperlinkSettingsDialog.textSelectData": "Veri Seç", "SSE.Views.HyperlinkSettingsDialog.textSheets": "Sayfalar", "SSE.Views.HyperlinkSettingsDialog.textTipText": "Ekranİpucu metni", - "SSE.Views.HyperlinkSettingsDialog.textTitle": "Hiper bağ Ayarları", + "SSE.Views.HyperlinkSettingsDialog.textTitle": "Köprü Ayarları", "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "Bu alan gereklidir", "SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "Bu alan \"http://www.example.com\" formatında URL olmalıdır", "SSE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Bu alan 2083 karakterle sınırlıdır", @@ -2394,6 +2407,7 @@ "SSE.Views.ImageSettings.textCrop": "Kırpmak", "SSE.Views.ImageSettings.textCropFill": "Doldur", "SSE.Views.ImageSettings.textCropFit": "Sığdır", + "SSE.Views.ImageSettings.textCropToShape": "Şekillendirmek için kırp", "SSE.Views.ImageSettings.textEdit": "Düzenle", "SSE.Views.ImageSettings.textEditObject": "Obje Düzenle", "SSE.Views.ImageSettings.textFlip": "çevir", @@ -2716,6 +2730,16 @@ "SSE.Views.PrintTitlesDialog.textTitle": "Başlıkları yazdır", "SSE.Views.PrintTitlesDialog.textTop": "Üstteki satırları tekrarlayın", "SSE.Views.PrintWithPreview.txtActualSize": "Gerçek Boyut", + "SSE.Views.PrintWithPreview.txtAllSheets": "Tüm tablolar", + "SSE.Views.PrintWithPreview.txtApplyToAllSheets": "Tüm sayfalara uygula", + "SSE.Views.PrintWithPreview.txtBottom": "Alt", + "SSE.Views.PrintWithPreview.txtCurrentSheet": "Mevcut Tablo", + "SSE.Views.PrintWithPreview.txtCustom": "Özel", + "SSE.Views.PrintWithPreview.txtCustomOptions": "Özel Seçenekler", + "SSE.Views.PrintWithPreview.txtFitCols": "Tüm Sütunları Bir Sayfaya Sığdır", + "SSE.Views.PrintWithPreview.txtFitPage": "Yaprağı Bir Sayfaya Sığdır", + "SSE.Views.PrintWithPreview.txtFitRows": "Tüm Satırları Bir Sayfaya Sığdır", + "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Üst/Alt bilgi ayarları", "SSE.Views.ProtectDialog.textExistName": "HATA! Böyle bir başlığa sahip aralık zaten var", "SSE.Views.ProtectDialog.textInvalidName": "Aralık başlığı bir harfle başlamalı ve yalnızca harf, sayı ve boşluk içerebilir.", "SSE.Views.ProtectDialog.textInvalidRange": "HATA! Geçersiz hücre aralığı", @@ -2730,7 +2754,7 @@ "SSE.Views.ProtectDialog.txtFormatRows": "Satırları biçimlendir", "SSE.Views.ProtectDialog.txtIncorrectPwd": "Onay şifresi aynı değil", "SSE.Views.ProtectDialog.txtInsCols": "Sütun ekle", - "SSE.Views.ProtectDialog.txtInsHyper": "Köprü ekle", + "SSE.Views.ProtectDialog.txtInsHyper": "Köprü Ekle", "SSE.Views.ProtectDialog.txtInsRows": "Satır ekle", "SSE.Views.ProtectDialog.txtObjs": "Nesneleri düzenle", "SSE.Views.ProtectDialog.txtOptional": "Opsiyonel", @@ -2746,7 +2770,7 @@ "SSE.Views.ProtectDialog.txtSheetDescription": "Düzenleme yeteneklerini sınırlayarak başkalarının istenmeyen değişiklikler yapmasını önleyin.", "SSE.Views.ProtectDialog.txtSheetTitle": "Sayfayı Koruyun", "SSE.Views.ProtectDialog.txtSort": "Sırala", - "SSE.Views.ProtectDialog.txtWarning": "Dikkat: Parolayı kaybeder veya unutursanız, kurtarılamaz.", + "SSE.Views.ProtectDialog.txtWarning": "Dikkat: Parolayı kaybeder veya unutursanız, kurtarılamaz. Lütfen parolayı güvenli bir yerde saklayın.", "SSE.Views.ProtectDialog.txtWBDescription": "Diğer kullanıcıların gizli çalışma sayfalarını görüntülemesini, çalışma sayfalarını eklemesini, taşımasını, silmesini veya gizlemesini ve çalışma sayfalarını yeniden adlandırmasını önlemek için çalışma kitabınızın yapısını bir parola ile koruyabilirsiniz.", "SSE.Views.ProtectDialog.txtWBTitle": "Çalışma Kitabı yapısını koruyun", "SSE.Views.ProtectRangesDlg.guestText": "Ziyaretçi", @@ -2782,7 +2806,7 @@ "SSE.Views.RightMenu.txtSlicerSettings": "Dilimleyici ayarları", "SSE.Views.RightMenu.txtSparklineSettings": "Sparkline Ayarları", "SSE.Views.RightMenu.txtTableSettings": "Tablo Ayarları", - "SSE.Views.RightMenu.txtTextArtSettings": "Text Art Settings", + "SSE.Views.RightMenu.txtTextArtSettings": "Yazı Sanatı ayarları", "SSE.Views.ScaleDialog.textAuto": "Otomatik", "SSE.Views.ScaleDialog.textError": "Girilen değer yanlış.", "SSE.Views.ScaleDialog.textFewPages": "Sayfalar", @@ -2943,7 +2967,7 @@ "SSE.Views.SlicerSettingsAdvanced.strHeight": "Yükseklik", "SSE.Views.SlicerSettingsAdvanced.strHideNoData": "Veri içermeyen öğeleri gizle", "SSE.Views.SlicerSettingsAdvanced.strIndNoData": "Veri içermeyen öğeleri görsel olarak belirtin", - "SSE.Views.SlicerSettingsAdvanced.strReferences": "Başvurular", + "SSE.Views.SlicerSettingsAdvanced.strReferences": "Kaynakça", "SSE.Views.SlicerSettingsAdvanced.strShowDel": "Veri kaynağından silinen öğeleri göster", "SSE.Views.SlicerSettingsAdvanced.strShowHeader": "Ekran başlığı", "SSE.Views.SlicerSettingsAdvanced.strShowNoData": "Son verisi olmayan öğeleri göster", @@ -3079,7 +3103,7 @@ "SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "Tablo ismi şu karakterleri içeremez: \\/*?[]:", "SSE.Views.Statusbar.RenameDialog.labelSheetName": "Sayfa ismi", "SSE.Views.Statusbar.selectAllSheets": "Tüm Sayfaları Seç", - "SSE.Views.Statusbar.sheetIndexText": "{1} sayfadan {0}", + "SSE.Views.Statusbar.sheetIndexText": "Sayfa {0}/{1}", "SSE.Views.Statusbar.textAverage": "Ortalama", "SSE.Views.Statusbar.textCount": "Miktar", "SSE.Views.Statusbar.textMax": "Maks", @@ -3197,7 +3221,7 @@ "SSE.Views.Toolbar.capBtnAddComment": "Yorum Ekle", "SSE.Views.Toolbar.capBtnColorSchemas": "Renk uyumu", "SSE.Views.Toolbar.capBtnComment": "Yorum yap", - "SSE.Views.Toolbar.capBtnInsHeader": "Üstbilgi/dipnot", + "SSE.Views.Toolbar.capBtnInsHeader": "Üst/Alt Bilgi", "SSE.Views.Toolbar.capBtnInsSlicer": "Dilimleyici", "SSE.Views.Toolbar.capBtnInsSymbol": "Simge", "SSE.Views.Toolbar.capBtnMargins": "Kenar Boşlukları", @@ -3212,7 +3236,7 @@ "SSE.Views.Toolbar.capImgGroup": "Grup", "SSE.Views.Toolbar.capInsertChart": "Grafik", "SSE.Views.Toolbar.capInsertEquation": "Denklem", - "SSE.Views.Toolbar.capInsertHyperlink": "Hiper Link", + "SSE.Views.Toolbar.capInsertHyperlink": "Köprü", "SSE.Views.Toolbar.capInsertImage": "Resim", "SSE.Views.Toolbar.capInsertShape": "Şekil", "SSE.Views.Toolbar.capInsertSpark": "Mini grafik", @@ -3256,7 +3280,7 @@ "SSE.Views.Toolbar.textInsDown": "Hücreleri aşağı kaydır", "SSE.Views.Toolbar.textInsideBorders": "İç Sınırlar", "SSE.Views.Toolbar.textInsRight": "Hücreleri sağa kaydır", - "SSE.Views.Toolbar.textItalic": "İtalik", + "SSE.Views.Toolbar.textItalic": "Eğik", "SSE.Views.Toolbar.textItems": "Öğeler", "SSE.Views.Toolbar.textLandscape": "Yatay", "SSE.Views.Toolbar.textLeft": "Sol:", @@ -3291,7 +3315,7 @@ "SSE.Views.Toolbar.textSubscript": "Alt Simge", "SSE.Views.Toolbar.textSubSuperscript": "Alt Simge/Üst Simge", "SSE.Views.Toolbar.textSuperscript": "Üst Simge", - "SSE.Views.Toolbar.textTabCollaboration": "Ortak çalışma", + "SSE.Views.Toolbar.textTabCollaboration": "Ortak Çalışma", "SSE.Views.Toolbar.textTabData": "Veri", "SSE.Views.Toolbar.textTabFile": "Dosya", "SSE.Views.Toolbar.textTabFormula": "Formül", @@ -3311,7 +3335,7 @@ "SSE.Views.Toolbar.tipAlignBottom": "Alta Hizala", "SSE.Views.Toolbar.tipAlignCenter": "Ortaya Hizala", "SSE.Views.Toolbar.tipAlignJust": "İki yana yaslı", - "SSE.Views.Toolbar.tipAlignLeft": "Sola Hizala", + "SSE.Views.Toolbar.tipAlignLeft": "Sola hizala", "SSE.Views.Toolbar.tipAlignMiddle": "Ortaya hizala", "SSE.Views.Toolbar.tipAlignRight": "Sağa Hizala", "SSE.Views.Toolbar.tipAlignTop": "Üste Hizala", @@ -3326,7 +3350,7 @@ "SSE.Views.Toolbar.tipCopy": "Kopyala", "SSE.Views.Toolbar.tipCopyStyle": "Stili Kopyala", "SSE.Views.Toolbar.tipDecDecimal": "Ondalık Azalt", - "SSE.Views.Toolbar.tipDecFont": "Yazı Boyutu Azaltımı", + "SSE.Views.Toolbar.tipDecFont": "Yazı boyutunu azalt", "SSE.Views.Toolbar.tipDeleteOpt": "Hücre Sil", "SSE.Views.Toolbar.tipDigStyleAccounting": "Accounting Style", "SSE.Views.Toolbar.tipDigStyleCurrency": "Kur Stili", @@ -3334,18 +3358,18 @@ "SSE.Views.Toolbar.tipEditChart": "Grafiği Düzenle", "SSE.Views.Toolbar.tipEditChartData": "Veri Seç", "SSE.Views.Toolbar.tipEditChartType": "Grafik Tipini Değiştir", - "SSE.Views.Toolbar.tipEditHeader": "Alt ya da üst başlığı düzenle", + "SSE.Views.Toolbar.tipEditHeader": "Alt veya üst bilgiyi düzenle", "SSE.Views.Toolbar.tipFontColor": "Yazı Tipi Rengi", "SSE.Views.Toolbar.tipFontName": "Yazı Tipi", "SSE.Views.Toolbar.tipFontSize": "Yazıtipi boyutu", "SSE.Views.Toolbar.tipImgAlign": "Objeleri hizala", "SSE.Views.Toolbar.tipImgGroup": "Grup objeleri", "SSE.Views.Toolbar.tipIncDecimal": "Ondalık Arttır", - "SSE.Views.Toolbar.tipIncFont": "Yazı Tipi Boyut Arttırımı", + "SSE.Views.Toolbar.tipIncFont": "Yazı boyutunu arttır", "SSE.Views.Toolbar.tipInsertChart": "Tablo ekle", "SSE.Views.Toolbar.tipInsertChartSpark": "Tablo ekle", "SSE.Views.Toolbar.tipInsertEquation": "Denklem Ekle", - "SSE.Views.Toolbar.tipInsertHyperlink": "Hiperbağ ekle", + "SSE.Views.Toolbar.tipInsertHyperlink": "Köprü Ekle", "SSE.Views.Toolbar.tipInsertImage": "Resim ekle", "SSE.Views.Toolbar.tipInsertOpt": "Hücre Ekle", "SSE.Views.Toolbar.tipInsertShape": "Otomatik Şekil ekle", @@ -3354,7 +3378,13 @@ "SSE.Views.Toolbar.tipInsertSymbol": "Simge ekle", "SSE.Views.Toolbar.tipInsertTable": "Tablo ekle", "SSE.Views.Toolbar.tipInsertText": "Metin kutusu ekle", - "SSE.Views.Toolbar.tipInsertTextart": "Metin Art Ekle", + "SSE.Views.Toolbar.tipInsertTextart": "Yazı Sanatı Ekle", + "SSE.Views.Toolbar.tipMarkersArrow": "Ok işaretleri", + "SSE.Views.Toolbar.tipMarkersCheckmark": "Onay işaretleri", + "SSE.Views.Toolbar.tipMarkersDash": "Çizgi işaretleri", + "SSE.Views.Toolbar.tipMarkersFRhombus": "Dolu eşkenar dörtgen işaretler", + "SSE.Views.Toolbar.tipMarkersFRound": "Dolu yuvarlak işaretler", + "SSE.Views.Toolbar.tipMarkersFSquare": "Dolu kare işaretler", "SSE.Views.Toolbar.tipMerge": "Birleştir ve ortala", "SSE.Views.Toolbar.tipNumFormat": "Sayı Formatı", "SSE.Views.Toolbar.tipPageMargins": "Sayfa kenar boşlukları", @@ -3365,7 +3395,7 @@ "SSE.Views.Toolbar.tipPrint": "Yazdır", "SSE.Views.Toolbar.tipPrintArea": "Yazdırma Alanı", "SSE.Views.Toolbar.tipPrintTitles": "Başlıkları yazdır", - "SSE.Views.Toolbar.tipRedo": "Tekrar yap", + "SSE.Views.Toolbar.tipRedo": "Yinele", "SSE.Views.Toolbar.tipSave": "Kaydet", "SSE.Views.Toolbar.tipSaveCoauth": "Diğer kullanıcıların görmesi için değişikliklerinizi kaydedin.", "SSE.Views.Toolbar.tipScale": "Sığdırmak için Ölçekle", @@ -3384,7 +3414,7 @@ "SSE.Views.Toolbar.txtClearFilter": "Filtreyi Temizle", "SSE.Views.Toolbar.txtClearFormat": "Biçim", "SSE.Views.Toolbar.txtClearFormula": "Fonksiyon", - "SSE.Views.Toolbar.txtClearHyper": "Hiper bağlar", + "SSE.Views.Toolbar.txtClearHyper": "Köprüler", "SSE.Views.Toolbar.txtClearText": "Metin", "SSE.Views.Toolbar.txtCurrency": "Kur", "SSE.Views.Toolbar.txtCustom": "Özel", @@ -3497,7 +3527,9 @@ "SSE.Views.ViewManagerDlg.warnDeleteView": "Şu anda etkin olan '%1' görünümünü silmeye çalışıyorsunuz.
Bu görünüm kapatılıp silinsin mi?", "SSE.Views.ViewTab.capBtnFreeze": "Parçaları Dondur", "SSE.Views.ViewTab.capBtnSheetView": "Sayfa Görünümü", + "SSE.Views.ViewTab.textAlwaysShowToolbar": "Her zaman araç çubuğunu göster", "SSE.Views.ViewTab.textClose": "Kapat", + "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "Sayfa ve durum çubuklarını birleştirin", "SSE.Views.ViewTab.textCreate": "yeni", "SSE.Views.ViewTab.textDefault": "varsayılan", "SSE.Views.ViewTab.textFormula": "Formül çubuğu", diff --git a/apps/spreadsheeteditor/main/locale/uk.json b/apps/spreadsheeteditor/main/locale/uk.json index 743c2cec0..e26b50c64 100644 --- a/apps/spreadsheeteditor/main/locale/uk.json +++ b/apps/spreadsheeteditor/main/locale/uk.json @@ -2,12 +2,15 @@ "cancelButtonText": "Скасувати", "Common.Controllers.Chat.notcriticalErrorTitle": "Застереження", "Common.Controllers.Chat.textEnterMessage": "ВВедіть своє повідомлення тут", + "Common.Controllers.History.notcriticalErrorTitle": "Увага", "Common.define.chartData.textArea": "Площа", + "Common.define.chartData.textAreaStacked": "Діаграма з областями із накопиченням", "Common.define.chartData.textAreaStackedPer": "Нормована з областями та накопиченням", "Common.define.chartData.textBar": "Вставити", "Common.define.chartData.textBarNormal": "Гістограма з групуванням", "Common.define.chartData.textBarNormal3d": "Тривимірна гістограма з групуванням", "Common.define.chartData.textBarNormal3dPerspective": "Тривимірна гістограма", + "Common.define.chartData.textBarStacked": "Гістограма з накопиченням", "Common.define.chartData.textBarStacked3d": "Тривимірна гістограма з накопиченням", "Common.define.chartData.textBarStackedPer": "Нормована гістограма з накопиченням", "Common.define.chartData.textBarStackedPer3d": "Тривимірна нормована гістограма з накопиченням", @@ -15,12 +18,14 @@ "Common.define.chartData.textColumn": "Колона", "Common.define.chartData.textColumnSpark": "Колона", "Common.define.chartData.textCombo": "Комбінування", + "Common.define.chartData.textComboAreaBar": "Діаграма з областями із накопиченням та гістограма з групуванням", "Common.define.chartData.textComboBarLine": "Гістограма з групуванням та графік", "Common.define.chartData.textComboBarLineSecondary": "Гістограма з групуванням та графік на допоміжній осі", "Common.define.chartData.textComboCustom": "Користувацька комбінація", "Common.define.chartData.textDoughnut": "Кільцева діаграма", "Common.define.chartData.textHBarNormal": "Лінійчата з групуванням", "Common.define.chartData.textHBarNormal3d": "Тривимірна лінійчата з групуванням", + "Common.define.chartData.textHBarStacked": "Лінійчаста з накопиченням", "Common.define.chartData.textHBarStacked3d": "Тривимірна лінійчата з накопиченням", "Common.define.chartData.textHBarStackedPer": "Нормована лінійчата з накопиченням", "Common.define.chartData.textHBarStackedPer3d": "Тривимірна нормована лінійчата з накопиченням", @@ -28,11 +33,18 @@ "Common.define.chartData.textLine3d": "Тривимірний графік", "Common.define.chartData.textLineMarker": "Графік з маркерами", "Common.define.chartData.textLineSpark": "Лінія", + "Common.define.chartData.textLineStacked": "Графік з накопиченням", + "Common.define.chartData.textLineStackedMarker": "Графік з накопиченням і маркерами", "Common.define.chartData.textLineStackedPer": "Нормований графік з накопиченням", "Common.define.chartData.textLineStackedPerMarker": "Нормований графік з маркерами та накопиченням", "Common.define.chartData.textPie": "Пиріг", "Common.define.chartData.textPie3d": "Тривимірна кругова діаграма", "Common.define.chartData.textPoint": "XY (розсіювання)", + "Common.define.chartData.textScatter": "Точкова діаграма", + "Common.define.chartData.textScatterLine": "Точкова з прямими відрізками", + "Common.define.chartData.textScatterLineMarker": "Точкова з прямими відрізками та маркерами", + "Common.define.chartData.textScatterSmooth": "Точкова з гладкими кривими", + "Common.define.chartData.textScatterSmoothMarker": "Точкова з гладкими кривими та маркерами", "Common.define.chartData.textSparks": "Міні-діграми", "Common.define.chartData.textStock": "Запас", "Common.define.chartData.textSurface": "Поверхня", @@ -79,6 +91,16 @@ "Common.define.conditionalData.textNotContains": "Не містить", "Common.define.conditionalData.textNotEqual": "Не дорівнює", "Common.define.conditionalData.textNotErrors": "Не містить помилок", + "Common.define.conditionalData.textText": "Текст", + "Common.define.conditionalData.textThisMonth": "Цей місяць", + "Common.define.conditionalData.textThisWeek": "Цей тиждень", + "Common.define.conditionalData.textToday": "Сьогодні", + "Common.define.conditionalData.textTomorrow": "Завтра", + "Common.define.conditionalData.textTop": "Найбільше", + "Common.define.conditionalData.textUnique": "Унікальне", + "Common.define.conditionalData.textValue": "Значення дорівнює", + "Common.define.conditionalData.textYesterday": "Вчора", + "Common.Translation.warnFileLocked": "Файл редагується в іншій програмі. Ви можете продовжити редагування та зберегти його як копію.", "Common.Translation.warnFileLockedBtnEdit": "Створити копію", "Common.Translation.warnFileLockedBtnView": "Відкрити на перегляд", "Common.UI.ButtonColored.textAutoColor": "Автоматичний", @@ -93,6 +115,7 @@ "Common.UI.ExtendedColorDialog.textRGBErr": "Введене значення невірно.
Будь ласка, введіть числове значення від 0 до 255.", "Common.UI.HSBColorPicker.textNoColor": "Немає кольору", "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Сховати пароль", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Показати пароль", "Common.UI.SearchDialog.textHighlight": "Виділіть результати", "Common.UI.SearchDialog.textMatchCase": "Чутливість до регістору символів", "Common.UI.SearchDialog.textReplaceDef": "Введіть текст заміни", @@ -138,9 +161,20 @@ "Common.Views.AutoCorrectDialog.textHyperlink": "Адреси в Інтернеті та мережеві шляхи гіперпосиланнями", "Common.Views.AutoCorrectDialog.textMathCorrect": "Автозаміна математичними символами", "Common.Views.AutoCorrectDialog.textNewRowCol": "Включати в таблицю нові рядки та стовпці", + "Common.Views.AutoCorrectDialog.textRecognized": "Розпізнані функції", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Наступні вирази є розпізнаними математичними функціями. Вони не будуть автоматично виділятися курсивом.", + "Common.Views.AutoCorrectDialog.textReplace": "Замінити", + "Common.Views.AutoCorrectDialog.textReplaceText": "Заміняти при вводі", + "Common.Views.AutoCorrectDialog.textReplaceType": "Заміняти текст при вводі", + "Common.Views.AutoCorrectDialog.textReset": "Скинути", + "Common.Views.AutoCorrectDialog.textResetAll": "Скинути налаштування", + "Common.Views.AutoCorrectDialog.textRestore": "Відновити", "Common.Views.AutoCorrectDialog.textTitle": "Автозаміна", + "Common.Views.AutoCorrectDialog.textWarnAddRec": "Розпізнані функції повинні містити тільки прописні букви від А до Я.", "Common.Views.AutoCorrectDialog.textWarnResetRec": "Всі додані вирази будуть видалені, а видалені - відновлені. Ви хочете продовжити?", + "Common.Views.AutoCorrectDialog.warnReplace": "Елемент автозаміни для %1 вже існує. Ви хочете його замінити?", "Common.Views.AutoCorrectDialog.warnReset": "Будь-які додані вами автозаміни будуть видалені, а змінені будуть відновлені до початкових. Бажаєте продовжити?", + "Common.Views.AutoCorrectDialog.warnRestore": "Елемент автозаміни для %1 буде скинутий на початкове значення. Ви хочете продовжити?", "Common.Views.Chat.textSend": "Надіслати", "Common.Views.Comments.mniAuthorAsc": "За автором від А до Я", "Common.Views.Comments.mniAuthorDesc": "За автором від Я до А", @@ -166,6 +200,8 @@ "Common.Views.Comments.textReply": "Відповісти", "Common.Views.Comments.textResolve": "Вирішити", "Common.Views.Comments.textResolved": "Вирішено", + "Common.Views.Comments.textSort": "Сортувати коментарі", + "Common.Views.Comments.textViewResolved": "У вас немає прав для повторного відкриття коментарю", "Common.Views.CopyWarningDialog.textDontShow": "Не показувати це повідомлення знову", "Common.Views.CopyWarningDialog.textMsg": "Копіювання, вирізання та вставлення дій за допомогою кнопок панелі інструментів редактора та дій контекстного меню буде виконуватися тільки на цій вкладці редактора.

Щоб скопіювати або вставити до або з додатків за межами вкладки редактора, використовуйте такі комбінації клавіш:", "Common.Views.CopyWarningDialog.textTitle": "Копіювати, вирізати та вставити дії", @@ -176,21 +212,27 @@ "Common.Views.DocumentAccessDialog.textTitle": "Налаштування спільного доступу", "Common.Views.EditNameDialog.textLabel": "Підпис:", "Common.Views.EditNameDialog.textLabelError": "Підпис не повинен бути пустий", - "Common.Views.Header.labelCoUsersDescr": "В даний час документ редагується кількома користувачами.", + "Common.Views.Header.labelCoUsersDescr": "Користувачі, що редагують документ:", "Common.Views.Header.textAddFavorite": "Додати в обране", "Common.Views.Header.textAdvSettings": "Додаткові параметри", - "Common.Views.Header.textBack": "Перейти до документів", + "Common.Views.Header.textBack": "Відкрити розташування файлу", "Common.Views.Header.textCompactView": "Сховати панель інструментів", "Common.Views.Header.textHideLines": "Сховати лінійки", "Common.Views.Header.textHideStatusBar": "Об'єднати рядки листів та стану", + "Common.Views.Header.textRemoveFavorite": "Видалити з вибраного", "Common.Views.Header.textSaveBegin": "Збереження ...", "Common.Views.Header.textSaveChanged": "Модифікований", "Common.Views.Header.textSaveEnd": "Усі зміни збережено", "Common.Views.Header.textSaveExpander": "Усі зміни збережено", + "Common.Views.Header.textZoom": "Масштаб", "Common.Views.Header.tipAccessRights": "Управління правами доступу до документів", "Common.Views.Header.tipDownload": "Завантажити файл", "Common.Views.Header.tipGoEdit": "Редагувати поточний файл", "Common.Views.Header.tipPrint": "Роздрукувати файл", + "Common.Views.Header.tipRedo": "Повторити", + "Common.Views.Header.tipSave": "Зберегти", + "Common.Views.Header.tipUndo": "Скасувати", + "Common.Views.Header.tipUndock": "Відкріпити в окремому вікні", "Common.Views.Header.tipViewSettings": "Налаштування перегляду", "Common.Views.Header.tipViewUsers": "Переглядайте користувачів та керуйте правами доступу до документів", "Common.Views.Header.txtAccessRights": "Змінити права доступу", @@ -198,7 +240,10 @@ "Common.Views.History.textCloseHistory": "Закрити історію", "Common.Views.History.textHide": "Згорнути", "Common.Views.History.textHideAll": "Сховати детальні зміни", + "Common.Views.History.textRestore": "Відновити", "Common.Views.History.textShow": "Розгорнути", + "Common.Views.History.textShowAll": "Показати детальні зміни", + "Common.Views.History.textVer": "вер.", "Common.Views.ImageFromUrlDialog.textUrl": "Вставити URL зображення:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Це поле є обов'язковим", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com\"", @@ -210,24 +255,37 @@ "Common.Views.ListSettingsDialog.txtNewBullet": "Новий маркер", "Common.Views.ListSettingsDialog.txtNone": "Немає", "Common.Views.ListSettingsDialog.txtOfText": "% тексту", + "Common.Views.ListSettingsDialog.txtSize": "Розмір", + "Common.Views.ListSettingsDialog.txtStart": "Розпочати з", + "Common.Views.ListSettingsDialog.txtSymbol": "Символ", "Common.Views.ListSettingsDialog.txtTitle": "Налаштування списку", + "Common.Views.ListSettingsDialog.txtType": "Тип", "Common.Views.OpenDialog.closeButtonText": "Закрити файл", "Common.Views.OpenDialog.textInvalidRange": "Неприпустимий діапазон клітинок", + "Common.Views.OpenDialog.textSelectData": "Вибір даних", "Common.Views.OpenDialog.txtAdvanced": "Додатково", "Common.Views.OpenDialog.txtColon": "Двокрапка", "Common.Views.OpenDialog.txtComma": "Кома", "Common.Views.OpenDialog.txtDelimiter": "Розділювач", "Common.Views.OpenDialog.txtDestData": "Виберіть де помістити дані", + "Common.Views.OpenDialog.txtEmpty": "Це поле необхідно заповнити", "Common.Views.OpenDialog.txtEncoding": "Кодування", + "Common.Views.OpenDialog.txtIncorrectPwd": "Введено хибний пароль.", "Common.Views.OpenDialog.txtOpenFile": "Введіть пароль для відкриття файлу", "Common.Views.OpenDialog.txtOther": "Інший", "Common.Views.OpenDialog.txtPassword": "Пароль", + "Common.Views.OpenDialog.txtPreview": "Перегляд", "Common.Views.OpenDialog.txtProtected": "Після введення пароля та відкриття файла поточний пароль до нього буде скинутий.", + "Common.Views.OpenDialog.txtSemicolon": "Крапка з комою", "Common.Views.OpenDialog.txtSpace": "Пробіл", "Common.Views.OpenDialog.txtTab": "Вкладка", "Common.Views.OpenDialog.txtTitle": "Виберіть параметри% 1", "Common.Views.OpenDialog.txtTitleProtected": "Захищений файл", + "Common.Views.PasswordDialog.txtDescription": "Встановіть пароль для захисту цього документу", "Common.Views.PasswordDialog.txtIncorrectPwd": "Пароль та його підтвердження не збігаються", + "Common.Views.PasswordDialog.txtPassword": "Пароль", + "Common.Views.PasswordDialog.txtRepeat": "Повторити пароль", + "Common.Views.PasswordDialog.txtTitle": "Встановлення паролю", "Common.Views.PasswordDialog.txtWarning": "Увага! Якщо ви втратили або не можете пригадати пароль, відновити його неможливо. Зберігайте його в надійному місці.", "Common.Views.PluginDlg.textLoading": "Завантаження", "Common.Views.Plugins.groupCaption": "Плагіни", @@ -243,12 +301,28 @@ "Common.Views.Protection.txtDeletePwd": "Видалити пароль", "Common.Views.Protection.txtEncrypt": "Шифрувати", "Common.Views.Protection.txtInvisibleSignature": "Додати цифровий підпис", + "Common.Views.Protection.txtSignature": "Підпис", "Common.Views.Protection.txtSignatureLine": "Додати рядок підпису", "Common.Views.RenameDialog.textName": "Ім'я файлу", "Common.Views.RenameDialog.txtInvalidName": "Ім'я файлу не може містити жодного з наступних символів:", + "Common.Views.ReviewChanges.hintNext": "До наступної зміни", + "Common.Views.ReviewChanges.hintPrev": "До попередньої зміни", "Common.Views.ReviewChanges.strFast": "Швидкий", "Common.Views.ReviewChanges.strFastDesc": "Спільне редагування в режимі реального часу. Всі зміни зберігаються автоматично.", + "Common.Views.ReviewChanges.strStrict": "Строгий", + "Common.Views.ReviewChanges.strStrictDesc": "Використовуйте кнопку 'Зберегти' для синхронізації змін, які вносите ви та інші користувачі.", "Common.Views.ReviewChanges.tipAcceptCurrent": "Прийняти поточні зміни", + "Common.Views.ReviewChanges.tipCoAuthMode": "Встановити режим спільного редагування", + "Common.Views.ReviewChanges.tipCommentRem": "Вилучити коментарі", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "Вилучити поточні коментарі", + "Common.Views.ReviewChanges.tipCommentResolve": "Вирішити коментарі", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Вирішити поточні коментарі", + "Common.Views.ReviewChanges.tipHistory": "Показати історію версій", + "Common.Views.ReviewChanges.tipRejectCurrent": "Відхилити поточну зміну", + "Common.Views.ReviewChanges.tipReview": "Відстежувати зміни", + "Common.Views.ReviewChanges.tipReviewView": "Виберіть режим, у якому ви бажаєте показувати зміни", + "Common.Views.ReviewChanges.tipSetDocLang": "Задати мову документу", + "Common.Views.ReviewChanges.tipSetSpelling": "Перевірка орфографії", "Common.Views.ReviewChanges.tipSharing": "Керування правами доступу до документів", "Common.Views.ReviewChanges.txtAccept": "Прийняти", "Common.Views.ReviewChanges.txtAcceptAll": "Прийняти усі зміни", @@ -257,14 +331,33 @@ "Common.Views.ReviewChanges.txtChat": "Чат", "Common.Views.ReviewChanges.txtClose": "Закрити", "Common.Views.ReviewChanges.txtCoAuthMode": "Режим спільного редагування", + "Common.Views.ReviewChanges.txtCommentRemAll": "Вилучити усі коментарі", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Вилучити поточні коментарі", + "Common.Views.ReviewChanges.txtCommentRemMy": "Вилучити мої коментарі", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Вилучити мій поточний коментар", + "Common.Views.ReviewChanges.txtCommentRemove": "Видалити", + "Common.Views.ReviewChanges.txtCommentResolve": "Вирішити", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Вирішити всі коментарі", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Вирішити поточні коментарі", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Вирішити мої коментарі", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Вирішити мої поточні коментарі", "Common.Views.ReviewChanges.txtDocLang": "Мова", "Common.Views.ReviewChanges.txtFinal": "Усі зміни прийняті (попередній перегляд)", "Common.Views.ReviewChanges.txtFinalCap": "Фінальний", + "Common.Views.ReviewChanges.txtHistory": "Історія версій", "Common.Views.ReviewChanges.txtMarkup": "Усі зміни (редагування)", "Common.Views.ReviewChanges.txtMarkupCap": "Зміни", "Common.Views.ReviewChanges.txtNext": "Далі", "Common.Views.ReviewChanges.txtOriginal": "Усі зміни відхилено (попередній перегляд)", "Common.Views.ReviewChanges.txtOriginalCap": "Початковий", + "Common.Views.ReviewChanges.txtPrev": "До попереднього", + "Common.Views.ReviewChanges.txtReject": "Відхилити", + "Common.Views.ReviewChanges.txtRejectAll": "Відхилити усі зміни", + "Common.Views.ReviewChanges.txtRejectChanges": "Відхилити зміни", + "Common.Views.ReviewChanges.txtRejectCurrent": "Відхилити поточну зміну", + "Common.Views.ReviewChanges.txtSharing": "Спільний доступ", + "Common.Views.ReviewChanges.txtSpelling": "Перевірка орфографії", + "Common.Views.ReviewChanges.txtTurnon": "Відстежування змін", "Common.Views.ReviewChanges.txtView": "Показ", "Common.Views.ReviewPopover.textAdd": "Додати", "Common.Views.ReviewPopover.textAddReply": "Додати відповідь", @@ -274,24 +367,41 @@ "Common.Views.ReviewPopover.textMention": "+згадка надасть доступ до документа і відправить сповіщення поштою", "Common.Views.ReviewPopover.textMentionNotify": "+згадка відправить користувачу сповіщення поштою", "Common.Views.ReviewPopover.textOpenAgain": "Відкрити знову", + "Common.Views.ReviewPopover.textReply": "Відповісти", + "Common.Views.ReviewPopover.textResolve": "Вирішити", + "Common.Views.ReviewPopover.textViewResolved": "У вас немає прав для повторного відкриття коментарю", "Common.Views.ReviewPopover.txtDeleteTip": "Видалити", "Common.Views.ReviewPopover.txtEditTip": "Редагувати", "Common.Views.SaveAsDlg.textLoading": "Завантаження", "Common.Views.SaveAsDlg.textTitle": "Папка для збереження", "Common.Views.SelectFileDlg.textLoading": "Завантаження", + "Common.Views.SelectFileDlg.textTitle": "Вибрати джерело даних", "Common.Views.SignDialog.textBold": "Напівжирний", "Common.Views.SignDialog.textCertificate": "Сертифікат", "Common.Views.SignDialog.textChange": "Змінити", "Common.Views.SignDialog.textInputName": "Введіть ім'я підписанта", "Common.Views.SignDialog.textItalic": "Курсив", + "Common.Views.SignDialog.textNameError": "Ім'я підписанта не має бути пустим.", + "Common.Views.SignDialog.textPurpose": "Ціль підписання документу", + "Common.Views.SignDialog.textSelect": "Вибрати", + "Common.Views.SignDialog.textSelectImage": "Вибрати зображення", + "Common.Views.SignDialog.textSignature": "Вигляд підпису:", + "Common.Views.SignDialog.textTitle": "Підписання документу", "Common.Views.SignDialog.textUseImage": "або натисніть 'Обрати зображення', щоб використовувати зображення як підпис", + "Common.Views.SignDialog.textValid": "Дійсний з %1 по %2", "Common.Views.SignDialog.tipFontName": "Шрифт", "Common.Views.SignDialog.tipFontSize": "Розмір шрифту", "Common.Views.SignSettingsDialog.textAllowComment": "Дозволити підписанту додавати коментар у вікні підпису", + "Common.Views.SignSettingsDialog.textInfo": "Інформація про підписанта", "Common.Views.SignSettingsDialog.textInfoEmail": "Адреса електронної пошти", "Common.Views.SignSettingsDialog.textInfoName": "Ім'я", + "Common.Views.SignSettingsDialog.textInfoTitle": "Посада підписанта", "Common.Views.SignSettingsDialog.textInstructions": "Інструкції для підписанта", + "Common.Views.SignSettingsDialog.textShowDate": "Показувати дату підпису в рядку підпису", + "Common.Views.SignSettingsDialog.textTitle": "Налаштування підпису", + "Common.Views.SignSettingsDialog.txtEmpty": "Це поле є обов'язковим", "Common.Views.SymbolTableDialog.textCharacter": "Символ", + "Common.Views.SymbolTableDialog.textCode": "Код знака з Юнікод (шістн.)", "Common.Views.SymbolTableDialog.textCopyright": "Знак авторського права", "Common.Views.SymbolTableDialog.textDCQuote": "Закриваючі подвійні лапки", "Common.Views.SymbolTableDialog.textDOQuote": "Відкриваючі подвійні лапки", @@ -303,15 +413,36 @@ "Common.Views.SymbolTableDialog.textFont": "Шрифт", "Common.Views.SymbolTableDialog.textNBHyphen": "Нерозривний дефіс", "Common.Views.SymbolTableDialog.textNBSpace": "Нерозривний пробіл", + "Common.Views.SymbolTableDialog.textPilcrow": "Знак абзацу", "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 пробілу", + "Common.Views.SymbolTableDialog.textRange": "Діапазон", + "Common.Views.SymbolTableDialog.textRecent": "Раніше вживані символи", + "Common.Views.SymbolTableDialog.textRegistered": "Зареєстрований товарний знак", "Common.Views.SymbolTableDialog.textSCQuote": "Закриваючі лапки", + "Common.Views.SymbolTableDialog.textSection": "Знак розділу", + "Common.Views.SymbolTableDialog.textShortcut": "Поєднання клавіш", + "Common.Views.SymbolTableDialog.textSHyphen": "М'який дефіс", "Common.Views.SymbolTableDialog.textSOQuote": "Відкриваючі лапки", + "Common.Views.SymbolTableDialog.textSpecial": "Спеціальні символи", + "Common.Views.SymbolTableDialog.textSymbols": "Символи", + "Common.Views.SymbolTableDialog.textTitle": "Символ", + "Common.Views.SymbolTableDialog.textTradeMark": "Символ товарного знаку", "Common.Views.UserNameDialog.textDontShow": "Більше не запитувати", "Common.Views.UserNameDialog.textLabel": "Підпис:", "Common.Views.UserNameDialog.textLabelError": "Підпис не повинен бути пустий", "SSE.Controllers.DataTab.textColumns": "Стовпчики", + "SSE.Controllers.DataTab.textEmptyUrl": "Необхідно вказати URL.", + "SSE.Controllers.DataTab.textRows": "Рядки", + "SSE.Controllers.DataTab.textWizard": "Текст по стовпчиках", "SSE.Controllers.DataTab.txtDataValidation": "Перевірка даних", "SSE.Controllers.DataTab.txtExpand": "Розгорнути", + "SSE.Controllers.DataTab.txtExpandRemDuplicates": "Дані поруч із виділеним діапазоном не будуть видалені. Ви хочете розширити виділений діапазон, щоб включити дані із суміжних клітинок, або продовжити тільки з виділеним діапазоном?", + "SSE.Controllers.DataTab.txtExtendDataValidation": "Виділена область містить клітинки без умов для значень. Ви хочете поширити умови на ці клітинки?", + "SSE.Controllers.DataTab.txtImportWizard": "Майстер імпорту тексту", + "SSE.Controllers.DataTab.txtRemDuplicates": "Видалити дублікати", + "SSE.Controllers.DataTab.txtRemoveDataValidation": "Виділена область містить більше однієї умови.
Видалити поточні параметри та продовжити?", + "SSE.Controllers.DataTab.txtRemSelected": "Видалити у виділеному діапазоні", + "SSE.Controllers.DataTab.txtUrlTitle": "Вставте URL-адресу даних", "SSE.Controllers.DocumentHolder.alignmentText": "Вирівнювання", "SSE.Controllers.DocumentHolder.centerText": "Центр", "SSE.Controllers.DocumentHolder.deleteColumnText": "Видалити колону", @@ -333,6 +464,8 @@ "SSE.Controllers.DocumentHolder.textCtrlClick": "Клацніть на посилання, щоб перейти за ним, або клацніть та утримайте кнопку миші для вибору комірки.", "SSE.Controllers.DocumentHolder.textInsertLeft": "Додати зліва", "SSE.Controllers.DocumentHolder.textInsertTop": "Додати вище", + "SSE.Controllers.DocumentHolder.textPasteSpecial": "Спеціальна вставка", + "SSE.Controllers.DocumentHolder.textStopExpand": "Не розгортати таблиці автоматично", "SSE.Controllers.DocumentHolder.textSym": "Символ", "SSE.Controllers.DocumentHolder.tipIsLocked": "Цей елемент редагує інший користувач.", "SSE.Controllers.DocumentHolder.txtAboveAve": "Вище середнього", @@ -347,6 +480,7 @@ "SSE.Controllers.DocumentHolder.txtAddVer": "Додати вертикальну лінію", "SSE.Controllers.DocumentHolder.txtAlignToChar": "Вирівняти до символу", "SSE.Controllers.DocumentHolder.txtAll": "(Всі)", + "SSE.Controllers.DocumentHolder.txtAllTableHint": "Повертає весь вміст таблиці або зазначені стовпчики таблиці, включаючи заголовки стовпчиків, дані та рядки підсумків", "SSE.Controllers.DocumentHolder.txtAnd": "і", "SSE.Controllers.DocumentHolder.txtBegins": "Починається з", "SSE.Controllers.DocumentHolder.txtBelowAve": "Нижче середнього", @@ -356,6 +490,7 @@ "SSE.Controllers.DocumentHolder.txtColumn": "Стовпчик", "SSE.Controllers.DocumentHolder.txtColumnAlign": "Вирівнювання колонки", "SSE.Controllers.DocumentHolder.txtContains": "Містить", + "SSE.Controllers.DocumentHolder.txtDataTableHint": "Повертає клітинки даних із таблиці або вказаних стовпчиків таблиці", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Зменшити розмір документу", "SSE.Controllers.DocumentHolder.txtDeleteArg": "Видалити аргумент", "SSE.Controllers.DocumentHolder.txtDeleteBreak": "видалити розрив", @@ -371,6 +506,7 @@ "SSE.Controllers.DocumentHolder.txtExpand": "Розгорнути та сортувати", "SSE.Controllers.DocumentHolder.txtExpandSort": "Дані після позначеного діапазону не буде впорядковано. Розширити вибір, щоб включити сусідні дані або продовжити впорядковування тільки щойно вибраних комірок?", "SSE.Controllers.DocumentHolder.txtFilterBottom": "Найменші", + "SSE.Controllers.DocumentHolder.txtFilterTop": "Найбільші", "SSE.Controllers.DocumentHolder.txtFractionLinear": "Зміна до лінійної фракції", "SSE.Controllers.DocumentHolder.txtFractionSkewed": "Зміна перекошеної фракції", "SSE.Controllers.DocumentHolder.txtFractionStacked": "Зміна складеної фракції", @@ -378,6 +514,7 @@ "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Більше або дорівнює", "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Прибрати над текстом", "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Прибрати під текстом", + "SSE.Controllers.DocumentHolder.txtHeadersTableHint": "Повертає заголовки стовпчиків із таблиці або зазначених стовпчиків таблиці", "SSE.Controllers.DocumentHolder.txtHeight": "Висота", "SSE.Controllers.DocumentHolder.txtHideBottom": "Сховати нижню межу", "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "Сховати нижню межу", @@ -393,6 +530,7 @@ "SSE.Controllers.DocumentHolder.txtHideTop": "Приховати верхню межу", "SSE.Controllers.DocumentHolder.txtHideTopLimit": "Сховати верхню межу", "SSE.Controllers.DocumentHolder.txtHideVer": "Сховати вертикальну лінію", + "SSE.Controllers.DocumentHolder.txtImportWizard": "Майстер імпорту тексту", "SSE.Controllers.DocumentHolder.txtIncreaseArg": "Збільшити розмір аргументів", "SSE.Controllers.DocumentHolder.txtInsertArgAfter": "Вставити аргумент після", "SSE.Controllers.DocumentHolder.txtInsertArgBefore": "Вставити аргумент перед", @@ -433,6 +571,8 @@ "SSE.Controllers.DocumentHolder.txtPasteValFormat": "Значення + все форматування", "SSE.Controllers.DocumentHolder.txtPasteValNumFormat": "Значення + формат номера", "SSE.Controllers.DocumentHolder.txtPasteValues": "Вставити лише значення", + "SSE.Controllers.DocumentHolder.txtPercent": "відсотків", + "SSE.Controllers.DocumentHolder.txtRedoExpansion": "Повторити авторозгортання таблиці", "SSE.Controllers.DocumentHolder.txtRemFractionBar": "Видалити фракційну стрічку", "SSE.Controllers.DocumentHolder.txtRemLimit": "Видалити ліміт", "SSE.Controllers.DocumentHolder.txtRemoveAccentChar": "видалити наголоси", @@ -453,8 +593,12 @@ "SSE.Controllers.DocumentHolder.txtSorting": "Сортування", "SSE.Controllers.DocumentHolder.txtSortSelected": "Сортувати вибрано", "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Розтягнути дужки", + "SSE.Controllers.DocumentHolder.txtThisRowHint": "Вибрати тільки цей рядок вказаного стовпця", "SSE.Controllers.DocumentHolder.txtTop": "Верх", + "SSE.Controllers.DocumentHolder.txtTotalsTableHint": "Повертає рядки підсумків таблиці або зазначених стовпчиків таблиці", "SSE.Controllers.DocumentHolder.txtUnderbar": "Риска після тексту", + "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Скасувати авторозгортання таблиці", + "SSE.Controllers.DocumentHolder.txtUseTextImport": "Використовувати майстер імпорту тексту", "SSE.Controllers.DocumentHolder.txtWarnUrl": "Перехід за цим посиланням може нашкодити вашому пристрою та даним.
Ви дійсно бажаєте продовжити?", "SSE.Controllers.DocumentHolder.txtWidth": "Ширина", "SSE.Controllers.FormulaDialog.sCategoryAll": "Всі", @@ -468,6 +612,8 @@ "SSE.Controllers.FormulaDialog.sCategoryLogical": "Логічні", "SSE.Controllers.FormulaDialog.sCategoryLookupAndReference": "Пошук та довідка", "SSE.Controllers.FormulaDialog.sCategoryMathematic": "Математичні", + "SSE.Controllers.FormulaDialog.sCategoryStatistical": "Статистичний", + "SSE.Controllers.FormulaDialog.sCategoryTextAndData": "Текст і дата", "SSE.Controllers.LeftMenu.newDocumentTitle": "Електронна таблиця без нзви", "SSE.Controllers.LeftMenu.textByColumns": "За колонками", "SSE.Controllers.LeftMenu.textByRows": "За рядками", @@ -484,6 +630,7 @@ "SSE.Controllers.LeftMenu.textWarning": "Застереження", "SSE.Controllers.LeftMenu.textWithin": "Всередині", "SSE.Controllers.LeftMenu.textWorkbook": "Робоча книга", + "SSE.Controllers.LeftMenu.txtUntitled": "Без назви", "SSE.Controllers.LeftMenu.warnDownloadAs": "Якщо ви продовжите збереження в цьому форматі, всі функції, окрім тексту, буде втрачено.
Ви впевнені, що хочете продовжити?", "SSE.Controllers.Main.confirmMoveCellRange": "Діапазон комірок призначення може містити дані. Продовжити операцію?", "SSE.Controllers.Main.confirmPutMergeRange": "Джерело даних містило об'єднані комірки.
Об'єднання було скасовано перед вставкою до таблиці.", @@ -503,6 +650,10 @@ "SSE.Controllers.Main.errorAutoFilterHiddenRange": "Неможливо виконати дію, оскільки область містить відфільтровані комірки.
Будь ласка, зробіть елементи фільтрування видимими та повторіть спробу.", "SSE.Controllers.Main.errorBadImageUrl": "URL-адреса зображення невірна", "SSE.Controllers.Main.errorCannotUngroup": "Неможливо розгрупувати. Щоб створити структуру документу, виділіть стовпчики або рядки та згрупуйте їх.", + "SSE.Controllers.Main.errorCannotUseCommandProtectedSheet": "Цю команду не можна використовувати на захищеному листі. Необхідно спочатку зняти захист листа. Можливо, потрібно буде ввести пароль.", + "SSE.Controllers.Main.errorChangeArray": "Не можна змінити частину масиву.", + "SSE.Controllers.Main.errorChangeFilteredRange": "Це призведе до зміни відфільтрованого діапазону листа.
Щоб виконати це завдання, необхідно видалити автофільтри.", + "SSE.Controllers.Main.errorChangeOnProtectedSheet": "Клітинка або діаграма, яку ви намагаєтеся змінити, знаходиться на захищеному листі.
Щоб внести зміни, зніміть захист листа. Можливо, потрібно буде ввести пароль.", "SSE.Controllers.Main.errorCoAuthoringDisconnect": "З'єднання з сервером втрачено. Документ не можна редагувати прямо зараз.", "SSE.Controllers.Main.errorConnectToServer": "Не вдалося зберегти документ. Будь ласка, перевірте налаштування з'єднання або зверніться до свого адміністратора.
Після натискання кнопки «ОК» вам буде запропоновано завантажити документ.", "SSE.Controllers.Main.errorCopyMultiselectArea": "Ця команда не може бути використана з декількома вибору.
Виберіть один діапазон і спробуйте ще раз.", @@ -512,41 +663,58 @@ "SSE.Controllers.Main.errorDatabaseConnection": "Зовнішня помилка.
Помилка підключення до бази даних. Будь ласка, зв'яжіться зі службою підтримки, якщо помилка не зникне.", "SSE.Controllers.Main.errorDataEncrypted": "Отримані зашифровані зміни, їх неможливо розшифрувати.", "SSE.Controllers.Main.errorDataRange": "Неправильний діапазон даних.", + "SSE.Controllers.Main.errorDataValidate": "Введене значення неприпустиме.
Значення, які можна ввести в цю клітинку, обмежені.", "SSE.Controllers.Main.errorDefaultMessage": "Код помилки: %1 ", + "SSE.Controllers.Main.errorDeleteColumnContainsLockedCell": "Ви намагаєтеся видалити стовпчик із заблокованою клітинкою. Заблоковані клітинки не можна видаляти, якщо лист захищений.
Щоб видалити заблоковану клітинку, зніміть захист листа. Можливо, потрібно буде ввести пароль.", + "SSE.Controllers.Main.errorDeleteRowContainsLockedCell": "Ви намагаєтеся видалити рядок із заблокованою клітинкою. Заблоковані клітинки не можна видаляти, якщо лист захищений.
Щоб видалити заблоковану клітинку, зніміть захист листа. Можливо, потрібно буде ввести пароль.", "SSE.Controllers.Main.errorEditingDownloadas": "Під час роботи з документом сталася помилка.
Використовуйте опцію 'Завантажити як...', щоб зберегти резервну копію файлу на жорсткий диск комп'ютера.", "SSE.Controllers.Main.errorEditingSaveas": "Під час роботи з документом сталася помилка.
Використовуйте опцію 'Зберегти як...', щоб зберегти резервну копію файлу на жорсткий диск комп'ютера.", + "SSE.Controllers.Main.errorEditView": "Зараз не можна відредагувати існуючий вигляд листа і не можна створювати новий, оскільки деякі з них редагуються.", "SSE.Controllers.Main.errorEmailClient": "Не знайдений поштовий клієнт", - "SSE.Controllers.Main.errorFilePassProtect": "Документ захищений паролем і його неможливо відкрити.", + "SSE.Controllers.Main.errorFilePassProtect": "Файл захищений паролем і його неможливо відкрити.", "SSE.Controllers.Main.errorFileRequest": "Зовнішня помилка.
Помилка запиту файлу. Будь ласка, зв'яжіться зі службою підтримки, якщо помилка не зникне.", + "SSE.Controllers.Main.errorFileSizeExceed": "Розмір файлу перевищує обмеження, встановлені для вашого сервера.
Для детальної інформації зверніться до адміністратора сервера документів.", "SSE.Controllers.Main.errorFileVKey": "Зовнішня помилка.
Невірний ключ безпеки. Будь ласка, зв'яжіться зі службою підтримки, якщо помилка не зникне.", "SSE.Controllers.Main.errorFillRange": "Не вдалося заповнити вибраний діапазон комірок.
Усі об'єднані комірки повинні мати однаковий розмір.", "SSE.Controllers.Main.errorForceSave": "Під час збереження файлу сталася помилка.
Використовуйте опцію 'Завантажити як...', щоб зберегти файл на жорсткий диск комп'ютера або спробуйте пізніше.", "SSE.Controllers.Main.errorFormulaName": "Помилка введеної формули.
Використовується невірна назва формули.", "SSE.Controllers.Main.errorFormulaParsing": "Внутрішня помилка при аналізі формули.", + "SSE.Controllers.Main.errorFrmlMaxLength": "Довжина формули перевищує обмеження в 8192 символи. Відредагуйте її і повторіть спробу.", + "SSE.Controllers.Main.errorFrmlMaxReference": "Не можна ввести цю формулу, оскільки вона містить занадто багато значень, посилань на клітинки та/або назв.", + "SSE.Controllers.Main.errorFrmlMaxTextLength": "Довжина текстових значень у формулах не може перевищувати 255 символів.
Використовуйте функцію ЗЧЕПИТИ або оператор зчеплення (&).", "SSE.Controllers.Main.errorFrmlWrongReferences": "Ця функція стосується аркуша, який не існує.
Будь ласка, перевірте дані та повторіть спробу.", "SSE.Controllers.Main.errorFTChangeTableRangeError": "Неможливо виконати дію для вибраного діапазону комірок.
Виберіть діапазон таким чином, щоб перший рядок таблиці містився в одному рядку
,а таблиця результату перекрила поточну.", "SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "Неможливо виконати дію для вибраного діапазону клітинок.
Виберіть діапазон, який не включає інші таблиці.", "SSE.Controllers.Main.errorInvalidRef": "Введіть правильне ім'я для вибору або дійсної посилання для переходу.", "SSE.Controllers.Main.errorKeyEncrypt": "Невідомий дескриптор ключа", "SSE.Controllers.Main.errorKeyExpire": "Ключовий дескриптор закінчився", + "SSE.Controllers.Main.errorLabledColumnsPivot": "Щоб створити зведену таблицю, використовуйте дані, організовані у вигляді списку із заголовками стовпчиків.", "SSE.Controllers.Main.errorLoadingFont": "Шрифти не завантажені.
Будь ласка, зверніться до адміністратора Сервера документів.", + "SSE.Controllers.Main.errorLocationOrDataRangeError": "Недійсне посилання на розташування або діапазон даних.", "SSE.Controllers.Main.errorLockedAll": "Операція не може бути виконана, оскільки цей аркуш заблоковано іншим користувачем.", "SSE.Controllers.Main.errorLockedCellPivot": "Ви не можете змінювати дані всередині таблиці.", "SSE.Controllers.Main.errorLockedWorksheetRename": "Лист не можна перейменувати на даний момент, оскільки його перейменує інший користувач", + "SSE.Controllers.Main.errorMaxPoints": "Максимальна кількість точок у серії для діаграми становить 4096.", "SSE.Controllers.Main.errorMoveRange": "Неможливо змінити частину об'єднаної комірки", + "SSE.Controllers.Main.errorMoveSlicerError": "Зрізи таблиць не можна копіювати з однієї робочої книги в іншу. Спробуйте ще раз, виділивши всю таблицю та зрізи.", "SSE.Controllers.Main.errorMultiCellFormula": "Формули масиву з кількома клітинками забороняються в таблицях.", "SSE.Controllers.Main.errorNoDataToParse": "Не виділено дані для аналізу.", - "SSE.Controllers.Main.errorOpenWarning": "Довжина однієї з формул у файлі перевищила дозволену
кількість символів, і вона була вилучена.", + "SSE.Controllers.Main.errorOpenWarning": "Одна з формул у файлі перевищує обмеження в 8192 символи.
Формула була видалена.", "SSE.Controllers.Main.errorOperandExpected": "Синтаксис введеної функції невірний. Будь ласка, перевірте, чи відсутня одна з дужок - '(' або ')'.", + "SSE.Controllers.Main.errorPasswordIsNotCorrect": "Неправильний пароль.
Переконайтеся, що вимкнено клавішу CAPS LOCK і використовується правильний регістр.", "SSE.Controllers.Main.errorPasteMaxRange": "Область копіювання та вставки не збігається.
Будь ласка, виберіть область з таким самим розміром або натисніть першу комірку у рядку, щоб вставити скопійовані комірки.", + "SSE.Controllers.Main.errorPasteMultiSelect": "Ця дія не застосовується до кількох виділених діапазонів.
Виділіть один діапазон і повторіть спробу.", + "SSE.Controllers.Main.errorPasteSlicerError": "Зрізи таблиць не можна копіювати з однієї робочої книжки до іншої.", "SSE.Controllers.Main.errorPivotGroup": "Виділені об'єкти не можна об'єднати у групу.", "SSE.Controllers.Main.errorPivotOverlap": "Не допускається перекриття звіту зведеної таблиці та таблиці.", + "SSE.Controllers.Main.errorPivotWithoutUnderlying": "Звіт зведеної таблиці було збережено без даних.
Для оновлення звіту використовуйте кнопку 'Оновити'.", "SSE.Controllers.Main.errorPrintMaxPagesCount": "На жаль, неможливо одночасно надрукувати більше 1500 сторінок у поточній версії програми.
Це обмеження буде видалено в майбутніх випусках.", "SSE.Controllers.Main.errorProcessSaveResult": "Помилка збереження", "SSE.Controllers.Main.errorServerVersion": "Версія редактора була оновлена. Сторінка буде перезавантажена, щоб застосувати зміни.", "SSE.Controllers.Main.errorSessionAbsolute": "Сесія редагування документа закінчилася. Будь ласка, перезавантажте сторінку.", "SSE.Controllers.Main.errorSessionIdle": "Цей документ не редагувався протягом тривалого часу. Перезавантажте сторінку.", "SSE.Controllers.Main.errorSessionToken": "З'єднання з сервером було перервано. Перезавантажте сторінку", + "SSE.Controllers.Main.errorSetPassword": "Не вдалось задати пароль.", "SSE.Controllers.Main.errorSingleColumnOrRowError": "Посилання на розташування неприпустиме, тому що клітинки знаходяться в різних стовпчиках або рядках. Виділіть клітинки, розташовані в одному стовпчику або одному рядку.", "SSE.Controllers.Main.errorStockChart": "Невірний порядок рядків. Щоб побудувати фондову діаграму, помістіть дані на аркуші в наступному порядку: ціна відкриття, максимальна ціна, мінімальна ціна, ціна закриття.", "SSE.Controllers.Main.errorToken": "Токен безпеки документа не правильно сформовано.
Будь ласка, зв'яжіться з адміністратором вашого Сервера документів.", @@ -556,9 +724,10 @@ "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "Підключення до Інтернету було відновлено, а версія файлу змінена.
Перш ніж продовжувати роботу, потрібно завантажити файл або скопіювати його вміст, щоб переконатися, що нічого не втрачено, а потім перезавантажити цю сторінку.", "SSE.Controllers.Main.errorUserDrop": "На даний момент файл не доступний.", "SSE.Controllers.Main.errorUsersExceed": "Перевищено кількість користувачів, дозволених планом ціноутворення", - "SSE.Controllers.Main.errorViewerDisconnect": "З'єднання втрачено. Ви все ще можете переглядати документ
, але не зможете завантажувати чи роздруковувати, доки не буде відновлено з'єднання.", + "SSE.Controllers.Main.errorViewerDisconnect": "Підключення втрачено. Ви, як і раніше, можете переглядати документ, але не зможете звантажити або надрукувати його до відновлення підключення та оновлення сторінки.", "SSE.Controllers.Main.errorWrongBracketsCount": "Помилка введеної формули.
Використовується неправильне число дужок .", "SSE.Controllers.Main.errorWrongOperator": "Помилка введеної формули. Використовується неправильний оператор.
Будь ласка, виправте помилку.", + "SSE.Controllers.Main.errorWrongPassword": "Неправильний пароль", "SSE.Controllers.Main.errRemDuplicates": "Знайдено та видалено повторюваних значень: {0}, залишилося унікальних значень: {1}.", "SSE.Controllers.Main.leavePageText": "У вас є незбережені зміни в цій таблиці. Натисніть \"Залишитися на цій сторінці\", потім \"Зберегти\", щоб зберегти їх. Натисніть \"Покинути цю сторінку\", щоб відхилити всі незбережені зміни.", "SSE.Controllers.Main.leavePageTextOnClose": "Всі незбережені зміни в цій електронній таблиці будуть втрачені.
Натисніть кнопку \"Скасувати\", а потім натисніть кнопку \"Зберегти\", щоб зберегти їх. Натисніть кнопку \"OK\", щоб скинути всі незбережені зміни.", @@ -572,7 +741,7 @@ "SSE.Controllers.Main.loadImageTitleText": "Завантаження зображення", "SSE.Controllers.Main.loadingDocumentTitleText": "Завантаження електронної таблиці", "SSE.Controllers.Main.notcriticalErrorTitle": "Застереження", - "SSE.Controllers.Main.openErrorText": "Під час відкриття файлу сталася помилка", + "SSE.Controllers.Main.openErrorText": "Під час відкриття файлу сталася помилка.", "SSE.Controllers.Main.openTextText": "Відкриття електронної таблиці...", "SSE.Controllers.Main.openTitleText": "Відкриття електронної таблиці", "SSE.Controllers.Main.pastInMergeAreaError": "Неможливо змінити частину об'єднаної комірки", @@ -581,9 +750,11 @@ "SSE.Controllers.Main.reloadButtonText": "Перезавантажити сторінку", "SSE.Controllers.Main.requestEditFailedMessageText": "Хтось редагує цей документ прямо зараз. Будь-ласка спробуйте пізніше.", "SSE.Controllers.Main.requestEditFailedTitleText": "Доступ заборонено", - "SSE.Controllers.Main.saveErrorText": "Під час збереження файлу сталася помилка", + "SSE.Controllers.Main.saveErrorText": "Під час збереження файлу сталася помилка.", + "SSE.Controllers.Main.saveErrorTextDesktop": "Неможливо зберегти або створити цей файл.
Можливі причини:
1. Файл доступний лише для читання.
2. Файл редагується іншими користувачами.
3. Диск заповнено або пошкоджено.", "SSE.Controllers.Main.saveTextText": "Збереження електронної таблиці...", "SSE.Controllers.Main.saveTitleText": "Збереження електронної таблиці", + "SSE.Controllers.Main.scriptLoadError": "З'єднання занадто повільне, деякі компоненти не вдалося завантажити. Перезавантажте сторінку.", "SSE.Controllers.Main.textAnonymous": "Гість", "SSE.Controllers.Main.textApplyAll": "Застосувати до всіх рівнянь", "SSE.Controllers.Main.textBuyNow": "Відвідати сайт", @@ -592,6 +763,7 @@ "SSE.Controllers.Main.textCloseTip": "Натисніть, щоб закрити підказку", "SSE.Controllers.Main.textConfirm": "Підтвердження", "SSE.Controllers.Main.textContactUs": "Зв'язатися з відділом продажів", + "SSE.Controllers.Main.textConvertEquation": "Це рівняння створено у старій версії редактора рівнянь, яка більше не підтримується. Щоб змінити це рівняння, його необхідно перетворити на формат Office Math ML.
Перетворити зараз?", "SSE.Controllers.Main.textCustomLoader": "Зверніть увагу, що згідно з умовами ліцензії ви не маєте права змінювати завантажувач.
Будь ласка, зв'яжіться з нашим відділом продажів, щоб виконати запит.", "SSE.Controllers.Main.textDisconnect": "З'єднання втрачено", "SSE.Controllers.Main.textFillOtherRows": "Заповнити інші рядки", @@ -600,17 +772,23 @@ "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherHaveData": "Формула заповнила лише перші {0} рядків з даними в цілях економії пам’яті. На цьому листі є ще {1} рядків з даними. Ви можете заповнити їх вручну.", "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherIsEmpty": "Формула заповнила лише перші {0} рядків в цілях економії пам’яті. Інші рядки на цьому листі не містять даних.", "SSE.Controllers.Main.textGuest": "Гість", + "SSE.Controllers.Main.textHasMacros": "Файл містить автоматичні макроси.
Запустити макроси?", "SSE.Controllers.Main.textLearnMore": "Детальніше", "SSE.Controllers.Main.textLoadingDocument": "Завантаження електронної таблиці", "SSE.Controllers.Main.textLongName": "Введіть ім'я не довше ніж 128 символів.", + "SSE.Controllers.Main.textNeedSynchronize": "Є оновлення", "SSE.Controllers.Main.textNo": "Немає", - "SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE відкрита версія", + "SSE.Controllers.Main.textNoLicenseTitle": "Ліцензійне обмеження", + "SSE.Controllers.Main.textPaidFeature": "Платна функція", "SSE.Controllers.Main.textPleaseWait": "Операція може зайняти більше часу, ніж очікувалося. Будь ласка, зачекайте ...", "SSE.Controllers.Main.textReconnect": "З'єднання відновлено", + "SSE.Controllers.Main.textRemember": "Запам’ятати мій вибір для всіх файлів", + "SSE.Controllers.Main.textRenameError": "Ім'я користувача не повинно бути порожнім.", "SSE.Controllers.Main.textRenameLabel": "Введіть ім'я, що буде використовуватись для спільної роботи", "SSE.Controllers.Main.textShape": "Форма", "SSE.Controllers.Main.textStrict": "суворий режим", "SSE.Controllers.Main.textTryUndoRedo": "Функції Undo / Redo відключені для режиму швидкого редагування.
Натисніть кнопку \"Суворий режим\", щоб перейти до режиму суворого редагування, щоб редагувати файл без втручання інших користувачів та відправляти зміни лише після збереження. Ви можете переключатися між режимами спільного редагування за допомогою редактора Додаткові параметри.", + "SSE.Controllers.Main.textTryUndoRedoWarn": "Функції скасування і повтору дій відключені для режиму швидкого спільного редагування.", "SSE.Controllers.Main.textYes": "Так", "SSE.Controllers.Main.titleLicenseExp": "Термін дії ліцензії закінчився", "SSE.Controllers.Main.titleServerVersion": "Редактор оновлено", @@ -643,7 +821,17 @@ "SSE.Controllers.Main.txtMonths": "Місяці", "SSE.Controllers.Main.txtMultiSelect": "Множинний вибір (Alt+S)", "SSE.Controllers.Main.txtOr": "%1 чи %2", + "SSE.Controllers.Main.txtPage": "Сторінка", + "SSE.Controllers.Main.txtPageOf": "Сторінка %1 з %2", + "SSE.Controllers.Main.txtPages": "Сторінок", + "SSE.Controllers.Main.txtPreparedBy": "Підготував:", + "SSE.Controllers.Main.txtPrintArea": "Область_друку", + "SSE.Controllers.Main.txtQuarter": "К-сть", + "SSE.Controllers.Main.txtQuarters": "Квартали", "SSE.Controllers.Main.txtRectangles": "Прямокутники", + "SSE.Controllers.Main.txtRow": "Рядок", + "SSE.Controllers.Main.txtRowLbls": "Назви рядків", + "SSE.Controllers.Main.txtSeconds": "Секунди", "SSE.Controllers.Main.txtSeries": "Серії", "SSE.Controllers.Main.txtShape_accentBorderCallout1": "Виноска 1 (межа і лінія)", "SSE.Controllers.Main.txtShape_accentBorderCallout2": "Виноска 2 (межа і лінія)", @@ -661,6 +849,8 @@ "SSE.Controllers.Main.txtShape_actionButtonHome": "Кнопка \"На головну\"", "SSE.Controllers.Main.txtShape_actionButtonInformation": "Кнопка інформації", "SSE.Controllers.Main.txtShape_actionButtonMovie": "Кнопка відео", + "SSE.Controllers.Main.txtShape_actionButtonReturn": "Кнопка повернення", + "SSE.Controllers.Main.txtShape_actionButtonSound": "Кнопка звуку", "SSE.Controllers.Main.txtShape_arc": "Дуга", "SSE.Controllers.Main.txtShape_bentArrow": "Зігнута стрілка", "SSE.Controllers.Main.txtShape_bentConnector5": "Колінчате з'єднання", @@ -736,6 +926,7 @@ "SSE.Controllers.Main.txtShape_heart": "Серце", "SSE.Controllers.Main.txtShape_heptagon": "Семикутник", "SSE.Controllers.Main.txtShape_hexagon": "Шестикутник", + "SSE.Controllers.Main.txtShape_homePlate": "П'ятикутник", "SSE.Controllers.Main.txtShape_horizontalScroll": "Горизонтальний сувій", "SSE.Controllers.Main.txtShape_irregularSeal1": "Спалах 1", "SSE.Controllers.Main.txtShape_irregularSeal2": "Спалах 2", @@ -756,13 +947,37 @@ "SSE.Controllers.Main.txtShape_mathMinus": "Мінус", "SSE.Controllers.Main.txtShape_mathMultiply": "Множення", "SSE.Controllers.Main.txtShape_mathNotEqual": "Не дорівнює", + "SSE.Controllers.Main.txtShape_mathPlus": "Плюс", "SSE.Controllers.Main.txtShape_moon": "Місяць", "SSE.Controllers.Main.txtShape_noSmoking": "Заборонено", "SSE.Controllers.Main.txtShape_notchedRightArrow": "Стрілка праворуч з вирізом", "SSE.Controllers.Main.txtShape_octagon": "Восьмикутник", + "SSE.Controllers.Main.txtShape_parallelogram": "Паралелограм", + "SSE.Controllers.Main.txtShape_pentagon": "П'ятикутник", + "SSE.Controllers.Main.txtShape_pie": "Сектор круга", + "SSE.Controllers.Main.txtShape_plaque": "Підписати", + "SSE.Controllers.Main.txtShape_plus": "Плюс", + "SSE.Controllers.Main.txtShape_polyline1": "Крива", "SSE.Controllers.Main.txtShape_polyline2": "Довільна форма", + "SSE.Controllers.Main.txtShape_quadArrow": "Зчетверена стрілка", + "SSE.Controllers.Main.txtShape_quadArrowCallout": "Виноска з чотирма стрілками", "SSE.Controllers.Main.txtShape_rect": "Прямокутник", "SSE.Controllers.Main.txtShape_ribbon": "Стрічка вниз", + "SSE.Controllers.Main.txtShape_ribbon2": "Стрічка вверх", + "SSE.Controllers.Main.txtShape_rightArrow": "Стрілка праворуч", + "SSE.Controllers.Main.txtShape_rightArrowCallout": "Виноска зі стрілкою праворуч", + "SSE.Controllers.Main.txtShape_rightBrace": "Права фігурна дужка", + "SSE.Controllers.Main.txtShape_rightBracket": "Права дужка", + "SSE.Controllers.Main.txtShape_round1Rect": "Прямокутник з одним закругленим кутом", + "SSE.Controllers.Main.txtShape_round2DiagRect": "Прямокутник із двома закругленими протилежними кутами", + "SSE.Controllers.Main.txtShape_round2SameRect": "Прямокутник із двома закругленими сусідніми кутами", + "SSE.Controllers.Main.txtShape_roundRect": "Прямокутник з закругленими кутами", + "SSE.Controllers.Main.txtShape_rtTriangle": "Прямокутний трикутник", + "SSE.Controllers.Main.txtShape_smileyFace": "Усміхнене обличчя", + "SSE.Controllers.Main.txtShape_snip1Rect": "Прямокутник з одним вирізаним кутом", + "SSE.Controllers.Main.txtShape_snip2DiagRect": "Прямокутник з двома вирізаними протилежними кутами", + "SSE.Controllers.Main.txtShape_snip2SameRect": "Прямокутник з двома вирізаними сусідніми кутами", + "SSE.Controllers.Main.txtShape_snipRoundRect": "Прямокутник з одним вирізаним закругленим кутом", "SSE.Controllers.Main.txtShape_spline": "Крива", "SSE.Controllers.Main.txtShape_star10": "10-кінцева зірка", "SSE.Controllers.Main.txtShape_star12": "12-кінцева зірка", @@ -774,7 +989,21 @@ "SSE.Controllers.Main.txtShape_star6": "6-кінцева зірка", "SSE.Controllers.Main.txtShape_star7": "7-кінцева зірка", "SSE.Controllers.Main.txtShape_star8": "8-кінцева зірка", + "SSE.Controllers.Main.txtShape_stripedRightArrow": "Штрихпунктирна стрілка праворуч", + "SSE.Controllers.Main.txtShape_sun": "Сонце", + "SSE.Controllers.Main.txtShape_teardrop": "Крапля", + "SSE.Controllers.Main.txtShape_textRect": "Напис", + "SSE.Controllers.Main.txtShape_trapezoid": "Трапеція", + "SSE.Controllers.Main.txtShape_triangle": "Трикутник", + "SSE.Controllers.Main.txtShape_upArrow": "Стрілка вгору", + "SSE.Controllers.Main.txtShape_upArrowCallout": "Виноска зі стрілкою вверх", + "SSE.Controllers.Main.txtShape_upDownArrow": "Подвійна стрілка вверх-вниз", + "SSE.Controllers.Main.txtShape_uturnArrow": "Розвернута стрілка", + "SSE.Controllers.Main.txtShape_verticalScroll": "Вертикальний сувій", + "SSE.Controllers.Main.txtShape_wave": "Хвиля", "SSE.Controllers.Main.txtShape_wedgeEllipseCallout": "Овальна виноска", + "SSE.Controllers.Main.txtShape_wedgeRectCallout": "Прямокутна виноска", + "SSE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Закруглена прямокутна виноска", "SSE.Controllers.Main.txtStarsRibbons": "Зірки та стрічки", "SSE.Controllers.Main.txtStyle_Bad": "Поганий", "SSE.Controllers.Main.txtStyle_Calculation": "Розрахунок", @@ -797,25 +1026,37 @@ "SSE.Controllers.Main.txtStyle_Title": "Назва", "SSE.Controllers.Main.txtStyle_Total": "Загалом", "SSE.Controllers.Main.txtStyle_Warning_Text": "Текст попередження", + "SSE.Controllers.Main.txtTab": "Лист", + "SSE.Controllers.Main.txtTable": "Таблиця", + "SSE.Controllers.Main.txtTime": "Час", + "SSE.Controllers.Main.txtUnlock": "Розблокувати", + "SSE.Controllers.Main.txtUnlockRange": "Розблокувати діапазон", "SSE.Controllers.Main.txtUnlockRangeDescription": "Введіть пароль, щоб змінити цей діапазон:", "SSE.Controllers.Main.txtUnlockRangeWarning": "Діапазон, який ви намагаєтесь змінити, захищений за допомогою пароля.", + "SSE.Controllers.Main.txtValues": "Значення", "SSE.Controllers.Main.txtXAxis": "X Ось", "SSE.Controllers.Main.txtYAxis": "Y ось", + "SSE.Controllers.Main.txtYears": "Роки", "SSE.Controllers.Main.unknownErrorText": "Невідома помилка.", "SSE.Controllers.Main.unsupportedBrowserErrorText": "Ваш браузер не підтримується", + "SSE.Controllers.Main.uploadDocExtMessage": "Невідомий формат документу.", "SSE.Controllers.Main.uploadDocFileCountMessage": "Жодного документу не завантажено.", "SSE.Controllers.Main.uploadDocSizeMessage": "Перевищений максимальний розмір документу", "SSE.Controllers.Main.uploadImageExtMessage": "Невідомий формат зображення.", "SSE.Controllers.Main.uploadImageFileCountMessage": "Не завантажено жодного зображення.", - "SSE.Controllers.Main.uploadImageSizeMessage": "Максимальний розмір зображення перевищено.", + "SSE.Controllers.Main.uploadImageSizeMessage": "Занадто велике зображення. Максимальний розмір – 25 MB.", "SSE.Controllers.Main.uploadImageTextText": "Завантаження зображення...", "SSE.Controllers.Main.uploadImageTitleText": "Завантаження зображення", + "SSE.Controllers.Main.waitText": "Будь ласка, зачекайте...", "SSE.Controllers.Main.warnBrowserIE9": "Програма має низькі можливості для IE9. Використовувати IE10 або вище", "SSE.Controllers.Main.warnBrowserZoom": "Налаштування масштабу вашого браузера не підтримується повністю. Змініть стандартний масштаб, натиснувши Ctrl + 0.", + "SSE.Controllers.Main.warnLicenseExceeded": "Ви досягли ліміту одночасного підключення до редакторів %1. Цей документ буде відкритий лише для перегляду.
Щоб дізнатися більше, зв’яжіться з адміністратором.", "SSE.Controllers.Main.warnLicenseExp": "Термін дії вашої ліцензії минув.
Будь ласка, оновіть свою ліцензію та оновіть сторінку.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Термін дії ліцензії закінчився.
Немає доступ до функцій редагування документів.
Будь ласка, зверніться до адміністратора.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Потрібно поновити ліцензію.
У вас обмежений доступ до функцій редагування документів.
Будь ласка, зверніться до свого адміністратора, щоб отримати повний доступ", - "SSE.Controllers.Main.warnNoLicense": "Ви використовуєте відкриту версію %1. Ця версія має обмеження для одночасного підключення до сервера документів (20 підключень за один раз).
Якщо вам потрібно більше, подумайте про придбання комерційної ліцензії.", + "SSE.Controllers.Main.warnLicenseUsersExceeded": "Ви досягли ліміту на кількість користувачів редакторів %1.
Зв'яжіться з адміністратором, щоб дізнатися більше.", + "SSE.Controllers.Main.warnNoLicense": "Ви досягли ліміту на одночасне підключення до редакторів %1. Цей документ буде відкрито для перегляду.
Напишіть у відділ продажу %1, щоб обговорити індивідуальні умови ліцензування.", + "SSE.Controllers.Main.warnNoLicenseUsers": "Ви досягли ліміту на одночасне підключення до редакторів %1.
Напишіть у відділ продаж %1, для обговорення індивідуальних умов ліцензування.", "SSE.Controllers.Main.warnProcessRightsChange": "Вам відмовлено у наданні права редагувати файл.", "SSE.Controllers.Print.strAllSheets": "Всі аркуші", "SSE.Controllers.Print.textFirstCol": "Перший стовпчик", @@ -824,6 +1065,8 @@ "SSE.Controllers.Print.textFrozenRows": "Закріплені рядки", "SSE.Controllers.Print.textInvalidRange": "ПОМИЛКА! Неприпустимий діапазон клітинок", "SSE.Controllers.Print.textNoRepeat": "Не повторювати", + "SSE.Controllers.Print.textRepeat": "Повторювати...", + "SSE.Controllers.Print.textSelectRange": "Вибір діапазону", "SSE.Controllers.Print.textWarning": "Застереження", "SSE.Controllers.Print.txtCustom": "Користувальницький", "SSE.Controllers.Print.warnCheckMargings": "Поля неправильні", @@ -831,9 +1074,12 @@ "SSE.Controllers.Statusbar.errorRemoveSheet": "Неможливо видалити робочий аркуш.", "SSE.Controllers.Statusbar.strSheet": "Лист", "SSE.Controllers.Statusbar.textDisconnect": "З'єднання втрачено
Спроба підключення. Перевірте налаштування підключення.", - "SSE.Controllers.Statusbar.warnDeleteSheet": "Робочий аркуш може містити дані. Ви впевнені, що хочете продовжити?", + "SSE.Controllers.Statusbar.textSheetViewTip": "Ви перебуваєте в режимі перегляду листа. Фільтри та сортування видно тільки вам і тим, хто також знаходиться в цьому перегляді.", + "SSE.Controllers.Statusbar.textSheetViewTipFilters": "Ви перебуваєте в режимі перегляду листа. Фільтри видно тільки вам і тим, хто також знаходиться в цьому перегляді.", + "SSE.Controllers.Statusbar.warnDeleteSheet": "Вибраний робочий лист може містити дані. Ви дійсно хочете продовжити?", "SSE.Controllers.Statusbar.zoomText": "Збільшити {0}%", "SSE.Controllers.Toolbar.confirmAddFontName": "Шрифт, який ви збираєтеся зберегти, недоступний на поточному пристрої.
Текстовий стиль відображатиметься за допомогою одного з системних шрифтів, збережений шрифт буде використовуватися, коли він буде доступний.
Ви хочете продовжити ?", + "SSE.Controllers.Toolbar.errorComboSeries": "Для створення комбінованої діаграми виберіть щонайменше два ряди даних.", "SSE.Controllers.Toolbar.errorMaxRows": "ПОМИЛКА! Максимальна кількість даних на кожну діаграму становить 255", "SSE.Controllers.Toolbar.errorStockChart": "Невірний порядок рядків. Щоб побудувати фондову діаграму, помістіть дані на аркуші в наступному порядку: ціна відкриття, максимальна ціна, мінімальна ціна, ціна закриття.", "SSE.Controllers.Toolbar.textAccent": "Акценти", @@ -852,7 +1098,10 @@ "SSE.Controllers.Toolbar.textOperator": "Оператори", "SSE.Controllers.Toolbar.textPivot": "Зведена таблиця", "SSE.Controllers.Toolbar.textRadical": "Радикали", + "SSE.Controllers.Toolbar.textRating": "Оцінки", + "SSE.Controllers.Toolbar.textRecentlyUsed": "Останні використані", "SSE.Controllers.Toolbar.textScript": "Рукописи", + "SSE.Controllers.Toolbar.textShapes": "Фігури", "SSE.Controllers.Toolbar.textSymbols": "Символи", "SSE.Controllers.Toolbar.textWarning": "Застереження", "SSE.Controllers.Toolbar.txtAccent_Accent": "Гострий", @@ -1179,13 +1428,20 @@ "SSE.Controllers.Toolbar.txtSymbol_vdots": "Вертикальний Еліпсіс", "SSE.Controllers.Toolbar.txtSymbol_xsi": "ксі", "SSE.Controllers.Toolbar.txtSymbol_zeta": "Зета", + "SSE.Controllers.Toolbar.txtTable_TableStyleDark": "Стиль таблиці: темний", + "SSE.Controllers.Toolbar.txtTable_TableStyleLight": "Стиль таблиці: світлий", + "SSE.Controllers.Toolbar.txtTable_TableStyleMedium": "Стиль таблиці: середній", "SSE.Controllers.Toolbar.warnLongOperation": "Операція, яку ви збираєтеся виконати, може зайняти досить багато часу.
Ви впевнені, що хочете продовжити?", "SSE.Controllers.Toolbar.warnMergeLostData": "Дані лише верхньої лівої комірки залишаться в об'єднаній комірці.
Продовжити?", "SSE.Controllers.Viewport.textFreezePanes": "Закріпити області", + "SSE.Controllers.Viewport.textFreezePanesShadow": "Показувати тінь для закріплених областей", "SSE.Controllers.Viewport.textHideFBar": "Приховати рядок формул", "SSE.Controllers.Viewport.textHideGridlines": "Сховати лінії сітки", "SSE.Controllers.Viewport.textHideHeadings": "Сховати заголовки", "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Десятковий роздільник", + "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Роздільник тисяч", + "SSE.Views.AdvancedSeparatorDialog.textLabel": "Налаштування визначення числових даних", + "SSE.Views.AdvancedSeparatorDialog.textQualifier": "Класифікатор тексту", "SSE.Views.AdvancedSeparatorDialog.textTitle": "Додаткові параметри", "SSE.Views.AdvancedSeparatorDialog.txtNone": "(немає)", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Спеціальний фільтр", @@ -1225,6 +1481,8 @@ "SSE.Views.AutoFilterDialog.txtTextFilter": "Текстовий фільтр", "SSE.Views.AutoFilterDialog.txtTitle": "Фільтр", "SSE.Views.AutoFilterDialog.txtTop10": "Топ-10", + "SSE.Views.AutoFilterDialog.txtValueFilter": "Фільтр значень", + "SSE.Views.AutoFilterDialog.warnFilterError": "Щоб застосувати фільтр за значенням, область значень повинна мати хоча б одне поле.", "SSE.Views.AutoFilterDialog.warnNoSelected": "Ви повинні вибрати принаймні одне значення", "SSE.Views.CellEditor.textManager": "Менеджер імен", "SSE.Views.CellEditor.tipFormula": "Вставити функцію", @@ -1233,6 +1491,8 @@ "SSE.Views.CellRangeDialog.txtEmpty": "Це поле є обов'язковим", "SSE.Views.CellRangeDialog.txtInvalidRange": "ПОМИЛКА! Недійсний діапазон комірок", "SSE.Views.CellRangeDialog.txtTitle": "Виберати діапазон даних", + "SSE.Views.CellSettings.strShrink": "Автопідбір ширини", + "SSE.Views.CellSettings.strWrap": "Перенесення тексту", "SSE.Views.CellSettings.textAngle": "Нахил", "SSE.Views.CellSettings.textBackColor": "Колір фону", "SSE.Views.CellSettings.textBackground": "Колір фону", @@ -1242,6 +1502,7 @@ "SSE.Views.CellSettings.textColor": "Заливка кольором", "SSE.Views.CellSettings.textColorScales": "Шкали кольору", "SSE.Views.CellSettings.textCondFormat": "Умовне форматування", + "SSE.Views.CellSettings.textControl": "Керування текстами", "SSE.Views.CellSettings.textDataBars": "Гістограми", "SSE.Views.CellSettings.textDirection": "Напрямок", "SSE.Views.CellSettings.textFill": "Заливка", @@ -1255,26 +1516,66 @@ "SSE.Views.CellSettings.textManageRule": "Керування правилами", "SSE.Views.CellSettings.textNewRule": "Нове правило", "SSE.Views.CellSettings.textNoFill": "Без заливки", + "SSE.Views.CellSettings.textOrientation": "Орієнтація тексту", + "SSE.Views.CellSettings.textPattern": "Візерунок", + "SSE.Views.CellSettings.textPatternFill": "Візерунок", + "SSE.Views.CellSettings.textPosition": "Положення", + "SSE.Views.CellSettings.textRadial": "Радіальний", + "SSE.Views.CellSettings.textSelectBorders": "Виберіть межі, до яких потрібно застосувати вибраний стиль", "SSE.Views.CellSettings.textSelection": "З поточного виділеного фрагмента", "SSE.Views.CellSettings.textThisPivot": "З цієї зведеної таблиці", "SSE.Views.CellSettings.textThisSheet": "З цього листа", "SSE.Views.CellSettings.textThisTable": "З цієї таблиці", "SSE.Views.CellSettings.tipAddGradientPoint": "Додати точку градієнта", + "SSE.Views.CellSettings.tipAll": "Встановити зовнішню межу та всі внутрішні лінії", + "SSE.Views.CellSettings.tipBottom": "Встановити лише зовнішню нижню межу", + "SSE.Views.CellSettings.tipDiagD": "Задати діагональну межу зверху донизу", + "SSE.Views.CellSettings.tipDiagU": "Задати діагональну межу знизу нагору", + "SSE.Views.CellSettings.tipInner": "Встановити лише внутрішні лінії", + "SSE.Views.CellSettings.tipInnerHor": "Встановити лише горизонтальні внутрішні лінії", + "SSE.Views.CellSettings.tipInnerVert": "Встановити лише вертикальні внутрішні лінії", + "SSE.Views.CellSettings.tipLeft": "Встановити лише зовнішню ліву межу", + "SSE.Views.CellSettings.tipNone": "Встановити без меж", + "SSE.Views.CellSettings.tipOuter": "Встановити лише зовнішню межу", + "SSE.Views.CellSettings.tipRemoveGradientPoint": "Видалити точку градієнта", + "SSE.Views.CellSettings.tipRight": "Встановити лише зовнішню праву межу", + "SSE.Views.CellSettings.tipTop": "Встановити лише зовнішню верхню межу", + "SSE.Views.ChartDataDialog.errorInFormula": "Помилка у введеній формулі.", + "SSE.Views.ChartDataDialog.errorInvalidReference": "Неприпустиме посилання. Посилання має вказувати на відкритий лист.", + "SSE.Views.ChartDataDialog.errorMaxPoints": "Максимальна кількість точок у серії для діаграми становить 4096.", + "SSE.Views.ChartDataDialog.errorMaxRows": "Максимальна кількість даних для однієї діаграми: 255.", + "SSE.Views.ChartDataDialog.errorNoSingleRowCol": "Неприпустиме посилання. Посилання для назв, значень, розмірів або міток даних має вказувати на одну клітинку, рядок або стовпчик.", + "SSE.Views.ChartDataDialog.errorNoValues": "Для створення діаграми необхідно, щоб ряд містив хоча б одне значення.", "SSE.Views.ChartDataDialog.errorStockChart": "Неправильний порядок рядків. Щоб створити біржову діаграму, розташуйте дані на листі в наступному порядку: ціна відкриття, максимальна ціна, мінімальна ціна, ціна закриття.", "SSE.Views.ChartDataDialog.textAdd": "Додати", "SSE.Views.ChartDataDialog.textCategory": "Підписи горизонтальної осі (категорії)", "SSE.Views.ChartDataDialog.textData": "Діапазон даних для діаграми", + "SSE.Views.ChartDataDialog.textDelete": "Видалити", "SSE.Views.ChartDataDialog.textDown": "Вниз", "SSE.Views.ChartDataDialog.textEdit": "Редагувати", "SSE.Views.ChartDataDialog.textInvalidRange": "Неприпустимий діапазон клітинок", + "SSE.Views.ChartDataDialog.textSelectData": "Вибір даних", "SSE.Views.ChartDataDialog.textSeries": "Елементи легенди (рядки)", + "SSE.Views.ChartDataDialog.textSwitch": "Перемикнути рядок/стовпчик", "SSE.Views.ChartDataDialog.textTitle": "Дані діаграми", + "SSE.Views.ChartDataDialog.textUp": "Вверх", + "SSE.Views.ChartDataRangeDialog.errorInFormula": "Помилка у введеній формулі.", + "SSE.Views.ChartDataRangeDialog.errorInvalidReference": "Неприпустиме посилання. Посилання має вказувати на відкритий лист.", + "SSE.Views.ChartDataRangeDialog.errorMaxPoints": "Максимальна кількість точок у серії для діаграми становить 4096.", + "SSE.Views.ChartDataRangeDialog.errorMaxRows": "Максимальна кількість даних для однієї діаграми: 255.", + "SSE.Views.ChartDataRangeDialog.errorNoSingleRowCol": "Неприпустиме посилання. Посилання для назв, значень, розмірів або міток даних має вказувати на одну клітинку, рядок або стовпчик.", + "SSE.Views.ChartDataRangeDialog.errorNoValues": "Для створення діаграми необхідно, щоб ряд містив хоча б одне значення.", "SSE.Views.ChartDataRangeDialog.errorStockChart": "Неправильний порядок рядків. Щоб створити біржову діаграму, розташуйте дані на листі в наступному порядку: ціна відкриття, максимальна ціна, мінімальна ціна, ціна закриття.", "SSE.Views.ChartDataRangeDialog.textInvalidRange": "Неприпустимий діапазон клітинок", + "SSE.Views.ChartDataRangeDialog.textSelectData": "Вибір даних", "SSE.Views.ChartDataRangeDialog.txtAxisLabel": "Діапазон підписів осі", "SSE.Views.ChartDataRangeDialog.txtChoose": "Виберіть діапазон", + "SSE.Views.ChartDataRangeDialog.txtSeriesName": "Назва серії", "SSE.Views.ChartDataRangeDialog.txtTitleCategory": "Підписи осі", "SSE.Views.ChartDataRangeDialog.txtTitleSeries": "Змінити ряд", + "SSE.Views.ChartDataRangeDialog.txtValues": "Значення", + "SSE.Views.ChartDataRangeDialog.txtXValues": "Значення Х", + "SSE.Views.ChartDataRangeDialog.txtYValues": "Значення Y", "SSE.Views.ChartSettings.strLineWeight": "Line Weight", "SSE.Views.ChartSettings.strSparkColor": "Колір", "SSE.Views.ChartSettings.strTemplate": "Шаблон", @@ -1304,7 +1605,7 @@ "SSE.Views.ChartSettingsDlg.textAbsolute": "Не переміщувати та не змінювати розміри разом з клітинками", "SSE.Views.ChartSettingsDlg.textAlt": "Альтернативний текст", "SSE.Views.ChartSettingsDlg.textAltDescription": "Опис угоди", - "SSE.Views.ChartSettingsDlg.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація знаходиться в зображенні, автошопі, діаграмі або таблиці.", + "SSE.Views.ChartSettingsDlg.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація міститься в зображенні, автофігурі, діаграмі або таблиці.", "SSE.Views.ChartSettingsDlg.textAltTitle": "Назва", "SSE.Views.ChartSettingsDlg.textAuto": "Авто", "SSE.Views.ChartSettingsDlg.textAutoEach": "Авто для кожного", @@ -1312,6 +1613,7 @@ "SSE.Views.ChartSettingsDlg.textAxisOptions": "Параметри осей", "SSE.Views.ChartSettingsDlg.textAxisPos": "Позиція осі", "SSE.Views.ChartSettingsDlg.textAxisSettings": "Налаштування осі", + "SSE.Views.ChartSettingsDlg.textAxisTitle": "Заголовок", "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Між відмітками", "SSE.Views.ChartSettingsDlg.textBillions": "Мільярди", "SSE.Views.ChartSettingsDlg.textBottom": "Внизу", @@ -1337,6 +1639,7 @@ "SSE.Views.ChartSettingsDlg.textHideAxis": "Приховати вісь", "SSE.Views.ChartSettingsDlg.textHigh": "Високий", "SSE.Views.ChartSettingsDlg.textHorAxis": "Горизонтальна вісь", + "SSE.Views.ChartSettingsDlg.textHorAxisSec": "Допоміжна горизонтальна вісь", "SSE.Views.ChartSettingsDlg.textHorizontal": "Горізонтальний", "SSE.Views.ChartSettingsDlg.textHundredMil": "100 000 000", "SSE.Views.ChartSettingsDlg.textHundreds": "Сотні", @@ -1414,40 +1717,73 @@ "SSE.Views.ChartSettingsDlg.textUnits": "Елементи відображення", "SSE.Views.ChartSettingsDlg.textValue": "Значення", "SSE.Views.ChartSettingsDlg.textVertAxis": "Вертикальні вісі", + "SSE.Views.ChartSettingsDlg.textVertAxisSec": "Допоміжна вертикальна вісь", "SSE.Views.ChartSettingsDlg.textXAxisTitle": "Назва осі X", "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Назва осі Y", "SSE.Views.ChartSettingsDlg.textZero": "Нуль", "SSE.Views.ChartSettingsDlg.txtEmpty": "Це поле є обов'язковим", + "SSE.Views.ChartTypeDialog.errorComboSeries": "Для створення комбінованої діаграми виберіть щонайменше два ряди даних.", + "SSE.Views.ChartTypeDialog.errorSecondaryAxis": "Для вибраного типу діаграми потрібна допоміжна вісь, яка використовується в діаграмі. Виберіть інший тип діаграми.", + "SSE.Views.ChartTypeDialog.textSecondary": "Допоміжна вісь", + "SSE.Views.ChartTypeDialog.textSeries": "Серія", + "SSE.Views.ChartTypeDialog.textStyle": "Стиль", "SSE.Views.ChartTypeDialog.textTitle": "Тип діаграми", + "SSE.Views.ChartTypeDialog.textType": "Тип", + "SSE.Views.CreatePivotDialog.textDataRange": "Діапазон вихідних даних", "SSE.Views.CreatePivotDialog.textDestination": "Виберіть, де розмістити таблицю", "SSE.Views.CreatePivotDialog.textExist": "Існуючий лист", "SSE.Views.CreatePivotDialog.textInvalidRange": "Недійсний діапазон комірок", "SSE.Views.CreatePivotDialog.textNew": "Новий лист", + "SSE.Views.CreatePivotDialog.textSelectData": "Вибір даних", "SSE.Views.CreatePivotDialog.textTitle": "Створити зведену таблицю", + "SSE.Views.CreatePivotDialog.txtEmpty": "Це поле є обов'язковим", + "SSE.Views.CreateSparklineDialog.textDataRange": "Діапазон вихідних даних", "SSE.Views.CreateSparklineDialog.textDestination": "Виберіть, де помістити спарклайни", "SSE.Views.CreateSparklineDialog.textInvalidRange": "Неприпустимий діапазон клітинок", + "SSE.Views.CreateSparklineDialog.textSelectData": "Вибір даних", "SSE.Views.CreateSparklineDialog.textTitle": "Створення спарклайнів", + "SSE.Views.CreateSparklineDialog.txtEmpty": "Це поле необхідно заповнити", "SSE.Views.DataTab.capBtnGroup": "Згрупувати", "SSE.Views.DataTab.capBtnTextCustomSort": "Сортування, що налаштовується", "SSE.Views.DataTab.capBtnTextDataValidation": "Перевірка даних", + "SSE.Views.DataTab.capBtnTextRemDuplicates": "Видалити дублікати", + "SSE.Views.DataTab.capBtnTextToCol": "Текст по стовпчиках", + "SSE.Views.DataTab.capBtnUngroup": "Розгрупувати", "SSE.Views.DataTab.capDataFromText": "Отримати дані", "SSE.Views.DataTab.mniFromFile": "З локального TXT/CSV файлу", "SSE.Views.DataTab.mniFromUrl": "URL TXT/CSV файлу", + "SSE.Views.DataTab.textBelow": "Підсумки у рядках під даними", "SSE.Views.DataTab.textClear": "Видалити структуру", + "SSE.Views.DataTab.textColumns": "Розгрупувати стовпчики", "SSE.Views.DataTab.textGroupColumns": "Згрупувати стовпчики", "SSE.Views.DataTab.textGroupRows": "Згрупувати рядки", + "SSE.Views.DataTab.textRightOf": "Підсумки в стовпчиках праворуч від даних", + "SSE.Views.DataTab.textRows": "Розгрупувати рядки", "SSE.Views.DataTab.tipCustomSort": "Сортування, що налаштовується", "SSE.Views.DataTab.tipDataFromText": "Отримати дані з текстового/CSV-файлу", "SSE.Views.DataTab.tipDataValidation": "Перевірка даних", "SSE.Views.DataTab.tipGroup": "Згрупувати діапазон клітинок", + "SSE.Views.DataTab.tipRemDuplicates": "Видалити рядки, що повторюються, з листа", + "SSE.Views.DataTab.tipToColumns": "Розділити текст клітинки по стовпчиках", "SSE.Views.DataTab.tipUngroup": "Зняти групування діапазону комірок", + "SSE.Views.DataValidationDialog.errorFormula": "Під час обчислення значення виникає помилка. Ви хочете продовжити?", + "SSE.Views.DataValidationDialog.errorInvalid": "У полі \"{0}\" введено неприпустиме значення.", + "SSE.Views.DataValidationDialog.errorInvalidDate": "У полі \"{0}\" введено неприпустиму дату.", + "SSE.Views.DataValidationDialog.errorInvalidList": "Джерело списку має бути списком з розділювачами або посиланням на один рядок або стовпчик.", + "SSE.Views.DataValidationDialog.errorInvalidTime": "У полі \"{0}\" введено неприпустимий час.", + "SSE.Views.DataValidationDialog.errorMinGreaterMax": "Значення поля \"{1}\" має бути більшим або рівним значенню поля \"{0}\".", + "SSE.Views.DataValidationDialog.errorMustEnterBothValues": "Необхідно ввести значення і в полі \"{0}\", і в полі \"{1}\".", + "SSE.Views.DataValidationDialog.errorMustEnterValue": "У полі \"{0}\" необхідно ввести значення.", "SSE.Views.DataValidationDialog.errorNamedRange": "Зазначений іменований діапазон не знайдено.", "SSE.Views.DataValidationDialog.errorNegativeTextLength": "В умовах {0} не можна використовувати негативні значення.", + "SSE.Views.DataValidationDialog.errorNotNumeric": "Поле \"{0}\" має містити числове значення, чисельний вираз або посилання на клітинку з числовим значенням.", "SSE.Views.DataValidationDialog.strError": "Повідомлення про помилку", "SSE.Views.DataValidationDialog.strInput": "Підказка щодо введення", + "SSE.Views.DataValidationDialog.strSettings": "Налаштування", "SSE.Views.DataValidationDialog.textAlert": "Сповіщення", "SSE.Views.DataValidationDialog.textAllow": "Дозволити", "SSE.Views.DataValidationDialog.textApply": "Поширити зміни на всі інші клітинки з тією ж умовою", + "SSE.Views.DataValidationDialog.textCellSelected": "При виборі клітинки відображатиметься наступна підказка", "SSE.Views.DataValidationDialog.textCompare": "Порівняти з", "SSE.Views.DataValidationDialog.textData": "Дані", "SSE.Views.DataValidationDialog.textEndDate": "Дата завершення", @@ -1459,6 +1795,17 @@ "SSE.Views.DataValidationDialog.textMax": "Максимум", "SSE.Views.DataValidationDialog.textMessage": "Повідомлення", "SSE.Views.DataValidationDialog.textMin": "Мінімум", + "SSE.Views.DataValidationDialog.textSelectData": "Вибір даних", + "SSE.Views.DataValidationDialog.textShowDropDown": "Показувати список, що розкривається, в клітинці", + "SSE.Views.DataValidationDialog.textShowError": "Виводити повідомлення про помилку", + "SSE.Views.DataValidationDialog.textShowInput": "Показувати підказку, якщо це поточна клітинка", + "SSE.Views.DataValidationDialog.textSource": "Джерело", + "SSE.Views.DataValidationDialog.textStartDate": "Дата початку", + "SSE.Views.DataValidationDialog.textStartTime": "Час початку", + "SSE.Views.DataValidationDialog.textStop": "Стоп", + "SSE.Views.DataValidationDialog.textStyle": "Стиль", + "SSE.Views.DataValidationDialog.textTitle": "Заголовок", + "SSE.Views.DataValidationDialog.textUserEnters": "При спробі вводу неприпустимих даних показувати повідомлення", "SSE.Views.DataValidationDialog.txtAny": "Будь-яке значення", "SSE.Views.DataValidationDialog.txtBetween": "між", "SSE.Views.DataValidationDialog.txtDate": "Дата", @@ -1476,6 +1823,11 @@ "SSE.Views.DataValidationDialog.txtNotBetween": "не між", "SSE.Views.DataValidationDialog.txtNotEqual": "не рівно", "SSE.Views.DataValidationDialog.txtOther": "Інше", + "SSE.Views.DataValidationDialog.txtStartDate": "Дата початку", + "SSE.Views.DataValidationDialog.txtStartTime": "Час початку", + "SSE.Views.DataValidationDialog.txtTextLength": "Довжина тексту", + "SSE.Views.DataValidationDialog.txtTime": "Час", + "SSE.Views.DataValidationDialog.txtWhole": "Ціле число", "SSE.Views.DigitalFilterDialog.capAnd": "і", "SSE.Views.DigitalFilterDialog.capCondition1": "Дорівнює", "SSE.Views.DigitalFilterDialog.capCondition10": "не закінчується з", @@ -1497,6 +1849,7 @@ "SSE.Views.DigitalFilterDialog.txtTitle": "Спеціальний фільтр", "SSE.Views.DocumentHolder.advancedImgText": "Зображення розширені налаштування", "SSE.Views.DocumentHolder.advancedShapeText": "Форма розширені налаштування", + "SSE.Views.DocumentHolder.advancedSlicerText": "Додаткові параметри зрізу", "SSE.Views.DocumentHolder.bottomCellText": "Вирівняти знизу", "SSE.Views.DocumentHolder.bulletsText": "Кулі та нумерація", "SSE.Views.DocumentHolder.centerCellText": "Вирівняти посередині", @@ -1520,6 +1873,10 @@ "SSE.Views.DocumentHolder.selectDataText": "Колонка даних", "SSE.Views.DocumentHolder.selectRowText": "Рядок", "SSE.Views.DocumentHolder.selectTableText": "Таблиця", + "SSE.Views.DocumentHolder.strDelete": "Вилучити підпис", + "SSE.Views.DocumentHolder.strDetails": "Склад підпису", + "SSE.Views.DocumentHolder.strSetup": "Налаштування підпису", + "SSE.Views.DocumentHolder.strSign": "Підписати", "SSE.Views.DocumentHolder.textAlign": "Вирівнювання", "SSE.Views.DocumentHolder.textArrange": "Порядок", "SSE.Views.DocumentHolder.textArrangeBack": "Надіслати до фону", @@ -1548,14 +1905,21 @@ "SSE.Views.DocumentHolder.textMoreFormats": "Більше форматів", "SSE.Views.DocumentHolder.textNone": "Жоден", "SSE.Views.DocumentHolder.textNumbering": "Нумерація", + "SSE.Views.DocumentHolder.textReplace": "Замінити зображення", + "SSE.Views.DocumentHolder.textRotate": "Поворот", + "SSE.Views.DocumentHolder.textRotate270": "Повернути на 90° проти годинникової стрілки", + "SSE.Views.DocumentHolder.textRotate90": "Повернути на 90° за годинниковою стрілкою", "SSE.Views.DocumentHolder.textShapeAlignBottom": "Вирівняти по нижньому краю", "SSE.Views.DocumentHolder.textShapeAlignCenter": "Вирівняти по центру", "SSE.Views.DocumentHolder.textShapeAlignLeft": "Вирівняти по лівому краю", "SSE.Views.DocumentHolder.textShapeAlignMiddle": "Вирівняти посередині", "SSE.Views.DocumentHolder.textShapeAlignRight": "Вирівняти по правому краю", "SSE.Views.DocumentHolder.textShapeAlignTop": "Вирівняти по верхньому краю", + "SSE.Views.DocumentHolder.textStdDev": "Станд.відхилення", + "SSE.Views.DocumentHolder.textSum": "Сума", "SSE.Views.DocumentHolder.textUndo": "Скасувати", "SSE.Views.DocumentHolder.textUnFreezePanes": "Розморозити грані", + "SSE.Views.DocumentHolder.textVar": "Дисп", "SSE.Views.DocumentHolder.topCellText": "Вирівняти догори", "SSE.Views.DocumentHolder.txtAccounting": "Фінансовий", "SSE.Views.DocumentHolder.txtAddComment": "Додати коментар", @@ -1601,9 +1965,11 @@ "SSE.Views.DocumentHolder.txtNumber": "Числовий", "SSE.Views.DocumentHolder.txtNumFormat": "Числовий формат", "SSE.Views.DocumentHolder.txtPaste": "Вставити", + "SSE.Views.DocumentHolder.txtPercentage": "Процентний", "SSE.Views.DocumentHolder.txtReapply": "Повторно застосуйте", "SSE.Views.DocumentHolder.txtRow": "Загальний ряд", "SSE.Views.DocumentHolder.txtRowHeight": "Встановити висоту рядка", + "SSE.Views.DocumentHolder.txtScientific": "Науковий", "SSE.Views.DocumentHolder.txtSelect": "Обрати", "SSE.Views.DocumentHolder.txtShiftDown": "Пересунути комірки донизу", "SSE.Views.DocumentHolder.txtShiftLeft": "Пересунути комірки ліворуч", @@ -1615,37 +1981,57 @@ "SSE.Views.DocumentHolder.txtSortCellColor": "Вибраний колір комірки згори", "SSE.Views.DocumentHolder.txtSortFontColor": "Вибраний колір шрифту зверху", "SSE.Views.DocumentHolder.txtSparklines": "Міні-діграми", - "SSE.Views.DocumentHolder.txtTextAdvanced": "Розширенні налаштування тексту", + "SSE.Views.DocumentHolder.txtText": "Текстовий", + "SSE.Views.DocumentHolder.txtTextAdvanced": "Додаткові параметри абзацу", + "SSE.Views.DocumentHolder.txtTime": "Час", "SSE.Views.DocumentHolder.txtUngroup": "Розпакувати", "SSE.Views.DocumentHolder.txtWidth": "Ширина", "SSE.Views.DocumentHolder.vertAlignText": "Вертикальне вирівнювання", "SSE.Views.FieldSettingsDialog.strLayout": "Макет", + "SSE.Views.FieldSettingsDialog.strSubtotals": "Проміжні підсумки", + "SSE.Views.FieldSettingsDialog.textReport": "Форма звіту", "SSE.Views.FieldSettingsDialog.textTitle": "Параметри полів", "SSE.Views.FieldSettingsDialog.txtAverage": "Середнє", "SSE.Views.FieldSettingsDialog.txtBlank": "Додати пустий рядок після кожного запису", + "SSE.Views.FieldSettingsDialog.txtBottom": "Показувати у нижній частині групи", "SSE.Views.FieldSettingsDialog.txtCompact": "Компактна", "SSE.Views.FieldSettingsDialog.txtCount": "Кількість", "SSE.Views.FieldSettingsDialog.txtCountNums": "Кількість чисел", "SSE.Views.FieldSettingsDialog.txtCustomName": "Ім'я користувача", + "SSE.Views.FieldSettingsDialog.txtEmpty": "Показувати елементи без даних", "SSE.Views.FieldSettingsDialog.txtMax": "Макс", "SSE.Views.FieldSettingsDialog.txtMin": "Мін", "SSE.Views.FieldSettingsDialog.txtOutline": "Структура", + "SSE.Views.FieldSettingsDialog.txtProduct": "Твір", + "SSE.Views.FieldSettingsDialog.txtRepeat": "Повторювати позначки елементів у кожному рядку", + "SSE.Views.FieldSettingsDialog.txtShowSubtotals": "Показувати проміжні підсумки", + "SSE.Views.FieldSettingsDialog.txtSourceName": "Ім'я джерела:", + "SSE.Views.FieldSettingsDialog.txtStdDev": "StdDev", + "SSE.Views.FieldSettingsDialog.txtStdDevp": "Станд.відхилення", + "SSE.Views.FieldSettingsDialog.txtSum": "Сума", "SSE.Views.FieldSettingsDialog.txtSummarize": "Функції для проміжних підсумків", - "SSE.Views.FileMenu.btnBackCaption": "Перейти до документів", + "SSE.Views.FieldSettingsDialog.txtTabular": "У вигляді таблиці", + "SSE.Views.FieldSettingsDialog.txtTop": "Показувати у заголовку групи", + "SSE.Views.FieldSettingsDialog.txtVar": "Дисп", + "SSE.Views.FieldSettingsDialog.txtVarp": "Диспр", + "SSE.Views.FileMenu.btnBackCaption": "Відкрити розташування файлу", "SSE.Views.FileMenu.btnCloseMenuCaption": "Закрити меню", "SSE.Views.FileMenu.btnCreateNewCaption": "Створити новий", "SSE.Views.FileMenu.btnDownloadCaption": "Завантажити як...", "SSE.Views.FileMenu.btnExitCaption": "Вийти", "SSE.Views.FileMenu.btnFileOpenCaption": "Відкрити...", "SSE.Views.FileMenu.btnHelpCaption": "Допомога...", + "SSE.Views.FileMenu.btnHistoryCaption": "Історія версій", "SSE.Views.FileMenu.btnInfoCaption": "Інформація про електронну таблицю ...", "SSE.Views.FileMenu.btnPrintCaption": "Роздрукувати", + "SSE.Views.FileMenu.btnProtectCaption": "Захистити", "SSE.Views.FileMenu.btnRecentFilesCaption": "Відкрити останні ...", "SSE.Views.FileMenu.btnRenameCaption": "Перейменувати...", "SSE.Views.FileMenu.btnReturnCaption": "Повернутися до електронної таблиці", "SSE.Views.FileMenu.btnRightsCaption": "Права доступу ...", "SSE.Views.FileMenu.btnSaveAsCaption": "Зберегти як", "SSE.Views.FileMenu.btnSaveCaption": "Зберегти", + "SSE.Views.FileMenu.btnSaveCopyAsCaption": "Зберегти копію як...", "SSE.Views.FileMenu.btnSettingsCaption": "Розширені налаштування...", "SSE.Views.FileMenu.btnToEditCaption": "Редагувати електронну таблицю", "SSE.Views.FileMenuPanels.CreateNew.txtBlank": "Пуста таблиця", @@ -1660,10 +2046,12 @@ "SSE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Створена", "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Автор останньої зміни", "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Остання зміна", + "SSE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Власник", "SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Місцезнаходження", "SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Особи, які мають права", "SSE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Тема", - "SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Назва електронної таблиці", + "SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Назва", + "SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Завантажена", "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Змінити права доступу", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Особи, які мають права", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Застосувати", @@ -1675,18 +2063,23 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Десятковий роздільник", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Швидко", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Підказки шрифта", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Завжди зберігати на сервері (в іншому випадку зберегти на сервері закритий документ)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Додавати версію до сховища після натискання кнопки Зберегти або Ctrl+S", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Мова формули", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Приклад: SUM; ХВ; MAX; РАХУВАТИ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Увімкніть показ коментарів", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Налаштування макросів", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Вирізання, копіювання та вставка", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Показувати кнопку Налаштування вставки при вставці вмісту", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Включити стиль R1C1", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Регіональні налаштування", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Приклад:", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Увімкніть відображення усунених зауважень", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Розділювач", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Суворий", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Тема інтерфейсу", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Роздільник тисяч", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Одиниця виміру", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings": "Використовувати роздільники на базі регіональних налаштувань", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "Зменшити значення за замовчуванням", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes": "Кожні 10 хвилин", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text30Minutes": "Кожні 30 хвилин", @@ -1695,8 +2088,9 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoRecover": "Автовідновлення", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave": "Автозбереження", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "Заблокований", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Зберегти на сервері", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Збереження проміжних версій", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Кожну хвилину", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Стиль посилань", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe": "Білоруська", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "Болгарська", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "Каталонська", @@ -1707,6 +2101,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Німецький", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl": "Грецька", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "Англійська", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "Іспанська", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi": "Фінський", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "Французький", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu": "Угорська", @@ -1724,11 +2119,21 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "Голландський", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Польський", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Визначити", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "Португальська (Бразилія)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Португальська (Португалія)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Румунська", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Російський", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Увімкнути все", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc": "Увімкнути всі макроси без сповіщення", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSk": "Словацька", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl": "Словенська", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Вимкнути все", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Вимкнути всі макроси без сповіщення", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv": "Шведська", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr": "Турецька", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk": "Українська", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtVi": "В'єтнамська", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Показувати сповіщення", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Вимкнути всі макроси зі сповіщенням", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "як Windows", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Китайська", @@ -1737,11 +2142,23 @@ "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Пропускати слова з ВЕЛИКИХ БУКВ", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Пропускати слова з цифрами", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Параметри автозаміни...", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Правопис", + "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Увага", + "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "За допомогою паролю", + "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Захистити електронну таблицю", + "SSE.Views.FileMenuPanels.ProtectDoc.strSignature": "За допомогою підпису", "SSE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Редагувати таблицю", "SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Під час редагування з електронної таблиці буде видалено підписи.
Продовжити?", + "SSE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Ця електронна таблиця захищена паролем", + "SSE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "Цю таблицю потрібно підписати.", + "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "До електронної таблиці додано дійсні підписи. Таблиця захищена від редагування.", + "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Деякі цифрові підписи в електронній таблиці є недійсними або їх не можна перевірити. Таблиця захищена від редагування.", + "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Перегляд підписів", "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Загальні", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Налаштування сторінки", + "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Перевірка орфографії", "SSE.Views.FormatRulesEditDlg.fillColor": "Колір заливки", + "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Увага", "SSE.Views.FormatRulesEditDlg.text2Scales": "Двоколірна шкала", "SSE.Views.FormatRulesEditDlg.text3Scales": "Триколірна шкала", "SSE.Views.FormatRulesEditDlg.textAllBorders": "Всі кордони", @@ -1759,17 +2176,24 @@ "SSE.Views.FormatRulesEditDlg.textCellMidpoint": "Середина клітинки", "SSE.Views.FormatRulesEditDlg.textCenterBorders": "Внутрішні вертикальні межі", "SSE.Views.FormatRulesEditDlg.textClear": "Очистити", + "SSE.Views.FormatRulesEditDlg.textColor": "Колір тексту", "SSE.Views.FormatRulesEditDlg.textContext": "Контекст", "SSE.Views.FormatRulesEditDlg.textCustom": "Особливий", "SSE.Views.FormatRulesEditDlg.textDiagDownBorder": "Діагональна межа зверху вниз", "SSE.Views.FormatRulesEditDlg.textDiagUpBorder": "Діагональна межа знизу нагору", "SSE.Views.FormatRulesEditDlg.textEmptyFormula": "Введіть допустиму формулу.", + "SSE.Views.FormatRulesEditDlg.textEmptyFormulaExt": "Значення введеної формули не є числом, датою, часом чи рядком.", "SSE.Views.FormatRulesEditDlg.textEmptyText": "Введіть значення.", + "SSE.Views.FormatRulesEditDlg.textEmptyValue": "Введене значення не є допустимим числом, датою, часом або рядком.", + "SSE.Views.FormatRulesEditDlg.textErrorGreater": "Значення для {0} має бути більшим, ніж значення для {1}.", "SSE.Views.FormatRulesEditDlg.textErrorTop10Between": "Введіть число від {0} до {1}.", "SSE.Views.FormatRulesEditDlg.textFill": "Заливка", "SSE.Views.FormatRulesEditDlg.textFormat": "Формат", "SSE.Views.FormatRulesEditDlg.textFormula": "Формула", "SSE.Views.FormatRulesEditDlg.textGradient": "Градієнт", + "SSE.Views.FormatRulesEditDlg.textIconLabel": "когда {0} {1} і", + "SSE.Views.FormatRulesEditDlg.textIconLabelFirst": "коли {0} {1}", + "SSE.Views.FormatRulesEditDlg.textIconLabelLast": "коли значення дорівнює", "SSE.Views.FormatRulesEditDlg.textIconsOverlap": "Один або кілька діапазонів даних значків перекриваються.
Скоригуйте значення діапазонів даних значків так, щоб діапазони не перекривалися.", "SSE.Views.FormatRulesEditDlg.textIconStyle": "Стиль іконки", "SSE.Views.FormatRulesEditDlg.textInsideBorders": "Внутрішні межі", @@ -1791,17 +2215,47 @@ "SSE.Views.FormatRulesEditDlg.textNoBorders": "Без кордонів", "SSE.Views.FormatRulesEditDlg.textNone": "Немає", "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "Принаймні одне із зазначених значень не є допустимим відсотком.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentageExt": "Вказане значення {0} не є допустимим відсотком.", "SSE.Views.FormatRulesEditDlg.textNotValidPercentile": "Принаймні одне із зазначених значень не є допустимим відсотком.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentileExt": "Вказане значення {0} не є допустимим відсотком.", "SSE.Views.FormatRulesEditDlg.textOutBorders": "Зовнішні кордони", + "SSE.Views.FormatRulesEditDlg.textPercent": "Процентний", + "SSE.Views.FormatRulesEditDlg.textPercentile": "Процентиль", + "SSE.Views.FormatRulesEditDlg.textPosition": "Положення", + "SSE.Views.FormatRulesEditDlg.textPositive": "Позитивне", + "SSE.Views.FormatRulesEditDlg.textPresets": "Передустановки", + "SSE.Views.FormatRulesEditDlg.textPreview": "Перегляд", + "SSE.Views.FormatRulesEditDlg.textRelativeRef": "За умов умовного форматування не можна використовувати відносні посилання для шкал кольорів, гістограм та наборів значків.", + "SSE.Views.FormatRulesEditDlg.textReverse": "Значки у зворотному порядку", + "SSE.Views.FormatRulesEditDlg.textRight2Left": "Справа наліво", + "SSE.Views.FormatRulesEditDlg.textRightBorders": "Праві межі", + "SSE.Views.FormatRulesEditDlg.textRule": "Правило", + "SSE.Views.FormatRulesEditDlg.textSameAs": "Як додатне", + "SSE.Views.FormatRulesEditDlg.textSelectData": "Вибір даних", + "SSE.Views.FormatRulesEditDlg.textShortBar": "найкоротший стовпчик", + "SSE.Views.FormatRulesEditDlg.textShowBar": "Показувати лише стовпчик", + "SSE.Views.FormatRulesEditDlg.textShowIcon": "Показати тільки значок", + "SSE.Views.FormatRulesEditDlg.textSingleRef": "Такий тип посилання не можна використовувати у формулі умовного форматування.
Змініть посилання так, щоб воно вказувало на одну клітинку, або помістіть посилання у функцію. Наприклад: = СУМ(A1: B5).", + "SSE.Views.FormatRulesEditDlg.textSolid": "Суцільний", + "SSE.Views.FormatRulesEditDlg.textStrikeout": "Закреслений", + "SSE.Views.FormatRulesEditDlg.textSubscript": "Підрядні знаки", + "SSE.Views.FormatRulesEditDlg.textSuperscript": "Надрядкові знаки", + "SSE.Views.FormatRulesEditDlg.textTopBorders": "Верхні межі", + "SSE.Views.FormatRulesEditDlg.textUnderline": "Підкреслений", "SSE.Views.FormatRulesEditDlg.tipBorders": "Межі", "SSE.Views.FormatRulesEditDlg.tipNumFormat": "Числовий формат", "SSE.Views.FormatRulesEditDlg.txtAccounting": "Фінансовий", "SSE.Views.FormatRulesEditDlg.txtCurrency": "Грошовий", "SSE.Views.FormatRulesEditDlg.txtDate": "Дата", + "SSE.Views.FormatRulesEditDlg.txtEmpty": "Це поле необхідно заповнити", "SSE.Views.FormatRulesEditDlg.txtFraction": "Дріб", "SSE.Views.FormatRulesEditDlg.txtGeneral": "Загальний", "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "Без значка", "SSE.Views.FormatRulesEditDlg.txtNumber": "Числовий", + "SSE.Views.FormatRulesEditDlg.txtPercentage": "Відсоток", + "SSE.Views.FormatRulesEditDlg.txtScientific": "Науковий", + "SSE.Views.FormatRulesEditDlg.txtText": "Текст", + "SSE.Views.FormatRulesEditDlg.txtTime": "Час", "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Зміна правил форматування", "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Нове правило форматування", "SSE.Views.FormatRulesManagerDlg.guestText": "Гість", @@ -1836,8 +2290,16 @@ "SSE.Views.FormatRulesManagerDlg.textNotContains": "Значення клітинки не містить", "SSE.Views.FormatRulesManagerDlg.textNotContainsBlank": "Клітинка не містить пусте значення", "SSE.Views.FormatRulesManagerDlg.textNotContainsError": "Клітинка не містить помилки", + "SSE.Views.FormatRulesManagerDlg.textRules": "Правила", + "SSE.Views.FormatRulesManagerDlg.textScope": "Показати правила форматування для", + "SSE.Views.FormatRulesManagerDlg.textSelectData": "Вибір даних", "SSE.Views.FormatRulesManagerDlg.textSelection": "Поточний виділений фрагмент", + "SSE.Views.FormatRulesManagerDlg.textThisPivot": "Це зведена таблиця", + "SSE.Views.FormatRulesManagerDlg.textThisSheet": "Цей лист", + "SSE.Views.FormatRulesManagerDlg.textThisTable": "Ця таблиця", + "SSE.Views.FormatRulesManagerDlg.textUnique": "Унікальні значення", "SSE.Views.FormatRulesManagerDlg.textUp": "Перемістити правило вверх", + "SSE.Views.FormatRulesManagerDlg.tipIsLocked": "Цей елемент редагує інший користувач.", "SSE.Views.FormatRulesManagerDlg.txtTitle": "Умовне форматування", "SSE.Views.FormatSettingsDialog.textCategory": "Категорія", "SSE.Views.FormatSettingsDialog.textDecimal": "десятковий дріб", @@ -1855,6 +2317,7 @@ "SSE.Views.FormatSettingsDialog.txtAs8": "Як восьмих (4/8)", "SSE.Views.FormatSettingsDialog.txtCurrency": "Валюта", "SSE.Views.FormatSettingsDialog.txtCustom": "Користувальницький", + "SSE.Views.FormatSettingsDialog.txtCustomWarning": "Вводьте числовий формат уважно. Редактор електронних таблиць не перевіряє формати користувача на помилки, що може вплинути на файл xlsx.", "SSE.Views.FormatSettingsDialog.txtDate": "Дата", "SSE.Views.FormatSettingsDialog.txtFraction": "Дріб", "SSE.Views.FormatSettingsDialog.txtGeneral": "Загальні", @@ -1871,6 +2334,8 @@ "SSE.Views.FormulaDialog.sDescription": "Опис", "SSE.Views.FormulaDialog.textGroupDescription": "Виберіть функціональну групу", "SSE.Views.FormulaDialog.textListDescription": "Вибрати функцію", + "SSE.Views.FormulaDialog.txtRecommended": "Рекомендовані", + "SSE.Views.FormulaDialog.txtSearch": "Пошук", "SSE.Views.FormulaDialog.txtTitle": "Вставити функцію", "SSE.Views.FormulaTab.textAutomatic": "Автоматично", "SSE.Views.FormulaTab.textCalculateCurrentSheet": "Перерахунок поточного листа", @@ -1880,23 +2345,29 @@ "SSE.Views.FormulaTab.tipCalculateTheEntireWorkbook": "Перерахунок усієї книги", "SSE.Views.FormulaTab.txtAdditional": "Вставити функцію", "SSE.Views.FormulaTab.txtAutosum": "Автосума", + "SSE.Views.FormulaTab.txtAutosumTip": "Сума", "SSE.Views.FormulaTab.txtCalculation": "Перерахунок", "SSE.Views.FormulaTab.txtFormula": "Функція", "SSE.Views.FormulaTab.txtFormulaTip": "Вставити функцію", "SSE.Views.FormulaTab.txtMore": "Інші функції", + "SSE.Views.FormulaTab.txtRecent": "Останні використані", "SSE.Views.FormulaWizard.textAny": "будь-який", "SSE.Views.FormulaWizard.textArgument": "Аргумент", "SSE.Views.FormulaWizard.textFunction": "Функція", "SSE.Views.FormulaWizard.textFunctionRes": "Результат функції", "SSE.Views.FormulaWizard.textHelp": "Довідка по цій функції", "SSE.Views.FormulaWizard.textLogical": "логічне значення", + "SSE.Views.FormulaWizard.textNoArgs": "Ця функція не має аргументів", "SSE.Views.FormulaWizard.textNumber": "число", + "SSE.Views.FormulaWizard.textRef": "посилання", + "SSE.Views.FormulaWizard.textText": "текст", "SSE.Views.FormulaWizard.textTitle": "Аргументи функції", "SSE.Views.FormulaWizard.textValue": "Значення", "SSE.Views.HeaderFooterDialog.textAlign": "Вирівняти відносно полів сторінки", "SSE.Views.HeaderFooterDialog.textAll": "Усі сторінки", "SSE.Views.HeaderFooterDialog.textBold": "Напівжирний", "SSE.Views.HeaderFooterDialog.textCenter": "В центрі", + "SSE.Views.HeaderFooterDialog.textColor": "Колір тексту", "SSE.Views.HeaderFooterDialog.textDate": "Дата", "SSE.Views.HeaderFooterDialog.textDiffFirst": "Особливий для першої сторінки", "SSE.Views.HeaderFooterDialog.textDiffOdd": "Різні для парних та непарних", @@ -1908,9 +2379,21 @@ "SSE.Views.HeaderFooterDialog.textInsert": "Вставити", "SSE.Views.HeaderFooterDialog.textItalic": "Курсив", "SSE.Views.HeaderFooterDialog.textLeft": "Ліворуч", + "SSE.Views.HeaderFooterDialog.textMaxError": "Введено занадто довгий текстовий рядок. Зменште кількість символів.", "SSE.Views.HeaderFooterDialog.textNewColor": "Користувальницький колір", "SSE.Views.HeaderFooterDialog.textOdd": "Непарна сторінка", + "SSE.Views.HeaderFooterDialog.textPageCount": "Кількість сторінок", + "SSE.Views.HeaderFooterDialog.textPageNum": "Номер сторінки", + "SSE.Views.HeaderFooterDialog.textPresets": "Передустановки", + "SSE.Views.HeaderFooterDialog.textRight": "Праворуч", + "SSE.Views.HeaderFooterDialog.textScale": "Змінювати масштаб разом із документом", + "SSE.Views.HeaderFooterDialog.textSheet": "Назва листа", + "SSE.Views.HeaderFooterDialog.textStrikeout": "Викреслений", + "SSE.Views.HeaderFooterDialog.textSubscript": "Підрядковий", + "SSE.Views.HeaderFooterDialog.textSuperscript": "Надрядковий", + "SSE.Views.HeaderFooterDialog.textTime": "Час", "SSE.Views.HeaderFooterDialog.textTitle": "Параметри верхнього та нижнього колонтитулів", + "SSE.Views.HeaderFooterDialog.textUnderline": "Підкреслений", "SSE.Views.HeaderFooterDialog.tipFontName": "Шрифт", "SSE.Views.HeaderFooterDialog.tipFontSize": "Розмір шрифту", "SSE.Views.HyperlinkSettingsDialog.strDisplay": "Дісплей", @@ -1927,10 +2410,13 @@ "SSE.Views.HyperlinkSettingsDialog.textInternalLink": "Внутрішній діапазон даних", "SSE.Views.HyperlinkSettingsDialog.textInvalidRange": "ПОМИЛКА! Недійсний діапазон комірок", "SSE.Views.HyperlinkSettingsDialog.textNames": "Визначені імена", + "SSE.Views.HyperlinkSettingsDialog.textSelectData": "Вибір даних", + "SSE.Views.HyperlinkSettingsDialog.textSheets": "Листи", "SSE.Views.HyperlinkSettingsDialog.textTipText": "Текст ScreenTip", "SSE.Views.HyperlinkSettingsDialog.textTitle": "Налаштування гіперсилки", "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "Це поле є обов'язковим", "SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com\"", + "SSE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Це поле може містити не більше 2083 символів", "SSE.Views.ImageSettings.textAdvanced": "Показати додаткові налаштування", "SSE.Views.ImageSettings.textCrop": "Обрізати", "SSE.Views.ImageSettings.textCropFill": "Заливка", @@ -1943,18 +2429,22 @@ "SSE.Views.ImageSettings.textFromStorage": "Зі сховища", "SSE.Views.ImageSettings.textFromUrl": "З URL", "SSE.Views.ImageSettings.textHeight": "Висота", + "SSE.Views.ImageSettings.textHint270": "Повернути на 90° проти годинникової стрілки", + "SSE.Views.ImageSettings.textHint90": "Повернути на 90° за годинниковою стрілкою", "SSE.Views.ImageSettings.textHintFlipH": "Перевернути зліва направо", "SSE.Views.ImageSettings.textHintFlipV": "Перевернути зверху вниз", "SSE.Views.ImageSettings.textInsert": "Замінити зображення", "SSE.Views.ImageSettings.textKeepRatio": "Сталі пропорції", - "SSE.Views.ImageSettings.textOriginalSize": "За замовчуванням", + "SSE.Views.ImageSettings.textOriginalSize": "Реальний розмір", + "SSE.Views.ImageSettings.textRecentlyUsed": "Останні використані", + "SSE.Views.ImageSettings.textRotate90": "Повернути на 90°", "SSE.Views.ImageSettings.textRotation": "Поворот", "SSE.Views.ImageSettings.textSize": "Розмір", "SSE.Views.ImageSettings.textWidth": "Ширина", "SSE.Views.ImageSettingsAdvanced.textAbsolute": "Не переміщувати та не змінювати розміри разом з клітинками", "SSE.Views.ImageSettingsAdvanced.textAlt": "Альтернативний текст", "SSE.Views.ImageSettingsAdvanced.textAltDescription": "Опис", - "SSE.Views.ImageSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація знаходиться в зображенні, автошопі, діаграмі або таблиці.", + "SSE.Views.ImageSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація міститься в зображенні, автофігурі, діаграмі або таблиці.", "SSE.Views.ImageSettingsAdvanced.textAltTitle": "Назва", "SSE.Views.ImageSettingsAdvanced.textAngle": "Нахил", "SSE.Views.ImageSettingsAdvanced.textFlipped": "Віддзеркалено", @@ -1964,15 +2454,19 @@ "SSE.Views.ImageSettingsAdvanced.textSnap": "Прив'язка до клітинки", "SSE.Views.ImageSettingsAdvanced.textTitle": "Зображення - розширені налаштування", "SSE.Views.ImageSettingsAdvanced.textTwoCell": "Переміщувати та змінювати розміри разом з клітинками", + "SSE.Views.ImageSettingsAdvanced.textVertically": "По вертикалі", "SSE.Views.LeftMenu.tipAbout": "Про", "SSE.Views.LeftMenu.tipChat": "Чат", "SSE.Views.LeftMenu.tipComments": "Коментарі", "SSE.Views.LeftMenu.tipFile": "Файл", "SSE.Views.LeftMenu.tipPlugins": "Плагіни", "SSE.Views.LeftMenu.tipSearch": "Пошук", + "SSE.Views.LeftMenu.tipSpellcheck": "Перевірка орфографії", "SSE.Views.LeftMenu.tipSupport": "Відгуки і підтримка", "SSE.Views.LeftMenu.txtDeveloper": "Режим розробника", "SSE.Views.LeftMenu.txtLimit": "Обмежений доступ", + "SSE.Views.LeftMenu.txtTrial": "ПРОБНИЙ РЕЖИМ", + "SSE.Views.LeftMenu.txtTrialDev": "Пробний режим розробника", "SSE.Views.MacroDialog.textMacro": "Ім'я макроса", "SSE.Views.MacroDialog.textTitle": "Призначити макрос", "SSE.Views.MainSettingsPrint.okButtonText": "Зберегти", @@ -1982,6 +2476,7 @@ "SSE.Views.MainSettingsPrint.strMargins": "Поля", "SSE.Views.MainSettingsPrint.strPortrait": "Портрет", "SSE.Views.MainSettingsPrint.strPrint": "Роздрукувати", + "SSE.Views.MainSettingsPrint.strPrintTitles": "Друкувати заголовки", "SSE.Views.MainSettingsPrint.strRight": "Право", "SSE.Views.MainSettingsPrint.strTop": "Верх", "SSE.Views.MainSettingsPrint.textActualSize": "Реальний розмір", @@ -1995,6 +2490,9 @@ "SSE.Views.MainSettingsPrint.textPageSize": "Розмір сторінки", "SSE.Views.MainSettingsPrint.textPrintGrid": "Друк мережних ліній", "SSE.Views.MainSettingsPrint.textPrintHeadings": "Друк рядків і колонок заголовків", + "SSE.Views.MainSettingsPrint.textRepeat": "Повторювати...", + "SSE.Views.MainSettingsPrint.textRepeatLeft": "Повторювати стовпчики зліва", + "SSE.Views.MainSettingsPrint.textRepeatTop": "Повторювати рядки зверху", "SSE.Views.MainSettingsPrint.textSettings": "Налаштування для", "SSE.Views.NamedRangeEditDlg.errorCreateDefName": "Існуючі названі діапазони не можна редагувати, а нові не можна створити на даний момент, оскільки деякі з них редагуються.", "SSE.Views.NamedRangeEditDlg.namePlaceholder": "Визначене ім'я", @@ -2037,7 +2535,9 @@ "SSE.Views.NameManagerDlg.warnDelete": "Ви дійсно хочете видалити ім'я {0}?", "SSE.Views.PageMarginsDialog.textBottom": "Нижнє", "SSE.Views.PageMarginsDialog.textLeft": "Лівий", + "SSE.Views.PageMarginsDialog.textRight": "Праве", "SSE.Views.PageMarginsDialog.textTitle": "Поля", + "SSE.Views.PageMarginsDialog.textTop": "Верхнє", "SSE.Views.ParagraphSettings.strLineHeight": "Лінія інтервалу", "SSE.Views.ParagraphSettings.strParagraphSpacing": "Параметр інтервалу", "SSE.Views.ParagraphSettings.strSpacingAfter": "після", @@ -2057,10 +2557,12 @@ "SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Право", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Після", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Перед", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Перший рядок", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecialBy": "На", "SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Шрифт", - "SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Відступи та розміщення", + "SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Відступи та інтервали", "SSE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Зменшені великі", + "SSE.Views.ParagraphSettingsAdvanced.strSpacing": "Інтервал між абзацами", "SSE.Views.ParagraphSettingsAdvanced.strStrike": "Перекреслення", "SSE.Views.ParagraphSettingsAdvanced.strSubscript": "Підрядковий", "SSE.Views.ParagraphSettingsAdvanced.strSuperscript": "Надрядковий", @@ -2098,19 +2600,34 @@ "SSE.Views.PivotDigitalFilterDialog.capCondition7": "починається з", "SSE.Views.PivotDigitalFilterDialog.capCondition8": "не починається з", "SSE.Views.PivotDigitalFilterDialog.capCondition9": "закінчується на ", + "SSE.Views.PivotDigitalFilterDialog.textShowLabel": "Показувати елементи, які мають підпис:", + "SSE.Views.PivotDigitalFilterDialog.textShowValue": "Показувати елементи, у яких:", + "SSE.Views.PivotDigitalFilterDialog.textUse1": "Використовуйте знак ? замість будь-якого окремого символу", + "SSE.Views.PivotDigitalFilterDialog.textUse2": "Використовуйте * замість будь-якої послідовності символів", "SSE.Views.PivotDigitalFilterDialog.txtAnd": "і", "SSE.Views.PivotDigitalFilterDialog.txtTitleLabel": "Фільтр підписів", + "SSE.Views.PivotDigitalFilterDialog.txtTitleValue": "Фільтр значень", "SSE.Views.PivotGroupDialog.textAuto": "Авто", "SSE.Views.PivotGroupDialog.textBy": "По", "SSE.Views.PivotGroupDialog.textDays": "Дні", "SSE.Views.PivotGroupDialog.textEnd": "Закінчується в", + "SSE.Views.PivotGroupDialog.textError": "Це поле має містити числове значення", + "SSE.Views.PivotGroupDialog.textGreaterError": "Кінцеве число має бути більшим за початкове.", "SSE.Views.PivotGroupDialog.textHour": "Години", "SSE.Views.PivotGroupDialog.textMin": "Хвилини", "SSE.Views.PivotGroupDialog.textMonth": "Місяці", "SSE.Views.PivotGroupDialog.textNumDays": "Кількість днів", + "SSE.Views.PivotGroupDialog.textQuart": "Квартали", + "SSE.Views.PivotGroupDialog.textSec": "Секунди", + "SSE.Views.PivotGroupDialog.textStart": "Починаючи з:", + "SSE.Views.PivotGroupDialog.textYear": "Роки", "SSE.Views.PivotGroupDialog.txtTitle": "Групування", + "SSE.Views.PivotSettings.textAdvanced": "Додаткові параметри", "SSE.Views.PivotSettings.textColumns": "Стовпчики", + "SSE.Views.PivotSettings.textFields": "Вибрати поля", "SSE.Views.PivotSettings.textFilters": "Фільтри", + "SSE.Views.PivotSettings.textRows": "Рядки", + "SSE.Views.PivotSettings.textValues": "Значення", "SSE.Views.PivotSettings.txtAddColumn": "Додати до стовпчиків", "SSE.Views.PivotSettings.txtAddFilter": "Додати до фільтрів", "SSE.Views.PivotSettings.txtAddRow": "Додати до рядків", @@ -2124,9 +2641,12 @@ "SSE.Views.PivotSettings.txtMoveRow": "Перемістити до рядків", "SSE.Views.PivotSettings.txtMoveUp": "Перенести вверх", "SSE.Views.PivotSettings.txtMoveValues": "Перемістити до значення", + "SSE.Views.PivotSettings.txtRemove": "Видалити поле", "SSE.Views.PivotSettingsAdvanced.strLayout": "Назва та макет", "SSE.Views.PivotSettingsAdvanced.textAlt": "Альтернативний текст", "SSE.Views.PivotSettingsAdvanced.textAltDescription": "Опис", + "SSE.Views.PivotSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація знаходиться в зображенні, автошопі, діаграмі або таблиці.", + "SSE.Views.PivotSettingsAdvanced.textAltTitle": "Заголовок", "SSE.Views.PivotSettingsAdvanced.textDataRange": "Діапазон даних", "SSE.Views.PivotSettingsAdvanced.textDataSource": "Джерело даних", "SSE.Views.PivotSettingsAdvanced.textDisplayFields": "Показувати поля в області фільтра звіту", @@ -2134,21 +2654,48 @@ "SSE.Views.PivotSettingsAdvanced.textGrandTotals": "Загальні підсумки", "SSE.Views.PivotSettingsAdvanced.textHeaders": "Заголовки полів", "SSE.Views.PivotSettingsAdvanced.textInvalidRange": "ПОМИЛКА! Неприпустимий діапазон клітинок", + "SSE.Views.PivotSettingsAdvanced.textOver": "Праворуч, потім вниз", + "SSE.Views.PivotSettingsAdvanced.textSelectData": "Вибір даних", + "SSE.Views.PivotSettingsAdvanced.textShowCols": "Показувати для стовпчиків", + "SSE.Views.PivotSettingsAdvanced.textShowHeaders": "Показувати заголовки полів для рядків та стовпчиків", + "SSE.Views.PivotSettingsAdvanced.textShowRows": "Показувати для рядків", + "SSE.Views.PivotSettingsAdvanced.textTitle": "Зведена таблиця — додаткові параметри", + "SSE.Views.PivotSettingsAdvanced.textWrapCol": "Число полів фільтра звіту для стовпчиків", + "SSE.Views.PivotSettingsAdvanced.textWrapRow": "Число полів фільтра звіту для рядку", + "SSE.Views.PivotSettingsAdvanced.txtEmpty": "Це поле є обов'язковим", "SSE.Views.PivotSettingsAdvanced.txtName": "Назва", "SSE.Views.PivotTable.capBlankRows": "Пусті рядки", "SSE.Views.PivotTable.capGrandTotals": "Загальні підсумки", + "SSE.Views.PivotTable.capLayout": "Макет звіту", + "SSE.Views.PivotTable.capSubtotals": "Проміжні підсумки", + "SSE.Views.PivotTable.mniBottomSubtotals": "Показувати усі проміжні підсумки у нижній частині групи", "SSE.Views.PivotTable.mniInsertBlankLine": "Вставляти пустий рядок після кожного елемента", + "SSE.Views.PivotTable.mniLayoutCompact": "Показати у стислій формі", "SSE.Views.PivotTable.mniLayoutNoRepeat": "Не повторювати всі мітки елементів", + "SSE.Views.PivotTable.mniLayoutOutline": "Показати у формі структури", + "SSE.Views.PivotTable.mniLayoutRepeat": "Повторювати всі мітки елементів", + "SSE.Views.PivotTable.mniLayoutTabular": "Показати у табличній формі", "SSE.Views.PivotTable.mniNoSubtotals": "Не показувати проміжні підсумки", "SSE.Views.PivotTable.mniOffTotals": "Відключити для рядків і стовпчиків", "SSE.Views.PivotTable.mniOnColumnsTotals": "Увімкнути тільки для стовпчиків", "SSE.Views.PivotTable.mniOnRowsTotals": "Увімкнути тільки для рядків", "SSE.Views.PivotTable.mniOnTotals": "Увімкнути тільки для рядків і стовпчиків", + "SSE.Views.PivotTable.mniRemoveBlankLine": "Видалити порожній рядок після кожного елемента", + "SSE.Views.PivotTable.mniTopSubtotals": "Показувати усі проміжні підсумки у верхній частині групи", "SSE.Views.PivotTable.textColBanded": "Чергувати стовпчики", "SSE.Views.PivotTable.textColHeader": "Заголовки стовпців", "SSE.Views.PivotTable.textRowBanded": "Чергувати рядки", + "SSE.Views.PivotTable.textRowHeader": "Заголовки рядків", "SSE.Views.PivotTable.tipCreatePivot": "Вставити зведену таблицю", + "SSE.Views.PivotTable.tipGrandTotals": "Показати або приховати загальні підсумки", + "SSE.Views.PivotTable.tipRefresh": "Оновити інформацію з джерела даних", + "SSE.Views.PivotTable.tipSelect": "Виділити всю зведену таблицю", + "SSE.Views.PivotTable.tipSubtotals": "Показати або приховати проміжні підсумки", "SSE.Views.PivotTable.txtCreate": "Вставити таблицю", + "SSE.Views.PivotTable.txtPivotTable": "Зведена таблиця", + "SSE.Views.PivotTable.txtRefresh": "Оновити", + "SSE.Views.PivotTable.txtSelect": "Виділити", + "SSE.Views.PrintSettings.btnDownload": "Зберегти та завантажити", "SSE.Views.PrintSettings.btnPrint": "Зберегти і роздрукувати", "SSE.Views.PrintSettings.strBottom": "Внизу", "SSE.Views.PrintSettings.strLandscape": "ландшафт", @@ -2156,7 +2703,9 @@ "SSE.Views.PrintSettings.strMargins": "Поля", "SSE.Views.PrintSettings.strPortrait": "Портрет", "SSE.Views.PrintSettings.strPrint": "Роздрукувати", + "SSE.Views.PrintSettings.strPrintTitles": "Друкувати заголовки", "SSE.Views.PrintSettings.strRight": "Право", + "SSE.Views.PrintSettings.strShow": "Показати", "SSE.Views.PrintSettings.strTop": "Верх", "SSE.Views.PrintSettings.textActualSize": "Реальний розмір", "SSE.Views.PrintSettings.textAllSheets": "Всі аркуші", @@ -2175,35 +2724,74 @@ "SSE.Views.PrintSettings.textPrintGrid": "Друк мережних ліній", "SSE.Views.PrintSettings.textPrintHeadings": "Друк рядків і колонок заголовків", "SSE.Views.PrintSettings.textPrintRange": "Роздрукувати діапазон", + "SSE.Views.PrintSettings.textRange": "Діапазон", + "SSE.Views.PrintSettings.textRepeat": "Повторювати...", + "SSE.Views.PrintSettings.textRepeatLeft": "Повторювати стовпчики зліва", + "SSE.Views.PrintSettings.textRepeatTop": "Повторювати рядки зверху", "SSE.Views.PrintSettings.textSelection": "Відбір", "SSE.Views.PrintSettings.textSettings": "Налаштування листа", "SSE.Views.PrintSettings.textShowDetails": "Показати деталі", + "SSE.Views.PrintSettings.textShowGrid": "Показати лінії сітки", + "SSE.Views.PrintSettings.textShowHeadings": "Показати заголовки рядків та стовпчиків", "SSE.Views.PrintSettings.textTitle": "Налаштування друку", + "SSE.Views.PrintSettings.textTitlePDF": "Параметри PDF", "SSE.Views.PrintTitlesDialog.textFirstCol": "Перший стовпчик", "SSE.Views.PrintTitlesDialog.textFirstRow": "Перший рядок", "SSE.Views.PrintTitlesDialog.textFrozenCols": "Закріплені стовпчики", "SSE.Views.PrintTitlesDialog.textFrozenRows": "Закріплені рядки", "SSE.Views.PrintTitlesDialog.textInvalidRange": "ПОМИЛКА! Неприпустимий діапазон клітинок", + "SSE.Views.PrintTitlesDialog.textLeft": "Повторювати стовпчики зліва", "SSE.Views.PrintTitlesDialog.textNoRepeat": "Не повторювати", + "SSE.Views.PrintTitlesDialog.textRepeat": "Повторювати...", + "SSE.Views.PrintTitlesDialog.textSelectRange": "Вибір діапазону", + "SSE.Views.PrintTitlesDialog.textTitle": "Друкувати заголовки", + "SSE.Views.PrintTitlesDialog.textTop": "Повторювати рядки зверху", "SSE.Views.PrintWithPreview.txtActualSize": "Реальний розмір", "SSE.Views.PrintWithPreview.txtAllSheets": "Всі аркуші", "SSE.Views.PrintWithPreview.txtApplyToAllSheets": "Застосувати до всіх листів", + "SSE.Views.PrintWithPreview.txtBottom": "Нижнє", "SSE.Views.PrintWithPreview.txtCurrentSheet": "Поточний лист", + "SSE.Views.PrintWithPreview.txtCustom": "Особливий", "SSE.Views.PrintWithPreview.txtCustomOptions": "Параметри, що налаштовуються", "SSE.Views.PrintWithPreview.txtFitCols": "Вписати всі стовпчики на одну сторінку", "SSE.Views.PrintWithPreview.txtFitPage": "Вписати всі листи на одну сторінку", "SSE.Views.PrintWithPreview.txtFitRows": "Вписати всі рядки на одну сторінку", + "SSE.Views.PrintWithPreview.txtGridlinesAndHeadings": "Лінії сітки та заголовки", "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Параметри верхнього та нижнього колонтитулів", "SSE.Views.PrintWithPreview.txtIgnore": "Ігнорувати область друку", "SSE.Views.PrintWithPreview.txtLandscape": "Альбомна", "SSE.Views.PrintWithPreview.txtLeft": "Ліворуч", "SSE.Views.PrintWithPreview.txtMargins": "Поля", "SSE.Views.PrintWithPreview.txtOf": "з {0}", + "SSE.Views.PrintWithPreview.txtPage": "Сторінка", + "SSE.Views.PrintWithPreview.txtPageNumInvalid": "Номер сторінки недійсний", + "SSE.Views.PrintWithPreview.txtPageOrientation": "Орієнтація сторінки", + "SSE.Views.PrintWithPreview.txtPageSize": "Розмір сторінки", + "SSE.Views.PrintWithPreview.txtPortrait": "Книжна", + "SSE.Views.PrintWithPreview.txtPrint": "Друк", + "SSE.Views.PrintWithPreview.txtPrintGrid": "Друк сітки", + "SSE.Views.PrintWithPreview.txtPrintHeadings": "Друк рядків і стовпчиків заголовків", + "SSE.Views.PrintWithPreview.txtPrintRange": "Діапазон друку", + "SSE.Views.PrintWithPreview.txtPrintTitles": "Друкувати заголовки", + "SSE.Views.PrintWithPreview.txtRepeat": "Повторювати...", + "SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft": "Повторювати стовпчики зліва", + "SSE.Views.PrintWithPreview.txtRepeatRowsAtTop": "Повторювати рядки зверху", + "SSE.Views.PrintWithPreview.txtRight": "Праве", + "SSE.Views.PrintWithPreview.txtSave": "Зберегти", + "SSE.Views.PrintWithPreview.txtScaling": "Масштаб", + "SSE.Views.PrintWithPreview.txtSelection": "Виділений фрагмент", + "SSE.Views.PrintWithPreview.txtSettingsOfSheet": "Параметри листа", + "SSE.Views.PrintWithPreview.txtSheet": "Лист: {0}", + "SSE.Views.PrintWithPreview.txtTop": "Верхнє", "SSE.Views.ProtectDialog.textExistName": "ПОМИЛКА! Діапазон із такою назвою вже існує", + "SSE.Views.ProtectDialog.textInvalidName": "Назва діапазону повинна починатися з літери та може містити лише літери, цифри та пробіли.", "SSE.Views.ProtectDialog.textInvalidRange": "ПОМИЛКА! Неприпустимий діапазон клітинок", + "SSE.Views.ProtectDialog.textSelectData": "Вибір даних", "SSE.Views.ProtectDialog.txtAllow": "Дозволити всім користувачам цього аркуша", + "SSE.Views.ProtectDialog.txtAutofilter": "Використовувати автофільтр", "SSE.Views.ProtectDialog.txtDelCols": "Видалити стовпчики", "SSE.Views.ProtectDialog.txtDelRows": "Видалити рядки", + "SSE.Views.ProtectDialog.txtEmpty": "Це поле необхідно заповнити", "SSE.Views.ProtectDialog.txtFormatCells": "Форматування клітинки", "SSE.Views.ProtectDialog.txtFormatCols": "Форматування стовпчиків", "SSE.Views.ProtectDialog.txtFormatRows": "Форматування рядків", @@ -2213,34 +2801,66 @@ "SSE.Views.ProtectDialog.txtInsRows": "Вставляти рядки", "SSE.Views.ProtectDialog.txtObjs": "Редагувати об'єкти", "SSE.Views.ProtectDialog.txtOptional": "необов'язково", + "SSE.Views.ProtectDialog.txtPassword": "Пароль", + "SSE.Views.ProtectDialog.txtPivot": "Використовувати зведену таблицю та зведену діаграму", + "SSE.Views.ProtectDialog.txtProtect": "Захистити", + "SSE.Views.ProtectDialog.txtRange": "Діапазон", + "SSE.Views.ProtectDialog.txtRangeName": "Назва", + "SSE.Views.ProtectDialog.txtRepeat": "Повторити пароль", "SSE.Views.ProtectDialog.txtScen": "Редагувати сценарії", + "SSE.Views.ProtectDialog.txtSelLocked": "Виділяти заблоковані клітинки", + "SSE.Views.ProtectDialog.txtSelUnLocked": "Виділяти розблоковані клітинки", "SSE.Views.ProtectDialog.txtSheetDescription": "Забороніть внесення небажаних змін іншими користувачами шляхом обмеження їхнього права на редагування.", + "SSE.Views.ProtectDialog.txtSheetTitle": "Захистити лист", + "SSE.Views.ProtectDialog.txtSort": "Сортувати", + "SSE.Views.ProtectDialog.txtWarning": "Увага: Якщо пароль забуто або втрачено, його не можна відновити. Зберігайте його у надійному місці.", + "SSE.Views.ProtectDialog.txtWBDescription": "Щоб заборонити іншим користувачам перегляд прихованих листів, додавання, переміщення, видалення або приховування листів та перейменування листів, ви можете захистити структуру книги за допомогою пароля.", + "SSE.Views.ProtectDialog.txtWBTitle": "Захистити структуру книги", "SSE.Views.ProtectRangesDlg.guestText": "Гість", "SSE.Views.ProtectRangesDlg.lockText": "Заблокований", "SSE.Views.ProtectRangesDlg.textDelete": "Видалити", "SSE.Views.ProtectRangesDlg.textEdit": "Редагувати", "SSE.Views.ProtectRangesDlg.textEmpty": "Немає діапазонів, дозволених для редагування.", "SSE.Views.ProtectRangesDlg.textNew": "Новий", + "SSE.Views.ProtectRangesDlg.textProtect": "Захистити лист", + "SSE.Views.ProtectRangesDlg.textPwd": "Пароль", + "SSE.Views.ProtectRangesDlg.textRange": "Діапазон", + "SSE.Views.ProtectRangesDlg.textRangesDesc": "Діапазони захищеного листа, що розблоковуються паролем (тільки для заблокованих клітинок)", + "SSE.Views.ProtectRangesDlg.textTitle": "Назва", + "SSE.Views.ProtectRangesDlg.tipIsLocked": "Цей елемент редагує інший користувач.", "SSE.Views.ProtectRangesDlg.txtEditRange": "Редагувати діапазон", "SSE.Views.ProtectRangesDlg.txtNewRange": "Новий діапазон", "SSE.Views.ProtectRangesDlg.txtNo": "Ні", "SSE.Views.ProtectRangesDlg.txtTitle": "Дозволити користувачам редагувати діапазони", + "SSE.Views.ProtectRangesDlg.txtYes": "Так", "SSE.Views.ProtectRangesDlg.warnDelete": "Ви дійсно хочете видалити ім'я {0}?", "SSE.Views.RemoveDuplicatesDialog.textColumns": "Стовпчики", + "SSE.Views.RemoveDuplicatesDialog.textDescription": "Щоб видалити значення, що повторюються, виділіть один або кілька стовпчиків, що містять їх.", "SSE.Views.RemoveDuplicatesDialog.textHeaders": "Мої дані містять заголовки", + "SSE.Views.RemoveDuplicatesDialog.textSelectAll": "Вибрати все", + "SSE.Views.RemoveDuplicatesDialog.txtTitle": "Видалити дублікати", "SSE.Views.RightMenu.txtCellSettings": "Налаштування комірки", "SSE.Views.RightMenu.txtChartSettings": "Налаштування діаграми", "SSE.Views.RightMenu.txtImageSettings": "Налаштування зображення", - "SSE.Views.RightMenu.txtParagraphSettings": "Налаштування тексту", + "SSE.Views.RightMenu.txtParagraphSettings": "Параметри абзацу", "SSE.Views.RightMenu.txtPivotSettings": "Налаштування зведеної таблиці", "SSE.Views.RightMenu.txtSettings": "Загальні налаштування", "SSE.Views.RightMenu.txtShapeSettings": "Параметри форми", + "SSE.Views.RightMenu.txtSignatureSettings": "Налаштування підпису", + "SSE.Views.RightMenu.txtSlicerSettings": "Параметри зрізу", "SSE.Views.RightMenu.txtSparklineSettings": "Налаштування міні-діаграм", "SSE.Views.RightMenu.txtTableSettings": "Налаштування таблиці", "SSE.Views.RightMenu.txtTextArtSettings": "Налаштування текст Art", "SSE.Views.ScaleDialog.textAuto": "Авто", + "SSE.Views.ScaleDialog.textError": "Введено неправильне значення.", + "SSE.Views.ScaleDialog.textFewPages": "сторінки", "SSE.Views.ScaleDialog.textFitTo": "Розмістити не більш ніж на", "SSE.Views.ScaleDialog.textHeight": "Висота", + "SSE.Views.ScaleDialog.textManyPages": "сторінки", + "SSE.Views.ScaleDialog.textOnePage": "сторінка", + "SSE.Views.ScaleDialog.textScaleTo": "Встановити", + "SSE.Views.ScaleDialog.textTitle": "Налаштування масштабу", + "SSE.Views.ScaleDialog.textWidth": "Ширина", "SSE.Views.SetValueDialog.txtMaxText": "Максимальне значення для цього поля: {0}", "SSE.Views.SetValueDialog.txtMinText": "Мінімальне значення для цього поля: {0}", "SSE.Views.ShapeSettings.strBackground": "Колір фону", @@ -2249,8 +2869,9 @@ "SSE.Views.ShapeSettings.strFill": "Заповнити", "SSE.Views.ShapeSettings.strForeground": "Колір переднього плану", "SSE.Views.ShapeSettings.strPattern": "Візерунок", + "SSE.Views.ShapeSettings.strShadow": "Зображати тінь", "SSE.Views.ShapeSettings.strSize": "Розмір", - "SSE.Views.ShapeSettings.strStroke": "Штрих", + "SSE.Views.ShapeSettings.strStroke": "Контур", "SSE.Views.ShapeSettings.strTransparency": "Непрозорість", "SSE.Views.ShapeSettings.strType": "Тип", "SSE.Views.ShapeSettings.textAdvanced": "Показати додаткові налаштування", @@ -2263,8 +2884,10 @@ "SSE.Views.ShapeSettings.textFromFile": "З файлу", "SSE.Views.ShapeSettings.textFromStorage": "Зі сховища", "SSE.Views.ShapeSettings.textFromUrl": "З URL", - "SSE.Views.ShapeSettings.textGradient": "Градієнт", + "SSE.Views.ShapeSettings.textGradient": "Градієнти", "SSE.Views.ShapeSettings.textGradientFill": "Заповнити градієнт", + "SSE.Views.ShapeSettings.textHint270": "Повернути на 90° проти годинникової стрілки", + "SSE.Views.ShapeSettings.textHint90": "Повернути на 90° за годинниковою стрілкою", "SSE.Views.ShapeSettings.textHintFlipH": "Перевернути зліва направо", "SSE.Views.ShapeSettings.textHintFlipV": "Перевернути зверху вниз", "SSE.Views.ShapeSettings.textImageTexture": "Зображення або текстура", @@ -2272,14 +2895,19 @@ "SSE.Views.ShapeSettings.textNoFill": "Немає заповнення", "SSE.Views.ShapeSettings.textOriginalSize": "Оригінальнйи розмір", "SSE.Views.ShapeSettings.textPatternFill": "Візерунок", + "SSE.Views.ShapeSettings.textPosition": "Положення", "SSE.Views.ShapeSettings.textRadial": "Радіальний", + "SSE.Views.ShapeSettings.textRecentlyUsed": "Останні використані", + "SSE.Views.ShapeSettings.textRotate90": "Повернути на 90°", "SSE.Views.ShapeSettings.textRotation": "Поворот", + "SSE.Views.ShapeSettings.textSelectImage": "Вибрати зображення", "SSE.Views.ShapeSettings.textSelectTexture": "Обрати", "SSE.Views.ShapeSettings.textStretch": "Розтягнути", "SSE.Views.ShapeSettings.textStyle": "Стиль", "SSE.Views.ShapeSettings.textTexture": "З текстури", "SSE.Views.ShapeSettings.textTile": "Забеспечити таємність", "SSE.Views.ShapeSettings.tipAddGradientPoint": "Додати точку градієнта", + "SSE.Views.ShapeSettings.tipRemoveGradientPoint": "Видалити точку градієнта", "SSE.Views.ShapeSettings.txtBrownPaper": "Коричневий папір", "SSE.Views.ShapeSettings.txtCanvas": "Полотно", "SSE.Views.ShapeSettings.txtCarton": "Картинка", @@ -2297,7 +2925,7 @@ "SSE.Views.ShapeSettingsAdvanced.textAbsolute": "Не переміщувати та не змінювати розміри разом з клітинками", "SSE.Views.ShapeSettingsAdvanced.textAlt": "Альтернативний текст", "SSE.Views.ShapeSettingsAdvanced.textAltDescription": "Опис", - "SSE.Views.ShapeSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація знаходиться в зображенні, автошопі, діаграмі або таблиці.", + "SSE.Views.ShapeSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація міститься в зображенні, автофігурі, діаграмі або таблиці.", "SSE.Views.ShapeSettingsAdvanced.textAltTitle": "Назва", "SSE.Views.ShapeSettingsAdvanced.textAngle": "Нахил", "SSE.Views.ShapeSettingsAdvanced.textArrows": "Стрілки", @@ -2321,6 +2949,7 @@ "SSE.Views.ShapeSettingsAdvanced.textMiter": "Мітер", "SSE.Views.ShapeSettingsAdvanced.textOneCell": "Переміщати, але не змінювати розміри разом з клітинками", "SSE.Views.ShapeSettingsAdvanced.textOverflow": "Дозволити переповнення фігури текстом", + "SSE.Views.ShapeSettingsAdvanced.textResizeFit": "Вмістити текст у фігурі", "SSE.Views.ShapeSettingsAdvanced.textRight": "Право", "SSE.Views.ShapeSettingsAdvanced.textRotation": "Поворот", "SSE.Views.ShapeSettingsAdvanced.textRound": "Круглий", @@ -2328,18 +2957,37 @@ "SSE.Views.ShapeSettingsAdvanced.textSnap": "Прив'язка до клітинки", "SSE.Views.ShapeSettingsAdvanced.textSpacing": "Розміщення між стовпцями", "SSE.Views.ShapeSettingsAdvanced.textSquare": "Площа", + "SSE.Views.ShapeSettingsAdvanced.textTextBox": "Текстове поле", "SSE.Views.ShapeSettingsAdvanced.textTitle": "Форма - розширені налаштування", "SSE.Views.ShapeSettingsAdvanced.textTop": "Верх", "SSE.Views.ShapeSettingsAdvanced.textTwoCell": "Переміщувати та змінювати розміри разом з клітинками", + "SSE.Views.ShapeSettingsAdvanced.textVertically": "По вертикалі", "SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "Ваги та стрілки", "SSE.Views.ShapeSettingsAdvanced.textWidth": "Ширина", + "SSE.Views.SignatureSettings.notcriticalErrorTitle": "Увага", + "SSE.Views.SignatureSettings.strDelete": "Вилучити підпис", + "SSE.Views.SignatureSettings.strDetails": "Склад підпису", "SSE.Views.SignatureSettings.strInvalid": "Недійсні підписи", + "SSE.Views.SignatureSettings.strRequested": "Запрошені підписи", + "SSE.Views.SignatureSettings.strSetup": "Налаштування підпису", + "SSE.Views.SignatureSettings.strSign": "Підписати", + "SSE.Views.SignatureSettings.strSignature": "Підпис", + "SSE.Views.SignatureSettings.strSigner": "Підписант", + "SSE.Views.SignatureSettings.strValid": "Дійсні підписи", "SSE.Views.SignatureSettings.txtContinueEditing": "Все одно редагувати", "SSE.Views.SignatureSettings.txtEditWarning": "Під час редагування з електронної таблиці буде видалено підписи.
Продовжити?", "SSE.Views.SignatureSettings.txtRemoveWarning": "Ви хочете видалити цей підпис?
Цю дію не можна скасувати.", + "SSE.Views.SignatureSettings.txtRequestedSignatures": "Цю таблицю потрібно підписати.", + "SSE.Views.SignatureSettings.txtSigned": "До електронної таблиці додано дійсні підписи. Таблиця захищена від редагування.", + "SSE.Views.SignatureSettings.txtSignedInvalid": "Деякі цифрові підписи в електронній таблиці є недійсними або їх не можна перевірити. Таблиця захищена від редагування.", "SSE.Views.SlicerAddDialog.textColumns": "Стовпчики", "SSE.Views.SlicerAddDialog.txtTitle": "Вставка зрізів", "SSE.Views.SlicerSettings.strHideNoData": "Сховати елементи без даних", + "SSE.Views.SlicerSettings.strIndNoData": "Візуально виділяти порожні елементи", + "SSE.Views.SlicerSettings.strShowDel": "Показувати елементи, видалені з джерела даних", + "SSE.Views.SlicerSettings.strShowNoData": "Показувати порожні елементи останніми", + "SSE.Views.SlicerSettings.strSorting": "Сортування та фільтрація", + "SSE.Views.SlicerSettings.textAdvanced": "Додаткові параметри", "SSE.Views.SlicerSettings.textAsc": "За зростанням", "SSE.Views.SlicerSettings.textAZ": "Від А до Я", "SSE.Views.SlicerSettings.textButtons": "Кнопки", @@ -2352,14 +3000,32 @@ "SSE.Views.SlicerSettings.textLock": "Вимкнути зміну розміру або переміщення", "SSE.Views.SlicerSettings.textNewOld": "від нових до старих", "SSE.Views.SlicerSettings.textOldNew": "від старих до нових", + "SSE.Views.SlicerSettings.textPosition": "Положення", + "SSE.Views.SlicerSettings.textSize": "Розмір", + "SSE.Views.SlicerSettings.textSmallLarge": "від меншого до більшого", + "SSE.Views.SlicerSettings.textStyle": "Стиль", + "SSE.Views.SlicerSettings.textVert": "По вертикалі", + "SSE.Views.SlicerSettings.textWidth": "Ширина", + "SSE.Views.SlicerSettings.textZA": "Від Я до А", "SSE.Views.SlicerSettingsAdvanced.strButtons": "Кнопки", "SSE.Views.SlicerSettingsAdvanced.strColumns": "Стовпчики", "SSE.Views.SlicerSettingsAdvanced.strHeight": "Висота", "SSE.Views.SlicerSettingsAdvanced.strHideNoData": "Сховати елементи без даних", + "SSE.Views.SlicerSettingsAdvanced.strIndNoData": "Візуально виділяти порожні елементи", + "SSE.Views.SlicerSettingsAdvanced.strReferences": "Посилання", + "SSE.Views.SlicerSettingsAdvanced.strShowDel": "Показувати елементи, видалені з джерела даних", "SSE.Views.SlicerSettingsAdvanced.strShowHeader": "Показувати заголовок", + "SSE.Views.SlicerSettingsAdvanced.strShowNoData": "Показувати порожні елементи останніми", + "SSE.Views.SlicerSettingsAdvanced.strSize": "Розмір", + "SSE.Views.SlicerSettingsAdvanced.strSorting": "Сортування та фільтрація", + "SSE.Views.SlicerSettingsAdvanced.strStyle": "Стиль", + "SSE.Views.SlicerSettingsAdvanced.strStyleSize": "Стиль та розмір", + "SSE.Views.SlicerSettingsAdvanced.strWidth": "Ширина", "SSE.Views.SlicerSettingsAdvanced.textAbsolute": "Не переміщувати та не змінювати розміри разом з клітинками", "SSE.Views.SlicerSettingsAdvanced.textAlt": "Альтернативний текст", "SSE.Views.SlicerSettingsAdvanced.textAltDescription": "Опис", + "SSE.Views.SlicerSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація знаходиться в зображенні, автошопі, діаграмі або таблиці.", + "SSE.Views.SlicerSettingsAdvanced.textAltTitle": "Назва", "SSE.Views.SlicerSettingsAdvanced.textAsc": "За зростанням", "SSE.Views.SlicerSettingsAdvanced.textAZ": "Від А до Я", "SSE.Views.SlicerSettingsAdvanced.textDesc": "По спаданню", @@ -2371,11 +3037,19 @@ "SSE.Views.SlicerSettingsAdvanced.textNewOld": "від нових до старих", "SSE.Views.SlicerSettingsAdvanced.textOldNew": "від старих до нових", "SSE.Views.SlicerSettingsAdvanced.textOneCell": "Переміщати, але не змінювати розміри разом з клітинками", + "SSE.Views.SlicerSettingsAdvanced.textSmallLarge": "від меншого до більшого", "SSE.Views.SlicerSettingsAdvanced.textSnap": "Прив'язка до клітинки", + "SSE.Views.SlicerSettingsAdvanced.textSort": "Сортувати", + "SSE.Views.SlicerSettingsAdvanced.textSourceName": "Ім'я джерела", + "SSE.Views.SlicerSettingsAdvanced.textTitle": "Зріз – додаткові параметри", "SSE.Views.SlicerSettingsAdvanced.textTwoCell": "Переміщувати та змінювати розміри разом з клітинками", + "SSE.Views.SlicerSettingsAdvanced.textZA": "Від Я до А", + "SSE.Views.SlicerSettingsAdvanced.txtEmpty": "Це поле є обов'язковим", "SSE.Views.SortDialog.errorEmpty": "Для кожної умови сортування має бути зазначений стовпчик або рядок.", "SSE.Views.SortDialog.errorMoreOneCol": "Виділено кілька стовпчиків.", "SSE.Views.SortDialog.errorMoreOneRow": "Виділено кілька рядків.", + "SSE.Views.SortDialog.errorNotOriginalCol": "Вибраний стовпчик не належить до виділеного діапазону.", + "SSE.Views.SortDialog.errorNotOriginalRow": "Вибраний рядок не належить до початкового виділеного діапазону.", "SSE.Views.SortDialog.errorSameColumnColor": "Сортування рядка або стовпця %1 за одним і тим же кольором виконується більше одного разу.
Видаліть повторні умови сортування та повторіть спробу.", "SSE.Views.SortDialog.errorSameColumnValue": "Сортування рядка або стовпця %1 за значеннями виконується більше одного разу.
Видаліть повторні умови сортування та повторіть спробу.", "SSE.Views.SortDialog.textAdd": "Додати рівень", @@ -2396,15 +3070,29 @@ "SSE.Views.SortDialog.textNone": "Немає", "SSE.Views.SortDialog.textOptions": "Параметри", "SSE.Views.SortDialog.textOrder": "Порядок", + "SSE.Views.SortDialog.textRight": "Праворуч", + "SSE.Views.SortDialog.textRow": "Рядок", + "SSE.Views.SortDialog.textSort": "Сортування", + "SSE.Views.SortDialog.textSortBy": "Сортування по", + "SSE.Views.SortDialog.textThenBy": "Потім по", + "SSE.Views.SortDialog.textTop": "Зверху", "SSE.Views.SortDialog.textUp": "Перемістити рівень вверх", + "SSE.Views.SortDialog.textValues": "Значення", + "SSE.Views.SortDialog.textZA": "Від Я до А", "SSE.Views.SortDialog.txtInvalidRange": "Недійсний діапазон комірок.", + "SSE.Views.SortDialog.txtTitle": "Сортування", "SSE.Views.SortFilterDialog.textAsc": "За зростанням (від А до Я)", "SSE.Views.SortFilterDialog.textDesc": "За спаданням (від Я до А)", + "SSE.Views.SortFilterDialog.txtTitle": "Сортувати", "SSE.Views.SortOptionsDialog.textCase": "З урахуванням регістру", "SSE.Views.SortOptionsDialog.textHeaders": "Мої дані містять заголовки", + "SSE.Views.SortOptionsDialog.textLeftRight": "Сортувати зліва направо", "SSE.Views.SortOptionsDialog.textOrientation": "Орієнтація", + "SSE.Views.SortOptionsDialog.textTitle": "Параметри сортування", + "SSE.Views.SortOptionsDialog.textTopBottom": "Сортувати зверху донизу", "SSE.Views.SpecialPasteDialog.textAdd": "Додавання", "SSE.Views.SpecialPasteDialog.textAll": "Всі", + "SSE.Views.SpecialPasteDialog.textBlanks": "Пропускати пусті клітинки", "SSE.Views.SpecialPasteDialog.textColWidth": "Ширина стовпчиків", "SSE.Views.SpecialPasteDialog.textComments": "Коментарі", "SSE.Views.SpecialPasteDialog.textDiv": "Ділення", @@ -2416,6 +3104,13 @@ "SSE.Views.SpecialPasteDialog.textMult": "Множення", "SSE.Views.SpecialPasteDialog.textNone": "Немає", "SSE.Views.SpecialPasteDialog.textOperation": "Операція", + "SSE.Views.SpecialPasteDialog.textPaste": "Вставити", + "SSE.Views.SpecialPasteDialog.textSub": "Віднімання", + "SSE.Views.SpecialPasteDialog.textTitle": "Спеціальна вставка", + "SSE.Views.SpecialPasteDialog.textTranspose": "Транспонувати", + "SSE.Views.SpecialPasteDialog.textValues": "Значення", + "SSE.Views.SpecialPasteDialog.textVFormat": "Значення та форматування", + "SSE.Views.SpecialPasteDialog.textVNFormat": "Значення та формати чисел", "SSE.Views.SpecialPasteDialog.textWBorders": "Без рамки", "SSE.Views.Spellcheck.noSuggestions": "Варіантів не знайдено", "SSE.Views.Spellcheck.textChange": "Замінити", @@ -2423,11 +3118,13 @@ "SSE.Views.Spellcheck.textIgnore": "Пропустити", "SSE.Views.Spellcheck.textIgnoreAll": "Пропустити всі", "SSE.Views.Spellcheck.txtAddToDictionary": "Додати в словник", + "SSE.Views.Spellcheck.txtComplete": "Перевірку орфографії закінчено", "SSE.Views.Spellcheck.txtDictionaryLanguage": "Мова словника", "SSE.Views.Spellcheck.txtNextTip": "Перейти до наступного слова", + "SSE.Views.Spellcheck.txtSpelling": "Орфографія", "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Копіювати до кінця)", "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Перемістити до кінця)", - "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Скопіюйте перед листом", + "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Вставити перед листом", "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Перемістити перед листом", "SSE.Views.Statusbar.filteredRecordsText": "{0} з {1} записів відфільтровано", "SSE.Views.Statusbar.filteredText": "Режим фільтрації", @@ -2441,13 +3138,19 @@ "SSE.Views.Statusbar.itemMaximum": "Максимум", "SSE.Views.Statusbar.itemMinimum": "Мінімум", "SSE.Views.Statusbar.itemMove": "Переміщення", + "SSE.Views.Statusbar.itemProtect": "Захистити", "SSE.Views.Statusbar.itemRename": "Перейменування", + "SSE.Views.Statusbar.itemStatus": "Статус збереження", + "SSE.Views.Statusbar.itemSum": "Сума", "SSE.Views.Statusbar.itemTabColor": "Колір вкладки", + "SSE.Views.Statusbar.itemUnProtect": "Зняти захист", "SSE.Views.Statusbar.RenameDialog.errNameExists": "Робоча таблиця з такою назвою вже існує.", "SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "Ім'я аркуша не може містити такі символи: \\ / *? []:", "SSE.Views.Statusbar.RenameDialog.labelSheetName": "Назва листа", - "SSE.Views.Statusbar.textAverage": "СЕРЕДНІЙ", - "SSE.Views.Statusbar.textCount": "РАХУВАТИ", + "SSE.Views.Statusbar.selectAllSheets": "Вибрати всі листи", + "SSE.Views.Statusbar.sheetIndexText": "Лист {0} з {1}", + "SSE.Views.Statusbar.textAverage": "Середнє", + "SSE.Views.Statusbar.textCount": "Кількість", "SSE.Views.Statusbar.textMax": "Макс", "SSE.Views.Statusbar.textMin": "Мін", "SSE.Views.Statusbar.textNewColor": "Додати новий спеціальний колір", @@ -2462,6 +3165,7 @@ "SSE.Views.Statusbar.tipZoomFactor": "Збільшити", "SSE.Views.Statusbar.tipZoomIn": "Збільшити зображення", "SSE.Views.Statusbar.tipZoomOut": "Зменшити зображення", + "SSE.Views.Statusbar.ungroupSheets": "Розгрупувати листи", "SSE.Views.Statusbar.zoomText": "Збільшити {0}%", "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "Неможливо виконати дію для вибраного діапазону комірок.
Виберіть єдиний діапазон даних, відмінний від існуючого, та спробуйте ще раз.", "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "Неможливо виконати дію для вибраного діапазону комірок.
Виберіть діапазон таким чином, щоб перший рядок таблиці містився в одному рядку
,а таблиця результату перекрила поточну.", @@ -2470,6 +3174,7 @@ "SSE.Views.TableOptionsDialog.txtEmpty": "Це поле є обов'язковим", "SSE.Views.TableOptionsDialog.txtFormat": "Створити таблицю", "SSE.Views.TableOptionsDialog.txtInvalidRange": "ПОМИЛКА! Недійсний діапазон комірок", + "SSE.Views.TableOptionsDialog.txtNote": "Заголовки повинні залишатися у тому ж рядку, а результуючий діапазон таблиці - частково перекриватися з вихідним діапазоном.", "SSE.Views.TableOptionsDialog.txtTitle": "Назва", "SSE.Views.TableSettings.deleteColumnText": "Видалити колону", "SSE.Views.TableSettings.deleteRowText": "Видалити рядок", @@ -2483,6 +3188,7 @@ "SSE.Views.TableSettings.selectDataText": "Виберіть дані стовпця", "SSE.Views.TableSettings.selectRowText": "Виберіть рядок", "SSE.Views.TableSettings.selectTableText": "Виберіть таблицю", + "SSE.Views.TableSettings.textActions": "Дії над таблицями", "SSE.Views.TableSettings.textAdvanced": "Показати додаткові налаштування", "SSE.Views.TableSettings.textBanded": "У смужку", "SSE.Views.TableSettings.textColumns": "Колонки", @@ -2498,6 +3204,7 @@ "SSE.Views.TableSettings.textLast": "Останній", "SSE.Views.TableSettings.textLongOperation": "Довга операція", "SSE.Views.TableSettings.textPivot": "Вставити зведену таблицю", + "SSE.Views.TableSettings.textRemDuplicates": "Видалити дублікати", "SSE.Views.TableSettings.textReservedName": "Ім'я, яке ви намагаєтесь використовувати, вже посилається на формули, що містяться у комірці. Будь ласка, використайте інше ім'я.", "SSE.Views.TableSettings.textResize": "Змінити розмір таблиці", "SSE.Views.TableSettings.textRows": "Рядки", @@ -2518,7 +3225,7 @@ "SSE.Views.TextArtSettings.strForeground": "Колір переднього плану", "SSE.Views.TextArtSettings.strPattern": "Візерунок", "SSE.Views.TextArtSettings.strSize": "Розмір", - "SSE.Views.TextArtSettings.strStroke": "Штрих", + "SSE.Views.TextArtSettings.strStroke": "Контур", "SSE.Views.TextArtSettings.strTransparency": "Непрозорість", "SSE.Views.TextArtSettings.strType": "Тип", "SSE.Views.TextArtSettings.textAngle": "Кут", @@ -2528,12 +3235,13 @@ "SSE.Views.TextArtSettings.textEmptyPattern": "Немає шаблону", "SSE.Views.TextArtSettings.textFromFile": "З файлу", "SSE.Views.TextArtSettings.textFromUrl": "З URL", - "SSE.Views.TextArtSettings.textGradient": "Градієнт", + "SSE.Views.TextArtSettings.textGradient": "Градієнти", "SSE.Views.TextArtSettings.textGradientFill": "Заповнити градієнт", "SSE.Views.TextArtSettings.textImageTexture": "Зображення або текстура", "SSE.Views.TextArtSettings.textLinear": "Лінійний", "SSE.Views.TextArtSettings.textNoFill": "Немає заповнення", "SSE.Views.TextArtSettings.textPatternFill": "Візерунок", + "SSE.Views.TextArtSettings.textPosition": "Положення", "SSE.Views.TextArtSettings.textRadial": "Радіальний", "SSE.Views.TextArtSettings.textSelectTexture": "Обрати", "SSE.Views.TextArtSettings.textStretch": "Розтягнути", @@ -2543,6 +3251,7 @@ "SSE.Views.TextArtSettings.textTile": "Забеспечити таємність", "SSE.Views.TextArtSettings.textTransform": "Перетворення", "SSE.Views.TextArtSettings.tipAddGradientPoint": "Додати точку градієнта", + "SSE.Views.TextArtSettings.tipRemoveGradientPoint": "Видалити точку градієнта", "SSE.Views.TextArtSettings.txtBrownPaper": "Коричневий папір", "SSE.Views.TextArtSettings.txtCanvas": "Полотно", "SSE.Views.TextArtSettings.txtCarton": "Картинка", @@ -2559,9 +3268,16 @@ "SSE.Views.Toolbar.capBtnColorSchemas": "Схема кольорів", "SSE.Views.Toolbar.capBtnComment": "Коментар", "SSE.Views.Toolbar.capBtnInsHeader": "Колонтитули", + "SSE.Views.Toolbar.capBtnInsSlicer": "Зріз", + "SSE.Views.Toolbar.capBtnInsSymbol": "Символ", "SSE.Views.Toolbar.capBtnMargins": "Поля", "SSE.Views.Toolbar.capBtnPageOrient": "Орієнтація", + "SSE.Views.Toolbar.capBtnPageSize": "Розмір", + "SSE.Views.Toolbar.capBtnPrintArea": "Область друку", + "SSE.Views.Toolbar.capBtnPrintTitles": "Друкувати заголовки", + "SSE.Views.Toolbar.capBtnScale": "Вписати", "SSE.Views.Toolbar.capImgAlign": "Вирівнювання", + "SSE.Views.Toolbar.capImgBackward": "Перенести назад", "SSE.Views.Toolbar.capImgForward": "Перенести вперед", "SSE.Views.Toolbar.capImgGroup": "Групування", "SSE.Views.Toolbar.capInsertChart": "Діаграма", @@ -2569,6 +3285,7 @@ "SSE.Views.Toolbar.capInsertHyperlink": "Гіперсилка", "SSE.Views.Toolbar.capInsertImage": "Картинка", "SSE.Views.Toolbar.capInsertShape": "Форма", + "SSE.Views.Toolbar.capInsertSpark": "Спарклайн", "SSE.Views.Toolbar.capInsertTable": "Таблиця", "SSE.Views.Toolbar.capInsertText": "Текстове вікно", "SSE.Views.Toolbar.mniImageFromFile": "Картинка з файлу", @@ -2603,6 +3320,7 @@ "SSE.Views.Toolbar.textDiagUpBorder": "Діагональ вгорі межі", "SSE.Views.Toolbar.textEntireCol": "Загальна колонка", "SSE.Views.Toolbar.textEntireRow": "Загальний ряд", + "SSE.Views.Toolbar.textFewPages": "сторінки", "SSE.Views.Toolbar.textHeight": "Висота", "SSE.Views.Toolbar.textHorizontal": "Горизонтальний текст", "SSE.Views.Toolbar.textInsDown": "Пересунути комірки донизу", @@ -2614,24 +3332,37 @@ "SSE.Views.Toolbar.textLeft": "Вліво:", "SSE.Views.Toolbar.textLeftBorders": "Ліві кордони", "SSE.Views.Toolbar.textManageRule": "Керування правилами", + "SSE.Views.Toolbar.textManyPages": "сторінок", "SSE.Views.Toolbar.textMarginsLast": "Останні налаштування", "SSE.Views.Toolbar.textMarginsNarrow": "Вузький", "SSE.Views.Toolbar.textMarginsNormal": "Звичайні", + "SSE.Views.Toolbar.textMarginsWide": "Широкі", "SSE.Views.Toolbar.textMiddleBorders": "Внутрішні горизонтальні межі", "SSE.Views.Toolbar.textMoreFormats": "Більше форматів", "SSE.Views.Toolbar.textMorePages": "Інші сторінки", "SSE.Views.Toolbar.textNewColor": "Додати новий спеціальний колір", "SSE.Views.Toolbar.textNewRule": "Нове правило", "SSE.Views.Toolbar.textNoBorders": "Немає кордонів", + "SSE.Views.Toolbar.textOnePage": "сторінка", "SSE.Views.Toolbar.textOutBorders": "За межами кордонів", "SSE.Views.Toolbar.textPageMarginsCustom": "Користувацькі поля", + "SSE.Views.Toolbar.textPortrait": "Книжна", "SSE.Views.Toolbar.textPrint": "Роздрукувати", + "SSE.Views.Toolbar.textPrintGridlines": "Друк сітки", + "SSE.Views.Toolbar.textPrintHeadings": "Друк заголовків", "SSE.Views.Toolbar.textPrintOptions": "Налаштування друку", + "SSE.Views.Toolbar.textRight": "Праве:", "SSE.Views.Toolbar.textRightBorders": "Праві кордони", "SSE.Views.Toolbar.textRotateDown": "Повернути текст вниз", "SSE.Views.Toolbar.textRotateUp": "Повернути текст вгору", + "SSE.Views.Toolbar.textScale": "Масштаб", "SSE.Views.Toolbar.textScaleCustom": "Особливий", "SSE.Views.Toolbar.textSelection": "З поточного виділеного фрагмента", + "SSE.Views.Toolbar.textSetPrintArea": "Задати область друку", + "SSE.Views.Toolbar.textStrikeout": "Викреслений", + "SSE.Views.Toolbar.textSubscript": "Підрядні знаки", + "SSE.Views.Toolbar.textSubSuperscript": "Підрядні/надрядкові знаки", + "SSE.Views.Toolbar.textSuperscript": "Надрядкові знаки", "SSE.Views.Toolbar.textTabCollaboration": "Співпраця", "SSE.Views.Toolbar.textTabData": "Дані", "SSE.Views.Toolbar.textTabFile": "Файл", @@ -2639,11 +3370,16 @@ "SSE.Views.Toolbar.textTabHome": "Головна", "SSE.Views.Toolbar.textTabInsert": "Вставити", "SSE.Views.Toolbar.textTabLayout": "Розмітка", + "SSE.Views.Toolbar.textTabProtect": "Захист", + "SSE.Views.Toolbar.textTabView": "Вигляд", "SSE.Views.Toolbar.textThisPivot": "З цієї зведеної таблиці", "SSE.Views.Toolbar.textThisSheet": "З цього листа", "SSE.Views.Toolbar.textThisTable": "З цієї таблиці", + "SSE.Views.Toolbar.textTop": "Верхнє:", "SSE.Views.Toolbar.textTopBorders": "Межі угорі", "SSE.Views.Toolbar.textUnderline": "Підкреслений", + "SSE.Views.Toolbar.textVertical": "Вертикальний текст", + "SSE.Views.Toolbar.textWidth": "Ширина", "SSE.Views.Toolbar.textZoom": "Збільшити", "SSE.Views.Toolbar.tipAlignBottom": "Вирівняти знизу", "SSE.Views.Toolbar.tipAlignCenter": "Вирівняти центр", @@ -2669,6 +3405,7 @@ "SSE.Views.Toolbar.tipDigStyleCurrency": "Валютний стиль", "SSE.Views.Toolbar.tipDigStylePercent": "Процентний стиль", "SSE.Views.Toolbar.tipEditChart": "Редагувати діаграму", + "SSE.Views.Toolbar.tipEditChartData": "Вибір даних", "SSE.Views.Toolbar.tipEditChartType": "Змінити тип діаграми", "SSE.Views.Toolbar.tipEditHeader": "Змінити колонтитул", "SSE.Views.Toolbar.tipFontColor": "Колір шрифту", @@ -2689,7 +3426,7 @@ "SSE.Views.Toolbar.tipInsertSpark": "Вставити спарклайн", "SSE.Views.Toolbar.tipInsertSymbol": "Вставити символ", "SSE.Views.Toolbar.tipInsertTable": "Вставити таблицю", - "SSE.Views.Toolbar.tipInsertText": "Вставити текст", + "SSE.Views.Toolbar.tipInsertText": "Вставити напис", "SSE.Views.Toolbar.tipInsertTextart": "Вставити текст Art", "SSE.Views.Toolbar.tipMarkersArrow": "Маркери-стрілки", "SSE.Views.Toolbar.tipMarkersCheckmark": "Маркери-галочки", @@ -2698,15 +3435,23 @@ "SSE.Views.Toolbar.tipMarkersFRound": "Заповнені круглі маркери", "SSE.Views.Toolbar.tipMarkersFSquare": "Заповнені квадратні маркери", "SSE.Views.Toolbar.tipMarkersHRound": "Пусті круглі маркери", - "SSE.Views.Toolbar.tipMerge": "Злиття", + "SSE.Views.Toolbar.tipMarkersStar": "Маркери-зірочки", + "SSE.Views.Toolbar.tipMerge": "Об'єднати та помістити в центрі", "SSE.Views.Toolbar.tipNone": "Немає", "SSE.Views.Toolbar.tipNumFormat": "Номер формату", + "SSE.Views.Toolbar.tipPageMargins": "Поля сторінки", + "SSE.Views.Toolbar.tipPageOrient": "Орієнтація сторінки", + "SSE.Views.Toolbar.tipPageSize": "Розмір сторінки", "SSE.Views.Toolbar.tipPaste": "Вставити", - "SSE.Views.Toolbar.tipPrColor": "Колір фону", + "SSE.Views.Toolbar.tipPrColor": "Колір заливки", "SSE.Views.Toolbar.tipPrint": "Роздрукувати", + "SSE.Views.Toolbar.tipPrintArea": "Область друку", + "SSE.Views.Toolbar.tipPrintTitles": "Друкувати заголовки", "SSE.Views.Toolbar.tipRedo": "Переробити", "SSE.Views.Toolbar.tipSave": "Зберегти", "SSE.Views.Toolbar.tipSaveCoauth": "Збережіть свої зміни, щоб інші користувачі могли їх переглянути.", + "SSE.Views.Toolbar.tipScale": "Вписати", + "SSE.Views.Toolbar.tipSendBackward": "Перенести назад", "SSE.Views.Toolbar.tipSendForward": "Перенести вперед", "SSE.Views.Toolbar.tipSynchronize": "Документ був змінений іншим користувачем. Будь ласка, натисніть, щоб зберегти зміни та перезавантажити оновлення.", "SSE.Views.Toolbar.tipTextOrientation": "Орієнтація", @@ -2715,6 +3460,7 @@ "SSE.Views.Toolbar.txtAccounting": "Бухгалтерський облік", "SSE.Views.Toolbar.txtAdditional": "Додатковий", "SSE.Views.Toolbar.txtAscending": "Висхідний", + "SSE.Views.Toolbar.txtAutosumTip": "Сума", "SSE.Views.Toolbar.txtClearAll": "Всі", "SSE.Views.Toolbar.txtClearComments": "Коментарі", "SSE.Views.Toolbar.txtClearFilter": "Очистити фільтр", @@ -2736,7 +3482,7 @@ "SSE.Views.Toolbar.txtFranc": "CHF Швейцарський франк", "SSE.Views.Toolbar.txtGeneral": "Загальні", "SSE.Views.Toolbar.txtInteger": "Ціле число", - "SSE.Views.Toolbar.txtManageRange": "Менеджер імен", + "SSE.Views.Toolbar.txtManageRange": "Диспетчер назв", "SSE.Views.Toolbar.txtMergeAcross": "Злиття навколо", "SSE.Views.Toolbar.txtMergeCells": "Об'єднати комірки", "SSE.Views.Toolbar.txtMergeCenter": "Поля і центр", @@ -2786,8 +3532,11 @@ "SSE.Views.Top10FilterDialog.txtBy": "по", "SSE.Views.Top10FilterDialog.txtItems": "Пункт", "SSE.Views.Top10FilterDialog.txtPercent": "Відсоток", + "SSE.Views.Top10FilterDialog.txtSum": "Сума", "SSE.Views.Top10FilterDialog.txtTitle": "Топ 10 Автофільтрів", "SSE.Views.Top10FilterDialog.txtTop": "Верх", + "SSE.Views.Top10FilterDialog.txtValueTitle": "Фільтр \"Перші 10\"", + "SSE.Views.ValueFieldSettingsDialog.textTitle": "Параметри поля значень", "SSE.Views.ValueFieldSettingsDialog.txtAverage": "Середнє", "SSE.Views.ValueFieldSettingsDialog.txtBaseField": "Базове поле", "SSE.Views.ValueFieldSettingsDialog.txtBaseItem": "Базовий елемент", @@ -2795,10 +3544,26 @@ "SSE.Views.ValueFieldSettingsDialog.txtCount": "Кількість", "SSE.Views.ValueFieldSettingsDialog.txtCountNums": "Кількість чисел", "SSE.Views.ValueFieldSettingsDialog.txtCustomName": "Ім'я користувача", + "SSE.Views.ValueFieldSettingsDialog.txtDifference": "Відмінність", "SSE.Views.ValueFieldSettingsDialog.txtIndex": "Індекс", "SSE.Views.ValueFieldSettingsDialog.txtMax": "Макс", "SSE.Views.ValueFieldSettingsDialog.txtMin": "Мін", "SSE.Views.ValueFieldSettingsDialog.txtNormal": "Без обчислень", + "SSE.Views.ValueFieldSettingsDialog.txtPercent": "Відсоток", + "SSE.Views.ValueFieldSettingsDialog.txtPercentDiff": "Приведена відмінність", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfCol": "Відсоток від стовпчика", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfRow": "Відсоток від підсумкового значення", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfTotal": "Відсоток від рядка", + "SSE.Views.ValueFieldSettingsDialog.txtProduct": "Твір", + "SSE.Views.ValueFieldSettingsDialog.txtRunTotal": "З наростаючим підсумком у полі", + "SSE.Views.ValueFieldSettingsDialog.txtShowAs": "Додаткові обчислення", + "SSE.Views.ValueFieldSettingsDialog.txtSourceName": "Ім'я джерела:", + "SSE.Views.ValueFieldSettingsDialog.txtStdDev": "StdDev", + "SSE.Views.ValueFieldSettingsDialog.txtStdDevp": "Станд.відхилення", + "SSE.Views.ValueFieldSettingsDialog.txtSum": "Сума", + "SSE.Views.ValueFieldSettingsDialog.txtSummarize": "Операція", + "SSE.Views.ValueFieldSettingsDialog.txtVar": "Дисп", + "SSE.Views.ValueFieldSettingsDialog.txtVarp": "Диспр", "SSE.Views.ViewManagerDlg.closeButtonText": "Закрити", "SSE.Views.ViewManagerDlg.guestText": "Гість", "SSE.Views.ViewManagerDlg.lockText": "Заблокований", @@ -2808,7 +3573,15 @@ "SSE.Views.ViewManagerDlg.textGoTo": "Перейти до перегляду", "SSE.Views.ViewManagerDlg.textLongName": "Введіть ім'я не довше ніж 128 символів.", "SSE.Views.ViewManagerDlg.textNew": "Нове", + "SSE.Views.ViewManagerDlg.textRename": "Перейменувати", + "SSE.Views.ViewManagerDlg.textRenameError": "Назва вигляду не повинна бути порожньою.", + "SSE.Views.ViewManagerDlg.textRenameLabel": "Перейменувати назву мініатюри", + "SSE.Views.ViewManagerDlg.textViews": "Вигляди листа", + "SSE.Views.ViewManagerDlg.tipIsLocked": "Цей елемент редагує інший користувач.", + "SSE.Views.ViewManagerDlg.txtTitle": "Диспетчер виглядів листа", + "SSE.Views.ViewManagerDlg.warnDeleteView": "Ви намагаєтеся видалити активований в цей момент вигляд '%1'.
Закрити цей вигляд та видалити його?", "SSE.Views.ViewTab.capBtnFreeze": "Закріпити області", + "SSE.Views.ViewTab.capBtnSheetView": "Вигляд листа", "SSE.Views.ViewTab.textAlwaysShowToolbar": "Завжди показувати панель інструментів", "SSE.Views.ViewTab.textClose": "Закрити", "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "Об'єднати рядки листів та стану", @@ -2820,14 +3593,27 @@ "SSE.Views.ViewTab.textGridlines": "Лінії сітки", "SSE.Views.ViewTab.textHeadings": "Заголовки", "SSE.Views.ViewTab.textInterfaceTheme": "Тема інтерфейсу", + "SSE.Views.ViewTab.textManager": "Диспетчер представлень", + "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Показувати тінь для закріплених областей", + "SSE.Views.ViewTab.textUnFreeze": "Зняти закріплення областей", + "SSE.Views.ViewTab.textZeros": "Показувати нулі", + "SSE.Views.ViewTab.textZoom": "Масштаб", "SSE.Views.ViewTab.tipClose": "Закрити перегляд листа", "SSE.Views.ViewTab.tipCreate": "Створити вигляд листа", "SSE.Views.ViewTab.tipFreeze": "Закріпити області", + "SSE.Views.ViewTab.tipSheetView": "Вигляд листа", "SSE.Views.WBProtection.hintAllowRanges": "Дозволити редагувати діапазони", + "SSE.Views.WBProtection.hintProtectSheet": "Захистити лист", + "SSE.Views.WBProtection.hintProtectWB": "Захистити книгу", "SSE.Views.WBProtection.txtAllowRanges": "Дозволити редагувати діапазони", "SSE.Views.WBProtection.txtHiddenFormula": "Приховані формули", "SSE.Views.WBProtection.txtLockedCell": "Заблокована клітинка", + "SSE.Views.WBProtection.txtLockedShape": "Заблокована фігура", "SSE.Views.WBProtection.txtLockedText": "Заблокувати текст", + "SSE.Views.WBProtection.txtProtectSheet": "Захистити лист", + "SSE.Views.WBProtection.txtProtectWB": "Захистити книгу", "SSE.Views.WBProtection.txtSheetUnlockDescription": "Введіть пароль для вимкнення захисту листа", - "SSE.Views.WBProtection.txtWBUnlockDescription": "Введіть пароль для вимкнення захисту книги" + "SSE.Views.WBProtection.txtSheetUnlockTitle": "Зняти захист листа", + "SSE.Views.WBProtection.txtWBUnlockDescription": "Введіть пароль для вимкнення захисту книги", + "SSE.Views.WBProtection.txtWBUnlockTitle": "Зняти захист книги" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/zh.json b/apps/spreadsheeteditor/main/locale/zh.json index 1cb857396..8f3a685bd 100644 --- a/apps/spreadsheeteditor/main/locale/zh.json +++ b/apps/spreadsheeteditor/main/locale/zh.json @@ -114,6 +114,8 @@ "Common.UI.ExtendedColorDialog.textNew": "新", "Common.UI.ExtendedColorDialog.textRGBErr": "输入的值不正确。
请输入介于0和255之间的数值。", "Common.UI.HSBColorPicker.textNoColor": "没有颜色", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "隐藏密码", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "显示密码", "Common.UI.SearchDialog.textHighlight": "高亮效果", "Common.UI.SearchDialog.textMatchCase": "区分大小写", "Common.UI.SearchDialog.textReplaceDef": "输入替换文字", @@ -178,12 +180,14 @@ "Common.Views.Comments.mniAuthorDesc": "作者 Z到A", "Common.Views.Comments.mniDateAsc": "最旧", "Common.Views.Comments.mniDateDesc": "最新", + "Common.Views.Comments.mniFilterGroups": "按组筛选", "Common.Views.Comments.mniPositionAsc": "从顶部", "Common.Views.Comments.mniPositionDesc": "从底部", "Common.Views.Comments.textAdd": "添加", "Common.Views.Comments.textAddComment": "添加批注", "Common.Views.Comments.textAddCommentToDoc": "添加批注到文档", "Common.Views.Comments.textAddReply": "添加回复", + "Common.Views.Comments.textAll": "所有", "Common.Views.Comments.textAnonym": "游客", "Common.Views.Comments.textCancel": "取消", "Common.Views.Comments.textClose": "关闭", @@ -197,6 +201,7 @@ "Common.Views.Comments.textResolve": "解决", "Common.Views.Comments.textResolved": "已解决", "Common.Views.Comments.textSort": "评论排序", + "Common.Views.Comments.textViewResolved": "您没有重开评论的权限", "Common.Views.CopyWarningDialog.textDontShow": "不要再显示此消息", "Common.Views.CopyWarningDialog.textMsg": "使用编辑器工具栏按钮和上下文菜单操作复制,剪切和粘贴操作将仅在此编辑器选项卡中执行。

要在编辑器选项卡之外复制或粘贴到应用程序,请使用以下键盘组合:", "Common.Views.CopyWarningDialog.textTitle": "复制,剪切和粘贴操作", @@ -364,6 +369,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "再次打开", "Common.Views.ReviewPopover.textReply": "回复", "Common.Views.ReviewPopover.textResolve": "解决", + "Common.Views.ReviewPopover.textViewResolved": "您没有重开评论的权限", "Common.Views.ReviewPopover.txtDeleteTip": "删除", "Common.Views.ReviewPopover.txtEditTip": "编辑", "Common.Views.SaveAsDlg.textLoading": "载入中", @@ -474,6 +480,7 @@ "SSE.Controllers.DocumentHolder.txtAddVer": "添加垂直线", "SSE.Controllers.DocumentHolder.txtAlignToChar": "字符对齐", "SSE.Controllers.DocumentHolder.txtAll": "(全部)", + "SSE.Controllers.DocumentHolder.txtAllTableHint": "返回表格或指定表格列的全部内容,包括列标题、数据和总行数", "SSE.Controllers.DocumentHolder.txtAnd": "和", "SSE.Controllers.DocumentHolder.txtBegins": "开头为", "SSE.Controllers.DocumentHolder.txtBelowAve": "在平均值以下", @@ -483,6 +490,7 @@ "SSE.Controllers.DocumentHolder.txtColumn": "列", "SSE.Controllers.DocumentHolder.txtColumnAlign": "列对齐", "SSE.Controllers.DocumentHolder.txtContains": "包含", + "SSE.Controllers.DocumentHolder.txtDataTableHint": "返回表格或指定表格列的数据单元格", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "减少大小参数", "SSE.Controllers.DocumentHolder.txtDeleteArg": "删除参数", "SSE.Controllers.DocumentHolder.txtDeleteBreak": "删除手动的断点", @@ -506,6 +514,7 @@ "SSE.Controllers.DocumentHolder.txtGreaterEquals": "大于或等于", "SSE.Controllers.DocumentHolder.txtGroupCharOver": "字符在文字上", "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "文字下的Char", + "SSE.Controllers.DocumentHolder.txtHeadersTableHint": "返回表格或指定表格列的列头", "SSE.Controllers.DocumentHolder.txtHeight": "高低", "SSE.Controllers.DocumentHolder.txtHideBottom": "隐藏下边框", "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "隐藏下限", @@ -584,7 +593,9 @@ "SSE.Controllers.DocumentHolder.txtSorting": "排序", "SSE.Controllers.DocumentHolder.txtSortSelected": "排序选择", "SSE.Controllers.DocumentHolder.txtStretchBrackets": "拉伸支架", + "SSE.Controllers.DocumentHolder.txtThisRowHint": "仅选择指定列的这一行", "SSE.Controllers.DocumentHolder.txtTop": "顶部", + "SSE.Controllers.DocumentHolder.txtTotalsTableHint": "返回表格或指定表格列的总行数", "SSE.Controllers.DocumentHolder.txtUnderbar": "在文本栏", "SSE.Controllers.DocumentHolder.txtUndoExpansion": "撤消表自动扩展", "SSE.Controllers.DocumentHolder.txtUseTextImport": "使用文本导入向导", @@ -639,6 +650,7 @@ "SSE.Controllers.Main.errorAutoFilterHiddenRange": "无法执行操作,因为该区域包含已过滤的单元格。
请取消隐藏已过滤的元素,然后重试。", "SSE.Controllers.Main.errorBadImageUrl": "图片地址不正确", "SSE.Controllers.Main.errorCannotUngroup": "无法解组。若要开始轮廓,请选择详细信息行或列并对其进行分组。", + "SSE.Controllers.Main.errorCannotUseCommandProtectedSheet": "受保护的工作表不允许进行该操作。要进行该操作,请先取消工作表的保护。
您可能需要输入密码。", "SSE.Controllers.Main.errorChangeArray": "您无法更改部分阵列。", "SSE.Controllers.Main.errorChangeFilteredRange": "这将更改工作表原有的筛选范围。
要完成此操作,请移除“自动筛选”。", "SSE.Controllers.Main.errorChangeOnProtectedSheet": "尝试更改的单元格或图表位于受保护的工作表上。
如要更改请把工作表解锁。会有可能要修您输入簿密码。", @@ -769,6 +781,7 @@ "SSE.Controllers.Main.textNoLicenseTitle": "已达到许可证限制。", "SSE.Controllers.Main.textPaidFeature": "付费功能", "SSE.Controllers.Main.textPleaseWait": "该操作可能需要比预期的更多的时间。请稍候...", + "SSE.Controllers.Main.textReconnect": "连接已恢复", "SSE.Controllers.Main.textRemember": "针对所有的文件记住我的选择", "SSE.Controllers.Main.textRenameError": "用户名不能为空。", "SSE.Controllers.Main.textRenameLabel": "输入名称,可用于协作。", @@ -1060,6 +1073,7 @@ "SSE.Controllers.Statusbar.errorLastSheet": "工作簿必须至少有一个可见的工作表", "SSE.Controllers.Statusbar.errorRemoveSheet": "不能删除工作表", "SSE.Controllers.Statusbar.strSheet": "表格", + "SSE.Controllers.Statusbar.textDisconnect": "连接失败
正在尝试连接。请检查连接设置。", "SSE.Controllers.Statusbar.textSheetViewTip": "您处于“表视图”模式。过滤器和排序仅对您和仍处于此视图的用户可见。", "SSE.Controllers.Statusbar.textSheetViewTipFilters": "您处于“表视图”模式。过滤器仅对您和仍处于此视图的用户可见。", "SSE.Controllers.Statusbar.warnDeleteSheet": "所选定的工作表可能包含数据。您确定要继续吗?", @@ -1085,6 +1099,7 @@ "SSE.Controllers.Toolbar.textPivot": "数据透视表", "SSE.Controllers.Toolbar.textRadical": "自由基", "SSE.Controllers.Toolbar.textRating": "等级", + "SSE.Controllers.Toolbar.textRecentlyUsed": "最近使用的", "SSE.Controllers.Toolbar.textScript": "脚本", "SSE.Controllers.Toolbar.textShapes": "形状", "SSE.Controllers.Toolbar.textSymbols": "符号", @@ -1426,7 +1441,9 @@ "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "小数分隔符", "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "千位分隔符", "SSE.Views.AdvancedSeparatorDialog.textLabel": "用于识别数值数据的设置", + "SSE.Views.AdvancedSeparatorDialog.textQualifier": "文本限定符", "SSE.Views.AdvancedSeparatorDialog.textTitle": "进阶设置", + "SSE.Views.AdvancedSeparatorDialog.txtNone": "(无)", "SSE.Views.AutoFilterDialog.btnCustomFilter": "自定义筛选器", "SSE.Views.AutoFilterDialog.textAddSelection": "添加最新的选择到筛选依据中", "SSE.Views.AutoFilterDialog.textEmptyItem": "空白", @@ -1872,6 +1889,7 @@ "SSE.Views.DocumentHolder.textCrop": "裁剪", "SSE.Views.DocumentHolder.textCropFill": "填满", "SSE.Views.DocumentHolder.textCropFit": "最佳", + "SSE.Views.DocumentHolder.textEditPoints": "编辑点", "SSE.Views.DocumentHolder.textEntriesList": "从下拉列表中选择", "SSE.Views.DocumentHolder.textFlipH": "水平翻转", "SSE.Views.DocumentHolder.textFlipV": "垂直翻转", @@ -2241,6 +2259,7 @@ "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "编辑格式规则", "SSE.Views.FormatRulesEditDlg.txtTitleNew": "新建格式规则", "SSE.Views.FormatRulesManagerDlg.guestText": "来宾", + "SSE.Views.FormatRulesManagerDlg.lockText": "锁定", "SSE.Views.FormatRulesManagerDlg.text1Above": "标准偏差高于平均值1", "SSE.Views.FormatRulesManagerDlg.text1Below": "标准偏差低于平均值1", "SSE.Views.FormatRulesManagerDlg.text2Above": "标准偏差高于平均值2", @@ -2402,6 +2421,7 @@ "SSE.Views.ImageSettings.textCrop": "裁剪", "SSE.Views.ImageSettings.textCropFill": "填满", "SSE.Views.ImageSettings.textCropFit": "最佳", + "SSE.Views.ImageSettings.textCropToShape": "裁剪为形状", "SSE.Views.ImageSettings.textEdit": "修改", "SSE.Views.ImageSettings.textEditObject": "编辑对象", "SSE.Views.ImageSettings.textFlip": "翻转", @@ -2416,6 +2436,7 @@ "SSE.Views.ImageSettings.textInsert": "替换图像", "SSE.Views.ImageSettings.textKeepRatio": "不变比例", "SSE.Views.ImageSettings.textOriginalSize": "实际大小", + "SSE.Views.ImageSettings.textRecentlyUsed": "最近使用的", "SSE.Views.ImageSettings.textRotate90": "旋转90°", "SSE.Views.ImageSettings.textRotation": "旋转", "SSE.Views.ImageSettings.textSize": "大小", @@ -2470,7 +2491,7 @@ "SSE.Views.MainSettingsPrint.textPrintGrid": "打印网格线", "SSE.Views.MainSettingsPrint.textPrintHeadings": "打印行和列标题", "SSE.Views.MainSettingsPrint.textRepeat": "重复...", - "SSE.Views.MainSettingsPrint.textRepeatLeft": "移除左侧的列", + "SSE.Views.MainSettingsPrint.textRepeatLeft": "在左侧重复一列", "SSE.Views.MainSettingsPrint.textRepeatTop": "在顶部重复一行", "SSE.Views.MainSettingsPrint.textSettings": "设置", "SSE.Views.NamedRangeEditDlg.errorCreateDefName": "无法编辑现有的命名范围,因此无法在其中编辑新的范围。", @@ -2493,6 +2514,7 @@ "SSE.Views.NamedRangePasteDlg.txtTitle": "粘贴名称", "SSE.Views.NameManagerDlg.closeButtonText": "关闭", "SSE.Views.NameManagerDlg.guestText": "游客", + "SSE.Views.NameManagerDlg.lockText": "锁定", "SSE.Views.NameManagerDlg.textDataRange": "数据范围", "SSE.Views.NameManagerDlg.textDelete": "删除", "SSE.Views.NameManagerDlg.textEdit": "编辑", @@ -2704,7 +2726,7 @@ "SSE.Views.PrintSettings.textPrintRange": "打印范围", "SSE.Views.PrintSettings.textRange": "范围", "SSE.Views.PrintSettings.textRepeat": "重复...", - "SSE.Views.PrintSettings.textRepeatLeft": "移除左侧的列", + "SSE.Views.PrintSettings.textRepeatLeft": "在左侧重复一列", "SSE.Views.PrintSettings.textRepeatTop": "在顶部重复一行", "SSE.Views.PrintSettings.textSelection": "选择", "SSE.Views.PrintSettings.textSettings": "工作表设置", @@ -2724,6 +2746,43 @@ "SSE.Views.PrintTitlesDialog.textSelectRange": "选取范围", "SSE.Views.PrintTitlesDialog.textTitle": "打印标题", "SSE.Views.PrintTitlesDialog.textTop": "在顶部重复一行", + "SSE.Views.PrintWithPreview.txtActualSize": "实际大小", + "SSE.Views.PrintWithPreview.txtAllSheets": "全部工作表", + "SSE.Views.PrintWithPreview.txtApplyToAllSheets": "应用到所有工作表", + "SSE.Views.PrintWithPreview.txtBottom": "底部", + "SSE.Views.PrintWithPreview.txtCurrentSheet": "当前工作表", + "SSE.Views.PrintWithPreview.txtCustom": "自定义", + "SSE.Views.PrintWithPreview.txtCustomOptions": "自定义选项", + "SSE.Views.PrintWithPreview.txtFitCols": "将所有列适合一页", + "SSE.Views.PrintWithPreview.txtFitPage": "在一页上安装工作表", + "SSE.Views.PrintWithPreview.txtFitRows": "适合一页上的所有行", + "SSE.Views.PrintWithPreview.txtGridlinesAndHeadings": "网格线和标题", + "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "页眉/页脚设置", + "SSE.Views.PrintWithPreview.txtIgnore": "忽略打印区域", + "SSE.Views.PrintWithPreview.txtLandscape": "横向", + "SSE.Views.PrintWithPreview.txtLeft": "左侧", + "SSE.Views.PrintWithPreview.txtMargins": "边距", + "SSE.Views.PrintWithPreview.txtOf": "/ {0}", + "SSE.Views.PrintWithPreview.txtPage": "页面", + "SSE.Views.PrintWithPreview.txtPageNumInvalid": "页码无效", + "SSE.Views.PrintWithPreview.txtPageOrientation": "页面方向", + "SSE.Views.PrintWithPreview.txtPageSize": "页面大小", + "SSE.Views.PrintWithPreview.txtPortrait": "纵向", + "SSE.Views.PrintWithPreview.txtPrint": "打印", + "SSE.Views.PrintWithPreview.txtPrintGrid": "打印网格线", + "SSE.Views.PrintWithPreview.txtPrintHeadings": "打印行和列标题", + "SSE.Views.PrintWithPreview.txtPrintRange": "打印范围", + "SSE.Views.PrintWithPreview.txtPrintTitles": "打印标题", + "SSE.Views.PrintWithPreview.txtRepeat": "重复...", + "SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft": "在左侧重复一列", + "SSE.Views.PrintWithPreview.txtRepeatRowsAtTop": "在顶部重复一行", + "SSE.Views.PrintWithPreview.txtRight": "右侧", + "SSE.Views.PrintWithPreview.txtSave": "保存", + "SSE.Views.PrintWithPreview.txtScaling": "缩放", + "SSE.Views.PrintWithPreview.txtSelection": "选择", + "SSE.Views.PrintWithPreview.txtSettingsOfSheet": "工作表设置", + "SSE.Views.PrintWithPreview.txtSheet": "工作表:{0}", + "SSE.Views.PrintWithPreview.txtTop": "顶部", "SSE.Views.ProtectDialog.textExistName": "错误!一个有此标题的区域已经存在", "SSE.Views.ProtectDialog.textInvalidName": "范围标准必须为字母起头而只能包含数字、字母和空格。", "SSE.Views.ProtectDialog.textInvalidRange": "错误!单元格范围无效。", @@ -2758,6 +2817,7 @@ "SSE.Views.ProtectDialog.txtWBDescription": "为防止其他用户查看隐藏的工作表,添加、移动、删除或隐藏工作表和重命名工作表,您可以设定密码保护工作表架构。", "SSE.Views.ProtectDialog.txtWBTitle": "保护工作簿结构", "SSE.Views.ProtectRangesDlg.guestText": "来宾", + "SSE.Views.ProtectRangesDlg.lockText": "锁定", "SSE.Views.ProtectRangesDlg.textDelete": "删除", "SSE.Views.ProtectRangesDlg.textEdit": "编辑", "SSE.Views.ProtectRangesDlg.textEmpty": "没有可编辑的区域。", @@ -2837,6 +2897,7 @@ "SSE.Views.ShapeSettings.textPatternFill": "模式", "SSE.Views.ShapeSettings.textPosition": "位置", "SSE.Views.ShapeSettings.textRadial": "径向", + "SSE.Views.ShapeSettings.textRecentlyUsed": "最近使用的", "SSE.Views.ShapeSettings.textRotate90": "旋转90°", "SSE.Views.ShapeSettings.textRotation": "旋转", "SSE.Views.ShapeSettings.textSelectImage": "选取图片", @@ -3098,6 +3159,7 @@ "SSE.Views.Statusbar.tipAddTab": "添加工作表", "SSE.Views.Statusbar.tipFirst": "滚动到第一张", "SSE.Views.Statusbar.tipLast": "滚动到最后一张", + "SSE.Views.Statusbar.tipListOfSheets": "工作表列表", "SSE.Views.Statusbar.tipNext": "滚动表列表对", "SSE.Views.Statusbar.tipPrev": "向左滚动表单", "SSE.Views.Statusbar.tipZoomFactor": "放大", @@ -3286,6 +3348,8 @@ "SSE.Views.Toolbar.textPageMarginsCustom": "自定义边距", "SSE.Views.Toolbar.textPortrait": "肖像", "SSE.Views.Toolbar.textPrint": "打印", + "SSE.Views.Toolbar.textPrintGridlines": "打印网格线", + "SSE.Views.Toolbar.textPrintHeadings": "打印标题", "SSE.Views.Toolbar.textPrintOptions": "打印设置", "SSE.Views.Toolbar.textRight": "右: ", "SSE.Views.Toolbar.textRightBorders": "右边框", @@ -3364,7 +3428,16 @@ "SSE.Views.Toolbar.tipInsertTable": "插入表", "SSE.Views.Toolbar.tipInsertText": "插入文字", "SSE.Views.Toolbar.tipInsertTextart": "插入文字艺术", + "SSE.Views.Toolbar.tipMarkersArrow": "箭头项目符号", + "SSE.Views.Toolbar.tipMarkersCheckmark": "选中标记项目符号", + "SSE.Views.Toolbar.tipMarkersDash": "划线项目符号", + "SSE.Views.Toolbar.tipMarkersFRhombus": "实心菱形项目符号", + "SSE.Views.Toolbar.tipMarkersFRound": "实心圆形项目符号", + "SSE.Views.Toolbar.tipMarkersFSquare": "实心方形项目符号", + "SSE.Views.Toolbar.tipMarkersHRound": "空心圆形项目符号", + "SSE.Views.Toolbar.tipMarkersStar": "星形项目符号", "SSE.Views.Toolbar.tipMerge": "合并且居中", + "SSE.Views.Toolbar.tipNone": "无", "SSE.Views.Toolbar.tipNumFormat": "数字格式", "SSE.Views.Toolbar.tipPageMargins": "页边距", "SSE.Views.Toolbar.tipPageOrient": "页面方向", @@ -3493,6 +3566,7 @@ "SSE.Views.ValueFieldSettingsDialog.txtVarp": "总体方差", "SSE.Views.ViewManagerDlg.closeButtonText": "关闭", "SSE.Views.ViewManagerDlg.guestText": "游客", + "SSE.Views.ViewManagerDlg.lockText": "锁定", "SSE.Views.ViewManagerDlg.textDelete": "删除", "SSE.Views.ViewManagerDlg.textDuplicate": "重复", "SSE.Views.ViewManagerDlg.textEmpty": "目前没有创建视图。", @@ -3508,7 +3582,9 @@ "SSE.Views.ViewManagerDlg.warnDeleteView": "您正在尝试删除当前启用的视图'%1'。
关闭并删除此视图吗?", "SSE.Views.ViewTab.capBtnFreeze": "冻结窗格", "SSE.Views.ViewTab.capBtnSheetView": "工作表视图", + "SSE.Views.ViewTab.textAlwaysShowToolbar": "始终显示工具栏", "SSE.Views.ViewTab.textClose": "关闭", + "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "合并工作表和状态栏", "SSE.Views.ViewTab.textCreate": "新", "SSE.Views.ViewTab.textDefault": "默认", "SSE.Views.ViewTab.textFormula": "公式栏", @@ -3516,7 +3592,9 @@ "SSE.Views.ViewTab.textFreezeRow": "冻结首行", "SSE.Views.ViewTab.textGridlines": "网格线", "SSE.Views.ViewTab.textHeadings": "标题", + "SSE.Views.ViewTab.textInterfaceTheme": "界面主题", "SSE.Views.ViewTab.textManager": "查看管理器", + "SSE.Views.ViewTab.textShowFrozenPanesShadow": "显示冻结窗格的阴影", "SSE.Views.ViewTab.textUnFreeze": "取消冻结窗格", "SSE.Views.ViewTab.textZeros": "显示零", "SSE.Views.ViewTab.textZoom": "放大", From 0d3f356c1c0f8c3f0373505489c3273da3a149a8 Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Mon, 31 Jan 2022 16:14:39 +0300 Subject: [PATCH 089/217] Correct flag 'isEdit' --- apps/spreadsheeteditor/mobile/src/store/appOptions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/spreadsheeteditor/mobile/src/store/appOptions.js b/apps/spreadsheeteditor/mobile/src/store/appOptions.js index 7f8078ef7..6807fd51e 100644 --- a/apps/spreadsheeteditor/mobile/src/store/appOptions.js +++ b/apps/spreadsheeteditor/mobile/src/store/appOptions.js @@ -90,7 +90,7 @@ export class storeAppOptions { this.canEdit = permissions.edit !== false && // can edit or review (this.config.canRequestEditRights || this.config.mode !== 'view') && isSupportEditFeature; // if mode=="view" -> canRequestEditRights must be defined // (!this.isReviewOnly || this.canLicense) && // if isReviewOnly==true -> canLicense must be true - this.isEdit = (this.canLicense || this.isEditDiagram || this.isEditMailMerge) && permissions.edit !== false && this.config.mode !== 'view' && isSupportEditFeature && true; + this.isEdit = (this.canLicense || this.isEditDiagram || this.isEditMailMerge) && permissions.edit !== false && this.config.mode !== 'view' && isSupportEditFeature; this.canComments = this.canLicense && (permissions.comment === undefined ? this.isEdit : permissions.comment) && (this.config.mode !== 'view'); this.canComments = this.canComments && !((typeof (this.customization) == 'object') && this.customization.comments===false); this.canViewComments = this.canComments || !((typeof (this.customization) == 'object') && this.customization.comments===false); From 1a016c81bcb6f4e7e6b11262899aa6768d8bb131 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 31 Jan 2022 17:06:48 +0300 Subject: [PATCH 090/217] [Mobile] Update translation --- apps/documenteditor/mobile/locale/be.json | 1076 ++++++++--------- apps/documenteditor/mobile/locale/ca.json | 76 +- apps/documenteditor/mobile/locale/en.json | 2 +- apps/documenteditor/mobile/locale/es.json | 72 +- apps/documenteditor/mobile/locale/fr.json | 70 +- apps/documenteditor/mobile/locale/it.json | 70 +- apps/documenteditor/mobile/locale/ja.json | 28 +- apps/documenteditor/mobile/locale/ro.json | 70 +- apps/documenteditor/mobile/locale/ru.json | 6 +- apps/documenteditor/mobile/locale/tr.json | 10 +- apps/documenteditor/mobile/locale/uk.json | 950 +++++++-------- apps/documenteditor/mobile/locale/zh.json | 70 +- apps/presentationeditor/mobile/locale/be.json | 820 ++++++------- apps/presentationeditor/mobile/locale/ca.json | 32 +- apps/presentationeditor/mobile/locale/en.json | 2 +- apps/presentationeditor/mobile/locale/es.json | 34 +- apps/presentationeditor/mobile/locale/fr.json | 30 +- apps/presentationeditor/mobile/locale/it.json | 30 +- apps/presentationeditor/mobile/locale/ja.json | 6 +- apps/presentationeditor/mobile/locale/ro.json | 30 +- apps/presentationeditor/mobile/locale/ru.json | 4 +- apps/presentationeditor/mobile/locale/tr.json | 4 +- apps/presentationeditor/mobile/locale/zh.json | 30 +- apps/spreadsheeteditor/mobile/locale/be.json | 282 ++--- apps/spreadsheeteditor/mobile/locale/ca.json | 40 +- apps/spreadsheeteditor/mobile/locale/es.json | 42 +- apps/spreadsheeteditor/mobile/locale/fr.json | 38 +- apps/spreadsheeteditor/mobile/locale/it.json | 38 +- apps/spreadsheeteditor/mobile/locale/ja.json | 2 +- apps/spreadsheeteditor/mobile/locale/ro.json | 38 +- apps/spreadsheeteditor/mobile/locale/tr.json | 4 +- apps/spreadsheeteditor/mobile/locale/zh.json | 38 +- 32 files changed, 2022 insertions(+), 2022 deletions(-) diff --git a/apps/documenteditor/mobile/locale/be.json b/apps/documenteditor/mobile/locale/be.json index a33c05493..5d3cf75ac 100644 --- a/apps/documenteditor/mobile/locale/be.json +++ b/apps/documenteditor/mobile/locale/be.json @@ -1,626 +1,626 @@ { "About": { - "textAbout": "About", - "textAddress": "Address", - "textBack": "Back", - "textEmail": "Email", - "textPoweredBy": "Powered By", - "textTel": "Tel", - "textVersion": "Version" + "textAbout": "Пра праграму", + "textAddress": "Адрас", + "textBack": "Назад", + "textEmail": "Электронная пошта", + "textPoweredBy": "Распрацавана", + "textTel": "Тэлефон", + "textVersion": "Версія" }, "Add": { - "notcriticalErrorTitle": "Warning", - "textAddLink": "Add link", - "textAddress": "Address", - "textBack": "Back", - "textBelowText": "Below text", - "textBottomOfPage": "Bottom of page", - "textBreak": "Break", - "textCancel": "Cancel", - "textCenterBottom": "Center Bottom", - "textCenterTop": "Center Top", - "textColumnBreak": "Column Break", - "textColumns": "Columns", - "textComment": "Comment", - "textContinuousPage": "Continuous Page", - "textCurrentPosition": "Current Position", - "textDisplay": "Display", - "textEmptyImgUrl": "You need to specify image URL.", - "textEvenPage": "Even Page", - "textFootnote": "Footnote", - "textFormat": "Format", - "textImage": "Image", - "textImageURL": "Image URL", - "textInsert": "Insert", - "textInsertFootnote": "Insert Footnote", - "textInsertImage": "Insert Image", - "textLeftBottom": "Left Bottom", - "textLeftTop": "Left Top", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLocation": "Location", - "textNextPage": "Next Page", - "textOddPage": "Odd Page", - "textOther": "Other", - "textPageBreak": "Page Break", - "textPageNumber": "Page Number", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textPosition": "Position", - "textRightBottom": "Right Bottom", - "textRightTop": "Right Top", - "textRows": "Rows", - "textScreenTip": "Screen Tip", - "textSectionBreak": "Section Break", - "textShape": "Shape", - "textStartAt": "Start At", - "textTable": "Table", - "textTableSize": "Table Size", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textOk": "Ok" + "notcriticalErrorTitle": "Увага", + "textAddLink": "Дадаць спасылку", + "textAddress": "Адрас", + "textBack": "Назад", + "textBelowText": "Пад тэкстам", + "textBottomOfPage": "Унізе старонкі", + "textBreak": "Разрыў", + "textCancel": "Скасаваць", + "textCenterBottom": "Знізу па цэнтры", + "textCenterTop": "Зверху па цэнтры", + "textColumnBreak": "Перарыванне слупка", + "textColumns": "Слупкі", + "textComment": "Каментар", + "textContinuousPage": "На бягучай старонцы", + "textCurrentPosition": "Бягучая пазіцыя", + "textDisplay": "Паказаць", + "textEmptyImgUrl": "Неабходна вызначыць URL-адрас выявы.", + "textEvenPage": "З цотнай старонкі", + "textFootnote": "Зноска", + "textFormat": "Фармат", + "textImage": "Выява", + "textImageURL": "URL выявы", + "textInsert": "Уставіць", + "textInsertFootnote": "Уставіць зноску", + "textInsertImage": "Уставіць выяву", + "textLeftBottom": "Злева знізу", + "textLeftTop": "Злева зверху", + "textLink": "Спасылка", + "textLinkSettings": "Налады спасылкі", + "textLocation": "Размяшчэнне", + "textNextPage": "Наступная старонка", + "textOddPage": "З няцотнай старонкі", + "textOk": "Добра", + "textOther": "Іншае", + "textPageBreak": "Разрыў старонкі", + "textPageNumber": "Нумар старонкі", + "textPictureFromLibrary": "Выява з бібліятэкі", + "textPictureFromURL": "Выява па URL", + "textPosition": "Пазіцыя", + "textRightBottom": "Знізу справа", + "textRightTop": "Зверху справа", + "textRows": "Радкі", + "textScreenTip": "Падказка", + "textSectionBreak": "Разрыў раздзела", + "textShape": "Фігура", + "textStartAt": "Пачаць з", + "textTable": "Табліца", + "textTableSize": "Памеры табліцы", + "txtNotUrl": "Гэтае поле мусіць быць URL-адрасам фармату \"http://www.example.com\"" }, "Common": { "Collaboration": { - "notcriticalErrorTitle": "Warning", - "textAccept": "Accept", - "textAcceptAllChanges": "Accept all changes", - "textAddComment": "Add comment", - "textAddReply": "Add reply", - "textAllChangesAcceptedPreview": "All changes accepted (Preview)", - "textAllChangesEditing": "All changes (Editing)", - "textAllChangesRejectedPreview": "All changes rejected (Preview)", - "textAtLeast": "at least", - "textAuto": "auto", - "textBack": "Back", - "textBaseline": "Baseline", - "textBold": "Bold", - "textBreakBefore": "Page break before", - "textCancel": "Cancel", - "textCaps": "All caps", - "textCenter": "Align center", - "textChart": "Chart", - "textCollaboration": "Collaboration", - "textColor": "Font color", - "textComments": "Comments", + "notcriticalErrorTitle": "Увага", + "textAccept": "Ухваліць", + "textAcceptAllChanges": "Ухваліць усе змены", + "textAddComment": "Дадаць каментар", + "textAddReply": "Дадаць адказ", + "textAllChangesAcceptedPreview": "Усе змены ўхваленыя (папярэдні прагляд)", + "textAllChangesEditing": "Усе змены (рэдагаванне)", + "textAllChangesRejectedPreview": "Усе змены адкінутыя (папярэдні прагляд)", + "textAtLeast": "мінімум", + "textAuto": "аўта", + "textBack": "Назад", + "textBaseline": "Базавая лінія", + "textBold": "Тоўсты", + "textBreakBefore": "З новай старонкі", + "textCancel": "Скасаваць", + "textCaps": "Усе ў верхнім рэгістры", + "textCenter": "Выраўнаваць па цэнтры", + "textChart": "Дыяграма", + "textCollaboration": "Сумесная праца", + "textColor": "Колер шрыфту", + "textComments": "Каментары", + "textDelete": "Выдаліць", + "textDeleteComment": "Выдаліць каментар", + "textDeleteReply": "Выдаліць адказ", + "textDisplayMode": "Адлюстраванне", + "textDone": "Завершана", + "textDStrikeout": "Падвойнае закрэсліванне", + "textEdit": "Рэдагаваць", + "textEditComment": "Рэдагаваць каментар", + "textEditReply": "Рэдагаваць адказ", + "textEditUser": "Дакумент рэдагуецца карыстальнікамі:", + "textEquation": "Раўнанне", + "textExact": "дакладна", + "textFinal": "Выніковы дакумент", + "textFirstLine": "Першы радок", + "textFormatted": "Адфарматавана", + "textHighlight": "Колер падсвятлення", + "textImage": "Выява", + "textIndentLeft": "Водступ злева", + "textIndentRight": "Водступ справа", + "textItalic": "Курсіў", + "textJustify": "Па шырыні", + "textKeepLines": "Не падзяляць абзац", + "textKeepNext": "Не адасобліваць ад наступнага", + "textLeft": "Выраўнаваць па леваму краю", + "textLineSpacing": "Прамежак паміж радкамі:", + "textMarkup": "Змены", + "textMessageDeleteComment": "Сапраўды хочаце выдаліць гэты каментар?", + "textMessageDeleteReply": "Сапраўды хочаце выдаліць гэты адказ?", + "textMultiple": "множнік", + "textNoBreakBefore": "Не з новай старонкі", + "textNoChanges": "Змен няма.", + "textNoComments": "Да гэтага дакумента няма каментароў", + "textNoContextual": "Дадаваць прамежак паміж абзацамі аднаго стылю", + "textNoKeepLines": "Дазволіць разрыў абзаца ", + "textNoKeepNext": "Дазволіць адрываць ад наступнага", + "textNot": "Не", + "textNum": "Змяніць нумарацыю", + "textOk": "Добра", + "textOriginal": "Зыходны дакумент", + "textParaFormatted": "Абзац адфарматаваны", + "textPosition": "Пазіцыя", + "textReject": "Адхіліць", + "textRejectAllChanges": "Адхіліць усе змены", + "textReopen": "Адкрыць зноў", + "textResolve": "Вырашыць", + "textReview": "Перагляд", + "textReviewChange": "Прагляд змен", + "textRight": "Выраўнаваць па праваму краю", + "textShape": "Фігура", + "textShd": "Колер фону", + "textSmallCaps": "Малыя прапісныя", + "textSpacing": "Прамежак", + "textSpacingAfter": "Прамежак пасля", + "textSpacingBefore": "Прамежак перад", + "textStrikeout": "Закрэслены", + "textSubScript": "Падрадковыя", + "textSuperScript": "Надрадковыя", + "textTabs": "Змяніць табуляцыі", + "textTrackChanges": "Адсочванне змен", + "textTryUndoRedo": "Функцыі скасавання і паўтору дзеянняў выключаныя ў хуткім рэжыме сумеснага рэдагавання.", + "textUnderline": "Падкрэслены", + "textUsers": "Карыстальнікі", "textContextual": "Don't add intervals between paragraphs of the same style", - "textDelete": "Delete", - "textDeleteComment": "Delete Comment", "textDeleted": "Deleted:", - "textDeleteReply": "Delete Reply", - "textDisplayMode": "Display Mode", - "textDone": "Done", - "textDStrikeout": "Double strikeout", - "textEdit": "Edit", - "textEditComment": "Edit Comment", - "textEditReply": "Edit Reply", - "textEditUser": "Users who are editing the file:", - "textEquation": "Equation", - "textExact": "exactly", - "textFinal": "Final", - "textFirstLine": "First line", - "textFormatted": "Formatted", - "textHighlight": "Highlight color", - "textImage": "Image", - "textIndentLeft": "Indent left", - "textIndentRight": "Indent right", "textInserted": "Inserted:", - "textItalic": "Italic", - "textJustify": "Align justified ", - "textKeepLines": "Keep lines together", - "textKeepNext": "Keep with next", - "textLeft": "Align left", - "textLineSpacing": "Line Spacing: ", - "textMarkup": "Markup", - "textMessageDeleteComment": "Do you really want to delete this comment?", - "textMessageDeleteReply": "Do you really want to delete this reply?", - "textMultiple": "multiple", - "textNoBreakBefore": "No page break before", - "textNoChanges": "There are no changes.", - "textNoComments": "This document doesn't contain comments", - "textNoContextual": "Add interval between paragraphs of the same style", - "textNoKeepLines": "Don't keep lines together", - "textNoKeepNext": "Don't keep with next", - "textNot": "Not ", "textNoWidow": "No widow control", - "textNum": "Change numbering", - "textOriginal": "Original", "textParaDeleted": "Paragraph Deleted", - "textParaFormatted": "Paragraph Formatted", "textParaInserted": "Paragraph Inserted", "textParaMoveFromDown": "Moved Down:", "textParaMoveFromUp": "Moved Up:", "textParaMoveTo": "Moved:", - "textPosition": "Position", - "textReject": "Reject", - "textRejectAllChanges": "Reject All Changes", - "textReopen": "Reopen", - "textResolve": "Resolve", - "textReview": "Review", - "textReviewChange": "Review Change", - "textRight": "Align right", - "textShape": "Shape", - "textShd": "Background color", - "textSmallCaps": "Small caps", - "textSpacing": "Spacing", - "textSpacingAfter": "Spacing after", - "textSpacingBefore": "Spacing before", - "textStrikeout": "Strikeout", - "textSubScript": "Subscript", - "textSuperScript": "Superscript", "textTableChanged": "Table Settings Changed", "textTableRowsAdd": "Table Rows Added", "textTableRowsDel": "Table Rows Deleted", - "textTabs": "Change tabs", - "textTrackChanges": "Track Changes", - "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUnderline": "Underline", - "textUsers": "Users", - "textWidow": "Widow control", - "textOk": "Ok" - }, - "ThemeColorPalette": { - "textCustomColors": "Custom Colors", - "textStandartColors": "Standard Colors", - "textThemeColors": "Theme Colors" + "textWidow": "Widow control" }, "HighlightColorPalette": { - "textNoFill": "No Fill" + "textNoFill": "Без заліўкі" + }, + "ThemeColorPalette": { + "textCustomColors": "Адвольныя колеры", + "textStandartColors": "Стандартныя колеры", + "textThemeColors": "Колеры тэмы" } }, "ContextMenu": { - "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add comment", - "menuAddLink": "Add link", - "menuCancel": "Cancel", - "menuDelete": "Delete", - "menuDeleteTable": "Delete Table", - "menuEdit": "Edit", - "menuMerge": "Merge", - "menuMore": "More", - "menuOpenLink": "Open Link", - "menuReview": "Review", - "menuReviewChange": "Review Change", + "errorCopyCutPaste": "Аперацыі капіявання, выразання і ўстаўкі праз кантэкстнае меню будуць выконвацца толькі ў бягучым файле.", + "menuAddComment": "Дадаць каментар", + "menuAddLink": "Дадаць спасылку", + "menuCancel": "Скасаваць", + "menuContinueNumbering": "Працягнуць нумарацыю", + "menuDelete": "Выдаліць", + "menuDeleteTable": "Выдаліць табліцу", + "menuEdit": "Рэдагаваць", + "menuJoinList": "Аб’яднаць з папярэднім спісам", + "menuMerge": "Аб’яднаць", + "menuMore": "Больш", + "menuOpenLink": "Адкрыць спасылку", + "menuReview": "Перагляд", + "menuReviewChange": "Прагляд змен", + "menuSeparateList": "Падзяліць спіс", + "menuStartNewList": "Распачаць новы спіс", + "menuStartNumberingFrom": "Вызначыць першапачатковае значэнне", + "menuViewComment": "Праглядзець каментар", + "textCancel": "Скасаваць", + "textColumns": "Слупкі", + "textCopyCutPasteActions": "Скапіяваць, выразаць, уставіць", + "textNumberingValue": "Пачатковае значэнне", + "textOk": "Добра", + "textRows": "Радкі", "menuSplit": "Split", - "menuViewComment": "View Comment", - "textColumns": "Columns", - "textCopyCutPasteActions": "Copy, Cut and Paste Actions", - "textDoNotShowAgain": "Don't show again", - "textRows": "Rows", - "menuStartNewList": "Start new list", - "menuStartNumberingFrom": "Set numbering value", - "menuContinueNumbering": "Continue numbering", - "menuSeparateList": "Separate list", - "menuJoinList": "Join to previous list", - "textOk": "OK", - "textCancel": "Cancel", - "textNumberingValue": "Numbering Value" + "textDoNotShowAgain": "Don't show again" }, "Edit": { - "notcriticalErrorTitle": "Warning", - "textActualSize": "Actual size", - "textAddCustomColor": "Add custom color", - "textAdditional": "Additional", - "textAdditionalFormatting": "Additional formatting", - "textAddress": "Address", - "textAdvanced": "Advanced", - "textAdvancedSettings": "Advanced settings", - "textAfter": "After", - "textAlign": "Align", - "textAllCaps": "All caps", - "textAllowOverlap": "Allow overlap", - "textAuto": "Auto", - "textAutomatic": "Automatic", - "textBack": "Back", - "textBackground": "Background", - "textBandedColumn": "Banded column", - "textBandedRow": "Banded row", - "textBefore": "Before", - "textBehind": "Behind", - "textBorder": "Border", - "textBringToForeground": "Bring to foreground", - "textBullets": "Bullets", + "notcriticalErrorTitle": "Увага", + "textActualSize": "Актуальны памер", + "textAddCustomColor": "Дадаць адвольны колер", + "textAdditional": "Дадаткова", + "textAdditionalFormatting": "Дадатковае фарматаванне", + "textAddress": "Адрас", + "textAdvanced": "Дадаткова", + "textAdvancedSettings": "Дадатковыя налады", + "textAfter": "Пасля", + "textAlign": "Выраўноўванне", + "textAllCaps": "Усе ў верхнім рэгістры", + "textAllowOverlap": "Дазволіць перакрыццё", + "textApril": "красавік", + "textAugust": "жнівень", + "textAuto": "аўта", + "textAutomatic": "Аўтаматычна", + "textBack": "Назад", + "textBackground": "Фон", + "textBandedColumn": "Чаргаваць слупкі", + "textBandedRow": "Чаргаваць радкі", + "textBefore": "Перад", + "textBorder": "Мяжа", + "textBringToForeground": "Перанесці на пярэдні план", + "textBullets": "Адзнакі", + "textCellMargins": "Палі ячэйкі", + "textChart": "Дыяграма", + "textClose": "Закрыць", + "textColor": "Колер", + "textContinueFromPreviousSection": "Працягнуць", + "textCustomColor": "Адвольны колер", + "textDecember": "Снежань", + "textDesign": "Выгляд", + "textDifferentFirstPage": "Асобны для першай старонкі", + "textDifferentOddAndEvenPages": "Асобныя для цотных і няцотных", + "textDisplay": "Паказаць", + "textDistanceFromText": "Адлегласць да тэксту", + "textDoubleStrikethrough": "Падвойнае закрэсліванне", + "textEditLink": "Рэдагаваць спасылку", + "textEffects": "Эфекты", + "textEmpty": "Пуста", + "textEmptyImgUrl": "Неабходна вызначыць URL-адрас выявы.", + "textFebruary": "Люты", + "textFill": "Заліўка", + "textFirstColumn": "Першы слупок", + "textFlow": "Плаваючая", + "textFontColor": "Колер шрыфту", + "textFontColors": "Колеры шрыфту", + "textFonts": "Шрыфты", + "textFooter": "Ніжні калантытул", + "textFr": "Пт", + "textHeader": "Верхні калантытул", + "textHeaderRow": "Радок загалоўка", + "textHighlightColor": "Колер падсвятлення", + "textHyperlink": "Гіперспасылка", + "textImage": "Выява", + "textImageURL": "URL выявы", + "textInFront": "Перад тэкстам", + "textInline": "У тэксце", + "textJanuary": "Студзень", + "textJuly": "Ліпень", + "textJune": "Чэрвень", + "textKeepLinesTogether": "Не падзяляць абзац", + "textKeepWithNext": "Не адасобліваць ад наступнага", + "textLastColumn": "Апошні слупок", + "textLetterSpacing": "Прамежак", + "textLineSpacing": "Прамежак паміж радкамі", + "textLink": "Спасылка", + "textLinkSettings": "Налады спасылкі", + "textLinkToPrevious": "Звязаць з папярэднім", + "textMarch": "Сакавік", + "textMay": "Травень", + "textMo": "Пн", + "textMoveBackward": "Перамясціць назад", + "textMoveForward": "Перамясціць уперад", + "textMoveWithText": "Перамяшчаць з тэкстам", + "textNone": "Няма", + "textNotUrl": "Гэтае поле мусіць быць URL-адрасам фармату \"http://www.example.com\"", + "textNovember": "Лістапад", + "textNumbers": "Нумарацыя", + "textOctober": "Кастрычнік", + "textOk": "Добра", + "textOpacity": "Непразрыстасць", + "textOptions": "Параметры", + "textOrphanControl": "Кіраванне вісячымі радкамі", + "textPageBreakBefore": "З новай старонкі", + "textPageNumbering": "Нумарацыя старонак", + "textParagraph": "Абзац", + "textParagraphStyles": "Стылі абзаца", + "textPictureFromLibrary": "Выява з бібліятэкі", + "textPictureFromURL": "Выява па URL", + "textPt": "пт", + "textRemoveChart": "Выдаліць дыяграму", + "textRemoveImage": "Выдаліць выяву", + "textRemoveLink": "Выдаліць спасылку", + "textRemoveShape": "Выдаліць фігуру", + "textRemoveTable": "Выдаліць табліцу", + "textReorder": "Перапарадкаваць", + "textRepeatAsHeaderRow": "Паўтараць як загаловак", + "textReplace": "Замяніць", + "textReplaceImage": "Замяніць выяву", + "textResizeToFitContent": "Расцягнуць да памераў змесціва", + "textSa": "Сб", + "textScreenTip": "Падказка", + "textSendToBackground": "Перамясціць у фон", + "textSeptember": "Верасень", + "textSettings": "Налады", + "textShape": "Фігура", + "textSize": "Памер", + "textSmallCaps": "Малыя прапісныя", + "textSpaceBetweenParagraphs": "Прамежак паміж абзацамі", + "textStartAt": "Пачаць з", + "textStrikethrough": "Закрэсліванне", + "textStyle": "Стыль", + "textStyleOptions": "Параметры стылю", + "textSu": "Нд", + "textSubscript": "Падрадковыя", + "textSuperscript": "Надрадковыя", + "textTable": "Табліца", + "textTableOptions": "Параметры табліцы", + "textText": "Тэкст", + "textTh": "Чц", + "textThrough": "Скразное", + "textTight": "Па межах", + "textTopAndBottom": "Уверсе і ўнізе", + "textTotalRow": "Радок вынікаў", + "textTu": "Аў", + "textType": "Тып", + "textWe": "Сер", + "textWrap": "Абцяканне", + "textBehind": "Behind Text", "textBulletsAndNumbers": "Bullets & Numbers", - "textCellMargins": "Cell Margins", - "textChart": "Chart", - "textClose": "Close", - "textColor": "Color", - "textContinueFromPreviousSection": "Continue from previous section", - "textCustomColor": "Custom Color", - "textDifferentFirstPage": "Different first page", - "textDifferentOddAndEvenPages": "Different odd and even pages", - "textDisplay": "Display", - "textDistanceFromText": "Distance from text", - "textDoubleStrikethrough": "Double Strikethrough", - "textEditLink": "Edit Link", - "textEffects": "Effects", - "textEmptyImgUrl": "You need to specify image URL.", - "textFill": "Fill", - "textFirstColumn": "First Column", "textFirstLine": "FirstLine", - "textFlow": "Flow", - "textFontColor": "Font Color", - "textFontColors": "Font Colors", - "textFonts": "Fonts", - "textFooter": "Footer", - "textHeader": "Header", - "textHeaderRow": "Header Row", - "textHighlightColor": "Highlight Color", - "textHyperlink": "Hyperlink", - "textImage": "Image", - "textImageURL": "Image URL", - "textInFront": "In Front", - "textInline": "Inline", - "textKeepLinesTogether": "Keep Lines Together", - "textKeepWithNext": "Keep with Next", - "textLastColumn": "Last Column", - "textLetterSpacing": "Letter Spacing", - "textLineSpacing": "Line Spacing", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkToPrevious": "Link to Previous", - "textMoveBackward": "Move Backward", - "textMoveForward": "Move Forward", - "textMoveWithText": "Move with Text", - "textNone": "None", "textNoStyles": "No styles for this type of charts.", - "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textOpacity": "Opacity", - "textOptions": "Options", - "textOrphanControl": "Orphan Control", - "textPageBreakBefore": "Page Break Before", - "textPageNumbering": "Page Numbering", - "textParagraph": "Paragraph", - "textParagraphStyles": "Paragraph Styles", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textPt": "pt", - "textRemoveChart": "Remove Chart", - "textRemoveImage": "Remove Image", - "textRemoveLink": "Remove Link", - "textRemoveShape": "Remove Shape", - "textRemoveTable": "Remove Table", - "textReorder": "Reorder", - "textRepeatAsHeaderRow": "Repeat as Header Row", - "textReplace": "Replace", - "textReplaceImage": "Replace Image", - "textResizeToFitContent": "Resize to Fit Content", - "textScreenTip": "Screen Tip", "textSelectObjectToEdit": "Select object to edit", - "textSendToBackground": "Send to Background", - "textSettings": "Settings", - "textShape": "Shape", - "textSize": "Size", - "textSmallCaps": "Small Caps", - "textSpaceBetweenParagraphs": "Space Between Paragraphs", - "textSquare": "Square", - "textStartAt": "Start at", - "textStrikethrough": "Strikethrough", - "textStyle": "Style", - "textStyleOptions": "Style Options", - "textSubscript": "Subscript", - "textSuperscript": "Superscript", - "textTable": "Table", - "textTableOptions": "Table Options", - "textText": "Text", - "textThrough": "Through", - "textTight": "Tight", - "textTopAndBottom": "Top and Bottom", - "textTotalRow": "Total Row", - "textType": "Type", - "textWrap": "Wrap", - "textNumbers": "Numbers", - "textDesign": "Design", - "textSu": "Su", - "textMo": "Mo", - "textTu": "Tu", - "textWe": "We", - "textTh": "Th", - "textFr": "Fr", - "textSa": "Sa", - "textJanuary": "January", - "textFebruary": "February", - "textMarch": "March", - "textApril": "April", - "textMay": "May", - "textJune": "June", - "textJuly": "July", - "textAugust": "August", - "textSeptember": "September", - "textOctober": "October", - "textNovember": "November", - "textDecember": "December", - "textEmpty": "Empty", - "textOk": "Ok" + "textSquare": "Square" }, "Error": { - "convertationTimeoutText": "Conversion timeout exceeded.", + "convertationTimeoutText": "Час чакання пераўтварэння сышоў.", + "criticalErrorTitle": "Памылка", + "downloadErrorText": "Не атрымалася спампаваць.", + "errorBadImageUrl": "Хібны URL-адрас выявы", + "errorDatabaseConnection": "Вонкавая памылка.
Памылка злучэння з базай даных. Калі ласка, звярніцеся ў службу падтрымкі.", + "errorDataEncrypted": "Атрыманы зашыфраваныя змены, іх немагчыма расшыфраваць.", + "errorDataRange": "Хібны дыяпазон даных.", + "errorDefaultMessage": "Код памылкі: %1", + "errorKeyEncrypt": "Невядомы дэскрыптар ключа", + "errorKeyExpire": "Тэрмін дзеяння дэскрыптара ключа сышоў", + "errorMailMergeSaveFile": "Не атрымалася аб’яднаць.", + "errorUpdateVersionOnDisconnect": "Злучэнне з інтэрнэтам было адноўлена, і версія файла змянілася.
Перш чым працягнуць працу, неабходна спампаваць файл альбо скапіяваць яго змесціва, каб захаваць даныя, а пасля перазагрузіць старонку.", + "errorUsersExceed": "Перасягнута колькасць карыстальнікаў, дазволеных згодна тарыфу", + "notcriticalErrorTitle": "Увага", + "splitDividerErrorText": "Колькасць радкоў мусіць быць дзельнікам для %1", + "splitMaxColsErrorText": "Колькасць слупкоў павінна быць меншай за %1", + "splitMaxRowsErrorText": "Колькасць радкоў павінна быць меншай за %1", + "unknownErrorText": "Невядомая памылка.", + "uploadImageExtMessage": "Невядомы фармат выявы.", + "uploadImageFileCountMessage": "Выяў не запампавана.", "criticalErrorExtText": "Press 'OK' to go back to the document list.", - "criticalErrorTitle": "Error", - "downloadErrorText": "Download failed.", "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorBadImageUrl": "Image url is incorrect", "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
When you click OK, you will be prompted to download the document.", - "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", - "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", - "errorDataRange": "Incorrect data range.", - "errorDefaultMessage": "Error code: %1", "errorEditingDownloadas": "An error occurred during the work with the document.
Download document to save the file backup copy locally.", "errorFilePassProtect": "The file is password protected and could not be opened.", "errorFileSizeExceed": "The file size exceeds your server limit.
Please, contact your admin.", - "errorKeyEncrypt": "Unknown key descriptor", - "errorKeyExpire": "Key descriptor expired", + "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.", "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
opening price, max price, min price, closing price.", - "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", "errorUserDrop": "The file can't be accessed right now.", - "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download it until the connection is restored and the page is reloaded.", - "notcriticalErrorTitle": "Warning", + "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.", "openErrorText": "An error has occurred while opening the file", "saveErrorText": "An error has occurred while saving the file", "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", - "splitDividerErrorText": "The number of rows must be a divisor of %1", - "splitMaxColsErrorText": "The number of columns must be less than %1", - "splitMaxRowsErrorText": "The number of rows must be less than %1", - "unknownErrorText": "Unknown error.", - "uploadImageExtMessage": "Unknown image format.", - "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "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...", - "applyChangesTitleText": "Loading Data", - "downloadMergeText": "Downloading...", - "downloadMergeTitle": "Downloading", - "downloadTextText": "Downloading document...", - "downloadTitleText": "Downloading Document", - "loadFontsTextText": "Loading data...", - "loadFontsTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadFontTitleText": "Loading Data", - "loadImagesTextText": "Loading images...", - "loadImagesTitleText": "Loading Images", - "loadImageTextText": "Loading image...", - "loadImageTitleText": "Loading Image", - "loadingDocumentTextText": "Loading document...", - "loadingDocumentTitleText": "Loading document", - "mailMergeLoadFileText": "Loading Data Source...", - "mailMergeLoadFileTitle": "Loading Data Source", - "openTextText": "Opening document...", - "openTitleText": "Opening Document", - "printTextText": "Printing document...", - "printTitleText": "Printing Document", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "saveTextText": "Saving document...", - "saveTitleText": "Saving Document", - "sendMergeText": "Sending Merge...", - "sendMergeTitle": "Sending Merge", - "textLoadingDocument": "Loading document", - "txtEditingMode": "Set editing mode...", - "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait..." + "applyChangesTextText": "Загрузка даных…", + "applyChangesTitleText": "Загрузка даных", + "downloadMergeText": "Спампоўванне...", + "downloadMergeTitle": "Спампоўванне", + "downloadTextText": "Спампоўванне дакумента...", + "downloadTitleText": "Спампоўванне дакумента", + "loadFontsTextText": "Загрузка даных…", + "loadFontsTitleText": "Загрузка даных", + "loadFontTextText": "Загрузка даных…", + "loadFontTitleText": "Загрузка даных", + "loadImagesTextText": "Загрузка выяў…", + "loadImagesTitleText": "Загрузка выяў", + "loadImageTextText": "Загрузка выявы…", + "loadImageTitleText": "Загрузка выявы", + "loadingDocumentTextText": "Загрузка дакумента…", + "loadingDocumentTitleText": "Загрузка дакумента", + "mailMergeLoadFileText": "Загрузка крыніцы даных…", + "mailMergeLoadFileTitle": "Загрузка крыніцы даных", + "openTextText": "Адкрыццё дакумента…", + "openTitleText": "Адкрыццё дакумента", + "printTextText": "Друкаванне дакумента…", + "printTitleText": "Друкаванне дакумента", + "savePreparingText": "Падрыхтоўка да захавання", + "savePreparingTitle": "Падрыхтоўка да захавання. Калі ласка, пачакайце…", + "saveTextText": "Захаванне дакумента…", + "saveTitleText": "Захаванне дакумента", + "sendMergeText": "Адпраўленне вынікаў аб’яднання…", + "sendMergeTitle": "Адпраўленне вынікаў аб’яднання", + "textLoadingDocument": "Загрузка дакумента", + "txtEditingMode": "Актывацыя рэжыму рэдагавання…", + "uploadImageTextText": "Запампоўванне выявы…", + "uploadImageTitleText": "Запампоўванне выявы", + "waitText": "Калі ласка, пачакайце..." }, "Main": { - "criticalErrorTitle": "Error", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your administrator.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "errorProcessSaveResult": "Saving failed.", - "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "notcriticalErrorTitle": "Warning", + "criticalErrorTitle": "Памылка", + "errorProcessSaveResult": "Не атрымалася захаваць", + "errorServerVersion": "Рэдактар быў абноўлены. Старонка перазагрузіцца, каб ужыць змены.", + "errorUpdateVersion": "Версія файла была змененая. Старонка будзе перазагружаная.", + "notcriticalErrorTitle": "Увага", "SDK": { + "above": "вышэй", + "below": "ніжэй", + "Caption": "Назва", + "Choose an item": "Абярыце элемент", + "Current Document": "Бягучы дакумент", + "Diagram Title": "Загаловак дыяграмы", + "Enter a date": "Увядзіце дату", + "Error! Bookmark not defined": "Памылка! Закладка не вызначаная.", + "Error! Main Document Only": "Памылка! Толькі асноўны дакумент.", + "Error! No text of specified style in document": "Памылка! У дакуменце адсутнічае тэкст пазначанага стылю.", + "Error! Not a valid bookmark self-reference": "Памылка! Непрыдатная спасылка закладкі.", + "Even Page ": "Цотная старонка", + "First Page ": "Першая старонка", + "Footer": "Ніжні калантытул", + "footnote text": "Тэкст зноскі", + "Header": "Верхні калантытул", + "Heading 1": "Загаловак 1", + "Heading 2": "Загаловак 2", + "Heading 3": "Загаловак 3", + "Heading 4": "Загаловак 4", + "Heading 5": "Загаловак 5", + "Heading 6": "Загаловак 6", + "Heading 7": "Загаловак 7", + "Heading 8": "Загаловак 8", + "Heading 9": "Загаловак 9", + "Hyperlink": "Гіперспасылка", + "Index Too Large": "Індэкс занадта вялікі", + "Intense Quote": "Вылучаная цытата", + "Is Not In Table": "Не ў табліцы", + "List Paragraph": "Абзац спіса", + "Missing Argument": "Аргумент адсутнічае", + "Missing Operator": "Аператар адсутнічае", + "No Spacing": "Без прамежку", + "No table of contents entries found": "У дакуменце няма загалоўкаў. Выкарыстайце стыль загалоўка да тэксту, каб ён з’явіўся ў змесце.", + "None": "Няма", + "Normal": "Звычайны", + "Number Too Large To Format": "Лік занадта вялікі для фарматавання", + "Odd Page ": "Няцотная старонка", + "Quote": "Цытата", + "Same as Previous": "Як папярэдняе", + "Series": "Шэраг", + "Subtitle": "Падзагаловак", + "Syntax Error": "Сінтаксічная памылка", + "Table Index Cannot be Zero": "Індэкс табліцы не можа быць нулём", + "Table of Contents": "Змест", + "The Formula Not In Table": "Формула не ў табліцы", + "Title": "Назва", + "Undefined Bookmark": "Закладка не вызначаная", + "Unexpected End of Formula": "Нечаканае завяршэнне формулы", + "Y Axis": "Вось Y", " -Section ": " -Section ", - "above": "above", - "below": "below", - "Caption": "Caption", - "Choose an item": "Choose an item", "Click to load image": "Click to load image", - "Current Document": "Current Document", - "Diagram Title": "Chart Title", "endnote text": "Endnote Text", - "Enter a date": "Enter a date", - "Error! Bookmark not defined": "Error! Bookmark not defined.", - "Error! Main Document Only": "Error! Main Document Only.", - "Error! No text of specified style in document": "Error! No text of specified style in document.", - "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", - "Even Page ": "Even Page ", - "First Page ": "First Page ", - "Footer": "Footer", - "footnote text": "Footnote Text", - "Header": "Header", - "Heading 1": "Heading 1", - "Heading 2": "Heading 2", - "Heading 3": "Heading 3", - "Heading 4": "Heading 4", - "Heading 5": "Heading 5", - "Heading 6": "Heading 6", - "Heading 7": "Heading 7", - "Heading 8": "Heading 8", - "Heading 9": "Heading 9", - "Hyperlink": "Hyperlink", - "Index Too Large": "Index Too Large", - "Intense Quote": "Intense Quote", - "Is Not In Table": "Is Not In Table", - "List Paragraph": "List Paragraph", - "Missing Argument": "Missing Argument", - "Missing Operator": "Missing Operator", - "No Spacing": "No Spacing", - "No table of contents entries found": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents.", "No table of figures entries found": "No table of figures entries found.", - "None": "None", - "Normal": "Normal", - "Number Too Large To Format": "Number Too Large To Format", - "Odd Page ": "Odd Page ", - "Quote": "Quote", - "Same as Previous": "Same as Previous", - "Series": "Series", - "Subtitle": "Subtitle", - "Syntax Error": "Syntax Error", - "Table Index Cannot be Zero": "Table Index Cannot be Zero", - "Table of Contents": "Table of Contents", "table of figures": "Table of figures", - "The Formula Not In Table": "The Formula Not In Table", - "Title": "Title", "TOC Heading": "TOC Heading", "Type equation here": "Type equation here", - "Undefined Bookmark": "Undefined Bookmark", - "Unexpected End of Formula": "Unexpected End of Formula", "X Axis": "X Axis XAS", - "Y Axis": "Y Axis", "Your text here": "Your text here", "Zero Divide": "Zero Divide" }, - "textAnonymous": "Anonymous", - "textBuyNow": "Visit website", - "textClose": "Close", - "textContactUs": "Contact sales", + "textAnonymous": "Ананімны карыстальнік", + "textBuyNow": "Наведаць сайт", + "textClose": "Закрыць", + "textContactUs": "Аддзел продажаў", + "textGuest": "Госць", + "textHasMacros": "Файл змяшчае макрасы з аўтазапускам.
Хочаце запусціць макрасы?", + "textNo": "Не", + "textNoLicenseTitle": "Ліцэнзійнае абмежаванне", + "textNoTextFound": "Тэкст не знойдзены", + "textPaidFeature": "Платная функцыя", + "textReplaceSkipped": "Заменена. Мінута ўваходжанняў - {0}.", + "textReplaceSuccess": "Пошук завершаны. Заменена ўваходжанняў: {0}", + "textYes": "Так", + "titleLicenseExp": "Тэрмін дзеяння ліцэнзіі сышоў", + "titleServerVersion": "Рэдактар абноўлены", + "titleUpdateVersion": "Версія змянілася", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your administrator.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", - "textGuest": "Guest", - "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", - "textNo": "No", - "textNoLicenseTitle": "License limit reached", - "textPaidFeature": "Paid feature", "textRemember": "Remember my choice", - "textYes": "Yes", - "titleLicenseExp": "License expired", - "titleServerVersion": "Editor updated", - "titleUpdateVersion": "Version changed", "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", - "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
Please contact your administrator to get full access", + "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 this file.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "warnProcessRightsChange": "You don't have permission to edit this file." }, "Settings": { - "advDRMOptions": "Protected File", - "advDRMPassword": "Password", - "advTxtOptions": "Choose TXT Options", - "closeButtonText": "Close File", - "notcriticalErrorTitle": "Warning", + "advDRMOptions": "Абаронены файл", + "advDRMPassword": "Пароль", + "advTxtOptions": "Абраць параметры TXT", + "closeButtonText": "Закрыць файл", + "notcriticalErrorTitle": "Увага", + "textApplication": "Дадатак", + "textApplicationSettings": "Налады праграмы", + "textAuthor": "Аўтар", + "textBack": "Назад", + "textBottom": "Ніжняе", + "textCancel": "Скасаваць", + "textCaseSensitive": "Улічваць рэгістр", + "textCentimeter": "Сантыметр", + "textChooseTxtOptions": "Абраць параметры TXT", + "textCollaboration": "Сумесная праца", + "textColorSchemes": "Каляровыя схемы", + "textComment": "Каментар", + "textComments": "Каментары", + "textCommentsDisplay": "Адлюстраванне каментароў", + "textCreated": "Створаны", + "textCustomSize": "Адвольны памер", + "textDisableAll": "Адключыць усе", + "textDocumentInfo": "Інфармацыя аб дакуменце", + "textDocumentSettings": "Налады дакумента", + "textDocumentTitle": "Назва дакумента", + "textDone": "Завершана", + "textDownload": "Спампаваць", + "textEnableAll": "Уключыць усе", + "textEncoding": "Кадаванне", + "textFind": "Пошук", + "textFindAndReplace": "Пошук і замена", + "textFormat": "Фармат", + "textHelp": "Даведка", + "textHiddenTableBorders": "Схаваныя межы табліц", + "textHighlightResults": "Падсвятліць вынікі", + "textInch": "Цаля", + "textLandscape": "Альбомная", + "textLastModified": "Апошняя змена", + "textLastModifiedBy": "Аўтар апошняй змены", + "textLeft": "Левае", + "textLoading": "Загрузка…", + "textLocation": "Размяшчэнне", + "textMacrosSettings": "Налады макрасаў", + "textMargins": "Палі", + "textMarginsH": "Верхняе і ніжняе палі занадта высокія для вызначанай вышыні старонкі", + "textMarginsW": "Левае і правае поле занадта шырокія для гэтай шырыні старонкі", + "textNoCharacters": "Недрукуемыя сімвалы", + "textNoTextFound": "Тэкст не знойдзены", + "textOk": "Добра", + "textOpenFile": "Каб адкрыць файл, увядзіце пароль", + "textOrientation": "Арыентацыя", + "textOwner": "Уладальнік", + "textPages": "Старонкі", + "textParagraphs": "Абзацы", + "textPoint": "Пункт", + "textPortrait": "Кніжная", + "textPrint": "Друк", + "textReaderMode": "Рэжым чытання", + "textReplace": "Замяніць", + "textReplaceAll": "Замяніць усе", + "textResolvedComments": "Вырашаныя каментары", + "textRight": "Правае", + "textSearch": "Пошук", + "textSettings": "Налады", + "textShowNotification": "Паказваць апавяшчэнне", + "textSpaces": "Прагалы", + "textSpellcheck": "Праверка правапісу", + "textStatistic": "Статыстыка", + "textSubject": "Тэма", + "textSymbols": "Сімвалы", + "textTitle": "Назва", + "textTop": "Верхняе", + "textUnitOfMeasurement": "Адзінкі вымярэння", + "textUploaded": "Запампавана", + "textWords": "Словы", + "txtOk": "Добра", + "txtScheme1": "Офіс", + "txtScheme10": "Звычайная", + "txtScheme11": "Метро", + "txtScheme12": "Модульная", + "txtScheme13": "Прывабная", + "txtScheme14": "Эркер", + "txtScheme15": "Зыходная", + "txtScheme16": "Папяровая", + "txtScheme17": "Сонцаварот", + "txtScheme18": "Тэхнічная", + "txtScheme19": "Трэк", + "txtScheme2": "Адценні шэрага", + "txtScheme20": "Гарадская", + "txtScheme21": "Яркая", + "txtScheme3": "Апекс", + "txtScheme4": "Аспект", + "txtScheme5": "Афіцыйная", + "txtScheme6": "Адкрытая", + "txtScheme7": "Справядлівасць", + "txtScheme8": "Плынь", + "txtScheme9": "Ліцейня", "textAbout": "About", - "textApplication": "Application", - "textApplicationSettings": "Application Settings", - "textAuthor": "Author", - "textBack": "Back", - "textBottom": "Bottom", - "textCancel": "Cancel", - "textCaseSensitive": "Case Sensitive", - "textCentimeter": "Centimeter", - "textCollaboration": "Collaboration", - "textColorSchemes": "Color Schemes", - "textComment": "Comment", - "textComments": "Comments", - "textCommentsDisplay": "Comments Display", - "textCreated": "Created", - "textCustomSize": "Custom Size", - "textDisableAll": "Disable All", + "textChooseEncoding": "Choose Encoding", "textDisableAllMacrosWithNotification": "Disable all macros with notification", "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", - "textDocumentInfo": "Document Info", - "textDocumentSettings": "Document Settings", - "textDocumentTitle": "Document Title", - "textDone": "Done", - "textDownload": "Download", "textDownloadAs": "Download As", "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", - "textEnableAll": "Enable All", "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", - "textEncoding": "Encoding", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", "textFindAndReplaceAll": "Find and Replace All", - "textFormat": "Format", - "textHelp": "Help", - "textHiddenTableBorders": "Hidden Table Borders", - "textHighlightResults": "Highlight Results", - "textInch": "Inch", - "textLandscape": "Landscape", - "textLastModified": "Last Modified", - "textLastModifiedBy": "Last Modified By", - "textLeft": "Left", - "textLoading": "Loading...", - "textLocation": "Location", - "textMacrosSettings": "Macros Settings", - "textMargins": "Margins", - "textMarginsH": "Top and bottom margins are too high for a given page height", - "textMarginsW": "Left and right margins are too wide for a given page width", - "textNoCharacters": "Nonprinting Characters", - "textNoTextFound": "Text not found", - "textOpenFile": "Enter a password to open the file", - "textOrientation": "Orientation", - "textOwner": "Owner", - "textPoint": "Point", - "textPortrait": "Portrait", - "textPrint": "Print", - "textReaderMode": "Reader Mode", - "textReplace": "Replace", - "textReplaceAll": "Replace All", - "textResolvedComments": "Resolved Comments", - "textRight": "Right", - "textSearch": "Search", - "textSettings": "Settings", - "textShowNotification": "Show Notification", - "textSpellcheck": "Spell Checking", - "textStatistic": "Statistic", - "textSubject": "Subject", - "textTitle": "Title", - "textTop": "Top", - "textUnitOfMeasurement": "Unit Of Measurement", - "textUploaded": "Uploaded", + "txtDownloadTxt": "Download TXT", "txtIncorrectPwd": "Password is incorrect", "txtProtected": "Once you enter the password and open the file, the current password will be reset", - "txtScheme1": "Office", - "txtScheme10": "Median", - "txtScheme11": "Metro", - "txtScheme12": "Module", - "txtScheme13": "Opulent", - "txtScheme14": "Oriel", - "txtScheme15": "Origin", - "txtScheme16": "Paper", - "txtScheme17": "Solstice", - "txtScheme18": "Technic", - "txtScheme19": "Trek", - "txtScheme2": "Grayscale", - "txtScheme20": "Urban", - "txtScheme21": "Verve", - "txtScheme22": "New Office", - "txtScheme3": "Apex", - "txtScheme4": "Aspect", - "txtScheme5": "Civic", - "txtScheme6": "Concourse", - "txtScheme7": "Equity", - "txtScheme8": "Flow", - "txtScheme9": "Foundry", - "textOk": "Ok", - "textChooseEncoding": "Choose Encoding", - "textChooseTxtOptions": "Choose TXT Options", - "txtDownloadTxt": "Download TXT", - "txtOk": "Ok", - "textPages": "Pages", - "textParagraphs": "Paragraphs", - "textSpaces": "Spaces", - "textSymbols": "Symbols", - "textWords": "Words" + "txtScheme22": "New Office" }, "Toolbar": { - "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this Page", - "stayButtonText": "Stay on this page" + "dlgLeaveTitleText": "Вы выходзіце з праграмы", + "leaveButtonText": "Сысці са старонкі", + "stayButtonText": "Застацца на старонцы", + "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes." } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/ca.json b/apps/documenteditor/mobile/locale/ca.json index c59d2609f..eff9bb386 100644 --- a/apps/documenteditor/mobile/locale/ca.json +++ b/apps/documenteditor/mobile/locale/ca.json @@ -41,6 +41,7 @@ "textLocation": "Ubicació", "textNextPage": "Pàgina següent", "textOddPage": "Pàgina senar", + "textOk": "D'acord", "textOther": "Altre", "textPageBreak": "Salt de pàgina", "textPageNumber": "Número de pàgina", @@ -53,11 +54,10 @@ "textScreenTip": "Consell de pantalla", "textSectionBreak": "Salt de secció", "textShape": "Forma", - "textStartAt": "Comença a", + "textStartAt": "Inicia a", "textTable": "Taula", "textTableSize": "Mida de la taula", - "txtNotUrl": "Aquest camp hauria de ser un URL amb el format \"http://www.exemple.com\"", - "textOk": "Ok" + "txtNotUrl": "Aquest camp hauria de ser un URL amb el format \"http://www.exemple.com\"" }, "Common": { "Collaboration": { @@ -158,13 +158,13 @@ "textUsers": "Usuaris", "textWidow": "Control de finestra" }, + "HighlightColorPalette": { + "textNoFill": "Sense emplenament" + }, "ThemeColorPalette": { "textCustomColors": "Colors personalitzats", "textStandartColors": "Colors estàndard", "textThemeColors": "Colors del tema" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -208,6 +208,8 @@ "textAlign": "Alineació", "textAllCaps": "Tot en majúscules", "textAllowOverlap": "Permet que se superposin", + "textApril": "abril", + "textAugust": "agost", "textAuto": "Automàtic", "textAutomatic": "Automàtic", "textBack": "Enrere", @@ -215,7 +217,7 @@ "textBandedColumn": "Columna en bandes", "textBandedRow": "Fila en bandes", "textBefore": "Abans", - "textBehind": "Darrere", + "textBehind": "Darrere el text", "textBorder": "Vora", "textBringToForeground": "Porta al primer pla", "textBullets": "Pics", @@ -226,6 +228,8 @@ "textColor": "Color", "textContinueFromPreviousSection": "Continua des de la secció anterior", "textCustomColor": "Color personalitzat", + "textDecember": "desembre", + "textDesign": "Disseny", "textDifferentFirstPage": "Primera pàgina diferent", "textDifferentOddAndEvenPages": "Pàgines senars i parells diferents", "textDisplay": "Visualització", @@ -233,7 +237,9 @@ "textDoubleStrikethrough": "Ratllat doble", "textEditLink": "Edita l'enllaç", "textEffects": "Efectes", + "textEmpty": "Buit", "textEmptyImgUrl": "Cal especificar l'URL de la imatge.", + "textFebruary": "febrer", "textFill": "Emplena", "textFirstColumn": "Primera columna", "textFirstLine": "Primera línia", @@ -242,14 +248,18 @@ "textFontColors": "Colors del tipus de lletra", "textFonts": "Tipus de lletra", "textFooter": "Peu de pàgina", + "textFr": "dv.", "textHeader": "Capçalera", "textHeaderRow": "Fila de capçalera", "textHighlightColor": "Color de ressaltat", "textHyperlink": "Enllaç", "textImage": "Imatge", "textImageURL": "URL de la imatge ", - "textInFront": "Davant", - "textInline": "En línia", + "textInFront": "Davant del text", + "textInline": "En línia amb el text", + "textJanuary": "gener", + "textJuly": "juliol", + "textJune": "juny", "textKeepLinesTogether": "Conserva les línies juntes", "textKeepWithNext": "Segueix amb el següent", "textLastColumn": "Última columna", @@ -258,13 +268,19 @@ "textLink": "Enllaç", "textLinkSettings": "Configuració de l'enllaç", "textLinkToPrevious": "Enllaça-ho amb l'anterior", + "textMarch": "març", + "textMay": "maig", + "textMo": "dl.", "textMoveBackward": "Torna enrere", "textMoveForward": "Ves endavant", "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 un URL amb el format \"http://www.exemple.com\"", + "textNovember": "novembre", "textNumbers": "Nombres", + "textOctober": "octubre", + "textOk": "D'acord", "textOpacity": "Opacitat", "textOptions": "Opcions", "textOrphanControl": "Control de línies orfes", @@ -285,52 +301,36 @@ "textReplace": "Substitueix", "textReplaceImage": "Substitueix la imatge", "textResizeToFitContent": "Canvia la mida per ajustar el contingut", + "textSa": "ds.", "textScreenTip": "Consell de pantalla", "textSelectObjectToEdit": "Selecciona l'objecte a editar", "textSendToBackground": "Envia al fons", + "textSeptember": "setembre", "textSettings": "Configuració", "textShape": "Forma", "textSize": "Mida", "textSmallCaps": "Versaletes", "textSpaceBetweenParagraphs": "Espaiat entre paràgrafs", "textSquare": "Quadrat", - "textStartAt": "Comença a", + "textStartAt": "Inicia a", "textStrikethrough": "Ratllat", "textStyle": "Estil", "textStyleOptions": "Opcions d'estil", + "textSu": "dg.", "textSubscript": "Subíndex", "textSuperscript": "Superíndex", "textTable": "Taula", "textTableOptions": "Opcions de la taula", "textText": "Text", + "textTh": "dj.", "textThrough": "A través", "textTight": "Estret", "textTopAndBottom": "Superior i inferior", "textTotalRow": "Fila de total", + "textTu": "dt.", "textType": "Tipus", - "textWrap": "Ajustament", - "textApril": "April", - "textAugust": "August", - "textDecember": "December", - "textDesign": "Design", - "textEmpty": "Empty", - "textFebruary": "February", - "textFr": "Fr", - "textJanuary": "January", - "textJuly": "July", - "textJune": "June", - "textMarch": "March", - "textMay": "May", - "textMo": "Mo", - "textNovember": "November", - "textOctober": "October", - "textOk": "Ok", - "textSa": "Sa", - "textSeptember": "September", - "textSu": "Su", - "textTh": "Th", - "textTu": "Tu", - "textWe": "We" + "textWe": "dc.", + "textWrap": "Ajustament" }, "Error": { "convertationTimeoutText": "S'ha superat el temps de conversió.", @@ -396,7 +396,7 @@ "printTextText": "S'està imprimint el document...", "printTitleText": "S'està imprimint el document", "savePreparingText": "S'està preparant per desar", - "savePreparingTitle": "S'està preparant per desar. Espera...", + "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ó...", @@ -487,8 +487,11 @@ "textHasMacros": "El fitxer conté macros automàtiques.
Les vols executar?", "textNo": "No", "textNoLicenseTitle": "S'ha assolit el límit de llicència", + "textNoTextFound": "No s'ha trobat el text", "textPaidFeature": "Funció de pagament", "textRemember": "Recorda la meva elecció", + "textReplaceSkipped": "S'ha realitzat la substitució. S'han omès {0} ocurrències.", + "textReplaceSuccess": "S'ha fet la cerca. S'han substituït les coincidències: {0}", "textYes": "Sí", "titleLicenseExp": "La llicència ha caducat", "titleServerVersion": "S'ha actualitzat l'editor", @@ -500,10 +503,7 @@ "warnLicenseUsersExceeded": "Has arribat al límit d'usuari per a %1 editors. Contacta amb el teu administrador per a més informació.", "warnNoLicense": "Has arribat al límit de connexions simultànies a %1 editors. Aquest document només s'obrirà en mode lectura. Contacta amb l'equip de vendes %1 per a les condicions d'una actualització personal.", "warnNoLicenseUsers": "Has arribat al límit d'usuaris per a %1 editors. Contacta amb l'equip de vendes de %1 per obtenir les condicions de millora personals dels teus serveis.", - "warnProcessRightsChange": "No tens permís per editar aquest fitxer.", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "No tens permís per editar aquest fitxer." }, "Settings": { "advDRMOptions": "El fitxer està protegit", diff --git a/apps/documenteditor/mobile/locale/en.json b/apps/documenteditor/mobile/locale/en.json index d8e847909..52bb88ea4 100644 --- a/apps/documenteditor/mobile/locale/en.json +++ b/apps/documenteditor/mobile/locale/en.json @@ -499,7 +499,7 @@ "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", - "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
Please contact your administrator to get full access", + "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.", diff --git a/apps/documenteditor/mobile/locale/es.json b/apps/documenteditor/mobile/locale/es.json index a1e901204..5afbd744d 100644 --- a/apps/documenteditor/mobile/locale/es.json +++ b/apps/documenteditor/mobile/locale/es.json @@ -3,7 +3,7 @@ "textAbout": "Acerca de", "textAddress": "Dirección", "textBack": "Atrás", - "textEmail": "E-mail", + "textEmail": "Correo", "textPoweredBy": "Con tecnología de", "textTel": "Tel", "textVersion": "Versión " @@ -41,6 +41,7 @@ "textLocation": "Ubicación", "textNextPage": "Página siguiente", "textOddPage": "Página impar", + "textOk": "Aceptar", "textOther": "Otros", "textPageBreak": "Salto de página ", "textPageNumber": "Número de página", @@ -56,8 +57,7 @@ "textStartAt": "Empezar con", "textTable": "Tabla", "textTableSize": "Tamaño de tabla", - "txtNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\"", - "textOk": "Ok" + "txtNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\"" }, "Common": { "Collaboration": { @@ -158,13 +158,13 @@ "textUsers": "Usuarios", "textWidow": "Control de viudas" }, + "HighlightColorPalette": { + "textNoFill": "Sin relleno" + }, "ThemeColorPalette": { "textCustomColors": "Colores personalizados", "textStandartColors": "Colores estándar", "textThemeColors": "Colores de tema" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -208,6 +208,8 @@ "textAlign": "Alinear", "textAllCaps": "Mayúsculas", "textAllowOverlap": "Permitir solapamientos", + "textApril": "abril", + "textAugust": "agosto", "textAuto": "Auto", "textAutomatic": "Automático", "textBack": "Atrás", @@ -215,7 +217,7 @@ "textBandedColumn": "Columna con bandas", "textBandedRow": "Fila con bandas", "textBefore": "Antes", - "textBehind": "Detrás", + "textBehind": "Detrás del texto", "textBorder": "Borde", "textBringToForeground": "Traer al primer plano", "textBullets": "Viñetas", @@ -226,6 +228,8 @@ "textColor": "Color", "textContinueFromPreviousSection": "Continuar desde la sección anterior", "textCustomColor": "Color personalizado", + "textDecember": "diciembre", + "textDesign": "Diseño", "textDifferentFirstPage": "Primera página diferente", "textDifferentOddAndEvenPages": "Páginas impares y pares diferentes", "textDisplay": "Mostrar", @@ -233,7 +237,9 @@ "textDoubleStrikethrough": "Doble tachado", "textEditLink": "Editar enlace", "textEffects": "Efectos", + "textEmpty": "Vacío", "textEmptyImgUrl": "Hay que especificar URL de imagen.", + "textFebruary": "febrero", "textFill": "Rellenar", "textFirstColumn": "Primera columna", "textFirstLine": "PrimeraLínea", @@ -242,14 +248,18 @@ "textFontColors": "Colores de fuente", "textFonts": "Fuentes", "textFooter": "Pie de página", + "textFr": "vie.", "textHeader": "Encabezado", "textHeaderRow": "Fila de encabezado", "textHighlightColor": "Color de resaltado", "textHyperlink": "Hiperenlace", "textImage": "Imagen", "textImageURL": "URL de imagen", - "textInFront": "Adelante", - "textInline": "Alineado", + "textInFront": "Delante del texto", + "textInline": "En línea con el texto", + "textJanuary": "enero", + "textJuly": "julio", + "textJune": "junio", "textKeepLinesTogether": "Mantener líneas juntas", "textKeepWithNext": "Mantener con el siguiente", "textLastColumn": "Columna última", @@ -258,13 +268,19 @@ "textLink": "Enlace", "textLinkSettings": "Ajustes de enlace", "textLinkToPrevious": "Vincular al anterior", + "textMarch": "marzo", + "textMay": "mayo", + "textMo": "lu.", "textMoveBackward": "Mover hacia atrás", "textMoveForward": "Moverse hacia adelante", "textMoveWithText": "Mover con texto", "textNone": "Ninguno", "textNoStyles": "No hay estilos para este tipo de gráficos.", "textNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\"", + "textNovember": "noviembre", "textNumbers": "Números", + "textOctober": "octubre", + "textOk": "Aceptar", "textOpacity": "Opacidad ", "textOptions": "Opciones", "textOrphanControl": "Control de líneas huérfanas", @@ -285,9 +301,11 @@ "textReplace": "Reemplazar", "textReplaceImage": "Reemplazar imagen", "textResizeToFitContent": "Cambiar tamaño para ajustar el contenido", + "textSa": "sá.", "textScreenTip": "Consejo de pantalla", "textSelectObjectToEdit": "Seleccionar el objeto para editar", "textSendToBackground": "Enviar al fondo", + "textSeptember": "septiembre", "textSettings": "Ajustes", "textShape": "Forma", "textSize": "Tamaño", @@ -298,39 +316,21 @@ "textStrikethrough": "Tachado", "textStyle": "Estilo", "textStyleOptions": "Opciones de estilo", + "textSu": "do.", "textSubscript": "Subíndice", "textSuperscript": "Superíndice", "textTable": "Tabla", "textTableOptions": "Opciones de tabla", "textText": "Texto", + "textTh": "ju.", "textThrough": "A través", "textTight": "Estrecho", "textTopAndBottom": "Superior e inferior", "textTotalRow": "Fila total", + "textTu": "ma.", "textType": "Tipo", - "textWrap": "Ajuste", - "textApril": "April", - "textAugust": "August", - "textDecember": "December", - "textDesign": "Design", - "textEmpty": "Empty", - "textFebruary": "February", - "textFr": "Fr", - "textJanuary": "January", - "textJuly": "July", - "textJune": "June", - "textMarch": "March", - "textMay": "May", - "textMo": "Mo", - "textNovember": "November", - "textOctober": "October", - "textOk": "Ok", - "textSa": "Sa", - "textSeptember": "September", - "textSu": "Su", - "textTh": "Th", - "textTu": "Tu", - "textWe": "We" + "textWe": "mi.", + "textWrap": "Ajuste" }, "Error": { "convertationTimeoutText": "Tiempo de conversión está superado.", @@ -487,8 +487,11 @@ "textHasMacros": "El archivo contiene macros automáticas.
¿Quiere ejecutar macros?", "textNo": "No", "textNoLicenseTitle": "Se ha alcanzado el límite de licencia", + "textNoTextFound": "Texto no encontrado", "textPaidFeature": "Característica de pago", "textRemember": "Recordar mi elección", + "textReplaceSkipped": "Se ha realizado la sustitución. Se han omitido {0} ocurrencias.", + "textReplaceSuccess": "Se ha realizado la búsqueda. Ocurrencias reemplazadas: {0}", "textYes": "Sí", "titleLicenseExp": "Licencia ha expirado", "titleServerVersion": "Editor ha sido actualizado", @@ -500,10 +503,7 @@ "warnLicenseUsersExceeded": "Ha alcanzado el límite de usuarios para %1 editores. Póngase en contacto con su administrador para saber más.", "warnNoLicense": "Ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización. Póngase en contacto con el equipo de ventas de %1 para conocer las condiciones de actualización personal.", "warnNoLicenseUsers": "Ha alcanzado el límite de usuarios para %1 editores. Póngase en contacto con el equipo de ventas de %1 para conocer las condiciones de actualización personal.", - "warnProcessRightsChange": "No tiene permiso para editar este archivo.", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "No tiene permiso para editar este archivo." }, "Settings": { "advDRMOptions": "Archivo protegido", diff --git a/apps/documenteditor/mobile/locale/fr.json b/apps/documenteditor/mobile/locale/fr.json index 77c0efba9..9ba12ca5d 100644 --- a/apps/documenteditor/mobile/locale/fr.json +++ b/apps/documenteditor/mobile/locale/fr.json @@ -41,6 +41,7 @@ "textLocation": "Emplacement", "textNextPage": "Page suivante", "textOddPage": "Page impaire", + "textOk": "Accepter", "textOther": "Autre", "textPageBreak": "Saut de page", "textPageNumber": "Numéro de page", @@ -56,8 +57,7 @@ "textStartAt": "Commencer par", "textTable": "Tableau", "textTableSize": "Taille du tableau", - "txtNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"", - "textOk": "Ok" + "txtNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"" }, "Common": { "Collaboration": { @@ -158,13 +158,13 @@ "textUsers": "Utilisateurs", "textWidow": "Contrôle des veuves" }, + "HighlightColorPalette": { + "textNoFill": "Pas de remplissage" + }, "ThemeColorPalette": { "textCustomColors": "Couleurs personnalisées", "textStandartColors": "Couleurs standard", "textThemeColors": "Couleurs de thème" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -208,6 +208,8 @@ "textAlign": "Aligner", "textAllCaps": "Majuscules", "textAllowOverlap": "Autoriser le chevauchement", + "textApril": "avril", + "textAugust": "août", "textAuto": "Auto", "textAutomatic": "Automatique", "textBack": "Retour", @@ -215,7 +217,7 @@ "textBandedColumn": "Colonne à bandes", "textBandedRow": "Ligne à bandes", "textBefore": "Avant", - "textBehind": "Derrière", + "textBehind": "Derrière le texte", "textBorder": "Bordure", "textBringToForeground": "Mettre au premier plan", "textBullets": "Puces", @@ -226,6 +228,8 @@ "textColor": "Couleur", "textContinueFromPreviousSection": "Continuer à partir de la section précédente", "textCustomColor": "Couleur personnalisée", + "textDecember": "décembre", + "textDesign": "Design", "textDifferentFirstPage": "Première page différente", "textDifferentOddAndEvenPages": "Pages paires et impaires différentes", "textDisplay": "Afficher", @@ -233,7 +237,9 @@ "textDoubleStrikethrough": "Barré double", "textEditLink": "Modifier le lien", "textEffects": "Effets", + "textEmpty": "Vide", "textEmptyImgUrl": "Spécifiez l'URL de l'image", + "textFebruary": "février", "textFill": "Remplissage", "textFirstColumn": "Première colonne", "textFirstLine": "Première ligne", @@ -242,14 +248,18 @@ "textFontColors": "Couleurs de police", "textFonts": "Polices", "textFooter": "Pied de page", + "textFr": "ven.", "textHeader": "En-tête", "textHeaderRow": "Ligne d’en-tête", "textHighlightColor": "Couleur de surlignage", "textHyperlink": "Lien hypertexte", "textImage": "Image", "textImageURL": "URL d'image", - "textInFront": "Devant", - "textInline": "En ligne", + "textInFront": "Devant le texte", + "textInline": "Aligné sur le texte", + "textJanuary": "janvier", + "textJuly": "juillet", + "textJune": "juin", "textKeepLinesTogether": "Lignes solidaires", "textKeepWithNext": "Paragraphes solidaires", "textLastColumn": "Dernière colonne", @@ -258,13 +268,19 @@ "textLink": "Lien", "textLinkSettings": "Paramètres de lien", "textLinkToPrevious": "Lier au précédent", + "textMarch": "mars", + "textMay": "mai", + "textMo": "lun.", "textMoveBackward": "Déplacer vers l'arrière", "textMoveForward": "Avancer", "textMoveWithText": "Déplacer avec le texte", "textNone": "Aucun", "textNoStyles": "Aucun style pour ce type de graphique.", "textNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"", + "textNovember": "novembre", "textNumbers": "Numérotation", + "textOctober": "octobre", + "textOk": "Accepter", "textOpacity": "Opacité", "textOptions": "Options", "textOrphanControl": "Éviter orphelines", @@ -285,9 +301,11 @@ "textReplace": "Remplacer", "textReplaceImage": "Remplacer l’image", "textResizeToFitContent": "Redimensionner pour adapter au contenu", + "textSa": "sam.", "textScreenTip": "Info-bulle", "textSelectObjectToEdit": "Sélectionnez l'objet à modifier", "textSendToBackground": "Mettre en arrière-plan", + "textSeptember": "septembre", "textSettings": "Paramètres", "textShape": "Forme", "textSize": "Taille", @@ -298,39 +316,21 @@ "textStrikethrough": "Barré", "textStyle": "Style", "textStyleOptions": "Options de style", + "textSu": "dim.", "textSubscript": "Indice", "textSuperscript": "Exposant", "textTable": "Tableau", "textTableOptions": "Options du tableau", "textText": "Texte", + "textTh": "jeu.", "textThrough": "Au travers", "textTight": "Rapproché", "textTopAndBottom": "Haut et bas", "textTotalRow": "Ligne de total", + "textTu": "mar.", "textType": "Type", - "textWrap": "Renvoi à la ligne", - "textApril": "April", - "textAugust": "August", - "textDecember": "December", - "textDesign": "Design", - "textEmpty": "Empty", - "textFebruary": "February", - "textFr": "Fr", - "textJanuary": "January", - "textJuly": "July", - "textJune": "June", - "textMarch": "March", - "textMay": "May", - "textMo": "Mo", - "textNovember": "November", - "textOctober": "October", - "textOk": "Ok", - "textSa": "Sa", - "textSeptember": "September", - "textSu": "Su", - "textTh": "Th", - "textTu": "Tu", - "textWe": "We" + "textWe": "mer.", + "textWrap": "Renvoi à la ligne" }, "Error": { "convertationTimeoutText": "Délai de conversion expiré.", @@ -487,8 +487,11 @@ "textHasMacros": "Le fichier contient des macros automatiques.
Voulez-vous exécuter les macros?", "textNo": "Non", "textNoLicenseTitle": "La limite de la licence est atteinte", + "textNoTextFound": "Texte non trouvé", "textPaidFeature": "Fonction payante", "textRemember": "Se souvenir de mon choix", + "textReplaceSkipped": "Le remplacement a été effectué. {0} occurrences ont été sautées.", + "textReplaceSuccess": "La recherche a été effectuée. Occurrences remplacées : {0}", "textYes": "Oui", "titleLicenseExp": "Licence expirée", "titleServerVersion": "L'éditeur est mis à jour", @@ -500,10 +503,7 @@ "warnLicenseUsersExceeded": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Pour en savoir plus, contactez votre administrateur.", "warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert en lecture seule. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", "warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", - "warnProcessRightsChange": "Vous n'avez pas la permission de modifier ce fichier.", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "Vous n'avez pas la permission de modifier ce fichier." }, "Settings": { "advDRMOptions": "Fichier protégé", diff --git a/apps/documenteditor/mobile/locale/it.json b/apps/documenteditor/mobile/locale/it.json index 9a39925a7..903498de8 100644 --- a/apps/documenteditor/mobile/locale/it.json +++ b/apps/documenteditor/mobile/locale/it.json @@ -41,6 +41,7 @@ "textLocation": "Posizione", "textNextPage": "Pagina successiva", "textOddPage": "Pagina dispari", + "textOk": "OK", "textOther": "Altro", "textPageBreak": "Interruzione di pagina", "textPageNumber": "Numero di pagina", @@ -56,8 +57,7 @@ "textStartAt": "Iniziare da", "textTable": "Tabella", "textTableSize": "Dimensione di tabella", - "txtNotUrl": "Questo campo deve essere un URL nel formato \"http://www.example.com\"", - "textOk": "Ok" + "txtNotUrl": "Questo campo deve essere un URL nel formato \"http://www.example.com\"" }, "Common": { "Collaboration": { @@ -158,13 +158,13 @@ "textUsers": "Utenti", "textWidow": "Controllo vedovo" }, + "HighlightColorPalette": { + "textNoFill": "Nessun riempimento" + }, "ThemeColorPalette": { "textCustomColors": "Colori personalizzati", "textStandartColors": "Colori standard", "textThemeColors": "Colori del tema" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -208,6 +208,8 @@ "textAlign": "Allineare", "textAllCaps": "Tutto maiuscolo", "textAllowOverlap": "Consentire sovrapposizione", + "textApril": "Aprile", + "textAugust": "Agosto", "textAuto": "Auto", "textAutomatic": "Automatico", "textBack": "Indietro", @@ -215,7 +217,7 @@ "textBandedColumn": "Colonne a bande", "textBandedRow": "Righe a bande", "textBefore": "Prima", - "textBehind": "Dietro", + "textBehind": "Dietro al testo", "textBorder": "Bordo", "textBringToForeground": "Portare in primo piano", "textBullets": "Elenchi puntati", @@ -226,6 +228,8 @@ "textColor": "Colore", "textContinueFromPreviousSection": "Continuare dalla sezione precedente", "textCustomColor": "Colore personalizzato", + "textDecember": "Dicembre", + "textDesign": "Design", "textDifferentFirstPage": "Prima pagina diversa", "textDifferentOddAndEvenPages": "Pagine pari e dispari diverse", "textDisplay": "Visualizzare", @@ -233,7 +237,9 @@ "textDoubleStrikethrough": "Barrato doppio", "textEditLink": "Modificare link", "textEffects": "Effetti", + "textEmpty": "Vuoto", "textEmptyImgUrl": "Devi specificare l'URL dell'immagine.", + "textFebruary": "Febbraio", "textFill": "Riempire", "textFirstColumn": "Prima colonna", "textFirstLine": "PrimaLinea", @@ -242,14 +248,18 @@ "textFontColors": "Colori di carattere", "textFonts": "Caratteri", "textFooter": "Piè di pagina", + "textFr": "Ven", "textHeader": "Intestazione", "textHeaderRow": "Riga di intestazione", "textHighlightColor": "Colore di evidenziazione", "textHyperlink": "Collegamento ipertestuale", "textImage": "Immagine", "textImageURL": "URL dell'immagine", - "textInFront": "Davanti", - "textInline": "In linea", + "textInFront": "Davanti al testo", + "textInline": "In linea con il testo", + "textJanuary": "Gennaio", + "textJuly": "Luglio", + "textJune": "Giugno", "textKeepLinesTogether": "Mantenere le linee insieme", "textKeepWithNext": "Mantenere con il successivo", "textLastColumn": "Ultima colonna", @@ -258,13 +268,19 @@ "textLink": "Collegamento", "textLinkSettings": "Impostazioni di collegamento", "textLinkToPrevious": "Collegare al precedente", + "textMarch": "Marzo", + "textMay": "Maggio", + "textMo": "Lun", "textMoveBackward": "Spostare indietro", "textMoveForward": "Spostare avanti", "textMoveWithText": "Spostare con testo", "textNone": "Nessuno", "textNoStyles": "Nessun stile per questo tipo di grafico.", "textNotUrl": "Questo campo deve essere un URL nel formato \"http://www.example.com\"", + "textNovember": "Novembre", "textNumbers": "Numeri", + "textOctober": "Ottobre", + "textOk": "OK", "textOpacity": "Opacità", "textOptions": "Opzioni", "textOrphanControl": "Controllo orfano", @@ -285,9 +301,11 @@ "textReplace": "Sostituire", "textReplaceImage": "Sostituire l'immagine", "textResizeToFitContent": "Ridimensionare per adattare il contenuto", + "textSa": "Sab", "textScreenTip": "Suggerimento su schermo", "textSelectObjectToEdit": "Selezionare un oggetto per modificare", "textSendToBackground": "Spostare in secondo piano", + "textSeptember": "Settembre", "textSettings": "Impostazioni", "textShape": "Forma", "textSize": "Dimensione", @@ -298,39 +316,21 @@ "textStrikethrough": "Barrato", "textStyle": "Stile", "textStyleOptions": "Opzioni di stile", + "textSu": "Dom", "textSubscript": "Pedice", "textSuperscript": "Apice", "textTable": "Tabella", "textTableOptions": "Opzioni di tabella", "textText": "Testo", + "textTh": "Gio", "textThrough": "Attraverso", "textTight": "Stretto", "textTopAndBottom": "Sopra e sotto", "textTotalRow": "Riga totale", + "textTu": "Mar", "textType": "Tipo", - "textWrap": "Avvolgere", - "textApril": "April", - "textAugust": "August", - "textDecember": "December", - "textDesign": "Design", - "textEmpty": "Empty", - "textFebruary": "February", - "textFr": "Fr", - "textJanuary": "January", - "textJuly": "July", - "textJune": "June", - "textMarch": "March", - "textMay": "May", - "textMo": "Mo", - "textNovember": "November", - "textOctober": "October", - "textOk": "Ok", - "textSa": "Sa", - "textSeptember": "September", - "textSu": "Su", - "textTh": "Th", - "textTu": "Tu", - "textWe": "We" + "textWe": "Mer", + "textWrap": "Avvolgere" }, "Error": { "convertationTimeoutText": "È stato superato il tempo massimo della conversione.", @@ -487,8 +487,11 @@ "textHasMacros": "Il file contiene delle macro automatiche.
Vuoi eseguirle?", "textNo": "No", "textNoLicenseTitle": "E' stato raggiunto il limite della licenza", + "textNoTextFound": "Testo non trovato", "textPaidFeature": "Funzionalità a pagamento", "textRemember": "Ricordare la mia scelta", + "textReplaceSkipped": "La sostituzione è stata effettuata. {0} casi sono stati saltati.", + "textReplaceSuccess": "La ricerca è stata effettuata. Casi sostituiti: {0}", "textYes": "Sì", "titleLicenseExp": "La licenza è scaduta", "titleServerVersion": "L'editor è stato aggiornato", @@ -500,10 +503,7 @@ "warnLicenseUsersExceeded": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il tuo amministratore per maggior informazioni.", "warnNoLicense": "Hai raggiunto il limite delle connessioni simultanee agli editor %1. Questo documento sarà aperto solo in modalità di visualizzazione. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", "warnNoLicenseUsers": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", - "warnProcessRightsChange": "Non hai il permesso di modificare questo file.", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "Non hai il permesso di modificare questo file." }, "Settings": { "advDRMOptions": "File protetto", diff --git a/apps/documenteditor/mobile/locale/ja.json b/apps/documenteditor/mobile/locale/ja.json index 9db29d7a6..d139f8b0d 100644 --- a/apps/documenteditor/mobile/locale/ja.json +++ b/apps/documenteditor/mobile/locale/ja.json @@ -208,6 +208,8 @@ "textAlign": "並べる", "textAllCaps": "全ての大字", "textAllowOverlap": "オーバーラップさせる", + "textApril": "4月", + "textAugust": "8月", "textAuto": "自動", "textAutomatic": "自動", "textBack": "戻る", @@ -226,6 +228,7 @@ "textColor": "色", "textContinueFromPreviousSection": "前のセクションから続ける", "textCustomColor": "ユーザー設定の色", + "textDecember": "12月", "textDifferentFirstPage": "先頭ページのみ別指定", "textDifferentOddAndEvenPages": "奇数/偶数ページ別指定", "textDisplay": "表示する", @@ -234,6 +237,7 @@ "textEditLink": "リンクを編集する", "textEffects": "効果", "textEmptyImgUrl": "イメージのURLを指定すべきです。", + "textFebruary": "2月", "textFill": "塗りつぶし", "textFirstColumn": "最初の列", "textFirstLine": "最初の線", @@ -250,6 +254,9 @@ "textImageURL": "イメージURL", "textInFront": "テキストの前に", "textInline": "インライン", + "textJanuary": "1月", + "textJuly": "7月", + "textJune": "6月", "textKeepLinesTogether": "段落を分割しない", "textKeepWithNext": "次の段落と分割しない", "textLastColumn": "最後の列", @@ -258,13 +265,17 @@ "textLink": "リンク", "textLinkSettings": "リンク設定", "textLinkToPrevious": "前に結合する", + "textMarch": "3月", + "textMay": "5月", "textMoveBackward": "背面に動かす", "textMoveForward": "前面に動かす", "textMoveWithText": "テキストと一緒に移動する", "textNone": "なし", "textNoStyles": "このチャットのタイプためにスタイルがない", "textNotUrl": "このフィールドは、「http://www.example.com」の形式のURLである必要があります。", + "textNovember": "11月", "textNumbers": "数", + "textOctober": "10月", "textOpacity": "不透明度", "textOptions": "オプション", "textOrphanControl": "改ページ時 1 行残して段落を区切らない", @@ -288,6 +299,7 @@ "textScreenTip": "ヒント", "textSelectObjectToEdit": "編集するためにオブジェクト​​を選んでください", "textSendToBackground": "背景へ動かす", + "textSeptember": "9月", "textSettings": "設定", "textShape": "形", "textSize": "サイズ", @@ -309,24 +321,12 @@ "textTotalRow": "合計行", "textType": "タイプ", "textWrap": "折り返す", - "textApril": "April", - "textAugust": "August", - "textDecember": "December", "textDesign": "Design", "textEmpty": "Empty", - "textFebruary": "February", "textFr": "Fr", - "textJanuary": "January", - "textJuly": "July", - "textJune": "June", - "textMarch": "March", - "textMay": "May", "textMo": "Mo", - "textNovember": "November", - "textOctober": "October", "textOk": "Ok", "textSa": "Sa", - "textSeptember": "September", "textSu": "Su", "textTh": "Th", "textTu": "Tu", @@ -359,7 +359,7 @@ "errorUpdateVersionOnDisconnect": "インターネット接続が復旧し、ファイルのバージョンが更新されました。
作業を継続する前に、ファイルをダウンロードするか、内容をコピーして、変更が消えてしまわないように確認してから、ページを再びお読み込みしてください。", "errorUserDrop": "今、ファイルにアクセスすることはできません。", "errorUsersExceed": "料金プランで許可されているユーザー数を超えました。", - "errorViewerDisconnect": "接続が失われました。あなたはまだ文書を見えるけど,
接続が復元されたしページが再読み込まれたまで文書をダウンロードと印刷できません。", + "errorViewerDisconnect": "接続が失われました。文書の表示は可能ですが、
再度接続されてページが再ロードされるまで、ダウンロードまたは印刷することはできません。", "notcriticalErrorTitle": " 警告", "openErrorText": "ファイルを開く中にエラーがありました。", "saveErrorText": "ファイルを保存中にエラーがありました。", @@ -494,7 +494,7 @@ "titleServerVersion": "編集者が更新された", "titleUpdateVersion": "バージョンが変更されました", "warnLicenseExceeded": "%1エディター 時接続数の制限に達しました。この文書が見るだけのために開かれる。詳細についてはアドミニストレータを連絡してください。", - "warnLicenseExp": "ライセンスが満期しました。ライセンスを更新し、ページを再びお読み込みしてください。", + "warnLicenseExp": "ライセンスの有効期限が切れています。ライセンスを更新してページをリロードしてください。", "warnLicenseLimitedNoAccess": "ライセンスが満期しました。編集の汎関数にアクセスがありません。アドミンに連絡してください。", "warnLicenseLimitedRenewed": "ライセンスが書き換えすべきです。文書を変更ためのアクセスが制限付きされました。フル アクセスを再接続ためにアドミニストレータを連絡してください。", "warnLicenseUsersExceeded": "%1エディターのユーザー制限に達しました。 詳細についてはアドミニストレータを連絡してください。", diff --git a/apps/documenteditor/mobile/locale/ro.json b/apps/documenteditor/mobile/locale/ro.json index 6aea0dc7a..e97bee31b 100644 --- a/apps/documenteditor/mobile/locale/ro.json +++ b/apps/documenteditor/mobile/locale/ro.json @@ -41,6 +41,7 @@ "textLocation": "Locația", "textNextPage": "Pagina următoare", "textOddPage": "Pagină impară", + "textOk": "OK", "textOther": "Altele", "textPageBreak": "Sfârșit pagină", "textPageNumber": "Număr de pagină", @@ -56,8 +57,7 @@ "textStartAt": "Pornire de la", "textTable": "Tabel", "textTableSize": "Dimensiune tabel", - "txtNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\"", - "textOk": "Ok" + "txtNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\"" }, "Common": { "Collaboration": { @@ -158,13 +158,13 @@ "textUsers": "Utilizatori", "textWidow": "Control văduvă" }, + "HighlightColorPalette": { + "textNoFill": "Fără umplere" + }, "ThemeColorPalette": { "textCustomColors": "Culori particularizate", "textStandartColors": "Culori standard", "textThemeColors": "Culori temă" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -208,6 +208,8 @@ "textAlign": "Aliniere", "textAllCaps": "Cu majuscule", "textAllowOverlap": "Se permite suprapunerea", + "textApril": "Aprilie", + "textAugust": "August", "textAuto": "Auto", "textAutomatic": "Automat", "textBack": "Înapoi", @@ -215,7 +217,7 @@ "textBandedColumn": "Coloana alternantă", "textBandedRow": "Rând alternant", "textBefore": "Înainte", - "textBehind": "În urmă", + "textBehind": "În spatele textului", "textBorder": "Bordura", "textBringToForeground": "Aducere în prim plan", "textBullets": "Marcatori", @@ -226,6 +228,8 @@ "textColor": "Culoare", "textContinueFromPreviousSection": "Continuare din secțiunea anterioară", "textCustomColor": "Culoare particularizată", + "textDecember": "Decembrie", + "textDesign": "Proiectare", "textDifferentFirstPage": "Prima pagina diferită", "textDifferentOddAndEvenPages": "Pagini pare și impare diferite", "textDisplay": "Afișare", @@ -233,7 +237,9 @@ "textDoubleStrikethrough": "Tăiere cu două linii", "textEditLink": "Editare link", "textEffects": "Efecte", + "textEmpty": "Necompletat", "textEmptyImgUrl": "Trebuie specificată adresa URL a imaginii.", + "textFebruary": "Februarie", "textFill": "Umplere", "textFirstColumn": "Prima coloană", "textFirstLine": "Primul rând", @@ -242,14 +248,18 @@ "textFontColors": "Culorile font", "textFonts": "Fonturi", "textFooter": "Subsol", + "textFr": "V", "textHeader": "Antet", "textHeaderRow": "Rândul de antet", "textHighlightColor": "Culoare de evidențiere", "textHyperlink": "Hyperlink", "textImage": "Imagine", "textImageURL": "URL-ul imaginii", - "textInFront": "În prim-plan", - "textInline": "În linie", + "textInFront": "În fața textului", + "textInline": "În linie cu textul", + "textJanuary": "Ianuarie", + "textJuly": "Iulie", + "textJune": "Iunie", "textKeepLinesTogether": "Păstrare linii împreună", "textKeepWithNext": "Păstrare cu următorul", "textLastColumn": "Ultima coloană", @@ -258,13 +268,19 @@ "textLink": "Link", "textLinkSettings": "Configurarea link", "textLinkToPrevious": "Legătură la anteriorul", + "textMarch": "Martie", + "textMay": "Mai", + "textMo": "L", "textMoveBackward": "Mutare în ultimul plan", "textMoveForward": "Mutare înainte", "textMoveWithText": "Mutare odată cu textul", "textNone": "Niciunul", "textNoStyles": "Niciun stil pentru acest tip de diagramă.", "textNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\"", + "textNovember": "Noiembrie", "textNumbers": "Numere", + "textOctober": "Octombrie", + "textOk": "OK", "textOpacity": "Transparență", "textOptions": "Opțiuni", "textOrphanControl": "Control orfan", @@ -285,9 +301,11 @@ "textReplace": "Înlocuire", "textReplaceImage": "Înlocuire imagine", "textResizeToFitContent": "Potrivire conținut", + "textSa": "S", "textScreenTip": "Sfaturi ecran", "textSelectObjectToEdit": "Selectați obiectul pentru editare", "textSendToBackground": "Trimitere în plan secundar", + "textSeptember": "Septembrie", "textSettings": "Setări", "textShape": "Forma", "textSize": "Dimensiune", @@ -298,39 +316,21 @@ "textStrikethrough": "Tăiere cu o linie", "textStyle": "Stil", "textStyleOptions": "Opțiuni de stil", + "textSu": "D", "textSubscript": "Indice", "textSuperscript": "Exponent", "textTable": "Tabel", "textTableOptions": "Opțiuni tabel", "textText": "Text", + "textTh": "J", "textThrough": "Printre", "textTight": "Strâns", "textTopAndBottom": "Sus și jos", "textTotalRow": "Rând total", + "textTu": "Ma", "textType": "Tip", - "textWrap": "Încadrare", - "textApril": "April", - "textAugust": "August", - "textDecember": "December", - "textDesign": "Design", - "textEmpty": "Empty", - "textFebruary": "February", - "textFr": "Fr", - "textJanuary": "January", - "textJuly": "July", - "textJune": "June", - "textMarch": "March", - "textMay": "May", - "textMo": "Mo", - "textNovember": "November", - "textOctober": "October", - "textOk": "Ok", - "textSa": "Sa", - "textSeptember": "September", - "textSu": "Su", - "textTh": "Th", - "textTu": "Tu", - "textWe": "We" + "textWe": "Mi", + "textWrap": "Încadrare" }, "Error": { "convertationTimeoutText": "Timpul de așteptare pentru conversie a expirat.", @@ -487,8 +487,11 @@ "textHasMacros": "Fișierul conține macrocomenzi.
Doriți să le rulați?", "textNo": "Nu", "textNoLicenseTitle": "Ați atins limita stabilită de licență", + "textNoTextFound": "Textul nu a fost găsit", "textPaidFeature": "Funcția contra plată", "textRemember": "Reține opțiunea mea", + "textReplaceSkipped": "A avut loc o înlocuire. {0} apariții ignorate.", + "textReplaceSuccess": "Căutarea a fost finalizată. Înlocuiri: {0}", "textYes": "Da", "titleLicenseExp": "Licența a expirat", "titleServerVersion": "Editorul a fost actualizat", @@ -500,10 +503,7 @@ "warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori ai %1 editoare. Pentru detalii, contactați administratorul dvs.", "warnNoLicense": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare. Contactați %1 Departamentul de Vânzări pentru acordarea condițiilor personale de actualizare.", "warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori ai %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.", - "warnProcessRightsChange": "Nu aveți permisiunea de editare pentru fișier.", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "Nu aveți permisiunea de editare pentru fișier." }, "Settings": { "advDRMOptions": "Fișierul protejat", diff --git a/apps/documenteditor/mobile/locale/ru.json b/apps/documenteditor/mobile/locale/ru.json index 6e66d429f..6e017238e 100644 --- a/apps/documenteditor/mobile/locale/ru.json +++ b/apps/documenteditor/mobile/locale/ru.json @@ -229,6 +229,7 @@ "textContinueFromPreviousSection": "Продолжить", "textCustomColor": "Пользовательский цвет", "textDecember": "Декабрь", + "textDesign": "Дизайн", "textDifferentFirstPage": "Особый для первой страницы", "textDifferentOddAndEvenPages": "Разные для четных и нечетных", "textDisplay": "Отобразить", @@ -236,6 +237,7 @@ "textDoubleStrikethrough": "Двойное зачёркивание", "textEditLink": "Редактировать ссылку", "textEffects": "Эффекты", + "textEmpty": "Пусто", "textEmptyImgUrl": "Необходимо указать URL рисунка.", "textFebruary": "Февраль", "textFill": "Заливка", @@ -328,9 +330,7 @@ "textTu": "Вт", "textType": "Тип", "textWe": "Ср", - "textWrap": "Стиль обтекания", - "textDesign": "Design", - "textEmpty": "Empty" + "textWrap": "Стиль обтекания" }, "Error": { "convertationTimeoutText": "Превышено время ожидания конвертации.", diff --git a/apps/documenteditor/mobile/locale/tr.json b/apps/documenteditor/mobile/locale/tr.json index c9f2ddbcf..4bb1435bf 100644 --- a/apps/documenteditor/mobile/locale/tr.json +++ b/apps/documenteditor/mobile/locale/tr.json @@ -208,6 +208,8 @@ "textAlign": "Hizala", "textAllCaps": "Tümü büyük harf", "textAllowOverlap": "Çakışmaya izin ver", + "textApril": "Nisan", + "textAugust": "Ağustos", "textAuto": "Otomatik", "textAutomatic": "Otomatik", "textBack": "Geri", @@ -226,6 +228,8 @@ "textColor": "Renk", "textContinueFromPreviousSection": "Önceki bölümden devam et", "textCustomColor": "Özel Renk", + "textDecember": "Aralık", + "textDesign": "Tasarım", "textDifferentFirstPage": "Farklı ilk sayfa", "textDifferentOddAndEvenPages": "Farklı tek ve çift sayfalar", "textDisplay": "Görüntüle", @@ -309,10 +313,6 @@ "textTotalRow": "Toplam Satır", "textType": "Tip", "textWrap": "Metni Kaydır", - "textApril": "April", - "textAugust": "August", - "textDecember": "December", - "textDesign": "Design", "textEmpty": "Empty", "textFebruary": "February", "textFr": "Fr", @@ -334,7 +334,7 @@ }, "Error": { "convertationTimeoutText": "Değişim süresi aşıldı.", - "criticalErrorExtText": "Belge listesine geri dönmek için 'Tamam'a basın.", + "criticalErrorExtText": "Belge listesine geri dönmek için 'OK'a basın.", "criticalErrorTitle": "Hata", "downloadErrorText": "İndirme başarısız oldu.", "errorAccessDeny": "Haklarınız olmayan bir işlemi gerçekleştirmeye çalışıyorsunuz.
Lütfen yöneticinizle iletişime geçin.", diff --git a/apps/documenteditor/mobile/locale/uk.json b/apps/documenteditor/mobile/locale/uk.json index a33c05493..48a560ac7 100644 --- a/apps/documenteditor/mobile/locale/uk.json +++ b/apps/documenteditor/mobile/locale/uk.json @@ -1,145 +1,147 @@ { "About": { - "textAbout": "About", - "textAddress": "Address", - "textBack": "Back", + "textAbout": "Про програму", + "textAddress": "Адреса", + "textBack": "Назад", "textEmail": "Email", - "textPoweredBy": "Powered By", + "textPoweredBy": "Розроблено", "textTel": "Tel", "textVersion": "Version" }, "Add": { + "textAddLink": "Додати посилання", + "textAddress": "Адреса", + "textBack": "Назад", + "textBelowText": "Під текстом", + "textBottomOfPage": "Внизу сторінки", + "textBreak": "Розрив", + "textCancel": "Відміна", + "textCenterBottom": "Знизу по центру", + "textCenterTop": "Зверху по центру", + "textColumnBreak": "Розрив стовпчика", + "textColumns": "Стовпчики", + "textComment": "Коментар", + "textContinuousPage": "На поточній сторінці", + "textCurrentPosition": "Поточна позиція", + "textDisplay": "Показ", + "textEvenPage": "З парної сторінки", + "textFootnote": "Виноска", + "textFormat": "Формат", + "textImage": "Зображення", + "textImageURL": "URL зображення", + "textInsert": "Вставити", + "textInsertFootnote": "Вставити виноску", + "textInsertImage": "Вставити зображення", + "textLeftBottom": "Зліва знизу", + "textLeftTop": "Зліва зверху", + "textLink": "Посилання", + "textLinkSettings": "Налаштування посилання", + "textLocation": "Розташування", + "textNextPage": "Наступна сторінка", + "textOddPage": "З непарної сторінки", + "textOk": "Ок", + "textOther": "Інше", + "textPageBreak": "Розрив сторінки", + "textPageNumber": "Номер сторінки", + "textPictureFromLibrary": "Зображення з бібліотеки", + "textPictureFromURL": "Зображення з URL", + "textPosition": "Положення", + "textRightBottom": "Праворуч внизу", + "textRightTop": "Праворуч зверху", + "textRows": "Рядки", + "textScreenTip": "Підказка", + "textSectionBreak": "Розрив розділу", "notcriticalErrorTitle": "Warning", - "textAddLink": "Add link", - "textAddress": "Address", - "textBack": "Back", - "textBelowText": "Below text", - "textBottomOfPage": "Bottom of page", - "textBreak": "Break", - "textCancel": "Cancel", - "textCenterBottom": "Center Bottom", - "textCenterTop": "Center Top", - "textColumnBreak": "Column Break", - "textColumns": "Columns", - "textComment": "Comment", - "textContinuousPage": "Continuous Page", - "textCurrentPosition": "Current Position", - "textDisplay": "Display", "textEmptyImgUrl": "You need to specify image URL.", - "textEvenPage": "Even Page", - "textFootnote": "Footnote", - "textFormat": "Format", - "textImage": "Image", - "textImageURL": "Image URL", - "textInsert": "Insert", - "textInsertFootnote": "Insert Footnote", - "textInsertImage": "Insert Image", - "textLeftBottom": "Left Bottom", - "textLeftTop": "Left Top", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLocation": "Location", - "textNextPage": "Next Page", - "textOddPage": "Odd Page", - "textOther": "Other", - "textPageBreak": "Page Break", - "textPageNumber": "Page Number", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textPosition": "Position", - "textRightBottom": "Right Bottom", - "textRightTop": "Right Top", - "textRows": "Rows", - "textScreenTip": "Screen Tip", - "textSectionBreak": "Section Break", "textShape": "Shape", "textStartAt": "Start At", "textTable": "Table", "textTableSize": "Table Size", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textOk": "Ok" + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" }, "Common": { "Collaboration": { + "textAccept": "Прийняти", + "textAcceptAllChanges": "Прийняти всі зміни", + "textAddComment": "Додати коментар", + "textAddReply": "Додати відповідь", + "textAllChangesAcceptedPreview": "Усі зміни прийняті (перегляд)", + "textAllChangesEditing": "Всі зміни (редагування)", + "textAllChangesRejectedPreview": "Усі зміни відхилено (перегляд)", + "textAtLeast": "мінімально", + "textAuto": "авто", + "textBack": "Назад", + "textBaseline": "Базова лінія", + "textBold": "Напівжирний", + "textBreakBefore": "З нової сторінки", + "textCancel": "Скасувати", + "textCaps": "Всі великі", + "textCenter": "По центру", + "textChart": "Діаграма", + "textCollaboration": "Спільна робота", + "textColor": "Колір шрифту", + "textComments": "Коментарі", + "textContextual": "Не додавати інтервал між абзацами одного стилю", + "textDelete": "Видалити", + "textDeleteComment": "Видалити коментар", + "textDeleted": "Видалено:", + "textDeleteReply": "Видалити відповідь", + "textDisplayMode": "Режим показу", + "textDone": "Готово", + "textDStrikeout": "Подвійне закреслення", + "textEdit": "Редагувати", + "textEditComment": "Редагувати коментар", + "textEditReply": "Редагувати відповідь", + "textEquation": "Рівняння", + "textExact": "точно", + "textFinal": "Змінений документ", + "textFirstLine": "Перший рядок", + "textFormatted": "Відформатовано", + "textHighlight": "Колір виділення", + "textImage": "Зображення", + "textIndentLeft": "Відступ зліва", + "textIndentRight": "Відступ праворуч", + "textInserted": "Додано:", + "textItalic": "Курсив", + "textJustify": "По ширині", + "textKeepLines": "Не розривати абзац", + "textKeepNext": "Не відривати від наступного", + "textLeft": "По лівому краю", + "textLineSpacing": "Міжрядковий інтервал:", + "textMarkup": "Зміни", + "textMessageDeleteComment": "Ви дійсно хочете видалити цей коментар?", + "textMessageDeleteReply": "Ви дійсно хочете видалити цю відповідь?", + "textMultiple": "множник", + "textNoBreakBefore": "Не з нової сторінки", + "textNoContextual": "Додавати інтервал між абзацами одного стилю", + "textNoKeepLines": "Дозволити розриви абзацу", + "textNoKeepNext": "Дозволити розрив з наступного", + "textNot": "Не", + "textNoWidow": "Дозволено висячі рядки", + "textNum": "Зміна нумерації", + "textOk": "Ок", + "textOriginal": "Початковий документ", + "textParaDeleted": "Абзац видалено", + "textParaFormatted": "Абзац відформатовано", + "textParaInserted": "Абзац вставлено", + "textParaMoveFromDown": "Переміщено вниз:", + "textParaMoveFromUp": "Переміщено вверх:", + "textParaMoveTo": "Переміщено:", + "textPosition": "Положення", + "textReject": "Відхилити", + "textRejectAllChanges": "Відхилити усі зміни", + "textReopen": "Відкрити знову", + "textResolve": "Вирішити", + "textReview": "Рецензування", + "textReviewChange": "Перегляд змін", + "textRight": "По правому краю", + "textShd": "Колір фону", + "textTabs": "Зміна табуляції", "notcriticalErrorTitle": "Warning", - "textAccept": "Accept", - "textAcceptAllChanges": "Accept all changes", - "textAddComment": "Add comment", - "textAddReply": "Add reply", - "textAllChangesAcceptedPreview": "All changes accepted (Preview)", - "textAllChangesEditing": "All changes (Editing)", - "textAllChangesRejectedPreview": "All changes rejected (Preview)", - "textAtLeast": "at least", - "textAuto": "auto", - "textBack": "Back", - "textBaseline": "Baseline", - "textBold": "Bold", - "textBreakBefore": "Page break before", - "textCancel": "Cancel", - "textCaps": "All caps", - "textCenter": "Align center", - "textChart": "Chart", - "textCollaboration": "Collaboration", - "textColor": "Font color", - "textComments": "Comments", - "textContextual": "Don't add intervals between paragraphs of the same style", - "textDelete": "Delete", - "textDeleteComment": "Delete Comment", - "textDeleted": "Deleted:", - "textDeleteReply": "Delete Reply", - "textDisplayMode": "Display Mode", - "textDone": "Done", - "textDStrikeout": "Double strikeout", - "textEdit": "Edit", - "textEditComment": "Edit Comment", - "textEditReply": "Edit Reply", "textEditUser": "Users who are editing the file:", - "textEquation": "Equation", - "textExact": "exactly", - "textFinal": "Final", - "textFirstLine": "First line", - "textFormatted": "Formatted", - "textHighlight": "Highlight color", - "textImage": "Image", - "textIndentLeft": "Indent left", - "textIndentRight": "Indent right", - "textInserted": "Inserted:", - "textItalic": "Italic", - "textJustify": "Align justified ", - "textKeepLines": "Keep lines together", - "textKeepNext": "Keep with next", - "textLeft": "Align left", - "textLineSpacing": "Line Spacing: ", - "textMarkup": "Markup", - "textMessageDeleteComment": "Do you really want to delete this comment?", - "textMessageDeleteReply": "Do you really want to delete this reply?", - "textMultiple": "multiple", - "textNoBreakBefore": "No page break before", "textNoChanges": "There are no changes.", "textNoComments": "This document doesn't contain comments", - "textNoContextual": "Add interval between paragraphs of the same style", - "textNoKeepLines": "Don't keep lines together", - "textNoKeepNext": "Don't keep with next", - "textNot": "Not ", - "textNoWidow": "No widow control", - "textNum": "Change numbering", - "textOriginal": "Original", - "textParaDeleted": "Paragraph Deleted", - "textParaFormatted": "Paragraph Formatted", - "textParaInserted": "Paragraph Inserted", - "textParaMoveFromDown": "Moved Down:", - "textParaMoveFromUp": "Moved Up:", - "textParaMoveTo": "Moved:", - "textPosition": "Position", - "textReject": "Reject", - "textRejectAllChanges": "Reject All Changes", - "textReopen": "Reopen", - "textResolve": "Resolve", - "textReview": "Review", - "textReviewChange": "Review Change", - "textRight": "Align right", "textShape": "Shape", - "textShd": "Background color", "textSmallCaps": "Small caps", "textSpacing": "Spacing", "textSpacingAfter": "Spacing after", @@ -150,143 +152,160 @@ "textTableChanged": "Table Settings Changed", "textTableRowsAdd": "Table Rows Added", "textTableRowsDel": "Table Rows Deleted", - "textTabs": "Change tabs", "textTrackChanges": "Track Changes", "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "textUnderline": "Underline", "textUsers": "Users", - "textWidow": "Widow control", - "textOk": "Ok" - }, - "ThemeColorPalette": { - "textCustomColors": "Custom Colors", - "textStandartColors": "Standard Colors", - "textThemeColors": "Theme Colors" + "textWidow": "Widow control" }, "HighlightColorPalette": { - "textNoFill": "No Fill" + "textNoFill": "Без заливки" + }, + "ThemeColorPalette": { + "textCustomColors": "Користувальницькі кольори", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" } }, "ContextMenu": { - "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add comment", - "menuAddLink": "Add link", - "menuCancel": "Cancel", - "menuDelete": "Delete", - "menuDeleteTable": "Delete Table", - "menuEdit": "Edit", - "menuMerge": "Merge", - "menuMore": "More", - "menuOpenLink": "Open Link", - "menuReview": "Review", - "menuReviewChange": "Review Change", + "errorCopyCutPaste": "Операції копіювання, вирізання та вставки за допомогою контекстного меню виконуватимуться лише у поточному файлі.", + "menuAddComment": "Додати коментар", + "menuAddLink": "Додати посилання", + "menuCancel": "Скасувати", + "menuContinueNumbering": "Продовжити нумерацію", + "menuDelete": "Видалити", + "menuDeleteTable": "Видалити таблицю", + "menuEdit": "Редагувати", + "menuJoinList": "Об'єднати з попереднім списком", + "menuMerge": "Об'єднати", + "menuMore": "Більше", + "menuOpenLink": "Відкрити посилання", + "menuReview": "Рецензування", + "menuReviewChange": "Перегляд змін", + "textCancel": "Скасувати", + "textColumns": "Стовпчики", + "textCopyCutPasteActions": "Дії копіювання, вирізки та вставки", + "textDoNotShowAgain": "Більше не показувати", + "textNumberingValue": "Початкове значення", + "textOk": "Ок", + "textRows": "Рядки", + "menuSeparateList": "Separate list", "menuSplit": "Split", - "menuViewComment": "View Comment", - "textColumns": "Columns", - "textCopyCutPasteActions": "Copy, Cut and Paste Actions", - "textDoNotShowAgain": "Don't show again", - "textRows": "Rows", "menuStartNewList": "Start new list", "menuStartNumberingFrom": "Set numbering value", - "menuContinueNumbering": "Continue numbering", - "menuSeparateList": "Separate list", - "menuJoinList": "Join to previous list", - "textOk": "OK", - "textCancel": "Cancel", - "textNumberingValue": "Numbering Value" + "menuViewComment": "View Comment" }, "Edit": { + "textActualSize": "Реальний розмір", + "textAddCustomColor": "Додати власний колір", + "textAdditional": "Додатково", + "textAdditionalFormatting": "Додатково", + "textAddress": "Адреса", + "textAdvanced": "Додатково", + "textAdvancedSettings": "Додатково", + "textAfter": "Після", + "textAlign": "Вирівнювання", + "textAllCaps": "Всі великі", + "textAllowOverlap": "Дозволити перекриття", + "textApril": "Квітень", + "textAugust": "Серпень", + "textAuto": "Авто", + "textAutomatic": "Автоматичний", + "textBack": "Назад", + "textBackground": "Фон", + "textBandedColumn": "Чергувати стовпчики", + "textBandedRow": "Чергувати рядки", + "textBefore": "Перед", + "textBehind": "За текстом", + "textBorder": "Межа", + "textBringToForeground": "Перенести на передній план", + "textBullets": "Маркери", + "textBulletsAndNumbers": "Маркери та нумерація", + "textCellMargins": "Поля клітинки", + "textChart": "Діаграма", + "textClose": "Закрити", + "textColor": "Колір", + "textContinueFromPreviousSection": "Продовжити", + "textCustomColor": "Користувальницький колір", + "textDecember": "Грудень", + "textDesign": "Вигляд", + "textDifferentFirstPage": "Особливий для першої сторінки", + "textDifferentOddAndEvenPages": "Різні для парних та непарних", + "textDisplay": "Показ", + "textDistanceFromText": "Відстань до тексту", + "textDoubleStrikethrough": "Подвійне перекреслення", + "textEditLink": "Редагувати посилання", + "textEffects": "Ефекти", + "textEmpty": "Пуста", + "textFebruary": "Лютий", + "textFill": "Заливка", + "textFirstColumn": "Перший стовпчик", + "textFirstLine": "Перший рядок", + "textFlow": "Плавучий", + "textFontColor": "Колір шрифту", + "textFontColors": "Кольори шрифту", + "textFonts": "Шрифти", + "textFooter": "Колонтитул", + "textFr": "Пт", + "textHeader": "Колонтитул", + "textHeaderRow": "Рядок заголовка", + "textHighlightColor": "Колір виділення", + "textHyperlink": "Гіперпосилання", + "textImage": "Зображення", + "textImageURL": "URL зображення", + "textInFront": "Перед текстом", + "textInline": "В тексті", + "textJanuary": "Січень", + "textJuly": "Липень", + "textJune": "Червень", + "textKeepLinesTogether": "Не розривати абзац", + "textKeepWithNext": "Не відривати від наступного", + "textLastColumn": "Останній стовпчик", + "textLetterSpacing": "Інтервал", + "textLineSpacing": "Міжрядковий інтервал", + "textLink": "Посилання", + "textLinkSettings": "Налаштування посилання", + "textLinkToPrevious": "З'єднати з попереднім", + "textMarch": "Березень", + "textMay": "Травень", + "textMo": "Пн", + "textMoveBackward": "Перемістити назад", + "textMoveForward": "Перемістити вперед", + "textMoveWithText": "Перемістити з текстом", + "textNone": "Немає", + "textNoStyles": "Для цього типу діаграм немає стилів.", + "textNovember": "Листопад", + "textNumbers": "Нумерація", + "textOctober": "Жовтень", + "textOk": "Ок", + "textOpacity": "Непрозорість", + "textOptions": "Параметри", + "textOrphanControl": "Заборона висячих рядків", + "textPageBreakBefore": "З нової сторінки", + "textPageNumbering": "Нумерація сторінок", + "textParagraph": "Абзац", + "textParagraphStyles": "Стилі абзацу", + "textPictureFromLibrary": "Зображення з бібліотеки", + "textPictureFromURL": "Зображення з URL", + "textPt": "Пт", + "textRemoveChart": "Видалити діаграму", + "textRemoveImage": "Видалити зображення", + "textRemoveLink": "Видалити посилання", + "textRemoveShape": "Видалити форму", + "textRemoveTable": "Видалити таблицю", + "textReorder": "Порядок", + "textRepeatAsHeaderRow": "Повторювати як заголовок", + "textReplace": "Замінити", + "textReplaceImage": "Замінити зображення", + "textResizeToFitContent": "За розміром вмісту", + "textSa": "Сб", + "textScreenTip": "Підказка", "notcriticalErrorTitle": "Warning", - "textActualSize": "Actual size", - "textAddCustomColor": "Add custom color", - "textAdditional": "Additional", - "textAdditionalFormatting": "Additional formatting", - "textAddress": "Address", - "textAdvanced": "Advanced", - "textAdvancedSettings": "Advanced settings", - "textAfter": "After", - "textAlign": "Align", - "textAllCaps": "All caps", - "textAllowOverlap": "Allow overlap", - "textAuto": "Auto", - "textAutomatic": "Automatic", - "textBack": "Back", - "textBackground": "Background", - "textBandedColumn": "Banded column", - "textBandedRow": "Banded row", - "textBefore": "Before", - "textBehind": "Behind", - "textBorder": "Border", - "textBringToForeground": "Bring to foreground", - "textBullets": "Bullets", - "textBulletsAndNumbers": "Bullets & Numbers", - "textCellMargins": "Cell Margins", - "textChart": "Chart", - "textClose": "Close", - "textColor": "Color", - "textContinueFromPreviousSection": "Continue from previous section", - "textCustomColor": "Custom Color", - "textDifferentFirstPage": "Different first page", - "textDifferentOddAndEvenPages": "Different odd and even pages", - "textDisplay": "Display", - "textDistanceFromText": "Distance from text", - "textDoubleStrikethrough": "Double Strikethrough", - "textEditLink": "Edit Link", - "textEffects": "Effects", "textEmptyImgUrl": "You need to specify image URL.", - "textFill": "Fill", - "textFirstColumn": "First Column", - "textFirstLine": "FirstLine", - "textFlow": "Flow", - "textFontColor": "Font Color", - "textFontColors": "Font Colors", - "textFonts": "Fonts", - "textFooter": "Footer", - "textHeader": "Header", - "textHeaderRow": "Header Row", - "textHighlightColor": "Highlight Color", - "textHyperlink": "Hyperlink", - "textImage": "Image", - "textImageURL": "Image URL", - "textInFront": "In Front", - "textInline": "Inline", - "textKeepLinesTogether": "Keep Lines Together", - "textKeepWithNext": "Keep with Next", - "textLastColumn": "Last Column", - "textLetterSpacing": "Letter Spacing", - "textLineSpacing": "Line Spacing", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkToPrevious": "Link to Previous", - "textMoveBackward": "Move Backward", - "textMoveForward": "Move Forward", - "textMoveWithText": "Move with Text", - "textNone": "None", - "textNoStyles": "No styles for this type of charts.", "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textOpacity": "Opacity", - "textOptions": "Options", - "textOrphanControl": "Orphan Control", - "textPageBreakBefore": "Page Break Before", - "textPageNumbering": "Page Numbering", - "textParagraph": "Paragraph", - "textParagraphStyles": "Paragraph Styles", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textPt": "pt", - "textRemoveChart": "Remove Chart", - "textRemoveImage": "Remove Image", - "textRemoveLink": "Remove Link", - "textRemoveShape": "Remove Shape", - "textRemoveTable": "Remove Table", - "textReorder": "Reorder", - "textRepeatAsHeaderRow": "Repeat as Header Row", - "textReplace": "Replace", - "textReplaceImage": "Replace Image", - "textResizeToFitContent": "Resize to Fit Content", - "textScreenTip": "Screen Tip", "textSelectObjectToEdit": "Select object to edit", "textSendToBackground": "Send to Background", + "textSeptember": "September", "textSettings": "Settings", "textShape": "Shape", "textSize": "Size", @@ -297,170 +316,145 @@ "textStrikethrough": "Strikethrough", "textStyle": "Style", "textStyleOptions": "Style Options", + "textSu": "Su", "textSubscript": "Subscript", "textSuperscript": "Superscript", "textTable": "Table", "textTableOptions": "Table Options", "textText": "Text", + "textTh": "Th", "textThrough": "Through", "textTight": "Tight", "textTopAndBottom": "Top and Bottom", "textTotalRow": "Total Row", - "textType": "Type", - "textWrap": "Wrap", - "textNumbers": "Numbers", - "textDesign": "Design", - "textSu": "Su", - "textMo": "Mo", "textTu": "Tu", + "textType": "Type", "textWe": "We", - "textTh": "Th", - "textFr": "Fr", - "textSa": "Sa", - "textJanuary": "January", - "textFebruary": "February", - "textMarch": "March", - "textApril": "April", - "textMay": "May", - "textJune": "June", - "textJuly": "July", - "textAugust": "August", - "textSeptember": "September", - "textOctober": "October", - "textNovember": "November", - "textDecember": "December", - "textEmpty": "Empty", - "textOk": "Ok" + "textWrap": "Wrap" }, "Error": { - "convertationTimeoutText": "Conversion timeout exceeded.", - "criticalErrorExtText": "Press 'OK' to go back to the document list.", - "criticalErrorTitle": "Error", - "downloadErrorText": "Download failed.", + "convertationTimeoutText": "Перевищено час очікування конверсії.", + "criticalErrorExtText": "Натисніть 'OK', щоб повернутися до списку документів.", + "criticalErrorTitle": "Помилка", + "downloadErrorText": "Завантаження не вдалося", + "errorBadImageUrl": "URL-адреса зображення невірна", + "errorConnectToServer": "Неможливо зберегти документ. Перевірте параметри підключення або зверніться до адміністратора.
Коли ви натиснете на кнопку 'OK', вам буде запропоновано завантажити документ.", + "errorDatabaseConnection": "Зовнішня помилка.
Помилка підключення до бази даних. Будь ласка, зв'яжіться зі службою підтримки.", + "errorDataEncrypted": "Отримані зашифровані зміни, їх неможливо розшифрувати.", + "errorDataRange": "Неправильний діапазон даних.", + "errorDefaultMessage": "Код помилки: %1 ", + "errorEditingDownloadas": "Під час роботи з документом сталася помилка.
Звантажте документ, щоб зберегти резервну копію файлу локально.", + "errorKeyExpire": "Термін дії дескриптора ключа минув", + "errorLoadingFont": "Шрифти не завантажені.
Будь ласка, зверніться до адміністратора Сервера документів.", + "errorMailMergeLoadFile": "Завантаження не вдалося", + "errorMailMergeSaveFile": "Не вдалося виконати злиття.", + "errorStockChart": "Неправильний порядок рядків. Щоб створити біржову діаграму, розташуйте дані на аркуші в наступному порядку: ціна відкриття, максимальна ціна, мінімальна ціна, ціна закриття.", + "errorUpdateVersionOnDisconnect": "Підключення до Інтернету було відновлено, а версія файлу змінена.
Перш ніж продовжувати роботу, потрібно завантажити файл або скопіювати його вміст, щоб переконатися, що нічого не втрачено, а потім перезавантажити цю сторінку.", + "errorViewerDisconnect": "Підключення перервано. Ви можете переглядати документ, але не зможете завантажити або надрукувати його до відновлення підключення та оновлення сторінки.", + "openErrorText": "Під час відкриття файлу сталася помилка", + "saveErrorText": "Під час збереження файлу сталася помилка", + "uploadImageFileCountMessage": "Жодного зображення не завантажено.", "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorBadImageUrl": "Image url is incorrect", - "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
When you click OK, you will be prompted to download the document.", - "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", - "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", - "errorDataRange": "Incorrect data range.", - "errorDefaultMessage": "Error code: %1", - "errorEditingDownloadas": "An error occurred during the work with the document.
Download document to save the file backup copy locally.", "errorFilePassProtect": "The file is password protected and could not be opened.", "errorFileSizeExceed": "The file size exceeds your server limit.
Please, contact your admin.", "errorKeyEncrypt": "Unknown key descriptor", - "errorKeyExpire": "Key descriptor expired", - "errorMailMergeLoadFile": "Loading failed", - "errorMailMergeSaveFile": "Merge failed.", "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", - "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
opening price, max price, min price, closing price.", - "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", "errorUserDrop": "The file can't be accessed right now.", "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download it until the connection is restored and the page is reloaded.", "notcriticalErrorTitle": "Warning", - "openErrorText": "An error has occurred while opening the file", - "saveErrorText": "An error has occurred while saving the file", "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", "splitDividerErrorText": "The number of rows must be a divisor of %1", "splitMaxColsErrorText": "The number of columns must be less than %1", "splitMaxRowsErrorText": "The number of rows must be less than %1", "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", - "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "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...", - "applyChangesTitleText": "Loading Data", - "downloadMergeText": "Downloading...", - "downloadMergeTitle": "Downloading", - "downloadTextText": "Downloading document...", - "downloadTitleText": "Downloading Document", - "loadFontsTextText": "Loading data...", - "loadFontsTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadFontTitleText": "Loading Data", - "loadImagesTextText": "Loading images...", - "loadImagesTitleText": "Loading Images", - "loadImageTextText": "Loading image...", - "loadImageTitleText": "Loading Image", - "loadingDocumentTextText": "Loading document...", - "loadingDocumentTitleText": "Loading document", - "mailMergeLoadFileText": "Loading Data Source...", - "mailMergeLoadFileTitle": "Loading Data Source", - "openTextText": "Opening document...", - "openTitleText": "Opening Document", - "printTextText": "Printing document...", - "printTitleText": "Printing Document", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "saveTextText": "Saving document...", - "saveTitleText": "Saving Document", + "applyChangesTextText": "Завантаження даних...", + "applyChangesTitleText": "Завантаження даних", + "downloadMergeText": "Завантаження...", + "downloadMergeTitle": "Завантаження", + "downloadTextText": "Завантаження документу...", + "downloadTitleText": "Завантаження документу", + "loadFontsTextText": "Завантаження даних...", + "loadFontsTitleText": "Завантаження даних", + "loadFontTextText": "Завантаження даних...", + "loadFontTitleText": "Завантаження даних", + "loadImagesTextText": "Завантаження зображень...", + "loadImagesTitleText": "Завантаження зображень", + "loadImageTextText": "Завантаження зображення...", + "loadImageTitleText": "Завантаження зображення", + "loadingDocumentTextText": "Завантаження документа...", + "loadingDocumentTitleText": "Завантаження документа", + "mailMergeLoadFileText": "Завантаження джерела даних...", + "mailMergeLoadFileTitle": "Завантаження джерела даних", + "openTextText": "Відкриття документа...", + "openTitleText": "Відкриття документа", + "printTextText": "Друк документа", + "printTitleText": "Друк документа", + "savePreparingText": "Підготовка до збереження", + "savePreparingTitle": "Підготовка до збереження. Будь ласка, зачекайте...", + "saveTextText": "Збереження документа...", + "saveTitleText": "Збереження документа", + "textLoadingDocument": "Завантаження документа", + "waitText": "Будь ласка, зачекайте...", "sendMergeText": "Sending Merge...", "sendMergeTitle": "Sending Merge", - "textLoadingDocument": "Loading document", "txtEditingMode": "Set editing mode...", "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait..." + "uploadImageTitleText": "Uploading Image" }, "Main": { - "criticalErrorTitle": "Error", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your administrator.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "errorProcessSaveResult": "Saving failed.", - "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "notcriticalErrorTitle": "Warning", + "criticalErrorTitle": "Помилка", + "errorProcessSaveResult": "Помилка збереження", "SDK": { - " -Section ": " -Section ", - "above": "above", - "below": "below", - "Caption": "Caption", - "Choose an item": "Choose an item", - "Click to load image": "Click to load image", - "Current Document": "Current Document", - "Diagram Title": "Chart Title", - "endnote text": "Endnote Text", - "Enter a date": "Enter a date", - "Error! Bookmark not defined": "Error! Bookmark not defined.", - "Error! Main Document Only": "Error! Main Document Only.", - "Error! No text of specified style in document": "Error! No text of specified style in document.", - "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", - "Even Page ": "Even Page ", - "First Page ": "First Page ", - "Footer": "Footer", - "footnote text": "Footnote Text", - "Header": "Header", - "Heading 1": "Heading 1", - "Heading 2": "Heading 2", - "Heading 3": "Heading 3", - "Heading 4": "Heading 4", - "Heading 5": "Heading 5", - "Heading 6": "Heading 6", - "Heading 7": "Heading 7", - "Heading 8": "Heading 8", - "Heading 9": "Heading 9", - "Hyperlink": "Hyperlink", - "Index Too Large": "Index Too Large", - "Intense Quote": "Intense Quote", - "Is Not In Table": "Is Not In Table", - "List Paragraph": "List Paragraph", - "Missing Argument": "Missing Argument", - "Missing Operator": "Missing Operator", - "No Spacing": "No Spacing", + " -Section ": "-Розділ", + "above": "вище", + "below": "нижче", + "Caption": "Назва", + "Choose an item": "Оберіть елемент", + "Click to load image": "Натисніть для завантаження зображення", + "Current Document": "Поточний документ", + "Diagram Title": "Заголовок діаграми", + "endnote text": "Текст кінцевої зноски", + "Enter a date": "Введіть дату", + "Error! Bookmark not defined": "Помилка! Закладка не визначена.", + "Error! Main Document Only": "Помилка! Тільки основний документ.", + "Error! No text of specified style in document": "Помилка! В документі відсутній текст вказаного стилю.", + "Error! Not a valid bookmark self-reference": "Помилка! Не правильне посилання закладки.", + "Even Page ": "Парна сторінка", + "First Page ": "Перша сторінка", + "Footer": "Нижній колонтитул", + "footnote text": "Текст виноски", + "Header": "Верхній колонтитул", + "Heading 1": "Заголовок 1", + "Heading 2": "Заголовок 2", + "Heading 3": "Заголовок 3", + "Heading 4": "Заголовок 4", + "Heading 5": "Заголовок 5", + "Heading 6": "Заголовок 6", + "Heading 7": "Заголовок 7", + "Heading 8": "Заголовок 8", + "Heading 9": "Заголовок 9", + "Hyperlink": "Гіперпосилання", + "Index Too Large": "Індекс занадто великий", + "Intense Quote": "Виділена цитата", + "Is Not In Table": "Не в таблиці", + "List Paragraph": "Список абзацу", + "Missing Argument": "Відсутній аргумент", + "Missing Operator": "Відсутній оператор", + "No Spacing": "Без інтервалу", + "No table of figures entries found": "Елементи списку ілюстрацій не знайдені", + "None": "Немає", + "Normal": "Звичайний", + "Number Too Large To Format": "Число завелике для форматування", + "Odd Page ": "З непарної сторінки", + "Quote": "Цитата", + "Same as Previous": "Як в попередньому", "No table of contents entries found": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents.", - "No table of figures entries found": "No table of figures entries found.", - "None": "None", - "Normal": "Normal", - "Number Too Large To Format": "Number Too Large To Format", - "Odd Page ": "Odd Page ", - "Quote": "Quote", - "Same as Previous": "Same as Previous", "Series": "Series", "Subtitle": "Subtitle", "Syntax Error": "Syntax Error", @@ -478,149 +472,155 @@ "Your text here": "Your text here", "Zero Divide": "Zero Divide" }, - "textAnonymous": "Anonymous", + "textAnonymous": "Анонімний користувач", + "textClose": "Закрити", + "textContactUs": "Відділ продажів", + "textGuest": "Гість", + "textNo": "Ні", + "textNoLicenseTitle": "Ліцензійне обмеження", + "textPaidFeature": "Платна функція", + "textRemember": "Запам'ятати мій вибір", + "titleLicenseExp": "Термін дії ліцензії закінчився", + "titleServerVersion": "Редактор оновлено", + "warnLicenseLimitedNoAccess": "Вийшов термін дії ліцензії. Немає доступу до функцій редагування документів. Будь ласка, зверніться до адміністратора.", + "warnLicenseLimitedRenewed": "Потрібно оновити ліцензію. У вас обмежений доступ до функцій редагування документів.
Будь ласка, зверніться до адміністратора, щоб отримати повний доступ", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your administrator.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", "textBuyNow": "Visit website", - "textClose": "Close", - "textContactUs": "Contact sales", "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", - "textGuest": "Guest", "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", - "textNo": "No", - "textNoLicenseTitle": "License limit reached", - "textPaidFeature": "Paid feature", - "textRemember": "Remember my choice", + "textNoTextFound": "Text not found", + "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textYes": "Yes", - "titleLicenseExp": "License expired", - "titleServerVersion": "Editor updated", "titleUpdateVersion": "Version changed", "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", - "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", - "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
Please contact your administrator to get full access", "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", - "warnProcessRightsChange": "You don't have permission to edit this file.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "warnProcessRightsChange": "You don't have permission to edit this file." }, "Settings": { - "advDRMOptions": "Protected File", - "advDRMPassword": "Password", - "advTxtOptions": "Choose TXT Options", - "closeButtonText": "Close File", + "advDRMOptions": "Захищений файл", + "advDRMPassword": "Пароль", + "advTxtOptions": "Виберіть параметри текстового файлу", + "closeButtonText": "Закрити файл", + "textAbout": "Про програму", + "textApplication": "Додаток", + "textApplicationSettings": "Налаштування додатка", + "textAuthor": "Автор", + "textBack": "Назад", + "textBottom": "Нижнє", + "textCancel": "Скасувати", + "textCaseSensitive": "З урахуванням регістру", + "textCentimeter": "Сантиметр", + "textChooseEncoding": "Вибрати кодування", + "textChooseTxtOptions": "Виберіть параметри текстового файлу", + "textCollaboration": "Спільна робота", + "textColorSchemes": "Схеми кольорів", + "textComment": "Коментар", + "textComments": "Коментарі", + "textCommentsDisplay": "Відображення коментарів", + "textCreated": "Створена", + "textCustomSize": "Спеціальний розмір", + "textDisableAll": "Вимкнути все", + "textDisableAllMacrosWithNotification": "Вимкнути всі макроси з повідомленням", + "textDisableAllMacrosWithoutNotification": "Вимкнути всі макроси без повідомлень", + "textDocumentInfo": "Інформація про документ", + "textDocumentSettings": "Налаштування документа", + "textDocumentTitle": "Назва документу", + "textDone": "Готово", + "textDownload": "Завантажити", + "textDownloadAs": "Завантажити як", + "textDownloadRtf": "Якщо ви продовжите збереження в цьому форматі, частину форматування буде втрачено. Ви дійсно хочете продовжити?", + "textDownloadTxt": "Якщо ви продовжите збереження в цьому форматі, весь функціонал, крім тексту, буде втрачено. Ви дійсно хочете продовжити?", + "textEnableAll": "Увімкнути все", + "textEnableAllMacrosWithoutNotification": "Включити всі макроси без повідомлень", + "textEncoding": "Кодування", + "textFind": "Пошук", + "textFindAndReplace": "Пошук і заміна", + "textFindAndReplaceAll": "Знайти і замінити все", + "textFormat": "Формат", + "textHelp": "Довідка", + "textHiddenTableBorders": "Приховані границі таблиці", + "textHighlightResults": "Виділити результати", + "textInch": "Дюйм", + "textLandscape": "Альбомна", + "textLastModified": "Остання зміна", + "textLastModifiedBy": "Автор останньої зміни", + "textLeft": "Лівий", + "textLoading": "Завантаження...", + "textLocation": "Розташування", + "textMacrosSettings": "Налаштування макросів", + "textMargins": "Поля", + "textMarginsW": "Ліве та праве поля занадто широкі для заданої ширини сторінки", + "textNoCharacters": "Недруковані символи", + "textOk": "Ок", + "textOpenFile": "Введіть пароль для відкриття файлу", + "textOrientation": "Орієнтація", + "textOwner": "Власник", + "textPages": "Сторінки", + "textParagraphs": "Абзаци", + "textPoint": "Пункт", + "textPortrait": "Книжна", + "textPrint": "Друк", + "textReaderMode": "Режим читання", + "textReplace": "Замінити", + "textReplaceAll": "Замінити усе", + "textResolvedComments": "Вирішені коментарі", + "textRight": "Праворуч", + "textSearch": "Пошук", + "txtDownloadTxt": "Завантажити TXT", + "txtIncorrectPwd": "Невірний пароль", + "txtOk": "Ок", + "txtProtected": "Як тільки ви введете пароль та відкриєте файл, поточний пароль до файлу буде скинуто", + "txtScheme1": "Стандартна", + "txtScheme10": "Звичайна", + "txtScheme11": "Метро", + "txtScheme12": "Модуль", + "txtScheme13": "Витончена", + "txtScheme14": "Еркер", + "txtScheme15": "Початкова", + "txtScheme16": "Паперова", + "txtScheme2": "Відтінки сірого", + "txtScheme22": "Нова офісна", + "txtScheme3": "Верх", + "txtScheme4": "Аспект", + "txtScheme5": "Офіційна", + "txtScheme6": "Відкрита", + "txtScheme7": "Власний", + "txtScheme8": "Потік", + "txtScheme9": "Ливарна", "notcriticalErrorTitle": "Warning", - "textAbout": "About", - "textApplication": "Application", - "textApplicationSettings": "Application Settings", - "textAuthor": "Author", - "textBack": "Back", - "textBottom": "Bottom", - "textCancel": "Cancel", - "textCaseSensitive": "Case Sensitive", - "textCentimeter": "Centimeter", - "textCollaboration": "Collaboration", - "textColorSchemes": "Color Schemes", - "textComment": "Comment", - "textComments": "Comments", - "textCommentsDisplay": "Comments Display", - "textCreated": "Created", - "textCustomSize": "Custom Size", - "textDisableAll": "Disable All", - "textDisableAllMacrosWithNotification": "Disable all macros with notification", - "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", - "textDocumentInfo": "Document Info", - "textDocumentSettings": "Document Settings", - "textDocumentTitle": "Document Title", - "textDone": "Done", - "textDownload": "Download", - "textDownloadAs": "Download As", - "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", - "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", - "textEnableAll": "Enable All", - "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", - "textEncoding": "Encoding", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", - "textFindAndReplaceAll": "Find and Replace All", - "textFormat": "Format", - "textHelp": "Help", - "textHiddenTableBorders": "Hidden Table Borders", - "textHighlightResults": "Highlight Results", - "textInch": "Inch", - "textLandscape": "Landscape", - "textLastModified": "Last Modified", - "textLastModifiedBy": "Last Modified By", - "textLeft": "Left", - "textLoading": "Loading...", - "textLocation": "Location", - "textMacrosSettings": "Macros Settings", - "textMargins": "Margins", "textMarginsH": "Top and bottom margins are too high for a given page height", - "textMarginsW": "Left and right margins are too wide for a given page width", - "textNoCharacters": "Nonprinting Characters", "textNoTextFound": "Text not found", - "textOpenFile": "Enter a password to open the file", - "textOrientation": "Orientation", - "textOwner": "Owner", - "textPoint": "Point", - "textPortrait": "Portrait", - "textPrint": "Print", - "textReaderMode": "Reader Mode", - "textReplace": "Replace", - "textReplaceAll": "Replace All", - "textResolvedComments": "Resolved Comments", - "textRight": "Right", - "textSearch": "Search", "textSettings": "Settings", "textShowNotification": "Show Notification", + "textSpaces": "Spaces", "textSpellcheck": "Spell Checking", "textStatistic": "Statistic", "textSubject": "Subject", + "textSymbols": "Symbols", "textTitle": "Title", "textTop": "Top", "textUnitOfMeasurement": "Unit Of Measurement", "textUploaded": "Uploaded", - "txtIncorrectPwd": "Password is incorrect", - "txtProtected": "Once you enter the password and open the file, the current password will be reset", - "txtScheme1": "Office", - "txtScheme10": "Median", - "txtScheme11": "Metro", - "txtScheme12": "Module", - "txtScheme13": "Opulent", - "txtScheme14": "Oriel", - "txtScheme15": "Origin", - "txtScheme16": "Paper", + "textWords": "Words", "txtScheme17": "Solstice", "txtScheme18": "Technic", "txtScheme19": "Trek", - "txtScheme2": "Grayscale", "txtScheme20": "Urban", - "txtScheme21": "Verve", - "txtScheme22": "New Office", - "txtScheme3": "Apex", - "txtScheme4": "Aspect", - "txtScheme5": "Civic", - "txtScheme6": "Concourse", - "txtScheme7": "Equity", - "txtScheme8": "Flow", - "txtScheme9": "Foundry", - "textOk": "Ok", - "textChooseEncoding": "Choose Encoding", - "textChooseTxtOptions": "Choose TXT Options", - "txtDownloadTxt": "Download TXT", - "txtOk": "Ok", - "textPages": "Pages", - "textParagraphs": "Paragraphs", - "textSpaces": "Spaces", - "textSymbols": "Symbols", - "textWords": "Words" + "txtScheme21": "Verve" }, "Toolbar": { + "leaveButtonText": "Залишити цю сторінку", "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this Page", "stayButtonText": "Stay on this page" } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/zh.json b/apps/documenteditor/mobile/locale/zh.json index f581a2ae0..2c2e7b066 100644 --- a/apps/documenteditor/mobile/locale/zh.json +++ b/apps/documenteditor/mobile/locale/zh.json @@ -41,6 +41,7 @@ "textLocation": "位置", "textNextPage": "下一页", "textOddPage": "奇数页", + "textOk": "好", "textOther": "其他", "textPageBreak": "分页符", "textPageNumber": "页码", @@ -56,8 +57,7 @@ "textStartAt": "始于", "textTable": "表格", "textTableSize": "表格大小", - "txtNotUrl": "该字段应为“http://www.example.com”格式的URL", - "textOk": "Ok" + "txtNotUrl": "该字段应为“http://www.example.com”格式的URL" }, "Common": { "Collaboration": { @@ -158,13 +158,13 @@ "textUsers": "用户", "textWidow": "单独控制" }, + "HighlightColorPalette": { + "textNoFill": "无填充" + }, "ThemeColorPalette": { "textCustomColors": "自定义颜色", "textStandartColors": "标准颜色", "textThemeColors": "主题颜色" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -208,6 +208,8 @@ "textAlign": "对齐", "textAllCaps": "全部大写", "textAllowOverlap": "允许重叠", + "textApril": "四月", + "textAugust": "八月", "textAuto": "自动", "textAutomatic": "自动", "textBack": "返回", @@ -215,7 +217,7 @@ "textBandedColumn": "带状列", "textBandedRow": "带状行", "textBefore": "之前", - "textBehind": "之后", + "textBehind": "衬于​​文字下方", "textBorder": "边界", "textBringToForeground": "放到最上面", "textBullets": "项目符号", @@ -226,6 +228,8 @@ "textColor": "颜色", "textContinueFromPreviousSection": "从上一节继续", "textCustomColor": "自定义颜色", + "textDecember": "十二月", + "textDesign": "设计", "textDifferentFirstPage": "不同的第一页", "textDifferentOddAndEvenPages": "不同的奇数页和偶数页", "textDisplay": "展示", @@ -233,7 +237,9 @@ "textDoubleStrikethrough": "双删除线", "textEditLink": "编辑链接", "textEffects": "效果", + "textEmpty": "空", "textEmptyImgUrl": "您需要指定图像URL。", + "textFebruary": "二月", "textFill": "填满", "textFirstColumn": "第一列", "textFirstLine": "首行", @@ -242,14 +248,18 @@ "textFontColors": "字体颜色", "textFonts": "字体", "textFooter": "页脚", + "textFr": "周五", "textHeader": "页眉", "textHeaderRow": "页眉行", "textHighlightColor": "颜色高亮", "textHyperlink": "超链接", "textImage": "图片", "textImageURL": "图片地址", - "textInFront": "前面", - "textInline": "内嵌", + "textInFront": "浮于文字上方", + "textInline": "嵌入型​​", + "textJanuary": "一月", + "textJuly": "七月", + "textJune": "六月", "textKeepLinesTogether": "保持同一行", "textKeepWithNext": "与下一个保持一致", "textLastColumn": "最后一列", @@ -258,13 +268,19 @@ "textLink": "链接", "textLinkSettings": "链接设置", "textLinkToPrevious": "链接到上一个", + "textMarch": "三月", + "textMay": "五月", + "textMo": "周一", "textMoveBackward": "向后移动", "textMoveForward": "向前移动", "textMoveWithText": "文字移动", "textNone": "无", "textNoStyles": "这个类型的图表没有对应的样式。", "textNotUrl": "该字段应为“http://www.example.com”格式的URL", + "textNovember": "十一月", "textNumbers": "数字", + "textOctober": "十月", + "textOk": "好", "textOpacity": "不透明度", "textOptions": "选项", "textOrphanControl": "单独控制", @@ -285,9 +301,11 @@ "textReplace": "替换", "textReplaceImage": "替换图像", "textResizeToFitContent": "调整大小以适应内容", + "textSa": "周六", "textScreenTip": "屏幕提示", "textSelectObjectToEdit": "选择要编辑的物件", "textSendToBackground": "送至后台", + "textSeptember": "九月", "textSettings": "设置", "textShape": "形状", "textSize": "大小", @@ -298,39 +316,21 @@ "textStrikethrough": "删除线", "textStyle": "样式", "textStyleOptions": "样式选项", + "textSu": "周日", "textSubscript": "下标", "textSuperscript": "上标", "textTable": "表格", "textTableOptions": "表格选项", "textText": "文本", + "textTh": "周四", "textThrough": "通过", "textTight": "紧", "textTopAndBottom": "上下", "textTotalRow": "总行", + "textTu": "周二", "textType": "类型", - "textWrap": "包裹", - "textApril": "April", - "textAugust": "August", - "textDecember": "December", - "textDesign": "Design", - "textEmpty": "Empty", - "textFebruary": "February", - "textFr": "Fr", - "textJanuary": "January", - "textJuly": "July", - "textJune": "June", - "textMarch": "March", - "textMay": "May", - "textMo": "Mo", - "textNovember": "November", - "textOctober": "October", - "textOk": "Ok", - "textSa": "Sa", - "textSeptember": "September", - "textSu": "Su", - "textTh": "Th", - "textTu": "Tu", - "textWe": "We" + "textWe": "周三", + "textWrap": "包裹" }, "Error": { "convertationTimeoutText": "转换超时", @@ -487,8 +487,11 @@ "textHasMacros": "这个文件带有自动宏。
是否要运行宏?", "textNo": "不", "textNoLicenseTitle": "触碰到许可证数量限制。", + "textNoTextFound": "未找到文本", "textPaidFeature": "付费功能", "textRemember": "记住我的选择", + "textReplaceSkipped": "已更换。 {0}次跳过。", + "textReplaceSuccess": "搜索已完成。更换次数:{0}", "textYes": "是", "titleLicenseExp": "许可证过期", "titleServerVersion": "编辑器已更新", @@ -500,10 +503,7 @@ "warnLicenseUsersExceeded": "你触发了 %1 编辑器的同时在线数限制。可联系管理员来了解更多信息。", "warnNoLicense": "你已经触发了 %1 编辑器的同时在线数限制. 该文档打开后,你将只能查看。请联系 %1 的销售团队,获取个人升级条款。", "warnNoLicenseUsers": "你触发了 %1 编辑器的同时在线数限制。请与 %1 的销售团队联系,以获取个人升级条款。", - "warnProcessRightsChange": "你没有编辑这个文件的权限。", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "你没有编辑这个文件的权限。" }, "Settings": { "advDRMOptions": "受保护的文件", diff --git a/apps/presentationeditor/mobile/locale/be.json b/apps/presentationeditor/mobile/locale/be.json index 7c3baf3e3..b2fb8fec5 100644 --- a/apps/presentationeditor/mobile/locale/be.json +++ b/apps/presentationeditor/mobile/locale/be.json @@ -1,479 +1,479 @@ { "About": { - "textAbout": "About", - "textAddress": "Address", - "textBack": "Back", - "textEmail": "Email", - "textPoweredBy": "Powered By", - "textTel": "Tel", - "textVersion": "Version" + "textAbout": "Пра праграму", + "textAddress": "Адрас", + "textBack": "Назад", + "textEmail": "Электронная пошта", + "textPoweredBy": "Распрацавана", + "textTel": "Тэлефон", + "textVersion": "Версія" }, "Common": { "Collaboration": { - "notcriticalErrorTitle": "Warning", - "textAddComment": "Add Comment", - "textAddReply": "Add Reply", - "textBack": "Back", - "textCancel": "Cancel", - "textCollaboration": "Collaboration", - "textComments": "Comments", - "textDeleteComment": "Delete Comment", - "textDeleteReply": "Delete Reply", - "textDone": "Done", - "textEdit": "Edit", - "textEditComment": "Edit Comment", - "textEditReply": "Edit Reply", - "textEditUser": "Users who are editing the file:", - "textMessageDeleteComment": "Do you really want to delete this comment?", - "textMessageDeleteReply": "Do you really want to delete this reply?", - "textNoComments": "This document doesn't contain comments", - "textReopen": "Reopen", - "textResolve": "Resolve", - "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users", - "textOk": "Ok" - }, - "ThemeColorPalette": { - "textCustomColors": "Custom Colors", - "textStandartColors": "Standard Colors", - "textThemeColors": "Theme Colors" + "notcriticalErrorTitle": "Увага", + "textAddComment": "Дадаць каментар", + "textAddReply": "Дадаць адказ", + "textBack": "Назад", + "textCancel": "Скасаваць", + "textCollaboration": "Сумесная праца", + "textComments": "Каментары", + "textDeleteComment": "Выдаліць каментар", + "textDeleteReply": "Выдаліць адказ", + "textDone": "Завершана", + "textEdit": "Рэдагаваць", + "textEditComment": "Рэдагаваць каментар", + "textEditReply": "Рэдагаваць адказ", + "textEditUser": "Дакумент рэдагуецца карыстальнікамі:", + "textMessageDeleteComment": "Сапраўды хочаце выдаліць гэты каментар?", + "textMessageDeleteReply": "Сапраўды хочаце выдаліць гэты адказ?", + "textNoComments": "Да гэтага дакумента няма каментароў", + "textOk": "Добра", + "textReopen": "Адкрыць зноў", + "textResolve": "Вырашыць", + "textTryUndoRedo": "Функцыі скасавання і паўтору дзеянняў выключаныя ў хуткім рэжыме сумеснага рэдагавання.", + "textUsers": "Карыстальнікі" }, "HighlightColorPalette": { - "textNoFill": "No Fill" + "textNoFill": "Без заліўкі" + }, + "ThemeColorPalette": { + "textCustomColors": "Адвольныя колеры", + "textStandartColors": "Стандартныя колеры", + "textThemeColors": "Колеры тэмы" } }, "ContextMenu": { - "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add Comment", - "menuAddLink": "Add Link", - "menuCancel": "Cancel", - "menuDelete": "Delete", - "menuDeleteTable": "Delete Table", - "menuEdit": "Edit", - "menuMerge": "Merge", - "menuMore": "More", - "menuOpenLink": "Open Link", + "errorCopyCutPaste": "Аперацыі капіявання, выразання і ўстаўкі праз кантэкстнае меню будуць выконвацца толькі ў бягучым файле.", + "menuAddComment": "Дадаць каментар", + "menuAddLink": "Дадаць спасылку", + "menuCancel": "Скасаваць", + "menuDelete": "Выдаліць", + "menuDeleteTable": "Выдаліць табліцу", + "menuEdit": "Рэдагаваць", + "menuMerge": "Аб’яднаць", + "menuMore": "Больш", + "menuOpenLink": "Адкрыць спасылку", + "menuViewComment": "Праглядзець каментар", + "textColumns": "Слупкі", + "textCopyCutPasteActions": "Скапіяваць, выразаць, уставіць", + "textRows": "Радкі", "menuSplit": "Split", - "menuViewComment": "View Comment", - "textColumns": "Columns", - "textCopyCutPasteActions": "Copy, Cut and Paste Actions", - "textDoNotShowAgain": "Don't show again", - "textRows": "Rows" + "textDoNotShowAgain": "Don't show again" }, "Controller": { "Main": { - "advDRMOptions": "Protected File", - "advDRMPassword": "Password", - "closeButtonText": "Close File", - "criticalErrorTitle": "Error", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "errorProcessSaveResult": "Saving failed.", - "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "notcriticalErrorTitle": "Warning", + "advDRMOptions": "Абаронены файл", + "advDRMPassword": "Пароль", + "closeButtonText": "Закрыць файл", + "criticalErrorTitle": "Памылка", + "errorProcessSaveResult": "Не атрымалася захаваць", + "errorServerVersion": "Рэдактар быў абноўлены. Старонка перазагрузіцца, каб ужыць змены.", + "errorUpdateVersion": "Версія файла была змененая. Старонка будзе перазагружаная.", + "notcriticalErrorTitle": "Увага", "SDK": { - "Chart": "Chart", + "Chart": "Дыяграма", + "ClipArt": "Малюнак", + "Date and time": "Дата і час", + "Diagram": "Схема", + "Diagram Title": "Загаловак дыяграмы", + "Footer": "Ніжні калантытул", + "Header": "Верхні калантытул", + "Image": "Выява", + "Loading": "Загрузка", + "Media": "Медыя", + "None": "Няма", + "Picture": "Малюнак", + "Series": "Шэраг", + "Slide number": "Нумар слайда", + "Slide subtitle": "Падзагаловак слайда", + "Slide text": "Тэкст слайда", + "Slide title": "Загаловак слайда", + "Table": "Табліца", + "Y Axis": "Вось Y", + "Your text here": "Увядзіце ваш тэкст", "Click to add first slide": "Click to add first slide", "Click to add notes": "Click to add notes", - "ClipArt": "Clip Art", - "Date and time": "Date and time", - "Diagram": "Diagram", - "Diagram Title": "Chart Title", - "Footer": "Footer", - "Header": "Header", - "Image": "Image", - "Loading": "Loading", - "Media": "Media", - "None": "None", - "Picture": "Picture", - "Series": "Series", - "Slide number": "Slide number", - "Slide subtitle": "Slide subtitle", - "Slide text": "Slide text", - "Slide title": "Slide title", - "Table": "Table", - "X Axis": "X Axis XAS", - "Y Axis": "Y Axis", - "Your text here": "Your text here" + "X Axis": "X Axis XAS" }, - "textAnonymous": "Anonymous", - "textBuyNow": "Visit website", - "textClose": "Close", - "textContactUs": "Contact sales", + "textAnonymous": "Ананімны карыстальнік", + "textBuyNow": "Наведаць сайт", + "textClose": "Закрыць", + "textContactUs": "Аддзел продажаў", + "textGuest": "Госць", + "textHasMacros": "Файл змяшчае макрасы з аўтазапускам.
Хочаце запусціць макрасы?", + "textNo": "Не", + "textNoLicenseTitle": "Ліцэнзійнае абмежаванне", + "textNoTextFound": "Тэкст не знойдзены", + "textOpenFile": "Каб адкрыць файл, увядзіце пароль", + "textPaidFeature": "Платная функцыя", + "textReplaceSkipped": "Заменена. Мінута ўваходжанняў - {0}.", + "textReplaceSuccess": "Пошук завершаны. Заменена ўваходжанняў: {0}", + "textYes": "Так", + "titleLicenseExp": "Тэрмін дзеяння ліцэнзіі сышоў", + "titleServerVersion": "Рэдактар абноўлены", + "titleUpdateVersion": "Версія змянілася", + "txtProtected": "Калі вы ўвядзеце пароль і адкрыеце файл, бягучы пароль да файла скінецца", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "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.", "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", - "textGuest": "Guest", - "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", - "textNo": "No", - "textNoLicenseTitle": "License limit reached", - "textOpenFile": "Enter a password to open the file", - "textPaidFeature": "Paid feature", "textRemember": "Remember my choice", - "textYes": "Yes", - "titleLicenseExp": "License expired", - "titleServerVersion": "Editor updated", - "titleUpdateVersion": "Version changed", "txtIncorrectPwd": "Password is incorrect", - "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", - "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
Please contact your administrator to get full access", + "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.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "warnProcessRightsChange": "You don't have permission to edit the file." } }, "Error": { - "convertationTimeoutText": "Conversion timeout exceeded.", + "convertationTimeoutText": "Час чакання пераўтварэння сышоў.", + "criticalErrorTitle": "Памылка", + "downloadErrorText": "Не атрымалася спампаваць.", + "errorBadImageUrl": "Хібны URL-адрас выявы", + "errorDatabaseConnection": "Вонкавая памылка.
Памылка злучэння з базай даных. Калі ласка, звярніцеся ў службу падтрымкі.", + "errorDataEncrypted": "Атрыманы зашыфраваныя змены, іх немагчыма расшыфраваць.", + "errorDataRange": "Хібны дыяпазон даных.", + "errorDefaultMessage": "Код памылкі: %1", + "errorKeyEncrypt": "Невядомы дэскрыптар ключа", + "errorKeyExpire": "Тэрмін дзеяння дэскрыптара ключа сышоў", + "errorUserDrop": "На дадзены момант файл недаступны.", + "errorUsersExceed": "Перасягнута колькасць карыстальнікаў, дазволеных згодна тарыфу", + "notcriticalErrorTitle": "Увага", + "splitDividerErrorText": "Колькасць радкоў мусіць быць дзельнікам для %1", + "splitMaxColsErrorText": "Колькасць слупкоў павінна быць меншай за %1", + "splitMaxRowsErrorText": "Колькасць радкоў павінна быць меншай за %1", + "unknownErrorText": "Невядомая памылка.", + "uploadImageExtMessage": "Невядомы фармат выявы.", + "uploadImageFileCountMessage": "Выяў не запампавана.", "criticalErrorExtText": "Press 'OK' to go back to the document list.", - "criticalErrorTitle": "Error", - "downloadErrorText": "Download failed.", "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please contact your admin.", - "errorBadImageUrl": "Image url is incorrect", "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
When you click the 'OK' button, you will be prompted to download the document.", - "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", - "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", - "errorDataRange": "Incorrect data range.", - "errorDefaultMessage": "Error code: %1", "errorEditingDownloadas": "An error occurred during the work with the document.
Use the 'Download' option to save the file backup copy locally.", "errorFilePassProtect": "The file is password protected and could not be opened.", "errorFileSizeExceed": "The file size exceeds your server limitation.
Please, contact your admin.", - "errorKeyEncrypt": "Unknown key descriptor", - "errorKeyExpire": "Key descriptor expired", + "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.", "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.", - "errorUserDrop": "The file cannot be accessed right now.", - "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download it until the connection is restored and the page is reloaded.", - "notcriticalErrorTitle": "Warning", + "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.", "openErrorText": "An error has occurred while opening the file", "saveErrorText": "An error has occurred while saving the file", "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", - "splitDividerErrorText": "The number of rows must be a divisor of %1", - "splitMaxColsErrorText": "The number of columns must be less than %1", - "splitMaxRowsErrorText": "The number of rows must be less than %1", - "unknownErrorText": "Unknown error.", - "uploadImageExtMessage": "Unknown image format.", - "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "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...", - "applyChangesTitleText": "Loading Data", - "downloadTextText": "Downloading document...", - "downloadTitleText": "Downloading Document", - "loadFontsTextText": "Loading data...", - "loadFontsTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadFontTitleText": "Loading Data", - "loadImagesTextText": "Loading images...", - "loadImagesTitleText": "Loading Images", - "loadImageTextText": "Loading image...", - "loadImageTitleText": "Loading Image", - "loadingDocumentTextText": "Loading document...", - "loadingDocumentTitleText": "Loading document", - "loadThemeTextText": "Loading theme...", - "loadThemeTitleText": "Loading Theme", - "openTextText": "Opening document...", - "openTitleText": "Opening Document", - "printTextText": "Printing document...", - "printTitleText": "Printing Document", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "saveTextText": "Saving document...", - "saveTitleText": "Saving Document", - "textLoadingDocument": "Loading document", - "txtEditingMode": "Set editing mode...", - "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait..." + "applyChangesTextText": "Загрузка даных…", + "applyChangesTitleText": "Загрузка даных", + "downloadTextText": "Спампоўванне дакумента...", + "downloadTitleText": "Спампоўванне дакумента", + "loadFontsTextText": "Загрузка даных…", + "loadFontsTitleText": "Загрузка даных", + "loadFontTextText": "Загрузка даных…", + "loadFontTitleText": "Загрузка даных", + "loadImagesTextText": "Загрузка выяў…", + "loadImagesTitleText": "Загрузка выяў", + "loadImageTextText": "Загрузка выявы…", + "loadImageTitleText": "Загрузка выявы", + "loadingDocumentTextText": "Загрузка дакумента…", + "loadingDocumentTitleText": "Загрузка дакумента", + "loadThemeTextText": "Загрузка тэмы…", + "loadThemeTitleText": "Загрузка тэмы", + "openTextText": "Адкрыццё дакумента…", + "openTitleText": "Адкрыццё дакумента", + "printTextText": "Друкаванне дакумента…", + "printTitleText": "Друкаванне дакумента", + "savePreparingText": "Падрыхтоўка да захавання", + "savePreparingTitle": "Падрыхтоўка да захавання. Калі ласка, пачакайце…", + "saveTextText": "Захаванне дакумента…", + "saveTitleText": "Захаванне дакумента", + "textLoadingDocument": "Загрузка дакумента", + "txtEditingMode": "Актывацыя рэжыму рэдагавання…", + "uploadImageTextText": "Запампоўванне выявы…", + "uploadImageTitleText": "Запампоўванне выявы", + "waitText": "Калі ласка, пачакайце..." }, "Toolbar": { + "leaveButtonText": "Сысці са старонкі", + "stayButtonText": "Застацца на старонцы", "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this page", - "stayButtonText": "Stay on this Page" + "dlgLeaveTitleText": "You leave the application" }, "View": { "Add": { - "notcriticalErrorTitle": "Warning", - "textAddLink": "Add Link", - "textAddress": "Address", - "textBack": "Back", - "textCancel": "Cancel", - "textColumns": "Columns", - "textComment": "Comment", - "textDefault": "Selected text", - "textDisplay": "Display", - "textEmptyImgUrl": "You need to specify the image URL.", - "textExternalLink": "External Link", - "textFirstSlide": "First Slide", - "textImage": "Image", - "textImageURL": "Image URL", - "textInsert": "Insert", - "textInsertImage": "Insert Image", - "textLastSlide": "Last Slide", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkTo": "Link to", - "textLinkType": "Link Type", - "textNextSlide": "Next Slide", - "textOther": "Other", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textPreviousSlide": "Previous Slide", - "textRows": "Rows", - "textScreenTip": "Screen Tip", - "textShape": "Shape", - "textSlide": "Slide", - "textSlideInThisPresentation": "Slide in this Presentation", - "textSlideNumber": "Slide Number", - "textTable": "Table", - "textTableSize": "Table Size", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textOk": "Ok" + "notcriticalErrorTitle": "Увага", + "textAddLink": "Дадаць спасылку", + "textAddress": "Адрас", + "textBack": "Назад", + "textCancel": "Скасаваць", + "textColumns": "Слупкі", + "textComment": "Каментар", + "textDefault": "Вылучаны тэкст", + "textDisplay": "Паказваць", + "textExternalLink": "Вонкавая спасылка", + "textFirstSlide": "Першы слайд", + "textImage": "Выява", + "textImageURL": "URL выявы", + "textInsert": "Уставіць", + "textInsertImage": "Уставіць выяву", + "textLastSlide": "Апошні слайд", + "textLink": "Спасылка", + "textLinkSettings": "Налады спасылкі", + "textLinkTo": "Звязаць з", + "textLinkType": "Тып спасылкі", + "textNextSlide": "Наступны слайд", + "textOk": "Добра", + "textOther": "Іншае", + "textPictureFromLibrary": "Выява з бібліятэкі", + "textPictureFromURL": "Выява па URL", + "textPreviousSlide": "Папярэдні слайд", + "textRows": "Радкі", + "textScreenTip": "Падказка", + "textShape": "Фігура", + "textSlide": "Слайд", + "textSlideInThisPresentation": "Слайд у гэтай прэзентацыі", + "textSlideNumber": "Нумар слайда", + "textTable": "Табліца", + "textTableSize": "Памеры табліцы", + "txtNotUrl": "Гэтае поле мусіць быць URL-адрасам фармату \"http://www.example.com\"", + "textEmptyImgUrl": "You need to specify the image URL." }, "Edit": { - "notcriticalErrorTitle": "Warning", - "textActualSize": "Actual Size", - "textAddCustomColor": "Add Custom Color", - "textAdditional": "Additional", - "textAdditionalFormatting": "Additional Formatting", - "textAddress": "Address", - "textAfter": "After", - "textAlign": "Align", - "textAlignBottom": "Align Bottom", - "textAlignCenter": "Align Center", - "textAlignLeft": "Align Left", - "textAlignMiddle": "Align Middle", - "textAlignRight": "Align Right", - "textAlignTop": "Align Top", - "textAllCaps": "All Caps", - "textApplyAll": "Apply to All Slides", - "textAuto": "Auto", - "textBack": "Back", - "textBandedColumn": "Banded Column", - "textBandedRow": "Banded Row", - "textBefore": "Before", - "textBlack": "Through Black", - "textBorder": "Border", - "textBottom": "Bottom", - "textBottomLeft": "Bottom-Left", - "textBottomRight": "Bottom-Right", - "textBringToForeground": "Bring to Foreground", - "textBullets": "Bullets", + "notcriticalErrorTitle": "Увага", + "textActualSize": "Актуальны памер", + "textAddCustomColor": "Дадаць адвольны колер", + "textAdditional": "Дадаткова", + "textAdditionalFormatting": "Дадатковае фарматаванне", + "textAddress": "Адрас", + "textAfter": "Пасля", + "textAlign": "Выраўноўванне", + "textAlignBottom": "Выраўнаваць па ніжняму краю", + "textAlignCenter": "Выраўнаваць па цэнтры", + "textAlignLeft": "Выраўнаваць па леваму краю", + "textAlignMiddle": "Выраўнаваць па сярэдзіне", + "textAlignRight": "Выраўнаваць па праваму краю", + "textAlignTop": "Выраўнаваць па верхняму краю", + "textAllCaps": "Усе ў верхнім рэгістры", + "textApplyAll": "Ужыць да ўсіх слайдаў", + "textAuto": "аўта", + "textAutomatic": "Аўтаматычна", + "textBack": "Назад", + "textBandedColumn": "Чаргаваць слупкі", + "textBandedRow": "Чаргаваць радкі", + "textBefore": "Перад", + "textBlack": "Праз чорны", + "textBorder": "Мяжа", + "textBottom": "Знізу", + "textBottomLeft": "Знізу злева", + "textBottomRight": "Знізу справа", + "textBringToForeground": "Перанесці на пярэдні план", + "textBullets": "Адзнакі", + "textCaseSensitive": "Улічваць рэгістр", + "textCellMargins": "Палі ячэйкі", + "textChart": "Дыяграма", + "textClock": "Гадзіннік", + "textClockwise": "Па стрэлцы гадзінніка", + "textColor": "Колер", + "textCounterclockwise": "Супраць стрэлкі гадзінніка", + "textCover": "Покрыва", + "textCustomColor": "Адвольны колер", + "textDefault": "Вылучаны тэкст", + "textDelay": "Затрымка", + "textDeleteSlide": "Выдаліць слайд", + "textDesign": "Выгляд", + "textDisplay": "Паказваць", + "textDistanceFromText": "Адлегласць да тэксту", + "textDistributeHorizontally": "Размеркаваць па гарызанталі", + "textDistributeVertically": "Размеркаваць па вертыкалі", + "textDone": "Завершана", + "textDoubleStrikethrough": "Падвойнае закрэсліванне", + "textDuplicateSlide": "Дубляваць слайд", + "textDuration": "Працягласць", + "textEditLink": "Рэдагаваць спасылку", + "textEffect": "Эфект", + "textEffects": "Эфекты", + "textExternalLink": "Вонкавая спасылка", + "textFade": "Выцвітанне", + "textFill": "Заліўка", + "textFinalMessage": "Прагляд слайдаў завершаны. Пстрыкніце, каб выйсці.", + "textFind": "Пошук", + "textFindAndReplace": "Пошук і замена", + "textFirstColumn": "Першы слупок", + "textFirstSlide": "Першы слайд", + "textFontColor": "Колер шрыфту", + "textFontColors": "Колеры шрыфту", + "textFonts": "Шрыфты", + "textFromLibrary": "Выява з бібліятэкі", + "textFromURL": "Выява па URL", + "textHeaderRow": "Радок загалоўка", + "textHighlight": "Падсвятліць вынікі", + "textHighlightColor": "Колер падсвятлення", + "textHorizontalIn": "Гарызантальна ўнутр", + "textHorizontalOut": "Па гарызанталі вонкі", + "textHyperlink": "Гіперспасылка", + "textImage": "Выява", + "textImageURL": "URL выявы", + "textLastColumn": "Апошні слупок", + "textLastSlide": "Апошні слайд", + "textLayout": "Макет", + "textLeft": "Злева", + "textLetterSpacing": "Прамежак", + "textLineSpacing": "Прамежак паміж радкамі", + "textLink": "Спасылка", + "textLinkSettings": "Налады спасылкі", + "textLinkTo": "Звязаць з", + "textLinkType": "Тып спасылкі", + "textMoveBackward": "Перамясціць назад", + "textMoveForward": "Перамясціць уперад", + "textNextSlide": "Наступны слайд", + "textNone": "Няма", + "textNoTextFound": "Тэкст не знойдзены", + "textNotUrl": "Гэтае поле мусіць быць URL-адрасам фармату \"http://www.example.com\"", + "textNumbers": "Нумарацыя", + "textOk": "Добра", + "textOpacity": "Непразрыстасць", + "textOptions": "Параметры", + "textPictureFromLibrary": "Выява з бібліятэкі", + "textPictureFromURL": "Выява па URL", + "textPreviousSlide": "Папярэдні слайд", + "textPt": "пт", + "textPush": "Ссоўванне", + "textRemoveChart": "Выдаліць дыяграму", + "textRemoveImage": "Выдаліць выяву", + "textRemoveLink": "Выдаліць спасылку", + "textRemoveShape": "Выдаліць фігуру", + "textRemoveTable": "Выдаліць табліцу", + "textReorder": "Перапарадкаваць", + "textReplace": "Замяніць", + "textReplaceAll": "Замяніць усе", + "textReplaceImage": "Замяніць выяву", + "textRight": "Справа", + "textScreenTip": "Падказка", + "textSearch": "Пошук", + "textSec": "с", + "textSendToBackground": "Перамясціць у фон", + "textShape": "Фігура", + "textSize": "Памер", + "textSlide": "Слайд", + "textSlideInThisPresentation": "Слайд у гэтай прэзентацыі", + "textSlideNumber": "Нумар слайда", + "textSmallCaps": "Малыя прапісныя", + "textSmoothly": "Плаўна", + "textStartOnClick": "Запускаць пстрычкай", + "textStrikethrough": "Закрэсліванне", + "textStyle": "Стыль", + "textStyleOptions": "Параметры стылю", + "textSubscript": "Падрадковыя", + "textSuperscript": "Надрадковыя", + "textTable": "Табліца", + "textText": "Тэкст", + "textTheme": "Тэма", + "textTop": "Уверсе", + "textTopLeft": "Уверсе злева", + "textTopRight": "Уверсе справа", + "textTotalRow": "Радок вынікаў", + "textTransition": "Пераход", + "textType": "Тып", + "textUnCover": "Адкрыццё", + "textVerticalIn": "Вертыкальна ўнутр", + "textVerticalOut": "Вертыкальна вонкі", + "textWedge": "Па крузе", + "textWipe": "З’яўленне", + "textZoom": "Маштаб", + "textZoomIn": "Павелічэнне", + "textZoomOut": "Памяншэнне", + "textZoomRotate": "Павелічэнне і паварочванне", "textBulletsAndNumbers": "Bullets & Numbers", - "textCaseSensitive": "Case Sensitive", - "textCellMargins": "Cell Margins", - "textChart": "Chart", - "textClock": "Clock", - "textClockwise": "Clockwise", - "textColor": "Color", - "textCounterclockwise": "Counterclockwise", - "textCover": "Cover", - "textCustomColor": "Custom Color", - "textDefault": "Selected text", - "textDelay": "Delay", - "textDeleteSlide": "Delete Slide", - "textDisplay": "Display", - "textDistanceFromText": "Distance From Text", - "textDistributeHorizontally": "Distribute Horizontally", - "textDistributeVertically": "Distribute Vertically", - "textDone": "Done", - "textDoubleStrikethrough": "Double Strikethrough", - "textDuplicateSlide": "Duplicate Slide", - "textDuration": "Duration", - "textEditLink": "Edit Link", - "textEffect": "Effect", - "textEffects": "Effects", "textEmptyImgUrl": "You need to specify the image URL.", - "textExternalLink": "External Link", - "textFade": "Fade", - "textFill": "Fill", - "textFinalMessage": "The end of slide preview. Click to exit.", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", - "textFirstColumn": "First Column", - "textFirstSlide": "First Slide", - "textFontColor": "Font Color", - "textFontColors": "Font Colors", - "textFonts": "Fonts", - "textFromLibrary": "Picture from Library", - "textFromURL": "Picture from URL", - "textHeaderRow": "Header Row", - "textHighlight": "Highlight Results", - "textHighlightColor": "Highlight Color", - "textHorizontalIn": "Horizontal In", - "textHorizontalOut": "Horizontal Out", - "textHyperlink": "Hyperlink", - "textImage": "Image", - "textImageURL": "Image URL", - "textLastColumn": "Last Column", - "textLastSlide": "Last Slide", - "textLayout": "Layout", - "textLeft": "Left", - "textLetterSpacing": "Letter Spacing", - "textLineSpacing": "Line Spacing", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkTo": "Link to", - "textLinkType": "Link Type", - "textMoveBackward": "Move Backward", - "textMoveForward": "Move Forward", - "textNextSlide": "Next Slide", - "textNone": "None", "textNoStyles": "No styles for this type of chart.", - "textNoTextFound": "Text not found", - "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textNumbers": "Numbers", - "textOpacity": "Opacity", - "textOptions": "Options", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textPreviousSlide": "Previous Slide", - "textPt": "pt", - "textPush": "Push", - "textRemoveChart": "Remove Chart", - "textRemoveImage": "Remove Image", - "textRemoveLink": "Remove Link", - "textRemoveShape": "Remove Shape", - "textRemoveTable": "Remove Table", - "textReorder": "Reorder", - "textReplace": "Replace", - "textReplaceAll": "Replace All", - "textReplaceImage": "Replace Image", - "textRight": "Right", - "textScreenTip": "Screen Tip", - "textSearch": "Search", - "textSec": "s", "textSelectObjectToEdit": "Select object to edit", - "textSendToBackground": "Send to Background", - "textShape": "Shape", - "textSize": "Size", - "textSlide": "Slide", - "textSlideInThisPresentation": "Slide in this Presentation", - "textSlideNumber": "Slide Number", - "textSmallCaps": "Small Caps", - "textSmoothly": "Smoothly", "textSplit": "Split", - "textStartOnClick": "Start On Click", - "textStrikethrough": "Strikethrough", - "textStyle": "Style", - "textStyleOptions": "Style Options", - "textSubscript": "Subscript", - "textSuperscript": "Superscript", - "textTable": "Table", - "textText": "Text", - "textTheme": "Theme", - "textTop": "Top", - "textTopLeft": "Top-Left", - "textTopRight": "Top-Right", - "textTotalRow": "Total Row", - "textTransition": "Transition", - "textType": "Type", - "textUnCover": "UnCover", - "textVerticalIn": "Vertical In", - "textVerticalOut": "Vertical Out", - "textWedge": "Wedge", - "textWipe": "Wipe", - "textZoom": "Zoom", - "textZoomIn": "Zoom In", - "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate", - "textTransitions": "Transitions", - "textDesign": "Design", - "textAutomatic": "Automatic", - "textOk": "Ok" + "textTransitions": "Transitions" }, "Settings": { - "mniSlideStandard": "Standard (4:3)", - "mniSlideWide": "Widescreen (16:9)", - "textAbout": "About", - "textAddress": "address:", - "textApplication": "Application", - "textApplicationSettings": "Application Settings", - "textAuthor": "Author", - "textBack": "Back", - "textCaseSensitive": "Case Sensitive", - "textCentimeter": "Centimeter", - "textCollaboration": "Collaboration", - "textColorSchemes": "Color Schemes", - "textComment": "Comment", - "textCreated": "Created", - "textDisableAll": "Disable All", + "mniSlideStandard": "Стандартны (4:3)", + "mniSlideWide": "Шырокаэкранны (16:9)", + "textAbout": "Пра праграму", + "textAddress": "адрас:", + "textApplication": "Дадатак", + "textApplicationSettings": "Налады праграмы", + "textAuthor": "Аўтар", + "textBack": "Назад", + "textCaseSensitive": "Улічваць рэгістр", + "textCentimeter": "Сантыметр", + "textCollaboration": "Сумесная праца", + "textColorSchemes": "Каляровыя схемы", + "textComment": "Каментар", + "textCreated": "Створана", + "textDisableAll": "Адключыць усе", + "textDone": "Завершана", + "textDownload": "Спампаваць", + "textDownloadAs": "Спампаваць як...", + "textEmail": "Адрас электроннай пошты:", + "textEnableAll": "Уключыць усе", + "textFind": "Пошук", + "textFindAndReplace": "Пошук і замена", + "textHelp": "Даведка", + "textHighlight": "Падсвятліць вынікі", + "textInch": "Цаля", + "textLastModified": "Апошняя змена", + "textLastModifiedBy": "Аўтар апошняй змены", + "textLoading": "Загрузка…", + "textLocation": "Размяшчэнне", + "textMacrosSettings": "Налады макрасаў", + "textNoTextFound": "Тэкст не знойдзены", + "textOwner": "Уладальнік", + "textPoint": "Пункт", + "textPoweredBy": "Распрацавана", + "textPresentationInfo": "Інфармацыя аб прэзентацыі", + "textPresentationSettings": "Налады прэзентацыі", + "textPresentationTitle": "Назва прэзентацыі", + "textPrint": "Друк", + "textReplace": "Замяніць", + "textReplaceAll": "Замяніць усе", + "textSearch": "Пошук", + "textSettings": "Налады", + "textShowNotification": "Паказваць апавяшчэнне", + "textSlideSize": "Памер слайда", + "textSpellcheck": "Праверка правапісу", + "textSubject": "Тэма", + "textTitle": "Назва", + "textUnitOfMeasurement": "Адзінкі вымярэння", + "textUploaded": "Запампавана", + "textVersion": "Версія", + "txtScheme1": "Офіс", + "txtScheme10": "Звычайная", + "txtScheme11": "Метро", + "txtScheme12": "Модульная", + "txtScheme13": "Прывабная", + "txtScheme14": "Эркер", + "txtScheme15": "Зыходная", + "txtScheme16": "Папяровая", + "txtScheme17": "Сонцаварот", + "txtScheme18": "Тэхнічная", + "txtScheme19": "Трэк", + "txtScheme2": "Адценні шэрага", + "txtScheme20": "Гарадская", + "txtScheme21": "Яркая", + "txtScheme3": "Апекс", + "txtScheme4": "Аспект", + "txtScheme5": "Афіцыйная", + "txtScheme6": "Адкрытая", + "txtScheme7": "Справядлівасць", + "txtScheme8": "Плынь", + "txtScheme9": "Ліцейня", + "textDarkTheme": "Dark Theme", "textDisableAllMacrosWithNotification": "Disable all macros with notification", "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", - "textDone": "Done", - "textDownload": "Download", - "textDownloadAs": "Download As...", - "textEmail": "email:", - "textEnableAll": "Enable All", "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", "textFindAndReplaceAll": "Find and Replace All", - "textHelp": "Help", - "textHighlight": "Highlight Results", - "textInch": "Inch", - "textLastModified": "Last Modified", - "textLastModifiedBy": "Last Modified By", - "textLoading": "Loading...", - "textLocation": "Location", - "textMacrosSettings": "Macros Settings", - "textNoTextFound": "Text not found", - "textOwner": "Owner", - "textPoint": "Point", - "textPoweredBy": "Powered By", - "textPresentationInfo": "Presentation Info", - "textPresentationSettings": "Presentation Settings", - "textPresentationTitle": "Presentation Title", - "textPrint": "Print", - "textReplace": "Replace", - "textReplaceAll": "Replace All", - "textSearch": "Search", - "textSettings": "Settings", - "textShowNotification": "Show Notification", - "textSlideSize": "Slide Size", - "textSpellcheck": "Spell Checking", - "textSubject": "Subject", "textTel": "tel:", - "textTitle": "Title", - "textUnitOfMeasurement": "Unit Of Measurement", - "textUploaded": "Uploaded", - "textVersion": "Version", - "txtScheme1": "Office", - "txtScheme10": "Median", - "txtScheme11": "Metro", - "txtScheme12": "Module", - "txtScheme13": "Opulent", - "txtScheme14": "Oriel", - "txtScheme15": "Origin", - "txtScheme16": "Paper", - "txtScheme17": "Solstice", - "txtScheme18": "Technic", - "txtScheme19": "Trek", - "txtScheme2": "Grayscale", - "txtScheme20": "Urban", - "txtScheme21": "Verve", - "txtScheme22": "New Office", - "txtScheme3": "Apex", - "txtScheme4": "Aspect", - "txtScheme5": "Civic", - "txtScheme6": "Concourse", - "txtScheme7": "Equity", - "txtScheme8": "Flow", - "txtScheme9": "Foundry", - "textDarkTheme": "Dark Theme" + "txtScheme22": "New Office" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/ca.json b/apps/presentationeditor/mobile/locale/ca.json index c987d91a9..31f17d156 100644 --- a/apps/presentationeditor/mobile/locale/ca.json +++ b/apps/presentationeditor/mobile/locale/ca.json @@ -33,13 +33,13 @@ "textTryUndoRedo": "S'han desactivat les funcions desfés/refés per al mode de coedició ràpida.", "textUsers": "Usuaris" }, + "HighlightColorPalette": { + "textNoFill": "Sense emplenament" + }, "ThemeColorPalette": { "textCustomColors": "Colors personalitzats", "textStandartColors": "Colors estàndard", "textThemeColors": "Colors del tema" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -107,9 +107,12 @@ "textHasMacros": "El fitxer conté macros automàtiques.
Les vols executar?", "textNo": "No", "textNoLicenseTitle": "S'ha assolit el límit de llicència", + "textNoTextFound": "No s'ha trobat el text", "textOpenFile": "Introdueix una contrasenya per obrir el fitxer", "textPaidFeature": "Funció de pagament", "textRemember": "Recorda la meva elecció", + "textReplaceSkipped": "S'ha realitzat la substitució. S'han omès {0} ocurrències.", + "textReplaceSuccess": "S'ha fet la cerca. S'han substituït les coincidències: {0}", "textYes": "Sí", "titleLicenseExp": "La llicència ha caducat", "titleServerVersion": "S'ha actualitzat l'editor", @@ -123,10 +126,7 @@ "warnLicenseUsersExceeded": "Has arribat al límit d'usuari per a %1 editors. Contacta amb el teu administrador per a més informació.", "warnNoLicense": "Has arribat al límit de connexions simultànies a %1 editors. Aquest document només s'obrirà en mode lectura. Contacta amb l'equip de vendes %1 per a les condicions d'una actualització personal.", "warnNoLicenseUsers": "Has arribat al límit d'usuaris per a %1 editors. Contacta amb l'equip de vendes de %1 per obtenir les condicions de millora personals dels teus serveis.", - "warnProcessRightsChange": "No tens permís per editar el fitxer.", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "No tens permís per editar el fitxer." } }, "Error": { @@ -189,7 +189,7 @@ "printTextText": "S'està imprimint el document...", "printTitleText": "S'està imprimint el document", "savePreparingText": "S'està preparant per desar", - "savePreparingTitle": "S'està preparant per desar. Espera...", + "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", @@ -228,6 +228,7 @@ "textLinkTo": "Enllaç a", "textLinkType": "Tipus d'enllaç", "textNextSlide": "Diapositiva següent", + "textOk": "D'acord", "textOther": "Altre", "textPictureFromLibrary": "Imatge de la biblioteca", "textPictureFromURL": "Imatge de l'URL", @@ -240,8 +241,7 @@ "textSlideNumber": "Número de diapositiva", "textTable": "Taula", "textTableSize": "Mida de la taula", - "txtNotUrl": "Aquest camp hauria de ser un URL amb el format \"http://www.exemple.com\"", - "textOk": "Ok" + "txtNotUrl": "Aquest camp hauria de ser un URL amb el format \"http://www.exemple.com\"" }, "Edit": { "notcriticalErrorTitle": "Advertiment", @@ -261,6 +261,7 @@ "textAllCaps": "Tot en majúscules", "textApplyAll": "Aplica-ho a totes les diapositives", "textAuto": "Automàtic", + "textAutomatic": "Automàtic", "textBack": "Enrere", "textBandedColumn": "Columna en bandes", "textBandedRow": "Fila en bandes", @@ -285,6 +286,7 @@ "textDefault": "Text seleccionat", "textDelay": "Retard", "textDeleteSlide": "Suprimeix la diapositiva", + "textDesign": "Disseny", "textDisplay": "Visualització", "textDistanceFromText": "Distància del text", "textDistributeHorizontally": "Distribueix horitzontalment", @@ -336,6 +338,7 @@ "textNoTextFound": "No s'ha trobat el text", "textNotUrl": "Aquest camp hauria de ser un URL amb el format \"http://www.exemple.com\"", "textNumbers": "Nombres", + "textOk": "D'acord", "textOpacity": "Opacitat", "textOptions": "Opcions", "textPictureFromLibrary": "Imatge de la biblioteca", @@ -390,10 +393,7 @@ "textZoom": "Zoom", "textZoomIn": "Amplia", "textZoomOut": "Redueix", - "textZoomRotate": "Amplia i gira", - "textAutomatic": "Automatic", - "textDesign": "Design", - "textOk": "Ok" + "textZoomRotate": "Amplia i gira" }, "Settings": { "mniSlideStandard": "Estàndard (4:3)", @@ -410,6 +410,7 @@ "textColorSchemes": "Combinacions de colors", "textComment": "Comentari", "textCreated": "S'ha creat", + "textDarkTheme": "Tema fosc", "textDisableAll": "Inhabilita-ho tot", "textDisableAllMacrosWithNotification": "Inhabilita totes les macros amb notificació", "textDisableAllMacrosWithoutNotification": "Inhabilita totes les macros sense notificació", @@ -472,8 +473,7 @@ "txtScheme6": "Esplanada", "txtScheme7": "Equitat", "txtScheme8": "Flux", - "txtScheme9": "Foneria", - "textDarkTheme": "Dark Theme" + "txtScheme9": "Foneria" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/en.json b/apps/presentationeditor/mobile/locale/en.json index 855036af1..90941fd52 100644 --- a/apps/presentationeditor/mobile/locale/en.json +++ b/apps/presentationeditor/mobile/locale/en.json @@ -122,7 +122,7 @@ "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", - "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
Please contact your administrator to get full access", + "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.", diff --git a/apps/presentationeditor/mobile/locale/es.json b/apps/presentationeditor/mobile/locale/es.json index b927c1d7a..191f944bf 100644 --- a/apps/presentationeditor/mobile/locale/es.json +++ b/apps/presentationeditor/mobile/locale/es.json @@ -3,7 +3,7 @@ "textAbout": "Acerca de", "textAddress": "Dirección", "textBack": "Atrás", - "textEmail": "E-mail", + "textEmail": "Correo", "textPoweredBy": "Con tecnología de", "textTel": "Tel", "textVersion": "Versión " @@ -33,13 +33,13 @@ "textTryUndoRedo": "Las funciones Deshacer/Rehacer están desactivadas en el modo de co-edición rápido.", "textUsers": "Usuarios" }, + "HighlightColorPalette": { + "textNoFill": "Sin relleno" + }, "ThemeColorPalette": { "textCustomColors": "Colores personalizados", "textStandartColors": "Colores estándar", "textThemeColors": "Colores de tema" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -107,9 +107,12 @@ "textHasMacros": "El archivo contiene macros automáticas.
¿Quiere ejecutar macros?", "textNo": "No", "textNoLicenseTitle": "Se ha alcanzado el límite de licencia", + "textNoTextFound": "Texto no encontrado", "textOpenFile": "Introduzca la contraseña para abrir el archivo", "textPaidFeature": "Característica de pago", "textRemember": "Recordar mi elección", + "textReplaceSkipped": "Se ha realizado la sustitución. Se han omitido {0} ocurrencias.", + "textReplaceSuccess": "Se ha realizado la búsqueda. Ocurrencias reemplazadas: {0}", "textYes": "Sí", "titleLicenseExp": "Licencia ha expirado", "titleServerVersion": "Editor ha sido actualizado", @@ -123,10 +126,7 @@ "warnLicenseUsersExceeded": "Usted ha alcanzado el límite de usuarios para los editores de %1. Por favor, contacte con su administrador para recibir más información.", "warnNoLicense": "Ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización. Póngase en contacto con el equipo de ventas de %1 para conocer las condiciones de actualización personal.", "warnNoLicenseUsers": "Usted ha alcanzado el límite de usuarios para los editores de %1.
Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.", - "warnProcessRightsChange": "No tiene permiso para editar el archivo.", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "No tiene permiso para editar el archivo." } }, "Error": { @@ -228,6 +228,7 @@ "textLinkTo": "Enlace a", "textLinkType": "Tipo de enlace", "textNextSlide": "Diapositiva siguiente", + "textOk": "Aceptar", "textOther": "Otro", "textPictureFromLibrary": "Imagen desde biblioteca", "textPictureFromURL": "Imagen desde URL", @@ -240,8 +241,7 @@ "textSlideNumber": "Número de diapositiva", "textTable": "Tabla", "textTableSize": "Tamaño de tabla", - "txtNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\"", - "textOk": "Ok" + "txtNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\"" }, "Edit": { "notcriticalErrorTitle": "Advertencia", @@ -261,6 +261,7 @@ "textAllCaps": "Mayúsculas", "textApplyAll": "Aplicar a todas las diapositivas", "textAuto": "Auto", + "textAutomatic": "Automático", "textBack": "Atrás", "textBandedColumn": "Columna con bandas", "textBandedRow": "Fila con bandas", @@ -285,6 +286,7 @@ "textDefault": "Texto seleccionado", "textDelay": "Retraso", "textDeleteSlide": "Eliminar diapositiva", + "textDesign": "Diseño", "textDisplay": "Mostrar", "textDistanceFromText": "Distancia desde el texto", "textDistributeHorizontally": "Distribuir horizontalmente", @@ -336,6 +338,7 @@ "textNoTextFound": "Texto no encontrado", "textNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\"", "textNumbers": "Números", + "textOk": "Aceptar", "textOpacity": "Opacidad ", "textOptions": "Opciones", "textPictureFromLibrary": "Imagen desde biblioteca", @@ -390,10 +393,7 @@ "textZoom": "Zoom", "textZoomIn": "Acercar", "textZoomOut": "Alejar", - "textZoomRotate": "Zoom y giro", - "textAutomatic": "Automatic", - "textDesign": "Design", - "textOk": "Ok" + "textZoomRotate": "Zoom y giro" }, "Settings": { "mniSlideStandard": "Estándar (4:3)", @@ -410,13 +410,14 @@ "textColorSchemes": "Esquemas de color", "textComment": "Comentario", "textCreated": "Creado", + "textDarkTheme": "Tema oscuro", "textDisableAll": "Deshabilitar todo", "textDisableAllMacrosWithNotification": "Deshabilitar todas las macros con notificación", "textDisableAllMacrosWithoutNotification": "Deshabilitar todas las macros sin notificación", "textDone": "Listo", "textDownload": "Descargar", "textDownloadAs": "Descargar como...", - "textEmail": "email: ", + "textEmail": "correo: ", "textEnableAll": "Habilitar todo", "textEnableAllMacrosWithoutNotification": "Habilitar todas las macros sin notificación", "textFind": "Buscar", @@ -472,8 +473,7 @@ "txtScheme6": "Concurrencia", "txtScheme7": "Equidad ", "txtScheme8": "Flujo", - "txtScheme9": "Fundición", - "textDarkTheme": "Dark Theme" + "txtScheme9": "Fundición" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/fr.json b/apps/presentationeditor/mobile/locale/fr.json index fbb0da356..aff78b2f0 100644 --- a/apps/presentationeditor/mobile/locale/fr.json +++ b/apps/presentationeditor/mobile/locale/fr.json @@ -33,13 +33,13 @@ "textTryUndoRedo": "Les fonctions Annuler/Rétablir sont désactivées pour le mode de co-édition rapide.", "textUsers": "Utilisateurs" }, + "HighlightColorPalette": { + "textNoFill": "Pas de remplissage" + }, "ThemeColorPalette": { "textCustomColors": "Couleurs personnalisées", "textStandartColors": "Couleurs standard", "textThemeColors": "Couleurs de thème" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -107,9 +107,12 @@ "textHasMacros": "Le fichier contient des macros automatiques.
Voulez-vous exécuter les macros?", "textNo": "Non", "textNoLicenseTitle": "La limite de la licence est atteinte", + "textNoTextFound": "Texte non trouvé", "textOpenFile": "Entrer le mot de passe pour ouvrir le fichier", "textPaidFeature": "Fonction payante", "textRemember": "Se souvenir de mon choix", + "textReplaceSkipped": "Le remplacement a été effectué. {0} occurrences ont été sautées.", + "textReplaceSuccess": "La recherche a été effectuée. Occurrences remplacées : {0}", "textYes": "Oui", "titleLicenseExp": "Licence expirée", "titleServerVersion": "L'éditeur est mis à jour", @@ -123,10 +126,7 @@ "warnLicenseUsersExceeded": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Pour en savoir plus, contactez votre administrateur.", "warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert en lecture seule. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", "warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", - "warnProcessRightsChange": "Vous n'avez pas la permission de modifier ce fichier.", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "Vous n'avez pas la permission de modifier ce fichier." } }, "Error": { @@ -228,6 +228,7 @@ "textLinkTo": "Lien vers", "textLinkType": "Type de lien", "textNextSlide": "Diapositive suivante", + "textOk": "Accepter", "textOther": "Autre", "textPictureFromLibrary": "Image depuis la bibliothèque", "textPictureFromURL": "Image depuis URL", @@ -240,8 +241,7 @@ "textSlideNumber": "Numéro de diapositive", "textTable": "Tableau", "textTableSize": "Taille du tableau", - "txtNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"", - "textOk": "Ok" + "txtNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"" }, "Edit": { "notcriticalErrorTitle": "Avertissement", @@ -261,6 +261,7 @@ "textAllCaps": "Tout en majuscules", "textApplyAll": "Appliquer à toutes les diapositives", "textAuto": "Auto", + "textAutomatic": "Automatique", "textBack": "Retour", "textBandedColumn": "Colonne à couleur alternée", "textBandedRow": "Ligne à couleur alternée", @@ -285,6 +286,7 @@ "textDefault": "Texte sélectionné", "textDelay": "Retard", "textDeleteSlide": "Supprimer la diapositive", + "textDesign": "Design", "textDisplay": "Afficher", "textDistanceFromText": "Distance du texte", "textDistributeHorizontally": "Distribuer horizontalement", @@ -336,6 +338,7 @@ "textNoTextFound": "Le texte est introuvable", "textNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"", "textNumbers": "Numérotation", + "textOk": "Accepter", "textOpacity": "Opacité", "textOptions": "Options", "textPictureFromLibrary": "Image depuis la bibliothèque", @@ -390,10 +393,7 @@ "textZoom": "Zoom", "textZoomIn": "Zoom avant", "textZoomOut": "Zoom arrière", - "textZoomRotate": "Zoom et rotation", - "textAutomatic": "Automatic", - "textDesign": "Design", - "textOk": "Ok" + "textZoomRotate": "Zoom et rotation" }, "Settings": { "mniSlideStandard": "Standard (4:3)", @@ -410,6 +410,7 @@ "textColorSchemes": "Jeux de couleurs", "textComment": "Commentaire", "textCreated": "Créé", + "textDarkTheme": "Thème sombre", "textDisableAll": "Désactiver tout", "textDisableAllMacrosWithNotification": "Désactiver toutes les macros avec notification", "textDisableAllMacrosWithoutNotification": "Désactiver toutes les macros sans notification", @@ -472,8 +473,7 @@ "txtScheme6": "Rotonde", "txtScheme7": "Capitaux", "txtScheme8": "Flux", - "txtScheme9": "Fonderie", - "textDarkTheme": "Dark Theme" + "txtScheme9": "Fonderie" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/it.json b/apps/presentationeditor/mobile/locale/it.json index acef63b0a..afee10aa8 100644 --- a/apps/presentationeditor/mobile/locale/it.json +++ b/apps/presentationeditor/mobile/locale/it.json @@ -33,13 +33,13 @@ "textTryUndoRedo": "Le funzioni Annulla/Ripeti sono disattivate nella modalità rapida di modifica collaborativa.", "textUsers": "Utenti" }, + "HighlightColorPalette": { + "textNoFill": "Nessun riempimento" + }, "ThemeColorPalette": { "textCustomColors": "Colori personalizzati", "textStandartColors": "Colori standard", "textThemeColors": "Colori del tema" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -107,9 +107,12 @@ "textHasMacros": "Il file contiene delle macro automatiche.
Vuoi eseguirle?", "textNo": "No", "textNoLicenseTitle": "È stato raggiunto il limite della licenza", + "textNoTextFound": "Testo non trovato", "textOpenFile": "Inserisci la password per aprire il file", "textPaidFeature": "Funzionalità a pagamento", "textRemember": "Ricordare la mia scelta", + "textReplaceSkipped": "La sostituzione è stata effettuata. {0} casi sono stati saltati.", + "textReplaceSuccess": "La ricerca è stata effettuata. Casi sostituiti: {0}", "textYes": "Sì", "titleLicenseExp": "La licenza è scaduta", "titleServerVersion": "L'editor è stato aggiornato", @@ -123,10 +126,7 @@ "warnLicenseUsersExceeded": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il tuo amministratore per maggior informazioni.", "warnNoLicense": "Hai raggiunto il limite delle connessioni simultanee agli editor %1. Questo documento sarà aperto solo in modalità di visualizzazione. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", "warnNoLicenseUsers": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", - "warnProcessRightsChange": "Non hai il permesso di modificare il file.", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "Non hai il permesso di modificare il file." } }, "Error": { @@ -228,6 +228,7 @@ "textLinkTo": "Link a", "textLinkType": "Tipo di link", "textNextSlide": "Diapositiva successiva", + "textOk": "OK", "textOther": "Altro", "textPictureFromLibrary": "Immagine dalla libreria", "textPictureFromURL": "Immagine dall'URL", @@ -240,8 +241,7 @@ "textSlideNumber": "Numero di diapositiva", "textTable": "Tabella", "textTableSize": "Dimensione di tabella", - "txtNotUrl": "Questo campo deve essere un URL nel formato \"http://www.example.com\"", - "textOk": "Ok" + "txtNotUrl": "Questo campo deve essere un URL nel formato \"http://www.example.com\"" }, "Edit": { "notcriticalErrorTitle": "Avvertimento", @@ -261,6 +261,7 @@ "textAllCaps": "Tutto maiuscolo", "textApplyAll": "Applica a tutte le diapositive", "textAuto": "Auto", + "textAutomatic": "Automatico", "textBack": "Indietro", "textBandedColumn": "Colonne a bande", "textBandedRow": "Righe a bande", @@ -285,6 +286,7 @@ "textDefault": "Testo selezionato", "textDelay": "Ritardo", "textDeleteSlide": "Eliminare diapositiva", + "textDesign": "Design", "textDisplay": "Visualizzare", "textDistanceFromText": "Distanza dal testo", "textDistributeHorizontally": "Distribuire orizzontalmente", @@ -336,6 +338,7 @@ "textNoTextFound": "Testo non trovato", "textNotUrl": "Questo campo deve essere un URL nel formato \"http://www.example.com\"", "textNumbers": "Numeri", + "textOk": "OK", "textOpacity": "Opacità", "textOptions": "Opzioni", "textPictureFromLibrary": "Immagine dalla libreria", @@ -390,10 +393,7 @@ "textZoom": "Zoom", "textZoomIn": "Ingrandire", "textZoomOut": "Rimpicciolire", - "textZoomRotate": "Zoom e rotazione", - "textAutomatic": "Automatic", - "textDesign": "Design", - "textOk": "Ok" + "textZoomRotate": "Zoom e rotazione" }, "Settings": { "mniSlideStandard": "Standard (4:3)", @@ -410,6 +410,7 @@ "textColorSchemes": "Schemi di colori", "textComment": "Commento", "textCreated": "Creato", + "textDarkTheme": "‎Tema scuro‎", "textDisableAll": "Disabilitare tutto", "textDisableAllMacrosWithNotification": "Disattivare tutte le macro con notifica", "textDisableAllMacrosWithoutNotification": "Disattivare tutte le macro senza notifica", @@ -472,8 +473,7 @@ "txtScheme6": "Concorso", "txtScheme7": "Equità", "txtScheme8": "Flusso", - "txtScheme9": "Fonderia", - "textDarkTheme": "Dark Theme" + "txtScheme9": "Fonderia" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/ja.json b/apps/presentationeditor/mobile/locale/ja.json index 5cc5a35bd..0d2e68c8c 100644 --- a/apps/presentationeditor/mobile/locale/ja.json +++ b/apps/presentationeditor/mobile/locale/ja.json @@ -117,7 +117,7 @@ "txtIncorrectPwd": "パスワードが間違い", "txtProtected": "パスワードを入力してファイルを開くと、現在のパスワードがリセットされます", "warnLicenseExceeded": "%1エディター 時接続数の制限に達しました。この文書が見るだけのために開かれる。詳細についてはアドミニストレータを連絡してください。", - "warnLicenseExp": "ライセンスが満期しました。ライセンスを更新し、ページを再びお読み込みしてください。", + "warnLicenseExp": "ライセンスの有効期限が切れています。ライセンスを更新してページをリロードしてください。", "warnLicenseLimitedNoAccess": "ライセンスが満期しました。編集の汎関数にアクセスがありません。アドミンに連絡してください。", "warnLicenseLimitedRenewed": "ライセンスが書き換えすべきです。文書を変更ためのアクセスが制限付きされました。フル アクセスを再接続ためにアドミニストレータを連絡してください。", "warnLicenseUsersExceeded": "%1エディターのユーザー制限に達しました。 詳細についてはアドミニストレータを連絡してください。", @@ -154,7 +154,7 @@ "errorUpdateVersionOnDisconnect": "インターネットが再接続され、ファイルのバージョンが更新されました。
作業を続ける前に、ファイルをダウンロードするか、内容をコピーして、思わぬ変更があった際にも対処できるようにしてから、このページを再読み込みしてください。", "errorUserDrop": "現在、このファイルにはアクセスできません。", "errorUsersExceed": "料金プランによってユーザ数を超過しました。", - "errorViewerDisconnect": "接続が失われました。あなたはまだ文書を見えるけど,
接続が復元されたしページが再読み込まれたまで文書をダウンロードと印刷できません。", + "errorViewerDisconnect": "接続が失われました。文書の表示は可能ですが、
再度接続されてページが再ロードされるまで、ダウンロードまたは印刷することはできません。", "notcriticalErrorTitle": " 警告", "openErrorText": "ファイルを開く際にエラーが発生しました。", "saveErrorText": "ファイルの保存中にエラーが発生された", @@ -380,7 +380,7 @@ "textTopRight": "右上", "textTotalRow": "合計行", "textTransition": "切り替え​​", - "textTransitions": "遷移", + "textTransitions": "切り替え効果", "textType": "タイプ", "textUnCover": "アンカバー", "textVerticalIn": "縦(中)", diff --git a/apps/presentationeditor/mobile/locale/ro.json b/apps/presentationeditor/mobile/locale/ro.json index 98b4984dc..30dc47e3f 100644 --- a/apps/presentationeditor/mobile/locale/ro.json +++ b/apps/presentationeditor/mobile/locale/ro.json @@ -33,13 +33,13 @@ "textTryUndoRedo": "Funcții Anulare/Refacere sunt dezactivate în modul Rapid de editare colaborativă.", "textUsers": "Utilizatori" }, + "HighlightColorPalette": { + "textNoFill": "Fără umplere" + }, "ThemeColorPalette": { "textCustomColors": "Culori particularizate", "textStandartColors": "Culori standard", "textThemeColors": "Culori temă" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -107,9 +107,12 @@ "textHasMacros": "Fișierul conține macrocomenzi.
Doriți să le rulați?", "textNo": "Nu", "textNoLicenseTitle": "Ați atins limita stabilită de licență", + "textNoTextFound": "Textul nu a fost găsit", "textOpenFile": "Introduceți parola pentru deschidere fișier", "textPaidFeature": "Funcția contra plată", "textRemember": "Reține opțiunea mea", + "textReplaceSkipped": "A avut loc o înlocuire. {0} apariții ignorate.", + "textReplaceSuccess": "Căutarea a fost finalizată. Înlocuiri: {0}", "textYes": "Da", "titleLicenseExp": "Licența a expirat", "titleServerVersion": "Editorul a fost actualizat", @@ -123,10 +126,7 @@ "warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori ai %1 editoare. Pentru detalii, contactați administratorul dvs.", "warnNoLicense": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare. Contactați %1 Departamentul de Vânzări pentru acordarea condițiilor personale de actualizare.", "warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori ai %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.", - "warnProcessRightsChange": "Nu aveți permisiunea de editare pentru fișier.", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "Nu aveți permisiunea de editare pentru fișier." } }, "Error": { @@ -228,6 +228,7 @@ "textLinkTo": "Legătură la", "textLinkType": "Tip link", "textNextSlide": "Diapozitivul următor", + "textOk": "OK", "textOther": "Altele", "textPictureFromLibrary": "Imagine dintr-o bibliotecă ", "textPictureFromURL": "Imaginea prin URL", @@ -240,8 +241,7 @@ "textSlideNumber": "Număr diapozitiv", "textTable": "Tabel", "textTableSize": "Dimensiune tabel", - "txtNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\"", - "textOk": "Ok" + "txtNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\"" }, "Edit": { "notcriticalErrorTitle": "Avertisment", @@ -261,6 +261,7 @@ "textAllCaps": "Cu majuscule", "textApplyAll": "Aplicarea la toate diapozitivele ", "textAuto": "Auto", + "textAutomatic": "Automat", "textBack": "Înapoi", "textBandedColumn": "Coloana alternantă", "textBandedRow": "Rând alternant", @@ -285,6 +286,7 @@ "textDefault": "Textul selectat", "textDelay": "Amânare", "textDeleteSlide": "Ștergere diapozitiv", + "textDesign": "Proiectare", "textDisplay": "Afișare", "textDistanceFromText": "Distanță de la text", "textDistributeHorizontally": "Distribuire pe orizontală", @@ -336,6 +338,7 @@ "textNoTextFound": "Textul nu a fost găsit", "textNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\"", "textNumbers": "Numere", + "textOk": "OK", "textOpacity": "Transparență", "textOptions": "Opțiuni", "textPictureFromLibrary": "Imagine dintr-o bibliotecă ", @@ -390,10 +393,7 @@ "textZoom": "Zoom", "textZoomIn": "Mărire", "textZoomOut": "Micșorare", - "textZoomRotate": "Zoom și rotire", - "textAutomatic": "Automatic", - "textDesign": "Design", - "textOk": "Ok" + "textZoomRotate": "Zoom și rotire" }, "Settings": { "mniSlideStandard": "Standard (4:3)", @@ -410,6 +410,7 @@ "textColorSchemes": "Scheme de culori", "textComment": "Comentariu", "textCreated": "A fost creat la", + "textDarkTheme": "Tema întunecată", "textDisableAll": "Se dezactivează toate", "textDisableAllMacrosWithNotification": "Se dezactivează toate macrocomenzileâ cu notificare", "textDisableAllMacrosWithoutNotification": "Se dezactivează toate macrocomenzile fără notificare", @@ -472,8 +473,7 @@ "txtScheme6": "Concurență", "txtScheme7": "Echilibru", "txtScheme8": "Flux", - "txtScheme9": "Forjă", - "textDarkTheme": "Dark Theme" + "txtScheme9": "Forjă" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/ru.json b/apps/presentationeditor/mobile/locale/ru.json index fa1d2514e..c42b05784 100644 --- a/apps/presentationeditor/mobile/locale/ru.json +++ b/apps/presentationeditor/mobile/locale/ru.json @@ -286,6 +286,7 @@ "textDefault": "Выделенный текст", "textDelay": "Задержка", "textDeleteSlide": "Удалить слайд", + "textDesign": "Дизайн", "textDisplay": "Отображать", "textDistanceFromText": "Расстояние до текста", "textDistributeHorizontally": "Распределить по горизонтали", @@ -392,8 +393,7 @@ "textZoom": "Масштабирование", "textZoomIn": "Увеличение", "textZoomOut": "Уменьшение", - "textZoomRotate": "Увеличение с поворотом", - "textDesign": "Design" + "textZoomRotate": "Увеличение с поворотом" }, "Settings": { "mniSlideStandard": "Стандартный (4:3)", diff --git a/apps/presentationeditor/mobile/locale/tr.json b/apps/presentationeditor/mobile/locale/tr.json index c4f7ee2e5..b00c442b6 100644 --- a/apps/presentationeditor/mobile/locale/tr.json +++ b/apps/presentationeditor/mobile/locale/tr.json @@ -131,12 +131,12 @@ }, "Error": { "convertationTimeoutText": "Değişim süresi aşıldı.", - "criticalErrorExtText": "Belge listesine geri dönmek için 'Tamam'a basın.", + "criticalErrorExtText": "Belge listesine geri dönmek için 'OK'a basın.", "criticalErrorTitle": "Hata", "downloadErrorText": "İndirme başarısız oldu.", "errorAccessDeny": "Haklarınız olmayan bir işlemi gerçekleştirmeye çalışıyorsunuz.
Lütfen yöneticinizle iletişime geçin.", "errorBadImageUrl": "Resim URL'si yanlış", - "errorConnectToServer": "Bu doküman kaydedilemiyor. Bağlantı ayarlarınızı kontrol edin veya yöneticinizle iletişime geçin.
'Tamam' düğmesini tıkladığınızda, belgeyi indirmeniz istenecektir.", + "errorConnectToServer": "Bu doküman kaydedilemiyor. Bağlantı ayarlarınızı kontrol edin veya yöneticinizle iletişime geçin.
'OK' düğmesini tıkladığınızda, belgeyi indirmeniz istenecektir.", "errorDatabaseConnection": "Dışsal hata.
Veritabanı bağlantı hatası. Lütfen destek ile iletişime geçin.", "errorDataEncrypted": "Şifreli değişiklikler algılandı, çözülemiyor.", "errorDataRange": "Yanlış veri aralığı.", diff --git a/apps/presentationeditor/mobile/locale/zh.json b/apps/presentationeditor/mobile/locale/zh.json index c3f356180..533bc87fc 100644 --- a/apps/presentationeditor/mobile/locale/zh.json +++ b/apps/presentationeditor/mobile/locale/zh.json @@ -33,13 +33,13 @@ "textTryUndoRedo": "快速共同编辑模式下,撤销/重做功能被禁用。", "textUsers": "用户" }, + "HighlightColorPalette": { + "textNoFill": "无填充" + }, "ThemeColorPalette": { "textCustomColors": "自定义颜色", "textStandartColors": "标准颜色", "textThemeColors": "主题颜色" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -107,9 +107,12 @@ "textHasMacros": "这个文件带有自动宏。
是否要运行宏?", "textNo": "不", "textNoLicenseTitle": "触碰到许可证数量限制。", + "textNoTextFound": "未找到文本", "textOpenFile": "输入密码来打开文件", "textPaidFeature": "付费功能", "textRemember": "记住我的选择", + "textReplaceSkipped": "已更换。 {0}次跳过。", + "textReplaceSuccess": "搜索已完成。更换次数:{0}", "textYes": "是", "titleLicenseExp": "许可证过期", "titleServerVersion": "编辑器已更新", @@ -123,10 +126,7 @@ "warnLicenseUsersExceeded": "你触发了 %1 编辑器的同时在线数限制。可联系管理员来了解更多信息。", "warnNoLicense": "你已经触发了 %1 编辑器的同时在线数限制. 该文档打开后,你将只能查看。请联系 %1 的销售团队,获取个人升级条款。", "warnNoLicenseUsers": "你触发了 %1 编辑器的同时在线数限制。可联系管理员来了解更多信息。", - "warnProcessRightsChange": "你没有编辑文件的权限。", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "你没有编辑文件的权限。" } }, "Error": { @@ -228,6 +228,7 @@ "textLinkTo": "链接到", "textLinkType": "链接类型", "textNextSlide": "下一张幻灯片", + "textOk": "好", "textOther": "其他", "textPictureFromLibrary": "图库", "textPictureFromURL": "来自网络的图片", @@ -240,8 +241,7 @@ "textSlideNumber": "幻灯片编号", "textTable": "表格", "textTableSize": "表格大小", - "txtNotUrl": "该字段应为“http://www.example.com”格式的URL", - "textOk": "Ok" + "txtNotUrl": "该字段应为“http://www.example.com”格式的URL" }, "Edit": { "notcriticalErrorTitle": "警告", @@ -261,6 +261,7 @@ "textAllCaps": "全部大写", "textApplyAll": "应用于所有幻灯片", "textAuto": "自动", + "textAutomatic": "自动", "textBack": "返回", "textBandedColumn": "带状列", "textBandedRow": "带状行", @@ -285,6 +286,7 @@ "textDefault": "所选文字", "textDelay": "延迟", "textDeleteSlide": "删除幻灯片", + "textDesign": "设计", "textDisplay": "展示", "textDistanceFromText": "文字距离", "textDistributeHorizontally": "水平分布", @@ -336,6 +338,7 @@ "textNoTextFound": "文本没找到", "textNotUrl": "该字段应为“http://www.example.com”格式的URL", "textNumbers": "数字", + "textOk": "好", "textOpacity": "不透明度", "textOptions": "选项", "textPictureFromLibrary": "图库", @@ -390,10 +393,7 @@ "textZoom": "放大", "textZoomIn": "放大", "textZoomOut": "缩小", - "textZoomRotate": "缩放并旋转", - "textAutomatic": "Automatic", - "textDesign": "Design", - "textOk": "Ok" + "textZoomRotate": "缩放并旋转" }, "Settings": { "mniSlideStandard": "标准(4:3)", @@ -410,6 +410,7 @@ "textColorSchemes": "颜色方案", "textComment": "评论", "textCreated": "已创建", + "textDarkTheme": "深色主题", "textDisableAll": "解除所有项目", "textDisableAllMacrosWithNotification": "关闭所有带通知的宏", "textDisableAllMacrosWithoutNotification": "关闭所有不带通知的宏", @@ -472,8 +473,7 @@ "txtScheme6": "中央大厅", "txtScheme7": "公平", "txtScheme8": "流动", - "txtScheme9": "发现", - "textDarkTheme": "Dark Theme" + "txtScheme9": "发现" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/be.json b/apps/spreadsheeteditor/mobile/locale/be.json index d4ec07be8..30a5eb8f1 100644 --- a/apps/spreadsheeteditor/mobile/locale/be.json +++ b/apps/spreadsheeteditor/mobile/locale/be.json @@ -1,7 +1,7 @@ { "About": { - "textAbout": "About", - "textAddress": "Address", + "textAbout": "Пра праграму", + "textAddress": "Адрас", "textBack": "Back", "textEmail": "Email", "textPoweredBy": "Powered By", @@ -10,9 +10,9 @@ }, "Common": { "Collaboration": { + "textAddComment": "Дадаць каментар", + "textAddReply": "Дадаць адказ", "notcriticalErrorTitle": "Warning", - "textAddComment": "Add Comment", - "textAddReply": "Add Reply", "textBack": "Back", "textCancel": "Cancel", "textCollaboration": "Collaboration", @@ -27,11 +27,11 @@ "textMessageDeleteComment": "Do you really want to delete this comment?", "textMessageDeleteReply": "Do you really want to delete this reply?", "textNoComments": "This document doesn't contain comments", + "textOk": "Ok", "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", @@ -40,9 +40,10 @@ } }, "ContextMenu": { + "menuAddComment": "Дадаць каментар", + "menuAddLink": "Дадаць спасылку", "errorCopyCutPaste": "Copy, cut, and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add Comment", - "menuAddLink": "Add Link", + "errorInvalidLink": "The link reference does not exist. Please correct the link or delete it.", "menuCancel": "Cancel", "menuCell": "Cell", "menuDelete": "Delete", @@ -61,24 +62,16 @@ "notcriticalErrorTitle": "Warning", "textCopyCutPasteActions": "Copy, Cut and Paste Actions", "textDoNotShowAgain": "Don't show again", - "warnMergeLostData": "The operation can destroy data in the selected cells. Continue?", - "errorInvalidLink": "The link reference does not exist. Please correct the link or delete it." + "warnMergeLostData": "Only the data from the upper-left cell will remain in the merged cell.
Are you sure you want to continue?" }, "Controller": { "Main": { - "criticalErrorTitle": "Error", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorProcessSaveResult": "Saving is failed.", - "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "notcriticalErrorTitle": "Warning", "SDK": { - "txtAccent": "Accent", + "txtAccent": "Акцэнт", + "txtBlank": "(пуста)", + "txtByField": "%1 з %2", "txtAll": "(All)", "txtArt": "Your text here", - "txtBlank": "(blank)", - "txtByField": "%1 of %2", "txtClearFilter": "Clear Filter (Alt+C)", "txtColLbls": "Column Labels", "txtColumn": "Column", @@ -134,7 +127,15 @@ "txtYAxis": "Y Axis", "txtYears": "Years" }, - "textAnonymous": "Anonymous", + "textAnonymous": "Ананімны карыстальнік", + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving 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", "textBuyNow": "Visit website", "textClose": "Close", "textContactUs": "Contact sales", @@ -142,9 +143,14 @@ "textGuest": "Guest", "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", "textNo": "No", + "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", "textNoLicenseTitle": "License limit reached", + "textNoTextFound": "Text not found", + "textOk": "Ok", "textPaidFeature": "Paid feature", "textRemember": "Remember my choice", + "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textYes": "Yes", "titleServerVersion": "Editor updated", "titleUpdateVersion": "Version changed", @@ -154,16 +160,11 @@ "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.", - "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", - "textOk": "Ok", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." + "warnProcessRightsChange": "You don't have permission to edit the file." } }, "Error": { + "errorWrongOperator": "Ва ўведзенай формуле ёсць памылка. Выкарыстаны хібны аператар.
Калі ласка, выпраўце памылку.", "convertationTimeoutText": "Conversion timeout exceeded.", "criticalErrorExtText": "Press 'OK' to go back to the document list.", "criticalErrorTitle": "Error", @@ -174,8 +175,10 @@ "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
Select another data range so that the whole table is shifted and try again.", "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
Select a uniform data range inside or outside the table and try again.", "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
Please, unhide the filtered elements and try again.", - "errorBadImageUrl": "Image url is incorrect", + "errorBadImageUrl": "Image URL is incorrect", + "errorCannotUseCommandProtectedSheet": "You cannot use this command on a protected sheet. To use this command, unprotect the sheet.
You might be requested to enter a password.", "errorChangeArray": "You cannot change part of an array.", + "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password.", "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
When you click the 'OK' button, you will be prompted to download the document.", "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
Select a single range and try again.", "errorCountArg": "An error in the formula.
Invalid number of arguments.", @@ -201,6 +204,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", @@ -219,95 +223,46 @@ "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. Wrong operator is used.
Please correct the error.", "notcriticalErrorTitle": "Warning", "openErrorText": "An error has occurred while opening the file", "pastInMergeAreaError": "Cannot change a part of a merged cell", "saveErrorText": "An error has occurred while saving the file", "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "textErrorPasswordIsNotCorrect": "The password you supplied is not correct.
Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.", "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.", - "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password.", - "textErrorPasswordIsNotCorrect": "The password you supplied is not correct.
Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.", - "errorCannotUseCommandProtectedSheet": "You cannot use this command on a protected sheet. To use this command, unprotect the sheet.
You might be requested to enter a password." - }, - "LongActions": { - "applyChangesTextText": "Loading data...", - "applyChangesTitleText": "Loading Data", - "confirmMoveCellRange": "The destination cells range can contain data. Continue the operation?", - "confirmPutMergeRange": "The source data contains merged cells.
They will be unmerged before they are pasted into the table.", - "confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
Do you want to continue?", - "downloadTextText": "Downloading document...", - "downloadTitleText": "Downloading Document", - "loadFontsTextText": "Loading data...", - "loadFontsTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadFontTitleText": "Loading Data", - "loadImagesTextText": "Loading images...", - "loadImagesTitleText": "Loading Images", - "loadImageTextText": "Loading image...", - "loadImageTitleText": "Loading Image", - "loadingDocumentTextText": "Loading document...", - "loadingDocumentTitleText": "Loading document", - "notcriticalErrorTitle": "Warning", - "openTextText": "Opening document...", - "openTitleText": "Opening Document", - "printTextText": "Printing document...", - "printTitleText": "Printing Document", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "saveTextText": "Saving document...", - "saveTitleText": "Saving Document", - "textLoadingDocument": "Loading document", - "textNo": "No", - "textOk": "Ok", - "textYes": "Yes", - "txtEditingMode": "Set editing mode...", - "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait...", - "advDRMPassword": "Password", - "textCancel": "Cancel", - "textErrorWrongPassword": "The password you supplied is not correct.", - "textUnlockRange": "Unlock Range", - "textUnlockRangeWarning": "A range you are trying to change is password protected." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." }, "Statusbar": { + "textErrNameWrongChar": "Назва не можа змяшчаць сімвалы: \\, /, *, ?, [, ], :", "notcriticalErrorTitle": "Warning", "textCancel": "Cancel", "textDelete": "Delete", "textDuplicate": "Duplicate", "textErrNameExists": "Worksheet with this name already exists.", - "textErrNameWrongChar": "A sheet name cannot contains characters: \\, /, *, ?, [, ], :", "textErrNotEmpty": "Sheet name must not be empty", "textErrorLastSheet": "The workbook must have at least one visible worksheet.", "textErrorRemoveSheet": "Can't delete the worksheet.", "textHide": "Hide", "textMore": "More", + "textMove": "Move", + "textMoveBack": "Move back", + "textMoveForward": "Move forward", + "textOk": "Ok", "textRename": "Rename", "textRenameSheet": "Rename Sheet", "textSheet": "Sheet", "textSheetName": "Sheet Name", "textUnhide": "Unhide", - "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?", - "textOk": "Ok", - "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward" - }, - "Toolbar": { - "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this Page", - "stayButtonText": "Stay on this Page" + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" }, "View": { "Add": { + "textAddLink": "Дадаць спасылку", + "textAddress": "Адрас", "errorMaxRows": "ERROR! The maximum number of data series per chart is 255.", "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
opening price, max price, min price, closing price.", "notcriticalErrorTitle": "Warning", @@ -320,8 +275,6 @@ "sCatMathematic": "Math and trigonometry", "sCatStatistical": "Statistical", "sCatTextAndData": "Text and data", - "textAddLink": "Add Link", - "textAddress": "Address", "textBack": "Back", "textCancel": "Cancel", "textChart": "Chart", @@ -341,44 +294,50 @@ "textLink": "Link", "textLinkSettings": "Link Settings", "textLinkType": "Link Type", + "textOk": "Ok", "textOther": "Other", "textPictureFromLibrary": "Picture from library", "textPictureFromURL": "Picture from URL", "textRange": "Range", "textRequired": "Required", "textScreenTip": "Screen Tip", + "textSelectedRange": "Selected Range", "textShape": "Shape", "textSheet": "Sheet", "textSortAndFilter": "Sort and Filter", "txtExpand": "Expand and sort", "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", + "txtLockSort": "Data is found next to your selection, but you do not have sufficient permissions to change those cells.
Do you wish to continue with the current selection?", + "txtNo": "No", "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "txtSorting": "Sorting", "txtSortSelected": "Sort selected", - "textSelectedRange": "Selected Range", - "txtLockSort": "Data is found next to your selection, but you do not have sufficient permissions to change those cells.
Do you wish to continue with the current selection?", - "txtNo": "No", - "txtYes": "Yes", - "textOk": "Ok" + "txtYes": "Yes" }, "Edit": { + "textAccounting": "Фінансавы", + "textActualSize": "Актуальны памер", + "textAddCustomColor": "Дадаць адвольны колер", + "textAddress": "Адрас", + "textAlign": "Выраўноўванне", + "textAlignBottom": "Выраўнаваць па ніжняму краю", + "textAlignCenter": "Выраўнаваць па цэнтры", + "textAlignLeft": "Выраўнаваць па леваму краю", + "textAlignMiddle": "Выраўнаваць па сярэдзіне", + "textAlignRight": "Выраўнаваць па праваму краю", + "textAlignTop": "Выраўнаваць па верхняму краю", + "textAllBorders": "Усе межы", + "textAngleClockwise": "Тэкст па гадзіннікавай стрэлцы", + "textAngleCounterclockwise": "Тэкст супраць гадзіннікавай стрэлкі", + "textAuto": "аўта", + "textAutomatic": "Аўтаматычна", + "textAxisCrosses": "Перасячэнне з воссю", + "textEmptyItem": "{Пустыя}", + "textHundredMil": "100 000 000", + "textHundredThousands": "100 000", + "textTenMillions": "10 000 000", + "textTenThousands": "10 000", "notcriticalErrorTitle": "Warning", - "textAccounting": "Accounting", - "textActualSize": "Actual Size", - "textAddCustomColor": "Add Custom Color", - "textAddress": "Address", - "textAlign": "Align", - "textAlignBottom": "Align Bottom", - "textAlignCenter": "Align Center", - "textAlignLeft": "Align Left", - "textAlignMiddle": "Align Middle", - "textAlignRight": "Align Right", - "textAlignTop": "Align Top", - "textAllBorders": "All Borders", - "textAngleClockwise": "Angle Clockwise", - "textAngleCounterclockwise": "Angle Counterclockwise", - "textAuto": "Auto", - "textAxisCrosses": "Axis Crosses", "textAxisOptions": "Axis Options", "textAxisPosition": "Axis Position", "textAxisTitle": "Axis Title", @@ -414,7 +373,6 @@ "textEditLink": "Edit Link", "textEffects": "Effects", "textEmptyImgUrl": "You need to specify the image URL.", - "textEmptyItem": "{Blanks}", "textErrorMsg": "You must choose at least one value", "textErrorTitle": "Warning", "textEuro": "Euro", @@ -434,9 +392,7 @@ "textHorizontal": "Horizontal", "textHorizontalAxis": "Horizontal Axis", "textHorizontalText": "Horizontal Text", - "textHundredMil": "100 000 000", "textHundreds": "Hundreds", - "textHundredThousands": "100 000", "textHyperlink": "Hyperlink", "textImage": "Image", "textImageURL": "Image URL", @@ -478,6 +434,7 @@ "textNoOverlay": "No Overlay", "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "textNumber": "Number", + "textOk": "Ok", "textOnTickMarks": "On Tick Marks", "textOpacity": "Opacity", "textOut": "Out", @@ -515,8 +472,6 @@ "textSheet": "Sheet", "textSize": "Size", "textStyle": "Style", - "textTenMillions": "10 000 000", - "textTenThousands": "10 000", "textText": "Text", "textTextColor": "Text Color", "textTextFormat": "Text Format", @@ -539,28 +494,31 @@ "textYen": "Yen", "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "txtSortHigh2Low": "Sort Highest to Lowest", - "txtSortLow2High": "Sort Lowest to Highest", - "textAutomatic": "Automatic", - "textOk": "Ok" + "txtSortLow2High": "Sort Lowest to Highest" }, "Settings": { + "textAbout": "Пра праграму", + "textAddress": "Адрас", + "textApplication": "Дадатак", + "textApplicationSettings": "Налады праграмы", + "textAuthor": "Аўтар", + "txtScheme3": "Апекс", + "txtScheme4": "Аспект", "advCSVOptions": "Choose CSV options", "advDRMEnterPassword": "Your password, please:", "advDRMOptions": "Protected File", "advDRMPassword": "Password", "closeButtonText": "Close File", "notcriticalErrorTitle": "Warning", - "textAbout": "About", - "textAddress": "Address", - "textApplication": "Application", - "textApplicationSettings": "Application Settings", - "textAuthor": "Author", "textBack": "Back", "textBottom": "Bottom", "textByColumns": "By columns", "textByRows": "By rows", "textCancel": "Cancel", "textCentimeter": "Centimeter", + "textChooseCsvOptions": "Choose CSV Options", + "textChooseDelimeter": "Choose Delimeter", + "textChooseEncoding": "Choose Encoding", "textCollaboration": "Collaboration", "textColorSchemes": "Color Schemes", "textComment": "Comment", @@ -568,6 +526,8 @@ "textComments": "Comments", "textCreated": "Created", "textCustomSize": "Custom Size", + "textDarkTheme": "Dark Theme", + "textDelimeter": "Delimiter", "textDisableAll": "Disable All", "textDisableAllMacrosWithNotification": "Disable all macros with a notification", "textDisableAllMacrosWithoutNotification": "Disable all macros without a notification", @@ -577,6 +537,8 @@ "textEmail": "Email", "textEnableAll": "Enable All", "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", + "textEncoding": "Encoding", + "textExample": "Example", "textFind": "Find", "textFindAndReplace": "Find and Replace", "textFindAndReplaceAll": "Find and Replace All", @@ -599,6 +561,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", @@ -631,9 +594,13 @@ "textValues": "Values", "textVersion": "Version", "textWorkbook": "Workbook", + "txtColon": "Colon", + "txtComma": "Comma", "txtDelimiter": "Delimiter", + "txtDownloadCsv": "Download CSV", "txtEncoding": "Encoding", "txtIncorrectPwd": "Password is incorrect", + "txtOk": "Ok", "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", "txtScheme1": "Office", "txtScheme10": "Median", @@ -650,29 +617,62 @@ "txtScheme20": "Urban", "txtScheme21": "Verve", "txtScheme22": "New Office", - "txtScheme3": "Apex", - "txtScheme4": "Aspect", "txtScheme5": "Civic", "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", "txtScheme9": "Foundry", + "txtSemicolon": "Semicolon", "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", - "textChooseCsvOptions": "Choose CSV Options", - "textChooseDelimeter": "Choose Delimeter", - "textChooseEncoding": "Choose Encoding", - "textDelimeter": "Delimiter", - "textEncoding": "Encoding", - "txtColon": "Colon", - "txtComma": "Comma", - "txtDownloadCsv": "Download CSV", - "txtOk": "Ok", - "txtSemicolon": "Semicolon", - "textExample": "Example", - "textDarkTheme": "Dark Theme" + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?" } + }, + "LongActions": { + "advDRMPassword": "Password", + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "confirmMoveCellRange": "The destination cells range can contain data. Continue the operation?", + "confirmPutMergeRange": "The source data contains merged cells.
They will be unmerged before they are pasted into the table.", + "confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
Do you want to continue?", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "notcriticalErrorTitle": "Warning", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textCancel": "Cancel", + "textErrorWrongPassword": "The password you supplied is not correct.", + "textLoadingDocument": "Loading document", + "textNo": "No", + "textOk": "Ok", + "textUnlockRange": "Unlock Range", + "textUnlockRangeWarning": "A range you are trying to change is password protected.", + "textYes": "Yes", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this Page" } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/ca.json b/apps/spreadsheeteditor/mobile/locale/ca.json index 86767df88..e5fcc0459 100644 --- a/apps/spreadsheeteditor/mobile/locale/ca.json +++ b/apps/spreadsheeteditor/mobile/locale/ca.json @@ -142,9 +142,14 @@ "textGuest": "Convidat", "textHasMacros": "El fitxer conté macros automàtiques.
Les vols executar?", "textNo": "No", + "textNoChoices": "No hi ha opcions per omplir la cel·la.
Només es poden seleccionar valors de text de la columna per substituir-los.", "textNoLicenseTitle": "S'ha assolit el límit de llicència", + "textNoTextFound": "No s'ha trobat el text", + "textOk": "D'acord", "textPaidFeature": "Funció de pagament", "textRemember": "Recorda la meva elecció", + "textReplaceSkipped": "S'ha realitzat la substitució. S'han omès {0} ocurrències.", + "textReplaceSuccess": "S'ha fet la cerca. S'han substituït les coincidències: {0}", "textYes": "Sí", "titleServerVersion": "S'ha actualitzat l'editor", "titleUpdateVersion": "S'ha canviat la versió", @@ -155,12 +160,7 @@ "warnNoLicense": "Has arribat al límit de connexions simultànies a %1 editors. Aquest document només s'obrirà en mode lectura. Contacta amb l'equip de vendes %1 per a les condicions d'una actualització personal.", "warnNoLicenseUsers": "Has arribat al límit d'usuaris per a %1 editors. Contacta amb l'equip de vendes de %1 per obtenir les condicions de millora personals dels teus serveis.", "warnProcessRightsChange": "No tens permís per editar el fitxer.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", - "textNoTextFound": "Text not found", - "textOk": "Ok", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." } }, "Error": { @@ -175,6 +175,7 @@ "errorAutoFilterDataRange": "Aquesta operació no es pot 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": "Aquesta operació no es pot fer perquè l'àrea conté cel·les filtrades.
Mostra els elements filtrats i torna-ho a provar.", "errorBadImageUrl": "L'URL de la imatge no és correcte", + "errorCannotUseCommandProtectedSheet": "No podeu utilitzar aquesta ordre en un full protegit. Per utilitzar aquesta ordre, cal desprotegir el full.
És possible que se us demani que introduïu una contrasenya.", "errorChangeArray": "No pots canviar part d'una matriu.", "errorChangeOnProtectedSheet": "La cel·la o el gràfic que intentes canviar es troba en un full protegit. Per fer un canvi, desprotegeix el full. És possible que et demani que introdueixis una contrasenya.", "errorConnectToServer": "No es pot desar aquest document. Comprova la configuració de la vostra connexió o contacta amb el teu administrador.
Quan facis clic al botó «D'acord», et demanarà que baixis el document.", @@ -233,8 +234,7 @@ "unknownErrorText": "Error desconegut.", "uploadImageExtMessage": "Format d'imatge desconegut.", "uploadImageFileCountMessage": "No s'ha carregat cap imatge.", - "uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB.", - "errorCannotUseCommandProtectedSheet": "You cannot use this command on a protected sheet. To use this command, unprotect the sheet.
You might be requested to enter a password." + "uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB." }, "LongActions": { "advDRMPassword": "Contrasenya", @@ -261,7 +261,7 @@ "printTextText": "S'està imprimint el document...", "printTitleText": "S'està imprimint el document", "savePreparingText": "S'està preparant per desar", - "savePreparingTitle": "S'està preparant per desar. Espera...", + "savePreparingTitle": "S'està preparant per desar. Espereu...", "saveTextText": "S'està desant el document...", "saveTitleText": "S'està desant el document", "textCancel": "Cancel·la", @@ -289,16 +289,16 @@ "textErrorRemoveSheet": "No es pot suprimir el full de càlcul.", "textHide": "Amaga", "textMore": "Més", + "textMove": "Desplaça", + "textMoveBack": "Ves endarrere", + "textMoveForward": "Ves endavant", "textOk": "D'acord", "textRename": "Canvia el nom", "textRenameSheet": "Canvia el nom del full", "textSheet": "Full", "textSheetName": "Nom del full", "textUnhide": "Mostrar", - "textWarnDeleteSheet": "El full de càlcul pot tenir dades. Vols continuar amb l'operació?", - "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "textWarnDeleteSheet": "El full de càlcul pot tenir dades. Vols continuar amb l'operació?" }, "Toolbar": { "dlgLeaveMsgText": "Tens canvis no desats en aquest document. Fes clic a \"Queda't en aquesta pàgina\" per esperar al desament automàtic. Fes clic a \"Deixa aquesta pàgina\" per descartar tots els canvis no desats.", @@ -341,6 +341,7 @@ "textLink": "Enllaç", "textLinkSettings": "Configuració de l'enllaç", "textLinkType": "Tipus d'enllaç", + "textOk": "D'acord", "textOther": "Altre", "textPictureFromLibrary": "Imatge de la biblioteca", "textPictureFromURL": "Imatge de l'URL", @@ -358,8 +359,7 @@ "txtNotUrl": "Aquest camp hauria de ser un URL amb el format \"http://www.exemple.com\"", "txtSorting": "Ordenació", "txtSortSelected": "Ordena els objectes seleccionats", - "txtYes": "Sí", - "textOk": "Ok" + "txtYes": "Sí" }, "Edit": { "notcriticalErrorTitle": "Advertiment", @@ -378,6 +378,7 @@ "textAngleClockwise": "Angle en sentit horari", "textAngleCounterclockwise": "Angle en sentit antihorari", "textAuto": "Automàtic", + "textAutomatic": "Automàtic", "textAxisCrosses": "Creus de l'eix", "textAxisOptions": "Opcions de l’eix", "textAxisPosition": "Posició de l’eix", @@ -478,6 +479,7 @@ "textNoOverlay": "Sense superposició", "textNotUrl": "Aquest camp hauria de ser un URL amb el format \"http://www.exemple.com\"", "textNumber": "Número", + "textOk": "D'acord", "textOnTickMarks": "A les marques de graduació", "textOpacity": "Opacitat", "textOut": "Fora", @@ -539,9 +541,7 @@ "textYen": "Ien", "txtNotUrl": "Aquest camp hauria de ser un URL amb el format \"http://www.exemple.com\"", "txtSortHigh2Low": "Ordena de major a menor", - "txtSortLow2High": "Ordena de menor a major", - "textAutomatic": "Automatic", - "textOk": "Ok" + "txtSortLow2High": "Ordena de menor a major" }, "Settings": { "advCSVOptions": "Tria les opcions CSV", @@ -571,6 +571,7 @@ "textComments": "Comentaris", "textCreated": "S'ha creat", "textCustomSize": "Mida personalitzada", + "textDarkTheme": "Tema fosc", "textDelimeter": "Separador", "textDisableAll": "Inhabilita-ho tot", "textDisableAllMacrosWithNotification": "Inhabilita totes les macros amb una notificació", @@ -671,8 +672,7 @@ "txtSemicolon": "Punt i coma", "txtSpace": "Espai", "txtTab": "Pestanya", - "warnDownloadAs": "Si continues i deses en aquest format, es perdran totes les característiques, excepte el text.
Vols continuar?", - "textDarkTheme": "Dark Theme" + "warnDownloadAs": "Si continues i deses en aquest format, es perdran totes les característiques, excepte el text.
Vols continuar?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/es.json b/apps/spreadsheeteditor/mobile/locale/es.json index 070f8cd2c..ac7976781 100644 --- a/apps/spreadsheeteditor/mobile/locale/es.json +++ b/apps/spreadsheeteditor/mobile/locale/es.json @@ -3,7 +3,7 @@ "textAbout": "Acerca de", "textAddress": "Dirección", "textBack": "Atrás", - "textEmail": "E-mail", + "textEmail": "Correo", "textPoweredBy": "Con tecnología de", "textTel": "Tel", "textVersion": "Versión " @@ -142,9 +142,14 @@ "textGuest": "Invitado", "textHasMacros": "El archivo contiene macros automáticas.
¿Quiere ejecutar macros?", "textNo": "No", + "textNoChoices": "No hay opciones para rellenar la celda.
Sólo se pueden seleccionar valores de texto de la columna para su sustitución.", "textNoLicenseTitle": "Se ha alcanzado el límite de licencia", + "textNoTextFound": "Texto no encontrado", + "textOk": "Aceptar", "textPaidFeature": "Característica de pago", "textRemember": "Recordar mi elección", + "textReplaceSkipped": "Se ha realizado la sustitución. Se han omitido {0} ocurrencias.", + "textReplaceSuccess": "Se ha realizado la búsqueda. Ocurrencias reemplazadas: {0}", "textYes": "Sí", "titleServerVersion": "Editor ha sido actualizado", "titleUpdateVersion": "Versión ha cambiado", @@ -155,12 +160,7 @@ "warnNoLicense": "Ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización. Póngase en contacto con el equipo de ventas de %1 para conocer las condiciones de actualización personal.", "warnNoLicenseUsers": "Ha alcanzado el límite de usuarios para %1 editores. Póngase en contacto con el equipo de ventas de %1 para conocer las condiciones de actualización personal.", "warnProcessRightsChange": "No tiene permiso para editar el archivo.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", - "textNoTextFound": "Text not found", - "textOk": "Ok", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." } }, "Error": { @@ -175,6 +175,7 @@ "errorAutoFilterDataRange": "La operación no se puede realizar para el rango de celdas seleccionado.
Seleccione un rango de datos uniforme dentro o fuera de la tabla y vuelva a intentarlo.", "errorAutoFilterHiddenRange": "La operación no puede realizarse porque el área contiene celdas filtradas.
Por favor, desoculte los elementos filtrados e inténtelo de nuevo.", "errorBadImageUrl": "URL de imagen es incorrecta", + "errorCannotUseCommandProtectedSheet": "No puede utilizar esta orden en una hoja protegida. Para usar esta orden, desproteja la hoja.
Es posible que le pidan una contraseña.", "errorChangeArray": "No se puede cambiar parte de una matriz.", "errorChangeOnProtectedSheet": "La celda o el gráfico que usted está intentando cambiar está en una hoja protegida. Para hacer un cambio, desproteja la hoja. Es posible que le pidan que introduzca una contraseña.", "errorConnectToServer": "No se puede guardar este documento. Compruebe la configuración de su conexión o póngase en contacto con el administrador.
Cuando haga clic en OK, se le pedirá que descargue el documento.", @@ -233,8 +234,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.", - "errorCannotUseCommandProtectedSheet": "You cannot use this command on a protected sheet. To use this command, unprotect the sheet.
You might be requested to enter a password." + "uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB." }, "LongActions": { "advDRMPassword": "Contraseña", @@ -289,16 +289,16 @@ "textErrorRemoveSheet": "No se puede eliminar la hoja de cálculo.", "textHide": "Ocultar", "textMore": "Más", + "textMove": "Mover", + "textMoveBack": "Retroceder", + "textMoveForward": "Avanzar", "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?", - "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "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.", @@ -341,6 +341,7 @@ "textLink": "Enlace", "textLinkSettings": "Ajustes de enlace", "textLinkType": "Tipo de enlace", + "textOk": "Aceptar", "textOther": "Otro", "textPictureFromLibrary": "Imagen desde biblioteca", "textPictureFromURL": "Imagen desde URL", @@ -358,8 +359,7 @@ "txtNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\"", "txtSorting": "Ordenación", "txtSortSelected": "Ordenar los objetos seleccionados", - "txtYes": "Sí", - "textOk": "Ok" + "txtYes": "Sí" }, "Edit": { "notcriticalErrorTitle": "Advertencia", @@ -378,6 +378,7 @@ "textAngleClockwise": "Ángulo descendente", "textAngleCounterclockwise": "Ángulo ascendente", "textAuto": "Auto", + "textAutomatic": "Automático", "textAxisCrosses": "Cruces de eje", "textAxisOptions": "Opciones de eje", "textAxisPosition": "Posición de eje", @@ -478,6 +479,7 @@ "textNoOverlay": "Sin superposición", "textNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\"", "textNumber": "Número", + "textOk": "Aceptar", "textOnTickMarks": "Marcas de graduación", "textOpacity": "Opacidad ", "textOut": "Fuera", @@ -539,9 +541,7 @@ "textYen": "Yen", "txtNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\"", "txtSortHigh2Low": "Ordenar de mayor a menor", - "txtSortLow2High": "Ordenar de menor a mayor ", - "textAutomatic": "Automatic", - "textOk": "Ok" + "txtSortLow2High": "Ordenar de menor a mayor " }, "Settings": { "advCSVOptions": "Elegir los parámetros de CSV", @@ -571,6 +571,7 @@ "textComments": "Comentarios", "textCreated": "Creado", "textCustomSize": "Tamaño personalizado", + "textDarkTheme": "Tema oscuro", "textDelimeter": "Delimitador", "textDisableAll": "Deshabilitar todo", "textDisableAllMacrosWithNotification": "Deshabilitar todas las macros con notificación", @@ -578,7 +579,7 @@ "textDone": "Listo", "textDownload": "Descargar", "textDownloadAs": "Descargar como", - "textEmail": "E-mail", + "textEmail": "Correo", "textEnableAll": "Habilitar todo", "textEnableAllMacrosWithoutNotification": "Habilitar todas las macros sin notificación ", "textEncoding": "Codificación", @@ -671,8 +672,7 @@ "txtSemicolon": "Punto y coma", "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?", - "textDarkTheme": "Dark Theme" + "warnDownloadAs": "Si sigue guardando en este formato, todas las características a excepción del texto se perderán.
¿Está seguro de que desea continuar?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/fr.json b/apps/spreadsheeteditor/mobile/locale/fr.json index 4f57b80e7..d0ff74a93 100644 --- a/apps/spreadsheeteditor/mobile/locale/fr.json +++ b/apps/spreadsheeteditor/mobile/locale/fr.json @@ -142,9 +142,14 @@ "textGuest": "Invité", "textHasMacros": "Le fichier contient des macros automatiques.
Voulez-vous exécuter les macros?", "textNo": "Non", + "textNoChoices": "Il n'y a pas de choix pour remplir la cellule.
Seules les valeurs de texte de la colonne peuvent être sélectionnées pour le remplacement.", "textNoLicenseTitle": "La limite de la licence est atteinte", + "textNoTextFound": "Texte non trouvé", + "textOk": "Accepter", "textPaidFeature": "Fonction payante", "textRemember": "Se souvenir de mon choix", + "textReplaceSkipped": "Le remplacement a été effectué. {0} occurrences ont été sautées.", + "textReplaceSuccess": "La recherche a été effectuée. Occurrences remplacées : {0}", "textYes": "Oui", "titleServerVersion": "L'éditeur est mis à jour", "titleUpdateVersion": "La version a été modifiée", @@ -155,12 +160,7 @@ "warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert en lecture seule. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", "warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", "warnProcessRightsChange": "Vous n'avez pas la permission de modifier ce fichier.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", - "textNoTextFound": "Text not found", - "textOk": "Ok", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." } }, "Error": { @@ -175,6 +175,7 @@ "errorAutoFilterDataRange": "Impossible de réaliser l'opération sur la plage de cellules spécifiée.
Sélectionnez une plage uniforme de données dans le tableau ou hors du tableau différente et réessayez.", "errorAutoFilterHiddenRange": "L'opération ne peut pas être effectuée car la zone contient des cellules filtrées.
Veuillez supprimer les filtres et réessayez.", "errorBadImageUrl": "L'URL de l'image est incorrecte", + "errorCannotUseCommandProtectedSheet": "Vous ne pouvez pas utiliser cette commande sur une feuille protégée. Pour utiliser cette commande, retirez la protection de la feuille.
Il peut vous être demandé de saisir un mot de passe.", "errorChangeArray": "Impossible de modifier une partie de matrice.", "errorChangeOnProtectedSheet": "La cellule ou le graphique que vous essayé de changer est sur une feuille protégée. Pour effectuer le changement, retirer al protection de la feuille. Un mot de passe pourrait vous être demandé.", "errorConnectToServer": "Impossible d'enregistrer ce document. Veuillez vérifier vos paramètres de connexion ou contactez l'administrateur.
Lorsque vous cliquez sur le bouton 'OK', vous serez invité à télécharger le document.", @@ -233,8 +234,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.", - "errorCannotUseCommandProtectedSheet": "You cannot use this command on a protected sheet. To use this command, unprotect the sheet.
You might be requested to enter a password." + "uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo." }, "LongActions": { "advDRMPassword": "Mot de passe", @@ -289,16 +289,16 @@ "textErrorRemoveSheet": "Impossible de supprimer la feuille de calcul.", "textHide": "Masquer", "textMore": "Plus", + "textMove": "Déplacer", + "textMoveBack": "Déplacer vers l’arrière", + "textMoveForward": "Déplacer vers l'avant", "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?", - "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "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.", @@ -341,6 +341,7 @@ "textLink": "Lien", "textLinkSettings": "Paramètres de lien", "textLinkType": "Type de lien", + "textOk": "Accepter", "textOther": "Autre", "textPictureFromLibrary": "Image depuis la bibliothèque", "textPictureFromURL": "Image à partir d'une URL", @@ -358,8 +359,7 @@ "txtNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"", "txtSorting": "Tri", "txtSortSelected": "Trier l'objet sélectionné ", - "txtYes": "Oui", - "textOk": "Ok" + "txtYes": "Oui" }, "Edit": { "notcriticalErrorTitle": "Avertissement", @@ -378,6 +378,7 @@ "textAngleClockwise": "Rotation dans le sens des aiguilles d'une montre", "textAngleCounterclockwise": "Rotation dans le sens inverse des aiguilles d'une montre", "textAuto": "Auto", + "textAutomatic": "Automatique", "textAxisCrosses": "Intersection de l'axe", "textAxisOptions": "Options de l'axe", "textAxisPosition": "Position de l'axe", @@ -478,6 +479,7 @@ "textNoOverlay": "Sans superposition", "textNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"", "textNumber": "Nombre", + "textOk": "Accepter", "textOnTickMarks": "Graduations", "textOpacity": "Opacité", "textOut": "À l'extérieur", @@ -539,9 +541,7 @@ "textYen": "Yen", "txtNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"", "txtSortHigh2Low": "Trier du plus élevé au plus bas", - "txtSortLow2High": "Trier le plus bas au plus élevé", - "textAutomatic": "Automatic", - "textOk": "Ok" + "txtSortLow2High": "Trier le plus bas au plus élevé" }, "Settings": { "advCSVOptions": "Choisir les options CSV", @@ -571,6 +571,7 @@ "textComments": "Commentaires", "textCreated": "Créé", "textCustomSize": "Taille personnalisée", + "textDarkTheme": "Thème sombre", "textDelimeter": "Délimiteur", "textDisableAll": "Désactiver tout", "textDisableAllMacrosWithNotification": "Désactiver toutes les macros avec notification", @@ -671,8 +672,7 @@ "txtSemicolon": "Point-virgule", "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?", - "textDarkTheme": "Dark Theme" + "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/it.json b/apps/spreadsheeteditor/mobile/locale/it.json index e3d0b4b3b..1dec20e1e 100644 --- a/apps/spreadsheeteditor/mobile/locale/it.json +++ b/apps/spreadsheeteditor/mobile/locale/it.json @@ -142,9 +142,14 @@ "textGuest": "Ospite", "textHasMacros": "Il file contiene macro automatiche.
Vuoi eseguire le macro?", "textNo": "No", + "textNoChoices": "Non ci sono alternative per riempire la cella.
Solo i valori testo dalla colonna possono essere selezionati per la sostituzione", "textNoLicenseTitle": "È stato raggiunto il limite della licenza", + "textNoTextFound": "Testo non trovato", + "textOk": "OK", "textPaidFeature": "Funzionalità a pagamento", "textRemember": "Ricordare la mia scelta", + "textReplaceSkipped": "La sostituzione è stata effettuata. {0} casi sono stati saltati.", + "textReplaceSuccess": "La ricerca è stata effettuata. Casi sostituiti: {0}", "textYes": "Sì", "titleServerVersion": "L'editor è stato aggiornato", "titleUpdateVersion": "La versione è stata cambiata", @@ -155,12 +160,7 @@ "warnNoLicense": "Hai raggiunto il limite delle connessioni simultanee agli editor %1. Questo documento sarà aperto solo in modalità di visualizzazione. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", "warnNoLicenseUsers": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", "warnProcessRightsChange": "Non hai il permesso di modificare il file.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", - "textNoTextFound": "Text not found", - "textOk": "Ok", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." } }, "Error": { @@ -175,6 +175,7 @@ "errorAutoFilterDataRange": "Impossibile eseguire l'operazione per l'intervallo di celle selezionato.
Seleziona un intervallo di dati uniforme all'interno o all'esterno della tabella e riprova.", "errorAutoFilterHiddenRange": "L'operazione non può essere eseguita perché l'area contiene le celle filtrate.
Si prega di mostrare gli elementi filtrati e riprovare.", "errorBadImageUrl": "URL dell'immagine non è corretto", + "errorCannotUseCommandProtectedSheet": "Non è possibile utilizzare questo comando su un foglio protetto. Per utilizzare questo comando, sproteggi il foglio.
Potrebbe essere richiesto di inserire una password.", "errorChangeArray": "Non puoi cambiare parte di un array.", "errorChangeOnProtectedSheet": "La cella o il grafico che stai cercando di modificare si trova su un foglio protetto. Per apportare una modifica, rimuovere la protezione del foglio. Potrebbe esserti richiesto di inserire una password.", "errorConnectToServer": "Impossibile salvare questo documento. Controlla le impostazioni di connessione o contatta il tuo amministratore.
Quando fai clic sul pulsante \"OK\", ti verrà chiesto di scaricare il documento.", @@ -233,8 +234,7 @@ "unknownErrorText": "Errore sconosciuto.", "uploadImageExtMessage": "Formato d'immagine sconosciuto.", "uploadImageFileCountMessage": "Nessuna immagine caricata.", - "uploadImageSizeMessage": "L'immagine è troppo grande. La dimensione massima è 25 MB.", - "errorCannotUseCommandProtectedSheet": "You cannot use this command on a protected sheet. To use this command, unprotect the sheet.
You might be requested to enter a password." + "uploadImageSizeMessage": "L'immagine è troppo grande. La dimensione massima è 25 MB." }, "LongActions": { "advDRMPassword": "Password", @@ -289,16 +289,16 @@ "textErrorRemoveSheet": "Impossibile cancellare il foglio di calcolo", "textHide": "Nascondere", "textMore": "Di più", + "textMove": "Sposta", + "textMoveBack": "Sposta indietro", + "textMoveForward": "Sposta avanti", "textOk": "OK", "textRename": "Rinominare", "textRenameSheet": "Rinominare foglio", "textSheet": "Foglio", "textSheetName": "Nome foglio", "textUnhide": "Scoprire", - "textWarnDeleteSheet": "Il foglio di calcolo potrebbe contenere dati. Procedere con l'operazione?", - "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "textWarnDeleteSheet": "Il foglio di calcolo potrebbe contenere dati. Procedere con l'operazione?" }, "Toolbar": { "dlgLeaveMsgText": "Ci sono i cambiamenti non salvati in questo documento. Fai clic su \"Rimanere su questa pagina\" per attendere il salvataggio automatico. Fai clic su \"Lasciare questa pagina\" per eliminare tutti i cambiamenti non salvati.", @@ -341,6 +341,7 @@ "textLink": "Link", "textLinkSettings": "Impostazioni di link", "textLinkType": "Tipo di link", + "textOk": "OK", "textOther": "Altro", "textPictureFromLibrary": "Immagine dalla libreria", "textPictureFromURL": "Immagine dall'URL", @@ -358,8 +359,7 @@ "txtNotUrl": "Questo campo deve essere un URL nel formato \"http://www.example.com\"", "txtSorting": "Ordinamento", "txtSortSelected": "Ordinare selezionato", - "txtYes": "Sì", - "textOk": "Ok" + "txtYes": "Sì" }, "Edit": { "notcriticalErrorTitle": "Avvertimento", @@ -378,6 +378,7 @@ "textAngleClockwise": "Angolo in senso orario", "textAngleCounterclockwise": "Angolo in senso antiorario", "textAuto": "Auto", + "textAutomatic": "Automatico", "textAxisCrosses": "Intersezione con l'asse", "textAxisOptions": "Opzioni dell'asse", "textAxisPosition": "Posizione dell'asse", @@ -478,6 +479,7 @@ "textNoOverlay": "Nessuna sovrapposizione", "textNotUrl": "Questo campo deve essere un URL nel formato \"http://www.example.com\"", "textNumber": "Numero", + "textOk": "OK", "textOnTickMarks": "Segni di graduazione", "textOpacity": "Opacità", "textOut": "All'esterno", @@ -539,9 +541,7 @@ "textYen": "Yen", "txtNotUrl": "Questo campo deve essere un URL nel formato \"http://www.example.com\"", "txtSortHigh2Low": "Ordinare dal più alto al più basso", - "txtSortLow2High": "Ordinare dal più basso al più alto", - "textAutomatic": "Automatic", - "textOk": "Ok" + "txtSortLow2High": "Ordinare dal più basso al più alto" }, "Settings": { "advCSVOptions": "Scegliere le opzioni CSV", @@ -571,6 +571,7 @@ "textComments": "Commenti", "textCreated": "Creato", "textCustomSize": "Dimensione personalizzata", + "textDarkTheme": "‎Tema scuro‎", "textDelimeter": "Delimitatore", "textDisableAll": "Disabilitare tutto", "textDisableAllMacrosWithNotification": "Disabilitare tutte le macro con notifica", @@ -671,8 +672,7 @@ "txtSemicolon": "Punto e virgola", "txtSpace": "Spazio", "txtTab": "Tabulazione", - "warnDownloadAs": "Se continui a salvare in questo formato, tutte le funzioni tranne il testo saranno perse.
Sei sicuro di voler continuare?", - "textDarkTheme": "Dark Theme" + "warnDownloadAs": "Se continui a salvare in questo formato, tutte le funzioni tranne il testo saranno perse.
Sei sicuro di voler continuare?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/ja.json b/apps/spreadsheeteditor/mobile/locale/ja.json index 96a7e5d35..2b51f7e44 100644 --- a/apps/spreadsheeteditor/mobile/locale/ja.json +++ b/apps/spreadsheeteditor/mobile/locale/ja.json @@ -221,7 +221,7 @@ "errorUpdateVersionOnDisconnect": "インターネット接続が復旧し、ファイルのバージョンが更新されました。
作業を継続する前に、ファイルをダウンロードするか、内容をコピーして、変更が消えてしまわないように確認してから、ページを再びお読み込みください。", "errorUserDrop": "今、ファイルにアクセスすることはできません。", "errorUsersExceed": "料金プランで許可されているユーザー数を超えました。", - "errorViewerDisconnect": "接続が失われました。あなたはまだ文書を見えるけど,
接続が復元されたしページが再読み込まれたまで文書をダウンロードと印刷できません。", + "errorViewerDisconnect": "接続が失われました。文書の表示は可能ですが、
再度接続されてページが再ロードされるまで、ダウンロードまたは印刷することはできません。", "errorWrongBracketsCount": "数式でエラーがあります。
ブラケットの数が正しくありません。", "errorWrongOperator": "入力した数式にエラーがあります。間違った演算子が使用されています。
エラーを修正する。", "notcriticalErrorTitle": " 警告", diff --git a/apps/spreadsheeteditor/mobile/locale/ro.json b/apps/spreadsheeteditor/mobile/locale/ro.json index e5b615b33..3404b8aab 100644 --- a/apps/spreadsheeteditor/mobile/locale/ro.json +++ b/apps/spreadsheeteditor/mobile/locale/ro.json @@ -142,9 +142,14 @@ "textGuest": "Invitat", "textHasMacros": "Fișierul conține macrocomenzi.
Doriți să le rulați?", "textNo": "Nu", + "textNoChoices": "Opțiunele de completare datelor în celulă
Pentru înlocuire puteți selecta numai valori de text în coloană.", "textNoLicenseTitle": "Ați atins limita stabilită de licență", + "textNoTextFound": "Textul nu a fost găsit", + "textOk": "OK", "textPaidFeature": "Funcția contra plată", "textRemember": "Reține opțiunea mea", + "textReplaceSkipped": "A avut loc o înlocuire. {0} apariții ignorate.", + "textReplaceSuccess": "Căutarea a fost finalizată. Înlocuiri: {0}", "textYes": "Da", "titleServerVersion": "Editorul a fost actualizat", "titleUpdateVersion": "Versiunea s-a modificat", @@ -155,12 +160,7 @@ "warnNoLicense": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare. Contactați %1 Departamentul de Vânzări pentru acordarea condițiilor personale de actualizare.", "warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori ai %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.", "warnProcessRightsChange": "Nu aveți permisiunea de editare pentru fișier.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", - "textNoTextFound": "Text not found", - "textOk": "Ok", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." } }, "Error": { @@ -175,6 +175,7 @@ "errorAutoFilterDataRange": "Operațiunea nu poare fi efectuată pentru celulele selectate.
Selectați o altă zonă de date uniformă din tabel sau în afara tabelului și încercați din nou.", "errorAutoFilterHiddenRange": "Operațiunea nu poate fi efectuată deoarece zonă conține celule filtrate.
Reafișați elementele filtrate și încercați din nou.", "errorBadImageUrl": "URL-ul imaginii incorectă", + "errorCannotUseCommandProtectedSheet": "Nu puteți folosi această comandă într-o foaie de calcul protejată. Ca să o folosiți, protejarea foii trebuie anulată.
Introducerea parolei poate fi necesară.", "errorChangeArray": "Nu puteți modifica parte dintr-o matrice.", "errorChangeOnProtectedSheet": "Celula sau diagrama pe care încercați să schimbați este din foaia de calcul protejată. Dezactivați protejarea foii de calcul dacă doriți s-o schimați.Este posibil să fie necesară introducerea parolei.", "errorConnectToServer": "Salvarea documentului nu este posibilă. Verificați configurarea conexeunii sau contactaţi administratorul dumneavoastră de reţea
Când faceți clic pe OK, vi se va solicita să descărcați documentul.", @@ -233,8 +234,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.", - "errorCannotUseCommandProtectedSheet": "You cannot use this command on a protected sheet. To use this command, unprotect the sheet.
You might be requested to enter a password." + "uploadImageSizeMessage": "Imaginea este prea mare. Limita de dimensiune este de 25 MB." }, "LongActions": { "advDRMPassword": "Parola", @@ -289,16 +289,16 @@ "textErrorRemoveSheet": "Foaia de calcul nu poate fi ștearsă.", "textHide": "Ascunde", "textMore": "Mai multe", + "textMove": "Mutare", + "textMoveBack": "Mutare înapoi", + "textMoveForward": "Mutare înainte", "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?", - "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "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.", @@ -341,6 +341,7 @@ "textLink": "Link", "textLinkSettings": "Configurarea link", "textLinkType": "Tip link", + "textOk": "OK", "textOther": "Altele", "textPictureFromLibrary": "Imagine dintr-o bibliotecă ", "textPictureFromURL": "Imaginea prin URL", @@ -358,8 +359,7 @@ "txtNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\"", "txtSorting": "Sortare", "txtSortSelected": "Sortarea selecției", - "txtYes": "Da", - "textOk": "Ok" + "txtYes": "Da" }, "Edit": { "notcriticalErrorTitle": "Avertisment", @@ -378,6 +378,7 @@ "textAngleClockwise": "Unghi de rotație în sens orar", "textAngleCounterclockwise": "Unghi de rotație în sens antiorar", "textAuto": "Auto", + "textAutomatic": "Automat", "textAxisCrosses": "Intersecția cu axă", "textAxisOptions": "Opțiuni axă", "textAxisPosition": "Poziție axă", @@ -478,6 +479,7 @@ "textNoOverlay": "Fără suprapunere", "textNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\"", "textNumber": "Număr", + "textOk": "OK", "textOnTickMarks": "Pe gradații", "textOpacity": "Transparență", "textOut": "Din", @@ -539,9 +541,7 @@ "textYen": "Yen", "txtNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\"", "txtSortHigh2Low": "Sortare de la cea mai mare la cea mai mică valoare", - "txtSortLow2High": "Sortare de la cea mai mică la cea mai mare valoare", - "textAutomatic": "Automatic", - "textOk": "Ok" + "txtSortLow2High": "Sortare de la cea mai mică la cea mai mare valoare" }, "Settings": { "advCSVOptions": "Alegerea opțiunilor CSV", @@ -571,6 +571,7 @@ "textComments": "Comentarii", "textCreated": "A fost creat la", "textCustomSize": "Dimensiunea particularizată", + "textDarkTheme": "Tema întunecată", "textDelimeter": "Delimitator", "textDisableAll": "Se dezactivează toate", "textDisableAllMacrosWithNotification": "Se dezactivează toate macrocomenzile, cu notificare ", @@ -671,8 +672,7 @@ "txtSemicolon": "Punct și virgulă", "txtSpace": "Spațiu", "txtTab": "Tabulator", - "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?", - "textDarkTheme": "Dark Theme" + "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/tr.json b/apps/spreadsheeteditor/mobile/locale/tr.json index d669b5e2e..c0e03a4f6 100644 --- a/apps/spreadsheeteditor/mobile/locale/tr.json +++ b/apps/spreadsheeteditor/mobile/locale/tr.json @@ -165,7 +165,7 @@ }, "Error": { "convertationTimeoutText": "Değişim süresi aşıldı.", - "criticalErrorExtText": "Belge listesine geri dönmek için 'Tamam'a basın.", + "criticalErrorExtText": "Belge listesine geri dönmek için 'OK'a basın.", "criticalErrorTitle": "Hata", "downloadErrorText": "İndirme başarısız oldu.", "errorAccessDeny": "Haklarınız olmayan bir işlemi gerçekleştirmeye çalışıyorsunuz.
Lütfen yöneticinizle iletişime geçin.", @@ -177,7 +177,7 @@ "errorBadImageUrl": "Resim URL'si yanlış", "errorChangeArray": "Bir dizinin bir bölümünü değiştiremezsiniz.", "errorChangeOnProtectedSheet": "Değiştirmeye çalıştığınız hücre veya grafik korumalı bir sayfada. Değişiklik yapmak için sayfanın korumasını kaldırın. Bir şifre girmeniz istenebilir.", - "errorConnectToServer": "Bu doküman kaydedilemiyor. Bağlantı ayarlarınızı kontrol edin veya yöneticinizle iletişime geçin.
'Tamam' düğmesini tıkladığınızda, belgeyi indirmeniz istenecektir.", + "errorConnectToServer": "Bu doküman kaydedilemiyor. Bağlantı ayarlarınızı kontrol edin veya yöneticinizle iletişime geçin.
'OK' düğmesini tıkladığınızda, belgeyi indirmeniz istenecektir.", "errorCopyMultiselectArea": "Bu komut çoklu seçimlerle kullanılamaz.
Tek bir aralık seçin ve tekrar deneyin.", "errorCountArg": "Formülde bir hata var.
Geçersiz sayıda bağımsız değişken.", "errorCountArgExceed": "Formülde bir hata var.
Maksimum bağımsız değişken sayısı aşıldı.", diff --git a/apps/spreadsheeteditor/mobile/locale/zh.json b/apps/spreadsheeteditor/mobile/locale/zh.json index b89cf1478..217efd933 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh.json +++ b/apps/spreadsheeteditor/mobile/locale/zh.json @@ -142,9 +142,14 @@ "textGuest": "访客", "textHasMacros": "这个文件带有自动宏。
是否要运行宏?", "textNo": "不", + "textNoChoices": "填充单元格没有选择。
只能选择列中的文本值进行替换。", "textNoLicenseTitle": "触碰到许可证数量限制。", + "textNoTextFound": "未找到文本", + "textOk": "好", "textPaidFeature": "付费功能", "textRemember": "记住我的选择", + "textReplaceSkipped": "已更换。 {0}次跳过。", + "textReplaceSuccess": "搜索已完成。更换次数:{0}", "textYes": "是", "titleServerVersion": "编辑器已更新", "titleUpdateVersion": "版本已变化", @@ -155,12 +160,7 @@ "warnNoLicense": "你已经触发了 %1 编辑器的同时在线数限制. 该文档打开后,你将只能查看。请联系 %1 的销售团队,获取个人升级条款。", "warnNoLicenseUsers": "你触发了 %1 编辑器的同时在线数限制。请与 %1 的销售团队联系,以获取个人升级条款。", "warnProcessRightsChange": "你没有编辑文件的权限。", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", - "textNoTextFound": "Text not found", - "textOk": "Ok", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." } }, "Error": { @@ -175,6 +175,7 @@ "errorAutoFilterDataRange": "对于你选中的这些单元格,该操作不能被执行。
请选择表格内部或外部的规范的数据范围,然后再试一次。", "errorAutoFilterHiddenRange": "该操作不能被执行。原因是:选中的区域有被隐藏的单元格。
请将那些被隐藏的元素重新显现出来,然后再试一次。", "errorBadImageUrl": "图片地址不正确", + "errorCannotUseCommandProtectedSheet": "受保护的工作表不允许进行该操作。要进行该操作,请先取消工作表的保护。
您可能需要输入密码。", "errorChangeArray": "您无法更改部分阵列。", "errorChangeOnProtectedSheet": "您试图更改的单元格或图表位于受保护的工作表中。若要进行更改,请取消工作表保护。您可能需要输入密码。", "errorConnectToServer": "保存失败。请检查你的联网设定,或联系管理员。
你可以在按下“好”按钮之后下载这个文档。", @@ -233,8 +234,7 @@ "unknownErrorText": "未知错误。", "uploadImageExtMessage": "未知图像格式。", "uploadImageFileCountMessage": "没有图片上传", - "uploadImageSizeMessage": "图片太大了。最大允许的大小是 25 MB.", - "errorCannotUseCommandProtectedSheet": "You cannot use this command on a protected sheet. To use this command, unprotect the sheet.
You might be requested to enter a password." + "uploadImageSizeMessage": "图片太大了。最大允许的大小是 25 MB." }, "LongActions": { "advDRMPassword": "密码", @@ -289,16 +289,16 @@ "textErrorRemoveSheet": "不能删除工作表。", "textHide": "隐藏", "textMore": "更多", + "textMove": "移动", + "textMoveBack": "后移", + "textMoveForward": "前移", "textOk": "OK", "textRename": "重命名", "textRenameSheet": "重命名工作表", "textSheet": "表格", "textSheetName": "工作表名称", "textUnhide": "取消隐藏", - "textWarnDeleteSheet": "该工作表可能带有数据。要进行操作吗?", - "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "textWarnDeleteSheet": "该工作表可能带有数据。要进行操作吗?" }, "Toolbar": { "dlgLeaveMsgText": "你在该文档中有未保存的修改。点击“留在该页”来等待自动保存。点击“离开该页”将舍弃全部未保存的更改。", @@ -341,6 +341,7 @@ "textLink": "链接", "textLinkSettings": "链接设置", "textLinkType": "链接类型", + "textOk": "好", "textOther": "其他", "textPictureFromLibrary": "图库", "textPictureFromURL": "来自网络的图片", @@ -358,8 +359,7 @@ "txtNotUrl": "该字段应为“http://www.example.com”格式的URL", "txtSorting": "排序", "txtSortSelected": "排序选定的", - "txtYes": "是", - "textOk": "Ok" + "txtYes": "是" }, "Edit": { "notcriticalErrorTitle": "警告", @@ -378,6 +378,7 @@ "textAngleClockwise": "顺时针方向角", "textAngleCounterclockwise": "逆时针方向角", "textAuto": "自动", + "textAutomatic": "自动", "textAxisCrosses": "坐标轴交叉", "textAxisOptions": "坐标轴选项", "textAxisPosition": "坐标轴位置", @@ -478,6 +479,7 @@ "textNoOverlay": "没有叠加", "textNotUrl": "该字段应为“http://www.example.com”格式的URL", "textNumber": "数", + "textOk": "好", "textOnTickMarks": "刻度标记", "textOpacity": "不透明度", "textOut": "外", @@ -539,9 +541,7 @@ "textYen": "日元", "txtNotUrl": "该字段应为“http://www.example.com”格式的URL", "txtSortHigh2Low": "从最高到最低排序", - "txtSortLow2High": "从最低到最高排序", - "textAutomatic": "Automatic", - "textOk": "Ok" + "txtSortLow2High": "从最低到最高排序" }, "Settings": { "advCSVOptions": "选择CSV选项", @@ -571,6 +571,7 @@ "textComments": "评论", "textCreated": "已创建", "textCustomSize": "自定义大小", + "textDarkTheme": "深色主题", "textDelimeter": "字段分隔符", "textDisableAll": "解除所有项目", "textDisableAllMacrosWithNotification": "解除所有带通知的宏", @@ -671,8 +672,7 @@ "txtSemicolon": "分号", "txtSpace": "空格", "txtTab": "标签", - "warnDownloadAs": "如果您继续以此格式保存,除文本之外的所有功能将丢失。
您确定要继续吗?", - "textDarkTheme": "Dark Theme" + "warnDownloadAs": "如果您继续以此格式保存,除文本之外的所有功能将丢失。
您确定要继续吗?" } } } \ No newline at end of file From 6dc7f36d7b46eac53178e15dce6a5efea701003f Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Mon, 31 Jan 2022 19:58:24 +0300 Subject: [PATCH 091/217] [DE PE SSE] Bug 55182 --- apps/common/main/lib/component/DataView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common/main/lib/component/DataView.js b/apps/common/main/lib/component/DataView.js index aa1aa2dbc..86c884f08 100644 --- a/apps/common/main/lib/component/DataView.js +++ b/apps/common/main/lib/component/DataView.js @@ -1442,7 +1442,7 @@ define([ var models = group.groupStore.models; if (index > 0) { for (var i = 0; i < models.length; i++) { - models.at(i).set({groupName: group.groupName}) + models[i].set({groupName: group.groupName}); } } store.add(models); From eaa1e66d09e8539e4cd9d95d27ec88f3e7657069 Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Tue, 1 Feb 2022 12:29:01 +0300 Subject: [PATCH 092/217] [SSE] Add tab 'All-list' --- apps/spreadsheeteditor/mobile/locale/en.json | 1 + .../mobile/src/controller/Statusbar.jsx | 9 +++++ .../mobile/src/less/app.less | 23 +++++++++++++ .../mobile/src/less/icons-ios.less | 5 +++ .../mobile/src/less/statusbar.less | 10 +++++- .../mobile/src/view/Statusbar.jsx | 34 +++++++++++++++++-- 6 files changed, 79 insertions(+), 3 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json index 405750adb..3ba08de09 100644 --- a/apps/spreadsheeteditor/mobile/locale/en.json +++ b/apps/spreadsheeteditor/mobile/locale/en.json @@ -288,6 +288,7 @@ "textErrorLastSheet": "The workbook must have at least one visible worksheet.", "textErrorRemoveSheet": "Can't delete the worksheet.", "textHide": "Hide", + "textHidden": "Hidden", "textMore": "More", "textMove": "Move", "textMoveBack": "Move back", diff --git a/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx b/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx index f0edbc676..9db12e319 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx @@ -365,12 +365,21 @@ const Statusbar = inject('sheets', 'storeAppOptions', 'users')(observer(props => api.asc_moveWorksheet(activeIndex === undefined ? api.asc_getWorksheetsCount() : activeIndex, [api.asc_getActiveWorksheetIndex()]); } + const onTabListClick = (sheetIndex) => { + const api = Common.EditorApi.get(); + if(api && api.asc_getActiveWorksheetIndex() !== sheetIndex) { + api.asc_showWorksheet(sheetIndex); + f7.popover.close('#idx-all-list'); + } + } + return ( ) diff --git a/apps/spreadsheeteditor/mobile/src/less/app.less b/apps/spreadsheeteditor/mobile/src/less/app.less index ce6c67388..b22abf0b7 100644 --- a/apps/spreadsheeteditor/mobile/src/less/app.less +++ b/apps/spreadsheeteditor/mobile/src/less/app.less @@ -141,4 +141,27 @@ .actions-move-sheet { background-color: @background-secondary; +} + +// All-list sheet +.all-list { + --f7-popover-width: 190px; + .item-checkbox{ + padding-left: 8px; + .icon-checkbox{ + border-color: transparent; + margin-right: 8px; + &::after{ + color: @brandColor; + } + } + .item-after div { + color: @text-secondary; + font-style: italic; + } + input[type='checkbox']:checked ~ .icon-checkbox { + background-color: unset; + border-color: transparent; + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/src/less/icons-ios.less b/apps/spreadsheeteditor/mobile/src/less/icons-ios.less index 47acba9e6..c61930cb2 100644 --- a/apps/spreadsheeteditor/mobile/src/less/icons-ios.less +++ b/apps/spreadsheeteditor/mobile/src/less/icons-ios.less @@ -47,6 +47,11 @@ height: 22px; .encoded-svg-mask(''); } + &.icon-list { + width: 22px; + height: 22px; + .encoded-svg-mask('') + } &.icon-settings { width: 24px; height: 24px; diff --git a/apps/spreadsheeteditor/mobile/src/less/statusbar.less b/apps/spreadsheeteditor/mobile/src/less/statusbar.less index c2cebdd47..f3c9c4b0d 100644 --- a/apps/spreadsheeteditor/mobile/src/less/statusbar.less +++ b/apps/spreadsheeteditor/mobile/src/less/statusbar.less @@ -8,6 +8,10 @@ background-color: @background-tertiary; display: flex; + .box-tab { + display: flex; + } + .tab { border: 0 none; border-radius: 0; @@ -70,7 +74,11 @@ // @source: ''; // .encoded-svg-mask(@source, @fontColor); // background-image: none; - .encoded-svg-mask('') + .encoded-svg-mask('') + } + + &.icon-list.bold { + .encoded-svg-mask('') } } } diff --git a/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx b/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx index 6c09899e9..2ca1afb04 100644 --- a/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx @@ -1,5 +1,5 @@ import React, { Fragment, useState } from 'react'; -import { View, Link, Icon, Popover, List, ListItem, ListButton, Actions, ActionsGroup, ActionsButton, Sheet, Page } from 'framework7-react'; +import {f7, View, Link, Icon, Popover, List, ListItem, ListButton, Actions, ActionsGroup, ActionsButton, Sheet, Page } from 'framework7-react'; import { useTranslation } from 'react-i18next'; import { Device } from '../../../../common/mobile/utils/device'; import { inject, observer } from 'mobx-react'; @@ -53,6 +53,28 @@ const PageListMove = props => { ) }; +const PageAllList = (props) => { + const { t } = useTranslation(); + const { sheets, onTabListClick } = props; + const allSheets = sheets.sheets; + + return ( + + + { allSheets.map( (model,sheetIndex) => + onTabListClick(sheetIndex)}> + {model.hidden ? +
+ {t('Statusbar.textHidden')} +
+ : null} +
) + } +
+
+ ) +}; + const StatusbarView = inject('storeAppOptions', 'sheets', 'users')(observer(props => { const { t } = useTranslation(); const _t = t('Statusbar', {returnObjects: true}); @@ -71,10 +93,13 @@ const StatusbarView = inject('storeAppOptions', 'sheets', 'users')(observer(prop {isEdit && -
+
+ f7.popover.open('#idx-all-list', e.target)}> + +
}
@@ -131,6 +156,11 @@ const StatusbarView = inject('storeAppOptions', 'sheets', 'users')(observer(prop ) : null} + { + + + + } {isPhone ?
From 74ba851ce51fdd99ef7fd198b0aa0ec5f5fcfcb9 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Tue, 1 Feb 2022 14:13:15 +0300 Subject: [PATCH 093/217] [DE] Fix bug 55224 --- apps/documenteditor/main/app/controller/PageThumbnails.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/documenteditor/main/app/controller/PageThumbnails.js b/apps/documenteditor/main/app/controller/PageThumbnails.js index c526fd8a7..f8702d131 100644 --- a/apps/documenteditor/main/app/controller/PageThumbnails.js +++ b/apps/documenteditor/main/app/controller/PageThumbnails.js @@ -112,7 +112,7 @@ define([ }, updateSize: function (size) { - this.thumbnailsSize = size * 100; + this.thumbnailsSize = Math.min(size * 100, 100); }, onChangeSize: function(field, newValue) { From c89170ce299d84864e46427b440273ca9dea44e1 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 1 Feb 2022 18:18:03 +0300 Subject: [PATCH 094/217] Fix Bug 52904 --- apps/common/main/lib/view/Comments.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common/main/lib/view/Comments.js b/apps/common/main/lib/view/Comments.js index d3fefb834..dd04ce064 100644 --- a/apps/common/main/lib/view/Comments.js +++ b/apps/common/main/lib/view/Comments.js @@ -806,7 +806,7 @@ define([ }, pickEMail: function (commentId, message) { - var arr = Common.Utils.String.htmlEncode(message).match(/\B[@+][A-Z0-9._%+-]+@[A-Z0-9._]+\.[A-Z]+\b/gi); + var arr = Common.Utils.String.htmlEncode(message).match(/\B[@+][A-Z0-9._%+-]+@[A-Z0-9._-]+\.[A-Z]+\b/gi); arr = _.map(arr, function(str){ return str.slice(1, str.length); }); From 6c88c1c30d09e142248677f2f54b138f47eed9ee Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 1 Feb 2022 20:00:41 +0300 Subject: [PATCH 095/217] [PDF Viewer] Show context menu --- .../main/app/view/DocumentHolder.js | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/apps/documenteditor/main/app/view/DocumentHolder.js b/apps/documenteditor/main/app/view/DocumentHolder.js index 1562500e8..2953bad00 100644 --- a/apps/documenteditor/main/app/view/DocumentHolder.js +++ b/apps/documenteditor/main/app/view/DocumentHolder.js @@ -221,6 +221,12 @@ define([ menu_props.paraProps.value = elValue; menu_props.paraProps.locked = (elValue) ? elValue.get_Locked() : false; noobject = false; + } else if (Asc.c_oAscTypeSelectElement.Text == elType) + { + if (!me.viewPDFModeMenu) + me.createDelayedElementsPDFViewer(); + menu_to_show = me.viewPDFModeMenu; + noobject = false; } } return (!noobject) ? {menu_to_show: menu_to_show, menu_props: menu_props} : null; @@ -2139,6 +2145,35 @@ define([ }, + createDelayedElementsPDFViewer: function() { + var me = this; + + var menuPDFViewCopy = new Common.UI.MenuItem({ + iconCls: 'menu__icon btn-copy', + caption: me.textCopy, + value: 'copy' + }).on('click', _.bind(me.onCutCopyPaste, me)); + + this.viewPDFModeMenu = new Common.UI.Menu({ + cls: 'shifted-right', + initMenu: function (value) { + menuPDFViewCopy.setDisabled(!(me.api && me.api.can_CopyCut())); + }, + items: [ + menuPDFViewCopy + ] + }).on('hide:after', function (menu, e, isFromInputControl) { + if (me.suppressEditComplete) { + me.suppressEditComplete = false; + return; + } + + if (!isFromInputControl) me.fireEvent('editcomplete', me); + me.currentMenu = null; + }); + + }, + createDelayedElements: function() { var me = this; From c79aa4507ea0579bc9802e4f869e373fd24120d3 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 1 Feb 2022 20:04:34 +0300 Subject: [PATCH 096/217] [DE] Fix Bug 41546 --- apps/documenteditor/main/app/controller/Main.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index 3aee58441..483c8f70b 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -1381,6 +1381,8 @@ define([ if ( this.onServerVersion(params.asc_getBuildVersion()) || !this.onLanguageLoaded()) return; + var isPDFViewer = /^(?:(pdf|djvu|xps|oxps))$/.test(this.document.fileType); + this.permissions.review = (this.permissions.review === undefined) ? (this.permissions.edit !== false) : this.permissions.review; if (params.asc_getRights() !== Asc.c_oRights.Edit) @@ -1409,8 +1411,8 @@ define([ this.appOptions.canUseMailMerge= this.appOptions.canLicense && this.appOptions.canEdit && !this.appOptions.isOffline; this.appOptions.canSendEmailAddresses = this.appOptions.canLicense && this.editorConfig.canSendEmailAddresses && this.appOptions.canEdit && this.appOptions.canCoAuthoring; this.appOptions.canComments = this.appOptions.canLicense && (this.permissions.comment===undefined ? this.appOptions.isEdit : this.permissions.comment) && (this.editorConfig.mode !== 'view'); - this.appOptions.canComments = this.appOptions.canComments && !((typeof (this.editorConfig.customization) == 'object') && this.editorConfig.customization.comments===false); - this.appOptions.canViewComments = this.appOptions.canComments || !((typeof (this.editorConfig.customization) == 'object') && this.editorConfig.customization.comments===false); + this.appOptions.canComments = !isPDFViewer && this.appOptions.canComments && !((typeof (this.editorConfig.customization) == 'object') && this.editorConfig.customization.comments===false); + this.appOptions.canViewComments = this.appOptions.canComments || !isPDFViewer && !((typeof (this.editorConfig.customization) == 'object') && this.editorConfig.customization.comments===false); this.appOptions.canChat = this.appOptions.canLicense && !this.appOptions.isOffline && !(this.permissions.chat===false || (this.permissions.chat===undefined) && (typeof (this.editorConfig.customization) == 'object') && this.editorConfig.customization.chat===false); if ((typeof (this.editorConfig.customization) == 'object') && this.editorConfig.customization.chat!==undefined) { @@ -1464,7 +1466,7 @@ define([ var type = /^(?:(djvu))$/.exec(this.document.fileType); this.appOptions.canDownloadOrigin = this.permissions.download !== false && (type && typeof type[1] === 'string'); this.appOptions.canDownload = this.permissions.download !== false && (!type || typeof type[1] !== 'string'); - this.appOptions.canUseSelectHandTools = this.appOptions.canUseThumbnails = this.appOptions.canUseViwerNavigation = /^(?:(pdf|djvu|xps|oxps))$/.test(this.document.fileType); + this.appOptions.canUseSelectHandTools = this.appOptions.canUseThumbnails = this.appOptions.canUseViwerNavigation = isPDFViewer; this.appOptions.canDownloadForms = this.appOptions.canLicense && this.appOptions.canDownload; this.appOptions.fileKey = this.document.key; From f8e430f3a7bbf9b535a3e8c5c73d2e3387e64215 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Wed, 2 Feb 2022 16:37:30 +0300 Subject: [PATCH 097/217] [DE PE SSE] Fix bug 55173 --- apps/common/main/lib/controller/HintManager.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/apps/common/main/lib/controller/HintManager.js b/apps/common/main/lib/controller/HintManager.js index b723d50c8..516ce3f01 100644 --- a/apps/common/main/lib/controller/HintManager.js +++ b/apps/common/main/lib/controller/HintManager.js @@ -592,9 +592,8 @@ Common.UI.HintManager = new(function() { } } - var isAlt = e.altKey; - _needShow = (isAlt && !Common.Utils.ModalWindow.isVisible() && _isDocReady && _arrAlphabet.length > 0); - if (isAlt && e.keyCode !== 115) { + _needShow = (e.keyCode == Common.UI.Keys.ALT && !Common.Utils.ModalWindow.isVisible() && _isDocReady && _arrAlphabet.length > 0); + if (e.altKey && e.keyCode !== 115) { e.preventDefault(); } }); From 2b5d415f4387b3fa4c4342cf48cb6c34b4508229 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 2 Feb 2022 18:12:20 +0300 Subject: [PATCH 098/217] [DE] Hide context menu when no selected text in pdf --- apps/documenteditor/main/app/view/DocumentHolder.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/documenteditor/main/app/view/DocumentHolder.js b/apps/documenteditor/main/app/view/DocumentHolder.js index 2953bad00..3942cfa28 100644 --- a/apps/documenteditor/main/app/view/DocumentHolder.js +++ b/apps/documenteditor/main/app/view/DocumentHolder.js @@ -242,6 +242,11 @@ define([ var onContextMenu = function(event){ if (Common.UI.HintManager.isHintVisible()) Common.UI.HintManager.clearHints(); + if (!event) { + Common.UI.Menu.Manager.hideAll(); + return; + } + _.delay(function(){ if (event.get_Type() == 0) { showObjectMenu.call(me, event); From 9f185109b80a39193bdac2d5b84434771215b973 Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Thu, 3 Feb 2022 15:56:38 +0300 Subject: [PATCH 099/217] [DE] Fix Bug 55281 --- .../mobile/src/controller/LongActions.jsx | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/apps/documenteditor/mobile/src/controller/LongActions.jsx b/apps/documenteditor/mobile/src/controller/LongActions.jsx index de95424c1..28b2ad789 100644 --- a/apps/documenteditor/mobile/src/controller/LongActions.jsx +++ b/apps/documenteditor/mobile/src/controller/LongActions.jsx @@ -25,11 +25,16 @@ const LongActionsController = inject('storeAppOptions')(({storeAppOptions}) => { }; useEffect( () => { - Common.Notifications.on('engineCreated', (api) => { + const on_engine_created = api => { api.asc_registerCallback('asc_onStartAction', onLongActionBegin); api.asc_registerCallback('asc_onEndAction', onLongActionEnd); api.asc_registerCallback('asc_onOpenDocumentProgress', onOpenDocument); - }); + }; + + const api = Common.EditorApi.get(); + if(!api) Common.Notifications.on('engineCreated', on_engine_created); + else on_engine_created(api); + Common.Notifications.on('preloader:endAction', onLongActionEnd); Common.Notifications.on('preloader:beginAction', onLongActionBegin); Common.Notifications.on('preloader:close', closePreloader); @@ -41,7 +46,8 @@ const LongActionsController = inject('storeAppOptions')(({storeAppOptions}) => { api.asc_unregisterCallback('asc_onEndAction', onLongActionEnd); api.asc_unregisterCallback('asc_onOpenDocumentProgress', onOpenDocument); } - + + Common.Notifications.off('engineCreated', on_engine_created); Common.Notifications.off('preloader:endAction', onLongActionEnd); Common.Notifications.off('preloader:beginAction', onLongActionBegin); Common.Notifications.off('preloader:close', closePreloader); From 7f4cb6a26244876de70e581049d8052db9d51a04 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 4 Feb 2022 17:21:07 +0300 Subject: [PATCH 100/217] [DE] Refactoring TextAssociation types --- apps/documenteditor/main/app/controller/LeftMenu.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/documenteditor/main/app/controller/LeftMenu.js b/apps/documenteditor/main/app/controller/LeftMenu.js index 9d95cd407..1415c6ed2 100644 --- a/apps/documenteditor/main/app/controller/LeftMenu.js +++ b/apps/documenteditor/main/app/controller/LeftMenu.js @@ -376,9 +376,9 @@ define([ title: this.titleConvertOptions, label: this.textGroup, items: [ - {caption: this.textChar, value: Asc.c_oAscTextAssociation.Char, checked: true}, - {caption: this.textLine, value: Asc.c_oAscTextAssociation.Line, checked: false}, - {caption: this.textParagraph, value: Asc.c_oAscTextAssociation.Block, checked: false} + {caption: this.textChar, value: Asc.c_oAscTextAssociation.BlockChar, checked: true}, + {caption: this.textLine, value: Asc.c_oAscTextAssociation.BlockLine, checked: false}, + {caption: this.textParagraph, value: Asc.c_oAscTextAssociation.PlainLine, checked: false} ], handler: function (dlg, result) { if (result=='ok') { From 81a7d8df36ed589e969fc4f3fcb64760c3669a33 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 4 Feb 2022 17:26:53 +0300 Subject: [PATCH 101/217] Update translation --- apps/documenteditor/embed/locale/sv.json | 38 ++- apps/documenteditor/forms/locale/de.json | 5 + apps/documenteditor/forms/locale/hu.json | 5 + apps/documenteditor/forms/locale/sv.json | 134 +++++++- apps/documenteditor/forms/locale/tr.json | 2 +- apps/documenteditor/forms/locale/uk.json | 148 ++++++++- apps/documenteditor/main/locale/ca.json | 8 +- apps/documenteditor/main/locale/cs.json | 3 +- apps/documenteditor/main/locale/de.json | 49 +++ apps/documenteditor/main/locale/es.json | 102 +++--- apps/documenteditor/main/locale/hu.json | 80 ++++- apps/documenteditor/main/locale/ja.json | 2 +- apps/documenteditor/main/locale/lo.json | 5 +- apps/documenteditor/main/locale/sv.json | 201 ++++++++---- apps/documenteditor/main/locale/tr.json | 12 +- apps/documenteditor/main/locale/uk.json | 1 + apps/presentationeditor/embed/locale/sv.json | 4 + apps/presentationeditor/main/locale/de.json | 241 +++++++++++++- apps/presentationeditor/main/locale/es.json | 84 ++--- apps/presentationeditor/main/locale/hu.json | 5 + apps/presentationeditor/main/locale/ja.json | 4 +- apps/presentationeditor/main/locale/sv.json | 313 +++++++++++++++++-- apps/presentationeditor/main/locale/tr.json | 36 ++- apps/presentationeditor/main/locale/uk.json | 122 ++++++++ apps/spreadsheeteditor/embed/locale/sv.json | 4 + apps/spreadsheeteditor/main/locale/de.json | 83 +++++ apps/spreadsheeteditor/main/locale/es.json | 102 +++--- apps/spreadsheeteditor/main/locale/hu.json | 80 ++++- apps/spreadsheeteditor/main/locale/ja.json | 2 +- apps/spreadsheeteditor/main/locale/sv.json | 286 ++++++++++++++--- apps/spreadsheeteditor/main/locale/tr.json | 10 +- 31 files changed, 1846 insertions(+), 325 deletions(-) diff --git a/apps/documenteditor/embed/locale/sv.json b/apps/documenteditor/embed/locale/sv.json index 57796daab..efeefa8d3 100644 --- a/apps/documenteditor/embed/locale/sv.json +++ b/apps/documenteditor/embed/locale/sv.json @@ -1,44 +1,50 @@ { "common.view.modals.txtCopy": "Kopiera till klippbord", - "common.view.modals.txtEmbed": "Inbädda", + "common.view.modals.txtEmbed": "Inbäddad", "common.view.modals.txtHeight": "Höjd", - "common.view.modals.txtShare": "Delningslänk", + "common.view.modals.txtShare": "Dela länk", "common.view.modals.txtWidth": "Bredd", "DE.ApplicationController.convertationErrorText": "Fel vid konvertering", "DE.ApplicationController.convertationTimeoutText": "Konverteringstiden har överskridits.", "DE.ApplicationController.criticalErrorTitle": "Fel", "DE.ApplicationController.downloadErrorText": "Nedladdning misslyckades", "DE.ApplicationController.downloadTextText": "Laddar ner dokumentet...", - "DE.ApplicationController.errorAccessDeny": "Du försöker utföra en åtgärd som du inte har rättighet till.
Vänligen kontakta din systemadministratör.", + "DE.ApplicationController.errorAccessDeny": "Du försöker utföra en åtgärd som du inte har rättigheter till.
Vänligen kontakta din systemadministratör.", "DE.ApplicationController.errorDefaultMessage": "Felkod: %1", - "DE.ApplicationController.errorEditingDownloadas": "Ett fel har inträffat.
Använd \"Ladda ned som...\" för att spara en säkerhetskopia på din dator.", - "DE.ApplicationController.errorFilePassProtect": "Dokumentet är lösenordsskyddat och kunde inte öppnas. ", - "DE.ApplicationController.errorFileSizeExceed": "Filstorleken överskrider gränsen för din server.
Var snäll och kontakta administratören för dokumentservern för mer information.", - "DE.ApplicationController.errorSubmit": "Gick ej att verkställa.", + "DE.ApplicationController.errorEditingDownloadas": "Ett fel har inträffat.
Använd \"Ladda ner som...\" för att spara en säkerhetskopia på din dator.", + "DE.ApplicationController.errorFilePassProtect": "Filen är lösenordsskyddad och kan inte öppnas. ", + "DE.ApplicationController.errorFileSizeExceed": "Filstorleken överskrider gränsen för din server.
Vänligen kontakta administratören för dokumentservern för mer information.", + "DE.ApplicationController.errorForceSave": "Ett fel uppstod när filen sparades. Vänligen använd alternativet \"Spara som\" för att spara filen till din dator eller försök igen senare.", + "DE.ApplicationController.errorLoadingFont": "Typsnittet är inte tillgängligt. Vänligen kontakta administratören för dokumentservern.", + "DE.ApplicationController.errorSubmit": "Skicka misslyckades.", + "DE.ApplicationController.errorTokenExpire": "Dokumentets säkerhetstoken har upphört att gälla.
Vänligen kontakta din dokumentservers administratör.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Internetanslutningen har återställts och filversionen har ändrats.
Innan du fortsätter arbeta, ladda ner filen eller kopiera innehållet för att försäkra dig om att inte förlora något, ladda sedan om denna sida.", "DE.ApplicationController.errorUserDrop": "Filen kan inte nås för tillfället. ", "DE.ApplicationController.notcriticalErrorTitle": "Varning", + "DE.ApplicationController.openErrorText": "Ett fel uppstod vid öppnandet av filen.", "DE.ApplicationController.scriptLoadError": "Anslutningen är för långsam, vissa av komponenterna kunde inte laddas. Vänligen ladda om sidan.", "DE.ApplicationController.textAnonymous": "Anonym", - "DE.ApplicationController.textClear": "Rensa fält", - "DE.ApplicationController.textGotIt": "Ok!", + "DE.ApplicationController.textClear": "Rensa alla fält", + "DE.ApplicationController.textGotIt": "Uppfattat", "DE.ApplicationController.textGuest": "Gäst", "DE.ApplicationController.textLoadingDocument": "Laddar dokument", "DE.ApplicationController.textNext": "Nästa fält", "DE.ApplicationController.textOf": "av", - "DE.ApplicationController.textRequired": "Fyll i alla fält för att skicka formulär.", - "DE.ApplicationController.textSubmit": "Verkställ", + "DE.ApplicationController.textRequired": "Fyll i alla nödvändiga fält för att skicka formuläret.", + "DE.ApplicationController.textSubmit": "Skicka", "DE.ApplicationController.textSubmited": " Formulär skickat
Klicka för att stänga tipset", "DE.ApplicationController.txtClose": "Stäng", + "DE.ApplicationController.txtEmpty": "Dokumentets säkerhetstoken", + "DE.ApplicationController.txtPressLink": "Tryck på CTRL och klicka på länken", "DE.ApplicationController.unknownErrorText": "Okänt fel.", "DE.ApplicationController.unsupportedBrowserErrorText": "Din webbläsare stöds ej.", - "DE.ApplicationController.waitText": "Var snäll och vänta...", + "DE.ApplicationController.waitText": "Vänligen vänta...", "DE.ApplicationView.txtDownload": "Ladda ner", "DE.ApplicationView.txtDownloadDocx": "Ladda ner som docx", "DE.ApplicationView.txtDownloadPdf": "Ladda ner som pdf", - "DE.ApplicationView.txtEmbed": "Inbädda", - "DE.ApplicationView.txtFileLocation": "Gå till filens plats", - "DE.ApplicationView.txtFullScreen": "Fullskärm", - "DE.ApplicationView.txtPrint": "Skriva ut", + "DE.ApplicationView.txtEmbed": "Inbäddad", + "DE.ApplicationView.txtFileLocation": "Öppna filens plats", + "DE.ApplicationView.txtFullScreen": "Helskärm", + "DE.ApplicationView.txtPrint": "Skriv ut", "DE.ApplicationView.txtShare": "Dela" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/de.json b/apps/documenteditor/forms/locale/de.json index ee202087b..9cccc4a3e 100644 --- a/apps/documenteditor/forms/locale/de.json +++ b/apps/documenteditor/forms/locale/de.json @@ -123,6 +123,7 @@ "DE.Controllers.ApplicationController.textSaveAs": "Als PDF speichern", "DE.Controllers.ApplicationController.textSaveAsDesktop": "Speichern als...", "DE.Controllers.ApplicationController.textSubmited": "Das Formular wurde erfolgreich abgesendet
Klicken Sie hier, um den Tipp auszublenden", + "DE.Controllers.ApplicationController.titleLicenseExp": "Lizenz ist abgelaufen", "DE.Controllers.ApplicationController.titleServerVersion": "Editor wurde aktualisiert", "DE.Controllers.ApplicationController.titleUpdateVersion": "Version wurde geändert", "DE.Controllers.ApplicationController.txtArt": "Hier den Text eingeben", @@ -139,6 +140,7 @@ "DE.Controllers.ApplicationController.uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten.", "DE.Controllers.ApplicationController.waitText": "Bitte warten...", "DE.Controllers.ApplicationController.warnLicenseExceeded": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.
Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.", + "DE.Controllers.ApplicationController.warnLicenseExp": "Ihre Lizenz ist abgelaufen.
Bitte aktualisieren Sie Ihre Lizenz und laden Sie die Seite neu.", "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "Die Lizenz ist abgelaufen.
Die Bearbeitungsfunktionen sind nicht verfügbar.
Bitte wenden Sie sich an Ihrem Administrator.", "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "Die Lizenz soll aktualisiert werden.
Die Bearbeitungsfunktionen sind eingeschränkt.
Bitte wenden Sie sich an Ihrem Administrator für vollen Zugriff", "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.", @@ -147,12 +149,15 @@ "DE.Views.ApplicationView.textClear": "Alle Felder leeren", "DE.Views.ApplicationView.textCopy": "Kopieren", "DE.Views.ApplicationView.textCut": "Ausschneiden", + "DE.Views.ApplicationView.textFitToPage": "Seite anpassen", + "DE.Views.ApplicationView.textFitToWidth": "An Breite anpassen", "DE.Views.ApplicationView.textNext": "Nächstes Feld", "DE.Views.ApplicationView.textPaste": "Einfügen", "DE.Views.ApplicationView.textPrintSel": "Auswahl drucken", "DE.Views.ApplicationView.textRedo": "Wiederholen", "DE.Views.ApplicationView.textSubmit": "Senden", "DE.Views.ApplicationView.textUndo": "Rückgängig machen", + "DE.Views.ApplicationView.textZoom": "Zoom", "DE.Views.ApplicationView.txtDarkMode": "Dunkelmodus", "DE.Views.ApplicationView.txtDownload": "Herunterladen", "DE.Views.ApplicationView.txtDownloadDocx": "Als DOCX herunterladen", diff --git a/apps/documenteditor/forms/locale/hu.json b/apps/documenteditor/forms/locale/hu.json index 773315cb9..0225c18de 100644 --- a/apps/documenteditor/forms/locale/hu.json +++ b/apps/documenteditor/forms/locale/hu.json @@ -123,6 +123,7 @@ "DE.Controllers.ApplicationController.textSaveAs": "Mentés PDF-ként", "DE.Controllers.ApplicationController.textSaveAsDesktop": "Mentés másként...", "DE.Controllers.ApplicationController.textSubmited": "Az űrlap sikeresen elküldve
Kattintson a tipp bezárásához", + "DE.Controllers.ApplicationController.titleLicenseExp": "Lejárt licenc", "DE.Controllers.ApplicationController.titleServerVersion": "Szerkesztő frissítve", "DE.Controllers.ApplicationController.titleUpdateVersion": "A verzió megváltozott", "DE.Controllers.ApplicationController.txtArt": "Írja a szöveget ide", @@ -139,6 +140,7 @@ "DE.Controllers.ApplicationController.uploadImageSizeMessage": "A kép túl nagy. A maximális méret 25 MB.", "DE.Controllers.ApplicationController.waitText": "Kérjük, várjon...", "DE.Controllers.ApplicationController.warnLicenseExceeded": "Elérte a(z) %1 szerkesztőhöz tartozó egyidejű csatlakozás korlátját. Ez a dokumentum csak megtekintésre nyílik meg.
További információért forduljon rendszergazdájához.", + "DE.Controllers.ApplicationController.warnLicenseExp": "A licence lejárt.
Kérem frissítse a licencét, majd az oldalt.", "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "A licenc lejárt.
Nincs hozzáférése a dokumentumszerkesztő funkciókhoz.
Kérjük, lépjen kapcsolatba a rendszergazdával.", "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "A licencet meg kell újítani.
Korlátozott hozzáférése van a dokumentumszerkesztési funkciókhoz.
A teljes hozzáférésért forduljon rendszergazdájához", "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "Elérte a(z) %1 szerkesztőhöz tartozó felhasználói korlátját. További információért forduljon rendszergazdájához.", @@ -147,12 +149,15 @@ "DE.Views.ApplicationView.textClear": "Az összes mező törlése", "DE.Views.ApplicationView.textCopy": "Másol", "DE.Views.ApplicationView.textCut": "Kivág", + "DE.Views.ApplicationView.textFitToPage": "Oldalhoz igazít", + "DE.Views.ApplicationView.textFitToWidth": "Szélességhez igazít", "DE.Views.ApplicationView.textNext": "Következő mező", "DE.Views.ApplicationView.textPaste": "Beillesztés", "DE.Views.ApplicationView.textPrintSel": "Nyomtató kiválasztás", "DE.Views.ApplicationView.textRedo": "Újra", "DE.Views.ApplicationView.textSubmit": "Beküldés", "DE.Views.ApplicationView.textUndo": "Vissza", + "DE.Views.ApplicationView.textZoom": "Zoom", "DE.Views.ApplicationView.txtDarkMode": "Sötét mód", "DE.Views.ApplicationView.txtDownload": "Letöltés", "DE.Views.ApplicationView.txtDownloadDocx": "Letöltés DOCX-ként", diff --git a/apps/documenteditor/forms/locale/sv.json b/apps/documenteditor/forms/locale/sv.json index b6e24101b..0bd22bb18 100644 --- a/apps/documenteditor/forms/locale/sv.json +++ b/apps/documenteditor/forms/locale/sv.json @@ -1,33 +1,164 @@ { + "Common.UI.Calendar.textApril": "April", + "Common.UI.Calendar.textAugust": "Augusti", + "Common.UI.Calendar.textDecember": "December", + "Common.UI.Calendar.textFebruary": "Februari", + "Common.UI.Calendar.textJanuary": "Januari", + "Common.UI.Calendar.textJuly": "Juli", + "Common.UI.Calendar.textJune": "Juni", + "Common.UI.Calendar.textMarch": "Mars", + "Common.UI.Calendar.textMay": "Maj", + "Common.UI.Calendar.textMonths": "Månader", + "Common.UI.Calendar.textNovember": "November", + "Common.UI.Calendar.textOctober": "Oktober", + "Common.UI.Calendar.textSeptember": "September", + "Common.UI.Calendar.textShortApril": "Apr", + "Common.UI.Calendar.textShortAugust": "Aug", + "Common.UI.Calendar.textShortDecember": "Dec", + "Common.UI.Calendar.textShortFebruary": "Feb", + "Common.UI.Calendar.textShortFriday": "Fre", + "Common.UI.Calendar.textShortJanuary": "Jan", + "Common.UI.Calendar.textShortJuly": "Jul", + "Common.UI.Calendar.textShortJune": "Jun", + "Common.UI.Calendar.textShortMarch": "Mar", + "Common.UI.Calendar.textShortMay": "Maj", + "Common.UI.Calendar.textShortMonday": "Mån", + "Common.UI.Calendar.textShortNovember": "Nov", + "Common.UI.Calendar.textShortOctober": "Okt", + "Common.UI.Calendar.textShortSaturday": "Lör", + "Common.UI.Calendar.textShortSeptember": "Sep", + "Common.UI.Calendar.textShortSunday": "Sön", + "Common.UI.Calendar.textShortThursday": "Tor", + "Common.UI.Calendar.textShortTuesday": "Tis", + "Common.UI.Calendar.textShortWednesday": "Ons", + "Common.UI.Calendar.textYears": "år", + "Common.UI.Themes.txtThemeClassicLight": "Classic Light", + "Common.UI.Themes.txtThemeDark": "Mörk", + "Common.UI.Themes.txtThemeLight": "Ljus", + "Common.UI.Window.cancelButtonText": "Avbryt", + "Common.UI.Window.closeButtonText": "Stäng", + "Common.UI.Window.noButtonText": "Nov", + "Common.UI.Window.okButtonText": "OK", + "Common.UI.Window.textConfirmation": "Bekräftelse", + "Common.UI.Window.textDontShow": "Visa inte detta meddelande igen", + "Common.UI.Window.textError": "Fel", + "Common.UI.Window.textInformation": "Information", + "Common.UI.Window.textWarning": "Varning", + "Common.UI.Window.yesButtonText": "Ja", + "Common.Views.CopyWarningDialog.textDontShow": "Visa inte detta meddelande igen", + "Common.Views.CopyWarningDialog.textMsg": "Kopiera, klipp ut och klistra in åtgärder genom att använda kontext menyns åtgärder görs endast i fliken redigera.

För att kopiera eller klistra in till och ifrån applikationer utanför fliken redigera så använd följande tangentbordskombinationer:", + "Common.Views.CopyWarningDialog.textTitle": "Kopiera, klipp ut och klistra in åtgärder", + "Common.Views.CopyWarningDialog.textToCopy": "till kopia", + "Common.Views.CopyWarningDialog.textToCut": "till urklipp", + "Common.Views.CopyWarningDialog.textToPaste": "till klistra in", + "Common.Views.EmbedDialog.textHeight": "Höjd", + "Common.Views.EmbedDialog.textTitle": "Inbäddad", + "Common.Views.EmbedDialog.textWidth": "Bredd", + "Common.Views.EmbedDialog.txtCopy": "Kopiera till utklipp", + "Common.Views.EmbedDialog.warnCopy": "Webbläsarfel! Använd kortkommandot [CTRL] + [C]", + "Common.Views.ImageFromUrlDialog.textUrl": "Klistra in bildens URL:", + "Common.Views.ImageFromUrlDialog.txtEmpty": "Detta fält är obligatoriskt", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "Detta fält bör vara en URL i formatet \"http://www.example.com\"", + "Common.Views.OpenDialog.closeButtonText": "Stäng fil", + "Common.Views.OpenDialog.txtEncoding": "Kodning", + "Common.Views.OpenDialog.txtIncorrectPwd": "Felaktigt lösenord.", + "Common.Views.OpenDialog.txtOpenFile": "Ange lösenord för att öppna filen", + "Common.Views.OpenDialog.txtPassword": "Lösenord", + "Common.Views.OpenDialog.txtPreview": "Förhandsgranska", + "Common.Views.OpenDialog.txtProtected": "När du har angett lösenordet och öppnat filen återställs filens lösenord.", + "Common.Views.OpenDialog.txtTitle": "Välj alternativet %1", + "Common.Views.OpenDialog.txtTitleProtected": "Skyddad fil", + "Common.Views.SaveAsDlg.textLoading": "Laddar", + "Common.Views.SaveAsDlg.textTitle": "Mapp att spara i", + "Common.Views.SelectFileDlg.textLoading": "Laddar", + "Common.Views.SelectFileDlg.textTitle": "Välj datakälla", + "Common.Views.ShareDialog.textTitle": "Dela länk", + "Common.Views.ShareDialog.txtCopy": "Kopiera till utklipp", + "Common.Views.ShareDialog.warnCopy": "Webbläsarfel! Använd kortkommandot [CTRL] + [C]", "DE.Controllers.ApplicationController.convertationErrorText": "Fel vid konvertering", "DE.Controllers.ApplicationController.convertationTimeoutText": "Konverteringstiden har överskridits.", "DE.Controllers.ApplicationController.criticalErrorTitle": "Fel", "DE.Controllers.ApplicationController.downloadErrorText": "Nedladdning misslyckades", "DE.Controllers.ApplicationController.downloadTextText": "Laddar ner dokumentet...", "DE.Controllers.ApplicationController.errorAccessDeny": "Du försöker utföra en åtgärd som du inte har rättighet till.
Vänligen kontakta din systemadministratör.", + "DE.Controllers.ApplicationController.errorBadImageUrl": "Bildens URL är felaktig", + "DE.Controllers.ApplicationController.errorConnectToServer": "Dokumentet kunde inte sparas. Kontrollera anslutningsinställningarna eller kontakta administratören.
När du klickar på \"OK\"-knappen kommer du att bli ombedd att ladda ner dokumentet.", + "DE.Controllers.ApplicationController.errorDataEncrypted": "Krypterade ändringar har tagits emot, de kan inte avkodas.", "DE.Controllers.ApplicationController.errorDefaultMessage": "Felkod: %1", "DE.Controllers.ApplicationController.errorEditingDownloadas": "Ett fel har inträffat.
Använd \"Ladda ned som...\" för att spara en säkerhetskopia på din dator.", + "DE.Controllers.ApplicationController.errorEditingSaveas": "Ett fel inträffade under arbetet med dokumentet.
Använd \"Spara som...\" för att spara en säkerhetskopia på din dator.", "DE.Controllers.ApplicationController.errorFilePassProtect": "Dokumentet är lösenordsskyddat och kunde inte öppnas. ", "DE.Controllers.ApplicationController.errorFileSizeExceed": "Filstorleken överskrider gränsen för din server.
Var snäll och kontakta administratören för dokumentservern för mer information.", + "DE.Controllers.ApplicationController.errorForceSave": "Ett fel uppstod när filen sparades. Vänligen använd alternativet \"Ladda ner som\" för att spara filen till din dator eller försök igen senare.", + "DE.Controllers.ApplicationController.errorLoadingFont": "Typsnittet är inte tillgängligt.
Vänligen kontakta dokumentserverns administratör.", + "DE.Controllers.ApplicationController.errorServerVersion": "Redigerarens version har uppdaterats. Sidan kommer att laddas om för att verkställa ändringarna.", + "DE.Controllers.ApplicationController.errorSessionAbsolute": "Dokumentets redigeringssession har löpt ut. Vänligen ladda om sidan.", + "DE.Controllers.ApplicationController.errorSessionIdle": "Dokumentet har inte redigerats under en längre tid. Vänligen att ladda om sidan.", + "DE.Controllers.ApplicationController.errorSessionToken": "Anslutningen till servern har avbrutits. Vänligen ladda om sidan.", "DE.Controllers.ApplicationController.errorSubmit": "Gick ej att verkställa.", + "DE.Controllers.ApplicationController.errorToken": "Dokumentets säkerhetstoken är inte korrekt.
Vänligen kontakta din dokumentservers administratör.", + "DE.Controllers.ApplicationController.errorTokenExpire": "Dokumentets säkerhetstoken har upphört att gälla.
Vänligen kontakta dokumentserverns administratör.", + "DE.Controllers.ApplicationController.errorUpdateVersion": "Denna version av filen har ändrats. Sidan kommer att laddas om.", "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "Internetanslutningen har återställts och filversionen har ändrats.
Innan du fortsätter arbeta, ladda ner filen eller kopiera innehållet för att försäkra dig om att inte förlora något, ladda sedan om denna sida.", "DE.Controllers.ApplicationController.errorUserDrop": "Filen kan inte nås för tillfället. ", + "DE.Controllers.ApplicationController.errorViewerDisconnect": "Anslutningen avbröts. Du kan fortfarande se dokumentet,
men du kommer inte att kunna ladda ner eller skriva ut det innan anslutningen är återställd och sidan har laddats om.", + "DE.Controllers.ApplicationController.mniImageFromFile": "Bild från fil", + "DE.Controllers.ApplicationController.mniImageFromStorage": "Bild från lagringsmedia", + "DE.Controllers.ApplicationController.mniImageFromUrl": "Bild från URL", "DE.Controllers.ApplicationController.notcriticalErrorTitle": "Varning", + "DE.Controllers.ApplicationController.openErrorText": "Ett fel uppstod vid öppnandet av filen.", + "DE.Controllers.ApplicationController.saveErrorText": "Ett fel uppstod när filen sparades.", + "DE.Controllers.ApplicationController.saveErrorTextDesktop": "Denna filen kan inte sparas eller skapas.
Möjliga orsaker är:
1. Filen är skrivskyddad.
2. Filen redigeras av andra användare.
3. Disken är full eller skadad.", "DE.Controllers.ApplicationController.scriptLoadError": "Anslutningen är för långsam, vissa av komponenterna kunde inte laddas. Vänligen ladda om sidan.", "DE.Controllers.ApplicationController.textAnonymous": "Anonym", + "DE.Controllers.ApplicationController.textBuyNow": "Besök webbplats", + "DE.Controllers.ApplicationController.textCloseTip": "Klicka för att stänga tipset.", + "DE.Controllers.ApplicationController.textContactUs": "Kontakta försäljningen", "DE.Controllers.ApplicationController.textGotIt": "Ok!", "DE.Controllers.ApplicationController.textGuest": "Gäst", "DE.Controllers.ApplicationController.textLoadingDocument": "Laddar dokument", + "DE.Controllers.ApplicationController.textNoLicenseTitle": "Licensens gräns är nådd", "DE.Controllers.ApplicationController.textOf": "av", "DE.Controllers.ApplicationController.textRequired": "Fyll i alla fält för att skicka formulär.", "DE.Controllers.ApplicationController.textSaveAs": "Spara som PDF", + "DE.Controllers.ApplicationController.textSaveAsDesktop": "Spara som...", "DE.Controllers.ApplicationController.textSubmited": " Formulär skickat
Klicka för att stänga tipset", + "DE.Controllers.ApplicationController.titleLicenseExp": "Licensen har upphört att gälla", + "DE.Controllers.ApplicationController.titleServerVersion": "Redigeraren är uppdaterad", + "DE.Controllers.ApplicationController.titleUpdateVersion": "Versionen ändrad", + "DE.Controllers.ApplicationController.txtArt": "Din text här", + "DE.Controllers.ApplicationController.txtChoose": "Välj ett objekt", + "DE.Controllers.ApplicationController.txtClickToLoad": "Klicka för att ladda bilden", "DE.Controllers.ApplicationController.txtClose": "Stäng", + "DE.Controllers.ApplicationController.txtEmpty": "(Tom)", + "DE.Controllers.ApplicationController.txtEnterDate": "Ange ett datum", + "DE.Controllers.ApplicationController.txtPressLink": "Tryck på CTRL och klicka på länken", + "DE.Controllers.ApplicationController.txtUntitled": "Namnlös", "DE.Controllers.ApplicationController.unknownErrorText": "Okänt fel.", "DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "Din webbläsare stöds ej.", + "DE.Controllers.ApplicationController.uploadImageExtMessage": "Okänt bildformat.", + "DE.Controllers.ApplicationController.uploadImageSizeMessage": "Bilden är för stor. Den maximala storleken är 25 MB.", "DE.Controllers.ApplicationController.waitText": "Var snäll och vänta...", + "DE.Controllers.ApplicationController.warnLicenseExceeded": "Gränsen är nådd för antalet %1 samtidiga anslutna redigerare. Dokumentet öppnas som skrivskyddat.
Kontakta administratören för mer information.", + "DE.Controllers.ApplicationController.warnLicenseExp": "Din licens har upphört att gälla.
Vänligen förnya din licens och uppdatera sidan.", + "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "Licensen har upphört att gälla.
Redigeringsfunktionerna är inte tillgängliga.
Vänligen kontakta din administratör.", + "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "Licensen måste förnyas.
Endast begränsad redigeringsfunktionalitet.
Vänligen kontakta din administratör för att få full funktionalitet.", + "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "Gränsen är nådd för antalet %1 redigerare.
Kontakta administratören för mer information.", + "DE.Controllers.ApplicationController.warnNoLicense": "Gränsen är nådd för antalet %1 samtidiga anslutna redigerare. Dokumentet öppnas som skrivskyddat.
Kontakta %1 försäljningsteamet för personliga uppgraderings villkor.", + "DE.Controllers.ApplicationController.warnNoLicenseUsers": "Gränsen är nådd för antalet %1 redigerare.
Kontakta %1 försäljningsteamet för personliga uppgraderings villkor.", "DE.Views.ApplicationView.textClear": "Rensa fält", + "DE.Views.ApplicationView.textCopy": "Kopiera", + "DE.Views.ApplicationView.textCut": "Klipp ut", + "DE.Views.ApplicationView.textFitToPage": "Anpassa till sidan", + "DE.Views.ApplicationView.textFitToWidth": "Anpassa till bredden", "DE.Views.ApplicationView.textNext": "Nästa fält", + "DE.Views.ApplicationView.textPaste": "Klistra in", + "DE.Views.ApplicationView.textPrintSel": "Skriv ut markering", + "DE.Views.ApplicationView.textRedo": "Gör om", + "DE.Views.ApplicationView.textSubmit": "Skicka", + "DE.Views.ApplicationView.textUndo": "Ångra", + "DE.Views.ApplicationView.textZoom": "Förstoring", + "DE.Views.ApplicationView.txtDarkMode": "Mörkt läge", "DE.Views.ApplicationView.txtDownload": "Ladda ner", "DE.Views.ApplicationView.txtDownloadDocx": "Ladda ner som docx", "DE.Views.ApplicationView.txtDownloadPdf": "Ladda ner som pdf", @@ -35,5 +166,6 @@ "DE.Views.ApplicationView.txtFileLocation": "Gå till filens plats", "DE.Views.ApplicationView.txtFullScreen": "Fullskärm", "DE.Views.ApplicationView.txtPrint": "Skriva ut", - "DE.Views.ApplicationView.txtShare": "Dela" + "DE.Views.ApplicationView.txtShare": "Dela", + "DE.Views.ApplicationView.txtTheme": "Gränssnittstema" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/tr.json b/apps/documenteditor/forms/locale/tr.json index f44f53409..3f4aabfcf 100644 --- a/apps/documenteditor/forms/locale/tr.json +++ b/apps/documenteditor/forms/locale/tr.json @@ -80,7 +80,7 @@ "DE.Controllers.ApplicationController.downloadTextText": "Döküman yükleniyor...", "DE.Controllers.ApplicationController.errorAccessDeny": "Hakkınız olmayan bir eylem gerçekleştirmeye çalışıyorsunuz.
Lütfen Belge Sunucu yöneticinize başvurun.", "DE.Controllers.ApplicationController.errorBadImageUrl": "Resim URL'si yanlış", - "DE.Controllers.ApplicationController.errorConnectToServer": "Belge kaydedilemedi. Lütfen internet bağlantınızı kontrol edin veya yöneticiniz ile iletişime geçin.
'OK' tuşuna tıkladığınızda belgeyi indirebileceksiniz.", + "DE.Controllers.ApplicationController.errorConnectToServer": "Belge kaydedilemedi. Lütfen internet bağlantınızı kontrol edin veya yöneticiniz ile iletişime geçin.
'Tamam' tuşuna tıkladığınızda belgeyi indirebileceksiniz.", "DE.Controllers.ApplicationController.errorDataEncrypted": "Şifreli değişiklikler alındı, deşifre edilemezler.", "DE.Controllers.ApplicationController.errorDefaultMessage": "Hata kodu: %1", "DE.Controllers.ApplicationController.errorEditingDownloadas": "Dosyayla çalışırken hata meydana geldi. 'Farklı Kaydet...' seçeneğini kullanarak dosyayı bilgisayarınıza yedekleyin.", diff --git a/apps/documenteditor/forms/locale/uk.json b/apps/documenteditor/forms/locale/uk.json index 133c56c47..eaac1f18c 100644 --- a/apps/documenteditor/forms/locale/uk.json +++ b/apps/documenteditor/forms/locale/uk.json @@ -1,25 +1,171 @@ { + "Common.UI.Calendar.textApril": "Квітень", + "Common.UI.Calendar.textAugust": "Серпень", + "Common.UI.Calendar.textDecember": "Грудень", + "Common.UI.Calendar.textFebruary": "Лютий", + "Common.UI.Calendar.textJanuary": "Січень", + "Common.UI.Calendar.textJuly": "Липень", + "Common.UI.Calendar.textJune": "Червень", + "Common.UI.Calendar.textMarch": "Березень", + "Common.UI.Calendar.textMay": "Трав", + "Common.UI.Calendar.textMonths": "Місяці", + "Common.UI.Calendar.textNovember": "Листопад", + "Common.UI.Calendar.textOctober": "Жовтень", + "Common.UI.Calendar.textSeptember": "Вересень", + "Common.UI.Calendar.textShortApril": "Квіт", + "Common.UI.Calendar.textShortAugust": "Серп", + "Common.UI.Calendar.textShortDecember": "Груд", + "Common.UI.Calendar.textShortFebruary": "Лют", + "Common.UI.Calendar.textShortFriday": "Пт", + "Common.UI.Calendar.textShortJanuary": "Січ", + "Common.UI.Calendar.textShortJuly": "Лип", + "Common.UI.Calendar.textShortJune": "Чер", + "Common.UI.Calendar.textShortMarch": "Бер", + "Common.UI.Calendar.textShortMay": "Травень", + "Common.UI.Calendar.textShortMonday": "Пн", + "Common.UI.Calendar.textShortNovember": "Лис", + "Common.UI.Calendar.textShortOctober": "Жов", + "Common.UI.Calendar.textShortSaturday": "Сб", + "Common.UI.Calendar.textShortSeptember": "Вер", + "Common.UI.Calendar.textShortSunday": "Нд", + "Common.UI.Calendar.textShortThursday": "Чт", + "Common.UI.Calendar.textShortTuesday": "Вт", + "Common.UI.Calendar.textShortWednesday": "Ср", + "Common.UI.Calendar.textYears": "Роки", + "Common.UI.Themes.txtThemeClassicLight": "Класична світла", + "Common.UI.Themes.txtThemeDark": "Темна", + "Common.UI.Themes.txtThemeLight": "Світла", + "Common.UI.Window.cancelButtonText": "Скасувати", + "Common.UI.Window.closeButtonText": "Закрити", + "Common.UI.Window.noButtonText": "Ні", + "Common.UI.Window.okButtonText": "OК", + "Common.UI.Window.textConfirmation": "Підтвердження", + "Common.UI.Window.textDontShow": "Більше не показувати це повідомлення", + "Common.UI.Window.textError": "Помилка", + "Common.UI.Window.textInformation": "Інформація", + "Common.UI.Window.textWarning": "Попередження", + "Common.UI.Window.yesButtonText": "Так", + "Common.Views.CopyWarningDialog.textDontShow": "Більше не показувати це повідомлення", + "Common.Views.CopyWarningDialog.textMsg": "Операції копіювання, вирізування та вставки можна виконати за допомогою команд контекстного меню тільки в цій вкладці редактора.

Для копіювання в інші програми та вставки з них використовуйте наступні комбінації клавіш:", + "Common.Views.CopyWarningDialog.textTitle": "Дії копіювання, вирізки та вставки", + "Common.Views.CopyWarningDialog.textToCopy": "для копіювання", + "Common.Views.CopyWarningDialog.textToCut": "для вирізання", + "Common.Views.CopyWarningDialog.textToPaste": "для вставки", + "Common.Views.EmbedDialog.textHeight": "Висота", + "Common.Views.EmbedDialog.textTitle": "Вбудувати", + "Common.Views.EmbedDialog.textWidth": "Ширина", + "Common.Views.EmbedDialog.txtCopy": "Копіювати в буфер обміну", + "Common.Views.EmbedDialog.warnCopy": "Помилка браузера! Використовуйте комбінацію клавіш [Ctrl] + [C]", + "Common.Views.ImageFromUrlDialog.textUrl": "Вставте URL зображення:", + "Common.Views.ImageFromUrlDialog.txtEmpty": "Це поле обов'язкове для заповнення", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com\"", + "Common.Views.OpenDialog.closeButtonText": "Закрити файл", + "Common.Views.OpenDialog.txtEncoding": "Кодування", + "Common.Views.OpenDialog.txtIncorrectPwd": "Вказано неправильний пароль.", + "Common.Views.OpenDialog.txtOpenFile": "Введіть пароль для відкриття файлу", + "Common.Views.OpenDialog.txtPassword": "Пароль", + "Common.Views.OpenDialog.txtPreview": "Перегляд", + "Common.Views.OpenDialog.txtProtected": "Як тільки ви введете пароль та відкриєте файл, поточний пароль до файлу буде скинуто.", + "Common.Views.OpenDialog.txtTitle": "Виберіть параметри %1", + "Common.Views.OpenDialog.txtTitleProtected": "Захищений файл", + "Common.Views.SaveAsDlg.textLoading": "Завантаження", + "Common.Views.SaveAsDlg.textTitle": "Каталог для збереження", + "Common.Views.SelectFileDlg.textLoading": "Завантаження", + "Common.Views.SelectFileDlg.textTitle": "Вибрати джерело даних", + "Common.Views.ShareDialog.textTitle": "Поділитися посиланням", + "Common.Views.ShareDialog.txtCopy": "Копіювати в буфер обміну", + "Common.Views.ShareDialog.warnCopy": "Помилка браузера! Використовуйте комбінацію клавіш [Ctrl] + [C]", "DE.Controllers.ApplicationController.convertationErrorText": "Не вдалося конвертувати", "DE.Controllers.ApplicationController.convertationTimeoutText": "Перевищено час очікування конверсії.", "DE.Controllers.ApplicationController.criticalErrorTitle": "Помилка", "DE.Controllers.ApplicationController.downloadErrorText": "Завантаження не вдалося", "DE.Controllers.ApplicationController.downloadTextText": "Завантаження документу...", "DE.Controllers.ApplicationController.errorAccessDeny": "Ви намагаєтеся виконати дію, на яку у вас немає прав.
Будь ласка, зв'яжіться з адміністратором вашого Сервера документів.", + "DE.Controllers.ApplicationController.errorBadImageUrl": "Неправильна URL-адреса зображення", + "DE.Controllers.ApplicationController.errorConnectToServer": "Неможливо зберегти документ. Перевірте параметри підключення або зверніться до адміністратора.
Коли ви натиснете на кнопку 'OK', вам буде запропоновано завантажити документ.", + "DE.Controllers.ApplicationController.errorDataEncrypted": "Отримані зашифровані зміни, їх неможливо розшифрувати.", "DE.Controllers.ApplicationController.errorDefaultMessage": "Код помилки: %1", + "DE.Controllers.ApplicationController.errorEditingDownloadas": "Під час роботи з документом сталася помилка.
Використовуйте опцію 'Завантажити як...', щоб зберегти резервну копію файлу на жорсткий диск комп'ютера.", + "DE.Controllers.ApplicationController.errorEditingSaveas": "Під час роботи з документом сталася помилка.
Використовуйте опцію 'Зберегти як...', щоб зберегти резервну копію файлу на жорсткий диск комп'ютера.", "DE.Controllers.ApplicationController.errorFilePassProtect": "Документ захищений паролем і його неможливо відкрити.", "DE.Controllers.ApplicationController.errorFileSizeExceed": "Розмір файлу перевищує обмеження, встановлені для вашого сервера.
Для детальної інформації зверніться до адміністратора сервера документів.", + "DE.Controllers.ApplicationController.errorForceSave": "Під час збереження файлу сталася помилка.
Використовуйте опцію 'Завантажити як...', щоб зберегти файл на жорсткий диск комп'ютера або спробуйте пізніше.", + "DE.Controllers.ApplicationController.errorLoadingFont": "Шрифти не завантажені.
Будь ласка, зверніться до адміністратора Сервера документів.", + "DE.Controllers.ApplicationController.errorServerVersion": "Версія редактора була оновлена. Сторінка буде перезавантажена, щоб застосувати зміни.", + "DE.Controllers.ApplicationController.errorSessionAbsolute": "Сесія редагування документа закінчилася. Будь ласка, перезавантажте сторінку.", + "DE.Controllers.ApplicationController.errorSessionIdle": "Документ тривалий час не редагувався. Перезавантажте сторінку.", + "DE.Controllers.ApplicationController.errorSessionToken": "З'єднання з сервером було перервано. Перезавантажте сторінку", + "DE.Controllers.ApplicationController.errorSubmit": "Не вдалося відправити.", + "DE.Controllers.ApplicationController.errorToken": "Токен безпеки документа має неправильний формат.
Будь ласка, зверніться до адміністратора Сервера документів.", + "DE.Controllers.ApplicationController.errorTokenExpire": "Термін дії токену безпеки документа закінчився.
Будь ласка, зв'яжіться з адміністратором сервера документів.", + "DE.Controllers.ApplicationController.errorUpdateVersion": "Версія файлу була змінена. Сторінка буде перезавантажена.", "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "Підключення до Інтернету було відновлено, а версія файлу змінена.
Перш ніж продовжувати роботу, потрібно завантажити файл або скопіювати його вміст, щоб переконатися, що нічого не втрачено, а потім перезавантажити цю сторінку.", "DE.Controllers.ApplicationController.errorUserDrop": "На даний момент файл не доступний.", + "DE.Controllers.ApplicationController.errorViewerDisconnect": "Підключення втрачено. Ви, як і раніше, можете переглядати документ,
але не зможете звантажити або надрукувати його до відновлення підключення та оновлення сторінки.", + "DE.Controllers.ApplicationController.mniImageFromFile": "Зображення з файлу", + "DE.Controllers.ApplicationController.mniImageFromStorage": "Зображення зі сховища", + "DE.Controllers.ApplicationController.mniImageFromUrl": "Зображення з URL", "DE.Controllers.ApplicationController.notcriticalErrorTitle": "Застереження", + "DE.Controllers.ApplicationController.openErrorText": "Під час відкриття файлу сталася помилка.", + "DE.Controllers.ApplicationController.saveErrorText": "Під час збереження файлу сталася помилка.", + "DE.Controllers.ApplicationController.saveErrorTextDesktop": "Неможливо зберегти або створити цей файл.
Можливі причини:
1. Файл доступний лише для читання.
2. Файл редагується іншими користувачами.
3. Диск заповнено або пошкоджено.", "DE.Controllers.ApplicationController.scriptLoadError": "З'єднання занадто повільне, деякі компоненти не вдалося завантажити. Перезавантажте сторінку.", + "DE.Controllers.ApplicationController.textAnonymous": "Анонімний користувач", + "DE.Controllers.ApplicationController.textBuyNow": "Перейти на сайт", + "DE.Controllers.ApplicationController.textCloseTip": "Натисніть, щоб закрити підказку.", + "DE.Controllers.ApplicationController.textContactUs": "Зв'язатися з відділом продажів", + "DE.Controllers.ApplicationController.textGotIt": "ОК", + "DE.Controllers.ApplicationController.textGuest": "Гість", "DE.Controllers.ApplicationController.textLoadingDocument": "Завантаження документа", + "DE.Controllers.ApplicationController.textNoLicenseTitle": "Ліцензійне обмеження", "DE.Controllers.ApplicationController.textOf": "з", + "DE.Controllers.ApplicationController.textRequired": "Заповніть всі обов'язкові поля для відправлення форми.", + "DE.Controllers.ApplicationController.textSaveAs": "Зберегти як PDF", + "DE.Controllers.ApplicationController.textSaveAsDesktop": "Зберегти як...", + "DE.Controllers.ApplicationController.textSubmited": "Форму успішно відправлено
Натисніть, щоб закрити підказку", + "DE.Controllers.ApplicationController.titleLicenseExp": "Термін дії ліцензії закінчився", + "DE.Controllers.ApplicationController.titleServerVersion": "Редактор оновлено", + "DE.Controllers.ApplicationController.titleUpdateVersion": "Версія змінилась", + "DE.Controllers.ApplicationController.txtArt": "Введіть ваш текст", + "DE.Controllers.ApplicationController.txtChoose": "Оберіть елемент", + "DE.Controllers.ApplicationController.txtClickToLoad": "Натисніть для завантаження зображення", "DE.Controllers.ApplicationController.txtClose": "Закрити", + "DE.Controllers.ApplicationController.txtEmpty": "(Пусто)", + "DE.Controllers.ApplicationController.txtEnterDate": "Введіть дату", + "DE.Controllers.ApplicationController.txtPressLink": "Натисніть CTRL та клацніть по посиланню", + "DE.Controllers.ApplicationController.txtUntitled": "Без назви", "DE.Controllers.ApplicationController.unknownErrorText": "Невідома помилка.", "DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "Ваш браузер не підтримується", + "DE.Controllers.ApplicationController.uploadImageExtMessage": "Невідомий формат зображення.", + "DE.Controllers.ApplicationController.uploadImageSizeMessage": "Занадто велике зображення. Максимальний розмір – 25 MB.", "DE.Controllers.ApplicationController.waitText": "Будь ласка, зачекайте...", + "DE.Controllers.ApplicationController.warnLicenseExceeded": "Ви досягли ліміту на одночасне підключення до редакторів %1. Цей документ буде відкритий тільки на перегляд.
Зверніться до адміністратора, щоб дізнатися більше.", + "DE.Controllers.ApplicationController.warnLicenseExp": "Закінчився термін дії ліцензії.
Оновіть ліцензію, а потім оновіть сторінку.", + "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "Термін дії ліцензії закінчився.
Немає доступ до функцій редагування документів.
Будь ласка, зверніться до адміністратора.", + "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "Потрібно поновити ліцензію.
У вас обмежений доступ до функцій редагування документів.
Будь ласка, зверніться до свого адміністратора, щоб отримати повний доступ", + "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "Ви досягли ліміту на кількість користувачів редакторів %1.
Зв'яжіться з адміністратором, щоб дізнатися більше.", + "DE.Controllers.ApplicationController.warnNoLicense": "Ви досягли ліміту на одночасне підключення до редакторів %1. Цей документ буде відкрито для перегляду.
Напишіть у відділ продажу %1, щоб обговорити індивідуальні умови ліцензування.", + "DE.Controllers.ApplicationController.warnNoLicenseUsers": "Ви досягли ліміту на одночасне підключення до редакторів %1.
Напишіть у відділ продаж %1, для обговорення індивідуальних умов ліцензування.", + "DE.Views.ApplicationView.textClear": "Очистити всі поля", + "DE.Views.ApplicationView.textCopy": "Копіювати", + "DE.Views.ApplicationView.textCut": "Вирізати", + "DE.Views.ApplicationView.textFitToPage": "За розміром сторінки", + "DE.Views.ApplicationView.textFitToWidth": "По ширині", + "DE.Views.ApplicationView.textNext": "Наступне поле", + "DE.Views.ApplicationView.textPaste": "Вставити", + "DE.Views.ApplicationView.textPrintSel": "Надрукувати виділене", + "DE.Views.ApplicationView.textRedo": "Повторити", + "DE.Views.ApplicationView.textSubmit": "Відправити", + "DE.Views.ApplicationView.textUndo": "Скасувати", + "DE.Views.ApplicationView.textZoom": "Масштаб", + "DE.Views.ApplicationView.txtDarkMode": "Темний режим", "DE.Views.ApplicationView.txtDownload": "Завантажити", + "DE.Views.ApplicationView.txtDownloadDocx": "Завантажити як docx", + "DE.Views.ApplicationView.txtDownloadPdf": "Завантажити як pdf", "DE.Views.ApplicationView.txtEmbed": "Вставити", + "DE.Views.ApplicationView.txtFileLocation": "Відкрити розташування файлу", "DE.Views.ApplicationView.txtFullScreen": "Повноекранний режим", - "DE.Views.ApplicationView.txtShare": "Доступ" + "DE.Views.ApplicationView.txtPrint": "Друк", + "DE.Views.ApplicationView.txtShare": "Доступ", + "DE.Views.ApplicationView.txtTheme": "Тема інтерфейсу" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/ca.json b/apps/documenteditor/main/locale/ca.json index a09b28f8e..4274b0d94 100644 --- a/apps/documenteditor/main/locale/ca.json +++ b/apps/documenteditor/main/locale/ca.json @@ -50,7 +50,7 @@ "Common.Controllers.ReviewChanges.textNum": "Canvia la numeració", "Common.Controllers.ReviewChanges.textOff": "{0} ja no es fa servir el control de canvis.", "Common.Controllers.ReviewChanges.textOffGlobal": "{0} S'ha inhabilitat el control de canvis per a tothom.", - "Common.Controllers.ReviewChanges.textOn": "{0} ara es fa servir el control de canvis.", + "Common.Controllers.ReviewChanges.textOn": "{0} es fa servir el control de canvis.", "Common.Controllers.ReviewChanges.textOnGlobal": "{0} S'ha habilitat el control de canvis per a tothom.", "Common.Controllers.ReviewChanges.textParaDeleted": "S'ha suprimit el paràgraf", "Common.Controllers.ReviewChanges.textParaFormatted": "Paràgraf formatat", @@ -432,7 +432,7 @@ "Common.Views.ReviewPopover.textClose": "Tanca", "Common.Views.ReviewPopover.textEdit": "D'acord", "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.textMention": "+menció donarà 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", @@ -581,7 +581,7 @@ "DE.Controllers.Main.printTitleText": "S'està imprimint el document", "DE.Controllers.Main.reloadButtonText": "Torna a carregar la pàgina", "DE.Controllers.Main.requestEditFailedMessageText": "Algú té obert aquest document. Intenteu-ho més tard.", - "DE.Controllers.Main.requestEditFailedTitleText": "Accés denegat", + "DE.Controllers.Main.requestEditFailedTitleText": "S'ha denegat l'accés", "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.saveTextText": "S'està desant el document...", @@ -887,7 +887,7 @@ "DE.Controllers.Main.warnProcessRightsChange": "No tens permís per editar el fitxer.", "DE.Controllers.Navigation.txtBeginning": "Inici del document", "DE.Controllers.Navigation.txtGotoBeginning": "Ves al començament del document", - "DE.Controllers.Statusbar.textDisconnect": "S'ha perdut la connexió. S'està intentat connectar. Comproveu la configuració de connexió", + "DE.Controllers.Statusbar.textDisconnect": "S'ha perdut la connexió. S'intenta connectar. Comproveu la configuració de connexió", "DE.Controllers.Statusbar.textHasChanges": "S'ha fet un seguiment dels canvis nous", "DE.Controllers.Statusbar.textSetTrackChanges": "Ets en mode de control de canvis", "DE.Controllers.Statusbar.textTrackChanges": "El document s'ha obert amb el mode de seguiment de canvis activat", diff --git a/apps/documenteditor/main/locale/cs.json b/apps/documenteditor/main/locale/cs.json index bf17634ba..7e3a3e1cf 100644 --- a/apps/documenteditor/main/locale/cs.json +++ b/apps/documenteditor/main/locale/cs.json @@ -2606,7 +2606,7 @@ "DE.Views.Toolbar.capBtnInsControls": "Ovládací prvky obsahu", "DE.Views.Toolbar.capBtnInsDropcap": "Iniciála", "DE.Views.Toolbar.capBtnInsEquation": "Rovnice", - "DE.Views.Toolbar.capBtnInsHeader": "Záhlaví/Zápatí", + "DE.Views.Toolbar.capBtnInsHeader": "Záhlaví & Zápatí", "DE.Views.Toolbar.capBtnInsImage": "Obrázek", "DE.Views.Toolbar.capBtnInsPagebreak": "Rozdělení stránky", "DE.Views.Toolbar.capBtnInsShape": "Obrazec", @@ -2810,6 +2810,7 @@ "DE.Views.Toolbar.txtScheme8": "Tok", "DE.Views.Toolbar.txtScheme9": "Slévárna", "DE.Views.ViewTab.textAlwaysShowToolbar": "Vždy zobrazovat panel nástrojů", + "DE.Views.ViewTab.textDarkDocument": "Tmavý režim dokumentu", "DE.Views.ViewTab.textFitToPage": "Přizpůsobit stránce", "DE.Views.ViewTab.textFitToWidth": "Přizpůsobit šířce", "DE.Views.ViewTab.textInterfaceTheme": "Vzhled uživatelského rozhraní", diff --git a/apps/documenteditor/main/locale/de.json b/apps/documenteditor/main/locale/de.json index 1f0496ec9..1be778ad1 100644 --- a/apps/documenteditor/main/locale/de.json +++ b/apps/documenteditor/main/locale/de.json @@ -168,6 +168,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Neu", "Common.UI.ExtendedColorDialog.textRGBErr": "Der eingegebene Wert ist falsch.
Bitte geben Sie einen numerischen Wert zwischen 0 und 255 ein.", "Common.UI.HSBColorPicker.textNoColor": "Ohne Farbe", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Passwort ausblenden", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Password anzeigen", "Common.UI.SearchDialog.textHighlight": "Ergebnisse hervorheben", "Common.UI.SearchDialog.textMatchCase": "Groß-/Kleinschreibung beachten", "Common.UI.SearchDialog.textReplaceDef": "Geben Sie den Ersetzungstext ein", @@ -211,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Automatische Aufzählungen", "Common.Views.AutoCorrectDialog.textBy": "Nach", "Common.Views.AutoCorrectDialog.textDelete": "Löschen", + "Common.Views.AutoCorrectDialog.textFLCells": "Jede Tabellenzelle mit einem Großbuchstaben beginnen", "Common.Views.AutoCorrectDialog.textFLSentence": "Jeden Satz mit einem Großbuchstaben beginnen", "Common.Views.AutoCorrectDialog.textHyperlink": "Internet- und Netzwerkpfade durch Hyperlinks", "Common.Views.AutoCorrectDialog.textHyphens": "Bindestriche (--) mit Gedankenstrich (—)", @@ -236,12 +239,14 @@ "Common.Views.Comments.mniAuthorDesc": "Verfasser (Z-A)", "Common.Views.Comments.mniDateAsc": "Älteste zuerst", "Common.Views.Comments.mniDateDesc": "Neueste zuerst", + "Common.Views.Comments.mniFilterGroups": "Nach Gruppe filtern", "Common.Views.Comments.mniPositionAsc": "Von oben", "Common.Views.Comments.mniPositionDesc": "Von unten", "Common.Views.Comments.textAdd": "Hinzufügen", "Common.Views.Comments.textAddComment": "Hinzufügen", "Common.Views.Comments.textAddCommentToDoc": "Kommentar zum Dokument hinzufügen", "Common.Views.Comments.textAddReply": "Antwort hinzufügen", + "Common.Views.Comments.textAll": "Alle", "Common.Views.Comments.textAnonym": "Gast", "Common.Views.Comments.textCancel": "Abbrechen", "Common.Views.Comments.textClose": "Schließen", @@ -255,6 +260,7 @@ "Common.Views.Comments.textResolve": "Lösen", "Common.Views.Comments.textResolved": "Gelöst", "Common.Views.Comments.textSort": "Kommentare sortieren", + "Common.Views.Comments.textViewResolved": "Sie haben keine Berechtigung, den Kommentar erneut zu öffnen", "Common.Views.CopyWarningDialog.textDontShow": "Diese Meldung nicht mehr anzeigen", "Common.Views.CopyWarningDialog.textMsg": "Kopier-, Ausschneide- und Einfügeaktionen mit den Schaltflächen der Editor-Symbolleiste und Kontextmenü-Aktionen werden nur innerhalb dieser Editor-Registerkarte ausgeführt.

Zum Kopieren oder Einfügen in oder aus anderen Anwendungen nutzen Sie die folgenden Tastenkombinationen:", "Common.Views.CopyWarningDialog.textTitle": "Funktionen \"Kopieren\", \"Ausschneiden\" und \"Einfügen\"", @@ -431,6 +437,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Erneut öffnen", "Common.Views.ReviewPopover.textReply": "Antworten", "Common.Views.ReviewPopover.textResolve": "Lösen", + "Common.Views.ReviewPopover.textViewResolved": "Sie haben keine Berechtigung, den Kommentar erneut zu öffnen", "Common.Views.ReviewPopover.txtAccept": "Annehmen", "Common.Views.ReviewPopover.txtDeleteTip": "Löschen", "Common.Views.ReviewPopover.txtEditTip": "Bearbeiten", @@ -602,6 +609,7 @@ "DE.Controllers.Main.textLongName": "Der Name einer Tabellenansicht darf maximal 128 Zeichen lang sein.", "DE.Controllers.Main.textNoLicenseTitle": "Lizenzlimit erreicht", "DE.Controllers.Main.textPaidFeature": "Kostenpflichtige Funktion", + "DE.Controllers.Main.textReconnect": "Verbindung wurde wiederhergestellt", "DE.Controllers.Main.textRemember": "Meine Auswahl merken", "DE.Controllers.Main.textRenameError": "Benutzername darf nicht leer sein.", "DE.Controllers.Main.textRenameLabel": "Geben Sie den Namen für Zusammenarbeit ein", @@ -879,6 +887,7 @@ "DE.Controllers.Main.warnProcessRightsChange": "Das Recht, die Datei zu bearbeiten, wurde Ihnen verweigert.", "DE.Controllers.Navigation.txtBeginning": "Anfang des Dokuments", "DE.Controllers.Navigation.txtGotoBeginning": "Zum Anfang des Dokuments übergehnen", + "DE.Controllers.Statusbar.textDisconnect": "Die Verbindung wurde unterbrochen
Verbindungsversuch... Bitte Verbindungseinstellungen überprüfen.", "DE.Controllers.Statusbar.textHasChanges": "Neue Änderungen wurden zurückverfolgt", "DE.Controllers.Statusbar.textSetTrackChanges": "Nachverfolgung von Änderungen ist aktiv", "DE.Controllers.Statusbar.textTrackChanges": "Das Dokument wird im Modus \"Nachverfolgen von Änderungen\" geöffnet. ", @@ -902,10 +911,22 @@ "DE.Controllers.Toolbar.textMatrix": "Matrizen", "DE.Controllers.Toolbar.textOperator": "Operatoren", "DE.Controllers.Toolbar.textRadical": "Wurzeln", + "DE.Controllers.Toolbar.textRecentlyUsed": "Zuletzt verwendet", "DE.Controllers.Toolbar.textScript": "Skripts", "DE.Controllers.Toolbar.textSymbols": "Symbole", "DE.Controllers.Toolbar.textTabForms": "Formulare", "DE.Controllers.Toolbar.textWarning": "Achtung", + "DE.Controllers.Toolbar.tipMarkersArrow": "Pfeilförmige Aufzählungszeichen", + "DE.Controllers.Toolbar.tipMarkersCheckmark": "Häkchenaufzählungszeichen", + "DE.Controllers.Toolbar.tipMarkersDash": "Aufzählungszeichen", + "DE.Controllers.Toolbar.tipMarkersFRhombus": "Ausgefüllte karoförmige Aufzählungszeichen", + "DE.Controllers.Toolbar.tipMarkersFRound": "Ausgefüllte runde Aufzählungszeichen", + "DE.Controllers.Toolbar.tipMarkersFSquare": "Ausgefüllte quadratische Aufzählungszeichen", + "DE.Controllers.Toolbar.tipMarkersHRound": "Leere runde Aufzählungszeichen", + "DE.Controllers.Toolbar.tipMarkersStar": "Sternförmige Aufzählungszeichen", + "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Nummerierte Liste mit mehreren Ebenen", + "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Aufzählungsliste mit mehreren Ebenen", + "DE.Controllers.Toolbar.tipMultiLevelVarious": "Kombinierte Liste mit mehreren Ebenen", "DE.Controllers.Toolbar.txtAccent_Accent": "Akut", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Pfeil nach rechts und links oben", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Pfeil nach links oben", @@ -1457,6 +1478,7 @@ "DE.Views.DocumentHolder.textDistributeCols": "Spalten verteilen", "DE.Views.DocumentHolder.textDistributeRows": "Zeilen verteilen", "DE.Views.DocumentHolder.textEditControls": "Einstellungen des Inhaltssteuerelements", + "DE.Views.DocumentHolder.textEditPoints": "Punkte bearbeiten", "DE.Views.DocumentHolder.textEditWrapBoundary": "Umbruchsgrenze bearbeiten", "DE.Views.DocumentHolder.textFlipH": "Horizontal kippen", "DE.Views.DocumentHolder.textFlipV": "Vertikal kippen", @@ -1505,6 +1527,14 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Das Inhaltsverzeichnis aktualisieren", "DE.Views.DocumentHolder.textWrap": "Textumbruch", "DE.Views.DocumentHolder.tipIsLocked": "Dieses Element wird gerade von einem anderen Benutzer bearbeitet.", + "DE.Views.DocumentHolder.tipMarkersArrow": "Pfeilförmige Aufzählungszeichen", + "DE.Views.DocumentHolder.tipMarkersCheckmark": "Häkchenaufzählungszeichen", + "DE.Views.DocumentHolder.tipMarkersDash": "Aufzählungszeichen", + "DE.Views.DocumentHolder.tipMarkersFRhombus": "Ausgefüllte karoförmige Aufzählungszeichen", + "DE.Views.DocumentHolder.tipMarkersFRound": "Ausgefüllte runde Aufzählungszeichen", + "DE.Views.DocumentHolder.tipMarkersFSquare": "Ausgefüllte quadratische Aufzählungszeichen", + "DE.Views.DocumentHolder.tipMarkersHRound": "Leere runde Aufzählungszeichen", + "DE.Views.DocumentHolder.tipMarkersStar": "Sternförmige Aufzählungszeichen", "DE.Views.DocumentHolder.toDictionaryText": "Zum Wörterbuch hinzufügen", "DE.Views.DocumentHolder.txtAddBottom": "Unteren Rahmen hinzufügen", "DE.Views.DocumentHolder.txtAddFractionBar": "Bruchstrich hinzufügen", @@ -1743,6 +1773,7 @@ "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "In Sprechblasen beim Klicken anzeigen", "DE.Views.FileMenuPanels.Settings.txtChangesTip": "In Tipps anzeigen", "DE.Views.FileMenuPanels.Settings.txtCm": "Zentimeter", + "DE.Views.FileMenuPanels.Settings.txtDarkMode": "Dunkelmodus aktivieren", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Seite anpassen", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Breite anpassen", "DE.Views.FileMenuPanels.Settings.txtInch": "Zoll", @@ -1870,6 +1901,7 @@ "DE.Views.ImageSettings.textCrop": "Zuschneiden", "DE.Views.ImageSettings.textCropFill": "Ausfüllen", "DE.Views.ImageSettings.textCropFit": "Anpassen", + "DE.Views.ImageSettings.textCropToShape": "Auf Form zuschneiden", "DE.Views.ImageSettings.textEdit": "Bearbeiten", "DE.Views.ImageSettings.textEditObject": "Objekt bearbeiten", "DE.Views.ImageSettings.textFitMargins": "Rändern anpassen", @@ -1884,6 +1916,7 @@ "DE.Views.ImageSettings.textHintFlipV": "Vertikal kippen", "DE.Views.ImageSettings.textInsert": "Bild ersetzen", "DE.Views.ImageSettings.textOriginalSize": "Tatsächliche Größe", + "DE.Views.ImageSettings.textRecentlyUsed": "Zuletzt verwendet", "DE.Views.ImageSettings.textRotate90": "90 Grad drehen", "DE.Views.ImageSettings.textRotation": "Rotation", "DE.Views.ImageSettings.textSize": "Größe", @@ -2154,6 +2187,11 @@ "DE.Views.PageSizeDialog.textTitle": "Seitenformat", "DE.Views.PageSizeDialog.textWidth": "Breite", "DE.Views.PageSizeDialog.txtCustom": "Benutzerdefinierte", + "DE.Views.PageThumbnails.textClosePanel": "Miniaturansichten schließen", + "DE.Views.PageThumbnails.textHighlightVisiblePart": "Sichtbaren Teil der Seite hervorheben", + "DE.Views.PageThumbnails.textPageThumbnails": "Miniaturansichten", + "DE.Views.PageThumbnails.textThumbnailsSettings": "Einstellungen von Miniaturansichten", + "DE.Views.PageThumbnails.textThumbnailsSize": "Größe von Miniaturansichten", "DE.Views.ParagraphSettings.strIndent": "Einzüge ", "DE.Views.ParagraphSettings.strIndentsLeftText": "Links", "DE.Views.ParagraphSettings.strIndentsRightText": "Rechts", @@ -2289,6 +2327,7 @@ "DE.Views.ShapeSettings.textPatternFill": "Muster", "DE.Views.ShapeSettings.textPosition": "Stellung", "DE.Views.ShapeSettings.textRadial": "Radial", + "DE.Views.ShapeSettings.textRecentlyUsed": "Zuletzt verwendet", "DE.Views.ShapeSettings.textRotate90": "90 Grad drehen", "DE.Views.ShapeSettings.textRotation": "Rotation", "DE.Views.ShapeSettings.textSelectImage": "Bild auswählen", @@ -2680,6 +2719,7 @@ "DE.Views.Toolbar.textTabLinks": "Verweise", "DE.Views.Toolbar.textTabProtect": "Schutz", "DE.Views.Toolbar.textTabReview": "Review", + "DE.Views.Toolbar.textTabView": "Ansicht", "DE.Views.Toolbar.textTitleError": "Fehler", "DE.Views.Toolbar.textToCurrent": "An aktueller Position", "DE.Views.Toolbar.textTop": "Oben: ", @@ -2771,6 +2811,15 @@ "DE.Views.Toolbar.txtScheme7": "Dactylos", "DE.Views.Toolbar.txtScheme8": "Bewegungsart", "DE.Views.Toolbar.txtScheme9": "Phoebe", + "DE.Views.ViewTab.textAlwaysShowToolbar": "Symbolleiste immer anzeigen", + "DE.Views.ViewTab.textDarkDocument": "Dunkles Dokument", + "DE.Views.ViewTab.textFitToPage": "Seite anpassen", + "DE.Views.ViewTab.textFitToWidth": "An Breite anpassen", + "DE.Views.ViewTab.textInterfaceTheme": "Thema der Benutzeroberfläche", + "DE.Views.ViewTab.textNavigation": "Navigation", + "DE.Views.ViewTab.textRulers": "Lineale", + "DE.Views.ViewTab.textStatusBar": "Statusleiste", + "DE.Views.ViewTab.textZoom": "Zoom", "DE.Views.WatermarkSettingsDialog.textAuto": "Automatisch", "DE.Views.WatermarkSettingsDialog.textBold": "Fett", "DE.Views.WatermarkSettingsDialog.textColor": "Textfarbe", diff --git a/apps/documenteditor/main/locale/es.json b/apps/documenteditor/main/locale/es.json index 35122a219..edd896016 100644 --- a/apps/documenteditor/main/locale/es.json +++ b/apps/documenteditor/main/locale/es.json @@ -21,7 +21,7 @@ "Common.Controllers.ReviewChanges.textChar": "Nivel de carácter", "Common.Controllers.ReviewChanges.textChart": "Gráfico", "Common.Controllers.ReviewChanges.textColor": "Color de letra", - "Common.Controllers.ReviewChanges.textContextual": "No añadir intervalo entre párrafos del mismo estilo", + "Common.Controllers.ReviewChanges.textContextual": "No agregue intervalos entre párrafos del mismo estilo", "Common.Controllers.ReviewChanges.textDeleted": "Eliminado:", "Common.Controllers.ReviewChanges.textDStrikeout": "Double strikeout", "Common.Controllers.ReviewChanges.textEquation": "Ecuación", @@ -42,7 +42,7 @@ "Common.Controllers.ReviewChanges.textLineSpacing": "Espaciado de línea: ", "Common.Controllers.ReviewChanges.textMultiple": "Múltiple", "Common.Controllers.ReviewChanges.textNoBreakBefore": "Sin salto de página antes", - "Common.Controllers.ReviewChanges.textNoContextual": "Añadir intervalo entre párrafos del mismo estilo", + "Common.Controllers.ReviewChanges.textNoContextual": "Agregar intervalo entre párrafos del mismo estilo", "Common.Controllers.ReviewChanges.textNoKeepLines": "No mantener líneas juntas", "Common.Controllers.ReviewChanges.textNoKeepNext": "No mantener con el siguiente", "Common.Controllers.ReviewChanges.textNot": "No", @@ -71,7 +71,7 @@ "Common.Controllers.ReviewChanges.textSubScript": "Subíndice", "Common.Controllers.ReviewChanges.textSuperScript": "Sobreíndice", "Common.Controllers.ReviewChanges.textTableChanged": "Se ha cambiado la configuración de la tabla", - "Common.Controllers.ReviewChanges.textTableRowsAdd": "Se han añadido filas a la tabla", + "Common.Controllers.ReviewChanges.textTableRowsAdd": "Se han agregado filas a la tabla", "Common.Controllers.ReviewChanges.textTableRowsDel": "Se han eliminado filas de la tabla", "Common.Controllers.ReviewChanges.textTabs": "Cambiar tabuladores", "Common.Controllers.ReviewChanges.textTitleComparison": "Ajustes de comparación", @@ -125,7 +125,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Crear una copia", "Common.Translation.warnFileLockedBtnView": "Abrir para visualizar", "Common.UI.ButtonColored.textAutoColor": "Automático", - "Common.UI.ButtonColored.textNewColor": "Añadir nuevo color personalizado", + "Common.UI.ButtonColored.textNewColor": "Agregar nuevo color personalizado", "Common.UI.Calendar.textApril": "Abril", "Common.UI.Calendar.textAugust": "Agosto", "Common.UI.Calendar.textDecember": "Diciembre", @@ -162,7 +162,7 @@ "Common.UI.ComboBorderSize.txtNoBorders": "Sin bordes", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sin bordes", "Common.UI.ComboDataView.emptyComboText": "Sin estilo", - "Common.UI.ExtendedColorDialog.addButtonText": "Añadir", + "Common.UI.ExtendedColorDialog.addButtonText": "Agregar", "Common.UI.ExtendedColorDialog.textCurrent": "Actual", "Common.UI.ExtendedColorDialog.textHexErr": "El valor introducido es incorrecto.
Por favor, introduzca un valor de 000000 a FFFFFF.", "Common.UI.ExtendedColorDialog.textNew": "Nuevo", @@ -206,7 +206,7 @@ "Common.Views.About.txtPoweredBy": "Desarrollado por", "Common.Views.About.txtTel": "tel.: ", "Common.Views.About.txtVersion": "Versión ", - "Common.Views.AutoCorrectDialog.textAdd": "Añadir", + "Common.Views.AutoCorrectDialog.textAdd": "Agregar", "Common.Views.AutoCorrectDialog.textApplyText": "Aplicar mientras escribe", "Common.Views.AutoCorrectDialog.textAutoCorrect": "Autocorrección de texto", "Common.Views.AutoCorrectDialog.textAutoFormat": "Autoformato mientras escribe", @@ -232,7 +232,7 @@ "Common.Views.AutoCorrectDialog.textWarnAddRec": "Las funciones reconocidas deben contener solo letras de la A a la Z, mayúsculas o minúsculas.", "Common.Views.AutoCorrectDialog.textWarnResetRec": "Cualquier expresión que haya agregado se eliminará y las eliminadas se restaurarán. ¿Desea continuar?", "Common.Views.AutoCorrectDialog.warnReplace": "La entrada de autocorreción para %1 ya existe. ¿Desea reemplazarla?", - "Common.Views.AutoCorrectDialog.warnReset": "Cualquier autocorreción que haya agregado se eliminará y los modificados serán restaurados a sus valores originales. ¿Desea continuar?", + "Common.Views.AutoCorrectDialog.warnReset": "Las autocorrecciones que haya agregado se eliminarán y las modificadas recuperarán sus valores originales. ¿Desea continuar?", "Common.Views.AutoCorrectDialog.warnRestore": "La entrada de autocorrección para %1 será restablecida a su valor original. ¿Desea continuar?", "Common.Views.Chat.textSend": "Enviar", "Common.Views.Comments.mniAuthorAsc": "Autor de A a Z", @@ -242,10 +242,10 @@ "Common.Views.Comments.mniFilterGroups": "Filtrar por grupo", "Common.Views.Comments.mniPositionAsc": "Desde arriba", "Common.Views.Comments.mniPositionDesc": "Desde abajo", - "Common.Views.Comments.textAdd": "Añadir", - "Common.Views.Comments.textAddComment": "Añadir comentario", - "Common.Views.Comments.textAddCommentToDoc": "Añadir comentario al documento", - "Common.Views.Comments.textAddReply": "Añadir respuesta", + "Common.Views.Comments.textAdd": "Agregar", + "Common.Views.Comments.textAddComment": "Agregar comentario", + "Common.Views.Comments.textAddCommentToDoc": "Agregar comentario al documento", + "Common.Views.Comments.textAddReply": "Agregar respuesta", "Common.Views.Comments.textAll": "Todo", "Common.Views.Comments.textAnonym": "Visitante", "Common.Views.Comments.textCancel": "Cancelar", @@ -254,7 +254,7 @@ "Common.Views.Comments.textComments": "Comentarios", "Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEnterCommentHint": "Introduzca su comentario aquí", - "Common.Views.Comments.textHintAddComment": "Añadir comentario", + "Common.Views.Comments.textHintAddComment": "Agregar comentario", "Common.Views.Comments.textOpenAgain": "Abrir de nuevo", "Common.Views.Comments.textReply": "Responder", "Common.Views.Comments.textResolve": "Resolver", @@ -336,14 +336,14 @@ "Common.Views.Plugins.textStop": "Detener", "Common.Views.Protection.hintAddPwd": "Encriptar con contraseña", "Common.Views.Protection.hintPwd": "Cambie o elimine la contraseña", - "Common.Views.Protection.hintSignature": "Añadir firma digital o línea de firma", - "Common.Views.Protection.txtAddPwd": "Añadir contraseña", + "Common.Views.Protection.hintSignature": "Agregar firma digital o línea de firma", + "Common.Views.Protection.txtAddPwd": "Agregar contraseña", "Common.Views.Protection.txtChangePwd": "Cambie la contraseña", "Common.Views.Protection.txtDeletePwd": "Eliminar contraseña", "Common.Views.Protection.txtEncrypt": "Encriptar", - "Common.Views.Protection.txtInvisibleSignature": "Añadir firma digital", + "Common.Views.Protection.txtInvisibleSignature": "Agregar firma digital", "Common.Views.Protection.txtSignature": "Firma", - "Common.Views.Protection.txtSignatureLine": "Añadir línea de firma", + "Common.Views.Protection.txtSignatureLine": "Agregar línea de firma", "Common.Views.RenameDialog.textName": "Nombre de archivo", "Common.Views.RenameDialog.txtInvalidName": "El nombre de archivo no debe contener los símbolos siguientes:", "Common.Views.ReviewChanges.hintNext": "Al siguiente cambio", @@ -426,8 +426,8 @@ "Common.Views.ReviewChangesDialog.txtReject": "Rechazar", "Common.Views.ReviewChangesDialog.txtRejectAll": "Rechazar todos los cambjios", "Common.Views.ReviewChangesDialog.txtRejectCurrent": "Rechazar Cambio Actual", - "Common.Views.ReviewPopover.textAdd": "Añadir", - "Common.Views.ReviewPopover.textAddReply": "Añadir respuesta", + "Common.Views.ReviewPopover.textAdd": "Agregar", + "Common.Views.ReviewPopover.textAddReply": "Agregar respuesta", "Common.Views.ReviewPopover.textCancel": "Cancelar", "Common.Views.ReviewPopover.textClose": "Cerrar", "Common.Views.ReviewPopover.textEdit": "OK", @@ -461,7 +461,7 @@ "Common.Views.SignDialog.textValid": "Válido desde %1 hasta %2", "Common.Views.SignDialog.tipFontName": "Nombre del tipo de letra", "Common.Views.SignDialog.tipFontSize": "Tamaño del tipo de letra", - "Common.Views.SignSettingsDialog.textAllowComment": "Permitir a quien firma añadir comentarios en el diálogo de firma", + "Common.Views.SignSettingsDialog.textAllowComment": "Permitir al firmante agregar comentarios en el diálogo de firma", "Common.Views.SignSettingsDialog.textInfo": "Información de quien firma", "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", "Common.Views.SignSettingsDialog.textInfoName": "Nombre", @@ -1250,7 +1250,7 @@ "DE.Controllers.Viewport.txtDarkMode": "Modo oscuro", "DE.Views.AddNewCaptionLabelDialog.textLabel": "Etiqueta:", "DE.Views.AddNewCaptionLabelDialog.textLabelError": "La etiqueta no debe estar vacía.", - "DE.Views.BookmarksDialog.textAdd": "Añadir", + "DE.Views.BookmarksDialog.textAdd": "Agregar", "DE.Views.BookmarksDialog.textBookmarkName": "Nombre de marcador", "DE.Views.BookmarksDialog.textClose": "Cerrar", "DE.Views.BookmarksDialog.textCopy": "Copiar ", @@ -1263,7 +1263,7 @@ "DE.Views.BookmarksDialog.textSort": "Ordenar por", "DE.Views.BookmarksDialog.textTitle": "Marcadores", "DE.Views.BookmarksDialog.txtInvalidName": "Nombre de marcador sólo puede contener letras, dígitos y barras bajas y debe comenzar con la letra", - "DE.Views.CaptionDialog.textAdd": "Añadir etiqueta", + "DE.Views.CaptionDialog.textAdd": "Agregar etiqueta", "DE.Views.CaptionDialog.textAfter": "Después", "DE.Views.CaptionDialog.textBefore": "Antes", "DE.Views.CaptionDialog.textCaption": "Leyenda", @@ -1311,7 +1311,7 @@ "DE.Views.ChartSettings.txtTitle": "Gráfico", "DE.Views.ChartSettings.txtTopAndBottom": "Superior e inferior", "DE.Views.ControlSettingsDialog.strGeneral": "General", - "DE.Views.ControlSettingsDialog.textAdd": "Añadir", + "DE.Views.ControlSettingsDialog.textAdd": "Agregar", "DE.Views.ControlSettingsDialog.textAppearance": "Aspecto", "DE.Views.ControlSettingsDialog.textApplyAll": "Aplicar a todo", "DE.Views.ControlSettingsDialog.textBox": "Cuadro delimitador", @@ -1392,7 +1392,7 @@ "DE.Views.DateTimeDialog.textUpdate": "Actualizar automáticamente", "DE.Views.DateTimeDialog.txtTitle": "Fecha y hora", "DE.Views.DocumentHolder.aboveText": "Encima", - "DE.Views.DocumentHolder.addCommentText": "Añadir comentario", + "DE.Views.DocumentHolder.addCommentText": "Agregar comentario", "DE.Views.DocumentHolder.advancedDropCapText": "Configuración de Capitalización", "DE.Views.DocumentHolder.advancedFrameText": "Ajustes avanzados de marco", "DE.Views.DocumentHolder.advancedParagraphText": "Ajustes avanzados de párrafo", @@ -1535,16 +1535,16 @@ "DE.Views.DocumentHolder.tipMarkersFSquare": "Viñetas cuadradas rellenas", "DE.Views.DocumentHolder.tipMarkersHRound": "Viñetas redondas huecas", "DE.Views.DocumentHolder.tipMarkersStar": "Viñetas de estrella", - "DE.Views.DocumentHolder.toDictionaryText": "Añadir al diccionario", - "DE.Views.DocumentHolder.txtAddBottom": "Añadir borde inferior", - "DE.Views.DocumentHolder.txtAddFractionBar": "Añadir barra de fracción", - "DE.Views.DocumentHolder.txtAddHor": "Añadir línea horizontal", - "DE.Views.DocumentHolder.txtAddLB": "Añadir línea inferior izquierda", - "DE.Views.DocumentHolder.txtAddLeft": "Añadir borde izquierdo", - "DE.Views.DocumentHolder.txtAddLT": "Añadir línea superior izquierda", - "DE.Views.DocumentHolder.txtAddRight": "Añadir borde derecho", - "DE.Views.DocumentHolder.txtAddTop": "Añadir borde superior", - "DE.Views.DocumentHolder.txtAddVer": "Añadir línea vertical", + "DE.Views.DocumentHolder.toDictionaryText": "Agregar al diccionario", + "DE.Views.DocumentHolder.txtAddBottom": "Agregar borde inferior", + "DE.Views.DocumentHolder.txtAddFractionBar": "Agregar barra de fracción", + "DE.Views.DocumentHolder.txtAddHor": "Agregar línea horizontal", + "DE.Views.DocumentHolder.txtAddLB": "Agregar línea inferior izquierda", + "DE.Views.DocumentHolder.txtAddLeft": "Agregar borde izquierdo", + "DE.Views.DocumentHolder.txtAddLT": "Agregar línea superior izquierda", + "DE.Views.DocumentHolder.txtAddRight": "Agregar borde derecho", + "DE.Views.DocumentHolder.txtAddTop": "Agregar borde superior", + "DE.Views.DocumentHolder.txtAddVer": "Agregar línea vertical", "DE.Views.DocumentHolder.txtAlignToChar": "Alinear a carácter", "DE.Views.DocumentHolder.txtBehind": "Detrás del texto", "DE.Views.DocumentHolder.txtBorderProps": "Propiedades de borde", @@ -1697,8 +1697,8 @@ "DE.Views.FileMenuPanels.CreateNew.txtBlank": "Documento en blanco", "DE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Crear nuevo", "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Aplicar", - "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Añadir autor", - "DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Añadir texto", + "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Agregar autor", + "DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Agregar texto", "DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Aplicación", "DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor", "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Cambiar derechos de acceso", @@ -1729,7 +1729,7 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "La edición eliminará las firmas del documento.
¿Continuar?", "DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Este documento ha sido", "DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "Este documento necesita", - "DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Se han añadido firmas válidas al documento. El documento está protegido frente a la edición.", + "DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Se han agregado firmas válidas al documento. El documento está protegido contra a la edición.", "DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Algunas de las firmas digitales del documento no son válidas o no han podido ser verificadas. El documento está protegido frente a la edición.", "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Ver firmas", "DE.Views.FileMenuPanels.Settings.okButtonText": "Aplicar", @@ -1741,7 +1741,7 @@ "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Usted tendrá que aceptar los cambios antes de poder verlos", "DE.Views.FileMenuPanels.Settings.strFast": "rápido", "DE.Views.FileMenuPanels.Settings.strFontRender": "Hinting", - "DE.Views.FileMenuPanels.Settings.strForcesave": "Añadir la versión al almacenamiento después de hacer clic en Guardar o Ctrl+S", + "DE.Views.FileMenuPanels.Settings.strForcesave": "Agregar la versión al almacenamiento después de hacer clic en Guardar o Ctrl+S", "DE.Views.FileMenuPanels.Settings.strInputMode": "Activar jeroglíficos", "DE.Views.FileMenuPanels.Settings.strLiveComment": "Activar opción de demostración de comentarios", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Ajustes de macros", @@ -1824,7 +1824,7 @@ "DE.Views.FormSettings.textScale": "Cuándo escalar", "DE.Views.FormSettings.textSelectImage": "Seleccionar Imagen", "DE.Views.FormSettings.textTip": "Sugerencia", - "DE.Views.FormSettings.textTipAdd": "Añadir valor nuevo", + "DE.Views.FormSettings.textTipAdd": "Agregar valor nuevo", "DE.Views.FormSettings.textTipDelete": "Eliminar valor", "DE.Views.FormSettings.textTipDown": "Mover hacia abajo", "DE.Views.FormSettings.textTipUp": "Mover hacia arriba", @@ -1846,7 +1846,7 @@ "DE.Views.FormsTab.capBtnView": "Ver formulario", "DE.Views.FormsTab.textClear": "Borrar campos", "DE.Views.FormsTab.textClearFields": "Borrar todos los campos", - "DE.Views.FormsTab.textCreateForm": "Añada campos y cree un documento OFORM rellenable", + "DE.Views.FormsTab.textCreateForm": "Agregue campos y cree un documento OFORM rellenable", "DE.Views.FormsTab.textGotIt": "Entiendo", "DE.Views.FormsTab.textHighlight": "Ajustes de resaltado", "DE.Views.FormsTab.textNoHighlight": "No resaltar", @@ -2016,7 +2016,7 @@ "DE.Views.LeftMenu.txtLimit": "Limitar acceso", "DE.Views.LeftMenu.txtTrial": "MODO DE PRUEBA", "DE.Views.LeftMenu.txtTrialDev": "Modo de programador de prueba", - "DE.Views.LineNumbersDialog.textAddLineNumbering": "Añadir numeración de líneas", + "DE.Views.LineNumbersDialog.textAddLineNumbering": "Agregar numeración de líneas", "DE.Views.LineNumbersDialog.textApplyTo": "Aplicar cambios a", "DE.Views.LineNumbersDialog.textContinuous": "Contínuo", "DE.Views.LineNumbersDialog.textCountBy": "Contar por", @@ -2059,7 +2059,7 @@ "DE.Views.Links.tipContents": "Introducir tabla de contenidos", "DE.Views.Links.tipContentsUpdate": "Actualize la tabla de contenidos", "DE.Views.Links.tipCrossRef": "Insertar referencia cruzada", - "DE.Views.Links.tipInsertHyperlink": "Añadir hipervínculo", + "DE.Views.Links.tipInsertHyperlink": "Agregar hipervínculo", "DE.Views.Links.tipNotes": "Introducir o editar notas a pie de página", "DE.Views.Links.tipTableFigures": "Insertar tabla de ilustraciones", "DE.Views.Links.tipTableFiguresUpdate": "Actualizar tabla de ilustraciones", @@ -2099,7 +2099,7 @@ "DE.Views.MailMergeSettings.downloadMergeTitle": "Fusión", "DE.Views.MailMergeSettings.errorMailMergeSaveFile": "Error de fusión.", "DE.Views.MailMergeSettings.notcriticalErrorTitle": "Aviso", - "DE.Views.MailMergeSettings.textAddRecipients": "Primero añadir algunos destinatarios a la lista ", + "DE.Views.MailMergeSettings.textAddRecipients": "Primero, agregar algunos destinatarios a la lista ", "DE.Views.MailMergeSettings.textAll": "Todos registros", "DE.Views.MailMergeSettings.textCurrent": "Registro actual", "DE.Views.MailMergeSettings.textDataSource": "Fuente de datos", @@ -2119,7 +2119,7 @@ "DE.Views.MailMergeSettings.textPortal": "Guardar", "DE.Views.MailMergeSettings.textPreview": "Vista previa de resultados", "DE.Views.MailMergeSettings.textReadMore": "Más información", - "DE.Views.MailMergeSettings.textSendMsg": "Todos los mensajes de correo están listos y se enviarán en breve.
La velocidad de envío dependerá de su servicio de correo.
Usted puede continuar trabajando en el documento o cerrarlo. Una vez terminada la operación la notificación se enviará a su dirección de correo de registro.", + "DE.Views.MailMergeSettings.textSendMsg": "Todos los mensajes de correo están listos y se enviarán en breve.
La velocidad de envío dependerá de su servicio de correo.
Puede continuar trabajando en el documento o cerrarlo. Una vez terminada la operación la notificación se enviará a su dirección de correo de registro.", "DE.Views.MailMergeSettings.textTo": "a", "DE.Views.MailMergeSettings.txtFirst": "Primer campo", "DE.Views.MailMergeSettings.txtFromToError": "El valor \"De\" debe ser menor que \"A\"", @@ -2198,7 +2198,7 @@ "DE.Views.ParagraphSettings.strIndentsSpecial": "Especial", "DE.Views.ParagraphSettings.strLineHeight": "Espaciado de línea", "DE.Views.ParagraphSettings.strParagraphSpacing": "Espaciado de Párafo ", - "DE.Views.ParagraphSettings.strSomeParagraphSpace": "No añadir intervalo entre párrafos del mismo estilo", + "DE.Views.ParagraphSettings.strSomeParagraphSpace": "No agregue intervalos entre párrafos del mismo estilo", "DE.Views.ParagraphSettings.strSpacingAfter": "Después", "DE.Views.ParagraphSettings.strSpacingBefore": "Antes", "DE.Views.ParagraphSettings.textAdvanced": "Mostrar ajustes avanzados", @@ -2233,7 +2233,7 @@ "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Saltos de línea y Saltos de página", "DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Ubicación", "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Mayúsculas pequeñas", - "DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "No añada intervalos entre párrafos del mismo estilo", + "DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "No agregue intervalos entre párrafos del mismo estilo", "DE.Views.ParagraphSettingsAdvanced.strSpacing": "Espaciado", "DE.Views.ParagraphSettingsAdvanced.strStrike": "Tachado", "DE.Views.ParagraphSettingsAdvanced.strSubscript": "Subíndice", @@ -2337,7 +2337,7 @@ "DE.Views.ShapeSettings.textTexture": "De textura", "DE.Views.ShapeSettings.textTile": "Mosaico", "DE.Views.ShapeSettings.textWrap": "Ajuste de texto", - "DE.Views.ShapeSettings.tipAddGradientPoint": "Añadir punto de degradado", + "DE.Views.ShapeSettings.tipAddGradientPoint": "Agregar punto de degradado", "DE.Views.ShapeSettings.tipRemoveGradientPoint": "Eliminar punto de degradado", "DE.Views.ShapeSettings.txtBehind": "Detrás del texto", "DE.Views.ShapeSettings.txtBrownPaper": "Papel marrón", @@ -2372,7 +2372,7 @@ "DE.Views.SignatureSettings.txtEditWarning": "La edición eliminará las firmas del documento.
¿Continuar?", "DE.Views.SignatureSettings.txtRemoveWarning": "¿Desea eliminar esta firma?
No se puede deshacer.", "DE.Views.SignatureSettings.txtRequestedSignatures": "Este documento necesita", - "DE.Views.SignatureSettings.txtSigned": "Se han añadido firmas válidas al documento. El documento está protegido frente a la edición.", + "DE.Views.SignatureSettings.txtSigned": "Se han agregado firmas válidas al documento. El documento está protegido contra a la edición.", "DE.Views.SignatureSettings.txtSignedInvalid": "Algunas de las firmas digitales del documento no son válidas o no han podido ser verificadas. El documento está protegido frente a la edición.", "DE.Views.Statusbar.goToPageText": "Ir a página", "DE.Views.Statusbar.pageIndexText": "Página {0} de {1}", @@ -2440,7 +2440,7 @@ "DE.Views.TableSettings.splitCellsText": "Dividir celda...", "DE.Views.TableSettings.splitCellTitleText": "Dividir celda", "DE.Views.TableSettings.strRepeatRow": "Repetir como una fila de encabezado en la parte superior de cada página", - "DE.Views.TableSettings.textAddFormula": "Añadir fórmula", + "DE.Views.TableSettings.textAddFormula": "Agregar fórmula", "DE.Views.TableSettings.textAdvanced": "Mostrar ajustes avanzados", "DE.Views.TableSettings.textBackColor": "Color de fondo", "DE.Views.TableSettings.textBanded": "Con bandas", @@ -2581,7 +2581,7 @@ "DE.Views.TextArtSettings.textStyle": "Estilo", "DE.Views.TextArtSettings.textTemplate": "Plantilla", "DE.Views.TextArtSettings.textTransform": "Transformar", - "DE.Views.TextArtSettings.tipAddGradientPoint": "Añadir punto de degradado", + "DE.Views.TextArtSettings.tipAddGradientPoint": "Agregar punto de degradado", "DE.Views.TextArtSettings.tipRemoveGradientPoint": "Eliminar punto de degradado", "DE.Views.TextArtSettings.txtNoBorders": "Sin línea", "DE.Views.TextToTableDialog.textAutofit": "Autoajuste", @@ -2599,7 +2599,7 @@ "DE.Views.TextToTableDialog.textTitle": "Convertir texto en tabla", "DE.Views.TextToTableDialog.textWindow": "Autoajustar a la ventana", "DE.Views.TextToTableDialog.txtAutoText": "Auto", - "DE.Views.Toolbar.capBtnAddComment": "Añadir comentario", + "DE.Views.Toolbar.capBtnAddComment": "Agregar comentario", "DE.Views.Toolbar.capBtnBlankPage": "Página en blanco", "DE.Views.Toolbar.capBtnColumns": "Columnas", "DE.Views.Toolbar.capBtnComment": "Comentario", @@ -2685,7 +2685,7 @@ "DE.Views.Toolbar.textMarginsNormal": "Normal", "DE.Views.Toolbar.textMarginsUsNormal": "US Normal", "DE.Views.Toolbar.textMarginsWide": "Amplio", - "DE.Views.Toolbar.textNewColor": "Añadir nuevo color personalizado", + "DE.Views.Toolbar.textNewColor": "Agregar nuevo color personalizado", "DE.Views.Toolbar.textNextPage": "Página siguiente", "DE.Views.Toolbar.textNoHighlight": "No resaltar", "DE.Views.Toolbar.textNone": "Ningún", diff --git a/apps/documenteditor/main/locale/hu.json b/apps/documenteditor/main/locale/hu.json index 8f4107c9d..a181e63bc 100644 --- a/apps/documenteditor/main/locale/hu.json +++ b/apps/documenteditor/main/locale/hu.json @@ -168,6 +168,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Új", "Common.UI.ExtendedColorDialog.textRGBErr": "A megadott érték helytelen.
Kérjük, adjon meg egy számértéket 0 és 255 között.", "Common.UI.HSBColorPicker.textNoColor": "Nincs szín", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Jelszó elrejtése", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Jelszó megjelenítése", "Common.UI.SearchDialog.textHighlight": "Eredmények kiemelése", "Common.UI.SearchDialog.textMatchCase": "Kis-nagybetű érzékeny", "Common.UI.SearchDialog.textReplaceDef": "Írja be a helyettesítő szöveget", @@ -211,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Automatikus felsorolásos listák", "Common.Views.AutoCorrectDialog.textBy": "Által", "Common.Views.AutoCorrectDialog.textDelete": "Törlés", + "Common.Views.AutoCorrectDialog.textFLCells": "A táblázat celláinak első betűje nagybetű legyen", "Common.Views.AutoCorrectDialog.textFLSentence": "A mondatok nagy betűvel kezdődjenek", "Common.Views.AutoCorrectDialog.textHyperlink": "Internet és hálózati utak hiperhivatkozásokkal", "Common.Views.AutoCorrectDialog.textHyphens": "Kötőjelek (--) gondolatjellel (—)", @@ -236,12 +239,14 @@ "Common.Views.Comments.mniAuthorDesc": "Szerző (Z-A)", "Common.Views.Comments.mniDateAsc": "Legöregebb először", "Common.Views.Comments.mniDateDesc": "Legújabb először", + "Common.Views.Comments.mniFilterGroups": "Szűrés csoport szerint", "Common.Views.Comments.mniPositionAsc": "Felülről", "Common.Views.Comments.mniPositionDesc": "Alulról", "Common.Views.Comments.textAdd": "Hozzáad", "Common.Views.Comments.textAddComment": "Megjegyzés hozzáadása", "Common.Views.Comments.textAddCommentToDoc": "Megyjegyzés hozzáadása a dokumentumhoz", "Common.Views.Comments.textAddReply": "Válasz hozzáadása", + "Common.Views.Comments.textAll": "Összes", "Common.Views.Comments.textAnonym": "Vendég", "Common.Views.Comments.textCancel": "Mégsem", "Common.Views.Comments.textClose": "Bezár", @@ -255,6 +260,7 @@ "Common.Views.Comments.textResolve": "Felold", "Common.Views.Comments.textResolved": "Feloldott", "Common.Views.Comments.textSort": "Megjegyzések rendezése", + "Common.Views.Comments.textViewResolved": "Nincs engedélye a megjegyzés újranyitásához", "Common.Views.CopyWarningDialog.textDontShow": "Ne mutassa újra ezt az üzenetet", "Common.Views.CopyWarningDialog.textMsg": "A szerkesztés eszköztár gombjaival és a helyi menüvel végzett másolás, kivágás és beillesztés műveletek csak a szerkesztő oldalon használhatóak.

A szerkesztő lapon kívüli alkalmazásokba való másoláshoz vagy beillesztéshez az alábbi billentyűzetkombinációkat használja:", "Common.Views.CopyWarningDialog.textTitle": "Másolás, kivágás és beillesztés", @@ -431,6 +437,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Ismét megnyit", "Common.Views.ReviewPopover.textReply": "Ismétel", "Common.Views.ReviewPopover.textResolve": "Resolve", + "Common.Views.ReviewPopover.textViewResolved": "Nincs engedélye a megjegyzés újranyitásához", "Common.Views.ReviewPopover.txtAccept": "Elfogad", "Common.Views.ReviewPopover.txtDeleteTip": "Törlés", "Common.Views.ReviewPopover.txtEditTip": "Szerkesztés", @@ -602,6 +609,7 @@ "DE.Controllers.Main.textLongName": "Írjon be egy 128 karakternél rövidebb nevet.", "DE.Controllers.Main.textNoLicenseTitle": "Elérte a licenckorlátot", "DE.Controllers.Main.textPaidFeature": "Fizetett funkció", + "DE.Controllers.Main.textReconnect": "A kapcsolat helyreállt", "DE.Controllers.Main.textRemember": "Emlékezzen a választásomra minden fájlhoz", "DE.Controllers.Main.textRenameError": "A felhasználónév nem lehet üres.", "DE.Controllers.Main.textRenameLabel": "Adjon meg egy nevet az együttműködéshez", @@ -879,6 +887,7 @@ "DE.Controllers.Main.warnProcessRightsChange": "Nincs joga szerkeszteni a fájl-t.", "DE.Controllers.Navigation.txtBeginning": "Dokumentum eleje", "DE.Controllers.Navigation.txtGotoBeginning": "Ugorj a dokumentum elejére", + "DE.Controllers.Statusbar.textDisconnect": "A kapcsolat megszakadt
Probálkoás a kapcsolat létrehozására. Kérjük, ellenőrizze a csatlakozási beállításokat.", "DE.Controllers.Statusbar.textHasChanges": "Új módosítások történtek", "DE.Controllers.Statusbar.textSetTrackChanges": "Változások követése módban van", "DE.Controllers.Statusbar.textTrackChanges": "A dokumentum megnyitása Módosítások követése módban", @@ -902,10 +911,22 @@ "DE.Controllers.Toolbar.textMatrix": "Mátrixok", "DE.Controllers.Toolbar.textOperator": "Operátorok", "DE.Controllers.Toolbar.textRadical": "Gyökvonás", + "DE.Controllers.Toolbar.textRecentlyUsed": "Mostanában használt", "DE.Controllers.Toolbar.textScript": "Scripts", "DE.Controllers.Toolbar.textSymbols": "Szimbólumok", "DE.Controllers.Toolbar.textTabForms": "Űrlapok", "DE.Controllers.Toolbar.textWarning": "Figyelmeztetés", + "DE.Controllers.Toolbar.tipMarkersArrow": "Nyíl felsorolásjelek", + "DE.Controllers.Toolbar.tipMarkersCheckmark": "Jelölőnégyzet felsorolásjelek", + "DE.Controllers.Toolbar.tipMarkersDash": "Kötőjel felsorolásjelek", + "DE.Controllers.Toolbar.tipMarkersFRhombus": "Tömör rombusz felsorolásjelek", + "DE.Controllers.Toolbar.tipMarkersFRound": "Tömör kör felsorolásjelek", + "DE.Controllers.Toolbar.tipMarkersFSquare": "Tömör szögletes felsorolásjelek", + "DE.Controllers.Toolbar.tipMarkersHRound": "Üreges kör felsorolásjelek", + "DE.Controllers.Toolbar.tipMarkersStar": "Csillag felsorolásjelek", + "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Többszintű számozott felsorolásjelek", + "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Többszintű szimbólum felsorolásjelek", + "DE.Controllers.Toolbar.tipMultiLevelVarious": "Többszintű különféle számozott felsorolásjelek", "DE.Controllers.Toolbar.txtAccent_Accent": "Akut", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Jobbra-balra nyíl fent", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Balra mutató nyíl fent", @@ -1281,9 +1302,9 @@ "DE.Views.ChartSettings.textUndock": "Eltávolít a panelről", "DE.Views.ChartSettings.textWidth": "Szélesség", "DE.Views.ChartSettings.textWrap": "Tördelés stílus", - "DE.Views.ChartSettings.txtBehind": "Mögött", - "DE.Views.ChartSettings.txtInFront": "Elött", - "DE.Views.ChartSettings.txtInline": "Sorban", + "DE.Views.ChartSettings.txtBehind": "Szöveg mögött", + "DE.Views.ChartSettings.txtInFront": "Szöveg előtt", + "DE.Views.ChartSettings.txtInline": "Szöveggel egy sorban", "DE.Views.ChartSettings.txtSquare": "Négyszögben", "DE.Views.ChartSettings.txtThrough": "Körbefutva", "DE.Views.ChartSettings.txtTight": "Szűken", @@ -1457,6 +1478,7 @@ "DE.Views.DocumentHolder.textDistributeCols": "Hasábok elosztása", "DE.Views.DocumentHolder.textDistributeRows": "Sorok elosztása", "DE.Views.DocumentHolder.textEditControls": "Tartalomkezelő beállításai", + "DE.Views.DocumentHolder.textEditPoints": "Pontok Szerkesztése", "DE.Views.DocumentHolder.textEditWrapBoundary": "Tördelés határ szerkesztése", "DE.Views.DocumentHolder.textFlipH": "Vízszintesen tükröz", "DE.Views.DocumentHolder.textFlipV": "Függőlegesen tükröz", @@ -1505,6 +1527,14 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Tartalomjegyzék frissítése", "DE.Views.DocumentHolder.textWrap": "Tördelés stílus", "DE.Views.DocumentHolder.tipIsLocked": "Ezt az elemet jelenleg egy másik felhasználó szerkeszti.", + "DE.Views.DocumentHolder.tipMarkersArrow": "Nyíl felsorolásjelek", + "DE.Views.DocumentHolder.tipMarkersCheckmark": "Jelölőnégyzet felsorolásjelek", + "DE.Views.DocumentHolder.tipMarkersDash": "Kötőjel felsorolásjelek", + "DE.Views.DocumentHolder.tipMarkersFRhombus": "Tömör rombusz felsorolásjelek", + "DE.Views.DocumentHolder.tipMarkersFRound": "Tömör kör felsorolásjelek", + "DE.Views.DocumentHolder.tipMarkersFSquare": "Tömör szögletes felsorolásjelek", + "DE.Views.DocumentHolder.tipMarkersHRound": "Üreges kör felsorolásjelek", + "DE.Views.DocumentHolder.tipMarkersStar": "Csillag felsorolásjelek", "DE.Views.DocumentHolder.toDictionaryText": "Hozzáadás a szótárhoz", "DE.Views.DocumentHolder.txtAddBottom": "Alsó szegély hozzáadása", "DE.Views.DocumentHolder.txtAddFractionBar": "Törtjel hozzáadása", @@ -1516,7 +1546,7 @@ "DE.Views.DocumentHolder.txtAddTop": "Felső szegély hozzáadása", "DE.Views.DocumentHolder.txtAddVer": "Vízszintes vonal hozzáadása", "DE.Views.DocumentHolder.txtAlignToChar": "Karakterhez rendez", - "DE.Views.DocumentHolder.txtBehind": "Mögött", + "DE.Views.DocumentHolder.txtBehind": "Szöveg mögött", "DE.Views.DocumentHolder.txtBorderProps": "Szegély beállítások", "DE.Views.DocumentHolder.txtBottom": "Alsó", "DE.Views.DocumentHolder.txtColumnAlign": "Hasáb elrendezése", @@ -1552,8 +1582,8 @@ "DE.Views.DocumentHolder.txtHideTopLimit": "Felső limit elrejtése", "DE.Views.DocumentHolder.txtHideVer": "Függőleges vonal elrejtése", "DE.Views.DocumentHolder.txtIncreaseArg": "Argumentum méret növelése", - "DE.Views.DocumentHolder.txtInFront": "Elött", - "DE.Views.DocumentHolder.txtInline": "Sorban", + "DE.Views.DocumentHolder.txtInFront": "Szöveg előtt", + "DE.Views.DocumentHolder.txtInline": "Szöveggel egy sorban", "DE.Views.DocumentHolder.txtInsertArgAfter": "Adjon meg az argumentumot utána", "DE.Views.DocumentHolder.txtInsertArgBefore": "Adjon meg az argumentumot előtte", "DE.Views.DocumentHolder.txtInsertBreak": "Törés beszúrása", @@ -1871,6 +1901,7 @@ "DE.Views.ImageSettings.textCrop": "Levág", "DE.Views.ImageSettings.textCropFill": "Kitölt", "DE.Views.ImageSettings.textCropFit": "Illeszt", + "DE.Views.ImageSettings.textCropToShape": "Formára vágás", "DE.Views.ImageSettings.textEdit": "Szerkeszt", "DE.Views.ImageSettings.textEditObject": "Objektum szerkesztése", "DE.Views.ImageSettings.textFitMargins": "Margóhoz igazít", @@ -1885,14 +1916,15 @@ "DE.Views.ImageSettings.textHintFlipV": "Függőlegesen tükröz", "DE.Views.ImageSettings.textInsert": "Képet cserél", "DE.Views.ImageSettings.textOriginalSize": "Valódi méret", + "DE.Views.ImageSettings.textRecentlyUsed": "Mostanában használt", "DE.Views.ImageSettings.textRotate90": "Elforgat 90 fokkal", "DE.Views.ImageSettings.textRotation": "Forgatás", "DE.Views.ImageSettings.textSize": "Méret", "DE.Views.ImageSettings.textWidth": "Szélesség", "DE.Views.ImageSettings.textWrap": "Tördelés stílus", - "DE.Views.ImageSettings.txtBehind": "Mögött", - "DE.Views.ImageSettings.txtInFront": "Elött", - "DE.Views.ImageSettings.txtInline": "Sorban", + "DE.Views.ImageSettings.txtBehind": "Szöveg mögött", + "DE.Views.ImageSettings.txtInFront": "Szöveg előtt", + "DE.Views.ImageSettings.txtInline": "Szöveggel egy sorban", "DE.Views.ImageSettings.txtSquare": "Négyszögben", "DE.Views.ImageSettings.txtThrough": "Körbefutva", "DE.Views.ImageSettings.txtTight": "Szűken", @@ -1965,9 +1997,9 @@ "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Súlyok és nyilak", "DE.Views.ImageSettingsAdvanced.textWidth": "Szélesség", "DE.Views.ImageSettingsAdvanced.textWrap": "Tördelés stílus", - "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Mögött", - "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Elött", - "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "Sorban", + "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Szöveg mögött", + "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Szöveg előtt", + "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "Szöveggel egy sorban", "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Négyszögben", "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Körbefutva", "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Szűken", @@ -2155,6 +2187,11 @@ "DE.Views.PageSizeDialog.textTitle": "Lap méret", "DE.Views.PageSizeDialog.textWidth": "Szélesség", "DE.Views.PageSizeDialog.txtCustom": "Egyéni", + "DE.Views.PageThumbnails.textClosePanel": "Az oldal miniatűreinek bezárása", + "DE.Views.PageThumbnails.textHighlightVisiblePart": "Jelölje ki az oldal látható részét", + "DE.Views.PageThumbnails.textPageThumbnails": "Oldal miniatűrök", + "DE.Views.PageThumbnails.textThumbnailsSettings": "Miniatűr beállítások", + "DE.Views.PageThumbnails.textThumbnailsSize": "Miniatűr mérete", "DE.Views.ParagraphSettings.strIndent": "Behúzások", "DE.Views.ParagraphSettings.strIndentsLeftText": "Bal", "DE.Views.ParagraphSettings.strIndentsRightText": "Jobb", @@ -2290,6 +2327,7 @@ "DE.Views.ShapeSettings.textPatternFill": "Minta", "DE.Views.ShapeSettings.textPosition": "Pozíció", "DE.Views.ShapeSettings.textRadial": "Sugárirányú", + "DE.Views.ShapeSettings.textRecentlyUsed": "Mostanában használt", "DE.Views.ShapeSettings.textRotate90": "Elforgat 90 fokkal", "DE.Views.ShapeSettings.textRotation": "Forgatás", "DE.Views.ShapeSettings.textSelectImage": "Kép kiválasztása", @@ -2301,7 +2339,7 @@ "DE.Views.ShapeSettings.textWrap": "Tördelés stílus", "DE.Views.ShapeSettings.tipAddGradientPoint": "Színátmenet pont hozzáadása", "DE.Views.ShapeSettings.tipRemoveGradientPoint": "Színátmenet pont eltávolítása", - "DE.Views.ShapeSettings.txtBehind": "Mögött", + "DE.Views.ShapeSettings.txtBehind": "Szöveg mögött", "DE.Views.ShapeSettings.txtBrownPaper": "Barna papír", "DE.Views.ShapeSettings.txtCanvas": "Vászon", "DE.Views.ShapeSettings.txtCarton": "Karton", @@ -2309,8 +2347,8 @@ "DE.Views.ShapeSettings.txtGrain": "Szemcse", "DE.Views.ShapeSettings.txtGranite": "Gránit", "DE.Views.ShapeSettings.txtGreyPaper": "Szürke papír", - "DE.Views.ShapeSettings.txtInFront": "Elött", - "DE.Views.ShapeSettings.txtInline": "Sorban", + "DE.Views.ShapeSettings.txtInFront": "Szöveg előtt", + "DE.Views.ShapeSettings.txtInline": "Szöveggel egy sorban", "DE.Views.ShapeSettings.txtKnit": "Kötött", "DE.Views.ShapeSettings.txtLeather": "Bőr", "DE.Views.ShapeSettings.txtNoBorders": "Nincs vonal", @@ -2570,7 +2608,7 @@ "DE.Views.Toolbar.capBtnInsControls": "Tartalomkezelők", "DE.Views.Toolbar.capBtnInsDropcap": "Iniciálé", "DE.Views.Toolbar.capBtnInsEquation": "Egyenlet", - "DE.Views.Toolbar.capBtnInsHeader": "Fejléc/Lábléc", + "DE.Views.Toolbar.capBtnInsHeader": "Fejléc & Lábléc", "DE.Views.Toolbar.capBtnInsImage": "Kép", "DE.Views.Toolbar.capBtnInsPagebreak": "Szünetek", "DE.Views.Toolbar.capBtnInsShape": "Alakzat", @@ -2681,6 +2719,7 @@ "DE.Views.Toolbar.textTabLinks": "Referenciák", "DE.Views.Toolbar.textTabProtect": "Védelem", "DE.Views.Toolbar.textTabReview": "Összefoglaló", + "DE.Views.Toolbar.textTabView": "Megtekintés", "DE.Views.Toolbar.textTitleError": "Hiba", "DE.Views.Toolbar.textToCurrent": "A jelenlegi pozíció", "DE.Views.Toolbar.textTop": "Felső:", @@ -2772,6 +2811,15 @@ "DE.Views.Toolbar.txtScheme7": "Érték", "DE.Views.Toolbar.txtScheme8": "Flow", "DE.Views.Toolbar.txtScheme9": "Öntöde", + "DE.Views.ViewTab.textAlwaysShowToolbar": "Mindig mutasd az eszköztárat", + "DE.Views.ViewTab.textDarkDocument": "Sötét dokumentum", + "DE.Views.ViewTab.textFitToPage": "Oldalhoz igazít", + "DE.Views.ViewTab.textFitToWidth": "Szélességhez igazít", + "DE.Views.ViewTab.textInterfaceTheme": "Felhasználói felület témája", + "DE.Views.ViewTab.textNavigation": "Navigáció", + "DE.Views.ViewTab.textRulers": "Vonalzók", + "DE.Views.ViewTab.textStatusBar": "Állapotsor", + "DE.Views.ViewTab.textZoom": "Zoom", "DE.Views.WatermarkSettingsDialog.textAuto": "Auto", "DE.Views.WatermarkSettingsDialog.textBold": "Félkövér", "DE.Views.WatermarkSettingsDialog.textColor": "Szöveg színe", diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json index 7b1687599..93234a406 100644 --- a/apps/documenteditor/main/locale/ja.json +++ b/apps/documenteditor/main/locale/ja.json @@ -1667,7 +1667,7 @@ "DE.Views.FileMenu.btnBackCaption": "ファイルのURLを開く", "DE.Views.FileMenu.btnCloseMenuCaption": "(←戻る)", "DE.Views.FileMenu.btnCreateNewCaption": "新規作成", - "DE.Views.FileMenu.btnDownloadCaption": "としてダウンロード", + "DE.Views.FileMenu.btnDownloadCaption": "名前を付けてダウンロード", "DE.Views.FileMenu.btnExitCaption": "終了", "DE.Views.FileMenu.btnFileOpenCaption": "開く", "DE.Views.FileMenu.btnHelpCaption": "ヘルプ...", diff --git a/apps/documenteditor/main/locale/lo.json b/apps/documenteditor/main/locale/lo.json index 24da2d07d..838e7c627 100644 --- a/apps/documenteditor/main/locale/lo.json +++ b/apps/documenteditor/main/locale/lo.json @@ -1205,6 +1205,7 @@ "DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "DE.Controllers.Viewport.textFitPage": "ພໍດີຂອບ", "DE.Controllers.Viewport.textFitWidth": "ຄວາມກວ້າງພໍດີ", + "DE.Controllers.Viewport.txtDarkMode": "ໂໝດສີດຳ(ໂໝດສະບາຍຕາ)", "DE.Views.AddNewCaptionLabelDialog.textLabel": "ສະຫຼາກ:", "DE.Views.AddNewCaptionLabelDialog.textLabelError": "ສະຫຼາກຕ້ອງບໍ່ຫວ່າງເປົ່າ", "DE.Views.BookmarksDialog.textAdd": "ເພີ່ມ", @@ -1692,7 +1693,7 @@ "DE.Views.FileMenuPanels.Settings.strShowChanges": "ການແກ້່ໄຂຮ່ວມກັນແບບ ReaL time", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "ເປີດຕົວເລືອກການກວດສອບການສະກົດຄໍາ", "DE.Views.FileMenuPanels.Settings.strStrict": "ເຂັ້ມງວດ, ໂຕເຂັ້ມ", - "DE.Views.FileMenuPanels.Settings.strTheme": "้ຫນ້າຕາຂອງ theme", + "DE.Views.FileMenuPanels.Settings.strTheme": "้ຮູບແບບການສະແດງຜົນ", "DE.Views.FileMenuPanels.Settings.strUnit": "ຫົວຫນ່ວຍວັດແທກ (ນີ້ວ)", "DE.Views.FileMenuPanels.Settings.strZoom": "ຄ່າຂະຫຍາຍເລີ່ມຕົ້ມ", "DE.Views.FileMenuPanels.Settings.text10Minutes": "ທຸກໆ10ນາທີ", @@ -1783,6 +1784,7 @@ "DE.Views.FormsTab.tipNextForm": "ໄປທີ່ຟິວທັດໄປ", "DE.Views.FormsTab.tipPrevForm": "ໄປທີ່ຟິວກ່ອນຫນ້າ", "DE.Views.FormsTab.tipRadioBox": "ເພີ່ມປູ່ມວົງມົນ", + "DE.Views.FormsTab.tipSaveForm": "ບັນທືກເປັນໄຟລ໌ເອກະສານ OFORM ທີ່ສາມາດແກ້ໄຂໄດ້", "DE.Views.FormsTab.tipSubmit": "ສົ່ງອອກແບບຟອມ", "DE.Views.FormsTab.tipTextField": "ເພີ່ມຂໍ້ຄວາມໃນຊ່ອງ", "DE.Views.FormsTab.tipViewForm": "ຕື່ມຈາກໂໝດ", @@ -2720,6 +2722,7 @@ "DE.Views.Toolbar.txtScheme7": "ຄວາມເທົ່າທຽມກັນ", "DE.Views.Toolbar.txtScheme8": "ຂະບວນການ", "DE.Views.Toolbar.txtScheme9": "ໂຮງຫລໍ່", + "DE.Views.ViewTab.textInterfaceTheme": "ຮູບແບບການສະແດງຜົນ", "DE.Views.WatermarkSettingsDialog.textAuto": "ອັດຕະໂນມັດ", "DE.Views.WatermarkSettingsDialog.textBold": "ໂຕເຂັມ ", "DE.Views.WatermarkSettingsDialog.textColor": "ສີຂໍ້ຄວາມ", diff --git a/apps/documenteditor/main/locale/sv.json b/apps/documenteditor/main/locale/sv.json index cdfb054d5..95e4c597e 100644 --- a/apps/documenteditor/main/locale/sv.json +++ b/apps/documenteditor/main/locale/sv.json @@ -35,7 +35,7 @@ "Common.Controllers.ReviewChanges.textIndentRight": "Indrag höger", "Common.Controllers.ReviewChanges.textInserted": "Infogad:", "Common.Controllers.ReviewChanges.textItalic": "Kursiv", - "Common.Controllers.ReviewChanges.textJustify": "Justera", + "Common.Controllers.ReviewChanges.textJustify": "Justera är motiverat", "Common.Controllers.ReviewChanges.textKeepLines": "Håll ihop rader", "Common.Controllers.ReviewChanges.textKeepNext": "Behåll med nästa", "Common.Controllers.ReviewChanges.textLeft": "Vänsterjustera", @@ -124,6 +124,8 @@ "Common.Translation.warnFileLocked": "Du kan inte redigera den här filen eftersom den redigeras i en annan app.", "Common.Translation.warnFileLockedBtnEdit": "Skapa en kopia", "Common.Translation.warnFileLockedBtnView": "Öppna skrivskyddad", + "Common.UI.ButtonColored.textAutoColor": "Automatisk", + "Common.UI.ButtonColored.textNewColor": "Lägg till en ny anpassad färg", "Common.UI.Calendar.textApril": "April", "Common.UI.Calendar.textAugust": "Augusti", "Common.UI.Calendar.textDecember": "December", @@ -166,6 +168,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Ny", "Common.UI.ExtendedColorDialog.textRGBErr": "Det angivna värdet är inkorrekt.
Vänligen ange ett numeriskt värde mellan 0 och 255", "Common.UI.HSBColorPicker.textNoColor": "Ingen färg", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Dölj lösenord", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Visa lösenord", "Common.UI.SearchDialog.textHighlight": "Markera resultat", "Common.UI.SearchDialog.textMatchCase": "Skiftkänslig", "Common.UI.SearchDialog.textReplaceDef": "Skriv in ersättningstext", @@ -204,12 +208,14 @@ "Common.Views.About.txtVersion": "Version", "Common.Views.AutoCorrectDialog.textAdd": "Lägg till", "Common.Views.AutoCorrectDialog.textApplyText": "Korrigera när du skriver", - "Common.Views.AutoCorrectDialog.textAutoCorrect": "Autokorrigering", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Autokorrigering av text", "Common.Views.AutoCorrectDialog.textAutoFormat": "Autoformat när du skriver", "Common.Views.AutoCorrectDialog.textBulleted": "Automatiska punktlistor", "Common.Views.AutoCorrectDialog.textBy": "Av", "Common.Views.AutoCorrectDialog.textDelete": "Radera", + "Common.Views.AutoCorrectDialog.textFLCells": "Sätt den första bokstaven i tabellcellerna till en versal", "Common.Views.AutoCorrectDialog.textFLSentence": "Stor bokstav varje mening", + "Common.Views.AutoCorrectDialog.textHyperlink": "Sökvägar för internet och nätverk med hyperlänk", "Common.Views.AutoCorrectDialog.textHyphens": "Bindestreck (--) med streck (—)", "Common.Views.AutoCorrectDialog.textMathCorrect": "Matematisk autokorrigering", "Common.Views.AutoCorrectDialog.textNumbered": "Automatiska nummerlistor", @@ -229,13 +235,22 @@ "Common.Views.AutoCorrectDialog.warnReset": "All autokorrigering som du lagt till kommer att tas bort och ändringar kommer att återställas till sina ursprungliga värden. Vill du fortsätta?", "Common.Views.AutoCorrectDialog.warnRestore": "Autokorrigeringen för %1 återställs till sitt ursprungliga värde. Vill du fortsätta?", "Common.Views.Chat.textSend": "Skicka", + "Common.Views.Comments.mniAuthorAsc": "Författare A till Ö", + "Common.Views.Comments.mniAuthorDesc": "Författare Ö till A", + "Common.Views.Comments.mniDateAsc": "Äldsta", + "Common.Views.Comments.mniDateDesc": "Nyaste", + "Common.Views.Comments.mniFilterGroups": "Filtrera via grupp", + "Common.Views.Comments.mniPositionAsc": "Från ovankant", + "Common.Views.Comments.mniPositionDesc": "Från nederkanten", "Common.Views.Comments.textAdd": "Lägg till", "Common.Views.Comments.textAddComment": "Lägg till kommentar", "Common.Views.Comments.textAddCommentToDoc": "Lägg till kommentar till dokumentet", "Common.Views.Comments.textAddReply": "Svara", + "Common.Views.Comments.textAll": "Alla", "Common.Views.Comments.textAnonym": "Gäst", "Common.Views.Comments.textCancel": "Avbryt", "Common.Views.Comments.textClose": "Stäng", + "Common.Views.Comments.textClosePanel": "Stäng kommentarer", "Common.Views.Comments.textComments": "Kommentarer", "Common.Views.Comments.textEdit": "Redigera", "Common.Views.Comments.textEnterCommentHint": "Skriv din kommentar här", @@ -244,6 +259,8 @@ "Common.Views.Comments.textReply": "Svara", "Common.Views.Comments.textResolve": "Lös", "Common.Views.Comments.textResolved": "Löst", + "Common.Views.Comments.textSort": "Sortera kommentarer", + "Common.Views.Comments.textViewResolved": "Du har inte behörighet att öppna kommentaren igen", "Common.Views.CopyWarningDialog.textDontShow": "Visa inte detta meddelande igen", "Common.Views.CopyWarningDialog.textMsg": "Kopiera, klipp ut och klistra åtgärder med hjälp av redaktör knapparna i verktygsfältet och snabbmeny åtgärder som ska utföras inom denna flik redaktör bara
vill kopiera eller klistra in eller från applikationer utanför fliken redaktör använda följande kortkommandon.:", "Common.Views.CopyWarningDialog.textTitle": "Kopiera, klipp ut och klistra in åtgärder", @@ -258,10 +275,10 @@ "Common.Views.ExternalMergeEditor.textClose": "Stäng", "Common.Views.ExternalMergeEditor.textSave": "Spara & avsluta", "Common.Views.ExternalMergeEditor.textTitle": "Slå ihop mottagare", - "Common.Views.Header.labelCoUsersDescr": "Dokumentet redigeras för närvarande av flera användare.", + "Common.Views.Header.labelCoUsersDescr": "Användare som redigera filen:", "Common.Views.Header.textAddFavorite": "Markera som favorit", "Common.Views.Header.textAdvSettings": "Avancerade inställningar", - "Common.Views.Header.textBack": "Gå till dokument", + "Common.Views.Header.textBack": "Öppna filens plats", "Common.Views.Header.textCompactView": "Dölj verktygsrad", "Common.Views.Header.textHideLines": "Dölj linjaler", "Common.Views.Header.textHideStatusBar": "Dölj statusrad", @@ -380,7 +397,9 @@ "Common.Views.ReviewChanges.txtFinalCap": "Slutlig", "Common.Views.ReviewChanges.txtHistory": "Versionshistorik", "Common.Views.ReviewChanges.txtMarkup": "Alla ändringar {0}", - "Common.Views.ReviewChanges.txtMarkupCap": "Markering", + "Common.Views.ReviewChanges.txtMarkupCap": "Markeringar och pratbubblor", + "Common.Views.ReviewChanges.txtMarkupSimple": "Alla ändringar {0}
Inga ballonger", + "Common.Views.ReviewChanges.txtMarkupSimpleCap": "Endast uppmärkning", "Common.Views.ReviewChanges.txtNext": "Nästa", "Common.Views.ReviewChanges.txtOff": "OFF för mig", "Common.Views.ReviewChanges.txtOffGlobal": "OFF för mig och alla", @@ -418,6 +437,11 @@ "Common.Views.ReviewPopover.textOpenAgain": "Öppna igen", "Common.Views.ReviewPopover.textReply": "Svara", "Common.Views.ReviewPopover.textResolve": "Lös", + "Common.Views.ReviewPopover.textViewResolved": "Du har inte behörighet att öppna kommentaren igen", + "Common.Views.ReviewPopover.txtAccept": "Godkänn", + "Common.Views.ReviewPopover.txtDeleteTip": "Radera", + "Common.Views.ReviewPopover.txtEditTip": "Redigera", + "Common.Views.ReviewPopover.txtReject": "Avvisa", "Common.Views.SaveAsDlg.textLoading": "Laddar", "Common.Views.SaveAsDlg.textTitle": "Mapp för att spara", "Common.Views.SelectFileDlg.textLoading": "Laddar", @@ -512,12 +536,13 @@ "DE.Controllers.Main.errorEditingDownloadas": "Ett fel har inträffat.
Använd \"Ladda ned som...\" för att spara en säkerhetskopia på din dator.", "DE.Controllers.Main.errorEditingSaveas": "Ett fel har inträffat.
Använd \"Ladda ned som...\" för att spara en säkerhetskopia på din dator.", "DE.Controllers.Main.errorEmailClient": "Ingen e-postklient kunde hittas.", - "DE.Controllers.Main.errorFilePassProtect": "Dokumentet är lösenordsskyddat och kunde inte öppnas. ", + "DE.Controllers.Main.errorFilePassProtect": "Filen är lösenordsskyddad och kan inte öppnas. ", "DE.Controllers.Main.errorFileSizeExceed": "Filstorleken överskrider gränsen för din server.
Var snäll och kontakta administratören för dokumentservern för mer information.", "DE.Controllers.Main.errorForceSave": "Ett fel uppstod när filen sparades. Använd alternativet \"Spara som\" för att spara filen till din lokala hårddisk eller försök igen senare.", "DE.Controllers.Main.errorKeyEncrypt": "Okänd nyckelbeskrivare", "DE.Controllers.Main.errorKeyExpire": "Nyckelns beskrivning har utgått", - "DE.Controllers.Main.errorMailMergeLoadFile": "Misslyckades att ladda", + "DE.Controllers.Main.errorLoadingFont": "Typsnittet är inte tillgängligt.
Vänligen kontakta dokumentserverns administratör.", + "DE.Controllers.Main.errorMailMergeLoadFile": "Misslyckades med att läsa in dokumentet. Vänligen välj en annan fil.", "DE.Controllers.Main.errorMailMergeSaveFile": "Ihopslagning misslyckades.", "DE.Controllers.Main.errorProcessSaveResult": "Sparar felaktig.", "DE.Controllers.Main.errorServerVersion": "Textredigerarens version har uppdaterats. Sidan kommer att laddas om för att verkställa ändringarna.", @@ -533,7 +558,7 @@ "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Internetanslutningen har återställts och filversionen har ändrats.
Innan du fortsätter arbeta, ladda ner filen eller kopiera innehållet för att försäkra dig om att inte förlora något, ladda sedan om denna sida.", "DE.Controllers.Main.errorUserDrop": "Filen kan inte nås för tillfället. ", "DE.Controllers.Main.errorUsersExceed": "Antalet användare som tillåts av licensen överskreds", - "DE.Controllers.Main.errorViewerDisconnect": "Anslutningen bryts. Du kan fortfarande se dokumentet
men kommer inte att kunna ladda ner eller skriva ut tills anslutningen är återställd.", + "DE.Controllers.Main.errorViewerDisconnect": "Anslutningen avbröts. Du kan fortfarande se dokumentet men du kommer inte att kunna ladda ner eller skriva ut det innan anslutningen är återställd och sidan har laddats om.", "DE.Controllers.Main.leavePageText": "Du har osparade ändringar i det här dokumentet. Klicka på \"Stanna på den här sidan\", sedan \"Spara\" för att spara dem. Klicka på \"Lämna den här sidan\" för att förkasta alla osparade ändringar.", "DE.Controllers.Main.leavePageTextOnClose": "Alla ändringar som inte sparats i detta dokument kommer att gå förlorade.
Klicka på \"Avbryt\" och sedan \"Spara\" för att spara dem. Klicka på \"OK\" för att kasta alla ändringar som inte sparats.", "DE.Controllers.Main.loadFontsTextText": "Laddar data...", @@ -549,7 +574,7 @@ "DE.Controllers.Main.mailMergeLoadFileText": "Laddar från datakälla...", "DE.Controllers.Main.mailMergeLoadFileTitle": "Laddar från datakälla", "DE.Controllers.Main.notcriticalErrorTitle": "Varning", - "DE.Controllers.Main.openErrorText": "Ett fel uppstod när filen skulle öppnas", + "DE.Controllers.Main.openErrorText": "Ett fel uppstod när filen öppnades.", "DE.Controllers.Main.openTextText": "Öppnar dokument...", "DE.Controllers.Main.openTitleText": "Öppna dokument", "DE.Controllers.Main.printTextText": "Skriver ut dokumentet...", @@ -557,7 +582,7 @@ "DE.Controllers.Main.reloadButtonText": "Ladda om sidan", "DE.Controllers.Main.requestEditFailedMessageText": "Någon annan redigerar detta dokument just nu. Försök igen senare.", "DE.Controllers.Main.requestEditFailedTitleText": "Ingen behörighet", - "DE.Controllers.Main.saveErrorText": "Ett fel uppstod när filen skulle sparas", + "DE.Controllers.Main.saveErrorText": "Ett fel uppstod när filen sparades.", "DE.Controllers.Main.saveErrorTextDesktop": "Den här filen kan inte sparas eller skapas.
Möjliga orsaker är:
1. Filen är skrivskyddad.
2. Filen redigeras av andra användare.
3. Disken är full eller skadad.", "DE.Controllers.Main.saveTextText": "Sparar dokument...", "DE.Controllers.Main.saveTitleText": "Sparar dokument", @@ -576,13 +601,15 @@ "DE.Controllers.Main.textContactUs": "Kontakta säljare", "DE.Controllers.Main.textConvertEquation": "Denna ekvation skapades med en gammal version av ekvationsredigeraren som inte längre stöds. Om du vill redigera den konverterar du ekvationen till Office Math ML-format.
Konvertera nu?", "DE.Controllers.Main.textCustomLoader": "Observera att enligt licensvillkoren har du inte rätt att byta laddaren.
Kontakta vår försäljningsavdelning för att få en offert.", + "DE.Controllers.Main.textDisconnect": "Anslutningen förlorades", "DE.Controllers.Main.textGuest": "Gäst", "DE.Controllers.Main.textHasMacros": "Filen innehåller automatiska makron.
Vill du köra makron?", "DE.Controllers.Main.textLearnMore": "Lär dig mer", "DE.Controllers.Main.textLoadingDocument": "Laddar dokument", "DE.Controllers.Main.textLongName": "Ange namn (max 128 tecken).", - "DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE anslutningsbegränsning", + "DE.Controllers.Main.textNoLicenseTitle": "Licensens gräns är nådd", "DE.Controllers.Main.textPaidFeature": "Betald funktion", + "DE.Controllers.Main.textReconnect": "Anslutningen återställdes", "DE.Controllers.Main.textRemember": "Kom ihåg mitt val för alla filer", "DE.Controllers.Main.textRenameError": "Användarnamn får inte var tomt.", "DE.Controllers.Main.textRenameLabel": "Ange namn för samarbete", @@ -624,7 +651,7 @@ "DE.Controllers.Main.txtMissOperator": "Saknad operator", "DE.Controllers.Main.txtNeedSynchronize": "Du har uppdateringar", "DE.Controllers.Main.txtNone": "ingen", - "DE.Controllers.Main.txtNoTableOfContents": "Inga innehållsförteckningar hittades.", + "DE.Controllers.Main.txtNoTableOfContents": "Det finns inga rubriker i dokumentet. Tillämpa en rubrikstil på texten så att den visas i innehållsförteckningen.", "DE.Controllers.Main.txtNoTableOfFigures": "Ingen tabell med siffror hittades.", "DE.Controllers.Main.txtNoText": "Fel! Ingen text med angiven stil i dokumentet.", "DE.Controllers.Main.txtNotInTable": "Är inte i tabellen", @@ -844,32 +871,35 @@ "DE.Controllers.Main.uploadDocSizeMessage": "Maximal gräns för dokumentstorlek har överskridits.", "DE.Controllers.Main.uploadImageExtMessage": "Okänt bildformat.", "DE.Controllers.Main.uploadImageFileCountMessage": "Inga bilder laddades upp.", - "DE.Controllers.Main.uploadImageSizeMessage": "Bilden är för stor", + "DE.Controllers.Main.uploadImageSizeMessage": "Bilden är för stor. Den maximala storleken är 25 MB.", "DE.Controllers.Main.uploadImageTextText": "Laddar upp bild...", "DE.Controllers.Main.uploadImageTitleText": "Laddar upp bild", "DE.Controllers.Main.waitText": "Vänta...", "DE.Controllers.Main.warnBrowserIE9": "Fungerar dåligt med Internet Explorer 9. Använd version 10 eller högre.", "DE.Controllers.Main.warnBrowserZoom": "Din webbläsares nuvarande zoominställningar stöds inte fullt ut. Återställ till standard zoom genom att trycka på Ctrl + 0.", - "DE.Controllers.Main.warnLicenseExceeded": "Antalet samtidiga anslutningar till dokumentservern har överskridits och dokumentet öppnas endast för visning.
Vänligen kontakta din systemadministratör för mer information.", + "DE.Controllers.Main.warnLicenseExceeded": "Gränsen är nådd för antalet %1 samtidiga anslutna redigerare. Dokumentet öppnas som skrivskyddat.
Kontakta administratören för mer information.", "DE.Controllers.Main.warnLicenseExp": "Din licens har gått ut.
Förnya din licens och uppdatera sidan.", "DE.Controllers.Main.warnLicenseLimitedNoAccess": "Licensen ogiltig.
Ingen access till redigeringsfunktioner.
Kontakta din administratör.", "DE.Controllers.Main.warnLicenseLimitedRenewed": "Licensen måste förnyas.
Endast begränsad funktionalitet.
Kontakta din administratör för full funktionalitet.", - "DE.Controllers.Main.warnLicenseUsersExceeded": "Antalet samtidiga användare har överskridits och dokumentet öppnas endast för visning.
Vänligen kontakta din systemadministratör för mer information.", - "DE.Controllers.Main.warnNoLicense": "Den här versionen av %1 har vissa begränsningar för samtidiga anslutningar till dokumentservern.
Om du behöver mer, överväg att köpa en kommersiell licens.", - "DE.Controllers.Main.warnNoLicenseUsers": "Den här versionen av %1 har vissa begränsningar för samtidiga användare.
Om du behöver mer, överväg att köpa en kommersiell licens.", + "DE.Controllers.Main.warnLicenseUsersExceeded": "Gränsen är nådd för antalet %1 redigerare.
Kontakta administratören för mer information.", + "DE.Controllers.Main.warnNoLicense": "Gränsen är nådd för antalet %1 samtidiga anslutna redigerare. Dokumentet öppnas som skrivskyddat.
Kontakta %1 försäljningsteamet för personliga uppgraderings villkor.", + "DE.Controllers.Main.warnNoLicenseUsers": "Gränsen är nådd för antalet %1 redigerare.
Kontakta %1 försäljningsteamet för personliga uppgraderings villkor.", "DE.Controllers.Main.warnProcessRightsChange": "Du har nekats rätten att redigera filen.", "DE.Controllers.Navigation.txtBeginning": "Början av dokumentet", "DE.Controllers.Navigation.txtGotoBeginning": "Gå till början av dokumentet", + "DE.Controllers.Statusbar.textDisconnect": "
Anslutningen förlorades

Försöker återansluta. Vänligen kontroller anslutningens inställningar.", "DE.Controllers.Statusbar.textHasChanges": "Nya ändringar har spårats", "DE.Controllers.Statusbar.textSetTrackChanges": "Du är i spårändringsläge", "DE.Controllers.Statusbar.textTrackChanges": "Dokumentet är öppnat med Spåra Ändringar läge aktiverat", "DE.Controllers.Statusbar.tipReview": "Spåra ändringar", "DE.Controllers.Statusbar.zoomText": "Zooma {0}%", "DE.Controllers.Toolbar.confirmAddFontName": "Teckensnittet du kommer att spara finns inte på den aktuella enheten.
Textstilen kommer att visas med ett av systemets teckensnitt, sparat teckensnitt kommer att användas när det är tillgängligt.
Vill du fortsätta?", + "DE.Controllers.Toolbar.dataUrl": "Klistra in en data-URL", "DE.Controllers.Toolbar.notcriticalErrorTitle": "Varning", "DE.Controllers.Toolbar.textAccent": "Accenter", "DE.Controllers.Toolbar.textBracket": "Parantes", "DE.Controllers.Toolbar.textEmptyImgUrl": "Du behöver ange en URL för bilden.", + "DE.Controllers.Toolbar.textEmptyMMergeUrl": "Du måste ange URL.", "DE.Controllers.Toolbar.textFontSizeErr": "Det angivna värdet är inkorrekt.
Vänligen ange ett numeriskt värde mellan 0 och 300", "DE.Controllers.Toolbar.textFraction": "Fraktioner", "DE.Controllers.Toolbar.textFunction": "Funktioner", @@ -881,10 +911,22 @@ "DE.Controllers.Toolbar.textMatrix": "Matriser", "DE.Controllers.Toolbar.textOperator": "Operatorer", "DE.Controllers.Toolbar.textRadical": "Radikaler", + "DE.Controllers.Toolbar.textRecentlyUsed": "Nyligen använda", "DE.Controllers.Toolbar.textScript": "Skript", "DE.Controllers.Toolbar.textSymbols": "Symboler", "DE.Controllers.Toolbar.textTabForms": "Formulär", "DE.Controllers.Toolbar.textWarning": "Varning", + "DE.Controllers.Toolbar.tipMarkersArrow": "Pil punkter", + "DE.Controllers.Toolbar.tipMarkersCheckmark": "Bock punkt", + "DE.Controllers.Toolbar.tipMarkersDash": "Sträck punkter", + "DE.Controllers.Toolbar.tipMarkersFRhombus": "Fyllda romb punkter", + "DE.Controllers.Toolbar.tipMarkersFRound": "Fyllda runda punkter", + "DE.Controllers.Toolbar.tipMarkersFSquare": "Fyllda kvadratiska punkter", + "DE.Controllers.Toolbar.tipMarkersHRound": "Ofylld rund punkt", + "DE.Controllers.Toolbar.tipMarkersStar": "Stjärn punkter", + "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Numrerade punkter på flera nivåer", + "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Symbol punkter på flera nivåer", + "DE.Controllers.Toolbar.tipMultiLevelVarious": "Olika numrerade punkter på flera nivåer", "DE.Controllers.Toolbar.txtAccent_Accent": "Akut", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Höger-vänster pil ovanför", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Vänsterpil ovan", @@ -1205,6 +1247,7 @@ "DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "DE.Controllers.Viewport.textFitPage": "Anpassa till sida", "DE.Controllers.Viewport.textFitWidth": "Anpassa till bredd", + "DE.Controllers.Viewport.txtDarkMode": "Mörkt läge", "DE.Views.AddNewCaptionLabelDialog.textLabel": "Etikett:", "DE.Views.AddNewCaptionLabelDialog.textLabelError": "Etiketten får inte vara tom.", "DE.Views.BookmarksDialog.textAdd": "Lägg till", @@ -1253,15 +1296,15 @@ "DE.Views.ChartSettings.textChartType": "Ändra diagramtyp", "DE.Views.ChartSettings.textEditData": "Redigera data", "DE.Views.ChartSettings.textHeight": "Höjd", - "DE.Views.ChartSettings.textOriginalSize": "Standardstorlek", + "DE.Views.ChartSettings.textOriginalSize": "Verklig storlek", "DE.Views.ChartSettings.textSize": "Storlek", "DE.Views.ChartSettings.textStyle": "Stil", "DE.Views.ChartSettings.textUndock": "Lossa från panelen", "DE.Views.ChartSettings.textWidth": "Bredd", "DE.Views.ChartSettings.textWrap": "Figursättning", - "DE.Views.ChartSettings.txtBehind": "Bakom", - "DE.Views.ChartSettings.txtInFront": "Längst fram", - "DE.Views.ChartSettings.txtInline": "Inom", + "DE.Views.ChartSettings.txtBehind": "Bakom text", + "DE.Views.ChartSettings.txtInFront": "Framför text", + "DE.Views.ChartSettings.txtInline": "I höjd med text", "DE.Views.ChartSettings.txtSquare": "Fyrkant", "DE.Views.ChartSettings.txtThrough": "Genom", "DE.Views.ChartSettings.txtTight": "Tät", @@ -1395,7 +1438,8 @@ "DE.Views.DocumentHolder.mergeCellsText": "Slå ihop celler", "DE.Views.DocumentHolder.moreText": "Flytta varianter...", "DE.Views.DocumentHolder.noSpellVariantsText": "Inga varianter", - "DE.Views.DocumentHolder.originalSizeText": "Standardstorlek", + "DE.Views.DocumentHolder.notcriticalErrorTitle": "Varning", + "DE.Views.DocumentHolder.originalSizeText": "Verklig storlek", "DE.Views.DocumentHolder.paragraphText": "Stycke", "DE.Views.DocumentHolder.removeHyperlinkText": "Ta bort länk", "DE.Views.DocumentHolder.rightText": "Höger", @@ -1434,6 +1478,7 @@ "DE.Views.DocumentHolder.textDistributeCols": "Distribuera kolumner", "DE.Views.DocumentHolder.textDistributeRows": "Distribuera rader", "DE.Views.DocumentHolder.textEditControls": "Inställningar för innehållskontroll", + "DE.Views.DocumentHolder.textEditPoints": "Redigerings punkt", "DE.Views.DocumentHolder.textEditWrapBoundary": "Redigera omtagets gränser", "DE.Views.DocumentHolder.textFlipH": "Vänd horisontellt", "DE.Views.DocumentHolder.textFlipV": "Vänd vertikalt", @@ -1482,6 +1527,14 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Uppdatera innehållsförteckningen", "DE.Views.DocumentHolder.textWrap": "Figursättning", "DE.Views.DocumentHolder.tipIsLocked": "Detta element redigeras för närvarande av en annan användare.", + "DE.Views.DocumentHolder.tipMarkersArrow": "Pil punkter", + "DE.Views.DocumentHolder.tipMarkersCheckmark": "Bock punkt", + "DE.Views.DocumentHolder.tipMarkersDash": "Sträck punkter", + "DE.Views.DocumentHolder.tipMarkersFRhombus": "Fyllda romb punkter", + "DE.Views.DocumentHolder.tipMarkersFRound": "Fyllda runda punkter", + "DE.Views.DocumentHolder.tipMarkersFSquare": "Fyllda kvadratiska punkter", + "DE.Views.DocumentHolder.tipMarkersHRound": "Ofylld runda punkter", + "DE.Views.DocumentHolder.tipMarkersStar": "Stjärnpunkter", "DE.Views.DocumentHolder.toDictionaryText": "Lägg till i ordlista", "DE.Views.DocumentHolder.txtAddBottom": "Lägg till nedre linje", "DE.Views.DocumentHolder.txtAddFractionBar": "Lägg fraktion bar", @@ -1493,7 +1546,7 @@ "DE.Views.DocumentHolder.txtAddTop": "Lägg till övre ram", "DE.Views.DocumentHolder.txtAddVer": "Lägg till horisontell linje", "DE.Views.DocumentHolder.txtAlignToChar": "Justera bredvid tecken", - "DE.Views.DocumentHolder.txtBehind": "Bakom", + "DE.Views.DocumentHolder.txtBehind": "Bakom text", "DE.Views.DocumentHolder.txtBorderProps": "Ramens egenskaper", "DE.Views.DocumentHolder.txtBottom": "Nederst", "DE.Views.DocumentHolder.txtColumnAlign": "Kolumn justering", @@ -1529,8 +1582,8 @@ "DE.Views.DocumentHolder.txtHideTopLimit": "Dölj övre gränsen", "DE.Views.DocumentHolder.txtHideVer": "Göm vertikal linje", "DE.Views.DocumentHolder.txtIncreaseArg": "Öka argumentets storlek", - "DE.Views.DocumentHolder.txtInFront": "Längst fram", - "DE.Views.DocumentHolder.txtInline": "Inom", + "DE.Views.DocumentHolder.txtInFront": "Framför text", + "DE.Views.DocumentHolder.txtInline": "I höjd med text", "DE.Views.DocumentHolder.txtInsertArgAfter": "Infoga argument efter", "DE.Views.DocumentHolder.txtInsertArgBefore": "Infoga argument före", "DE.Views.DocumentHolder.txtInsertBreak": "Infoga manuell brytning", @@ -1546,12 +1599,13 @@ "DE.Views.DocumentHolder.txtOverbar": "Linje ovanför text", "DE.Views.DocumentHolder.txtOverwriteCells": "Skriv över celler", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Behåll källformatering", - "DE.Views.DocumentHolder.txtPressLink": "Tryck CTRL och klicka på länken", + "DE.Views.DocumentHolder.txtPressLink": "Tryck på CTRL och klicka på länken", "DE.Views.DocumentHolder.txtPrintSelection": "Skriv ut markering", "DE.Views.DocumentHolder.txtRemFractionBar": "Ta bort fraktionslinje", "DE.Views.DocumentHolder.txtRemLimit": "Ta bort begränsning", "DE.Views.DocumentHolder.txtRemoveAccentChar": "Ta bort tecken med accenter", "DE.Views.DocumentHolder.txtRemoveBar": "Ta bort linje", + "DE.Views.DocumentHolder.txtRemoveWarning": "Vill du ta bort den här signaturen?
Åtgärden kan inte ångras.", "DE.Views.DocumentHolder.txtRemScripts": "Ta bort script", "DE.Views.DocumentHolder.txtRemSubscript": "Ta bort nedsänkt", "DE.Views.DocumentHolder.txtRemSuperscript": "Ta bort upphöjt", @@ -1571,6 +1625,7 @@ "DE.Views.DocumentHolder.txtTopAndBottom": "Övre och nedre", "DE.Views.DocumentHolder.txtUnderbar": "Linje under text", "DE.Views.DocumentHolder.txtUngroup": "Dela upp", + "DE.Views.DocumentHolder.txtWarnUrl": "Att klicka på denna länk kan skada din utrustning och dess innehåll.
Är du säker på att du vill fortsätta?", "DE.Views.DocumentHolder.updateStyleText": "Uppdatera %1 stilen", "DE.Views.DocumentHolder.vertAlignText": "Vertikal anpassning", "DE.Views.DropcapSettingsAdvanced.strBorders": "Ram & fyllning", @@ -1618,10 +1673,12 @@ "DE.Views.EditListItemDialog.textNameError": "Visningsnamn får inte vara", "DE.Views.EditListItemDialog.textValue": "Värde", "DE.Views.EditListItemDialog.textValueError": "Det finns redan ett objekt med samma värde.", - "DE.Views.FileMenu.btnBackCaption": "Gå till dokument", + "DE.Views.FileMenu.btnBackCaption": "Öppna filens plats", "DE.Views.FileMenu.btnCloseMenuCaption": "Stäng meny", "DE.Views.FileMenu.btnCreateNewCaption": "Skapa ny", "DE.Views.FileMenu.btnDownloadCaption": "Ladda ner som...", + "DE.Views.FileMenu.btnExitCaption": "Avsluta", + "DE.Views.FileMenu.btnFileOpenCaption": "Öppna...", "DE.Views.FileMenu.btnHelpCaption": "Hjälp...", "DE.Views.FileMenu.btnHistoryCaption": "Versionshistorik", "DE.Views.FileMenu.btnInfoCaption": "Dokumentinformation...", @@ -1637,6 +1694,8 @@ "DE.Views.FileMenu.btnSettingsCaption": "Avancerade inställningar...", "DE.Views.FileMenu.btnToEditCaption": "Redigera dokumentet", "DE.Views.FileMenu.textDownload": "Ladda ner", + "DE.Views.FileMenuPanels.CreateNew.txtBlank": "Tomt dokument", + "DE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Skapa ny", "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Tillämpa", "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Lägg till författare", "DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Lägg till text", @@ -1657,7 +1716,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistik", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Ämne", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symboler", - "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Dokumenttitel", + "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titel", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Uppladdad", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Ord", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Ändra behörigheter", @@ -1670,7 +1729,7 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Redigering tar bort signaturerna från dokumentet.
Är du säker på att du vill fortsätta?", "DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Detta dokument har skyddats med lösenord", "DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "Detta dokument behöver undertecknas.", - "DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Giltiga signaturer har lagts till i dokumentet. Dokumentet är skyddat från redigering.", + "DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Giltiga signaturer har lagts till i dokumentet. Dokumentet är skrivskyddat.", "DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Några av de digitala signaturerna i dokumentet är ogiltiga eller kunde inte verifieras. Dokumentet är skyddat från redigering.", "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Visa signaturer", "DE.Views.FileMenuPanels.Settings.okButtonText": "Tillämpa", @@ -1682,13 +1741,14 @@ "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Du måste acceptera ändringar innan du kan se dom", "DE.Views.FileMenuPanels.Settings.strFast": "Snabb", "DE.Views.FileMenuPanels.Settings.strFontRender": "Fontförslag", - "DE.Views.FileMenuPanels.Settings.strForcesave": "Spara alltid till server (annars spara till servern när dokumentet stängs)", + "DE.Views.FileMenuPanels.Settings.strForcesave": "Lägg till version till lagringen efter att ha klickat på Spara eller CTRL+S", "DE.Views.FileMenuPanels.Settings.strInputMode": "Aktivera hieroglyfer", "DE.Views.FileMenuPanels.Settings.strLiveComment": "Aktivera visning av kommentarer", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Makroinställningar", "DE.Views.FileMenuPanels.Settings.strPaste": "Klipp ut, kopiera och klistra in", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Visa knappen Klistra in alternativ när innehållet klistras in", "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Aktivera visning av lösta kommentarer", + "DE.Views.FileMenuPanels.Settings.strReviewHover": "Visa spåra ändringar", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Samarbeta i realtid", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Aktivera stavningskontroll", "DE.Views.FileMenuPanels.Settings.strStrict": "Strikt", @@ -1704,13 +1764,16 @@ "DE.Views.FileMenuPanels.Settings.textAutoSave": "Autospara", "DE.Views.FileMenuPanels.Settings.textCompatible": "Kompatibilitet", "DE.Views.FileMenuPanels.Settings.textDisabled": "Inaktiverad", - "DE.Views.FileMenuPanels.Settings.textForceSave": "Spara till server", + "DE.Views.FileMenuPanels.Settings.textForceSave": "Sparar mellanliggande versioner", "DE.Views.FileMenuPanels.Settings.textMinute": "Varje minut", "DE.Views.FileMenuPanels.Settings.textOldVersions": "Gör filerna kompatibla med äldre MS Word-versioner när de sparas som DOCX", "DE.Views.FileMenuPanels.Settings.txtAll": "Visa alla", "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Inställningar autokorrigering", "DE.Views.FileMenuPanels.Settings.txtCacheMode": "Standard cache-läge", + "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "Visa genom att klicka på pratbubblan", + "DE.Views.FileMenuPanels.Settings.txtChangesTip": "Visa genom att peka på verktygstips", "DE.Views.FileMenuPanels.Settings.txtCm": "Centimeter", + "DE.Views.FileMenuPanels.Settings.txtDarkMode": "Slå på mörkt läge för dokumentet", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Anpassa till sida", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Anpassa till bredd", "DE.Views.FileMenuPanels.Settings.txtInch": "Tum", @@ -1733,6 +1796,7 @@ "DE.Views.FormSettings.textAlways": "Alltid", "DE.Views.FormSettings.textAspect": "Lås bildformat", "DE.Views.FormSettings.textAutofit": "Anpassa automatiskt", + "DE.Views.FormSettings.textBackgroundColor": "Bakgrundsfärg", "DE.Views.FormSettings.textCheckbox": "Kryssruta", "DE.Views.FormSettings.textColor": "Ramfärg", "DE.Views.FormSettings.textComb": "Kombination av tecken", @@ -1776,11 +1840,14 @@ "DE.Views.FormsTab.capBtnNext": "Nästa fält", "DE.Views.FormsTab.capBtnPrev": "Föregående fält", "DE.Views.FormsTab.capBtnRadioBox": "Radio Button", + "DE.Views.FormsTab.capBtnSaveForm": "Spara som oform", "DE.Views.FormsTab.capBtnSubmit": "Verkställ", "DE.Views.FormsTab.capBtnText": "Textfält", "DE.Views.FormsTab.capBtnView": "Visa formulär", "DE.Views.FormsTab.textClear": "Rensa fält", "DE.Views.FormsTab.textClearFields": "Rensa fält", + "DE.Views.FormsTab.textCreateForm": "Lägg till fält och skapa ett ifyllbart OFORM dokument", + "DE.Views.FormsTab.textGotIt": "Uppfattat", "DE.Views.FormsTab.textHighlight": "Markera inställningar", "DE.Views.FormsTab.textNoHighlight": "Ingen markering", "DE.Views.FormsTab.textRequired": "Fyll i alla fält för att skicka formulär.", @@ -1792,9 +1859,11 @@ "DE.Views.FormsTab.tipNextForm": "Gå till nästa fält", "DE.Views.FormsTab.tipPrevForm": "Gå till föregående fält", "DE.Views.FormsTab.tipRadioBox": "Insert radio button", + "DE.Views.FormsTab.tipSaveForm": "Spara en fil som ifyllbart OFORM dokument", "DE.Views.FormsTab.tipSubmit": "Kunde ej verkställa formulär", "DE.Views.FormsTab.tipTextField": "Infoga textfält", "DE.Views.FormsTab.tipViewForm": "Visa formulär", + "DE.Views.FormsTab.txtUntitled": "Namnlös", "DE.Views.HeaderFooterSettings.textBottomCenter": "Nederst centrerad", "DE.Views.HeaderFooterSettings.textBottomLeft": "Nederst vänster", "DE.Views.HeaderFooterSettings.textBottomPage": "Nederkant på sidan", @@ -1832,6 +1901,7 @@ "DE.Views.ImageSettings.textCrop": "Beskär", "DE.Views.ImageSettings.textCropFill": "Fylla", "DE.Views.ImageSettings.textCropFit": "Anpassa", + "DE.Views.ImageSettings.textCropToShape": "Beskär till form", "DE.Views.ImageSettings.textEdit": "Redigera", "DE.Views.ImageSettings.textEditObject": "Redigera objekt", "DE.Views.ImageSettings.textFitMargins": "Anpassa till marginal", @@ -1845,15 +1915,16 @@ "DE.Views.ImageSettings.textHintFlipH": "Vänd horisontellt", "DE.Views.ImageSettings.textHintFlipV": "Vänd vertikalt", "DE.Views.ImageSettings.textInsert": "Ersätt bild", - "DE.Views.ImageSettings.textOriginalSize": "Standardstorlek", + "DE.Views.ImageSettings.textOriginalSize": "Verklig storlek", + "DE.Views.ImageSettings.textRecentlyUsed": "Nyligen använda", "DE.Views.ImageSettings.textRotate90": "Rotera 90°", "DE.Views.ImageSettings.textRotation": "Rotation", "DE.Views.ImageSettings.textSize": "Storlek", "DE.Views.ImageSettings.textWidth": "Bredd", "DE.Views.ImageSettings.textWrap": "Figursättning", - "DE.Views.ImageSettings.txtBehind": "Bakom", - "DE.Views.ImageSettings.txtInFront": "Längst fram", - "DE.Views.ImageSettings.txtInline": "Inom", + "DE.Views.ImageSettings.txtBehind": "Bakom text", + "DE.Views.ImageSettings.txtInFront": "Framför text", + "DE.Views.ImageSettings.txtInline": "I höjd med text", "DE.Views.ImageSettings.txtSquare": "Fyrkant", "DE.Views.ImageSettings.txtThrough": "Genom", "DE.Views.ImageSettings.txtTight": "Tät", @@ -1863,7 +1934,7 @@ "DE.Views.ImageSettingsAdvanced.textAlignment": "Justera", "DE.Views.ImageSettingsAdvanced.textAlt": "Alternativ text", "DE.Views.ImageSettingsAdvanced.textAltDescription": "Beskrivning", - "DE.Views.ImageSettingsAdvanced.textAltTip": "Den alternativa textbaserade representation av den visuella informationsobjektet, som kommer att läsas för personer med syn eller kognitiva funktionsnedsättningar att hjälpa dem att bättre förstå vilken information som finns i bilden, figur eller, diagram eller en tabell.", + "DE.Views.ImageSettingsAdvanced.textAltTip": "Den alternativa textbaserad förekomsten av visuell objektinformation som kommer att läsas för personer med syn eller kognitiva funktionsnedsättningar för att hjälpa dem att bättre förstå vilken information som finns i bilden, figuren, diagrammet eller tabellen.", "DE.Views.ImageSettingsAdvanced.textAltTitle": "Titel", "DE.Views.ImageSettingsAdvanced.textAngle": "Vinkel", "DE.Views.ImageSettingsAdvanced.textArrows": "Pilar", @@ -1898,7 +1969,7 @@ "DE.Views.ImageSettingsAdvanced.textMiter": "Miter", "DE.Views.ImageSettingsAdvanced.textMove": "Flytta objektet med texten", "DE.Views.ImageSettingsAdvanced.textOptions": "Alternativ", - "DE.Views.ImageSettingsAdvanced.textOriginalSize": "Standardstorlek", + "DE.Views.ImageSettingsAdvanced.textOriginalSize": "Verklig storlek", "DE.Views.ImageSettingsAdvanced.textOverlap": "Tillåt överlappning", "DE.Views.ImageSettingsAdvanced.textPage": "Sida", "DE.Views.ImageSettingsAdvanced.textParagraph": "Stycke", @@ -1926,9 +1997,9 @@ "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Vikter & pilar", "DE.Views.ImageSettingsAdvanced.textWidth": "Bredd", "DE.Views.ImageSettingsAdvanced.textWrap": "Figursättning", - "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Bakom", - "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Längst fram", - "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "Inom", + "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Bakom text", + "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Framför text", + "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "I höjd med text", "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Fyrkant", "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Genom", "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Tät", @@ -1970,7 +2041,7 @@ "DE.Views.Links.confirmDeleteFootnotes": "Vill du radera alla fotnoter?", "DE.Views.Links.confirmReplaceTOF": "Vill du ersätta denna", "DE.Views.Links.mniConvertNote": "Konvertera alla noter", - "DE.Views.Links.mniDelFootnote": "Radera alla fotnoter", + "DE.Views.Links.mniDelFootnote": "Radera alla anteckningar", "DE.Views.Links.mniInsEndnote": "Infoga slutnot", "DE.Views.Links.mniInsFootnote": "Infoga fotnot", "DE.Views.Links.mniNoteSettings": "Inställning anteckningar", @@ -2059,7 +2130,7 @@ "DE.Views.MailMergeSettings.warnProcessMailMerge": "Sammanslagning misslyckads", "DE.Views.Navigation.txtCollapse": "Gömma alla", "DE.Views.Navigation.txtDemote": "Degradera", - "DE.Views.Navigation.txtEmpty": "Detta dokument innehåller inga rubriker", + "DE.Views.Navigation.txtEmpty": "Det finns inga rubriker i dokumentet.
Tillämpa en rubrikstil på texten så att den visas i innehållsförteckningen.", "DE.Views.Navigation.txtEmptyItem": "Tom rubrik", "DE.Views.Navigation.txtExpand": "Expandera alla", "DE.Views.Navigation.txtExpandToLevel": "Expandera till nivå", @@ -2116,6 +2187,11 @@ "DE.Views.PageSizeDialog.textTitle": "Sidstorlek", "DE.Views.PageSizeDialog.textWidth": "Bredd", "DE.Views.PageSizeDialog.txtCustom": "Anpassad", + "DE.Views.PageThumbnails.textClosePanel": "Stäng sidans miniatyrer", + "DE.Views.PageThumbnails.textHighlightVisiblePart": "Markera synlig del av sidan", + "DE.Views.PageThumbnails.textPageThumbnails": "Miniatyrsidor", + "DE.Views.PageThumbnails.textThumbnailsSettings": "Inställningar för miniatyrbilder", + "DE.Views.PageThumbnails.textThumbnailsSize": "Storlek på miniatyrbilder", "DE.Views.ParagraphSettings.strIndent": "Indrag", "DE.Views.ParagraphSettings.strIndentsLeftText": "Vänster", "DE.Views.ParagraphSettings.strIndentsRightText": "Höger", @@ -2226,7 +2302,7 @@ "DE.Views.ShapeSettings.strPattern": "Mönster", "DE.Views.ShapeSettings.strShadow": "Visa skugga", "DE.Views.ShapeSettings.strSize": "Storlek", - "DE.Views.ShapeSettings.strStroke": "Genomslag", + "DE.Views.ShapeSettings.strStroke": "Rad", "DE.Views.ShapeSettings.strTransparency": "Opacitet", "DE.Views.ShapeSettings.strType": "Typ", "DE.Views.ShapeSettings.textAdvanced": "Visa avancerade inställningar", @@ -2239,7 +2315,7 @@ "DE.Views.ShapeSettings.textFromFile": "Från fil", "DE.Views.ShapeSettings.textFromStorage": "Från lagring", "DE.Views.ShapeSettings.textFromUrl": "Från URL", - "DE.Views.ShapeSettings.textGradient": "Fyllning", + "DE.Views.ShapeSettings.textGradient": "Triangulär punkt", "DE.Views.ShapeSettings.textGradientFill": "Fyllning", "DE.Views.ShapeSettings.textHint270": "Rotera 90° moturs", "DE.Views.ShapeSettings.textHint90": "Rotera 90° medsols", @@ -2251,6 +2327,7 @@ "DE.Views.ShapeSettings.textPatternFill": "Mönster", "DE.Views.ShapeSettings.textPosition": "Position", "DE.Views.ShapeSettings.textRadial": "Radiell", + "DE.Views.ShapeSettings.textRecentlyUsed": "Nyligen använda", "DE.Views.ShapeSettings.textRotate90": "Rotera 90°", "DE.Views.ShapeSettings.textRotation": "Rotation", "DE.Views.ShapeSettings.textSelectImage": "Välj bild", @@ -2262,7 +2339,7 @@ "DE.Views.ShapeSettings.textWrap": "Figursättning", "DE.Views.ShapeSettings.tipAddGradientPoint": "Lägg till lutningspunkt", "DE.Views.ShapeSettings.tipRemoveGradientPoint": "Ta bort lutningspunkten", - "DE.Views.ShapeSettings.txtBehind": "Bakom", + "DE.Views.ShapeSettings.txtBehind": "Bakom text", "DE.Views.ShapeSettings.txtBrownPaper": "Brunt papper", "DE.Views.ShapeSettings.txtCanvas": "Canvas", "DE.Views.ShapeSettings.txtCarton": "Kartong", @@ -2270,8 +2347,8 @@ "DE.Views.ShapeSettings.txtGrain": "Gryn", "DE.Views.ShapeSettings.txtGranite": "Granit", "DE.Views.ShapeSettings.txtGreyPaper": "Grått papper", - "DE.Views.ShapeSettings.txtInFront": "Längst fram", - "DE.Views.ShapeSettings.txtInline": "Inom", + "DE.Views.ShapeSettings.txtInFront": "Framför text", + "DE.Views.ShapeSettings.txtInline": "I höjd med text", "DE.Views.ShapeSettings.txtKnit": "Knit", "DE.Views.ShapeSettings.txtLeather": "Läder", "DE.Views.ShapeSettings.txtNoBorders": "Ingen rad", @@ -2295,7 +2372,7 @@ "DE.Views.SignatureSettings.txtEditWarning": "Redigering tar bort signaturerna från dokumentet.
Är du säker på att du vill fortsätta?", "DE.Views.SignatureSettings.txtRemoveWarning": "Vill du radera denna", "DE.Views.SignatureSettings.txtRequestedSignatures": "Detta dokument behöver undertecknas.", - "DE.Views.SignatureSettings.txtSigned": "Giltiga signaturer har lagts till i dokumentet. Dokumentet är skyddat från redigering.", + "DE.Views.SignatureSettings.txtSigned": "Giltiga signaturer har lagts till i dokumentet. Dokumentet är skrivskyddat.", "DE.Views.SignatureSettings.txtSignedInvalid": "Några av de digitala signaturerna i dokumentet är ogiltiga eller kunde inte verifieras. Dokumentet är skyddat från redigering.", "DE.Views.Statusbar.goToPageText": "Gå till sida", "DE.Views.Statusbar.pageIndexText": "Sida {0} av {1}", @@ -2369,7 +2446,7 @@ "DE.Views.TableSettings.textBanded": "Banded", "DE.Views.TableSettings.textBorderColor": "Färg", "DE.Views.TableSettings.textBorders": "Ramens stil", - "DE.Views.TableSettings.textCellSize": "Cellstorlek", + "DE.Views.TableSettings.textCellSize": "Rad- och cellstorlek", "DE.Views.TableSettings.textColumns": "Kolumner", "DE.Views.TableSettings.textConvert": "Konvertera tabell till text", "DE.Views.TableSettings.textDistributeCols": "Distribuera kolumner", @@ -2409,7 +2486,7 @@ "DE.Views.TableSettingsAdvanced.textAllowSpacing": "Avstånd mellan celler", "DE.Views.TableSettingsAdvanced.textAlt": "Alternativ text", "DE.Views.TableSettingsAdvanced.textAltDescription": "Beskrivning", - "DE.Views.TableSettingsAdvanced.textAltTip": "Den alternativa textbaserade representation av den visuella informationsobjektet, som kommer att läsas för personer med syn eller kognitiva funktionsnedsättningar att hjälpa dem att bättre förstå vilken information som finns i bilden, figur eller, diagram eller en tabell.", + "DE.Views.TableSettingsAdvanced.textAltTip": "Den alternativa textbaserad förekomsten av visuell objektinformation som kommer att läsas för personer med syn eller kognitiva funktionsnedsättningar för att hjälpa dem att bättre förstå vilken information som finns i bilden, figuren, diagrammet eller tabellen.", "DE.Views.TableSettingsAdvanced.textAltTitle": "Titel", "DE.Views.TableSettingsAdvanced.textAnchorText": "Text", "DE.Views.TableSettingsAdvanced.textAutofit": "Automatiskt ändra storlek för att passa innehållet", @@ -2487,14 +2564,14 @@ "DE.Views.TextArtSettings.strColor": "Färg", "DE.Views.TextArtSettings.strFill": "Fylla", "DE.Views.TextArtSettings.strSize": "Storlek", - "DE.Views.TextArtSettings.strStroke": "Genomslag", + "DE.Views.TextArtSettings.strStroke": "Rad", "DE.Views.TextArtSettings.strTransparency": "Opacitet", "DE.Views.TextArtSettings.strType": "Typ", "DE.Views.TextArtSettings.textAngle": "Vinkel", "DE.Views.TextArtSettings.textBorderSizeErr": "Det angivna värdet är inkorrekt.
Vänligen ange ett värde mellan 0 och 1584 pt.", "DE.Views.TextArtSettings.textColor": "Färgfyllnad", "DE.Views.TextArtSettings.textDirection": "Riktning", - "DE.Views.TextArtSettings.textGradient": "Fyllning", + "DE.Views.TextArtSettings.textGradient": "Triangulära punkter", "DE.Views.TextArtSettings.textGradientFill": "Fyllning", "DE.Views.TextArtSettings.textLinear": "Linjär", "DE.Views.TextArtSettings.textNoFill": "Ingen fyllning", @@ -2531,7 +2608,7 @@ "DE.Views.Toolbar.capBtnInsControls": "Innehållskontroller", "DE.Views.Toolbar.capBtnInsDropcap": "Anfang", "DE.Views.Toolbar.capBtnInsEquation": "Ekvation", - "DE.Views.Toolbar.capBtnInsHeader": "Sidhuvud/Sidfot", + "DE.Views.Toolbar.capBtnInsHeader": "Sidhuvud & Sidfot", "DE.Views.Toolbar.capBtnInsImage": "Bild", "DE.Views.Toolbar.capBtnInsPagebreak": "Brytningar", "DE.Views.Toolbar.capBtnInsShape": "Form", @@ -2557,6 +2634,9 @@ "DE.Views.Toolbar.mniEditFooter": "Redigera foten", "DE.Views.Toolbar.mniEditHeader": "Redigera sidhuvud", "DE.Views.Toolbar.mniEraseTable": "Radera tabell", + "DE.Views.Toolbar.mniFromFile": "Från fil", + "DE.Views.Toolbar.mniFromStorage": "Från lagring", + "DE.Views.Toolbar.mniFromUrl": "Från URL", "DE.Views.Toolbar.mniHiddenBorders": "Göm tabellens ram", "DE.Views.Toolbar.mniHiddenChars": "Dolda tecken", "DE.Views.Toolbar.mniHighlightControls": "Markera inställningar", @@ -2613,13 +2693,13 @@ "DE.Views.Toolbar.textPageMarginsCustom": "Anpassade marginaler", "DE.Views.Toolbar.textPageSizeCustom": "Anpassad sidstorlek", "DE.Views.Toolbar.textPictureControl": "Bild", - "DE.Views.Toolbar.textPlainControl": "Infoga innehållskontroll för ren text", + "DE.Views.Toolbar.textPlainControl": "Oformaterad text", "DE.Views.Toolbar.textPortrait": "Porträtt", "DE.Views.Toolbar.textRemoveControl": "Ta bort innehållskontrollen", "DE.Views.Toolbar.textRemWatermark": "Ta bort vattenstämpel", "DE.Views.Toolbar.textRestartEachPage": "Gör om för varje sida", "DE.Views.Toolbar.textRestartEachSection": "Gör om för varje sektion", - "DE.Views.Toolbar.textRichControl": "Infoga innehållskontroll för utökad text", + "DE.Views.Toolbar.textRichControl": "Utökad text", "DE.Views.Toolbar.textRight": "Höger:", "DE.Views.Toolbar.textStrikeout": "Genomstruken", "DE.Views.Toolbar.textStyleMenuDelete": "Radera stil", @@ -2639,6 +2719,7 @@ "DE.Views.Toolbar.textTabLinks": "Referenser", "DE.Views.Toolbar.textTabProtect": "Skydd", "DE.Views.Toolbar.textTabReview": "Granska", + "DE.Views.Toolbar.textTabView": "Visa", "DE.Views.Toolbar.textTitleError": "Fel", "DE.Views.Toolbar.textToCurrent": "Till nuvarande position", "DE.Views.Toolbar.textTop": "Överst:", @@ -2678,7 +2759,7 @@ "DE.Views.Toolbar.tipInsertShape": "Infoga autoform", "DE.Views.Toolbar.tipInsertSymbol": "Infoga symbol", "DE.Views.Toolbar.tipInsertTable": "Infoga tabell", - "DE.Views.Toolbar.tipInsertText": "Infoga text", + "DE.Views.Toolbar.tipInsertText": "Infoga textruta", "DE.Views.Toolbar.tipInsertTextArt": "Infoga TextArt", "DE.Views.Toolbar.tipLineNumbers": "Visa radnummer", "DE.Views.Toolbar.tipLineSpace": "Styckets radavstånd", @@ -2730,7 +2811,15 @@ "DE.Views.Toolbar.txtScheme7": "Rättvisa", "DE.Views.Toolbar.txtScheme8": "Flöde", "DE.Views.Toolbar.txtScheme9": "Grund", + "DE.Views.ViewTab.textAlwaysShowToolbar": "Visa alltid verktygsfältet", + "DE.Views.ViewTab.textDarkDocument": "Mörkt dokument", + "DE.Views.ViewTab.textFitToPage": "Anpassa till sidan", + "DE.Views.ViewTab.textFitToWidth": "Anpassa till bredden", "DE.Views.ViewTab.textInterfaceTheme": "Gränssnittstema", + "DE.Views.ViewTab.textNavigation": "Navigation", + "DE.Views.ViewTab.textRulers": "Linjaler", + "DE.Views.ViewTab.textStatusBar": "Statusmätare", + "DE.Views.ViewTab.textZoom": "Förstoring", "DE.Views.WatermarkSettingsDialog.textAuto": "Auto", "DE.Views.WatermarkSettingsDialog.textBold": "Fet", "DE.Views.WatermarkSettingsDialog.textColor": "Textfärg", diff --git a/apps/documenteditor/main/locale/tr.json b/apps/documenteditor/main/locale/tr.json index 4f1966499..1fa916143 100644 --- a/apps/documenteditor/main/locale/tr.json +++ b/apps/documenteditor/main/locale/tr.json @@ -190,7 +190,7 @@ "Common.UI.Window.cancelButtonText": "İptal Et", "Common.UI.Window.closeButtonText": "Kapat", "Common.UI.Window.noButtonText": "Hayır", - "Common.UI.Window.okButtonText": "TAMAM", + "Common.UI.Window.okButtonText": "Tamam", "Common.UI.Window.textConfirmation": "Konfirmasyon", "Common.UI.Window.textDontShow": "Bu mesajı bir daha gösterme", "Common.UI.Window.textError": "Hata", @@ -252,7 +252,7 @@ "Common.Views.Comments.textClose": "Kapat", "Common.Views.Comments.textClosePanel": "Yorumları kapat", "Common.Views.Comments.textComments": "Yorumlar", - "Common.Views.Comments.textEdit": "OK", + "Common.Views.Comments.textEdit": "Tamam", "Common.Views.Comments.textEnterCommentHint": "Yorumunuzu buraya giriniz", "Common.Views.Comments.textHintAddComment": "Yorum Ekle", "Common.Views.Comments.textOpenAgain": "Tekrar Aç", @@ -500,7 +500,7 @@ "Common.Views.UserNameDialog.textDontShow": "Bana bir daha sorma", "Common.Views.UserNameDialog.textLabel": "Etiket:", "Common.Views.UserNameDialog.textLabelError": "Etiket boş olamaz.", - "DE.Controllers.LeftMenu.leavePageText": "Bu belgedeki kaydedilmemiş tüm değişiklikler kaybolacak.
Bunları kaydetmek için \"İptal\"i ve ardından \"Kaydet\"i tıklayın. Kaydedilmemiş tüm değişiklikleri atmak için \"OK\" ı tıklayın.", + "DE.Controllers.LeftMenu.leavePageText": "Bu belgedeki kaydedilmemiş tüm değişiklikler kaybolacak.
Bunları kaydetmek için \"İptal\"i ve ardından \"Kaydet\"i tıklayın. Kaydedilmemiş tüm değişiklikleri atmak için \"Tamam\" ı tıklayın.", "DE.Controllers.LeftMenu.newDocumentTitle": "İsimlendirilmemiş döküman", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Uyarı", "DE.Controllers.LeftMenu.requestEditRightsText": "Düzenleme hakları isteniyor...", @@ -514,7 +514,7 @@ "DE.Controllers.Main.applyChangesTextText": "Değişiklikler yükleniyor...", "DE.Controllers.Main.applyChangesTitleText": "Değişiklikler Yükleniyor", "DE.Controllers.Main.convertationTimeoutText": "Değişim süresi geçti.", - "DE.Controllers.Main.criticalErrorExtText": "Döküman listesine dönmek için \"OK\"'a tıklayın", + "DE.Controllers.Main.criticalErrorExtText": "Döküman listesine dönmek için \"Tamam\"'a tıklayın", "DE.Controllers.Main.criticalErrorTitle": "Hata", "DE.Controllers.Main.downloadErrorText": "Yükleme başarısız oldu.", "DE.Controllers.Main.downloadMergeText": "Downloading...", @@ -526,7 +526,7 @@ "DE.Controllers.Main.errorCoAuthoringDisconnect": "Sunucu bağlantısı kesildi. Döküman şu an düzenlenemez.", "DE.Controllers.Main.errorComboSeries": "Bir kombinasyon grafiği oluşturmak için en az iki veri serisi seçin.", "DE.Controllers.Main.errorCompare": "Belgeleri Karşılaştır özelliği, birlikte düzenleme sırasında kullanılamaz.", - "DE.Controllers.Main.errorConnectToServer": "Belge kaydedilemedi. Lütfen bağlantı ayarlarını kontrol edin veya yöneticinizle iletişime geçin.
'OK' düğmesini tıkladığınızda, belgeyi indirmeniz istenecektir.", + "DE.Controllers.Main.errorConnectToServer": "Belge kaydedilemedi. Lütfen bağlantı ayarlarını kontrol edin veya yöneticinizle iletişime geçin.
'Tamam' düğmesini tıkladığınızda, belgeyi indirmeniz istenecektir.", "DE.Controllers.Main.errorDatabaseConnection": "Harci hata.
Veri tabanı bağlantı hatası. Hata devam ederse lütfen destek ile iletişime geçin.", "DE.Controllers.Main.errorDataEncrypted": "Şifreli değişiklikler algılandı, çözülemiyor.", "DE.Controllers.Main.errorDataRange": "Yanlış veri aralığı.", @@ -559,7 +559,7 @@ "DE.Controllers.Main.errorUsersExceed": "Fiyat planının izin verdiği kullanıcı sayısı aşıldı", "DE.Controllers.Main.errorViewerDisconnect": "Bağlantı kesildi. Belgeyi yine de görüntüleyebilirsiniz,
ancak bağlantı yeniden kurulana ve sayfa yeniden yüklenene kadar indiremez veya yazdıramazsınız.", "DE.Controllers.Main.leavePageText": "Bu dökümandaki değişiklikleri kaydetmediniz. \"Bu sayfada kal\"'a tıklayınız ve sonrasında kaydetmek için \"Kaydet\"'e tıklayınız. Kaydedilmeyen değişikliklerin tümünü göz ardı etmek için \"Bu Sayfadan Ayrıl\"'a tıklayınız.", - "DE.Controllers.Main.leavePageTextOnClose": "Bu belgedeki kaydedilmemiş tüm değişiklikler kaybolacak.
Bunları kaydetmek için \"İptal\"i ve ardından \"Kaydet\"i tıklayın. Kaydedilmemiş tüm değişiklikleri atmak için \"OK\" ı tıklayın.", + "DE.Controllers.Main.leavePageTextOnClose": "Bu belgedeki kaydedilmemiş tüm değişiklikler kaybolacak.
Bunları kaydetmek için \"İptal\"i ve ardından \"Kaydet\"i tıklayın. Kaydedilmemiş tüm değişiklikleri atmak için \"Tamam\" ı tıklayın.", "DE.Controllers.Main.loadFontsTextText": "Veri yükleniyor...", "DE.Controllers.Main.loadFontsTitleText": "Veri yükleniyor", "DE.Controllers.Main.loadFontTextText": "Veri yükleniyor...", diff --git a/apps/documenteditor/main/locale/uk.json b/apps/documenteditor/main/locale/uk.json index 63fc949e4..ca8b50ec7 100644 --- a/apps/documenteditor/main/locale/uk.json +++ b/apps/documenteditor/main/locale/uk.json @@ -2812,6 +2812,7 @@ "DE.Views.Toolbar.txtScheme8": "Розпливатися", "DE.Views.Toolbar.txtScheme9": "Ливарня", "DE.Views.ViewTab.textAlwaysShowToolbar": "Завжди показувати панель інструментів", + "DE.Views.ViewTab.textDarkDocument": "Темний документ", "DE.Views.ViewTab.textFitToPage": "За розміром сторінки", "DE.Views.ViewTab.textFitToWidth": "По ширині", "DE.Views.ViewTab.textInterfaceTheme": "Тема інтерфейсу", diff --git a/apps/presentationeditor/embed/locale/sv.json b/apps/presentationeditor/embed/locale/sv.json index c3af82160..7f06a19bb 100644 --- a/apps/presentationeditor/embed/locale/sv.json +++ b/apps/presentationeditor/embed/locale/sv.json @@ -13,9 +13,13 @@ "PE.ApplicationController.errorDefaultMessage": "Felkod: %1", "PE.ApplicationController.errorFilePassProtect": "Dokumentet är lösenordsskyddat och kunde inte öppnas. ", "PE.ApplicationController.errorFileSizeExceed": "Filstorleken överskrider gränsen för din server.
Var snäll och kontakta administratören för dokumentservern för mer information.", + "PE.ApplicationController.errorForceSave": "Ett fel uppstod när filen sparades. Vänligen använd alternativet \"Spara som\" för att spara filen till din dator eller försök igen senare.", + "PE.ApplicationController.errorLoadingFont": "Typsnittet är inte tillgängligt.
Vänligen kontakta dokumentserverns administratör.", + "PE.ApplicationController.errorTokenExpire": "Dokumentets säkerhetstoken har upphört att gälla.
Vänligen kontakta dokumentserverns administratör.", "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Internetanslutningen har återställts och filversionen har ändrats.
Innan du fortsätter arbeta, ladda ner filen eller kopiera innehållet för att försäkra dig om att inte förlora något, ladda sedan om denna sida.", "PE.ApplicationController.errorUserDrop": "Filen kan inte nås för tillfället. ", "PE.ApplicationController.notcriticalErrorTitle": "Varning", + "PE.ApplicationController.openErrorText": "Ett fel uppstod vid öppnandet av filen.", "PE.ApplicationController.scriptLoadError": "Anslutningen är för långsam, vissa av komponenterna kunde inte laddas. Vänligen ladda om sidan.", "PE.ApplicationController.textAnonymous": "Anonym", "PE.ApplicationController.textGuest": "Gäst", diff --git a/apps/presentationeditor/main/locale/de.json b/apps/presentationeditor/main/locale/de.json index 78efa2f5a..21c8b33d8 100644 --- a/apps/presentationeditor/main/locale/de.json +++ b/apps/presentationeditor/main/locale/de.json @@ -47,6 +47,195 @@ "Common.define.chartData.textScatterSmoothMarker": "Punkte mit interpolierten Linien und Datenpunkten", "Common.define.chartData.textStock": "Kurs", "Common.define.chartData.textSurface": "Oberfläche", + "Common.define.effectData.textAcross": "Quer", + "Common.define.effectData.textAppear": "Erscheinen", + "Common.define.effectData.textArcDown": "Bogen nach unten", + "Common.define.effectData.textArcLeft": "Bogen nach links", + "Common.define.effectData.textArcRight": "Bogen nach rechts", + "Common.define.effectData.textArcUp": "Bogen nach oben", + "Common.define.effectData.textBasic": "Grundlegende", + "Common.define.effectData.textBasicSwivel": "Drehen einfach", + "Common.define.effectData.textBasicZoom": "Zoom einfach", + "Common.define.effectData.textBean": "Bohne", + "Common.define.effectData.textBlinds": "Jalousie", + "Common.define.effectData.textBlink": "Blinken", + "Common.define.effectData.textBoldFlash": "Deutlicher Blitz", + "Common.define.effectData.textBoldReveal": "Fett anzeigen", + "Common.define.effectData.textBoomerang": "Bumerang", + "Common.define.effectData.textBounce": "Springen", + "Common.define.effectData.textBounceLeft": "Links aufprallen", + "Common.define.effectData.textBounceRight": "Rechts aufprallen", + "Common.define.effectData.textBox": "Rechteck", + "Common.define.effectData.textBrushColor": "Pinselfarbe", + "Common.define.effectData.textCenterRevolve": "Um Zentrum drehen", + "Common.define.effectData.textCheckerboard": "Schachbrett", + "Common.define.effectData.textCircle": "Kreis", + "Common.define.effectData.textCollapse": "Reduzieren", + "Common.define.effectData.textColorPulse": "Farbimpuls", + "Common.define.effectData.textComplementaryColor": "Komplementärfarbe", + "Common.define.effectData.textComplementaryColor2": "Komplementärfarbe 2", + "Common.define.effectData.textCompress": "Komprimieren", + "Common.define.effectData.textContrast": "Kontrast", + "Common.define.effectData.textContrastingColor": "Kontrastfarbe", + "Common.define.effectData.textCredits": "Abspann", + "Common.define.effectData.textCrescentMoon": "Halbmond", + "Common.define.effectData.textCurveDown": "Gekrümmt nach unten", + "Common.define.effectData.textCurvedSquare": "Kurviges Quadrat", + "Common.define.effectData.textCurvedX": "Kurviges X", + "Common.define.effectData.textCurvyLeft": "Kurvig nach links", + "Common.define.effectData.textCurvyRight": "Kurvig nach rechts", + "Common.define.effectData.textCurvyStar": "Kurviger Stern", + "Common.define.effectData.textCustomPath": "Benutzerdefinierter Pfad", + "Common.define.effectData.textCuverUp": "Gekrümmt nach oben", + "Common.define.effectData.textDarken": "Verdunkeln", + "Common.define.effectData.textDecayingWave": "Abnehmende Welle", + "Common.define.effectData.textDesaturate": "Entsättigen", + "Common.define.effectData.textDiagonalDownRight": "Diagonal, in rechte untere Ecke", + "Common.define.effectData.textDiagonalUpRight": "Diagonal, in linke untere Ecke", + "Common.define.effectData.textDiamond": "Raute", + "Common.define.effectData.textDisappear": "Verschwinden", + "Common.define.effectData.textDissolveIn": "Manifestieren", + "Common.define.effectData.textDissolveOut": "Auflösen", + "Common.define.effectData.textDown": "Nach unten", + "Common.define.effectData.textDrop": "Fallen lassen", + "Common.define.effectData.textEmphasis": "Hervorhebungseffekt", + "Common.define.effectData.textEntrance": "Eingangseffekt", + "Common.define.effectData.textEqualTriangle": "Gleichseitiges Dreieck", + "Common.define.effectData.textExciting": "Spektakulär", + "Common.define.effectData.textExit": "Ausgangseffekt", + "Common.define.effectData.textExpand": "Erweitern", + "Common.define.effectData.textFade": "Verblassen", + "Common.define.effectData.textFigureFour": "Acht übereinander", + "Common.define.effectData.textFillColor": "Füllfarbe", + "Common.define.effectData.textFlip": "Spiegeln", + "Common.define.effectData.textFloat": "Schwimmen", + "Common.define.effectData.textFloatDown": "Abwärts schweben", + "Common.define.effectData.textFloatIn": "Hineinschweben", + "Common.define.effectData.textFloatOut": "Herausschweben", + "Common.define.effectData.textFloatUp": "Aufwärts schweben", + "Common.define.effectData.textFlyIn": "Hineinfliegen", + "Common.define.effectData.textFlyOut": "Hinausfliegen", + "Common.define.effectData.textFontColor": "Schriftfarbe", + "Common.define.effectData.textFootball": "Fußball", + "Common.define.effectData.textFromBottom": "Von unten", + "Common.define.effectData.textFromBottomLeft": "Von links unten", + "Common.define.effectData.textFromBottomRight": "Von rechts unten", + "Common.define.effectData.textFromLeft": "Von links", + "Common.define.effectData.textFromRight": "Von rechts", + "Common.define.effectData.textFromTop": "Von oben", + "Common.define.effectData.textFromTopLeft": "Von links oben", + "Common.define.effectData.textFromTopRight": "Von rechts oben", + "Common.define.effectData.textFunnel": "Trichter", + "Common.define.effectData.textGrowShrink": "Vergrößern/Verkleinern", + "Common.define.effectData.textGrowTurn": "Wachsen und Bewegen", + "Common.define.effectData.textGrowWithColor": "Mit Farbe zunehmend", + "Common.define.effectData.textHeart": "Herz", + "Common.define.effectData.textHeartbeat": "Herzschlag", + "Common.define.effectData.textHexagon": "Sechseck", + "Common.define.effectData.textHorizontal": "Horizontal", + "Common.define.effectData.textHorizontalFigure": "Horizontale Acht", + "Common.define.effectData.textHorizontalIn": "Horizontal nach innen", + "Common.define.effectData.textHorizontalOut": "Horizontal nach außen", + "Common.define.effectData.textIn": "In", + "Common.define.effectData.textInFromScreenCenter": "Vergrößern von Bildschirmmitte", + "Common.define.effectData.textInSlightly": "Etwas vergrößern", + "Common.define.effectData.textInToScreenCenter": "Vergrößern in Bildschirmmitte", + "Common.define.effectData.textInvertedSquare": "Invertiertes Quadrat", + "Common.define.effectData.textInvertedTriangle": "Invertiertes Dreieck", + "Common.define.effectData.textLeft": "Nach links", + "Common.define.effectData.textLeftDown": "Links nach unten", + "Common.define.effectData.textLeftUp": "Links nach oben", + "Common.define.effectData.textLighten": "Erhellen", + "Common.define.effectData.textLineColor": "Linienfarbe", + "Common.define.effectData.textLinesCurves": "Linien und Kurven", + "Common.define.effectData.textLoopDeLoop": "Zwei Schleifen", + "Common.define.effectData.textModerate": "Mittelmäßig", + "Common.define.effectData.textNeutron": "Neutron", + "Common.define.effectData.textObjectCenter": "Objektmitte", + "Common.define.effectData.textObjectColor": "Objektfarbe", + "Common.define.effectData.textOctagon": "Achteck", + "Common.define.effectData.textOut": "Außen", + "Common.define.effectData.textOutFromScreenBottom": "Verkleinern von unten", + "Common.define.effectData.textOutSlightly": "Etwas verkleinern", + "Common.define.effectData.textParallelogram": "Parallelogramm", + "Common.define.effectData.textPath": "Animationspfad", + "Common.define.effectData.textPeanut": "Erdnuss", + "Common.define.effectData.textPeekIn": "Hineinblitzen", + "Common.define.effectData.textPeekOut": "Hervorblitzen", + "Common.define.effectData.textPentagon": "Richtungspfeil", + "Common.define.effectData.textPinwheel": "Sprossenrad", + "Common.define.effectData.textPlus": "Plus", + "Common.define.effectData.textPointStar": "Stern mit Zacken", + "Common.define.effectData.textPointStar4": "Stern mit 4 Zacken", + "Common.define.effectData.textPointStar5": "Stern mit 5 Zacken", + "Common.define.effectData.textPointStar6": "Stern mit 6 Zacken", + "Common.define.effectData.textPointStar8": "Stern mit 8 Zacken", + "Common.define.effectData.textPulse": "Impuls", + "Common.define.effectData.textRandomBars": "Zufällige Balken", + "Common.define.effectData.textRight": "Rechts", + "Common.define.effectData.textRightDown": "Rechts nach unten", + "Common.define.effectData.textRightTriangle": "Rechtwinkliges Dreieck", + "Common.define.effectData.textRightUp": "Rechts nach oben", + "Common.define.effectData.textRiseUp": "Erheben", + "Common.define.effectData.textSCurve1": "S-Kurve 1", + "Common.define.effectData.textSCurve2": "S-Kurve 2", + "Common.define.effectData.textShape": "Form", + "Common.define.effectData.textShimmer": "Schimmer", + "Common.define.effectData.textShrinkTurn": "Verkleinern und Drehen", + "Common.define.effectData.textSineWave": "Sinusschwingung", + "Common.define.effectData.textSinkDown": "Hinabsinken", + "Common.define.effectData.textSlideCenter": "Foliencenter", + "Common.define.effectData.textSpecial": "Spezielle Effekte", + "Common.define.effectData.textSpin": "Rotieren", + "Common.define.effectData.textSpinner": "Wirbeln", + "Common.define.effectData.textSpiralIn": "Spirale", + "Common.define.effectData.textSpiralLeft": "Spirale links", + "Common.define.effectData.textSpiralOut": "Spirale hinaus", + "Common.define.effectData.textSpiralRight": "Spirale rechts", + "Common.define.effectData.textSplit": "Aufteilen", + "Common.define.effectData.textSpoke1": "1 Speiche", + "Common.define.effectData.textSpoke2": "2 Speichen", + "Common.define.effectData.textSpoke3": "3 Speichen", + "Common.define.effectData.textSpoke4": "4 Speichen", + "Common.define.effectData.textSpoke8": "8 Speichen", + "Common.define.effectData.textSpring": "Spirale", + "Common.define.effectData.textSquare": "Viereck", + "Common.define.effectData.textStairsDown": "Treppen nach unten", + "Common.define.effectData.textStretch": "Ausdehnung", + "Common.define.effectData.textStrips": "Streifen", + "Common.define.effectData.textSubtle": "Dezent", + "Common.define.effectData.textSwivel": "Drehen", + "Common.define.effectData.textSwoosh": "Pinselstrich", + "Common.define.effectData.textTeardrop": "Tropfenförmig", + "Common.define.effectData.textTeeter": "Schwanken", + "Common.define.effectData.textToBottom": "Nach unten", + "Common.define.effectData.textToBottomLeft": "Nach links unten", + "Common.define.effectData.textToBottomRight": "Nach rechts unten", + "Common.define.effectData.textToFromScreenBottom": "Verkleinern nach unten", + "Common.define.effectData.textToLeft": "Nach links", + "Common.define.effectData.textToRight": "Nach rechts", + "Common.define.effectData.textToTop": "Nach oben", + "Common.define.effectData.textToTopLeft": "Nach links oben", + "Common.define.effectData.textToTopRight": "Nach rechts oben", + "Common.define.effectData.textTransparency": "Transparenz", + "Common.define.effectData.textTrapezoid": "Trapezoid", + "Common.define.effectData.textTurnDown": "Nach unten drehen", + "Common.define.effectData.textTurnDownRight": "Nach rechts unten drehen", + "Common.define.effectData.textTurnUp": "Nach oben drehen", + "Common.define.effectData.textTurnUpRight": "Nach oben rechts drehen", + "Common.define.effectData.textUnderline": "Unterstrichen", + "Common.define.effectData.textUp": "Nach oben", + "Common.define.effectData.textVertical": "Vertikal", + "Common.define.effectData.textVerticalFigure": "Vertikale Acht", + "Common.define.effectData.textVerticalIn": "Vertikal nach innen", + "Common.define.effectData.textVerticalOut": "Vertikal nach außen", + "Common.define.effectData.textWave": "Welle", + "Common.define.effectData.textWedge": "Keil", + "Common.define.effectData.textWheel": "Rad", + "Common.define.effectData.textWhip": "Fegen", + "Common.define.effectData.textWipe": "Wischen", + "Common.define.effectData.textZigzag": "Zickzack", + "Common.define.effectData.textZoom": "Zoom", "Common.Translation.warnFileLocked": "Die Datei wird in einer anderen App bearbeitet. Sie können die Bearbeitung fortsetzen und die Kopie dieser Datei speichern.", "Common.Translation.warnFileLockedBtnEdit": "Kopie erstellen", "Common.Translation.warnFileLockedBtnView": "Schreibgeschützt öffnen", @@ -61,6 +250,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Neu", "Common.UI.ExtendedColorDialog.textRGBErr": "Der eingegebene Wert ist falsch.
Bitte geben Sie einen numerischen Wert zwischen 0 und 255 ein.", "Common.UI.HSBColorPicker.textNoColor": "Ohne Farbe", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Passwort ausblenden", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Password anzeigen", "Common.UI.SearchDialog.textHighlight": "Ergebnisse markieren", "Common.UI.SearchDialog.textMatchCase": "Groß-/Kleinschreibung beachten", "Common.UI.SearchDialog.textReplaceDef": "Geben Sie den Ersetzungstext ein", @@ -104,6 +295,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Automatische Aufzählungen", "Common.Views.AutoCorrectDialog.textBy": "Nach", "Common.Views.AutoCorrectDialog.textDelete": "Löschen", + "Common.Views.AutoCorrectDialog.textFLCells": "Jede Tabellenzelle mit einem Großbuchstaben beginnen", "Common.Views.AutoCorrectDialog.textFLSentence": "Jeden Satz mit einem Großbuchstaben beginnen", "Common.Views.AutoCorrectDialog.textHyperlink": "Internet- und Netzwerkpfade durch Hyperlinks", "Common.Views.AutoCorrectDialog.textHyphens": "Bindestriche (--) mit Gedankenstrich (—)", @@ -129,12 +321,14 @@ "Common.Views.Comments.mniAuthorDesc": "Verfasser (Z-A)", "Common.Views.Comments.mniDateAsc": "Älteste zuerst", "Common.Views.Comments.mniDateDesc": "Neueste zuerst", + "Common.Views.Comments.mniFilterGroups": "Nach Gruppe filtern", "Common.Views.Comments.mniPositionAsc": "Von oben", "Common.Views.Comments.mniPositionDesc": "Von unten", "Common.Views.Comments.textAdd": "Hinzufügen", "Common.Views.Comments.textAddComment": "Kommentar hinzufügen", "Common.Views.Comments.textAddCommentToDoc": "Kommentar zum Dokument hinzufügen", "Common.Views.Comments.textAddReply": "Antwort hinzufügen", + "Common.Views.Comments.textAll": "Alle", "Common.Views.Comments.textAnonym": "Gast", "Common.Views.Comments.textCancel": "Abbrechen", "Common.Views.Comments.textClose": "Schließen", @@ -148,6 +342,7 @@ "Common.Views.Comments.textResolve": "Lösen", "Common.Views.Comments.textResolved": "Gelöst", "Common.Views.Comments.textSort": "Kommentare sortieren", + "Common.Views.Comments.textViewResolved": "Sie haben keine Berechtigung, den Kommentar erneut zu öffnen", "Common.Views.CopyWarningDialog.textDontShow": "Diese Meldung nicht mehr anzeigen", "Common.Views.CopyWarningDialog.textMsg": "Die Funktionen \"Kopieren\", \"Ausschneiden\" und \"Einfügen\" können mithilfe den Schaltflächen in der Symbolleiste und Aktionen im Kontextmenü nur in dieser Editor-Registerkarte durchgeführt werden.

Für Kopieren oder Einfügen in oder aus anderen Anwendungen nutzen Sie die folgenden Tastenkombinationen:", "Common.Views.CopyWarningDialog.textTitle": "Funktionen \"Kopieren\", \"Ausschneiden\" und \"Einfügen\"", @@ -312,6 +507,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Erneut öffnen", "Common.Views.ReviewPopover.textReply": "Antworten", "Common.Views.ReviewPopover.textResolve": "Lösen", + "Common.Views.ReviewPopover.textViewResolved": "Sie haben keine Berechtigung, den Kommentar erneut zu öffnen", "Common.Views.ReviewPopover.txtDeleteTip": "Löschen", "Common.Views.ReviewPopover.txtEditTip": "Bearbeiten", "Common.Views.SaveAsDlg.textLoading": "Ladevorgang", @@ -469,6 +665,7 @@ "PE.Controllers.Main.textLongName": "Der Name einer Tabellenansicht darf maximal 128 Zeichen lang sein.", "PE.Controllers.Main.textNoLicenseTitle": "Lizenzlimit erreicht", "PE.Controllers.Main.textPaidFeature": "Kostenpflichtige Funktion", + "PE.Controllers.Main.textReconnect": "Verbindung wurde wiederhergestellt", "PE.Controllers.Main.textRemember": "Meine Auswahl merken", "PE.Controllers.Main.textRenameError": "Benutzername darf nicht leer sein.", "PE.Controllers.Main.textRenameLabel": "Geben Sie den Namen für Zusammenarbeit ein", @@ -750,6 +947,7 @@ "PE.Controllers.Main.warnNoLicense": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.
Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", "PE.Controllers.Main.warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", "PE.Controllers.Main.warnProcessRightsChange": "Das Recht, die Datei zu bearbeiten, wurde Ihnen verweigert.", + "PE.Controllers.Statusbar.textDisconnect": "Die Verbindung wurde unterbrochen
Verbindungsversuch... Bitte Verbindungseinstellungen überprüfen.", "PE.Controllers.Statusbar.zoomText": "Zoom {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "Die Schriftart, die Sie verwenden wollen, ist auf diesem Gerät nicht verfügbar.
Der Textstil wird mit einer der Systemschriften angezeigt, die gespeicherte Schriftart wird verwendet, wenn sie verfügbar ist.
Wollen Sie fortsetzen?", "PE.Controllers.Toolbar.textAccent": "Akzente", @@ -1086,6 +1284,29 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "PE.Controllers.Viewport.textFitPage": "Folie anpassen", "PE.Controllers.Viewport.textFitWidth": "Breite anpassen", + "PE.Views.Animation.strDelay": "Verzögern", + "PE.Views.Animation.strDuration": "Dauer", + "PE.Views.Animation.strRepeat": "Wiederholen", + "PE.Views.Animation.strRewind": "Zurückspulen", + "PE.Views.Animation.strStart": "Start", + "PE.Views.Animation.strTrigger": "Trigger", + "PE.Views.Animation.textMoreEffects": "Mehr Effekte anzeigen", + "PE.Views.Animation.textMoveEarlier": "Früher", + "PE.Views.Animation.textMoveLater": "Später", + "PE.Views.Animation.textMultiple": "Mehrfach", + "PE.Views.Animation.textNone": "Keine", + "PE.Views.Animation.textOnClickOf": "Beim Klicken auf", + "PE.Views.Animation.textOnClickSequence": "Bei Reihenfolge von Klicken", + "PE.Views.Animation.textStartAfterPrevious": "Nach vorheriger", + "PE.Views.Animation.textStartOnClick": "Beim Klicken", + "PE.Views.Animation.textStartWithPrevious": "Mit vorheriger", + "PE.Views.Animation.txtAddEffect": "Animation hinzufügen", + "PE.Views.Animation.txtAnimationPane": "Animationsbereich", + "PE.Views.Animation.txtParameters": "Parameter", + "PE.Views.Animation.txtPreview": "Vorschau", + "PE.Views.Animation.txtSec": "s", + "PE.Views.AnimationDialog.textPreviewEffect": "Effektvorschau", + "PE.Views.AnimationDialog.textTitle": "Mehr Effekte", "PE.Views.ChartSettings.textAdvanced": "Erweiterte Einstellungen anzeigen", "PE.Views.ChartSettings.textChartType": "Diagrammtyp ändern", "PE.Views.ChartSettings.textEditData": "Daten ändern", @@ -1165,6 +1386,7 @@ "PE.Views.DocumentHolder.textCut": "Ausschneiden", "PE.Views.DocumentHolder.textDistributeCols": "Spalten verteilen", "PE.Views.DocumentHolder.textDistributeRows": "Zeilen verteilen", + "PE.Views.DocumentHolder.textEditPoints": "Punkte bearbeiten", "PE.Views.DocumentHolder.textFlipH": "Horizontal kippen", "PE.Views.DocumentHolder.textFlipV": "Vertikal kippen", "PE.Views.DocumentHolder.textFromFile": "Aus Datei", @@ -1249,6 +1471,8 @@ "PE.Views.DocumentHolder.txtLimitUnder": "Grenzen unter dem Text", "PE.Views.DocumentHolder.txtMatchBrackets": "Eckige Klammern an Argumenthöhe anpassen", "PE.Views.DocumentHolder.txtMatrixAlign": "Matrixausrichtung", + "PE.Views.DocumentHolder.txtMoveSlidesToEnd": "Folie zum Ende verschieben", + "PE.Views.DocumentHolder.txtMoveSlidesToStart": "Folie zum Anfang verschieben", "PE.Views.DocumentHolder.txtNewSlide": "Neue Folie", "PE.Views.DocumentHolder.txtOverbar": "Linie über dem Text", "PE.Views.DocumentHolder.txtPasteDestFormat": "Zieldesign verwenden", @@ -1434,6 +1658,7 @@ "PE.Views.ImageSettings.textCrop": "Zuschneiden", "PE.Views.ImageSettings.textCropFill": "Ausfüllen", "PE.Views.ImageSettings.textCropFit": "Anpassen", + "PE.Views.ImageSettings.textCropToShape": "Auf Form zuschneiden", "PE.Views.ImageSettings.textEdit": "Bearbeiten", "PE.Views.ImageSettings.textEditObject": "Objekt bearbeiten", "PE.Views.ImageSettings.textFitSlide": "An Folie anpassen", @@ -1448,6 +1673,7 @@ "PE.Views.ImageSettings.textHintFlipV": "Vertikal kippen", "PE.Views.ImageSettings.textInsert": "Bild ersetzen", "PE.Views.ImageSettings.textOriginalSize": "Tatsächliche Größe", + "PE.Views.ImageSettings.textRecentlyUsed": "Zuletzt verwendet", "PE.Views.ImageSettings.textRotate90": "90 Grad drehen", "PE.Views.ImageSettings.textRotation": "Rotation", "PE.Views.ImageSettings.textSize": "Größe", @@ -1569,6 +1795,7 @@ "PE.Views.ShapeSettings.textPatternFill": "Muster", "PE.Views.ShapeSettings.textPosition": "Stellung", "PE.Views.ShapeSettings.textRadial": "Radial", + "PE.Views.ShapeSettings.textRecentlyUsed": "Zuletzt verwendet", "PE.Views.ShapeSettings.textRotate90": "90 Grad drehen", "PE.Views.ShapeSettings.textRotation": "Rotation", "PE.Views.ShapeSettings.textSelectImage": "Bild auswählen", @@ -1885,6 +2112,7 @@ "PE.Views.Toolbar.textColumnsTwo": "Zwei Spalten", "PE.Views.Toolbar.textItalic": "Kursiv", "PE.Views.Toolbar.textListSettings": "Listeneinstellungen", + "PE.Views.Toolbar.textRecentlyUsed": "Zuletzt verwendet", "PE.Views.Toolbar.textShapeAlignBottom": "Unten ausrichten", "PE.Views.Toolbar.textShapeAlignCenter": "Zentriert ausrichten", "PE.Views.Toolbar.textShapeAlignLeft": "Links ausrichten", @@ -1898,12 +2126,14 @@ "PE.Views.Toolbar.textStrikeout": "Durchgestrichen", "PE.Views.Toolbar.textSubscript": "Tiefgestellt", "PE.Views.Toolbar.textSuperscript": "Hochgestellt", + "PE.Views.Toolbar.textTabAnimation": "Animation", "PE.Views.Toolbar.textTabCollaboration": "Zusammenarbeit", "PE.Views.Toolbar.textTabFile": "Datei", "PE.Views.Toolbar.textTabHome": "Startseite", "PE.Views.Toolbar.textTabInsert": "Einfügen", "PE.Views.Toolbar.textTabProtect": "Schutz", "PE.Views.Toolbar.textTabTransitions": "Übergänge", + "PE.Views.Toolbar.textTabView": "Ansicht", "PE.Views.Toolbar.textTitleError": "Fehler", "PE.Views.Toolbar.textUnderline": "Unterstrichen", "PE.Views.Toolbar.tipAddSlide": "Folie hinzufügen", @@ -1957,6 +2187,7 @@ "PE.Views.Toolbar.tipViewSettings": "Ansichts-Einstellungen", "PE.Views.Toolbar.txtDistribHor": "Horizontal verteilen", "PE.Views.Toolbar.txtDistribVert": "Vertikal verteilen", + "PE.Views.Toolbar.txtDuplicateSlide": "Folie duplizieren", "PE.Views.Toolbar.txtGroup": "Gruppieren", "PE.Views.Toolbar.txtObjectsAlign": "Ausgewählte Objekte ausrichten", "PE.Views.Toolbar.txtScheme1": "Larissa", @@ -2018,5 +2249,13 @@ "PE.Views.Transitions.txtApplyToAll": "Auf alle Folien anwenden", "PE.Views.Transitions.txtParameters": "Parameter", "PE.Views.Transitions.txtPreview": "Vorschau", - "PE.Views.Transitions.txtSec": "s" + "PE.Views.Transitions.txtSec": "s", + "PE.Views.ViewTab.textAlwaysShowToolbar": "Symbolleiste immer anzeigen", + "PE.Views.ViewTab.textFitToSlide": "An Folie anpassen", + "PE.Views.ViewTab.textFitToWidth": "An Breite anpassen", + "PE.Views.ViewTab.textInterfaceTheme": "Thema der Benutzeroberfläche", + "PE.Views.ViewTab.textNotes": "Notizen", + "PE.Views.ViewTab.textRulers": "Lineale", + "PE.Views.ViewTab.textStatusBar": "Statusleiste", + "PE.Views.ViewTab.textZoom": "Zoom" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/es.json b/apps/presentationeditor/main/locale/es.json index 139dea7d3..d548c834d 100644 --- a/apps/presentationeditor/main/locale/es.json +++ b/apps/presentationeditor/main/locale/es.json @@ -240,11 +240,11 @@ "Common.Translation.warnFileLockedBtnEdit": "Crear copia", "Common.Translation.warnFileLockedBtnView": "Abrir para visualizar", "Common.UI.ButtonColored.textAutoColor": "Automático", - "Common.UI.ButtonColored.textNewColor": "Añadir nuevo color personalizado", + "Common.UI.ButtonColored.textNewColor": "Agregar nuevo color personalizado", "Common.UI.ComboBorderSize.txtNoBorders": "Sin bordes", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sin bordes", "Common.UI.ComboDataView.emptyComboText": "Sin estilo", - "Common.UI.ExtendedColorDialog.addButtonText": "Añadir", + "Common.UI.ExtendedColorDialog.addButtonText": "Agregar", "Common.UI.ExtendedColorDialog.textCurrent": "Actual", "Common.UI.ExtendedColorDialog.textHexErr": "El valor introducido es incorrecto.
Por favor, introduzca un valor de 000000 a FFFFFF.", "Common.UI.ExtendedColorDialog.textNew": "Nuevo", @@ -288,7 +288,7 @@ "Common.Views.About.txtPoweredBy": "Desarrollado por", "Common.Views.About.txtTel": "tel.: ", "Common.Views.About.txtVersion": "Versión ", - "Common.Views.AutoCorrectDialog.textAdd": "Añadir", + "Common.Views.AutoCorrectDialog.textAdd": "Agregar", "Common.Views.AutoCorrectDialog.textApplyText": "Aplicar mientras escribe", "Common.Views.AutoCorrectDialog.textAutoCorrect": "Autocorrección de texto", "Common.Views.AutoCorrectDialog.textAutoFormat": "Autoformato mientras escribe", @@ -314,7 +314,7 @@ "Common.Views.AutoCorrectDialog.textWarnAddRec": "Las funciones reconocidas deben contener solo letras de la A a la Z, mayúsculas o minúsculas.", "Common.Views.AutoCorrectDialog.textWarnResetRec": "Cualquier expresión que haya agregado se eliminará y las eliminadas se restaurarán. ¿Desea continuar?", "Common.Views.AutoCorrectDialog.warnReplace": "La entrada de autocorreción para %1 ya existe. ¿Desea reemplazarla?", - "Common.Views.AutoCorrectDialog.warnReset": "Cualquier autocorreción que haya agregado se eliminará y los modificados serán restaurados a sus valores originales. ¿Desea continuar?", + "Common.Views.AutoCorrectDialog.warnReset": "Las autocorrecciones que haya agregado se eliminarán y las modificadas recuperarán sus valores originales. ¿Desea continuar?", "Common.Views.AutoCorrectDialog.warnRestore": "La entrada de autocorrección para %1 será restablecida a su valor original. ¿Desea continuar?", "Common.Views.Chat.textSend": "Enviar", "Common.Views.Comments.mniAuthorAsc": "Autor de A a Z", @@ -324,10 +324,10 @@ "Common.Views.Comments.mniFilterGroups": "Filtrar por grupo", "Common.Views.Comments.mniPositionAsc": "Desde arriba", "Common.Views.Comments.mniPositionDesc": "Desde abajo", - "Common.Views.Comments.textAdd": "Añadir", - "Common.Views.Comments.textAddComment": "Añadir", - "Common.Views.Comments.textAddCommentToDoc": "Añadir comentario a documento", - "Common.Views.Comments.textAddReply": "Añadir respuesta", + "Common.Views.Comments.textAdd": "Agregar", + "Common.Views.Comments.textAddComment": "Agregar comentario", + "Common.Views.Comments.textAddCommentToDoc": "Agregar comentario al documento", + "Common.Views.Comments.textAddReply": "Agregar respuesta", "Common.Views.Comments.textAll": "Todo", "Common.Views.Comments.textAnonym": "Visitante", "Common.Views.Comments.textCancel": "Cancelar", @@ -336,7 +336,7 @@ "Common.Views.Comments.textComments": "Comentarios", "Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEnterCommentHint": "Introduzca su comentario aquí", - "Common.Views.Comments.textHintAddComment": "Añadir comentario", + "Common.Views.Comments.textHintAddComment": "Agregar comentario", "Common.Views.Comments.textOpenAgain": "Abrir de nuevo", "Common.Views.Comments.textReply": "Responder", "Common.Views.Comments.textResolve": "Resolver", @@ -433,14 +433,14 @@ "Common.Views.Plugins.textStop": "Detener", "Common.Views.Protection.hintAddPwd": "Encriptar con contraseña", "Common.Views.Protection.hintPwd": "Cambie o elimine la contraseña", - "Common.Views.Protection.hintSignature": "Añadir firma digital o", - "Common.Views.Protection.txtAddPwd": "Añadir contraseña", + "Common.Views.Protection.hintSignature": "Agregar firma digital o línea de firma", + "Common.Views.Protection.txtAddPwd": "Agregar contraseña", "Common.Views.Protection.txtChangePwd": "Cambiar contraseña", "Common.Views.Protection.txtDeletePwd": "Eliminar contraseña", "Common.Views.Protection.txtEncrypt": "Encriptar", - "Common.Views.Protection.txtInvisibleSignature": "Añadir firma digital", + "Common.Views.Protection.txtInvisibleSignature": "Agregar firma digital", "Common.Views.Protection.txtSignature": "Firma", - "Common.Views.Protection.txtSignatureLine": "Añadir línea de firma", + "Common.Views.Protection.txtSignatureLine": "Agregar línea de firma", "Common.Views.RenameDialog.textName": "Nombre de archivo", "Common.Views.RenameDialog.txtInvalidName": "El nombre de archivo no debe contener los símbolos siguientes:", "Common.Views.ReviewChanges.hintNext": "Al siguiente cambio", @@ -497,8 +497,8 @@ "Common.Views.ReviewChanges.txtSpelling": "Сorrección ortográfica", "Common.Views.ReviewChanges.txtTurnon": "Rastrear cambios", "Common.Views.ReviewChanges.txtView": "Modo de visualización", - "Common.Views.ReviewPopover.textAdd": "Añadir", - "Common.Views.ReviewPopover.textAddReply": "Añadir respuesta", + "Common.Views.ReviewPopover.textAdd": "Agregar", + "Common.Views.ReviewPopover.textAddReply": "Agregar respuesta", "Common.Views.ReviewPopover.textCancel": "Cancelar", "Common.Views.ReviewPopover.textClose": "Cerrar", "Common.Views.ReviewPopover.textEdit": "OK", @@ -529,7 +529,7 @@ "Common.Views.SignDialog.textValid": "Válido desde %1 hasta %2", "Common.Views.SignDialog.tipFontName": "Nombre del tipo de letra", "Common.Views.SignDialog.tipFontSize": "Tamaño de letra", - "Common.Views.SignSettingsDialog.textAllowComment": "Permitir a quien firma añadir comentarios en el diálogo de firma", + "Common.Views.SignSettingsDialog.textAllowComment": "Permitir al firmante agregar comentarios en el diálogo de firma", "Common.Views.SignSettingsDialog.textInfo": "Información de quien firma", "Common.Views.SignSettingsDialog.textInfoEmail": "Correo electrónico", "Common.Views.SignSettingsDialog.textInfoName": "Nombre", @@ -675,8 +675,8 @@ "PE.Controllers.Main.textTryUndoRedoWarn": "Las funciones Deshacer/Rehacer están desactivadas en el modo de co-edición rápido.", "PE.Controllers.Main.titleLicenseExp": "Licencia ha expirado", "PE.Controllers.Main.titleServerVersion": "Editor ha sido actualizado", - "PE.Controllers.Main.txtAddFirstSlide": "Haga clic para añadir la primera diapositiva", - "PE.Controllers.Main.txtAddNotes": "Haga clic para añadir notas", + "PE.Controllers.Main.txtAddFirstSlide": "Haga clic para agregar la primera diapositiva", + "PE.Controllers.Main.txtAddNotes": "Haga clic para agregar notas", "PE.Controllers.Main.txtArt": "Su texto aquí", "PE.Controllers.Main.txtBasicShapes": "Formas básicas", "PE.Controllers.Main.txtButtons": "Botones", @@ -1327,8 +1327,8 @@ "PE.Views.DateTimeDialog.textUpdate": "Actualizar automáticamente", "PE.Views.DateTimeDialog.txtTitle": "Fecha y hora", "PE.Views.DocumentHolder.aboveText": "Arriba", - "PE.Views.DocumentHolder.addCommentText": "Añadir comentario", - "PE.Views.DocumentHolder.addToLayoutText": "Añadir al Diseño", + "PE.Views.DocumentHolder.addCommentText": "Agregar comentario", + "PE.Views.DocumentHolder.addToLayoutText": "Agregar al Diseño", "PE.Views.DocumentHolder.advancedImageText": "Ajustes avanzados de imagen", "PE.Views.DocumentHolder.advancedParagraphText": "Ajustes avanzados de párrafo", "PE.Views.DocumentHolder.advancedShapeText": "Ajustes avanzados de forma", @@ -1408,16 +1408,16 @@ "PE.Views.DocumentHolder.textSlideSettings": "Ajustes de diapositiva", "PE.Views.DocumentHolder.textUndo": "Deshacer", "PE.Views.DocumentHolder.tipIsLocked": "Otro usuario está editando este elemento ahora.", - "PE.Views.DocumentHolder.toDictionaryText": "Añadir a Diccionario", - "PE.Views.DocumentHolder.txtAddBottom": "Añadir borde inferior", - "PE.Views.DocumentHolder.txtAddFractionBar": "Añadir barra de fracción", - "PE.Views.DocumentHolder.txtAddHor": "Añadir línea horizontal", - "PE.Views.DocumentHolder.txtAddLB": "Añadir línea inferior izquierda", - "PE.Views.DocumentHolder.txtAddLeft": "Añadir borde izquierdo", - "PE.Views.DocumentHolder.txtAddLT": "Añadir línea superior izquierda", - "PE.Views.DocumentHolder.txtAddRight": "Añadir borde derecho", - "PE.Views.DocumentHolder.txtAddTop": "Añadir borde superior", - "PE.Views.DocumentHolder.txtAddVer": "Añadir línea vertical", + "PE.Views.DocumentHolder.toDictionaryText": "Agregar al diccionario", + "PE.Views.DocumentHolder.txtAddBottom": "Agregar borde inferior", + "PE.Views.DocumentHolder.txtAddFractionBar": "Agregar barra de fracción", + "PE.Views.DocumentHolder.txtAddHor": "Agregar línea horizontal", + "PE.Views.DocumentHolder.txtAddLB": "Agregar línea inferior izquierda", + "PE.Views.DocumentHolder.txtAddLeft": "Agregar borde izquierdo", + "PE.Views.DocumentHolder.txtAddLT": "Agregar línea superior izquierda", + "PE.Views.DocumentHolder.txtAddRight": "Agregar borde derecho", + "PE.Views.DocumentHolder.txtAddTop": "Agregar borde superior", + "PE.Views.DocumentHolder.txtAddVer": "Agregar línea vertical", "PE.Views.DocumentHolder.txtAlign": "Alinear", "PE.Views.DocumentHolder.txtAlignToChar": "Alinear a carácter", "PE.Views.DocumentHolder.txtArrange": "Arreglar", @@ -1543,8 +1543,8 @@ "PE.Views.FileMenuPanels.CreateNew.txtBlank": "Presentación en blanco", "PE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Crear nueva", "PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Aplicar", - "PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Añadir autor", - "PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Añadir texto", + "PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Agregar autor", + "PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Agregar texto", "PE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Aplicación", "PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor", "PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Cambiar derechos de acceso", @@ -1567,7 +1567,7 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Editar presentación", "PE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "La edición eliminará las firmas de la presentación.
¿Está seguro de que quiere continuar?", "PE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Esta presentación se ha protegido con una contraseña", - "PE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Firmas válidas se han añadido a la presentación. La presentación está protegida y no se puede editar.", + "PE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Se han agregado firmas válidas al documento. El documento está protegido contra la edición.", "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Algunas de las firmas digitales en la presentación son inválidas o no se pudieron verificar. La presentación está protegida y no se puede editar.", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "Ver firmas", "PE.Views.FileMenuPanels.Settings.okButtonText": "Aplicar", @@ -1579,7 +1579,7 @@ "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Usted tendrá que aceptar los cambios antes de poder verlos", "PE.Views.FileMenuPanels.Settings.strFast": "rápido", "PE.Views.FileMenuPanels.Settings.strFontRender": "Hinting", - "PE.Views.FileMenuPanels.Settings.strForcesave": "Añadir la versión al almacenamiento después de hacer clic en Guardar o Ctrl+S", + "PE.Views.FileMenuPanels.Settings.strForcesave": "Agregar la versión al almacenamiento después de hacer clic en Guardar o Ctrl+S", "PE.Views.FileMenuPanels.Settings.strInputMode": "Activar jeroglíficos", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Ajustes de macros", "PE.Views.FileMenuPanels.Settings.strPaste": "Cortar, copiar y pegar", @@ -1804,7 +1804,7 @@ "PE.Views.ShapeSettings.textStyle": "Estilo", "PE.Views.ShapeSettings.textTexture": "De textura", "PE.Views.ShapeSettings.textTile": "Mosaico", - "PE.Views.ShapeSettings.tipAddGradientPoint": "Añadir punto de degradado", + "PE.Views.ShapeSettings.tipAddGradientPoint": "Agregar punto de degradado", "PE.Views.ShapeSettings.tipRemoveGradientPoint": "Eliminar punto de degradado", "PE.Views.ShapeSettings.txtBrownPaper": "Papel marrón", "PE.Views.ShapeSettings.txtCanvas": "Lienzo", @@ -1870,7 +1870,7 @@ "PE.Views.SignatureSettings.txtContinueEditing": "Editar de todas maneras", "PE.Views.SignatureSettings.txtEditWarning": "La edición eliminará las firmas de la presentación.
¿Está seguro de que quiere continuar?", "PE.Views.SignatureSettings.txtRemoveWarning": "¿Desea eliminar esta firma?
No se puede deshacer.", - "PE.Views.SignatureSettings.txtSigned": "Firmas válidas se han añadido a la presentación. La presentación está protegida y no se puede editar.", + "PE.Views.SignatureSettings.txtSigned": "Se han agregado firmas válidas al documento. El documento está protegido contra la edición.", "PE.Views.SignatureSettings.txtSignedInvalid": "Algunas de las firmas digitales en la presentación son inválidas o no se pudieron verificar. La presentación está protegida y no se puede editar.", "PE.Views.SlideSettings.strBackground": "Color de fondo", "PE.Views.SlideSettings.strColor": "Color", @@ -1903,7 +1903,7 @@ "PE.Views.SlideSettings.textStyle": "Estilo", "PE.Views.SlideSettings.textTexture": "De textura", "PE.Views.SlideSettings.textTile": "Mosaico", - "PE.Views.SlideSettings.tipAddGradientPoint": "Añadir punto de degradado", + "PE.Views.SlideSettings.tipAddGradientPoint": "Agregar punto de degradado", "PE.Views.SlideSettings.tipRemoveGradientPoint": "Eliminar punto de degradado", "PE.Views.SlideSettings.txtBrownPaper": "Papel marrón", "PE.Views.SlideSettings.txtCanvas": "Lienzo", @@ -2048,7 +2048,7 @@ "PE.Views.TextArtSettings.textTexture": "De textura", "PE.Views.TextArtSettings.textTile": "Mosaico", "PE.Views.TextArtSettings.textTransform": "Transformar", - "PE.Views.TextArtSettings.tipAddGradientPoint": "Añadir punto de degradado", + "PE.Views.TextArtSettings.tipAddGradientPoint": "Agregar punto de degradado", "PE.Views.TextArtSettings.tipRemoveGradientPoint": "Eliminar punto de degradado", "PE.Views.TextArtSettings.txtBrownPaper": "Papel marrón", "PE.Views.TextArtSettings.txtCanvas": "Lienzo", @@ -2062,8 +2062,8 @@ "PE.Views.TextArtSettings.txtNoBorders": "Sin línea", "PE.Views.TextArtSettings.txtPapyrus": "Papiro", "PE.Views.TextArtSettings.txtWood": "Madera", - "PE.Views.Toolbar.capAddSlide": "Añadir diapositiva", - "PE.Views.Toolbar.capBtnAddComment": "Añadir comentario", + "PE.Views.Toolbar.capAddSlide": "Agregar diapositiva", + "PE.Views.Toolbar.capBtnAddComment": "Agregar comentario", "PE.Views.Toolbar.capBtnComment": "Comentario", "PE.Views.Toolbar.capBtnDateTime": "Fecha y hora", "PE.Views.Toolbar.capBtnInsHeader": "Pie de página", @@ -2136,7 +2136,7 @@ "PE.Views.Toolbar.textTabView": "Vista", "PE.Views.Toolbar.textTitleError": "Error", "PE.Views.Toolbar.textUnderline": "Subrayar", - "PE.Views.Toolbar.tipAddSlide": "Añadir diapositiva", + "PE.Views.Toolbar.tipAddSlide": "Agregar diapositiva", "PE.Views.Toolbar.tipBack": "Atrás", "PE.Views.Toolbar.tipChangeCase": "Cambiar mayúsculas y minúsculas", "PE.Views.Toolbar.tipChangeChart": "Cambiar tipo de gráfico", @@ -2160,7 +2160,7 @@ "PE.Views.Toolbar.tipInsertAudio": "Insertar audio", "PE.Views.Toolbar.tipInsertChart": "Insertar gráfico", "PE.Views.Toolbar.tipInsertEquation": "Insertar ecuación", - "PE.Views.Toolbar.tipInsertHyperlink": "Añadir hiperenlace", + "PE.Views.Toolbar.tipInsertHyperlink": "Agregar hipervínculo", "PE.Views.Toolbar.tipInsertImage": "Insertar imagen", "PE.Views.Toolbar.tipInsertShape": "Insertar autoforma", "PE.Views.Toolbar.tipInsertSymbol": "Insertar symboló", diff --git a/apps/presentationeditor/main/locale/hu.json b/apps/presentationeditor/main/locale/hu.json index f63fd3844..9ac5a3b5d 100644 --- a/apps/presentationeditor/main/locale/hu.json +++ b/apps/presentationeditor/main/locale/hu.json @@ -47,6 +47,10 @@ "Common.define.chartData.textScatterSmoothMarker": "Szórás sima vonalakkal és jelölőkkel", "Common.define.chartData.textStock": "Részvény", "Common.define.chartData.textSurface": "Felület", + "Common.define.effectData.textLeftDown": "Balra le", + "Common.define.effectData.textLeftUp": "Balra fel", + "Common.define.effectData.textRightDown": "Jobbra le", + "Common.define.effectData.textRightUp": "Jobbra fel", "Common.Translation.warnFileLocked": "A fájlt egy másik alkalmazásban szerkesztik. Folytathatja a szerkesztést és elmentheti másolatként.", "Common.Translation.warnFileLockedBtnEdit": "Másolat létrehozása", "Common.Translation.warnFileLockedBtnView": "Megnyitás megtekintéshez", @@ -750,6 +754,7 @@ "PE.Controllers.Main.warnNoLicense": "Elérte a(z) %1 szerkesztőhöz tartozó egyidejű csatlakozás korlátját. Ez a dokumentum csak megtekintésre nyílik meg.
Vegye fel a kapcsolatot a(z) %1 értékesítési csapattal a személyes frissítési feltételekért.", "PE.Controllers.Main.warnNoLicenseUsers": "Elérte a(z) %1 szerkesztőhöz tartozó felhasználói korlátját. Vegye fel a kapcsolatot a(z) %1 értékesítési csapattal a személyes frissítési feltételekért.", "PE.Controllers.Main.warnProcessRightsChange": "Nincs joga szerkeszteni a fájl-t.", + "PE.Controllers.Statusbar.textDisconnect": "A kapcsolat megszakadt
Probálkoás a kapcsolat létrehozására. Kérjük, ellenőrizze a csatlakozási beállításokat.", "PE.Controllers.Statusbar.zoomText": "Zoom {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "A menteni kívánt betűkészlet nem érhető el az aktuális eszközön.
A szövegstílus a rendszer egyik betűkészletével jelenik meg, a mentett betűtípust akkor használja, ha elérhető.
Folytatni szeretné?", "PE.Controllers.Toolbar.textAccent": "Accents", diff --git a/apps/presentationeditor/main/locale/ja.json b/apps/presentationeditor/main/locale/ja.json index d454ffdb1..d34fb05ae 100644 --- a/apps/presentationeditor/main/locale/ja.json +++ b/apps/presentationeditor/main/locale/ja.json @@ -140,6 +140,7 @@ "Common.Views.Comments.textAddComment": "コメントの追加", "Common.Views.Comments.textAddCommentToDoc": "ドキュメントにコメントの追加", "Common.Views.Comments.textAddReply": "返信の追加", + "Common.Views.Comments.textAll": "すべて", "Common.Views.Comments.textAnonym": "ゲスト", "Common.Views.Comments.textCancel": "キャンセル", "Common.Views.Comments.textClose": "閉じる", @@ -755,6 +756,7 @@ "PE.Controllers.Main.warnNoLicense": "%1エディター 時接続数の制限に達しました。この文書が見るだけのために開かれる。個人的なアップグレード条件については、%1営業チームを連絡してください。", "PE.Controllers.Main.warnNoLicenseUsers": "%1エディターのユーザー数が上限に達しました。 個人アップグレードする条件については、%1営業チームにお問い合わせください。", "PE.Controllers.Main.warnProcessRightsChange": "ファイルを編集する権限を拒否されています。", + "PE.Controllers.Statusbar.textDisconnect": "切断されました
設定を確認してください。", "PE.Controllers.Statusbar.zoomText": "ズーム{0}%", "PE.Controllers.Toolbar.confirmAddFontName": "保存しようとしているフォントを現在のデバイスで使用することができません。
システムフォントを使って、テキストのスタイルが表示されます。利用できます時、保存されたフォントが使用されます。
続行しますか。", "PE.Controllers.Toolbar.textAccent": "ダイアクリティカル・マーク", @@ -1305,7 +1307,7 @@ "PE.Views.FileMenu.btnBackCaption": "ファイルの場所を開く", "PE.Views.FileMenu.btnCloseMenuCaption": "(←戻る)", "PE.Views.FileMenu.btnCreateNewCaption": "新規作成", - "PE.Views.FileMenu.btnDownloadCaption": "ダウンロード...", + "PE.Views.FileMenu.btnDownloadCaption": "名前を付けてダウンロード", "PE.Views.FileMenu.btnExitCaption": "終了", "PE.Views.FileMenu.btnFileOpenCaption": "開く", "PE.Views.FileMenu.btnHelpCaption": "ヘルプ...", diff --git a/apps/presentationeditor/main/locale/sv.json b/apps/presentationeditor/main/locale/sv.json index 17399fedf..e888f1196 100644 --- a/apps/presentationeditor/main/locale/sv.json +++ b/apps/presentationeditor/main/locale/sv.json @@ -47,9 +47,200 @@ "Common.define.chartData.textScatterSmoothMarker": "Sprid med mjuka linjer och markeringar", "Common.define.chartData.textStock": "Lager", "Common.define.chartData.textSurface": "Yta", + "Common.define.effectData.textAcross": "Tvärs över", + "Common.define.effectData.textAppear": "Dyka upp", + "Common.define.effectData.textArcDown": "Båge neråt", + "Common.define.effectData.textArcLeft": "Båge vänster", + "Common.define.effectData.textArcRight": "Båge höger", + "Common.define.effectData.textArcUp": "Båge uppåt", + "Common.define.effectData.textBasic": "Grundläggande", + "Common.define.effectData.textBasicSwivel": "Enkel snurra", + "Common.define.effectData.textBasicZoom": "Enkel zoomning", + "Common.define.effectData.textBean": "Böna", + "Common.define.effectData.textBlinds": "Persienner", + "Common.define.effectData.textBlink": "Blinka", + "Common.define.effectData.textBoldFlash": "Fet blixt", + "Common.define.effectData.textBoldReveal": "Fet Reveal", + "Common.define.effectData.textBoomerang": "Bumerang", + "Common.define.effectData.textBounce": "Studsa", + "Common.define.effectData.textBounceLeft": "Studsa vänster", + "Common.define.effectData.textBounceRight": "Studsa höger", + "Common.define.effectData.textBox": "Ruta", + "Common.define.effectData.textBrushColor": "Penselfärg", + "Common.define.effectData.textCenterRevolve": "Centrum rotera", + "Common.define.effectData.textCheckerboard": "Schackbräde", + "Common.define.effectData.textCircle": "Cirkel", + "Common.define.effectData.textCollapse": "Dra ihop", + "Common.define.effectData.textColorPulse": "Färgpuls", + "Common.define.effectData.textComplementaryColor": "Komplementfärg", + "Common.define.effectData.textComplementaryColor2": "Komplementfärg 2", + "Common.define.effectData.textCompress": "Dra ihop", + "Common.define.effectData.textContrast": "Kontrast", + "Common.define.effectData.textContrastingColor": "Kontrastfärg", + "Common.define.effectData.textCredits": "Lista över medverkande", + "Common.define.effectData.textCrescentMoon": "Halvmåne", + "Common.define.effectData.textCurveDown": "Böj nedåt", + "Common.define.effectData.textCurvedSquare": "Böjd kvadrat", + "Common.define.effectData.textCurvedX": "böjt X", + "Common.define.effectData.textCurvyLeft": "Kurvig vänster", + "Common.define.effectData.textCurvyRight": "Kurvig höger", + "Common.define.effectData.textCurvyStar": "Kurvig stjärna", + "Common.define.effectData.textCustomPath": "Anpassad sökväg", + "Common.define.effectData.textCuverUp": "Böj uppåt", + "Common.define.effectData.textDarken": "Mörkna", + "Common.define.effectData.textDecayingWave": "Sönderfallande våg", + "Common.define.effectData.textDesaturate": "Omättad", + "Common.define.effectData.textDiagonalDownRight": "Diagonalt ner höger", + "Common.define.effectData.textDiagonalUpRight": "Diagonalt upp höger", + "Common.define.effectData.textDiamond": "Diamant", + "Common.define.effectData.textDisappear": "Försvinna", + "Common.define.effectData.textDissolveIn": "Upplösa in", + "Common.define.effectData.textDissolveOut": "Upplösa ut", + "Common.define.effectData.textDown": "Ner", + "Common.define.effectData.textDrop": "Släpp", + "Common.define.effectData.textEmphasis": "Betonings effekt", + "Common.define.effectData.textEntrance": "Entréeffekt", + "Common.define.effectData.textEqualTriangle": "Liksidig triangel", + "Common.define.effectData.textExciting": "Spännande", + "Common.define.effectData.textExit": "Utgångseffekt", + "Common.define.effectData.textExpand": "Expandera", + "Common.define.effectData.textFade": "Blekna", + "Common.define.effectData.textFigureFour": "Figur 8 fyra", + "Common.define.effectData.textFillColor": "Fyllnadsfärg", + "Common.define.effectData.textFlip": "Vänd", + "Common.define.effectData.textFloat": "Flyt", + "Common.define.effectData.textFloatDown": "Flyt nedåt", + "Common.define.effectData.textFloatIn": "Flyt in", + "Common.define.effectData.textFloatOut": "Flyt ut", + "Common.define.effectData.textFloatUp": "Flyt upp", + "Common.define.effectData.textFlyIn": "Flyg in", + "Common.define.effectData.textFlyOut": "Flyg ut", + "Common.define.effectData.textFontColor": "Teckensnittsfärg", + "Common.define.effectData.textFootball": "Fotboll", + "Common.define.effectData.textFromBottom": "Från nederkant", + "Common.define.effectData.textFromBottomLeft": "Från vänster nederkant", + "Common.define.effectData.textFromBottomRight": "Från höger nederkant", + "Common.define.effectData.textFromLeft": "Från vänster", + "Common.define.effectData.textFromRight": "Från höger", + "Common.define.effectData.textFromTop": "Från ovankant", + "Common.define.effectData.textFromTopLeft": "Från vänster ovankant", + "Common.define.effectData.textFromTopRight": "Från höger ovankant", + "Common.define.effectData.textFunnel": "Tratt", + "Common.define.effectData.textGrowShrink": "Väx/Krymp", + "Common.define.effectData.textGrowTurn": "Växa och vända", + "Common.define.effectData.textGrowWithColor": "Väx med färg", + "Common.define.effectData.textHeart": "Hjärta", + "Common.define.effectData.textHeartbeat": "Hjärtslag", + "Common.define.effectData.textHexagon": "Sexhörning", + "Common.define.effectData.textHorizontal": "Horisontal", + "Common.define.effectData.textHorizontalFigure": "Horisontal figur 8", + "Common.define.effectData.textHorizontalIn": "Horisontal in", + "Common.define.effectData.textHorizontalOut": "Horisontal ut", + "Common.define.effectData.textIn": "In", + "Common.define.effectData.textInFromScreenCenter": "In från skärmens mitt", + "Common.define.effectData.textInSlightly": "Något inåt", + "Common.define.effectData.textInToScreenCenter": "In till skärmens mitt", + "Common.define.effectData.textInvertedSquare": "Omvänd kvadrat", + "Common.define.effectData.textInvertedTriangle": "Omvänd triangel", + "Common.define.effectData.textLeft": "Vänster", + "Common.define.effectData.textLeftDown": "Vänster ner", + "Common.define.effectData.textLeftUp": "Vänster upp", + "Common.define.effectData.textLighten": "Lätta", + "Common.define.effectData.textLineColor": "Linje färg", + "Common.define.effectData.textLinesCurves": "Linjer kurva", + "Common.define.effectData.textLoopDeLoop": "Loop de Loop", + "Common.define.effectData.textModerate": "Måttlig", + "Common.define.effectData.textNeutron": "Neutron", + "Common.define.effectData.textObjectCenter": "Objektets mitt", + "Common.define.effectData.textObjectColor": "Objektets färg", + "Common.define.effectData.textOctagon": "Oktogon", + "Common.define.effectData.textOut": "Ut", + "Common.define.effectData.textOutFromScreenBottom": "Ut från skärmens nederkant", + "Common.define.effectData.textOutSlightly": "Något utåt", + "Common.define.effectData.textParallelogram": "Parallellogram", + "Common.define.effectData.textPath": "Rörelseväg", + "Common.define.effectData.textPeanut": "Jordnöt", + "Common.define.effectData.textPeekIn": "Topp inåt", + "Common.define.effectData.textPeekOut": "Topp utåt", + "Common.define.effectData.textPentagon": "Femhörning", + "Common.define.effectData.textPinwheel": "Vindsnurra", + "Common.define.effectData.textPlus": "Plus", + "Common.define.effectData.textPointStar": "Stjärnpunkt", + "Common.define.effectData.textPointStar4": "4 punktstjärna", + "Common.define.effectData.textPointStar5": "5 punktstjärna", + "Common.define.effectData.textPointStar6": "6 punktstjärna", + "Common.define.effectData.textPointStar8": "8 punktstjärna", + "Common.define.effectData.textPulse": "Puls", + "Common.define.effectData.textRandomBars": "Slumpmässiga staplar", + "Common.define.effectData.textRight": "Höger", + "Common.define.effectData.textRightDown": "Höger ner", + "Common.define.effectData.textRightTriangle": "Höger triangel", + "Common.define.effectData.textRightUp": "Höger upp", + "Common.define.effectData.textRiseUp": "Stiga upp", + "Common.define.effectData.textSCurve1": "S kurva 1", + "Common.define.effectData.textSCurve2": "S kurva 2", + "Common.define.effectData.textShape": "Form", + "Common.define.effectData.textShimmer": "Skimmer", + "Common.define.effectData.textShrinkTurn": "Krymp och sväng", + "Common.define.effectData.textSineWave": "Sinusvåg", + "Common.define.effectData.textSinkDown": "Sjunk nedåt", + "Common.define.effectData.textSlideCenter": "Glid mot mitten", + "Common.define.effectData.textSpecial": "Särskild", + "Common.define.effectData.textSpin": "Snurra", + "Common.define.effectData.textSpinner": "Spinnare", + "Common.define.effectData.textSpiralIn": "Spiral innåt", + "Common.define.effectData.textSpiralLeft": "Spiral vänster", + "Common.define.effectData.textSpiralOut": "Spiral utåt", + "Common.define.effectData.textSpiralRight": "Spiral höger", + "Common.define.effectData.textSplit": "Dela", + "Common.define.effectData.textSpoke1": "1 eker", + "Common.define.effectData.textSpoke2": "2 ekrar", + "Common.define.effectData.textSpoke3": "3 ekrar", + "Common.define.effectData.textSpoke4": "4 ekrar", + "Common.define.effectData.textSpoke8": "8 ekrar", + "Common.define.effectData.textSpring": "Fjädra", + "Common.define.effectData.textSquare": "Fyrkant", + "Common.define.effectData.textStairsDown": "Trappor nedåt", + "Common.define.effectData.textStretch": "Sträck", + "Common.define.effectData.textStrips": "Remsor", + "Common.define.effectData.textSubtle": "Subtil", + "Common.define.effectData.textSwivel": "Snurra", + "Common.define.effectData.textSwoosh": "Sus", + "Common.define.effectData.textTeardrop": "Tår", + "Common.define.effectData.textTeeter": "Gungbräda", + "Common.define.effectData.textToBottom": "Till nederkant", + "Common.define.effectData.textToBottomLeft": "Till vänster nederkant", + "Common.define.effectData.textToBottomRight": "Till höger nederkant", + "Common.define.effectData.textToFromScreenBottom": "Ut till skärmens nederkant", + "Common.define.effectData.textToLeft": "Till vänster", + "Common.define.effectData.textToRight": "Till höger", + "Common.define.effectData.textToTop": "Till ovankant", + "Common.define.effectData.textToTopLeft": "Till vänster överkant", + "Common.define.effectData.textToTopRight": "Till höger överkant", + "Common.define.effectData.textTransparency": "Genomskinlighet", + "Common.define.effectData.textTrapezoid": "Trapets", + "Common.define.effectData.textTurnDown": "Skruva ner", + "Common.define.effectData.textTurnDownRight": "dra ner åt höger", + "Common.define.effectData.textTurnUp": "Skruva upp", + "Common.define.effectData.textTurnUpRight": "Skruva upp åt höger", + "Common.define.effectData.textUnderline": "Understryka", + "Common.define.effectData.textUp": "Upp", + "Common.define.effectData.textVertical": "Vertikal", + "Common.define.effectData.textVerticalFigure": "Vertikal figur 8", + "Common.define.effectData.textVerticalIn": "Vertikal in", + "Common.define.effectData.textVerticalOut": "Vertikal ut", + "Common.define.effectData.textWave": "Våg", + "Common.define.effectData.textWedge": "Kil", + "Common.define.effectData.textWheel": "Hjul", + "Common.define.effectData.textWhip": "Piska", + "Common.define.effectData.textWipe": "Torka", + "Common.define.effectData.textZigzag": "Sicksack", + "Common.define.effectData.textZoom": "Förstora", "Common.Translation.warnFileLocked": "Dokumentet används av ett annat program. Du kan fortsätta redigera och spara den som en kopia.", "Common.Translation.warnFileLockedBtnEdit": "Skapa en kopia", "Common.Translation.warnFileLockedBtnView": "Öppna skrivskyddad", + "Common.UI.ButtonColored.textAutoColor": "Automatisk", + "Common.UI.ButtonColored.textNewColor": "Lägg till ny anpassad färg", "Common.UI.ComboBorderSize.txtNoBorders": "Inga ramar", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Inga ramar", "Common.UI.ComboDataView.emptyComboText": "Inga stilar", @@ -59,6 +250,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Ny", "Common.UI.ExtendedColorDialog.textRGBErr": "Det angivna värdet är inkorrekt.
Vänligen ange ett numeriskt värde mellan 0 och 255", "Common.UI.HSBColorPicker.textNoColor": "Ingen färg", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Dölj lösenord", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Visa lösenord", "Common.UI.SearchDialog.textHighlight": "Markera resultat", "Common.UI.SearchDialog.textMatchCase": "Skiftlägeskänslig", "Common.UI.SearchDialog.textReplaceDef": "Ange ersättningstext", @@ -97,11 +290,12 @@ "Common.Views.About.txtVersion": "Version", "Common.Views.AutoCorrectDialog.textAdd": "Lägg till", "Common.Views.AutoCorrectDialog.textApplyText": "Korrigera när du skriver", - "Common.Views.AutoCorrectDialog.textAutoCorrect": "Autokorrigering", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Autokorrigering av text", "Common.Views.AutoCorrectDialog.textAutoFormat": "Autoformat när du skriver", "Common.Views.AutoCorrectDialog.textBulleted": "Automatiska punktlistor", "Common.Views.AutoCorrectDialog.textBy": "Av", "Common.Views.AutoCorrectDialog.textDelete": "Radera", + "Common.Views.AutoCorrectDialog.textFLCells": "Sätt den första bokstaven i tabellcellerna till en versal", "Common.Views.AutoCorrectDialog.textFLSentence": "Stor bokstav varje mening", "Common.Views.AutoCorrectDialog.textHyperlink": "Sökvägar för internet och nätverk med hyperlänk", "Common.Views.AutoCorrectDialog.textHyphens": "Bindestreck (--) med streck (—)", @@ -123,13 +317,22 @@ "Common.Views.AutoCorrectDialog.warnReset": "All autokorrigering som du lagt till kommer att tas bort och ändringar kommer att återställas till sina ursprungliga värden. Vill du fortsätta?", "Common.Views.AutoCorrectDialog.warnRestore": "Autokorrigeringen för %1 återställs till sitt ursprungliga värde. Vill du fortsätta?", "Common.Views.Chat.textSend": "Skicka", + "Common.Views.Comments.mniAuthorAsc": "Författare A till Ö", + "Common.Views.Comments.mniAuthorDesc": "Författare Ö till A", + "Common.Views.Comments.mniDateAsc": "Äldsta", + "Common.Views.Comments.mniDateDesc": "Nyaste", + "Common.Views.Comments.mniFilterGroups": "Filtrera via grupp", + "Common.Views.Comments.mniPositionAsc": "Från ovankant", + "Common.Views.Comments.mniPositionDesc": "Från nederkant", "Common.Views.Comments.textAdd": "Lägg till", "Common.Views.Comments.textAddComment": "Lägg till kommentar", "Common.Views.Comments.textAddCommentToDoc": "Lägg till kommentar till dokumentet", "Common.Views.Comments.textAddReply": "Lägg till svar", + "Common.Views.Comments.textAll": "Alla", "Common.Views.Comments.textAnonym": "Gäst", "Common.Views.Comments.textCancel": "Avbryt", "Common.Views.Comments.textClose": "Stäng", + "Common.Views.Comments.textClosePanel": "Stäng kommentarer", "Common.Views.Comments.textComments": "Kommentarer", "Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEnterCommentHint": "Skriv din kommentar här", @@ -138,6 +341,8 @@ "Common.Views.Comments.textReply": "Svara", "Common.Views.Comments.textResolve": "Lös", "Common.Views.Comments.textResolved": "Löst", + "Common.Views.Comments.textSort": "Sortera kommentarer", + "Common.Views.Comments.textViewResolved": "Du har inte behörighet att öppna kommentaren igen", "Common.Views.CopyWarningDialog.textDontShow": "Visa inte detta meddelande igen", "Common.Views.CopyWarningDialog.textMsg": "Kopiera, klipp ut och klistra in -åtgärder med redigeringsknapparna i verktygsfältet och snabbmenyn kommer endast att utföras inom denna flik.
För att kopiera eller klistra in från applikationer utanför fliken, använd följande kortkommandon:", "Common.Views.CopyWarningDialog.textTitle": "Kopiera, klipp ut och klistra in åtgärder", @@ -302,6 +507,9 @@ "Common.Views.ReviewPopover.textOpenAgain": "Öppna igen", "Common.Views.ReviewPopover.textReply": "Svara", "Common.Views.ReviewPopover.textResolve": "Lös", + "Common.Views.ReviewPopover.textViewResolved": "Du har inte behörighet att öppna kommentaren igen", + "Common.Views.ReviewPopover.txtDeleteTip": "Radera", + "Common.Views.ReviewPopover.txtEditTip": "Redigera", "Common.Views.SaveAsDlg.textLoading": "Laddar", "Common.Views.SaveAsDlg.textTitle": "Mapp att spara i", "Common.Views.SelectFileDlg.textLoading": "Laddar", @@ -394,6 +602,7 @@ "PE.Controllers.Main.errorForceSave": "Ett fel uppstod när filen sparades. Använd alternativet \"Spara som\" för att spara filen till din lokala hårddisk eller försök igen senare.", "PE.Controllers.Main.errorKeyEncrypt": "Okänd nyckelbeskrivare", "PE.Controllers.Main.errorKeyExpire": "Nyckelns beskrivning har utgått", + "PE.Controllers.Main.errorLoadingFont": "Typsnittet är inte tillgängligt.
Vänligen kontakta dokumentserverns administratör.", "PE.Controllers.Main.errorProcessSaveResult": "Fungerade ej att spara.", "PE.Controllers.Main.errorServerVersion": "Textredigerarens version har uppdaterats. Sidan kommer att laddas om för att verkställa ändringarna.", "PE.Controllers.Main.errorSessionAbsolute": "Dokumentet redigeringssession har löpt ut. Vänligen ladda om sidan.", @@ -448,12 +657,15 @@ "PE.Controllers.Main.textContactUs": "Kontakta säljare", "PE.Controllers.Main.textConvertEquation": "Denna ekvation skapades med en gammal version av ekvationsredigeraren som inte längre stöds. Om du vill redigera den konverterar du ekvationen till Office Math ML-format.
Konvertera nu?", "PE.Controllers.Main.textCustomLoader": "Observera att enligt licensvillkoren har du inte rätt att byta laddaren.
Kontakta vår försäljningsavdelning för att få en offert.", + "PE.Controllers.Main.textDisconnect": "Anslutningen förlorades", "PE.Controllers.Main.textGuest": "Gäst", "PE.Controllers.Main.textHasMacros": "Filen innehåller automatiska makron.
Vill du köra makron?", + "PE.Controllers.Main.textLearnMore": "Lär dig mer", "PE.Controllers.Main.textLoadingDocument": "Laddar presentationen", "PE.Controllers.Main.textLongName": "Ange namn (max 128 tecken).", - "PE.Controllers.Main.textNoLicenseTitle": "%1 anslutningsbegränsning", + "PE.Controllers.Main.textNoLicenseTitle": "Licensens gräns är nådd", "PE.Controllers.Main.textPaidFeature": "Betald funktion", + "PE.Controllers.Main.textReconnect": "Anslutningen återställdes", "PE.Controllers.Main.textRemember": "Kom ihåg mitt val för alla filer", "PE.Controllers.Main.textRenameError": "Användarnamn får inte var tomt.", "PE.Controllers.Main.textRenameLabel": "Ange namn för samarbete", @@ -721,20 +933,21 @@ "PE.Controllers.Main.unsupportedBrowserErrorText": "Din webbläsare stöds ej.", "PE.Controllers.Main.uploadImageExtMessage": "Okänt bildformat.", "PE.Controllers.Main.uploadImageFileCountMessage": "Inga bilder uppladdade.", - "PE.Controllers.Main.uploadImageSizeMessage": "Bilden är för stor", + "PE.Controllers.Main.uploadImageSizeMessage": "Bilden är för stor. Den maximala storleken är 25 MB.", "PE.Controllers.Main.uploadImageTextText": "Laddar upp bild...", "PE.Controllers.Main.uploadImageTitleText": "Laddar upp bild", "PE.Controllers.Main.waitText": "Vänta...", "PE.Controllers.Main.warnBrowserIE9": "Fungerar dåligt med Internet Explorer 9. Använd version 10 eller högre.", "PE.Controllers.Main.warnBrowserZoom": "Din webbläsares nuvarande zoominställningar stöds inte fullt ut. Återställ till standard zoom genom att trycka på Ctrl + 0.", - "PE.Controllers.Main.warnLicenseExceeded": "Antalet samtidiga anslutningar till dokumentservern har överskridits och dokumentet öppnas endast för visning.
Vänligen kontakta din systemadministratör för mer information.", + "PE.Controllers.Main.warnLicenseExceeded": "Gränsen är nådd för antalet %1 samtidiga anslutna redigerare. Dokumentet öppnas som skrivskyddat.
Kontakta administratören för mer information.", "PE.Controllers.Main.warnLicenseExp": "Din licens har gått ut.
Förnya din licens och uppdatera sidan.", "PE.Controllers.Main.warnLicenseLimitedNoAccess": "Licensen ogiltig.
Ingen access till redigeringsfunktioner.
Kontakta din administratör.", "PE.Controllers.Main.warnLicenseLimitedRenewed": "Licensen måste förnyas.
Endast begränsad funktionalitet.
Kontakta din administratör för full funktionalitet.", - "PE.Controllers.Main.warnLicenseUsersExceeded": "Antalet samtidiga användare har överskridits och dokumentet öppnas endast för visning.
Vänligen kontakta din systemadministratör för mer information.", - "PE.Controllers.Main.warnNoLicense": "Den här versionen av %1 har vissa begränsningar för samtidiga anslutningar till dokumentservern.
Om du behöver mer, överväg att köpa en kommersiell licens.", - "PE.Controllers.Main.warnNoLicenseUsers": "Den här versionen av %1 har vissa begränsningar för samtidiga användare.
Om du behöver mer, överväg att köpa en kommersiell licens.", + "PE.Controllers.Main.warnLicenseUsersExceeded": "Gränsen är nådd för antalet %1 redigerare.
Kontakta administratören för mer information.", + "PE.Controllers.Main.warnNoLicense": "Gränsen är nådd för antalet %1 samtidiga anslutna redigerare. Dokumentet öppnas som skrivskyddat.
Kontakta %1 försäljningsteamet för personliga uppgraderings villkor.", + "PE.Controllers.Main.warnNoLicenseUsers": "Gränsen är nådd för antalet %1 redigerare.
Kontakta %1 försäljningsteamet för personliga uppgraderings villkor.", "PE.Controllers.Main.warnProcessRightsChange": "Du har nekats rätten att redigera filen.", + "PE.Controllers.Statusbar.textDisconnect": "
Anslutningen förlorades

Försöker återansluta. Vänligen kontroller anslutningens inställningar.", "PE.Controllers.Statusbar.zoomText": "Zooma {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "Teckensnittet du kommer att spara finns inte på den aktuella enheten.
Textstilen kommer att visas med ett av systemets teckensnitt, sparade teckensnitt kommer att användas när det är tillgängligt.
Vill du fortsätta ?", "PE.Controllers.Toolbar.textAccent": "Accenter", @@ -1071,6 +1284,29 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "PE.Controllers.Viewport.textFitPage": "Anpassa till bild", "PE.Controllers.Viewport.textFitWidth": "Anpassa till bredd", + "PE.Views.Animation.strDelay": "Fördröjning", + "PE.Views.Animation.strDuration": "Varaktighet", + "PE.Views.Animation.strRepeat": "Upprepa", + "PE.Views.Animation.strRewind": "Spola tillbaka", + "PE.Views.Animation.strStart": "Börja", + "PE.Views.Animation.strTrigger": "Utlösare", + "PE.Views.Animation.textMoreEffects": "Visa fler effekter", + "PE.Views.Animation.textMoveEarlier": "Flytta tidigare", + "PE.Views.Animation.textMoveLater": "Flytta senare", + "PE.Views.Animation.textMultiple": "Flera", + "PE.Views.Animation.textNone": "Inga", + "PE.Views.Animation.textOnClickOf": "Vid klick på", + "PE.Views.Animation.textOnClickSequence": "Vid klick sekvens", + "PE.Views.Animation.textStartAfterPrevious": "Efter föregående", + "PE.Views.Animation.textStartOnClick": "Vid klick", + "PE.Views.Animation.textStartWithPrevious": "Med föregående", + "PE.Views.Animation.txtAddEffect": "Lägg till animation", + "PE.Views.Animation.txtAnimationPane": "Animationsrutan", + "PE.Views.Animation.txtParameters": "Parametrar", + "PE.Views.Animation.txtPreview": "Förhandsgranska", + "PE.Views.Animation.txtSec": "s", + "PE.Views.AnimationDialog.textPreviewEffect": "Förhandsgranska effekt", + "PE.Views.AnimationDialog.textTitle": "Fler effekter", "PE.Views.ChartSettings.textAdvanced": "Visa avancerade inställningar", "PE.Views.ChartSettings.textChartType": "Ändra diagramtyp", "PE.Views.ChartSettings.textEditData": "Redigera data", @@ -1081,7 +1317,7 @@ "PE.Views.ChartSettings.textWidth": "Bredd", "PE.Views.ChartSettingsAdvanced.textAlt": "Alternativ text", "PE.Views.ChartSettingsAdvanced.textAltDescription": "Beskrivning", - "PE.Views.ChartSettingsAdvanced.textAltTip": "Den alternativa textbaserade representation av den visuella informationsobjektet, som kommer att läsas för personer med syn eller kognitiva funktionsnedsättningar att hjälpa dem att bättre förstå vilken information som finns i bilden, figur eller, diagram eller en tabell.", + "PE.Views.ChartSettingsAdvanced.textAltTip": "Den alternativa textbaserad förekomsten av visuell objektinformation som kommer att läsas för personer med syn eller kognitiva funktionsnedsättningar för att hjälpa dem att bättre förstå vilken information som finns i bilden, figuren, diagrammet eller tabellen.", "PE.Views.ChartSettingsAdvanced.textAltTitle": "Titel", "PE.Views.ChartSettingsAdvanced.textTitle": "Diagram - avancerade inställningar", "PE.Views.DateTimeDialog.confirmDefault": "Ange standardformat för {0}: \"{1}\"", @@ -1094,7 +1330,7 @@ "PE.Views.DocumentHolder.addCommentText": "Lägg till kommentar", "PE.Views.DocumentHolder.addToLayoutText": "Lägg till i layout", "PE.Views.DocumentHolder.advancedImageText": "Bild avancerade inställningar", - "PE.Views.DocumentHolder.advancedParagraphText": "Text avancerade inställningar", + "PE.Views.DocumentHolder.advancedParagraphText": "Avsnitt avancerade inställningar", "PE.Views.DocumentHolder.advancedShapeText": "Form - Avancerade inställningar", "PE.Views.DocumentHolder.advancedTableText": "Tabell avancerade inställningar", "PE.Views.DocumentHolder.alignmentText": "Justering", @@ -1150,6 +1386,7 @@ "PE.Views.DocumentHolder.textCut": "Klipp ut", "PE.Views.DocumentHolder.textDistributeCols": "Distribuera kolumner", "PE.Views.DocumentHolder.textDistributeRows": "Distribuera rader", + "PE.Views.DocumentHolder.textEditPoints": "Redigera punkter", "PE.Views.DocumentHolder.textFlipH": "Vänd horisontellt", "PE.Views.DocumentHolder.textFlipV": "Vänd vertikalt", "PE.Views.DocumentHolder.textFromFile": "Från fil", @@ -1234,6 +1471,8 @@ "PE.Views.DocumentHolder.txtLimitUnder": "Begränsa under text", "PE.Views.DocumentHolder.txtMatchBrackets": "Matcha parenteser till argumentets höjd", "PE.Views.DocumentHolder.txtMatrixAlign": "Matrisjustering", + "PE.Views.DocumentHolder.txtMoveSlidesToEnd": "Flytta bilden till slutet", + "PE.Views.DocumentHolder.txtMoveSlidesToStart": "Flytta bilden till början", "PE.Views.DocumentHolder.txtNewSlide": "Ny bild", "PE.Views.DocumentHolder.txtOverbar": "Stapel över text", "PE.Views.DocumentHolder.txtPasteDestFormat": "Använd destinationstema", @@ -1265,6 +1504,7 @@ "PE.Views.DocumentHolder.txtTop": "Överst", "PE.Views.DocumentHolder.txtUnderbar": "Stapel under text", "PE.Views.DocumentHolder.txtUngroup": "Dela upp", + "PE.Views.DocumentHolder.txtWarnUrl": "Att klicka på denna länk kan skada din utrustning och dess innehåll.
Är du säker på att du vill fortsätta?", "PE.Views.DocumentHolder.vertAlignText": "Vertikal anpassning", "PE.Views.DocumentPreview.goToSlideText": "Gå till bild", "PE.Views.DocumentPreview.slideIndexText": "Bild {0} of {1}", @@ -1284,6 +1524,8 @@ "PE.Views.FileMenu.btnCloseMenuCaption": "Stäng meny", "PE.Views.FileMenu.btnCreateNewCaption": "Skapa ny", "PE.Views.FileMenu.btnDownloadCaption": "Ladda ner som...", + "PE.Views.FileMenu.btnExitCaption": "Avsluta", + "PE.Views.FileMenu.btnFileOpenCaption": "Öppna...", "PE.Views.FileMenu.btnHelpCaption": "Hjälp...", "PE.Views.FileMenu.btnHistoryCaption": "Versionshistorik", "PE.Views.FileMenu.btnInfoCaption": "Presentation info...", @@ -1298,6 +1540,7 @@ "PE.Views.FileMenu.btnSaveCopyAsCaption": "Spara kopia som...", "PE.Views.FileMenu.btnSettingsCaption": "Avancerade inställningar...", "PE.Views.FileMenu.btnToEditCaption": "Redigera presentation", + "PE.Views.FileMenuPanels.CreateNew.txtBlank": "Tom presentation", "PE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Skapa ny", "PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Tillämpa", "PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Lägg till författare", @@ -1336,7 +1579,7 @@ "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Du måste acceptera ändringar innan du kan se dom", "PE.Views.FileMenuPanels.Settings.strFast": "Snabb", "PE.Views.FileMenuPanels.Settings.strFontRender": "Fontförslag", - "PE.Views.FileMenuPanels.Settings.strForcesave": "Spara alltid till server (annars spara till servern när dokumentet stängs)", + "PE.Views.FileMenuPanels.Settings.strForcesave": "Lägg till version till lagringen efter att ha klickat på Spara eller CTRL+S", "PE.Views.FileMenuPanels.Settings.strInputMode": "Aktivera hieroglyfer", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Makroinställningar", "PE.Views.FileMenuPanels.Settings.strPaste": "Klipp ut, kopiera och klistra in", @@ -1355,7 +1598,7 @@ "PE.Views.FileMenuPanels.Settings.textAutoRecover": "Återskapa automatiskt", "PE.Views.FileMenuPanels.Settings.textAutoSave": "Autospara", "PE.Views.FileMenuPanels.Settings.textDisabled": "Inaktiverad", - "PE.Views.FileMenuPanels.Settings.textForceSave": "Spara till server", + "PE.Views.FileMenuPanels.Settings.textForceSave": "Sparar mellanliggande versioner", "PE.Views.FileMenuPanels.Settings.textMinute": "Varje minut", "PE.Views.FileMenuPanels.Settings.txtAll": "Visa alla", "PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Inställningar autokorrigering", @@ -1415,6 +1658,7 @@ "PE.Views.ImageSettings.textCrop": "Beskär", "PE.Views.ImageSettings.textCropFill": "Fyll", "PE.Views.ImageSettings.textCropFit": "Passa", + "PE.Views.ImageSettings.textCropToShape": "Beskära till form", "PE.Views.ImageSettings.textEdit": "Redigera", "PE.Views.ImageSettings.textEditObject": "Redigera objekt", "PE.Views.ImageSettings.textFitSlide": "Anpassa till bild", @@ -1429,13 +1673,14 @@ "PE.Views.ImageSettings.textHintFlipV": "Vänd vertikalt", "PE.Views.ImageSettings.textInsert": "Ersätt bild", "PE.Views.ImageSettings.textOriginalSize": "Faktisk storlek", + "PE.Views.ImageSettings.textRecentlyUsed": "Nyligen använda", "PE.Views.ImageSettings.textRotate90": "Rotera 90°", "PE.Views.ImageSettings.textRotation": "Rotation", "PE.Views.ImageSettings.textSize": "Storlek", "PE.Views.ImageSettings.textWidth": "Bredd", "PE.Views.ImageSettingsAdvanced.textAlt": "Alternativ text", "PE.Views.ImageSettingsAdvanced.textAltDescription": "Beskrivning", - "PE.Views.ImageSettingsAdvanced.textAltTip": "Den alternativa textbaserade representation av den visuella informationsobjektet, som kommer att läsas för personer med syn eller kognitiva funktionsnedsättningar att hjälpa dem att bättre förstå vilken information som finns i bilden, figur eller, diagram eller en tabell.", + "PE.Views.ImageSettingsAdvanced.textAltTip": "Den alternativa textbaserad förekomsten av visuell objektinformation som kommer att läsas för personer med syn eller kognitiva funktionsnedsättningar för att hjälpa dem att bättre förstå vilken information som finns i bilden, figuren, diagrammet eller tabellen.", "PE.Views.ImageSettingsAdvanced.textAltTitle": "Titel", "PE.Views.ImageSettingsAdvanced.textAngle": "Vinkel", "PE.Views.ImageSettingsAdvanced.textFlipped": "Vänd", @@ -1470,7 +1715,7 @@ "PE.Views.ParagraphSettings.textAt": "på", "PE.Views.ParagraphSettings.textAtLeast": "minst", "PE.Views.ParagraphSettings.textAuto": "flera", - "PE.Views.ParagraphSettings.textExact": "exakt", + "PE.Views.ParagraphSettings.textExact": "Exakt", "PE.Views.ParagraphSettings.txtAutoText": "auto", "PE.Views.ParagraphSettingsAdvanced.noTabs": "De angivna flikarna kommer att visas i det här fältet", "PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Alla versaler", @@ -1511,7 +1756,7 @@ "PE.Views.ParagraphSettingsAdvanced.txtAutoText": "auto", "PE.Views.RightMenu.txtChartSettings": "Diagraminställningar", "PE.Views.RightMenu.txtImageSettings": "Bildinställningar", - "PE.Views.RightMenu.txtParagraphSettings": "Text inställningar", + "PE.Views.RightMenu.txtParagraphSettings": "Avsnitt inställningar", "PE.Views.RightMenu.txtShapeSettings": "Form inställningar", "PE.Views.RightMenu.txtSignatureSettings": "Signaturinställningar", "PE.Views.RightMenu.txtSlideSettings": "Bild inställningar", @@ -1525,7 +1770,7 @@ "PE.Views.ShapeSettings.strPattern": "Mönster", "PE.Views.ShapeSettings.strShadow": "Visa skugga", "PE.Views.ShapeSettings.strSize": "Storlek", - "PE.Views.ShapeSettings.strStroke": "Genomslag", + "PE.Views.ShapeSettings.strStroke": "Linje", "PE.Views.ShapeSettings.strTransparency": "Opacitet", "PE.Views.ShapeSettings.strType": "Typ", "PE.Views.ShapeSettings.textAdvanced": "Visa avancerade inställningar", @@ -1538,7 +1783,7 @@ "PE.Views.ShapeSettings.textFromFile": "Från fil", "PE.Views.ShapeSettings.textFromStorage": "Från lagring", "PE.Views.ShapeSettings.textFromUrl": "Från URL", - "PE.Views.ShapeSettings.textGradient": "Fyllning", + "PE.Views.ShapeSettings.textGradient": "Triangulära punkter", "PE.Views.ShapeSettings.textGradientFill": "Fyllning", "PE.Views.ShapeSettings.textHint270": "Rotera 90° moturs", "PE.Views.ShapeSettings.textHint90": "Rotera 90° medsols", @@ -1550,6 +1795,7 @@ "PE.Views.ShapeSettings.textPatternFill": "Mönster", "PE.Views.ShapeSettings.textPosition": "Position", "PE.Views.ShapeSettings.textRadial": "Radiell", + "PE.Views.ShapeSettings.textRecentlyUsed": "Nyligen använda", "PE.Views.ShapeSettings.textRotate90": "Rotera 90°", "PE.Views.ShapeSettings.textRotation": "Rotation", "PE.Views.ShapeSettings.textSelectImage": "Välj bild", @@ -1576,7 +1822,7 @@ "PE.Views.ShapeSettingsAdvanced.strMargins": "Text padding", "PE.Views.ShapeSettingsAdvanced.textAlt": "Alternativ text", "PE.Views.ShapeSettingsAdvanced.textAltDescription": "Beskrivning", - "PE.Views.ShapeSettingsAdvanced.textAltTip": "Den alternativa textbaserade representation av den visuella informationsobjektet, som kommer att läsas för personer med syn eller kognitiva funktionsnedsättningar att hjälpa dem att bättre förstå vilken information som finns i bilden, figur eller, diagram eller en tabell.", + "PE.Views.ShapeSettingsAdvanced.textAltTip": "Den alternativa textbaserad förekomsten av visuell objektinformation som kommer att läsas för personer med syn eller kognitiva funktionsnedsättningar för att hjälpa dem att bättre förstå vilken information som finns i bilden, figuren, diagrammet eller tabellen.", "PE.Views.ShapeSettingsAdvanced.textAltTitle": "Titel", "PE.Views.ShapeSettingsAdvanced.textAngle": "Vinkel", "PE.Views.ShapeSettingsAdvanced.textArrows": "Pilar", @@ -1642,7 +1888,7 @@ "PE.Views.SlideSettings.textFromFile": "Från fil", "PE.Views.SlideSettings.textFromStorage": "Från lagring", "PE.Views.SlideSettings.textFromUrl": "Från URL", - "PE.Views.SlideSettings.textGradient": "Fyllning", + "PE.Views.SlideSettings.textGradient": "Triangulära punkter", "PE.Views.SlideSettings.textGradientFill": "Fyllning", "PE.Views.SlideSettings.textImageTexture": "Bild eller mönster", "PE.Views.SlideSettings.textLinear": "Linjär", @@ -1760,7 +2006,7 @@ "PE.Views.TableSettings.txtTable_ThemedStyle": "Temastil", "PE.Views.TableSettingsAdvanced.textAlt": "Alternativ text", "PE.Views.TableSettingsAdvanced.textAltDescription": "Beskrivning", - "PE.Views.TableSettingsAdvanced.textAltTip": "Den alternativa textbaserade representation av den visuella informationsobjektet, som kommer att läsas för personer med syn eller kognitiva funktionsnedsättningar att hjälpa dem att bättre förstå vilken information som finns i bilden, figur eller, diagram eller en tabell.", + "PE.Views.TableSettingsAdvanced.textAltTip": "Den alternativa textbaserad förekomsten av visuell objektinformation som kommer att läsas för personer med syn eller kognitiva funktionsnedsättningar för att hjälpa dem att bättre förstå vilken information som finns i bilden, figuren, diagrammet eller tabellen.", "PE.Views.TableSettingsAdvanced.textAltTitle": "Titel", "PE.Views.TableSettingsAdvanced.textBottom": "Nederst", "PE.Views.TableSettingsAdvanced.textCheckMargins": "Använd standardmarginaler", @@ -1777,7 +2023,7 @@ "PE.Views.TextArtSettings.strForeground": "Förgrundsfärg", "PE.Views.TextArtSettings.strPattern": "Mönster", "PE.Views.TextArtSettings.strSize": "Storlek", - "PE.Views.TextArtSettings.strStroke": "Genomslag", + "PE.Views.TextArtSettings.strStroke": "Linje", "PE.Views.TextArtSettings.strTransparency": "Opacitet", "PE.Views.TextArtSettings.strType": "Typ", "PE.Views.TextArtSettings.textAngle": "Vinkel", @@ -1787,7 +2033,7 @@ "PE.Views.TextArtSettings.textEmptyPattern": "Inget mönster", "PE.Views.TextArtSettings.textFromFile": "Från fil", "PE.Views.TextArtSettings.textFromUrl": "Från URL", - "PE.Views.TextArtSettings.textGradient": "Fyllning", + "PE.Views.TextArtSettings.textGradient": "Triangulära punkter", "PE.Views.TextArtSettings.textGradientFill": "Fyllning", "PE.Views.TextArtSettings.textImageTexture": "Bild eller mönster", "PE.Views.TextArtSettings.textLinear": "Linjär", @@ -1866,6 +2112,7 @@ "PE.Views.Toolbar.textColumnsTwo": "Två kolumner", "PE.Views.Toolbar.textItalic": "Kursiv", "PE.Views.Toolbar.textListSettings": "Listinställningar", + "PE.Views.Toolbar.textRecentlyUsed": "Nyligen använda", "PE.Views.Toolbar.textShapeAlignBottom": "Justera nederst", "PE.Views.Toolbar.textShapeAlignCenter": "Centrera", "PE.Views.Toolbar.textShapeAlignLeft": "Vänsterjustera", @@ -1879,11 +2126,14 @@ "PE.Views.Toolbar.textStrikeout": "Genomstruken", "PE.Views.Toolbar.textSubscript": "Nedsänkt", "PE.Views.Toolbar.textSuperscript": "Upphöjd", + "PE.Views.Toolbar.textTabAnimation": "Animation", "PE.Views.Toolbar.textTabCollaboration": "Samarbeta", "PE.Views.Toolbar.textTabFile": "Arkiv", "PE.Views.Toolbar.textTabHome": "Hem", "PE.Views.Toolbar.textTabInsert": "Infoga", "PE.Views.Toolbar.textTabProtect": "Skydd", + "PE.Views.Toolbar.textTabTransitions": "Övergångar", + "PE.Views.Toolbar.textTabView": "Visa", "PE.Views.Toolbar.textTitleError": "Fel", "PE.Views.Toolbar.textUnderline": "Understrykning", "PE.Views.Toolbar.tipAddSlide": "Lägg till ny bild", @@ -1937,6 +2187,7 @@ "PE.Views.Toolbar.tipViewSettings": "Visa inställningar", "PE.Views.Toolbar.txtDistribHor": "Distribuera horisontellt", "PE.Views.Toolbar.txtDistribVert": "Distribuera vertikalt", + "PE.Views.Toolbar.txtDuplicateSlide": "Duplicera bild", "PE.Views.Toolbar.txtGroup": "Grupp", "PE.Views.Toolbar.txtObjectsAlign": "Justera valda objekt", "PE.Views.Toolbar.txtScheme1": "Kontor", @@ -1967,26 +2218,44 @@ "PE.Views.Transitions.strDuration": "Varaktighet", "PE.Views.Transitions.strStartOnClick": "Börja vid klick", "PE.Views.Transitions.textBlack": "Genom svart", + "PE.Views.Transitions.textBottom": "Nederst", + "PE.Views.Transitions.textBottomLeft": "Nederst-vänster", + "PE.Views.Transitions.textBottomRight": "Nederst-höger", "PE.Views.Transitions.textClock": "Klocka", "PE.Views.Transitions.textClockwise": "Medurs", "PE.Views.Transitions.textCounterclockwise": "Moturs", "PE.Views.Transitions.textCover": "Omslag", + "PE.Views.Transitions.textFade": "Blekna", "PE.Views.Transitions.textHorizontalIn": "Horisontell in", "PE.Views.Transitions.textHorizontalOut": "Horisontell ut", "PE.Views.Transitions.textLeft": "Vänster", + "PE.Views.Transitions.textNone": "Inga", "PE.Views.Transitions.textPush": "Tryck", "PE.Views.Transitions.textRight": "Höger", + "PE.Views.Transitions.textSmoothly": "Mjukt", "PE.Views.Transitions.textSplit": "Dela", "PE.Views.Transitions.textTop": "Överst", + "PE.Views.Transitions.textTopLeft": "Överst till vänster", + "PE.Views.Transitions.textTopRight": "Överst till höger", "PE.Views.Transitions.textUnCover": "Avtäcka", "PE.Views.Transitions.textVerticalIn": "Vertikal in", "PE.Views.Transitions.textVerticalOut": "Vertikal ut", "PE.Views.Transitions.textWedge": "Kil", "PE.Views.Transitions.textWipe": "Rensa", + "PE.Views.Transitions.textZoom": "Förstora", "PE.Views.Transitions.textZoomIn": "Zooma in", "PE.Views.Transitions.textZoomOut": "Zooma ut", "PE.Views.Transitions.textZoomRotate": "Zooma och rotera", "PE.Views.Transitions.txtApplyToAll": "Applicera på alla bilder", "PE.Views.Transitions.txtParameters": "Parametrar", - "PE.Views.Transitions.txtSec": "s" + "PE.Views.Transitions.txtPreview": "Förhandsgranska", + "PE.Views.Transitions.txtSec": "s", + "PE.Views.ViewTab.textAlwaysShowToolbar": "Visa alltid verktygsfältet", + "PE.Views.ViewTab.textFitToSlide": "Passa till bild", + "PE.Views.ViewTab.textFitToWidth": "Passa till bredd", + "PE.Views.ViewTab.textInterfaceTheme": "Gränssnittstema", + "PE.Views.ViewTab.textNotes": "Anteckningar", + "PE.Views.ViewTab.textRulers": "Linjaler", + "PE.Views.ViewTab.textStatusBar": "Statusmätare", + "PE.Views.ViewTab.textZoom": "Förstora" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/tr.json b/apps/presentationeditor/main/locale/tr.json index d61ce0a1a..0697945bb 100644 --- a/apps/presentationeditor/main/locale/tr.json +++ b/apps/presentationeditor/main/locale/tr.json @@ -105,6 +105,31 @@ "Common.define.effectData.textExit": "Çıkış Etkisi", "Common.define.effectData.textExpand": "Genişlet", "Common.define.effectData.textFade": "Gölge", + "Common.define.effectData.textFigureFour": "Şekil 8 Dört", + "Common.define.effectData.textFillColor": "Dolgu Rengi", + "Common.define.effectData.textFlip": "çevir", + "Common.define.effectData.textFloat": "Yüzdürmek", + "Common.define.effectData.textFloatDown": "Aşağı Yüzer", + "Common.define.effectData.textFloatIn": "Yüzer", + "Common.define.effectData.textFloatOut": "Yüzmek", + "Common.define.effectData.textFloatUp": "Yüzdür", + "Common.define.effectData.textFlyIn": "Uçarak gelmek", + "Common.define.effectData.textFlyOut": "dışarı uç", + "Common.define.effectData.textFontColor": "Yazı rengi", + "Common.define.effectData.textFootball": "Futbol", + "Common.define.effectData.textFromBottom": "Alttan", + "Common.define.effectData.textFromBottomLeft": "Sol Alttan", + "Common.define.effectData.textFromBottomRight": "Sağ alttan", + "Common.define.effectData.textFromLeft": "Soldan", + "Common.define.effectData.textFromRight": "Sağdan", + "Common.define.effectData.textFromTop": "Üstten", + "Common.define.effectData.textFromTopLeft": "Sol Üstten", + "Common.define.effectData.textFromTopRight": "Sağ üstten", + "Common.define.effectData.textFunnel": "Huni", + "Common.define.effectData.textGrowShrink": "Büyüt/Küçült", + "Common.define.effectData.textGrowTurn": "Büyüt ve Dön", + "Common.define.effectData.textGrowWithColor": "Renkle Büyümek", + "Common.define.effectData.textHeart": "Kalp", "Common.define.effectData.textLeftDown": "Sol Alt", "Common.define.effectData.textLeftUp": "Sol Üst", "Common.define.effectData.textPointStar4": "4 Köşeli Yıldız", @@ -210,6 +235,7 @@ "Common.Views.Comments.mniAuthorDesc": "Yazar Z'den A'ya", "Common.Views.Comments.mniDateAsc": "En eski", "Common.Views.Comments.mniDateDesc": "En yeni", + "Common.Views.Comments.mniFilterGroups": "Gruba göre filtrele", "Common.Views.Comments.mniPositionAsc": "Üstten", "Common.Views.Comments.mniPositionDesc": "Alttan", "Common.Views.Comments.textAdd": "Ekle", @@ -454,7 +480,7 @@ "Common.Views.UserNameDialog.textDontShow": "Bana bir daha sorma", "Common.Views.UserNameDialog.textLabel": "Etiket:", "Common.Views.UserNameDialog.textLabelError": "Etiket boş olamaz.", - "PE.Controllers.LeftMenu.leavePageText": "Bu belgedeki kaydedilmemiş tüm değişiklikler kaybolacak.
Bunları kaydetmek için \"İptal\"i ve ardından \"Kaydet\"i tıklayın. Kaydedilmemiş tüm değişiklikleri atmak için \"OK\" ı tıklayın.", + "PE.Controllers.LeftMenu.leavePageText": "Bu belgedeki kaydedilmemiş tüm değişiklikler kaybolacak.
Bunları kaydetmek için \"İptal\"i ve ardından \"Kaydet\"i tıklayın. Kaydedilmemiş tüm değişiklikleri atmak için \"Tamam\" ı tıklayın.", "PE.Controllers.LeftMenu.newDocumentTitle": "İsim verilmemiş sunum", "PE.Controllers.LeftMenu.notcriticalErrorTitle": "Uyarı", "PE.Controllers.LeftMenu.requestEditRightsText": "Düzenleme hakları isteniyor...", @@ -466,7 +492,7 @@ "PE.Controllers.Main.applyChangesTextText": "Veri yükleniyor...", "PE.Controllers.Main.applyChangesTitleText": "Veri yükleniyor", "PE.Controllers.Main.convertationTimeoutText": "Değişim süresi aşıldı.", - "PE.Controllers.Main.criticalErrorExtText": "Döküman listesine dönmek için \"OK\"'a tıklayın", + "PE.Controllers.Main.criticalErrorExtText": "Döküman listesine dönmek için \"Tamam\"'a tıklayın", "PE.Controllers.Main.criticalErrorTitle": "Hata", "PE.Controllers.Main.downloadErrorText": "İndirme başarısız oldu.", "PE.Controllers.Main.downloadTextText": "Belge indiriliyor...", @@ -475,7 +501,7 @@ "PE.Controllers.Main.errorBadImageUrl": "Resim URL'si yanlış", "PE.Controllers.Main.errorCoAuthoringDisconnect": "Sunucu bağlantısı kesildi. Döküman şu an düzenlenemez.", "PE.Controllers.Main.errorComboSeries": "Bir kombinasyon grafiği oluşturmak için en az iki veri serisi seçin.", - "PE.Controllers.Main.errorConnectToServer": "Belge kaydedilemedi. Lütfen internet bağlantınızı kontrol edin veya yöneticiniz ile iletişime geçin.
'OK' tuşuna tıkladığınızda belgeyi indirebileceksiniz.", + "PE.Controllers.Main.errorConnectToServer": "Belge kaydedilemedi. Lütfen internet bağlantınızı kontrol edin veya yöneticiniz ile iletişime geçin.
'Tamam' tuşuna tıkladığınızda belgeyi indirebileceksiniz.", "PE.Controllers.Main.errorDatabaseConnection": "Harci hata.
Veri tabanı bağlantı hatası. Hata devam ederse lütfen destek ile iletişime geçin.", "PE.Controllers.Main.errorDataEncrypted": "Şifreli değişiklikler algılandı, çözülemiyor.", "PE.Controllers.Main.errorDataRange": "Yanlış veri aralığı.", @@ -504,7 +530,7 @@ "PE.Controllers.Main.errorUsersExceed": "Fiyat planının izin verdiği kullanıcı sayısı aşıldı", "PE.Controllers.Main.errorViewerDisconnect": "Bağlantı kesildi. Belgeyi yine de görüntüleyebilirsiniz,
ancak bağlantı yeniden kurulana ve sayfa yeniden yüklenene kadar indiremez veya yazdıramazsınız.", "PE.Controllers.Main.leavePageText": "Sunumda kaydedilmemiş değişiklikler var. Kaydetmek için 'Bu Sayfada Kal'a daha sonra da 'Kaydet'e tıklayınız.Kaydedilmemiş tüm değişiklikleri göz ardı etmek için 'Bu Sayfadan Ayrıl'a tıklayın.", - "PE.Controllers.Main.leavePageTextOnClose": "Bu sunudaki kaydedilmemiş tüm değişiklikler kaybolacak.
Bunları kaydetmek için \"İptal\"i ve ardından \"Kaydet\"i tıklayın. Kaydedilmemiş tüm değişiklikleri atmak için \"OK\" ı tıklayın.", + "PE.Controllers.Main.leavePageTextOnClose": "Bu sunudaki kaydedilmemiş tüm değişiklikler kaybolacak.
Bunları kaydetmek için \"İptal\"i ve ardından \"Kaydet\"i tıklayın. Kaydedilmemiş tüm değişiklikleri atmak için \"Tamam\" ı tıklayın.", "PE.Controllers.Main.loadFontsTextText": "Veri yükleniyor...", "PE.Controllers.Main.loadFontsTitleText": "Veri yükleniyor", "PE.Controllers.Main.loadFontTextText": "Veri yükleniyor...", @@ -2117,5 +2143,7 @@ "PE.Views.Transitions.txtPreview": "Önizleme", "PE.Views.Transitions.txtSec": "s", "PE.Views.ViewTab.textAlwaysShowToolbar": "Her zaman araç çubuğunu göster", + "PE.Views.ViewTab.textFitToSlide": "Slayda Sığdır", + "PE.Views.ViewTab.textFitToWidth": "Genişliğe Sığdır", "PE.Views.ViewTab.textZoom": "Yakınlaştırma" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/uk.json b/apps/presentationeditor/main/locale/uk.json index 5f59d07a0..f238c2d17 100644 --- a/apps/presentationeditor/main/locale/uk.json +++ b/apps/presentationeditor/main/locale/uk.json @@ -47,10 +47,13 @@ "Common.define.chartData.textScatterSmoothMarker": "Точкова з гладкими кривими та маркерами", "Common.define.chartData.textStock": "Запас", "Common.define.chartData.textSurface": "Поверхня", + "Common.define.effectData.textAcross": "По горизонталі", + "Common.define.effectData.textAppear": "Виникнення", "Common.define.effectData.textArcDown": "Вниз дугою", "Common.define.effectData.textArcLeft": "Ліворуч по дузі", "Common.define.effectData.textArcRight": "Праворуч по дузі", "Common.define.effectData.textArcUp": "Вгору по дузі", + "Common.define.effectData.textBasic": "Базові", "Common.define.effectData.textBasicSwivel": "Просте обертання", "Common.define.effectData.textBasicZoom": "Просте збільшення", "Common.define.effectData.textBean": "Біб", @@ -62,9 +65,12 @@ "Common.define.effectData.textBounce": "Вистрибування", "Common.define.effectData.textBounceLeft": "Вистрибування ліворуч", "Common.define.effectData.textBounceRight": "Вистрибування праворуч", + "Common.define.effectData.textBox": "Прямокутник", + "Common.define.effectData.textBrushColor": "Перефарбовування", "Common.define.effectData.textCenterRevolve": "Поворот навколо центру", "Common.define.effectData.textCheckerboard": "Шахова дошка", "Common.define.effectData.textCircle": "Круг", + "Common.define.effectData.textCollapse": "Згортання", "Common.define.effectData.textColorPulse": "Кольорова пульсація", "Common.define.effectData.textComplementaryColor": "Додатковий колір", "Common.define.effectData.textComplementaryColor2": "Додатковий колір 2", @@ -90,45 +96,146 @@ "Common.define.effectData.textDisappear": "Зникнення", "Common.define.effectData.textDissolveIn": "Розчинення", "Common.define.effectData.textDissolveOut": "Розчинення", + "Common.define.effectData.textDown": "Вниз", + "Common.define.effectData.textDrop": "Падіння", "Common.define.effectData.textEmphasis": "Ефект виділення", "Common.define.effectData.textEntrance": "Ефект входу", "Common.define.effectData.textEqualTriangle": "Рівносторонній трикутник", + "Common.define.effectData.textExciting": "Складні", + "Common.define.effectData.textExit": "Ефект виходу", + "Common.define.effectData.textExpand": "Розгортання", + "Common.define.effectData.textFade": "Вицвітання", + "Common.define.effectData.textFigureFour": "Подвоєний знак 8", "Common.define.effectData.textFillColor": "Колір заливки", + "Common.define.effectData.textFlip": "Переворот", + "Common.define.effectData.textFloat": "Плавне наближення", + "Common.define.effectData.textFloatDown": "Плавне переміщення вниз", + "Common.define.effectData.textFloatIn": "Плавне наближення", + "Common.define.effectData.textFloatOut": "Плавне видалення", + "Common.define.effectData.textFloatUp": "Плавне переміщення вгору", + "Common.define.effectData.textFlyIn": "Приліт", + "Common.define.effectData.textFlyOut": "Виліт за край листа", "Common.define.effectData.textFontColor": "Колір шрифту", + "Common.define.effectData.textFootball": "Овал", "Common.define.effectData.textFromBottom": "Знизу вверх", + "Common.define.effectData.textFromBottomLeft": "Знизу ліворуч", + "Common.define.effectData.textFromBottomRight": "Знизу праворуч", "Common.define.effectData.textFromLeft": "Зліва направо", "Common.define.effectData.textFromRight": "Справа наліво", "Common.define.effectData.textFromTop": "Зверху вниз", + "Common.define.effectData.textFromTopLeft": "Зверху ліворуч", + "Common.define.effectData.textFromTopRight": "Зверху праворуч", + "Common.define.effectData.textFunnel": "Воронка", "Common.define.effectData.textGrowShrink": "Зміна розміру", "Common.define.effectData.textGrowTurn": "Збільшення з поворотом", "Common.define.effectData.textGrowWithColor": "Збільшення зі зміною кольору", "Common.define.effectData.textHeart": "Серце", "Common.define.effectData.textHeartbeat": "Пульс", "Common.define.effectData.textHexagon": "Шестикутник", + "Common.define.effectData.textHorizontal": "По горизонталі", + "Common.define.effectData.textHorizontalFigure": "Горизонтальний знак 8", + "Common.define.effectData.textHorizontalIn": "По горизонталі всередину", + "Common.define.effectData.textHorizontalOut": "По горизонталі назовні", + "Common.define.effectData.textIn": "Всередину", + "Common.define.effectData.textInFromScreenCenter": "Збільшення із центру екрану", + "Common.define.effectData.textInSlightly": "Невелике збільшення", + "Common.define.effectData.textInToScreenCenter": "Збільшення до центру екрану", "Common.define.effectData.textInvertedSquare": "Обернений квадрат", "Common.define.effectData.textInvertedTriangle": "Перевернутий трикутник", + "Common.define.effectData.textLeft": "Ліворуч", + "Common.define.effectData.textLeftDown": "Ліворуч і вниз", + "Common.define.effectData.textLeftUp": "Ліворуч і вгору", + "Common.define.effectData.textLighten": "Висвітлення", + "Common.define.effectData.textLineColor": "Колір лінії", + "Common.define.effectData.textLinesCurves": "Лінії та криві", "Common.define.effectData.textLoopDeLoop": "Петля", + "Common.define.effectData.textModerate": "Середні", + "Common.define.effectData.textNeutron": "Нейтрон", + "Common.define.effectData.textObjectCenter": "Центр об'єкту", + "Common.define.effectData.textObjectColor": "Колір об'єкту", "Common.define.effectData.textOctagon": "Восьмикутник", + "Common.define.effectData.textOut": "Назовні", + "Common.define.effectData.textOutFromScreenBottom": "Зменшення з нижньої частини екрану", + "Common.define.effectData.textOutSlightly": "Невелике зменшення", "Common.define.effectData.textParallelogram": "Паралелограм", + "Common.define.effectData.textPath": "Шлях переміщення", + "Common.define.effectData.textPeanut": "Земляний горіх", + "Common.define.effectData.textPeekIn": "Збір", + "Common.define.effectData.textPeekOut": "Засування", "Common.define.effectData.textPentagon": "П'ятикутник", + "Common.define.effectData.textPinwheel": "Колесо", + "Common.define.effectData.textPlus": "Плюс", + "Common.define.effectData.textPointStar": "Гострокутна зірка", "Common.define.effectData.textPointStar4": "4-кутна зірка", "Common.define.effectData.textPointStar5": "5-кутна зірка", "Common.define.effectData.textPointStar6": "6-кутна зірка", "Common.define.effectData.textPointStar8": "8-кутна зірка", + "Common.define.effectData.textPulse": "Пульсація", + "Common.define.effectData.textRandomBars": "Випадкові смуги", + "Common.define.effectData.textRight": "Праворуч", + "Common.define.effectData.textRightDown": "Праворуч і вниз", "Common.define.effectData.textRightTriangle": "Прямокутний трикутник", + "Common.define.effectData.textRightUp": "Праворуч і нагору", + "Common.define.effectData.textRiseUp": "Підйом", + "Common.define.effectData.textSCurve1": "Синусоїда 1", + "Common.define.effectData.textSCurve2": "Синусоїда 2", "Common.define.effectData.textShape": "Фігура", + "Common.define.effectData.textShimmer": "Мерехтіння", "Common.define.effectData.textShrinkTurn": "Зменшення з поворотом", + "Common.define.effectData.textSineWave": "Часта синусоїда", + "Common.define.effectData.textSinkDown": "Падіння", + "Common.define.effectData.textSlideCenter": "Центр слайду", + "Common.define.effectData.textSpecial": "Особливі", + "Common.define.effectData.textSpin": "Обертання", + "Common.define.effectData.textSpinner": "Центрифуга", + "Common.define.effectData.textSpiralIn": "Спіраль", + "Common.define.effectData.textSpiralLeft": "Ліворуч по спіралі", + "Common.define.effectData.textSpiralOut": "Виліт по спіралі", + "Common.define.effectData.textSpiralRight": "Праворуч по спіралі", + "Common.define.effectData.textSplit": "Панорама", "Common.define.effectData.textSpoke1": "1 сектор", "Common.define.effectData.textSpoke2": "2 сектори", "Common.define.effectData.textSpoke3": "3 сектори", "Common.define.effectData.textSpoke4": "4 сектори", "Common.define.effectData.textSpoke8": "8 секторів", + "Common.define.effectData.textSpring": "Пружина", + "Common.define.effectData.textSquare": "Квадрат", + "Common.define.effectData.textStairsDown": "Вниз по сходах", + "Common.define.effectData.textStretch": "Розтягування", + "Common.define.effectData.textStrips": "Стрічки", + "Common.define.effectData.textSubtle": "Прості", + "Common.define.effectData.textSwivel": "Обертання", + "Common.define.effectData.textSwoosh": "Лист", "Common.define.effectData.textTeardrop": "Крапля", + "Common.define.effectData.textTeeter": "Хитання", + "Common.define.effectData.textToBottom": "Вниз", + "Common.define.effectData.textToBottomLeft": "Вниз ліворуч", + "Common.define.effectData.textToBottomRight": "Вниз праворуч", + "Common.define.effectData.textToFromScreenBottom": "Зменшення до нижньої частини екрану", + "Common.define.effectData.textToLeft": "Ліворуч", + "Common.define.effectData.textToRight": "Праворуч", + "Common.define.effectData.textToTop": "Вгору", + "Common.define.effectData.textToTopLeft": "Вгору ліворуч", + "Common.define.effectData.textToTopRight": "Вгору праворуч", "Common.define.effectData.textTransparency": "Прозорість", "Common.define.effectData.textTrapezoid": "Трапеція", + "Common.define.effectData.textTurnDown": "Праворуч і вниз", + "Common.define.effectData.textTurnDownRight": "Вниз і праворуч", + "Common.define.effectData.textTurnUp": "Праворуч і нагору", + "Common.define.effectData.textTurnUpRight": "Вгору та праворуч", + "Common.define.effectData.textUnderline": "Підкреслення", + "Common.define.effectData.textUp": "Вгору", + "Common.define.effectData.textVertical": "По вертикалі", + "Common.define.effectData.textVerticalFigure": "Вертикальний знак 8", + "Common.define.effectData.textVerticalIn": "По вертикалі всередину", + "Common.define.effectData.textVerticalOut": "По вертикалі назовні", "Common.define.effectData.textWave": "Хвиля", + "Common.define.effectData.textWedge": "Симетрично по колу", "Common.define.effectData.textWheel": "Колесо", + "Common.define.effectData.textWhip": "Батіг", + "Common.define.effectData.textWipe": "Поява", "Common.define.effectData.textZigzag": "Зиґзаґ", + "Common.define.effectData.textZoom": "Масштабування", "Common.Translation.warnFileLocked": "Файл редагується в іншій програмі. Ви можете продовжити редагування та зберегти його як копію.", "Common.Translation.warnFileLockedBtnEdit": "Створити копію", "Common.Translation.warnFileLockedBtnView": "Відкрити на перегляд", @@ -1179,14 +1286,27 @@ "PE.Controllers.Viewport.textFitWidth": "По ширині", "PE.Views.Animation.strDelay": "Затримка", "PE.Views.Animation.strDuration": "Трив.", + "PE.Views.Animation.strRepeat": "Повтор", + "PE.Views.Animation.strRewind": "Перемотування назад", + "PE.Views.Animation.strStart": "Запуск", + "PE.Views.Animation.strTrigger": "Тригер", "PE.Views.Animation.textMoreEffects": "Мерехтіння", + "PE.Views.Animation.textMoveEarlier": "Перемістити назад", + "PE.Views.Animation.textMoveLater": "Перемістити вперед", + "PE.Views.Animation.textMultiple": "Декілька", + "PE.Views.Animation.textNone": "Немає", + "PE.Views.Animation.textOnClickOf": "По клацанню на", + "PE.Views.Animation.textOnClickSequence": "По послідовності клацань", "PE.Views.Animation.textStartAfterPrevious": "Після попереднього", + "PE.Views.Animation.textStartOnClick": "По клацанню", "PE.Views.Animation.textStartWithPrevious": "Разом із попереднім", "PE.Views.Animation.txtAddEffect": "Додати анімацію", "PE.Views.Animation.txtAnimationPane": "Область анімації", "PE.Views.Animation.txtParameters": "Параметри", "PE.Views.Animation.txtPreview": "Перегляд", "PE.Views.Animation.txtSec": "сек", + "PE.Views.AnimationDialog.textPreviewEffect": "Перегляд ефекту", + "PE.Views.AnimationDialog.textTitle": "Інші ефекти", "PE.Views.ChartSettings.textAdvanced": "Показати додаткові налаштування", "PE.Views.ChartSettings.textChartType": "Змінити тип діаграми", "PE.Views.ChartSettings.textEditData": "Редагувати дату", @@ -2134,6 +2254,8 @@ "PE.Views.ViewTab.textFitToSlide": "За розміром слайду", "PE.Views.ViewTab.textFitToWidth": "По ширині", "PE.Views.ViewTab.textInterfaceTheme": "Тема інтерфейсу", + "PE.Views.ViewTab.textNotes": "Нотатки", "PE.Views.ViewTab.textRulers": "Лінійки", + "PE.Views.ViewTab.textStatusBar": "Рядок стану", "PE.Views.ViewTab.textZoom": "Масштаб" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/embed/locale/sv.json b/apps/spreadsheeteditor/embed/locale/sv.json index 1b3b569ab..95909bf82 100644 --- a/apps/spreadsheeteditor/embed/locale/sv.json +++ b/apps/spreadsheeteditor/embed/locale/sv.json @@ -13,9 +13,13 @@ "SSE.ApplicationController.errorDefaultMessage": "Felkod: %1", "SSE.ApplicationController.errorFilePassProtect": "Dokumentet är lösenordsskyddat och kunde inte öppnas. ", "SSE.ApplicationController.errorFileSizeExceed": "Filstorleken överskrider gränsen för din server.
Var snäll och kontakta administratören för dokumentservern för mer information.", + "SSE.ApplicationController.errorForceSave": "Ett fel uppstod när filen sparades. Vänligen använd alternativet \"Spara som\" för att spara filen till din dator eller försök igen senare.", + "SSE.ApplicationController.errorLoadingFont": "Typsnittet är inte tillgängligt.
Vänligen kontakta dokumentserverns administratör.", + "SSE.ApplicationController.errorTokenExpire": "Dokumentets säkerhetstoken har upphört att gälla.
Vänligen kontakta dokumentserverns administratör.", "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Internetanslutningen har återställts och filversionen har ändrats.
Innan du fortsätter arbeta, ladda ner filen eller kopiera innehållet för att försäkra dig om att inte förlora något, ladda sedan om denna sida.", "SSE.ApplicationController.errorUserDrop": "Filen kan inte nås för tillfället. ", "SSE.ApplicationController.notcriticalErrorTitle": "Varning", + "SSE.ApplicationController.openErrorText": "Ett fel uppstod vid öppnandet av filen.", "SSE.ApplicationController.scriptLoadError": "Anslutningen är för långsam, vissa av komponenterna kunde inte laddas. Vänligen ladda om sidan.", "SSE.ApplicationController.textAnonymous": "Anonym", "SSE.ApplicationController.textGuest": "Gäst", diff --git a/apps/spreadsheeteditor/main/locale/de.json b/apps/spreadsheeteditor/main/locale/de.json index 359bc10e6..4ee510b70 100644 --- a/apps/spreadsheeteditor/main/locale/de.json +++ b/apps/spreadsheeteditor/main/locale/de.json @@ -114,6 +114,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Neu", "Common.UI.ExtendedColorDialog.textRGBErr": "Der eingegebene Wert ist falsch.
Bitte geben Sie einen numerischen Wert zwischen 0 und 255 ein.", "Common.UI.HSBColorPicker.textNoColor": "Ohne Farbe", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Passwort ausblenden", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Password anzeigen", "Common.UI.SearchDialog.textHighlight": "Ergebnisse markieren", "Common.UI.SearchDialog.textMatchCase": "Groß-/Kleinschreibung beachten", "Common.UI.SearchDialog.textReplaceDef": "Geben Sie den Ersetzungstext ein", @@ -178,12 +180,14 @@ "Common.Views.Comments.mniAuthorDesc": "Verfasser (Z-A)", "Common.Views.Comments.mniDateAsc": "Älteste zuerst", "Common.Views.Comments.mniDateDesc": "Neueste zuerst", + "Common.Views.Comments.mniFilterGroups": "Nach Gruppe filtern", "Common.Views.Comments.mniPositionAsc": "Von oben", "Common.Views.Comments.mniPositionDesc": "Von unten", "Common.Views.Comments.textAdd": "Hinzufügen", "Common.Views.Comments.textAddComment": "Hinzufügen", "Common.Views.Comments.textAddCommentToDoc": "Kommentar zum Dokument hinzufügen", "Common.Views.Comments.textAddReply": "Antwort hinzufügen", + "Common.Views.Comments.textAll": "Alle", "Common.Views.Comments.textAnonym": "Gast", "Common.Views.Comments.textCancel": "Abbrechen", "Common.Views.Comments.textClose": "Schließen", @@ -197,6 +201,7 @@ "Common.Views.Comments.textResolve": "Lösen", "Common.Views.Comments.textResolved": "Gelöst", "Common.Views.Comments.textSort": "Kommentare sortieren", + "Common.Views.Comments.textViewResolved": "Sie haben keine Berechtigung, den Kommentar erneut zu öffnen", "Common.Views.CopyWarningDialog.textDontShow": "Diese Meldung nicht mehr anzeigen", "Common.Views.CopyWarningDialog.textMsg": "Die Funktionen \"Kopieren\", \"Ausschneiden\" und \"Einfügen\" können mithilfe den Schaltflächen in der Symbolleiste und Aktionen im Kontextmenü nur in dieser Editor-Registerkarte durchgeführt werden.

Für Kopieren oder Einfügen in oder aus anderen Anwendungen nutzen Sie die folgenden Tastenkombinationen:", "Common.Views.CopyWarningDialog.textTitle": "Funktionen \"Kopieren\", \"Ausschneiden\" und \"Einfügen\"", @@ -364,6 +369,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Erneut öffnen", "Common.Views.ReviewPopover.textReply": "Antworten", "Common.Views.ReviewPopover.textResolve": "Lösen", + "Common.Views.ReviewPopover.textViewResolved": "Sie haben keine Berechtigung, den Kommentar erneut zu öffnen", "Common.Views.ReviewPopover.txtDeleteTip": "Löschen", "Common.Views.ReviewPopover.txtEditTip": "Bearbeiten", "Common.Views.SaveAsDlg.textLoading": "Ladevorgang", @@ -474,6 +480,7 @@ "SSE.Controllers.DocumentHolder.txtAddVer": "Vertikale Linie hinzufügen", "SSE.Controllers.DocumentHolder.txtAlignToChar": "An einem Zeichen ausrichten", "SSE.Controllers.DocumentHolder.txtAll": "(Alles)", + "SSE.Controllers.DocumentHolder.txtAllTableHint": "Gibt den gesamten Inhalt der Tabelle oder der angegebenen Tabellenspalten zurück, einschließlich der Spaltenüberschriften, der Daten und der Gesamtergebnisse", "SSE.Controllers.DocumentHolder.txtAnd": "und", "SSE.Controllers.DocumentHolder.txtBegins": "beginnt mit", "SSE.Controllers.DocumentHolder.txtBelowAve": "Unterdurchschnittlich", @@ -483,6 +490,7 @@ "SSE.Controllers.DocumentHolder.txtColumn": "Spalte", "SSE.Controllers.DocumentHolder.txtColumnAlign": "Spaltenausrichtung", "SSE.Controllers.DocumentHolder.txtContains": "Enthält", + "SSE.Controllers.DocumentHolder.txtDataTableHint": "Gibt die Datenzellen der Tabelle oder der angegebenen Tabellenspalten zurück", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Argumentgröße reduzieren", "SSE.Controllers.DocumentHolder.txtDeleteArg": "Argument löschen", "SSE.Controllers.DocumentHolder.txtDeleteBreak": "Manuellen Umbruch löschen", @@ -506,6 +514,7 @@ "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Größer als oder gleich wie ", "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Zeichen über dem Text ", "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Zeichen unter dem Text ", + "SSE.Controllers.DocumentHolder.txtHeadersTableHint": "Gibt die Spaltenüberschriften für die Tabelle oder die angegebenen Tabellenspalten zurück", "SSE.Controllers.DocumentHolder.txtHeight": "Höhe", "SSE.Controllers.DocumentHolder.txtHideBottom": "Untere Rahmenlinie verbergen", "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "Untere Grenze verbergen", @@ -584,7 +593,9 @@ "SSE.Controllers.DocumentHolder.txtSorting": "Sortieren", "SSE.Controllers.DocumentHolder.txtSortSelected": "Ausgewählte sortieren", "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Eckige Klammern dehnen", + "SSE.Controllers.DocumentHolder.txtThisRowHint": "Nur diese Zeile der notwendigen Spalte auswählen", "SSE.Controllers.DocumentHolder.txtTop": "Oben", + "SSE.Controllers.DocumentHolder.txtTotalsTableHint": "Gibt Gesamtergebnisse der Zeilen für die Tabelle oder die angegebenen Tabellenspalten zurück", "SSE.Controllers.DocumentHolder.txtUnderbar": "Linie unter dem Text ", "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Automatische Erweiterung der Tabelle rückgängig machen", "SSE.Controllers.DocumentHolder.txtUseTextImport": "Text Import-Assistenten verwenden", @@ -639,6 +650,7 @@ "SSE.Controllers.Main.errorAutoFilterHiddenRange": "Die Operation kann nicht ausgeführt werden, weil der Bereich gefilterte Zellen enthält.
Bitte machen Sie die gefilterten Elemente sichtbar und versuchen Sie es erneut.", "SSE.Controllers.Main.errorBadImageUrl": "URL des Bildes ist falsch", "SSE.Controllers.Main.errorCannotUngroup": "Gruppierung kann nicht aufgehoben werden. Um eine Gliederung zu erstellen, wählen Sie Zeilen oder Spalten aus und gruppieren Sie diese.", + "SSE.Controllers.Main.errorCannotUseCommandProtectedSheet": "Dieser Befehl kann für ein geschütztes Blatt nicht verwendet werden. Sie müssen zuerst den Schutz des Blatts aufheben, um diesen Befehl zu verwenden.
Sie werden möglicherweise aufgefordert, ein Kennwort einzugeben.", "SSE.Controllers.Main.errorChangeArray": "Sie können einen Teil eines Arrays nicht ändern.", "SSE.Controllers.Main.errorChangeFilteredRange": "Hierdurch wird ein gefilterter Bereich in Ihrem Arbeitsblatt geändert.
Um diesen Vorgang abzuschließen, entfernen Sie bitte die AutoFilter.", "SSE.Controllers.Main.errorChangeOnProtectedSheet": "Die Zelle oder das Diagramm, die Sie bearbeiten möchten, ist in der geschützten Liste.
Entschützen Sie die Liste, um Änderungen vorzunehmen. Das Passwort kann erforderlich sein.", @@ -754,6 +766,11 @@ "SSE.Controllers.Main.textConvertEquation": "Diese Gleichung wurde in einer alten Version des Gleichungseditors erstellt, die nicht mehr unterstützt wird. Um die Gleichung zu bearbeiten, konvertieren Sie diese ins Format Office Math ML.
Jetzt konvertieren?", "SSE.Controllers.Main.textCustomLoader": "Bitte beachten Sie, dass Sie gemäß den Lizenzbedingungen nicht berechtigt sind, den Loader zu wechseln.
Wenden Sie sich an unseren Vertrieb, um ein Angebot zu erhalten.", "SSE.Controllers.Main.textDisconnect": "Verbindung wurde unterbrochen", + "SSE.Controllers.Main.textFillOtherRows": "Andere Zeilen ausfüllen", + "SSE.Controllers.Main.textFormulaFilledAllRows": "Die Formel hat {0} Zeilen mit Daten ausgefüllt. Das Ausfüllen anderer leerer Zeilen kann einige Minuten dauern.", + "SSE.Controllers.Main.textFormulaFilledAllRowsWithEmpty": "Die Formel hat die ersten {0} Zeilen mit Daten ausgefüllt. Das Ausfüllen anderer leerer Zeilen kann einige Minuten dauern.", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherHaveData": "Die Formel hat nur die ersten {0} Zeilen ausgefüllt, um Speicherplatz zu sparen. Es gibt weitere {1} Zeilen mit Daten in diesem Blatt. Sie können sie manuell ausfüllen.", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherIsEmpty": "Die Formel hat nur die ersten {0} Zeilen ausgefüllt, um Speicherplatz zu sparen. Die anderen Zeilen in diesem Blatt enthalten keine Daten.", "SSE.Controllers.Main.textGuest": "Gast", "SSE.Controllers.Main.textHasMacros": "Die Datei beinhaltet automatische Makros.
Möchten Sie Makros ausführen?", "SSE.Controllers.Main.textLearnMore": "Mehr erfahren", @@ -764,6 +781,7 @@ "SSE.Controllers.Main.textNoLicenseTitle": "Lizenzlimit erreicht", "SSE.Controllers.Main.textPaidFeature": "Kostenpflichtige Funktion", "SSE.Controllers.Main.textPleaseWait": "Der Vorgang könnte mehr Zeit in Anspruch nehmen als erwartet. Bitte warten...", + "SSE.Controllers.Main.textReconnect": "Verbindung wurde wiederhergestellt", "SSE.Controllers.Main.textRemember": "Meine Auswahl merken", "SSE.Controllers.Main.textRenameError": "Benutzername darf nicht leer sein.", "SSE.Controllers.Main.textRenameLabel": "Geben Sie den Namen für Zusammenarbeit ein", @@ -1055,6 +1073,7 @@ "SSE.Controllers.Statusbar.errorLastSheet": "Ein Arbeitsbuch muss mindestens ein sichtbares Arbeitsblatt enthalten.", "SSE.Controllers.Statusbar.errorRemoveSheet": "Es ist nicht möglich, das Arbeitsblatt zu löschen.", "SSE.Controllers.Statusbar.strSheet": "Sheet", + "SSE.Controllers.Statusbar.textDisconnect": "Die Verbindung wurde unterbrochen
Verbindungsversuch... Bitte Verbindungseinstellungen überprüfen.", "SSE.Controllers.Statusbar.textSheetViewTip": "Sie befinden sich in einer Tabellenansicht. Filter und Sortierung sind nur für Sie und andere Benutzer/innen sichtbar, die in diesem Modus sind.", "SSE.Controllers.Statusbar.textSheetViewTipFilters": "Sie befinden sich in einer Tabellenansicht. Filter sind nur für Sie und andere Benutzer/innen sichtbar, die in diesem Modus sind.", "SSE.Controllers.Statusbar.warnDeleteSheet": "Die ausgewählten Arbeitsblätter könnten Daten enthalten. Fortsetzen?", @@ -1080,6 +1099,7 @@ "SSE.Controllers.Toolbar.textPivot": "Pivot-Tabelle", "SSE.Controllers.Toolbar.textRadical": "Wurzeln", "SSE.Controllers.Toolbar.textRating": "Bewertungen", + "SSE.Controllers.Toolbar.textRecentlyUsed": "Zuletzt verwendet", "SSE.Controllers.Toolbar.textScript": "Skripts", "SSE.Controllers.Toolbar.textShapes": "Formen", "SSE.Controllers.Toolbar.textSymbols": "Symbole", @@ -1421,7 +1441,9 @@ "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Dezimaltrennzeichen", "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Tausendertrennzeichen", "SSE.Views.AdvancedSeparatorDialog.textLabel": "Einstellungen zum Erkennen numerischer Daten", + "SSE.Views.AdvancedSeparatorDialog.textQualifier": "Textqualifizierer", "SSE.Views.AdvancedSeparatorDialog.textTitle": "Erweiterte Einstellungen", + "SSE.Views.AdvancedSeparatorDialog.txtNone": "(kein)", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Benutzerdefinierter Filter", "SSE.Views.AutoFilterDialog.textAddSelection": "Dem Filter die aktuelle Auswahl hinzufügen", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Lücken}", @@ -1867,6 +1889,7 @@ "SSE.Views.DocumentHolder.textCrop": "Zuschneiden", "SSE.Views.DocumentHolder.textCropFill": "Ausfüllen", "SSE.Views.DocumentHolder.textCropFit": "Anpassen", + "SSE.Views.DocumentHolder.textEditPoints": "Punkte bearbeiten", "SSE.Views.DocumentHolder.textEntriesList": "Aus der Dropdown-Liste wählen", "SSE.Views.DocumentHolder.textFlipH": "Horizontal kippen", "SSE.Views.DocumentHolder.textFlipV": "Vertikal kippen", @@ -2236,6 +2259,7 @@ "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Formatierungsregel bearbeiten", "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Neue Formatierungsregel", "SSE.Views.FormatRulesManagerDlg.guestText": "Gast", + "SSE.Views.FormatRulesManagerDlg.lockText": "Gesperrt", "SSE.Views.FormatRulesManagerDlg.text1Above": "1 Std Abw über dem Durchschnitt", "SSE.Views.FormatRulesManagerDlg.text1Below": "1 Std Abw unter dem Durchschnitt", "SSE.Views.FormatRulesManagerDlg.text2Above": "2 Std Abw über dem Durchschnitt", @@ -2397,6 +2421,7 @@ "SSE.Views.ImageSettings.textCrop": "Zuschneiden", "SSE.Views.ImageSettings.textCropFill": "Ausfüllen", "SSE.Views.ImageSettings.textCropFit": "Anpassen", + "SSE.Views.ImageSettings.textCropToShape": "Auf Form zuschneiden", "SSE.Views.ImageSettings.textEdit": "Bearbeiten", "SSE.Views.ImageSettings.textEditObject": "Objekt bearbeiten", "SSE.Views.ImageSettings.textFlip": "Kippen", @@ -2411,6 +2436,7 @@ "SSE.Views.ImageSettings.textInsert": "Bild ersetzen", "SSE.Views.ImageSettings.textKeepRatio": "Seitenverhältnis beibehalten", "SSE.Views.ImageSettings.textOriginalSize": "Tatsächliche Größe", + "SSE.Views.ImageSettings.textRecentlyUsed": "Zuletzt verwendet", "SSE.Views.ImageSettings.textRotate90": "90 Grad drehen", "SSE.Views.ImageSettings.textRotation": "Rotation", "SSE.Views.ImageSettings.textSize": "Größe", @@ -2488,6 +2514,7 @@ "SSE.Views.NamedRangePasteDlg.txtTitle": "Namen einfügen", "SSE.Views.NameManagerDlg.closeButtonText": "Schließen", "SSE.Views.NameManagerDlg.guestText": "Gast", + "SSE.Views.NameManagerDlg.lockText": "Gesperrt", "SSE.Views.NameManagerDlg.textDataRange": "Datenbereich", "SSE.Views.NameManagerDlg.textDelete": "Löschen", "SSE.Views.NameManagerDlg.textEdit": "Bearbeiten", @@ -2719,6 +2746,43 @@ "SSE.Views.PrintTitlesDialog.textSelectRange": "Bereich auswählen", "SSE.Views.PrintTitlesDialog.textTitle": "Drucke Titel", "SSE.Views.PrintTitlesDialog.textTop": "wiederhole Zeilen am Anfang", + "SSE.Views.PrintWithPreview.txtActualSize": "Tatsächliche Größe", + "SSE.Views.PrintWithPreview.txtAllSheets": "Alle Blätter", + "SSE.Views.PrintWithPreview.txtApplyToAllSheets": "In allen Blättern anwenden", + "SSE.Views.PrintWithPreview.txtBottom": "Unten", + "SSE.Views.PrintWithPreview.txtCurrentSheet": "Aktuelles Blatt", + "SSE.Views.PrintWithPreview.txtCustom": "Benutzerdefiniert", + "SSE.Views.PrintWithPreview.txtCustomOptions": "Benutzerdefinierte Optionen", + "SSE.Views.PrintWithPreview.txtFitCols": "Alle Spalten auf einer Seite darstellen", + "SSE.Views.PrintWithPreview.txtFitPage": "Blatt auf einer Seite darstellen", + "SSE.Views.PrintWithPreview.txtFitRows": "Alle Zeilen auf einer Seite darstellen", + "SSE.Views.PrintWithPreview.txtGridlinesAndHeadings": "Gitternetzlinien und Überschriften", + "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Kopf- und Fußzeileneinstellungen", + "SSE.Views.PrintWithPreview.txtIgnore": "Druckbereich ignorieren", + "SSE.Views.PrintWithPreview.txtLandscape": "Querformat", + "SSE.Views.PrintWithPreview.txtLeft": "Links", + "SSE.Views.PrintWithPreview.txtMargins": "Ränder", + "SSE.Views.PrintWithPreview.txtOf": "von {0}", + "SSE.Views.PrintWithPreview.txtPage": "Seite", + "SSE.Views.PrintWithPreview.txtPageNumInvalid": "Ungültige Seitennummer", + "SSE.Views.PrintWithPreview.txtPageOrientation": "Seitenorientierung", + "SSE.Views.PrintWithPreview.txtPageSize": "Seitenformat", + "SSE.Views.PrintWithPreview.txtPortrait": "Hochformat", + "SSE.Views.PrintWithPreview.txtPrint": "Drucken", + "SSE.Views.PrintWithPreview.txtPrintGrid": "Gitternetzlinien drucken", + "SSE.Views.PrintWithPreview.txtPrintHeadings": "Zeilen- und Spaltenüberschriften drucken", + "SSE.Views.PrintWithPreview.txtPrintRange": "Druckbereich", + "SSE.Views.PrintWithPreview.txtPrintTitles": "Drucke Titel", + "SSE.Views.PrintWithPreview.txtRepeat": "Wiederholen...", + "SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft": "Spalten links wiederholen", + "SSE.Views.PrintWithPreview.txtRepeatRowsAtTop": "Zeilen am Anfang wiederholen", + "SSE.Views.PrintWithPreview.txtRight": "Rechts", + "SSE.Views.PrintWithPreview.txtSave": "Speichern", + "SSE.Views.PrintWithPreview.txtScaling": "Skalierung", + "SSE.Views.PrintWithPreview.txtSelection": "Auswahl", + "SSE.Views.PrintWithPreview.txtSettingsOfSheet": "Blatteinstellungen", + "SSE.Views.PrintWithPreview.txtSheet": "Blatt: {0}", + "SSE.Views.PrintWithPreview.txtTop": "Oben", "SSE.Views.ProtectDialog.textExistName": "FEHLER! Es gibt schon einen Bereich mit diesem Titel", "SSE.Views.ProtectDialog.textInvalidName": "Der Bereich soll mit einem Buchstaben anfangen und soll nur Buchstaben, Zahlen und Lücken beinhalten.", "SSE.Views.ProtectDialog.textInvalidRange": "FEHLER! Ungültiger Zellenbereich", @@ -2753,6 +2817,7 @@ "SSE.Views.ProtectDialog.txtWBDescription": "Um den Benutzern das Öffnen von ausgeblendeten Arbeitsblättern, Hinzufügen, Verschieben oder Ausblenden und Umbenennen von Arbeitsblättern zu verbieten, schützen Sie die Arbeitsmappenstruktur mit einem Passwort.", "SSE.Views.ProtectDialog.txtWBTitle": "Arbeitsmappenstruktur schützen", "SSE.Views.ProtectRangesDlg.guestText": "Gast", + "SSE.Views.ProtectRangesDlg.lockText": "Gesperrt", "SSE.Views.ProtectRangesDlg.textDelete": "Löschen", "SSE.Views.ProtectRangesDlg.textEdit": "Bearbeiten", "SSE.Views.ProtectRangesDlg.textEmpty": "Keine Bereiche für Bearbeitung gefunden.", @@ -2832,6 +2897,7 @@ "SSE.Views.ShapeSettings.textPatternFill": "Muster", "SSE.Views.ShapeSettings.textPosition": "Stellung", "SSE.Views.ShapeSettings.textRadial": "Radial", + "SSE.Views.ShapeSettings.textRecentlyUsed": "Zuletzt verwendet", "SSE.Views.ShapeSettings.textRotate90": "90 Grad drehen", "SSE.Views.ShapeSettings.textRotation": "Rotation", "SSE.Views.ShapeSettings.textSelectImage": "Bild auswählen", @@ -3093,6 +3159,7 @@ "SSE.Views.Statusbar.tipAddTab": "Arbeitsblatt hinzufügen", "SSE.Views.Statusbar.tipFirst": "Bis zum ersten Blatt blättern", "SSE.Views.Statusbar.tipLast": "Bis zum letzten Blatt blättern", + "SSE.Views.Statusbar.tipListOfSheets": "Liste von Blättern", "SSE.Views.Statusbar.tipNext": "Blattliste nach rechts blättern", "SSE.Views.Statusbar.tipPrev": "Blattliste nach links blättern", "SSE.Views.Statusbar.tipZoomFactor": "Zoommodus", @@ -3281,6 +3348,8 @@ "SSE.Views.Toolbar.textPageMarginsCustom": "Benutzerdefinierte Seitenränder", "SSE.Views.Toolbar.textPortrait": "Hochformat", "SSE.Views.Toolbar.textPrint": "Drucken", + "SSE.Views.Toolbar.textPrintGridlines": "Gitternetzlinien drucken", + "SSE.Views.Toolbar.textPrintHeadings": "Überschriften drucken", "SSE.Views.Toolbar.textPrintOptions": "Druck-Einstellungen", "SSE.Views.Toolbar.textRight": "Rechts: ", "SSE.Views.Toolbar.textRightBorders": "Rahmenlinien rechts", @@ -3359,7 +3428,16 @@ "SSE.Views.Toolbar.tipInsertTable": "Tabelle einfügen", "SSE.Views.Toolbar.tipInsertText": "Textfeld einfügen", "SSE.Views.Toolbar.tipInsertTextart": "TextArt einfügen", + "SSE.Views.Toolbar.tipMarkersArrow": "Pfeilförmige Aufzählungszeichen", + "SSE.Views.Toolbar.tipMarkersCheckmark": "Häkchenaufzählungszeichen", + "SSE.Views.Toolbar.tipMarkersDash": "Aufzählungszeichen", + "SSE.Views.Toolbar.tipMarkersFRhombus": "Ausgefüllte karoförmige Aufzählungszeichen", + "SSE.Views.Toolbar.tipMarkersFRound": "Ausgefüllte runde Aufzählungszeichen", + "SSE.Views.Toolbar.tipMarkersFSquare": "Ausgefüllte quadratische Aufzählungszeichen", + "SSE.Views.Toolbar.tipMarkersHRound": "Leere runde Aufzählungszeichen", + "SSE.Views.Toolbar.tipMarkersStar": "Sternförmige Aufzählungszeichen", "SSE.Views.Toolbar.tipMerge": "Verbinden und zentrieren", + "SSE.Views.Toolbar.tipNone": "Keine", "SSE.Views.Toolbar.tipNumFormat": "Zahlenformat", "SSE.Views.Toolbar.tipPageMargins": "Seitenränder", "SSE.Views.Toolbar.tipPageOrient": "Seitenausrichtung", @@ -3488,6 +3566,7 @@ "SSE.Views.ValueFieldSettingsDialog.txtVarp": "VARIANZEN", "SSE.Views.ViewManagerDlg.closeButtonText": "Schließen", "SSE.Views.ViewManagerDlg.guestText": "Gast", + "SSE.Views.ViewManagerDlg.lockText": "Gesperrt", "SSE.Views.ViewManagerDlg.textDelete": "Löschen", "SSE.Views.ViewManagerDlg.textDuplicate": "Duplizieren", "SSE.Views.ViewManagerDlg.textEmpty": "Keine Anzeigen erstellt.", @@ -3503,7 +3582,9 @@ "SSE.Views.ViewManagerDlg.warnDeleteView": "Die aktuelle Tabellenansicht '%1' wird gelöscht.
Möchten Sie diese wirklich schließen und löschen?", "SSE.Views.ViewTab.capBtnFreeze": "Fensterausschnitt fixieren", "SSE.Views.ViewTab.capBtnSheetView": "Tabellenansicht", + "SSE.Views.ViewTab.textAlwaysShowToolbar": "Symbolleiste immer anzeigen", "SSE.Views.ViewTab.textClose": "Schließen", + "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "Statusleiste verbergen", "SSE.Views.ViewTab.textCreate": "Neu", "SSE.Views.ViewTab.textDefault": "Standard", "SSE.Views.ViewTab.textFormula": "Formelleiste", @@ -3511,7 +3592,9 @@ "SSE.Views.ViewTab.textFreezeRow": "Oberste Zeile einfrieren", "SSE.Views.ViewTab.textGridlines": "Gitternetzlinien ", "SSE.Views.ViewTab.textHeadings": "Überschriften", + "SSE.Views.ViewTab.textInterfaceTheme": "Thema der Benutzeroberfläche", "SSE.Views.ViewTab.textManager": "Ansichten-Manager", + "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Schatten für fixierte Bereiche anzeigen", "SSE.Views.ViewTab.textUnFreeze": "Fixierung aufheben", "SSE.Views.ViewTab.textZeros": "Nullen anzeigen", "SSE.Views.ViewTab.textZoom": "Zoom", diff --git a/apps/spreadsheeteditor/main/locale/es.json b/apps/spreadsheeteditor/main/locale/es.json index 2dcd73f9c..a5782dcc8 100644 --- a/apps/spreadsheeteditor/main/locale/es.json +++ b/apps/spreadsheeteditor/main/locale/es.json @@ -104,11 +104,11 @@ "Common.Translation.warnFileLockedBtnEdit": "Crear copia", "Common.Translation.warnFileLockedBtnView": "Abrir para visualizar", "Common.UI.ButtonColored.textAutoColor": "Automático", - "Common.UI.ButtonColored.textNewColor": "Añadir nuevo color personalizado", + "Common.UI.ButtonColored.textNewColor": "Agregar nuevo color personalizado", "Common.UI.ComboBorderSize.txtNoBorders": "Sin bordes", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sin bordes", "Common.UI.ComboDataView.emptyComboText": "Sin estilo", - "Common.UI.ExtendedColorDialog.addButtonText": "Añadir", + "Common.UI.ExtendedColorDialog.addButtonText": "Agregar", "Common.UI.ExtendedColorDialog.textCurrent": "Actual", "Common.UI.ExtendedColorDialog.textHexErr": "El valor introducido es incorrecto.
Por favor, introduzca un valor de 000000 a FFFFFF.", "Common.UI.ExtendedColorDialog.textNew": "Nuevo", @@ -152,7 +152,7 @@ "Common.Views.About.txtPoweredBy": "Desarrollado por", "Common.Views.About.txtTel": "tel.: ", "Common.Views.About.txtVersion": "Versión ", - "Common.Views.AutoCorrectDialog.textAdd": "Añadir", + "Common.Views.AutoCorrectDialog.textAdd": "Agregar", "Common.Views.AutoCorrectDialog.textApplyAsWork": "Aplicar mientras trabaja", "Common.Views.AutoCorrectDialog.textAutoCorrect": "Autocorrección", "Common.Views.AutoCorrectDialog.textAutoFormat": "Autoformato mientras escribe", @@ -173,7 +173,7 @@ "Common.Views.AutoCorrectDialog.textWarnAddRec": "Las funciones reconocidas deben contener solo letras de la A a la Z, mayúsculas o minúsculas.", "Common.Views.AutoCorrectDialog.textWarnResetRec": "Cualquier expresión que haya agregado se eliminará y las eliminadas se restaurarán. ¿Desea continuar?", "Common.Views.AutoCorrectDialog.warnReplace": "La entrada de autocorreción para %1 ya existe. ¿Desea reemplazarla?", - "Common.Views.AutoCorrectDialog.warnReset": "Cualquier autocorreción que haya agregado se eliminará y los modificados serán restaurados a sus valores originales. ¿Desea continuar?", + "Common.Views.AutoCorrectDialog.warnReset": "Las autocorrecciones que haya agregado se eliminarán y las modificadas recuperarán sus valores originales. ¿Desea continuar?", "Common.Views.AutoCorrectDialog.warnRestore": "La entrada de autocorrección para %1 será restablecida a su valor original. ¿Desea continuar?", "Common.Views.Chat.textSend": "Enviar", "Common.Views.Comments.mniAuthorAsc": "Autor de A a Z", @@ -183,10 +183,10 @@ "Common.Views.Comments.mniFilterGroups": "Filtrar por grupo", "Common.Views.Comments.mniPositionAsc": "Desde arriba", "Common.Views.Comments.mniPositionDesc": "Desde abajo", - "Common.Views.Comments.textAdd": "Añadir", - "Common.Views.Comments.textAddComment": "Añadir", - "Common.Views.Comments.textAddCommentToDoc": "Añadir comentario a documento", - "Common.Views.Comments.textAddReply": "Añadir respuesta", + "Common.Views.Comments.textAdd": "Agregar", + "Common.Views.Comments.textAddComment": "Agregar comentario", + "Common.Views.Comments.textAddCommentToDoc": "Agregar comentario al documento", + "Common.Views.Comments.textAddReply": "Agregar respuesta", "Common.Views.Comments.textAll": "Todo", "Common.Views.Comments.textAnonym": "Visitante", "Common.Views.Comments.textCancel": "Cancelar", @@ -195,7 +195,7 @@ "Common.Views.Comments.textComments": "Comentarios", "Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEnterCommentHint": "Introduzca su comentario aquí", - "Common.Views.Comments.textHintAddComment": "Añadir comentario", + "Common.Views.Comments.textHintAddComment": "Agregar comentario", "Common.Views.Comments.textOpenAgain": "Abrir de nuevo", "Common.Views.Comments.textReply": "Responder", "Common.Views.Comments.textResolve": "Resolver", @@ -295,14 +295,14 @@ "Common.Views.Plugins.textStop": "Detener", "Common.Views.Protection.hintAddPwd": "Encriptar con contraseña", "Common.Views.Protection.hintPwd": "Cambie o elimine la contraseña", - "Common.Views.Protection.hintSignature": "Añadir firma digital o línea de firma", - "Common.Views.Protection.txtAddPwd": "Añadir contraseña", + "Common.Views.Protection.hintSignature": "Agregar firma digital o línea de firma", + "Common.Views.Protection.txtAddPwd": "Agregar contraseña", "Common.Views.Protection.txtChangePwd": "Cambiar contraseña", "Common.Views.Protection.txtDeletePwd": "Eliminar contraseña", "Common.Views.Protection.txtEncrypt": "Encriptar", - "Common.Views.Protection.txtInvisibleSignature": "Añadir firma digital", + "Common.Views.Protection.txtInvisibleSignature": "Agregar firma digital", "Common.Views.Protection.txtSignature": "Firma", - "Common.Views.Protection.txtSignatureLine": "Añadir línea de firma", + "Common.Views.Protection.txtSignatureLine": "Agregar línea de firma", "Common.Views.RenameDialog.textName": "Nombre de archivo", "Common.Views.RenameDialog.txtInvalidName": "El nombre de archivo no debe contener los símbolos siguientes:", "Common.Views.ReviewChanges.hintNext": "Al siguiente cambio", @@ -359,8 +359,8 @@ "Common.Views.ReviewChanges.txtSpelling": "Сorrección ortográfica", "Common.Views.ReviewChanges.txtTurnon": "Rastrear cambios", "Common.Views.ReviewChanges.txtView": "Modo de visualización", - "Common.Views.ReviewPopover.textAdd": "Añadir", - "Common.Views.ReviewPopover.textAddReply": "Añadir respuesta", + "Common.Views.ReviewPopover.textAdd": "Agregar", + "Common.Views.ReviewPopover.textAddReply": "Agregar respuesta", "Common.Views.ReviewPopover.textCancel": "Cancelar", "Common.Views.ReviewPopover.textClose": "Cerrar", "Common.Views.ReviewPopover.textEdit": "OK", @@ -391,7 +391,7 @@ "Common.Views.SignDialog.textValid": "Válido desde %1 hasta %2", "Common.Views.SignDialog.tipFontName": "Nombre del tipo de letra", "Common.Views.SignDialog.tipFontSize": "Tamaño de letra", - "Common.Views.SignSettingsDialog.textAllowComment": "Permitir a quien firma añadir comentarios en el diálogo de firma", + "Common.Views.SignSettingsDialog.textAllowComment": "Permitir al firmante agregar comentarios en el diálogo de firma", "Common.Views.SignSettingsDialog.textInfo": "Información de quien firma", "Common.Views.SignSettingsDialog.textInfoEmail": "Correo electrónico", "Common.Views.SignSettingsDialog.textInfoName": "Nombre", @@ -469,15 +469,15 @@ "SSE.Controllers.DocumentHolder.textSym": "sym", "SSE.Controllers.DocumentHolder.tipIsLocked": "Este elemento está siendo editado por otro usuario.", "SSE.Controllers.DocumentHolder.txtAboveAve": "Superior a la media", - "SSE.Controllers.DocumentHolder.txtAddBottom": "Añadir borde inferior", - "SSE.Controllers.DocumentHolder.txtAddFractionBar": "Añadir barra de fracción", - "SSE.Controllers.DocumentHolder.txtAddHor": "Añadir línea horizontal", - "SSE.Controllers.DocumentHolder.txtAddLB": "Añadir línea inferior izquierda", - "SSE.Controllers.DocumentHolder.txtAddLeft": "Añadir borde izquierdo", - "SSE.Controllers.DocumentHolder.txtAddLT": "Añadir línea superior izquierda", - "SSE.Controllers.DocumentHolder.txtAddRight": "Añadir borde derecho", - "SSE.Controllers.DocumentHolder.txtAddTop": "Añadir borde superior", - "SSE.Controllers.DocumentHolder.txtAddVer": "Añadir línea vertical", + "SSE.Controllers.DocumentHolder.txtAddBottom": "Agregar borde inferior", + "SSE.Controllers.DocumentHolder.txtAddFractionBar": "Agregar barra de fracción", + "SSE.Controllers.DocumentHolder.txtAddHor": "Agregar línea horizontal", + "SSE.Controllers.DocumentHolder.txtAddLB": "Agregar línea inferior izquierda", + "SSE.Controllers.DocumentHolder.txtAddLeft": "Agregar borde izquierdo", + "SSE.Controllers.DocumentHolder.txtAddLT": "Agregar línea superior izquierda", + "SSE.Controllers.DocumentHolder.txtAddRight": "Agregar borde derecho", + "SSE.Controllers.DocumentHolder.txtAddTop": "Agregar borde superior", + "SSE.Controllers.DocumentHolder.txtAddVer": "Agregar línea vertical", "SSE.Controllers.DocumentHolder.txtAlignToChar": "Alinear a carácter", "SSE.Controllers.DocumentHolder.txtAll": "(Todos)", "SSE.Controllers.DocumentHolder.txtAllTableHint": "Devuelve todo el contenido de la tabla o de las columnas de la tabla especificadas, incluyendo las cabeceras de las columnas, los datos y las filas totales", @@ -1445,7 +1445,7 @@ "SSE.Views.AdvancedSeparatorDialog.textTitle": "Ajustes Avanzados", "SSE.Views.AdvancedSeparatorDialog.txtNone": "(ninguno)", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Filtro personalizado", - "SSE.Views.AutoFilterDialog.textAddSelection": "Añadir selección actual para filtración", + "SSE.Views.AutoFilterDialog.textAddSelection": "Agregar la selección actual al filtro", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Blanks}", "SSE.Views.AutoFilterDialog.textSelectAll": "Seleccionar todo", "SSE.Views.AutoFilterDialog.textSelectAllResults": "Seleccionar todos los resultados de la búsqueda", @@ -1526,7 +1526,7 @@ "SSE.Views.CellSettings.textThisPivot": "Desde esta tabla pivote", "SSE.Views.CellSettings.textThisSheet": "Desde esta hoja de cálculo", "SSE.Views.CellSettings.textThisTable": "Desde esta tabla", - "SSE.Views.CellSettings.tipAddGradientPoint": "Añadir punto de degradado", + "SSE.Views.CellSettings.tipAddGradientPoint": "Agregar punto de degradado", "SSE.Views.CellSettings.tipAll": "Establecer borde exterior y todas las líneas interiores ", "SSE.Views.CellSettings.tipBottom": "Establecer sólo borde exterior inferior", "SSE.Views.CellSettings.tipDiagD": "Establecer borde diagonal abajo", @@ -1547,7 +1547,7 @@ "SSE.Views.ChartDataDialog.errorNoSingleRowCol": "La referencia no es válida. Las referencias a títulos, valores, tamaños, o etiquetas de datos deben ser una sola celda, fila o columna.", "SSE.Views.ChartDataDialog.errorNoValues": "Para crear un gráfico, las series deben contener al menos un valor.", "SSE.Views.ChartDataDialog.errorStockChart": "Orden de las filas incorrecto. Para crear un gráfico de cotizaciones introduzca los datos en la hoja en el siguiente orden: precio de apertura, precio máximo, precio mínimo, precio de cierre.", - "SSE.Views.ChartDataDialog.textAdd": "Añadir", + "SSE.Views.ChartDataDialog.textAdd": "Agregar", "SSE.Views.ChartDataDialog.textCategory": "Horizontal (Categoría) Etiquetas de Eje", "SSE.Views.ChartDataDialog.textData": "Rango de datos del gráfico", "SSE.Views.ChartDataDialog.textDelete": "Eliminar", @@ -1922,7 +1922,7 @@ "SSE.Views.DocumentHolder.textVar": "Var", "SSE.Views.DocumentHolder.topCellText": "Alinear en la parte superior", "SSE.Views.DocumentHolder.txtAccounting": "Contabilidad", - "SSE.Views.DocumentHolder.txtAddComment": "Añadir comentario", + "SSE.Views.DocumentHolder.txtAddComment": "Agregar comentario", "SSE.Views.DocumentHolder.txtAddNamedRange": "Definir Nombre", "SSE.Views.DocumentHolder.txtArrange": "Arreglar", "SSE.Views.DocumentHolder.txtAscending": "Ascendente", @@ -2037,8 +2037,8 @@ "SSE.Views.FileMenuPanels.CreateNew.txtBlank": "Hoja de cálculo en blanco", "SSE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Crear nueva", "SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Aplicar", - "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Añadir autor", - "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Añadir texto", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Agregar autor", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Agregar texto", "SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Aplicación", "SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor", "SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Cambiar derechos de acceso", @@ -2063,7 +2063,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Separador decimal", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "rápido", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Hinting", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Añadir la versión al almacenamiento después de hacer clic en Guardar o Ctrl+S", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Agregar la versión al almacenamiento después de hacer clic en Guardar o Ctrl+S", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Idioma de fórmulas", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Ejemplo: SUMA; MIN; MAX; CONTAR", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Activar la visualización de comentarios", @@ -2151,7 +2151,7 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "La edición eliminará las firmas de la hoja de cálculo
¿Está seguro de que quiere continuar?", "SSE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Esta hoja de cálculo se ha protegido con una contraseña", "SSE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "Esta hoja de cálculo debe firmarse.", - "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Firmas válidas se han añadido a la hoja de cálculo. La hoja de cálculo está protegida y no se puede editar.", + "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Se han agregado firmas válidas a la hoja de cálculo. La hoja de cálculo está protegida contra la edición.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Algunas de las firmas digitales en la hoja de cálculo son inválidas o no se pudieron verificar. La hoja de cálculo está protegida y no se puede editar.", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Ver firmas", "SSE.Views.FileMenuPanels.Settings.txtGeneral": "General", @@ -2211,7 +2211,7 @@ "SSE.Views.FormatRulesEditDlg.textMinimum": "Mínimo", "SSE.Views.FormatRulesEditDlg.textMinpoint": "Punto mínimo", "SSE.Views.FormatRulesEditDlg.textNegative": "Negativo", - "SSE.Views.FormatRulesEditDlg.textNewColor": "Añadir nuevo color personalizado", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Agregar nuevo color personalizado", "SSE.Views.FormatRulesEditDlg.textNoBorders": "Sin bordes", "SSE.Views.FormatRulesEditDlg.textNone": "Ningún", "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "Uno o varios valores especificados no son un porcentaje válido.", @@ -2380,7 +2380,7 @@ "SSE.Views.HeaderFooterDialog.textItalic": "Cursiva", "SSE.Views.HeaderFooterDialog.textLeft": "A la izquierda", "SSE.Views.HeaderFooterDialog.textMaxError": "El texto es demasiado largo. Reduzca el número de caracteres usados.", - "SSE.Views.HeaderFooterDialog.textNewColor": "Color Personalizado", + "SSE.Views.HeaderFooterDialog.textNewColor": "Agregar nuevo color personalizado", "SSE.Views.HeaderFooterDialog.textOdd": "Página impar", "SSE.Views.HeaderFooterDialog.textPageCount": "Número de páginas", "SSE.Views.HeaderFooterDialog.textPageNum": "Número de página", @@ -2628,10 +2628,10 @@ "SSE.Views.PivotSettings.textFilters": "Filtros", "SSE.Views.PivotSettings.textRows": "Filas", "SSE.Views.PivotSettings.textValues": "Valores", - "SSE.Views.PivotSettings.txtAddColumn": "Añadir a columna", - "SSE.Views.PivotSettings.txtAddFilter": "Añadir a filtros", - "SSE.Views.PivotSettings.txtAddRow": "Añadir a filas", - "SSE.Views.PivotSettings.txtAddValues": "Añadir a valores", + "SSE.Views.PivotSettings.txtAddColumn": "Agregar a columna", + "SSE.Views.PivotSettings.txtAddFilter": "Agregar a filtros", + "SSE.Views.PivotSettings.txtAddRow": "Agregar a filas", + "SSE.Views.PivotSettings.txtAddValues": "Agregar a valores", "SSE.Views.PivotSettings.txtFieldSettings": "Ajustes de campo", "SSE.Views.PivotSettings.txtMoveBegin": "Mover al principio", "SSE.Views.PivotSettings.txtMoveColumn": "Mover a la columna", @@ -2906,7 +2906,7 @@ "SSE.Views.ShapeSettings.textStyle": "Estilo", "SSE.Views.ShapeSettings.textTexture": "De textura", "SSE.Views.ShapeSettings.textTile": "Mosaico", - "SSE.Views.ShapeSettings.tipAddGradientPoint": "Añadir punto de degradado", + "SSE.Views.ShapeSettings.tipAddGradientPoint": "Agregar punto de degradado", "SSE.Views.ShapeSettings.tipRemoveGradientPoint": "Eliminar gradiente de punto", "SSE.Views.ShapeSettings.txtBrownPaper": "Papel marrón", "SSE.Views.ShapeSettings.txtCanvas": "Lienzo", @@ -2978,7 +2978,7 @@ "SSE.Views.SignatureSettings.txtEditWarning": "La edición eliminará las firmas de la hoja de cálculo
¿Está seguro de que quiere continuar?", "SSE.Views.SignatureSettings.txtRemoveWarning": "¿Desea eliminar esta firma?
No se puede deshacer.", "SSE.Views.SignatureSettings.txtRequestedSignatures": "Esta hoja de cálculo debe firmarse.", - "SSE.Views.SignatureSettings.txtSigned": "Firmas válidas se han añadido a la hoja de cálculo. La hoja de cálculo está protegida y no se puede editar.", + "SSE.Views.SignatureSettings.txtSigned": "Se han agregado firmas válidas a la hoja de cálculo. La hoja de cálculo está protegida contra la edición.", "SSE.Views.SignatureSettings.txtSignedInvalid": "Algunas de las firmas digitales en la hoja de cálculo son inválidas o no se pudieron verificar. La hoja de cálculo está protegida y no se puede editar.", "SSE.Views.SlicerAddDialog.textColumns": "Columnas", "SSE.Views.SlicerAddDialog.txtTitle": "Insertar segmentaciones de datos", @@ -3052,7 +3052,7 @@ "SSE.Views.SortDialog.errorNotOriginalRow": "La fila que ha seleccionado no está en el rango seleccionado originalmente. ", "SSE.Views.SortDialog.errorSameColumnColor": "%1 está siendo clasificado por el mismo color más de una vez. Elimine los criterios de clasificación duplicados y vuelva a intentarlo.", "SSE.Views.SortDialog.errorSameColumnValue": "%1 está siendo ordenado por valores más de una vez.
Elimine los criterios de clasificación duplicados y vuelva a intentarlo.", - "SSE.Views.SortDialog.textAdd": "Añadir nivel", + "SSE.Views.SortDialog.textAdd": "Agregar nivel", "SSE.Views.SortDialog.textAsc": "Ascendente", "SSE.Views.SortDialog.textAuto": "Automático", "SSE.Views.SortDialog.textAZ": "De A a Z", @@ -3090,7 +3090,7 @@ "SSE.Views.SortOptionsDialog.textOrientation": "Orientación ", "SSE.Views.SortOptionsDialog.textTitle": "Opciones de ordenación", "SSE.Views.SortOptionsDialog.textTopBottom": "Ordenar de arriba hacia abajo", - "SSE.Views.SpecialPasteDialog.textAdd": "Añadir", + "SSE.Views.SpecialPasteDialog.textAdd": "Agregar", "SSE.Views.SpecialPasteDialog.textAll": "Todo", "SSE.Views.SpecialPasteDialog.textBlanks": "Saltar blancos", "SSE.Views.SpecialPasteDialog.textColWidth": "Anchos de columna", @@ -3117,7 +3117,7 @@ "SSE.Views.Spellcheck.textChangeAll": "Cambiar todo", "SSE.Views.Spellcheck.textIgnore": "Ignorar", "SSE.Views.Spellcheck.textIgnoreAll": "Ignorar todo", - "SSE.Views.Spellcheck.txtAddToDictionary": "Añadir a Diccionario", + "SSE.Views.Spellcheck.txtAddToDictionary": "Agregar al diccionario", "SSE.Views.Spellcheck.txtComplete": "La corrección ortográfica ha sido completada", "SSE.Views.Spellcheck.txtDictionaryLanguage": "Idioma del diccionario", "SSE.Views.Spellcheck.txtNextTip": "Ir a la siguiente palabra", @@ -3153,10 +3153,10 @@ "SSE.Views.Statusbar.textCount": "Contar", "SSE.Views.Statusbar.textMax": "Máx.", "SSE.Views.Statusbar.textMin": "Mín.", - "SSE.Views.Statusbar.textNewColor": "Color personalizado", + "SSE.Views.Statusbar.textNewColor": "Agregar nuevo color personalizado", "SSE.Views.Statusbar.textNoColor": "Sin color", "SSE.Views.Statusbar.textSum": "Suma", - "SSE.Views.Statusbar.tipAddTab": "Añadir hoja de cálculo", + "SSE.Views.Statusbar.tipAddTab": "Agregar hoja de cálculo", "SSE.Views.Statusbar.tipFirst": "Desplazar hasta la primera hoja", "SSE.Views.Statusbar.tipLast": "Desplazar hasta la última hoja", "SSE.Views.Statusbar.tipListOfSheets": "Lista de hojas", @@ -3250,7 +3250,7 @@ "SSE.Views.TextArtSettings.textTexture": "De textura", "SSE.Views.TextArtSettings.textTile": "Mosaico", "SSE.Views.TextArtSettings.textTransform": "Transformar", - "SSE.Views.TextArtSettings.tipAddGradientPoint": "Añadir punto de degradado", + "SSE.Views.TextArtSettings.tipAddGradientPoint": "Agregar punto de degradado", "SSE.Views.TextArtSettings.tipRemoveGradientPoint": "Eliminar gradiente de punto", "SSE.Views.TextArtSettings.txtBrownPaper": "Papel marrón", "SSE.Views.TextArtSettings.txtCanvas": "Lienzo", @@ -3264,7 +3264,7 @@ "SSE.Views.TextArtSettings.txtNoBorders": "Sin línea", "SSE.Views.TextArtSettings.txtPapyrus": "Papiro", "SSE.Views.TextArtSettings.txtWood": "Madera", - "SSE.Views.Toolbar.capBtnAddComment": "Añadir comentario", + "SSE.Views.Toolbar.capBtnAddComment": "Agregar comentario", "SSE.Views.Toolbar.capBtnColorSchemas": "Combinación de colores", "SSE.Views.Toolbar.capBtnComment": "Comentario", "SSE.Views.Toolbar.capBtnInsHeader": "Encabezado/Pie de página", @@ -3291,7 +3291,7 @@ "SSE.Views.Toolbar.mniImageFromFile": "Imagen desde archivo", "SSE.Views.Toolbar.mniImageFromStorage": "Imagen de Almacenamiento", "SSE.Views.Toolbar.mniImageFromUrl": "Imagen desde url", - "SSE.Views.Toolbar.textAddPrintArea": "Añadir al área de impresión", + "SSE.Views.Toolbar.textAddPrintArea": "Agregar al área de impresión", "SSE.Views.Toolbar.textAlignBottom": "Alinear abajo", "SSE.Views.Toolbar.textAlignCenter": "Alinear al centro", "SSE.Views.Toolbar.textAlignJust": "Alineado", @@ -3340,7 +3340,7 @@ "SSE.Views.Toolbar.textMiddleBorders": "Bordes horizontales internos", "SSE.Views.Toolbar.textMoreFormats": "Otros formatos", "SSE.Views.Toolbar.textMorePages": "Más páginas", - "SSE.Views.Toolbar.textNewColor": "Color Personalizado", + "SSE.Views.Toolbar.textNewColor": "Agregar nuevo color personalizado", "SSE.Views.Toolbar.textNewRule": "Nueva regla", "SSE.Views.Toolbar.textNoBorders": "Sin bordes", "SSE.Views.Toolbar.textOnePage": "página", @@ -3418,7 +3418,7 @@ "SSE.Views.Toolbar.tipInsertChart": "Insertar gráfico", "SSE.Views.Toolbar.tipInsertChartSpark": "Insertar gráfico", "SSE.Views.Toolbar.tipInsertEquation": "Insertar ecuación", - "SSE.Views.Toolbar.tipInsertHyperlink": "Añadir hipervínculo", + "SSE.Views.Toolbar.tipInsertHyperlink": "Agregar hipervínculo", "SSE.Views.Toolbar.tipInsertImage": "Insertar imagen", "SSE.Views.Toolbar.tipInsertOpt": "Insertar celdas", "SSE.Views.Toolbar.tipInsertShape": "Insertar autoforma", diff --git a/apps/spreadsheeteditor/main/locale/hu.json b/apps/spreadsheeteditor/main/locale/hu.json index 3728297bf..0f2c0fa58 100644 --- a/apps/spreadsheeteditor/main/locale/hu.json +++ b/apps/spreadsheeteditor/main/locale/hu.json @@ -114,6 +114,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Új", "Common.UI.ExtendedColorDialog.textRGBErr": "A megadott érték helytelen.
Kérjük, adjon meg egy számértéket 0 és 255 között.", "Common.UI.HSBColorPicker.textNoColor": "Nincs szín", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Jelszó elrejtése", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Jelszó megjelenítése", "Common.UI.SearchDialog.textHighlight": "Eredmények kiemelése", "Common.UI.SearchDialog.textMatchCase": "Kis-nagybetű érzékeny", "Common.UI.SearchDialog.textReplaceDef": "Írja be a helyettesítő szöveget", @@ -178,12 +180,14 @@ "Common.Views.Comments.mniAuthorDesc": "Szerző (Z-A)", "Common.Views.Comments.mniDateAsc": "Legöregebb először", "Common.Views.Comments.mniDateDesc": "Legújabb először", + "Common.Views.Comments.mniFilterGroups": "Szűrés csoport szerint", "Common.Views.Comments.mniPositionAsc": "Felülről", "Common.Views.Comments.mniPositionDesc": "Alulról", "Common.Views.Comments.textAdd": "Hozzáad", "Common.Views.Comments.textAddComment": "Megjegyzés hozzáadása", "Common.Views.Comments.textAddCommentToDoc": "Megjegyzés hozzáadása a dokumentumhoz", "Common.Views.Comments.textAddReply": "Válasz hozzáadása", + "Common.Views.Comments.textAll": "Összes", "Common.Views.Comments.textAnonym": "Vendég", "Common.Views.Comments.textCancel": "Mégse", "Common.Views.Comments.textClose": "Bezár", @@ -197,6 +201,7 @@ "Common.Views.Comments.textResolve": "Felold", "Common.Views.Comments.textResolved": "Feloldott", "Common.Views.Comments.textSort": "Megjegyzések rendezése", + "Common.Views.Comments.textViewResolved": "Nincs engedélye a megjegyzés újranyitásához", "Common.Views.CopyWarningDialog.textDontShow": "Ne mutassa újra ezt az üzenetet", "Common.Views.CopyWarningDialog.textMsg": "A szerkesztés eszköztár gombjaival és a helyi menüvel végzett másolás, kivágás és beillesztés műveletek csak a szerkesztő oldalon használhatóak.

A szerkesztő lapon kívüli alkalmazásokba való másoláshoz vagy beillesztéshez az alábbi billentyűzetkombinációkat használja:", "Common.Views.CopyWarningDialog.textTitle": "Másolás, kivágás és beillesztés", @@ -364,6 +369,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Ismét megnyit", "Common.Views.ReviewPopover.textReply": "Ismétel", "Common.Views.ReviewPopover.textResolve": "Felold", + "Common.Views.ReviewPopover.textViewResolved": "Nincs engedélye a megjegyzés újranyitásához", "Common.Views.ReviewPopover.txtDeleteTip": "Törlés", "Common.Views.ReviewPopover.txtEditTip": "Szerkesztés", "Common.Views.SaveAsDlg.textLoading": "Betöltés", @@ -474,6 +480,7 @@ "SSE.Controllers.DocumentHolder.txtAddVer": "Vízszintes vonal hozzáadása", "SSE.Controllers.DocumentHolder.txtAlignToChar": "Karakterhez rendez", "SSE.Controllers.DocumentHolder.txtAll": "(Minden)", + "SSE.Controllers.DocumentHolder.txtAllTableHint": "A táblázat teljes tartalmát vagy a megadott táblázat oszlopait adja vissza, beleértve az oszlopfejléceket, az adatokat és az összes sort", "SSE.Controllers.DocumentHolder.txtAnd": "és", "SSE.Controllers.DocumentHolder.txtBegins": "Kezdődik", "SSE.Controllers.DocumentHolder.txtBelowAve": "Átlagon aluli", @@ -483,6 +490,7 @@ "SSE.Controllers.DocumentHolder.txtColumn": "Oszlop", "SSE.Controllers.DocumentHolder.txtColumnAlign": "Oszlop elrendezése", "SSE.Controllers.DocumentHolder.txtContains": "tartalmaz", + "SSE.Controllers.DocumentHolder.txtDataTableHint": "A táblázat adatcelláit vagy a megadott táblázatoszlopokat adja vissza", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Az argumentum csökkentése", "SSE.Controllers.DocumentHolder.txtDeleteArg": "Argumentum törlése", "SSE.Controllers.DocumentHolder.txtDeleteBreak": "Oldaltörés törlése", @@ -506,6 +514,7 @@ "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Nagyobb vagy egyenlő", "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Karakter a szöveg fölött", "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Karakter a szöveg alatt", + "SSE.Controllers.DocumentHolder.txtHeadersTableHint": "Visszaadja a táblázat vagy a megadott táblázatoszlopok oszlopfejléceit", "SSE.Controllers.DocumentHolder.txtHeight": "Magasság", "SSE.Controllers.DocumentHolder.txtHideBottom": "Alsó szegély elrejtése", "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "Alsó limit elrejtése", @@ -584,7 +593,9 @@ "SSE.Controllers.DocumentHolder.txtSorting": "Rendezés", "SSE.Controllers.DocumentHolder.txtSortSelected": "Kiválasztottak renezése", "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Zárójelek nyújtása", + "SSE.Controllers.DocumentHolder.txtThisRowHint": "A megadott oszlopnak csak ezt a sorát válassza ki", "SSE.Controllers.DocumentHolder.txtTop": "Felső", + "SSE.Controllers.DocumentHolder.txtTotalsTableHint": "A táblázat vagy a megadott táblázatoszlopok összes sorát adja vissza", "SSE.Controllers.DocumentHolder.txtUnderbar": "Sáv a szöveg alatt", "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Táblázat automatikus bővítésének visszaállítása", "SSE.Controllers.DocumentHolder.txtUseTextImport": "Használja a szöveg importálás varázslót", @@ -639,6 +650,7 @@ "SSE.Controllers.Main.errorAutoFilterHiddenRange": "A műveletet nem lehet végrehajtani, mert a terület szűrt cellákat tartalmaz.
Szüntesse meg a szűrt elemeket, és próbálja újra.", "SSE.Controllers.Main.errorBadImageUrl": "Hibás kép URL", "SSE.Controllers.Main.errorCannotUngroup": "Nem lehet kibontani. Körvonal elindításához válassza ki a részletek sorát vagy oszlopát, és csoportosítsa őket.", + "SSE.Controllers.Main.errorCannotUseCommandProtectedSheet": "Ez a parancs nem használható védett munkalapon. A parancs használatához szüntesse meg a munkalap védelmét.
Előfordulhat, hogy jelszót kell megadnia.", "SSE.Controllers.Main.errorChangeArray": "Nem módosíthatja a tömb egy részét.", "SSE.Controllers.Main.errorChangeFilteredRange": "Ez megváltoztat a munkalapon egy szűrt tartományt.
A feladat végrehajtásához távolítsa el az automatikus szűrőket.", "SSE.Controllers.Main.errorChangeOnProtectedSheet": "A módosítani kívánt cella vagy diagram egy védett munkalapon található.
Módosításhoz szüntesse meg a munkalap védelmét. Előfordulhat, hogy ehhez jelszót kell megadnia.", @@ -769,6 +781,7 @@ "SSE.Controllers.Main.textNoLicenseTitle": "Elérte a licenckorlátot", "SSE.Controllers.Main.textPaidFeature": "Fizetett funkció", "SSE.Controllers.Main.textPleaseWait": "A művelet a vártnál több időt vehet igénybe. Kérjük várjon...", + "SSE.Controllers.Main.textReconnect": "A kapcsolat helyreállt", "SSE.Controllers.Main.textRemember": "Emlékezzen a választásomra minden fájlhoz", "SSE.Controllers.Main.textRenameError": "A felhasználónév nem lehet üres.", "SSE.Controllers.Main.textRenameLabel": "Adjon meg egy nevet az együttműködéshez", @@ -1060,6 +1073,7 @@ "SSE.Controllers.Statusbar.errorLastSheet": "A munkafüzetnek legalább egy látható munkalapot kell tartalmaznia.", "SSE.Controllers.Statusbar.errorRemoveSheet": "A munkalap nem törölhető.", "SSE.Controllers.Statusbar.strSheet": "Munkalap", + "SSE.Controllers.Statusbar.textDisconnect": "A kapcsolat megszakadt
Probálkoás a kapcsolat létrehozására. Kérjük, ellenőrizze a csatlakozási beállításokat.", "SSE.Controllers.Statusbar.textSheetViewTip": "Lapnézet módban van. A szűrőket és a rendezést csak Ön és azok láthatják, akik még mindig ebben a nézetben vannak.", "SSE.Controllers.Statusbar.textSheetViewTipFilters": "Lapnézet módban van. A szűrőket csak Ön és azok láthatják, akik továbbra is ebben a nézetben vannak.", "SSE.Controllers.Statusbar.warnDeleteSheet": "A kiválasztott munkalapon lehetnek adatok. Biztosan folytatja a műveletet?", @@ -1085,6 +1099,7 @@ "SSE.Controllers.Toolbar.textPivot": "Pivot tábla", "SSE.Controllers.Toolbar.textRadical": "Gyökvonás", "SSE.Controllers.Toolbar.textRating": "Értékelések", + "SSE.Controllers.Toolbar.textRecentlyUsed": "Mostanában használt", "SSE.Controllers.Toolbar.textScript": "Scripts", "SSE.Controllers.Toolbar.textShapes": "Alakzatok", "SSE.Controllers.Toolbar.textSymbols": "Szimbólumok", @@ -1426,7 +1441,9 @@ "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Decimális szeparátor", "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Ezres elválasztó", "SSE.Views.AdvancedSeparatorDialog.textLabel": "Numerikus adatok felismerésére használt beállítások", + "SSE.Views.AdvancedSeparatorDialog.textQualifier": "Szöveg minősítő", "SSE.Views.AdvancedSeparatorDialog.textTitle": "Haladó beállítások", + "SSE.Views.AdvancedSeparatorDialog.txtNone": "(nincs)", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Egyéni szűrő", "SSE.Views.AutoFilterDialog.textAddSelection": "Az aktuális kiválasztás hozzáadása a szűréshez", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Üresek}", @@ -1872,6 +1889,7 @@ "SSE.Views.DocumentHolder.textCrop": "Levág", "SSE.Views.DocumentHolder.textCropFill": "Kitöltés", "SSE.Views.DocumentHolder.textCropFit": "Illesztés", + "SSE.Views.DocumentHolder.textEditPoints": "Pontok Szerkesztése", "SSE.Views.DocumentHolder.textEntriesList": "Lenyíló listából választás", "SSE.Views.DocumentHolder.textFlipH": "Vízszintesen tükröz", "SSE.Views.DocumentHolder.textFlipV": "Függőlegesen tükröz", @@ -2241,6 +2259,7 @@ "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Formázási szabály szerkesztése", "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Új formázási szabály", "SSE.Views.FormatRulesManagerDlg.guestText": "Vendég", + "SSE.Views.FormatRulesManagerDlg.lockText": "Zárolva", "SSE.Views.FormatRulesManagerDlg.text1Above": "1 std eltérés ha átlag feletti", "SSE.Views.FormatRulesManagerDlg.text1Below": "1 std eltérés ha átlag alatti", "SSE.Views.FormatRulesManagerDlg.text2Above": "2 std eltérés ha átlag feletti", @@ -2402,6 +2421,7 @@ "SSE.Views.ImageSettings.textCrop": "Levág", "SSE.Views.ImageSettings.textCropFill": "Kitöltés", "SSE.Views.ImageSettings.textCropFit": "Illesztés", + "SSE.Views.ImageSettings.textCropToShape": "Formára vágás", "SSE.Views.ImageSettings.textEdit": "Szerkeszt", "SSE.Views.ImageSettings.textEditObject": "Objektum szerkesztése", "SSE.Views.ImageSettings.textFlip": "Tükröz", @@ -2416,6 +2436,7 @@ "SSE.Views.ImageSettings.textInsert": "Képet cserél", "SSE.Views.ImageSettings.textKeepRatio": "Állandó arányok", "SSE.Views.ImageSettings.textOriginalSize": "Valódi méret", + "SSE.Views.ImageSettings.textRecentlyUsed": "Mostanában használt", "SSE.Views.ImageSettings.textRotate90": "Elforgat 90 fokkal", "SSE.Views.ImageSettings.textRotation": "Forgatás", "SSE.Views.ImageSettings.textSize": "Méret", @@ -2493,6 +2514,7 @@ "SSE.Views.NamedRangePasteDlg.txtTitle": "Név beillesztése", "SSE.Views.NameManagerDlg.closeButtonText": "Bezár", "SSE.Views.NameManagerDlg.guestText": "Vendég", + "SSE.Views.NameManagerDlg.lockText": "Zárolva", "SSE.Views.NameManagerDlg.textDataRange": "Adattartomány", "SSE.Views.NameManagerDlg.textDelete": "Töröl", "SSE.Views.NameManagerDlg.textEdit": "Szerkeszt", @@ -2724,6 +2746,43 @@ "SSE.Views.PrintTitlesDialog.textSelectRange": "Tartomány kiválasztása", "SSE.Views.PrintTitlesDialog.textTitle": "Címek nyomtatása", "SSE.Views.PrintTitlesDialog.textTop": "Oszlopok ismétlése felül", + "SSE.Views.PrintWithPreview.txtActualSize": "Valódi méret", + "SSE.Views.PrintWithPreview.txtAllSheets": "Minden munkalap", + "SSE.Views.PrintWithPreview.txtApplyToAllSheets": "Alkalmazás az összes munkalapra", + "SSE.Views.PrintWithPreview.txtBottom": "Alul", + "SSE.Views.PrintWithPreview.txtCurrentSheet": "Aktuális munkalap", + "SSE.Views.PrintWithPreview.txtCustom": "Egyéni", + "SSE.Views.PrintWithPreview.txtCustomOptions": "Egyéni lehetőségek", + "SSE.Views.PrintWithPreview.txtFitCols": "Illessze az összes oszlopot egy oldalon", + "SSE.Views.PrintWithPreview.txtFitPage": "Illessze a munkalapot egy oldalra", + "SSE.Views.PrintWithPreview.txtFitRows": "Illessze az összes sort egy oldalon", + "SSE.Views.PrintWithPreview.txtGridlinesAndHeadings": "Rácsvonalak és címsorok", + "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Fejléc/lábléc beállítások", + "SSE.Views.PrintWithPreview.txtIgnore": "Nyomtatási terület mellőzése", + "SSE.Views.PrintWithPreview.txtLandscape": "Tájkép", + "SSE.Views.PrintWithPreview.txtLeft": "Bal", + "SSE.Views.PrintWithPreview.txtMargins": "Margók", + "SSE.Views.PrintWithPreview.txtOf": "-ból/ből {0}", + "SSE.Views.PrintWithPreview.txtPage": "Oldal", + "SSE.Views.PrintWithPreview.txtPageNumInvalid": "Hibás oldalszám", + "SSE.Views.PrintWithPreview.txtPageOrientation": "Lap elrendezés", + "SSE.Views.PrintWithPreview.txtPageSize": "Lap méret", + "SSE.Views.PrintWithPreview.txtPortrait": "Portré", + "SSE.Views.PrintWithPreview.txtPrint": "Nyomtatás", + "SSE.Views.PrintWithPreview.txtPrintGrid": "Rácsvonalak nyomtatása", + "SSE.Views.PrintWithPreview.txtPrintHeadings": "Sor- és oszlopfejlécek nyomtatása", + "SSE.Views.PrintWithPreview.txtPrintRange": "Nyomtatási tartomány", + "SSE.Views.PrintWithPreview.txtPrintTitles": "Címek nyomtatása", + "SSE.Views.PrintWithPreview.txtRepeat": "Ismétlés...", + "SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft": "Oszlopok ismétlése a bal oldalon", + "SSE.Views.PrintWithPreview.txtRepeatRowsAtTop": "Oszlopok ismétlése felül", + "SSE.Views.PrintWithPreview.txtRight": "Jobb", + "SSE.Views.PrintWithPreview.txtSave": "Mentés", + "SSE.Views.PrintWithPreview.txtScaling": "Skálázás", + "SSE.Views.PrintWithPreview.txtSelection": "Választás", + "SSE.Views.PrintWithPreview.txtSettingsOfSheet": "Munkalap beállításai", + "SSE.Views.PrintWithPreview.txtSheet": "Munkalap: {0}", + "SSE.Views.PrintWithPreview.txtTop": "Felső", "SSE.Views.ProtectDialog.textExistName": "HIBA! Már létezik ilyen című tartomány", "SSE.Views.ProtectDialog.textInvalidName": "A tartomány címének betűvel kell kezdődnie, és csak betűket, számokat és szóközöket tartalmazhat.", "SSE.Views.ProtectDialog.textInvalidRange": "HIBA! Érvénytelen cellatartomány", @@ -2758,6 +2817,7 @@ "SSE.Views.ProtectDialog.txtWBDescription": "Ha meg szeretné akadályozni, hogy más felhasználók megtekintsék a rejtett munkalapokat, továbbá hozzáadjanak, áthelyezzenek, töröljenek, elrejtsenek, illetve átnevezzenek munkalapokat, jelszóval védheti a munkafüzet szerkezetét.", "SSE.Views.ProtectDialog.txtWBTitle": "Munkafüzet struktúrájának védelme", "SSE.Views.ProtectRangesDlg.guestText": "Vendég", + "SSE.Views.ProtectRangesDlg.lockText": "Zárolva", "SSE.Views.ProtectRangesDlg.textDelete": "Törlés", "SSE.Views.ProtectRangesDlg.textEdit": "Szerkesztés", "SSE.Views.ProtectRangesDlg.textEmpty": "Nincsenek szerkeszthető tartományok.", @@ -2837,6 +2897,7 @@ "SSE.Views.ShapeSettings.textPatternFill": "Minta", "SSE.Views.ShapeSettings.textPosition": "Pozíció", "SSE.Views.ShapeSettings.textRadial": "Sugárirányú", + "SSE.Views.ShapeSettings.textRecentlyUsed": "Mostanában használt", "SSE.Views.ShapeSettings.textRotate90": "Elforgat 90 fokkal", "SSE.Views.ShapeSettings.textRotation": "Forgatás", "SSE.Views.ShapeSettings.textSelectImage": "Kép kiválasztása", @@ -3098,6 +3159,7 @@ "SSE.Views.Statusbar.tipAddTab": "Munkalap hozzáadása", "SSE.Views.Statusbar.tipFirst": "Első laphoz görget", "SSE.Views.Statusbar.tipLast": "Utolsó laphoz görget", + "SSE.Views.Statusbar.tipListOfSheets": "Munkalapok listája", "SSE.Views.Statusbar.tipNext": "Laplista jobbra görgetése", "SSE.Views.Statusbar.tipPrev": "Laplista balra görgetése", "SSE.Views.Statusbar.tipZoomFactor": "Zoom", @@ -3205,7 +3267,7 @@ "SSE.Views.Toolbar.capBtnAddComment": "Megjegyzés hozzáadása", "SSE.Views.Toolbar.capBtnColorSchemas": "Színséma", "SSE.Views.Toolbar.capBtnComment": "Megjegyzés", - "SSE.Views.Toolbar.capBtnInsHeader": "Fejléc/Lábléc", + "SSE.Views.Toolbar.capBtnInsHeader": "Fejléc & Lábléc", "SSE.Views.Toolbar.capBtnInsSlicer": "Elválasztó", "SSE.Views.Toolbar.capBtnInsSymbol": "Szimbólum", "SSE.Views.Toolbar.capBtnMargins": "Margók", @@ -3286,6 +3348,8 @@ "SSE.Views.Toolbar.textPageMarginsCustom": "Egyéni margók", "SSE.Views.Toolbar.textPortrait": "Portré", "SSE.Views.Toolbar.textPrint": "Nyomtat", + "SSE.Views.Toolbar.textPrintGridlines": "Rácsvonalak nyomtatása", + "SSE.Views.Toolbar.textPrintHeadings": "Nyomtatási címsorok", "SSE.Views.Toolbar.textPrintOptions": "Nyomtatási beállítások", "SSE.Views.Toolbar.textRight": "Jobb:", "SSE.Views.Toolbar.textRightBorders": "Jobb szegélyek", @@ -3364,7 +3428,16 @@ "SSE.Views.Toolbar.tipInsertTable": "Táblázat beszúrása", "SSE.Views.Toolbar.tipInsertText": "Szövegdoboz beszúrása", "SSE.Views.Toolbar.tipInsertTextart": "TextArt beszúrása", + "SSE.Views.Toolbar.tipMarkersArrow": "Nyíl felsorolásjelek", + "SSE.Views.Toolbar.tipMarkersCheckmark": "Jelölőnégyzet felsorolásjelek", + "SSE.Views.Toolbar.tipMarkersDash": "Kötőjel felsorolásjelek", + "SSE.Views.Toolbar.tipMarkersFRhombus": "Tömör rombusz felsorolásjelek", + "SSE.Views.Toolbar.tipMarkersFRound": "Tömör kör felsorolásjelek", + "SSE.Views.Toolbar.tipMarkersFSquare": "Tömör szögletes felsorolásjelek", + "SSE.Views.Toolbar.tipMarkersHRound": "Üreges kör felsorolásjelek", + "SSE.Views.Toolbar.tipMarkersStar": "Csillag felsorolásjelek", "SSE.Views.Toolbar.tipMerge": "Összevonás és középre", + "SSE.Views.Toolbar.tipNone": "Egyik sem", "SSE.Views.Toolbar.tipNumFormat": "Számformátum", "SSE.Views.Toolbar.tipPageMargins": "Oldal margók", "SSE.Views.Toolbar.tipPageOrient": "Lap elrendezés", @@ -3493,6 +3566,7 @@ "SSE.Views.ValueFieldSettingsDialog.txtVarp": "Variancia populáció", "SSE.Views.ViewManagerDlg.closeButtonText": "Bezárás", "SSE.Views.ViewManagerDlg.guestText": "Vendég", + "SSE.Views.ViewManagerDlg.lockText": "Zárolva", "SSE.Views.ViewManagerDlg.textDelete": "Törlés", "SSE.Views.ViewManagerDlg.textDuplicate": "Kettőzés", "SSE.Views.ViewManagerDlg.textEmpty": "Még nem hoztak létre nézeteket.", @@ -3508,7 +3582,9 @@ "SSE.Views.ViewManagerDlg.warnDeleteView": "Megpróbálja törölni a jelenleg engedélyezett '%1' nézetet.
Bezárja ezt a nézetet, és törli?", "SSE.Views.ViewTab.capBtnFreeze": "Panelek rögzítése", "SSE.Views.ViewTab.capBtnSheetView": "Lapnézet", + "SSE.Views.ViewTab.textAlwaysShowToolbar": "Mindig mutasd az eszköztárat", "SSE.Views.ViewTab.textClose": "Bezárás", + "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "A munkalap és az állapotsorok kombinálása", "SSE.Views.ViewTab.textCreate": "Új", "SSE.Views.ViewTab.textDefault": "Alapértelmezett", "SSE.Views.ViewTab.textFormula": "Függvény sáv", @@ -3516,7 +3592,9 @@ "SSE.Views.ViewTab.textFreezeRow": "Legfelső sor rögzítése", "SSE.Views.ViewTab.textGridlines": "Rácsvonalak", "SSE.Views.ViewTab.textHeadings": "Címsorok", + "SSE.Views.ViewTab.textInterfaceTheme": "Felhasználói felület témája", "SSE.Views.ViewTab.textManager": "Megtekintés kelező", + "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Mutassa a rögzített panelek árnyékát", "SSE.Views.ViewTab.textUnFreeze": "Rögzítés eltávolítása", "SSE.Views.ViewTab.textZeros": "Nullák megjelenítése", "SSE.Views.ViewTab.textZoom": "Zoom", diff --git a/apps/spreadsheeteditor/main/locale/ja.json b/apps/spreadsheeteditor/main/locale/ja.json index f91ecad80..010f46a18 100644 --- a/apps/spreadsheeteditor/main/locale/ja.json +++ b/apps/spreadsheeteditor/main/locale/ja.json @@ -2002,7 +2002,7 @@ "SSE.Views.FileMenu.btnBackCaption": "ファイルの場所を開く", "SSE.Views.FileMenu.btnCloseMenuCaption": "(←戻る)", "SSE.Views.FileMenu.btnCreateNewCaption": "新規作成", - "SSE.Views.FileMenu.btnDownloadCaption": "ダウンロード...", + "SSE.Views.FileMenu.btnDownloadCaption": "名前を付けてダウンロード", "SSE.Views.FileMenu.btnExitCaption": "終了", "SSE.Views.FileMenu.btnFileOpenCaption": "開く", "SSE.Views.FileMenu.btnHelpCaption": "ヘルプ...", diff --git a/apps/spreadsheeteditor/main/locale/sv.json b/apps/spreadsheeteditor/main/locale/sv.json index 6730f29be..e8c15e1e1 100644 --- a/apps/spreadsheeteditor/main/locale/sv.json +++ b/apps/spreadsheeteditor/main/locale/sv.json @@ -2,6 +2,7 @@ "cancelButtonText": "Avbryt", "Common.Controllers.Chat.notcriticalErrorTitle": "Varning", "Common.Controllers.Chat.textEnterMessage": "Skriv ditt meddelande här", + "Common.Controllers.History.notcriticalErrorTitle": "Varning", "Common.define.chartData.textArea": "Område", "Common.define.chartData.textAreaStacked": "Staplad yta", "Common.define.chartData.textAreaStackedPer": "100% staplat område", @@ -99,9 +100,11 @@ "Common.define.conditionalData.textUnique": "Unik", "Common.define.conditionalData.textValue": "Värdet är", "Common.define.conditionalData.textYesterday": "Igår", - "Common.Translation.warnFileLocked": "Dokumentet används av ett annat program. Du kan fortsätta redigera och spara den som en kopia.", + "Common.Translation.warnFileLocked": "Dokumentet redigeras i en annan applikation. Du kan fortsätta redigera och spara det som en kopia.", "Common.Translation.warnFileLockedBtnEdit": "Skapa en kopia", "Common.Translation.warnFileLockedBtnView": "Öppna skrivskyddad", + "Common.UI.ButtonColored.textAutoColor": "Automatisk", + "Common.UI.ButtonColored.textNewColor": "Lägg till en ny anpassad färg", "Common.UI.ComboBorderSize.txtNoBorders": "Inga ramar", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Inga ramar", "Common.UI.ComboDataView.emptyComboText": "Inga stilar", @@ -111,6 +114,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Ny", "Common.UI.ExtendedColorDialog.textRGBErr": "Det angivna värdet är inkorrekt.
Vänligen ange ett numeriskt värde mellan 0 och 255", "Common.UI.HSBColorPicker.textNoColor": "Ingen färg", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Dölj lösenord", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Visa lösenord", "Common.UI.SearchDialog.textHighlight": "Markera resultat", "Common.UI.SearchDialog.textMatchCase": "Skiftlägeskänslig", "Common.UI.SearchDialog.textReplaceDef": "Ange ersättningstext", @@ -171,13 +176,22 @@ "Common.Views.AutoCorrectDialog.warnReset": "All autokorrigering som du lagt till kommer att tas bort och ändringar kommer att återställas till sina ursprungliga värden. Vill du fortsätta?", "Common.Views.AutoCorrectDialog.warnRestore": "Autokorrigeringen för %1 återställs till sitt ursprungliga värde. Vill du fortsätta?", "Common.Views.Chat.textSend": "Skicka", + "Common.Views.Comments.mniAuthorAsc": "Författare A till Ö", + "Common.Views.Comments.mniAuthorDesc": "Författare Ö till A", + "Common.Views.Comments.mniDateAsc": "Äldsta", + "Common.Views.Comments.mniDateDesc": "Nyaste", + "Common.Views.Comments.mniFilterGroups": "Filtrera via grupp", + "Common.Views.Comments.mniPositionAsc": "Från ovankant", + "Common.Views.Comments.mniPositionDesc": "Från nederkant", "Common.Views.Comments.textAdd": "Lägg till", "Common.Views.Comments.textAddComment": "Lägg till kommentar", "Common.Views.Comments.textAddCommentToDoc": "Lägg till kommentar till dokumentet", "Common.Views.Comments.textAddReply": "Lägg till svar", + "Common.Views.Comments.textAll": "Alla", "Common.Views.Comments.textAnonym": "Gäst", "Common.Views.Comments.textCancel": "Avbryt", "Common.Views.Comments.textClose": "Stäng", + "Common.Views.Comments.textClosePanel": "Stäng kommentarer", "Common.Views.Comments.textComments": "Kommentarer", "Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEnterCommentHint": "Skriv din kommentar här", @@ -186,6 +200,8 @@ "Common.Views.Comments.textReply": "Svara", "Common.Views.Comments.textResolve": "Lös", "Common.Views.Comments.textResolved": "Löst", + "Common.Views.Comments.textSort": "Sortera kommentarer", + "Common.Views.Comments.textViewResolved": "Du har inte behörighet att öppna kommentaren igen", "Common.Views.CopyWarningDialog.textDontShow": "Visa inte detta meddelande igen", "Common.Views.CopyWarningDialog.textMsg": "Kopiera, klipp ut och klistra in -åtgärder med redigeringsknapparna i verktygsfältet och snabbmenyn kommer endast att utföras inom denna flik.
För att kopiera eller klistra in från applikationer utanför fliken, använd följande kortkommandon:", "Common.Views.CopyWarningDialog.textTitle": "Kopiera, klipp ut och klistra in åtgärder", @@ -196,13 +212,13 @@ "Common.Views.DocumentAccessDialog.textTitle": "Delningsinställningar", "Common.Views.EditNameDialog.textLabel": "Etikett:", "Common.Views.EditNameDialog.textLabelError": "Etiketten får inte vara tom.", - "Common.Views.Header.labelCoUsersDescr": "Dokumentet redigeras för närvarande av flera användare.", + "Common.Views.Header.labelCoUsersDescr": "Användare som redigera filen:", "Common.Views.Header.textAddFavorite": "Markera som favorit", "Common.Views.Header.textAdvSettings": "Avancerade inställningar", - "Common.Views.Header.textBack": "Gå till dokument", + "Common.Views.Header.textBack": "Öppna filens plats", "Common.Views.Header.textCompactView": "Dölj verktygsrad", "Common.Views.Header.textHideLines": "Dölj linjaler", - "Common.Views.Header.textHideStatusBar": "Dölj statusrad", + "Common.Views.Header.textHideStatusBar": "Kombinera kalkylblad och statusfält", "Common.Views.Header.textRemoveFavorite": "Ta bort från favoriter", "Common.Views.Header.textSaveBegin": "Sparar...", "Common.Views.Header.textSaveChanged": "Ändrad", @@ -221,6 +237,13 @@ "Common.Views.Header.tipViewUsers": "Visa användare och hantera dokumentbehörigheter", "Common.Views.Header.txtAccessRights": "Ändra behörigheter", "Common.Views.Header.txtRename": "Döp om", + "Common.Views.History.textCloseHistory": "Stäng historik", + "Common.Views.History.textHide": "Dra ihop", + "Common.Views.History.textHideAll": "Dölj detaljerade ändringar", + "Common.Views.History.textRestore": "Återställ", + "Common.Views.History.textShow": "Expandera", + "Common.Views.History.textShowAll": "Visa detaljerade ändringar", + "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "Klistra in en bilds URL:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Detta fält är obligatoriskt", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Detta fält bör vara en URL i formatet \"http://www.example.com\"", @@ -346,6 +369,9 @@ "Common.Views.ReviewPopover.textOpenAgain": "Öppna igen", "Common.Views.ReviewPopover.textReply": "Svara", "Common.Views.ReviewPopover.textResolve": "Lös", + "Common.Views.ReviewPopover.textViewResolved": "Du har inte behörighet att öppna kommentaren igen", + "Common.Views.ReviewPopover.txtDeleteTip": "Radera", + "Common.Views.ReviewPopover.txtEditTip": "Redigera", "Common.Views.SaveAsDlg.textLoading": "Laddar", "Common.Views.SaveAsDlg.textTitle": "Mapp att spara i", "Common.Views.SelectFileDlg.textLoading": "Laddar", @@ -435,7 +461,7 @@ "SSE.Controllers.DocumentHolder.textAutoCorrectSettings": "Inställningar autokorrigering", "SSE.Controllers.DocumentHolder.textChangeColumnWidth": "Kolumnbredd {0} symboler ({1} pixlar)", "SSE.Controllers.DocumentHolder.textChangeRowHeight": "Radhöjd {0} punkter ({1} pixlar)", - "SSE.Controllers.DocumentHolder.textCtrlClick": "Tryck CTRL och klicka på länken", + "SSE.Controllers.DocumentHolder.textCtrlClick": "Klicka på länken för att öppna den eller klicka och håll ner musknappen för att välja cellen.", "SSE.Controllers.DocumentHolder.textInsertLeft": "Infoga vänster", "SSE.Controllers.DocumentHolder.textInsertTop": "Infoga topp", "SSE.Controllers.DocumentHolder.textPasteSpecial": "Klistra in special", @@ -454,6 +480,7 @@ "SSE.Controllers.DocumentHolder.txtAddVer": "Lägg till horisontell linje", "SSE.Controllers.DocumentHolder.txtAlignToChar": "Justera bredvid tecken", "SSE.Controllers.DocumentHolder.txtAll": "(Allt)", + "SSE.Controllers.DocumentHolder.txtAllTableHint": "Returnerar hela tabellens innehåll eller de angivna tabellkolumnerna inklusive kolumnrubriker, data och det totala antalet rader", "SSE.Controllers.DocumentHolder.txtAnd": "och", "SSE.Controllers.DocumentHolder.txtBegins": "Börjar med", "SSE.Controllers.DocumentHolder.txtBelowAve": "Under medel", @@ -463,6 +490,7 @@ "SSE.Controllers.DocumentHolder.txtColumn": "Kolumn", "SSE.Controllers.DocumentHolder.txtColumnAlign": "Kolumnjustering", "SSE.Controllers.DocumentHolder.txtContains": "Innehåller", + "SSE.Controllers.DocumentHolder.txtDataTableHint": "Returnerar datacellerna i tabellen eller specificerade tabellkolumnerna", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Minska argumentstorlek", "SSE.Controllers.DocumentHolder.txtDeleteArg": "Radera argument", "SSE.Controllers.DocumentHolder.txtDeleteBreak": "Radera manuell brytning", @@ -486,6 +514,7 @@ "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Större än eller lika med", "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Char över text", "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Char under text", + "SSE.Controllers.DocumentHolder.txtHeadersTableHint": "Returnerar kolumnrubrikerna i tabellen eller specificerade tabellkolumner", "SSE.Controllers.DocumentHolder.txtHeight": "Höjd", "SSE.Controllers.DocumentHolder.txtHideBottom": "Dölj nedre ramen", "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "Dölj nedre gränsen", @@ -515,6 +544,7 @@ "SSE.Controllers.DocumentHolder.txtLimitChange": "Ändra gränsens plats", "SSE.Controllers.DocumentHolder.txtLimitOver": "Begränsa över text", "SSE.Controllers.DocumentHolder.txtLimitUnder": "Begränsa under text", + "SSE.Controllers.DocumentHolder.txtLockSort": "Data finns bredvid ditt val men du har inte tillräckliga behörigheter för att ändra dessa celler.
Vill du fortsätta med nuvarande val?", "SSE.Controllers.DocumentHolder.txtMatchBrackets": "Matcha parenteser till argumentets höjd", "SSE.Controllers.DocumentHolder.txtMatrixAlign": "Matrisjustering", "SSE.Controllers.DocumentHolder.txtNoChoices": "Det finns inga val för att fylla cellen.
Endast textvärden från kolumnen kan väljas för ersättning.", @@ -547,6 +577,7 @@ "SSE.Controllers.DocumentHolder.txtRemLimit": "Ta bort begränsning", "SSE.Controllers.DocumentHolder.txtRemoveAccentChar": "Ta bort tecken med accenter", "SSE.Controllers.DocumentHolder.txtRemoveBar": "Ta bort linje", + "SSE.Controllers.DocumentHolder.txtRemoveWarning": "Vill du ta bort den här signaturen?
Åtgärden kan inte ångras.", "SSE.Controllers.DocumentHolder.txtRemScripts": "Ta bort script", "SSE.Controllers.DocumentHolder.txtRemSubscript": "Ta bort nedsänkt", "SSE.Controllers.DocumentHolder.txtRemSuperscript": "Ta bort upphöjt", @@ -562,10 +593,13 @@ "SSE.Controllers.DocumentHolder.txtSorting": "Sorterar", "SSE.Controllers.DocumentHolder.txtSortSelected": "Sortering vald", "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Sträck paranteser", + "SSE.Controllers.DocumentHolder.txtThisRowHint": "Välj endast denna raden i den angiven kolumnen", "SSE.Controllers.DocumentHolder.txtTop": "Överst", + "SSE.Controllers.DocumentHolder.txtTotalsTableHint": "Returnerar det totala antalet rader för tabellen eller för de angivna kolumnerna", "SSE.Controllers.DocumentHolder.txtUnderbar": "Linje under text", "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Ångra automatisk tabellexpansion", "SSE.Controllers.DocumentHolder.txtUseTextImport": "Använd guiden för textimport", + "SSE.Controllers.DocumentHolder.txtWarnUrl": "Att klicka på denna länk kan skada din utrustning och dess innehåll.
Är du säker på att du vill fortsätta?", "SSE.Controllers.DocumentHolder.txtWidth": "Bredd", "SSE.Controllers.FormulaDialog.sCategoryAll": "Alla", "SSE.Controllers.FormulaDialog.sCategoryCube": "Kub", @@ -585,6 +619,7 @@ "SSE.Controllers.LeftMenu.textByRows": "Av rader", "SSE.Controllers.LeftMenu.textFormulas": "Formler", "SSE.Controllers.LeftMenu.textItemEntireCell": "Hela innehållet i cellen", + "SSE.Controllers.LeftMenu.textLoadHistory": "Laddar versionshistorik...", "SSE.Controllers.LeftMenu.textLookin": "Sök i", "SSE.Controllers.LeftMenu.textNoTextFound": "De data som du har letat efter kunde inte hittas. Ändra dina sökalternativ.", "SSE.Controllers.LeftMenu.textReplaceSkipped": "Ersättningen har gjorts. {0} händelser hoppades över.", @@ -615,8 +650,10 @@ "SSE.Controllers.Main.errorAutoFilterHiddenRange": "Åtgärden kan inte utföras eftersom området innehåller filtrerade celler.
Ta bort de filtrerade elementen och försök igen.", "SSE.Controllers.Main.errorBadImageUrl": "Bildens URL är felaktig", "SSE.Controllers.Main.errorCannotUngroup": "Det går inte att gruppera. För att starta en kontur, välj detaljrader eller kolumner och gruppera dem.", + "SSE.Controllers.Main.errorCannotUseCommandProtectedSheet": "Du kan inte använda detta kommando i ett skyddat kalkylblad. För att använda detta kommando så måste först kalkylbladet låsas upp.
Du kan behöva ange ett lösenord för detta.", "SSE.Controllers.Main.errorChangeArray": "Du kan inte ändra en del av en matris.", "SSE.Controllers.Main.errorChangeFilteredRange": "Detta ändrar ett filtrerat intervall i kalkylbladet.
Ta bort automatiska filter för att slutföra uppgiften.", + "SSE.Controllers.Main.errorChangeOnProtectedSheet": "Cellen eller tabellen du försöker ändra tillhör ett skyddat kalkylblad.
För att göra en ändring ta då bort kalkylbladets skydd. Du kan komma att behöva ange ett lösenord.", "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Serveranslutning förlorade. Dokumentet kan inte redigeras just nu.", "SSE.Controllers.Main.errorConnectToServer": "Dokumentet kunde inte sparas. . Kontrollera anslutningsinställningarna eller kontakta administratören
När du klickar på \"OK\" -knappen, kommer du att bli ombedd att ladda ner dokumentet.", "SSE.Controllers.Main.errorCopyMultiselectArea": "Det här kommandot kan inte användas med flera val.
Välj ett enda område och försök igen.", @@ -628,6 +665,8 @@ "SSE.Controllers.Main.errorDataRange": "Felaktig dataomfång", "SSE.Controllers.Main.errorDataValidate": "Värdet du angav är inte giltigt.
En användare har begränsade värden som kan matas in i den här cellen.", "SSE.Controllers.Main.errorDefaultMessage": "Felkod: %1", + "SSE.Controllers.Main.errorDeleteColumnContainsLockedCell": "Du försöker radera en kolumn som innehåller en låst cell. Låsta celler kan inte raderas när arbetsboken är skyddad.
För att radera en låst cell så måste först kalkylbladet låsas upp. Du kan behöva ange ett lösenord för detta.", + "SSE.Controllers.Main.errorDeleteRowContainsLockedCell": "Du försöker radera en rad som innehåller en låst cell. Låsta celler kan inte raderas när arbetsboken är skyddad.
För att radera en låst cell så måste först kalkylbladet låsas upp. Du kan behöva ange ett lösenord för detta.", "SSE.Controllers.Main.errorEditingDownloadas": "Ett fel har inträffat.
Använd \"Ladda ned som...\" för att spara en säkerhetskopia på din dator.", "SSE.Controllers.Main.errorEditingSaveas": "Ett fel har inträffat.
Använd \"Ladda ned som...\" för att spara en säkerhetskopia på din dator.", "SSE.Controllers.Main.errorEditView": "Den befintliga vyn kan inte redigeras och den nya kan inte skapas just nu eftersom vissa av dem redigeras.", @@ -650,6 +689,7 @@ "SSE.Controllers.Main.errorKeyEncrypt": "Okänd nyckelbeskrivare", "SSE.Controllers.Main.errorKeyExpire": "Nyckelns beskrivning har utgått", "SSE.Controllers.Main.errorLabledColumnsPivot": "För att skapa en pivottabell använder du data som är organiserade som en lista med märkta kolumner.", + "SSE.Controllers.Main.errorLoadingFont": "Typsnittet är inte tillgängligt.
Vänligen kontakta dokumentserverns administratör.", "SSE.Controllers.Main.errorLocationOrDataRangeError": "Referensen för platsen eller dataområdet är inte giltig.", "SSE.Controllers.Main.errorLockedAll": "Åtgärden kunde inte utföras eftersom arket har låsts av en annan användare.", "SSE.Controllers.Main.errorLockedCellPivot": "Kan inte ändra data i en pivottabell", @@ -659,8 +699,9 @@ "SSE.Controllers.Main.errorMoveSlicerError": "Tabellskivor kan inte kopieras från en arbetsbok till en annan.
Försök igen genom att välja hela tabellen och skivorna.", "SSE.Controllers.Main.errorMultiCellFormula": "Multi-cell array är inte tillåtna i tabeller", "SSE.Controllers.Main.errorNoDataToParse": "Ingen data vald att bearbeta", - "SSE.Controllers.Main.errorOpenWarning": "Längden på en av formlerna i filen överskred
det tillåtna antalet tecken och det togs bort.", + "SSE.Controllers.Main.errorOpenWarning": "Längden på en av formlerna i filen överskred gränsen på 8192 tecken.
Formeln togs bort.", "SSE.Controllers.Main.errorOperandExpected": "Den angivna funktionssyntaxen är inte korrekt. Kontrollera om du saknar en av parenteserna - '(' eller ')'.", + "SSE.Controllers.Main.errorPasswordIsNotCorrect": "Lösenordet som du angav är felaktigt.
Se till att CAPS LOCK inte är aktiverat och säkerställ att du använder rätt storlek på tecknen i lösenordet.", "SSE.Controllers.Main.errorPasteMaxRange": "Kopiera- och klistraområdet matchar inte.
Välj ett område med samma storlek eller klicka på den första cellen i rad för att klistra in de kopierade cellerna.", "SSE.Controllers.Main.errorPasteMultiSelect": "Den här åtgärden kan inte göras i ett val av flera intervall.
Välj ett enda område och försök igen.", "SSE.Controllers.Main.errorPasteSlicerError": "Tabellskivor kan inte kopieras från en arbetsbok till en annan.", @@ -683,9 +724,10 @@ "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "Internetanslutningen har återställts och filversionen har ändrats.
Innan du fortsätter arbeta, ladda ner filen eller kopiera innehållet för att försäkra dig om att inte förlora något, ladda sedan om denna sida.", "SSE.Controllers.Main.errorUserDrop": "Filen kan inte nås för tillfället. ", "SSE.Controllers.Main.errorUsersExceed": "Antalet användare som tillåts av licensen överskreds", - "SSE.Controllers.Main.errorViewerDisconnect": "Anslutningen bröts. Du kan fortfarande se dokumentet
men kommer inte att kunna ladda ner eller skriva ut tills anslutningen är återställd.", + "SSE.Controllers.Main.errorViewerDisconnect": "Anslutningen avbröts. Du kan fortfarande se dokumentet,
men du kommer inte att kunna ladda ner eller skriva ut det innan anslutningen är återställd och sidan har laddats om.", "SSE.Controllers.Main.errorWrongBracketsCount": "Fel i den angivna formeln.
Felaktigt antal parenteser.", "SSE.Controllers.Main.errorWrongOperator": "Ett fel i den angivna formeln. Felaktig operator används.
Var god korrigera felet.", + "SSE.Controllers.Main.errorWrongPassword": "Lösenordet som angavs är felaktigt.", "SSE.Controllers.Main.errRemDuplicates": "Duplicerade värden hittades och raderades: {0}, unika värden kvar: {1}.", "SSE.Controllers.Main.leavePageText": "Du har osparade ändringar i det här kalkylarket. Klicka på \"Stanna på den här sidan\" och sedan på \"Spara\" för att spara dem. Klicka på \"Lämna den här sidan\" om du vill ta bort alla ändringar som inte har sparats.", "SSE.Controllers.Main.leavePageTextOnClose": "Alla ändringar som inte har sparats i detta kalkylblad går förlorade.
Klicka på \"Avbryt\" och sedan på \"Spara\" för att spara dem. Klicka på \"OK\" för att kassera alla ändringar som inte sparats.", @@ -699,7 +741,7 @@ "SSE.Controllers.Main.loadImageTitleText": "Laddar bild", "SSE.Controllers.Main.loadingDocumentTitleText": "Hämtar kalkylblad", "SSE.Controllers.Main.notcriticalErrorTitle": "Varning", - "SSE.Controllers.Main.openErrorText": "Ett fel uppstod när filen skulle öppnas", + "SSE.Controllers.Main.openErrorText": "Ett fel uppstod vid öppnandet av filen.", "SSE.Controllers.Main.openTextText": "Öppnar kalkylblad...", "SSE.Controllers.Main.openTitleText": "Öppnar kalkylblad", "SSE.Controllers.Main.pastInMergeAreaError": "Kan inte ändra del av en sammanslagen cell", @@ -708,26 +750,38 @@ "SSE.Controllers.Main.reloadButtonText": "Ladda om sidan", "SSE.Controllers.Main.requestEditFailedMessageText": "Någon redigerar det här dokumentet just nu. Vänligen försök igen senare.", "SSE.Controllers.Main.requestEditFailedTitleText": "Ingen behörighet", - "SSE.Controllers.Main.saveErrorText": "Ett fel uppstod när filen skulle sparas", + "SSE.Controllers.Main.saveErrorText": "Ett fel uppstod när filen sparades.", "SSE.Controllers.Main.saveErrorTextDesktop": "Den här filen kan inte sparas eller skapas.
Möjliga orsaker är:
1. Filen är skrivskyddad.
2. Filen redigeras av andra användare.
3. Disken är full eller skadad.", "SSE.Controllers.Main.saveTextText": "Sparar arbetsbok...", "SSE.Controllers.Main.saveTitleText": "Sparar arbetsbok", "SSE.Controllers.Main.scriptLoadError": "Anslutningen är för långsam, vissa av komponenterna kunde inte laddas. Vänligen ladda om sidan.", "SSE.Controllers.Main.textAnonymous": "Anonym", + "SSE.Controllers.Main.textApplyAll": "Gäller alla ekvationer", "SSE.Controllers.Main.textBuyNow": "Besök webbplats", + "SSE.Controllers.Main.textChangesSaved": "Alla ändringar har sparats", "SSE.Controllers.Main.textClose": "Stäng", "SSE.Controllers.Main.textCloseTip": "Klicka för att stänga tipset", "SSE.Controllers.Main.textConfirm": "Bekräftelse", "SSE.Controllers.Main.textContactUs": "Kontakta säljare", + "SSE.Controllers.Main.textConvertEquation": "Denna ekvation skapades med en gammal version av ekvationsredigeraren som inte längre stöds. Om du vill redigera den konverterar du ekvationen till Office Math ML-format.
Konvertera nu?", "SSE.Controllers.Main.textCustomLoader": "Observera att enligt licensvillkoren har du inte rätt att byta laddaren.
Kontakta vår försäljningsavdelning för att få en offert.", + "SSE.Controllers.Main.textDisconnect": "Anslutningen förlorades", + "SSE.Controllers.Main.textFillOtherRows": "Fyll andra rader", + "SSE.Controllers.Main.textFormulaFilledAllRows": "Formel ifylld {0} rader har data. Att fylla de andra tomma raderna kan ta några minuter.", + "SSE.Controllers.Main.textFormulaFilledAllRowsWithEmpty": "Formel ifylld i de första {0} raderna. Att fylla de andra tomma raderna kan ta några minuter.", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherHaveData": "Formel är bara ifylld i de första {0} raderna av minnesbesparings skäl. Det finns {1} andra rader med data i detta kalkylblad. Du kan fylla i dem manuellt.", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherIsEmpty": "Formel är bara ifylld i de {0} rader av minnesutrymmes skäl. De andra raderna i detta kalkylblad har inga data.", "SSE.Controllers.Main.textGuest": "Gäst", "SSE.Controllers.Main.textHasMacros": "Filen innehåller automatiska makron.
Vill du köra makron?", + "SSE.Controllers.Main.textLearnMore": "Lär dig mer", "SSE.Controllers.Main.textLoadingDocument": "Hämtar kalkylblad", "SSE.Controllers.Main.textLongName": "Ange namn (max 128 tecken).", + "SSE.Controllers.Main.textNeedSynchronize": "Du har uppdateringar", "SSE.Controllers.Main.textNo": "Nej", - "SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE anslutningsbegränsning", + "SSE.Controllers.Main.textNoLicenseTitle": "Licensens gräns är nådd", "SSE.Controllers.Main.textPaidFeature": "Betald funktion", "SSE.Controllers.Main.textPleaseWait": "Åtgärden kan ta mer tid än väntat. Vänta...", + "SSE.Controllers.Main.textReconnect": "Anslutningen återställdes", "SSE.Controllers.Main.textRemember": "Kom ihåg mitt val för alla filer", "SSE.Controllers.Main.textRenameError": "Användarnamn får inte var tomt.", "SSE.Controllers.Main.textRenameLabel": "Ange namn för samarbete", @@ -755,6 +809,7 @@ "SSE.Controllers.Main.txtDays": "Dagar", "SSE.Controllers.Main.txtDiagramTitle": "Diagramtitel", "SSE.Controllers.Main.txtEditingMode": "Ställ in redigeringsläge...", + "SSE.Controllers.Main.txtErrorLoadHistory": "Inläsning av historik misslyckades", "SSE.Controllers.Main.txtFiguredArrows": "Figurpilar", "SSE.Controllers.Main.txtFile": "Fil", "SSE.Controllers.Main.txtGrandTotal": "Totalsumma", @@ -974,27 +1029,34 @@ "SSE.Controllers.Main.txtTab": "Tabb", "SSE.Controllers.Main.txtTable": "Tabell", "SSE.Controllers.Main.txtTime": "Tid", + "SSE.Controllers.Main.txtUnlock": "Lås upp", + "SSE.Controllers.Main.txtUnlockRange": "Lås upp intervall", + "SSE.Controllers.Main.txtUnlockRangeDescription": "Ange ett lösenord för att ändra intervallet:", + "SSE.Controllers.Main.txtUnlockRangeWarning": "Ett intervall du försöker ändra är skyddat av lösenord.", "SSE.Controllers.Main.txtValues": "Värden", "SSE.Controllers.Main.txtXAxis": "X-axel", "SSE.Controllers.Main.txtYAxis": "Y-axel", "SSE.Controllers.Main.txtYears": "år", "SSE.Controllers.Main.unknownErrorText": "Okänt fel.", "SSE.Controllers.Main.unsupportedBrowserErrorText": "Din webbläsare stöds ej.", + "SSE.Controllers.Main.uploadDocExtMessage": "Okänt dokumentformat.", + "SSE.Controllers.Main.uploadDocFileCountMessage": "Inga dokument uppladdade.", + "SSE.Controllers.Main.uploadDocSizeMessage": "Maximal gräns för dokumentstorlek har överskridits.", "SSE.Controllers.Main.uploadImageExtMessage": "Okänt bildformat.", "SSE.Controllers.Main.uploadImageFileCountMessage": "Inga bilder uppladdade.", - "SSE.Controllers.Main.uploadImageSizeMessage": "Maximal bildstorlek har överskridits.", + "SSE.Controllers.Main.uploadImageSizeMessage": "Bilden är för stor. Den maximala storleken är 25 MB.", "SSE.Controllers.Main.uploadImageTextText": "Laddar upp bild...", "SSE.Controllers.Main.uploadImageTitleText": "Laddar upp bild", "SSE.Controllers.Main.waitText": "Vänta...", "SSE.Controllers.Main.warnBrowserIE9": "Fungerar dåligt med Internet Explorer 9. Använd version 10 eller högre.", "SSE.Controllers.Main.warnBrowserZoom": "Din webbläsares nuvarande zoominställningar stöds inte fullt ut. Återställ till standard zoom genom att trycka på Ctrl + 0.", - "SSE.Controllers.Main.warnLicenseExceeded": "Antalet samtidiga anslutningar till dokumentservern har överskridits och dokumentet öppnas endast för visning.
Vänligen kontakta din systemadministratör för mer information.", + "SSE.Controllers.Main.warnLicenseExceeded": "Gränsen är nådd för antalet %1 samtidiga anslutna redigerare. Dokumentet öppnas som skrivskyddat.
Kontakta administratören för mer information.", "SSE.Controllers.Main.warnLicenseExp": "Din licens har gått ut.
Förnya din licens och uppdatera sidan.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Licensen ogiltig.
Ingen access till redigeringsfunktioner.
Kontakta din administratör.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Licensen måste förnyas.
Endast begränsad funktionalitet.
Kontakta din administratör för full funktionalitet.", - "SSE.Controllers.Main.warnLicenseUsersExceeded": "Antalet samtidiga användare har överskridits och dokumentet öppnas endast för visning.
Vänligen kontakta din systemadministratör för mer information.", - "SSE.Controllers.Main.warnNoLicense": "Den här versionen av %1 har vissa begränsningar för samtidiga anslutningar till dokumentservern.
Om du behöver mer, överväg att köpa en kommersiell licens.", - "SSE.Controllers.Main.warnNoLicenseUsers": "Den här versionen av %1 har vissa begränsningar för samtidiga användare.
Om du behöver mer, överväg att köpa en kommersiell licens.", + "SSE.Controllers.Main.warnLicenseUsersExceeded": "Gränsen är nådd för antalet %1 redigerare.
Kontakta administratören för mer information.", + "SSE.Controllers.Main.warnNoLicense": "Gränsen är nådd för antalet %1 samtidiga anslutna redigerare. Dokumentet öppnas som skrivskyddat.
Kontakta %1 försäljningsteamet för personliga uppgraderings villkor.", + "SSE.Controllers.Main.warnNoLicenseUsers": "Gränsen är nådd för antalet %1 redigerare.
Kontakta %1 försäljningsteamet för personliga uppgraderings villkor.", "SSE.Controllers.Main.warnProcessRightsChange": "Du har nekats rätten att redigera filen.", "SSE.Controllers.Print.strAllSheets": "Alla kalkylblad", "SSE.Controllers.Print.textFirstCol": "Första kolumnen", @@ -1011,6 +1073,7 @@ "SSE.Controllers.Statusbar.errorLastSheet": "Arbetsboken måste ha minst en synlig flik.", "SSE.Controllers.Statusbar.errorRemoveSheet": "Kan inte radera kalkylbladet.", "SSE.Controllers.Statusbar.strSheet": "Flik", + "SSE.Controllers.Statusbar.textDisconnect": "
Anslutningen förlorades

Försöker återansluta. Vänligen kontroller anslutningens inställningar.", "SSE.Controllers.Statusbar.textSheetViewTip": "Du är i Sheet View-läge. Filter och sortering är endast synliga för dig och de som fortfarande är i den här vyn.", "SSE.Controllers.Statusbar.textSheetViewTipFilters": "Du är i Sheet View-läge. Filter är endast synliga för dig och de som fortfarande är i den här vyn.", "SSE.Controllers.Statusbar.warnDeleteSheet": "De valda kalkylarken kan innehålla data. Är du säker på att du vill fortsätta?", @@ -1036,6 +1099,7 @@ "SSE.Controllers.Toolbar.textPivot": "Pivottabell", "SSE.Controllers.Toolbar.textRadical": "Radikaler", "SSE.Controllers.Toolbar.textRating": "Betyg", + "SSE.Controllers.Toolbar.textRecentlyUsed": "Nyligen använda", "SSE.Controllers.Toolbar.textScript": "Skript", "SSE.Controllers.Toolbar.textShapes": "Former", "SSE.Controllers.Toolbar.textSymbols": "Symboler", @@ -1218,6 +1282,7 @@ "SSE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritm", "SSE.Controllers.Toolbar.txtLimitLog_Max": "Max", "SSE.Controllers.Toolbar.txtLimitLog_Min": "Minst", + "SSE.Controllers.Toolbar.txtLockSort": "Data finns bredvid ditt val men du har inte tillräckliga behörigheter för att ändra dessa celler.
Vill du fortsätta med nuvarande val?", "SSE.Controllers.Toolbar.txtMatrix_1_2": "1x2 tom matris", "SSE.Controllers.Toolbar.txtMatrix_1_3": "1x3 tom matris", "SSE.Controllers.Toolbar.txtMatrix_2_1": "2x1 tom matris", @@ -1376,7 +1441,9 @@ "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Decimaltecken", "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Tusentals-separator", "SSE.Views.AdvancedSeparatorDialog.textLabel": "Inställningar som används för att känna igen numeriska data", + "SSE.Views.AdvancedSeparatorDialog.textQualifier": "Betydelseindikator för text", "SSE.Views.AdvancedSeparatorDialog.textTitle": "Avancerade inställningar", + "SSE.Views.AdvancedSeparatorDialog.txtNone": "(inget)", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Anpassat filter", "SSE.Views.AutoFilterDialog.textAddSelection": "Lägg till aktuellt urval till filter", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Blanksteg}", @@ -1440,7 +1507,7 @@ "SSE.Views.CellSettings.textDirection": "Riktning", "SSE.Views.CellSettings.textFill": "Fyll", "SSE.Views.CellSettings.textForeground": "Förgrundsfärg", - "SSE.Views.CellSettings.textGradient": "Fyllning", + "SSE.Views.CellSettings.textGradient": "Triangulära punkter", "SSE.Views.CellSettings.textGradientColor": "Färg", "SSE.Views.CellSettings.textGradientFill": "Fyllning", "SSE.Views.CellSettings.textIndent": "Indrag", @@ -1538,7 +1605,7 @@ "SSE.Views.ChartSettingsDlg.textAbsolute": "Flytta eller ändra inte storlek på celler", "SSE.Views.ChartSettingsDlg.textAlt": "Alternativ text", "SSE.Views.ChartSettingsDlg.textAltDescription": "Beskrivning", - "SSE.Views.ChartSettingsDlg.textAltTip": "Den alternativa textbaserade representation av den visuella informationsobjektet, som kommer att läsas för personer med syn eller kognitiva funktionsnedsättningar att hjälpa dem att bättre förstå vilken information som finns i bilden, figur eller, diagram eller en tabell.", + "SSE.Views.ChartSettingsDlg.textAltTip": "Den alternativa textbaserad förekomsten av visuell objektinformation som kommer att läsas för personer med syn eller kognitiva funktionsnedsättningar för att hjälpa dem att bättre förstå vilken information som finns i bilden, figuren, diagrammet eller tabellen.", "SSE.Views.ChartSettingsDlg.textAltTitle": "Titel", "SSE.Views.ChartSettingsDlg.textAuto": "Auto", "SSE.Views.ChartSettingsDlg.textAutoEach": "Auto för varje", @@ -1682,9 +1749,9 @@ "SSE.Views.DataTab.capBtnTextRemDuplicates": "Ta bort dubbletter", "SSE.Views.DataTab.capBtnTextToCol": "Text till kolumner", "SSE.Views.DataTab.capBtnUngroup": "Dela upp", - "SSE.Views.DataTab.capDataFromText": "Från Text/csv", - "SSE.Views.DataTab.mniFromFile": "Hämta data från fil", - "SSE.Views.DataTab.mniFromUrl": "Hämta data från URL", + "SSE.Views.DataTab.capDataFromText": "Hämta data", + "SSE.Views.DataTab.mniFromFile": "Från lokal TXT/CSV", + "SSE.Views.DataTab.mniFromUrl": "Från TXT/CSV webbadress", "SSE.Views.DataTab.textBelow": "Summeringsrader under detaljer", "SSE.Views.DataTab.textClear": "Rensa disposition", "SSE.Views.DataTab.textColumns": "Avdela kolumner", @@ -1800,7 +1867,7 @@ "SSE.Views.DocumentHolder.insertColumnRightText": "Kolumn höger", "SSE.Views.DocumentHolder.insertRowAboveText": "Rad ovanför", "SSE.Views.DocumentHolder.insertRowBelowText": "Rad under", - "SSE.Views.DocumentHolder.originalSizeText": "Standardstorlek", + "SSE.Views.DocumentHolder.originalSizeText": "Verklig storlek", "SSE.Views.DocumentHolder.removeHyperlinkText": "Ta bort länk", "SSE.Views.DocumentHolder.selectColumnText": "Hela kolumnen", "SSE.Views.DocumentHolder.selectDataText": "Kolumndata", @@ -1822,6 +1889,7 @@ "SSE.Views.DocumentHolder.textCrop": "Beskär", "SSE.Views.DocumentHolder.textCropFill": "Fyll", "SSE.Views.DocumentHolder.textCropFit": "Anpassa", + "SSE.Views.DocumentHolder.textEditPoints": "Redigera punkter", "SSE.Views.DocumentHolder.textEntriesList": "Välj från listan", "SSE.Views.DocumentHolder.textFlipH": "Vänd horisontellt", "SSE.Views.DocumentHolder.textFlipV": "Vänd vertikalt", @@ -1914,7 +1982,7 @@ "SSE.Views.DocumentHolder.txtSortFontColor": "Välj font-färg överst", "SSE.Views.DocumentHolder.txtSparklines": "Sparklines", "SSE.Views.DocumentHolder.txtText": "Text", - "SSE.Views.DocumentHolder.txtTextAdvanced": "Avancerade textinställningar", + "SSE.Views.DocumentHolder.txtTextAdvanced": "Styckets avancerade inställningar", "SSE.Views.DocumentHolder.txtTime": "Tid", "SSE.Views.DocumentHolder.txtUngroup": "Dela upp", "SSE.Views.DocumentHolder.txtWidth": "Bredd", @@ -1946,11 +2014,14 @@ "SSE.Views.FieldSettingsDialog.txtTop": "Visa överst i gruppen", "SSE.Views.FieldSettingsDialog.txtVar": "Var", "SSE.Views.FieldSettingsDialog.txtVarp": "Varp", - "SSE.Views.FileMenu.btnBackCaption": "Gå till dokument", + "SSE.Views.FileMenu.btnBackCaption": "Öppna filens plats", "SSE.Views.FileMenu.btnCloseMenuCaption": "Stäng meny", "SSE.Views.FileMenu.btnCreateNewCaption": "Skapa ny", "SSE.Views.FileMenu.btnDownloadCaption": "Ladda ner som...", + "SSE.Views.FileMenu.btnExitCaption": "Avsluta", + "SSE.Views.FileMenu.btnFileOpenCaption": "Öppna...", "SSE.Views.FileMenu.btnHelpCaption": "Hjälp...", + "SSE.Views.FileMenu.btnHistoryCaption": "Versionshistorik", "SSE.Views.FileMenu.btnInfoCaption": "Info arbetsbok", "SSE.Views.FileMenu.btnPrintCaption": "Skriv ut", "SSE.Views.FileMenu.btnProtectCaption": "Skydda", @@ -1963,6 +2034,8 @@ "SSE.Views.FileMenu.btnSaveCopyAsCaption": "Spara kopia som...", "SSE.Views.FileMenu.btnSettingsCaption": "Avancerade inställningar...", "SSE.Views.FileMenu.btnToEditCaption": "Redigera kalkylblad", + "SSE.Views.FileMenuPanels.CreateNew.txtBlank": "Tomt kalkylark", + "SSE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Skapa ny", "SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Tillämpa", "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Lägg till författare", "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Lägg till text", @@ -1990,7 +2063,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Decimaltecken", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Snabb", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Fontförslag", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Spara alltid till server (annars spara till servern när dokumentet stängs)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Lägg till version till lagringen efter att ha klickat på Spara eller CTRL+S", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Formelspråk", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "SUMMA; MIN; MAX; ANTAL", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Aktivera visning av kommentarer", @@ -2015,7 +2088,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoRecover": "Återskapa", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave": "Autospara", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "Inaktiverad", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Spara till server", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Sparar mellanliggande versioner", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Varje minut", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Referensstil", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe": "Belarusian", @@ -2046,7 +2119,8 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "Dutch", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Polish", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Punkt", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portuguese", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "Portugisiska (Brasilien)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portugisiska (Portugal)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Romanian", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Rysk", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Aktivera alla", @@ -2185,6 +2259,7 @@ "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Redigera formateringsregel", "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Ny formateringsregel", "SSE.Views.FormatRulesManagerDlg.guestText": "Gäst", + "SSE.Views.FormatRulesManagerDlg.lockText": "Låst", "SSE.Views.FormatRulesManagerDlg.text1Above": "1: a dev över genomsnittet", "SSE.Views.FormatRulesManagerDlg.text1Below": "1: a dev under genomsnittet", "SSE.Views.FormatRulesManagerDlg.text2Above": "2 std dev över genomsnitt", @@ -2346,6 +2421,7 @@ "SSE.Views.ImageSettings.textCrop": "Beskär", "SSE.Views.ImageSettings.textCropFill": "Fyll", "SSE.Views.ImageSettings.textCropFit": "Anpassa", + "SSE.Views.ImageSettings.textCropToShape": "Beskär till form", "SSE.Views.ImageSettings.textEdit": "Redigera", "SSE.Views.ImageSettings.textEditObject": "Redigera objekt", "SSE.Views.ImageSettings.textFlip": "Vänd", @@ -2359,7 +2435,8 @@ "SSE.Views.ImageSettings.textHintFlipV": "Vänd vertikalt", "SSE.Views.ImageSettings.textInsert": "Ersätt bild", "SSE.Views.ImageSettings.textKeepRatio": "Konstanta proportioner", - "SSE.Views.ImageSettings.textOriginalSize": "Standardstorlek", + "SSE.Views.ImageSettings.textOriginalSize": "Verklig storlek", + "SSE.Views.ImageSettings.textRecentlyUsed": "Nyligen använda", "SSE.Views.ImageSettings.textRotate90": "Rotera 90°", "SSE.Views.ImageSettings.textRotation": "Rotation", "SSE.Views.ImageSettings.textSize": "Storlek", @@ -2367,7 +2444,7 @@ "SSE.Views.ImageSettingsAdvanced.textAbsolute": "Flytta eller ändra inte storlek på celler", "SSE.Views.ImageSettingsAdvanced.textAlt": "Alternativ text", "SSE.Views.ImageSettingsAdvanced.textAltDescription": "Beskrivning", - "SSE.Views.ImageSettingsAdvanced.textAltTip": "Den alternativa textbaserade representation av den visuella informationsobjektet, som kommer att läsas för personer med syn eller kognitiva funktionsnedsättningar att hjälpa dem att bättre förstå vilken information som finns i bilden, figur eller, diagram eller en tabell.", + "SSE.Views.ImageSettingsAdvanced.textAltTip": "Den alternativa textbaserad förekomsten av visuell objektinformation som kommer att läsas för personer med syn eller kognitiva funktionsnedsättningar för att hjälpa dem att bättre förstå vilken information som finns i bilden, figuren, diagrammet eller tabellen.", "SSE.Views.ImageSettingsAdvanced.textAltTitle": "Titel", "SSE.Views.ImageSettingsAdvanced.textAngle": "Vinkel", "SSE.Views.ImageSettingsAdvanced.textFlipped": "Vänd", @@ -2437,6 +2514,7 @@ "SSE.Views.NamedRangePasteDlg.txtTitle": "Klistra in namn", "SSE.Views.NameManagerDlg.closeButtonText": "Stäng", "SSE.Views.NameManagerDlg.guestText": "Gäst", + "SSE.Views.NameManagerDlg.lockText": "Låst", "SSE.Views.NameManagerDlg.textDataRange": "Dataområde", "SSE.Views.NameManagerDlg.textDelete": "Radera", "SSE.Views.NameManagerDlg.textEdit": "Redigera", @@ -2482,7 +2560,7 @@ "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Special", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecialBy": "Av", "SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Font", - "SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Indrag & placering", + "SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Indrag & mellanrum", "SSE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Gemener", "SSE.Views.ParagraphSettingsAdvanced.strSpacing": "Avstånd", "SSE.Views.ParagraphSettingsAdvanced.strStrike": "Genomstruken", @@ -2668,6 +2746,94 @@ "SSE.Views.PrintTitlesDialog.textSelectRange": "Välj intervall", "SSE.Views.PrintTitlesDialog.textTitle": "Skriv ut titlar", "SSE.Views.PrintTitlesDialog.textTop": "Upprepa raderna överst", + "SSE.Views.PrintWithPreview.txtActualSize": "Verklig storlek", + "SSE.Views.PrintWithPreview.txtAllSheets": "Alla kalkylblad", + "SSE.Views.PrintWithPreview.txtApplyToAllSheets": "Gäller alla kalkylblad", + "SSE.Views.PrintWithPreview.txtBottom": "Nederst", + "SSE.Views.PrintWithPreview.txtCurrentSheet": "Aktuellt kalkylblad", + "SSE.Views.PrintWithPreview.txtCustom": "Anpassad", + "SSE.Views.PrintWithPreview.txtCustomOptions": "Anpassade alternativ", + "SSE.Views.PrintWithPreview.txtFitCols": "Anpassa alla kolumner till en sida", + "SSE.Views.PrintWithPreview.txtFitPage": "Anpassa kalkylbladet på en sida", + "SSE.Views.PrintWithPreview.txtFitRows": "Anpassa alla rader på en sida", + "SSE.Views.PrintWithPreview.txtGridlinesAndHeadings": "Rutnät och rubriker", + "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Inställningar för sidhuvud och sidfot", + "SSE.Views.PrintWithPreview.txtIgnore": "Ignorera utskriftsområde", + "SSE.Views.PrintWithPreview.txtLandscape": "Liggande", + "SSE.Views.PrintWithPreview.txtLeft": "Vänster", + "SSE.Views.PrintWithPreview.txtMargins": "Marginaler", + "SSE.Views.PrintWithPreview.txtOf": "av {0}", + "SSE.Views.PrintWithPreview.txtPage": "Sida", + "SSE.Views.PrintWithPreview.txtPageNumInvalid": "Sidnumret är felaktigt", + "SSE.Views.PrintWithPreview.txtPageOrientation": "Sidans orientering", + "SSE.Views.PrintWithPreview.txtPageSize": "Sidans storlek", + "SSE.Views.PrintWithPreview.txtPortrait": "Stående", + "SSE.Views.PrintWithPreview.txtPrint": "Skriv ut", + "SSE.Views.PrintWithPreview.txtPrintGrid": "Skriv ut rutnät", + "SSE.Views.PrintWithPreview.txtPrintHeadings": "Skriv ut rad- och kolumnrubriker", + "SSE.Views.PrintWithPreview.txtPrintRange": "Utskriftsområde", + "SSE.Views.PrintWithPreview.txtPrintTitles": "Skriv ut titlar", + "SSE.Views.PrintWithPreview.txtRepeat": "Upprepa...", + "SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft": "Upprepa kolumner till vänster", + "SSE.Views.PrintWithPreview.txtRepeatRowsAtTop": "Upprepa de översta raderna", + "SSE.Views.PrintWithPreview.txtRight": "Höger", + "SSE.Views.PrintWithPreview.txtSave": "Spara", + "SSE.Views.PrintWithPreview.txtScaling": "Skalning", + "SSE.Views.PrintWithPreview.txtSelection": "Markering", + "SSE.Views.PrintWithPreview.txtSettingsOfSheet": "Kalkylbladets inställningar", + "SSE.Views.PrintWithPreview.txtSheet": "Kalkylblad: {0}", + "SSE.Views.PrintWithPreview.txtTop": "Överst", + "SSE.Views.ProtectDialog.textExistName": "FEL! Intervall med detta namn finns redan", + "SSE.Views.ProtectDialog.textInvalidName": "Intervalltiteln måste börja med en bokstav och får endast innehålla bokstäver, siffror och mellanslag.", + "SSE.Views.ProtectDialog.textInvalidRange": "FEL! Ogiltigt cellintervall", + "SSE.Views.ProtectDialog.textSelectData": "Välj data", + "SSE.Views.ProtectDialog.txtAllow": "Tillåt alla användare av detta kalkylblad att", + "SSE.Views.ProtectDialog.txtAutofilter": "Använd autofilter", + "SSE.Views.ProtectDialog.txtDelCols": "Radera kolumner", + "SSE.Views.ProtectDialog.txtDelRows": "Radera rader", + "SSE.Views.ProtectDialog.txtEmpty": "Detta fält är obligatoriskt", + "SSE.Views.ProtectDialog.txtFormatCells": "Formatera celler", + "SSE.Views.ProtectDialog.txtFormatCols": "Formatera kolumner", + "SSE.Views.ProtectDialog.txtFormatRows": "Formatera rader", + "SSE.Views.ProtectDialog.txtIncorrectPwd": "Bekräftelselösenordet är inte identiskt", + "SSE.Views.ProtectDialog.txtInsCols": "Infoga kolumner", + "SSE.Views.ProtectDialog.txtInsHyper": "Infoga hyperlänk", + "SSE.Views.ProtectDialog.txtInsRows": "Infoga rader", + "SSE.Views.ProtectDialog.txtObjs": "Redigera objekt", + "SSE.Views.ProtectDialog.txtOptional": "Valfritt", + "SSE.Views.ProtectDialog.txtPassword": "Lösenord", + "SSE.Views.ProtectDialog.txtPivot": "Använd pivottabell och pivotdiagram", + "SSE.Views.ProtectDialog.txtProtect": "Skydda", + "SSE.Views.ProtectDialog.txtRange": "Område", + "SSE.Views.ProtectDialog.txtRangeName": "Dokumenttitel", + "SSE.Views.ProtectDialog.txtRepeat": "Upprepa lösenord", + "SSE.Views.ProtectDialog.txtScen": "Redigera händelser", + "SSE.Views.ProtectDialog.txtSelLocked": "Välj låsta celler", + "SSE.Views.ProtectDialog.txtSelUnLocked": "Välj olåsta celler", + "SSE.Views.ProtectDialog.txtSheetDescription": "Förhindrar oönskade ändringar av andra genom att begränsa deras möjlighet till ändringar.", + "SSE.Views.ProtectDialog.txtSheetTitle": "Skydda kalkylblad", + "SSE.Views.ProtectDialog.txtSort": "Sortera", + "SSE.Views.ProtectDialog.txtWarning": "Varning! Om du glömmer lösenordet kan det inte återskapas. Vänligen förvara det på en säker plats.", + "SSE.Views.ProtectDialog.txtWBDescription": "För att förhindra andra användare att se dolda arbetsböcker, lägga till, flytta, radera, dölja eller döpa om arbetsböcker så kan du skydda deras struktur med ett lösenord.", + "SSE.Views.ProtectDialog.txtWBTitle": "Skydda arbetsbokens struktur", + "SSE.Views.ProtectRangesDlg.guestText": "Gäst", + "SSE.Views.ProtectRangesDlg.lockText": "Låst", + "SSE.Views.ProtectRangesDlg.textDelete": "Radera", + "SSE.Views.ProtectRangesDlg.textEdit": "Redigera", + "SSE.Views.ProtectRangesDlg.textEmpty": "Inga intervaller är tillgängliga för redigering.", + "SSE.Views.ProtectRangesDlg.textNew": "Ny", + "SSE.Views.ProtectRangesDlg.textProtect": "Skydda kalkylblad", + "SSE.Views.ProtectRangesDlg.textPwd": "Lösenord", + "SSE.Views.ProtectRangesDlg.textRange": "Område", + "SSE.Views.ProtectRangesDlg.textRangesDesc": "Området låses upp med lösenord när kalkylbladet är skyddat (detta gäller bara för låsta celler)", + "SSE.Views.ProtectRangesDlg.textTitle": "Dokumenttitel", + "SSE.Views.ProtectRangesDlg.tipIsLocked": "Detta element redigeras av en annan användare.", + "SSE.Views.ProtectRangesDlg.txtEditRange": "Redigera intervall", + "SSE.Views.ProtectRangesDlg.txtNewRange": "Nytt intervall", + "SSE.Views.ProtectRangesDlg.txtNo": "Nov", + "SSE.Views.ProtectRangesDlg.txtTitle": "Tillåt användare att ändra intervaller", + "SSE.Views.ProtectRangesDlg.txtYes": "Ja", + "SSE.Views.ProtectRangesDlg.warnDelete": "Är du säker på att du vill ta bort namnet {0}?", "SSE.Views.RemoveDuplicatesDialog.textColumns": "Kolumner", "SSE.Views.RemoveDuplicatesDialog.textDescription": "Om du vill ta bort dubbletter av värden väljer du en eller flera kolumner som innehåller dubbletter.", "SSE.Views.RemoveDuplicatesDialog.textHeaders": "Mina data har rubriker", @@ -2676,7 +2842,7 @@ "SSE.Views.RightMenu.txtCellSettings": "Formatera celler", "SSE.Views.RightMenu.txtChartSettings": "Diagraminställningar", "SSE.Views.RightMenu.txtImageSettings": "Bildinställningar", - "SSE.Views.RightMenu.txtParagraphSettings": "Text inställningar", + "SSE.Views.RightMenu.txtParagraphSettings": "Styckets inställningar", "SSE.Views.RightMenu.txtPivotSettings": "Inställningar pivottabell", "SSE.Views.RightMenu.txtSettings": "Allmänna inställningar", "SSE.Views.RightMenu.txtShapeSettings": "Form inställningar", @@ -2705,7 +2871,7 @@ "SSE.Views.ShapeSettings.strPattern": "Mönster", "SSE.Views.ShapeSettings.strShadow": "Visa skugga", "SSE.Views.ShapeSettings.strSize": "Storlek", - "SSE.Views.ShapeSettings.strStroke": "Genomslag", + "SSE.Views.ShapeSettings.strStroke": "Linje", "SSE.Views.ShapeSettings.strTransparency": "Opacitet", "SSE.Views.ShapeSettings.strType": "Typ", "SSE.Views.ShapeSettings.textAdvanced": "Visa avancerade inställningar", @@ -2718,7 +2884,7 @@ "SSE.Views.ShapeSettings.textFromFile": "Från fil", "SSE.Views.ShapeSettings.textFromStorage": "Från lagring", "SSE.Views.ShapeSettings.textFromUrl": "Från URL", - "SSE.Views.ShapeSettings.textGradient": "Fyllning", + "SSE.Views.ShapeSettings.textGradient": "Triangulära punkter", "SSE.Views.ShapeSettings.textGradientFill": "Fyllning", "SSE.Views.ShapeSettings.textHint270": "Rotera 90° moturs", "SSE.Views.ShapeSettings.textHint90": "Rotera 90° medsols", @@ -2731,6 +2897,7 @@ "SSE.Views.ShapeSettings.textPatternFill": "Mönster", "SSE.Views.ShapeSettings.textPosition": "Position", "SSE.Views.ShapeSettings.textRadial": "Radiell", + "SSE.Views.ShapeSettings.textRecentlyUsed": "Nyligen använda", "SSE.Views.ShapeSettings.textRotate90": "Rotera 90°", "SSE.Views.ShapeSettings.textRotation": "Rotation", "SSE.Views.ShapeSettings.textSelectImage": "Välj bild", @@ -2758,7 +2925,7 @@ "SSE.Views.ShapeSettingsAdvanced.textAbsolute": "Flytta eller ändra inte storlek på celler", "SSE.Views.ShapeSettingsAdvanced.textAlt": "Alternativ text", "SSE.Views.ShapeSettingsAdvanced.textAltDescription": "Beskrivning", - "SSE.Views.ShapeSettingsAdvanced.textAltTip": "Den alternativa textbaserade representation av den visuella informationsobjektet, som kommer att läsas för personer med syn eller kognitiva funktionsnedsättningar att hjälpa dem att bättre förstå vilken information som finns i bilden, figur eller, diagram eller en tabell.", + "SSE.Views.ShapeSettingsAdvanced.textAltTip": "Den alternativa textbaserad förekomsten av visuell objektinformation som kommer att läsas för personer med syn eller kognitiva funktionsnedsättningar för att hjälpa dem att bättre förstå vilken information som finns i bilden, figuren, diagrammet eller tabellen.", "SSE.Views.ShapeSettingsAdvanced.textAltTitle": "Titel", "SSE.Views.ShapeSettingsAdvanced.textAngle": "Vinkel", "SSE.Views.ShapeSettingsAdvanced.textArrows": "Pilar", @@ -2957,7 +3124,7 @@ "SSE.Views.Spellcheck.txtSpelling": "Rättstavning", "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Kopiera till slutet)", "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Flytta till slutet)", - "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Kopiera före ark", + "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Klistra in före kalkylarket", "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Flytta före ark", "SSE.Views.Statusbar.filteredRecordsText": "{0} av {1} poster filtrerade", "SSE.Views.Statusbar.filteredText": "Filterläge", @@ -2971,15 +3138,19 @@ "SSE.Views.Statusbar.itemMaximum": "Max", "SSE.Views.Statusbar.itemMinimum": "Minst", "SSE.Views.Statusbar.itemMove": "Flytta", + "SSE.Views.Statusbar.itemProtect": "Skydda", "SSE.Views.Statusbar.itemRename": "Döp om", + "SSE.Views.Statusbar.itemStatus": "Sparar status", "SSE.Views.Statusbar.itemSum": "Summa", "SSE.Views.Statusbar.itemTabColor": "Tabbfärg", + "SSE.Views.Statusbar.itemUnProtect": "Lås upp", "SSE.Views.Statusbar.RenameDialog.errNameExists": "En arbetsbok med samma namn finns redan.", "SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "Namnet på ett blad kan inte innehålla följande tecken:: \\/*?[]:", "SSE.Views.Statusbar.RenameDialog.labelSheetName": "Fliknamn", "SSE.Views.Statusbar.selectAllSheets": "Markera alla blad", - "SSE.Views.Statusbar.textAverage": "GENOMSNITT", - "SSE.Views.Statusbar.textCount": "RÄKNA", + "SSE.Views.Statusbar.sheetIndexText": "Kalkylblad {0} av {1}", + "SSE.Views.Statusbar.textAverage": "Genomsnitt", + "SSE.Views.Statusbar.textCount": "Räkna", "SSE.Views.Statusbar.textMax": "Max", "SSE.Views.Statusbar.textMin": "Min", "SSE.Views.Statusbar.textNewColor": "Lägg till ny egen färg", @@ -2988,6 +3159,7 @@ "SSE.Views.Statusbar.tipAddTab": "Lägg till kalkylblad", "SSE.Views.Statusbar.tipFirst": "Scrolla till första bladet", "SSE.Views.Statusbar.tipLast": "Scrolla till sista bladet", + "SSE.Views.Statusbar.tipListOfSheets": "Lista med kalkylblad", "SSE.Views.Statusbar.tipNext": "Bläddra listan till höger", "SSE.Views.Statusbar.tipPrev": "Bläddra listan till vänster", "SSE.Views.Statusbar.tipZoomFactor": "Zooma", @@ -3053,7 +3225,7 @@ "SSE.Views.TextArtSettings.strForeground": "Förgrundsfärg", "SSE.Views.TextArtSettings.strPattern": "Mönster", "SSE.Views.TextArtSettings.strSize": "Storlek", - "SSE.Views.TextArtSettings.strStroke": "Genomslag", + "SSE.Views.TextArtSettings.strStroke": "Linje", "SSE.Views.TextArtSettings.strTransparency": "Opacitet", "SSE.Views.TextArtSettings.strType": "Typ", "SSE.Views.TextArtSettings.textAngle": "Vinkel", @@ -3063,7 +3235,7 @@ "SSE.Views.TextArtSettings.textEmptyPattern": "Inget mönster", "SSE.Views.TextArtSettings.textFromFile": "Från fil", "SSE.Views.TextArtSettings.textFromUrl": "Från URL", - "SSE.Views.TextArtSettings.textGradient": "Fyllning", + "SSE.Views.TextArtSettings.textGradient": "Triangulära punkter", "SSE.Views.TextArtSettings.textGradientFill": "Fyllning", "SSE.Views.TextArtSettings.textImageTexture": "Bild eller textur", "SSE.Views.TextArtSettings.textLinear": "Linjär", @@ -3095,7 +3267,7 @@ "SSE.Views.Toolbar.capBtnAddComment": "Lägg till kommentar", "SSE.Views.Toolbar.capBtnColorSchemas": "Färgschema", "SSE.Views.Toolbar.capBtnComment": "Kommentar", - "SSE.Views.Toolbar.capBtnInsHeader": "Sidhuvud/Sidfot", + "SSE.Views.Toolbar.capBtnInsHeader": "Sidhuvud & Sidfot", "SSE.Views.Toolbar.capBtnInsSlicer": "Slicer", "SSE.Views.Toolbar.capBtnInsSymbol": "Symbol", "SSE.Views.Toolbar.capBtnMargins": "Marginaler", @@ -3176,6 +3348,8 @@ "SSE.Views.Toolbar.textPageMarginsCustom": "Anpassade marginaler", "SSE.Views.Toolbar.textPortrait": "Porträtt", "SSE.Views.Toolbar.textPrint": "Skriv ut", + "SSE.Views.Toolbar.textPrintGridlines": "Skriv ut rutnät", + "SSE.Views.Toolbar.textPrintHeadings": "Skriv ut rubriker", "SSE.Views.Toolbar.textPrintOptions": "Skrivarinställningar", "SSE.Views.Toolbar.textRight": "Höger:", "SSE.Views.Toolbar.textRightBorders": "Ram höger", @@ -3254,13 +3428,22 @@ "SSE.Views.Toolbar.tipInsertTable": "Infoga tabell", "SSE.Views.Toolbar.tipInsertText": "Infoga textruta", "SSE.Views.Toolbar.tipInsertTextart": "Infoga Text Art", - "SSE.Views.Toolbar.tipMerge": "Slå ihop", + "SSE.Views.Toolbar.tipMarkersArrow": "Pil punkter", + "SSE.Views.Toolbar.tipMarkersCheckmark": "Bock punkt", + "SSE.Views.Toolbar.tipMarkersDash": "Sträck punkter", + "SSE.Views.Toolbar.tipMarkersFRhombus": "Fyllda romb punkter", + "SSE.Views.Toolbar.tipMarkersFRound": "Fyllda runda punkter", + "SSE.Views.Toolbar.tipMarkersFSquare": "Fyllda kvadratiska punkter", + "SSE.Views.Toolbar.tipMarkersHRound": "Ofyllda runda punkter", + "SSE.Views.Toolbar.tipMarkersStar": "Stjärnpunkter", + "SSE.Views.Toolbar.tipMerge": "Slå samman och centrera", + "SSE.Views.Toolbar.tipNone": "Inga", "SSE.Views.Toolbar.tipNumFormat": "Sifferformat", "SSE.Views.Toolbar.tipPageMargins": "Sidmarginaler", "SSE.Views.Toolbar.tipPageOrient": "Orientering", "SSE.Views.Toolbar.tipPageSize": "Sidstorlek", "SSE.Views.Toolbar.tipPaste": "Klistra in", - "SSE.Views.Toolbar.tipPrColor": "Bakgrundsfärg", + "SSE.Views.Toolbar.tipPrColor": "Fyllnadsfärg", "SSE.Views.Toolbar.tipPrint": "Skriv ut", "SSE.Views.Toolbar.tipPrintArea": "Utskriftsområde", "SSE.Views.Toolbar.tipPrintTitles": "Skriv ut titlar", @@ -3383,6 +3566,7 @@ "SSE.Views.ValueFieldSettingsDialog.txtVarp": "Varp", "SSE.Views.ViewManagerDlg.closeButtonText": "Stäng", "SSE.Views.ViewManagerDlg.guestText": "Gäst", + "SSE.Views.ViewManagerDlg.lockText": "Låst", "SSE.Views.ViewManagerDlg.textDelete": "Radera", "SSE.Views.ViewManagerDlg.textDuplicate": "Duplicera", "SSE.Views.ViewManagerDlg.textEmpty": "Inga vyer har skapats än.", @@ -3398,7 +3582,9 @@ "SSE.Views.ViewManagerDlg.warnDeleteView": "Du försöker ta bort den för närvarande aktiverade vyn %1.
Stäng den här vyn och ta bort den?", "SSE.Views.ViewTab.capBtnFreeze": "Lås paneler", "SSE.Views.ViewTab.capBtnSheetView": "Arkvy", + "SSE.Views.ViewTab.textAlwaysShowToolbar": "Visa alltid verktygsfältet", "SSE.Views.ViewTab.textClose": "Stäng", + "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "Kombinera kalkylblad och statusfält", "SSE.Views.ViewTab.textCreate": "Ny", "SSE.Views.ViewTab.textDefault": "Standard", "SSE.Views.ViewTab.textFormula": "Formelfält", @@ -3406,12 +3592,28 @@ "SSE.Views.ViewTab.textFreezeRow": "Lås översta raden", "SSE.Views.ViewTab.textGridlines": "Stödlinjer", "SSE.Views.ViewTab.textHeadings": "Rubriker", + "SSE.Views.ViewTab.textInterfaceTheme": "Gränssnittstema", "SSE.Views.ViewTab.textManager": "Vyhanterare", + "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Visa skugga för frysta rutor", "SSE.Views.ViewTab.textUnFreeze": "Lås upp paneler", "SSE.Views.ViewTab.textZeros": "Visa nollor", "SSE.Views.ViewTab.textZoom": "Zooma", "SSE.Views.ViewTab.tipClose": "Stäng arkvy", "SSE.Views.ViewTab.tipCreate": "Skapa arkvy", "SSE.Views.ViewTab.tipFreeze": "Lås paneler", - "SSE.Views.ViewTab.tipSheetView": "Arkvy" + "SSE.Views.ViewTab.tipSheetView": "Arkvy", + "SSE.Views.WBProtection.hintAllowRanges": "Tillåt ändring av intervaller", + "SSE.Views.WBProtection.hintProtectSheet": "Skydda kalkylblad", + "SSE.Views.WBProtection.hintProtectWB": "Skydda arbetsbok", + "SSE.Views.WBProtection.txtAllowRanges": "Tillåt ändring av intervaller", + "SSE.Views.WBProtection.txtHiddenFormula": "Dolda formler", + "SSE.Views.WBProtection.txtLockedCell": "Låst cell", + "SSE.Views.WBProtection.txtLockedShape": "Form låst", + "SSE.Views.WBProtection.txtLockedText": "Lås text", + "SSE.Views.WBProtection.txtProtectSheet": "Skydda kalkylblad", + "SSE.Views.WBProtection.txtProtectWB": "Skydda arbetsbok", + "SSE.Views.WBProtection.txtSheetUnlockDescription": "Ange ett lösenord för att låsa upp kalkylarkets skydd", + "SSE.Views.WBProtection.txtSheetUnlockTitle": "Lås upp kalkylbladet", + "SSE.Views.WBProtection.txtWBUnlockDescription": "Ange ett lösenord för att låsa upp arbetsbokens skydd", + "SSE.Views.WBProtection.txtWBUnlockTitle": "Lås upp arbetsboken" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/tr.json b/apps/spreadsheeteditor/main/locale/tr.json index a0530f397..0c18935e9 100644 --- a/apps/spreadsheeteditor/main/locale/tr.json +++ b/apps/spreadsheeteditor/main/locale/tr.json @@ -136,7 +136,7 @@ "Common.UI.Window.cancelButtonText": "İptal Et", "Common.UI.Window.closeButtonText": "Kapat", "Common.UI.Window.noButtonText": "Hayır", - "Common.UI.Window.okButtonText": "TAMAM", + "Common.UI.Window.okButtonText": "Tamam", "Common.UI.Window.textConfirmation": "Konfirmasyon", "Common.UI.Window.textDontShow": "Bu mesajı bir daha gösterme", "Common.UI.Window.textError": "Hata", @@ -193,7 +193,7 @@ "Common.Views.Comments.textClose": "Kapat", "Common.Views.Comments.textClosePanel": "Yorumları kapat", "Common.Views.Comments.textComments": "Yorumlar", - "Common.Views.Comments.textEdit": "OK", + "Common.Views.Comments.textEdit": "Tamam", "Common.Views.Comments.textEnterCommentHint": "Yorumunuzu buraya giriniz", "Common.Views.Comments.textHintAddComment": "Yorum Ekle", "Common.Views.Comments.textOpenAgain": "Tekrar Aç", @@ -629,7 +629,7 @@ "SSE.Controllers.Main.confirmPutMergeRange": "Kaynak veri birleştirilmiş hücreler içeriyor.
Tabloya yapıştırılmadan önce birleştirmeleri kaldırılmıştır.", "SSE.Controllers.Main.confirmReplaceFormulaInTable": "Başlık satırındaki formüller kaldırılacak ve statik metne dönüştürülecek.
Devam etmek istiyor musunuz?", "SSE.Controllers.Main.convertationTimeoutText": "Değişim süresi aşıldı.", - "SSE.Controllers.Main.criticalErrorExtText": "Döküman listesine dönmek için \"OK\"'a tıklayın", + "SSE.Controllers.Main.criticalErrorExtText": "Döküman listesine dönmek için \"Tamam\"'a tıklayın", "SSE.Controllers.Main.criticalErrorTitle": "Hata", "SSE.Controllers.Main.downloadErrorText": "Yükleme başarısız oldu.", "SSE.Controllers.Main.downloadTextText": "E-Tablo indiriliyor...", @@ -648,7 +648,7 @@ "SSE.Controllers.Main.errorChangeFilteredRange": "Bu, çalışma sayfanızdaki filtrelenmiş bir aralığı değiştirecektir.
Bu görevi tamamlamak için lütfen Otomatik Filtreleri kaldırın.", "SSE.Controllers.Main.errorChangeOnProtectedSheet": "Değiştirmeye çalıştığınız hücre veya grafik korumalı bir sayfada.
Değişiklik yapmak için sayfanın korumasını kaldırın. Bir şifre girmeniz istenebilir.", "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Sunucu bağlantısı kesildi. Döküman şu an düzenlenemez.", - "SSE.Controllers.Main.errorConnectToServer": "Belge kaydedilemedi. Lütfen internet bağlantınızı kontrol edin veya yöneticiniz ile iletişime geçin.
'OK' tuşuna tıkladığınızda belgeyi indirebileceksiniz.", + "SSE.Controllers.Main.errorConnectToServer": "Belge kaydedilemedi. Lütfen internet bağlantınızı kontrol edin veya yöneticiniz ile iletişime geçin.
'Tamam' tuşuna tıkladığınızda belgeyi indirebileceksiniz.", "SSE.Controllers.Main.errorCopyMultiselectArea": "Bu komut çoklu seçimlerle kullanılamaz.
Tek bir aralık seçin ve tekrar deneyin.", "SSE.Controllers.Main.errorCountArg": "Girilen formülde hata oluştu.
Yanlış değişken sayısı kullanıldı.", "SSE.Controllers.Main.errorCountArgExceed": "Girilen formülde hata oluştu.
Değişken sayısı aşıldı.", @@ -723,7 +723,7 @@ "SSE.Controllers.Main.errorWrongPassword": "Verdiğiniz şifre doğru değil.", "SSE.Controllers.Main.errRemDuplicates": "Yinelenen değerler bulundu ve silindi: {0}, benzersiz değerler kaldı: {1}.", "SSE.Controllers.Main.leavePageText": "Spreadsheet'te kaydedilmemiş değişiklikler var. Kaydetmek için 'Bu Sayfada Kal'a daha sonra da 'Kaydet'e tıklayınız.Kaydedilmemiş tüm değişiklikleri göz ardı etmek için 'Bu Sayfadan Ayrıl'a tıklayın.", - "SSE.Controllers.Main.leavePageTextOnClose": "Bu e-tablodaki kaydedilmemiş tüm değişiklikler kaybolacak.
Bunları kaydetmek için \"İptal\"i ve ardından \"Kaydet\"i tıklayın. Kaydedilmemiş tüm değişiklikleri atmak için \"OK\" ı tıklayın.", + "SSE.Controllers.Main.leavePageTextOnClose": "Bu e-tablodaki kaydedilmemiş tüm değişiklikler kaybolacak.
Bunları kaydetmek için \"İptal\"i ve ardından \"Kaydet\"i tıklayın. Kaydedilmemiş tüm değişiklikleri atmak için \"Tamam\" ı tıklayın.", "SSE.Controllers.Main.loadFontsTextText": "Veri yükleniyor...", "SSE.Controllers.Main.loadFontsTitleText": "Veri yükleniyor", "SSE.Controllers.Main.loadFontTextText": "Veri yükleniyor...", From bee53ec94bd8033e17b4e4eb1a3a80166f90fd39 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 4 Feb 2022 17:31:55 +0300 Subject: [PATCH 102/217] [Mobile] Update translation --- apps/documenteditor/mobile/locale/de.json | 64 ++-- apps/documenteditor/mobile/locale/es.json | 20 +- apps/documenteditor/mobile/locale/ja.json | 2 +- apps/documenteditor/mobile/locale/tr.json | 8 +- apps/documenteditor/mobile/locale/uk.json | 304 +++++++++--------- apps/presentationeditor/mobile/locale/de.json | 30 +- apps/presentationeditor/mobile/locale/es.json | 18 +- apps/presentationeditor/mobile/locale/hu.json | 30 +- apps/presentationeditor/mobile/locale/ja.json | 2 +- apps/presentationeditor/mobile/locale/tr.json | 10 +- apps/presentationeditor/mobile/locale/uk.json | 267 ++++++++------- apps/spreadsheeteditor/mobile/locale/de.json | 38 +-- apps/spreadsheeteditor/mobile/locale/es.json | 14 +- apps/spreadsheeteditor/mobile/locale/hu.json | 38 +-- apps/spreadsheeteditor/mobile/locale/ja.json | 2 +- apps/spreadsheeteditor/mobile/locale/tr.json | 4 +- 16 files changed, 425 insertions(+), 426 deletions(-) diff --git a/apps/documenteditor/mobile/locale/de.json b/apps/documenteditor/mobile/locale/de.json index 4a82ae963..d66b6af5c 100644 --- a/apps/documenteditor/mobile/locale/de.json +++ b/apps/documenteditor/mobile/locale/de.json @@ -41,6 +41,7 @@ "textLocation": "Standort", "textNextPage": "Nächste Seite", "textOddPage": "Ungerade Seite", + "textOk": "OK", "textOther": "Sonstiges", "textPageBreak": "Seitenumbruch", "textPageNumber": "Seitennummer", @@ -56,8 +57,7 @@ "textStartAt": "Beginnen mit", "textTable": "Tabelle", "textTableSize": "Tabellengröße", - "txtNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.", - "textOk": "Ok" + "txtNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein." }, "Common": { "Collaboration": { @@ -158,13 +158,13 @@ "textUsers": "Benutzer", "textWidow": "Absatzkontrolle" }, + "HighlightColorPalette": { + "textNoFill": "Keine Füllung" + }, "ThemeColorPalette": { "textCustomColors": "Benutzerdefinierte Farben", "textStandartColors": "Standardfarben", "textThemeColors": "Designfarben" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -208,6 +208,8 @@ "textAlign": "Ausrichtung", "textAllCaps": "Alle Großbuchstaben", "textAllowOverlap": "Überlappung zulassen", + "textApril": "April", + "textAugust": "August", "textAuto": "Auto", "textAutomatic": "Automatisch", "textBack": "Zurück", @@ -226,6 +228,8 @@ "textColor": "Farbe", "textContinueFromPreviousSection": "Fortsetzen vom vorherigen Abschnitt", "textCustomColor": "Benutzerdefinierte Farbe", + "textDecember": "Dezember", + "textDesign": "Design", "textDifferentFirstPage": "Erste Seite anders", "textDifferentOddAndEvenPages": "Gerade und ungerade Seiten anders", "textDisplay": "Anzeigen", @@ -233,7 +237,9 @@ "textDoubleStrikethrough": "Doppelt durchgestrichen", "textEditLink": "Link bearbeiten", "textEffects": "Effekte", + "textEmpty": "Leer", "textEmptyImgUrl": "URL des Bildes erforderlich", + "textFebruary": "Februar", "textFill": "Füllung", "textFirstColumn": "Erste Spalte", "textFirstLine": "Erste Zeile", @@ -242,6 +248,7 @@ "textFontColors": "Schriftfarben", "textFonts": "Schriftarten", "textFooter": "Fußzeile", + "textFr": "Fr", "textHeader": "Kopfzeile", "textHeaderRow": "Kopfzeile", "textHighlightColor": "Hervorhebungsfarbe", @@ -250,6 +257,9 @@ "textImageURL": "URL des Bildes", "textInFront": "Vor dem Text", "textInline": "Inline", + "textJanuary": "Januar", + "textJuly": "Juli", + "textJune": "Juni", "textKeepLinesTogether": "Absatz zusammenhalten", "textKeepWithNext": "Vom nächsten Absatz nicht trennen", "textLastColumn": "Letzte Spalte", @@ -258,13 +268,19 @@ "textLink": "Link", "textLinkSettings": "Linkseinstellungen", "textLinkToPrevious": "Mit vorheriger verknüpfen", + "textMarch": "März", + "textMay": "Mai", + "textMo": "Mo", "textMoveBackward": "Nach hinten", "textMoveForward": "Nach vorne", "textMoveWithText": "Mit Text verschieben", "textNone": "Kein(e)", "textNoStyles": "Keine Stile für diesen Typ von Diagrammen.", "textNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.", + "textNovember": "November", "textNumbers": "Nummern", + "textOctober": "Oktober", + "textOk": "OK", "textOpacity": "Undurchsichtigkeit", "textOptions": "Optionen", "textOrphanControl": "Absatzkontrolle", @@ -285,9 +301,11 @@ "textReplace": "Ersetzen", "textReplaceImage": "Bild ersetzen", "textResizeToFitContent": "An die Größe des Inhalts anpassen", + "textSa": "Sa", "textScreenTip": "QuickInfo", "textSelectObjectToEdit": "Wählen Sie das Objekt für Bearbeitung aus", "textSendToBackground": "In den Hintergrund senden", + "textSeptember": "September", "textSettings": "Einstellungen", "textShape": "Form", "textSize": "Größe", @@ -298,39 +316,21 @@ "textStrikethrough": "Durchgestrichen", "textStyle": "Stil", "textStyleOptions": "Stileinstellungen", + "textSu": "Son", "textSubscript": "Tiefgestellt", "textSuperscript": "Hochgestellt", "textTable": "Tabelle", "textTableOptions": "Tabellenoptionen", "textText": "Text", + "textTh": "Do", "textThrough": "Durchgehend", "textTight": "Passend", "textTopAndBottom": "Oben und unten", "textTotalRow": "Ergebniszeile", + "textTu": "Di", "textType": "Typ", - "textWrap": "Umbrechen", - "textApril": "April", - "textAugust": "August", - "textDecember": "December", - "textDesign": "Design", - "textEmpty": "Empty", - "textFebruary": "February", - "textFr": "Fr", - "textJanuary": "January", - "textJuly": "July", - "textJune": "June", - "textMarch": "March", - "textMay": "May", - "textMo": "Mo", - "textNovember": "November", - "textOctober": "October", - "textOk": "Ok", - "textSa": "Sa", - "textSeptember": "September", - "textSu": "Su", - "textTh": "Th", - "textTu": "Tu", - "textWe": "We" + "textWe": "Mi", + "textWrap": "Umbrechen" }, "Error": { "convertationTimeoutText": "Zeitüberschreitung bei der Konvertierung.", @@ -487,8 +487,11 @@ "textHasMacros": "Diese Datei beinhaltet Makros.
Möchten Sie Makros ausführen?", "textNo": "Nein", "textNoLicenseTitle": "Lizenzlimit erreicht", + "textNoTextFound": "Der Text wurde nicht gefunden.", "textPaidFeature": "Kostenpflichtige Funktion", "textRemember": "Auswahl speichern", + "textReplaceSkipped": "Der Ersatzvorgang wurde durchgeführt. {0} Vorkommen wurden ausgelassen.", + "textReplaceSuccess": "Der Suchvorgang wurde durchgeführt. Vorkommen wurden ersetzt:{0}", "textYes": "Ja", "titleLicenseExp": "Lizenz ist abgelaufen", "titleServerVersion": "Editor wurde aktualisiert", @@ -500,10 +503,7 @@ "warnLicenseUsersExceeded": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.", "warnNoLicense": "Sie haben die maximale Anzahl von gleichzeitigen Verbindungen in %1-Editoren erreicht. Die Bearbeitung ist jetzt in diesem Dokument nicht verfügbar. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", "warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", - "warnProcessRightsChange": "Sie können diese Datei nicht bearbeiten.", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "Sie können diese Datei nicht bearbeiten." }, "Settings": { "advDRMOptions": "Geschützte Datei", diff --git a/apps/documenteditor/mobile/locale/es.json b/apps/documenteditor/mobile/locale/es.json index 5afbd744d..9b007d802 100644 --- a/apps/documenteditor/mobile/locale/es.json +++ b/apps/documenteditor/mobile/locale/es.json @@ -10,7 +10,7 @@ }, "Add": { "notcriticalErrorTitle": "Advertencia", - "textAddLink": "Añadir enlace ", + "textAddLink": "Agregar enlace ", "textAddress": "Dirección", "textBack": "Atrás", "textBelowText": "Bajo el texto", @@ -64,8 +64,8 @@ "notcriticalErrorTitle": "Advertencia", "textAccept": "Aceptar", "textAcceptAllChanges": "Aceptar todos los cambios", - "textAddComment": "Añadir comentario", - "textAddReply": "Añadir respuesta", + "textAddComment": "Agregar comentario", + "textAddReply": "Agregar respuesta", "textAllChangesAcceptedPreview": "Todos los cambio aceptados (Vista previa)", "textAllChangesEditing": "Todos los cambios (Edición)", "textAllChangesRejectedPreview": "Todos los cambios rechazados (Vista previa)", @@ -82,7 +82,7 @@ "textCollaboration": "Colaboración", "textColor": "Color de fuente", "textComments": "Comentarios", - "textContextual": "No añadir intervalos entre párrafos del mismo estilo", + "textContextual": "No agregar intervalos entre párrafos del mismo estilo", "textDelete": "Eliminar", "textDeleteComment": "Eliminar comentario", "textDeleted": "Eliminado:", @@ -117,7 +117,7 @@ "textNoBreakBefore": "Sin salto de página antes", "textNoChanges": "No hay cambios.", "textNoComments": "Este documento no contiene comentarios", - "textNoContextual": "Añadir intervalo entre párrafos del mismo estilo", + "textNoContextual": "Agregar intervalo entre párrafos del mismo estilo", "textNoKeepLines": "No mantener líneas juntas", "textNoKeepNext": "No mantener con el siguiente", "textNot": "No", @@ -149,7 +149,7 @@ "textSubScript": "Subíndice", "textSuperScript": "Superíndice", "textTableChanged": "Cambios en los ajustes de la tabla", - "textTableRowsAdd": "Filas de la tabla añadidas", + "textTableRowsAdd": "Filas de la tabla agregadas", "textTableRowsDel": "Filas de la tabla eliminadas", "textTabs": "Cambiar tabulaciones", "textTrackChanges": "Seguimiento de cambios", @@ -169,8 +169,8 @@ }, "ContextMenu": { "errorCopyCutPaste": "Las acciones de copiar, cortar y pegar utilizando el menú contextual se realizarán sólo dentro del archivo actual.", - "menuAddComment": "Añadir comentario", - "menuAddLink": "Añadir enlace ", + "menuAddComment": "Agregar comentario", + "menuAddLink": "Agregar enlace ", "menuCancel": "Cancelar", "menuContinueNumbering": "Continuar numeración", "menuDelete": "Eliminar", @@ -198,9 +198,9 @@ "Edit": { "notcriticalErrorTitle": "Advertencia", "textActualSize": "Tamaño actual", - "textAddCustomColor": "Añadir color personalizado", + "textAddCustomColor": "Agregar color personalizado", "textAdditional": "Adicional", - "textAdditionalFormatting": "Formateo adicional", + "textAdditionalFormatting": "Formato adicional", "textAddress": "Dirección", "textAdvanced": "Avanzado", "textAdvancedSettings": "Ajustes avanzados", diff --git a/apps/documenteditor/mobile/locale/ja.json b/apps/documenteditor/mobile/locale/ja.json index d139f8b0d..8201c7ccf 100644 --- a/apps/documenteditor/mobile/locale/ja.json +++ b/apps/documenteditor/mobile/locale/ja.json @@ -537,7 +537,7 @@ "textDocumentTitle": "文書名", "textDone": "完了", "textDownload": "ダウンロード", - "textDownloadAs": "としてダウンロード", + "textDownloadAs": "名前を付けてダウンロード", "textDownloadRtf": "この形式で保存する続けば、フォーマットするの一部が失われる可能性があります。続けてもよろしいですか?", "textDownloadTxt": "この形式で保存する続けば、テクスト除いて全てが失います。続けてもよろしいですか?", "textEnableAll": "全てを有効にする", diff --git a/apps/documenteditor/mobile/locale/tr.json b/apps/documenteditor/mobile/locale/tr.json index 4bb1435bf..95e2e661c 100644 --- a/apps/documenteditor/mobile/locale/tr.json +++ b/apps/documenteditor/mobile/locale/tr.json @@ -41,6 +41,7 @@ "textLocation": "Konum", "textNextPage": "Sonraki Sayfa", "textOddPage": "Tek Sayfa", + "textOk": "Tamam", "textOther": "Diğer", "textPageBreak": "Sayfa Sonu", "textPageNumber": "Sayfa Numarası", @@ -56,8 +57,7 @@ "textStartAt": "Başlangıç", "textTable": "Tablo", "textTableSize": "Tablo Boyutu", - "txtNotUrl": "Bu alan \"http://www.example.com\" formatında bir URL olmak zorundadır", - "textOk": "Tamam" + "txtNotUrl": "Bu alan \"http://www.example.com\" formatında bir URL olmak zorundadır" }, "Common": { "Collaboration": { @@ -269,6 +269,7 @@ "textNoStyles": "Bu tip çizelge için stil yok!", "textNotUrl": "Bu alan \"http://www.example.com\" formatında bir URL olmak zorundadır", "textNumbers": "Sayılar", + "textOk": "Tamam", "textOpacity": "Opaklık", "textOptions": "Seçenekler", "textOrphanControl": "Tek satır denetimi", @@ -323,7 +324,6 @@ "textMay": "May", "textMo": "Mo", "textNovember": "November", - "textOk": "Tamam", "textOctober": "October", "textSa": "Sa", "textSeptember": "September", @@ -334,7 +334,7 @@ }, "Error": { "convertationTimeoutText": "Değişim süresi aşıldı.", - "criticalErrorExtText": "Belge listesine geri dönmek için 'OK'a basın.", + "criticalErrorExtText": "Belge listesine geri dönmek için 'Tamam'a basın.", "criticalErrorTitle": "Hata", "downloadErrorText": "İndirme başarısız oldu.", "errorAccessDeny": "Haklarınız olmayan bir işlemi gerçekleştirmeye çalışıyorsunuz.
Lütfen yöneticinizle iletişime geçin.", diff --git a/apps/documenteditor/mobile/locale/uk.json b/apps/documenteditor/mobile/locale/uk.json index 48a560ac7..e20475d42 100644 --- a/apps/documenteditor/mobile/locale/uk.json +++ b/apps/documenteditor/mobile/locale/uk.json @@ -5,10 +5,11 @@ "textBack": "Назад", "textEmail": "Email", "textPoweredBy": "Розроблено", - "textTel": "Tel", - "textVersion": "Version" + "textTel": "Телефон", + "textVersion": "Версія" }, "Add": { + "notcriticalErrorTitle": "Увага", "textAddLink": "Додати посилання", "textAddress": "Адреса", "textBack": "Назад", @@ -24,6 +25,7 @@ "textContinuousPage": "На поточній сторінці", "textCurrentPosition": "Поточна позиція", "textDisplay": "Показ", + "textEmptyImgUrl": "Потрібно вказати URL-адресу зображення.", "textEvenPage": "З парної сторінки", "textFootnote": "Виноска", "textFormat": "Формат", @@ -51,16 +53,15 @@ "textRows": "Рядки", "textScreenTip": "Підказка", "textSectionBreak": "Розрив розділу", - "notcriticalErrorTitle": "Warning", - "textEmptyImgUrl": "You need to specify image URL.", - "textShape": "Shape", - "textStartAt": "Start At", - "textTable": "Table", - "textTableSize": "Table Size", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + "textShape": "Фігура", + "textStartAt": "Почати з", + "textTable": "Таблиця", + "textTableSize": "Розмір таблиці", + "txtNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com\"" }, "Common": { "Collaboration": { + "notcriticalErrorTitle": "Увага", "textAccept": "Прийняти", "textAcceptAllChanges": "Прийняти всі зміни", "textAddComment": "Додати коментар", @@ -92,6 +93,7 @@ "textEdit": "Редагувати", "textEditComment": "Редагувати коментар", "textEditReply": "Редагувати відповідь", + "textEditUser": "Користувачі, що редагують документ:", "textEquation": "Рівняння", "textExact": "точно", "textFinal": "Змінений документ", @@ -113,6 +115,8 @@ "textMessageDeleteReply": "Ви дійсно хочете видалити цю відповідь?", "textMultiple": "множник", "textNoBreakBefore": "Не з нової сторінки", + "textNoChanges": "Змін немає.", + "textNoComments": "Цей документ не містить коментарів", "textNoContextual": "Додавати інтервал між абзацами одного стилю", "textNoKeepLines": "Дозволити розриви абзацу", "textNoKeepNext": "Дозволити розрив з наступного", @@ -135,36 +139,32 @@ "textReview": "Рецензування", "textReviewChange": "Перегляд змін", "textRight": "По правому краю", + "textShape": "Фігура", "textShd": "Колір фону", + "textSmallCaps": "Зменшені великі", + "textSpacing": "Інтервал", + "textSpacingAfter": "Інтервал після абзацу", + "textSpacingBefore": "Інтервал перед абзацом", + "textStrikeout": "Закреслення", + "textSubScript": "Підрядні", + "textSuperScript": "Надрядкові", + "textTableChanged": "Змінено налаштування таблиці", + "textTableRowsAdd": "Додані рядки таблиці", + "textTableRowsDel": "Видалені рядки таблиці", "textTabs": "Зміна табуляції", - "notcriticalErrorTitle": "Warning", - "textEditUser": "Users who are editing the file:", - "textNoChanges": "There are no changes.", - "textNoComments": "This document doesn't contain comments", - "textShape": "Shape", - "textSmallCaps": "Small caps", - "textSpacing": "Spacing", - "textSpacingAfter": "Spacing after", - "textSpacingBefore": "Spacing before", - "textStrikeout": "Strikeout", - "textSubScript": "Subscript", - "textSuperScript": "Superscript", - "textTableChanged": "Table Settings Changed", - "textTableRowsAdd": "Table Rows Added", - "textTableRowsDel": "Table Rows Deleted", - "textTrackChanges": "Track Changes", - "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUnderline": "Underline", - "textUsers": "Users", - "textWidow": "Widow control" + "textTrackChanges": "Відстежування змін", + "textTryUndoRedo": "Функції скасування і повтору дій відключені для режиму швидкого спільного редагування.", + "textUnderline": "Підкреслений", + "textUsers": "Користувачі", + "textWidow": "Заборона висячих рядків" }, "HighlightColorPalette": { "textNoFill": "Без заливки" }, "ThemeColorPalette": { "textCustomColors": "Користувальницькі кольори", - "textStandartColors": "Standard Colors", - "textThemeColors": "Theme Colors" + "textStandartColors": "Стандартні кольори", + "textThemeColors": "Кольори теми" } }, "ContextMenu": { @@ -182,20 +182,21 @@ "menuOpenLink": "Відкрити посилання", "menuReview": "Рецензування", "menuReviewChange": "Перегляд змін", + "menuSeparateList": "Розділити список", + "menuSplit": "Розділити", + "menuStartNewList": "Почати новий список", + "menuStartNumberingFrom": "Встановити початкове значення", + "menuViewComment": "Переглянути коментар", "textCancel": "Скасувати", "textColumns": "Стовпчики", "textCopyCutPasteActions": "Дії копіювання, вирізки та вставки", "textDoNotShowAgain": "Більше не показувати", "textNumberingValue": "Початкове значення", "textOk": "Ок", - "textRows": "Рядки", - "menuSeparateList": "Separate list", - "menuSplit": "Split", - "menuStartNewList": "Start new list", - "menuStartNumberingFrom": "Set numbering value", - "menuViewComment": "View Comment" + "textRows": "Рядки" }, "Edit": { + "notcriticalErrorTitle": "Увага", "textActualSize": "Реальний розмір", "textAddCustomColor": "Додати власний колір", "textAdditional": "Додатково", @@ -237,6 +238,7 @@ "textEditLink": "Редагувати посилання", "textEffects": "Ефекти", "textEmpty": "Пуста", + "textEmptyImgUrl": "Потрібно вказати URL-адресу зображення.", "textFebruary": "Лютий", "textFill": "Заливка", "textFirstColumn": "Перший стовпчик", @@ -274,6 +276,7 @@ "textMoveWithText": "Перемістити з текстом", "textNone": "Немає", "textNoStyles": "Для цього типу діаграм немає стилів.", + "textNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com\"", "textNovember": "Листопад", "textNumbers": "Нумерація", "textOctober": "Жовтень", @@ -300,43 +303,41 @@ "textResizeToFitContent": "За розміром вмісту", "textSa": "Сб", "textScreenTip": "Підказка", - "notcriticalErrorTitle": "Warning", - "textEmptyImgUrl": "You need to specify image URL.", - "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textSelectObjectToEdit": "Select object to edit", - "textSendToBackground": "Send to Background", - "textSeptember": "September", - "textSettings": "Settings", - "textShape": "Shape", - "textSize": "Size", - "textSmallCaps": "Small Caps", - "textSpaceBetweenParagraphs": "Space Between Paragraphs", - "textSquare": "Square", - "textStartAt": "Start at", - "textStrikethrough": "Strikethrough", - "textStyle": "Style", - "textStyleOptions": "Style Options", - "textSu": "Su", - "textSubscript": "Subscript", - "textSuperscript": "Superscript", - "textTable": "Table", - "textTableOptions": "Table Options", - "textText": "Text", - "textTh": "Th", - "textThrough": "Through", - "textTight": "Tight", - "textTopAndBottom": "Top and Bottom", - "textTotalRow": "Total Row", - "textTu": "Tu", - "textType": "Type", - "textWe": "We", - "textWrap": "Wrap" + "textSelectObjectToEdit": "Виберіть об'єкт для редагування", + "textSendToBackground": "Перенести на задній план", + "textSeptember": "Вересень", + "textSettings": "Налаштування", + "textShape": "Фігура", + "textSize": "Розмір", + "textSmallCaps": "Зменшені великі", + "textSpaceBetweenParagraphs": "Інтервал між абзацами", + "textSquare": "Навколо рамки", + "textStartAt": "Почати з", + "textStrikethrough": "Закреслення", + "textStyle": "Стиль", + "textStyleOptions": "Налаштування стилю", + "textSu": "Нд", + "textSubscript": "Підрядні", + "textSuperscript": "Надрядкові", + "textTable": "Таблиця", + "textTableOptions": "Налаштування таблиці", + "textText": "Текст", + "textTh": "Чт", + "textThrough": "Наскрізне", + "textTight": "По контуру", + "textTopAndBottom": "Зверху та знизу", + "textTotalRow": "Рядок підсумків", + "textTu": "Вт", + "textType": "Тип", + "textWe": "Ср", + "textWrap": "Стиль обтікання" }, "Error": { "convertationTimeoutText": "Перевищено час очікування конверсії.", "criticalErrorExtText": "Натисніть 'OK', щоб повернутися до списку документів.", "criticalErrorTitle": "Помилка", "downloadErrorText": "Завантаження не вдалося", + "errorAccessDeny": "Ви намагаєтеся виконати дію, на яку у вас немає прав.
Будь ласка, зверніться до адміністратора.", "errorBadImageUrl": "URL-адреса зображення невірна", "errorConnectToServer": "Неможливо зберегти документ. Перевірте параметри підключення або зверніться до адміністратора.
Коли ви натиснете на кнопку 'OK', вам буде запропоновано завантажити документ.", "errorDatabaseConnection": "Зовнішня помилка.
Помилка підключення до бази даних. Будь ласка, зв'яжіться зі службою підтримки.", @@ -344,33 +345,32 @@ "errorDataRange": "Неправильний діапазон даних.", "errorDefaultMessage": "Код помилки: %1 ", "errorEditingDownloadas": "Під час роботи з документом сталася помилка.
Звантажте документ, щоб зберегти резервну копію файлу локально.", + "errorFilePassProtect": "Файл захищений паролем і не може бути відкритим.", + "errorFileSizeExceed": "Розмір файлу перевищує обмеження для вашого сервера.
Будь ласка, зверніться до адміністратора.", + "errorKeyEncrypt": "Невідомий дескриптор ключа", "errorKeyExpire": "Термін дії дескриптора ключа минув", "errorLoadingFont": "Шрифти не завантажені.
Будь ласка, зверніться до адміністратора Сервера документів.", "errorMailMergeLoadFile": "Завантаження не вдалося", "errorMailMergeSaveFile": "Не вдалося виконати злиття.", + "errorSessionAbsolute": "Час сеансу редагування документа минув. Будь ласка, оновіть сторінку.", + "errorSessionIdle": "Документ тривалий час не редагувався. Будь ласка, оновіть сторінку.", + "errorSessionToken": "Підключення до сервера було перервано. Будь ласка, оновіть сторінку.", "errorStockChart": "Неправильний порядок рядків. Щоб створити біржову діаграму, розташуйте дані на аркуші в наступному порядку: ціна відкриття, максимальна ціна, мінімальна ціна, ціна закриття.", "errorUpdateVersionOnDisconnect": "Підключення до Інтернету було відновлено, а версія файлу змінена.
Перш ніж продовжувати роботу, потрібно завантажити файл або скопіювати його вміст, щоб переконатися, що нічого не втрачено, а потім перезавантажити цю сторінку.", + "errorUserDrop": "На цю мить файл недоступний.", + "errorUsersExceed": "Перевищено кількість користувачів, дозволених тарифним планом", "errorViewerDisconnect": "Підключення перервано. Ви можете переглядати документ, але не зможете завантажити або надрукувати його до відновлення підключення та оновлення сторінки.", + "notcriticalErrorTitle": "Увага", "openErrorText": "Під час відкриття файлу сталася помилка", "saveErrorText": "Під час збереження файлу сталася помилка", + "scriptLoadError": "Занадто повільне підключення, деякі компоненти не вдалося завантажити. Будь ласка, оновіть сторінку.", + "splitDividerErrorText": "Кількість рядків має бути дільником для %1", + "splitMaxColsErrorText": "Кількість стовпців повинна бути меншою за% 1", + "splitMaxRowsErrorText": "Кількість рядків повинна бути менше %1", + "unknownErrorText": "Невідома помилка.", + "uploadImageExtMessage": "Невідомий формат зображення.", "uploadImageFileCountMessage": "Жодного зображення не завантажено.", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorFilePassProtect": "The file is password protected and could not be opened.", - "errorFileSizeExceed": "The file size exceeds your server limit.
Please, contact your admin.", - "errorKeyEncrypt": "Unknown key descriptor", - "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.", - "errorUserDrop": "The file can't be accessed right now.", - "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "notcriticalErrorTitle": "Warning", - "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", - "splitDividerErrorText": "The number of rows must be a divisor of %1", - "splitMaxColsErrorText": "The number of columns must be less than %1", - "splitMaxRowsErrorText": "The number of rows must be less than %1", - "unknownErrorText": "Unknown error.", - "uploadImageExtMessage": "Unknown image format.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + "uploadImageSizeMessage": "Занадто велике зображення. Максимальний розмір – 25 MB." }, "LongActions": { "applyChangesTextText": "Завантаження даних...", @@ -399,17 +399,23 @@ "savePreparingTitle": "Підготовка до збереження. Будь ласка, зачекайте...", "saveTextText": "Збереження документа...", "saveTitleText": "Збереження документа", + "sendMergeText": "Надсилання результатів злиття...", + "sendMergeTitle": "Надсилання результатів злиття", "textLoadingDocument": "Завантаження документа", - "waitText": "Будь ласка, зачекайте...", - "sendMergeText": "Sending Merge...", - "sendMergeTitle": "Sending Merge", - "txtEditingMode": "Set editing mode...", - "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image" + "txtEditingMode": "Встановити режим редагування ...", + "uploadImageTextText": "Завантаження зображення...", + "uploadImageTitleText": "Завантаження зображення", + "waitText": "Будь ласка, зачекайте..." }, "Main": { "criticalErrorTitle": "Помилка", + "errorAccessDeny": "Ви намагаєтеся виконати дію, на яку у вас немає прав.
Будь ласка, зверніться до адміністратора.", + "errorOpensource": "Використовуючи безплатну версію Community, ви можете відкривати документи лише на перегляд. Для доступу до мобільних вебредакторів потрібна комерційна ліцензія.", "errorProcessSaveResult": "Помилка збереження", + "errorServerVersion": "Версія редактора була оновлена. Сторінка буде перезавантажена, щоб застосувати зміни.", + "errorUpdateVersion": "Версія файлу була змінена. Сторінка буде перезавантажена.", + "leavePageText": "У документі є незбережені зміни. Натисніть 'Залишитись на сторінці', щоб дочекатися автозбереження. Натисніть 'Піти зі сторінки', щоб скинути всі незбережені зміни.", + "notcriticalErrorTitle": "Увага", "SDK": { " -Section ": "-Розділ", "above": "вище", @@ -447,6 +453,7 @@ "Missing Argument": "Відсутній аргумент", "Missing Operator": "Відсутній оператор", "No Spacing": "Без інтервалу", + "No table of contents entries found": "У документі відсутні заголовки. Застосуйте стиль заголовків до тексту, щоби він з'явився у змісті.", "No table of figures entries found": "Елементи списку ілюстрацій не знайдені", "None": "Немає", "Normal": "Звичайний", @@ -454,62 +461,56 @@ "Odd Page ": "З непарної сторінки", "Quote": "Цитата", "Same as Previous": "Як в попередньому", - "No table of contents entries found": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents.", - "Series": "Series", - "Subtitle": "Subtitle", - "Syntax Error": "Syntax Error", - "Table Index Cannot be Zero": "Table Index Cannot be Zero", - "Table of Contents": "Table of Contents", - "table of figures": "Table of figures", - "The Formula Not In Table": "The Formula Not In Table", - "Title": "Title", - "TOC Heading": "TOC Heading", - "Type equation here": "Type equation here", - "Undefined Bookmark": "Undefined Bookmark", - "Unexpected End of Formula": "Unexpected End of Formula", - "X Axis": "X Axis XAS", - "Y Axis": "Y Axis", - "Your text here": "Your text here", - "Zero Divide": "Zero Divide" + "Series": "Серії", + "Subtitle": "Підзаголовок", + "Syntax Error": "Синтаксична помилка", + "Table Index Cannot be Zero": "Індекс таблиці не може бути нульовим", + "Table of Contents": "Зміст", + "table of figures": "Список ілюстрацій", + "The Formula Not In Table": "Формула не в таблиці", + "Title": "Назва", + "TOC Heading": "Заголовок змісту", + "Type equation here": "Введіть тут рівняння", + "Undefined Bookmark": "Закладка не визначена", + "Unexpected End of Formula": "Непередбачене закінчення формули", + "X Axis": "Вісь X (XAS)", + "Y Axis": "Вісь Y", + "Your text here": "Введіть ваш текст", + "Zero Divide": "Ділення на нуль" }, "textAnonymous": "Анонімний користувач", + "textBuyNow": "Перейти на сайт", "textClose": "Закрити", "textContactUs": "Відділ продажів", + "textCustomLoader": "На жаль, у вас немає права змінювати екран, який відображається під час завантаження. Зверніться до нашого відділу продажів, щоб зробити запит.", "textGuest": "Гість", + "textHasMacros": "Файл містить автоматичні макроси.
Запустити макроси?", "textNo": "Ні", "textNoLicenseTitle": "Ліцензійне обмеження", + "textNoTextFound": "Текст не знайдено", "textPaidFeature": "Платна функція", "textRemember": "Запам'ятати мій вибір", + "textReplaceSkipped": "Заміна виконана. Пропущено {0} випадків.", + "textReplaceSuccess": "Пошук виконано. Змін зроблено: {0}", + "textYes": "Так", "titleLicenseExp": "Термін дії ліцензії закінчився", "titleServerVersion": "Редактор оновлено", + "titleUpdateVersion": "Версія змінилась", + "warnLicenseExceeded": "Ви досягли ліміту на одночасне підключення до редакторів %1. Цей документ буде відкритий лише для перегляду. Зв'яжіться з адміністратором, щоб дізнатися більше.", + "warnLicenseExp": "Вийшов термін дії ліцензії. Оновіть ліцензію та оновіть сторінку.", "warnLicenseLimitedNoAccess": "Вийшов термін дії ліцензії. Немає доступу до функцій редагування документів. Будь ласка, зверніться до адміністратора.", "warnLicenseLimitedRenewed": "Потрібно оновити ліцензію. У вас обмежений доступ до функцій редагування документів.
Будь ласка, зверніться до адміністратора, щоб отримати повний доступ", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your administrator.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "notcriticalErrorTitle": "Warning", - "textBuyNow": "Visit website", - "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", - "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", - "textYes": "Yes", - "titleUpdateVersion": "Version changed", - "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", - "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", - "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", - "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", - "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", - "warnProcessRightsChange": "You don't have permission to edit this file." + "warnLicenseUsersExceeded": "Ви досягли ліміту на кількість користувачів редакторів %1.
Зв'яжіться з адміністратором, щоб дізнатися більше.", + "warnNoLicense": "Ви досягли ліміту на одночасне підключення до редакторів %1. Цей документ буде відкрито для перегляду. Напишіть у відділ продажу %1, щоб обговорити індивідуальні умови оновлення.", + "warnNoLicenseUsers": "Ви досягли ліміту на одночасне підключення до редакторів %1.
Напишіть у відділ продаж %1, для обговорення індивідуальних умов ліцензування.", + "warnProcessRightsChange": "У вас немає прав на редагування цього файлу." }, "Settings": { "advDRMOptions": "Захищений файл", "advDRMPassword": "Пароль", "advTxtOptions": "Виберіть параметри текстового файлу", "closeButtonText": "Закрити файл", + "notcriticalErrorTitle": "Увага", "textAbout": "Про програму", "textApplication": "Додаток", "textApplicationSettings": "Налаштування додатка", @@ -558,8 +559,10 @@ "textLocation": "Розташування", "textMacrosSettings": "Налаштування макросів", "textMargins": "Поля", + "textMarginsH": "Верхні та нижні поля занадто високі для заданої висоти сторінки", "textMarginsW": "Ліве та праве поля занадто широкі для заданої ширини сторінки", "textNoCharacters": "Недруковані символи", + "textNoTextFound": "Текст не знайдено", "textOk": "Ок", "textOpenFile": "Введіть пароль для відкриття файлу", "textOrientation": "Орієнтація", @@ -575,6 +578,18 @@ "textResolvedComments": "Вирішені коментарі", "textRight": "Праворуч", "textSearch": "Пошук", + "textSettings": "Налаштування", + "textShowNotification": "Показувати сповіщення", + "textSpaces": "Пробіли", + "textSpellcheck": "Перевірка орфографії", + "textStatistic": "Статистика", + "textSubject": "Тема", + "textSymbols": "Символи", + "textTitle": "Назва", + "textTop": "Верхнє", + "textUnitOfMeasurement": "Одиниця виміру", + "textUploaded": "Завантажено", + "textWords": "Слова", "txtDownloadTxt": "Завантажити TXT", "txtIncorrectPwd": "Невірний пароль", "txtOk": "Ок", @@ -587,7 +602,12 @@ "txtScheme14": "Еркер", "txtScheme15": "Початкова", "txtScheme16": "Паперова", + "txtScheme17": "Сонцестояння", + "txtScheme18": "Технічна", + "txtScheme19": "Трек", "txtScheme2": "Відтінки сірого", + "txtScheme20": "Міська", + "txtScheme21": "Яскрава", "txtScheme22": "Нова офісна", "txtScheme3": "Верх", "txtScheme4": "Аспект", @@ -595,32 +615,12 @@ "txtScheme6": "Відкрита", "txtScheme7": "Власний", "txtScheme8": "Потік", - "txtScheme9": "Ливарна", - "notcriticalErrorTitle": "Warning", - "textMarginsH": "Top and bottom margins are too high for a given page height", - "textNoTextFound": "Text not found", - "textSettings": "Settings", - "textShowNotification": "Show Notification", - "textSpaces": "Spaces", - "textSpellcheck": "Spell Checking", - "textStatistic": "Statistic", - "textSubject": "Subject", - "textSymbols": "Symbols", - "textTitle": "Title", - "textTop": "Top", - "textUnitOfMeasurement": "Unit Of Measurement", - "textUploaded": "Uploaded", - "textWords": "Words", - "txtScheme17": "Solstice", - "txtScheme18": "Technic", - "txtScheme19": "Trek", - "txtScheme20": "Urban", - "txtScheme21": "Verve" + "txtScheme9": "Ливарна" }, "Toolbar": { + "dlgLeaveMsgText": "У документі є незбережені зміни. Натисніть 'Залишитись на сторінці', щоб дочекатися автозбереження. Натисніть 'Піти зі сторінки', щоб скинути всі незбережені зміни.", + "dlgLeaveTitleText": "Ви виходите з програми", "leaveButtonText": "Залишити цю сторінку", - "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "stayButtonText": "Stay on this page" + "stayButtonText": "Залишитися на сторінці" } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/de.json b/apps/presentationeditor/mobile/locale/de.json index df6fa8227..c87eebb48 100644 --- a/apps/presentationeditor/mobile/locale/de.json +++ b/apps/presentationeditor/mobile/locale/de.json @@ -33,13 +33,13 @@ "textTryUndoRedo": "Die Optionen Rückgängig machen/Wiederholen sind für den Schnellmodus deaktiviert.", "textUsers": "Benutzer" }, + "HighlightColorPalette": { + "textNoFill": "Keine Füllung" + }, "ThemeColorPalette": { "textCustomColors": "Benutzerdefinierte Farben", "textStandartColors": "Standardfarben", "textThemeColors": "Farben des Themas" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -107,9 +107,12 @@ "textHasMacros": "Die Datei beinhaltet automatische Makros.
Möchten Sie Makros ausführen?", "textNo": "Nein", "textNoLicenseTitle": "Lizenzlimit erreicht", + "textNoTextFound": "Der Text wurde nicht gefunden.", "textOpenFile": "Kennwort zum Öffnen der Datei eingeben", "textPaidFeature": "Kostenpflichtige Funktion", "textRemember": "Auswahl speichern", + "textReplaceSkipped": "Der Ersatzvorgang wurde durchgeführt. {0} Vorkommen wurden ausgelassen.", + "textReplaceSuccess": "Der Suchvorgang wurde durchgeführt. Vorkommen wurden ersetzt:{0}", "textYes": "Ja", "titleLicenseExp": "Lizenz ist abgelaufen", "titleServerVersion": "Editor wurde aktualisiert", @@ -123,10 +126,7 @@ "warnLicenseUsersExceeded": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.", "warnNoLicense": "Sie haben die maximale Anzahl von gleichzeitigen Verbindungen in %1-Editoren erreicht. Die Bearbeitung ist jetzt in diesem Dokument nicht verfügbar. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", "warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", - "warnProcessRightsChange": "Sie können diese Datei nicht bearbeiten.", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "Sie können diese Datei nicht bearbeiten." } }, "Error": { @@ -228,6 +228,7 @@ "textLinkTo": "Verknüpfen mit", "textLinkType": "Linktyp", "textNextSlide": "Nächste Folie", + "textOk": "OK", "textOther": "Sonstiges", "textPictureFromLibrary": "Bild aus dem Verzeichnis", "textPictureFromURL": "Bild aus URL", @@ -240,8 +241,7 @@ "textSlideNumber": "Foliennummer", "textTable": "Tabelle", "textTableSize": "Tabellengröße", - "txtNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.", - "textOk": "Ok" + "txtNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein." }, "Edit": { "notcriticalErrorTitle": "Warnung", @@ -261,6 +261,7 @@ "textAllCaps": "Alle Großbuchstaben", "textApplyAll": "Auf alle Folien anwenden", "textAuto": "auto", + "textAutomatic": "Automatisch", "textBack": "Zurück", "textBandedColumn": "Gebänderte Spalten", "textBandedRow": "Gebänderte Zeilen", @@ -285,6 +286,7 @@ "textDefault": "Ausgewählter Text", "textDelay": "Verzögern", "textDeleteSlide": "Folie löschen", + "textDesign": "Design", "textDisplay": "Anzeigen", "textDistanceFromText": "Abstand vom Text", "textDistributeHorizontally": "Horizontal verteilen", @@ -336,6 +338,7 @@ "textNoTextFound": "Der Text wurde nicht gefunden", "textNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.", "textNumbers": "Nummern", + "textOk": "OK", "textOpacity": "Undurchsichtigkeit", "textOptions": "Optionen", "textPictureFromLibrary": "Bild aus dem Verzeichnis", @@ -390,10 +393,7 @@ "textZoom": "Zoom", "textZoomIn": "Vergrößern", "textZoomOut": "Verkleinern", - "textZoomRotate": "Vergrößern und drehen", - "textAutomatic": "Automatic", - "textDesign": "Design", - "textOk": "Ok" + "textZoomRotate": "Vergrößern und drehen" }, "Settings": { "mniSlideStandard": "Standard (4:3)", @@ -410,6 +410,7 @@ "textColorSchemes": "Farbschemata", "textComment": "Kommentar", "textCreated": "Erstellt", + "textDarkTheme": "Dunkelmodus", "textDisableAll": "Alle deaktivieren", "textDisableAllMacrosWithNotification": "Alle Makros mit Benachrichtigung deaktivieren", "textDisableAllMacrosWithoutNotification": "Alle Makros ohne Benachrichtigung deaktivieren", @@ -472,8 +473,7 @@ "txtScheme6": "Konzertsaal", "txtScheme7": "Eigenkapital", "txtScheme8": "Fluss", - "txtScheme9": "Gießerei", - "textDarkTheme": "Dark Theme" + "txtScheme9": "Gießerei" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/es.json b/apps/presentationeditor/mobile/locale/es.json index 191f944bf..3a83c0c19 100644 --- a/apps/presentationeditor/mobile/locale/es.json +++ b/apps/presentationeditor/mobile/locale/es.json @@ -11,8 +11,8 @@ "Common": { "Collaboration": { "notcriticalErrorTitle": "Advertencia", - "textAddComment": "Añadir comentario", - "textAddReply": "Añadir respuesta", + "textAddComment": "Agregar comentario", + "textAddReply": "Agregar respuesta", "textBack": "Atrás", "textCancel": "Cancelar", "textCollaboration": "Colaboración", @@ -44,8 +44,8 @@ }, "ContextMenu": { "errorCopyCutPaste": "Las acciones de copiar, cortar y pegar utilizando el menú contextual se realizarán sólo dentro del archivo actual.", - "menuAddComment": "Añadir comentario", - "menuAddLink": "Añadir enlace ", + "menuAddComment": "Agregar comentario", + "menuAddLink": "Agregar enlace ", "menuCancel": "Cancelar", "menuDelete": "Eliminar", "menuDeleteTable": "Eliminar tabla", @@ -75,8 +75,8 @@ "notcriticalErrorTitle": "Advertencia", "SDK": { "Chart": "Gráfico", - "Click to add first slide": "Haga clic para añadir la primera diapositiva", - "Click to add notes": "Haga clic para añadir notas", + "Click to add first slide": "Haga clic para agregar la primera diapositiva", + "Click to add notes": "Haga clic para agregar notas", "ClipArt": "Imagen prediseñada", "Date and time": "Fecha y hora", "Diagram": "Diagrama", @@ -207,7 +207,7 @@ "View": { "Add": { "notcriticalErrorTitle": "Advertencia", - "textAddLink": "Añadir enlace ", + "textAddLink": "Agregar enlace ", "textAddress": "Dirección", "textBack": "Atrás", "textCancel": "Cancelar", @@ -246,9 +246,9 @@ "Edit": { "notcriticalErrorTitle": "Advertencia", "textActualSize": "Tamaño actual", - "textAddCustomColor": "Añadir color personalizado", + "textAddCustomColor": "Agregar color personalizado", "textAdditional": "Adicional", - "textAdditionalFormatting": "Formateo adicional", + "textAdditionalFormatting": "Formato adicional", "textAddress": "Dirección", "textAfter": "Después", "textAlign": "Alinear", diff --git a/apps/presentationeditor/mobile/locale/hu.json b/apps/presentationeditor/mobile/locale/hu.json index f6d9104fc..412274beb 100644 --- a/apps/presentationeditor/mobile/locale/hu.json +++ b/apps/presentationeditor/mobile/locale/hu.json @@ -33,13 +33,13 @@ "textTryUndoRedo": "A Visszavonás/Újra funkciók le vannak tiltva a Gyors társszerkesztés módban.", "textUsers": "Felhasználók" }, + "HighlightColorPalette": { + "textNoFill": "Nincs kitöltés" + }, "ThemeColorPalette": { "textCustomColors": "Egyéni színek", "textStandartColors": "Alapértelmezett színek", "textThemeColors": "Téma színek" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -107,9 +107,12 @@ "textHasMacros": "A fájl automatikus makrókat tartalmaz.
Szeretne makrókat futtatni?", "textNo": "Nem", "textNoLicenseTitle": "Elérte a licenckorlátot", + "textNoTextFound": "A szöveg nem található", "textOpenFile": "Írja be a megnyitáshoz szükséges jelszót", "textPaidFeature": "Fizetett funkció", "textRemember": "Választás megjegyzése", + "textReplaceSkipped": "A csere megtörtént. {0} események kihagyásra kerültek.", + "textReplaceSuccess": "A keresés megtörtént. Helyettesített események: {0}", "textYes": "Igen", "titleLicenseExp": "Lejárt licenc", "titleServerVersion": "Szerkesztő frissítve", @@ -123,10 +126,7 @@ "warnLicenseUsersExceeded": "Elérte a(z) %1 szerkesztőhöz tartozó felhasználói korlátját. További információért forduljon rendszergazdájához.", "warnNoLicense": "Elérte a(z) %1 szerkesztővel való egyidejű kapcsolódási korlátot. Ez a dokumentum csak megtekintésre nyílik meg. Lépjen kapcsolatba a(z) %1 értékesítési csapattal a személyes frissítés feltételekért.", "warnNoLicenseUsers": "Elérte a(z) %1 szerkesztőhöz tartozó felhasználói korlátját. Vegye fel a kapcsolatot a(z) %1 értékesítési csapattal a személyes frissítési feltételekért.", - "warnProcessRightsChange": "Nincs engedélye a fájl szerkesztésére.", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "Nincs engedélye a fájl szerkesztésére." } }, "Error": { @@ -228,6 +228,7 @@ "textLinkTo": "Hivatkozás erre", "textLinkType": "Hivatkozás típusa", "textNextSlide": "Következő dia", + "textOk": "OK", "textOther": "Egyéb", "textPictureFromLibrary": "Kép a könyvtárból", "textPictureFromURL": "Kép URL-en keresztül", @@ -240,8 +241,7 @@ "textSlideNumber": "Dia száma", "textTable": "Táblázat", "textTableSize": "Táblázat mérete", - "txtNotUrl": "Ennek a mezőnek URL formátumúnak kell lennie, pl.: „http://www.pelda.hu”", - "textOk": "Ok" + "txtNotUrl": "Ennek a mezőnek URL formátumúnak kell lennie, pl.: „http://www.pelda.hu”" }, "Edit": { "notcriticalErrorTitle": "Figyelmeztetés", @@ -261,6 +261,7 @@ "textAllCaps": "Csupa nagybetűs", "textApplyAll": "Minden diára alkalmaz", "textAuto": "Automatikus", + "textAutomatic": "Automatikus", "textBack": "Vissza", "textBandedColumn": "Sávos oszlop", "textBandedRow": "Sávos sor", @@ -285,6 +286,7 @@ "textDefault": "Kiválasztott szöveg", "textDelay": "Késleltetés", "textDeleteSlide": "Dia törlése", + "textDesign": "Dizájn", "textDisplay": "Megjelenít", "textDistanceFromText": "Távolság a szövegtől", "textDistributeHorizontally": "Eloszlás vízszintesen", @@ -336,6 +338,7 @@ "textNoTextFound": "A szöveg nem található", "textNotUrl": "Ennek a mezőnek URL formátumúnak kell lennie, pl.: „http://www.pelda.hu”", "textNumbers": "Számok", + "textOk": "OK", "textOpacity": "Áttetszőség", "textOptions": "Beállítások", "textPictureFromLibrary": "Kép a könyvtárból", @@ -390,10 +393,7 @@ "textZoom": "Zoom", "textZoomIn": "Nagyítás", "textZoomOut": "Kicsinyítés", - "textZoomRotate": "Zoom és elforgatás", - "textAutomatic": "Automatic", - "textDesign": "Design", - "textOk": "Ok" + "textZoomRotate": "Zoom és elforgatás" }, "Settings": { "mniSlideStandard": "Sztenderd (4:3)", @@ -410,6 +410,7 @@ "textColorSchemes": "Szín sémák", "textComment": "Megjegyzés", "textCreated": "Létrehozva", + "textDarkTheme": "Sötét téma", "textDisableAll": "Összes letiltása", "textDisableAllMacrosWithNotification": "Tiltsa le az összes makrót értesítéssel", "textDisableAllMacrosWithoutNotification": "Tiltsa le az összes makrót értesítés nélkül", @@ -472,8 +473,7 @@ "txtScheme6": "Előcsarnok", "txtScheme7": "Saját tőke", "txtScheme8": "Folyam", - "txtScheme9": "Öntöde", - "textDarkTheme": "Dark Theme" + "txtScheme9": "Öntöde" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/ja.json b/apps/presentationeditor/mobile/locale/ja.json index 0d2e68c8c..e603b3f35 100644 --- a/apps/presentationeditor/mobile/locale/ja.json +++ b/apps/presentationeditor/mobile/locale/ja.json @@ -415,7 +415,7 @@ "textDisableAllMacrosWithoutNotification": "警告を表示してないすべてのマクロを無効にする", "textDone": "完了", "textDownload": "ダウンロードする", - "textDownloadAs": "としてダウンロードする", + "textDownloadAs": "名前を付けてダウンロード", "textEmail": "メール:", "textEnableAll": "全てを有効にする", "textEnableAllMacrosWithoutNotification": "警告を表示してないすべてのマクロを有効にする", diff --git a/apps/presentationeditor/mobile/locale/tr.json b/apps/presentationeditor/mobile/locale/tr.json index b00c442b6..ad192a2b1 100644 --- a/apps/presentationeditor/mobile/locale/tr.json +++ b/apps/presentationeditor/mobile/locale/tr.json @@ -131,12 +131,12 @@ }, "Error": { "convertationTimeoutText": "Değişim süresi aşıldı.", - "criticalErrorExtText": "Belge listesine geri dönmek için 'OK'a basın.", + "criticalErrorExtText": "Belge listesine geri dönmek için 'Tamam'a basın.", "criticalErrorTitle": "Hata", "downloadErrorText": "İndirme başarısız oldu.", "errorAccessDeny": "Haklarınız olmayan bir işlemi gerçekleştirmeye çalışıyorsunuz.
Lütfen yöneticinizle iletişime geçin.", "errorBadImageUrl": "Resim URL'si yanlış", - "errorConnectToServer": "Bu doküman kaydedilemiyor. Bağlantı ayarlarınızı kontrol edin veya yöneticinizle iletişime geçin.
'OK' düğmesini tıkladığınızda, belgeyi indirmeniz istenecektir.", + "errorConnectToServer": "Bu doküman kaydedilemiyor. Bağlantı ayarlarınızı kontrol edin veya yöneticinizle iletişime geçin.
'Tamam' düğmesini tıkladığınızda, belgeyi indirmeniz istenecektir.", "errorDatabaseConnection": "Dışsal hata.
Veritabanı bağlantı hatası. Lütfen destek ile iletişime geçin.", "errorDataEncrypted": "Şifreli değişiklikler algılandı, çözülemiyor.", "errorDataRange": "Yanlış veri aralığı.", @@ -228,6 +228,7 @@ "textLinkTo": "Şuna bağlantıla:", "textLinkType": "Link Tipi", "textNextSlide": "Sonraki slayt", + "textOk": "Tamam", "textOther": "Diğer", "textPictureFromLibrary": "Kütüphaneden Resim", "textPictureFromURL": "URL'den resim", @@ -240,8 +241,7 @@ "textSlideNumber": "Slayt numarası", "textTable": "Tablo", "textTableSize": "Tablo Boyutu", - "txtNotUrl": "Bu alan, \"http://www.example.com\" biçiminde bir URL olmalıdır.", - "textOk": "Tamam" + "txtNotUrl": "Bu alan, \"http://www.example.com\" biçiminde bir URL olmalıdır." }, "Edit": { "notcriticalErrorTitle": "Uyarı", @@ -336,6 +336,7 @@ "textNoTextFound": "Metin Bulunamadı", "textNotUrl": "Bu alan, \"http://www.example.com\" biçiminde bir URL olmalıdır.", "textNumbers": "Sayılar", + "textOk": "Tamam", "textOpacity": "Opaklık", "textOptions": "Seçenekler", "textPictureFromLibrary": "Kütüphaneden Resim", @@ -391,7 +392,6 @@ "textZoomRotate": "Büyüt ve Döndür", "textAutomatic": "Automatic", "textDesign": "Design", - "textOk": "Tamam", "textPush": "Push", "textWedge": "Wedge" }, diff --git a/apps/presentationeditor/mobile/locale/uk.json b/apps/presentationeditor/mobile/locale/uk.json index 7c3baf3e3..ee76a9fbc 100644 --- a/apps/presentationeditor/mobile/locale/uk.json +++ b/apps/presentationeditor/mobile/locale/uk.json @@ -1,8 +1,8 @@ { "About": { - "textAbout": "About", - "textAddress": "Address", - "textBack": "Back", + "textAbout": "Про програму", + "textAddress": "Адреса", + "textBack": "Назад", "textEmail": "Email", "textPoweredBy": "Powered By", "textTel": "Tel", @@ -10,11 +10,11 @@ }, "Common": { "Collaboration": { + "textAddComment": "Додати коментар", + "textAddReply": "Додати відповідь", + "textBack": "Назад", + "textCancel": "Скасувати", "notcriticalErrorTitle": "Warning", - "textAddComment": "Add Comment", - "textAddReply": "Add Reply", - "textBack": "Back", - "textCancel": "Cancel", "textCollaboration": "Collaboration", "textComments": "Comments", "textDeleteComment": "Delete Comment", @@ -27,26 +27,26 @@ "textMessageDeleteComment": "Do you really want to delete this comment?", "textMessageDeleteReply": "Do you really want to delete this reply?", "textNoComments": "This document doesn't contain comments", + "textOk": "Ok", "textReopen": "Reopen", "textResolve": "Resolve", "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users", - "textOk": "Ok" + "textUsers": "Users" + }, + "HighlightColorPalette": { + "textNoFill": "No Fill" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", "textStandartColors": "Standard Colors", "textThemeColors": "Theme Colors" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { + "menuAddComment": "Додати коментар", + "menuAddLink": "Додати посилання", + "menuCancel": "Скасувати", "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add Comment", - "menuAddLink": "Add Link", - "menuCancel": "Cancel", "menuDelete": "Delete", "menuDeleteTable": "Delete Table", "menuEdit": "Edit", @@ -62,25 +62,14 @@ }, "Controller": { "Main": { - "advDRMOptions": "Protected File", - "advDRMPassword": "Password", - "closeButtonText": "Close File", - "criticalErrorTitle": "Error", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "errorProcessSaveResult": "Saving failed.", - "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "notcriticalErrorTitle": "Warning", "SDK": { - "Chart": "Chart", + "Chart": "Діаграма", + "Diagram Title": "Заголовок діаграми", "Click to add first slide": "Click to add first slide", "Click to add notes": "Click to add notes", "ClipArt": "Clip Art", "Date and time": "Date and time", "Diagram": "Diagram", - "Diagram Title": "Chart Title", "Footer": "Footer", "Header": "Header", "Image": "Image", @@ -98,7 +87,18 @@ "Y Axis": "Y Axis", "Your text here": "Your text here" }, - "textAnonymous": "Anonymous", + "textAnonymous": "Анонімний користувач", + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", "textBuyNow": "Visit website", "textClose": "Close", "textContactUs": "Contact sales", @@ -107,9 +107,12 @@ "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", "textNo": "No", "textNoLicenseTitle": "License limit reached", + "textNoTextFound": "Text not found", "textOpenFile": "Enter a password to open the file", "textPaidFeature": "Paid feature", "textRemember": "Remember my choice", + "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textYes": "Yes", "titleLicenseExp": "License expired", "titleServerVersion": "Editor updated", @@ -119,33 +122,33 @@ "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", - "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
Please contact your administrator to get full access", + "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.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "warnProcessRightsChange": "You don't have permission to edit the file." } }, "Error": { + "errorConnectToServer": "Неможливо зберегти документ. Перевірте параметри підключення або зверніться до адміністратора.
Коли ви натиснете на кнопку 'OK', вам буде запропоновано завантажити документ.", + "errorEditingDownloadas": "Під час роботи з документом сталася помилка.
Використовуйте опцію 'Завантажити', щоб зберегти резервну копію файлу локально.", + "openErrorText": "Під час відкриття файлу сталася помилка", + "saveErrorText": "Під час збереження файлу сталася помилка", "convertationTimeoutText": "Conversion timeout exceeded.", "criticalErrorExtText": "Press 'OK' to go back to the document list.", "criticalErrorTitle": "Error", "downloadErrorText": "Download failed.", "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please contact your admin.", - "errorBadImageUrl": "Image url is incorrect", - "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
When you click the 'OK' button, you will be prompted to download the document.", + "errorBadImageUrl": "Image URL is incorrect", "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", "errorDataRange": "Incorrect data range.", "errorDefaultMessage": "Error code: %1", - "errorEditingDownloadas": "An error occurred during the work with the document.
Use the 'Download' option to save the file backup copy locally.", "errorFilePassProtect": "The file is password protected and could not be opened.", "errorFileSizeExceed": "The file size exceeds your server limitation.
Please, contact your admin.", "errorKeyEncrypt": "Unknown key descriptor", "errorKeyExpire": "Key descriptor expired", + "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.", @@ -153,10 +156,8 @@ "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", "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", "splitDividerErrorText": "The number of rows must be a divisor of %1", "splitMaxColsErrorText": "The number of columns must be less than %1", @@ -164,53 +165,15 @@ "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." - }, - "LongActions": { - "applyChangesTextText": "Loading data...", - "applyChangesTitleText": "Loading Data", - "downloadTextText": "Downloading document...", - "downloadTitleText": "Downloading Document", - "loadFontsTextText": "Loading data...", - "loadFontsTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadFontTitleText": "Loading Data", - "loadImagesTextText": "Loading images...", - "loadImagesTitleText": "Loading Images", - "loadImageTextText": "Loading image...", - "loadImageTitleText": "Loading Image", - "loadingDocumentTextText": "Loading document...", - "loadingDocumentTitleText": "Loading document", - "loadThemeTextText": "Loading theme...", - "loadThemeTitleText": "Loading Theme", - "openTextText": "Opening document...", - "openTitleText": "Opening Document", - "printTextText": "Printing document...", - "printTitleText": "Printing Document", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "saveTextText": "Saving document...", - "saveTitleText": "Saving Document", - "textLoadingDocument": "Loading document", - "txtEditingMode": "Set editing mode...", - "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait..." - }, - "Toolbar": { - "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this page", - "stayButtonText": "Stay on this Page" + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." }, "View": { "Add": { + "textAddLink": "Додати посилання", + "textAddress": "Адреса", + "textBack": "Назад", + "textCancel": "Скасувати", "notcriticalErrorTitle": "Warning", - "textAddLink": "Add Link", - "textAddress": "Address", - "textBack": "Back", - "textCancel": "Cancel", "textColumns": "Columns", "textComment": "Comment", "textDefault": "Selected text", @@ -228,6 +191,7 @@ "textLinkTo": "Link to", "textLinkType": "Link Type", "textNextSlide": "Next Slide", + "textOk": "Ok", "textOther": "Other", "textPictureFromLibrary": "Picture from Library", "textPictureFromURL": "Picture from URL", @@ -240,42 +204,42 @@ "textSlideNumber": "Slide Number", "textTable": "Table", "textTableSize": "Table Size", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textOk": "Ok" + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" }, "Edit": { + "textActualSize": "Реальний розмір", + "textAddCustomColor": "Додати власний колір", + "textAdditional": "Додатково", + "textAdditionalFormatting": "Додатково", + "textAddress": "Адреса", + "textAfter": "Після", + "textAlign": "Вирівнювання", + "textAlignBottom": "По нижньому краю", + "textAlignCenter": "По центру", + "textAlignLeft": "По лівому краю", + "textAlignMiddle": "Посередині", + "textAlignRight": "По правому краю", + "textAlignTop": "По верхньому краю", + "textAllCaps": "Всі великі", + "textApplyAll": "Застосувати до всіх слайдів", + "textAuto": "Авто", + "textAutomatic": "Автоматичний", + "textBack": "Назад", + "textBandedColumn": "Чергувати стовпчики", + "textBandedRow": "Чергувати рядки", + "textBefore": "Перед", + "textBorder": "Межа", + "textBottom": "Знизу", + "textBottomLeft": "Внизу ліворуч", + "textBottomRight": "Внизу праворуч", + "textBringToForeground": "Перенести на передній план", + "textBullets": "Маркери", + "textBulletsAndNumbers": "Маркери та нумерація", + "textCaseSensitive": "З урахуванням регістру", + "textCellMargins": "Поля клітинки", + "textChart": "Діаграма", "notcriticalErrorTitle": "Warning", - "textActualSize": "Actual Size", - "textAddCustomColor": "Add Custom Color", - "textAdditional": "Additional", - "textAdditionalFormatting": "Additional Formatting", - "textAddress": "Address", - "textAfter": "After", - "textAlign": "Align", - "textAlignBottom": "Align Bottom", - "textAlignCenter": "Align Center", - "textAlignLeft": "Align Left", - "textAlignMiddle": "Align Middle", - "textAlignRight": "Align Right", - "textAlignTop": "Align Top", - "textAllCaps": "All Caps", - "textApplyAll": "Apply to All Slides", - "textAuto": "Auto", - "textBack": "Back", - "textBandedColumn": "Banded Column", - "textBandedRow": "Banded Row", - "textBefore": "Before", "textBlack": "Through Black", - "textBorder": "Border", - "textBottom": "Bottom", - "textBottomLeft": "Bottom-Left", - "textBottomRight": "Bottom-Right", - "textBringToForeground": "Bring to Foreground", - "textBullets": "Bullets", - "textBulletsAndNumbers": "Bullets & Numbers", - "textCaseSensitive": "Case Sensitive", - "textCellMargins": "Cell Margins", - "textChart": "Chart", "textClock": "Clock", "textClockwise": "Clockwise", "textColor": "Color", @@ -285,6 +249,7 @@ "textDefault": "Selected text", "textDelay": "Delay", "textDeleteSlide": "Delete Slide", + "textDesign": "Design", "textDisplay": "Display", "textDistanceFromText": "Distance From Text", "textDistributeHorizontally": "Distribute Horizontally", @@ -336,6 +301,7 @@ "textNoTextFound": "Text not found", "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "textNumbers": "Numbers", + "textOk": "Ok", "textOpacity": "Opacity", "textOptions": "Options", "textPictureFromLibrary": "Picture from Library", @@ -379,7 +345,7 @@ "textTopLeft": "Top-Left", "textTopRight": "Top-Right", "textTotalRow": "Total Row", - "textTransition": "Transition", + "textTransitions": "Transitions", "textType": "Type", "textUnCover": "UnCover", "textVerticalIn": "Vertical In", @@ -389,27 +355,27 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate", - "textTransitions": "Transitions", - "textDesign": "Design", - "textAutomatic": "Automatic", - "textOk": "Ok" + "textZoomRotate": "Zoom and Rotate" }, "Settings": { + "textAbout": "Про програму", + "textAddress": "адреса:", + "textApplication": "Застосунок", + "textApplicationSettings": "Налаштування додатку", + "textAuthor": "Автор", + "textBack": "Назад", + "textCaseSensitive": "З урахуванням регістру", + "textCentimeter": "Сантиметр", + "txtScheme3": "Апекс", + "txtScheme4": "Аспект", + "txtScheme5": "Офіційна", "mniSlideStandard": "Standard (4:3)", "mniSlideWide": "Widescreen (16:9)", - "textAbout": "About", - "textAddress": "address:", - "textApplication": "Application", - "textApplicationSettings": "Application Settings", - "textAuthor": "Author", - "textBack": "Back", - "textCaseSensitive": "Case Sensitive", - "textCentimeter": "Centimeter", "textCollaboration": "Collaboration", "textColorSchemes": "Color Schemes", "textComment": "Comment", "textCreated": "Created", + "textDarkTheme": "Dark Theme", "textDisableAll": "Disable All", "textDisableAllMacrosWithNotification": "Disable all macros with notification", "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", @@ -466,14 +432,47 @@ "txtScheme20": "Urban", "txtScheme21": "Verve", "txtScheme22": "New Office", - "txtScheme3": "Apex", - "txtScheme4": "Aspect", - "txtScheme5": "Civic", "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry", - "textDarkTheme": "Dark Theme" + "txtScheme9": "Foundry" } + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "loadThemeTextText": "Loading theme...", + "loadThemeTitleText": "Loading Theme", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this page", + "stayButtonText": "Stay on this Page" } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/de.json b/apps/spreadsheeteditor/mobile/locale/de.json index f756f2d7c..aa0391620 100644 --- a/apps/spreadsheeteditor/mobile/locale/de.json +++ b/apps/spreadsheeteditor/mobile/locale/de.json @@ -142,9 +142,14 @@ "textGuest": "Gast", "textHasMacros": "Die Datei beinhaltet automatische Makros.
Möchten Sie Makros ausführen?", "textNo": "Nein", + "textNoChoices": "Es gibt keine Möglichkeit zum Füllung der Zelle.
Nur die Textwerte aus der Spalte kann für den Ersatz gewählt werden. ", "textNoLicenseTitle": "Lizenzlimit erreicht", + "textNoTextFound": "Der Text wurde nicht gefunden.", + "textOk": "OK", "textPaidFeature": "Kostenpflichtige Funktion", "textRemember": "Auswahl speichern", + "textReplaceSkipped": "Der Ersatzvorgang wurde durchgeführt. {0} Vorkommen wurden ausgelassen.", + "textReplaceSuccess": "Der Suchvorgang wurde durchgeführt. Vorkommen wurden ersetzt:{0}", "textYes": "Ja", "titleServerVersion": "Editor wurde aktualisiert", "titleUpdateVersion": "Version wurde geändert", @@ -155,12 +160,7 @@ "warnNoLicense": "Sie haben die maximale Anzahl von gleichzeitigen Verbindungen in %1-Editoren erreicht. Die Bearbeitung ist jetzt in diesem Dokument nicht verfügbar. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", "warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", "warnProcessRightsChange": "Sie können diese Datei nicht bearbeiten.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", - "textNoTextFound": "Text not found", - "textOk": "Ok", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." } }, "Error": { @@ -175,6 +175,7 @@ "errorAutoFilterDataRange": "Die Operation ist für den ausgewählten Zellbereich unmöglich.
Bitte wählen Sie einen einheitlichen Datenbereich innerhalb oder außerhalb der Tabelle und versuchen Sie neu.", "errorAutoFilterHiddenRange": "Die Operation kann nicht ausgeführt werden, weil der Bereich gefilterte Zellen enthält.
Bitte machen Sie die gefilterten Elemente sichtbar und versuchen Sie es erneut.", "errorBadImageUrl": "URL des Bildes ist falsch", + "errorCannotUseCommandProtectedSheet": "Dieser Befehl kann für ein geschütztes Blatt nicht verwendet werden. Sie müssen zuerst den Schutz des Blatts aufheben, um diesen Befehl zu verwenden.
Sie werden möglicherweise aufgefordert, ein Kennwort einzugeben.", "errorChangeArray": "Sie können einen Teil eines Arrays nicht ändern.", "errorChangeOnProtectedSheet": "Die Zelle oder das Diagramm, die bzw. das Sie ändern möchten, befindet sich auf einem schreibgeschützten Blatt. Um eine Änderung vorzunehmen, heben Sie den Schutz des Blatts auf. Möglicherweise werden Sie aufgefordert, ein Kennwort einzugeben.", "errorConnectToServer": "Das Dokument kann nicht gespeichert werden. Überprüfen Sie Ihre Verbindungseinstellungen oder wenden Sie sich an den Administrator.
Beim Klicken auf OK können Sie das Dokument herunterladen.", @@ -233,8 +234,7 @@ "unknownErrorText": "Unbekannter Fehler.", "uploadImageExtMessage": "Unbekanntes Bildformat.", "uploadImageFileCountMessage": "Keine Bilder hochgeladen.", - "uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten.", - "errorCannotUseCommandProtectedSheet": "You cannot use this command on a protected sheet. To use this command, unprotect the sheet.
You might be requested to enter a password." + "uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten." }, "LongActions": { "advDRMPassword": "Passwort", @@ -289,16 +289,16 @@ "textErrorRemoveSheet": "Arbeitsblatt kann nicht gelöscht werden. ", "textHide": "Ausblenden", "textMore": "Mehr", + "textMove": "Verschieben", + "textMoveBack": "Zurück", + "textMoveForward": "Vorwärts", "textOk": "OK", "textRename": "Umbenennen", "textRenameSheet": "Tabelle umbenennen", "textSheet": "Blatt", "textSheetName": "Blattname", "textUnhide": "Einblenden", - "textWarnDeleteSheet": "Das Arbeitsblatt kann Daten enthalten. Möchten Sie fortsetzen?", - "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "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.", @@ -341,6 +341,7 @@ "textLink": "Link", "textLinkSettings": "Linkseinstellungen", "textLinkType": "Linktyp", + "textOk": "OK", "textOther": "Sonstiges", "textPictureFromLibrary": "Bild aus dem Verzeichnis", "textPictureFromURL": "Bild aus URL", @@ -358,8 +359,7 @@ "txtNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.", "txtSorting": "Sortierung", "txtSortSelected": "Ausgewählte sortieren", - "txtYes": "Ja", - "textOk": "Ok" + "txtYes": "Ja" }, "Edit": { "notcriticalErrorTitle": "Warnung", @@ -378,6 +378,7 @@ "textAngleClockwise": "Im Uhrzeigersinn drehen", "textAngleCounterclockwise": "Gegen den Uhrzeigersinn drehen", "textAuto": "auto", + "textAutomatic": "Automatisch", "textAxisCrosses": "Schnittpunkt mit der Achse", "textAxisOptions": "Achsenoptionen", "textAxisPosition": "Position der Achse", @@ -478,6 +479,7 @@ "textNoOverlay": "Ohne Überlagerung", "textNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.", "textNumber": "Nummer", + "textOk": "OK", "textOnTickMarks": "Teilstriche", "textOpacity": "Undurchsichtigkeit", "textOut": "Außen", @@ -539,9 +541,7 @@ "textYen": "Yen", "txtNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.", "txtSortHigh2Low": "Absteigend sortieren", - "txtSortLow2High": "Aufsteigend sortieren", - "textAutomatic": "Automatic", - "textOk": "Ok" + "txtSortLow2High": "Aufsteigend sortieren" }, "Settings": { "advCSVOptions": "CSV-Optionen auswählen", @@ -571,6 +571,7 @@ "textComments": "Kommentare", "textCreated": "Erstellt", "textCustomSize": "Benutzerdefinierte Größe", + "textDarkTheme": "Dunkelmodus", "textDelimeter": "Trennzeichen", "textDisableAll": "Alle deaktivieren", "textDisableAllMacrosWithNotification": "Alle Makros mit einer Benachrichtigung deaktivieren", @@ -671,8 +672,7 @@ "txtSemicolon": "Semikolon", "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?", - "textDarkTheme": "Dark Theme" + "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/es.json b/apps/spreadsheeteditor/mobile/locale/es.json index ac7976781..7a29d58ac 100644 --- a/apps/spreadsheeteditor/mobile/locale/es.json +++ b/apps/spreadsheeteditor/mobile/locale/es.json @@ -11,8 +11,8 @@ "Common": { "Collaboration": { "notcriticalErrorTitle": "Advertencia", - "textAddComment": "Añadir comentario", - "textAddReply": "Añadir respuesta", + "textAddComment": "Agregar comentario", + "textAddReply": "Agregar respuesta", "textBack": "Atrás", "textCancel": "Cancelar", "textCollaboration": "Colaboración", @@ -42,8 +42,8 @@ "ContextMenu": { "errorCopyCutPaste": "Las acciones de copiar, cortar y pegar utilizando el menú contextual se realizarán sólo dentro del archivo actual.", "errorInvalidLink": "La referencia del enlace no existe. Por favor, corrija o elimine el enlace.", - "menuAddComment": "Añadir comentario", - "menuAddLink": "Añadir enlace ", + "menuAddComment": "Agregar comentario", + "menuAddLink": "Agregar enlace ", "menuCancel": "Cancelar", "menuCell": "Celda", "menuDelete": "Eliminar", @@ -196,7 +196,7 @@ "errorFillRange": "No se puede rellenar el rango de celdas seleccionado.
Todas las celdas combinadas deben tener el mismo tamaño.", "errorFormulaName": "Un error en la fórmula.
Nombre de fórmula incorrecto.", "errorFormulaParsing": "Error interno al analizar la fórmula.", - "errorFrmlMaxLength": "No puede añadir esta fórmula ya que su longitud excede el número de caracteres permitidos.
Por favor, edítela e inténtelo de nuevo.", + "errorFrmlMaxLength": "No puede agregar esta fórmula, ya que su longitud excede el número de caracteres permitidos.
Edítelo e inténtelo de nuevo.", "errorFrmlMaxReference": "No puede introducir esta fórmula porque tiene demasiados valores,
referencias de celda, y/o nombres.", "errorFrmlMaxTextLength": "Los valores de texto de las fórmulas tienen un límite de 255 caracteres.
Utilice la función CONCATENATE o el operador de concatenación (&)", "errorFrmlWrongReferences": "La función hace referencia a una hoja que no existe.
Por favor, compruebe los datos y vuelva a intentarlo.", @@ -320,7 +320,7 @@ "sCatMathematic": "Matemáticas y trigonometría", "sCatStatistical": "Estadístico", "sCatTextAndData": "Texto y datos", - "textAddLink": "Añadir enlace ", + "textAddLink": "Agregar enlace ", "textAddress": "Dirección", "textBack": "Atrás", "textCancel": "Cancelar", @@ -365,7 +365,7 @@ "notcriticalErrorTitle": "Advertencia", "textAccounting": "Contabilidad", "textActualSize": "Tamaño actual", - "textAddCustomColor": "Añadir color personalizado", + "textAddCustomColor": "Agregar color personalizado", "textAddress": "Dirección", "textAlign": "Alinear", "textAlignBottom": "Alinear hacia abajo", diff --git a/apps/spreadsheeteditor/mobile/locale/hu.json b/apps/spreadsheeteditor/mobile/locale/hu.json index 490ec1839..b5b443397 100644 --- a/apps/spreadsheeteditor/mobile/locale/hu.json +++ b/apps/spreadsheeteditor/mobile/locale/hu.json @@ -142,9 +142,14 @@ "textGuest": "Vendég", "textHasMacros": "A fájl automatikus makrókat tartalmaz.
Szeretne makrókat futtatni?", "textNo": "Nem", + "textNoChoices": "Nincs lehetőség a cellának kitöltésére.
Csak az oszlopból származó szövegértékek választhatók ki cserére.", "textNoLicenseTitle": "Elérte a licenckorlátot", + "textNoTextFound": "A szöveg nem található", + "textOk": "OK", "textPaidFeature": "Fizetett funkció", "textRemember": "Választás megjegyzése", + "textReplaceSkipped": "A csere megtörtént. {0} események kihagyásra kerültek.", + "textReplaceSuccess": "A keresés megtörtént. Helyettesített események: {0}", "textYes": "Igen", "titleServerVersion": "Szerkesztő frissítve", "titleUpdateVersion": "A verzió megváltozott", @@ -155,12 +160,7 @@ "warnNoLicense": "Elérte a(z) %1 szerkesztővel való egyidejű kapcsolódási korlátot. Ez a dokumentum csak megtekintésre nyílik meg. Lépjen kapcsolatba a(z) %1 értékesítési csapattal a személyes frissítés feltételekért.", "warnNoLicenseUsers": "Elérte a(z) %1 szerkesztőhöz tartozó felhasználói korlátját. Vegye fel a kapcsolatot a(z) %1 értékesítési csapattal a személyes frissítési feltételekért.", "warnProcessRightsChange": "Nincs engedélye a fájl szerkesztésére.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", - "textNoTextFound": "Text not found", - "textOk": "Ok", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." } }, "Error": { @@ -175,6 +175,7 @@ "errorAutoFilterDataRange": "A művelet nem hajtható végre a kiválasztott cellatartományban.
Válasszon egységes adattartományt a táblázaton belül vagy kívül és próbálkozzon újra.", "errorAutoFilterHiddenRange": "A művelet nem hajtható végre, mert a terület szűrt cellákat tartalmaz.
Kérjük, jelenítse meg a szűrt elemeket, és próbálja újra.", "errorBadImageUrl": "Hibás kép URL", + "errorCannotUseCommandProtectedSheet": "Ez a parancs nem használható védett munkalapon. A parancs használatához szüntesse meg a munkalap védelmét.
Előfordulhat, hogy jelszót kell megadnia.", "errorChangeArray": "Nem módosíthatja a tömb egy részét.", "errorChangeOnProtectedSheet": "A módosítani kívánt cella vagy diagram egy védett lapon található. A módosításhoz szüntesse meg a lap védelmét. Előfordulhat, hogy jelszót kell megadnia.", "errorConnectToServer": "Ezt a dokumentumot nem lehet menteni. Ellenőrizze a kapcsolat beállításait, vagy forduljon a rendszergazdához.
Ha az \"OK\" gombra kattint, a rendszer felkéri a dokumentum letöltésére.", @@ -233,8 +234,7 @@ "unknownErrorText": "Ismeretlen hiba.", "uploadImageExtMessage": "Ismeretlen képformátum.", "uploadImageFileCountMessage": "Nincs kép feltöltve.", - "uploadImageSizeMessage": "A kép túl nagy. A maximális méret 25 MB.", - "errorCannotUseCommandProtectedSheet": "You cannot use this command on a protected sheet. To use this command, unprotect the sheet.
You might be requested to enter a password." + "uploadImageSizeMessage": "A kép túl nagy. A maximális méret 25 MB." }, "LongActions": { "advDRMPassword": "Jelszó", @@ -289,16 +289,16 @@ "textErrorRemoveSheet": "Nem törölhető a munkalap.", "textHide": "Elrejt", "textMore": "Több", + "textMove": "Áthelyezés", + "textMoveBack": "Mozgatás hátra", + "textMoveForward": "Előre mozgat", "textOk": "OK", "textRename": "Átnevezés", "textRenameSheet": "Munkalap átnevezése", "textSheet": "Munkalap", "textSheetName": "Munkalap neve", "textUnhide": "Megmutat", - "textWarnDeleteSheet": "A munkalap lehet hogy tartalmaz adatok. Folytatja a műveletet?", - "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "textWarnDeleteSheet": "A munkalap lehet hogy tartalmaz adatok. Folytatja a műveletet?" }, "Toolbar": { "dlgLeaveMsgText": "Nem mentett módosításai vannak ebben a dokumentumban. Kattintson a „Maradj ezen az oldalon” gombra az automatikus mentés megvárásához. Kattintson a \"Hagyja el ezt az oldalt\" gombra az összes nem mentett módosítás elvetéséhez.", @@ -341,6 +341,7 @@ "textLink": "Hivatkozás", "textLinkSettings": "Hivatkozás beállítások", "textLinkType": "Hivatkozás típusa", + "textOk": "OK", "textOther": "Egyéb", "textPictureFromLibrary": "Kép a könyvtárból", "textPictureFromURL": "Kép URL-en keresztül", @@ -358,8 +359,7 @@ "txtNotUrl": "Ennek a mezőnek URL formátumúnak kell lennie, pl.: „http://www.pelda.hu”", "txtSorting": "Rendezés", "txtSortSelected": "Kiválasztottak renezése", - "txtYes": "Igen", - "textOk": "Ok" + "txtYes": "Igen" }, "Edit": { "notcriticalErrorTitle": "Figyelmeztetés", @@ -378,6 +378,7 @@ "textAngleClockwise": "Óramutató járásával megegyező irányba", "textAngleCounterclockwise": "Óramutató járásával ellentétes irányba", "textAuto": "Auto", + "textAutomatic": "Automatikus", "textAxisCrosses": "Tengelykeresztek", "textAxisOptions": "Tengely beállítások", "textAxisPosition": "Tengelypozíció", @@ -478,6 +479,7 @@ "textNoOverlay": "Nincs átfedés", "textNotUrl": "Ennek a mezőnek URL formátumúnak kell lennie, pl.: „http://www.pelda.hu”", "textNumber": "Szám", + "textOk": "OK", "textOnTickMarks": "Pipákon", "textOpacity": "Áttetszőség", "textOut": "Ki", @@ -539,9 +541,7 @@ "textYen": "Jen", "txtNotUrl": "Ennek a mezőnek URL formátumúnak kell lennie, pl.: „http://www.pelda.hu”", "txtSortHigh2Low": "A legnagyobbtól a legkisebbig rendez", - "txtSortLow2High": "Legkisebbtől legnagyobbig rendez", - "textAutomatic": "Automatic", - "textOk": "Ok" + "txtSortLow2High": "Legkisebbtől legnagyobbig rendez" }, "Settings": { "advCSVOptions": "Válasszon a CSV beállítások közül", @@ -571,6 +571,7 @@ "textComments": "Megjegyzések", "textCreated": "Létrehozva", "textCustomSize": "Egyéni méret", + "textDarkTheme": "Sötét téma", "textDelimeter": "Elválasztó", "textDisableAll": "Összes letiltása", "textDisableAllMacrosWithNotification": "Minden értesítéssel rendelkező makró letiltása", @@ -671,8 +672,7 @@ "txtSemicolon": "Pontosvessző", "txtSpace": "Szóköz", "txtTab": "Lap", - "warnDownloadAs": "Ha ebbe a formátumba ment, a nyers szövegen kívül minden elveszik.
Biztos benne, hogy folytatni akarja?", - "textDarkTheme": "Dark Theme" + "warnDownloadAs": "Ha ebbe a formátumba ment, a nyers szövegen kívül minden elveszik.
Biztos benne, hogy folytatni akarja?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/ja.json b/apps/spreadsheeteditor/mobile/locale/ja.json index 2b51f7e44..492c64f0a 100644 --- a/apps/spreadsheeteditor/mobile/locale/ja.json +++ b/apps/spreadsheeteditor/mobile/locale/ja.json @@ -577,7 +577,7 @@ "textDisableAllMacrosWithoutNotification": "警告を表示してないすべてのマクロを無効にする", "textDone": "完了", "textDownload": "ダウンロード", - "textDownloadAs": "としてダウンロード", + "textDownloadAs": "名前を付けてダウンロード", "textEmail": "メール", "textEnableAll": "全てを有効にする", "textEnableAllMacrosWithoutNotification": "警告を表示してないすべてのマクロを有効にする", diff --git a/apps/spreadsheeteditor/mobile/locale/tr.json b/apps/spreadsheeteditor/mobile/locale/tr.json index c0e03a4f6..d669b5e2e 100644 --- a/apps/spreadsheeteditor/mobile/locale/tr.json +++ b/apps/spreadsheeteditor/mobile/locale/tr.json @@ -165,7 +165,7 @@ }, "Error": { "convertationTimeoutText": "Değişim süresi aşıldı.", - "criticalErrorExtText": "Belge listesine geri dönmek için 'OK'a basın.", + "criticalErrorExtText": "Belge listesine geri dönmek için 'Tamam'a basın.", "criticalErrorTitle": "Hata", "downloadErrorText": "İndirme başarısız oldu.", "errorAccessDeny": "Haklarınız olmayan bir işlemi gerçekleştirmeye çalışıyorsunuz.
Lütfen yöneticinizle iletişime geçin.", @@ -177,7 +177,7 @@ "errorBadImageUrl": "Resim URL'si yanlış", "errorChangeArray": "Bir dizinin bir bölümünü değiştiremezsiniz.", "errorChangeOnProtectedSheet": "Değiştirmeye çalıştığınız hücre veya grafik korumalı bir sayfada. Değişiklik yapmak için sayfanın korumasını kaldırın. Bir şifre girmeniz istenebilir.", - "errorConnectToServer": "Bu doküman kaydedilemiyor. Bağlantı ayarlarınızı kontrol edin veya yöneticinizle iletişime geçin.
'OK' düğmesini tıkladığınızda, belgeyi indirmeniz istenecektir.", + "errorConnectToServer": "Bu doküman kaydedilemiyor. Bağlantı ayarlarınızı kontrol edin veya yöneticinizle iletişime geçin.
'Tamam' düğmesini tıkladığınızda, belgeyi indirmeniz istenecektir.", "errorCopyMultiselectArea": "Bu komut çoklu seçimlerle kullanılamaz.
Tek bir aralık seçin ve tekrar deneyin.", "errorCountArg": "Formülde bir hata var.
Geçersiz sayıda bağımsız değişken.", "errorCountArgExceed": "Formülde bir hata var.
Maksimum bağımsız değişken sayısı aşıldı.", From b6b95345c84724e7bee24dde4731ab8377935c39 Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Fri, 4 Feb 2022 18:23:50 +0300 Subject: [PATCH 103/217] [DE PE SSE] Fix Bug 55355 --- apps/common/mobile/resources/less/comments.less | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/common/mobile/resources/less/comments.less b/apps/common/mobile/resources/less/comments.less index 9dc7945cb..9b841a171 100644 --- a/apps/common/mobile/resources/less/comments.less +++ b/apps/common/mobile/resources/less/comments.less @@ -24,6 +24,9 @@ color: @text-normal; } } + .reply-date { + color: @text-secondary; + } } #add-comment-dialog, #edit-comment-dialog, #add-reply-dialog, #edit-reply-dialog { .dialog { From 85f994303f1f0494ca1fe1d90b3dd9b05d184be0 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Fri, 4 Feb 2022 19:21:48 +0300 Subject: [PATCH 104/217] [DE] Fix bug 55348 --- apps/common/main/lib/component/DataView.js | 5 +++-- apps/documenteditor/main/app/view/ChartSettings.js | 3 ++- apps/presentationeditor/main/app/view/ChartSettings.js | 3 ++- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/apps/common/main/lib/component/DataView.js b/apps/common/main/lib/component/DataView.js index 86c884f08..80f5a65fa 100644 --- a/apps/common/main/lib/component/DataView.js +++ b/apps/common/main/lib/component/DataView.js @@ -276,6 +276,7 @@ define([ me.delayRenderTips = me.options.delayRenderTips || false; if (me.parentMenu) me.parentMenu.options.restoreHeight = (me.options.restoreHeight>0); + me.delaySelect = me.options.delaySelect || false; me.rendered = false; me.dataViewItems = []; if (me.options.keyMoveDirection=='vertical') @@ -396,10 +397,10 @@ define([ }); if (record) { - if (Common.Utils.isSafari) { + if (this.delaySelect) { setTimeout(function () { record.set({selected: true}); - }, 200); + }, 300); } else { record.set({selected: true}); } diff --git a/apps/documenteditor/main/app/view/ChartSettings.js b/apps/documenteditor/main/app/view/ChartSettings.js index d95285e1c..9c04a460e 100644 --- a/apps/documenteditor/main/app/view/ChartSettings.js +++ b/apps/documenteditor/main/app/view/ChartSettings.js @@ -276,7 +276,8 @@ define([ groups: new Common.UI.DataViewGroupStore(Common.define.chartData.getChartGroupData()), store: new Common.UI.DataViewStore(Common.define.chartData.getChartData()), itemTemplate: _.template('
\">
'), - delayRenderTips: true + delayRenderTips: true, + delaySelect: Common.Utils.isSafari }); }); this.btnChartType.render($('#chart-button-type')); diff --git a/apps/presentationeditor/main/app/view/ChartSettings.js b/apps/presentationeditor/main/app/view/ChartSettings.js index 9ac998a65..d99b1e1e0 100644 --- a/apps/presentationeditor/main/app/view/ChartSettings.js +++ b/apps/presentationeditor/main/app/view/ChartSettings.js @@ -227,7 +227,8 @@ define([ groups: new Common.UI.DataViewGroupStore(Common.define.chartData.getChartGroupData()), store: new Common.UI.DataViewStore(Common.define.chartData.getChartData()), itemTemplate: _.template('
\">
'), - delayRenderTips: true + delayRenderTips: true, + delaySelect: Common.Utils.isSafari }); }); this.btnChartType.render($('#chart-button-type')); From 95291a2e062bffad4403d6ba42a6377177d8e3bf Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Fri, 4 Feb 2022 20:08:37 +0300 Subject: [PATCH 105/217] [DE PE SSE] Fix bug 55356 --- apps/common/main/lib/component/HintManager.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/common/main/lib/component/HintManager.js b/apps/common/main/lib/component/HintManager.js index b3aab207a..f798efdb8 100644 --- a/apps/common/main/lib/component/HintManager.js +++ b/apps/common/main/lib/component/HintManager.js @@ -471,7 +471,9 @@ Common.UI.HintManager = new(function() { match = false; var keyCode = e.keyCode; if (keyCode !== 16 && keyCode !== 17 && keyCode !== 18 && keyCode !== 91) { - curLetter = _lang === 'en' ? ((keyCode > 47 && keyCode < 58 || keyCode > 64 && keyCode < 91) ? String.fromCharCode(e.keyCode) : null) : e.key; + curLetter = _lang === 'en' ? + ((keyCode > 47 && keyCode < 58 || keyCode > 64 && keyCode < 91) ? String.fromCharCode(e.keyCode) : null) : + (/[.*+?^${}()|[\]\\]/g.test(e.key) ? null : e.key); } if (curLetter) { var curr; From 207e67b724e321415e79c7e84a94bfd1fd83a063 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Sat, 5 Feb 2022 00:48:02 +0300 Subject: [PATCH 106/217] [PE SSE mobile] for Bug 55043 --- .../mobile/src/view/settings/Settings.jsx | 6 +-- .../mobile/src/view/settings/Settings.jsx | 52 +++++++++++++++---- .../mobile/src/store/appOptions.js | 6 ++- .../mobile/src/view/settings/Settings.jsx | 52 +++++++++++++++---- 4 files changed, 93 insertions(+), 23 deletions(-) diff --git a/apps/documenteditor/mobile/src/view/settings/Settings.jsx b/apps/documenteditor/mobile/src/view/settings/Settings.jsx index 654004353..0147c9b79 100644 --- a/apps/documenteditor/mobile/src/view/settings/Settings.jsx +++ b/apps/documenteditor/mobile/src/view/settings/Settings.jsx @@ -152,9 +152,9 @@ const SettingsList = inject("storeAppOptions", "storeReview")(observer(props => } {_canDownloadOrigin && - - - + + + } {_canPrint && diff --git a/apps/presentationeditor/mobile/src/view/settings/Settings.jsx b/apps/presentationeditor/mobile/src/view/settings/Settings.jsx index c82a192ec..afc2f4402 100644 --- a/apps/presentationeditor/mobile/src/view/settings/Settings.jsx +++ b/apps/presentationeditor/mobile/src/view/settings/Settings.jsx @@ -112,11 +112,36 @@ const SettingsList = inject("storeAppOptions", "storeToolbarSettings")(observer( }; const appOptions = props.storeAppOptions; - let _isEdit = false; + let _isEdit = false, + _canDownload = false, + _canDownloadOrigin = false, + _canAbout = true, + _canHelp = true, + _canPrint = false; - if (!appOptions.isDisconnected) { + if (appOptions.isDisconnected) { + _isEdit = false; + if (!appOptions.enableDownload) + _canPrint = _canDownload = _canDownloadOrigin = false; + } else { _isEdit = appOptions.isEdit; - } + _canDownload = appOptions.canDownload; + _canDownloadOrigin = appOptions.canDownloadOrigin; + _canPrint = appOptions.canPrint; + if (appOptions.customization && appOptions.canBrandingExt) { + _canAbout = (appOptions.customization.about!==false); + } + if (appOptions.customization) { + _canHelp = (appOptions.customization.help!==false); + } + } + + const onDownloadOrigin = () => { + closeModal(); + setTimeout(() => { + Common.EditorApi.get().asc_DownloadOrigin(); + }, 0); + }; return ( @@ -141,12 +166,21 @@ const SettingsList = inject("storeAppOptions", "storeToolbarSettings")(observer( - - - - - - + {_canDownload && + + + + } + {_canDownloadOrigin && + + + + } + {_canPrint && + + + + } diff --git a/apps/spreadsheeteditor/mobile/src/store/appOptions.js b/apps/spreadsheeteditor/mobile/src/store/appOptions.js index c97af127b..d68660519 100644 --- a/apps/spreadsheeteditor/mobile/src/store/appOptions.js +++ b/apps/spreadsheeteditor/mobile/src/store/appOptions.js @@ -100,8 +100,10 @@ export class storeAppOptions { this.canPrint = (permissions.print !== false); this.isRestrictedEdit = !this.isEdit && this.canComments; this.trialMode = params.asc_getLicenseMode(); - this.canDownloadOrigin = permissions.download !== false; - this.canDownload = permissions.download !== false; + + const type = /^(?:(pdf|djvu|xps|oxps))$/.exec(document.fileType); + this.canDownloadOrigin = permissions.download !== false && (type && typeof type[1] === 'string'); + this.canDownload = permissions.download !== false && (!type || typeof type[1] !== 'string'); this.canUseReviewPermissions = this.canLicense && (!!permissions.reviewGroups || this.customization && this.customization.reviewPermissions && (typeof (this.customization.reviewPermissions) == 'object')); this.canUseCommentPermissions = this.canLicense && !!permissions.commentGroups; diff --git a/apps/spreadsheeteditor/mobile/src/view/settings/Settings.jsx b/apps/spreadsheeteditor/mobile/src/view/settings/Settings.jsx index c3098cedb..28f4826ba 100644 --- a/apps/spreadsheeteditor/mobile/src/view/settings/Settings.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/settings/Settings.jsx @@ -117,11 +117,36 @@ const SettingsList = inject("storeAppOptions")(observer(props => { }; const appOptions = props.storeAppOptions; - let _isEdit = false; + let _isEdit = false, + _canDownload = false, + _canDownloadOrigin = false, + _canAbout = true, + _canHelp = true, + _canPrint = false; - if (!appOptions.isDisconnected) { + if (appOptions.isDisconnected) { + _isEdit = false; + if (!appOptions.enableDownload) + _canPrint = _canDownload = _canDownloadOrigin = false; + } else { _isEdit = appOptions.isEdit; - } + _canDownload = appOptions.canDownload; + _canDownloadOrigin = appOptions.canDownloadOrigin; + _canPrint = appOptions.canPrint; + if (appOptions.customization && appOptions.canBrandingExt) { + _canAbout = (appOptions.customization.about!==false); + } + if (appOptions.customization) { + _canHelp = (appOptions.customization.help!==false); + } + } + + const onDownloadOrigin = () => { + closeModal(); + setTimeout(() => { + Common.EditorApi.get().asc_DownloadOrigin(); + }, 0); + }; return ( @@ -146,12 +171,21 @@ const SettingsList = inject("storeAppOptions")(observer(props => { - - - - - - + {_canDownload && + + + + } + {_canDownloadOrigin && + + + + } + {_canPrint && + + + + } From 5d2ea4b6d18f5cb40b587a0690208cf3b8f24c15 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Sat, 5 Feb 2022 17:30:22 +0300 Subject: [PATCH 107/217] [desktop] for bug 55359 --- apps/common/main/lib/controller/Themes.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/common/main/lib/controller/Themes.js b/apps/common/main/lib/controller/Themes.js index 5133e0101..16408aaf1 100644 --- a/apps/common/main/lib/controller/Themes.js +++ b/apps/common/main/lib/controller/Themes.js @@ -234,7 +234,8 @@ define([ var on_document_ready = function (el) { // get_themes_config('../../common/main/resources/themes/themes.json'); - get_themes_config('../../../../themes.json'); + if ( !Common.Controllers.Desktop.isActive() || !Common.Controllers.Desktop.isOffline() ) + get_themes_config('../../../../themes.json'); } var get_ui_theme_name = function (objtheme) { From 8c35514cedfcc94598e860b6e1f92c2e5357bb23 Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Mon, 7 Feb 2022 13:06:41 +0300 Subject: [PATCH 108/217] [SSE] Fix Bug 55357 --- apps/common/mobile/resources/less/comments.less | 4 ++++ apps/common/mobile/resources/less/common-ios.less | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/apps/common/mobile/resources/less/comments.less b/apps/common/mobile/resources/less/comments.less index 9b841a171..dfee37a7c 100644 --- a/apps/common/mobile/resources/less/comments.less +++ b/apps/common/mobile/resources/less/comments.less @@ -224,6 +224,10 @@ z-index: 14000; max-height: 100%; overflow: auto; + + .item-content .item-input-wrap::after { + background-color: @text-normal; + } } .dialog-backdrop.backdrop-in { diff --git a/apps/common/mobile/resources/less/common-ios.less b/apps/common/mobile/resources/less/common-ios.less index 871ef2973..88687b271 100644 --- a/apps/common/mobile/resources/less/common-ios.less +++ b/apps/common/mobile/resources/less/common-ios.less @@ -619,11 +619,11 @@ input.modal-text-input { box-sizing: border-box; height: 26px; - background: #fff; + background: @background-primary; margin: 0; margin-top: 15px; padding: 0 5px; - border: 1px solid rgba(0,0,0,.3); + border: 1px solid @text-tertiary; border-radius: 0; width: 100%; font-size: 14px; From ad63fe3e765af240077e83f8773d6235e1b2460c Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Mon, 7 Feb 2022 15:28:38 +0400 Subject: [PATCH 109/217] [SSE mobile] Fix Bug 55374 --- .../mobile/src/controller/DropdownList.jsx | 12 ++++++------ .../spreadsheeteditor/mobile/src/controller/Main.jsx | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/src/controller/DropdownList.jsx b/apps/spreadsheeteditor/mobile/src/controller/DropdownList.jsx index 13aa8701e..763add287 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/DropdownList.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/DropdownList.jsx @@ -13,16 +13,16 @@ class DropdownListController extends Component { isOpen: false }; - Common.Notifications.on('openDropdownList', addArr => { - this.initDropdownList(addArr); + Common.Notifications.on('openDropdownList', (textArr, addArr) => { + this.initDropdownList(textArr, addArr); }); } - initDropdownList(addArr) { - this.listItems = addArr.map(item => { + initDropdownList(textArr, addArr) { + this.listItems = textArr.map((item, index) => { return { - caption: item.getTextValue(), - value: item + caption: item, + value: addArr ? addArr[index] : item }; }); diff --git a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx index 44be0b004..2a7548f21 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx @@ -455,7 +455,7 @@ class MainController extends Component { dropdownListTarget.css({left: `${showPoint[0]}px`, top: `${showPoint[1]}px`}); } - Common.Notifications.trigger('openDropdownList', addArr); + Common.Notifications.trigger('openDropdownList', textArr, addArr); } else { !validation && f7.dialog.create({ title: t('Controller.Main.notcriticalErrorTitle'), From e29e00b74e7d2744826ce0e746d27ec32d047170 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Mon, 7 Feb 2022 15:28:37 +0300 Subject: [PATCH 110/217] [DE] Fix bug 55354 --- apps/documenteditor/main/app/controller/LeftMenu.js | 1 + apps/documenteditor/main/app/template/LeftMenu.template | 2 +- apps/documenteditor/main/app/view/LeftMenu.js | 4 ++++ 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/apps/documenteditor/main/app/controller/LeftMenu.js b/apps/documenteditor/main/app/controller/LeftMenu.js index 9d95cd407..23b65756c 100644 --- a/apps/documenteditor/main/app/controller/LeftMenu.js +++ b/apps/documenteditor/main/app/controller/LeftMenu.js @@ -775,6 +775,7 @@ define([ this.api.asc_enableKeyEvents(true); } else if (this.leftMenu.btnThumbnails.isActive()) { this.leftMenu.btnThumbnails.toggle(false); + this.leftMenu.panelThumbnails.hide(); this.leftMenu.onBtnMenuClick(this.leftMenu.btnThumbnails); } } diff --git a/apps/documenteditor/main/app/template/LeftMenu.template b/apps/documenteditor/main/app/template/LeftMenu.template index 27eef5966..ea622cef6 100644 --- a/apps/documenteditor/main/app/template/LeftMenu.template +++ b/apps/documenteditor/main/app/template/LeftMenu.template @@ -17,7 +17,7 @@ - +
\ No newline at end of file diff --git a/apps/documenteditor/main/app/view/LeftMenu.js b/apps/documenteditor/main/app/view/LeftMenu.js index 69ef3d49f..a6ad60492 100644 --- a/apps/documenteditor/main/app/view/LeftMenu.js +++ b/apps/documenteditor/main/app/view/LeftMenu.js @@ -329,6 +329,10 @@ define([ this.panelNavigation['hide'](); this.btnNavigation.toggle(false, true); } + if (this.panelThumbnails) { + this.panelThumbnails['hide'](); + this.btnThumbnails.toggle(false, true); + } } }, From 1c6edcf780bafff374bff74aefc8dbbee9686e07 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 7 Feb 2022 15:50:32 +0300 Subject: [PATCH 111/217] [DE] Change "remove" menu item for forms --- .../main/app/view/DocumentHolder.js | 26 ++++++++++++++----- 1 file changed, 20 insertions(+), 6 deletions(-) diff --git a/apps/documenteditor/main/app/view/DocumentHolder.js b/apps/documenteditor/main/app/view/DocumentHolder.js index 3942cfa28..9dc0ff682 100644 --- a/apps/documenteditor/main/app/view/DocumentHolder.js +++ b/apps/documenteditor/main/app/view/DocumentHolder.js @@ -2983,12 +2983,18 @@ define([ }) }); - var menuTableRemoveControl = new Common.UI.MenuItem({ + var menuTableRemoveForm = new Common.UI.MenuItem({ iconCls: 'menu__icon cc-remove', caption: me.textRemove, value: 'remove' }).on('click', _.bind(me.onControlsSelect, me)); + var menuTableRemoveControl = new Common.UI.MenuItem({ + iconCls: 'menu__icon cc-remove', + caption: me.textRemoveControl, + value: 'remove' + }).on('click', _.bind(me.onControlsSelect, me)); + var menuTableControlSettings = new Common.UI.MenuItem({ caption: me.textSettings, value: 'settings' @@ -3438,18 +3444,25 @@ define([ !value.paraProps.value.can_DeleteInlineContentControl() || !value.paraProps.value.can_EditInlineContentControl()) : false; var in_toc = me.api.asc_GetTableOfContentsPr(true), in_control = !in_toc && me.api.asc_IsContentControl(); - menuTableControl.setVisible(in_control); if (in_control) { var control_props = me.api.asc_GetContentControlProperties(), lock_type = (control_props) ? control_props.get_Lock() : Asc.c_oAscSdtLockType.Unlocked, is_form = control_props && control_props.get_FormPr(); - menuTableRemoveControl.setDisabled(lock_type==Asc.c_oAscSdtLockType.SdtContentLocked || lock_type==Asc.c_oAscSdtLockType.SdtLocked); - menuTableRemoveControl.setCaption(is_form ? me.getControlLabel(control_props) : me.textRemoveControl); - menuTableControlSettings.setVisible(me.mode.canEditContentControl && !is_form); - + menuTableRemoveForm.setVisible(is_form); + menuTableControl.setVisible(!is_form); + if (is_form) { + menuTableRemoveForm.setDisabled(lock_type==Asc.c_oAscSdtLockType.SdtContentLocked || lock_type==Asc.c_oAscSdtLockType.SdtLocked); + menuTableRemoveForm.setCaption(me.getControlLabel(control_props)); + } else { + menuTableRemoveControl.setDisabled(lock_type==Asc.c_oAscSdtLockType.SdtContentLocked || lock_type==Asc.c_oAscSdtLockType.SdtLocked); + menuTableControlSettings.setVisible(me.mode.canEditContentControl); + } var spectype = control_props ? control_props.get_SpecificType() : Asc.c_oAscContentControlSpecificType.None; control_lock = control_lock || spectype==Asc.c_oAscContentControlSpecificType.CheckBox || spectype==Asc.c_oAscContentControlSpecificType.Picture || spectype==Asc.c_oAscContentControlSpecificType.ComboBox || spectype==Asc.c_oAscContentControlSpecificType.DropDownList || spectype==Asc.c_oAscContentControlSpecificType.DateTime; + } else { + menuTableControl.setVisible(in_control); + menuTableRemoveForm.setVisible(in_control); } menuTableTOC.setVisible(in_toc); @@ -3610,6 +3623,7 @@ define([ menuHyperlinkTable, menuTableFollow, menuHyperlinkSeparator, + menuTableRemoveForm, menuTableControl, menuTableTOC, menuParagraphAdvancedInTable From 1403deb08611f27311b1e40470780ecabd1dee9a Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Mon, 7 Feb 2022 16:42:32 +0300 Subject: [PATCH 112/217] [DE PE SSE] Fix bug 55342 --- apps/documenteditor/main/resources/less/layout.less | 2 -- apps/presentationeditor/main/resources/less/layout.less | 3 --- apps/spreadsheeteditor/main/resources/less/layout.less | 2 -- 3 files changed, 7 deletions(-) diff --git a/apps/documenteditor/main/resources/less/layout.less b/apps/documenteditor/main/resources/less/layout.less index b7e06902d..7aeca23cc 100644 --- a/apps/documenteditor/main/resources/less/layout.less +++ b/apps/documenteditor/main/resources/less/layout.less @@ -19,8 +19,6 @@ body { } #viewport { - overflow: scroll; - &::-webkit-scrollbar { width: 0; height: 0; diff --git a/apps/presentationeditor/main/resources/less/layout.less b/apps/presentationeditor/main/resources/less/layout.less index ececafe9e..6e071fd0c 100644 --- a/apps/presentationeditor/main/resources/less/layout.less +++ b/apps/presentationeditor/main/resources/less/layout.less @@ -19,8 +19,6 @@ body { } #viewport { - overflow: scroll; - &::-webkit-scrollbar { width: 0; height: 0; @@ -29,7 +27,6 @@ body { #viewport-vbox-layout { .layout-item:nth-child(3) { - overflow: scroll; &::-webkit-scrollbar { width: 0; diff --git a/apps/spreadsheeteditor/main/resources/less/layout.less b/apps/spreadsheeteditor/main/resources/less/layout.less index 73e06aa0c..b88d75590 100644 --- a/apps/spreadsheeteditor/main/resources/less/layout.less +++ b/apps/spreadsheeteditor/main/resources/less/layout.less @@ -13,8 +13,6 @@ body { bottom: 0; #viewport { - overflow: auto; - &::-webkit-scrollbar { width: 0; height: 0; From abbe7080d5e623b13baadd28cab56c2dcc78fe42 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Tue, 8 Feb 2022 00:04:34 +0300 Subject: [PATCH 113/217] [SSE] Fix print preview when there is nothing to print --- .../main/app/controller/Print.js | 12 +++++++++--- .../main/app/view/FileMenuPanels.js | 9 ++++++++- apps/spreadsheeteditor/main/locale/en.json | 1 + .../main/resources/less/leftmenu.less | 18 ++++++++++++++++++ 4 files changed, 36 insertions(+), 4 deletions(-) diff --git a/apps/spreadsheeteditor/main/app/controller/Print.js b/apps/spreadsheeteditor/main/app/controller/Print.js index 9b869fb01..71905d799 100644 --- a/apps/spreadsheeteditor/main/app/controller/Print.js +++ b/apps/spreadsheeteditor/main/app/controller/Print.js @@ -297,6 +297,7 @@ define([ onShowMainSettingsPrint: function() { this._changedProps = []; + this.printSettings.$previewBox.removeClass('hidden'); if (!this.isFillSheets) { this.isFillSheets = true; @@ -306,10 +307,15 @@ define([ this.fillPrintOptions(this.adjPrintParams, false); var pageCount = this.api.asc_initPrintPreview('print-preview'); - this.updateNavigationButtons(0, pageCount); - this.printSettings.txtNumberPage.checkValidate(); - this._isPreviewVisible = true; + this.printSettings.$previewBox.toggleClass('hidden', !pageCount); + this.printSettings.$previewEmpty.toggleClass('hidden', !!pageCount); + if (!!pageCount) { + this.updateNavigationButtons(0, pageCount); + this.printSettings.txtNumberPage.checkValidate(); + + this._isPreviewVisible = true; + } }, openPrintSettings: function(type, cmp, format, asUrl) { diff --git a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js index 6dc6dfe06..3b4e313fd 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js @@ -2349,6 +2349,9 @@ define([ '', '
', '
', + '', '
' ].join('')), @@ -2648,6 +2651,9 @@ define([ this.$el.on('click', '#print-header-footer-settings', _.bind(this.openHeaderSettings, this)); this.$headerSettings = $('#print-header-footer-settings'); + this.$previewBox = $('#print-preview-box'); + this.$previewEmpty = $('#print-preview-empty'); + if (_.isUndefined(this.scroller)) { this.scroller = new Common.UI.Scroller({ el: this.pnlSettings, @@ -2828,7 +2834,8 @@ define([ txtPage: 'Page', txtOf: 'of {0}', txtSheet: 'Sheet: {0}', - txtPageNumInvalid: 'Page number invalid' + txtPageNumInvalid: 'Page number invalid', + txtEmptyTable: 'There is nothing to print because the table is empty' }, SSE.Views.PrintWithPreview || {})); }); diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 816e3b44e..820634116 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -2783,6 +2783,7 @@ "SSE.Views.PrintWithPreview.txtSettingsOfSheet": "Settings of sheet", "SSE.Views.PrintWithPreview.txtSheet": "Sheet: {0}", "SSE.Views.PrintWithPreview.txtTop": "Top", + "SSE.Views.PrintWithPreview.txtEmptyTable": "There is nothing to print because the table is empty", "SSE.Views.ProtectDialog.textExistName": "ERROR! Range with such a title already exists", "SSE.Views.ProtectDialog.textInvalidName": "The range title must begin with a letter and may only contain letters, numbers, and spaces.", "SSE.Views.ProtectDialog.textInvalidRange": "ERROR! Invalid cells range", diff --git a/apps/spreadsheeteditor/main/resources/less/leftmenu.less b/apps/spreadsheeteditor/main/resources/less/leftmenu.less index bbd690c39..67dafde38 100644 --- a/apps/spreadsheeteditor/main/resources/less/leftmenu.less +++ b/apps/spreadsheeteditor/main/resources/less/leftmenu.less @@ -520,6 +520,24 @@ #panel-print { padding: 0; + #print-preview-empty { + padding: 14px; + color: @text-tertiary-ie; + color: @text-tertiary; + + position: absolute; + left: 280px; + top: 0; + right: 0; + bottom: 0; + display: flex; + justify-content: center; + align-items: center; + + div { + text-align: center; + } + } #id-print-settings { position: absolute; width:280px; From 7558acdd76e507af2ead008b9fccbbee5cdbc5fe Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Tue, 8 Feb 2022 11:18:35 +0300 Subject: [PATCH 114/217] [SSE] Fix Bug 54930 --- .../mobile/src/controller/add/AddFunction.jsx | 8 +++++++- .../src/controller/settings/ApplicationSettings.jsx | 1 + apps/spreadsheeteditor/mobile/src/store/functions.js | 8 ++++---- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/src/controller/add/AddFunction.jsx b/apps/spreadsheeteditor/mobile/src/controller/add/AddFunction.jsx index 8e9d6cae4..46e39c371 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/add/AddFunction.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/add/AddFunction.jsx @@ -15,6 +15,11 @@ class _FunctionGroups extends Component { this.api = Common.EditorApi.get(); this.init(); }); + + Common.Notifications.on('changeRegSettings', () => { + this.api = Common.EditorApi.get(); + this.init(); + }); } componentDidMount() { Common.Notifications.on('document:ready', () => { @@ -46,7 +51,8 @@ class _FunctionGroups extends Component { jsonDesc = data; } const grouparr = this.api.asc_getFormulasInfo(); - this.props.storeFunctions.initFunctions(grouparr, jsonDesc); + const separator = this.api.asc_getFunctionArgumentSeparator(); + this.props.storeFunctions.initFunctions(grouparr, jsonDesc, separator); }; fetch(`locale/l10n/functions/${this._editorLang}_desc.json`) diff --git a/apps/spreadsheeteditor/mobile/src/controller/settings/ApplicationSettings.jsx b/apps/spreadsheeteditor/mobile/src/controller/settings/ApplicationSettings.jsx index e3f2fa1dd..30fc9aeb1 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/settings/ApplicationSettings.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/settings/ApplicationSettings.jsx @@ -85,6 +85,7 @@ class ApplicationSettingsController extends Component { LocalStorage.setItem("sse-settings-regional", regCode); this.initRegSettings(); if (regCode!==null) api.asc_setLocale(+regCode); + Common.Notifications.trigger('changeRegSettings'); } render() { diff --git a/apps/spreadsheeteditor/mobile/src/store/functions.js b/apps/spreadsheeteditor/mobile/src/store/functions.js index c73acc728..f7597ad86 100644 --- a/apps/spreadsheeteditor/mobile/src/store/functions.js +++ b/apps/spreadsheeteditor/mobile/src/store/functions.js @@ -10,11 +10,11 @@ export class storeFunctions { functions = {}; - initFunctions (groups, data) { - this.functions = this.getFunctions(groups, data); + initFunctions (groups, data, separator) { + this.functions = this.getFunctions(groups, data, separator); } - getFunctions (groups, data) { + getFunctions (groups, data, separator) { const functions = {}; for (let g in groups) { const group = groups[g]; @@ -28,7 +28,7 @@ export class storeFunctions { type: _name, group: groupname, caption: func.asc_getLocaleName(), - args: (data && data[_name]) ? data[_name].a : '', + args: ((data && data[_name]) ? data[_name].a : '').replace(/[,;]/g, separator), descr: (data && data[_name]) ? data[_name].d : '' }; } From 3613b107fcc5242ef4e6127f31aeefbb22507f2e Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Tue, 8 Feb 2022 19:22:28 +0300 Subject: [PATCH 115/217] [SSE] Bug 55411 --- apps/spreadsheeteditor/main/app/controller/Print.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/spreadsheeteditor/main/app/controller/Print.js b/apps/spreadsheeteditor/main/app/controller/Print.js index 71905d799..616f237c1 100644 --- a/apps/spreadsheeteditor/main/app/controller/Print.js +++ b/apps/spreadsheeteditor/main/app/controller/Print.js @@ -306,7 +306,9 @@ define([ this.fillPrintOptions(this.adjPrintParams, false); - var pageCount = this.api.asc_initPrintPreview('print-preview'); + var opts = new Asc.asc_CDownloadOptions(null, Common.Utils.isChrome || Common.Utils.isSafari || Common.Utils.isOpera || Common.Utils.isGecko && Common.Utils.firefoxVersion>86); + opts.asc_setAdvancedOptions(this.adjPrintParams); + var pageCount = this.api.asc_initPrintPreview('print-preview', opts); this.printSettings.$previewBox.toggleClass('hidden', !pageCount); this.printSettings.$previewEmpty.toggleClass('hidden', !!pageCount); From 0f385eaa2c5f47c31416391b9d43559cbce5de29 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Tue, 8 Feb 2022 19:29:32 +0300 Subject: [PATCH 116/217] [DE] fix bug 51946 --- apps/common/main/resources/less/dimension-picker.less | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/common/main/resources/less/dimension-picker.less b/apps/common/main/resources/less/dimension-picker.less index 405565a1b..421bf8ec1 100644 --- a/apps/common/main/resources/less/dimension-picker.less +++ b/apps/common/main/resources/less/dimension-picker.less @@ -21,6 +21,10 @@ //background: transparent repeat scroll 0 0; .background-ximage-all('dimension-picker/dimension-highlighted.png', 18px); background-repeat: repeat; + + .pixel-ratio__1_25 &, .pixel-ratio__1_75 & { + image-rendering: pixelated; + } } .dimension-picker-unhighlighted { From b222c556e4732240c9a4d23bb271dceaa4119fb1 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 9 Feb 2022 00:13:56 +0300 Subject: [PATCH 117/217] [DE] Bug 52346 --- .../main/app/view/TableSettings.js | 114 +++++++++++------- 1 file changed, 69 insertions(+), 45 deletions(-) diff --git a/apps/documenteditor/main/app/view/TableSettings.js b/apps/documenteditor/main/app/view/TableSettings.js index 05b84bef1..2a0360355 100644 --- a/apps/documenteditor/main/app/view/TableSettings.js +++ b/apps/documenteditor/main/app/view/TableSettings.js @@ -85,7 +85,10 @@ define([ RepeatRow: false, DisabledControls: false, Width: null, - Height: null + Height: null, + beginPreviewStyles: true, + previewStylesCount: -1, + currentStyleFound: false }; this.spinners = []; this.lockedControls = []; @@ -233,6 +236,10 @@ define([ this.api = o; if (o) { this.api.asc_registerCallback('asc_onInitTableTemplates', _.bind(this.onInitTableTemplates, this)); + this.api.asc_registerCallback('asc_onBeginTableStylesPreview', _.bind(this.onBeginTableStylesPreview, this)); + this.api.asc_registerCallback('asc_onAddTableStylesPreview', _.bind(this.onAddTableStylesPreview, this)); + this.api.asc_registerCallback('asc_onEndTableStylesPreview', _.bind(this.onEndTableStylesPreview, this)); + } return this; }, @@ -524,19 +531,9 @@ define([ //for table-template value = props.get_TableStyle(); if (this._state.TemplateId!==value || this._isTemplatesChanged) { - var rec = this.mnuTableTemplatePicker.store.findWhere({ - templateId: value - }); - if (!rec) { - rec = this.mnuTableTemplatePicker.store.at(0); - } - this.btnTableTemplate.suspendEvents(); - 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 52px'}); - this._state.TemplateId = value; + this._state.currentStyleFound = false; + this.selectCurrentTableStyle(); } this._isTemplatesChanged = false; @@ -740,6 +737,62 @@ define([ !this.btnBorderColor.isAutoColor() && this.btnBorderColor.setColor(this.borderColor.getColor()); }, + selectCurrentTableStyle: function() { + if (!this.mnuTableTemplatePicker) return; + + var rec = this.mnuTableTemplatePicker.store.findWhere({ + templateId: this._state.TemplateId + }); + if (!rec && this._state.previewStylesCount===this.mnuTableTemplatePicker.store.length) { + rec = this.mnuTableTemplatePicker.store.at(0); + } + if (rec) { + this._state.currentStyleFound = true; + this.btnTableTemplate.suspendEvents(); + 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 52px'}); + } + }, + + onBeginTableStylesPreview: function(count){ + this._state.beginPreviewStyles = true; + this._state.currentStyleFound = false; + this._state.previewStylesCount = count; + }, + + onEndTableStylesPreview: function(){ + !this._state.currentStyleFound && this.selectCurrentTableStyle(); + }, + + onAddTableStylesPreview: function(Templates){ + var self = this; + var arr = []; + _.each(Templates, function(template){ + var tip = template.asc_getDisplayName(); + if (template.asc_getType()==0) { + ['Table Grid', 'Plain Table', 'Grid Table', 'List Table', 'Light', 'Dark', 'Colorful', 'Accent'].forEach(function(item){ + var str = 'txtTable_' + item.replace(' ', ''); + if (self[str]) + tip = tip.replace(item, self[str]); + }); + + } + arr.push({ + imageUrl: template.asc_getImage(), + id : Common.UI.getId(), + templateId: template.asc_getId(), + tip : tip + }); + }); + if (this._state.beginPreviewStyles) { + this._state.beginPreviewStyles = false; + self.mnuTableTemplatePicker.store.reset(arr); + } else + self.mnuTableTemplatePicker.store.add(arr); + !this._state.currentStyleFound && this.selectCurrentTableStyle(); + }, + onInitTableTemplates: function(){ if (this._initSettings) { this._tableTemplates = true; @@ -749,7 +802,6 @@ define([ }, _onInitTemplates: function(){ - var Templates = this.api.asc_getTableStylesPreviews(); var self = this; this._isTemplatesChanged = true; @@ -780,39 +832,11 @@ define([ }); }); this.btnTableTemplate.render($('#table-btn-template')); + this.btnTableTemplate.cmpEl.find('.icon-template-table').css({'height': '52px', 'width': '72px', 'background-position': 'center', 'background-size': 'auto 52px'}); this.lockedControls.push(this.btnTableTemplate); this.mnuTableTemplatePicker.on('item:click', _.bind(this.onTableTemplateSelect, this, this.btnTableTemplate)); } - - var count = self.mnuTableTemplatePicker.store.length; - if (count>0 && count==Templates.length) { - var data = self.mnuTableTemplatePicker.dataViewItems; - data && _.each(Templates, function(template, index){ - var img = template.asc_getImage(); - data[index].model.set('imageUrl', img, {silent: true}); - $(data[index].el).find('img').attr('src', img); - }); - } else { - var arr = []; - _.each(Templates, function(template){ - var tip = template.asc_getDisplayName(); - if (template.asc_getType()==0) { - ['Table Grid', 'Plain Table', 'Grid Table', 'List Table', 'Light', 'Dark', 'Colorful', 'Accent'].forEach(function(item){ - var str = 'txtTable_' + item.replace(' ', ''); - if (self[str]) - tip = tip.replace(item, self[str]); - }); - - } - arr.push({ - imageUrl: template.asc_getImage(), - id : Common.UI.getId(), - templateId: template.asc_getId(), - tip : tip - }); - }); - self.mnuTableTemplatePicker.store.reset(arr); - } + this.api.asc_generateTableStylesPreviews(); }, openAdvancedSettings: function(e) { @@ -899,7 +923,7 @@ define([ _.each(this.lockedControls, function(item) { item.setDisabled(disable); }); - this.linkAdvanced.toggleClass('disabled', disable); + this.linkAdvanced && this.linkAdvanced.toggleClass('disabled', disable); } }, From 4d5e925ede20adcc275c8a025094e027aa708120 Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Wed, 9 Feb 2022 14:09:09 +0300 Subject: [PATCH 118/217] [SSE] Fix Bug 55304 --- apps/spreadsheeteditor/mobile/src/page/main.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/spreadsheeteditor/mobile/src/page/main.jsx b/apps/spreadsheeteditor/mobile/src/page/main.jsx index 6eaedaee7..9b0c3a91a 100644 --- a/apps/spreadsheeteditor/mobile/src/page/main.jsx +++ b/apps/spreadsheeteditor/mobile/src/page/main.jsx @@ -148,7 +148,7 @@ class MainPage extends Component { } - + {/* hidden component*/} From 3f0f2cd2ab035a9b233039e38d386bfd5ed72e8f Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Wed, 9 Feb 2022 14:31:28 +0300 Subject: [PATCH 119/217] [SSE] Fix Bug 55407 --- apps/spreadsheeteditor/mobile/src/less/icons-ios.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/spreadsheeteditor/mobile/src/less/icons-ios.less b/apps/spreadsheeteditor/mobile/src/less/icons-ios.less index c61930cb2..c4bffc20b 100644 --- a/apps/spreadsheeteditor/mobile/src/less/icons-ios.less +++ b/apps/spreadsheeteditor/mobile/src/less/icons-ios.less @@ -142,7 +142,7 @@ &.icon-image-library { width: 22px; height: 22px; - .encoded-svg-mask('icons_for_svg'); + .encoded-svg-background('icons_for_svg'); } &.icon-cell-wrap { width: 22px; From 0b93ca69e74a5fc07f913d20cf99bfd301cbe028 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 9 Feb 2022 15:45:30 +0300 Subject: [PATCH 120/217] [DE] Bug 52346: draw current style --- apps/documenteditor/main/app/view/TableSettings.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/documenteditor/main/app/view/TableSettings.js b/apps/documenteditor/main/app/view/TableSettings.js index 2a0360355..f7524b6c7 100644 --- a/apps/documenteditor/main/app/view/TableSettings.js +++ b/apps/documenteditor/main/app/view/TableSettings.js @@ -74,7 +74,7 @@ define([ this._initSettings = true; this._state = { - TemplateId: 0, + TemplateId: undefined, CheckHeader: false, CheckTotal: false, CheckBanded: false, @@ -532,6 +532,9 @@ define([ value = props.get_TableStyle(); if (this._state.TemplateId!==value || this._isTemplatesChanged) { this._state.TemplateId = value; + var template = this.api.asc_getTableStylesPreviews(false, [this._state.TemplateId]); + if (template && template.length>0) + this.$el.find('.icon-template-table').css({'background-image': 'url(' + template[0].asc_getImage() + ')', 'height': '52px', 'width': '72px', 'background-position': 'center', 'background-size': 'auto 52px'}); this._state.currentStyleFound = false; this.selectCurrentTableStyle(); } From 018cab4c085e9bd52b3c18e21a5388852eb7deab Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Wed, 9 Feb 2022 18:31:08 +0400 Subject: [PATCH 121/217] [DE mobile] Fix Bug 55393 --- apps/documenteditor/mobile/src/controller/ContextMenu.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/documenteditor/mobile/src/controller/ContextMenu.jsx b/apps/documenteditor/mobile/src/controller/ContextMenu.jsx index cfc17f568..9bccbeee3 100644 --- a/apps/documenteditor/mobile/src/controller/ContextMenu.jsx +++ b/apps/documenteditor/mobile/src/controller/ContextMenu.jsx @@ -267,7 +267,7 @@ class ContextMenu extends ContextMenuController { }); } - if ( canFillForms && !locked ) { + if ( canFillForms && canCopy && !locked ) { itemsIcon.push({ event: 'paste', icon: 'icon-paste' From 82fec34f7419e5f3b7645f38e66ac2a421c7e177 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 9 Feb 2022 17:48:26 +0300 Subject: [PATCH 122/217] Add userInfo permissions: hide users not in permissions.userInfo groups --- apps/api/documents/api.js | 1 + apps/documenteditor/main/app/controller/Main.js | 2 ++ apps/documenteditor/mobile/src/store/appOptions.js | 2 ++ apps/presentationeditor/main/app/controller/Main.js | 2 ++ apps/presentationeditor/mobile/src/store/appOptions.js | 2 ++ apps/spreadsheeteditor/main/app/controller/Main.js | 2 ++ apps/spreadsheeteditor/mobile/src/store/appOptions.js | 2 ++ 7 files changed, 13 insertions(+) diff --git a/apps/api/documents/api.js b/apps/api/documents/api.js index 4eaf9b218..d73ae8214 100644 --- a/apps/api/documents/api.js +++ b/apps/api/documents/api.js @@ -56,6 +56,7 @@ edit: ["Group1", ""] // current user can edit comments made by users from Group1 and users without a group. remove: ["Group1", ""] // current user can remove comments made by users from Group1 and users without a group. }, + userInfo: ["Group1", ""], // show tooltips/cursors/info in header only for users in userInfo groups. [""] - means users without group, [] - don't show any users, null/undefined/"" - show all users protect: // default = true. show/hide protect tab or protect buttons } }, diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index 483c8f70b..3d7a7ff79 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -1481,10 +1481,12 @@ define([ this.appOptions.canUseReviewPermissions = this.appOptions.canLicense && (!!this.permissions.reviewGroups || this.editorConfig.customization && this.editorConfig.customization.reviewPermissions && (typeof (this.editorConfig.customization.reviewPermissions) == 'object')); this.appOptions.canUseCommentPermissions = this.appOptions.canLicense && !!this.permissions.commentGroups; + this.appOptions.canUseUserInfoPermissions = this.appOptions.canLicense && !!this.permissions.userInfo; AscCommon.UserInfoParser.setParser(true); AscCommon.UserInfoParser.setCurrentName(this.appOptions.user.fullname); this.appOptions.canUseReviewPermissions && AscCommon.UserInfoParser.setReviewPermissions(this.permissions.reviewGroups, this.editorConfig.customization.reviewPermissions); this.appOptions.canUseCommentPermissions && AscCommon.UserInfoParser.setCommentPermissions(this.permissions.commentGroups); + this.appOptions.canUseUserInfoPermissions && AscCommon.UserInfoParser.setUserInfoPermissions(this.permissions.userInfo); appHeader.setUserName(AscCommon.UserInfoParser.getParsedName(AscCommon.UserInfoParser.getCurrentName())); this.appOptions.canRename && appHeader.setCanRename(true); diff --git a/apps/documenteditor/mobile/src/store/appOptions.js b/apps/documenteditor/mobile/src/store/appOptions.js index d4c8a86f2..515e7b115 100644 --- a/apps/documenteditor/mobile/src/store/appOptions.js +++ b/apps/documenteditor/mobile/src/store/appOptions.js @@ -141,8 +141,10 @@ export class storeAppOptions { this.canUseReviewPermissions = this.canLicense && (!!permissions.reviewGroups || this.customization && this.customization.reviewPermissions && (typeof (this.customization.reviewPermissions) == 'object')); this.canUseCommentPermissions = this.canLicense && !!permissions.commentGroups; + this.canUseUserInfoPermissions = this.canLicense && !!permissions.userInfo; this.canUseReviewPermissions && AscCommon.UserInfoParser.setReviewPermissions(permissions.reviewGroups, this.customization.reviewPermissions); this.canUseCommentPermissions && AscCommon.UserInfoParser.setCommentPermissions(permissions.commentGroups); + this.canUseUserInfoPermissions && AscCommon.UserInfoParser.setUserInfoPermissions(permissions.userInfo); } setCanViewReview (value) { this.canViewReview = value; diff --git a/apps/presentationeditor/main/app/controller/Main.js b/apps/presentationeditor/main/app/controller/Main.js index 5df6928e3..20473487f 100644 --- a/apps/presentationeditor/main/app/controller/Main.js +++ b/apps/presentationeditor/main/app/controller/Main.js @@ -1153,10 +1153,12 @@ define([ this.appOptions.canUseReviewPermissions = this.appOptions.canLicense && (!!this.permissions.reviewGroups || this.appOptions.canLicense && this.editorConfig.customization && this.editorConfig.customization.reviewPermissions && (typeof (this.editorConfig.customization.reviewPermissions) == 'object')); this.appOptions.canUseCommentPermissions = this.appOptions.canLicense && !!this.permissions.commentGroups; + this.appOptions.canUseUserInfoPermissions = this.appOptions.canLicense && !!this.permissions.userInfo; AscCommon.UserInfoParser.setParser(true); AscCommon.UserInfoParser.setCurrentName(this.appOptions.user.fullname); this.appOptions.canUseReviewPermissions && AscCommon.UserInfoParser.setReviewPermissions(this.permissions.reviewGroups, this.editorConfig.customization.reviewPermissions); this.appOptions.canUseCommentPermissions && AscCommon.UserInfoParser.setCommentPermissions(this.permissions.commentGroups); + this.appOptions.canUseUserInfoPermissions && AscCommon.UserInfoParser.setUserInfoPermissions(this.permissions.userInfo); appHeader.setUserName(AscCommon.UserInfoParser.getParsedName(AscCommon.UserInfoParser.getCurrentName())); this.appOptions.canRename && appHeader.setCanRename(true); diff --git a/apps/presentationeditor/mobile/src/store/appOptions.js b/apps/presentationeditor/mobile/src/store/appOptions.js index a84de7373..4c50cd25f 100644 --- a/apps/presentationeditor/mobile/src/store/appOptions.js +++ b/apps/presentationeditor/mobile/src/store/appOptions.js @@ -112,7 +112,9 @@ export class storeAppOptions { this.canUseReviewPermissions = this.canLicense && (!!permissions.reviewGroups || this.customization && this.customization.reviewPermissions && (typeof (this.customization.reviewPermissions) == 'object')); this.canUseCommentPermissions = this.canLicense && !!permissions.commentGroups; + this.canUseUserInfoPermissions = this.canLicense && !!permissions.userInfo; this.canUseReviewPermissions && AscCommon.UserInfoParser.setReviewPermissions(permissions.reviewGroups, this.customization.reviewPermissions); this.canUseCommentPermissions && AscCommon.UserInfoParser.setCommentPermissions(permissions.commentGroups); + this.canUseUserInfoPermissions && AscCommon.UserInfoParser.setUserInfoPermissions(permissions.userInfo); } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js index 1a13e7f58..320db5d73 100644 --- a/apps/spreadsheeteditor/main/app/controller/Main.js +++ b/apps/spreadsheeteditor/main/app/controller/Main.js @@ -1230,10 +1230,12 @@ define([ this.appOptions.canUseReviewPermissions = this.appOptions.canLicense && (!!this.permissions.reviewGroups || this.appOptions.canLicense && this.editorConfig.customization && this.editorConfig.customization.reviewPermissions && (typeof (this.editorConfig.customization.reviewPermissions) == 'object')); this.appOptions.canUseCommentPermissions = this.appOptions.canLicense && !!this.permissions.commentGroups; + this.appOptions.canUseUserInfoPermissions = this.appOptions.canLicense && !!this.permissions.userInfo; AscCommon.UserInfoParser.setParser(true); AscCommon.UserInfoParser.setCurrentName(this.appOptions.user.fullname); this.appOptions.canUseReviewPermissions && AscCommon.UserInfoParser.setReviewPermissions(this.permissions.reviewGroups, this.editorConfig.customization.reviewPermissions); this.appOptions.canUseCommentPermissions && AscCommon.UserInfoParser.setCommentPermissions(this.permissions.commentGroups); + this.appOptions.canUseUserInfoPermissions && AscCommon.UserInfoParser.setUserInfoPermissions(this.permissions.userInfo); this.headerView.setUserName(AscCommon.UserInfoParser.getParsedName(AscCommon.UserInfoParser.getCurrentName())); } else this.appOptions.canModifyFilter = true; diff --git a/apps/spreadsheeteditor/mobile/src/store/appOptions.js b/apps/spreadsheeteditor/mobile/src/store/appOptions.js index 106748fb8..9e5ac9964 100644 --- a/apps/spreadsheeteditor/mobile/src/store/appOptions.js +++ b/apps/spreadsheeteditor/mobile/src/store/appOptions.js @@ -107,7 +107,9 @@ export class storeAppOptions { this.canUseReviewPermissions = this.canLicense && (!!permissions.reviewGroups || this.customization && this.customization.reviewPermissions && (typeof (this.customization.reviewPermissions) == 'object')); this.canUseCommentPermissions = this.canLicense && !!permissions.commentGroups; + this.canUseUserInfoPermissions = this.canLicense && !!permissions.userInfo; this.canUseReviewPermissions && AscCommon.UserInfoParser.setReviewPermissions(permissions.reviewGroups, this.customization.reviewPermissions); this.canUseCommentPermissions && AscCommon.UserInfoParser.setCommentPermissions(permissions.commentGroups); + this.canUseUserInfoPermissions && AscCommon.UserInfoParser.setUserInfoPermissions(permissions.userInfo); } } \ No newline at end of file From ac1dcce854a68a769386c8f1965154f14e9d7055 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 9 Feb 2022 18:14:19 +0300 Subject: [PATCH 123/217] permissions.userInfo->permissions.userInfoGroups --- apps/api/documents/api.js | 2 +- apps/documenteditor/main/app/controller/Main.js | 4 ++-- apps/documenteditor/mobile/src/store/appOptions.js | 4 ++-- apps/presentationeditor/main/app/controller/Main.js | 4 ++-- apps/presentationeditor/mobile/src/store/appOptions.js | 4 ++-- apps/spreadsheeteditor/main/app/controller/Main.js | 4 ++-- apps/spreadsheeteditor/mobile/src/store/appOptions.js | 4 ++-- 7 files changed, 13 insertions(+), 13 deletions(-) diff --git a/apps/api/documents/api.js b/apps/api/documents/api.js index d73ae8214..f7b3f9f71 100644 --- a/apps/api/documents/api.js +++ b/apps/api/documents/api.js @@ -56,7 +56,7 @@ edit: ["Group1", ""] // current user can edit comments made by users from Group1 and users without a group. remove: ["Group1", ""] // current user can remove comments made by users from Group1 and users without a group. }, - userInfo: ["Group1", ""], // show tooltips/cursors/info in header only for users in userInfo groups. [""] - means users without group, [] - don't show any users, null/undefined/"" - show all users + userInfoGroups: ["Group1", ""], // show tooltips/cursors/info in header only for users in userInfoGroups groups. [""] - means users without group, [] - don't show any users, null/undefined/"" - show all users protect: // default = true. show/hide protect tab or protect buttons } }, diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index 3d7a7ff79..bb1c6d83f 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -1481,12 +1481,12 @@ define([ this.appOptions.canUseReviewPermissions = this.appOptions.canLicense && (!!this.permissions.reviewGroups || this.editorConfig.customization && this.editorConfig.customization.reviewPermissions && (typeof (this.editorConfig.customization.reviewPermissions) == 'object')); this.appOptions.canUseCommentPermissions = this.appOptions.canLicense && !!this.permissions.commentGroups; - this.appOptions.canUseUserInfoPermissions = this.appOptions.canLicense && !!this.permissions.userInfo; + this.appOptions.canUseUserInfoPermissions = this.appOptions.canLicense && !!this.permissions.userInfoGroups; AscCommon.UserInfoParser.setParser(true); AscCommon.UserInfoParser.setCurrentName(this.appOptions.user.fullname); this.appOptions.canUseReviewPermissions && AscCommon.UserInfoParser.setReviewPermissions(this.permissions.reviewGroups, this.editorConfig.customization.reviewPermissions); this.appOptions.canUseCommentPermissions && AscCommon.UserInfoParser.setCommentPermissions(this.permissions.commentGroups); - this.appOptions.canUseUserInfoPermissions && AscCommon.UserInfoParser.setUserInfoPermissions(this.permissions.userInfo); + this.appOptions.canUseUserInfoPermissions && AscCommon.UserInfoParser.setUserInfoPermissions(this.permissions.userInfoGroups); appHeader.setUserName(AscCommon.UserInfoParser.getParsedName(AscCommon.UserInfoParser.getCurrentName())); this.appOptions.canRename && appHeader.setCanRename(true); diff --git a/apps/documenteditor/mobile/src/store/appOptions.js b/apps/documenteditor/mobile/src/store/appOptions.js index 515e7b115..83a839d05 100644 --- a/apps/documenteditor/mobile/src/store/appOptions.js +++ b/apps/documenteditor/mobile/src/store/appOptions.js @@ -141,10 +141,10 @@ export class storeAppOptions { this.canUseReviewPermissions = this.canLicense && (!!permissions.reviewGroups || this.customization && this.customization.reviewPermissions && (typeof (this.customization.reviewPermissions) == 'object')); this.canUseCommentPermissions = this.canLicense && !!permissions.commentGroups; - this.canUseUserInfoPermissions = this.canLicense && !!permissions.userInfo; + this.canUseUserInfoPermissions = this.canLicense && !!permissions.userInfoGroups; this.canUseReviewPermissions && AscCommon.UserInfoParser.setReviewPermissions(permissions.reviewGroups, this.customization.reviewPermissions); this.canUseCommentPermissions && AscCommon.UserInfoParser.setCommentPermissions(permissions.commentGroups); - this.canUseUserInfoPermissions && AscCommon.UserInfoParser.setUserInfoPermissions(permissions.userInfo); + this.canUseUserInfoPermissions && AscCommon.UserInfoParser.setUserInfoPermissions(permissions.userInfoGroups); } setCanViewReview (value) { this.canViewReview = value; diff --git a/apps/presentationeditor/main/app/controller/Main.js b/apps/presentationeditor/main/app/controller/Main.js index 20473487f..317aa99f1 100644 --- a/apps/presentationeditor/main/app/controller/Main.js +++ b/apps/presentationeditor/main/app/controller/Main.js @@ -1153,12 +1153,12 @@ define([ this.appOptions.canUseReviewPermissions = this.appOptions.canLicense && (!!this.permissions.reviewGroups || this.appOptions.canLicense && this.editorConfig.customization && this.editorConfig.customization.reviewPermissions && (typeof (this.editorConfig.customization.reviewPermissions) == 'object')); this.appOptions.canUseCommentPermissions = this.appOptions.canLicense && !!this.permissions.commentGroups; - this.appOptions.canUseUserInfoPermissions = this.appOptions.canLicense && !!this.permissions.userInfo; + this.appOptions.canUseUserInfoPermissions = this.appOptions.canLicense && !!this.permissions.userInfoGroups; AscCommon.UserInfoParser.setParser(true); AscCommon.UserInfoParser.setCurrentName(this.appOptions.user.fullname); this.appOptions.canUseReviewPermissions && AscCommon.UserInfoParser.setReviewPermissions(this.permissions.reviewGroups, this.editorConfig.customization.reviewPermissions); this.appOptions.canUseCommentPermissions && AscCommon.UserInfoParser.setCommentPermissions(this.permissions.commentGroups); - this.appOptions.canUseUserInfoPermissions && AscCommon.UserInfoParser.setUserInfoPermissions(this.permissions.userInfo); + this.appOptions.canUseUserInfoPermissions && AscCommon.UserInfoParser.setUserInfoPermissions(this.permissions.userInfoGroups); appHeader.setUserName(AscCommon.UserInfoParser.getParsedName(AscCommon.UserInfoParser.getCurrentName())); this.appOptions.canRename && appHeader.setCanRename(true); diff --git a/apps/presentationeditor/mobile/src/store/appOptions.js b/apps/presentationeditor/mobile/src/store/appOptions.js index 4c50cd25f..97b83a381 100644 --- a/apps/presentationeditor/mobile/src/store/appOptions.js +++ b/apps/presentationeditor/mobile/src/store/appOptions.js @@ -112,9 +112,9 @@ export class storeAppOptions { this.canUseReviewPermissions = this.canLicense && (!!permissions.reviewGroups || this.customization && this.customization.reviewPermissions && (typeof (this.customization.reviewPermissions) == 'object')); this.canUseCommentPermissions = this.canLicense && !!permissions.commentGroups; - this.canUseUserInfoPermissions = this.canLicense && !!permissions.userInfo; + this.canUseUserInfoPermissions = this.canLicense && !!permissions.userInfoGroups; this.canUseReviewPermissions && AscCommon.UserInfoParser.setReviewPermissions(permissions.reviewGroups, this.customization.reviewPermissions); this.canUseCommentPermissions && AscCommon.UserInfoParser.setCommentPermissions(permissions.commentGroups); - this.canUseUserInfoPermissions && AscCommon.UserInfoParser.setUserInfoPermissions(permissions.userInfo); + this.canUseUserInfoPermissions && AscCommon.UserInfoParser.setUserInfoPermissions(permissions.userInfoGroups); } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js index 320db5d73..dd5e3385c 100644 --- a/apps/spreadsheeteditor/main/app/controller/Main.js +++ b/apps/spreadsheeteditor/main/app/controller/Main.js @@ -1230,12 +1230,12 @@ define([ this.appOptions.canUseReviewPermissions = this.appOptions.canLicense && (!!this.permissions.reviewGroups || this.appOptions.canLicense && this.editorConfig.customization && this.editorConfig.customization.reviewPermissions && (typeof (this.editorConfig.customization.reviewPermissions) == 'object')); this.appOptions.canUseCommentPermissions = this.appOptions.canLicense && !!this.permissions.commentGroups; - this.appOptions.canUseUserInfoPermissions = this.appOptions.canLicense && !!this.permissions.userInfo; + this.appOptions.canUseUserInfoPermissions = this.appOptions.canLicense && !!this.permissions.userInfoGroups; AscCommon.UserInfoParser.setParser(true); AscCommon.UserInfoParser.setCurrentName(this.appOptions.user.fullname); this.appOptions.canUseReviewPermissions && AscCommon.UserInfoParser.setReviewPermissions(this.permissions.reviewGroups, this.editorConfig.customization.reviewPermissions); this.appOptions.canUseCommentPermissions && AscCommon.UserInfoParser.setCommentPermissions(this.permissions.commentGroups); - this.appOptions.canUseUserInfoPermissions && AscCommon.UserInfoParser.setUserInfoPermissions(this.permissions.userInfo); + this.appOptions.canUseUserInfoPermissions && AscCommon.UserInfoParser.setUserInfoPermissions(this.permissions.userInfoGroups); this.headerView.setUserName(AscCommon.UserInfoParser.getParsedName(AscCommon.UserInfoParser.getCurrentName())); } else this.appOptions.canModifyFilter = true; diff --git a/apps/spreadsheeteditor/mobile/src/store/appOptions.js b/apps/spreadsheeteditor/mobile/src/store/appOptions.js index 9e5ac9964..cdecf77b8 100644 --- a/apps/spreadsheeteditor/mobile/src/store/appOptions.js +++ b/apps/spreadsheeteditor/mobile/src/store/appOptions.js @@ -107,9 +107,9 @@ export class storeAppOptions { this.canUseReviewPermissions = this.canLicense && (!!permissions.reviewGroups || this.customization && this.customization.reviewPermissions && (typeof (this.customization.reviewPermissions) == 'object')); this.canUseCommentPermissions = this.canLicense && !!permissions.commentGroups; - this.canUseUserInfoPermissions = this.canLicense && !!permissions.userInfo; + this.canUseUserInfoPermissions = this.canLicense && !!permissions.userInfoGroups; this.canUseReviewPermissions && AscCommon.UserInfoParser.setReviewPermissions(permissions.reviewGroups, this.customization.reviewPermissions); this.canUseCommentPermissions && AscCommon.UserInfoParser.setCommentPermissions(permissions.commentGroups); - this.canUseUserInfoPermissions && AscCommon.UserInfoParser.setUserInfoPermissions(permissions.userInfo); + this.canUseUserInfoPermissions && AscCommon.UserInfoParser.setUserInfoPermissions(permissions.userInfoGroups); } } \ No newline at end of file From cc2b1309b70827b22bdfa5dc761b0ae7223ea802 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 9 Feb 2022 22:51:43 +0300 Subject: [PATCH 124/217] [DE][PE][SSE] Add scroll to context menu --- apps/common/main/lib/component/Menu.js | 23 ++++++++++++++++++- .../main/app/view/DocumentHolder.js | 4 +++- .../main/app/view/DocumentHolder.js | 3 +++ .../main/app/view/DocumentHolder.js | 2 ++ 4 files changed, 30 insertions(+), 2 deletions(-) diff --git a/apps/common/main/lib/component/Menu.js b/apps/common/main/lib/component/Menu.js index d8c410063..b5eb87827 100644 --- a/apps/common/main/lib/component/Menu.js +++ b/apps/common/main/lib/component/Menu.js @@ -651,7 +651,28 @@ define([ if (left < 0) left = 0; - if (this.options.restoreHeight) { + if (this.options.restoreHeightAndTop) { // can change top position, if top<0 - then change menu height + var cg = Common.Utils.croppedGeometry(); + docH = cg.height - 10; + menuRoot.css('max-height', 'none'); + menuH = menuRoot.outerHeight(); + if (top + menuH > docH + cg.top) { + top = docH - menuH; + } + if (top < cg.top) + top = cg.top; + if (top + menuH > docH + cg.top) { + menuRoot.css('max-height', (docH - top) + 'px'); + (!this.scroller) && (this.scroller = new Common.UI.Scroller({ + el: this.$el.find('.dropdown-menu '), + minScrollbarLength: 30, + suppressScrollX: true, + alwaysVisibleY: this.scrollAlwaysVisible + })); + this.wheelSpeed = undefined; + } + this.scroller && this.scroller.update({alwaysVisibleY: this.scrollAlwaysVisible}); + } else if (this.options.restoreHeight) { if (typeof (this.options.restoreHeight) == "number") { if (top + menuH > docH) { menuRoot.css('max-height', (docH - top) + 'px'); diff --git a/apps/documenteditor/main/app/view/DocumentHolder.js b/apps/documenteditor/main/app/view/DocumentHolder.js index 9dc0ff682..f85484e2c 100644 --- a/apps/documenteditor/main/app/view/DocumentHolder.js +++ b/apps/documenteditor/main/app/view/DocumentHolder.js @@ -2671,6 +2671,7 @@ define([ this.pictureMenu = new Common.UI.Menu({ cls: 'shifted-right', + restoreHeightAndTop: true, initMenu: function(value){ if (_.isUndefined(value.imgProps)) return; @@ -3283,7 +3284,7 @@ define([ this.tableMenu = new Common.UI.Menu({ cls: 'shifted-right', - // maxHeight: 610, + restoreHeightAndTop: true, initMenu: function(value){ // table properties if (_.isUndefined(value.tableProps)) @@ -4004,6 +4005,7 @@ define([ this.textMenu = new Common.UI.Menu({ cls: 'shifted-right', + restoreHeightAndTop: true, initMenu: function(value){ var isInShape = (value.imgProps && value.imgProps.value && !_.isNull(value.imgProps.value.get_ShapeProperties())); var isInChart = (value.imgProps && value.imgProps.value && !_.isNull(value.imgProps.value.get_ChartProperties())); diff --git a/apps/presentationeditor/main/app/view/DocumentHolder.js b/apps/presentationeditor/main/app/view/DocumentHolder.js index 731df772b..27fbce12f 100644 --- a/apps/presentationeditor/main/app/view/DocumentHolder.js +++ b/apps/presentationeditor/main/app/view/DocumentHolder.js @@ -2056,6 +2056,7 @@ define([ me.slideMenu = new Common.UI.Menu({ cls: 'shifted-right', + restoreHeightAndTop: true, initMenu: function(value) { var selectedLast = me.api.asc_IsLastSlideSelected(), selectedFirst = me.api.asc_IsFirstSlideSelected(); @@ -3342,6 +3343,7 @@ define([ me.tableMenu = new Common.UI.Menu({ cls: 'shifted-right', + restoreHeightAndTop: true, initMenu: function(value){ // table properties if (_.isUndefined(value.tableProps)) @@ -3555,6 +3557,7 @@ define([ me.pictureMenu = new Common.UI.Menu({ cls: 'shifted-right', + restoreHeightAndTop: true, initMenu: function(value){ if (me.api) { mnuUnGroupImg.setDisabled(!me.api.canUnGroup()); diff --git a/apps/spreadsheeteditor/main/app/view/DocumentHolder.js b/apps/spreadsheeteditor/main/app/view/DocumentHolder.js index c6dccabdd..ee6847814 100644 --- a/apps/spreadsheeteditor/main/app/view/DocumentHolder.js +++ b/apps/spreadsheeteditor/main/app/view/DocumentHolder.js @@ -552,6 +552,7 @@ define([ me.ssMenu = new Common.UI.Menu({ cls: 'shifted-right', + restoreHeightAndTop: true, id : 'id-context-menu-cell', items : [ me.pmiCut, @@ -831,6 +832,7 @@ define([ this.imgMenu = new Common.UI.Menu({ cls: 'shifted-right', + restoreHeightAndTop: true, items: [ me.pmiImgCut, me.pmiImgCopy, From 9457ba1d01640691597ac3c296458ecc9c17f974 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 10 Feb 2022 00:13:01 +0300 Subject: [PATCH 125/217] [DE] Fix Bug 55409 --- apps/documenteditor/main/app/view/FormSettings.js | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/documenteditor/main/app/view/FormSettings.js b/apps/documenteditor/main/app/view/FormSettings.js index 1cd144720..fc1762dad 100644 --- a/apps/documenteditor/main/app/view/FormSettings.js +++ b/apps/documenteditor/main/app/view/FormSettings.js @@ -178,6 +178,7 @@ define([ value: '10', maxValue: 1000000, minValue: 1, + allowDecimal: false, dataHint: '1', dataHintDirection: 'bottom', dataHintOffset: 'big' From 8762bbb0bad33146d9320d8bdc4edbba80ee520f Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Thu, 10 Feb 2022 17:20:16 +0300 Subject: [PATCH 126/217] [DE PE] Fix Bug 55447 --- apps/common/mobile/resources/less/common-ios.less | 1 + apps/common/mobile/resources/less/common-material.less | 1 + 2 files changed, 2 insertions(+) diff --git a/apps/common/mobile/resources/less/common-ios.less b/apps/common/mobile/resources/less/common-ios.less index 88687b271..ec6c1dea7 100644 --- a/apps/common/mobile/resources/less/common-ios.less +++ b/apps/common/mobile/resources/less/common-ios.less @@ -215,6 +215,7 @@ text-align: center; position: absolute; top: 34%; + color: @fill-black; } } } diff --git a/apps/common/mobile/resources/less/common-material.less b/apps/common/mobile/resources/less/common-material.less index 05ec85112..146426690 100644 --- a/apps/common/mobile/resources/less/common-material.less +++ b/apps/common/mobile/resources/less/common-material.less @@ -401,6 +401,7 @@ text-align: center; position: absolute; top: 34%; + color: @fill-black; } } } From c7b06d2a9c12ae3023249952242db2f87c6480bd Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Thu, 10 Feb 2022 18:15:07 +0300 Subject: [PATCH 127/217] [DE] Fix bug 55350 --- apps/common/main/resources/less/treeview.less | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/apps/common/main/resources/less/treeview.less b/apps/common/main/resources/less/treeview.less index 6a14d2827..295850fba 100644 --- a/apps/common/main/resources/less/treeview.less +++ b/apps/common/main/resources/less/treeview.less @@ -83,4 +83,11 @@ transform: rotate(270deg); } } +} + +.safari { + .treeview .name::before { + content: ''; + display: block; + } } \ No newline at end of file From 40d983a66de795eb7c2ea088e47577dad5bbb3db Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 10 Feb 2022 18:56:58 +0300 Subject: [PATCH 128/217] [DE] Fix right panel --- apps/documenteditor/main/app/controller/RightMenu.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/documenteditor/main/app/controller/RightMenu.js b/apps/documenteditor/main/app/controller/RightMenu.js index 8143676de..8cd9380d3 100644 --- a/apps/documenteditor/main/app/controller/RightMenu.js +++ b/apps/documenteditor/main/app/controller/RightMenu.js @@ -131,6 +131,10 @@ define([ this.rightmenu.fireEvent('editcomplete', this.rightmenu); }, + onApiFocusObject: function(SelectedObjects) { + this.onFocusObject(SelectedObjects); + }, + onFocusObject: function(SelectedObjects, forceSignature) { if (!this.editMode && !forceSignature) return; @@ -339,7 +343,7 @@ define([ createDelayedElements: function() { var me = this; if (this.api) { - this.api.asc_registerCallback('asc_onFocusObject', _.bind(this.onFocusObject, this)); + this.api.asc_registerCallback('asc_onFocusObject', _.bind(this.onApiFocusObject, this)); this.api.asc_registerCallback('asc_doubleClickOnObject', _.bind(this.onDoubleClickOnObject, this)); if (this.rightmenu.mergeSettings) { this.rightmenu.mergeSettings.setDocumentName(this.getApplication().getController('Viewport').getView('Common.Views.Header').getDocumentCaption()); From f812d0eade070eee4adae18da8265ae2f37110a9 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 10 Feb 2022 19:13:09 +0300 Subject: [PATCH 129/217] [DE] Fix right panel --- apps/documenteditor/main/app/controller/RightMenu.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/documenteditor/main/app/controller/RightMenu.js b/apps/documenteditor/main/app/controller/RightMenu.js index 6bb56edb4..c360de65b 100644 --- a/apps/documenteditor/main/app/controller/RightMenu.js +++ b/apps/documenteditor/main/app/controller/RightMenu.js @@ -131,6 +131,10 @@ define([ this.rightmenu.fireEvent('editcomplete', this.rightmenu); }, + onApiFocusObject: function(SelectedObjects) { + this.onFocusObject(SelectedObjects); + }, + onFocusObject: function(SelectedObjects, forceSignature) { if (!this.editMode && !forceSignature) return; @@ -339,7 +343,7 @@ define([ createDelayedElements: function() { var me = this; if (this.api) { - this.api.asc_registerCallback('asc_onFocusObject', _.bind(this.onFocusObject, this)); + this.api.asc_registerCallback('asc_onFocusObject', _.bind(this.onApiFocusObject, this)); this.api.asc_registerCallback('asc_doubleClickOnObject', _.bind(this.onDoubleClickOnObject, this)); if (this.rightmenu.mergeSettings) { this.rightmenu.mergeSettings.setDocumentName(this.getApplication().getController('Viewport').getView('Common.Views.Header').getDocumentCaption()); From 6ca7553b3f7a864ab5baa428851990c10aa6e058 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Thu, 10 Feb 2022 20:28:08 +0400 Subject: [PATCH 130/217] [SSE mobile] Fix Bug 55252 --- .../mobile/src/view/edit/EditCell.jsx | 34 ++++++++++--------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx b/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx index 18dd0518c..2ab4ceb8b 100644 --- a/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx @@ -111,22 +111,24 @@ const EditCell = props => { {_t.textCellStyles} {cellStyles.length ? ( - - {arraySlides.map((_, indexSlide) => { - let stylesSlide = cellStyles.slice(indexSlide * 9, (indexSlide * 9) + 9); - - return ( - - - {stylesSlide.map((elem, index) => ( - props.onStyleClick(elem.name)}> -
-
- ))} -
-
- )})} -
+
+
+ {arraySlides.map((_, indexSlide) => { + let stylesSlide = cellStyles.slice(indexSlide * 9, (indexSlide * 9) + 9); + + return ( +
+ + {stylesSlide.map((elem, index) => ( + props.onStyleClick(elem.name)}> +
+
+ ))} +
+
+ )})} +
+
) : null} } From ad0e2d600274ba120568c2282536627836385a12 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 10 Feb 2022 19:28:29 +0300 Subject: [PATCH 131/217] [DE] Show right panel after preview modes (form, review) --- apps/common/main/lib/controller/ReviewChanges.js | 2 +- apps/documenteditor/main/app/controller/FormsTab.js | 2 +- apps/documenteditor/main/app/controller/RightMenu.js | 6 +++--- apps/documenteditor/main/app/view/RightMenu.js | 3 +++ 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/apps/common/main/lib/controller/ReviewChanges.js b/apps/common/main/lib/controller/ReviewChanges.js index 89af9cccb..61241e5d8 100644 --- a/apps/common/main/lib/controller/ReviewChanges.js +++ b/apps/common/main/lib/controller/ReviewChanges.js @@ -788,7 +788,7 @@ define([ allowMerge: false, allowSignature: false, allowProtect: false, - rightMenu: {clear: true, disable: true}, + rightMenu: {clear: disable, disable: true}, statusBar: true, leftMenu: {disable: false, previewMode: true}, fileMenu: {protect: true}, diff --git a/apps/documenteditor/main/app/controller/FormsTab.js b/apps/documenteditor/main/app/controller/FormsTab.js index b353a076a..94334cbd8 100644 --- a/apps/documenteditor/main/app/controller/FormsTab.js +++ b/apps/documenteditor/main/app/controller/FormsTab.js @@ -306,7 +306,7 @@ define([ allowMerge: false, allowSignature: false, allowProtect: false, - rightMenu: {clear: true, disable: true}, + rightMenu: {clear: disable, disable: true}, statusBar: true, leftMenu: {disable: false, previewMode: true}, fileMenu: false, diff --git a/apps/documenteditor/main/app/controller/RightMenu.js b/apps/documenteditor/main/app/controller/RightMenu.js index c360de65b..ee9c25be2 100644 --- a/apps/documenteditor/main/app/controller/RightMenu.js +++ b/apps/documenteditor/main/app/controller/RightMenu.js @@ -135,11 +135,11 @@ define([ this.onFocusObject(SelectedObjects); }, - onFocusObject: function(SelectedObjects, forceSignature) { + onFocusObject: function(SelectedObjects, forceSignature, forceOpen) { if (!this.editMode && !forceSignature) return; - var open = this._initSettings ? !Common.localStorage.getBool("de-hide-right-settings", this.rightmenu.defaultHideRightMenu) : false; + var open = this._initSettings ? !Common.localStorage.getBool("de-hide-right-settings", this.rightmenu.defaultHideRightMenu) : !!forceOpen; this._initSettings = false; var can_add_table = false, @@ -447,7 +447,7 @@ define([ } else { var selectedElements = this.api.getSelectedElements(); if (selectedElements.length > 0) - this.onFocusObject(selectedElements); + this.onFocusObject(selectedElements, false, !Common.Utils.InternalSettings.get("de-hide-right-settings")); } } }, diff --git a/apps/documenteditor/main/app/view/RightMenu.js b/apps/documenteditor/main/app/view/RightMenu.js index 9192a239b..cd06779b9 100644 --- a/apps/documenteditor/main/app/view/RightMenu.js +++ b/apps/documenteditor/main/app/view/RightMenu.js @@ -151,6 +151,7 @@ define([ this.defaultHideRightMenu = mode.customization && !!mode.customization.hideRightMenu; var open = !Common.localStorage.getBool("de-hide-right-settings", this.defaultHideRightMenu); + Common.Utils.InternalSettings.set("de-hide-right-settings", !open); this.$el.css('width', ((open) ? MENU_SCALE_PART : SCALE_MIN) + 'px'); this.$el.show(); @@ -279,6 +280,7 @@ define([ target_pane_parent.css("display", "inline-block" ); this.minimizedMode = false; Common.localStorage.setItem("de-hide-right-settings", 0); + Common.Utils.InternalSettings.set("de-hide-right-settings", false); } target_pane_parent.find('> .active').removeClass('active'); target_pane.addClass("active"); @@ -291,6 +293,7 @@ define([ $(this.el).width(SCALE_MIN); this.minimizedMode = true; Common.localStorage.setItem("de-hide-right-settings", 1); + Common.Utils.InternalSettings.set("de-hide-right-settings", true); } this.fireEvent('rightmenuclick', [this, btn.options.asctype, this.minimizedMode, e]); From ffee243d9e4d55de54c6685a25d02fa3cf759918 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 10 Feb 2022 22:42:09 +0300 Subject: [PATCH 132/217] [DE] Refactoring navigation list: show full name, update tips on updating names --- apps/common/main/lib/component/TreeView.js | 59 +++++++++++++++---- .../main/app/controller/Navigation.js | 6 ++ .../main/app/view/Navigation.js | 3 +- .../main/resources/less/navigation.less | 6 ++ 4 files changed, 60 insertions(+), 14 deletions(-) diff --git a/apps/common/main/lib/component/TreeView.js b/apps/common/main/lib/component/TreeView.js index d6ac4c4b4..d362f44de 100644 --- a/apps/common/main/lib/component/TreeView.js +++ b/apps/common/main/lib/component/TreeView.js @@ -212,19 +212,7 @@ define([ this.dataViewItems.push(view); } - var name = record.get('name'); - if (name.length > 37 - record.get('level')*2) - record.set('tip', name); - if (record.get('tip')) { - var view_el = $(view.el); - view_el.attr('data-toggle', 'tooltip'); - view_el.tooltip({ - title : record.get('tip'), - placement : 'cursor', - zIndex : this.tipZIndex - }); - } - + this.updateTip(view); this.listenTo(view, 'change', this.onChangeItem); this.listenTo(view, 'remove', this.onRemoveItem); this.listenTo(view, 'click', this.onClickItem); @@ -361,6 +349,51 @@ define([ focus: function() { this.cmpEl && this.cmpEl.find('.treeview').focus(); + }, + + updateTip: function(item) { + var record = item.model, + name = record.get('name'), + me = this; + + if (name.length > 37 - record.get('level')*2) + record.set('tip', name); + else + record.set('tip', ''); + + var el = item.$el || $(item.el); + var tip = el.data('bs.tooltip'); + if (tip) { + if (tip.dontShow===undefined) + tip.dontShow = true; + el.removeData('bs.tooltip'); + } + if (record.get('tip')) { + el.attr('data-toggle', 'tooltip'); + el.tooltip({ + title : record.get('tip'), + placement : 'cursor', + zIndex : this.tipZIndex + }); + if (this.delayRenderTips) + el.one('mouseenter', function(){ + el.attr('data-toggle', 'tooltip'); + el.tooltip({ + title : record.get('tip'), + placement : 'cursor', + zIndex : me.tipZIndex + }); + el.mouseenter(); + }); + else { + el.attr('data-toggle', 'tooltip'); + el.tooltip({ + title : record.get('tip'), + placement : 'cursor', + zIndex : me.tipZIndex + }); + } + } } } })()); diff --git a/apps/documenteditor/main/app/controller/Navigation.js b/apps/documenteditor/main/app/controller/Navigation.js index d80f24d10..bbb6a0caa 100644 --- a/apps/documenteditor/main/app/controller/Navigation.js +++ b/apps/documenteditor/main/app/controller/Navigation.js @@ -106,6 +106,7 @@ define([ onAfterRender: function(panelNavigation) { panelNavigation.viewNavigationList.on('item:click', _.bind(this.onSelectItem, this)); panelNavigation.viewNavigationList.on('item:contextmenu', _.bind(this.onItemContextMenu, this)); + panelNavigation.viewNavigationList.on('item:add', _.bind(this.onItemAdd, this)); panelNavigation.navigationMenu.on('item:click', _.bind(this.onMenuItemClick, this)); panelNavigation.navigationMenu.items[11].menu.on('item:click', _.bind(this.onMenuLevelsItemClick, this)); }, @@ -157,6 +158,7 @@ define([ } else { item.set('name', this._navigationObject.get_Text(index)); item.set('isEmptyItem', this._navigationObject.isEmptyItem(index)); + this.panelNavigation.viewNavigationList.updateTip(item.get('dataItem')); } }, @@ -222,6 +224,10 @@ define([ Common.NotificationCenter.trigger('edit:complete', this.panelNavigation); }, + onItemAdd: function(picker, item, record, e){ + record.set('dataItem', item); + }, + onMenuItemClick: function (menu, item) { if (!this._navigationObject && !this._viewerNavigationObject) return; diff --git a/apps/documenteditor/main/app/view/Navigation.js b/apps/documenteditor/main/app/view/Navigation.js index d4e4de775..68269cf72 100644 --- a/apps/documenteditor/main/app/view/Navigation.js +++ b/apps/documenteditor/main/app/view/Navigation.js @@ -71,7 +71,8 @@ define([ enableKeyEvents: false, emptyText: this.txtEmpty, emptyItemText: this.txtEmptyItem, - style: 'border: none;' + style: 'border: none;', + delayRenderTips: true }); this.viewNavigationList.cmpEl.off('click'); this.navigationMenu = new Common.UI.Menu({ diff --git a/apps/documenteditor/main/resources/less/navigation.less b/apps/documenteditor/main/resources/less/navigation.less index 0a3726fad..cec0754ec 100644 --- a/apps/documenteditor/main/resources/less/navigation.less +++ b/apps/documenteditor/main/resources/less/navigation.less @@ -35,5 +35,11 @@ .name.not-header { font-style: italic; } + + .name { + white-space: pre-wrap; + word-break: break-all; + max-height: 350px; + } } } From 663d39b55c53aae0d73c806b9ec17fec3d9c8fa6 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 10 Feb 2022 22:44:44 +0300 Subject: [PATCH 133/217] Refactoring styles loading --- apps/documenteditor/main/app/view/Toolbar.js | 1 + apps/presentationeditor/main/app/view/Toolbar.js | 1 + apps/spreadsheeteditor/main/app/view/Toolbar.js | 1 + 3 files changed, 3 insertions(+) diff --git a/apps/documenteditor/main/app/view/Toolbar.js b/apps/documenteditor/main/app/view/Toolbar.js index 078b3242e..da8d2a4eb 100644 --- a/apps/documenteditor/main/app/view/Toolbar.js +++ b/apps/documenteditor/main/app/view/Toolbar.js @@ -1317,6 +1317,7 @@ define([ dataHintOffset: '-16, -4', enableKeyEvents: true, additionalMenuItems: [this.listStylesAdditionalMenuItem], + delayRenderTips: true, itemTemplate: _.template([ '
', '
', diff --git a/apps/presentationeditor/main/app/view/Toolbar.js b/apps/presentationeditor/main/app/view/Toolbar.js index 6932d06ec..d23ce4ff1 100644 --- a/apps/presentationeditor/main/app/view/Toolbar.js +++ b/apps/presentationeditor/main/app/view/Toolbar.js @@ -1029,6 +1029,7 @@ define([ dataHint: '1', dataHintDirection: 'bottom', dataHintOffset: '-16, -4', + delayRenderTips: true, itemTemplate: _.template([ '
', '
' + 'background-image: url(<%= imageUrl %>);' + '<% } %> background-position: 0 -<%= offsety %>px;">
', diff --git a/apps/spreadsheeteditor/main/app/view/Toolbar.js b/apps/spreadsheeteditor/main/app/view/Toolbar.js index cde3ed6f6..b0da89b08 100644 --- a/apps/spreadsheeteditor/main/app/view/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/view/Toolbar.js @@ -940,6 +940,7 @@ define([ dataHint : '1', dataHintDirection: 'bottom', dataHintOffset : '-16, -4', + delayRenderTips: true, beforeOpenHandler: function(e) { var cmp = this, menu = cmp.openButton.menu, From 6d0b6bbccfb5866596ab491fe4f569b5510bc0d4 Mon Sep 17 00:00:00 2001 From: Kirill Volkov Date: Fri, 11 Feb 2022 12:37:40 +0300 Subject: [PATCH 134/217] added format icons djvu,xps,oxps --- .../main/resources/img/doc-formats/djvu.svg | 26 +++++++++++++++++++ .../main/resources/img/doc-formats/oxps.svg | 11 ++++++++ .../main/resources/img/doc-formats/xps.svg | 11 ++++++++ 3 files changed, 48 insertions(+) create mode 100644 apps/common/main/resources/img/doc-formats/djvu.svg create mode 100644 apps/common/main/resources/img/doc-formats/oxps.svg create mode 100644 apps/common/main/resources/img/doc-formats/xps.svg diff --git a/apps/common/main/resources/img/doc-formats/djvu.svg b/apps/common/main/resources/img/doc-formats/djvu.svg new file mode 100644 index 000000000..4166d9e31 --- /dev/null +++ b/apps/common/main/resources/img/doc-formats/djvu.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/common/main/resources/img/doc-formats/oxps.svg b/apps/common/main/resources/img/doc-formats/oxps.svg new file mode 100644 index 000000000..cdab1aab9 --- /dev/null +++ b/apps/common/main/resources/img/doc-formats/oxps.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/apps/common/main/resources/img/doc-formats/xps.svg b/apps/common/main/resources/img/doc-formats/xps.svg new file mode 100644 index 000000000..cbebe0aa2 --- /dev/null +++ b/apps/common/main/resources/img/doc-formats/xps.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + From 081018e328d37bbab6072d0e5f31fa853bb3191b Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Fri, 11 Feb 2022 16:44:55 +0300 Subject: [PATCH 135/217] [SSE] For Bug 47328 --- apps/spreadsheeteditor/mobile/locale/en.json | 4 +- .../mobile/src/controller/Statusbar.jsx | 17 +++---- .../mobile/src/less/app-material.less | 9 ++++ .../mobile/src/view/Statusbar.jsx | 51 ++++++------------- 4 files changed, 33 insertions(+), 48 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json index 3ba08de09..50e91cb0b 100644 --- a/apps/spreadsheeteditor/mobile/locale/en.json +++ b/apps/spreadsheeteditor/mobile/locale/en.json @@ -291,8 +291,8 @@ "textHidden": "Hidden", "textMore": "More", "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward", + "textMoveToEnd": "(Move to end)", + "textMoveBefore": "Move before sheet", "textOk": "Ok", "textRename": "Rename", "textRenameSheet": "Rename Sheet", diff --git a/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx b/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx index 9db12e319..1ccff00de 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx @@ -351,19 +351,14 @@ const Statusbar = inject('sheets', 'storeAppOptions', 'users')(observer(props => } }; - const onMenuMoveClick = (action) => { + const onMenuMoveClick = (index) => { const api = Common.EditorApi.get(); - const visibleSheets = sheets.visibleWorksheets(); - let activeIndex; - visibleSheets.forEach((item, index) => { - if(item.index === api.asc_getActiveWorksheetIndex()) { - activeIndex = visibleSheets[action === "forward" ? index+2 : index-1 ]?.index; - } - }); + let sheetsCount = api.asc_getWorksheetsCount(); + let activeIndex = api.asc_getActiveWorksheetIndex(); - api.asc_moveWorksheet(activeIndex === undefined ? api.asc_getWorksheetsCount() : activeIndex, [api.asc_getActiveWorksheetIndex()]); - } + api.asc_moveWorksheet(index === -255 ? sheetsCount : index , [activeIndex]); + }; const onTabListClick = (sheetIndex) => { const api = Common.EditorApi.get(); @@ -371,7 +366,7 @@ const Statusbar = inject('sheets', 'storeAppOptions', 'users')(observer(props => api.asc_showWorksheet(sheetIndex); f7.popover.close('#idx-all-list'); } - } + }; return ( { - const { t } = useTranslation(); - let { opened, setOpenActions, onMenuMoveClick, visibleSheets } = props; - - return ( - setOpenActions(false)}> - - onMenuMoveClick("back")}> - {t('Statusbar.textMoveBack')} - - onMenuMoveClick("forward")}> - {t('Statusbar.textMoveForward')} - - - - {t('Statusbar.textCancel')} - - - ) -} - const PageListMove = props => { + const { t } = useTranslation(); const { sheets, onMenuMoveClick } = props; const allSheets = sheets.sheets; - const visibleSheets = sheets.visibleWorksheets(); - const [stateActionsOpened, setOpenActions] = useState(false); return ( + - { allSheets.map(model => - model.hidden ? null : - -
setOpenActions(true) }> - -
-
) - } + + { allSheets.map((model, index) => + model.hidden ? null : + onMenuMoveClick(index)} />) + } + onMenuMoveClick(-255)}/> +
-
) }; @@ -162,7 +143,7 @@ const StatusbarView = inject('storeAppOptions', 'sheets', 'users')(observer(prop } {isPhone ? - +
From c33d67f792481f91a4bf1e02f2a676d51ade851f Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 11 Feb 2022 17:54:01 +0300 Subject: [PATCH 136/217] [DE] Fix downloading pdf/xps/oxps/djvu files --- .../main/resources/img/doc-formats/djvu.svg | 36 ++++++++----------- .../app/controller/ApplicationController.js | 2 +- .../main/app/controller/LeftMenu.js | 6 ++-- .../main/app/controller/Main.js | 6 ++-- .../main/app/view/FileMenuPanels.js | 28 +++++++++++---- apps/documenteditor/main/index.html | 3 ++ apps/documenteditor/main/index.html.deploy | 3 ++ apps/documenteditor/main/index_loader.html | 3 ++ .../main/index_loader.html.deploy | 3 ++ 9 files changed, 56 insertions(+), 34 deletions(-) diff --git a/apps/common/main/resources/img/doc-formats/djvu.svg b/apps/common/main/resources/img/doc-formats/djvu.svg index 4166d9e31..1b5927051 100644 --- a/apps/common/main/resources/img/doc-formats/djvu.svg +++ b/apps/common/main/resources/img/doc-formats/djvu.svg @@ -1,26 +1,18 @@ - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + diff --git a/apps/documenteditor/forms/app/controller/ApplicationController.js b/apps/documenteditor/forms/app/controller/ApplicationController.js index 793371f41..0a4788bd0 100644 --- a/apps/documenteditor/forms/app/controller/ApplicationController.js +++ b/apps/documenteditor/forms/app/controller/ApplicationController.js @@ -494,7 +494,7 @@ define([ enable = !this.editorConfig.customization || (this.editorConfig.customization.plugins!==false); docInfo.asc_putIsEnabledPlugins(!!enable); - var type = /^(?:(pdf|djvu|xps))$/.exec(data.doc.fileType); + var type = /^(?:(pdf|djvu|xps|oxps))$/.exec(data.doc.fileType); if (type && typeof type[1] === 'string') { this.permissions.edit = this.permissions.review = false; } diff --git a/apps/documenteditor/main/app/controller/LeftMenu.js b/apps/documenteditor/main/app/controller/LeftMenu.js index 21c2587c2..2773fb5eb 100644 --- a/apps/documenteditor/main/app/controller/LeftMenu.js +++ b/apps/documenteditor/main/app/controller/LeftMenu.js @@ -367,9 +367,11 @@ define([ clickSaveAsFormat: function(menu, format, ext) { // ext isn't undefined for save copy as var me = this, fileType = this.getApplication().getController('Main').document.fileType; - if ( /^pdf|xps|oxps$/.test(fileType)) { - if (format===undefined || format == Asc.c_oAscFileType.PDF || format == Asc.c_oAscFileType.PDFA || format == Asc.c_oAscFileType.XPS) + if ( /^pdf|xps|oxps|djvu$/.test(fileType)) { + if (format===undefined) this._saveAsFormat(undefined, format, ext); // download original + else if (format == Asc.c_oAscFileType.PDF || format == Asc.c_oAscFileType.PDFA) + this._saveAsFormat(menu, format, ext); else { (new Common.Views.OptionsDialog({ width: 300, diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index bb1c6d83f..112a3d504 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -1463,9 +1463,9 @@ define([ this.appOptions.canChat = false; } - var type = /^(?:(djvu))$/.exec(this.document.fileType); - this.appOptions.canDownloadOrigin = this.permissions.download !== false && (type && typeof type[1] === 'string'); - this.appOptions.canDownload = this.permissions.download !== false && (!type || typeof type[1] !== 'string'); + // var type = /^(?:(djvu))$/.exec(this.document.fileType); + this.appOptions.canDownloadOrigin = false; + this.appOptions.canDownload = this.permissions.download !== false; this.appOptions.canUseSelectHandTools = this.appOptions.canUseThumbnails = this.appOptions.canUseViwerNavigation = isPDFViewer; this.appOptions.canDownloadForms = this.appOptions.canLicense && this.appOptions.canDownload; diff --git a/apps/documenteditor/main/app/view/FileMenuPanels.js b/apps/documenteditor/main/app/view/FileMenuPanels.js index 9572efa4a..664c10c78 100644 --- a/apps/documenteditor/main/app/view/FileMenuPanels.js +++ b/apps/documenteditor/main/app/view/FileMenuPanels.js @@ -98,12 +98,20 @@ define([ }, render: function() { - if (/^pdf|xps|oxps$/.test(this.fileType)) { + if (/^pdf$/.test(this.fileType)) { this.formats[0].splice(1, 1); // remove pdf this.formats[1].splice(1, 1); // remove pdfa - this.formats[3].push({name: 'Original', imgCls: 'pdf', type: ''}); + this.formats[3].push({name: 'PDF', imgCls: 'pdf', type: ''}); // original pdf + } else if (/^xps|oxps$/.test(this.fileType)) { + this.formats[3].push({name: this.fileType.toUpperCase(), imgCls: this.fileType, type: ''}); // original xps/oxps + } else if (/^djvu$/.test(this.fileType)) { + this.formats = [[ + {name: 'DJVU', imgCls: 'djvu', type: ''}, // original djvu + {name: 'PDF', imgCls: 'pdf', type: Asc.c_oAscFileType.PDF} + ]]; } - if (this.mode && !this.mode.canFeatureForms) { + + if (this.mode && !this.mode.canFeatureForms && this.formats.length>2) { this.formats[2].splice(1, 2); this.formats[2] = this.formats[2].concat(this.formats[3]); this.formats[3] = undefined; @@ -186,12 +194,20 @@ define([ }, render: function() { - if (/^pdf|xps|oxps$/.test(this.fileType)) { + if (/^pdf$/.test(this.fileType)) { this.formats[0].splice(1, 1); // remove pdf this.formats[1].splice(1, 1); // remove pdfa - this.formats[3].push({name: 'Original', imgCls: 'pdf', type: '', ext: true}); + this.formats[3].push({name: 'PDF', imgCls: 'pdf', type: '', ext: true}); // original pdf + } else if (/^xps|oxps$/.test(this.fileType)) { + this.formats[3].push({name: this.fileType.toUpperCase(), imgCls: this.fileType, type: '', ext: true}); // original xps/oxps + } else if (/^djvu$/.test(this.fileType)) { + this.formats = [[ + {name: 'DJVU', imgCls: 'djvu', type: '', ext: true}, // original djvu + {name: 'PDF', imgCls: 'pdf', type: Asc.c_oAscFileType.PDF, ext: '.pdf'} + ]]; } - if (this.mode && !this.mode.canFeatureForms) { + + if (this.mode && !this.mode.canFeatureForms && this.formats.length>2) { this.formats[2].splice(1, 2); this.formats[2] = this.formats[2].concat(this.formats[3]); this.formats[3] = undefined; diff --git a/apps/documenteditor/main/index.html b/apps/documenteditor/main/index.html index c104a0ee0..f1157d4f0 100644 --- a/apps/documenteditor/main/index.html +++ b/apps/documenteditor/main/index.html @@ -324,6 +324,9 @@ + + + diff --git a/apps/documenteditor/main/index.html.deploy b/apps/documenteditor/main/index.html.deploy index c91525b3a..b3582a90c 100644 --- a/apps/documenteditor/main/index.html.deploy +++ b/apps/documenteditor/main/index.html.deploy @@ -313,6 +313,9 @@ + + + diff --git a/apps/documenteditor/main/index_loader.html b/apps/documenteditor/main/index_loader.html index 990b85a3e..58261a6de 100644 --- a/apps/documenteditor/main/index_loader.html +++ b/apps/documenteditor/main/index_loader.html @@ -285,6 +285,9 @@ + + + diff --git a/apps/documenteditor/main/index_loader.html.deploy b/apps/documenteditor/main/index_loader.html.deploy index 14ec083f8..575f5d4ca 100644 --- a/apps/documenteditor/main/index_loader.html.deploy +++ b/apps/documenteditor/main/index_loader.html.deploy @@ -332,6 +332,9 @@ + + + From ce86232347c995f66328bea83e86b19f023fda30 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 11 Feb 2022 18:05:13 +0300 Subject: [PATCH 137/217] [DE] Close File menu when download original file --- apps/documenteditor/main/app/controller/LeftMenu.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/documenteditor/main/app/controller/LeftMenu.js b/apps/documenteditor/main/app/controller/LeftMenu.js index 2773fb5eb..59c2df39d 100644 --- a/apps/documenteditor/main/app/controller/LeftMenu.js +++ b/apps/documenteditor/main/app/controller/LeftMenu.js @@ -368,9 +368,10 @@ define([ var me = this, fileType = this.getApplication().getController('Main').document.fileType; if ( /^pdf|xps|oxps|djvu$/.test(fileType)) { - if (format===undefined) + if (format===undefined) { this._saveAsFormat(undefined, format, ext); // download original - else if (format == Asc.c_oAscFileType.PDF || format == Asc.c_oAscFileType.PDFA) + menu && menu.hide(); + } else if (format == Asc.c_oAscFileType.PDF || format == Asc.c_oAscFileType.PDFA) this._saveAsFormat(menu, format, ext); else { (new Common.Views.OptionsDialog({ From ca7f37b716e9a6a8390a68249f7afbcefd1b5ba7 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 11 Feb 2022 18:24:18 +0300 Subject: [PATCH 138/217] Update translation --- apps/documenteditor/forms/locale/el.json | 5 + apps/documenteditor/forms/locale/gl.json | 5 + apps/documenteditor/forms/locale/ja.json | 3 + apps/documenteditor/main/locale/ca.json | 6 +- apps/documenteditor/main/locale/el.json | 20 +- apps/documenteditor/main/locale/en.json | 24 +- apps/documenteditor/main/locale/es.json | 20 +- apps/documenteditor/main/locale/fr.json | 2 +- apps/documenteditor/main/locale/gl.json | 55 ++++- apps/documenteditor/main/locale/id.json | 11 + apps/documenteditor/main/locale/it.json | 58 ++++- apps/documenteditor/main/locale/ja.json | 2 +- apps/documenteditor/main/locale/pt.json | 28 +-- apps/documenteditor/main/locale/ru.json | 2 +- apps/presentationeditor/embed/locale/id.json | 13 +- apps/presentationeditor/main/locale/be.json | 10 +- apps/presentationeditor/main/locale/el.json | 234 +++++++++++++++++- apps/presentationeditor/main/locale/en.json | 4 +- apps/presentationeditor/main/locale/gl.json | 241 ++++++++++++++++++- apps/presentationeditor/main/locale/it.json | 223 ++++++++++++++++- apps/presentationeditor/main/locale/ja.json | 6 + apps/spreadsheeteditor/embed/locale/id.json | 19 +- apps/spreadsheeteditor/main/locale/ca.json | 1 + apps/spreadsheeteditor/main/locale/de.json | 1 + apps/spreadsheeteditor/main/locale/el.json | 85 ++++++- apps/spreadsheeteditor/main/locale/en.json | 6 +- apps/spreadsheeteditor/main/locale/es.json | 1 + apps/spreadsheeteditor/main/locale/fr.json | 1 + apps/spreadsheeteditor/main/locale/gl.json | 84 +++++++ apps/spreadsheeteditor/main/locale/it.json | 79 ++++++ apps/spreadsheeteditor/main/locale/ja.json | 2 +- apps/spreadsheeteditor/main/locale/pt.json | 1 + apps/spreadsheeteditor/main/locale/ro.json | 1 + apps/spreadsheeteditor/main/locale/ru.json | 1 + apps/spreadsheeteditor/main/locale/zh.json | 1 + 35 files changed, 1163 insertions(+), 92 deletions(-) diff --git a/apps/documenteditor/forms/locale/el.json b/apps/documenteditor/forms/locale/el.json index a69483140..de33aa69c 100644 --- a/apps/documenteditor/forms/locale/el.json +++ b/apps/documenteditor/forms/locale/el.json @@ -123,6 +123,7 @@ "DE.Controllers.ApplicationController.textSaveAs": "Αποθήκευση ως PDF", "DE.Controllers.ApplicationController.textSaveAsDesktop": "Αποθήκευση ως...", "DE.Controllers.ApplicationController.textSubmited": "Η φόρμα υποβλήθηκε με επιτυχία
Κάντε κλικ για να κλείσετε τη συμβουλή ", + "DE.Controllers.ApplicationController.titleLicenseExp": "Η άδεια έχει λήξει", "DE.Controllers.ApplicationController.titleServerVersion": "Ο συντάκτης ενημερώθηκε", "DE.Controllers.ApplicationController.titleUpdateVersion": "Η έκδοση άλλαξε", "DE.Controllers.ApplicationController.txtArt": "Το κείμενό σας εδώ", @@ -139,6 +140,7 @@ "DE.Controllers.ApplicationController.uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB.", "DE.Controllers.ApplicationController.waitText": "Παρακαλούμε, περιμένετε...", "DE.Controllers.ApplicationController.warnLicenseExceeded": "Έχετε φτάσει το όριο για ταυτόχρονες συνδέσεις με συντάκτες %1. Αυτό το έγγραφο θα ανοιχτεί μόνο για προβολή.​​
Παρακαλούμε επικοινωνήστε με τον διαχειριστή σας για περισσότερες πληροφορίες.", + "DE.Controllers.ApplicationController.warnLicenseExp": "Η άδειά σας έχει λήξει.", "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "Η άδεια έληξε.
Δεν έχετε πρόσβαση στη δυνατότητα επεξεργασίας εγγράφων.
Επικοινωνήστε με τον διαχειριστή σας.", "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "Η άδεια πρέπει να ανανεωθεί.
Έχετε περιορισμένη πρόσβαση στη λειτουργία επεξεργασίας εγγράφων.
Επικοινωνήστε με τον διαχειριστή σας για πλήρη πρόσβαση", "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "Έχετε φτάσει το όριο χρήστη για συντάκτες %1.
Επικοινωνήστε με τον διαχειριστή σας για περισσότερες πληροφορίες.", @@ -147,12 +149,15 @@ "DE.Views.ApplicationView.textClear": "Εκκαθάριση Όλων των Πεδίων", "DE.Views.ApplicationView.textCopy": "Αντιγραφή", "DE.Views.ApplicationView.textCut": "Αποκοπή", + "DE.Views.ApplicationView.textFitToPage": "Προσαρμογή στη Σελίδα", + "DE.Views.ApplicationView.textFitToWidth": "Προσαρμογή στο Πλάτος", "DE.Views.ApplicationView.textNext": "Επόμενο Πεδίο", "DE.Views.ApplicationView.textPaste": "Επικόλληση", "DE.Views.ApplicationView.textPrintSel": "Εκτύπωση Επιλογής", "DE.Views.ApplicationView.textRedo": "Επανάληψη", "DE.Views.ApplicationView.textSubmit": "Υποβολή", "DE.Views.ApplicationView.textUndo": "Αναίρεση", + "DE.Views.ApplicationView.textZoom": "Εστίαση", "DE.Views.ApplicationView.txtDarkMode": "Σκούρο θέμα", "DE.Views.ApplicationView.txtDownload": "Λήψη", "DE.Views.ApplicationView.txtDownloadDocx": "Λήψη ως docx", diff --git a/apps/documenteditor/forms/locale/gl.json b/apps/documenteditor/forms/locale/gl.json index 64cf98d8d..287d0c9e7 100644 --- a/apps/documenteditor/forms/locale/gl.json +++ b/apps/documenteditor/forms/locale/gl.json @@ -123,6 +123,7 @@ "DE.Controllers.ApplicationController.textSaveAs": "Gardar como PDF", "DE.Controllers.ApplicationController.textSaveAsDesktop": "Gardar como...", "DE.Controllers.ApplicationController.textSubmited": "Formulario enviado con éxito
Prema para pechar o consello", + "DE.Controllers.ApplicationController.titleLicenseExp": "A licenza expirou", "DE.Controllers.ApplicationController.titleServerVersion": "Editor actualizado", "DE.Controllers.ApplicationController.titleUpdateVersion": "A versión cambiou", "DE.Controllers.ApplicationController.txtArt": "Escriba o texto aquí", @@ -139,6 +140,7 @@ "DE.Controllers.ApplicationController.uploadImageSizeMessage": "A imaxe é demasiado grande. O tamaño máximo é de 25 MB.", "DE.Controllers.ApplicationController.waitText": "Agarde...", "DE.Controllers.ApplicationController.warnLicenseExceeded": "Alcanzou o límite de conexións simultáneas con %1 editores. Este documento abrirase só para a súa visualización.
Por favor, contacte co seu administrador para recibir máis información.", + "DE.Controllers.ApplicationController.warnLicenseExp": "A túa licenza caducou.
Actualiza a túa licenza e actualiza a páxina.", "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "Licenza expirada.
Non ten acceso á funcionalidade de edición de documentos.
por favor, póñase en contacto co seu administrador.", "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "A licenza precisa ser renovada.
Ten un acceso limitado á funcionalidade de edición de documentos.
Por favor, póñase en contacto co seu administrador para obter un acceso completo", "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "Alcanzou o límite de usuarios para os editores de %1. Por favor, contacte co se uadministrador para recibir máis información.", @@ -147,12 +149,15 @@ "DE.Views.ApplicationView.textClear": "Borrar todos os campos", "DE.Views.ApplicationView.textCopy": "Copiar", "DE.Views.ApplicationView.textCut": "Cortar", + "DE.Views.ApplicationView.textFitToPage": "Axustar á páxina", + "DE.Views.ApplicationView.textFitToWidth": "Axustar á anchura", "DE.Views.ApplicationView.textNext": "Seguinte campo", "DE.Views.ApplicationView.textPaste": "Pegar", "DE.Views.ApplicationView.textPrintSel": "Imprimir selección", "DE.Views.ApplicationView.textRedo": "Refacer", "DE.Views.ApplicationView.textSubmit": "Enviar", "DE.Views.ApplicationView.textUndo": "Desfacer", + "DE.Views.ApplicationView.textZoom": "Ampliar", "DE.Views.ApplicationView.txtDarkMode": "Modo escuro", "DE.Views.ApplicationView.txtDownload": "Descargar", "DE.Views.ApplicationView.txtDownloadDocx": "Descargar como docx", diff --git a/apps/documenteditor/forms/locale/ja.json b/apps/documenteditor/forms/locale/ja.json index 5b4954d65..20417a14a 100644 --- a/apps/documenteditor/forms/locale/ja.json +++ b/apps/documenteditor/forms/locale/ja.json @@ -123,6 +123,7 @@ "DE.Controllers.ApplicationController.textSaveAs": "PDFとして保存", "DE.Controllers.ApplicationController.textSaveAsDesktop": "名前を付けて保存", "DE.Controllers.ApplicationController.textSubmited": "フォームが正常に送信されました。
クリックしてヒントを閉じます。", + "DE.Controllers.ApplicationController.titleLicenseExp": "ライセンスの有効期限が切れています", "DE.Controllers.ApplicationController.titleServerVersion": "編集者が更新されました", "DE.Controllers.ApplicationController.titleUpdateVersion": "バージョンが変更されました", "DE.Controllers.ApplicationController.txtArt": "ここにテキストを入力", @@ -148,6 +149,8 @@ "DE.Views.ApplicationView.textClear": "すべてのフィールドを削除する", "DE.Views.ApplicationView.textCopy": "コピー", "DE.Views.ApplicationView.textCut": "切り取り", + "DE.Views.ApplicationView.textFitToPage": "ページに合わせる", + "DE.Views.ApplicationView.textFitToWidth": "幅に合わせる", "DE.Views.ApplicationView.textNext": "次のフィールド", "DE.Views.ApplicationView.textPaste": "貼り付け", "DE.Views.ApplicationView.textPrintSel": "選択範囲の印刷", diff --git a/apps/documenteditor/main/locale/ca.json b/apps/documenteditor/main/locale/ca.json index 4274b0d94..3324af12b 100644 --- a/apps/documenteditor/main/locale/ca.json +++ b/apps/documenteditor/main/locale/ca.json @@ -1522,7 +1522,7 @@ "DE.Views.DocumentHolder.textTOC": "Taula de continguts", "DE.Views.DocumentHolder.textTOCSettings": "Configuració de la taula de continguts", "DE.Views.DocumentHolder.textUndo": "Desfés", - "DE.Views.DocumentHolder.textUpdateAll": "Actualitza la taula sencera", + "DE.Views.DocumentHolder.textUpdateAll": "Actualitza tota la taula", "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", @@ -2032,7 +2032,7 @@ "DE.Views.LineNumbersDialog.txtAutoText": "Automàtic", "DE.Views.Links.capBtnBookmarks": "Marcador", "DE.Views.Links.capBtnCaption": "Llegenda", - "DE.Views.Links.capBtnContentsUpdate": "Actualitza", + "DE.Views.Links.capBtnContentsUpdate": "Actualitza la taula", "DE.Views.Links.capBtnCrossRef": "Referència creuada", "DE.Views.Links.capBtnInsContents": "Taula de continguts", "DE.Views.Links.capBtnInsFootnote": "Nota al peu de pàgina", @@ -2052,7 +2052,7 @@ "DE.Views.Links.textGotoEndnote": "Ves a notes al final", "DE.Views.Links.textGotoFootnote": "Ves 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.textUpdateAll": "Actualitza tota la taula", "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", diff --git a/apps/documenteditor/main/locale/el.json b/apps/documenteditor/main/locale/el.json index 3500d876c..bafd79202 100644 --- a/apps/documenteditor/main/locale/el.json +++ b/apps/documenteditor/main/locale/el.json @@ -1493,7 +1493,7 @@ "DE.Views.DocumentHolder.textNumberingValue": "Τιμή Αρίθμησης", "DE.Views.DocumentHolder.textPaste": "Επικόλληση", "DE.Views.DocumentHolder.textPrevPage": "Προηγούμενη Σελίδα", - "DE.Views.DocumentHolder.textRefreshField": "Ανανέωση πεδίου", + "DE.Views.DocumentHolder.textRefreshField": "Ενημέρωση πεδίου", "DE.Views.DocumentHolder.textRemCheckBox": "Αφαίρεση Πλαισίου Επιλογής", "DE.Views.DocumentHolder.textRemComboBox": "Αφαίρεση Πολλαπλών Επιλογών", "DE.Views.DocumentHolder.textRemDropdown": "Αφαίρεση Πτυσσόμενης Λίστας ", @@ -1522,9 +1522,9 @@ "DE.Views.DocumentHolder.textTOC": "Πίνακας περιεχομένων", "DE.Views.DocumentHolder.textTOCSettings": "Ρυθμίσεις Πίνακα Περιεχομένων", "DE.Views.DocumentHolder.textUndo": "Αναίρεση", - "DE.Views.DocumentHolder.textUpdateAll": "Ανανέωση ολόκληρου του πίνακα", - "DE.Views.DocumentHolder.textUpdatePages": "Ανανέωση αριθμών σελίδων μόνο", - "DE.Views.DocumentHolder.textUpdateTOC": "Ανανέωση πίνακα περιεχομένων", + "DE.Views.DocumentHolder.textUpdateAll": "Ενημέρωση ολόκληρου πίνακα", + "DE.Views.DocumentHolder.textUpdatePages": "Ενημέρωση αριθμών σελίδων μόνο", + "DE.Views.DocumentHolder.textUpdateTOC": "Ενημέρωση πίνακα περιεχομένων", "DE.Views.DocumentHolder.textWrap": "Τεχνοτροπία Αναδίπλωσης", "DE.Views.DocumentHolder.tipIsLocked": "Αυτό το στοιχείο επεξεργάζεται αυτήν τη στιγμή από άλλο χρήστη.", "DE.Views.DocumentHolder.tipMarkersArrow": "Κουκίδες βέλη", @@ -2032,7 +2032,7 @@ "DE.Views.LineNumbersDialog.txtAutoText": "Αυτόματα", "DE.Views.Links.capBtnBookmarks": "Σελιδοδείκτης", "DE.Views.Links.capBtnCaption": "Λεζάντα", - "DE.Views.Links.capBtnContentsUpdate": "Ανανέωση", + "DE.Views.Links.capBtnContentsUpdate": "Ενημέρωση Πίνακα", "DE.Views.Links.capBtnCrossRef": "Παραπομπή εντός κειμένου", "DE.Views.Links.capBtnInsContents": "Πίνακας Περιεχομένων", "DE.Views.Links.capBtnInsFootnote": "Υποσημείωση", @@ -2052,18 +2052,18 @@ "DE.Views.Links.textGotoEndnote": "Μετάβαση στις Σημειώσεις Τέλους", "DE.Views.Links.textGotoFootnote": "Μετάβαση στις Υποσημειώσεις", "DE.Views.Links.textSwapNotes": "Αντιμετάθεση Υποσημειώσεων και Σημειώσεων Τέλους", - "DE.Views.Links.textUpdateAll": "Ανανέωση ολόκληρου του πίνακα", - "DE.Views.Links.textUpdatePages": "Ανανέωση αριθμών σελίδων μόνο", + "DE.Views.Links.textUpdateAll": "Ενημέρωση ολόκληρου πίνακα", + "DE.Views.Links.textUpdatePages": "Ενημέρωση αριθμών σελίδων μόνο", "DE.Views.Links.tipBookmarks": "Δημιουργία σελιδοδείκτη", "DE.Views.Links.tipCaption": "Εισαγωγή λεζάντας", "DE.Views.Links.tipContents": "Εισαγωγή πίνακα περιεχομένων", - "DE.Views.Links.tipContentsUpdate": "Ανανέωση πίνακα περιεχομένων", + "DE.Views.Links.tipContentsUpdate": "Ενημέρωση πίνακα περιεχομένων", "DE.Views.Links.tipCrossRef": "Εισαγωγή παραπομπής εντός κειμένου", "DE.Views.Links.tipInsertHyperlink": "Προσθήκη υπερσυνδέσμου", "DE.Views.Links.tipNotes": "Εισαγωγή ή επεξεργασία υποσημειώσεων", "DE.Views.Links.tipTableFigures": "Εισαγωγή πίνακα εικόνων", - "DE.Views.Links.tipTableFiguresUpdate": "Ανανέωση πίνακα εικόνων", - "DE.Views.Links.titleUpdateTOF": "Ανανέωση Πίνακα Εικόνων", + "DE.Views.Links.tipTableFiguresUpdate": "Ενημέρωση πίνακα εικόνων", + "DE.Views.Links.titleUpdateTOF": "Ενημέρωση Πίνακα Εικόνων", "DE.Views.ListSettingsDialog.textAuto": "Αυτόματα", "DE.Views.ListSettingsDialog.textCenter": "Κέντρο", "DE.Views.ListSettingsDialog.textLeft": "Αριστερά", diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 1771750a0..bf17005a1 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -261,7 +261,7 @@ "Common.Views.Comments.textResolve": "Resolve", "Common.Views.Comments.textResolved": "Resolved", "Common.Views.Comments.textSort": "Sort comments", - "Common.Views.Comments.textViewResolved": "You have not permission for reopen comment", + "Common.Views.Comments.textViewResolved": "You have no permission to reopen the comment", "Common.Views.CopyWarningDialog.textDontShow": "Don't show this message again", "Common.Views.CopyWarningDialog.textMsg": "Copy, cut and paste actions using the editor toolbar buttons and context menu actions will be performed within this editor tab only.

To copy or paste to or from applications outside the editor tab use the following keyboard combinations:", "Common.Views.CopyWarningDialog.textTitle": "Copy, Cut and Paste Actions", @@ -438,7 +438,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Open Again", "Common.Views.ReviewPopover.textReply": "Reply", "Common.Views.ReviewPopover.textResolve": "Resolve", - "Common.Views.ReviewPopover.textViewResolved": "You have not permission for reopen comment", + "Common.Views.ReviewPopover.textViewResolved": "You have no permission to reopen the comment", "Common.Views.ReviewPopover.txtAccept": "Accept", "Common.Views.ReviewPopover.txtDeleteTip": "Delete", "Common.Views.ReviewPopover.txtEditTip": "Edit", @@ -1495,7 +1495,7 @@ "DE.Views.DocumentHolder.textNumberingValue": "Numbering Value", "DE.Views.DocumentHolder.textPaste": "Paste", "DE.Views.DocumentHolder.textPrevPage": "Previous Page", - "DE.Views.DocumentHolder.textRefreshField": "Refresh field", + "DE.Views.DocumentHolder.textRefreshField": "Update field", "DE.Views.DocumentHolder.textReject": "Reject Change", "DE.Views.DocumentHolder.textRemCheckBox": "Remove Checkbox", "DE.Views.DocumentHolder.textRemComboBox": "Remove Combo Box", @@ -1525,9 +1525,9 @@ "DE.Views.DocumentHolder.textTOC": "Table of contents", "DE.Views.DocumentHolder.textTOCSettings": "Table of contents settings", "DE.Views.DocumentHolder.textUndo": "Undo", - "DE.Views.DocumentHolder.textUpdateAll": "Refresh entire table", - "DE.Views.DocumentHolder.textUpdatePages": "Refresh page numbers only", - "DE.Views.DocumentHolder.textUpdateTOC": "Refresh table of contents", + "DE.Views.DocumentHolder.textUpdateAll": "Update entire table", + "DE.Views.DocumentHolder.textUpdatePages": "Update page numbers only", + "DE.Views.DocumentHolder.textUpdateTOC": "Update table of contents", "DE.Views.DocumentHolder.textWrap": "Wrapping Style", "DE.Views.DocumentHolder.tipIsLocked": "This element is currently being edited by another user.", "DE.Views.DocumentHolder.tipMarkersArrow": "Arrow bullets", @@ -2035,7 +2035,7 @@ "DE.Views.LineNumbersDialog.txtAutoText": "Auto", "DE.Views.Links.capBtnBookmarks": "Bookmark", "DE.Views.Links.capBtnCaption": "Caption", - "DE.Views.Links.capBtnContentsUpdate": "Refresh", + "DE.Views.Links.capBtnContentsUpdate": "Update Table", "DE.Views.Links.capBtnCrossRef": "Cross-reference", "DE.Views.Links.capBtnInsContents": "Table of Contents", "DE.Views.Links.capBtnInsFootnote": "Footnote", @@ -2055,18 +2055,18 @@ "DE.Views.Links.textGotoEndnote": "Go to Endnotes", "DE.Views.Links.textGotoFootnote": "Go to Footnotes", "DE.Views.Links.textSwapNotes": "Swap Footnotes and Endnotes", - "DE.Views.Links.textUpdateAll": "Refresh entire table", - "DE.Views.Links.textUpdatePages": "Refresh page numbers only", + "DE.Views.Links.textUpdateAll": "Update entire table", + "DE.Views.Links.textUpdatePages": "Update page numbers only", "DE.Views.Links.tipBookmarks": "Create a bookmark", "DE.Views.Links.tipCaption": "Insert caption", "DE.Views.Links.tipContents": "Insert table of contents", - "DE.Views.Links.tipContentsUpdate": "Refresh table of contents", + "DE.Views.Links.tipContentsUpdate": "Update table of contents", "DE.Views.Links.tipCrossRef": "Insert cross-reference", "DE.Views.Links.tipInsertHyperlink": "Add hyperlink", "DE.Views.Links.tipNotes": "Insert or edit footnotes", "DE.Views.Links.tipTableFigures": "Insert table of figures", - "DE.Views.Links.tipTableFiguresUpdate": "Refresh table of figures", - "DE.Views.Links.titleUpdateTOF": "Refresh Table of Figures", + "DE.Views.Links.tipTableFiguresUpdate": "Update table of figures", + "DE.Views.Links.titleUpdateTOF": "Update Table of Figures", "DE.Views.ListSettingsDialog.textAuto": "Automatic", "DE.Views.ListSettingsDialog.textCenter": "Center", "DE.Views.ListSettingsDialog.textLeft": "Left", diff --git a/apps/documenteditor/main/locale/es.json b/apps/documenteditor/main/locale/es.json index edd896016..c83e022c3 100644 --- a/apps/documenteditor/main/locale/es.json +++ b/apps/documenteditor/main/locale/es.json @@ -1493,7 +1493,7 @@ "DE.Views.DocumentHolder.textNumberingValue": "Valor de inicio", "DE.Views.DocumentHolder.textPaste": "Pegar", "DE.Views.DocumentHolder.textPrevPage": "Página anterior", - "DE.Views.DocumentHolder.textRefreshField": "Actualize el campo", + "DE.Views.DocumentHolder.textRefreshField": "Actualice el campo", "DE.Views.DocumentHolder.textRemCheckBox": "Eliminar casilla", "DE.Views.DocumentHolder.textRemComboBox": "Eliminar cuadro combinado", "DE.Views.DocumentHolder.textRemDropdown": "Eliminar lista desplegable", @@ -1522,9 +1522,9 @@ "DE.Views.DocumentHolder.textTOC": "Tabla de contenidos", "DE.Views.DocumentHolder.textTOCSettings": "Ajustes de la tabla de contenidos", "DE.Views.DocumentHolder.textUndo": "Deshacer", - "DE.Views.DocumentHolder.textUpdateAll": "Actualize toda la tabla", - "DE.Views.DocumentHolder.textUpdatePages": "Actualize solo los números de página", - "DE.Views.DocumentHolder.textUpdateTOC": "Actualize la tabla de contenidos", + "DE.Views.DocumentHolder.textUpdateAll": "Actualice toda la tabla", + "DE.Views.DocumentHolder.textUpdatePages": "Actualice solo los números de página", + "DE.Views.DocumentHolder.textUpdateTOC": "Actualice la tabla de contenidos", "DE.Views.DocumentHolder.textWrap": "Ajuste de texto", "DE.Views.DocumentHolder.tipIsLocked": "Otro usuario está editando este elemento ahora.", "DE.Views.DocumentHolder.tipMarkersArrow": "Viñetas de flecha", @@ -2032,7 +2032,7 @@ "DE.Views.LineNumbersDialog.txtAutoText": "Auto", "DE.Views.Links.capBtnBookmarks": "Marcador", "DE.Views.Links.capBtnCaption": "Leyenda", - "DE.Views.Links.capBtnContentsUpdate": "Actualizar", + "DE.Views.Links.capBtnContentsUpdate": "Actualizar la tabla", "DE.Views.Links.capBtnCrossRef": "Referencia cruzada", "DE.Views.Links.capBtnInsContents": "Tabla de contenidos", "DE.Views.Links.capBtnInsFootnote": "Nota a pie de página", @@ -2052,18 +2052,18 @@ "DE.Views.Links.textGotoEndnote": "Ir a Notas al Final", "DE.Views.Links.textGotoFootnote": "Ir a las notas a pie de página", "DE.Views.Links.textSwapNotes": "Intercambiar Notas al Pie y Notas al Final", - "DE.Views.Links.textUpdateAll": "Actualize toda la tabla", - "DE.Views.Links.textUpdatePages": "Actualize solo los números de página", + "DE.Views.Links.textUpdateAll": "Actualice toda la tabla", + "DE.Views.Links.textUpdatePages": "Actualice solo los números de página", "DE.Views.Links.tipBookmarks": "Crear marcador", "DE.Views.Links.tipCaption": "Insertar leyenda", "DE.Views.Links.tipContents": "Introducir tabla de contenidos", - "DE.Views.Links.tipContentsUpdate": "Actualize la tabla de contenidos", + "DE.Views.Links.tipContentsUpdate": "Actualice la tabla de contenidos", "DE.Views.Links.tipCrossRef": "Insertar referencia cruzada", "DE.Views.Links.tipInsertHyperlink": "Agregar hipervínculo", "DE.Views.Links.tipNotes": "Introducir o editar notas a pie de página", "DE.Views.Links.tipTableFigures": "Insertar tabla de ilustraciones", - "DE.Views.Links.tipTableFiguresUpdate": "Actualizar tabla de ilustraciones", - "DE.Views.Links.titleUpdateTOF": "Actualizar tabla de ilustraciones", + "DE.Views.Links.tipTableFiguresUpdate": "Actualizar la tabla de ilustraciones", + "DE.Views.Links.titleUpdateTOF": "Actualizar la tabla de ilustraciones", "DE.Views.ListSettingsDialog.textAuto": "Automático", "DE.Views.ListSettingsDialog.textCenter": "Al centro", "DE.Views.ListSettingsDialog.textLeft": "Izquierda", diff --git a/apps/documenteditor/main/locale/fr.json b/apps/documenteditor/main/locale/fr.json index 93ca6b04c..aaef5fb29 100644 --- a/apps/documenteditor/main/locale/fr.json +++ b/apps/documenteditor/main/locale/fr.json @@ -2032,7 +2032,7 @@ "DE.Views.LineNumbersDialog.txtAutoText": "Auto", "DE.Views.Links.capBtnBookmarks": "Signet", "DE.Views.Links.capBtnCaption": "Légende", - "DE.Views.Links.capBtnContentsUpdate": "Actualiser", + "DE.Views.Links.capBtnContentsUpdate": "Actualiser la table", "DE.Views.Links.capBtnCrossRef": "Renvoi", "DE.Views.Links.capBtnInsContents": "Table des matières", "DE.Views.Links.capBtnInsFootnote": "Note de bas de page", diff --git a/apps/documenteditor/main/locale/gl.json b/apps/documenteditor/main/locale/gl.json index f2fb1b42f..fbe4e2b4b 100644 --- a/apps/documenteditor/main/locale/gl.json +++ b/apps/documenteditor/main/locale/gl.json @@ -168,6 +168,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Novo", "Common.UI.ExtendedColorDialog.textRGBErr": "O valor introducido é incorrecto.
Insira un valor numérico entre 0 e 255.", "Common.UI.HSBColorPicker.textNoColor": "Sen cor", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Agochar o contrasinal", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Amosar o contrasinal", "Common.UI.SearchDialog.textHighlight": "Realzar resultados", "Common.UI.SearchDialog.textMatchCase": "Diferenciar maiúsculas de minúsculas", "Common.UI.SearchDialog.textReplaceDef": "Inserir o texto da substitución", @@ -211,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Listas con viñetas automáticas", "Common.Views.AutoCorrectDialog.textBy": "Por", "Common.Views.AutoCorrectDialog.textDelete": "Eliminar", + "Common.Views.AutoCorrectDialog.textFLCells": "Poñer en maiúsculas a primeira letra das celas da táboa", "Common.Views.AutoCorrectDialog.textFLSentence": "Poñer en maiúscula a primeira letra dunha oración", "Common.Views.AutoCorrectDialog.textHyperlink": "Rutas da rede e Internet por hiperligazóns", "Common.Views.AutoCorrectDialog.textHyphens": "Guiones (--) con guión (—)", @@ -236,12 +239,14 @@ "Common.Views.Comments.mniAuthorDesc": "Autor do Z a A", "Common.Views.Comments.mniDateAsc": "Máis antigo", "Common.Views.Comments.mniDateDesc": "Novidades", + "Common.Views.Comments.mniFilterGroups": "Filtrar por grupo", "Common.Views.Comments.mniPositionAsc": "Desde enriba", "Common.Views.Comments.mniPositionDesc": "Desde abaixo", "Common.Views.Comments.textAdd": "Engadir", "Common.Views.Comments.textAddComment": "Engadir comentario", "Common.Views.Comments.textAddCommentToDoc": "Engadir comentario ao documento", "Common.Views.Comments.textAddReply": "Engadir resposta", + "Common.Views.Comments.textAll": "Todo", "Common.Views.Comments.textAnonym": "Convidado(a)", "Common.Views.Comments.textCancel": "Cancelar", "Common.Views.Comments.textClose": "Pechar", @@ -255,6 +260,7 @@ "Common.Views.Comments.textResolve": "Resolver", "Common.Views.Comments.textResolved": "Resolto", "Common.Views.Comments.textSort": "Ordenar comentarios", + "Common.Views.Comments.textViewResolved": "Non ten permiso para volver a abrir o documento", "Common.Views.CopyWarningDialog.textDontShow": "Non volver a amosar esta mensaxe", "Common.Views.CopyWarningDialog.textMsg": "As accións de copiar, cortar e pegar empregando os botóns da barra de ferramentas do editor e as accións do menú contextual realizaranse só nesta pestana do editor.

Para copiar ou pegar en ou desde aplicativos fóra da pestana do editor, use as seguintes combinacións de teclado:", "Common.Views.CopyWarningDialog.textTitle": "Accións de copiar, cortar e pegar", @@ -431,6 +437,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Abrir novamente", "Common.Views.ReviewPopover.textReply": "Responder", "Common.Views.ReviewPopover.textResolve": "Resolver", + "Common.Views.ReviewPopover.textViewResolved": "Non ten permiso para volver a abrir o documento", "Common.Views.ReviewPopover.txtAccept": "Aceptar", "Common.Views.ReviewPopover.txtDeleteTip": "Eliminar", "Common.Views.ReviewPopover.txtEditTip": "Editar", @@ -602,6 +609,7 @@ "DE.Controllers.Main.textLongName": "Insira un nome que teña menos de 128 caracteres.", "DE.Controllers.Main.textNoLicenseTitle": "Alcanzouse o límite da licenza", "DE.Controllers.Main.textPaidFeature": "Característica de pago", + "DE.Controllers.Main.textReconnect": "Restaurouse a conexión", "DE.Controllers.Main.textRemember": "Recordar a miña elección para todos os ficheiros", "DE.Controllers.Main.textRenameError": "O nome de usuario non pode estar vacío.", "DE.Controllers.Main.textRenameLabel": "Insira un nome que se usará para a colaboración", @@ -879,6 +887,7 @@ "DE.Controllers.Main.warnProcessRightsChange": "O dereito de edición do ficheiro é denegado.", "DE.Controllers.Navigation.txtBeginning": "Principio do documento", "DE.Controllers.Navigation.txtGotoBeginning": "Ir ao inicio do documento", + "DE.Controllers.Statusbar.textDisconnect": "Perdeuse a conexión
Intentando conectarse. Comproba a configuración de conexión.", "DE.Controllers.Statusbar.textHasChanges": "Novos cambios foron atopados", "DE.Controllers.Statusbar.textSetTrackChanges": "Está no modo de seguemento de cambios", "DE.Controllers.Statusbar.textTrackChanges": "O documento ábrese co modo de cambio de pista activado", @@ -902,10 +911,22 @@ "DE.Controllers.Toolbar.textMatrix": "Matrices", "DE.Controllers.Toolbar.textOperator": "Operadores", "DE.Controllers.Toolbar.textRadical": "Radicais", + "DE.Controllers.Toolbar.textRecentlyUsed": "Usados recentemente", "DE.Controllers.Toolbar.textScript": "Letras", "DE.Controllers.Toolbar.textSymbols": "Símbolos", "DE.Controllers.Toolbar.textTabForms": "Formularios", "DE.Controllers.Toolbar.textWarning": "Aviso", + "DE.Controllers.Toolbar.tipMarkersArrow": "Botóns das frechas", + "DE.Controllers.Toolbar.tipMarkersCheckmark": "Viñetas de marca de verificación", + "DE.Controllers.Toolbar.tipMarkersDash": "Viñetas guión", + "DE.Controllers.Toolbar.tipMarkersFRhombus": "Rombos recheos", + "DE.Controllers.Toolbar.tipMarkersFRound": "Viñetas redondas recheas", + "DE.Controllers.Toolbar.tipMarkersFSquare": "Viñetas cadradas recheas", + "DE.Controllers.Toolbar.tipMarkersHRound": "Viñetas redondas ocas", + "DE.Controllers.Toolbar.tipMarkersStar": "Viñetas de estrela", + "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Viñetas numeradas de varios niveles", + "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Viñetas de símbolos de varios niveles", + "DE.Controllers.Toolbar.tipMultiLevelVarious": "Viñetas numeradas de varios niveles", "DE.Controllers.Toolbar.txtAccent_Accent": "Agudo", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Frecha superior dereita e esquerda", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Frecha superior esquerda", @@ -1457,6 +1478,7 @@ "DE.Views.DocumentHolder.textDistributeCols": "Distribuír columnas", "DE.Views.DocumentHolder.textDistributeRows": "Distribuír filas", "DE.Views.DocumentHolder.textEditControls": "A configuración do control de contido", + "DE.Views.DocumentHolder.textEditPoints": "Editar puntos", "DE.Views.DocumentHolder.textEditWrapBoundary": "Editar límite de axuste", "DE.Views.DocumentHolder.textFlipH": "Virar horizontalmente", "DE.Views.DocumentHolder.textFlipV": "Virar verticalmente", @@ -1505,6 +1527,14 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Actualizar a táboa de contido", "DE.Views.DocumentHolder.textWrap": "Axuste do texto", "DE.Views.DocumentHolder.tipIsLocked": "Este elemento está sendo actualmente editado por outro usuario.", + "DE.Views.DocumentHolder.tipMarkersArrow": "Botóns das frechas", + "DE.Views.DocumentHolder.tipMarkersCheckmark": "Viñetas de marca de verificación", + "DE.Views.DocumentHolder.tipMarkersDash": "Viñetas guión", + "DE.Views.DocumentHolder.tipMarkersFRhombus": "Rombos recheos", + "DE.Views.DocumentHolder.tipMarkersFRound": "Viñetas redondas recheas", + "DE.Views.DocumentHolder.tipMarkersFSquare": "Viñetas cadradas recheas", + "DE.Views.DocumentHolder.tipMarkersHRound": "Viñetas redondas ocas", + "DE.Views.DocumentHolder.tipMarkersStar": "Viñetas de estrela", "DE.Views.DocumentHolder.toDictionaryText": "Engadir ao Dicionario", "DE.Views.DocumentHolder.txtAddBottom": "Engadir bordo inferior", "DE.Views.DocumentHolder.txtAddFractionBar": "Engadir barra de fracción", @@ -1743,6 +1773,7 @@ "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "Amosar cun premer nos globos", "DE.Views.FileMenuPanels.Settings.txtChangesTip": "Amosar ao manter o punteiro na información sobre ferramentas", "DE.Views.FileMenuPanels.Settings.txtCm": "Centímetro", + "DE.Views.FileMenuPanels.Settings.txtDarkMode": "Activar o modo escuro para documentos", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Axustar á páxina", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Axustar á anchura", "DE.Views.FileMenuPanels.Settings.txtInch": "Pulgada", @@ -1870,6 +1901,7 @@ "DE.Views.ImageSettings.textCrop": "Recortar", "DE.Views.ImageSettings.textCropFill": "Encher", "DE.Views.ImageSettings.textCropFit": "Adaptar", + "DE.Views.ImageSettings.textCropToShape": "Cortar para dar forma", "DE.Views.ImageSettings.textEdit": "Editar", "DE.Views.ImageSettings.textEditObject": "Editar obxecto", "DE.Views.ImageSettings.textFitMargins": "Axustar á marxe", @@ -1884,12 +1916,13 @@ "DE.Views.ImageSettings.textHintFlipV": "Virar verticalmente", "DE.Views.ImageSettings.textInsert": "Substituír imaxe", "DE.Views.ImageSettings.textOriginalSize": "Tamaño actual", + "DE.Views.ImageSettings.textRecentlyUsed": "Usados recentemente", "DE.Views.ImageSettings.textRotate90": "Xirar 90°", "DE.Views.ImageSettings.textRotation": "Rotación", "DE.Views.ImageSettings.textSize": "Tamaño", "DE.Views.ImageSettings.textWidth": "Largura", "DE.Views.ImageSettings.textWrap": "Axuste do texto", - "DE.Views.ImageSettings.txtBehind": "Detrás", + "DE.Views.ImageSettings.txtBehind": "Atrás", "DE.Views.ImageSettings.txtInFront": "Á fronte", "DE.Views.ImageSettings.txtInline": "Aliñado", "DE.Views.ImageSettings.txtSquare": "Cadrado", @@ -1964,7 +1997,7 @@ "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Grosores e frechas", "DE.Views.ImageSettingsAdvanced.textWidth": "Largura", "DE.Views.ImageSettingsAdvanced.textWrap": "Axuste do texto", - "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Detrás", + "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Atrás", "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Á fronte", "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "Aliñado", "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Cadrado", @@ -2154,6 +2187,11 @@ "DE.Views.PageSizeDialog.textTitle": "Tamaño da páxina", "DE.Views.PageSizeDialog.textWidth": "Largura", "DE.Views.PageSizeDialog.txtCustom": "Personalizar", + "DE.Views.PageThumbnails.textClosePanel": "Pechar as miniaturas das páxinas", + "DE.Views.PageThumbnails.textHighlightVisiblePart": "Realzar parte visible da páxina", + "DE.Views.PageThumbnails.textPageThumbnails": "Miniaturas de páxina", + "DE.Views.PageThumbnails.textThumbnailsSettings": "Configuración das miniaturas", + "DE.Views.PageThumbnails.textThumbnailsSize": "Tamaño das miniaturas", "DE.Views.ParagraphSettings.strIndent": "Retiradas", "DE.Views.ParagraphSettings.strIndentsLeftText": "Esquerda", "DE.Views.ParagraphSettings.strIndentsRightText": "Dereita", @@ -2289,6 +2327,7 @@ "DE.Views.ShapeSettings.textPatternFill": "Patrón", "DE.Views.ShapeSettings.textPosition": "Posición", "DE.Views.ShapeSettings.textRadial": "Radial", + "DE.Views.ShapeSettings.textRecentlyUsed": "Usados recentemente", "DE.Views.ShapeSettings.textRotate90": "Xirar 90°", "DE.Views.ShapeSettings.textRotation": "Rotación", "DE.Views.ShapeSettings.textSelectImage": "Seleccionar imaxe", @@ -2300,7 +2339,7 @@ "DE.Views.ShapeSettings.textWrap": "Axuste do texto", "DE.Views.ShapeSettings.tipAddGradientPoint": "Engadir punto de degradado", "DE.Views.ShapeSettings.tipRemoveGradientPoint": "Eliminar punto de degradado", - "DE.Views.ShapeSettings.txtBehind": "Detrás", + "DE.Views.ShapeSettings.txtBehind": "Detrás do texto", "DE.Views.ShapeSettings.txtBrownPaper": "Papel marrón", "DE.Views.ShapeSettings.txtCanvas": "Lenzo", "DE.Views.ShapeSettings.txtCarton": "Cartón", @@ -2680,6 +2719,7 @@ "DE.Views.Toolbar.textTabLinks": "Referencias", "DE.Views.Toolbar.textTabProtect": "Protección", "DE.Views.Toolbar.textTabReview": "Revisar", + "DE.Views.Toolbar.textTabView": "Vista", "DE.Views.Toolbar.textTitleError": "Erro", "DE.Views.Toolbar.textToCurrent": "Á posición actual", "DE.Views.Toolbar.textTop": "Parte superior: ", @@ -2771,6 +2811,15 @@ "DE.Views.Toolbar.txtScheme7": "Equidade", "DE.Views.Toolbar.txtScheme8": "Fluxo", "DE.Views.Toolbar.txtScheme9": "Fundición", + "DE.Views.ViewTab.textAlwaysShowToolbar": "Amosar sempre a barra de ferramentas", + "DE.Views.ViewTab.textDarkDocument": "Documento escuro", + "DE.Views.ViewTab.textFitToPage": "Axustar á páxina", + "DE.Views.ViewTab.textFitToWidth": "Axustar á anchura", + "DE.Views.ViewTab.textInterfaceTheme": "Tema da interface", + "DE.Views.ViewTab.textNavigation": "Navegación", + "DE.Views.ViewTab.textRulers": "Regras", + "DE.Views.ViewTab.textStatusBar": "Barra de estado", + "DE.Views.ViewTab.textZoom": "Ampliar", "DE.Views.WatermarkSettingsDialog.textAuto": "Automático", "DE.Views.WatermarkSettingsDialog.textBold": "Grosa", "DE.Views.WatermarkSettingsDialog.textColor": "Cor do texto", diff --git a/apps/documenteditor/main/locale/id.json b/apps/documenteditor/main/locale/id.json index d9b057c17..7546a1bd0 100644 --- a/apps/documenteditor/main/locale/id.json +++ b/apps/documenteditor/main/locale/id.json @@ -65,6 +65,7 @@ "Common.Controllers.ReviewChanges.textWidow": "Widow control", "Common.define.chartData.textColumn": "Kolom", "Common.define.chartData.textLine": "Garis", + "Common.UI.ButtonColored.textNewColor": "Tambahkan warna khusus baru", "Common.UI.ComboBorderSize.txtNoBorders": "Tidak ada pembatas", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Tidak ada pembatas", "Common.UI.ComboDataView.emptyComboText": "Tidak ada model", @@ -103,6 +104,7 @@ "Common.Views.About.txtPoweredBy": "Powered by", "Common.Views.About.txtTel": "tel:", "Common.Views.About.txtVersion": "Versi", + "Common.Views.AutoCorrectDialog.textAdd": "Tambahkan", "Common.Views.Chat.textSend": "Kirim", "Common.Views.Comments.textAdd": "Tambahkan", "Common.Views.Comments.textAddComment": "Tambahkan", @@ -163,6 +165,9 @@ "Common.Views.ReviewChangesDialog.txtAccept": "Terima", "Common.Views.ReviewChangesDialog.txtAcceptAll": "Terima semua perubahan", "Common.Views.ReviewChangesDialog.txtReject": "Tolak", + "Common.Views.ReviewPopover.textAdd": "Tambahkan", + "Common.Views.ReviewPopover.textAddReply": "Tambahkan balasan", + "Common.Views.ReviewPopover.txtAccept": "Terima", "Common.Views.SymbolTableDialog.textSymbols": "Simbol", "DE.Controllers.LeftMenu.leavePageText": "All unsaved changes in this document will be lost.
Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.", "DE.Controllers.LeftMenu.newDocumentTitle": "Dokumen tidak bernama", @@ -232,6 +237,7 @@ "DE.Controllers.Main.textStrict": "Strict mode", "DE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.
Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.", "DE.Controllers.Main.titleUpdateVersion": "Versi telah diubah", + "DE.Controllers.Main.txtAbove": "Di atas", "DE.Controllers.Main.txtArt": "Your text here", "DE.Controllers.Main.txtBasicShapes": "Bentuk Dasar", "DE.Controllers.Main.txtButtons": "Tombol", @@ -598,6 +604,7 @@ "DE.Controllers.Toolbar.txtSymbol_vdots": "Vertical Ellipsis", "DE.Controllers.Toolbar.txtSymbol_xsi": "Xi", "DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", + "DE.Views.BookmarksDialog.textAdd": "Tambahkan", "DE.Views.CaptionDialog.textAfter": "setelah", "DE.Views.CaptionDialog.textBefore": "Sebelum", "DE.Views.CaptionDialog.textTable": "Tabel", @@ -619,6 +626,7 @@ "DE.Views.ChartSettings.txtTight": "Ketat", "DE.Views.ChartSettings.txtTitle": "Bagan", "DE.Views.ChartSettings.txtTopAndBottom": "Atas dan bawah", + "DE.Views.ControlSettingsDialog.textAdd": "Tambahkan", "DE.Views.DocumentHolder.aboveText": "Di atas", "DE.Views.DocumentHolder.addCommentText": "Tambahkan Komentar", "DE.Views.DocumentHolder.advancedFrameText": "Pengaturan Lanjut untuk Kerangka", @@ -841,6 +849,7 @@ "DE.Views.FileMenu.btnSettingsCaption": "Pengaturan Lanjut...", "DE.Views.FileMenu.btnToEditCaption": "Edit Dokumen", "DE.Views.FileMenu.textDownload": "Download", + "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Tambahkan penulis", "DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Penulis", "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Ubah hak akses", "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Komentar", @@ -992,6 +1001,7 @@ "DE.Views.LeftMenu.tipSearch": "Cari", "DE.Views.LeftMenu.tipSupport": "Masukan & Dukungan", "DE.Views.LeftMenu.tipTitles": "Judul", + "DE.Views.Links.tipInsertHyperlink": "Tambahkan hyperlink", "DE.Views.ListSettingsDialog.textAuto": "Otomatis", "DE.Views.ListSettingsDialog.textLeft": "Kiri", "DE.Views.ListSettingsDialog.textRight": "Kanan", @@ -1309,6 +1319,7 @@ "DE.Views.TextArtSettings.textTemplate": "Template", "DE.Views.TextArtSettings.textTransform": "Transform", "DE.Views.TextArtSettings.txtNoBorders": "No Line", + "DE.Views.Toolbar.capBtnAddComment": "Tambahkan komentar", "DE.Views.Toolbar.capBtnInsChart": "Bagan", "DE.Views.Toolbar.capImgGroup": "Grup", "DE.Views.Toolbar.mniCustomTable": "Sisipkan Tabel Khusus", diff --git a/apps/documenteditor/main/locale/it.json b/apps/documenteditor/main/locale/it.json index b2d9d5733..a8bb45618 100644 --- a/apps/documenteditor/main/locale/it.json +++ b/apps/documenteditor/main/locale/it.json @@ -168,6 +168,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Nuovo", "Common.UI.ExtendedColorDialog.textRGBErr": "Il valore inserito non è corretto.
Inserisci un valore numerico tra 0 e 255.", "Common.UI.HSBColorPicker.textNoColor": "Nessun colore", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Nascondi password", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Mostra password", "Common.UI.SearchDialog.textHighlight": "Evidenzia risultati", "Common.UI.SearchDialog.textMatchCase": "Sensibile al maiuscolo/minuscolo", "Common.UI.SearchDialog.textReplaceDef": "Inserisci testo sostitutivo", @@ -211,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Elenchi puntati automatici", "Common.Views.AutoCorrectDialog.textBy": "Di", "Common.Views.AutoCorrectDialog.textDelete": "Elimina", + "Common.Views.AutoCorrectDialog.textFLCells": "Rendere maiuscola la prima lettera delle celle della tabella", "Common.Views.AutoCorrectDialog.textFLSentence": "Rendere maiuscola la prima lettera di frasi", "Common.Views.AutoCorrectDialog.textHyperlink": "Internet e percorsi di rete con i collegamenti ipertestuali", "Common.Views.AutoCorrectDialog.textHyphens": "‎Trattini (--) con trattino (-)‎", @@ -236,12 +239,14 @@ "Common.Views.Comments.mniAuthorDesc": "Autore dalla Z alla A", "Common.Views.Comments.mniDateAsc": "Più vecchio", "Common.Views.Comments.mniDateDesc": "Più recente", + "Common.Views.Comments.mniFilterGroups": "Filtra per gruppo", "Common.Views.Comments.mniPositionAsc": "Dall'alto", "Common.Views.Comments.mniPositionDesc": "Dal basso", "Common.Views.Comments.textAdd": "Aggiungi", "Common.Views.Comments.textAddComment": "Aggiungi commento", "Common.Views.Comments.textAddCommentToDoc": "Aggiungi commento al documento", "Common.Views.Comments.textAddReply": "Aggiungi risposta", + "Common.Views.Comments.textAll": "Tutti", "Common.Views.Comments.textAnonym": "Ospite", "Common.Views.Comments.textCancel": "Annulla", "Common.Views.Comments.textClose": "Chiudi", @@ -255,6 +260,7 @@ "Common.Views.Comments.textResolve": "Risolvere", "Common.Views.Comments.textResolved": "Chiuso", "Common.Views.Comments.textSort": "Ordinare commenti", + "Common.Views.Comments.textViewResolved": "Non sei autorizzato a riaprire il commento", "Common.Views.CopyWarningDialog.textDontShow": "Non mostrare più questo messaggio", "Common.Views.CopyWarningDialog.textMsg": "Le azioni di copia, taglia e incolla utilizzando i pulsanti della barra degli strumenti dell'editor e le azioni del menu di scelta rapida verranno eseguite solo all'interno di questa scheda dell'editor.

Per copiare o incollare in o da applicazioni esterne alla scheda dell'editor, utilizzare le seguenti combinazioni di tasti:", "Common.Views.CopyWarningDialog.textTitle": "Funzioni copia/taglia/incolla", @@ -431,6 +437,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Apri di nuovo", "Common.Views.ReviewPopover.textReply": "Rispondi", "Common.Views.ReviewPopover.textResolve": "Risolvere", + "Common.Views.ReviewPopover.textViewResolved": "Non sei autorizzato a riaprire il commento", "Common.Views.ReviewPopover.txtAccept": "Accettare", "Common.Views.ReviewPopover.txtDeleteTip": "Eliminare", "Common.Views.ReviewPopover.txtEditTip": "Modificare", @@ -602,6 +609,7 @@ "DE.Controllers.Main.textLongName": "Si prega di immettere un nome che contenga meno di 128 caratteri.", "DE.Controllers.Main.textNoLicenseTitle": "Limite di licenza raggiunto", "DE.Controllers.Main.textPaidFeature": "Funzionalità a pagamento", + "DE.Controllers.Main.textReconnect": "Connessione ripristinata", "DE.Controllers.Main.textRemember": "Ricorda la mia scelta per tutti i file", "DE.Controllers.Main.textRenameError": "Il nome utente non può essere vuoto.", "DE.Controllers.Main.textRenameLabel": "Immettere un nome da utilizzare per la collaborazione", @@ -879,6 +887,7 @@ "DE.Controllers.Main.warnProcessRightsChange": "Ti è stato negato il diritto di modificare il file.", "DE.Controllers.Navigation.txtBeginning": "Inizio del documento", "DE.Controllers.Navigation.txtGotoBeginning": "Vai all'inizio del documento", + "DE.Controllers.Statusbar.textDisconnect": "Connessione persa
Tentativo di connessione in corso. Si prega di controllare le impostazioni di connessione.", "DE.Controllers.Statusbar.textHasChanges": "Sono state rilevate nuove modifiche", "DE.Controllers.Statusbar.textSetTrackChanges": "Sei in modalità traccia cambiamenti", "DE.Controllers.Statusbar.textTrackChanges": "Il documento è aperto in modalità Traccia Revisioni attivata", @@ -902,10 +911,22 @@ "DE.Controllers.Toolbar.textMatrix": "Matrici", "DE.Controllers.Toolbar.textOperator": "Operatori", "DE.Controllers.Toolbar.textRadical": "Radicali", + "DE.Controllers.Toolbar.textRecentlyUsed": "Usati di recente", "DE.Controllers.Toolbar.textScript": "Script", "DE.Controllers.Toolbar.textSymbols": "Simboli", "DE.Controllers.Toolbar.textTabForms": "Forme‎", "DE.Controllers.Toolbar.textWarning": "Avviso", + "DE.Controllers.Toolbar.tipMarkersArrow": "Punti elenco a freccia", + "DE.Controllers.Toolbar.tipMarkersCheckmark": "Punti elenco a segno di spunta", + "DE.Controllers.Toolbar.tipMarkersDash": "Punti elenco a trattino", + "DE.Controllers.Toolbar.tipMarkersFRhombus": "Punti elenco a rombo pieno", + "DE.Controllers.Toolbar.tipMarkersFRound": "Punti elenco rotondi pieni", + "DE.Controllers.Toolbar.tipMarkersFSquare": "Punti elenco quadrati pieni", + "DE.Controllers.Toolbar.tipMarkersHRound": "Punti elenco rotondi vuoti", + "DE.Controllers.Toolbar.tipMarkersStar": "Punti elenco a stella", + "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Elenco numerato a livelli multipli", + "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Simboli puntati a livelli multipli", + "DE.Controllers.Toolbar.tipMultiLevelVarious": "Punti numerati a livelli multipli", "DE.Controllers.Toolbar.txtAccent_Accent": "Acuto", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Freccia Destra-Sinistra in alto", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Freccia verso sinistra sopra", @@ -1457,6 +1478,7 @@ "DE.Views.DocumentHolder.textDistributeCols": "Distribuisci colonne", "DE.Views.DocumentHolder.textDistributeRows": "Distribuisci righe", "DE.Views.DocumentHolder.textEditControls": "Impostazioni di controllo del contenuto", + "DE.Views.DocumentHolder.textEditPoints": "Modifica punti", "DE.Views.DocumentHolder.textEditWrapBoundary": "Modifica bordi disposizione testo", "DE.Views.DocumentHolder.textFlipH": "Capovolgi orizzontalmente", "DE.Views.DocumentHolder.textFlipV": "Capovolgi verticalmente", @@ -1502,9 +1524,17 @@ "DE.Views.DocumentHolder.textUndo": "Annulla", "DE.Views.DocumentHolder.textUpdateAll": "Aggiorna intera tabella", "DE.Views.DocumentHolder.textUpdatePages": "Aggiorna solo numeri di pagina", - "DE.Views.DocumentHolder.textUpdateTOC": "Aggiorna Sommario", + "DE.Views.DocumentHolder.textUpdateTOC": "Aggiorna sommario", "DE.Views.DocumentHolder.textWrap": "Stile di disposizione testo", "DE.Views.DocumentHolder.tipIsLocked": "Questo elemento è attualmente in fase di modifica da un altro utente.", + "DE.Views.DocumentHolder.tipMarkersArrow": "Punti elenco a freccia", + "DE.Views.DocumentHolder.tipMarkersCheckmark": "Punti elenco a segno di spunta", + "DE.Views.DocumentHolder.tipMarkersDash": "Punti elenco a trattino", + "DE.Views.DocumentHolder.tipMarkersFRhombus": "Punti elenco a rombo pieno", + "DE.Views.DocumentHolder.tipMarkersFRound": "Punti elenco rotondi pieni", + "DE.Views.DocumentHolder.tipMarkersFSquare": "Punti elenco quadrati pieni", + "DE.Views.DocumentHolder.tipMarkersHRound": "Punti elenco rotondi vuoti", + "DE.Views.DocumentHolder.tipMarkersStar": "Punti elenco a stella", "DE.Views.DocumentHolder.toDictionaryText": "Aggiungi al Dizionario", "DE.Views.DocumentHolder.txtAddBottom": "Aggiungi bordo inferiore", "DE.Views.DocumentHolder.txtAddFractionBar": "Aggiungi barra di frazione", @@ -1871,6 +1901,7 @@ "DE.Views.ImageSettings.textCrop": "Ritaglia", "DE.Views.ImageSettings.textCropFill": "Riempimento", "DE.Views.ImageSettings.textCropFit": "Adatta", + "DE.Views.ImageSettings.textCropToShape": "Ritaglia forma", "DE.Views.ImageSettings.textEdit": "Modifica", "DE.Views.ImageSettings.textEditObject": "Modifica oggetto", "DE.Views.ImageSettings.textFitMargins": "Adatta al margine", @@ -1885,6 +1916,7 @@ "DE.Views.ImageSettings.textHintFlipV": "Capovolgi verticalmente", "DE.Views.ImageSettings.textInsert": "Sostituisci immagine", "DE.Views.ImageSettings.textOriginalSize": "Dimensione reale", + "DE.Views.ImageSettings.textRecentlyUsed": "Usati di recente", "DE.Views.ImageSettings.textRotate90": "Ruota di 90°", "DE.Views.ImageSettings.textRotation": "Rotazione", "DE.Views.ImageSettings.textSize": "Dimensione", @@ -2000,7 +2032,7 @@ "DE.Views.LineNumbersDialog.txtAutoText": "Auto", "DE.Views.Links.capBtnBookmarks": "Segnalibro", "DE.Views.Links.capBtnCaption": "Didascalia", - "DE.Views.Links.capBtnContentsUpdate": "Aggiorna", + "DE.Views.Links.capBtnContentsUpdate": "Aggiorna tabella", "DE.Views.Links.capBtnCrossRef": "‎Riferimento incrociato‎", "DE.Views.Links.capBtnInsContents": "Sommario", "DE.Views.Links.capBtnInsFootnote": "Nota a piè di pagina", @@ -2025,13 +2057,13 @@ "DE.Views.Links.tipBookmarks": "Crea un segnalibro", "DE.Views.Links.tipCaption": "Inserisci didascalia", "DE.Views.Links.tipContents": "Inserisci Sommario", - "DE.Views.Links.tipContentsUpdate": "Aggiorna Sommario", + "DE.Views.Links.tipContentsUpdate": "Aggiorna sommario", "DE.Views.Links.tipCrossRef": "Inserisci riferimento incrociato", "DE.Views.Links.tipInsertHyperlink": "Aggiungi collegamento ipertestuale", "DE.Views.Links.tipNotes": "Inserisci o modifica Note a piè di pagina", "DE.Views.Links.tipTableFigures": "Inserisci la tabella delle figure", - "DE.Views.Links.tipTableFiguresUpdate": "‎Aggiorna l'indice delle figure‎", - "DE.Views.Links.titleUpdateTOF": "‎Aggiorna l'indice delle figure‎", + "DE.Views.Links.tipTableFiguresUpdate": "‎Aggiorna indice delle figure‎", + "DE.Views.Links.titleUpdateTOF": "‎Aggiorna indice delle figure‎", "DE.Views.ListSettingsDialog.textAuto": "Automatico", "DE.Views.ListSettingsDialog.textCenter": "Al centro", "DE.Views.ListSettingsDialog.textLeft": "A sinistra", @@ -2155,6 +2187,11 @@ "DE.Views.PageSizeDialog.textTitle": "Dimensione pagina", "DE.Views.PageSizeDialog.textWidth": "Larghezza", "DE.Views.PageSizeDialog.txtCustom": "Personalizzato", + "DE.Views.PageThumbnails.textClosePanel": "Chiudi anteprima pagina", + "DE.Views.PageThumbnails.textHighlightVisiblePart": "Evidenziare la parte visibile della pagina", + "DE.Views.PageThumbnails.textPageThumbnails": "Miniature delle pagine", + "DE.Views.PageThumbnails.textThumbnailsSettings": "Impostazioni anteprime", + "DE.Views.PageThumbnails.textThumbnailsSize": "Dimenzione anteprime", "DE.Views.ParagraphSettings.strIndent": "Rientri", "DE.Views.ParagraphSettings.strIndentsLeftText": "A sinistra", "DE.Views.ParagraphSettings.strIndentsRightText": "A destra", @@ -2290,6 +2327,7 @@ "DE.Views.ShapeSettings.textPatternFill": "Modello", "DE.Views.ShapeSettings.textPosition": "Posizione", "DE.Views.ShapeSettings.textRadial": "Radiale", + "DE.Views.ShapeSettings.textRecentlyUsed": "Usati di recente", "DE.Views.ShapeSettings.textRotate90": "Ruota di 90°", "DE.Views.ShapeSettings.textRotation": "Rotazione", "DE.Views.ShapeSettings.textSelectImage": "Seleziona immagine", @@ -2681,6 +2719,7 @@ "DE.Views.Toolbar.textTabLinks": "Riferimenti", "DE.Views.Toolbar.textTabProtect": "Protezione", "DE.Views.Toolbar.textTabReview": "Revisione", + "DE.Views.Toolbar.textTabView": "Visualizza", "DE.Views.Toolbar.textTitleError": "Errore", "DE.Views.Toolbar.textToCurrent": "Alla posizione corrente", "DE.Views.Toolbar.textTop": "in alto:", @@ -2772,6 +2811,15 @@ "DE.Views.Toolbar.txtScheme7": "Azionario", "DE.Views.Toolbar.txtScheme8": "Flusso", "DE.Views.Toolbar.txtScheme9": "Fonderia", + "DE.Views.ViewTab.textAlwaysShowToolbar": "Mostra sempre barra degli strumenti ", + "DE.Views.ViewTab.textDarkDocument": "Documento scuro", + "DE.Views.ViewTab.textFitToPage": "Adatta alla pagina", + "DE.Views.ViewTab.textFitToWidth": "Adatta alla larghezza", + "DE.Views.ViewTab.textInterfaceTheme": "Tema dell'interfaccia", + "DE.Views.ViewTab.textNavigation": "Navigazione", + "DE.Views.ViewTab.textRulers": "Righelli", + "DE.Views.ViewTab.textStatusBar": "Barra di stato", + "DE.Views.ViewTab.textZoom": "Zoom", "DE.Views.WatermarkSettingsDialog.textAuto": "Auto", "DE.Views.WatermarkSettingsDialog.textBold": "Grassetto", "DE.Views.WatermarkSettingsDialog.textColor": "Colore del testo", diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json index 93234a406..55c8e5183 100644 --- a/apps/documenteditor/main/locale/ja.json +++ b/apps/documenteditor/main/locale/ja.json @@ -615,7 +615,7 @@ "DE.Controllers.Main.textStrict": "厳格モード", "DE.Controllers.Main.textTryUndoRedo": "ファスト共同編集モードに元に戻す/やり直しの機能は無効になります。
他のユーザーの干渉なし編集するために「厳密なモード」をクリックして、厳密な共同編集モードに切り替えてください。保存した後にのみ、変更を送信してください。編集の詳細設定を使用して共同編集モードを切り替えることができます。", "DE.Controllers.Main.textTryUndoRedoWarn": "ファスト共同編集モードでは、元に戻す/やり直し機能が無効になります。", - "DE.Controllers.Main.titleLicenseExp": "ライセンス期限を過ぎました", + "DE.Controllers.Main.titleLicenseExp": "ライセンスの有効期限が切れています", "DE.Controllers.Main.titleServerVersion": "エディターが更新された", "DE.Controllers.Main.titleUpdateVersion": "バージョンを変更しました。", "DE.Controllers.Main.txtAbove": "上", diff --git a/apps/documenteditor/main/locale/pt.json b/apps/documenteditor/main/locale/pt.json index 34ba88974..d4fd3e45b 100644 --- a/apps/documenteditor/main/locale/pt.json +++ b/apps/documenteditor/main/locale/pt.json @@ -54,7 +54,7 @@ "Common.Controllers.ReviewChanges.textOnGlobal": "{0} Rastreamento de alterações habilitado para todos. ", "Common.Controllers.ReviewChanges.textParaDeleted": "Parágrafo apagado", "Common.Controllers.ReviewChanges.textParaFormatted": "Paragraph Formatted", - "Common.Controllers.ReviewChanges.textParaInserted": "Paragraph Inserted", + "Common.Controllers.ReviewChanges.textParaInserted": "Parágrafo Inserido", "Common.Controllers.ReviewChanges.textParaMoveFromDown": "Movido Para Baixo:", "Common.Controllers.ReviewChanges.textParaMoveFromUp": "Movido Para Cima:", "Common.Controllers.ReviewChanges.textParaMoveTo": "Movido:", @@ -70,9 +70,9 @@ "Common.Controllers.ReviewChanges.textStrikeout": "Taxado", "Common.Controllers.ReviewChanges.textSubScript": "Subscript", "Common.Controllers.ReviewChanges.textSuperScript": "Superscript", - "Common.Controllers.ReviewChanges.textTableChanged": "Configurações de Tabela Alteradas", - "Common.Controllers.ReviewChanges.textTableRowsAdd": "Linhas de Tabela Incluídas", - "Common.Controllers.ReviewChanges.textTableRowsDel": "Linhas de Tabela Excluídas", + "Common.Controllers.ReviewChanges.textTableChanged": "Configurações da Tabela Alteradas", + "Common.Controllers.ReviewChanges.textTableRowsAdd": "Linhas da Tabela Incluídas", + "Common.Controllers.ReviewChanges.textTableRowsDel": "Linhas da Tabela Excluídas", "Common.Controllers.ReviewChanges.textTabs": "Change tabs", "Common.Controllers.ReviewChanges.textTitleComparison": "Configurações de Comparação", "Common.Controllers.ReviewChanges.textUnderline": "Underline", @@ -110,10 +110,10 @@ "Common.define.chartData.textLineStacked": "Alinhado", "Common.define.chartData.textLineStackedMarker": "Linha empilhada com marcadores", "Common.define.chartData.textLineStackedPer": "100% Alinhado", - "Common.define.chartData.textLineStackedPerMarker": "100% Alinhado com", + "Common.define.chartData.textLineStackedPerMarker": "100% Alinhado com marcadores", "Common.define.chartData.textPie": "Gráfico de pizza", "Common.define.chartData.textPie3d": "Pizza 3-D", - "Common.define.chartData.textPoint": "Gráfico de pontos", + "Common.define.chartData.textPoint": "Gráfico de dispersão", "Common.define.chartData.textScatter": "Dispersão", "Common.define.chartData.textScatterLine": "Dispersão com linhas retas", "Common.define.chartData.textScatterLineMarker": "Dispersão com linhas retas e marcadores", @@ -260,7 +260,7 @@ "Common.Views.Comments.textResolve": "Resolver", "Common.Views.Comments.textResolved": "Resolvido", "Common.Views.Comments.textSort": "Ordenar comentários", - "Common.Views.Comments.textViewResolved": "Não tem permissão para reabrir comentários", + "Common.Views.Comments.textViewResolved": "Você não tem permissão para reabrir comentários", "Common.Views.CopyWarningDialog.textDontShow": "Não exibir esta mensagem novamente", "Common.Views.CopyWarningDialog.textMsg": "As ações copiar, cortar e colar usando os botões da barra de ferramentas do editor e as ações de menu de contexto serão realizadas apenas nesta aba do editor.

Para copiar ou colar para ou de aplicativos externos a aba do editor, use as seguintes combinações do teclado:", "Common.Views.CopyWarningDialog.textTitle": "Ações copiar, cortar e colar", @@ -2032,7 +2032,7 @@ "DE.Views.LineNumbersDialog.txtAutoText": "Auto", "DE.Views.Links.capBtnBookmarks": "Favorito", "DE.Views.Links.capBtnCaption": "Legenda", - "DE.Views.Links.capBtnContentsUpdate": "Atualizar", + "DE.Views.Links.capBtnContentsUpdate": "Atualizar tabela", "DE.Views.Links.capBtnCrossRef": "Referência cruzada", "DE.Views.Links.capBtnInsContents": "Tabela de Conteúdo", "DE.Views.Links.capBtnInsFootnote": "Nota de rodapé", @@ -2100,8 +2100,8 @@ "DE.Views.MailMergeSettings.errorMailMergeSaveFile": "Merge failed.", "DE.Views.MailMergeSettings.notcriticalErrorTitle": "Warning", "DE.Views.MailMergeSettings.textAddRecipients": "Add some recipients to the list first", - "DE.Views.MailMergeSettings.textAll": "All records", - "DE.Views.MailMergeSettings.textCurrent": "Current record", + "DE.Views.MailMergeSettings.textAll": "Todos os registros", + "DE.Views.MailMergeSettings.textCurrent": "Registro atual", "DE.Views.MailMergeSettings.textDataSource": "Data Source", "DE.Views.MailMergeSettings.textDocx": "Docx", "DE.Views.MailMergeSettings.textDownload": "Baixar", @@ -2121,11 +2121,11 @@ "DE.Views.MailMergeSettings.textReadMore": "Read more", "DE.Views.MailMergeSettings.textSendMsg": "All mail messages are ready and will be sent out within some time.
The speed of mailing depends on your mail service.
You can continue working with document or close it. After the operation is over the notification will be sent to your registration email address.", "DE.Views.MailMergeSettings.textTo": "To", - "DE.Views.MailMergeSettings.txtFirst": "To first record", + "DE.Views.MailMergeSettings.txtFirst": "Para o primeiro registro", "DE.Views.MailMergeSettings.txtFromToError": "O valor \"De\" deve ser menor que o valor \"Para\"", - "DE.Views.MailMergeSettings.txtLast": "To last record", - "DE.Views.MailMergeSettings.txtNext": "To next record", - "DE.Views.MailMergeSettings.txtPrev": "To previous record", + "DE.Views.MailMergeSettings.txtLast": "Para o registro anterior", + "DE.Views.MailMergeSettings.txtNext": "Para o próximo registro", + "DE.Views.MailMergeSettings.txtPrev": "Para o registro anterior", "DE.Views.MailMergeSettings.txtUntitled": "Untitled", "DE.Views.MailMergeSettings.warnProcessMailMerge": "Starting merge failed", "DE.Views.Navigation.txtCollapse": "Recolher tudo", diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json index 7823ce47e..9123e4cfd 100644 --- a/apps/documenteditor/main/locale/ru.json +++ b/apps/documenteditor/main/locale/ru.json @@ -2032,7 +2032,7 @@ "DE.Views.LineNumbersDialog.txtAutoText": "Авто", "DE.Views.Links.capBtnBookmarks": "Закладка", "DE.Views.Links.capBtnCaption": "Название", - "DE.Views.Links.capBtnContentsUpdate": "Обновить", + "DE.Views.Links.capBtnContentsUpdate": "Обновить таблицу", "DE.Views.Links.capBtnCrossRef": "Перекрестная ссылка", "DE.Views.Links.capBtnInsContents": "Оглавление", "DE.Views.Links.capBtnInsFootnote": "Сноска", diff --git a/apps/presentationeditor/embed/locale/id.json b/apps/presentationeditor/embed/locale/id.json index d78e86bb4..bd2968a12 100644 --- a/apps/presentationeditor/embed/locale/id.json +++ b/apps/presentationeditor/embed/locale/id.json @@ -1,13 +1,13 @@ { "common.view.modals.txtCopy": "Disalin ke papan klip", "common.view.modals.txtEmbed": "Melekatkan", - "common.view.modals.txtHeight": "Tinggi", + "common.view.modals.txtHeight": "Ketinggian", "common.view.modals.txtShare": "Bagi tautan", "common.view.modals.txtWidth": "Lebar", - "PE.ApplicationController.convertationErrorText": "Perubahan gagal", - "PE.ApplicationController.convertationTimeoutText": "pengubahan melebihi batas waktu ", + "PE.ApplicationController.convertationErrorText": "Konversi gagal.", + "PE.ApplicationController.convertationTimeoutText": "Waktu konversi habis.", "PE.ApplicationController.criticalErrorTitle": "Kesalahan", - "PE.ApplicationController.downloadErrorText": "Gagal mengunduh", + "PE.ApplicationController.downloadErrorText": "Unduhan gagal.", "PE.ApplicationController.downloadTextText": "Mengunduh penyajian", "PE.ApplicationController.errorAccessDeny": "Kamu mencoba melakukan sebuah", "PE.ApplicationController.errorDefaultMessage": "Kode kesalahan %1", @@ -17,14 +17,15 @@ "PE.ApplicationController.errorUserDrop": "File tidak dapat di akses", "PE.ApplicationController.notcriticalErrorTitle": "Peringatan", "PE.ApplicationController.scriptLoadError": "Koneksi terlalu lambat,", + "PE.ApplicationController.textAnonymous": "Tamu", "PE.ApplicationController.textLoadingDocument": "Memuat penyajian", "PE.ApplicationController.textOf": "Dari", "PE.ApplicationController.txtClose": "Tutup", "PE.ApplicationController.unknownErrorText": "Kesalahan tidak diketahui", "PE.ApplicationController.unsupportedBrowserErrorText": "Peramban kamu tidak didukung", - "PE.ApplicationController.waitText": "Silahkan menunggu", + "PE.ApplicationController.waitText": "Mohon menunggu", "PE.ApplicationView.txtDownload": "Unduh", "PE.ApplicationView.txtEmbed": "Melekatkan", "PE.ApplicationView.txtFullScreen": "Layar penuh", - "PE.ApplicationView.txtShare": "Bagi" + "PE.ApplicationView.txtShare": "Bagikan" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/be.json b/apps/presentationeditor/main/locale/be.json index 75e7ad1b2..f756587f8 100644 --- a/apps/presentationeditor/main/locale/be.json +++ b/apps/presentationeditor/main/locale/be.json @@ -1230,7 +1230,7 @@ "PE.Views.DocumentHolder.txtPastePicture": "Малюнак", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Пакінуць зыходнае фарматаванне", "PE.Views.DocumentHolder.txtPressLink": "Націсніце CTRL і пстрыкніце па спасылцы", - "PE.Views.DocumentHolder.txtPreview": "Распачаць слайд-шоў", + "PE.Views.DocumentHolder.txtPreview": "Распачаць слайд-шоу", "PE.Views.DocumentHolder.txtPrintSelection": "Надрукаваць вылучанае", "PE.Views.DocumentHolder.txtRemFractionBar": "Выдаліць рыску дробу", "PE.Views.DocumentHolder.txtRemLimit": "Выдаліць ліміт", @@ -1258,8 +1258,8 @@ "PE.Views.DocumentHolder.vertAlignText": "Вертыкальнае выраўноўванне", "PE.Views.DocumentPreview.goToSlideText": "Перайсці да слайда", "PE.Views.DocumentPreview.slideIndexText": "Слайд {0} з {1}", - "PE.Views.DocumentPreview.txtClose": "Закрыць слайд-шоў", - "PE.Views.DocumentPreview.txtEndSlideshow": "Скончыць слайд-шоў", + "PE.Views.DocumentPreview.txtClose": "Закрыць слайд-шоу", + "PE.Views.DocumentPreview.txtEndSlideshow": "Скончыць слайд-шоу", "PE.Views.DocumentPreview.txtExitFullScreen": "Выйсці з поўнаэкраннага рэжыму", "PE.Views.DocumentPreview.txtFinalMessage": "Прагляд слайдаў завершаны. Пстрыкніце, каб выйсці.", "PE.Views.DocumentPreview.txtFullScreen": "Поўнаэкранны рэжым", @@ -1685,7 +1685,7 @@ "PE.Views.Statusbar.tipAccessRights": "Кіраванне правамі на доступ да дакумента", "PE.Views.Statusbar.tipFitPage": "Па памерах слайда", "PE.Views.Statusbar.tipFitWidth": "Па шырыні", - "PE.Views.Statusbar.tipPreview": "Распачаць слайд-шоў", + "PE.Views.Statusbar.tipPreview": "Распачаць слайд-шоу", "PE.Views.Statusbar.tipSetLang": "Абраць мову тэксту", "PE.Views.Statusbar.tipZoomFactor": "Маштаб", "PE.Views.Statusbar.tipZoomIn": "Павялічыць", @@ -1899,7 +1899,7 @@ "PE.Views.Toolbar.tipMarkers": "Спіс з адзнакамі", "PE.Views.Toolbar.tipNumbers": "Пранумараваны спіс", "PE.Views.Toolbar.tipPaste": "Уставіць", - "PE.Views.Toolbar.tipPreview": "Распачаць слайд-шоў", + "PE.Views.Toolbar.tipPreview": "Распачаць слайд-шоу", "PE.Views.Toolbar.tipPrint": "Друк", "PE.Views.Toolbar.tipRedo": "Паўтарыць", "PE.Views.Toolbar.tipSave": "Захаваць", diff --git a/apps/presentationeditor/main/locale/el.json b/apps/presentationeditor/main/locale/el.json index a23e15ce5..59085b43f 100644 --- a/apps/presentationeditor/main/locale/el.json +++ b/apps/presentationeditor/main/locale/el.json @@ -47,6 +47,188 @@ "Common.define.chartData.textScatterSmoothMarker": "Διασπορά με ομαλές γραμμές και δείκτες", "Common.define.chartData.textStock": "Μετοχή", "Common.define.chartData.textSurface": "Επιφάνεια", + "Common.define.effectData.textAcross": "Απέναντι", + "Common.define.effectData.textAppear": "Εμφάνιση", + "Common.define.effectData.textArcDown": "Τόξο Κάτω", + "Common.define.effectData.textArcLeft": "Τόξο Αριστερά", + "Common.define.effectData.textArcRight": "Τόξο Δεξιά", + "Common.define.effectData.textArcUp": "Τόξο Πάνω", + "Common.define.effectData.textBasic": "Βασικό", + "Common.define.effectData.textBasicSwivel": "Βασική Συστροφή", + "Common.define.effectData.textBasicZoom": "Βασική Εστίαση", + "Common.define.effectData.textBean": "Κόκκος", + "Common.define.effectData.textBlinds": "Περσίδες", + "Common.define.effectData.textBlink": "Βλεφάρισμα", + "Common.define.effectData.textBoldFlash": "Έντονη Λάμψη", + "Common.define.effectData.textBoldReveal": "Έντονη Απκάλυψη", + "Common.define.effectData.textBoomerang": "Μπούμερανγκ", + "Common.define.effectData.textBounce": "Αναπήδηση", + "Common.define.effectData.textBounceLeft": "Αναπήδηση Αριστερά", + "Common.define.effectData.textBounceRight": "Αναπήδηση Δεξιά", + "Common.define.effectData.textBox": "Κουτί", + "Common.define.effectData.textBrushColor": "Χρώμα Βούρτσας", + "Common.define.effectData.textCenterRevolve": "Κεντρική Περιστροφή", + "Common.define.effectData.textCheckerboard": "Σκακιέρα", + "Common.define.effectData.textCircle": "Κύκλος", + "Common.define.effectData.textCollapse": "Κλείσιμο", + "Common.define.effectData.textColorPulse": "Παλμός Χρώματος", + "Common.define.effectData.textComplementaryColor": "Συμπληρωματικό Χρώμα", + "Common.define.effectData.textComplementaryColor2": "Συμπληρωματικό Χρώμα 2", + "Common.define.effectData.textCompress": "Συμπίεση", + "Common.define.effectData.textContrast": "Αντίθεση", + "Common.define.effectData.textContrastingColor": "Χρώμα Αντίθεσης", + "Common.define.effectData.textCredits": "Μνεία", + "Common.define.effectData.textCrescentMoon": "Ημισέληνος", + "Common.define.effectData.textCurveDown": "Καμπύλη Κάτω", + "Common.define.effectData.textCurvedSquare": "Καμπυλωτό Τετράγωνο", + "Common.define.effectData.textCurvedX": "Καμπυλωτό Χ", + "Common.define.effectData.textCurvyLeft": "Καμπύλη Αριστερά", + "Common.define.effectData.textCurvyRight": "Καμπύλη Δεξιά", + "Common.define.effectData.textCurvyStar": "Καμπυλωτό Αστέρι", + "Common.define.effectData.textCustomPath": "Προσαρμοσμένο Μονοπάτι", + "Common.define.effectData.textCuverUp": "Καμπύλη Πάνω", + "Common.define.effectData.textDarken": "Σκίαση", + "Common.define.effectData.textDecayingWave": "Υποχωρούμενο Κύμα", + "Common.define.effectData.textDesaturate": "Αποκορεσμός", + "Common.define.effectData.textDiagonalDownRight": "Διαγώνιος Κάτω Δεξιά", + "Common.define.effectData.textDiagonalUpRight": "Διαγώνιος Πάνω Δεξιά", + "Common.define.effectData.textDiamond": "Ρόμβος", + "Common.define.effectData.textDisappear": "Εξαφάνιση", + "Common.define.effectData.textDissolveIn": "Διάλυση Μέσα", + "Common.define.effectData.textDissolveOut": "Διάλυση Έξω", + "Common.define.effectData.textDown": "Κάτω", + "Common.define.effectData.textDrop": "Πτώση", + "Common.define.effectData.textEmphasis": "Εφφέ Έμφασης", + "Common.define.effectData.textEntrance": "Εφφέ Εισόδου", + "Common.define.effectData.textEqualTriangle": "Ισόπλευρο Τρίγωνο", + "Common.define.effectData.textExciting": "Συναρπαστικός", + "Common.define.effectData.textExit": "Εφφέ Εξόδου", + "Common.define.effectData.textExpand": "Επέκταση", + "Common.define.effectData.textFade": "Ξεθώριασμα", + "Common.define.effectData.textFigureFour": "Διάγραμμα 8 Τέσσερα", + "Common.define.effectData.textFillColor": "Χρώμα Γεμίσματος", + "Common.define.effectData.textFlip": "Αναστροφή", + "Common.define.effectData.textFloat": "Επίπλευση", + "Common.define.effectData.textFloatDown": "Επίπλευση Κάτω", + "Common.define.effectData.textFloatIn": "Επίπλευση Μέσα", + "Common.define.effectData.textFloatOut": "Επίπλευση Έξω", + "Common.define.effectData.textFloatUp": "Επίπλευση Πάνω", + "Common.define.effectData.textFlyIn": "Πέταγμα Μέσα", + "Common.define.effectData.textFlyOut": "Πέταγμα Έξω", + "Common.define.effectData.textFontColor": "Χρώμα Γραμματοσειράς", + "Common.define.effectData.textFootball": "Μπάλα Ποδοσφαίρου", + "Common.define.effectData.textFromBottom": "Από το Κάτω Μέρος", + "Common.define.effectData.textFromBottomLeft": "Από το Κάτω Μέρος Αριστερά", + "Common.define.effectData.textFromBottomRight": "Από το Κάτω Μέρος Δεξιά", + "Common.define.effectData.textFromLeft": "Από Αριστερά", + "Common.define.effectData.textFromRight": "Από Δεξιά", + "Common.define.effectData.textFromTop": "Από την Κορυφή", + "Common.define.effectData.textFromTopLeft": "Από την Κορυφή Αριστερά", + "Common.define.effectData.textFromTopRight": "Από την Κορυφή Δεξιά", + "Common.define.effectData.textFunnel": "Χωνί", + "Common.define.effectData.textGrowShrink": "Μεγέθυνση/Σμίκρυνση", + "Common.define.effectData.textHeart": "Καρδιά", + "Common.define.effectData.textHeartbeat": "Σφυγμός", + "Common.define.effectData.textHexagon": "Εξάγωνο", + "Common.define.effectData.textHorizontal": "Οριζόντιος", + "Common.define.effectData.textHorizontalFigure": "Οριζόντιο Διάγραμμα 8", + "Common.define.effectData.textHorizontalIn": "Οριζόντια Μέσα", + "Common.define.effectData.textHorizontalOut": "Οριζόντια Έξω", + "Common.define.effectData.textIn": "Μέσα", + "Common.define.effectData.textInFromScreenCenter": "Μέσα Από το Κέντρο της Οθόνης", + "Common.define.effectData.textInSlightly": "Ελαφρώς Μέσα", + "Common.define.effectData.textInToScreenCenter": "Μέσα Προς το Κέντρο της Οθόνης", + "Common.define.effectData.textInvertedSquare": "Ανεστραμμένο Τετράγωνο", + "Common.define.effectData.textInvertedTriangle": "Ανεστραμμένο Τρίγωνο", + "Common.define.effectData.textLeft": "Αριστερά", + "Common.define.effectData.textLeftDown": "Αριστερά Κάτω", + "Common.define.effectData.textLeftUp": "Αριστερά Πάνω", + "Common.define.effectData.textLighten": "Φώτισμα", + "Common.define.effectData.textLineColor": "Χρώμα Γραμμής", + "Common.define.effectData.textLinesCurves": "Καμπύλες", + "Common.define.effectData.textLoopDeLoop": "Κυκλική Περιστροφή", + "Common.define.effectData.textModerate": "Μέτριο", + "Common.define.effectData.textNeutron": "Νετρόνιο", + "Common.define.effectData.textObjectCenter": "Κέντρο Αντικειμένου", + "Common.define.effectData.textObjectColor": "Χρώμα Αντικειμένου", + "Common.define.effectData.textOctagon": "Οκτάγωνο", + "Common.define.effectData.textOut": "Έξω", + "Common.define.effectData.textOutFromScreenBottom": "Έξω Από το Κάτω Μέρος της Οθόνης", + "Common.define.effectData.textOutSlightly": "Ελαφρώς Έξω", + "Common.define.effectData.textParallelogram": "Παραλληλόγραμμο", + "Common.define.effectData.textPath": "Μονοπάτι Κίνησης", + "Common.define.effectData.textPeanut": "Φυστίκι", + "Common.define.effectData.textPeekIn": "Κρυφοκοίταγμα Μέσα", + "Common.define.effectData.textPeekOut": "Κρυφοκοίταγμα Έξω", + "Common.define.effectData.textPentagon": "Πεντάγωνο", + "Common.define.effectData.textPinwheel": "Τροχός", + "Common.define.effectData.textPlus": "Συν", + "Common.define.effectData.textPointStar4": "Αστέρι 4 Σημείων", + "Common.define.effectData.textPointStar5": "Αστέρι 5 Σημείων", + "Common.define.effectData.textPointStar6": "Αστέρι 6 Σημείων", + "Common.define.effectData.textPointStar8": "Αστέρι 8 Σημείων", + "Common.define.effectData.textPulse": "Παλμός", + "Common.define.effectData.textRandomBars": "Τυχαίες Ράβδοι", + "Common.define.effectData.textRight": "Δεξιά", + "Common.define.effectData.textRightDown": "Δεξιά Κάτω", + "Common.define.effectData.textRightTriangle": "Ορθογώνιο Τρίγωνο", + "Common.define.effectData.textRightUp": "Δεξιά Πάνω", + "Common.define.effectData.textRiseUp": "Ανύψωση", + "Common.define.effectData.textSCurve1": "S Καμπύλη 1", + "Common.define.effectData.textSCurve2": "S Καμπύλη 2", + "Common.define.effectData.textShape": "Σχήμα", + "Common.define.effectData.textShimmer": "Λαμπύρισμα", + "Common.define.effectData.textShrinkTurn": "Σμίκρυνση και Στροφή", + "Common.define.effectData.textSineWave": "Ημιτονοειδές Κύμα", + "Common.define.effectData.textSinkDown": "Βύθιση Κάτω", + "Common.define.effectData.textSlideCenter": "Κέντρο Διαφάνειας", + "Common.define.effectData.textSpecial": "Ειδικός", + "Common.define.effectData.textSpin": "Περιστροφή", + "Common.define.effectData.textSpinner": "Στροβιλιστής", + "Common.define.effectData.textSpiralIn": "Ελικοειδής Μέσα", + "Common.define.effectData.textSpiralLeft": "Ελικοειδής Αριστερά", + "Common.define.effectData.textSpiralOut": "Ελικοειδής Έξω", + "Common.define.effectData.textSpiralRight": "Ελικοειδής Δεξιά", + "Common.define.effectData.textSplit": "Διαίρεση", + "Common.define.effectData.textSpoke1": "1 Ακτίνα", + "Common.define.effectData.textSpoke2": "2 Ακτίνες", + "Common.define.effectData.textSpoke3": "3 Ακτίνες", + "Common.define.effectData.textSpoke4": "4 Ακτίνες", + "Common.define.effectData.textSpoke8": "8 Ακτίνες", + "Common.define.effectData.textSpring": "Ελατήριο", + "Common.define.effectData.textSquare": "Τετράγωνο", + "Common.define.effectData.textStairsDown": "Κλίμακα προς τα Κάτω", + "Common.define.effectData.textStretch": "Επέκταση", + "Common.define.effectData.textStrips": "Λωρίδες", + "Common.define.effectData.textSubtle": "Διακριτικός", + "Common.define.effectData.textSwivel": "Στροφή", + "Common.define.effectData.textSwoosh": "Ροή", + "Common.define.effectData.textTeardrop": "Δάκρυ", + "Common.define.effectData.textTeeter": "Τραμπάλα", + "Common.define.effectData.textToBottom": "Προς το Κάτω Μέρος", + "Common.define.effectData.textToBottomLeft": "Προς το Κάτω Μέρος Αριστερά", + "Common.define.effectData.textToBottomRight": "Προς το Κάτω Μέρος Δεξιά", + "Common.define.effectData.textToFromScreenBottom": "Έξω Προς το Κάτω Μέρος της Οθόνης", + "Common.define.effectData.textToLeft": "Προς τα Αριστερά", + "Common.define.effectData.textToRight": "Προς τα Δεξιά", + "Common.define.effectData.textToTop": "Προς την Κορυφή", + "Common.define.effectData.textToTopLeft": "Προς την Κορυφή Αριστερά", + "Common.define.effectData.textToTopRight": "Προς την Κορυφή Δεξιά", + "Common.define.effectData.textTransparency": "Διαφάνεια", + "Common.define.effectData.textTrapezoid": "Τραπέζιο", + "Common.define.effectData.textUnderline": "Υπογράμμιση", + "Common.define.effectData.textUp": "Πάνω", + "Common.define.effectData.textVertical": "Κατακόρυφος", + "Common.define.effectData.textVerticalFigure": "Κατακόρυφο Διάγραμμα 8", + "Common.define.effectData.textVerticalIn": "Κατοκόρυφος Μέσα", + "Common.define.effectData.textVerticalOut": "Κατακόρυφος Έξω", + "Common.define.effectData.textWave": "Κύμα", + "Common.define.effectData.textWedge": "Σφήνα", + "Common.define.effectData.textWheel": "Τροχός", + "Common.define.effectData.textWhip": "Μαστίγιο", + "Common.define.effectData.textWipe": "Εκκαθάριση", + "Common.define.effectData.textZigzag": "Ζιγκζαγκ", + "Common.define.effectData.textZoom": "Εστίαση", "Common.Translation.warnFileLocked": "Το αρχείο τελεί υπό επεξεργασία σε άλλη εφαρμογή. Μπορείτε να συνεχίσετε την επεξεργασία και να το αποθηκεύσετε ως αντίγραφο.", "Common.Translation.warnFileLockedBtnEdit": "Δημιουργία αντιγράφου", "Common.Translation.warnFileLockedBtnView": "Άνοιγμα για προβολή", @@ -61,6 +243,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Νέο", "Common.UI.ExtendedColorDialog.textRGBErr": "Η τιμή που βάλατε δεν είναι αποδεκτή.
Παρακαλούμε βάλτε μια αριθμητική τιμή μεταξύ 0 και 255.", "Common.UI.HSBColorPicker.textNoColor": "Χωρίς Χρώμα", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Απόκρυψη συνθηματικού", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Εμφάνιση συνθηματικού", "Common.UI.SearchDialog.textHighlight": "Επισήμανση αποτελεσμάτων", "Common.UI.SearchDialog.textMatchCase": "Με διάκριση πεζών-κεφαλαίων", "Common.UI.SearchDialog.textReplaceDef": "Εισάγετε το κείμενο αντικατάστασης", @@ -104,6 +288,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Αυτόματες λίστες κουκκίδων", "Common.Views.AutoCorrectDialog.textBy": "Κατά", "Common.Views.AutoCorrectDialog.textDelete": "Διαγραφή", + "Common.Views.AutoCorrectDialog.textFLCells": "Να γίνει κεφαλαίο το πρώτο γράμμα των κελιών του πίνακα", "Common.Views.AutoCorrectDialog.textFLSentence": "Κεφαλαιοποιήστε το πρώτο γράμμα των προτάσεων", "Common.Views.AutoCorrectDialog.textHyperlink": "Μονοπάτια δικτύου και διαδικτύου με υπερσυνδέσμους", "Common.Views.AutoCorrectDialog.textHyphens": "Παύλες (--) με πλατιά παύλα (—)", @@ -129,12 +314,14 @@ "Common.Views.Comments.mniAuthorDesc": "Συγγραφέας Ω έως Α", "Common.Views.Comments.mniDateAsc": "Παλαιότερο", "Common.Views.Comments.mniDateDesc": "Νεότερο", + "Common.Views.Comments.mniFilterGroups": "Φιλτράρισμα κατά Ομάδα", "Common.Views.Comments.mniPositionAsc": "Από πάνω", "Common.Views.Comments.mniPositionDesc": "Από κάτω", "Common.Views.Comments.textAdd": "Προσθήκη", "Common.Views.Comments.textAddComment": "Προσθήκη Σχολίου", "Common.Views.Comments.textAddCommentToDoc": "Προσθήκη Σχολίου στο Έγγραφο", "Common.Views.Comments.textAddReply": "Προσθήκη Απάντησης", + "Common.Views.Comments.textAll": "Όλα", "Common.Views.Comments.textAnonym": "Επισκέπτης", "Common.Views.Comments.textCancel": "Ακύρωση", "Common.Views.Comments.textClose": "Κλείσιμο", @@ -148,6 +335,7 @@ "Common.Views.Comments.textResolve": "Επίλυση", "Common.Views.Comments.textResolved": "Επιλύθηκε", "Common.Views.Comments.textSort": "Ταξινόμηση σχολίων", + "Common.Views.Comments.textViewResolved": "Δεν έχετε άδεια να ανοίξετε ξανά το σχόλιο", "Common.Views.CopyWarningDialog.textDontShow": "Να μην εμφανίζεται αυτό το μήνυμα ξανά", "Common.Views.CopyWarningDialog.textMsg": "Η αντιγραφή, η αποκοπή και η επικόλληση μέσω των κουμπιών της εργαλειοθήκης του συντάκτη καθώς και οι ενέργειες του μενού συμφραζομένων εφαρμόζονται μόνο εντός αυτής της καρτέλας.

Για αντιγραφή ή επικόλληση από ή προς εφαρμογές εκτός της καρτέλας χρησιμοποιήστε τους ακόλουθους συνδυασμούς πλήκτρων:", "Common.Views.CopyWarningDialog.textTitle": "Ενέργειες Αντιγραφής, Αποκοπής και Επικόλλησης", @@ -312,6 +500,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Άνοιγμα Ξανά", "Common.Views.ReviewPopover.textReply": "Απάντηση", "Common.Views.ReviewPopover.textResolve": "Επίλυση", + "Common.Views.ReviewPopover.textViewResolved": "Δεν έχετε άδεια να ανοίξετε ξανά το σχόλιο", "Common.Views.ReviewPopover.txtDeleteTip": "Διαγραφή", "Common.Views.ReviewPopover.txtEditTip": "Επεξεργασία", "Common.Views.SaveAsDlg.textLoading": "Γίνεται φόρτωση", @@ -469,6 +658,7 @@ "PE.Controllers.Main.textLongName": "Εισάγετε ένα όνομα μικρότερο από 128 χαρακτήρες.", "PE.Controllers.Main.textNoLicenseTitle": "Το όριο άδειας συμπληρώθηκε.", "PE.Controllers.Main.textPaidFeature": "Δυνατότητα επί πληρωμή", + "PE.Controllers.Main.textReconnect": "Η σύνδεση αποκαταστάθηκε", "PE.Controllers.Main.textRemember": "Να θυμάσαι την επιλογή μου για όλα τα αρχεία", "PE.Controllers.Main.textRenameError": "Το όνομα χρήστη δεν μπορεί να είναι κενό.", "PE.Controllers.Main.textRenameLabel": "Εισάγετε ένα όνομα για συνεργατική χρήση", @@ -750,6 +940,7 @@ "PE.Controllers.Main.warnNoLicense": "Έχετε φτάσει το όριο για ταυτόχρονες συνδέσεις με %1 επεξεργαστές. Αυτό το έγγραφο θα ανοίχτεί μόνο για προβολή.​​
Παρακαλούμε επικοινωνήστε με την ομάδα πωλήσεων %1 για προσωπικούς όρους αναβάθμισης.", "PE.Controllers.Main.warnNoLicenseUsers": "Έχετε φτάσει το όριο χρήστη για συντάκτες %1.
Επικοινωνήστε με την ομάδα πωλήσεων %1 για προσωπικούς όρους αναβάθμισης.", "PE.Controllers.Main.warnProcessRightsChange": "Σας έχει απαγορευτεί το δικαίωμα επεξεργασίας του αρχείου.", + "PE.Controllers.Statusbar.textDisconnect": "Η σύνδεση χάθηκε
Απόπειρα επανασύνδεσης. Παρακαλούμε, ελέγξτε τις ρυθμίσεις σύνδεσης.", "PE.Controllers.Statusbar.zoomText": "Εστίαση {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "Η γραμματοσειρά που επιχειρείτε να αποθηκεύσετε δεν είναι διαθέσιμη στην τρέχουσα συσκευή.
Η τεχνοτροπία κειμένου θα εμφανιστεί με μια από τις γραμματοσειρές συστήματος, η αποθηκευμένη γραμματοσειρά θα χρησιμοποιηθεί όταν γίνει διαθέσιμη.
Θέλετε να συνεχίσετε;", "PE.Controllers.Toolbar.textAccent": "Τόνοι/Πνεύματα", @@ -1086,6 +1277,29 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Ζήτα", "PE.Controllers.Viewport.textFitPage": "Προσαρμογή στη Διαφάνεια", "PE.Controllers.Viewport.textFitWidth": "Προσαρμογή στο Πλάτος", + "PE.Views.Animation.strDelay": "Καθυστέρηση", + "PE.Views.Animation.strDuration": "Διάρκεια", + "PE.Views.Animation.strRepeat": "Επανάληψη", + "PE.Views.Animation.strRewind": "Επανάληψη", + "PE.Views.Animation.strStart": "Εκκίνηση", + "PE.Views.Animation.strTrigger": "Ενεργοποίηση", + "PE.Views.Animation.textMoreEffects": "Εμφάνιση Περισσότερων Εφφέ", + "PE.Views.Animation.textMoveEarlier": "Μετακίνησε Νωρίτερα", + "PE.Views.Animation.textMoveLater": "Μετακίνησε Αργότερα", + "PE.Views.Animation.textMultiple": "Πολλαπλός", + "PE.Views.Animation.textNone": "Κανένα", + "PE.Views.Animation.textOnClickOf": "Με το Κλικ σε", + "PE.Views.Animation.textOnClickSequence": "Με την Ακολουθία Κλικ", + "PE.Views.Animation.textStartAfterPrevious": "Μετά το Προηγούμενο", + "PE.Views.Animation.textStartOnClick": "Με το Κλικ", + "PE.Views.Animation.textStartWithPrevious": "Με το Προηγούμενο", + "PE.Views.Animation.txtAddEffect": "Προσθήκη animation", + "PE.Views.Animation.txtAnimationPane": "Παράθυρο Animation", + "PE.Views.Animation.txtParameters": "Παράμετροι", + "PE.Views.Animation.txtPreview": "Προεπισκόπηση", + "PE.Views.Animation.txtSec": "S", + "PE.Views.AnimationDialog.textPreviewEffect": "Εφφέ Προεπισκόπησης", + "PE.Views.AnimationDialog.textTitle": "Περισσότερα Εφφέ", "PE.Views.ChartSettings.textAdvanced": "Εμφάνιση προηγμένων ρυθμίσεων", "PE.Views.ChartSettings.textChartType": "Αλλαγή Τύπου Γραφήματος", "PE.Views.ChartSettings.textEditData": "Επεξεργασία Δεδομένων", @@ -1165,6 +1379,7 @@ "PE.Views.DocumentHolder.textCut": "Αποκοπή", "PE.Views.DocumentHolder.textDistributeCols": "Κατανομή στηλών", "PE.Views.DocumentHolder.textDistributeRows": "Κατανομή γραμμών", + "PE.Views.DocumentHolder.textEditPoints": "Επεξεργασία Σημείων", "PE.Views.DocumentHolder.textFlipH": "Οριζόντια Περιστροφή", "PE.Views.DocumentHolder.textFlipV": "Κατακόρυφη Περιστροφή", "PE.Views.DocumentHolder.textFromFile": "Από Αρχείο", @@ -1249,6 +1464,8 @@ "PE.Views.DocumentHolder.txtLimitUnder": "Όριο κάτω από το κείμενο", "PE.Views.DocumentHolder.txtMatchBrackets": "Προσαρμογή παρενθέσεων στο ύψος των ορισμάτων", "PE.Views.DocumentHolder.txtMatrixAlign": "Στοίχιση πίνακα", + "PE.Views.DocumentHolder.txtMoveSlidesToEnd": "Μετακίνησε τη Διαφάνεια στο Τέλος", + "PE.Views.DocumentHolder.txtMoveSlidesToStart": "Μετακίνησε τη Διαφάνεια στην Αρχή", "PE.Views.DocumentHolder.txtNewSlide": "Νέα Διαφάνεια", "PE.Views.DocumentHolder.txtOverbar": "Μπάρα πάνω από κείμενο", "PE.Views.DocumentHolder.txtPasteDestFormat": "Χρήση θέματος προορισμού", @@ -1434,6 +1651,7 @@ "PE.Views.ImageSettings.textCrop": "Περικοπή", "PE.Views.ImageSettings.textCropFill": "Γέμισμα", "PE.Views.ImageSettings.textCropFit": "Προσαρμογή", + "PE.Views.ImageSettings.textCropToShape": "Περικοπή στο σχήμα", "PE.Views.ImageSettings.textEdit": "Επεξεργασία", "PE.Views.ImageSettings.textEditObject": "Επεξεργασία Αντικειμένου", "PE.Views.ImageSettings.textFitSlide": "Προσαρμογή στη Διαφάνεια", @@ -1448,6 +1666,7 @@ "PE.Views.ImageSettings.textHintFlipV": "Κατακόρυφη Περιστροφή", "PE.Views.ImageSettings.textInsert": "Αντικατάσταση Εικόνας", "PE.Views.ImageSettings.textOriginalSize": "Πραγματικό Μέγεθος", + "PE.Views.ImageSettings.textRecentlyUsed": "Πρόσφατα Χρησιμοποιημένα", "PE.Views.ImageSettings.textRotate90": "Περιστροφή 90°", "PE.Views.ImageSettings.textRotation": "Περιστροφή", "PE.Views.ImageSettings.textSize": "Μέγεθος", @@ -1569,6 +1788,7 @@ "PE.Views.ShapeSettings.textPatternFill": "Μοτίβο", "PE.Views.ShapeSettings.textPosition": "Θέση", "PE.Views.ShapeSettings.textRadial": "Ακτινικός", + "PE.Views.ShapeSettings.textRecentlyUsed": "Πρόσφατα Χρησιμοποιημένα", "PE.Views.ShapeSettings.textRotate90": "Περιστροφή 90°", "PE.Views.ShapeSettings.textRotation": "Περιστροφή", "PE.Views.ShapeSettings.textSelectImage": "Επιλογή Εικόνας", @@ -1885,6 +2105,7 @@ "PE.Views.Toolbar.textColumnsTwo": "Δύο Στήλες", "PE.Views.Toolbar.textItalic": "Πλάγια", "PE.Views.Toolbar.textListSettings": "Ρυθμίσεις Λίστας", + "PE.Views.Toolbar.textRecentlyUsed": "Πρόσφατα Χρησιμοποιημένα", "PE.Views.Toolbar.textShapeAlignBottom": "Στοίχιση Κάτω", "PE.Views.Toolbar.textShapeAlignCenter": "Στοίχιση στο Κέντρο", "PE.Views.Toolbar.textShapeAlignLeft": "Στοίχιση Αριστερά", @@ -1898,12 +2119,14 @@ "PE.Views.Toolbar.textStrikeout": "Διακριτική διαγραφή", "PE.Views.Toolbar.textSubscript": "Δείκτης", "PE.Views.Toolbar.textSuperscript": "Εκθέτης", + "PE.Views.Toolbar.textTabAnimation": "Animation", "PE.Views.Toolbar.textTabCollaboration": "Συνεργασία", "PE.Views.Toolbar.textTabFile": "Αρχείο", "PE.Views.Toolbar.textTabHome": "Αρχική", "PE.Views.Toolbar.textTabInsert": "Εισαγωγή", "PE.Views.Toolbar.textTabProtect": "Προστασία", "PE.Views.Toolbar.textTabTransitions": "Μεταβάσεις", + "PE.Views.Toolbar.textTabView": "Προβολή", "PE.Views.Toolbar.textTitleError": "Σφάλμα", "PE.Views.Toolbar.textUnderline": "Υπογράμμιση", "PE.Views.Toolbar.tipAddSlide": "Προσθήκη διαφάνειας", @@ -1957,6 +2180,7 @@ "PE.Views.Toolbar.tipViewSettings": "Προβολή ρυθμίσεων", "PE.Views.Toolbar.txtDistribHor": "Οριζόντια Κατανομή", "PE.Views.Toolbar.txtDistribVert": "Κατακόρυφη Κατανομή", + "PE.Views.Toolbar.txtDuplicateSlide": "Διπλότυπη Διαφάνεια", "PE.Views.Toolbar.txtGroup": "Ομάδα", "PE.Views.Toolbar.txtObjectsAlign": "Στοίχιση Επιλεγμένων Αντικειμένων", "PE.Views.Toolbar.txtScheme1": "Γραφείο", @@ -2018,5 +2242,13 @@ "PE.Views.Transitions.txtApplyToAll": "Εφαρμογή σε όλες τις διαφάνειες", "PE.Views.Transitions.txtParameters": "Παράμετροι", "PE.Views.Transitions.txtPreview": "Προεπισκόπηση", - "PE.Views.Transitions.txtSec": "S" + "PE.Views.Transitions.txtSec": "S", + "PE.Views.ViewTab.textAlwaysShowToolbar": "Να εμφανίζεται πάντα η γραμμή εργαλείων", + "PE.Views.ViewTab.textFitToSlide": "Προσαρμογή Στη Διαφάνεια", + "PE.Views.ViewTab.textFitToWidth": "Προσαρμογή Στο Πλάτος", + "PE.Views.ViewTab.textInterfaceTheme": "Θέμα διεπαφής", + "PE.Views.ViewTab.textNotes": "Σημειώσεις", + "PE.Views.ViewTab.textRulers": "Χάρακες", + "PE.Views.ViewTab.textStatusBar": "Γραμμή Κατάστασης", + "PE.Views.ViewTab.textZoom": "Εστίαση" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json index ba28b0056..07c8f99e2 100644 --- a/apps/presentationeditor/main/locale/en.json +++ b/apps/presentationeditor/main/locale/en.json @@ -348,7 +348,7 @@ "Common.Views.Comments.textResolve": "Resolve", "Common.Views.Comments.textResolved": "Resolved", "Common.Views.Comments.textSort": "Sort comments", - "Common.Views.Comments.textViewResolved": "You have not permission for reopen comment", + "Common.Views.Comments.textViewResolved": "You have no permission to reopen the comment", "Common.Views.CopyWarningDialog.textDontShow": "Don't show this message again", "Common.Views.CopyWarningDialog.textMsg": "Copy, cut and paste actions using the editor toolbar buttons and context menu actions will be performed within this editor tab only.

To copy or paste to or from applications outside the editor tab use the following keyboard combinations:", "Common.Views.CopyWarningDialog.textTitle": "Copy, Cut and Paste Actions", @@ -513,7 +513,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Open Again", "Common.Views.ReviewPopover.textReply": "Reply", "Common.Views.ReviewPopover.textResolve": "Resolve", - "Common.Views.ReviewPopover.textViewResolved": "You have not permission for reopen comment", + "Common.Views.ReviewPopover.textViewResolved": "You have no permission to reopen the comment", "Common.Views.ReviewPopover.txtDeleteTip": "Delete", "Common.Views.ReviewPopover.txtEditTip": "Edit", "Common.Views.SaveAsDlg.textLoading": "Loading", diff --git a/apps/presentationeditor/main/locale/gl.json b/apps/presentationeditor/main/locale/gl.json index c5c4e4dfa..e383c187e 100644 --- a/apps/presentationeditor/main/locale/gl.json +++ b/apps/presentationeditor/main/locale/gl.json @@ -47,6 +47,195 @@ "Common.define.chartData.textScatterSmoothMarker": "Dispersión coas liñas suavizadas e marcadores", "Common.define.chartData.textStock": "De cotizacións", "Common.define.chartData.textSurface": "Superficie", + "Common.define.effectData.textAcross": "Horizontal", + "Common.define.effectData.textAppear": "Aparecer", + "Common.define.effectData.textArcDown": "Arco para abaixo", + "Common.define.effectData.textArcLeft": "Arco cara a esquerda", + "Common.define.effectData.textArcRight": "Arco cara a dereita", + "Common.define.effectData.textArcUp": "Arco para ariba", + "Common.define.effectData.textBasic": "Básico", + "Common.define.effectData.textBasicSwivel": "Xiro básico", + "Common.define.effectData.textBasicZoom": "Ampliación básica", + "Common.define.effectData.textBean": "Faba", + "Common.define.effectData.textBlinds": "Persianas", + "Common.define.effectData.textBlink": "Intermitente", + "Common.define.effectData.textBoldFlash": "Flash en grosa", + "Common.define.effectData.textBoldReveal": "Revelar en grosa", + "Common.define.effectData.textBoomerang": "Búmerang", + "Common.define.effectData.textBounce": "Rebote", + "Common.define.effectData.textBounceLeft": "Rebote á esquerda", + "Common.define.effectData.textBounceRight": "Rebote á dereita", + "Common.define.effectData.textBox": "Caixa", + "Common.define.effectData.textBrushColor": "Cor do pincel", + "Common.define.effectData.textCenterRevolve": "Xirar cara ao centro", + "Common.define.effectData.textCheckerboard": "Cadros bicolores", + "Common.define.effectData.textCircle": "Círculo", + "Common.define.effectData.textCollapse": "Contraer", + "Common.define.effectData.textColorPulse": "Pulso de color", + "Common.define.effectData.textComplementaryColor": "Cor complementaria", + "Common.define.effectData.textComplementaryColor2": "Cor complementaria 2", + "Common.define.effectData.textCompress": "Comprimir", + "Common.define.effectData.textContrast": "Contraste", + "Common.define.effectData.textContrastingColor": "Cor de contraste", + "Common.define.effectData.textCredits": "Créditos", + "Common.define.effectData.textCrescentMoon": "Lúa crecente", + "Common.define.effectData.textCurveDown": "Curva para abaixo", + "Common.define.effectData.textCurvedSquare": "Cadrado curvado", + "Common.define.effectData.textCurvedX": "X curvado", + "Common.define.effectData.textCurvyLeft": "Curvas á esquerda", + "Common.define.effectData.textCurvyRight": "Curvas á dereita", + "Common.define.effectData.textCurvyStar": "Estrela curvada", + "Common.define.effectData.textCustomPath": "Ruta personalizada", + "Common.define.effectData.textCuverUp": "Curva para arriba", + "Common.define.effectData.textDarken": "Escurecer", + "Common.define.effectData.textDecayingWave": "Onda descendente", + "Common.define.effectData.textDesaturate": "Saturación reducida", + "Common.define.effectData.textDiagonalDownRight": "Diagonal cara abaixo dereita", + "Common.define.effectData.textDiagonalUpRight": "Diagonal para arriba dereita", + "Common.define.effectData.textDiamond": "Diamante", + "Common.define.effectData.textDisappear": "Desaparecer", + "Common.define.effectData.textDissolveIn": "Disolver en", + "Common.define.effectData.textDissolveOut": "Disolver fóra", + "Common.define.effectData.textDown": "Abaixo", + "Common.define.effectData.textDrop": "Colocar", + "Common.define.effectData.textEmphasis": "Efecto de énfase", + "Common.define.effectData.textEntrance": "Efecto de entrada", + "Common.define.effectData.textEqualTriangle": "Triángulo equilátero", + "Common.define.effectData.textExciting": "Emocionante", + "Common.define.effectData.textExit": "Efecto de saída", + "Common.define.effectData.textExpand": "Expandir", + "Common.define.effectData.textFade": "Esvaecer", + "Common.define.effectData.textFigureFour": "Figura 8 catro veces", + "Common.define.effectData.textFillColor": "Cor para encher", + "Common.define.effectData.textFlip": "Xirar", + "Common.define.effectData.textFloat": "Flotante", + "Common.define.effectData.textFloatDown": "Flotante cara abaixo", + "Common.define.effectData.textFloatIn": "Flotante dentro", + "Common.define.effectData.textFloatOut": "Flotante fóra", + "Common.define.effectData.textFloatUp": "Flotante arriba", + "Common.define.effectData.textFlyIn": "Voar en", + "Common.define.effectData.textFlyOut": "Voar fora", + "Common.define.effectData.textFontColor": "Cor da fonte", + "Common.define.effectData.textFootball": "Fútbol", + "Common.define.effectData.textFromBottom": "Desde abaixo", + "Common.define.effectData.textFromBottomLeft": "Desde a parte inferior esquerda", + "Common.define.effectData.textFromBottomRight": "Desde a parte inferior dereita", + "Common.define.effectData.textFromLeft": "Desde a esquerda", + "Common.define.effectData.textFromRight": "Desde a dereita", + "Common.define.effectData.textFromTop": "Desde enriba", + "Common.define.effectData.textFromTopLeft": "Desde a parte superior esquerda", + "Common.define.effectData.textFromTopRight": "Desde a parte superior dereita", + "Common.define.effectData.textFunnel": "Funil", + "Common.define.effectData.textGrowShrink": "Aumentar/Encoller", + "Common.define.effectData.textGrowTurn": "Aumentar e xirar", + "Common.define.effectData.textGrowWithColor": "Aumentar coa cor", + "Common.define.effectData.textHeart": "Corazón", + "Common.define.effectData.textHeartbeat": "Latexo", + "Common.define.effectData.textHexagon": "Hexágono", + "Common.define.effectData.textHorizontal": "Horizontal", + "Common.define.effectData.textHorizontalFigure": "Figura 8 horizontal", + "Common.define.effectData.textHorizontalIn": "Horizontal entrante", + "Common.define.effectData.textHorizontalOut": "Horizontal saínte", + "Common.define.effectData.textIn": "En", + "Common.define.effectData.textInFromScreenCenter": "Aumentar desde o centro de pantalla", + "Common.define.effectData.textInSlightly": "Achegar lixeiramente", + "Common.define.effectData.textInToScreenCenter": "Aumentar ao centro da pantalla", + "Common.define.effectData.textInvertedSquare": "Cadrado invertido", + "Common.define.effectData.textInvertedTriangle": "Triángulo invertido", + "Common.define.effectData.textLeft": "Esquerda", + "Common.define.effectData.textLeftDown": "Esquerda e abaixo", + "Common.define.effectData.textLeftUp": "Esquerda e enriba", + "Common.define.effectData.textLighten": "Alumear", + "Common.define.effectData.textLineColor": "Cor da liña", + "Common.define.effectData.textLinesCurves": "Liñas curvas", + "Common.define.effectData.textLoopDeLoop": "Bucle do bucle", + "Common.define.effectData.textModerate": "Moderado", + "Common.define.effectData.textNeutron": "Neutrón", + "Common.define.effectData.textObjectCenter": "Centro do obxecto", + "Common.define.effectData.textObjectColor": "Cor do obxecto", + "Common.define.effectData.textOctagon": "Octágono", + "Common.define.effectData.textOut": "Fóra", + "Common.define.effectData.textOutFromScreenBottom": "Alonxar desde a zona inferior da pantalla", + "Common.define.effectData.textOutSlightly": "Alonxar lixeiramente", + "Common.define.effectData.textParallelogram": "Paralelograma", + "Common.define.effectData.textPath": "Ruta do movemento", + "Common.define.effectData.textPeanut": "Cacahuete", + "Common.define.effectData.textPeekIn": "Despregar cara arriba", + "Common.define.effectData.textPeekOut": "Despregar cara abaixo", + "Common.define.effectData.textPentagon": "Pentágono", + "Common.define.effectData.textPinwheel": "Molinete", + "Common.define.effectData.textPlus": "Máis", + "Common.define.effectData.textPointStar": "Estrela de puntas", + "Common.define.effectData.textPointStar4": "Estrela de 4 puntas", + "Common.define.effectData.textPointStar5": "Estrela de 5 puntas", + "Common.define.effectData.textPointStar6": "Estrela de 6 puntas", + "Common.define.effectData.textPointStar8": "Estrela de 8 puntas", + "Common.define.effectData.textPulse": "Impulso", + "Common.define.effectData.textRandomBars": "Barras aleatorias", + "Common.define.effectData.textRight": "Dereita", + "Common.define.effectData.textRightDown": "Dereita e abaixo", + "Common.define.effectData.textRightTriangle": "Triángulo rectángulo", + "Common.define.effectData.textRightUp": "Dereita e enriba", + "Common.define.effectData.textRiseUp": "Despregar cara arriba", + "Common.define.effectData.textSCurve1": "Curva S 1", + "Common.define.effectData.textSCurve2": "Curva S 2", + "Common.define.effectData.textShape": "Forma", + "Common.define.effectData.textShimmer": "Brillo", + "Common.define.effectData.textShrinkTurn": "Reducir e xirar", + "Common.define.effectData.textSineWave": "Onda sinusoidal", + "Common.define.effectData.textSinkDown": "Afundirse", + "Common.define.effectData.textSlideCenter": "Centro da diapositiva", + "Common.define.effectData.textSpecial": "Especial", + "Common.define.effectData.textSpin": "Xirar", + "Common.define.effectData.textSpinner": "Centrifugado", + "Common.define.effectData.textSpiralIn": "Espiral cara dentro", + "Common.define.effectData.textSpiralLeft": "Espiral cara a esquerda", + "Common.define.effectData.textSpiralOut": "Espiral cara fóra", + "Common.define.effectData.textSpiralRight": "Espiral cara a dereita", + "Common.define.effectData.textSplit": "Dividir", + "Common.define.effectData.textSpoke1": "1 radio", + "Common.define.effectData.textSpoke2": "2 radios", + "Common.define.effectData.textSpoke3": "3 radios", + "Common.define.effectData.textSpoke4": "4 radios", + "Common.define.effectData.textSpoke8": "8 radios", + "Common.define.effectData.textSpring": "Resorte", + "Common.define.effectData.textSquare": "Cadrado", + "Common.define.effectData.textStairsDown": "Escaleiras abaixo", + "Common.define.effectData.textStretch": "Alongar", + "Common.define.effectData.textStrips": "Raias", + "Common.define.effectData.textSubtle": "Sutil", + "Common.define.effectData.textSwivel": "Xirar", + "Common.define.effectData.textSwoosh": "Asubío", + "Common.define.effectData.textTeardrop": "Bágoa", + "Common.define.effectData.textTeeter": "Tambalear", + "Common.define.effectData.textToBottom": "Cara abaixo", + "Common.define.effectData.textToBottomLeft": "Cara abaixo á esquerda", + "Common.define.effectData.textToBottomRight": "Cara abaixo á dereita", + "Common.define.effectData.textToFromScreenBottom": "De fóra cara á parte inferior da pantalla", + "Common.define.effectData.textToLeft": "Á esquerda", + "Common.define.effectData.textToRight": "Á dereita", + "Common.define.effectData.textToTop": "Cara arriba", + "Common.define.effectData.textToTopLeft": "Cara arriba á esquerda", + "Common.define.effectData.textToTopRight": "Cara arriba á dereita", + "Common.define.effectData.textTransparency": "Transparencia", + "Common.define.effectData.textTrapezoid": "Trapecio", + "Common.define.effectData.textTurnDown": "Xiro cara abaixo", + "Common.define.effectData.textTurnDownRight": "Xirar cara abaixo e á dereita", + "Common.define.effectData.textTurnUp": "Xirar cara arriba", + "Common.define.effectData.textTurnUpRight": "Xirar cara arriba á dereita", + "Common.define.effectData.textUnderline": "Subliñado", + "Common.define.effectData.textUp": "Arriba", + "Common.define.effectData.textVertical": "Vertical", + "Common.define.effectData.textVerticalFigure": "Figura 8 vertical", + "Common.define.effectData.textVerticalIn": "Vertical entrante", + "Common.define.effectData.textVerticalOut": "Vertical saínte", + "Common.define.effectData.textWave": "Onda", + "Common.define.effectData.textWedge": "Triangular", + "Common.define.effectData.textWheel": "Roda", + "Common.define.effectData.textWhip": "Látego", + "Common.define.effectData.textWipe": "Eliminar", + "Common.define.effectData.textZigzag": "Zigzag", + "Common.define.effectData.textZoom": "Ampliar", "Common.Translation.warnFileLocked": "O ficheiro está a editarse noutro aplicativo. Podes continuar editándoo e gardándoo como copia.", "Common.Translation.warnFileLockedBtnEdit": "Crear unha copia", "Common.Translation.warnFileLockedBtnView": "Abrir para visualizar", @@ -61,6 +250,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Novo", "Common.UI.ExtendedColorDialog.textRGBErr": "O valor introducido é incorrecto.
Insira un valor numérico entre 0 e 255.", "Common.UI.HSBColorPicker.textNoColor": "Sen cor", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Agochar o contrasinal", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Amosar o contrasinal", "Common.UI.SearchDialog.textHighlight": "Realzar resultados", "Common.UI.SearchDialog.textMatchCase": "Diferenciar maiúsculas de minúsculas", "Common.UI.SearchDialog.textReplaceDef": "Inserir o texto da substitución", @@ -104,6 +295,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Listas con viñetas automáticas", "Common.Views.AutoCorrectDialog.textBy": "Por", "Common.Views.AutoCorrectDialog.textDelete": "Eliminar", + "Common.Views.AutoCorrectDialog.textFLCells": "Poñer en maiúsculas a primeira letra das celas da táboa", "Common.Views.AutoCorrectDialog.textFLSentence": "Poñer en maiúscula a primeira letra dunha oración", "Common.Views.AutoCorrectDialog.textHyperlink": "Rutas da rede e Internet por hiperligazóns", "Common.Views.AutoCorrectDialog.textHyphens": "Guións (--) con guión longo (—)", @@ -129,12 +321,14 @@ "Common.Views.Comments.mniAuthorDesc": "Autor do Z a A", "Common.Views.Comments.mniDateAsc": "Máis antigo", "Common.Views.Comments.mniDateDesc": "Novidades", + "Common.Views.Comments.mniFilterGroups": "Filtrar por grupo", "Common.Views.Comments.mniPositionAsc": "Desde enriba", "Common.Views.Comments.mniPositionDesc": "Desde abaixo", "Common.Views.Comments.textAdd": "Engadir", "Common.Views.Comments.textAddComment": "Engadir comentario", "Common.Views.Comments.textAddCommentToDoc": "Engadir comentario ao documento", "Common.Views.Comments.textAddReply": "Engadir resposta", + "Common.Views.Comments.textAll": "Todo", "Common.Views.Comments.textAnonym": "Convidado(a)", "Common.Views.Comments.textCancel": "Cancelar", "Common.Views.Comments.textClose": "Pechar", @@ -148,6 +342,7 @@ "Common.Views.Comments.textResolve": "Resolver", "Common.Views.Comments.textResolved": "Resolto", "Common.Views.Comments.textSort": "Ordenar comentarios", + "Common.Views.Comments.textViewResolved": "Non ten permiso para volver a abrir o documento", "Common.Views.CopyWarningDialog.textDontShow": "Non volver a amosar esta mensaxe", "Common.Views.CopyWarningDialog.textMsg": "As accións de copiar, cortar e pegar empregando os botóns da barra de ferramentas do editor e as accións do menú contextual realizaranse só nesta pestana do editor.

Para copiar ou pegar en ou desde aplicativos fóra da pestana do editor, use as seguintes combinacións de teclado:", "Common.Views.CopyWarningDialog.textTitle": "Accións de copiar, cortar e pegar", @@ -312,6 +507,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Abrir novamente", "Common.Views.ReviewPopover.textReply": "Responder", "Common.Views.ReviewPopover.textResolve": "Resolver", + "Common.Views.ReviewPopover.textViewResolved": "Non ten permiso para volver a abrir o documento", "Common.Views.ReviewPopover.txtDeleteTip": "Eliminar", "Common.Views.ReviewPopover.txtEditTip": "Editar", "Common.Views.SaveAsDlg.textLoading": "Cargando", @@ -469,6 +665,7 @@ "PE.Controllers.Main.textLongName": "Insira un nome que teña menos de 128 caracteres.", "PE.Controllers.Main.textNoLicenseTitle": "Alcanzouse o límite da licenza", "PE.Controllers.Main.textPaidFeature": "Característica de pago", + "PE.Controllers.Main.textReconnect": "Restaurouse a conexión", "PE.Controllers.Main.textRemember": "Recordar a miña elección para todos os ficheiros", "PE.Controllers.Main.textRenameError": "O nome de usuario non pode estar vacío.", "PE.Controllers.Main.textRenameLabel": "Insira un nome que se usará para a colaboración", @@ -750,6 +947,7 @@ "PE.Controllers.Main.warnNoLicense": "Alcanzou o límite de conexións simultáneas con %1 editores. Este documento abrirase só para as úa visualización.
Contacte co equipo de vendas de %1 para coñecer os termos de actualización persoal.", "PE.Controllers.Main.warnNoLicenseUsers": "Alcanzou o límite de usuarios para os editores de %1.
Contacte co equipo de vendas de %1 para coñecer os termos de actualización persoal.", "PE.Controllers.Main.warnProcessRightsChange": "O dereito de edición dp ficheiro é denegado.", + "PE.Controllers.Statusbar.textDisconnect": "Perdeuse a conexión
Intentando conectarse. Comproba a configuración de conexión.", "PE.Controllers.Statusbar.zoomText": "Ampliar {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "A fonte que vai gardar non está dispoñible no dispositivo actual.
O estilo de texto amosarase empregando unha das fontes do sistema, a fonte gardada utilizarase cando estea dispoñible.
Quere continuar?", "PE.Controllers.Toolbar.textAccent": "Acentos", @@ -1086,6 +1284,29 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "PE.Controllers.Viewport.textFitPage": "Axustar á diapositiva", "PE.Controllers.Viewport.textFitWidth": "Axustar á anchura", + "PE.Views.Animation.strDelay": "Atraso", + "PE.Views.Animation.strDuration": "Duración", + "PE.Views.Animation.strRepeat": "Repetir", + "PE.Views.Animation.strRewind": "Rebobinar", + "PE.Views.Animation.strStart": "Iniciar", + "PE.Views.Animation.strTrigger": "Desencadeador", + "PE.Views.Animation.textMoreEffects": "Amosar máis efectos", + "PE.Views.Animation.textMoveEarlier": "Mover antes", + "PE.Views.Animation.textMoveLater": "Mover despois", + "PE.Views.Animation.textMultiple": "Múltiple", + "PE.Views.Animation.textNone": "Ningún", + "PE.Views.Animation.textOnClickOf": "Ao premer con", + "PE.Views.Animation.textOnClickSequence": "Secuencia de premas", + "PE.Views.Animation.textStartAfterPrevious": "Despois da anterior", + "PE.Views.Animation.textStartOnClick": "Ao premer", + "PE.Views.Animation.textStartWithPrevious": "Coa anterior", + "PE.Views.Animation.txtAddEffect": "Engadir animación", + "PE.Views.Animation.txtAnimationPane": "Panel de animación", + "PE.Views.Animation.txtParameters": "Parámetros", + "PE.Views.Animation.txtPreview": "Vista previa", + "PE.Views.Animation.txtSec": "S", + "PE.Views.AnimationDialog.textPreviewEffect": "Vista previa do efecto", + "PE.Views.AnimationDialog.textTitle": "Máis efectos", "PE.Views.ChartSettings.textAdvanced": "Amosar configuración avanzado", "PE.Views.ChartSettings.textChartType": "Cambiar tipo de gráfico", "PE.Views.ChartSettings.textEditData": "Editar datos", @@ -1165,6 +1386,7 @@ "PE.Views.DocumentHolder.textCut": "Cortar", "PE.Views.DocumentHolder.textDistributeCols": "Distribuír columnas", "PE.Views.DocumentHolder.textDistributeRows": "Distribuír filas", + "PE.Views.DocumentHolder.textEditPoints": "Editar puntos", "PE.Views.DocumentHolder.textFlipH": "Virar horizontalmente", "PE.Views.DocumentHolder.textFlipV": "Virar verticalmente", "PE.Views.DocumentHolder.textFromFile": "Do ficheiro", @@ -1249,6 +1471,8 @@ "PE.Views.DocumentHolder.txtLimitUnder": "Límite debaixo do texto", "PE.Views.DocumentHolder.txtMatchBrackets": "Coincidir corchetes co alto dos argumentos", "PE.Views.DocumentHolder.txtMatrixAlign": "Aliñamento de matriz", + "PE.Views.DocumentHolder.txtMoveSlidesToEnd": "Desprazar a diapositiva á fin", + "PE.Views.DocumentHolder.txtMoveSlidesToStart": "Desprazar a diapositiva ao principio", "PE.Views.DocumentHolder.txtNewSlide": "Nova diapositiva", "PE.Views.DocumentHolder.txtOverbar": "Barra sobre texto", "PE.Views.DocumentHolder.txtPasteDestFormat": "Use o tema de destino", @@ -1434,6 +1658,7 @@ "PE.Views.ImageSettings.textCrop": "Recortar", "PE.Views.ImageSettings.textCropFill": "Encher", "PE.Views.ImageSettings.textCropFit": "Adaptar", + "PE.Views.ImageSettings.textCropToShape": "Cortar para dar forma", "PE.Views.ImageSettings.textEdit": "Editar", "PE.Views.ImageSettings.textEditObject": "Editar obxecto", "PE.Views.ImageSettings.textFitSlide": "Axustar á diapositiva", @@ -1448,6 +1673,7 @@ "PE.Views.ImageSettings.textHintFlipV": "Virar verticalmente", "PE.Views.ImageSettings.textInsert": "Substituír imaxe", "PE.Views.ImageSettings.textOriginalSize": "Tamaño real", + "PE.Views.ImageSettings.textRecentlyUsed": "Usados recentemente", "PE.Views.ImageSettings.textRotate90": "Xirar 90°", "PE.Views.ImageSettings.textRotation": "Rotación", "PE.Views.ImageSettings.textSize": "Tamaño", @@ -1569,6 +1795,7 @@ "PE.Views.ShapeSettings.textPatternFill": "Patrón", "PE.Views.ShapeSettings.textPosition": "Posición", "PE.Views.ShapeSettings.textRadial": "Radial", + "PE.Views.ShapeSettings.textRecentlyUsed": "Usados recentemente", "PE.Views.ShapeSettings.textRotate90": "Xirar 90°", "PE.Views.ShapeSettings.textRotation": "Rotación", "PE.Views.ShapeSettings.textSelectImage": "Seleccionar imaxe", @@ -1885,6 +2112,7 @@ "PE.Views.Toolbar.textColumnsTwo": "Dúas columnas", "PE.Views.Toolbar.textItalic": "Cursiva", "PE.Views.Toolbar.textListSettings": "COnfiguración da lista", + "PE.Views.Toolbar.textRecentlyUsed": "Usados recentemente", "PE.Views.Toolbar.textShapeAlignBottom": "Aliñar á parte inferior", "PE.Views.Toolbar.textShapeAlignCenter": "Aliñar no centro", "PE.Views.Toolbar.textShapeAlignLeft": "Aliñar á esquerda", @@ -1898,12 +2126,14 @@ "PE.Views.Toolbar.textStrikeout": "Riscado", "PE.Views.Toolbar.textSubscript": "Subscrito", "PE.Views.Toolbar.textSuperscript": "Sobrescrito", + "PE.Views.Toolbar.textTabAnimation": "Animación", "PE.Views.Toolbar.textTabCollaboration": "Colaboración", "PE.Views.Toolbar.textTabFile": "Ficheiro", "PE.Views.Toolbar.textTabHome": "Inicio", "PE.Views.Toolbar.textTabInsert": "Inserir", "PE.Views.Toolbar.textTabProtect": "Protección", "PE.Views.Toolbar.textTabTransitions": "Transicións", + "PE.Views.Toolbar.textTabView": "Vista", "PE.Views.Toolbar.textTitleError": "Erro", "PE.Views.Toolbar.textUnderline": "Subliñado", "PE.Views.Toolbar.tipAddSlide": "Engadir dispositiva", @@ -1957,6 +2187,7 @@ "PE.Views.Toolbar.tipViewSettings": "Amosar configuración", "PE.Views.Toolbar.txtDistribHor": "Distribuír horizontalmente", "PE.Views.Toolbar.txtDistribVert": "Distribuír verticalmente", + "PE.Views.Toolbar.txtDuplicateSlide": "Duplicar diapositiva", "PE.Views.Toolbar.txtGroup": "Grupo", "PE.Views.Toolbar.txtObjectsAlign": "Aliñar obxectos seleccionados", "PE.Views.Toolbar.txtScheme1": "Oficina", @@ -2018,5 +2249,13 @@ "PE.Views.Transitions.txtApplyToAll": "Aplicar a todas as diapositivas", "PE.Views.Transitions.txtParameters": "Parámetros", "PE.Views.Transitions.txtPreview": "Vista previa", - "PE.Views.Transitions.txtSec": "s" + "PE.Views.Transitions.txtSec": "s", + "PE.Views.ViewTab.textAlwaysShowToolbar": "Amosar sempre a barra de ferramentas", + "PE.Views.ViewTab.textFitToSlide": "Axustar á diapositiva", + "PE.Views.ViewTab.textFitToWidth": "Axustar á anchura", + "PE.Views.ViewTab.textInterfaceTheme": "Tema da interface", + "PE.Views.ViewTab.textNotes": "Notas", + "PE.Views.ViewTab.textRulers": "Regras", + "PE.Views.ViewTab.textStatusBar": "Barra de estado", + "PE.Views.ViewTab.textZoom": "Ampliar" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/it.json b/apps/presentationeditor/main/locale/it.json index 0a287eb6d..c69280a51 100644 --- a/apps/presentationeditor/main/locale/it.json +++ b/apps/presentationeditor/main/locale/it.json @@ -47,17 +47,195 @@ "Common.define.chartData.textScatterSmoothMarker": "Grafico a dispersione con linee e indicatori", "Common.define.chartData.textStock": "Azionario", "Common.define.chartData.textSurface": "Superficie", + "Common.define.effectData.textAcross": "Orizzontalmente", + "Common.define.effectData.textAppear": "Apparire", + "Common.define.effectData.textArcDown": "Arco verso il basso", + "Common.define.effectData.textArcLeft": "Arco a sinistra", + "Common.define.effectData.textArcRight": "Arco a destra", + "Common.define.effectData.textArcUp": "Arco in alto", + "Common.define.effectData.textBasic": "Di base", + "Common.define.effectData.textBasicSwivel": "Girevole di base", + "Common.define.effectData.textBasicZoom": "Zoom di base", + "Common.define.effectData.textBean": "Fagiolo", + "Common.define.effectData.textBlinds": "Persiane", + "Common.define.effectData.textBlink": "Lampeggiante", + "Common.define.effectData.textBoldFlash": "Flash grassetto", + "Common.define.effectData.textBoldReveal": "Rivelazione in grassetto", + "Common.define.effectData.textBoomerang": "Boomerang", + "Common.define.effectData.textBounce": "Rimbalzo", + "Common.define.effectData.textBounceLeft": "Rimbalzo a sinistra", + "Common.define.effectData.textBounceRight": "Rimbalzo a destra", + "Common.define.effectData.textBox": "Riquadro", + "Common.define.effectData.textBrushColor": "Colore del pennello", + "Common.define.effectData.textCenterRevolve": "Rotazione intorno al centro", + "Common.define.effectData.textCheckerboard": "Scacchiera", + "Common.define.effectData.textCircle": "Cerchio", "Common.define.effectData.textCollapse": "Riduci", + "Common.define.effectData.textColorPulse": "Impulso di colore", + "Common.define.effectData.textComplementaryColor": "Colore complementare", + "Common.define.effectData.textComplementaryColor2": "Colore complementare 2", + "Common.define.effectData.textCompress": "Comprimi", "Common.define.effectData.textContrast": "Contrasto", + "Common.define.effectData.textContrastingColor": "Colore a contrasto", + "Common.define.effectData.textCredits": "Crediti", + "Common.define.effectData.textCrescentMoon": "Luna crescente", + "Common.define.effectData.textCurveDown": "Curva verso il basso", + "Common.define.effectData.textCurvedSquare": "Quadrato curvato", + "Common.define.effectData.textCurvedX": "X curvata", + "Common.define.effectData.textCurvyLeft": "Curva verso sinistra", + "Common.define.effectData.textCurvyRight": "Curva verso destra", + "Common.define.effectData.textCurvyStar": "Stella curvata", + "Common.define.effectData.textCustomPath": "Percorso personalizzato", + "Common.define.effectData.textCuverUp": "Curva verso alto", + "Common.define.effectData.textDarken": "Oscurare", + "Common.define.effectData.textDecayingWave": "Onda smorzata", + "Common.define.effectData.textDesaturate": "Desaturare", + "Common.define.effectData.textDiagonalDownRight": "Diagonale verso l'angolo destro inferiore", + "Common.define.effectData.textDiagonalUpRight": "Diagonale verso l'angolo destro superiore", + "Common.define.effectData.textDiamond": "Diamante", + "Common.define.effectData.textDisappear": "Scomparire", + "Common.define.effectData.textDissolveIn": "Sciogliere dentro", + "Common.define.effectData.textDissolveOut": "Sciogliere fuori", + "Common.define.effectData.textDown": "Giù", + "Common.define.effectData.textDrop": "Cadere", + "Common.define.effectData.textEmphasis": "Effetto di risalto", + "Common.define.effectData.textEntrance": "Effetto di ingresso", + "Common.define.effectData.textEqualTriangle": "Triangolo equilatero", + "Common.define.effectData.textExciting": "Accattivante", + "Common.define.effectData.textExit": "Effetto di uscita", "Common.define.effectData.textExpand": "Espandi", "Common.define.effectData.textFade": "Dissolvenza", + "Common.define.effectData.textFigureFour": "Figura quattro volte 8", "Common.define.effectData.textFillColor": "Colore di riempimento", + "Common.define.effectData.textFlip": "Capovolgere", + "Common.define.effectData.textFloat": "Fluttuare", + "Common.define.effectData.textFloatDown": "Fluttuare verso il basso", + "Common.define.effectData.textFloatIn": "Fluttuare dentro", + "Common.define.effectData.textFloatOut": "Fluttuare fuori", + "Common.define.effectData.textFloatUp": "Fluttuare verso altro", + "Common.define.effectData.textFlyIn": "Volare dentro", + "Common.define.effectData.textFlyOut": "Volare fuori", + "Common.define.effectData.textFontColor": "Colore caratteri", + "Common.define.effectData.textFootball": "Calcio", "Common.define.effectData.textFromBottom": "Dal basso", + "Common.define.effectData.textFromBottomLeft": "Dal basso a sinistra", + "Common.define.effectData.textFromBottomRight": "Dal basso a destra", + "Common.define.effectData.textFromLeft": "Da sinistra a destra", + "Common.define.effectData.textFromRight": "Da destra a sinistra", + "Common.define.effectData.textFromTop": "Dall'alto al basso", + "Common.define.effectData.textFromTopLeft": "Da in alto a sinistra", + "Common.define.effectData.textFromTopRight": "Da in alto a destra", + "Common.define.effectData.textFunnel": "Imbuto", + "Common.define.effectData.textGrowShrink": "Aumentare/Restringere", + "Common.define.effectData.textGrowTurn": "Aumentare e girare", + "Common.define.effectData.textGrowWithColor": "Aumentare con colore", "Common.define.effectData.textHeart": "Cuore", + "Common.define.effectData.textHeartbeat": "Pulsazione", "Common.define.effectData.textHexagon": "Esagono", "Common.define.effectData.textHorizontal": "Orizzontale", + "Common.define.effectData.textHorizontalFigure": "Figura 8 orizzontale", + "Common.define.effectData.textHorizontalIn": "Orizzontale dentro", + "Common.define.effectData.textHorizontalOut": "Orizzontale fuori", + "Common.define.effectData.textIn": "All'interno", + "Common.define.effectData.textInFromScreenCenter": "Aumentare da centro schermo", + "Common.define.effectData.textInSlightly": "Lieve aumento", + "Common.define.effectData.textInToScreenCenter": "Aumento al centro schermo", + "Common.define.effectData.textInvertedSquare": "Quadrato invertito", + "Common.define.effectData.textInvertedTriangle": "Triangolo invertito", + "Common.define.effectData.textLeft": "A sinistra", + "Common.define.effectData.textLeftDown": "Sinistra in basso", + "Common.define.effectData.textLeftUp": "Sinistra in alto", + "Common.define.effectData.textLighten": "Illuminare", + "Common.define.effectData.textLineColor": "Colore linea", + "Common.define.effectData.textLinesCurves": "Linee Curve", + "Common.define.effectData.textLoopDeLoop": "Ciclo continuo", + "Common.define.effectData.textModerate": "Moderato", + "Common.define.effectData.textNeutron": "Neutrone", + "Common.define.effectData.textObjectCenter": "Centro dell'oggetto", + "Common.define.effectData.textObjectColor": "Colore dell'oggetto", + "Common.define.effectData.textOctagon": "Ottagono", + "Common.define.effectData.textOut": "All'esterno", + "Common.define.effectData.textOutFromScreenBottom": "Allontanare dal fondo dello schermo", + "Common.define.effectData.textOutSlightly": "Lieve diminuzione", + "Common.define.effectData.textParallelogram": "Parallelogramma", + "Common.define.effectData.textPath": "Percorso di movimento", + "Common.define.effectData.textPeanut": "Arachidi", + "Common.define.effectData.textPeekIn": "Sbirciare dentro", + "Common.define.effectData.textPeekOut": "Sbirciare fuori", + "Common.define.effectData.textPentagon": "Pentagono", + "Common.define.effectData.textPinwheel": "Girandola", + "Common.define.effectData.textPlus": "Più", + "Common.define.effectData.textPointStar": "Stella a punta", + "Common.define.effectData.textPointStar4": "Stella a 4 punte", + "Common.define.effectData.textPointStar5": "Stella a 5 punte", + "Common.define.effectData.textPointStar6": "Stella a 6 punte", + "Common.define.effectData.textPointStar8": "Stella a 8 punte", + "Common.define.effectData.textPulse": "Pulsazione", + "Common.define.effectData.textRandomBars": "Barre casuali", + "Common.define.effectData.textRight": "A destra", + "Common.define.effectData.textRightDown": "Destra in basso", + "Common.define.effectData.textRightTriangle": "Triangolo rettangolo", + "Common.define.effectData.textRightUp": "Destra in alto", + "Common.define.effectData.textRiseUp": "Sollevare", + "Common.define.effectData.textSCurve1": "Curva S 1", + "Common.define.effectData.textSCurve2": "Curva S 2", + "Common.define.effectData.textShape": "Forma", + "Common.define.effectData.textShimmer": "Riflesso", + "Common.define.effectData.textShrinkTurn": "Restringere e girare", + "Common.define.effectData.textSineWave": "Onda sinusoidale", + "Common.define.effectData.textSinkDown": "Affondare", + "Common.define.effectData.textSlideCenter": "Centro della diapositiva", + "Common.define.effectData.textSpecial": "Speciali", + "Common.define.effectData.textSpin": "Girare", + "Common.define.effectData.textSpinner": "Centrifuga", + "Common.define.effectData.textSpiralIn": "Spirale verso dentro", + "Common.define.effectData.textSpiralLeft": "Spirale verso sinistra", + "Common.define.effectData.textSpiralOut": "Spirale verso fuori", + "Common.define.effectData.textSpiralRight": "Spirale verso destra", + "Common.define.effectData.textSplit": "Dividere", + "Common.define.effectData.textSpoke1": "1 settore", + "Common.define.effectData.textSpoke2": "2 settori", + "Common.define.effectData.textSpoke3": "3 settori", + "Common.define.effectData.textSpoke4": "4 settori", + "Common.define.effectData.textSpoke8": "8 settori", + "Common.define.effectData.textSpring": "Molla", + "Common.define.effectData.textSquare": "Quadrato", + "Common.define.effectData.textStairsDown": "Scale verso il basso", + "Common.define.effectData.textStretch": "Estendere", + "Common.define.effectData.textStrips": "Strisce", + "Common.define.effectData.textSubtle": "Sottile", + "Common.define.effectData.textSwivel": "Girevole", + "Common.define.effectData.textSwoosh": "Swoosh", + "Common.define.effectData.textTeardrop": "Goccia", + "Common.define.effectData.textTeeter": "Barcollare", + "Common.define.effectData.textToBottom": "Verso il basso", + "Common.define.effectData.textToBottomLeft": "Verso il basso a sinistra", + "Common.define.effectData.textToBottomRight": "Verso il basso a destra", + "Common.define.effectData.textToFromScreenBottom": "Diminuzione verso il basso dello schermo", + "Common.define.effectData.textToLeft": "A sinistra", + "Common.define.effectData.textToRight": "A destra", + "Common.define.effectData.textToTop": "Verso l'alto", + "Common.define.effectData.textToTopLeft": "Verso l'alto a sinistra", + "Common.define.effectData.textToTopRight": "Verso l'alto a destra", + "Common.define.effectData.textTransparency": "Trasparenza", + "Common.define.effectData.textTrapezoid": "Trapezio", + "Common.define.effectData.textTurnDown": "Girare verso il basso", + "Common.define.effectData.textTurnDownRight": "Girare verso il basso e destra", + "Common.define.effectData.textTurnUp": "Girare verso l'alto", + "Common.define.effectData.textTurnUpRight": "Girare verso l'alto a destra", + "Common.define.effectData.textUnderline": "Sottolineare", + "Common.define.effectData.textUp": "Verso l'alto", "Common.define.effectData.textVertical": "Verticale", + "Common.define.effectData.textVerticalFigure": "Figura 8 verticale", + "Common.define.effectData.textVerticalIn": "Verticale dentro", + "Common.define.effectData.textVerticalOut": "Verticale fuori", "Common.define.effectData.textWave": "Onda", + "Common.define.effectData.textWedge": "Cuneo", + "Common.define.effectData.textWheel": "Ruota", + "Common.define.effectData.textWhip": "Frusta", + "Common.define.effectData.textWipe": "Apparizione", + "Common.define.effectData.textZigzag": "Zigzag", + "Common.define.effectData.textZoom": "Zoom", "Common.Translation.warnFileLocked": "Il file è in fase di modifica in un'altra applicazione. Puoi continuare a modificarlo e salvarlo come copia.", "Common.Translation.warnFileLockedBtnEdit": "Crea una copia", "Common.Translation.warnFileLockedBtnView": "‎Aperto per la visualizzazione‎", @@ -72,6 +250,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Nuovo", "Common.UI.ExtendedColorDialog.textRGBErr": "Il valore inserito non è corretto.
Inserisci un valore numerico tra 0 e 255.", "Common.UI.HSBColorPicker.textNoColor": "Nessun colore", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Nascondere la password", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Mostra password", "Common.UI.SearchDialog.textHighlight": "Evidenzia risultati", "Common.UI.SearchDialog.textMatchCase": "Sensibile al maiuscolo/minuscolo", "Common.UI.SearchDialog.textReplaceDef": "Inserisci testo sostitutivo", @@ -115,6 +295,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Elenchi puntati automatici", "Common.Views.AutoCorrectDialog.textBy": "Di", "Common.Views.AutoCorrectDialog.textDelete": "Elimina", + "Common.Views.AutoCorrectDialog.textFLCells": "Rendere maiuscola la prima lettera delle celle della tabella", "Common.Views.AutoCorrectDialog.textFLSentence": "‎In maiuscolo la prima lettera delle frasi‎", "Common.Views.AutoCorrectDialog.textHyperlink": "Internet e percorsi di rete con i collegamenti ipertestuali", "Common.Views.AutoCorrectDialog.textHyphens": "‎Trattini (--) con trattino (-)‎", @@ -140,12 +321,14 @@ "Common.Views.Comments.mniAuthorDesc": "Autore dalla Z alla A", "Common.Views.Comments.mniDateAsc": "Più vecchio", "Common.Views.Comments.mniDateDesc": "Più recente", + "Common.Views.Comments.mniFilterGroups": "Filtra per gruppo", "Common.Views.Comments.mniPositionAsc": "Dall'alto", "Common.Views.Comments.mniPositionDesc": "Dal basso", "Common.Views.Comments.textAdd": "Aggiungi", "Common.Views.Comments.textAddComment": "Aggiungi commento", "Common.Views.Comments.textAddCommentToDoc": "Aggiungi commento al documento", "Common.Views.Comments.textAddReply": "Aggiungi risposta", + "Common.Views.Comments.textAll": "Tutti", "Common.Views.Comments.textAnonym": "Ospite", "Common.Views.Comments.textCancel": "Annulla", "Common.Views.Comments.textClose": "Chiudi", @@ -159,6 +342,7 @@ "Common.Views.Comments.textResolve": "Chiudi", "Common.Views.Comments.textResolved": "Chiuso", "Common.Views.Comments.textSort": "Ordinare commenti", + "Common.Views.Comments.textViewResolved": "Non sei autorizzato a riaprire il commento", "Common.Views.CopyWarningDialog.textDontShow": "Non mostrare più questo messaggio", "Common.Views.CopyWarningDialog.textMsg": "Le azioni di copia, taglia e incolla utilizzando i pulsanti della barra degli strumenti dell'editor e le azioni del menu di scelta rapida verranno eseguite solo all'interno di questa scheda dell'editor.

Per copiare o incollare in o da applicazioni esterne alla scheda dell'editor, utilizzare le seguenti combinazioni di tasti:", "Common.Views.CopyWarningDialog.textTitle": "Funzioni copia/taglia/incolla", @@ -323,6 +507,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Apri di nuovo", "Common.Views.ReviewPopover.textReply": "Rispondi", "Common.Views.ReviewPopover.textResolve": "Risolvere", + "Common.Views.ReviewPopover.textViewResolved": "Non sei autorizzato a riaprire il commento", "Common.Views.ReviewPopover.txtDeleteTip": "Eliminare", "Common.Views.ReviewPopover.txtEditTip": "Modificare", "Common.Views.SaveAsDlg.textLoading": "Caricamento", @@ -480,6 +665,7 @@ "PE.Controllers.Main.textLongName": "Si prega di immettere un nome che contenga meno di 128 caratteri.", "PE.Controllers.Main.textNoLicenseTitle": "Limite di licenza raggiunto", "PE.Controllers.Main.textPaidFeature": "Caratteristica a pagamento", + "PE.Controllers.Main.textReconnect": "Connessione ripristinata", "PE.Controllers.Main.textRemember": "Ricorda la mia scelta", "PE.Controllers.Main.textRenameError": "Il nome utente non può essere vuoto.", "PE.Controllers.Main.textRenameLabel": "Immettere un nome da utilizzare per la collaborazione", @@ -761,6 +947,7 @@ "PE.Controllers.Main.warnNoLicense": "Hai raggiunto il limite per le connessioni simultanee agli editor %1. Questo documento verrà aperto in sola lettura.
Contatta il team di vendita di %1 per i termini di aggiornamento personali.", "PE.Controllers.Main.warnNoLicenseUsers": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta il team di vendita di %1 per i termini di aggiornamento personali.", "PE.Controllers.Main.warnProcessRightsChange": "Ti è stato negato il diritto di modificare il file.", + "PE.Controllers.Statusbar.textDisconnect": "Connessione persa
Tentativo di connessione in corso. Si prega di controllare le impostazioni di connessione.", "PE.Controllers.Statusbar.zoomText": "Zoom {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "Il carattere che vuoi salvare non è accessibile su questo dispositivo.
Lo stile di testo sarà visualizzato usando uno dei caratteri di sistema, il carattere salvato sarà usato quando accessibile.
Vuoi continuare?", "PE.Controllers.Toolbar.textAccent": "Accenti", @@ -1097,9 +1284,29 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "PE.Controllers.Viewport.textFitPage": "Adatta alla diapositiva", "PE.Controllers.Viewport.textFitWidth": "Adatta alla larghezza", + "PE.Views.Animation.strDelay": "Ritardo", "PE.Views.Animation.strDuration": "Durata", + "PE.Views.Animation.strRepeat": "Ripetere", + "PE.Views.Animation.strRewind": "Riavvolgere", + "PE.Views.Animation.strStart": "Avvio", + "PE.Views.Animation.strTrigger": "Grilletto", + "PE.Views.Animation.textMoreEffects": "Mostrare più effetti", + "PE.Views.Animation.textMoveEarlier": "Spostare avanti", + "PE.Views.Animation.textMoveLater": "Spostare di seguito", + "PE.Views.Animation.textMultiple": "Multipli", + "PE.Views.Animation.textNone": "Nessuno", + "PE.Views.Animation.textOnClickOf": "Al clic di", + "PE.Views.Animation.textOnClickSequence": "Alla sequenza di clic", + "PE.Views.Animation.textStartAfterPrevious": "Dopo il precedente", + "PE.Views.Animation.textStartOnClick": "Al clic", + "PE.Views.Animation.textStartWithPrevious": "Con il precedente", + "PE.Views.Animation.txtAddEffect": "Aggiungi animazione", + "PE.Views.Animation.txtAnimationPane": "Riquadro animazione", "PE.Views.Animation.txtParameters": "Parametri", "PE.Views.Animation.txtPreview": "Anteprima", + "PE.Views.Animation.txtSec": "s", + "PE.Views.AnimationDialog.textPreviewEffect": "Anteprima dell'effetto", + "PE.Views.AnimationDialog.textTitle": "Altri effetti", "PE.Views.ChartSettings.textAdvanced": "Mostra impostazioni avanzate", "PE.Views.ChartSettings.textChartType": "Cambia tipo di grafico", "PE.Views.ChartSettings.textEditData": "Modifica dati", @@ -1179,6 +1386,7 @@ "PE.Views.DocumentHolder.textCut": "Taglia", "PE.Views.DocumentHolder.textDistributeCols": "Distribuisci colonne", "PE.Views.DocumentHolder.textDistributeRows": "Distribuisci righe", + "PE.Views.DocumentHolder.textEditPoints": "Modifica punti", "PE.Views.DocumentHolder.textFlipH": "Capovolgi orizzontalmente", "PE.Views.DocumentHolder.textFlipV": "Capovolgi verticalmente", "PE.Views.DocumentHolder.textFromFile": "Da file", @@ -1263,6 +1471,8 @@ "PE.Views.DocumentHolder.txtLimitUnder": "Limite sotto il testo", "PE.Views.DocumentHolder.txtMatchBrackets": "Adatta le parentesi all'altezza dell'argomento", "PE.Views.DocumentHolder.txtMatrixAlign": "Allineamento Matrice", + "PE.Views.DocumentHolder.txtMoveSlidesToEnd": "Spostare la diapositiva alla fine", + "PE.Views.DocumentHolder.txtMoveSlidesToStart": "Spostare la diapositiva all'inizio", "PE.Views.DocumentHolder.txtNewSlide": "Nuova diapositiva", "PE.Views.DocumentHolder.txtOverbar": "Barra sopra al testo", "PE.Views.DocumentHolder.txtPasteDestFormat": "Usa tema di destinazione", @@ -1448,6 +1658,7 @@ "PE.Views.ImageSettings.textCrop": "Ritaglia", "PE.Views.ImageSettings.textCropFill": "Riempimento", "PE.Views.ImageSettings.textCropFit": "Adatta", + "PE.Views.ImageSettings.textCropToShape": "Ritagliare a forma", "PE.Views.ImageSettings.textEdit": "Modifica", "PE.Views.ImageSettings.textEditObject": "Modifica oggetto", "PE.Views.ImageSettings.textFitSlide": "Adatta alla diapositiva", @@ -1504,7 +1715,7 @@ "PE.Views.ParagraphSettings.textAt": "A", "PE.Views.ParagraphSettings.textAtLeast": "Minima", "PE.Views.ParagraphSettings.textAuto": "Multiplo", - "PE.Views.ParagraphSettings.textExact": "Esatta", + "PE.Views.ParagraphSettings.textExact": "Esattamente", "PE.Views.ParagraphSettings.txtAutoText": "Auto", "PE.Views.ParagraphSettingsAdvanced.noTabs": "Le schede specificate appariranno in questo campo", "PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Tutto maiuscolo", @@ -1915,6 +2126,7 @@ "PE.Views.Toolbar.textStrikeout": "Barrato", "PE.Views.Toolbar.textSubscript": "Pedice", "PE.Views.Toolbar.textSuperscript": "Apice", + "PE.Views.Toolbar.textTabAnimation": "Animazione", "PE.Views.Toolbar.textTabCollaboration": "Collaborazione", "PE.Views.Toolbar.textTabFile": "File", "PE.Views.Toolbar.textTabHome": "Home", @@ -1975,6 +2187,7 @@ "PE.Views.Toolbar.tipViewSettings": "Mostra impostazioni", "PE.Views.Toolbar.txtDistribHor": "Distribuisci orizzontalmente", "PE.Views.Toolbar.txtDistribVert": "Distribuisci verticalmente", + "PE.Views.Toolbar.txtDuplicateSlide": "Duplica diapositiva", "PE.Views.Toolbar.txtGroup": "Raggruppa", "PE.Views.Toolbar.txtObjectsAlign": "Allinea oggetti selezionati", "PE.Views.Toolbar.txtScheme1": "Ufficio", @@ -2037,6 +2250,12 @@ "PE.Views.Transitions.txtParameters": "Parametri", "PE.Views.Transitions.txtPreview": "Anteprima", "PE.Views.Transitions.txtSec": "s", + "PE.Views.ViewTab.textAlwaysShowToolbar": "Mostra sempre barra degli strumenti ", "PE.Views.ViewTab.textFitToSlide": "Adatta alla diapositiva", - "PE.Views.ViewTab.textFitToWidth": "Adatta alla larghezza" + "PE.Views.ViewTab.textFitToWidth": "Adatta alla larghezza", + "PE.Views.ViewTab.textInterfaceTheme": "Tema dell'interfaccia", + "PE.Views.ViewTab.textNotes": "Appunti", + "PE.Views.ViewTab.textRulers": "Righelli", + "PE.Views.ViewTab.textStatusBar": "Barra di stato", + "PE.Views.ViewTab.textZoom": "Zoom" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ja.json b/apps/presentationeditor/main/locale/ja.json index d34fb05ae..fc0938b15 100644 --- a/apps/presentationeditor/main/locale/ja.json +++ b/apps/presentationeditor/main/locale/ja.json @@ -48,6 +48,12 @@ "Common.define.chartData.textStock": "株価チャート", "Common.define.chartData.textSurface": "表面", "Common.define.effectData.textFade": "フェード", + "Common.define.effectData.textLeft": "左", + "Common.define.effectData.textLeftDown": "左下", + "Common.define.effectData.textLeftUp": "左上", + "Common.define.effectData.textRight": "右", + "Common.define.effectData.textRightDown": "右下", + "Common.define.effectData.textRightUp": "右上", "Common.define.effectData.textZoom": "ズーム", "Common.Translation.warnFileLocked": "文書が他のアプリで編集されています。編集を続けて、コピーとして保存できます。", "Common.Translation.warnFileLockedBtnEdit": "コピーを作成", diff --git a/apps/spreadsheeteditor/embed/locale/id.json b/apps/spreadsheeteditor/embed/locale/id.json index afbabafcc..74414bda4 100644 --- a/apps/spreadsheeteditor/embed/locale/id.json +++ b/apps/spreadsheeteditor/embed/locale/id.json @@ -1,30 +1,33 @@ { - "common.view.modals.txtCopy": "Salin ke papan klip", + "common.view.modals.txtCopy": "Disalin ke papan klip", "common.view.modals.txtEmbed": "Melekatkan", "common.view.modals.txtHeight": "Tinggi", "common.view.modals.txtShare": "Bagi tautan", "common.view.modals.txtWidth": "Lebar", - "SSE.ApplicationController.convertationErrorText": "Perubahan gagal", - "SSE.ApplicationController.convertationTimeoutText": "Perubahan melebihi batas waktu", + "SSE.ApplicationController.convertationErrorText": "Konversi gagal.", + "SSE.ApplicationController.convertationTimeoutText": "Waktu konversi habis.", "SSE.ApplicationController.criticalErrorTitle": "Kesalahan", - "SSE.ApplicationController.downloadErrorText": "Gagal mengunduh", + "SSE.ApplicationController.downloadErrorText": "Unduhan gagal.", "SSE.ApplicationController.downloadTextText": "Mengunduh spread sheet", "SSE.ApplicationController.errorAccessDeny": "Kamu mencoba melakukan", "SSE.ApplicationController.errorDefaultMessage": "Kode kesalahan %1", - "SSE.ApplicationController.errorFilePassProtect": "File di lindungi kata sandi dab tidak dapat dibuka", + "SSE.ApplicationController.errorFilePassProtect": "Dokumen dilindungi dengan kata sandi dan tidak dapat dibuka.", "SSE.ApplicationController.errorFileSizeExceed": "Dokumen melebihi ukuran ", "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Huhungan internet telah", "SSE.ApplicationController.errorUserDrop": "File tidak dapat di akses", "SSE.ApplicationController.notcriticalErrorTitle": "Peringatan", "SSE.ApplicationController.scriptLoadError": "Hubungan terlalu lambat", + "SSE.ApplicationController.textGuest": "Tamu", "SSE.ApplicationController.textLoadingDocument": "Memuat spread sheet", "SSE.ApplicationController.textOf": "Dari", "SSE.ApplicationController.txtClose": "Tutup", - "SSE.ApplicationController.unknownErrorText": "Kesalahan tidak diketahui", + "SSE.ApplicationController.unknownErrorText": "Error tidak dikenal.", "SSE.ApplicationController.unsupportedBrowserErrorText": "Peramban kamu tidak didukung", - "SSE.ApplicationController.waitText": "Mohon menunggu", + "SSE.ApplicationController.waitText": "Silahkan menunggu", "SSE.ApplicationView.txtDownload": "Unduh", "SSE.ApplicationView.txtEmbed": "Melekatkan", + "SSE.ApplicationView.txtFileLocation": "Buka Dokumen", "SSE.ApplicationView.txtFullScreen": "Layar penuh", - "SSE.ApplicationView.txtShare": "Bagi" + "SSE.ApplicationView.txtPrint": "Cetak", + "SSE.ApplicationView.txtShare": "Bagikan" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ca.json b/apps/spreadsheeteditor/main/locale/ca.json index 9aa292036..8e9b82dc2 100644 --- a/apps/spreadsheeteditor/main/locale/ca.json +++ b/apps/spreadsheeteditor/main/locale/ca.json @@ -2753,6 +2753,7 @@ "SSE.Views.PrintWithPreview.txtCurrentSheet": "Full de càlcul actual", "SSE.Views.PrintWithPreview.txtCustom": "Personalització", "SSE.Views.PrintWithPreview.txtCustomOptions": "Opcions personalitzades", + "SSE.Views.PrintWithPreview.txtEmptyTable": "No hi ha res per imprimir perquè la taula és buida", "SSE.Views.PrintWithPreview.txtFitCols": "Ajusta totes les columnes en una pàgina", "SSE.Views.PrintWithPreview.txtFitPage": "Ajusta el full en una pàgina", "SSE.Views.PrintWithPreview.txtFitRows": "Ajusta totes les files en una pàgina", diff --git a/apps/spreadsheeteditor/main/locale/de.json b/apps/spreadsheeteditor/main/locale/de.json index 4ee510b70..e8703bcbf 100644 --- a/apps/spreadsheeteditor/main/locale/de.json +++ b/apps/spreadsheeteditor/main/locale/de.json @@ -2753,6 +2753,7 @@ "SSE.Views.PrintWithPreview.txtCurrentSheet": "Aktuelles Blatt", "SSE.Views.PrintWithPreview.txtCustom": "Benutzerdefiniert", "SSE.Views.PrintWithPreview.txtCustomOptions": "Benutzerdefinierte Optionen", + "SSE.Views.PrintWithPreview.txtEmptyTable": "Es gibt nichts zu drucken", "SSE.Views.PrintWithPreview.txtFitCols": "Alle Spalten auf einer Seite darstellen", "SSE.Views.PrintWithPreview.txtFitPage": "Blatt auf einer Seite darstellen", "SSE.Views.PrintWithPreview.txtFitRows": "Alle Zeilen auf einer Seite darstellen", diff --git a/apps/spreadsheeteditor/main/locale/el.json b/apps/spreadsheeteditor/main/locale/el.json index 97de6cc4f..9bf4c5be0 100644 --- a/apps/spreadsheeteditor/main/locale/el.json +++ b/apps/spreadsheeteditor/main/locale/el.json @@ -114,6 +114,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Νέο", "Common.UI.ExtendedColorDialog.textRGBErr": "Η τιμή που βάλατε δεν είναι αποδεκτή.
Παρακαλούμε βάλτε μια αριθμητική τιμή μεταξύ 0 και 255.", "Common.UI.HSBColorPicker.textNoColor": "Χωρίς Χρώμα", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Απόκρυψη συνθηματικού", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Εμφάνιση συνθηματικού", "Common.UI.SearchDialog.textHighlight": "Επισήμανση αποτελεσμάτων", "Common.UI.SearchDialog.textMatchCase": "Με διάκριση πεζών - κεφαλαίων γραμμάτων", "Common.UI.SearchDialog.textReplaceDef": "Εισάγετε το κείμενο αντικατάστασης", @@ -178,12 +180,14 @@ "Common.Views.Comments.mniAuthorDesc": "Συγγραφέας Ω έως Α", "Common.Views.Comments.mniDateAsc": "Παλαιότερο", "Common.Views.Comments.mniDateDesc": "Νεότερο", + "Common.Views.Comments.mniFilterGroups": "Φιλτράρισμα κατά Ομάδα", "Common.Views.Comments.mniPositionAsc": "Από πάνω", "Common.Views.Comments.mniPositionDesc": "Από κάτω", "Common.Views.Comments.textAdd": "Προσθήκη", "Common.Views.Comments.textAddComment": "Προσθήκη Σχολίου", "Common.Views.Comments.textAddCommentToDoc": "Προσθήκη Σχολίου στο Έγγραφο", "Common.Views.Comments.textAddReply": "Προσθήκη Απάντησης", + "Common.Views.Comments.textAll": "Όλα", "Common.Views.Comments.textAnonym": "Επισκέπτης", "Common.Views.Comments.textCancel": "Ακύρωση", "Common.Views.Comments.textClose": "Κλείσιμο", @@ -197,6 +201,7 @@ "Common.Views.Comments.textResolve": "Επίλυση", "Common.Views.Comments.textResolved": "Επιλύθηκε", "Common.Views.Comments.textSort": "Ταξινόμηση σχολίων", + "Common.Views.Comments.textViewResolved": "Δεν έχετε άδεια να ανοίξετε ξανά το σχόλιο", "Common.Views.CopyWarningDialog.textDontShow": "Να μην εμφανίζεται αυτό το μήνυμα ξανά", "Common.Views.CopyWarningDialog.textMsg": "Η αντιγραφή, η αποκοπή και η επικόλληση μέσω των κουμπιών της εργαλειοθήκης του συντάκτη καθώς και οι ενέργειες του μενού συμφραζομένων εφαρμόζονται μόνο εντός αυτής της καρτέλας.

Για αντιγραφή ή επικόλληση από ή προς εφαρμογές εκτός της καρτέλας χρησιμοποιήστε τους ακόλουθους συνδυασμούς πλήκτρων:", "Common.Views.CopyWarningDialog.textTitle": "Ενέργειες Αντιγραφής, Αποκοπής και Επικόλλησης", @@ -364,6 +369,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Άνοιγμα Ξανά", "Common.Views.ReviewPopover.textReply": "Απάντηση", "Common.Views.ReviewPopover.textResolve": "Επίλυση", + "Common.Views.ReviewPopover.textViewResolved": "Δεν έχετε άδεια να ανοίξετε ξανά το σχόλιο", "Common.Views.ReviewPopover.txtDeleteTip": "Διαγραφή", "Common.Views.ReviewPopover.txtEditTip": "Επεξεργασία", "Common.Views.SaveAsDlg.textLoading": "Γίνεται φόρτωση", @@ -474,6 +480,7 @@ "SSE.Controllers.DocumentHolder.txtAddVer": "Προσθήκη κατακόρυφης γραμμής", "SSE.Controllers.DocumentHolder.txtAlignToChar": "Στοίχιση σε χαρακτήρα", "SSE.Controllers.DocumentHolder.txtAll": "(Όλα)", + "SSE.Controllers.DocumentHolder.txtAllTableHint": "Επιστρέφει όλα τα περιεχόμενα από τον πίνακα ή από τις καθορισμένες στήλες του πίνακα συμπεριλαμβανομένων των επικεφαλίδων των στηλών, τα δεδομένα και τις συνολικές σειρές", "SSE.Controllers.DocumentHolder.txtAnd": "και", "SSE.Controllers.DocumentHolder.txtBegins": "Αρχίζει με", "SSE.Controllers.DocumentHolder.txtBelowAve": "Κάτω από τον μέσο όρο", @@ -483,6 +490,7 @@ "SSE.Controllers.DocumentHolder.txtColumn": "Στήλη", "SSE.Controllers.DocumentHolder.txtColumnAlign": "Στοίχιση στήλης", "SSE.Controllers.DocumentHolder.txtContains": "Περιέχει", + "SSE.Controllers.DocumentHolder.txtDataTableHint": "Επιστρέφει τα κελιά δεδομένων από τον πίνακα ή τις καθορισμένες στήλες του πίνακα", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Μείωση μεγέθους ορίσματος", "SSE.Controllers.DocumentHolder.txtDeleteArg": "Διαγραφή ορίσματος", "SSE.Controllers.DocumentHolder.txtDeleteBreak": "Διαγραφή χειροκίνητης αλλαγής", @@ -506,6 +514,7 @@ "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Μεγαλύτερο ή ίσο με", "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Χαρακτήρας πάνω από το κείμενο", "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Χαρακτήρας κάτω από το κείμενο", + "SSE.Controllers.DocumentHolder.txtHeadersTableHint": "Επιστρέφει τις επικεφαλίδες των στηλών για τον πίνακα ή τις καθορισμένες στήλες του πίνακα", "SSE.Controllers.DocumentHolder.txtHeight": "Ύψος", "SSE.Controllers.DocumentHolder.txtHideBottom": "Απόκρυψη κάτω περιγράμματος", "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "Απόκρυψη κάτω ορίου", @@ -584,7 +593,9 @@ "SSE.Controllers.DocumentHolder.txtSorting": "Ταξινόμηση", "SSE.Controllers.DocumentHolder.txtSortSelected": "Ταξινόμηση επιλεγμένων", "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Έκταση παρενθέσεων", + "SSE.Controllers.DocumentHolder.txtThisRowHint": "Επίλεξε μόνο αυτή τη σειρά της καθορισμένης στήλης", "SSE.Controllers.DocumentHolder.txtTop": "Επάνω", + "SSE.Controllers.DocumentHolder.txtTotalsTableHint": "Επιστρέφει τις συνολικές σειρές για τον πίνακα ή για τις καθορισμένες στήλες του πίνακα", "SSE.Controllers.DocumentHolder.txtUnderbar": "Μπάρα κάτω από κείμενο", "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Αναίρεση αυτόματης έκτασης πίνακα", "SSE.Controllers.DocumentHolder.txtUseTextImport": "Χρήση οδηγού εισαγωγής κειμένου", @@ -639,6 +650,7 @@ "SSE.Controllers.Main.errorAutoFilterHiddenRange": "Δεν είναι δυνατή η εκτέλεση της λειτουργίας, επειδή η περιοχή περιέχει φιλτραρισμένα κελιά.
Παρακαλούμε εμφανίστε τα φιλτραρισμένα στοιχεία και δοκιμάστε ξανά.", "SSE.Controllers.Main.errorBadImageUrl": "Εσφαλμένη διεύθυνση URL εικόνας", "SSE.Controllers.Main.errorCannotUngroup": "Δεν είναι δυνατή η αφαίρεση ομαδοποίησης. Για να ξεκινήσετε μια ομάδα, επιλέξτε τις γραμμές ή στήλες λεπτομερειών και ομαδοποιήστε τες. ", + "SSE.Controllers.Main.errorCannotUseCommandProtectedSheet": "Δεν μπορείτε να χρησιμοποιήσετε αυτή την εντολή σε προστατευμένο φύλλο. Για να χρησιμοποιήσετε αυτή την εντολή, αφαιρέστε την προστασία.
Ενδέχεται να σας ζητηθεί να εισάγετε συνθηματικό.", "SSE.Controllers.Main.errorChangeArray": "Δεν μπορείτε να αλλάξετε μέρος ενός πίνακα.", "SSE.Controllers.Main.errorChangeFilteredRange": "Αυτό θα αλλάξει ένα φιλτραρισμένο εύρος στο φύλλο εργασίας.
Για να ολοκληρώσετε αυτή την εργασία, παρακαλούμε αφαιρέστε τα Αυτόματα Φίλτρα.", "SSE.Controllers.Main.errorChangeOnProtectedSheet": "Το κελί ή γράφημα που προσπαθείτε να αλλάξετε βρίσκεται σε προστατευμένο φύλλο.
Για να κάνετε αλλαγή, αφαιρέστε την προστασία. Ίσως σας ζητηθεί συνθηματικό.", @@ -769,6 +781,7 @@ "SSE.Controllers.Main.textNoLicenseTitle": "Το όριο της άδειας χρήσης έχει εξαντληθεί.", "SSE.Controllers.Main.textPaidFeature": "Δυνατότητα επί πληρωμή", "SSE.Controllers.Main.textPleaseWait": "Η λειτουργία ίσως χρειαστεί περισσότερο χρόνο από τον αναμενόμενο. Παρακαλούμε περιμένετε...", + "SSE.Controllers.Main.textReconnect": "Η σύνδεση αποκαταστάθηκε", "SSE.Controllers.Main.textRemember": "Να θυμάσαι την επιλογή μου για όλα τα αρχεία", "SSE.Controllers.Main.textRenameError": "Το όνομα χρήστη δεν μπορεί να είναι κενό.", "SSE.Controllers.Main.textRenameLabel": "Εισάγετε ένα όνομα για συνεργατική χρήση", @@ -1060,6 +1073,7 @@ "SSE.Controllers.Statusbar.errorLastSheet": "Το βιβλίο εργασίας πρέπει να έχει τουλάχιστον ένα ορατό φύλλο εργασίας.", "SSE.Controllers.Statusbar.errorRemoveSheet": "Δεν είναι δυνατή η διαγραφή του φύλλου εργασίας.", "SSE.Controllers.Statusbar.strSheet": "Φύλλο", + "SSE.Controllers.Statusbar.textDisconnect": "Η σύνδεση χάθηκε
Απόπειρα επανασύνδεσης. Παρακαλούμε ελέγξτε τις ρυθμίσεις σύνδεσης.", "SSE.Controllers.Statusbar.textSheetViewTip": "Βρίσκεστε σε κατάσταση Προβολής Φύλλου. Φίλτρα και ταξινομήσεις είναι ορατά μόνο σε εσάς και όσους είναι ακόμα σε αυτή την προβολή.", "SSE.Controllers.Statusbar.textSheetViewTipFilters": "Βρίσκεστε ακόμα σε κατάσταση Προβολής Φύλλου. Φίλτρα είναι ορατά μόνο σε εσάς και όσους βρίσκονται ακόμα σε αυτή την προβολή.", "SSE.Controllers.Statusbar.warnDeleteSheet": "Τα επιλεγμένα φύλλα εργασίας ενδέχεται να περιέχουν δεδομένα. Είστε βέβαιοι ότι θέλετε να συνεχίσετε;", @@ -1085,6 +1099,7 @@ "SSE.Controllers.Toolbar.textPivot": "Συγκεντρωτικός Πίνακας", "SSE.Controllers.Toolbar.textRadical": "Ρίζες", "SSE.Controllers.Toolbar.textRating": "Αξιολογήσεις", + "SSE.Controllers.Toolbar.textRecentlyUsed": "Πρόσφατα Χρησιμοποιημένα", "SSE.Controllers.Toolbar.textScript": "Δέσμες ενεργειών", "SSE.Controllers.Toolbar.textShapes": "Σχήματα", "SSE.Controllers.Toolbar.textSymbols": "Σύμβολα", @@ -1426,7 +1441,9 @@ "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Διαχωριστικό δεκαδικού", "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Διαχωριστικό χιλιάδων", "SSE.Views.AdvancedSeparatorDialog.textLabel": "Ρυθμίσεις αναγνώρισης αριθμητικών δεδομένων", + "SSE.Views.AdvancedSeparatorDialog.textQualifier": "Προσδιοριστής κειμένου", "SSE.Views.AdvancedSeparatorDialog.textTitle": "Προηγμένες Ρυθμίσεις", + "SSE.Views.AdvancedSeparatorDialog.txtNone": "(κανένα)", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Προσαρμοσμένο Φίλτρο", "SSE.Views.AutoFilterDialog.textAddSelection": "Προσθήκη τρέχουσας επιλογής στο φίλτρο", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Κενά}", @@ -1872,6 +1889,7 @@ "SSE.Views.DocumentHolder.textCrop": "Περικοπή", "SSE.Views.DocumentHolder.textCropFill": "Γέμισμα", "SSE.Views.DocumentHolder.textCropFit": "Προσαρμογή", + "SSE.Views.DocumentHolder.textEditPoints": "Επεξεργασία Σημείων", "SSE.Views.DocumentHolder.textEntriesList": "Επιλογή από αναδυόμενη λίστα", "SSE.Views.DocumentHolder.textFlipH": "Οριζόντια Περιστροφή", "SSE.Views.DocumentHolder.textFlipV": "Κατακόρυφη Περιστροφή", @@ -2241,6 +2259,7 @@ "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Επεξεργασία Κανόνα Μορφοποίησης", "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Νέος Κανόνας Μορφοποίησης", "SSE.Views.FormatRulesManagerDlg.guestText": "Επισκέπτης", + "SSE.Views.FormatRulesManagerDlg.lockText": "Κλειδωμένο", "SSE.Views.FormatRulesManagerDlg.text1Above": "1 τυπική απόκλιση πάνω από το μέσο όρο", "SSE.Views.FormatRulesManagerDlg.text1Below": "1 τυπική απόκλιση κάτω από το μέσο όρο", "SSE.Views.FormatRulesManagerDlg.text2Above": "2 τυπική απόκλιση πάνω από το μέσο όρο", @@ -2402,6 +2421,7 @@ "SSE.Views.ImageSettings.textCrop": "Περικοπή", "SSE.Views.ImageSettings.textCropFill": "Γέμισμα", "SSE.Views.ImageSettings.textCropFit": "Προσαρμογή", + "SSE.Views.ImageSettings.textCropToShape": "Περικοπή στο σχήμα", "SSE.Views.ImageSettings.textEdit": "Επεξεργασία", "SSE.Views.ImageSettings.textEditObject": "Επεξεργασία Αντικειμένου", "SSE.Views.ImageSettings.textFlip": "Περιστροφή", @@ -2416,6 +2436,7 @@ "SSE.Views.ImageSettings.textInsert": "Αντικατάσταση εικόνας", "SSE.Views.ImageSettings.textKeepRatio": "Σταθερές αναλογίες", "SSE.Views.ImageSettings.textOriginalSize": "Πραγματικό Μέγεθος", + "SSE.Views.ImageSettings.textRecentlyUsed": "Πρόσφατα Χρησιμοποιημένα", "SSE.Views.ImageSettings.textRotate90": "Περιστροφή 90°", "SSE.Views.ImageSettings.textRotation": "Περιστροφή", "SSE.Views.ImageSettings.textSize": "Μέγεθος", @@ -2465,7 +2486,7 @@ "SSE.Views.MainSettingsPrint.textFitPage": "Προσαρμογή Φύλλου σε Μια Σελίδα", "SSE.Views.MainSettingsPrint.textFitRows": "Προσαρμογή Όλων των Γραμμών σε Μια Σελίδα", "SSE.Views.MainSettingsPrint.textPageOrientation": "Προσανατολισμός Σελίδας", - "SSE.Views.MainSettingsPrint.textPageScaling": "Κλιμάκωση", + "SSE.Views.MainSettingsPrint.textPageScaling": "Κλίμακα", "SSE.Views.MainSettingsPrint.textPageSize": "Μέγεθος Σελίδας", "SSE.Views.MainSettingsPrint.textPrintGrid": "Εκτύπωση Γραμμών Πλέγματος", "SSE.Views.MainSettingsPrint.textPrintHeadings": "Εκτύπωση Επικεφαλίδων Γραμμών και Στηλών", @@ -2493,6 +2514,7 @@ "SSE.Views.NamedRangePasteDlg.txtTitle": "Επικόλληση Ονόματος", "SSE.Views.NameManagerDlg.closeButtonText": "Κλείσιμο", "SSE.Views.NameManagerDlg.guestText": "Επισκέπτης", + "SSE.Views.NameManagerDlg.lockText": "Κλειδωμένο", "SSE.Views.NameManagerDlg.textDataRange": "Εύρος Δεδομένων", "SSE.Views.NameManagerDlg.textDelete": "Διαγραφή", "SSE.Views.NameManagerDlg.textEdit": "Επεξεργασία", @@ -2697,7 +2719,7 @@ "SSE.Views.PrintSettings.textIgnore": "Αγνόηση Περιοχής Εκτύπωσης", "SSE.Views.PrintSettings.textLayout": "Διάταξη", "SSE.Views.PrintSettings.textPageOrientation": "Προσανατολισμός Σελίδας", - "SSE.Views.PrintSettings.textPageScaling": "Κλιμάκωση", + "SSE.Views.PrintSettings.textPageScaling": "Κλίμακα", "SSE.Views.PrintSettings.textPageSize": "Μέγεθος Σελίδας", "SSE.Views.PrintSettings.textPrintGrid": "Εκτύπωση Γραμμών Πλέγματος", "SSE.Views.PrintSettings.textPrintHeadings": "Εκτύπωση Επικεφαλίδων Γραμμών και Στηλών", @@ -2724,6 +2746,44 @@ "SSE.Views.PrintTitlesDialog.textSelectRange": "Επιλογή εύρους", "SSE.Views.PrintTitlesDialog.textTitle": "Εκτύπωση Τίτλων", "SSE.Views.PrintTitlesDialog.textTop": "Επανάληψη γραμμών στην κορυφή", + "SSE.Views.PrintWithPreview.txtActualSize": "Πραγματικό Μέγεθος", + "SSE.Views.PrintWithPreview.txtAllSheets": "Όλα τα Φύλλα", + "SSE.Views.PrintWithPreview.txtApplyToAllSheets": "Εφαρμογή σε όλα τα φύλλα", + "SSE.Views.PrintWithPreview.txtBottom": "Κάτω Μέρος", + "SSE.Views.PrintWithPreview.txtCurrentSheet": "Τρέχον φύλλο", + "SSE.Views.PrintWithPreview.txtCustom": "Προσαρμογή", + "SSE.Views.PrintWithPreview.txtCustomOptions": "Επιλογές Προσαρμογής", + "SSE.Views.PrintWithPreview.txtEmptyTable": "Δεν υπάρχει κάτι για εκτύπωση επειδή ο πίνακας είναι άδειος", + "SSE.Views.PrintWithPreview.txtFitCols": "Προσαρμογή Όλων των Στηλών σε Μια Σελίδα", + "SSE.Views.PrintWithPreview.txtFitPage": "Προσαρμογή Φύλλου σε Μία Σελίδα", + "SSE.Views.PrintWithPreview.txtFitRows": "Προσαρμογή Όλων των Σειρών σε Μια Σελίδα", + "SSE.Views.PrintWithPreview.txtGridlinesAndHeadings": "Γραμμές πλέγματος και επικεφαλίδες", + "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Ρυθμίσεις Κεφαλίδας/Υποσέλιδου", + "SSE.Views.PrintWithPreview.txtIgnore": "Αγνόηση περιοχής εκτύπωσης", + "SSE.Views.PrintWithPreview.txtLandscape": "Οριζόντιος", + "SSE.Views.PrintWithPreview.txtLeft": "Αριστερά", + "SSE.Views.PrintWithPreview.txtMargins": "Περιθώρια", + "SSE.Views.PrintWithPreview.txtOf": "του {0}", + "SSE.Views.PrintWithPreview.txtPage": "Σελίδα", + "SSE.Views.PrintWithPreview.txtPageNumInvalid": "Μη έγκυρος αριθμός σελίδας", + "SSE.Views.PrintWithPreview.txtPageOrientation": "Προσανατολισμός σελίδας", + "SSE.Views.PrintWithPreview.txtPageSize": "Μέγεθος σελίδας", + "SSE.Views.PrintWithPreview.txtPortrait": "Κατακόρυφος", + "SSE.Views.PrintWithPreview.txtPrint": "Εκτύπωση", + "SSE.Views.PrintWithPreview.txtPrintGrid": "Εκτύπωση γραμμών πλέγματος", + "SSE.Views.PrintWithPreview.txtPrintHeadings": "Εκτύπωση επικεφαλίδων σειρών και στηλών", + "SSE.Views.PrintWithPreview.txtPrintRange": "Εκτύπωση εύρους", + "SSE.Views.PrintWithPreview.txtPrintTitles": "Εκτύπωση τίτλων", + "SSE.Views.PrintWithPreview.txtRepeat": "Επανάληψη...", + "SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft": "Επανάληψη στηλών στα αριστερά", + "SSE.Views.PrintWithPreview.txtRepeatRowsAtTop": "Επανάληψη σειρών στην κορυφή", + "SSE.Views.PrintWithPreview.txtRight": "Δεξιά", + "SSE.Views.PrintWithPreview.txtSave": "Αποθήκευση", + "SSE.Views.PrintWithPreview.txtScaling": "Κλίμακα", + "SSE.Views.PrintWithPreview.txtSelection": "Επιλογή", + "SSE.Views.PrintWithPreview.txtSettingsOfSheet": "Ρυθμίσεις φύλλου", + "SSE.Views.PrintWithPreview.txtSheet": "Φύλλο: {0}", + "SSE.Views.PrintWithPreview.txtTop": "Κορυφή", "SSE.Views.ProtectDialog.textExistName": "ΣΦΑΛΜΑ! Υπάρχει ήδη εύρος με αυτόν τον τίτλο", "SSE.Views.ProtectDialog.textInvalidName": "Ο τίτλος εύρους πρέπει να ξεκινά με γράμμα και να περιέχει μόνο γράμματα, αριθμούς και διαστήματα.", "SSE.Views.ProtectDialog.textInvalidRange": "ΣΦΑΛΜΑ! Μη έγκυρο εύρος κελιών", @@ -2758,6 +2818,7 @@ "SSE.Views.ProtectDialog.txtWBDescription": "Για να αποτρέψετε άλλους χρήστες από το να βλέπουν κρυφά φύλλα εργασίας, να προσθέτουν, μεταφέρουν, διαγράφουν, κρύβουν και μετονομάζουν φύλλα εργασίας, μπορείτε να προστατέψετε τη δομή του βιβλίου εργασίας σας με ένα συνθηματικό.", "SSE.Views.ProtectDialog.txtWBTitle": "Προστασία δομής Βιβλίου Εργασίας", "SSE.Views.ProtectRangesDlg.guestText": "Επισκέπτης", + "SSE.Views.ProtectRangesDlg.lockText": "Κλειδωμένο", "SSE.Views.ProtectRangesDlg.textDelete": "Διαγραφή", "SSE.Views.ProtectRangesDlg.textEdit": "Επεξεργασία", "SSE.Views.ProtectRangesDlg.textEmpty": "Δεν επιτρέπεται η επεξεργασία κανενός εύρους.", @@ -2837,6 +2898,7 @@ "SSE.Views.ShapeSettings.textPatternFill": "Μοτίβο", "SSE.Views.ShapeSettings.textPosition": "Θέση", "SSE.Views.ShapeSettings.textRadial": "Ακτινικός", + "SSE.Views.ShapeSettings.textRecentlyUsed": "Πρόσφατα Χρησιμοποιημένα", "SSE.Views.ShapeSettings.textRotate90": "Περιστροφή 90°", "SSE.Views.ShapeSettings.textRotation": "Περιστροφή", "SSE.Views.ShapeSettings.textSelectImage": "Επιλογή Εικόνας", @@ -3098,6 +3160,7 @@ "SSE.Views.Statusbar.tipAddTab": "Προσθήκη φύλλου εργασίας", "SSE.Views.Statusbar.tipFirst": "Κύλιση στο πρώτο φύλλο", "SSE.Views.Statusbar.tipLast": "Κύλιση στο τελευταίο φύλλο", + "SSE.Views.Statusbar.tipListOfSheets": "Λίστα Φύλλων", "SSE.Views.Statusbar.tipNext": "Κύλιση λίστας φύλλων δεξιά", "SSE.Views.Statusbar.tipPrev": "Κύλιση λίστας φύλλων αριστερά", "SSE.Views.Statusbar.tipZoomFactor": "Εστίαση", @@ -3205,7 +3268,7 @@ "SSE.Views.Toolbar.capBtnAddComment": "Προσθήκη Σχολίου", "SSE.Views.Toolbar.capBtnColorSchemas": "Σύστημα Χρωμάτων", "SSE.Views.Toolbar.capBtnComment": "Σχόλιο", - "SSE.Views.Toolbar.capBtnInsHeader": "Κεφαλίδα/Υποσέλιδο", + "SSE.Views.Toolbar.capBtnInsHeader": "Κεφαλίδα & Υποσέλιδο", "SSE.Views.Toolbar.capBtnInsSlicer": "Αναλυτής", "SSE.Views.Toolbar.capBtnInsSymbol": "Σύμβολο", "SSE.Views.Toolbar.capBtnMargins": "Περιθώρια", @@ -3286,6 +3349,8 @@ "SSE.Views.Toolbar.textPageMarginsCustom": "Προσαρμοσμένα περιθώρια", "SSE.Views.Toolbar.textPortrait": "Κατακόρυφος", "SSE.Views.Toolbar.textPrint": "Εκτύπωση", + "SSE.Views.Toolbar.textPrintGridlines": "Εκτύπωση γραμμών πλέγματος", + "SSE.Views.Toolbar.textPrintHeadings": "Εκτύπωση επικεφαλίδων", "SSE.Views.Toolbar.textPrintOptions": "Ρυθμίσεις Εκτύπωσης", "SSE.Views.Toolbar.textRight": "Δεξιά:", "SSE.Views.Toolbar.textRightBorders": "Δεξιά Περιγράμματα", @@ -3364,7 +3429,16 @@ "SSE.Views.Toolbar.tipInsertTable": "Εισαγωγή πίνακα", "SSE.Views.Toolbar.tipInsertText": "Εισαγωγή πλαισίου κειμένου", "SSE.Views.Toolbar.tipInsertTextart": "Εισαγωγή Τεχνοκειμένου", + "SSE.Views.Toolbar.tipMarkersArrow": "Βέλη", + "SSE.Views.Toolbar.tipMarkersCheckmark": "Τικ", + "SSE.Views.Toolbar.tipMarkersDash": "Παύλες", + "SSE.Views.Toolbar.tipMarkersFRhombus": "Κουκίδες πλήρους ρόμβου", + "SSE.Views.Toolbar.tipMarkersFRound": "Κουκίδες", + "SSE.Views.Toolbar.tipMarkersFSquare": "Τετράγωνα", + "SSE.Views.Toolbar.tipMarkersHRound": "Κουκίδες άδειες", + "SSE.Views.Toolbar.tipMarkersStar": "Αστέρια", "SSE.Views.Toolbar.tipMerge": "Συγχώνευση και κεντράρισμα", + "SSE.Views.Toolbar.tipNone": "Κανένα", "SSE.Views.Toolbar.tipNumFormat": "Μορφή αριθμού", "SSE.Views.Toolbar.tipPageMargins": "Περιθώρια σελίδας", "SSE.Views.Toolbar.tipPageOrient": "Προσανατολισμός σελίδας", @@ -3493,6 +3567,7 @@ "SSE.Views.ValueFieldSettingsDialog.txtVarp": "Διακύμανση πληθυσμού", "SSE.Views.ViewManagerDlg.closeButtonText": "Κλείσιμο", "SSE.Views.ViewManagerDlg.guestText": "Επισκέπτης", + "SSE.Views.ViewManagerDlg.lockText": "Κλειδωμένο", "SSE.Views.ViewManagerDlg.textDelete": "Διαγραφή", "SSE.Views.ViewManagerDlg.textDuplicate": "Αντίγραφο", "SSE.Views.ViewManagerDlg.textEmpty": "Δεν δημιουργήθηκαν ακόμα όψεις.", @@ -3508,7 +3583,9 @@ "SSE.Views.ViewManagerDlg.warnDeleteView": "Προσπαθείτε να διαγράψετε την τρέχουσα επιλεγμένη όψη '%1'.
Κλείσιμο αυτής της όψης και διαγραφή της;", "SSE.Views.ViewTab.capBtnFreeze": "Πάγωμα Παραθύρων", "SSE.Views.ViewTab.capBtnSheetView": "Όψη Φύλλου", + "SSE.Views.ViewTab.textAlwaysShowToolbar": "Να εμφανίζεται πάντα η γραμμή εργαλείων", "SSE.Views.ViewTab.textClose": "Κλείσιμο", + "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "Συνδυασμός γραμμών φύλλου και κατάστασης", "SSE.Views.ViewTab.textCreate": "Νέο", "SSE.Views.ViewTab.textDefault": "Προεπιλογή", "SSE.Views.ViewTab.textFormula": "Μπάρα μαθηματικών τύπων", @@ -3516,7 +3593,9 @@ "SSE.Views.ViewTab.textFreezeRow": "Πάγωμα Πάνω Γραμμής", "SSE.Views.ViewTab.textGridlines": "Γραμμές πλέγματος", "SSE.Views.ViewTab.textHeadings": "Επικεφαλίδες", + "SSE.Views.ViewTab.textInterfaceTheme": "Θέμα διεπαφής", "SSE.Views.ViewTab.textManager": "Διαχειριστής προβολής", + "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Εμφάνιση σκιάς παγωμένων παραθύρων", "SSE.Views.ViewTab.textUnFreeze": "Απελευθέρωση Παραθύρων", "SSE.Views.ViewTab.textZeros": "Εμφάνιση μηδενικών", "SSE.Views.ViewTab.textZoom": "Εστίαση", diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 820634116..713b20e21 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -201,7 +201,7 @@ "Common.Views.Comments.textResolve": "Resolve", "Common.Views.Comments.textResolved": "Resolved", "Common.Views.Comments.textSort": "Sort comments", - "Common.Views.Comments.textViewResolved": "You have not permission for reopen comment", + "Common.Views.Comments.textViewResolved": "You have no permission to reopen the comment", "Common.Views.CopyWarningDialog.textDontShow": "Don't show this message again", "Common.Views.CopyWarningDialog.textMsg": "Copy, cut and paste actions using the editor toolbar buttons and context menu actions will be performed within this editor tab only.

To copy or paste to or from applications outside the editor tab use the following keyboard combinations:", "Common.Views.CopyWarningDialog.textTitle": "Copy, Cut and Paste Actions", @@ -369,7 +369,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Open Again", "Common.Views.ReviewPopover.textReply": "Reply", "Common.Views.ReviewPopover.textResolve": "Resolve", - "Common.Views.ReviewPopover.textViewResolved": "You have not permission for reopen comment", + "Common.Views.ReviewPopover.textViewResolved": "You have no permission to reopen the comment", "Common.Views.ReviewPopover.txtDeleteTip": "Delete", "Common.Views.ReviewPopover.txtEditTip": "Edit", "Common.Views.SaveAsDlg.textLoading": "Loading", @@ -2753,6 +2753,7 @@ "SSE.Views.PrintWithPreview.txtCurrentSheet": "Current sheet", "SSE.Views.PrintWithPreview.txtCustom": "Custom", "SSE.Views.PrintWithPreview.txtCustomOptions": "Custom Options", + "SSE.Views.PrintWithPreview.txtEmptyTable": "There is nothing to print because the table is empty", "SSE.Views.PrintWithPreview.txtFitCols": "Fit All Columns on One Page", "SSE.Views.PrintWithPreview.txtFitPage": "Fit Sheet on One Page", "SSE.Views.PrintWithPreview.txtFitRows": "Fit All Rows on One Page", @@ -2783,7 +2784,6 @@ "SSE.Views.PrintWithPreview.txtSettingsOfSheet": "Settings of sheet", "SSE.Views.PrintWithPreview.txtSheet": "Sheet: {0}", "SSE.Views.PrintWithPreview.txtTop": "Top", - "SSE.Views.PrintWithPreview.txtEmptyTable": "There is nothing to print because the table is empty", "SSE.Views.ProtectDialog.textExistName": "ERROR! Range with such a title already exists", "SSE.Views.ProtectDialog.textInvalidName": "The range title must begin with a letter and may only contain letters, numbers, and spaces.", "SSE.Views.ProtectDialog.textInvalidRange": "ERROR! Invalid cells range", diff --git a/apps/spreadsheeteditor/main/locale/es.json b/apps/spreadsheeteditor/main/locale/es.json index a5782dcc8..2e6194d34 100644 --- a/apps/spreadsheeteditor/main/locale/es.json +++ b/apps/spreadsheeteditor/main/locale/es.json @@ -2753,6 +2753,7 @@ "SSE.Views.PrintWithPreview.txtCurrentSheet": "Hoja actual", "SSE.Views.PrintWithPreview.txtCustom": "Personalizado", "SSE.Views.PrintWithPreview.txtCustomOptions": "Opciones personalizadas", + "SSE.Views.PrintWithPreview.txtEmptyTable": "No hay nada para imprimir porque la tabla está vacía", "SSE.Views.PrintWithPreview.txtFitCols": "Ajustar todas las columnas en una página", "SSE.Views.PrintWithPreview.txtFitPage": "Ajustar la hoja en una página", "SSE.Views.PrintWithPreview.txtFitRows": "Ajustar todas las filas en una página", diff --git a/apps/spreadsheeteditor/main/locale/fr.json b/apps/spreadsheeteditor/main/locale/fr.json index 07c5bc318..a484271d7 100644 --- a/apps/spreadsheeteditor/main/locale/fr.json +++ b/apps/spreadsheeteditor/main/locale/fr.json @@ -2753,6 +2753,7 @@ "SSE.Views.PrintWithPreview.txtCurrentSheet": "Feuille actuelle", "SSE.Views.PrintWithPreview.txtCustom": "Personnalisé", "SSE.Views.PrintWithPreview.txtCustomOptions": "Options personnalisées", + "SSE.Views.PrintWithPreview.txtEmptyTable": "Il n'y a rien à imprimer, car le tableau est vide", "SSE.Views.PrintWithPreview.txtFitCols": "Ajuster toutes les colonnes à une page", "SSE.Views.PrintWithPreview.txtFitPage": "Ajuster la feuille à une page", "SSE.Views.PrintWithPreview.txtFitRows": "Ajuster toutes les lignes à une page", diff --git a/apps/spreadsheeteditor/main/locale/gl.json b/apps/spreadsheeteditor/main/locale/gl.json index 7a7662adc..5ce47c8cc 100644 --- a/apps/spreadsheeteditor/main/locale/gl.json +++ b/apps/spreadsheeteditor/main/locale/gl.json @@ -114,6 +114,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Novo", "Common.UI.ExtendedColorDialog.textRGBErr": "O valor introducido é incorrecto.
Insira un valor numérico entre 0 e 255.", "Common.UI.HSBColorPicker.textNoColor": "Sen cor", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Agochar o contrasinal", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Amosar o contrasinal", "Common.UI.SearchDialog.textHighlight": "Realzar resultados", "Common.UI.SearchDialog.textMatchCase": "Diferenciar maiúsculas de minúsculas", "Common.UI.SearchDialog.textReplaceDef": "Inserir o texto da substitución", @@ -178,12 +180,14 @@ "Common.Views.Comments.mniAuthorDesc": "Autor do Z ao A", "Common.Views.Comments.mniDateAsc": "Máis antigo", "Common.Views.Comments.mniDateDesc": "Novidades", + "Common.Views.Comments.mniFilterGroups": "Filtrar por grupo", "Common.Views.Comments.mniPositionAsc": "Desde enriba", "Common.Views.Comments.mniPositionDesc": "Desde abaixo", "Common.Views.Comments.textAdd": "Engadir", "Common.Views.Comments.textAddComment": "Engadir comentario", "Common.Views.Comments.textAddCommentToDoc": "Engadir comentario ao documento", "Common.Views.Comments.textAddReply": "Engadir resposta", + "Common.Views.Comments.textAll": "Todo", "Common.Views.Comments.textAnonym": "Convidado(a)", "Common.Views.Comments.textCancel": "Cancelar", "Common.Views.Comments.textClose": "Pechar", @@ -197,6 +201,7 @@ "Common.Views.Comments.textResolve": "Resolver", "Common.Views.Comments.textResolved": "Resolto", "Common.Views.Comments.textSort": "Ordenar comentarios", + "Common.Views.Comments.textViewResolved": "Non ten permiso para volver a abrir o documento", "Common.Views.CopyWarningDialog.textDontShow": "Non volver a amosar esta mensaxe", "Common.Views.CopyWarningDialog.textMsg": "As accións de copiar, cortar e pegar empregando os botóns da barra de ferramentas do editor e as accións do menú contextual realizaranse só nesta pestana do editor.

Para copiar ou pegar en ou desde aplicativos fóra da pestana do editor, use as seguintes combinacións de teclado:", "Common.Views.CopyWarningDialog.textTitle": "Accións de copiar, cortar e pegar", @@ -364,6 +369,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Abrir novamente", "Common.Views.ReviewPopover.textReply": "Responder", "Common.Views.ReviewPopover.textResolve": "Resolver", + "Common.Views.ReviewPopover.textViewResolved": "Non ten permiso para volver a abrir o documento", "Common.Views.ReviewPopover.txtDeleteTip": "Eliminar", "Common.Views.ReviewPopover.txtEditTip": "Editar", "Common.Views.SaveAsDlg.textLoading": "Cargando", @@ -474,6 +480,7 @@ "SSE.Controllers.DocumentHolder.txtAddVer": "Engadir liña vertical", "SSE.Controllers.DocumentHolder.txtAlignToChar": "Aliñar ao carácter", "SSE.Controllers.DocumentHolder.txtAll": "(Todos)", + "SSE.Controllers.DocumentHolder.txtAllTableHint": "Devolve todo o contido da táboa ou das columnas da táboa especificadas, incluíndo as cabeceiras das columnas, os datos e as filas totais", "SSE.Controllers.DocumentHolder.txtAnd": "e", "SSE.Controllers.DocumentHolder.txtBegins": "comeza con", "SSE.Controllers.DocumentHolder.txtBelowAve": "Por debaixo da media", @@ -483,6 +490,7 @@ "SSE.Controllers.DocumentHolder.txtColumn": "Columna", "SSE.Controllers.DocumentHolder.txtColumnAlign": "Aliñación da columna", "SSE.Controllers.DocumentHolder.txtContains": "contén", + "SSE.Controllers.DocumentHolder.txtDataTableHint": "Devolve as celas de datos da táboa ou das columnas da táboa especificadas", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Diminuír tamaño de argumento", "SSE.Controllers.DocumentHolder.txtDeleteArg": "Eliminar argumento", "SSE.Controllers.DocumentHolder.txtDeleteBreak": "Borrar salto manual", @@ -506,6 +514,7 @@ "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Superior a ou igual a", "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Caracter sobre o texto", "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Caracter debaixo do texto", + "SSE.Controllers.DocumentHolder.txtHeadersTableHint": "Devolve as cabeceiras das columnas da táboa ou das columnas da táboa especificadas", "SSE.Controllers.DocumentHolder.txtHeight": "Altura", "SSE.Controllers.DocumentHolder.txtHideBottom": "Agochar bordo inferior", "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "Agochar límite inferior", @@ -584,7 +593,9 @@ "SSE.Controllers.DocumentHolder.txtSorting": "Ordenación", "SSE.Controllers.DocumentHolder.txtSortSelected": "Ordenar os obxectos seleccionados", "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Alongar corchetes", + "SSE.Controllers.DocumentHolder.txtThisRowHint": "Elixa só esta fila da columna especificada", "SSE.Controllers.DocumentHolder.txtTop": "Parte superior", + "SSE.Controllers.DocumentHolder.txtTotalsTableHint": "Devolve o total das filas da táboa ou das columnas da táboa especificadas", "SSE.Controllers.DocumentHolder.txtUnderbar": "Barra abaixo de texto", "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Desfacer a expansión automática da táboa", "SSE.Controllers.DocumentHolder.txtUseTextImport": "Usar o asistente para importar texto", @@ -639,6 +650,7 @@ "SSE.Controllers.Main.errorAutoFilterHiddenRange": "A operación non se pode realizar porque a área contén celas filtradas.
Por favor, mostra os elementos filtrados e inténtao de novo.", "SSE.Controllers.Main.errorBadImageUrl": "A URL da imaxe é incorrecta", "SSE.Controllers.Main.errorCannotUngroup": "Non se pode desagrupar. Para crear un esquema do docuemnto, seleccione filas ou columnas e agrupalas.", + "SSE.Controllers.Main.errorCannotUseCommandProtectedSheet": "Non pode usar esta orde nunha folla protexida. Para usar esta orde, desprotexa a folla.
É posible que che pidan un contrasinal.", "SSE.Controllers.Main.errorChangeArray": "Non podes cambiar parte dunha matriz.", "SSE.Controllers.Main.errorChangeFilteredRange": "Isto cambiará un intervalo filtrado na súa folla de traballo.
Para completar esta tarefa, elimine os filtros automáticos.", "SSE.Controllers.Main.errorChangeOnProtectedSheet": "A cela ou o gráfico que está intentando cambiar está nunha folla protexida.
Para facer un cambio, desprotexa a folla. Pódeselle solicitar que introduza un contrasinal.", @@ -754,6 +766,11 @@ "SSE.Controllers.Main.textConvertEquation": "Esta ecuación creouse cunha versión antiga do editor de ecuacións que xa non é compatible. Para editalo, converte a ecuación ao formato Office Math ML.
Converter agora?", "SSE.Controllers.Main.textCustomLoader": "Observe que, de acordo cos termos da licenza, non ten dereito a cambiar o cargador.
Entre en contacto co noso Departamento de Vendas para obter unha cotización.", "SSE.Controllers.Main.textDisconnect": "Perdeuse a conexión", + "SSE.Controllers.Main.textFillOtherRows": "Encher outras filas", + "SSE.Controllers.Main.textFormulaFilledAllRows": "A fórmula encheu {0} filas que teñen datos. Encher outras filas vacías pode requerir uns minutos.", + "SSE.Controllers.Main.textFormulaFilledAllRowsWithEmpty": "A fórmula encheu as primeiras{0}filas. Encher outras filas vacías pode requerir uns minutos.", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherHaveData": "A fórmula encheu só as primeiras {0} filas que teñen datos por razóns de aforro de memoria. Hai outras {1} filas con datos nesta folla. Podes volver enchelas manualmente.", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherIsEmpty": "A fórmula encheu só as primeiras {0} filas por razóns de aforro de memoria. As demais filas desta folla non teñen datos.", "SSE.Controllers.Main.textGuest": "Convidado(a)", "SSE.Controllers.Main.textHasMacros": "O ficheiro contén macros automáticas.
Quere executar macros?", "SSE.Controllers.Main.textLearnMore": "Para saber máis", @@ -764,6 +781,7 @@ "SSE.Controllers.Main.textNoLicenseTitle": "Alcanzouse o límite da licenza", "SSE.Controllers.Main.textPaidFeature": "Característica de pago", "SSE.Controllers.Main.textPleaseWait": "A operación pode tomar máis tiempo do esperado. Agarde...", + "SSE.Controllers.Main.textReconnect": "Restaurouse a conexión", "SSE.Controllers.Main.textRemember": "Recordar a miña elección para todos os ficheiros", "SSE.Controllers.Main.textRenameError": "O nome de usuario non pode estar vacío.", "SSE.Controllers.Main.textRenameLabel": "Insira un nome que se usará para a colaboración", @@ -1055,6 +1073,7 @@ "SSE.Controllers.Statusbar.errorLastSheet": "Un libro debe conter ao menos unha folla visible.", "SSE.Controllers.Statusbar.errorRemoveSheet": "Imposible borrar a folla de cálculo.", "SSE.Controllers.Statusbar.strSheet": "Folla", + "SSE.Controllers.Statusbar.textDisconnect": "Perdeuse a conexión
Intentando conectarse. Comproba a configuración de conexión.", "SSE.Controllers.Statusbar.textSheetViewTip": "Está en modo Vista de follas. Os filtros e a clasificación só son visibles para vostede e os que aínda están nesta vista.", "SSE.Controllers.Statusbar.textSheetViewTipFilters": "Está en modo Vista de follas. Os filtros só son visibles para vostede e os que aínda están nesta vista.", "SSE.Controllers.Statusbar.warnDeleteSheet": "As follas de traballo seleccionadas ppoden conter datos. Ten a certeza de que quere proceder?", @@ -1080,6 +1099,7 @@ "SSE.Controllers.Toolbar.textPivot": "Táboa pivote", "SSE.Controllers.Toolbar.textRadical": "Radicais", "SSE.Controllers.Toolbar.textRating": "Clasificacións", + "SSE.Controllers.Toolbar.textRecentlyUsed": "Usados recentemente", "SSE.Controllers.Toolbar.textScript": "Índices", "SSE.Controllers.Toolbar.textShapes": "Formas", "SSE.Controllers.Toolbar.textSymbols": "Símbolos", @@ -1421,7 +1441,9 @@ "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Separador decimal", "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Separador de miles", "SSE.Views.AdvancedSeparatorDialog.textLabel": "Configuracións usadas para recoñecer datos numéricos", + "SSE.Views.AdvancedSeparatorDialog.textQualifier": "Calificador do texto", "SSE.Views.AdvancedSeparatorDialog.textTitle": "Configuración avanzada", + "SSE.Views.AdvancedSeparatorDialog.txtNone": "(ningún)", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Filtro personalizado", "SSE.Views.AutoFilterDialog.textAddSelection": "Engadir selección actual para filtración", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Brancos}", @@ -1867,6 +1889,7 @@ "SSE.Views.DocumentHolder.textCrop": "Recortar", "SSE.Views.DocumentHolder.textCropFill": "Encher", "SSE.Views.DocumentHolder.textCropFit": "Adaptar", + "SSE.Views.DocumentHolder.textEditPoints": "Editar puntos", "SSE.Views.DocumentHolder.textEntriesList": "Seleccionar da lista despregable", "SSE.Views.DocumentHolder.textFlipH": "Virar horizontalmente", "SSE.Views.DocumentHolder.textFlipV": "Virar verticalmente", @@ -2236,6 +2259,7 @@ "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Editar regrla de formato", "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Nova regra de formato", "SSE.Views.FormatRulesManagerDlg.guestText": "Convidado(a)", + "SSE.Views.FormatRulesManagerDlg.lockText": "Bloqueado", "SSE.Views.FormatRulesManagerDlg.text1Above": "1 desv. est. por enriba do promedio", "SSE.Views.FormatRulesManagerDlg.text1Below": "1 desv. est. por debaixo o promedio", "SSE.Views.FormatRulesManagerDlg.text2Above": "2 desv. est. por enriba do promedio", @@ -2397,6 +2421,7 @@ "SSE.Views.ImageSettings.textCrop": "Recortar", "SSE.Views.ImageSettings.textCropFill": "Encher", "SSE.Views.ImageSettings.textCropFit": "Adaptar", + "SSE.Views.ImageSettings.textCropToShape": "Cortar para dar forma", "SSE.Views.ImageSettings.textEdit": "Editar", "SSE.Views.ImageSettings.textEditObject": "Editar obxecto", "SSE.Views.ImageSettings.textFlip": "Xirar", @@ -2411,6 +2436,7 @@ "SSE.Views.ImageSettings.textInsert": "Substituír imaxe", "SSE.Views.ImageSettings.textKeepRatio": "Proporcións constantes", "SSE.Views.ImageSettings.textOriginalSize": "Tamaño actual", + "SSE.Views.ImageSettings.textRecentlyUsed": "Usados recentemente", "SSE.Views.ImageSettings.textRotate90": "Xirar 90°", "SSE.Views.ImageSettings.textRotation": "Rotación", "SSE.Views.ImageSettings.textSize": "Tamaño", @@ -2488,6 +2514,7 @@ "SSE.Views.NamedRangePasteDlg.txtTitle": "Pegar nome", "SSE.Views.NameManagerDlg.closeButtonText": "Pechar", "SSE.Views.NameManagerDlg.guestText": "Convidado(a)", + "SSE.Views.NameManagerDlg.lockText": "Bloqueado", "SSE.Views.NameManagerDlg.textDataRange": "Rango de datos", "SSE.Views.NameManagerDlg.textDelete": "Eliminar", "SSE.Views.NameManagerDlg.textEdit": "Editar", @@ -2719,6 +2746,44 @@ "SSE.Views.PrintTitlesDialog.textSelectRange": "Seleccionar rango", "SSE.Views.PrintTitlesDialog.textTitle": "Imprimir títulos", "SSE.Views.PrintTitlesDialog.textTop": "Repetir filas na parte superior", + "SSE.Views.PrintWithPreview.txtActualSize": "Tamaño actual", + "SSE.Views.PrintWithPreview.txtAllSheets": "Todas as follas", + "SSE.Views.PrintWithPreview.txtApplyToAllSheets": "Aplicar a todas as follas", + "SSE.Views.PrintWithPreview.txtBottom": "Inferior", + "SSE.Views.PrintWithPreview.txtCurrentSheet": "Folla actual", + "SSE.Views.PrintWithPreview.txtCustom": "Personalizar", + "SSE.Views.PrintWithPreview.txtCustomOptions": "Opcións personalizadas", + "SSE.Views.PrintWithPreview.txtEmptyTable": "Non hai nada para imprimir porque a táboa está baleira", + "SSE.Views.PrintWithPreview.txtFitCols": "Axustar todas as columnas nunha páxina", + "SSE.Views.PrintWithPreview.txtFitPage": "Caber a folla nunha páxina", + "SSE.Views.PrintWithPreview.txtFitRows": "Caber todas as filas nunha páxina", + "SSE.Views.PrintWithPreview.txtGridlinesAndHeadings": "Liña de cuadrículas e cabeceiras", + "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Configuración da cabeceira/rodapé", + "SSE.Views.PrintWithPreview.txtIgnore": "Ignorar área de impresión", + "SSE.Views.PrintWithPreview.txtLandscape": "Orientación horizontal", + "SSE.Views.PrintWithPreview.txtLeft": "Á esquerda", + "SSE.Views.PrintWithPreview.txtMargins": "Marxes", + "SSE.Views.PrintWithPreview.txtOf": "de {0}", + "SSE.Views.PrintWithPreview.txtPage": "Páxina", + "SSE.Views.PrintWithPreview.txtPageNumInvalid": "Número da páxina inválido", + "SSE.Views.PrintWithPreview.txtPageOrientation": "Orientación da páxina", + "SSE.Views.PrintWithPreview.txtPageSize": "Tamaño da páxina", + "SSE.Views.PrintWithPreview.txtPortrait": "Vertical", + "SSE.Views.PrintWithPreview.txtPrint": "Imprimir", + "SSE.Views.PrintWithPreview.txtPrintGrid": "Imprimir cuadrícula", + "SSE.Views.PrintWithPreview.txtPrintHeadings": "Imprimir títulos de filas e columnas", + "SSE.Views.PrintWithPreview.txtPrintRange": "Área de impresión", + "SSE.Views.PrintWithPreview.txtPrintTitles": "Imprimir títulos", + "SSE.Views.PrintWithPreview.txtRepeat": "Repetir...", + "SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft": "Repetir columnas á esquerda", + "SSE.Views.PrintWithPreview.txtRepeatRowsAtTop": "Repetir filas na parte superior", + "SSE.Views.PrintWithPreview.txtRight": "Á dereita", + "SSE.Views.PrintWithPreview.txtSave": "Gardar", + "SSE.Views.PrintWithPreview.txtScaling": "Escala", + "SSE.Views.PrintWithPreview.txtSelection": "Selección", + "SSE.Views.PrintWithPreview.txtSettingsOfSheet": "Configuración da folla", + "SSE.Views.PrintWithPreview.txtSheet": "Folla: {0}", + "SSE.Views.PrintWithPreview.txtTop": "Parte superior", "SSE.Views.ProtectDialog.textExistName": "ERRO! Xa existe un intervalo con este título", "SSE.Views.ProtectDialog.textInvalidName": "O título do intervalo debe comezar cunha letra e só pode conter letras, números e espazos.", "SSE.Views.ProtectDialog.textInvalidRange": "ERRO! Intervalo de celdas inválido", @@ -2753,6 +2818,7 @@ "SSE.Views.ProtectDialog.txtWBDescription": "Para evitar que outros usuarios vexan follas de traballo ocultas, engadan, movan, eliminen ou oculten follas de traballo e cambien o nome de follas de traballo, pode protexer a estrutura do seu libro cun contrasinal.", "SSE.Views.ProtectDialog.txtWBTitle": "Protexer a estrutura do libro", "SSE.Views.ProtectRangesDlg.guestText": "Convidado(a)", + "SSE.Views.ProtectRangesDlg.lockText": "Bloqueado", "SSE.Views.ProtectRangesDlg.textDelete": "Eliminar", "SSE.Views.ProtectRangesDlg.textEdit": "Editar", "SSE.Views.ProtectRangesDlg.textEmpty": "Non hai ningún intervalo permitido para a edición.", @@ -2832,6 +2898,7 @@ "SSE.Views.ShapeSettings.textPatternFill": "Patrón", "SSE.Views.ShapeSettings.textPosition": "Posición", "SSE.Views.ShapeSettings.textRadial": "Radial", + "SSE.Views.ShapeSettings.textRecentlyUsed": "Usados recentemente", "SSE.Views.ShapeSettings.textRotate90": "Xirar 90°", "SSE.Views.ShapeSettings.textRotation": "Rotación", "SSE.Views.ShapeSettings.textSelectImage": "Seleccionar imaxe", @@ -3093,6 +3160,7 @@ "SSE.Views.Statusbar.tipAddTab": "Engadir folla de cálculo", "SSE.Views.Statusbar.tipFirst": "Desprazar ata a primeira folla", "SSE.Views.Statusbar.tipLast": "Desprazar ata a última folla", + "SSE.Views.Statusbar.tipListOfSheets": "Lista de follas", "SSE.Views.Statusbar.tipNext": "Desprazar a lista de folla á dereita", "SSE.Views.Statusbar.tipPrev": "Desprazar a lista de folla á esquerda", "SSE.Views.Statusbar.tipZoomFactor": "Ampliar", @@ -3281,6 +3349,8 @@ "SSE.Views.Toolbar.textPageMarginsCustom": "Marxes personalizadas", "SSE.Views.Toolbar.textPortrait": "Retrato ", "SSE.Views.Toolbar.textPrint": "Imprimir", + "SSE.Views.Toolbar.textPrintGridlines": "Imprimir cuadrícula", + "SSE.Views.Toolbar.textPrintHeadings": "Imprimir cabeceiras", "SSE.Views.Toolbar.textPrintOptions": "Opcións de impresión", "SSE.Views.Toolbar.textRight": "Dereita:", "SSE.Views.Toolbar.textRightBorders": "Bordos dereitos", @@ -3359,7 +3429,16 @@ "SSE.Views.Toolbar.tipInsertTable": "Inserir táboa", "SSE.Views.Toolbar.tipInsertText": "Inserir caixa do texto", "SSE.Views.Toolbar.tipInsertTextart": "Inserir arte do texto", + "SSE.Views.Toolbar.tipMarkersArrow": "Viñetas de flecha", + "SSE.Views.Toolbar.tipMarkersCheckmark": "Viñetas de marca de verificación", + "SSE.Views.Toolbar.tipMarkersDash": "Viñetas guión", + "SSE.Views.Toolbar.tipMarkersFRhombus": "Rombos recheos", + "SSE.Views.Toolbar.tipMarkersFRound": "Viñetas redondas recheas", + "SSE.Views.Toolbar.tipMarkersFSquare": "Viñetas cadradas recheas", + "SSE.Views.Toolbar.tipMarkersHRound": "Viñetas redondas ocas", + "SSE.Views.Toolbar.tipMarkersStar": "Viñetas de estrela", "SSE.Views.Toolbar.tipMerge": "Combinar e centrar", + "SSE.Views.Toolbar.tipNone": "Ningún", "SSE.Views.Toolbar.tipNumFormat": "Formato numérico", "SSE.Views.Toolbar.tipPageMargins": "Marxes da páxina", "SSE.Views.Toolbar.tipPageOrient": "Orientación da páxina", @@ -3488,6 +3567,7 @@ "SSE.Views.ValueFieldSettingsDialog.txtVarp": "Varp", "SSE.Views.ViewManagerDlg.closeButtonText": "Pechar", "SSE.Views.ViewManagerDlg.guestText": "Convidado(a)", + "SSE.Views.ViewManagerDlg.lockText": "Bloqueado", "SSE.Views.ViewManagerDlg.textDelete": "Eliminar", "SSE.Views.ViewManagerDlg.textDuplicate": "Duplicar", "SSE.Views.ViewManagerDlg.textEmpty": "Aínda non hai crearon vistas.", @@ -3503,7 +3583,9 @@ "SSE.Views.ViewManagerDlg.warnDeleteView": "Está tratando de eliminar a vista actualmente habilitada '%1'. Pechar esta vista e eliminala?", "SSE.Views.ViewTab.capBtnFreeze": "Inmobilizar paneis", "SSE.Views.ViewTab.capBtnSheetView": "Vista da folla", + "SSE.Views.ViewTab.textAlwaysShowToolbar": "Amosar sempre a barra de ferramentas", "SSE.Views.ViewTab.textClose": "Pechar", + "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "Combinar as barras de folla e de estado", "SSE.Views.ViewTab.textCreate": "Novo", "SSE.Views.ViewTab.textDefault": "Predeterminado", "SSE.Views.ViewTab.textFormula": "Barra das fórmulas", @@ -3511,7 +3593,9 @@ "SSE.Views.ViewTab.textFreezeRow": "Inmobilizar fila superior", "SSE.Views.ViewTab.textGridlines": "Liñas da cuadrícula", "SSE.Views.ViewTab.textHeadings": "Títulos", + "SSE.Views.ViewTab.textInterfaceTheme": "Tema da interface", "SSE.Views.ViewTab.textManager": "Xestionador da vista", + "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Amosar a sombra de paneis inmobilizados", "SSE.Views.ViewTab.textUnFreeze": "Mobilizar paneis", "SSE.Views.ViewTab.textZeros": "Amosar ceros", "SSE.Views.ViewTab.textZoom": "Ampliar", diff --git a/apps/spreadsheeteditor/main/locale/it.json b/apps/spreadsheeteditor/main/locale/it.json index 2945db1e7..28548310b 100644 --- a/apps/spreadsheeteditor/main/locale/it.json +++ b/apps/spreadsheeteditor/main/locale/it.json @@ -114,6 +114,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Nuovo", "Common.UI.ExtendedColorDialog.textRGBErr": "Il valore inserito non è corretto.
Inserisci un valore numerico tra 0 e 255.", "Common.UI.HSBColorPicker.textNoColor": "Nessun colore", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Nascondi password", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Mostra password", "Common.UI.SearchDialog.textHighlight": "Evidenzia risultati", "Common.UI.SearchDialog.textMatchCase": "Sensibile al maiuscolo/minuscolo", "Common.UI.SearchDialog.textReplaceDef": "Inserisci testo sostitutivo", @@ -178,12 +180,14 @@ "Common.Views.Comments.mniAuthorDesc": "Autore dalla Z alla A", "Common.Views.Comments.mniDateAsc": "Più vecchio", "Common.Views.Comments.mniDateDesc": "Più recente", + "Common.Views.Comments.mniFilterGroups": "Filtra per gruppo", "Common.Views.Comments.mniPositionAsc": "Dall'alto", "Common.Views.Comments.mniPositionDesc": "Dal basso", "Common.Views.Comments.textAdd": "Aggiungi", "Common.Views.Comments.textAddComment": "Aggiungi commento", "Common.Views.Comments.textAddCommentToDoc": "Aggiungi commento al documento", "Common.Views.Comments.textAddReply": "Aggiungi risposta", + "Common.Views.Comments.textAll": "Tutti", "Common.Views.Comments.textAnonym": "Ospite", "Common.Views.Comments.textCancel": "Annulla", "Common.Views.Comments.textClose": "Chiudi", @@ -197,6 +201,7 @@ "Common.Views.Comments.textResolve": "Risolvere", "Common.Views.Comments.textResolved": "Risolto", "Common.Views.Comments.textSort": "Ordinare commenti", + "Common.Views.Comments.textViewResolved": "Non sei autorizzato a riaprire il commento", "Common.Views.CopyWarningDialog.textDontShow": "Non mostrare più questo messaggio", "Common.Views.CopyWarningDialog.textMsg": "Le azioni di copia, taglia e incolla utilizzando i pulsanti della barra degli strumenti dell'editor e le azioni del menu di scelta rapida verranno eseguite solo all'interno di questa scheda dell'editor.

Per copiare o incollare in o da applicazioni esterne alla scheda dell'editor, utilizzare le seguenti combinazioni di tasti:", "Common.Views.CopyWarningDialog.textTitle": "Funzioni copia/taglia/incolla", @@ -364,6 +369,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Apri di nuovo", "Common.Views.ReviewPopover.textReply": "Rispondi", "Common.Views.ReviewPopover.textResolve": "Risolvere", + "Common.Views.ReviewPopover.textViewResolved": "Non sei autorizzato a riaprire il commento", "Common.Views.ReviewPopover.txtDeleteTip": "Eliminare", "Common.Views.ReviewPopover.txtEditTip": "Modificare", "Common.Views.SaveAsDlg.textLoading": "Caricamento", @@ -474,6 +480,7 @@ "SSE.Controllers.DocumentHolder.txtAddVer": "Aggiungi linea verticale", "SSE.Controllers.DocumentHolder.txtAlignToChar": "Allinea al carattere", "SSE.Controllers.DocumentHolder.txtAll": "(Tutti)", + "SSE.Controllers.DocumentHolder.txtAllTableHint": "Restituisce l'intero contenuto della tabella o delle colonne della tabella specificate, comprese le intestazioni di colonna, i dati e le righe totali", "SSE.Controllers.DocumentHolder.txtAnd": "e", "SSE.Controllers.DocumentHolder.txtBegins": "Inizia con", "SSE.Controllers.DocumentHolder.txtBelowAve": "sotto la media", @@ -483,6 +490,7 @@ "SSE.Controllers.DocumentHolder.txtColumn": "Colonna", "SSE.Controllers.DocumentHolder.txtColumnAlign": "Allineamento colonna", "SSE.Controllers.DocumentHolder.txtContains": "contiene", + "SSE.Controllers.DocumentHolder.txtDataTableHint": "Restituisce le celle di dati della tabella o le colonne della tabella specificate", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Diminuisci dimensione argomento", "SSE.Controllers.DocumentHolder.txtDeleteArg": "Elimina argomento", "SSE.Controllers.DocumentHolder.txtDeleteBreak": "Elimina interruzione manuale", @@ -506,6 +514,7 @@ "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Maggiore o uguale a", "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Char sul testo", "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Char sotto il testo", + "SSE.Controllers.DocumentHolder.txtHeadersTableHint": "Restituisce le intestazioni di colonna per la tabella o le colonne di tabella specificate", "SSE.Controllers.DocumentHolder.txtHeight": "Altezza", "SSE.Controllers.DocumentHolder.txtHideBottom": "Nascondi il bordo inferiore", "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "Nascondi il limite inferiore", @@ -584,7 +593,9 @@ "SSE.Controllers.DocumentHolder.txtSorting": "Ordinamento", "SSE.Controllers.DocumentHolder.txtSortSelected": "Ordina selezionati", "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Allunga Parentesi", + "SSE.Controllers.DocumentHolder.txtThisRowHint": "Seleziona solo questa riga della colonna specificata", "SSE.Controllers.DocumentHolder.txtTop": "In alto", + "SSE.Controllers.DocumentHolder.txtTotalsTableHint": "Restituisce le righe totali per la tabella o le colonne della tabella specificate", "SSE.Controllers.DocumentHolder.txtUnderbar": "Barra sotto al testo", "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Annulla l'espansione automatica della tabella", "SSE.Controllers.DocumentHolder.txtUseTextImport": "Usa la procedura guidata di importazione del testo", @@ -639,6 +650,7 @@ "SSE.Controllers.Main.errorAutoFilterHiddenRange": "L'operazione non può essere eseguita perché l'area contiene celle filtrate
Scopri gli elementi filtrati e riprova.", "SSE.Controllers.Main.errorBadImageUrl": "URL dell'immagine non corretto", "SSE.Controllers.Main.errorCannotUngroup": "Impossibile separare. Per iniziare una struttura, seleziona le righe o le colonne interessate e raggruppale.", + "SSE.Controllers.Main.errorCannotUseCommandProtectedSheet": "Non è possibile utilizzare questo comando su un foglio protetto. Per utilizzare questo comando, sproteggi il foglio.
Potrebbe essere richiesto di inserire una password.", "SSE.Controllers.Main.errorChangeArray": "Non è possibile modificare parte di una matrice", "SSE.Controllers.Main.errorChangeFilteredRange": "Questo cambierà un intervallo filtrato nel tuo foglio di lavoro.
Per completare questa attività, rimuovi i filtri automatici.", "SSE.Controllers.Main.errorChangeOnProtectedSheet": "La cella o il grafico che stai cercando di cambiare si trova sul foglio protetto.
Per apportare una modifica, togli la protezione del foglio. Potrebbe esserti richiesto di inserire una password.", @@ -769,6 +781,7 @@ "SSE.Controllers.Main.textNoLicenseTitle": "Limite di licenza raggiunto", "SSE.Controllers.Main.textPaidFeature": "Funzionalità a pagamento", "SSE.Controllers.Main.textPleaseWait": "L'operazione può richiedere più tempo. Per favore, attendi...", + "SSE.Controllers.Main.textReconnect": "Connessione ripristinata", "SSE.Controllers.Main.textRemember": "Ricorda la mia scelta per tutti i file", "SSE.Controllers.Main.textRenameError": "Il nome utente non può essere vuoto.", "SSE.Controllers.Main.textRenameLabel": "Immettere un nome da utilizzare per la collaborazione", @@ -1060,6 +1073,7 @@ "SSE.Controllers.Statusbar.errorLastSheet": "La cartella di lavoro deve contenere almeno un foglio di lavoro visibile.", "SSE.Controllers.Statusbar.errorRemoveSheet": "Impossibile eliminare il foglio di lavoro.", "SSE.Controllers.Statusbar.strSheet": "Foglio", + "SSE.Controllers.Statusbar.textDisconnect": "Connessione persa
Tentativo di connessione in corso. Si prega di controllare le impostazioni di connessione.", "SSE.Controllers.Statusbar.textSheetViewTip": "Sei in modalità di visualizzazione del foglio di calcolo. I filtri e l'ordinamento sono visibili solo a te e a coloro che sono ancora in questa visualizzazione.", "SSE.Controllers.Statusbar.textSheetViewTipFilters": "Sei in modalità di visualizzazione del foglio di calcolo. I filtri sono visibili solo a te e a coloro che sono ancora in questa visualizzazione.", "SSE.Controllers.Statusbar.warnDeleteSheet": "I fogli di lavoro selezionati potrebbero contenere dati. Sei sicuro di voler procedere?", @@ -1085,6 +1099,7 @@ "SSE.Controllers.Toolbar.textPivot": "Tabella pivot", "SSE.Controllers.Toolbar.textRadical": "Radicali", "SSE.Controllers.Toolbar.textRating": "Valutazioni", + "SSE.Controllers.Toolbar.textRecentlyUsed": "Usati di recente", "SSE.Controllers.Toolbar.textScript": "Script", "SSE.Controllers.Toolbar.textShapes": "Forme", "SSE.Controllers.Toolbar.textSymbols": "Simboli", @@ -1426,7 +1441,9 @@ "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Separatore decimale", "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Separatore delle migliaia", "SSE.Views.AdvancedSeparatorDialog.textLabel": "Impostazioni utilizzate per riconoscere i dati numerici", + "SSE.Views.AdvancedSeparatorDialog.textQualifier": "Qualificatore di testo", "SSE.Views.AdvancedSeparatorDialog.textTitle": "Impostazioni avanzate", + "SSE.Views.AdvancedSeparatorDialog.txtNone": "(nessuna)", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Filtro personalizzato", "SSE.Views.AutoFilterDialog.textAddSelection": "Aggiungi la selezione corrente al filtro", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Spazi vuoti}", @@ -1872,6 +1889,7 @@ "SSE.Views.DocumentHolder.textCrop": "Ritaglia", "SSE.Views.DocumentHolder.textCropFill": "Riempimento", "SSE.Views.DocumentHolder.textCropFit": "Adatta", + "SSE.Views.DocumentHolder.textEditPoints": "Modifica punti", "SSE.Views.DocumentHolder.textEntriesList": "Seleziona dal menù a cascata", "SSE.Views.DocumentHolder.textFlipH": "Capovolgi orizzontalmente", "SSE.Views.DocumentHolder.textFlipV": "Capovolgi verticalmente", @@ -2241,6 +2259,7 @@ "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Modificare la regola di formattazione", "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Nuova regola di formattazione", "SSE.Views.FormatRulesManagerDlg.guestText": "Ospite", + "SSE.Views.FormatRulesManagerDlg.lockText": "Bloccato", "SSE.Views.FormatRulesManagerDlg.text1Above": "1 deviazione standard sopra la media", "SSE.Views.FormatRulesManagerDlg.text1Below": "1 deviazione standard sotto la media", "SSE.Views.FormatRulesManagerDlg.text2Above": "2 deviazioni standard sopra la media", @@ -2402,6 +2421,7 @@ "SSE.Views.ImageSettings.textCrop": "Ritaglia", "SSE.Views.ImageSettings.textCropFill": "Riempimento", "SSE.Views.ImageSettings.textCropFit": "Adatta", + "SSE.Views.ImageSettings.textCropToShape": "Ritaglia forma", "SSE.Views.ImageSettings.textEdit": "Modifica", "SSE.Views.ImageSettings.textEditObject": "Modifica oggetto", "SSE.Views.ImageSettings.textFlip": "Capovolgi", @@ -2416,6 +2436,7 @@ "SSE.Views.ImageSettings.textInsert": "Sostituisci immagine", "SSE.Views.ImageSettings.textKeepRatio": "Proporzioni costanti", "SSE.Views.ImageSettings.textOriginalSize": "Dimensione reale", + "SSE.Views.ImageSettings.textRecentlyUsed": "Usati di recente", "SSE.Views.ImageSettings.textRotate90": "Ruota di 90°", "SSE.Views.ImageSettings.textRotation": "Rotazione", "SSE.Views.ImageSettings.textSize": "Dimensione", @@ -2493,6 +2514,7 @@ "SSE.Views.NamedRangePasteDlg.txtTitle": "Incolla nome", "SSE.Views.NameManagerDlg.closeButtonText": "Chiudi", "SSE.Views.NameManagerDlg.guestText": "Guest", + "SSE.Views.NameManagerDlg.lockText": "Bloccato", "SSE.Views.NameManagerDlg.textDataRange": "Intervallo dati", "SSE.Views.NameManagerDlg.textDelete": "Elimina", "SSE.Views.NameManagerDlg.textEdit": "Modifica", @@ -2724,6 +2746,44 @@ "SSE.Views.PrintTitlesDialog.textSelectRange": "Seleziona intervallo", "SSE.Views.PrintTitlesDialog.textTitle": "Stampa titoli", "SSE.Views.PrintTitlesDialog.textTop": "Ripeti righe in alto", + "SSE.Views.PrintWithPreview.txtActualSize": "Predefinita", + "SSE.Views.PrintWithPreview.txtAllSheets": "Tutti i fogli", + "SSE.Views.PrintWithPreview.txtApplyToAllSheets": "Applica a tutti i fogli", + "SSE.Views.PrintWithPreview.txtBottom": "In basso", + "SSE.Views.PrintWithPreview.txtCurrentSheet": "Foglio attuale", + "SSE.Views.PrintWithPreview.txtCustom": "Personalizzato", + "SSE.Views.PrintWithPreview.txtCustomOptions": "Opzioni personalizzate", + "SSE.Views.PrintWithPreview.txtEmptyTable": "Non c'è niente da stampare perché la tabella è vuota", + "SSE.Views.PrintWithPreview.txtFitCols": "Adatta tutte le colonne in una pagina", + "SSE.Views.PrintWithPreview.txtFitPage": "Adatta foglio in una pagina", + "SSE.Views.PrintWithPreview.txtFitRows": "Adatta tutte le righe in una pagina", + "SSE.Views.PrintWithPreview.txtGridlinesAndHeadings": "Linee griglia e intestazioni", + "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Impostazioni intestazione/piè di pagina", + "SSE.Views.PrintWithPreview.txtIgnore": "Ignora area di stampa", + "SSE.Views.PrintWithPreview.txtLandscape": "Panorama", + "SSE.Views.PrintWithPreview.txtLeft": "A sinistra", + "SSE.Views.PrintWithPreview.txtMargins": "Margini", + "SSE.Views.PrintWithPreview.txtOf": "di {0}", + "SSE.Views.PrintWithPreview.txtPage": "Pagina", + "SSE.Views.PrintWithPreview.txtPageNumInvalid": "Numero pagina non valido", + "SSE.Views.PrintWithPreview.txtPageOrientation": "Orientamento pagina", + "SSE.Views.PrintWithPreview.txtPageSize": "Dimensione pagina", + "SSE.Views.PrintWithPreview.txtPortrait": "Verticale", + "SSE.Views.PrintWithPreview.txtPrint": "Stampa", + "SSE.Views.PrintWithPreview.txtPrintGrid": "Stampa griglia", + "SSE.Views.PrintWithPreview.txtPrintHeadings": "Stampa intestazioni di riga e colonna", + "SSE.Views.PrintWithPreview.txtPrintRange": "Area di stampa", + "SSE.Views.PrintWithPreview.txtPrintTitles": "Stampa titoli", + "SSE.Views.PrintWithPreview.txtRepeat": "Ripeti...", + "SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft": "Ripeti colonne a sinistra", + "SSE.Views.PrintWithPreview.txtRepeatRowsAtTop": "Ripeti righe in alto", + "SSE.Views.PrintWithPreview.txtRight": "A destra", + "SSE.Views.PrintWithPreview.txtSave": "Salva", + "SSE.Views.PrintWithPreview.txtScaling": "Ridimensionamento", + "SSE.Views.PrintWithPreview.txtSelection": "Selezione", + "SSE.Views.PrintWithPreview.txtSettingsOfSheet": "Impostazioni foglio", + "SSE.Views.PrintWithPreview.txtSheet": "Foglio: {0}", + "SSE.Views.PrintWithPreview.txtTop": "In alto", "SSE.Views.ProtectDialog.textExistName": "ERRORE! Un intervallo con un tale titolo già esiste", "SSE.Views.ProtectDialog.textInvalidName": "Il titolo dell'intervallo deve iniziare con una lettera e può contenere solo lettere, numeri e spazi.", "SSE.Views.ProtectDialog.textInvalidRange": "ERRORE! Intervallo di celle non valido", @@ -2758,6 +2818,7 @@ "SSE.Views.ProtectDialog.txtWBDescription": "Per impedire ad altri utenti di visualizzare fogli di calcolo nascosti, aggiungere, spostare, eliminare o nascondere fogli di calcolo e rinominare fogli di calcolo, è possibile proteggere la struttura del libro di lavoro con una password.", "SSE.Views.ProtectDialog.txtWBTitle": "Proteggere la struttura del libro di lavoro", "SSE.Views.ProtectRangesDlg.guestText": "Ospite", + "SSE.Views.ProtectRangesDlg.lockText": "Bloccato", "SSE.Views.ProtectRangesDlg.textDelete": "Elimina", "SSE.Views.ProtectRangesDlg.textEdit": "Modifica", "SSE.Views.ProtectRangesDlg.textEmpty": "Nessun intervallo consentito per la modifica.", @@ -2837,6 +2898,7 @@ "SSE.Views.ShapeSettings.textPatternFill": "Modello", "SSE.Views.ShapeSettings.textPosition": "Posizione", "SSE.Views.ShapeSettings.textRadial": "Radiale", + "SSE.Views.ShapeSettings.textRecentlyUsed": "Usati di recente", "SSE.Views.ShapeSettings.textRotate90": "Ruota di 90°", "SSE.Views.ShapeSettings.textRotation": "Rotazione", "SSE.Views.ShapeSettings.textSelectImage": "Seleziona immagine", @@ -3098,6 +3160,7 @@ "SSE.Views.Statusbar.tipAddTab": "Aggiungi foglio di lavoro", "SSE.Views.Statusbar.tipFirst": "Scorri verso il primo foglio", "SSE.Views.Statusbar.tipLast": "Scorri verso l'ultimo foglio", + "SSE.Views.Statusbar.tipListOfSheets": "Elenco fogli", "SSE.Views.Statusbar.tipNext": "Scorri elenco fogli a destra", "SSE.Views.Statusbar.tipPrev": "Scorri elenco fogli a sinistra", "SSE.Views.Statusbar.tipZoomFactor": "Zoom", @@ -3286,6 +3349,8 @@ "SSE.Views.Toolbar.textPageMarginsCustom": "Margini personalizzati", "SSE.Views.Toolbar.textPortrait": "Verticale", "SSE.Views.Toolbar.textPrint": "Stampa", + "SSE.Views.Toolbar.textPrintGridlines": "Stampa griglia", + "SSE.Views.Toolbar.textPrintHeadings": "Stampa intestazioni", "SSE.Views.Toolbar.textPrintOptions": "Impostazioni stampa", "SSE.Views.Toolbar.textRight": "Destra:", "SSE.Views.Toolbar.textRightBorders": "Bordo destro", @@ -3364,7 +3429,16 @@ "SSE.Views.Toolbar.tipInsertTable": "Inserisci tabella", "SSE.Views.Toolbar.tipInsertText": "Inserisci casella di testo", "SSE.Views.Toolbar.tipInsertTextart": "Inserisci Text Art", + "SSE.Views.Toolbar.tipMarkersArrow": "Punti elenco a freccia", + "SSE.Views.Toolbar.tipMarkersCheckmark": "Punti elenco a segno di spunta", + "SSE.Views.Toolbar.tipMarkersDash": "Punti elenco a trattino", + "SSE.Views.Toolbar.tipMarkersFRhombus": "Punti elenco a rombo pieno", + "SSE.Views.Toolbar.tipMarkersFRound": "Punti elenco rotondi pieni", + "SSE.Views.Toolbar.tipMarkersFSquare": "Punti elenco quadrati pieni", + "SSE.Views.Toolbar.tipMarkersHRound": "Punti elenco rotondi vuoti", + "SSE.Views.Toolbar.tipMarkersStar": "Punti elenco a stella", "SSE.Views.Toolbar.tipMerge": "Unisci e centra", + "SSE.Views.Toolbar.tipNone": "Nessuno", "SSE.Views.Toolbar.tipNumFormat": "Formato numero", "SSE.Views.Toolbar.tipPageMargins": "Margini della pagina", "SSE.Views.Toolbar.tipPageOrient": "Orientamento pagina", @@ -3493,6 +3567,7 @@ "SSE.Views.ValueFieldSettingsDialog.txtVarp": "Varianza di popolazione", "SSE.Views.ViewManagerDlg.closeButtonText": "Chiudi", "SSE.Views.ViewManagerDlg.guestText": "Ospite", + "SSE.Views.ViewManagerDlg.lockText": "Bloccato", "SSE.Views.ViewManagerDlg.textDelete": "Elimina", "SSE.Views.ViewManagerDlg.textDuplicate": "Duplica", "SSE.Views.ViewManagerDlg.textEmpty": "Non è stata ancora creata alcuna vista.", @@ -3508,7 +3583,9 @@ "SSE.Views.ViewManagerDlg.warnDeleteView": "Stai tentando di eliminare la vista attualmente abilitata '%1'.
Desideri chiudere questa visualizzazione ed eliminarla?", "SSE.Views.ViewTab.capBtnFreeze": "Blocca riquadri", "SSE.Views.ViewTab.capBtnSheetView": "Visualizzazione foglio", + "SSE.Views.ViewTab.textAlwaysShowToolbar": "Mostra sempre barra degli strumenti ", "SSE.Views.ViewTab.textClose": "Chiudi", + "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "Combinare le barre di foglio e di stato", "SSE.Views.ViewTab.textCreate": "Nuovo", "SSE.Views.ViewTab.textDefault": "Predefinito", "SSE.Views.ViewTab.textFormula": "Barra della formula", @@ -3516,7 +3593,9 @@ "SSE.Views.ViewTab.textFreezeRow": "Blocca riga superiore", "SSE.Views.ViewTab.textGridlines": "Linee griglia", "SSE.Views.ViewTab.textHeadings": "Intestazioni", + "SSE.Views.ViewTab.textInterfaceTheme": "Tema dell'interfaccia", "SSE.Views.ViewTab.textManager": "Visualizza la gestione", + "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Mostra l'ombra dei riquadri bloccati", "SSE.Views.ViewTab.textUnFreeze": "Sblocca riquadri", "SSE.Views.ViewTab.textZeros": "Mostra zeri", "SSE.Views.ViewTab.textZoom": "Zoom", diff --git a/apps/spreadsheeteditor/main/locale/ja.json b/apps/spreadsheeteditor/main/locale/ja.json index 010f46a18..240a8cbb2 100644 --- a/apps/spreadsheeteditor/main/locale/ja.json +++ b/apps/spreadsheeteditor/main/locale/ja.json @@ -780,7 +780,7 @@ "SSE.Controllers.Main.textTryUndoRedo": "ファスト共同編集モードに元に戻す/やり直しの機能は無効になります。
他のユーザーの干渉なし編集するために「厳密なモード」をクリックして、厳密な共同編集モードに切り替えてください。保存した後にのみ、変更を送信してください。編集の詳細設定を使用して共同編集モードを切り替えることができます。", "SSE.Controllers.Main.textTryUndoRedoWarn": "高速で共同な編集モードでは、元に戻す/やり直し機能が無効になります。", "SSE.Controllers.Main.textYes": "はい", - "SSE.Controllers.Main.titleLicenseExp": "ライセンス期限を過ぎました", + "SSE.Controllers.Main.titleLicenseExp": "ライセンスの有効期限が切れています", "SSE.Controllers.Main.titleServerVersion": "エディターが更新された", "SSE.Controllers.Main.txtAccent": "アクセント", "SSE.Controllers.Main.txtAll": "すべて", diff --git a/apps/spreadsheeteditor/main/locale/pt.json b/apps/spreadsheeteditor/main/locale/pt.json index 169bfc42f..f25c2e248 100644 --- a/apps/spreadsheeteditor/main/locale/pt.json +++ b/apps/spreadsheeteditor/main/locale/pt.json @@ -2753,6 +2753,7 @@ "SSE.Views.PrintWithPreview.txtCurrentSheet": "Folha atual", "SSE.Views.PrintWithPreview.txtCustom": "Personalizar", "SSE.Views.PrintWithPreview.txtCustomOptions": "Opções personalizadas", + "SSE.Views.PrintWithPreview.txtEmptyTable": "Não há nada para imprimir porque a tabela está vazia", "SSE.Views.PrintWithPreview.txtFitCols": "Ajustar todas as colunas em uma página", "SSE.Views.PrintWithPreview.txtFitPage": "Ajustar folha em uma página", "SSE.Views.PrintWithPreview.txtFitRows": "Ajustar todas as linhas em uma página", diff --git a/apps/spreadsheeteditor/main/locale/ro.json b/apps/spreadsheeteditor/main/locale/ro.json index 17bc4d53e..067f040c9 100644 --- a/apps/spreadsheeteditor/main/locale/ro.json +++ b/apps/spreadsheeteditor/main/locale/ro.json @@ -2753,6 +2753,7 @@ "SSE.Views.PrintWithPreview.txtCurrentSheet": "Foaie curentă", "SSE.Views.PrintWithPreview.txtCustom": "Particularizat", "SSE.Views.PrintWithPreview.txtCustomOptions": "Opțiuni particularizate", + "SSE.Views.PrintWithPreview.txtEmptyTable": "Nu s-a găsit nimic de tipărit deoarece tabelul este necompletat", "SSE.Views.PrintWithPreview.txtFitCols": "Se potrivesc toate coloanele pe o singură pagină", "SSE.Views.PrintWithPreview.txtFitPage": "Se potrivește foaia pe o singură pagină", "SSE.Views.PrintWithPreview.txtFitRows": "Se potrivesc toate rândurile pe o pagină", diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json index 5165dd853..f2712e4e4 100644 --- a/apps/spreadsheeteditor/main/locale/ru.json +++ b/apps/spreadsheeteditor/main/locale/ru.json @@ -2753,6 +2753,7 @@ "SSE.Views.PrintWithPreview.txtCurrentSheet": "Текущий лист", "SSE.Views.PrintWithPreview.txtCustom": "Особый", "SSE.Views.PrintWithPreview.txtCustomOptions": "Настраиваемые параметры", + "SSE.Views.PrintWithPreview.txtEmptyTable": "Нечего печатать, так как таблица пуста", "SSE.Views.PrintWithPreview.txtFitCols": "Вписать все столбцы на одну страницу", "SSE.Views.PrintWithPreview.txtFitPage": "Вписать лист на одну страницу", "SSE.Views.PrintWithPreview.txtFitRows": "Вписать все строки на одну страницу", diff --git a/apps/spreadsheeteditor/main/locale/zh.json b/apps/spreadsheeteditor/main/locale/zh.json index 8f3a685bd..b37610800 100644 --- a/apps/spreadsheeteditor/main/locale/zh.json +++ b/apps/spreadsheeteditor/main/locale/zh.json @@ -2753,6 +2753,7 @@ "SSE.Views.PrintWithPreview.txtCurrentSheet": "当前工作表", "SSE.Views.PrintWithPreview.txtCustom": "自定义", "SSE.Views.PrintWithPreview.txtCustomOptions": "自定义选项", + "SSE.Views.PrintWithPreview.txtEmptyTable": "没有什么可打印的,表为空", "SSE.Views.PrintWithPreview.txtFitCols": "将所有列适合一页", "SSE.Views.PrintWithPreview.txtFitPage": "在一页上安装工作表", "SSE.Views.PrintWithPreview.txtFitRows": "适合一页上的所有行", From d65ea6005fbe4ec11b18285dcbf4fa48b84dbdd8 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 11 Feb 2022 18:44:57 +0300 Subject: [PATCH 139/217] [Mobile] Update translation --- apps/documenteditor/mobile/locale/cs.json | 8 +- apps/documenteditor/mobile/locale/el.json | 70 ++-- apps/documenteditor/mobile/locale/gl.json | 64 +-- apps/documenteditor/mobile/locale/ja.json | 4 +- apps/presentationeditor/mobile/locale/el.json | 30 +- apps/presentationeditor/mobile/locale/gl.json | 30 +- apps/presentationeditor/mobile/locale/ja.json | 4 +- apps/presentationeditor/mobile/locale/sl.json | 373 +++++++++--------- apps/spreadsheeteditor/mobile/locale/az.json | 1 + apps/spreadsheeteditor/mobile/locale/be.json | 1 + apps/spreadsheeteditor/mobile/locale/bg.json | 3 +- apps/spreadsheeteditor/mobile/locale/ca.json | 5 +- apps/spreadsheeteditor/mobile/locale/cs.json | 1 + apps/spreadsheeteditor/mobile/locale/da.json | 1 + apps/spreadsheeteditor/mobile/locale/de.json | 3 +- apps/spreadsheeteditor/mobile/locale/el.json | 41 +- apps/spreadsheeteditor/mobile/locale/en.json | 2 +- apps/spreadsheeteditor/mobile/locale/es.json | 5 +- apps/spreadsheeteditor/mobile/locale/fr.json | 5 +- apps/spreadsheeteditor/mobile/locale/gl.json | 41 +- apps/spreadsheeteditor/mobile/locale/hu.json | 3 +- apps/spreadsheeteditor/mobile/locale/it.json | 5 +- apps/spreadsheeteditor/mobile/locale/ja.json | 3 +- apps/spreadsheeteditor/mobile/locale/ko.json | 1 + 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 | 1 + apps/spreadsheeteditor/mobile/locale/pl.json | 3 +- apps/spreadsheeteditor/mobile/locale/pt.json | 5 +- apps/spreadsheeteditor/mobile/locale/ro.json | 5 +- apps/spreadsheeteditor/mobile/locale/ru.json | 5 +- 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 | 5 +- 38 files changed, 390 insertions(+), 362 deletions(-) diff --git a/apps/documenteditor/mobile/locale/cs.json b/apps/documenteditor/mobile/locale/cs.json index fed9cf108..0599355a0 100644 --- a/apps/documenteditor/mobile/locale/cs.json +++ b/apps/documenteditor/mobile/locale/cs.json @@ -208,6 +208,8 @@ "textAlign": "Zarovnání", "textAllCaps": "Všechno velkými", "textAllowOverlap": "Povolit překrývání", + "textApril": "duben", + "textAugust": "srpen", "textAuto": "Automaticky", "textAutomatic": "Automaticky", "textBack": "Zpět", @@ -226,6 +228,7 @@ "textColor": "Barva", "textContinueFromPreviousSection": "Pokračovat od předchozí sekce", "textCustomColor": "Vlastní barva", + "textDecember": "prosinec", "textDifferentFirstPage": "Odlišná první stránka", "textDifferentOddAndEvenPages": "Rozdílné liché a sudé stránky", "textDisplay": "Zobrazit", @@ -233,6 +236,7 @@ "textDoubleStrikethrough": "Dvojité přeškrtnutí", "textEditLink": "Upravit odkaz", "textEffects": "Efekty", + "textEmpty": "prázdné", "textEmptyImgUrl": "Musíte upřesnit URL obrázku.", "textFill": "Výplň", "textFirstColumn": "První sloupec", @@ -309,11 +313,7 @@ "textTotalRow": "Součtový řádek", "textType": "Typ", "textWrap": "Obtékání", - "textApril": "April", - "textAugust": "August", - "textDecember": "December", "textDesign": "Design", - "textEmpty": "Empty", "textFebruary": "February", "textFr": "Fr", "textJanuary": "January", diff --git a/apps/documenteditor/mobile/locale/el.json b/apps/documenteditor/mobile/locale/el.json index 0b9ec76f3..ff44ef5b3 100644 --- a/apps/documenteditor/mobile/locale/el.json +++ b/apps/documenteditor/mobile/locale/el.json @@ -41,6 +41,7 @@ "textLocation": "Τοποθεσία", "textNextPage": "Επόμενη Σελίδα", "textOddPage": "Μονή Σελίδα", + "textOk": "Εντάξει", "textOther": "Άλλο", "textPageBreak": "Αλλαγή Σελίδας", "textPageNumber": "Αριθμός Σελίδας", @@ -56,8 +57,7 @@ "textStartAt": "Έναρξη Από", "textTable": "Πίνακας", "textTableSize": "Μέγεθος Πίνακα", - "txtNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση URL με τη μορφή «http://www.example.com»", - "textOk": "Ok" + "txtNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση URL με τη μορφή «http://www.example.com»" }, "Common": { "Collaboration": { @@ -158,13 +158,13 @@ "textUsers": "Χρήστες", "textWidow": "Έλεγχος μεμονωμένων γραμμών κειμένου" }, + "HighlightColorPalette": { + "textNoFill": "Χωρίς Γέμισμα" + }, "ThemeColorPalette": { "textCustomColors": "Προσαρμοσμένα Χρώματα", "textStandartColors": "Τυπικά Χρώματα", "textThemeColors": "Χρώματα Θέματος" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -208,6 +208,8 @@ "textAlign": "Στοίχιση", "textAllCaps": "Όλα κεφαλαία", "textAllowOverlap": "Να επιτρέπεται η επικάλυψη", + "textApril": "Απρίλιος", + "textAugust": "Αύγουστος", "textAuto": "Αυτόματα", "textAutomatic": "Αυτόματο", "textBack": "Πίσω", @@ -215,7 +217,7 @@ "textBandedColumn": "Στήλη εναλλαγής σκίασης", "textBandedRow": "Γραμμή εναλλαγής σκίασης", "textBefore": "Πριν", - "textBehind": "Πίσω", + "textBehind": "Πίσω από το Κείμενο", "textBorder": "Περίγραμμα", "textBringToForeground": "Μεταφορά στο προσκήνιο", "textBullets": "Κουκκίδες", @@ -226,6 +228,8 @@ "textColor": "Χρώμα", "textContinueFromPreviousSection": "Συνέχεια από το προηγούμενο τμήμα", "textCustomColor": "Προσαρμοσμένο Χρώμα", + "textDecember": "Δεκέμβριος", + "textDesign": "Σχεδίαση", "textDifferentFirstPage": "Διαφορετική πρώτη σελίδα", "textDifferentOddAndEvenPages": "Διαφορετικές μονές και ζυγές σελίδες", "textDisplay": "Προβολή", @@ -233,7 +237,9 @@ "textDoubleStrikethrough": "Διπλή Διαγραφή", "textEditLink": "Επεξεργασία Συνδέσμου", "textEffects": "Εφέ", + "textEmpty": "Κενό", "textEmptyImgUrl": "Πρέπει να καθορίσετε τη διεύθυνση URL της εικόνας.", + "textFebruary": "Φεβρουάριος", "textFill": "Γέμισμα", "textFirstColumn": "Πρώτη Στήλη", "textFirstLine": "Πρώτη Γραμμή", @@ -242,14 +248,18 @@ "textFontColors": "Χρώματα Γραμματοσειράς", "textFonts": "Γραμματοσειρές", "textFooter": "Υποσέλιδο", + "textFr": "Παρ", "textHeader": "Κεφαλίδα", "textHeaderRow": "Σειρά Κεφαλίδας", "textHighlightColor": "Χρώμα Επισήμανσης", "textHyperlink": "Υπερσύνδεσμος", "textImage": "Εικόνα", "textImageURL": "URL εικόνας", - "textInFront": "Μπροστά", - "textInline": "Εντός κειμένου", + "textInFront": "Μπροστά από το Κείμενο", + "textInline": "Εντός Κειμένου", + "textJanuary": "Ιανουάριος", + "textJuly": "Ιούλιος", + "textJune": "Ιούνιος", "textKeepLinesTogether": "Διατήρηση Γραμμών Μαζί", "textKeepWithNext": "Διατήρηση με Επόμενο", "textLastColumn": "Τελευταία Στήλη", @@ -258,13 +268,19 @@ "textLink": "Σύνδεσμος", "textLinkSettings": "Ρυθμίσεις Συνδέσμου", "textLinkToPrevious": "Σύνδεσμος προς το Προηγούμενο", + "textMarch": "Μάρτιος", + "textMay": "Μάιος", + "textMo": "Δευ", "textMoveBackward": "Μετακίνηση προς τα Πίσω", "textMoveForward": "Μετακίνηση προς τα Εμπρός", "textMoveWithText": "Μετακίνηση με Κείμενο", "textNone": "Κανένα", "textNoStyles": "Δεν υπάρχουν τεχνοτροπίες για αυτόν τον τύπο γραφημάτων.", "textNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση URL με τη μορφή «http://www.example.com»", + "textNovember": "Νοέμβριος", "textNumbers": "Αριθμοί", + "textOctober": "Οκτώβριος", + "textOk": "Εντάξει", "textOpacity": "Αδιαφάνεια", "textOptions": "Επιλογές", "textOrphanControl": "Έλεγχος Ορφανών", @@ -285,9 +301,11 @@ "textReplace": "Αντικατάσταση", "textReplaceImage": "Αντικατάσταση Εικόνας", "textResizeToFitContent": "Αλλαγή Μεγέθους για Προσαρμογή Περιεχομένου", + "textSa": "Σαβ", "textScreenTip": "Συμβουλή Οθόνης", "textSelectObjectToEdit": "Επιλογή αντικειμένου για επεξεργασία", "textSendToBackground": "Μεταφορά στο Παρασκήνιο", + "textSeptember": "Σεπτέμβριος", "textSettings": "Ρυθμίσεις", "textShape": "Σχήμα", "textSize": "Μέγεθος", @@ -298,39 +316,21 @@ "textStrikethrough": "Διακριτική διαγραφή", "textStyle": "Τεχνοτροπία", "textStyleOptions": "Επιλογές Tεχνοτροπίας", + "textSu": "Κυρ", "textSubscript": "Δείκτης", "textSuperscript": "Εκθέτης", "textTable": "Πίνακας", "textTableOptions": "Επιλογές Πίνακα", "textText": "Κείμενο", + "textTh": "Πεμ", "textThrough": "Διά μέσου", "textTight": "Σφιχτό", "textTopAndBottom": "Πάνω και Κάτω", "textTotalRow": "Συνολική Γραμμή", + "textTu": "Τρι", "textType": "Τύπος", - "textWrap": "Αναδίπλωση", - "textApril": "April", - "textAugust": "August", - "textDecember": "December", - "textDesign": "Design", - "textEmpty": "Empty", - "textFebruary": "February", - "textFr": "Fr", - "textJanuary": "January", - "textJuly": "July", - "textJune": "June", - "textMarch": "March", - "textMay": "May", - "textMo": "Mo", - "textNovember": "November", - "textOctober": "October", - "textOk": "Ok", - "textSa": "Sa", - "textSeptember": "September", - "textSu": "Su", - "textTh": "Th", - "textTu": "Tu", - "textWe": "We" + "textWe": "Τετ", + "textWrap": "Αναδίπλωση" }, "Error": { "convertationTimeoutText": "Υπέρβαση χρονικού ορίου μετατροπής.", @@ -487,8 +487,11 @@ "textHasMacros": "Το αρχείο περιέχει αυτόματες μακροεντολές.
Θέλετε να εκτελέσετε μακροεντολές;", "textNo": "Όχι", "textNoLicenseTitle": "Το όριο της άδειας προσεγγίσθηκε", + "textNoTextFound": "Δεν βρέθηκε το κείμενο", "textPaidFeature": "Δυνατότητα επί πληρωμή", "textRemember": "Απομνημόνευση επιλογής", + "textReplaceSkipped": "Η αντικατάσταση έγινε. {0} εμφανίσεις προσπεράστηκαν.", + "textReplaceSuccess": "Η αναζήτηση ολοκληρώθηκε. Εμφανίσεις που αντικαταστάθηκαν: {0}", "textYes": "Ναι", "titleLicenseExp": "Η άδεια έληξε", "titleServerVersion": "Ο συντάκτης ενημερώθηκε", @@ -500,10 +503,7 @@ "warnLicenseUsersExceeded": "Έχετε φτάσει το όριο χρήστη για συντάκτες %1.
Επικοινωνήστε με τον διαχειριστή σας για περισσότερες πληροφορίες.", "warnNoLicense": "Φτάσατε το όριο ταυτόχρονων συνδέσεων σε %1 συντάκτες. Το έγγραφο θα ανοίξει μόνο για ανάγνωση. Επικοινωνήστε με την ομάδα πωλήσεων %1 για τους όρους αναβάθμισης.", "warnNoLicenseUsers": "Έχετε φτάσει το όριο χρήστη για συντάκτες %1.
Επικοινωνήστε με την ομάδα πωλήσεων %1 για προσωπικούς όρους αναβάθμισης.", - "warnProcessRightsChange": "Δεν έχετε δικαίωμα επεξεργασίας αυτού του αρχείου.", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "Δεν έχετε δικαίωμα επεξεργασίας αυτού του αρχείου." }, "Settings": { "advDRMOptions": "Προστατευμένο Αρχείο", diff --git a/apps/documenteditor/mobile/locale/gl.json b/apps/documenteditor/mobile/locale/gl.json index 474a93455..158b8067e 100644 --- a/apps/documenteditor/mobile/locale/gl.json +++ b/apps/documenteditor/mobile/locale/gl.json @@ -41,6 +41,7 @@ "textLocation": "Ubicación", "textNextPage": "Seguinte páxina", "textOddPage": "Páxina impar", + "textOk": "Aceptar", "textOther": "Outro", "textPageBreak": "Salto de página", "textPageNumber": "Número de páxina", @@ -56,8 +57,7 @@ "textStartAt": "Comezar en", "textTable": "Táboa", "textTableSize": "Tamaño da táboa", - "txtNotUrl": "Este campo debe ser unha URL no formato \"http://www.example.com\"", - "textOk": "Ok" + "txtNotUrl": "Este campo debe ser unha URL no formato \"http://www.example.com\"" }, "Common": { "Collaboration": { @@ -158,13 +158,13 @@ "textUsers": "Usuarios", "textWidow": "Control de liñas orfas" }, + "HighlightColorPalette": { + "textNoFill": "Sen encher" + }, "ThemeColorPalette": { "textCustomColors": "Cores personalizadas", "textStandartColors": "Cores estándar", "textThemeColors": "Cores do tema" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -208,6 +208,8 @@ "textAlign": "Aliñar", "textAllCaps": "Todo en maiúsculas", "textAllowOverlap": "Permitir sobreposición", + "textApril": "Abril", + "textAugust": "Agosto", "textAuto": "Automático", "textAutomatic": "Automático", "textBack": "Volver", @@ -226,6 +228,8 @@ "textColor": "Cor", "textContinueFromPreviousSection": "Continuar desde a sección anterior", "textCustomColor": "Cor personalizada", + "textDecember": "Decembro", + "textDesign": "Deseño", "textDifferentFirstPage": "Primeira páxina diferente", "textDifferentOddAndEvenPages": "Páxinas pares e impares diferentes", "textDisplay": "Amosar", @@ -233,7 +237,9 @@ "textDoubleStrikethrough": "Dobre riscado", "textEditLink": "Editar ligazón", "textEffects": "Efectos", + "textEmpty": "Baleiro", "textEmptyImgUrl": "Hai que especificar URL de imaxe.", + "textFebruary": "Febreiro", "textFill": "Encher", "textFirstColumn": "Primeira columna", "textFirstLine": "Primeira liña", @@ -242,6 +248,7 @@ "textFontColors": "Cores da fonte", "textFonts": "Fontes", "textFooter": "Rodapé", + "textFr": "Ver.", "textHeader": "Cabeceira", "textHeaderRow": "Fila da cabeceira", "textHighlightColor": "Cor do realce", @@ -250,6 +257,9 @@ "textImageURL": "URL da imaxe", "textInFront": "Á fronte", "textInline": "Aliñado", + "textJanuary": "Xaneiro", + "textJuly": "Xullo", + "textJune": "Xuño", "textKeepLinesTogether": "Manter as liñas xuntas", "textKeepWithNext": "Manter co seguinte", "textLastColumn": "Última columna", @@ -258,13 +268,19 @@ "textLink": "Ligazón", "textLinkSettings": "Configuración da ligazón", "textLinkToPrevious": "Vincular a Anterior", + "textMarch": "Marzo", + "textMay": "Maio", + "textMo": "Lu.", "textMoveBackward": "Mover a atrás", "textMoveForward": "Mover á fronte", "textMoveWithText": "Mover con texto", "textNone": "Ningún", "textNoStyles": "Non hai estilos para este tipo de gráfico.", "textNotUrl": "Este campo debe ser unha URL no formato \"http://www.example.com\"", + "textNovember": "Novembro", "textNumbers": "Números", + "textOctober": "Outubro", + "textOk": "Aceptar", "textOpacity": "Opacidade", "textOptions": "Opcións", "textOrphanControl": "Control de liñas orfás", @@ -285,9 +301,11 @@ "textReplace": "Substituír", "textReplaceImage": "Substituír imaxe", "textResizeToFitContent": "Cambiar tamaño para axustar o contido", + "textSa": "Sáb", "textScreenTip": "Consello da pantalla", "textSelectObjectToEdit": "Seleccionar o obxecto para editar", "textSendToBackground": "Enviar ao fondo", + "textSeptember": "Setembro", "textSettings": "Configuración", "textShape": "Forma", "textSize": "Tamaño", @@ -298,39 +316,21 @@ "textStrikethrough": "Riscado", "textStyle": "Estilo", "textStyleOptions": "Opcións de estilo", + "textSu": "Dom", "textSubscript": "Subscrito", "textSuperscript": "Sobrescrito", "textTable": "Táboa", "textTableOptions": "Opcións de táboa", "textText": "Texto", + "textTh": "Xo", "textThrough": "A través", "textTight": "Estreito", "textTopAndBottom": "Parte superior e inferior", "textTotalRow": "Fila total", + "textTu": "Ma", "textType": "Tipo", - "textWrap": "Axuste", - "textApril": "April", - "textAugust": "August", - "textDecember": "December", - "textDesign": "Design", - "textEmpty": "Empty", - "textFebruary": "February", - "textFr": "Fr", - "textJanuary": "January", - "textJuly": "July", - "textJune": "June", - "textMarch": "March", - "textMay": "May", - "textMo": "Mo", - "textNovember": "November", - "textOctober": "October", - "textOk": "Ok", - "textSa": "Sa", - "textSeptember": "September", - "textSu": "Su", - "textTh": "Th", - "textTu": "Tu", - "textWe": "We" + "textWe": "Me", + "textWrap": "Axuste" }, "Error": { "convertationTimeoutText": "Excedeu o tempo límite de conversión.", @@ -487,8 +487,11 @@ "textHasMacros": "O ficheiro contén macros automáticas.
Quere executar macros?", "textNo": "Non", "textNoLicenseTitle": "Alcanzouse o límite da licenza", + "textNoTextFound": "Texto non atopado", "textPaidFeature": "Característica de pago", "textRemember": "Lembrar a miña escolla", + "textReplaceSkipped": "A substitución foi realizada. {0} ocorrencias foron ignoradas.", + "textReplaceSuccess": "A busca foi realizada. Ocorrencias substituídas: {0}", "textYes": "Si", "titleLicenseExp": "A licenza expirou", "titleServerVersion": "Editor actualizado", @@ -500,10 +503,7 @@ "warnLicenseUsersExceeded": "Alcanzou o límite de usuarios para os editores de %1. Por favor, contacte co se uadministrador para recibir máis información.", "warnNoLicense": "Alcanzou o límite de conexións simultáneas con %1 editores. Este documento abrirase para as úa visualización. Póñase en contacto co equipo de vendas de %1 para coñecer as condicións de actualización persoal.", "warnNoLicenseUsers": "Alcanzou o límite de usuarios para os editores de %1.
Contacte co equipo de vendas de %1 para coñecer os termos de actualización persoal.", - "warnProcessRightsChange": "Non ten permiso para editar este ficheiro.", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "Non ten permiso para editar este ficheiro." }, "Settings": { "advDRMOptions": "Ficheiro protexido", diff --git a/apps/documenteditor/mobile/locale/ja.json b/apps/documenteditor/mobile/locale/ja.json index 8201c7ccf..dfd8610bb 100644 --- a/apps/documenteditor/mobile/locale/ja.json +++ b/apps/documenteditor/mobile/locale/ja.json @@ -490,12 +490,12 @@ "textPaidFeature": "有料機能", "textRemember": "選択を覚える", "textYes": "はい", - "titleLicenseExp": "ライセンスの有効期間が満期した", + "titleLicenseExp": "ライセンスの有効期限が切れています", "titleServerVersion": "編集者が更新された", "titleUpdateVersion": "バージョンが変更されました", "warnLicenseExceeded": "%1エディター 時接続数の制限に達しました。この文書が見るだけのために開かれる。詳細についてはアドミニストレータを連絡してください。", "warnLicenseExp": "ライセンスの有効期限が切れています。ライセンスを更新してページをリロードしてください。", - "warnLicenseLimitedNoAccess": "ライセンスが満期しました。編集の汎関数にアクセスがありません。アドミンに連絡してください。", + "warnLicenseLimitedNoAccess": "ライセンスの有効期限が切れています。ドキュメント編集機能にアクセスできません。管理者にご連絡ください。", "warnLicenseLimitedRenewed": "ライセンスが書き換えすべきです。文書を変更ためのアクセスが制限付きされました。フル アクセスを再接続ためにアドミニストレータを連絡してください。", "warnLicenseUsersExceeded": "%1エディターのユーザー制限に達しました。 詳細についてはアドミニストレータを連絡してください。", "warnNoLicense": "%1エディター 時接続数の制限に達しました。この文書が見るだけのために開かれる。個人的なアップグレード条件については、%1営業チームを連絡してください。", diff --git a/apps/presentationeditor/mobile/locale/el.json b/apps/presentationeditor/mobile/locale/el.json index cef1d53ec..9cb5c9620 100644 --- a/apps/presentationeditor/mobile/locale/el.json +++ b/apps/presentationeditor/mobile/locale/el.json @@ -33,13 +33,13 @@ "textTryUndoRedo": "Οι λειτουργίες Αναίρεση/Επανάληψη είναι απενεργοποιημένες στην κατάσταση Γρήγορης συν-επεξεργασίας.", "textUsers": "Χρήστες" }, + "HighlightColorPalette": { + "textNoFill": "Χωρίς Γέμισμα" + }, "ThemeColorPalette": { "textCustomColors": "Προσαρμοσμένα Χρώματα", "textStandartColors": "Τυπικά Χρώματα", "textThemeColors": "Χρώματα Θέματος" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -107,9 +107,12 @@ "textHasMacros": "Το αρχείο περιέχει αυτόματες μακροεντολές.
Θέλετε να εκτελέσετε μακροεντολές;", "textNo": "Όχι", "textNoLicenseTitle": "Το όριο της άδειας προσεγγίσθηκε", + "textNoTextFound": "Δεν βρέθηκε το κείμενο", "textOpenFile": "Εισάγετε συνθηματικό για να ανοίξετε το αρχείο", "textPaidFeature": "Δυνατότητα επί πληρωμή", "textRemember": "Απομνημόνευση επιλογής", + "textReplaceSkipped": "Η αντικατάσταση έγινε. {0} εμφανίσεις προσπεράστηκαν.", + "textReplaceSuccess": "Η αναζήτηση ολοκληρώθηκε. Εμφανίσεις που αντικαταστάθηκαν: {0}", "textYes": "Ναι", "titleLicenseExp": "Η άδεια έληξε", "titleServerVersion": "Ο συντάκτης ενημερώθηκε", @@ -123,10 +126,7 @@ "warnLicenseUsersExceeded": "Έχετε φτάσει το όριο χρήστη για συντάκτες %1.
Επικοινωνήστε με τον διαχειριστή σας για περισσότερες πληροφορίες.", "warnNoLicense": "Φτάσατε το όριο ταυτόχρονων συνδέσεων σε %1 συντάκτες. Το έγγραφο θα ανοίξει μόνο για ανάγνωση. Επικοινωνήστε με την ομάδα πωλήσεων %1 για τους όρους αναβάθμισης.", "warnNoLicenseUsers": "Έχετε φτάσει το όριο χρήστη για συντάκτες %1.
Επικοινωνήστε με την ομάδα πωλήσεων %1 για προσωπικούς όρους αναβάθμισης.", - "warnProcessRightsChange": "Δεν έχετε δικαίωμα επεξεργασίας του αρχείου.", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "Δεν έχετε δικαίωμα επεξεργασίας του αρχείου." } }, "Error": { @@ -228,6 +228,7 @@ "textLinkTo": "Σύνδεσμος σε", "textLinkType": "Τύπος Συνδέσμου", "textNextSlide": "Επόμενη Διαφάνεια", + "textOk": "Εντάξει", "textOther": "Άλλο", "textPictureFromLibrary": "Εικόνα από Βιβλιοθήκη", "textPictureFromURL": "Εικόνα από σύνδεσμο", @@ -240,8 +241,7 @@ "textSlideNumber": "Αριθμός Διαφάνειας", "textTable": "Πίνακας", "textTableSize": "Μέγεθος Πίνακα", - "txtNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση URL με τη μορφή «http://www.example.com»", - "textOk": "Ok" + "txtNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση URL με τη μορφή «http://www.example.com»" }, "Edit": { "notcriticalErrorTitle": "Προειδοποίηση", @@ -261,6 +261,7 @@ "textAllCaps": "Όλα Κεφαλαία", "textApplyAll": "Εφαρμογή σε Όλες τις Διαφάνειες", "textAuto": "Αυτόματα", + "textAutomatic": "Αυτόματο", "textBack": "Πίσω", "textBandedColumn": "Στήλη Εναλλαγής Σκίασης", "textBandedRow": "Γραμμή Εναλλαγής Σκίασης", @@ -285,6 +286,7 @@ "textDefault": "Επιλεγμένο κείμενο", "textDelay": "Καθυστέρηση", "textDeleteSlide": "Διαγραφή Διαφάνειας", + "textDesign": "Σχεδίαση", "textDisplay": "Προβολή", "textDistanceFromText": "Απόσταση Από το Κείμενο", "textDistributeHorizontally": "Οριζόντια Κατανομή", @@ -336,6 +338,7 @@ "textNoTextFound": "Δεν βρέθηκε το κείμενο", "textNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση URL με τη μορφή «http://www.example.com»", "textNumbers": "Αριθμοί", + "textOk": "Εντάξει", "textOpacity": "Αδιαφάνεια", "textOptions": "Επιλογές", "textPictureFromLibrary": "Εικόνα από Βιβλιοθήκη", @@ -390,10 +393,7 @@ "textZoom": "Εστίαση", "textZoomIn": "Μεγέθυνση", "textZoomOut": "Σμίκρυνση", - "textZoomRotate": "Εστίαση και Περιστροφή", - "textAutomatic": "Automatic", - "textDesign": "Design", - "textOk": "Ok" + "textZoomRotate": "Εστίαση και Περιστροφή" }, "Settings": { "mniSlideStandard": "Τυπικό (4:3)", @@ -410,6 +410,7 @@ "textColorSchemes": "Χρωματικοί Συνδυασμοί", "textComment": "Σχόλιο", "textCreated": "Δημιουργήθηκε", + "textDarkTheme": "Σκούρο Θέμα", "textDisableAll": "Απενεργοποίηση Όλων", "textDisableAllMacrosWithNotification": "Απενεργοποίηση όλων των μακροεντολών με ειδοποίηση", "textDisableAllMacrosWithoutNotification": "Απενεργοποίηση όλων των μακροεντολών χωρίς ειδοποίηση", @@ -472,8 +473,7 @@ "txtScheme6": "Συνάθροιση", "txtScheme7": "Μετοχή", "txtScheme8": "Ροή", - "txtScheme9": "Χυτήριο", - "textDarkTheme": "Dark Theme" + "txtScheme9": "Χυτήριο" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/gl.json b/apps/presentationeditor/mobile/locale/gl.json index d1c20a8f9..742ba734d 100644 --- a/apps/presentationeditor/mobile/locale/gl.json +++ b/apps/presentationeditor/mobile/locale/gl.json @@ -33,13 +33,13 @@ "textTryUndoRedo": "As funcións Desfacer/Refacer están activadas para o modo de coedición rápido.", "textUsers": "Usuarios" }, + "HighlightColorPalette": { + "textNoFill": "Sen encher" + }, "ThemeColorPalette": { "textCustomColors": "Cores personalizadas", "textStandartColors": "Cores estándar", "textThemeColors": "Cores do tema" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -107,9 +107,12 @@ "textHasMacros": "O ficheiro contén macros automáticas.
Quere executar macros?", "textNo": "Non", "textNoLicenseTitle": "Alcanzouse o límite da licenza", + "textNoTextFound": "Texto non atopado", "textOpenFile": "Insira o contrasinal para abrir o ficheiro", "textPaidFeature": "Característica de pago", "textRemember": "Lembrar a miña escolla", + "textReplaceSkipped": "A substitución foi realizada. {0} ocorrencias foron ignoradas.", + "textReplaceSuccess": "A busca foi realizada. Ocorrencias substituídas: {0}", "textYes": "Si", "titleLicenseExp": "A licenza expirou", "titleServerVersion": "Editor actualizado", @@ -123,10 +126,7 @@ "warnLicenseUsersExceeded": "Alcanzou o límite de usuarios para os editores de %1. Por favor, contacte co se uadministrador para recibir máis información.", "warnNoLicense": "Alcanzou o límite de conexións simultáneas con %1 editores. Este documento abrirase para as úa visualización. Póñase en contacto co equipo de vendas de %1 para coñecer as condicións de actualización persoal.", "warnNoLicenseUsers": "Alcanzou o límite de usuarios para os editores de %1.
Contacte co equipo de vendas de %1 para coñecer os termos de actualización persoal.", - "warnProcessRightsChange": "Non ten permiso para editar o ficheiro.", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "Non ten permiso para editar o ficheiro." } }, "Error": { @@ -228,6 +228,7 @@ "textLinkTo": "Vincular a", "textLinkType": "Tipo de ligazón", "textNextSlide": "Seguinte diapositiva", + "textOk": "Aceptar", "textOther": "Outro", "textPictureFromLibrary": "Imaxe da biblioteca", "textPictureFromURL": "Imaxe da URL", @@ -240,8 +241,7 @@ "textSlideNumber": "Número da diapositiva", "textTable": "Táboa", "textTableSize": "Tamaño da táboa", - "txtNotUrl": "Este campo debe ser unha URL no formato \"http://www.example.com\"", - "textOk": "Ok" + "txtNotUrl": "Este campo debe ser unha URL no formato \"http://www.example.com\"" }, "Edit": { "notcriticalErrorTitle": "Aviso", @@ -261,6 +261,7 @@ "textAllCaps": "Todo en maiúsculas", "textApplyAll": "Aplicar a todas as diapositivas", "textAuto": "Automático", + "textAutomatic": "Automático", "textBack": "Volver", "textBandedColumn": "Columna con bandas", "textBandedRow": "Fila con bandas", @@ -285,6 +286,7 @@ "textDefault": "Texto seleccionado", "textDelay": "Atraso", "textDeleteSlide": "Eliminar diapositiva", + "textDesign": "Deseño", "textDisplay": "Amosar", "textDistanceFromText": "Distancia desde o texto", "textDistributeHorizontally": "Distribuír horizontalmente", @@ -336,6 +338,7 @@ "textNoTextFound": "Texto non atopado", "textNotUrl": "Este campo debe ser unha URL no formato \"http://www.example.com\"", "textNumbers": "Números", + "textOk": "Aceptar", "textOpacity": "Opacidade", "textOptions": "Opcións", "textPictureFromLibrary": "Imaxe da biblioteca", @@ -390,10 +393,7 @@ "textZoom": "Ampliar", "textZoomIn": "Ampliar", "textZoomOut": "Alonxar", - "textZoomRotate": "Ampliar e rotación", - "textAutomatic": "Automatic", - "textDesign": "Design", - "textOk": "Ok" + "textZoomRotate": "Ampliar e rotación" }, "Settings": { "mniSlideStandard": "Estándar (4:3)", @@ -410,6 +410,7 @@ "textColorSchemes": "Esquemas de cor", "textComment": "Comentario", "textCreated": "Creado", + "textDarkTheme": "Tema escuro", "textDisableAll": "Desactivar todo", "textDisableAllMacrosWithNotification": "Desactivar todas as macros con notificación", "textDisableAllMacrosWithoutNotification": "Desactivar todas as macros sen notificación", @@ -472,8 +473,7 @@ "txtScheme6": "Concorrencia", "txtScheme7": "Equidade", "txtScheme8": "Fluxo", - "txtScheme9": "Fundición", - "textDarkTheme": "Dark Theme" + "txtScheme9": "Fundición" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/ja.json b/apps/presentationeditor/mobile/locale/ja.json index e603b3f35..debb8d4e1 100644 --- a/apps/presentationeditor/mobile/locale/ja.json +++ b/apps/presentationeditor/mobile/locale/ja.json @@ -111,14 +111,14 @@ "textPaidFeature": "有料機能", "textRemember": "選択を覚える", "textYes": "はい", - "titleLicenseExp": "ライセンスの有効期間が満期した", + "titleLicenseExp": "ライセンスの有効期限が切れています", "titleServerVersion": "編集者が更新された", "titleUpdateVersion": "バージョンが変更されました", "txtIncorrectPwd": "パスワードが間違い", "txtProtected": "パスワードを入力してファイルを開くと、現在のパスワードがリセットされます", "warnLicenseExceeded": "%1エディター 時接続数の制限に達しました。この文書が見るだけのために開かれる。詳細についてはアドミニストレータを連絡してください。", "warnLicenseExp": "ライセンスの有効期限が切れています。ライセンスを更新してページをリロードしてください。", - "warnLicenseLimitedNoAccess": "ライセンスが満期しました。編集の汎関数にアクセスがありません。アドミンに連絡してください。", + "warnLicenseLimitedNoAccess": "ライセンスの有効期限が切れています。ドキュメント編集機能にアクセスできません。管理者にご連絡ください。", "warnLicenseLimitedRenewed": "ライセンスが書き換えすべきです。文書を変更ためのアクセスが制限付きされました。フル アクセスを再接続ためにアドミニストレータを連絡してください。", "warnLicenseUsersExceeded": "%1エディターのユーザー制限に達しました。 詳細についてはアドミニストレータを連絡してください。", "warnNoLicense": "%1エディター 時接続数の制限に達しました。この文書が見るだけのために開かれる。個人的なアップグレード条件については、%1営業チームを連絡してください。", diff --git a/apps/presentationeditor/mobile/locale/sl.json b/apps/presentationeditor/mobile/locale/sl.json index 7c3baf3e3..584c364da 100644 --- a/apps/presentationeditor/mobile/locale/sl.json +++ b/apps/presentationeditor/mobile/locale/sl.json @@ -1,8 +1,8 @@ { "About": { - "textAbout": "About", - "textAddress": "Address", - "textBack": "Back", + "textAbout": "O programu", + "textAddress": "Naslov", + "textBack": "Nazaj", "textEmail": "Email", "textPoweredBy": "Powered By", "textTel": "Tel", @@ -10,13 +10,13 @@ }, "Common": { "Collaboration": { + "textAddComment": "Dodaj komentar", + "textAddReply": "Dodaj odgovor", + "textBack": "Nazaj", + "textCancel": "Zapri", + "textComments": "Komentarji", "notcriticalErrorTitle": "Warning", - "textAddComment": "Add Comment", - "textAddReply": "Add Reply", - "textBack": "Back", - "textCancel": "Cancel", "textCollaboration": "Collaboration", - "textComments": "Comments", "textDeleteComment": "Delete Comment", "textDeleteReply": "Delete Reply", "textDone": "Done", @@ -27,26 +27,27 @@ "textMessageDeleteComment": "Do you really want to delete this comment?", "textMessageDeleteReply": "Do you really want to delete this reply?", "textNoComments": "This document doesn't contain comments", + "textOk": "Ok", "textReopen": "Reopen", "textResolve": "Resolve", "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users", - "textOk": "Ok" + "textUsers": "Users" + }, + "HighlightColorPalette": { + "textNoFill": "No Fill" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", "textStandartColors": "Standard Colors", "textThemeColors": "Theme Colors" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { + "menuAddComment": "Dodaj komentar", + "menuAddLink": "Dodaj povezavo", + "menuCancel": "Zapri", + "textColumns": "Stolpci", "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add Comment", - "menuAddLink": "Add Link", - "menuCancel": "Cancel", "menuDelete": "Delete", "menuDeleteTable": "Delete Table", "menuEdit": "Edit", @@ -55,164 +56,19 @@ "menuOpenLink": "Open Link", "menuSplit": "Split", "menuViewComment": "View Comment", - "textColumns": "Columns", "textCopyCutPasteActions": "Copy, Cut and Paste Actions", "textDoNotShowAgain": "Don't show again", "textRows": "Rows" }, - "Controller": { - "Main": { - "advDRMOptions": "Protected File", - "advDRMPassword": "Password", - "closeButtonText": "Close File", - "criticalErrorTitle": "Error", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "errorProcessSaveResult": "Saving failed.", - "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "notcriticalErrorTitle": "Warning", - "SDK": { - "Chart": "Chart", - "Click to add first slide": "Click to add first slide", - "Click to add notes": "Click to add notes", - "ClipArt": "Clip Art", - "Date and time": "Date and time", - "Diagram": "Diagram", - "Diagram Title": "Chart Title", - "Footer": "Footer", - "Header": "Header", - "Image": "Image", - "Loading": "Loading", - "Media": "Media", - "None": "None", - "Picture": "Picture", - "Series": "Series", - "Slide number": "Slide number", - "Slide subtitle": "Slide subtitle", - "Slide text": "Slide text", - "Slide title": "Slide title", - "Table": "Table", - "X Axis": "X Axis XAS", - "Y Axis": "Y Axis", - "Your text here": "Your text here" - }, - "textAnonymous": "Anonymous", - "textBuyNow": "Visit website", - "textClose": "Close", - "textContactUs": "Contact sales", - "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", - "textGuest": "Guest", - "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", - "textNo": "No", - "textNoLicenseTitle": "License limit reached", - "textOpenFile": "Enter a password to open the file", - "textPaidFeature": "Paid feature", - "textRemember": "Remember my choice", - "textYes": "Yes", - "titleLicenseExp": "License expired", - "titleServerVersion": "Editor updated", - "titleUpdateVersion": "Version changed", - "txtIncorrectPwd": "Password is incorrect", - "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", - "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", - "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", - "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", - "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
Please contact your administrator to get full access", - "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", - "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", - "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", - "warnProcessRightsChange": "You don't have permission to edit the file.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" - } - }, - "Error": { - "convertationTimeoutText": "Conversion timeout exceeded.", - "criticalErrorExtText": "Press 'OK' to go back to the document list.", - "criticalErrorTitle": "Error", - "downloadErrorText": "Download failed.", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please contact your admin.", - "errorBadImageUrl": "Image url is incorrect", - "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
When you click the 'OK' button, you will be prompted to download the document.", - "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", - "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", - "errorDataRange": "Incorrect data range.", - "errorDefaultMessage": "Error code: %1", - "errorEditingDownloadas": "An error occurred during the work with the document.
Use the 'Download' option to save the file backup copy locally.", - "errorFilePassProtect": "The file is password protected and could not be opened.", - "errorFileSizeExceed": "The file size exceeds your server limitation.
Please, contact your admin.", - "errorKeyEncrypt": "Unknown key descriptor", - "errorKeyExpire": "Key descriptor expired", - "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", - "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", - "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", - "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
opening price, max price, min price, closing price.", - "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.", - "errorUserDrop": "The file cannot be accessed right now.", - "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download it until the connection is restored and the page is reloaded.", - "notcriticalErrorTitle": "Warning", - "openErrorText": "An error has occurred while opening the file", - "saveErrorText": "An error has occurred while saving the file", - "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", - "splitDividerErrorText": "The number of rows must be a divisor of %1", - "splitMaxColsErrorText": "The number of columns must be less than %1", - "splitMaxRowsErrorText": "The number of rows must be less than %1", - "unknownErrorText": "Unknown error.", - "uploadImageExtMessage": "Unknown image format.", - "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." - }, - "LongActions": { - "applyChangesTextText": "Loading data...", - "applyChangesTitleText": "Loading Data", - "downloadTextText": "Downloading document...", - "downloadTitleText": "Downloading Document", - "loadFontsTextText": "Loading data...", - "loadFontsTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadFontTitleText": "Loading Data", - "loadImagesTextText": "Loading images...", - "loadImagesTitleText": "Loading Images", - "loadImageTextText": "Loading image...", - "loadImageTitleText": "Loading Image", - "loadingDocumentTextText": "Loading document...", - "loadingDocumentTitleText": "Loading document", - "loadThemeTextText": "Loading theme...", - "loadThemeTitleText": "Loading Theme", - "openTextText": "Opening document...", - "openTitleText": "Opening Document", - "printTextText": "Printing document...", - "printTitleText": "Printing Document", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "saveTextText": "Saving document...", - "saveTitleText": "Saving Document", - "textLoadingDocument": "Loading document", - "txtEditingMode": "Set editing mode...", - "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait..." - }, - "Toolbar": { - "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this page", - "stayButtonText": "Stay on this Page" - }, "View": { "Add": { + "textAddLink": "Dodaj povezavo", + "textAddress": "Naslov", + "textBack": "Nazaj", + "textCancel": "Zapri", + "textColumns": "Stolpci", + "textComment": "Komentar", "notcriticalErrorTitle": "Warning", - "textAddLink": "Add Link", - "textAddress": "Address", - "textBack": "Back", - "textCancel": "Cancel", - "textColumns": "Columns", - "textComment": "Comment", "textDefault": "Selected text", "textDisplay": "Display", "textEmptyImgUrl": "You need to specify the image URL.", @@ -228,6 +84,7 @@ "textLinkTo": "Link to", "textLinkType": "Link Type", "textNextSlide": "Next Slide", + "textOk": "Ok", "textOther": "Other", "textPictureFromLibrary": "Picture from Library", "textPictureFromURL": "Picture from URL", @@ -240,17 +97,17 @@ "textSlideNumber": "Slide Number", "textTable": "Table", "textTableSize": "Table Size", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textOk": "Ok" + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" }, "Edit": { + "textActualSize": "Dejanska velikost", + "textAddCustomColor": "Dodaj barvo po meri", + "textAdditional": "Dodatno", + "textAdditionalFormatting": "Dodatno oblikovanje", + "textAfter": "po", + "textBack": "Nazaj", "notcriticalErrorTitle": "Warning", - "textActualSize": "Actual Size", - "textAddCustomColor": "Add Custom Color", - "textAdditional": "Additional", - "textAdditionalFormatting": "Additional Formatting", "textAddress": "Address", - "textAfter": "After", "textAlign": "Align", "textAlignBottom": "Align Bottom", "textAlignCenter": "Align Center", @@ -261,7 +118,7 @@ "textAllCaps": "All Caps", "textApplyAll": "Apply to All Slides", "textAuto": "Auto", - "textBack": "Back", + "textAutomatic": "Automatic", "textBandedColumn": "Banded Column", "textBandedRow": "Banded Row", "textBefore": "Before", @@ -285,6 +142,7 @@ "textDefault": "Selected text", "textDelay": "Delay", "textDeleteSlide": "Delete Slide", + "textDesign": "Design", "textDisplay": "Display", "textDistanceFromText": "Distance From Text", "textDistributeHorizontally": "Distribute Horizontally", @@ -336,6 +194,7 @@ "textNoTextFound": "Text not found", "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "textNumbers": "Numbers", + "textOk": "Ok", "textOpacity": "Opacity", "textOptions": "Options", "textPictureFromLibrary": "Picture from Library", @@ -379,7 +238,7 @@ "textTopLeft": "Top-Left", "textTopRight": "Top-Right", "textTotalRow": "Total Row", - "textTransition": "Transition", + "textTransitions": "Transitions", "textType": "Type", "textUnCover": "UnCover", "textVerticalIn": "Vertical In", @@ -389,27 +248,24 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate", - "textTransitions": "Transitions", - "textDesign": "Design", - "textAutomatic": "Automatic", - "textOk": "Ok" + "textZoomRotate": "Zoom and Rotate" }, "Settings": { + "textAbout": "O programu", + "textApplication": "Aplikacija", + "textBack": "Nazaj", + "textComment": "Komentar", "mniSlideStandard": "Standard (4:3)", "mniSlideWide": "Widescreen (16:9)", - "textAbout": "About", "textAddress": "address:", - "textApplication": "Application", "textApplicationSettings": "Application Settings", "textAuthor": "Author", - "textBack": "Back", "textCaseSensitive": "Case Sensitive", "textCentimeter": "Centimeter", "textCollaboration": "Collaboration", "textColorSchemes": "Color Schemes", - "textComment": "Comment", "textCreated": "Created", + "textDarkTheme": "Dark Theme", "textDisableAll": "Disable All", "textDisableAllMacrosWithNotification": "Disable all macros with notification", "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", @@ -472,8 +328,151 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry", - "textDarkTheme": "Dark Theme" + "txtScheme9": "Foundry" } + }, + "Controller": { + "Main": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "Chart": "Chart", + "Click to add first slide": "Click to add first slide", + "Click to add notes": "Click to add notes", + "ClipArt": "Clip Art", + "Date and time": "Date and time", + "Diagram": "Diagram", + "Diagram Title": "Chart Title", + "Footer": "Footer", + "Header": "Header", + "Image": "Image", + "Loading": "Loading", + "Media": "Media", + "None": "None", + "Picture": "Picture", + "Series": "Series", + "Slide number": "Slide number", + "Slide subtitle": "Slide subtitle", + "Slide text": "Slide text", + "Slide title": "Slide title", + "Table": "Table", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", + "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", + "warnLicenseLimitedRenewed": "License needs to be renewed. You have limited access to document editing functionality.
Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please contact your admin.", + "errorBadImageUrl": "Image URL is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
When you click the 'OK' button, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "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.", + "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 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", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "loadThemeTextText": "Loading theme...", + "loadThemeTitleText": "Loading Theme", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this page", + "stayButtonText": "Stay on this Page" } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/az.json b/apps/spreadsheeteditor/mobile/locale/az.json index 26220ebe9..8edd8ccae 100644 --- a/apps/spreadsheeteditor/mobile/locale/az.json +++ b/apps/spreadsheeteditor/mobile/locale/az.json @@ -296,6 +296,7 @@ "textSheetName": "Vərəq Adı", "textUnhide": "Gizlətməni ləğv et", "textWarnDeleteSheet": "İş vərəqində məlumat ola bilər. Əməliyyat davam etdirilsin?", + "textHidden": "Hidden", "textMove": "Move", "textMoveBack": "Move back", "textMoveForward": "Move forward" diff --git a/apps/spreadsheeteditor/mobile/locale/be.json b/apps/spreadsheeteditor/mobile/locale/be.json index 30a5eb8f1..cc401449d 100644 --- a/apps/spreadsheeteditor/mobile/locale/be.json +++ b/apps/spreadsheeteditor/mobile/locale/be.json @@ -246,6 +246,7 @@ "textErrNotEmpty": "Sheet name must not be empty", "textErrorLastSheet": "The workbook must have at least one visible worksheet.", "textErrorRemoveSheet": "Can't delete the worksheet.", + "textHidden": "Hidden", "textHide": "Hide", "textMore": "More", "textMove": "Move", diff --git a/apps/spreadsheeteditor/mobile/locale/bg.json b/apps/spreadsheeteditor/mobile/locale/bg.json index d4ec07be8..4621ba6ad 100644 --- a/apps/spreadsheeteditor/mobile/locale/bg.json +++ b/apps/spreadsheeteditor/mobile/locale/bg.json @@ -298,7 +298,8 @@ "textOk": "Ok", "textMove": "Move", "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "textMoveForward": "Move forward", + "textHidden": "Hidden" }, "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 e5fcc0459..ff22a2004 100644 --- a/apps/spreadsheeteditor/mobile/locale/ca.json +++ b/apps/spreadsheeteditor/mobile/locale/ca.json @@ -68,6 +68,7 @@ "Main": { "criticalErrorTitle": "Error", "errorAccessDeny": "No tens permís per realitzar aquesta acció.
Contacta amb el teu administrador.", + "errorOpensource": "Mitjançant la versió gratuïta de la comunitat, només podeu obrir documents en mode lectura. Per accedir als editors de web per a mòbils, cal una llicència comercial.", "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": "S'ha canviat la versió del fitxer. La pàgina es tornarà a carregar.", @@ -159,8 +160,7 @@ "warnLicenseUsersExceeded": "Has arribat al límit d'usuari per a %1 editors. Contacta amb el teu administrador per a més informació.", "warnNoLicense": "Has arribat al límit de connexions simultànies a %1 editors. Aquest document només s'obrirà en mode lectura. Contacta amb l'equip de vendes %1 per a les condicions d'una actualització personal.", "warnNoLicenseUsers": "Has arribat al límit d'usuaris per a %1 editors. Contacta amb l'equip de vendes de %1 per obtenir les condicions de millora personals dels teus serveis.", - "warnProcessRightsChange": "No tens permís per editar el fitxer.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." + "warnProcessRightsChange": "No tens permís per editar el fitxer." } }, "Error": { @@ -287,6 +287,7 @@ "textErrNotEmpty": "El nom del full no pot estar en blanc", "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.", + "textHidden": "Amagat", "textHide": "Amaga", "textMore": "Més", "textMove": "Desplaça", diff --git a/apps/spreadsheeteditor/mobile/locale/cs.json b/apps/spreadsheeteditor/mobile/locale/cs.json index f47b269df..6a50552cd 100644 --- a/apps/spreadsheeteditor/mobile/locale/cs.json +++ b/apps/spreadsheeteditor/mobile/locale/cs.json @@ -296,6 +296,7 @@ "textSheetName": "Název listu", "textUnhide": "Odkrýt", "textWarnDeleteSheet": "List může obsahovat data. Pokračovat v operaci? ", + "textHidden": "Hidden", "textMove": "Move", "textMoveBack": "Move back", "textMoveForward": "Move forward" diff --git a/apps/spreadsheeteditor/mobile/locale/da.json b/apps/spreadsheeteditor/mobile/locale/da.json index 517c50e5f..d65416a67 100644 --- a/apps/spreadsheeteditor/mobile/locale/da.json +++ b/apps/spreadsheeteditor/mobile/locale/da.json @@ -290,6 +290,7 @@ "textErrNameExists": "Worksheet with this name already exists.", "textErrNotEmpty": "Sheet name must not be empty", "textErrorLastSheet": "The workbook must have at least one visible worksheet.", + "textHidden": "Hidden", "textMove": "Move", "textMoveBack": "Move back", "textMoveForward": "Move forward", diff --git a/apps/spreadsheeteditor/mobile/locale/de.json b/apps/spreadsheeteditor/mobile/locale/de.json index aa0391620..a159b2f01 100644 --- a/apps/spreadsheeteditor/mobile/locale/de.json +++ b/apps/spreadsheeteditor/mobile/locale/de.json @@ -298,7 +298,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?", + "textHidden": "Hidden" }, "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 3d4f3fcb5..d235ae34d 100644 --- a/apps/spreadsheeteditor/mobile/locale/el.json +++ b/apps/spreadsheeteditor/mobile/locale/el.json @@ -68,6 +68,7 @@ "Main": { "criticalErrorTitle": "Σφάλμα", "errorAccessDeny": "Προσπαθείτε να εκτελέσετε μια ενέργεια για την οποία δεν έχετε δικαιώματα.
Παρακαλούμε, επικοινωνήστε με τον διαχειριστή σας.", + "errorOpensource": "Με τη δωρεάν έκδοση Κοινότητας μπορείτε να ανοίξετε έγγραφα μόνο για ανάγνωση. Για να αποκτήσετε πρόσβαση στους συντάκτες κινητού μέσω δικτύου, απαιτείται εμπορική άδεια.", "errorProcessSaveResult": "Αποτυχία αποθήκευσης.", "errorServerVersion": "Αναβαθμίστηκε η έκδοση του συντάκτη. Η σελίδα θα φορτωθεί ξανά για να εφαρμοστούν οι αλλαγές.", "errorUpdateVersion": "Η έκδοση του αρχείου έχει αλλάξει. Η σελίδα θα φορτωθεί ξανά.", @@ -142,9 +143,14 @@ "textGuest": "Επισκέπτης", "textHasMacros": "Το αρχείο περιέχει αυτόματες μακροεντολές.
Θέλετε να εκτελέσετε μακροεντολές;", "textNo": "Όχι", + "textNoChoices": "Δεν υπάρχουν επιλογές για το γέμισμα του κελιού.
Μόνο τιμές κειμένου από την στήλη μπορούν να επιλεγούν για αντικατάσταση.", "textNoLicenseTitle": "Το όριο της άδειας προσεγγίσθηκε", + "textNoTextFound": "Δεν βρέθηκε το κείμενο", + "textOk": "Εντάξει", "textPaidFeature": "Δυνατότητα επί πληρωμή", "textRemember": "Απομνημόνευση επιλογής", + "textReplaceSkipped": "Η αντικατάσταση έγινε. {0} εμφανίσεις προσπεράστηκαν.", + "textReplaceSuccess": "Η αναζήτηση ολοκληρώθηκε. Εμφανίσεις που αντικαταστάθηκαν: {0}", "textYes": "Ναι", "titleServerVersion": "Ο συντάκτης ενημερώθηκε", "titleUpdateVersion": "Η έκδοση άλλαξε", @@ -154,13 +160,7 @@ "warnLicenseUsersExceeded": "Έχετε φτάσει το όριο χρήστη για συντάκτες %1.
Επικοινωνήστε με τον διαχειριστή σας για περισσότερες πληροφορίες.", "warnNoLicense": "Φτάσατε το όριο ταυτόχρονων συνδέσεων σε %1 συντάκτες. Το έγγραφο θα ανοίξει μόνο για ανάγνωση. Επικοινωνήστε με την ομάδα πωλήσεων %1 για τους όρους αναβάθμισης.", "warnNoLicenseUsers": "Έχετε φτάσει το όριο χρήστη για συντάκτες %1.
Επικοινωνήστε με την ομάδα πωλήσεων %1 για προσωπικούς όρους αναβάθμισης.", - "warnProcessRightsChange": "Δεν έχετε δικαίωμα επεξεργασίας του αρχείου.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", - "textNoTextFound": "Text not found", - "textOk": "Ok", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "Δεν έχετε δικαίωμα επεξεργασίας του αρχείου." } }, "Error": { @@ -175,6 +175,7 @@ "errorAutoFilterDataRange": "Η λειτουργία δεν πραγματοποιήθηκε για το επιλεγμένο εύρος κελιών.
Επιλέξτε ένα ομοιόμορφο εύρος δεδομένων μέσα ή έξω από το πίνακα και δοκιμάστε ξανά.", "errorAutoFilterHiddenRange": "Η λειτουργία δεν μπορεί να πραγματοποιηθεί επειδή η περιοχή περιέχει φιλτραρισμένα κελιά.
Παρακαλούμε, εμφανίστε τα φιλτραρισμένα στοιχεία και προσπαθήστε ξανά.", "errorBadImageUrl": "Εσφαλμένη διεύθυνση URL εικόνας", + "errorCannotUseCommandProtectedSheet": "Δεν μπορείτε να χρησιμοποιήσετε αυτή την εντολή σε προστατευμένο φύλλο. Πρέπει να αφαιρέσετε την προστασία.
Ενδέχεται να σας ζητηθεί συνθηματικό.", "errorChangeArray": "Δεν μπορείτε να αλλάξετε μέρος ενός πίνακα.", "errorChangeOnProtectedSheet": "Το κελί ή γράφημα που προσπαθείτε να αλλάξετε βρίσκεται σε προστατευμένο φύλλο.
Για να κάνετε αλλαγή, αφαιρέστε την προστασία. Ίσως σας ζητηθεί συνθηματικό.", "errorConnectToServer": "Αδύνατη η αποθήκευση του εγγράφου. Ελέγξτε τις ρυθμίσεις σύνδεσης ή επικοινωνήστε με τον διαχειριστή.
Όταν κάνετε κλικ στο κουμπί \"Εντάξει\", θα σας προταθεί να κατεβάσετε το έγγραφο.", @@ -233,8 +234,7 @@ "unknownErrorText": "Άγνωστο σφάλμα.", "uploadImageExtMessage": "Άγνωστη μορφή εικόνας.", "uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.", - "uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB.", - "errorCannotUseCommandProtectedSheet": "You cannot use this command on a protected sheet. To use this command, unprotect the sheet.
You might be requested to enter a password." + "uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB." }, "LongActions": { "advDRMPassword": "Συνθηματικό", @@ -287,18 +287,19 @@ "textErrNotEmpty": "Το όνομα του φύλλου δεν πρέπει να είναι κενό", "textErrorLastSheet": "Το βιβλίο εργασίας πρέπει να έχει τουλάχιστον ένα ορατό φύλλο εργασίας.", "textErrorRemoveSheet": "Δεν είναι δυνατή η διαγραφή του φύλλου εργασίας.", + "textHidden": "Κρυφό", "textHide": "Απόκρυψη", "textMore": "Περισσότερα", + "textMove": "Μετακίνηση", + "textMoveBack": "Μετακίνηση πίσω", + "textMoveForward": "Μετακίνηση εμπρός", "textOk": "Εντάξει", "textRename": "Μετονομασία", "textRenameSheet": "Μετονομασία Φύλλου", "textSheet": "Φύλλο", "textSheetName": "Όνομα Φύλλου", "textUnhide": "Αναίρεση απόκρυψης", - "textWarnDeleteSheet": "Το φύλλο εργασίας ίσως περιέχει δεδομένα. Να συνεχιστεί η λειτουργία;", - "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "textWarnDeleteSheet": "Το φύλλο εργασίας ίσως περιέχει δεδομένα. Να συνεχιστεί η λειτουργία;" }, "Toolbar": { "dlgLeaveMsgText": "Έχετε μη αποθηκευμένες αλλαγές στο έγγραφο. Πατήστε 'Παραμονή στη Σελίδα' για να περιμένετε την αυτόματη αποθήκευση. Πατήστε 'Έξοδος από τη Σελίδα' για να απορρίψετε όλες τις μη αποθηκευμένες αλλαγές.", @@ -341,6 +342,7 @@ "textLink": "Σύνδεσμος", "textLinkSettings": "Ρυθμίσεις Συνδέσμου", "textLinkType": "Τύπος Συνδέσμου", + "textOk": "Εντάξει", "textOther": "Άλλο", "textPictureFromLibrary": "Εικόνα από βιβλιοθήκη", "textPictureFromURL": "Εικόνα από σύνδεσμο", @@ -358,8 +360,7 @@ "txtNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση URL με τη μορφή «http://www.example.com»", "txtSorting": "Ταξινόμηση", "txtSortSelected": "Ταξινόμηση επιλεγμένων", - "txtYes": "Ναι", - "textOk": "Ok" + "txtYes": "Ναι" }, "Edit": { "notcriticalErrorTitle": "Προειδοποίηση", @@ -378,6 +379,7 @@ "textAngleClockwise": "Γωνία Δεξιόστροφα", "textAngleCounterclockwise": "Γωνία Αριστερόστροφα", "textAuto": "Αυτόματα", + "textAutomatic": "Αυτόματο", "textAxisCrosses": "Διασχίσεις Άξονα", "textAxisOptions": "Επιλογές Άξονα", "textAxisPosition": "Θέση Άξονα", @@ -478,6 +480,7 @@ "textNoOverlay": "Χωρίς Επικάλυψη", "textNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση URL με τη μορφή «http://www.example.com»", "textNumber": "Αριθμός", + "textOk": "Εντάξει", "textOnTickMarks": "Επί των Διαβαθμίσεων", "textOpacity": "Αδιαφάνεια", "textOut": "Έξω", @@ -539,9 +542,7 @@ "textYen": "Γιέν", "txtNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση URL με τη μορφή «http://www.example.com»", "txtSortHigh2Low": "Ταξινόμηση από το Υψηλότερο στο Χαμηλότερο", - "txtSortLow2High": "Ταξινόμηση από το Χαμηλότερο στο Υψηλότερο", - "textAutomatic": "Automatic", - "textOk": "Ok" + "txtSortLow2High": "Ταξινόμηση από το Χαμηλότερο στο Υψηλότερο" }, "Settings": { "advCSVOptions": "Επιλέξτε CSV επιλογές", @@ -571,6 +572,7 @@ "textComments": "Σχόλια", "textCreated": "Δημιουργήθηκε", "textCustomSize": "Προσαρμοσμένο Μέγεθος", + "textDarkTheme": "Σκούρο θέμα", "textDelimeter": "Διαχωριστικό", "textDisableAll": "Απενεργοποίηση Όλων", "textDisableAllMacrosWithNotification": "Απενεργοποίηση όλων των μακροεντολών με ειδοποίηση", @@ -671,8 +673,7 @@ "txtSemicolon": "Ανω τελεία", "txtSpace": "Κενό διάστημα", "txtTab": "Καρτέλα", - "warnDownloadAs": "Αν προχωρήσετε με την αποθήκευση σε αυτή τη μορφή, όλα τα χαρακτηριστικά πλην του κειμένου θα χαθούν.
Θέλετε σίγουρα να συνεχίσετε;", - "textDarkTheme": "Dark Theme" + "warnDownloadAs": "Αν προχωρήσετε με την αποθήκευση σε αυτή τη μορφή, όλα τα χαρακτηριστικά πλην του κειμένου θα χαθούν.
Θέλετε σίγουρα να συνεχίσετε;" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json index 3ba08de09..ff3282cfb 100644 --- a/apps/spreadsheeteditor/mobile/locale/en.json +++ b/apps/spreadsheeteditor/mobile/locale/en.json @@ -287,8 +287,8 @@ "textErrNotEmpty": "Sheet name must not be empty", "textErrorLastSheet": "The workbook must have at least one visible worksheet.", "textErrorRemoveSheet": "Can't delete the worksheet.", - "textHide": "Hide", "textHidden": "Hidden", + "textHide": "Hide", "textMore": "More", "textMove": "Move", "textMoveBack": "Move back", diff --git a/apps/spreadsheeteditor/mobile/locale/es.json b/apps/spreadsheeteditor/mobile/locale/es.json index 7a29d58ac..f95428ed4 100644 --- a/apps/spreadsheeteditor/mobile/locale/es.json +++ b/apps/spreadsheeteditor/mobile/locale/es.json @@ -68,6 +68,7 @@ "Main": { "criticalErrorTitle": "Error", "errorAccessDeny": "Está intentando realizar una acción para la que no tiene derechos.
Por favor, contacte con su administrador.", + "errorOpensource": "Utilizando la versión gratuita Community, puede abrir documentos sólo para visualizarlos. Para acceder a los editores web móviles, se requiere una licencia comercial.", "errorProcessSaveResult": "Error al guardar", "errorServerVersion": "La versión del editor ha sido actualizada. La página será recargada para aplicar los cambios.", "errorUpdateVersion": "Se ha cambiado la versión del archivo. La página será actualizada.", @@ -159,8 +160,7 @@ "warnLicenseUsersExceeded": "Ha alcanzado el límite de usuarios para %1 editores. Póngase en contacto con su administrador para saber más.", "warnNoLicense": "Ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización. Póngase en contacto con el equipo de ventas de %1 para conocer las condiciones de actualización personal.", "warnNoLicenseUsers": "Ha alcanzado el límite de usuarios para %1 editores. Póngase en contacto con el equipo de ventas de %1 para conocer las condiciones de actualización personal.", - "warnProcessRightsChange": "No tiene permiso para editar el archivo.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." + "warnProcessRightsChange": "No tiene permiso para editar el archivo." } }, "Error": { @@ -287,6 +287,7 @@ "textErrNotEmpty": "Nombre de hoja no debe ser vacío", "textErrorLastSheet": "El libro debe tener al menos una hoja de cálculo visible.", "textErrorRemoveSheet": "No se puede eliminar la hoja de cálculo.", + "textHidden": "Ocultado", "textHide": "Ocultar", "textMore": "Más", "textMove": "Mover", diff --git a/apps/spreadsheeteditor/mobile/locale/fr.json b/apps/spreadsheeteditor/mobile/locale/fr.json index d0ff74a93..d5881286f 100644 --- a/apps/spreadsheeteditor/mobile/locale/fr.json +++ b/apps/spreadsheeteditor/mobile/locale/fr.json @@ -68,6 +68,7 @@ "Main": { "criticalErrorTitle": "Erreur", "errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.
Veuillez contacter votre administrateur.", + "errorOpensource": "Sous version gratuite Community, le document est disponible en lecture seule. Pour accéder aux éditeurs mobiles web, vous avez besoin d'une licence payante.", "errorProcessSaveResult": "Échec de l‘enregistrement.", "errorServerVersion": "La version de l'éditeur a été mise à jour. La page sera rechargée pour appliquer les modifications.", "errorUpdateVersion": "La version du fichier a été changée. La page sera rechargée.", @@ -159,8 +160,7 @@ "warnLicenseUsersExceeded": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Pour en savoir plus, contactez votre administrateur.", "warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert en lecture seule. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", "warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", - "warnProcessRightsChange": "Vous n'avez pas la permission de modifier ce fichier.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." + "warnProcessRightsChange": "Vous n'avez pas la permission de modifier ce fichier." } }, "Error": { @@ -287,6 +287,7 @@ "textErrNotEmpty": "Le nom de feuille ne peut pas être vide. ", "textErrorLastSheet": "Un classeur doit avoir au moins une feuille de calcul visible.", "textErrorRemoveSheet": "Impossible de supprimer la feuille de calcul.", + "textHidden": "Masquée", "textHide": "Masquer", "textMore": "Plus", "textMove": "Déplacer", diff --git a/apps/spreadsheeteditor/mobile/locale/gl.json b/apps/spreadsheeteditor/mobile/locale/gl.json index a30206838..2b05c032f 100644 --- a/apps/spreadsheeteditor/mobile/locale/gl.json +++ b/apps/spreadsheeteditor/mobile/locale/gl.json @@ -68,6 +68,7 @@ "Main": { "criticalErrorTitle": "Erro", "errorAccessDeny": "Está intentando realizar unha acción para a que non ten dereitos.
Por favor, contacte co seu admiinistrador.", + "errorOpensource": "Usando a versión gratuíta da Comunidade, pode abrir documentos só para visualización. Para acceder editores da web móbil é necesaria unha licenza comercial.", "errorProcessSaveResult": "Erro ao gardar", "errorServerVersion": "A versión do editor foi actualizada. A páxina será recargada para aplicar os cambios.", "errorUpdateVersion": "Cambiouse a versión do ficheiro. A páxina será actualizada.", @@ -142,9 +143,14 @@ "textGuest": "Convidado(a)", "textHasMacros": "O ficheiro contén macros automáticas.
Quere executar macros?", "textNo": "Non", + "textNoChoices": "Non hai opcións para encher a cela.
Só se poden seleccionar os valores de texto da columna para substituílos.", "textNoLicenseTitle": "Alcanzouse o límite da licenza", + "textNoTextFound": "Texto non atopado", + "textOk": "Aceptar", "textPaidFeature": "Característica de pago", "textRemember": "Lembrar a miña escolla", + "textReplaceSkipped": "A substitución foi realizada. {0} ocorrencias foron ignoradas.", + "textReplaceSuccess": "A busca foi realizada. Ocorrencias substituídas: {0}", "textYes": "Si", "titleServerVersion": "Editor actualizado", "titleUpdateVersion": "Versión cambiada", @@ -154,13 +160,7 @@ "warnLicenseUsersExceeded": "Alcanzou o límite de usuarios para os editores de %1. Por favor, contacte co se uadministrador para recibir máis información.", "warnNoLicense": "Alcanzou o límite de conexións simultáneas con %1 editores. Este documento abrirase para as úa visualización. Póñase en contacto co equipo de vendas de %1 para coñecer as condicións de actualización persoal.", "warnNoLicenseUsers": "Alcanzou o límite de usuarios para os editores de %1.
Contacte co equipo de vendas de %1 para coñecer os termos de actualización persoal.", - "warnProcessRightsChange": "Non ten permiso para editar o ficheiro.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", - "textNoTextFound": "Text not found", - "textOk": "Ok", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "Non ten permiso para editar o ficheiro." } }, "Error": { @@ -175,6 +175,7 @@ "errorAutoFilterDataRange": "Non se puido facer a operación para o intervalo de celas seleccionado.
Seleccione un intervalo de datos uniforme dentro ou fóra da táboa e inténteo de novo.", "errorAutoFilterHiddenRange": "A operación non se pode realizar porque a área contén celas filtradas.
Por favor, mostra os elementos filtrados e inténtao de novo.", "errorBadImageUrl": "A URL da imaxe é incorrecta", + "errorCannotUseCommandProtectedSheet": "Non pode usar esta orde nunha folla protexida. Para usar esta orde, desprotexa a folla.
É posible que che pidan un contrasinal.", "errorChangeArray": "Non podes cambiar parte dunha matriz.", "errorChangeOnProtectedSheet": "A cela ou o gráfico que está intentando cambiar está nunha folla protexida. Para facer un cambio, desprotexa a folla. Pódeselle solicitar que introduza un contrasinal.", "errorConnectToServer": "Non se pode gardar este documento. Comprobe a configuración da súa conexión ou póñase en contacto co administrador.
Cando prema en Aceptar, pediráselle que descargue o documento.", @@ -233,8 +234,7 @@ "unknownErrorText": "Erro descoñecido.", "uploadImageExtMessage": "Formato de imaxe descoñecido.", "uploadImageFileCountMessage": "Non hai imaxes subidas.", - "uploadImageSizeMessage": "A imaxe é demasiado grande. O tamaño máximo é de 25 MB.", - "errorCannotUseCommandProtectedSheet": "You cannot use this command on a protected sheet. To use this command, unprotect the sheet.
You might be requested to enter a password." + "uploadImageSizeMessage": "A imaxe é demasiado grande. O tamaño máximo é de 25 MB." }, "LongActions": { "advDRMPassword": "Contrasinal", @@ -287,18 +287,19 @@ "textErrNotEmpty": "O nome da folla non debe estar vacío", "textErrorLastSheet": "O libro debe ter polo menos unha folla de traballo visible.", "textErrorRemoveSheet": "Non se pode eliminar a folla de cálculo.", + "textHidden": "Agochado", "textHide": "Agochar", "textMore": "Máis", + "textMove": "Mover", + "textMoveBack": "Volver", + "textMoveForward": "Mover á fronte", "textOk": "Aceptar", "textRename": "Renomear", "textRenameSheet": "Renomear folla", "textSheet": "Folla", "textSheetName": "Nome da folla", "textUnhide": "Volver a amosar", - "textWarnDeleteSheet": "A folla de traballo pode que conteña datos. Queres continuar a operación?", - "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "textWarnDeleteSheet": "A folla de traballo pode que conteña datos. Queres continuar a operación?" }, "Toolbar": { "dlgLeaveMsgText": "Ten cambios non gardados neste documento. Prema en \"Quedarse nesta páxina\" para esperar ata que se garden automaticamente. Prema en \"Saír desta páxina\" para descartar todos os cambios non gardados.", @@ -341,6 +342,7 @@ "textLink": "Ligazón", "textLinkSettings": "Configuración da ligazón", "textLinkType": "Tipo de ligazón", + "textOk": "Aceptar", "textOther": "Outro", "textPictureFromLibrary": "Imaxe da biblioteca", "textPictureFromURL": "Imaxe da URL", @@ -358,8 +360,7 @@ "txtNotUrl": "Este campo debe ser unha URL no formato \"http://www.example.com\"", "txtSorting": "Ordenación", "txtSortSelected": "Ordenar os obxectos seleccionados", - "txtYes": "Si", - "textOk": "Ok" + "txtYes": "Si" }, "Edit": { "notcriticalErrorTitle": "Aviso", @@ -378,6 +379,7 @@ "textAngleClockwise": "Ángulo no sentido horario", "textAngleCounterclockwise": "Ángulo no sentido antihorario", "textAuto": "Automático", + "textAutomatic": "Automático", "textAxisCrosses": "Cruces do eixo", "textAxisOptions": "Opcións dos eixos", "textAxisPosition": "Posición do eixo", @@ -478,6 +480,7 @@ "textNoOverlay": "Sen superposición", "textNotUrl": "Este campo debe ser unha URL no formato \"http://www.example.com\"", "textNumber": "Número", + "textOk": "Aceptar", "textOnTickMarks": "Marcas de gradación", "textOpacity": "Opacidade", "textOut": "Fóra", @@ -539,9 +542,7 @@ "textYen": "Ien", "txtNotUrl": "Este campo debe ser unha URL no formato \"http://www.example.com\"", "txtSortHigh2Low": "Ordenar de maior a menor", - "txtSortLow2High": "Ordenar de menor a maior ", - "textAutomatic": "Automatic", - "textOk": "Ok" + "txtSortLow2High": "Ordenar de menor a maior " }, "Settings": { "advCSVOptions": "Elexir os parámetros de CSV", @@ -571,6 +572,7 @@ "textComments": "Comentarios", "textCreated": "Creado", "textCustomSize": "Tamaño personalizado", + "textDarkTheme": "Tema escuro", "textDelimeter": "Delimitador", "textDisableAll": "Desactivar todo", "textDisableAllMacrosWithNotification": "Desactivar todas as macros con notificación", @@ -671,8 +673,7 @@ "txtSemicolon": "Punto e coma", "txtSpace": "Espazo", "txtTab": "Lapela", - "warnDownloadAs": "Se segue gardando neste formato, todas as características a excepción do texto perderanse.
Te na certeza de que desexa continuar?", - "textDarkTheme": "Dark Theme" + "warnDownloadAs": "Se segue gardando neste formato, todas as características a excepción do texto perderanse.
Te na certeza de que desexa continuar?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/hu.json b/apps/spreadsheeteditor/mobile/locale/hu.json index b5b443397..21458aa96 100644 --- a/apps/spreadsheeteditor/mobile/locale/hu.json +++ b/apps/spreadsheeteditor/mobile/locale/hu.json @@ -298,7 +298,8 @@ "textSheet": "Munkalap", "textSheetName": "Munkalap neve", "textUnhide": "Megmutat", - "textWarnDeleteSheet": "A munkalap lehet hogy tartalmaz adatok. Folytatja a műveletet?" + "textWarnDeleteSheet": "A munkalap lehet hogy tartalmaz adatok. Folytatja a műveletet?", + "textHidden": "Hidden" }, "Toolbar": { "dlgLeaveMsgText": "Nem mentett módosításai vannak ebben a dokumentumban. Kattintson a „Maradj ezen az oldalon” gombra az automatikus mentés megvárásához. Kattintson a \"Hagyja el ezt az oldalt\" gombra az összes nem mentett módosítás elvetéséhez.", diff --git a/apps/spreadsheeteditor/mobile/locale/it.json b/apps/spreadsheeteditor/mobile/locale/it.json index 1dec20e1e..ebc97d77f 100644 --- a/apps/spreadsheeteditor/mobile/locale/it.json +++ b/apps/spreadsheeteditor/mobile/locale/it.json @@ -68,6 +68,7 @@ "Main": { "criticalErrorTitle": "Errore", "errorAccessDeny": "Stai cercando di eseguire un'azione per la quale non hai diritti.
Ti preghiamo di contattare il tuo amministratore.", + "errorOpensource": "Usando la versione gratuita Community, puoi aprire i documenti solo per visualizzarli. Per accedere agli editor mobili sul web è richiesta una licenza commerciale.", "errorProcessSaveResult": "Salvataggio è fallito.", "errorServerVersion": "La versione dell'editor è stata aggiornata. La pagina verrà ricaricata per applicare i cambiamenti.", "errorUpdateVersion": "La versione del file è stata cambiata. La pagina verrà ricaricata.", @@ -159,8 +160,7 @@ "warnLicenseUsersExceeded": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il tuo amministratore per maggior informazioni.", "warnNoLicense": "Hai raggiunto il limite delle connessioni simultanee agli editor %1. Questo documento sarà aperto solo in modalità di visualizzazione. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", "warnNoLicenseUsers": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", - "warnProcessRightsChange": "Non hai il permesso di modificare il file.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." + "warnProcessRightsChange": "Non hai il permesso di modificare il file." } }, "Error": { @@ -287,6 +287,7 @@ "textErrNotEmpty": "Il nome del foglio non può essere lasciato vuoto", "textErrorLastSheet": "Il libro di lavoro deve avere almeno un foglio di calcolo visibile.", "textErrorRemoveSheet": "Impossibile cancellare il foglio di calcolo", + "textHidden": "Nascosto", "textHide": "Nascondere", "textMore": "Di più", "textMove": "Sposta", diff --git a/apps/spreadsheeteditor/mobile/locale/ja.json b/apps/spreadsheeteditor/mobile/locale/ja.json index 492c64f0a..a124550e5 100644 --- a/apps/spreadsheeteditor/mobile/locale/ja.json +++ b/apps/spreadsheeteditor/mobile/locale/ja.json @@ -149,7 +149,7 @@ "titleServerVersion": "編集者が更新された", "titleUpdateVersion": "バージョンが変更されました", "warnLicenseExceeded": "%1エディター 時接続数の制限に達しました。この文書が見るだけのために開かれる。詳細についてはアドミニストレータを連絡してください。", - "warnLicenseLimitedNoAccess": "ライセンスが満期しました。編集の汎関数にアクセスがありません。アドミンに連絡してください。", + "warnLicenseLimitedNoAccess": "ライセンスの有効期限が切れています。ドキュメント編集機能にアクセスできません。管理者にご連絡ください。", "warnLicenseLimitedRenewed": "ライセンスを書き換えが必要です。編集の汎関数にアクセスの制限があります。
フル アクセスを受けてようにアドミニストレータを連絡してください。", "warnLicenseUsersExceeded": "%1エディターのユーザー制限に達しました。 詳細についてはアドミニストレータを連絡してください。", "warnNoLicense": "%1エディター 時接続数の制限に達しました。この文書が見るだけのために開かれる。個人的なアップグレード条件については、%1営業チームを連絡してください。", @@ -296,6 +296,7 @@ "textSheetName": "シートの名", "textUnhide": "表示する", "textWarnDeleteSheet": "ワークシートはデータがあるそうです。操作を続けてもよろしいですか?", + "textHidden": "Hidden", "textMove": "Move", "textMoveBack": "Move back", "textMoveForward": "Move forward" diff --git a/apps/spreadsheeteditor/mobile/locale/ko.json b/apps/spreadsheeteditor/mobile/locale/ko.json index 1cf3ec435..603ba7041 100644 --- a/apps/spreadsheeteditor/mobile/locale/ko.json +++ b/apps/spreadsheeteditor/mobile/locale/ko.json @@ -296,6 +296,7 @@ "textSheetName": "시트 이름", "textUnhide": "숨기기 해제", "textWarnDeleteSheet": "워크시트에 데이터가 포함될 수 있습니다. 진행 하시겠습니까?", + "textHidden": "Hidden", "textMove": "Move", "textMoveBack": "Move back", "textMoveForward": "Move forward" diff --git a/apps/spreadsheeteditor/mobile/locale/lo.json b/apps/spreadsheeteditor/mobile/locale/lo.json index d4ec07be8..4621ba6ad 100644 --- a/apps/spreadsheeteditor/mobile/locale/lo.json +++ b/apps/spreadsheeteditor/mobile/locale/lo.json @@ -298,7 +298,8 @@ "textOk": "Ok", "textMove": "Move", "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "textMoveForward": "Move forward", + "textHidden": "Hidden" }, "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 d4ec07be8..4621ba6ad 100644 --- a/apps/spreadsheeteditor/mobile/locale/lv.json +++ b/apps/spreadsheeteditor/mobile/locale/lv.json @@ -298,7 +298,8 @@ "textOk": "Ok", "textMove": "Move", "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "textMoveForward": "Move forward", + "textHidden": "Hidden" }, "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 d4ec07be8..4621ba6ad 100644 --- a/apps/spreadsheeteditor/mobile/locale/nb.json +++ b/apps/spreadsheeteditor/mobile/locale/nb.json @@ -298,7 +298,8 @@ "textOk": "Ok", "textMove": "Move", "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "textMoveForward": "Move forward", + "textHidden": "Hidden" }, "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 e36a8c576..50d782a98 100644 --- a/apps/spreadsheeteditor/mobile/locale/nl.json +++ b/apps/spreadsheeteditor/mobile/locale/nl.json @@ -296,6 +296,7 @@ "textSheetName": "Bladnaam", "textUnhide": "Verbergen ongedaan maken", "textWarnDeleteSheet": "Het werkblad heeft misschien gegevens. Verder gaan met de bewerking?", + "textHidden": "Hidden", "textMove": "Move", "textMoveBack": "Move back", "textMoveForward": "Move forward" diff --git a/apps/spreadsheeteditor/mobile/locale/pl.json b/apps/spreadsheeteditor/mobile/locale/pl.json index d4ec07be8..4621ba6ad 100644 --- a/apps/spreadsheeteditor/mobile/locale/pl.json +++ b/apps/spreadsheeteditor/mobile/locale/pl.json @@ -298,7 +298,8 @@ "textOk": "Ok", "textMove": "Move", "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "textMoveForward": "Move forward", + "textHidden": "Hidden" }, "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 e5deb6b52..53a5216e4 100644 --- a/apps/spreadsheeteditor/mobile/locale/pt.json +++ b/apps/spreadsheeteditor/mobile/locale/pt.json @@ -68,6 +68,7 @@ "Main": { "criticalErrorTitle": "Erro", "errorAccessDeny": "Você está tentando realizar uma ação para a qual não possui direitos.
Por favor, entre em contato com o seu administrador.", + "errorOpensource": "Usando a versão gratuita da Comunidade, você pode abrir documentos apenas para visualização. Para acessar editores da web móvel, é necessária uma licença comercial.", "errorProcessSaveResult": "O salvamento falhou.", "errorServerVersion": "A versão do editor foi atualizada. A página será recarregada para aplicar as alterações.", "errorUpdateVersion": "A versão do arquivo foi alterada. A página será recarregada.", @@ -159,8 +160,7 @@ "warnLicenseUsersExceeded": "Você atingiu o limite de usuários para editores %1. Entre em contato com seu administrador para saber mais.", "warnNoLicense": "Você atingiu o limite de conexões simultâneas para% 1 editores. Este documento será aberto apenas para visualização. Contate a equipe de vendas% 1 para termos de atualização pessoal.", "warnNoLicenseUsers": "Você atingiu o limite de usuários para editores %1.
Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", - "warnProcessRightsChange": "Você não tem permissão para editar o arquivo.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." + "warnProcessRightsChange": "Você não tem permissão para editar o arquivo." } }, "Error": { @@ -287,6 +287,7 @@ "textErrNotEmpty": "Nome da folha não deve estar vazio", "textErrorLastSheet": "A apostila deve ter pelo menos uma folha de trabalho visível.", "textErrorRemoveSheet": "Não é possível excluir a folha de trabalho.", + "textHidden": "Oculto", "textHide": "Ocultar", "textMore": "Mais", "textMove": "Mover", diff --git a/apps/spreadsheeteditor/mobile/locale/ro.json b/apps/spreadsheeteditor/mobile/locale/ro.json index 3404b8aab..2521dd9dc 100644 --- a/apps/spreadsheeteditor/mobile/locale/ro.json +++ b/apps/spreadsheeteditor/mobile/locale/ro.json @@ -68,6 +68,7 @@ "Main": { "criticalErrorTitle": "Eroare", "errorAccessDeny": "Nu aveți dreptul să efectuați acțiunea pe care doriți.
Contactați administratorul dvs.", + "errorOpensource": "În versiunea Community documentul este disponibil numai pentru vizualizare. Aveți nevoie de o licență comercială pentru accesarea editorului mobil web.", "errorProcessSaveResult": "Salvarea a eșuat.", "errorServerVersion": "Editorul a fost actualizat. Pagina va fi reîmprospătată pentru a aplica această actualizare.", "errorUpdateVersion": "Versiunea fișierului s-a modificat. Pagina va fi reîmprospătată.", @@ -159,8 +160,7 @@ "warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori ai %1 editoare. Pentru detalii, contactați administratorul dvs.", "warnNoLicense": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare. Contactați %1 Departamentul de Vânzări pentru acordarea condițiilor personale de actualizare.", "warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori ai %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.", - "warnProcessRightsChange": "Nu aveți permisiunea de editare pentru fișier.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." + "warnProcessRightsChange": "Nu aveți permisiunea de editare pentru fișier." } }, "Error": { @@ -287,6 +287,7 @@ "textErrNotEmpty": "Nu lăsați numele foii necompletat", "textErrorLastSheet": "În registrul de calcul trebuie să fie vizibilă cel puțin o foie de lucru. ", "textErrorRemoveSheet": "Foaia de calcul nu poate fi ștearsă.", + "textHidden": "Ascuns", "textHide": "Ascunde", "textMore": "Mai multe", "textMove": "Mutare", diff --git a/apps/spreadsheeteditor/mobile/locale/ru.json b/apps/spreadsheeteditor/mobile/locale/ru.json index 6f142c808..2bfbf03e9 100644 --- a/apps/spreadsheeteditor/mobile/locale/ru.json +++ b/apps/spreadsheeteditor/mobile/locale/ru.json @@ -68,6 +68,7 @@ "Main": { "criticalErrorTitle": "Ошибка", "errorAccessDeny": "Вы пытаетесь выполнить действие, на которое у вас нет прав.
Пожалуйста, обратитесь к администратору.", + "errorOpensource": "Используя бесплатную версию Community, вы можете открывать документы только на просмотр. Для доступа к мобильным веб-редакторам требуется коммерческая лицензия.", "errorProcessSaveResult": "Не удалось завершить сохранение.", "errorServerVersion": "Версия редактора была обновлена. Страница будет перезагружена, чтобы применить изменения.", "errorUpdateVersion": "Версия файла была изменена. Страница будет перезагружена.", @@ -159,8 +160,7 @@ "warnLicenseUsersExceeded": "Вы достигли лимита на количество пользователей редакторов %1. Свяжитесь с администратором, чтобы узнать больше.", "warnNoLicense": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт на просмотр. Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия обновления.", "warnNoLicenseUsers": "Вы достигли лимита на количество пользователей редакторов %1. Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия обновления.", - "warnProcessRightsChange": "У вас нет прав на редактирование этого файла.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." + "warnProcessRightsChange": "У вас нет прав на редактирование этого файла." } }, "Error": { @@ -287,6 +287,7 @@ "textErrNotEmpty": "Имя листа не должно быть пустым", "textErrorLastSheet": "Книга должна содержать хотя бы один видимый лист.", "textErrorRemoveSheet": "Не удалось удалить лист.", + "textHidden": "Скрытый", "textHide": "Скрыть", "textMore": "Ещё", "textMove": "Переместить", diff --git a/apps/spreadsheeteditor/mobile/locale/sk.json b/apps/spreadsheeteditor/mobile/locale/sk.json index d4ec07be8..4621ba6ad 100644 --- a/apps/spreadsheeteditor/mobile/locale/sk.json +++ b/apps/spreadsheeteditor/mobile/locale/sk.json @@ -298,7 +298,8 @@ "textOk": "Ok", "textMove": "Move", "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "textMoveForward": "Move forward", + "textHidden": "Hidden" }, "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 d4ec07be8..4621ba6ad 100644 --- a/apps/spreadsheeteditor/mobile/locale/sl.json +++ b/apps/spreadsheeteditor/mobile/locale/sl.json @@ -298,7 +298,8 @@ "textOk": "Ok", "textMove": "Move", "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "textMoveForward": "Move forward", + "textHidden": "Hidden" }, "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 d669b5e2e..a86c63b82 100644 --- a/apps/spreadsheeteditor/mobile/locale/tr.json +++ b/apps/spreadsheeteditor/mobile/locale/tr.json @@ -298,7 +298,8 @@ "textSheet": "Sayfa", "textSheetName": "Sayfa ismi", "textUnhide": "Gizlemeyi kaldır", - "textWarnDeleteSheet": "Çalışma sayfasında veri olabilir. İşleme devam edilsin mi?" + "textWarnDeleteSheet": "Çalışma sayfasında veri olabilir. İşleme devam edilsin mi?", + "textHidden": "Hidden" }, "Toolbar": { "dlgLeaveMsgText": "Bu belgede kaydedilmemiş değişiklikleriniz var. Otomatik kaydetmeyi beklemek için 'Bu Sayfada Kal' seçeneğini tıklayın. Kaydedilmemiş tüm değişiklikleri atmak için 'Bu Sayfadan Ayrıl'ı tıklayın.", diff --git a/apps/spreadsheeteditor/mobile/locale/uk.json b/apps/spreadsheeteditor/mobile/locale/uk.json index d4ec07be8..4621ba6ad 100644 --- a/apps/spreadsheeteditor/mobile/locale/uk.json +++ b/apps/spreadsheeteditor/mobile/locale/uk.json @@ -298,7 +298,8 @@ "textOk": "Ok", "textMove": "Move", "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "textMoveForward": "Move forward", + "textHidden": "Hidden" }, "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 d4ec07be8..4621ba6ad 100644 --- a/apps/spreadsheeteditor/mobile/locale/vi.json +++ b/apps/spreadsheeteditor/mobile/locale/vi.json @@ -298,7 +298,8 @@ "textOk": "Ok", "textMove": "Move", "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "textMoveForward": "Move forward", + "textHidden": "Hidden" }, "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 217efd933..cecedeb1d 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh.json +++ b/apps/spreadsheeteditor/mobile/locale/zh.json @@ -68,6 +68,7 @@ "Main": { "criticalErrorTitle": "错误", "errorAccessDeny": "你正要执行一个你没有权限的操作
恳请你联系你的管理员。", + "errorOpensource": "在使用免费社区版本的情况下,您只能查看打开的文件。要想使用移动网上编辑器功能,您需要持有付费许可证。", "errorProcessSaveResult": "保存失败", "errorServerVersion": "编辑器版本已完成更新。为应用这些更改,该页将要刷新。", "errorUpdateVersion": "文件版本发生改变。该页将要刷新。", @@ -159,8 +160,7 @@ "warnLicenseUsersExceeded": "你触发了 %1 编辑器的同时在线数限制。可联系管理员来了解更多信息。", "warnNoLicense": "你已经触发了 %1 编辑器的同时在线数限制. 该文档打开后,你将只能查看。请联系 %1 的销售团队,获取个人升级条款。", "warnNoLicenseUsers": "你触发了 %1 编辑器的同时在线数限制。请与 %1 的销售团队联系,以获取个人升级条款。", - "warnProcessRightsChange": "你没有编辑文件的权限。", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." + "warnProcessRightsChange": "你没有编辑文件的权限。" } }, "Error": { @@ -287,6 +287,7 @@ "textErrNotEmpty": "工作表名称不能为空", "textErrorLastSheet": "该工作簿必须带有至少一个可见的工作表。", "textErrorRemoveSheet": "不能删除工作表。", + "textHidden": "隐蔽", "textHide": "隐藏", "textMore": "更多", "textMove": "移动", From c849c18ce21566c664442ce529f409c409847c46 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 11 Feb 2022 22:07:15 +0300 Subject: [PATCH 140/217] [DE] Download pdf/xps/oxps/djvu files using downloadAs api method --- .../main/app/controller/Main.js | 56 +++++++++++-------- 1 file changed, 32 insertions(+), 24 deletions(-) diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index 112a3d504..ddfdaf339 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -541,33 +541,41 @@ define([ } this._state.isFromGatewayDownloadAs = true; + var _format = (format && (typeof format == 'string')) ? Asc.c_oAscFileType[ format.toUpperCase() ] : null, + _defaultFormat = null, + _supported = [ + Asc.c_oAscFileType.TXT, + Asc.c_oAscFileType.RTF, + Asc.c_oAscFileType.ODT, + Asc.c_oAscFileType.DOCX, + Asc.c_oAscFileType.HTML, + Asc.c_oAscFileType.DOTX, + Asc.c_oAscFileType.OTT, + Asc.c_oAscFileType.FB2, + Asc.c_oAscFileType.EPUB, + Asc.c_oAscFileType.DOCM + ]; var type = /^(?:(pdf|djvu|xps|oxps))$/.exec(this.document.fileType); - if (type && typeof type[1] === 'string') - this.api.asc_DownloadOrigin(true); - else { - var _format = (format && (typeof format == 'string')) ? Asc.c_oAscFileType[ format.toUpperCase() ] : null, - _supported = [ - Asc.c_oAscFileType.TXT, - Asc.c_oAscFileType.RTF, - Asc.c_oAscFileType.ODT, - Asc.c_oAscFileType.DOCX, - Asc.c_oAscFileType.HTML, - Asc.c_oAscFileType.PDF, - Asc.c_oAscFileType.PDFA, - Asc.c_oAscFileType.DOTX, - Asc.c_oAscFileType.OTT, - Asc.c_oAscFileType.FB2, - Asc.c_oAscFileType.EPUB, - Asc.c_oAscFileType.DOCM - ]; - if (this.appOptions.canFeatureForms) { - _supported = _supported.concat([Asc.c_oAscFileType.DOCXF, Asc.c_oAscFileType.OFORM]); + if (type && typeof type[1] === 'string') { + if (!(format && (typeof format == 'string')) || type[1]===format.toLowerCase()) { + this.api.asc_DownloadOrigin(true); + return; } - - if ( !_format || _supported.indexOf(_format) < 0 ) - _format = Asc.c_oAscFileType.DOCX; - this.api.asc_DownloadAs(new Asc.asc_CDownloadOptions(_format, true)); + if (/^xps|oxps$/.test(this.document.fileType)) + _supported = _supported.concat([Asc.c_oAscFileType.PDF, Asc.c_oAscFileType.PDFA]); + else if (/^djvu$/.test(this.document.fileType)) { + _supported = [Asc.c_oAscFileType.PDF]; + } + } else { + _supported = _supported.concat([Asc.c_oAscFileType.PDF, Asc.c_oAscFileType.PDFA]); + _defaultFormat = Asc.c_oAscFileType.DOCX; } + if (this.appOptions.canFeatureForms && !/^djvu$/.test(this.document.fileType)) { + _supported = _supported.concat([Asc.c_oAscFileType.DOCXF, Asc.c_oAscFileType.OFORM]); + } + if ( !_format || _supported.indexOf(_format) < 0 ) + _format = _defaultFormat; + _format ? this.api.asc_DownloadAs(new Asc.asc_CDownloadOptions(_format, true)) : this.api.asc_DownloadOrigin(true); }, onProcessMouse: function(data) { From 1902c2d1f6677e864f1c5fe71b547b42d5adfcba Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Sat, 12 Feb 2022 23:19:38 +0300 Subject: [PATCH 141/217] [DE] Fix table styles loading --- apps/documenteditor/main/app/view/TableSettings.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/documenteditor/main/app/view/TableSettings.js b/apps/documenteditor/main/app/view/TableSettings.js index f7524b6c7..6369b0517 100644 --- a/apps/documenteditor/main/app/view/TableSettings.js +++ b/apps/documenteditor/main/app/view/TableSettings.js @@ -741,7 +741,7 @@ define([ }, selectCurrentTableStyle: function() { - if (!this.mnuTableTemplatePicker) return; + if (!this.mnuTableTemplatePicker || this._state.beginPreviewStyles) return; var rec = this.mnuTableTemplatePicker.store.findWhere({ templateId: this._state.TemplateId @@ -766,6 +766,7 @@ define([ onEndTableStylesPreview: function(){ !this._state.currentStyleFound && this.selectCurrentTableStyle(); + this.mnuTableTemplatePicker && this.mnuTableTemplatePicker.scroller.update({alwaysVisibleY: true}); }, onAddTableStylesPreview: function(Templates){ From f9b8beb31210db4a2db57be4a6df0932c018ed4e Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Sun, 13 Feb 2022 13:32:37 +0300 Subject: [PATCH 142/217] [DE] Fix loading document info for large pdf files (show intermediate results) --- .../main/app/view/FileMenuPanels.js | 22 ++++++++++++++----- 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/apps/documenteditor/main/app/view/FileMenuPanels.js b/apps/documenteditor/main/app/view/FileMenuPanels.js index 664c10c78..15d38da6a 100644 --- a/apps/documenteditor/main/app/view/FileMenuPanels.js +++ b/apps/documenteditor/main/app/view/FileMenuPanels.js @@ -1156,7 +1156,6 @@ define([ ].join('')); this.infoObj = {PageCount: 0, WordsCount: 0, ParagraphCount: 0, SymbolsCount: 0, SymbolsWSCount:0}; - this.inProgress = false; this.menu = options.menu; this.coreProps = null; this.authors = []; @@ -1466,11 +1465,8 @@ define([ _onGetDocInfoStart: function() { var me = this; - this.inProgress = true; this.infoObj = {PageCount: 0, WordsCount: 0, ParagraphCount: 0, SymbolsCount: 0, SymbolsWSCount:0}; - _.defer(function(){ - if (!me.inProgress) return; - + this.timerLoading = setTimeout(function(){ me.lblStatPages.text(me.txtLoading); me.lblStatWords.text(me.txtLoading); me.lblStatParagraphs.text(me.txtLoading); @@ -1481,6 +1477,7 @@ define([ _onDocInfo: function(obj) { if (obj) { + clearTimeout(this.timerLoading); if (obj.get_PageCount()>-1) this.infoObj.PageCount = obj.get_PageCount(); if (obj.get_WordsCount()>-1) @@ -1491,11 +1488,24 @@ define([ this.infoObj.SymbolsCount = obj.get_SymbolsCount(); if (obj.get_SymbolsWSCount()>-1) this.infoObj.SymbolsWSCount = obj.get_SymbolsWSCount(); + if (!this.timerDocInfo) { // start timer for filling info + var me = this; + this.timerDocInfo = setInterval(function(){ + me.fillDocInfo(); + }, 300); + this.fillDocInfo(); + } } }, _onGetDocInfoEnd: function() { - this.inProgress = false; + clearTimeout(this.timerLoading); + clearInterval(this.timerDocInfo); + this.timerLoading = this.timerDocInfo = undefined; + this.fillDocInfo(); + }, + + fillDocInfo: function() { this.lblStatPages.text(this.infoObj.PageCount); this.lblStatWords.text(this.infoObj.WordsCount); this.lblStatParagraphs.text(this.infoObj.ParagraphCount); From 090f89c9cb75381bfc6674e181fd4c38d7908e33 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Sun, 13 Feb 2022 16:40:08 +0300 Subject: [PATCH 143/217] Fix bug with page up/page down in textarea (Bug 39614) --- apps/documenteditor/main/app/controller/Main.js | 9 +++++++++ apps/documenteditor/main/resources/less/layout.less | 1 + apps/presentationeditor/main/app/controller/Main.js | 9 +++++++++ apps/presentationeditor/main/resources/less/layout.less | 1 + apps/spreadsheeteditor/main/app/controller/Main.js | 8 ++++++++ apps/spreadsheeteditor/main/resources/less/layout.less | 1 + 6 files changed, 29 insertions(+) diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index ddfdaf339..ebd4a4137 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -303,6 +303,15 @@ define([ }, 10); }); + Common.Utils.isChrome && $(document.body).on('keydown', 'textarea', function(e) {// chromium bug890248 (Bug 39614) + if (e.keyCode===Common.UI.Keys.PAGEUP || e.keyCode===Common.UI.Keys.PAGEDOWN) { + setTimeout(function(){ + $('#viewport').scrollLeft(0); + $('#viewport').scrollTop(0); + }, 0); + } + }); + Common.NotificationCenter.on({ 'modal:show': function(){ Common.Utils.ModalWindow.show(); diff --git a/apps/documenteditor/main/resources/less/layout.less b/apps/documenteditor/main/resources/less/layout.less index 7aeca23cc..61bac8163 100644 --- a/apps/documenteditor/main/resources/less/layout.less +++ b/apps/documenteditor/main/resources/less/layout.less @@ -41,6 +41,7 @@ label { background-color: @background-toolbar-ie; background-color: @background-toolbar; overflow: hidden; + scroll-behavior: smooth; // chromium bug890248 (Bug 39614) } .layout-region { diff --git a/apps/presentationeditor/main/app/controller/Main.js b/apps/presentationeditor/main/app/controller/Main.js index 317aa99f1..fb233c49e 100644 --- a/apps/presentationeditor/main/app/controller/Main.js +++ b/apps/presentationeditor/main/app/controller/Main.js @@ -264,6 +264,15 @@ define([ } }); + Common.Utils.isChrome && $(document.body).on('keydown', 'textarea', function(e) {// chromium bug890248 (Bug 39614) + if (e.keyCode===Common.UI.Keys.PAGEUP || e.keyCode===Common.UI.Keys.PAGEDOWN) { + setTimeout(function(){ + $('#viewport').scrollLeft(0); + $('#viewport').scrollTop(0); + }, 0); + } + }); + Common.NotificationCenter.on({ 'modal:show': function(e){ Common.Utils.ModalWindow.show(); diff --git a/apps/presentationeditor/main/resources/less/layout.less b/apps/presentationeditor/main/resources/less/layout.less index 6e071fd0c..7128459d9 100644 --- a/apps/presentationeditor/main/resources/less/layout.less +++ b/apps/presentationeditor/main/resources/less/layout.less @@ -51,6 +51,7 @@ label { background-color: @background-toolbar-ie; background-color: @background-toolbar; overflow: hidden; + scroll-behavior: smooth; // chromium bug890248 (Bug 39614) } .layout-region { diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js index dd5e3385c..574c767e9 100644 --- a/apps/spreadsheeteditor/main/app/controller/Main.js +++ b/apps/spreadsheeteditor/main/app/controller/Main.js @@ -299,6 +299,14 @@ define([ } }); + Common.Utils.isChrome && $(document.body).on('keydown', 'textarea', function(e) {// chromium bug890248 (Bug 39614) + if (e.keyCode===Common.UI.Keys.PAGEUP || e.keyCode===Common.UI.Keys.PAGEDOWN) { + setTimeout(function(){ + $('#viewport').scrollLeft(0); + $('#viewport').scrollTop(0); + }, 0); + } + }); Common.NotificationCenter.on({ 'modal:show': function(e){ Common.Utils.ModalWindow.show(); diff --git a/apps/spreadsheeteditor/main/resources/less/layout.less b/apps/spreadsheeteditor/main/resources/less/layout.less index b88d75590..1bf1a43c8 100644 --- a/apps/spreadsheeteditor/main/resources/less/layout.less +++ b/apps/spreadsheeteditor/main/resources/less/layout.less @@ -35,6 +35,7 @@ label { background-color: @background-toolbar-ie; background-color: @background-toolbar; overflow: hidden; + scroll-behavior: smooth; // chromium bug890248 (Bug 39614) } .layout-region { From 2d0e40d9c5900ea3977ed69ea4dd8a2b0af803b9 Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Tue, 21 Dec 2021 12:02:49 +0300 Subject: [PATCH 144/217] [DE PE SSE] Fix Bug 54511 # Conflicts: # apps/common/mobile/resources/less/about.less # apps/common/mobile/resources/less/common.less --- apps/common/mobile/resources/less/about.less | 6 +++--- apps/common/mobile/resources/less/common.less | 4 +++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/apps/common/mobile/resources/less/about.less b/apps/common/mobile/resources/less/about.less index d6db70510..8299cd565 100644 --- a/apps/common/mobile/resources/less/about.less +++ b/apps/common/mobile/resources/less/about.less @@ -13,9 +13,9 @@ .content-block { margin: 0 auto 15px; - // a { - // color: @text-normal; - // } + a { + color: @text-normal; + } } .settings-about-logo { diff --git a/apps/common/mobile/resources/less/common.less b/apps/common/mobile/resources/less/common.less index 2c413cf4e..1a609b498 100644 --- a/apps/common/mobile/resources/less/common.less +++ b/apps/common/mobile/resources/less/common.less @@ -154,7 +154,9 @@ .about { .content-block { margin: 0 auto 15px; - p:last-child { + + p:last-child a{ + color: var(--brand-word); text-decoration: underline; } } From 3adfcfd9cedca46c3d82c065b09b3cd698e4d884 Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Thu, 23 Dec 2021 09:30:17 +0300 Subject: [PATCH 145/217] [SSE] Fix Bug 51255 --- apps/spreadsheeteditor/mobile/src/less/statusbar.less | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/spreadsheeteditor/mobile/src/less/statusbar.less b/apps/spreadsheeteditor/mobile/src/less/statusbar.less index f3c9c4b0d..f01a7287a 100644 --- a/apps/spreadsheeteditor/mobile/src/less/statusbar.less +++ b/apps/spreadsheeteditor/mobile/src/less/statusbar.less @@ -24,6 +24,11 @@ text-align: center; height: 100%; position: relative; + + &.active { + background-color: @background-secondary; + font-weight: 600; + } .hairline(right, @background-menu-divider); } From 7f56681957ebc5f4ed2e545d79b41a0c19e879e5 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 15 Feb 2022 13:30:50 +0300 Subject: [PATCH 146/217] [PE] For Bug 52346: refactoring table styles loading --- .../main/app/view/TableSettings.js | 122 +++++++++++------- 1 file changed, 76 insertions(+), 46 deletions(-) diff --git a/apps/presentationeditor/main/app/view/TableSettings.js b/apps/presentationeditor/main/app/view/TableSettings.js index d57f7764b..744cb00a8 100644 --- a/apps/presentationeditor/main/app/view/TableSettings.js +++ b/apps/presentationeditor/main/app/view/TableSettings.js @@ -72,7 +72,7 @@ define([ this._initSettings = true; this._state = { - TemplateId: 0, + TemplateId: undefined, CheckHeader: false, CheckTotal: false, CheckBanded: false, @@ -82,7 +82,10 @@ define([ BackColor: '#000000', DisabledControls: false, Width: null, - Height: null + Height: null, + beginPreviewStyles: true, + previewStylesCount: -1, + currentStyleFound: false }; this.spinners = []; this.lockedControls = []; @@ -220,6 +223,9 @@ define([ this.api = o; if (o) { this.api.asc_registerCallback('asc_onInitTableTemplates', _.bind(this.onInitTableTemplates, this)); + this.api.asc_registerCallback('asc_onBeginTableStylesPreview', _.bind(this.onBeginTableStylesPreview, this)); + this.api.asc_registerCallback('asc_onAddTableStylesPreview', _.bind(this.onAddTableStylesPreview, this)); + this.api.asc_registerCallback('asc_onEndTableStylesPreview', _.bind(this.onEndTableStylesPreview, this)); } return this; }, @@ -464,19 +470,12 @@ define([ //for table-template value = props.get_TableStyle(); if (this._state.TemplateId!==value || this._isTemplatesChanged) { - var rec = this.mnuTableTemplatePicker.store.findWhere({ - templateId: value - }); - if (!rec) { - rec = this.mnuTableTemplatePicker.store.at(0); - } - this.btnTableTemplate.suspendEvents(); - 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 52px'}); - this._state.TemplateId = value; + var template = this.api.asc_getTableStylesPreviews(false, [this._state.TemplateId]); + if (template && template.length>0) + this.$el.find('.icon-template-table').css({'background-image': 'url(' + template[0].asc_getImage() + ')', 'height': '52px', 'width': '72px', 'background-position': 'center', 'background-size': 'auto 52px'}); + this._state.currentStyleFound = false; + this.selectCurrentTableStyle(); } this._isTemplatesChanged = false; @@ -673,6 +672,66 @@ define([ !this.btnBorderColor.isAutoColor() && this.btnBorderColor.setColor(this.borderColor.getColor()); }, + selectCurrentTableStyle: function() { + if (!this.mnuTableTemplatePicker || this._state.beginPreviewStyles) return; + + var rec = this.mnuTableTemplatePicker.store.findWhere({ + templateId: this._state.TemplateId + }); + if (!rec && this._state.previewStylesCount===this.mnuTableTemplatePicker.store.length) { + rec = this.mnuTableTemplatePicker.store.at(0); + } + if (rec) { + this._state.currentStyleFound = true; + this.btnTableTemplate.suspendEvents(); + 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 52px'}); + } + }, + + onBeginTableStylesPreview: function(count){ + this._state.beginPreviewStyles = true; + this._state.currentStyleFound = false; + this._state.previewStylesCount = count; + }, + + onEndTableStylesPreview: function(){ + !this._state.currentStyleFound && this.selectCurrentTableStyle(); + if (this.mnuTableTemplatePicker) { + this.mnuTableTemplatePicker.scroller.update({alwaysVisibleY: true}); + if (this.mnuTableTemplatePicker.isVisible()) + this.mnuTableTemplatePicker.scrollToRecord(this.mnuTableTemplatePicker.getSelectedRec()); + } + }, + + onAddTableStylesPreview: function(Templates){ + var self = this; + var arr = []; + _.each(Templates, function(template){ + var tip = template.asc_getDisplayName(); + if (template.asc_getType()==0) { + ['No Style', 'No Grid', 'Table Grid', 'Themed Style', 'Light Style', 'Medium Style', 'Dark Style', 'Accent'].forEach(function(item){ + var str = 'txtTable_' + item.replace(' ', ''); + if (self[str]) + tip = tip.replace(new RegExp(item, 'g'), self[str]); + }); + } + arr.push({ + imageUrl: template.asc_getImage(), + id : Common.UI.getId(), + templateId: template.asc_getId(), + tip : tip + }); + }); + if (this._state.beginPreviewStyles) { + this._state.beginPreviewStyles = false; + self.mnuTableTemplatePicker.store.reset(arr); + } else + self.mnuTableTemplatePicker.store.add(arr); + !this._state.currentStyleFound && this.selectCurrentTableStyle(); + }, + onInitTableTemplates: function(){ if (this._initSettings) { this._tableTemplates = true; @@ -682,7 +741,6 @@ define([ }, _onInitTemplates: function(){ - var Templates = this.api.asc_getTableStylesPreviews(); var self = this; this._isTemplatesChanged = true; @@ -713,39 +771,11 @@ define([ }); }); this.btnTableTemplate.render($('#table-btn-template')); + this.btnTableTemplate.cmpEl.find('.icon-template-table').css({'height': '52px', 'width': '72px', 'background-position': 'center', 'background-size': 'auto 52px'}); this.lockedControls.push(this.btnTableTemplate); this.mnuTableTemplatePicker.on('item:click', _.bind(this.onTableTemplateSelect, this, this.btnTableTemplate)); } - - var count = self.mnuTableTemplatePicker.store.length; - if (count>0 && count==Templates.length) { - var data = self.mnuTableTemplatePicker.dataViewItems; - data && _.each(Templates, function(template, index){ - var img = template.asc_getImage(); - data[index].model.set('imageUrl', img, {silent: true}); - $(data[index].el).find('img').attr('src', img); - }); - } else { - var arr = []; - _.each(Templates, function(template){ - var tip = template.asc_getDisplayName(); - if (template.asc_getType()==0) { - ['No Style', 'No Grid', 'Table Grid', 'Themed Style', 'Light Style', 'Medium Style', 'Dark Style', 'Accent'].forEach(function(item){ - var str = 'txtTable_' + item.replace(' ', ''); - if (self[str]) - tip = tip.replace(new RegExp(item, 'g'), self[str]); - }); - - } - arr.push({ - imageUrl: template.asc_getImage(), - id : Common.UI.getId(), - templateId: template.asc_getId(), - tip : tip - }); - }); - self.mnuTableTemplatePicker.store.reset(arr); - } + this.api.asc_generateTableStylesPreviews(); }, openAdvancedSettings: function(e) { @@ -791,7 +821,7 @@ define([ _.each(this.lockedControls, function(item) { item.setDisabled(disable); }); - this.linkAdvanced.toggleClass('disabled', disable); + this.linkAdvanced && this.linkAdvanced.toggleClass('disabled', disable); } }, From 356db1de10771a66a594dcb241a10f6877176de2 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 15 Feb 2022 13:31:14 +0300 Subject: [PATCH 147/217] [DE] Fix current table style --- apps/documenteditor/main/app/view/TableSettings.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/apps/documenteditor/main/app/view/TableSettings.js b/apps/documenteditor/main/app/view/TableSettings.js index 6369b0517..864408c8e 100644 --- a/apps/documenteditor/main/app/view/TableSettings.js +++ b/apps/documenteditor/main/app/view/TableSettings.js @@ -239,7 +239,6 @@ define([ this.api.asc_registerCallback('asc_onBeginTableStylesPreview', _.bind(this.onBeginTableStylesPreview, this)); this.api.asc_registerCallback('asc_onAddTableStylesPreview', _.bind(this.onAddTableStylesPreview, this)); this.api.asc_registerCallback('asc_onEndTableStylesPreview', _.bind(this.onEndTableStylesPreview, this)); - } return this; }, @@ -766,7 +765,11 @@ define([ onEndTableStylesPreview: function(){ !this._state.currentStyleFound && this.selectCurrentTableStyle(); - this.mnuTableTemplatePicker && this.mnuTableTemplatePicker.scroller.update({alwaysVisibleY: true}); + if (this.mnuTableTemplatePicker) { + this.mnuTableTemplatePicker.scroller.update({alwaysVisibleY: true}); + if (this.mnuTableTemplatePicker.isVisible()) + this.mnuTableTemplatePicker.scrollToRecord(this.mnuTableTemplatePicker.getSelectedRec()); + } }, onAddTableStylesPreview: function(Templates){ From 66aba2f599af37c2eb9bb0cf162224254d28c286 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 15 Feb 2022 13:33:50 +0300 Subject: [PATCH 148/217] [DE][PE][SSE] Hide text rect for crop images --- apps/documenteditor/main/app/view/ImageSettings.js | 2 +- apps/presentationeditor/main/app/view/ImageSettings.js | 2 +- apps/spreadsheeteditor/main/app/view/ImageSettings.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/documenteditor/main/app/view/ImageSettings.js b/apps/documenteditor/main/app/view/ImageSettings.js index 75bf8e06e..5f60017b4 100644 --- a/apps/documenteditor/main/app/view/ImageSettings.js +++ b/apps/documenteditor/main/app/view/ImageSettings.js @@ -352,7 +352,7 @@ define([ restoreHeight: 652, textRecentlyUsed: me.textRecentlyUsed, recentShapes: recents ? JSON.parse(recents) : null, - isFromImage: true + hideTextRect: true }); shapePicker.on('item:click', function(picker, item, record, e) { if (me.api) { diff --git a/apps/presentationeditor/main/app/view/ImageSettings.js b/apps/presentationeditor/main/app/view/ImageSettings.js index 551e5b743..5a9d03384 100644 --- a/apps/presentationeditor/main/app/view/ImageSettings.js +++ b/apps/presentationeditor/main/app/view/ImageSettings.js @@ -298,7 +298,7 @@ define([ restoreHeight: 652, textRecentlyUsed: me.textRecentlyUsed, recentShapes: recents ? JSON.parse(recents) : null, - isFromImage: true + hideTextRect: true }); shapePicker.on('item:click', function(picker, item, record, e) { if (me.api) { diff --git a/apps/spreadsheeteditor/main/app/view/ImageSettings.js b/apps/spreadsheeteditor/main/app/view/ImageSettings.js index bf2f3aa9a..e8d6404d8 100644 --- a/apps/spreadsheeteditor/main/app/view/ImageSettings.js +++ b/apps/spreadsheeteditor/main/app/view/ImageSettings.js @@ -388,7 +388,7 @@ define([ restoreHeight: 652, textRecentlyUsed: me.textRecentlyUsed, recentShapes: recents ? JSON.parse(recents) : null, - isFromImage: true + hideTextRect: true }); shapePicker.on('item:click', function(picker, item, record, e) { if (me.api) { From 8ec3af85003df8539a4bf8d94e325479622b2300 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 15 Feb 2022 13:49:03 +0300 Subject: [PATCH 149/217] Add title for editor frame --- apps/api/documents/api.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/apps/api/documents/api.js b/apps/api/documents/api.js index f7b3f9f71..f7e0189e8 100644 --- a/apps/api/documents/api.js +++ b/apps/api/documents/api.js @@ -971,6 +971,25 @@ return params; } + function getFrameTitle(config) { + var title = 'Powerful online editor for text documents, spreadsheets, and presentations'; + var appMap = { + 'text': 'text documents', + 'spreadsheet': 'spreadsheets', + 'presentation': 'presentations', + 'word': 'text documents', + 'cell': 'spreadsheets', + 'slide': 'presentations' + }; + + if (typeof config.documentType === 'string') { + var app = appMap[config.documentType.toLowerCase()]; + if (app) + title = 'Powerful online editor for ' + app; + } + return title; + } + function createIframe(config) { var iframe = document.createElement("iframe"); @@ -980,6 +999,7 @@ iframe.align = "top"; iframe.frameBorder = 0; iframe.name = "frameEditor"; + iframe.title = getFrameTitle(config); iframe.allowFullscreen = true; iframe.setAttribute("allowfullscreen",""); // for IE11 iframe.setAttribute("onmousewheel",""); // for Safari on Mac From 6118c6f23213bc301bb708e36c9b58ae9b55c0b8 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 15 Feb 2022 16:50:12 +0300 Subject: [PATCH 150/217] Fix inline svg icons (scroll appears when window has small width) --- apps/common/main/resources/img/doc-formats/csv.svg | 2 +- apps/common/main/resources/img/doc-formats/djvu.svg | 2 +- apps/common/main/resources/img/doc-formats/docm.svg | 2 +- apps/common/main/resources/img/doc-formats/docx.svg | 2 +- apps/common/main/resources/img/doc-formats/docxf.svg | 2 +- apps/common/main/resources/img/doc-formats/dotx.svg | 2 +- apps/common/main/resources/img/doc-formats/epub.svg | 2 +- apps/common/main/resources/img/doc-formats/fb2.svg | 2 +- apps/common/main/resources/img/doc-formats/html.svg | 2 +- apps/common/main/resources/img/doc-formats/jpg.svg | 2 +- apps/common/main/resources/img/doc-formats/odp.svg | 2 +- apps/common/main/resources/img/doc-formats/ods.svg | 2 +- apps/common/main/resources/img/doc-formats/odt.svg | 2 +- apps/common/main/resources/img/doc-formats/oform.svg | 2 +- apps/common/main/resources/img/doc-formats/otp.svg | 2 +- apps/common/main/resources/img/doc-formats/ots.svg | 2 +- apps/common/main/resources/img/doc-formats/ott.svg | 2 +- apps/common/main/resources/img/doc-formats/oxps.svg | 2 +- apps/common/main/resources/img/doc-formats/pdf.svg | 2 +- apps/common/main/resources/img/doc-formats/pdfa.svg | 2 +- apps/common/main/resources/img/doc-formats/png.svg | 2 +- apps/common/main/resources/img/doc-formats/potx.svg | 2 +- apps/common/main/resources/img/doc-formats/ppsx.svg | 2 +- apps/common/main/resources/img/doc-formats/pptm.svg | 2 +- apps/common/main/resources/img/doc-formats/pptx.svg | 2 +- apps/common/main/resources/img/doc-formats/rtf.svg | 2 +- apps/common/main/resources/img/doc-formats/txt.svg | 2 +- apps/common/main/resources/img/doc-formats/xlsm.svg | 2 +- apps/common/main/resources/img/doc-formats/xlsx.svg | 2 +- apps/common/main/resources/img/doc-formats/xltx.svg | 2 +- apps/common/main/resources/img/doc-formats/xps.svg | 2 +- 31 files changed, 31 insertions(+), 31 deletions(-) diff --git a/apps/common/main/resources/img/doc-formats/csv.svg b/apps/common/main/resources/img/doc-formats/csv.svg index 57371d726..41be9da1a 100644 --- a/apps/common/main/resources/img/doc-formats/csv.svg +++ b/apps/common/main/resources/img/doc-formats/csv.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/djvu.svg b/apps/common/main/resources/img/doc-formats/djvu.svg index 1b5927051..a318cff21 100644 --- a/apps/common/main/resources/img/doc-formats/djvu.svg +++ b/apps/common/main/resources/img/doc-formats/djvu.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/docm.svg b/apps/common/main/resources/img/doc-formats/docm.svg index 9fe4cdb4e..6a17105c9 100644 --- a/apps/common/main/resources/img/doc-formats/docm.svg +++ b/apps/common/main/resources/img/doc-formats/docm.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/docx.svg b/apps/common/main/resources/img/doc-formats/docx.svg index 00a06d1e6..12839165e 100644 --- a/apps/common/main/resources/img/doc-formats/docx.svg +++ b/apps/common/main/resources/img/doc-formats/docx.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/docxf.svg b/apps/common/main/resources/img/doc-formats/docxf.svg index 248d8df47..c5b1846c3 100644 --- a/apps/common/main/resources/img/doc-formats/docxf.svg +++ b/apps/common/main/resources/img/doc-formats/docxf.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/dotx.svg b/apps/common/main/resources/img/doc-formats/dotx.svg index 06d5b8d8a..b13d8c92f 100644 --- a/apps/common/main/resources/img/doc-formats/dotx.svg +++ b/apps/common/main/resources/img/doc-formats/dotx.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/epub.svg b/apps/common/main/resources/img/doc-formats/epub.svg index 8532668f3..ef7ed8564 100644 --- a/apps/common/main/resources/img/doc-formats/epub.svg +++ b/apps/common/main/resources/img/doc-formats/epub.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/fb2.svg b/apps/common/main/resources/img/doc-formats/fb2.svg index fcfb1fee2..fc2472911 100644 --- a/apps/common/main/resources/img/doc-formats/fb2.svg +++ b/apps/common/main/resources/img/doc-formats/fb2.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/html.svg b/apps/common/main/resources/img/doc-formats/html.svg index 71757a0b1..212e63e09 100644 --- a/apps/common/main/resources/img/doc-formats/html.svg +++ b/apps/common/main/resources/img/doc-formats/html.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/jpg.svg b/apps/common/main/resources/img/doc-formats/jpg.svg index b04feaf76..68d4c826e 100644 --- a/apps/common/main/resources/img/doc-formats/jpg.svg +++ b/apps/common/main/resources/img/doc-formats/jpg.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/odp.svg b/apps/common/main/resources/img/doc-formats/odp.svg index f48451ef4..3fc77de30 100644 --- a/apps/common/main/resources/img/doc-formats/odp.svg +++ b/apps/common/main/resources/img/doc-formats/odp.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/ods.svg b/apps/common/main/resources/img/doc-formats/ods.svg index 597c63b92..0356d3255 100644 --- a/apps/common/main/resources/img/doc-formats/ods.svg +++ b/apps/common/main/resources/img/doc-formats/ods.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/odt.svg b/apps/common/main/resources/img/doc-formats/odt.svg index d0a46d62c..c2122c0a4 100644 --- a/apps/common/main/resources/img/doc-formats/odt.svg +++ b/apps/common/main/resources/img/doc-formats/odt.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/oform.svg b/apps/common/main/resources/img/doc-formats/oform.svg index 9e2067a69..80dba56e1 100644 --- a/apps/common/main/resources/img/doc-formats/oform.svg +++ b/apps/common/main/resources/img/doc-formats/oform.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/otp.svg b/apps/common/main/resources/img/doc-formats/otp.svg index 70162b9a6..70dcbc974 100644 --- a/apps/common/main/resources/img/doc-formats/otp.svg +++ b/apps/common/main/resources/img/doc-formats/otp.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/ots.svg b/apps/common/main/resources/img/doc-formats/ots.svg index b2c78e26a..96aef7046 100644 --- a/apps/common/main/resources/img/doc-formats/ots.svg +++ b/apps/common/main/resources/img/doc-formats/ots.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/ott.svg b/apps/common/main/resources/img/doc-formats/ott.svg index 12d1ef7de..b2a7e1a43 100644 --- a/apps/common/main/resources/img/doc-formats/ott.svg +++ b/apps/common/main/resources/img/doc-formats/ott.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/oxps.svg b/apps/common/main/resources/img/doc-formats/oxps.svg index cdab1aab9..58d22cca5 100644 --- a/apps/common/main/resources/img/doc-formats/oxps.svg +++ b/apps/common/main/resources/img/doc-formats/oxps.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/pdf.svg b/apps/common/main/resources/img/doc-formats/pdf.svg index dcc75cd88..8c9a6ed5a 100644 --- a/apps/common/main/resources/img/doc-formats/pdf.svg +++ b/apps/common/main/resources/img/doc-formats/pdf.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/pdfa.svg b/apps/common/main/resources/img/doc-formats/pdfa.svg index 6ab7465d3..ef9a17b4e 100644 --- a/apps/common/main/resources/img/doc-formats/pdfa.svg +++ b/apps/common/main/resources/img/doc-formats/pdfa.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/png.svg b/apps/common/main/resources/img/doc-formats/png.svg index 58aef71e3..59d7edf61 100644 --- a/apps/common/main/resources/img/doc-formats/png.svg +++ b/apps/common/main/resources/img/doc-formats/png.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/potx.svg b/apps/common/main/resources/img/doc-formats/potx.svg index bd44a8cef..150957769 100644 --- a/apps/common/main/resources/img/doc-formats/potx.svg +++ b/apps/common/main/resources/img/doc-formats/potx.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/ppsx.svg b/apps/common/main/resources/img/doc-formats/ppsx.svg index 044ffa5d8..37ab966b2 100644 --- a/apps/common/main/resources/img/doc-formats/ppsx.svg +++ b/apps/common/main/resources/img/doc-formats/ppsx.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/pptm.svg b/apps/common/main/resources/img/doc-formats/pptm.svg index ead96f9dd..7c15a6807 100644 --- a/apps/common/main/resources/img/doc-formats/pptm.svg +++ b/apps/common/main/resources/img/doc-formats/pptm.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/pptx.svg b/apps/common/main/resources/img/doc-formats/pptx.svg index 00f235aaf..51a385103 100644 --- a/apps/common/main/resources/img/doc-formats/pptx.svg +++ b/apps/common/main/resources/img/doc-formats/pptx.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/rtf.svg b/apps/common/main/resources/img/doc-formats/rtf.svg index 5ac84e796..1b613a81d 100644 --- a/apps/common/main/resources/img/doc-formats/rtf.svg +++ b/apps/common/main/resources/img/doc-formats/rtf.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/txt.svg b/apps/common/main/resources/img/doc-formats/txt.svg index b9b0e9626..bed12e3f8 100644 --- a/apps/common/main/resources/img/doc-formats/txt.svg +++ b/apps/common/main/resources/img/doc-formats/txt.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/xlsm.svg b/apps/common/main/resources/img/doc-formats/xlsm.svg index 5a9c956f9..347be30e4 100644 --- a/apps/common/main/resources/img/doc-formats/xlsm.svg +++ b/apps/common/main/resources/img/doc-formats/xlsm.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/xlsx.svg b/apps/common/main/resources/img/doc-formats/xlsx.svg index e00d4f373..277d27536 100644 --- a/apps/common/main/resources/img/doc-formats/xlsx.svg +++ b/apps/common/main/resources/img/doc-formats/xlsx.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/xltx.svg b/apps/common/main/resources/img/doc-formats/xltx.svg index a52ef8e23..f676c3772 100644 --- a/apps/common/main/resources/img/doc-formats/xltx.svg +++ b/apps/common/main/resources/img/doc-formats/xltx.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/xps.svg b/apps/common/main/resources/img/doc-formats/xps.svg index cbebe0aa2..97a062128 100644 --- a/apps/common/main/resources/img/doc-formats/xps.svg +++ b/apps/common/main/resources/img/doc-formats/xps.svg @@ -1,4 +1,4 @@ - + From bbdec163adc1675db19c751e8121475df96bba96 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Tue, 15 Feb 2022 20:23:15 +0300 Subject: [PATCH 151/217] [DE PE SSE] Fix shape menu component --- apps/common/main/lib/component/DataView.js | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/apps/common/main/lib/component/DataView.js b/apps/common/main/lib/component/DataView.js index 80f5a65fa..3444a6c88 100644 --- a/apps/common/main/lib/component/DataView.js +++ b/apps/common/main/lib/component/DataView.js @@ -1579,11 +1579,8 @@ define([ selected: false, groupName: groupName }; - me.recentShapes.unshift(model); - if (me.recentShapes.length > 12) { - me.recentShapes.splice(12, 1); - } - Common.localStorage.setItem(this.appPrefix + 'recent-shapes', JSON.stringify(me.recentShapes)); + var arr = [model].concat(me.recentShapes.slice(0, 11)); + Common.localStorage.setItem(this.appPrefix + 'recent-shapes', JSON.stringify(arr)); me.recentShapes = undefined; }, updateRecents: function () { From f52b50ae676ec6d1ad3a42d647c37d2c634858fd Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 15 Feb 2022 22:36:49 +0300 Subject: [PATCH 152/217] [DE] Use default settings for pdf download --- .../main/app/controller/LeftMenu.js | 30 +++++++------------ .../main/app/controller/Main.js | 10 ++++++- apps/documenteditor/main/locale/en.json | 1 + 3 files changed, 20 insertions(+), 21 deletions(-) diff --git a/apps/documenteditor/main/app/controller/LeftMenu.js b/apps/documenteditor/main/app/controller/LeftMenu.js index 59c2df39d..08cc58f48 100644 --- a/apps/documenteditor/main/app/controller/LeftMenu.js +++ b/apps/documenteditor/main/app/controller/LeftMenu.js @@ -374,22 +374,16 @@ define([ } else if (format == Asc.c_oAscFileType.PDF || format == Asc.c_oAscFileType.PDFA) this._saveAsFormat(menu, format, ext); else { - (new Common.Views.OptionsDialog({ - width: 300, - title: this.titleConvertOptions, - label: this.textGroup, - items: [ - {caption: this.textChar, value: Asc.c_oAscTextAssociation.BlockChar, checked: true}, - {caption: this.textLine, value: Asc.c_oAscTextAssociation.BlockLine, checked: false}, - {caption: this.textParagraph, value: Asc.c_oAscTextAssociation.PlainLine, checked: false} - ], - handler: function (dlg, result) { - if (result=='ok') { - me._saveAsFormat(menu, format, ext, new AscCommon.asc_CTextParams(dlg.getSettings())); + Common.UI.warning({ + title: this.notcriticalErrorTitle, + msg: this.warnDownloadAsPdf, + buttons: ['ok', 'cancel'], + callback: _.bind(function(btn){ + if (btn == 'ok') { + me._saveAsFormat(menu, format, ext, new AscCommon.asc_CTextParams(Asc.c_oAscTextAssociation.PlainLine)); } - Common.NotificationCenter.trigger('edit:complete', me.toolbar); - } - })).show(); + }, this) + }); } } else this._saveAsFormat(menu, format, ext); @@ -930,11 +924,7 @@ define([ warnDownloadAsRTF : 'If you continue saving in this format some of the formatting might be lost.
Are you sure you want to continue?', txtUntitled: 'Untitled', txtCompatible: 'The document will be saved to the new format. It will allow to use all the editor features, but might affect the document layout.
Use the \'Compatibility\' option of the advanced settings if you want to make the files compatible with older MS Word versions.', - titleConvertOptions: 'Grouping options', - textGroup: 'Group by', - textChar: 'Char', - textLine: 'Line', - textParagraph: 'Paragraph' + warnDownloadAsPdf: 'If you continue saving in this format some of the formatting might be lost.
Are you sure you want to continue?' }, DE.Controllers.LeftMenu || {})); }); \ No newline at end of file diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index ebd4a4137..d137d0c24 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -552,6 +552,7 @@ define([ this._state.isFromGatewayDownloadAs = true; var _format = (format && (typeof format == 'string')) ? Asc.c_oAscFileType[ format.toUpperCase() ] : null, _defaultFormat = null, + textParams, _supported = [ Asc.c_oAscFileType.TXT, Asc.c_oAscFileType.RTF, @@ -575,6 +576,7 @@ define([ else if (/^djvu$/.test(this.document.fileType)) { _supported = [Asc.c_oAscFileType.PDF]; } + textParams = new AscCommon.asc_CTextParams(Asc.c_oAscTextAssociation.PlainLine); } else { _supported = _supported.concat([Asc.c_oAscFileType.PDF, Asc.c_oAscFileType.PDFA]); _defaultFormat = Asc.c_oAscFileType.DOCX; @@ -584,7 +586,13 @@ define([ } if ( !_format || _supported.indexOf(_format) < 0 ) _format = _defaultFormat; - _format ? this.api.asc_DownloadAs(new Asc.asc_CDownloadOptions(_format, true)) : this.api.asc_DownloadOrigin(true); + if (_format) { + var options = new Asc.asc_CDownloadOptions(_format, true); + textParams && options.asc_setTextParams(textParams); + this.api.asc_DownloadAs(options); + } else { + this.api.asc_DownloadOrigin(true); + } }, onProcessMouse: function(data) { diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index bf17005a1..7e3be3041 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -513,6 +513,7 @@ "DE.Controllers.LeftMenu.txtUntitled": "Untitled", "DE.Controllers.LeftMenu.warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "If you continue saving in this format some of the formatting might be lost.
Are you sure you want to continue?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "If you continue saving in this format some of the formatting might be lost.
Are you sure you want to continue?", "DE.Controllers.Main.applyChangesTextText": "Loading the changes...", "DE.Controllers.Main.applyChangesTitleText": "Loading the Changes", "DE.Controllers.Main.convertationTimeoutText": "Conversion timeout exceeded.", From dbb5613fe4dbaac122c44c0faab1567b8eceb87a Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 15 Feb 2022 22:46:54 +0300 Subject: [PATCH 153/217] Fix Bug 55064 --- apps/documenteditor/main/app/controller/LeftMenu.js | 1 - apps/documenteditor/main/app/controller/Toolbar.js | 1 - apps/presentationeditor/main/app/controller/Toolbar.js | 1 - apps/spreadsheeteditor/main/app/controller/Toolbar.js | 1 - 4 files changed, 4 deletions(-) diff --git a/apps/documenteditor/main/app/controller/LeftMenu.js b/apps/documenteditor/main/app/controller/LeftMenu.js index 08cc58f48..bcb9e0e02 100644 --- a/apps/documenteditor/main/app/controller/LeftMenu.js +++ b/apps/documenteditor/main/app/controller/LeftMenu.js @@ -314,7 +314,6 @@ define([ options.asc_setTextParams(textParams); if (format == Asc.c_oAscFileType.TXT || format == Asc.c_oAscFileType.RTF) { Common.UI.warning({ - closable: false, title: this.notcriticalErrorTitle, msg: (format == Asc.c_oAscFileType.TXT) ? this.warnDownloadAs : this.warnDownloadAsRTF, buttons: ['ok', 'cancel'], diff --git a/apps/documenteditor/main/app/controller/Toolbar.js b/apps/documenteditor/main/app/controller/Toolbar.js index 170f30824..a66896dd9 100644 --- a/apps/documenteditor/main/app/controller/Toolbar.js +++ b/apps/documenteditor/main/app/controller/Toolbar.js @@ -1289,7 +1289,6 @@ define([ !Common.Utils.ModalWindow.isVisible() && Common.UI.warning({ width: 500, - closable: false, msg: this.confirmAddFontName, buttons: ['yes', 'no'], primary: 'yes', diff --git a/apps/presentationeditor/main/app/controller/Toolbar.js b/apps/presentationeditor/main/app/controller/Toolbar.js index a36e7b6ed..4d863cbf0 100644 --- a/apps/presentationeditor/main/app/controller/Toolbar.js +++ b/apps/presentationeditor/main/app/controller/Toolbar.js @@ -1272,7 +1272,6 @@ define([ !Common.Utils.ModalWindow.isVisible() && Common.UI.warning({ width: 500, - closable: false, msg: this.confirmAddFontName, buttons: ['yes', 'no'], primary: 'yes', diff --git a/apps/spreadsheeteditor/main/app/controller/Toolbar.js b/apps/spreadsheeteditor/main/app/controller/Toolbar.js index b85de925e..834cfd680 100644 --- a/apps/spreadsheeteditor/main/app/controller/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/controller/Toolbar.js @@ -1573,7 +1573,6 @@ define([ !Common.Utils.ModalWindow.isVisible() && Common.UI.warning({ width: 500, - closable: false, msg: this.confirmAddFontName, buttons: ['yes', 'no'], primary: 'yes', From 09eeb5ad4f827caa5124f93f866655906216b55e Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Wed, 16 Feb 2022 11:05:41 +0300 Subject: [PATCH 154/217] [SSE] Fix Bug 54924 --- .../mobile/lib/view/collaboration/Comments.jsx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/apps/common/mobile/lib/view/collaboration/Comments.jsx b/apps/common/mobile/lib/view/collaboration/Comments.jsx index 7675b860f..582a7bd99 100644 --- a/apps/common/mobile/lib/view/collaboration/Comments.jsx +++ b/apps/common/mobile/lib/view/collaboration/Comments.jsx @@ -639,6 +639,7 @@ const ViewComments = inject("storeComments", "storeAppOptions", "storeReview")(o const viewMode = !storeAppOptions.canComments; const comments = storeComments.groupCollectionFilter || storeComments.collectionComments; + const isEdit = storeAppOptions.isEdit; const sortComments = comments.length > 0 ? [...comments].sort((a, b) => a.time > b.time ? -1 : 1) : null; const [clickComment, setComment] = useState(); @@ -674,7 +675,7 @@ const ViewComments = inject("storeComments", "storeAppOptions", "storeReview")(o
{comment.date}
- {!viewMode && + {isEdit && !viewMode &&
{(comment.editable && displayMode === 'markup' && !wsProps?.Objects) &&
{onResolveComment(comment);}}>
} {(displayMode === 'markup' && !wsProps?.Objects) && @@ -707,7 +708,7 @@ const ViewComments = inject("storeComments", "storeAppOptions", "storeReview")(o
{reply.date}
- {!viewMode && reply.editable && + {isEdit && !viewMode && reply.editable &&
{setComment(comment); setReply(reply); openActionReply(true);}} @@ -748,6 +749,7 @@ const CommentList = inject("storeComments", "storeAppOptions", "storeReview")(ob const displayMode = storeReview.displayMode; const viewMode = !storeAppOptions.canComments; + const isEdit = storeAppOptions.isEdit; const comments = storeComments.showComments; const [currentIndex, setCurrentIndex] = useState(0); @@ -784,7 +786,7 @@ const CommentList = inject("storeComments", "storeAppOptions", "storeReview")(ob return ( - {!viewMode && + {isEdit && !viewMode && {onCommentMenuClick('addReply', comment);}}>{_t.textAddReply} }
@@ -804,7 +806,7 @@ const CommentList = inject("storeComments", "storeAppOptions", "storeReview")(ob
{comment.date}
- {!viewMode && + {isEdit && !viewMode &&
{(comment.editable && displayMode === 'markup' && !wsProps?.Objects) &&
{onResolveComment(comment);}}>
} {(displayMode === 'markup' && !wsProps?.Objects) && @@ -837,7 +839,7 @@ const CommentList = inject("storeComments", "storeAppOptions", "storeReview")(ob
{reply.date}
- {!viewMode && reply.editable && + {isEdit && !viewMode && reply.editable &&
{setReply(reply); openActionReply(true);}} From 0da0ae7e675e4a2e47dbb09353fbce08cb87a3de Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 16 Feb 2022 11:30:36 +0300 Subject: [PATCH 155/217] [DE] Update translation --- apps/documenteditor/main/app/controller/LeftMenu.js | 3 ++- apps/documenteditor/main/locale/en.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/documenteditor/main/app/controller/LeftMenu.js b/apps/documenteditor/main/app/controller/LeftMenu.js index bcb9e0e02..51390c5b8 100644 --- a/apps/documenteditor/main/app/controller/LeftMenu.js +++ b/apps/documenteditor/main/app/controller/LeftMenu.js @@ -374,6 +374,7 @@ define([ this._saveAsFormat(menu, format, ext); else { Common.UI.warning({ + width: 600, title: this.notcriticalErrorTitle, msg: this.warnDownloadAsPdf, buttons: ['ok', 'cancel'], @@ -923,7 +924,7 @@ define([ warnDownloadAsRTF : 'If you continue saving in this format some of the formatting might be lost.
Are you sure you want to continue?', txtUntitled: 'Untitled', txtCompatible: 'The document will be saved to the new format. It will allow to use all the editor features, but might affect the document layout.
Use the \'Compatibility\' option of the advanced settings if you want to make the files compatible with older MS Word versions.', - warnDownloadAsPdf: 'If you continue saving in this format some of the formatting might be lost.
Are you sure you want to continue?' + warnDownloadAsPdf: 'Your PDF will be converted to an editable format. This may take a while. The resulting document will be optimized to allow you to edit the text, so it might not look exactly like the original PDF, especially if the original file contained lots of graphics.' }, DE.Controllers.LeftMenu || {})); }); \ No newline at end of file diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 7e3be3041..a9ce29848 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -513,7 +513,7 @@ "DE.Controllers.LeftMenu.txtUntitled": "Untitled", "DE.Controllers.LeftMenu.warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "If you continue saving in this format some of the formatting might be lost.
Are you sure you want to continue?", - "DE.Controllers.LeftMenu.warnDownloadAsPdf": "If you continue saving in this format some of the formatting might be lost.
Are you sure you want to continue?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "Your PDF will be converted to an editable format. This may take a while. The resulting document will be optimized to allow you to edit the text, so it might not look exactly like the original PDF, especially if the original file contained lots of graphics.", "DE.Controllers.Main.applyChangesTextText": "Loading the changes...", "DE.Controllers.Main.applyChangesTitleText": "Loading the Changes", "DE.Controllers.Main.convertationTimeoutText": "Conversion timeout exceeded.", From 3e6bf06d0e45f73a6f4c0bdf295d882e0a7939f3 Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Wed, 16 Feb 2022 12:17:56 +0300 Subject: [PATCH 156/217] [SSE] Fix Bug 55539 --- apps/spreadsheeteditor/mobile/src/less/app.less | 9 +++++++++ apps/spreadsheeteditor/mobile/src/view/FilterOptions.jsx | 6 +++--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/src/less/app.less b/apps/spreadsheeteditor/mobile/src/less/app.less index b22abf0b7..323279360 100644 --- a/apps/spreadsheeteditor/mobile/src/less/app.less +++ b/apps/spreadsheeteditor/mobile/src/less/app.less @@ -164,4 +164,13 @@ border-color: transparent; } } +} + +.sheet-filter, .popover-filter { + ul li:first-child .list-button{ + color: @text-normal; + &::after { + background: @background-menu-divider; + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/src/view/FilterOptions.jsx b/apps/spreadsheeteditor/mobile/src/view/FilterOptions.jsx index 20b77dc1f..87191bf85 100644 --- a/apps/spreadsheeteditor/mobile/src/view/FilterOptions.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/FilterOptions.jsx @@ -55,7 +55,7 @@ const FilterOptions = (props) => { - {_t.textClearFilter} + {_t.textClearFilter} props.onDeleteFilter()} id="btn-delete-filter">{_t.textDeleteFilter} @@ -72,10 +72,10 @@ const FilterOptions = (props) => { const FilterView = (props) => { return ( !Device.phone ? - + : - + ) From 316e12098fbefb8436330b64f66786b25351ed55 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 16 Feb 2022 12:30:41 +0300 Subject: [PATCH 157/217] [DE] Update translation --- apps/documenteditor/main/app/controller/LeftMenu.js | 4 ++-- apps/documenteditor/main/locale/en.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/documenteditor/main/app/controller/LeftMenu.js b/apps/documenteditor/main/app/controller/LeftMenu.js index 51390c5b8..700c1babe 100644 --- a/apps/documenteditor/main/app/controller/LeftMenu.js +++ b/apps/documenteditor/main/app/controller/LeftMenu.js @@ -376,7 +376,7 @@ define([ Common.UI.warning({ width: 600, title: this.notcriticalErrorTitle, - msg: this.warnDownloadAsPdf, + msg: Common.Utils.String.format(this.warnDownloadAsPdf, fileType.toUpperCase()), buttons: ['ok', 'cancel'], callback: _.bind(function(btn){ if (btn == 'ok') { @@ -924,7 +924,7 @@ define([ warnDownloadAsRTF : 'If you continue saving in this format some of the formatting might be lost.
Are you sure you want to continue?', txtUntitled: 'Untitled', txtCompatible: 'The document will be saved to the new format. It will allow to use all the editor features, but might affect the document layout.
Use the \'Compatibility\' option of the advanced settings if you want to make the files compatible with older MS Word versions.', - warnDownloadAsPdf: 'Your PDF will be converted to an editable format. This may take a while. The resulting document will be optimized to allow you to edit the text, so it might not look exactly like the original PDF, especially if the original file contained lots of graphics.' + warnDownloadAsPdf: 'Your {0} will be converted to an editable format. This may take a while. The resulting document will be optimized to allow you to edit the text, so it might not look exactly like the original {0}, especially if the original file contained lots of graphics.' }, DE.Controllers.LeftMenu || {})); }); \ No newline at end of file diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index a9ce29848..29c15f1eb 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -513,7 +513,7 @@ "DE.Controllers.LeftMenu.txtUntitled": "Untitled", "DE.Controllers.LeftMenu.warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "If you continue saving in this format some of the formatting might be lost.
Are you sure you want to continue?", - "DE.Controllers.LeftMenu.warnDownloadAsPdf": "Your PDF will be converted to an editable format. This may take a while. The resulting document will be optimized to allow you to edit the text, so it might not look exactly like the original PDF, especially if the original file contained lots of graphics.", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "Your {0} will be converted to an editable format. This may take a while. The resulting document will be optimized to allow you to edit the text, so it might not look exactly like the original {0}, especially if the original file contained lots of graphics.", "DE.Controllers.Main.applyChangesTextText": "Loading the changes...", "DE.Controllers.Main.applyChangesTitleText": "Loading the Changes", "DE.Controllers.Main.convertationTimeoutText": "Conversion timeout exceeded.", From 4549f3556b9eccfd14eb3b2e41c9ecfa9734708c Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Wed, 16 Feb 2022 13:37:54 +0300 Subject: [PATCH 158/217] [DE PE SSE] Fix Bug 55534 --- apps/common/mobile/resources/less/common-ios.less | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/common/mobile/resources/less/common-ios.less b/apps/common/mobile/resources/less/common-ios.less index ec6c1dea7..060ecd1bc 100644 --- a/apps/common/mobile/resources/less/common-ios.less +++ b/apps/common/mobile/resources/less/common-ios.less @@ -119,6 +119,9 @@ .navbar-bg { //-webkit-backdrop-filter: none; backdrop-filter: none; + &::after { + background: @background-menu-divider; + } } .list:first-child { From 412249db4fd3ed1ac8eacf4153c698b46ff343ea Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 16 Feb 2022 16:06:04 +0300 Subject: [PATCH 159/217] [DE] Chart styles optimization --- .../main/lib/component/ComboDataView.js | 1 + .../main/app/view/ChartSettings.js | 118 +++++++++++++----- 2 files changed, 87 insertions(+), 32 deletions(-) diff --git a/apps/common/main/lib/component/ComboDataView.js b/apps/common/main/lib/component/ComboDataView.js index 7bd9bdc5b..5c66ed722 100644 --- a/apps/common/main/lib/component/ComboDataView.js +++ b/apps/common/main/lib/component/ComboDataView.js @@ -456,6 +456,7 @@ define([ me.resumeEvents(); } } + return me.fieldPicker.store.models; // return list of visible items } } }, diff --git a/apps/documenteditor/main/app/view/ChartSettings.js b/apps/documenteditor/main/app/view/ChartSettings.js index 9c04a460e..53fac90a2 100644 --- a/apps/documenteditor/main/app/view/ChartSettings.js +++ b/apps/documenteditor/main/app/view/ChartSettings.js @@ -75,7 +75,10 @@ define([ ChartStyle: 1, ChartType: -1, SeveralCharts: false, - DisabledControls: false + DisabledControls: false, + // beginPreviewStyles: true, + // previewStylesCount: -1, + // currentStyleFound: false }; this.lockedControls = []; this._locked = false; @@ -102,6 +105,9 @@ define([ if (this.api) { this.api.asc_registerCallback('asc_onImgWrapStyleChanged', _.bind(this._ChartWrapStyleChanged, this)); this.api.asc_registerCallback('asc_onUpdateChartStyles', _.bind(this._onUpdateChartStyles, this)); + this.api.asc_registerCallback('asc_onBeginChartStylesPreview', _.bind(this.onBeginChartStylesPreview, this)); + this.api.asc_registerCallback('asc_onAddChartStylesPreview', _.bind(this.onAddChartStylesPreview, this)); + this.api.asc_registerCallback('asc_onEndChartStylesPreview', _.bind(this.onEndChartStylesPreview, this)); } return this; }, @@ -150,7 +156,7 @@ define([ this.btnChartType.setIconCls('svgicon'); this.ShowCombinedProps(type); !(type===null || type==Asc.c_oAscChartTypeSettings.comboBarLine || type==Asc.c_oAscChartTypeSettings.comboBarLineSecondary || - type==Asc.c_oAscChartTypeSettings.comboAreaBar || type==Asc.c_oAscChartTypeSettings.comboCustom) && this.updateChartStyles(this.api.asc_getChartPreviews(type)); + type==Asc.c_oAscChartTypeSettings.comboAreaBar || type==Asc.c_oAscChartTypeSettings.comboCustom) && this.updateChartStyles(this.api.asc_getChartPreviews(type, undefined, true)); this._state.ChartType = type; } } @@ -165,18 +171,9 @@ define([ } else { value = this.chartProps.getStyle(); if (this._state.ChartStyle !== value || this._isChartStylesChanged) { - this.cmbChartStyle.suspendEvents(); - var rec = this.cmbChartStyle.menuPicker.store.findWhere({data: value}); - this.cmbChartStyle.menuPicker.selectRecord(rec); - this.cmbChartStyle.resumeEvents(); - - if (this._isChartStylesChanged) { - if (rec) - this.cmbChartStyle.fillComboView(this.cmbChartStyle.menuPicker.getSelectedRec(), true); - else - this.cmbChartStyle.fillComboView(this.cmbChartStyle.menuPicker.store.at(0), true); - } this._state.ChartStyle = value; + this.selectCurrentChartStyle(); + this._isChartStylesChanged && this.api.asc_generateChartPreviews(this._state.ChartType); } } this._isChartStylesChanged = false; @@ -427,11 +424,77 @@ define([ this.fireEvent('editcomplete', this); }, + selectCurrentChartStyle: function() { + if (!this.cmbChartStyle) return; + + this.cmbChartStyle.suspendEvents(); + var rec = this.cmbChartStyle.menuPicker.store.findWhere({data: this._state.ChartStyle}); + this.cmbChartStyle.menuPicker.selectRecord(rec); + this.cmbChartStyle.resumeEvents(); + + if (this._isChartStylesChanged) { + var currentRecords; + if (rec) + currentRecords = this.cmbChartStyle.fillComboView(this.cmbChartStyle.menuPicker.getSelectedRec(), true); + else + currentRecords = this.cmbChartStyle.fillComboView(this.cmbChartStyle.menuPicker.store.at(0), true); + if (currentRecords && currentRecords.length>0) { + var arr = []; + _.each(currentRecords, function(style, index){ + arr.push(style.get('data')); + }); + arr = this.api.asc_getChartPreviews(this._state.ChartType, arr); + _.each(arr, function(style, index){ + currentRecords[index].set('imageUrl', style.asc_getImage()); + }); + } + } + }, + + onBeginChartStylesPreview: function(count){ + // this._state.beginPreviewStyles = true; + // this._state.currentStyleFound = false; + // this._state.previewStylesCount = count; + }, + + onEndChartStylesPreview: function(){ + // if (this.cmbChartStyle) { + // if (this.cmbChartStyle.menuPicker.store.length>0) { + // // !this._state.currentStyleFound && this.selectCurrentChartStyle(); + // this.cmbChartStyle.menuPicker.scroller.update({alwaysVisibleY: true}); + // } + // else { + // this.cmbChartStyle.menuPicker.store.reset(); + // this.cmbChartStyle.clearComboView(); + // } + // this.cmbChartStyle.setDisabled(this.cmbChartStyle.menuPicker.store.length<1 || this._locked); + // } + }, + + onAddChartStylesPreview: function(styles){ + var me = this; + if (styles && styles.length>0){ + var stylesStore = this.cmbChartStyle.menuPicker.store; + if (stylesStore) { + _.each(styles, function(item, index){ + var rec = stylesStore.findWhere({ + data: item.asc_getName() + }); + if (rec) + rec.set('imageUrl', item.asc_getImage()); + }); + } + } + }, + _onUpdateChartStyles: function() { if (this.api && this._state.ChartType!==null && this._state.ChartType>-1 && !(this._state.ChartType==Asc.c_oAscChartTypeSettings.comboBarLine || this._state.ChartType==Asc.c_oAscChartTypeSettings.comboBarLineSecondary || - this._state.ChartType==Asc.c_oAscChartTypeSettings.comboAreaBar || this._state.ChartType==Asc.c_oAscChartTypeSettings.comboCustom)) - this.updateChartStyles(this.api.asc_getChartPreviews(this._state.ChartType)); + this._state.ChartType==Asc.c_oAscChartTypeSettings.comboAreaBar || this._state.ChartType==Asc.c_oAscChartTypeSettings.comboCustom)) { + this.updateChartStyles(this.api.asc_getChartPreviews(this._state.ChartType, undefined, true)); + this.selectCurrentChartStyle(); + this.api.asc_generateChartPreviews(this._state.ChartType); + } }, updateChartStyles: function(styles) { @@ -465,24 +528,15 @@ define([ if (styles && styles.length>0){ var stylesStore = this.cmbChartStyle.menuPicker.store; if (stylesStore) { - var count = stylesStore.length; - if (count>0 && count==styles.length) { - var data = stylesStore.models; - _.each(styles, function(style, index){ - data[index].set('imageUrl', style.asc_getImage()); + var stylearray = []; + _.each(styles, function(item, index){ + stylearray.push({ + imageUrl: item.asc_getImage(), + data : item.asc_getName(), + tip : me.textStyle + ' ' + item.asc_getName() }); - } else { - var stylearray = [], - selectedIdx = -1; - _.each(styles, function(item, index){ - stylearray.push({ - imageUrl: item.asc_getImage(), - data : item.asc_getName(), - tip : me.textStyle + ' ' + item.asc_getName() - }); - }); - stylesStore.reset(stylearray, {silent: false}); - } + }); + stylesStore.reset(stylearray, {silent: false}); } } else { this.cmbChartStyle.menuPicker.store.reset(); From d2622e2f5a803612ed272f59ba4aea26a43fac87 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 16 Feb 2022 17:03:12 +0300 Subject: [PATCH 160/217] [DE] Refactoring drawing current chart style --- apps/common/main/lib/component/ComboDataView.js | 2 +- apps/documenteditor/main/app/view/ChartSettings.js | 12 ++++-------- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/apps/common/main/lib/component/ComboDataView.js b/apps/common/main/lib/component/ComboDataView.js index 5c66ed722..0a568e3b8 100644 --- a/apps/common/main/lib/component/ComboDataView.js +++ b/apps/common/main/lib/component/ComboDataView.js @@ -95,7 +95,7 @@ define([ this.delayRenderTips = this.options.delayRenderTips || false; this.itemTemplate = this.options.itemTemplate || _.template([ '
', - '', + ' style="visibility: hidden;" <% } %>/>', '<% if (typeof title !== "undefined") {%>', '<%= title %>', '<% } %>', diff --git a/apps/documenteditor/main/app/view/ChartSettings.js b/apps/documenteditor/main/app/view/ChartSettings.js index 53fac90a2..a46fd8444 100644 --- a/apps/documenteditor/main/app/view/ChartSettings.js +++ b/apps/documenteditor/main/app/view/ChartSettings.js @@ -172,8 +172,8 @@ define([ value = this.chartProps.getStyle(); if (this._state.ChartStyle !== value || this._isChartStylesChanged) { this._state.ChartStyle = value; - this.selectCurrentChartStyle(); - this._isChartStylesChanged && this.api.asc_generateChartPreviews(this._state.ChartType); + var arr = this.selectCurrentChartStyle(); + this._isChartStylesChanged && this.api.asc_generateChartPreviews(this._state.ChartType, arr); } } this._isChartStylesChanged = false; @@ -443,10 +443,7 @@ define([ _.each(currentRecords, function(style, index){ arr.push(style.get('data')); }); - arr = this.api.asc_getChartPreviews(this._state.ChartType, arr); - _.each(arr, function(style, index){ - currentRecords[index].set('imageUrl', style.asc_getImage()); - }); + return arr; } } }, @@ -492,8 +489,7 @@ define([ !(this._state.ChartType==Asc.c_oAscChartTypeSettings.comboBarLine || this._state.ChartType==Asc.c_oAscChartTypeSettings.comboBarLineSecondary || this._state.ChartType==Asc.c_oAscChartTypeSettings.comboAreaBar || this._state.ChartType==Asc.c_oAscChartTypeSettings.comboCustom)) { this.updateChartStyles(this.api.asc_getChartPreviews(this._state.ChartType, undefined, true)); - this.selectCurrentChartStyle(); - this.api.asc_generateChartPreviews(this._state.ChartType); + this.api.asc_generateChartPreviews(this._state.ChartType, this.selectCurrentChartStyle()); } }, From 88606283b7cbdcfa88d5592cdd42ed977aed42fe Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 16 Feb 2022 21:40:06 +0300 Subject: [PATCH 161/217] [DE] Chart styles refactoring --- .../main/app/view/ChartSettings.js | 30 ++----------------- 1 file changed, 2 insertions(+), 28 deletions(-) diff --git a/apps/documenteditor/main/app/view/ChartSettings.js b/apps/documenteditor/main/app/view/ChartSettings.js index a46fd8444..b97bcb5b1 100644 --- a/apps/documenteditor/main/app/view/ChartSettings.js +++ b/apps/documenteditor/main/app/view/ChartSettings.js @@ -75,10 +75,7 @@ define([ ChartStyle: 1, ChartType: -1, SeveralCharts: false, - DisabledControls: false, - // beginPreviewStyles: true, - // previewStylesCount: -1, - // currentStyleFound: false + DisabledControls: false }; this.lockedControls = []; this._locked = false; @@ -105,9 +102,7 @@ define([ if (this.api) { this.api.asc_registerCallback('asc_onImgWrapStyleChanged', _.bind(this._ChartWrapStyleChanged, this)); this.api.asc_registerCallback('asc_onUpdateChartStyles', _.bind(this._onUpdateChartStyles, this)); - this.api.asc_registerCallback('asc_onBeginChartStylesPreview', _.bind(this.onBeginChartStylesPreview, this)); this.api.asc_registerCallback('asc_onAddChartStylesPreview', _.bind(this.onAddChartStylesPreview, this)); - this.api.asc_registerCallback('asc_onEndChartStylesPreview', _.bind(this.onEndChartStylesPreview, this)); } return this; }, @@ -448,26 +443,6 @@ define([ } }, - onBeginChartStylesPreview: function(count){ - // this._state.beginPreviewStyles = true; - // this._state.currentStyleFound = false; - // this._state.previewStylesCount = count; - }, - - onEndChartStylesPreview: function(){ - // if (this.cmbChartStyle) { - // if (this.cmbChartStyle.menuPicker.store.length>0) { - // // !this._state.currentStyleFound && this.selectCurrentChartStyle(); - // this.cmbChartStyle.menuPicker.scroller.update({alwaysVisibleY: true}); - // } - // else { - // this.cmbChartStyle.menuPicker.store.reset(); - // this.cmbChartStyle.clearComboView(); - // } - // this.cmbChartStyle.setDisabled(this.cmbChartStyle.menuPicker.store.length<1 || this._locked); - // } - }, - onAddChartStylesPreview: function(styles){ var me = this; if (styles && styles.length>0){ @@ -477,8 +452,7 @@ define([ var rec = stylesStore.findWhere({ data: item.asc_getName() }); - if (rec) - rec.set('imageUrl', item.asc_getImage()); + rec && rec.set('imageUrl', item.asc_getImage()); }); } } From 9e75d89bb2d26118faf6142ca5c6140e42a5dbb6 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 16 Feb 2022 22:08:04 +0300 Subject: [PATCH 162/217] [PE] Chart styles loading optimization --- .../main/app/view/ChartSettings.js | 86 ++++++++++++------- 1 file changed, 55 insertions(+), 31 deletions(-) diff --git a/apps/presentationeditor/main/app/view/ChartSettings.js b/apps/presentationeditor/main/app/view/ChartSettings.js index d99b1e1e0..bb7c36b7e 100644 --- a/apps/presentationeditor/main/app/view/ChartSettings.js +++ b/apps/presentationeditor/main/app/view/ChartSettings.js @@ -97,6 +97,7 @@ define([ this.api = api; if (this.api) { this.api.asc_registerCallback('asc_onUpdateChartStyles', _.bind(this._onUpdateChartStyles, this)); + this.api.asc_registerCallback('asc_onAddChartStylesPreview', _.bind(this.onAddChartStylesPreview, this)); } return this; }, @@ -133,7 +134,7 @@ define([ this.btnChartType.setIconCls('svgicon'); this.ShowCombinedProps(type); !(type===null || type==Asc.c_oAscChartTypeSettings.comboBarLine || type==Asc.c_oAscChartTypeSettings.comboBarLineSecondary || - type==Asc.c_oAscChartTypeSettings.comboAreaBar || type==Asc.c_oAscChartTypeSettings.comboCustom) && this.updateChartStyles(this.api.asc_getChartPreviews(type)); + type==Asc.c_oAscChartTypeSettings.comboAreaBar || type==Asc.c_oAscChartTypeSettings.comboCustom) && this.updateChartStyles(this.api.asc_getChartPreviews(type, undefined, true)); this._state.ChartType = type; } } @@ -148,18 +149,9 @@ define([ } else { value = props.getStyle(); if (this._state.ChartStyle !== value || this._isChartStylesChanged) { - this.cmbChartStyle.suspendEvents(); - var rec = this.cmbChartStyle.menuPicker.store.findWhere({data: value}); - this.cmbChartStyle.menuPicker.selectRecord(rec); - this.cmbChartStyle.resumeEvents(); - - if (this._isChartStylesChanged) { - if (rec) - this.cmbChartStyle.fillComboView(this.cmbChartStyle.menuPicker.getSelectedRec(), true); - else - this.cmbChartStyle.fillComboView(this.cmbChartStyle.menuPicker.store.at(0), true); - } this._state.ChartStyle = value; + var arr = this.selectCurrentChartStyle(); + this._isChartStylesChanged && this.api.asc_generateChartPreviews(this._state.ChartType, arr); } } this._isChartStylesChanged = false; @@ -368,11 +360,52 @@ define([ this.fireEvent('editcomplete', this); }, + selectCurrentChartStyle: function() { + if (!this.cmbChartStyle) return; + + this.cmbChartStyle.suspendEvents(); + var rec = this.cmbChartStyle.menuPicker.store.findWhere({data: this._state.ChartStyle}); + this.cmbChartStyle.menuPicker.selectRecord(rec); + this.cmbChartStyle.resumeEvents(); + + if (this._isChartStylesChanged) { + var currentRecords; + if (rec) + currentRecords = this.cmbChartStyle.fillComboView(this.cmbChartStyle.menuPicker.getSelectedRec(), true); + else + currentRecords = this.cmbChartStyle.fillComboView(this.cmbChartStyle.menuPicker.store.at(0), true); + if (currentRecords && currentRecords.length>0) { + var arr = []; + _.each(currentRecords, function(style, index){ + arr.push(style.get('data')); + }); + return arr; + } + } + }, + + onAddChartStylesPreview: function(styles){ + var me = this; + if (styles && styles.length>0){ + var stylesStore = this.cmbChartStyle.menuPicker.store; + if (stylesStore) { + _.each(styles, function(item, index){ + var rec = stylesStore.findWhere({ + data: item.asc_getName() + }); + rec && rec.set('imageUrl', item.asc_getImage()); + }); + } + } + }, + _onUpdateChartStyles: function() { if (this.api && this._state.ChartType!==null && this._state.ChartType>-1 && !(this._state.ChartType==Asc.c_oAscChartTypeSettings.comboBarLine || this._state.ChartType==Asc.c_oAscChartTypeSettings.comboBarLineSecondary || - this._state.ChartType==Asc.c_oAscChartTypeSettings.comboAreaBar || this._state.ChartType==Asc.c_oAscChartTypeSettings.comboCustom)) - this.updateChartStyles(this.api.asc_getChartPreviews(this._state.ChartType)); + this._state.ChartType==Asc.c_oAscChartTypeSettings.comboAreaBar || this._state.ChartType==Asc.c_oAscChartTypeSettings.comboCustom)) { + this.updateChartStyles(this.api.asc_getChartPreviews(this._state.ChartType, undefined, true)); + this.api.asc_generateChartPreviews(this._state.ChartType, this.selectCurrentChartStyle()); + } }, updateChartStyles: function(styles) { @@ -406,24 +439,15 @@ define([ if (styles && styles.length>0){ var stylesStore = this.cmbChartStyle.menuPicker.store; if (stylesStore) { - var count = stylesStore.length; - if (count>0 && count==styles.length) { - var data = stylesStore.models; - _.each(styles, function(style, index){ - data[index].set('imageUrl', style.asc_getImage()); + var stylearray = []; + _.each(styles, function(item, index){ + stylearray.push({ + imageUrl: item.asc_getImage(), + data : item.asc_getName(), + tip : me.textStyle + ' ' + item.asc_getName() }); - } else { - var stylearray = [], - selectedIdx = -1; - _.each(styles, function(item, index){ - stylearray.push({ - imageUrl: item.asc_getImage(), - data : item.asc_getName(), - tip : me.textStyle + ' ' + item.asc_getName() - }); - }); - stylesStore.reset(stylearray, {silent: false}); - } + }); + stylesStore.reset(stylearray, {silent: false}); } } else { this.cmbChartStyle.menuPicker.store.reset(); From 337741f8b0c0bdeed2332137f59acda232b083f8 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 16 Feb 2022 22:28:39 +0300 Subject: [PATCH 163/217] [SSE] Chart styles refactoring --- .../main/app/view/ChartSettings.js | 91 +++++++++++-------- 1 file changed, 55 insertions(+), 36 deletions(-) diff --git a/apps/spreadsheeteditor/main/app/view/ChartSettings.js b/apps/spreadsheeteditor/main/app/view/ChartSettings.js index 08471ce4c..067d0849d 100644 --- a/apps/spreadsheeteditor/main/app/view/ChartSettings.js +++ b/apps/spreadsheeteditor/main/app/view/ChartSettings.js @@ -127,6 +127,7 @@ define([ this.api = api; if (this.api) { this.api.asc_registerCallback('asc_onUpdateChartStyles', _.bind(this._onUpdateChartStyles, this)); + this.api.asc_registerCallback('asc_onAddChartStylesPreview', _.bind(this.onAddChartStylesPreview, this)); } return this; }, @@ -162,7 +163,7 @@ define([ if (this._state.ChartType !== type) { this.ShowCombinedProps(type); !(type===null || type==Asc.c_oAscChartTypeSettings.comboBarLine || type==Asc.c_oAscChartTypeSettings.comboBarLineSecondary || - type==Asc.c_oAscChartTypeSettings.comboAreaBar || type==Asc.c_oAscChartTypeSettings.comboCustom) && this.updateChartStyles(this.api.asc_getChartPreviews(type)); + type==Asc.c_oAscChartTypeSettings.comboAreaBar || type==Asc.c_oAscChartTypeSettings.comboCustom) && this.updateChartStyles(this.api.asc_getChartPreviews(type, undefined, true)); this._state.ChartType = type; } @@ -176,23 +177,9 @@ define([ } else { value = this.chartProps.getStyle(); if (this._state.ChartStyle!==value || this._isChartStylesChanged) { - this.cmbChartStyle.suspendEvents(); - var rec = this.cmbChartStyle.menuPicker.store.findWhere({data: value}); - if (rec) - this.cmbChartStyle.menuPicker.selectRecord(rec); - else { - this.cmbChartStyle.fieldPicker.deselectAll(); - this.cmbChartStyle.menuPicker.deselectAll(); - } - this.cmbChartStyle.resumeEvents(); - - if (this._isChartStylesChanged) { - if (rec) - this.cmbChartStyle.fillComboView(this.cmbChartStyle.menuPicker.getSelectedRec(),true); - else - this.cmbChartStyle.fillComboView(this.cmbChartStyle.menuPicker.store.at(0), false); - } this._state.ChartStyle=value; + var arr = this.selectCurrentChartStyle(); + this._isChartStylesChanged && this.api.asc_generateChartPreviews(this._state.ChartType, arr); } } this._isChartStylesChanged = false; @@ -982,11 +969,52 @@ define([ Common.NotificationCenter.trigger('edit:complete', this); }, + selectCurrentChartStyle: function() { + if (!this.cmbChartStyle) return; + + this.cmbChartStyle.suspendEvents(); + var rec = this.cmbChartStyle.menuPicker.store.findWhere({data: this._state.ChartStyle}); + this.cmbChartStyle.menuPicker.selectRecord(rec); + this.cmbChartStyle.resumeEvents(); + + if (this._isChartStylesChanged) { + var currentRecords; + if (rec) + currentRecords = this.cmbChartStyle.fillComboView(this.cmbChartStyle.menuPicker.getSelectedRec(), true); + else + currentRecords = this.cmbChartStyle.fillComboView(this.cmbChartStyle.menuPicker.store.at(0), true); + if (currentRecords && currentRecords.length>0) { + var arr = []; + _.each(currentRecords, function(style, index){ + arr.push(style.get('data')); + }); + return arr; + } + } + }, + + onAddChartStylesPreview: function(styles){ + var me = this; + if (styles && styles.length>0){ + var stylesStore = this.cmbChartStyle.menuPicker.store; + if (stylesStore) { + _.each(styles, function(item, index){ + var rec = stylesStore.findWhere({ + data: item.asc_getName() + }); + rec && rec.set('imageUrl', item.asc_getImage()); + }); + } + } + }, + _onUpdateChartStyles: function() { if (this.api && this._state.ChartType!==null && this._state.ChartType>-1 && !(this._state.ChartType==Asc.c_oAscChartTypeSettings.comboBarLine || this._state.ChartType==Asc.c_oAscChartTypeSettings.comboBarLineSecondary || - this._state.ChartType==Asc.c_oAscChartTypeSettings.comboAreaBar || this._state.ChartType==Asc.c_oAscChartTypeSettings.comboCustom)) - this.updateChartStyles(this.api.asc_getChartPreviews(this._state.ChartType)); + this._state.ChartType==Asc.c_oAscChartTypeSettings.comboAreaBar || this._state.ChartType==Asc.c_oAscChartTypeSettings.comboCustom)) { + this.updateChartStyles(this.api.asc_getChartPreviews(this._state.ChartType, undefined, true)); + this.api.asc_generateChartPreviews(this._state.ChartType, this.selectCurrentChartStyle()); + } }, updateChartStyles: function(styles) { @@ -1020,24 +1048,15 @@ define([ if (styles && styles.length>0){ var stylesStore = this.cmbChartStyle.menuPicker.store; if (stylesStore) { - var count = stylesStore.length; - if (count>0 && count==styles.length) { - var data = stylesStore.models; - _.each(styles, function(style, index){ - data[index].set('imageUrl', style.asc_getImage()); + var stylearray = []; + _.each(styles, function(item, index){ + stylearray.push({ + imageUrl: item.asc_getImage(), + data : item.asc_getName(), + tip : me.textStyle + ' ' + item.asc_getName() }); - } else { - var stylearray = [], - selectedIdx = -1; - _.each(styles, function(item, index){ - stylearray.push({ - imageUrl: item.asc_getImage(), - data : item.asc_getName(), - tip : me.textStyle + ' ' + item.asc_getName() - }); - }); - stylesStore.reset(stylearray, {silent: false}); - } + }); + stylesStore.reset(stylearray, {silent: false}); } } else { this.cmbChartStyle.menuPicker.store.reset(); From 071e3e31f31a09dbfb1af4b1bcaf6a4caf620835 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 16 Feb 2022 22:50:11 +0300 Subject: [PATCH 164/217] [SSE] Chart styles refactoring in the chart type dialog --- .../main/app/view/ChartSettings.js | 3 +- .../main/app/view/ChartTypeDialog.js | 60 ++++++++++++------- 2 files changed, 40 insertions(+), 23 deletions(-) diff --git a/apps/spreadsheeteditor/main/app/view/ChartSettings.js b/apps/spreadsheeteditor/main/app/view/ChartSettings.js index 067d0849d..39a6200f7 100644 --- a/apps/spreadsheeteditor/main/app/view/ChartSettings.js +++ b/apps/spreadsheeteditor/main/app/view/ChartSettings.js @@ -994,7 +994,8 @@ define([ }, onAddChartStylesPreview: function(styles){ - var me = this; + if (this._isEditType) return; + if (styles && styles.length>0){ var stylesStore = this.cmbChartStyle.menuPicker.store; if (stylesStore) { diff --git a/apps/spreadsheeteditor/main/app/view/ChartTypeDialog.js b/apps/spreadsheeteditor/main/app/view/ChartTypeDialog.js index ea234ef63..13a6a14e8 100644 --- a/apps/spreadsheeteditor/main/app/view/ChartTypeDialog.js +++ b/apps/spreadsheeteditor/main/app/view/ChartTypeDialog.js @@ -123,6 +123,11 @@ define([ this.api = this.options.api; this.chartSettings = this.options.chartSettings; this.currentChartType = Asc.c_oAscChartTypeSettings.barNormal; + + this.wrapEvents = { + onAddChartStylesPreview: _.bind(this.onAddChartStylesPreview, this) + }; + this.api.asc_registerCallback('asc_onAddChartStylesPreview', this.wrapEvents.onAddChartStylesPreview); }, render: function() { @@ -173,7 +178,7 @@ define([ enableKeyEvents: this.options.enableKeyEvents, itemTemplate : _.template([ '
', - '', + ' style="visibility: hidden;" <% } %>/>', '<% if (typeof title !== "undefined") {%>', '<%= title %>', '<% } %>', @@ -221,6 +226,7 @@ define([ close: function () { this.api.asc_onCloseChartFrame(); + this.api.asc_unregisterCallback('asc_onAddChartStylesPreview', this.wrapEvents.onAddChartStylesPreview); Common.Views.AdvancedSettingsWindow.prototype.close.apply(this, arguments); }, @@ -258,8 +264,10 @@ define([ if (this.currentChartType==Asc.c_oAscChartTypeSettings.comboBarLine || this.currentChartType==Asc.c_oAscChartTypeSettings.comboBarLineSecondary || this.currentChartType==Asc.c_oAscChartTypeSettings.comboAreaBar || this.currentChartType==Asc.c_oAscChartTypeSettings.comboCustom) { this.updateSeriesList(this.chartSettings.getSeries()); - } else - this.updateChartStyles(this.api.asc_getChartPreviews(this.currentChartType)); + } else { + this.updateChartStyles(this.api.asc_getChartPreviews(this.currentChartType, undefined, true)); + this.api.asc_generateChartPreviews(this.currentChartType); + } } }, @@ -310,8 +318,10 @@ define([ this.ShowHideSettings(this.currentChartType); if (isCombo) this.updateSeriesList(this.chartSettings.getSeries()); - else - this.updateChartStyles(this.api.asc_getChartPreviews(this.currentChartType)); + else { + this.updateChartStyles(this.api.asc_getChartPreviews(this.currentChartType, undefined, true)); + this.api.asc_generateChartPreviews(this.currentChartType); + } } else { picker.selectRecord(picker.store.findWhere({type: this.currentChartType}), true); } @@ -323,24 +333,15 @@ define([ if (styles && styles.length>0){ var stylesStore = this.stylesList.store; if (stylesStore) { - var count = stylesStore.length; - if (count>0 && count==styles.length) { - var data = stylesStore.models; - _.each(styles, function(style, index){ - data[index].set('imageUrl', style.asc_getImage()); + var stylearray = []; + _.each(styles, function(item, index){ + stylearray.push({ + imageUrl: item.asc_getImage(), + data : item.asc_getName(), + tip : me.textStyle + ' ' + item.asc_getName() }); - } else { - var stylearray = [], - selectedIdx = -1; - _.each(styles, function(item, index){ - stylearray.push({ - imageUrl: item.asc_getImage(), - data : item.asc_getName(), - tip : me.textStyle + ' ' + item.asc_getName() - }); - }); - stylesStore.reset(stylearray, {silent: false}); - } + }); + stylesStore.reset(stylearray, {silent: false}); } } else { this.stylesList.store.reset(); @@ -353,6 +354,21 @@ define([ this.chartSettings.putStyle(record.get('data')); }, + onAddChartStylesPreview: function(styles){ + var me = this; + if (styles && styles.length>0){ + var stylesStore = this.stylesList.store; + if (stylesStore) { + _.each(styles, function(item, index){ + var rec = stylesStore.findWhere({ + data: item.asc_getName() + }); + rec && rec.set('imageUrl', item.asc_getImage()); + }); + } + } + }, + updateSeriesList: function(series, index) { var arr = []; var store = this.seriesList.store; From 566f58a09bf55cb142377c17973f9e627ab36636 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 16 Feb 2022 22:51:34 +0300 Subject: [PATCH 165/217] Fix Bug 55294 --- .../main/app/controller/Toolbar.js | 21 +++++++++---------- .../main/app/controller/Toolbar.js | 21 +++++++++---------- .../main/app/controller/Toolbar.js | 21 +++++++++---------- 3 files changed, 30 insertions(+), 33 deletions(-) diff --git a/apps/documenteditor/main/app/controller/Toolbar.js b/apps/documenteditor/main/app/controller/Toolbar.js index a66896dd9..772d0a725 100644 --- a/apps/documenteditor/main/app/controller/Toolbar.js +++ b/apps/documenteditor/main/app/controller/Toolbar.js @@ -1341,18 +1341,17 @@ define([ if (!value) { value = this._getApiTextSize(); - - Common.UI.warning({ - msg: this.textFontSizeErr, - callback: function() { - _.defer(function(btn) { - $('input', combo.cmpEl).focus(); - }) - } - }); - + setTimeout(function(){ + Common.UI.warning({ + msg: me.textFontSizeErr, + callback: function() { + _.defer(function(btn) { + $('input', combo.cmpEl).focus(); + }) + } + }); + }, 1); combo.setRawValue(value); - e.preventDefault(); return false; } diff --git a/apps/presentationeditor/main/app/controller/Toolbar.js b/apps/presentationeditor/main/app/controller/Toolbar.js index 4d863cbf0..d3b7b2ac9 100644 --- a/apps/presentationeditor/main/app/controller/Toolbar.js +++ b/apps/presentationeditor/main/app/controller/Toolbar.js @@ -1324,18 +1324,17 @@ define([ if (!value) { value = this._getApiTextSize(); - - Common.UI.warning({ - msg: this.textFontSizeErr, - callback: function() { - _.defer(function(btn) { - $('input', combo.cmpEl).focus(); - }) - } - }); - + setTimeout(function(){ + Common.UI.warning({ + msg: me.textFontSizeErr, + callback: function() { + _.defer(function(btn) { + $('input', combo.cmpEl).focus(); + }) + } + }); + }, 1); combo.setRawValue(value); - e.preventDefault(); return false; } diff --git a/apps/spreadsheeteditor/main/app/controller/Toolbar.js b/apps/spreadsheeteditor/main/app/controller/Toolbar.js index 834cfd680..97e314757 100644 --- a/apps/spreadsheeteditor/main/app/controller/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/controller/Toolbar.js @@ -1625,18 +1625,17 @@ define([ if (!value) { value = this._getApiTextSize(); - - Common.UI.warning({ - msg: this.textFontSizeErr, - callback: function() { - _.defer(function(btn) { - $('input', combo.cmpEl).focus(); - }) - } - }); - + setTimeout(function(){ + Common.UI.warning({ + msg: me.textFontSizeErr, + callback: function() { + _.defer(function(btn) { + $('input', combo.cmpEl).focus(); + }) + } + }); + }, 1); combo.setRawValue(value); - e.preventDefault(); return false; } From 116e364efbeeac5780a6e3a8f22b5a59d3effcfa Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 16 Feb 2022 22:58:34 +0300 Subject: [PATCH 166/217] [DE] Fix Bug 55089 --- .../main/app/controller/LeftMenu.js | 26 +++++++++++-------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/apps/documenteditor/main/app/controller/LeftMenu.js b/apps/documenteditor/main/app/controller/LeftMenu.js index 700c1babe..fb8a03751 100644 --- a/apps/documenteditor/main/app/controller/LeftMenu.js +++ b/apps/documenteditor/main/app/controller/LeftMenu.js @@ -373,17 +373,21 @@ define([ } else if (format == Asc.c_oAscFileType.PDF || format == Asc.c_oAscFileType.PDFA) this._saveAsFormat(menu, format, ext); else { - Common.UI.warning({ - width: 600, - title: this.notcriticalErrorTitle, - msg: Common.Utils.String.format(this.warnDownloadAsPdf, fileType.toUpperCase()), - buttons: ['ok', 'cancel'], - callback: _.bind(function(btn){ - if (btn == 'ok') { - me._saveAsFormat(menu, format, ext, new AscCommon.asc_CTextParams(Asc.c_oAscTextAssociation.PlainLine)); - } - }, this) - }); + if (format == Asc.c_oAscFileType.TXT || format == Asc.c_oAscFileType.RTF) // don't show message about pdf/xps/oxps + me._saveAsFormat(menu, format, ext, new AscCommon.asc_CTextParams(Asc.c_oAscTextAssociation.PlainLine)); + else { + Common.UI.warning({ + width: 600, + title: this.notcriticalErrorTitle, + msg: Common.Utils.String.format(this.warnDownloadAsPdf, fileType.toUpperCase()), + buttons: ['ok', 'cancel'], + callback: _.bind(function(btn){ + if (btn == 'ok') { + me._saveAsFormat(menu, format, ext, new AscCommon.asc_CTextParams(Asc.c_oAscTextAssociation.PlainLine)); + } + }, this) + }); + } } } else this._saveAsFormat(menu, format, ext); From 0434a5eed8ae74df2bf6c1a7d912af408cca5690 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 17 Feb 2022 11:48:07 +0300 Subject: [PATCH 167/217] [DE] Forms: add separators for text field settings --- .../main/app/template/FormSettings.template | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/apps/documenteditor/main/app/template/FormSettings.template b/apps/documenteditor/main/app/template/FormSettings.template index 19920e183..2c2950bd1 100644 --- a/apps/documenteditor/main/app/template/FormSettings.template +++ b/apps/documenteditor/main/app/template/FormSettings.template @@ -72,6 +72,11 @@
+ + +
+ +
@@ -89,6 +94,11 @@
+ + +
+ + From aefae658116e6f00e8bac611ce3149a7112eea4e Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 17 Feb 2022 12:40:10 +0300 Subject: [PATCH 168/217] FeaturesManager: change license for some settings --- .../main/lib/controller/LayoutManager.js | 18 ++++++++++-------- .../documenteditor/main/app/controller/Main.js | 4 ++-- .../main/app/controller/Main.js | 4 ++-- .../main/app/controller/Main.js | 2 +- 4 files changed, 15 insertions(+), 13 deletions(-) diff --git a/apps/common/main/lib/controller/LayoutManager.js b/apps/common/main/lib/controller/LayoutManager.js index f5197981d..8a31ae069 100644 --- a/apps/common/main/lib/controller/LayoutManager.js +++ b/apps/common/main/lib/controller/LayoutManager.js @@ -105,17 +105,19 @@ Common.UI.LayoutManager = new(function() { * } */ Common.UI.FeaturesManager = new(function() { - var _config; - var _init = function(config) { + var _config, + _licensed; + var _init = function(config, licensed) { _config = config; + _licensed = licensed; }; - var _canChange = function(name) { - return !(_config && typeof _config[name] === 'object' && _config[name] && _config[name].change===false); + var _canChange = function(name, force) { + return !((_licensed || force) && _config && typeof _config[name] === 'object' && _config[name] && _config[name].change===false); }; - var _getInitValue2 = function(name, defValue) { - if (_config && _config[name] !== undefined ) { + var _getInitValue2 = function(name, defValue, force) { + if ((_licensed || force) && _config && _config[name] !== undefined ) { if (typeof _config[name] === 'object' && _config[name]) { // object and not null if (_config[name].mode!==undefined) return _config[name].mode; @@ -126,8 +128,8 @@ Common.UI.FeaturesManager = new(function() { return defValue; }; - var _getInitValue = function(name) { - if (_config && _config[name] !== undefined ) { + var _getInitValue = function(name, force) { + if ((_licensed || force) && _config && _config[name] !== undefined ) { if (typeof _config[name] === 'object' && _config[name]) { // object and not null if (_config[name].mode!==undefined) return _config[name].mode; diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index d137d0c24..92e50bca3 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -1148,7 +1148,7 @@ define([ me.api.put_ShowTableEmptyLine((value!==null) ? eval(value) : true); // spellcheck - value = Common.UI.FeaturesManager.getInitValue('spellcheck'); + value = Common.UI.FeaturesManager.getInitValue('spellcheck', true); value = (value !== undefined) ? value : !(this.appOptions.customization && this.appOptions.customization.spellcheck===false); if (this.appOptions.customization && this.appOptions.customization.spellcheck!==undefined) console.log("Obsolete: The 'spellcheck' parameter of the 'customization' section is deprecated. Please use 'spellcheck' parameter in the 'customization.features' section instead."); @@ -1518,7 +1518,7 @@ define([ this.appOptions.canBrandingExt = params.asc_getCanBranding() && (typeof this.editorConfig.customization == 'object' || this.editorConfig.plugins); this.getApplication().getController('Common.Controllers.Plugins').setMode(this.appOptions, this.api); this.appOptions.canBrandingExt && this.editorConfig.customization && Common.UI.LayoutManager.init(this.editorConfig.customization.layout); - this.appOptions.canBrandingExt && this.editorConfig.customization && Common.UI.FeaturesManager.init(this.editorConfig.customization.features); + this.editorConfig.customization && Common.UI.FeaturesManager.init(this.editorConfig.customization.features, this.appOptions.canBrandingExt); if (this.appOptions.canComments) Common.NotificationCenter.on('comments:cleardummy', _.bind(this.onClearDummyComment, this)); diff --git a/apps/presentationeditor/main/app/controller/Main.js b/apps/presentationeditor/main/app/controller/Main.js index fb233c49e..ed6371244 100644 --- a/apps/presentationeditor/main/app/controller/Main.js +++ b/apps/presentationeditor/main/app/controller/Main.js @@ -788,7 +788,7 @@ define([ (zf == -1) ? this.api.zoomFitToPage() : ((zf == -2) ? this.api.zoomFitToWidth() : this.api.zoom(zf>0 ? zf : 100)); // spellcheck - value = Common.UI.FeaturesManager.getInitValue('spellcheck'); + value = Common.UI.FeaturesManager.getInitValue('spellcheck', true); value = (value !== undefined) ? value : !(this.appOptions.customization && this.appOptions.customization.spellcheck===false); if (this.appOptions.customization && this.appOptions.customization.spellcheck!==undefined) console.log("Obsolete: The 'spellcheck' parameter of the 'customization' section is deprecated. Please use 'spellcheck' parameter in the 'customization.features' section instead."); @@ -1174,7 +1174,7 @@ define([ this.appOptions.canBrandingExt = params.asc_getCanBranding() && (typeof this.editorConfig.customization == 'object' || this.editorConfig.plugins); this.getApplication().getController('Common.Controllers.Plugins').setMode(this.appOptions); this.appOptions.canBrandingExt && this.editorConfig.customization && Common.UI.LayoutManager.init(this.editorConfig.customization.layout); - this.appOptions.canBrandingExt && this.editorConfig.customization && Common.UI.FeaturesManager.init(this.editorConfig.customization.features); + this.editorConfig.customization && Common.UI.FeaturesManager.init(this.editorConfig.customization.features, this.appOptions.canBrandingExt); this.appOptions.canChangeCoAuthoring = this.appOptions.isEdit && this.appOptions.canCoAuthoring && !(typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.change===false); diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js index 574c767e9..1284538bd 100644 --- a/apps/spreadsheeteditor/main/app/controller/Main.js +++ b/apps/spreadsheeteditor/main/app/controller/Main.js @@ -1279,7 +1279,7 @@ define([ this.appOptions.canBrandingExt = params.asc_getCanBranding() && (typeof this.editorConfig.customization == 'object' || this.editorConfig.plugins); this.getApplication().getController('Common.Controllers.Plugins').setMode(this.appOptions); this.appOptions.canBrandingExt && this.editorConfig.customization && Common.UI.LayoutManager.init(this.editorConfig.customization.layout); - this.appOptions.canBrandingExt && this.editorConfig.customization && Common.UI.FeaturesManager.init(this.editorConfig.customization.features); + this.editorConfig.customization && Common.UI.FeaturesManager.init(this.editorConfig.customization.features, this.appOptions.canBrandingExt); } this.appOptions.canUseHistory = this.appOptions.canLicense && this.editorConfig.canUseHistory && this.appOptions.canCoAuthoring && !this.appOptions.isOffline; From cda3c71b2a9ed3f2920ff5d3dd7065b8b00f52c9 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Thu, 17 Feb 2022 16:39:10 +0300 Subject: [PATCH 169/217] [mobile] Fix bug 55615 --- apps/common/mobile/lib/store/users.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common/mobile/lib/store/users.js b/apps/common/mobile/lib/store/users.js index b13152b94..b8d37ed4b 100644 --- a/apps/common/mobile/lib/store/users.js +++ b/apps/common/mobile/lib/store/users.js @@ -44,7 +44,7 @@ export class storeUsers { } } } - !changed && change && (this.users[change.asc_getId()] = change); + !changed && change && (this.users.push(change)); } resetDisconnected (isDisconnected) { From d150d4af7f22a62ad7ff76e69c78fcf9993d3de8 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Thu, 17 Feb 2022 19:39:22 +0400 Subject: [PATCH 170/217] [DE PE SSE mobile] Fix Bug 53998, Fix Bug 55470 --- apps/documenteditor/mobile/src/controller/Error.jsx | 6 +++--- apps/documenteditor/mobile/src/page/main.jsx | 4 ++-- apps/presentationeditor/mobile/src/controller/Error.jsx | 6 +++--- apps/presentationeditor/mobile/src/page/main.jsx | 4 ++-- apps/spreadsheeteditor/mobile/src/controller/Error.jsx | 5 +++-- apps/spreadsheeteditor/mobile/src/page/main.jsx | 4 ++-- 6 files changed, 15 insertions(+), 14 deletions(-) diff --git a/apps/documenteditor/mobile/src/controller/Error.jsx b/apps/documenteditor/mobile/src/controller/Error.jsx index 16eca5427..4373e04d0 100644 --- a/apps/documenteditor/mobile/src/controller/Error.jsx +++ b/apps/documenteditor/mobile/src/controller/Error.jsx @@ -4,6 +4,9 @@ import { f7 } from 'framework7-react'; import { useTranslation } from 'react-i18next'; const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocument}) => { + const { t } = useTranslation(); + const _t = t("Error", { returnObjects: true }); + useEffect(() => { const on_engine_created = k => { k.asc_registerCallback('asc_onError', onError); }; @@ -20,9 +23,6 @@ const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocu }); const onError = (id, level, errData) => { - const {t} = useTranslation(); - const _t = t("Error", { returnObjects: true }); - if (id === Asc.c_oAscError.ID.LoadingScriptError) { f7.notification.create({ title: _t.criticalErrorTitle, diff --git a/apps/documenteditor/mobile/src/page/main.jsx b/apps/documenteditor/mobile/src/page/main.jsx index 0a992a524..d1355598d 100644 --- a/apps/documenteditor/mobile/src/page/main.jsx +++ b/apps/documenteditor/mobile/src/page/main.jsx @@ -1,6 +1,6 @@ import React, { Component } from 'react'; -import { f7 } from 'framework7-react'; +import { f7, Link } from 'framework7-react'; import { Page, View, Navbar, Subnavbar, Icon } from 'framework7-react'; import { observer, inject } from "mobx-react"; @@ -101,7 +101,7 @@ class MainPage extends Component { {/* Top Navbar */} - {showLogo && appOptions.canBranding !== undefined &&
} + {showLogo && appOptions.canBranding !== undefined && } diff --git a/apps/presentationeditor/mobile/src/controller/Error.jsx b/apps/presentationeditor/mobile/src/controller/Error.jsx index 839dd126b..85b605270 100644 --- a/apps/presentationeditor/mobile/src/controller/Error.jsx +++ b/apps/presentationeditor/mobile/src/controller/Error.jsx @@ -4,6 +4,9 @@ import { f7 } from 'framework7-react'; import { useTranslation } from 'react-i18next'; const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocument}) => { + const { t } = useTranslation(); + const _t = t("Error", { returnObjects: true }); + useEffect(() => { const on_engine_created = k => { k.asc_registerCallback('asc_onError', onError); }; @@ -20,9 +23,6 @@ const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocu }); const onError = (id, level, errData) => { - const {t} = useTranslation(); - const _t = t("Error", { returnObjects: true }); - if (id === Asc.c_oAscError.ID.LoadingScriptError) { f7.notification.create({ title: _t.criticalErrorTitle, diff --git a/apps/presentationeditor/mobile/src/page/main.jsx b/apps/presentationeditor/mobile/src/page/main.jsx index 4031267f9..a75e7c868 100644 --- a/apps/presentationeditor/mobile/src/page/main.jsx +++ b/apps/presentationeditor/mobile/src/page/main.jsx @@ -1,5 +1,5 @@ import React, { Component, Fragment } from 'react'; -import { f7, Page, View, Navbar, Subnavbar, Icon } from 'framework7-react'; +import { f7, Page, View, Navbar, Subnavbar, Icon, Link} from 'framework7-react'; import { observer, inject } from "mobx-react"; import { Device } from '../../../../common/mobile/utils/device'; @@ -110,7 +110,7 @@ class MainPage extends Component { {/* Top Navbar */} - {showLogo && appOptions.canBranding !== undefined &&
} + {showLogo && appOptions.canBranding !== undefined && } diff --git a/apps/spreadsheeteditor/mobile/src/controller/Error.jsx b/apps/spreadsheeteditor/mobile/src/controller/Error.jsx index 94f05d1c3..1b991fc32 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Error.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Error.jsx @@ -4,6 +4,9 @@ import { f7 } from 'framework7-react'; import { useTranslation } from 'react-i18next'; const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocument}) => { + const { t } = useTranslation(); + const _t = t("Error", { returnObjects: true }); + useEffect(() => { const on_engine_created = k => { k.asc_registerCallback('asc_onError', onError); }; @@ -20,8 +23,6 @@ const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocu }); const onError = (id, level, errData) => { - const {t} = useTranslation(); - const _t = t("Error", { returnObjects: true }); const api = Common.EditorApi.get(); if (id === Asc.c_oAscError.ID.LoadingScriptError) { diff --git a/apps/spreadsheeteditor/mobile/src/page/main.jsx b/apps/spreadsheeteditor/mobile/src/page/main.jsx index 9b0c3a91a..d5e702e73 100644 --- a/apps/spreadsheeteditor/mobile/src/page/main.jsx +++ b/apps/spreadsheeteditor/mobile/src/page/main.jsx @@ -11,7 +11,7 @@ import FilterOptionsController from '../controller/FilterOptions.jsx' import AddOptions from "../view/add/Add"; import EditOptions from "../view/edit/Edit"; import { Search, SearchSettings } from '../controller/Search'; -import { f7 } from 'framework7-react'; +import { f7, Link } from 'framework7-react'; import {FunctionGroups} from "../controller/add/AddFunction"; import ContextMenu from '../controller/ContextMenu'; @@ -107,7 +107,7 @@ class MainPage extends Component { {/* Top Navbar */} - {showLogo && appOptions.canBranding !== undefined &&
} + {showLogo && appOptions.canBranding !== undefined && } From f63ce8dc7f547d9259f0ad896133c4eb3a02d04b Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Thu, 17 Feb 2022 20:37:31 +0300 Subject: [PATCH 171/217] [SSE] Fix bug 55581 --- apps/spreadsheeteditor/main/app/controller/Print.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/apps/spreadsheeteditor/main/app/controller/Print.js b/apps/spreadsheeteditor/main/app/controller/Print.js index 616f237c1..273fca42f 100644 --- a/apps/spreadsheeteditor/main/app/controller/Print.js +++ b/apps/spreadsheeteditor/main/app/controller/Print.js @@ -106,6 +106,9 @@ define([ this.api.asc_drawPrintPreview(this._navigationPreview.currentPage); } }, this)); + + var eventname = (/Firefox/i.test(navigator.userAgent))? 'DOMMouseScroll' : 'mousewheel'; + this.printSettings.$previewBox.on(eventname, _.bind(this.onPreviewWheel, this)); }, setApi: function(o) { @@ -641,6 +644,11 @@ define([ this.updateNavigationButtons(index, this._navigationPreview.pageCount); }, + onPreviewWheel: function (e) { + var forward = (e.deltaY || (e.detail && -e.detail) || e.wheelDelta) < 0; + this.onChangePreviewPage(forward); + }, + onKeypressPageNumber: function (input, e) { if (e.keyCode === Common.UI.Keys.RETURN) { var box = this.printSettings.$el.find('#print-number-page'), From e49e68743cc97aeaff3f1e6e1d123835d7e11daa Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 17 Feb 2022 21:16:35 +0300 Subject: [PATCH 172/217] [Mobile] Handle permissions.userInfoGroups: hide cursors from users not in userInfoGroups --- apps/common/mobile/lib/controller/ContextMenu.jsx | 2 ++ apps/documenteditor/mobile/src/controller/ContextMenu.jsx | 6 ++++++ .../mobile/src/controller/ContextMenu.jsx | 6 ++++++ .../mobile/src/controller/ContextMenu.jsx | 8 +++++++- 4 files changed, 21 insertions(+), 1 deletion(-) diff --git a/apps/common/mobile/lib/controller/ContextMenu.jsx b/apps/common/mobile/lib/controller/ContextMenu.jsx index 5f5509cb0..8a91b862e 100644 --- a/apps/common/mobile/lib/controller/ContextMenu.jsx +++ b/apps/common/mobile/lib/controller/ContextMenu.jsx @@ -163,6 +163,8 @@ class ContextMenuController extends Component { } onApiShowForeignCursorLabel(UserId, X, Y, color) { + if (!this.isUserVisible(UserId)) return; + /** coauthoring begin **/ const tipHeight = 20; diff --git a/apps/documenteditor/mobile/src/controller/ContextMenu.jsx b/apps/documenteditor/mobile/src/controller/ContextMenu.jsx index 9bccbeee3..fadd14ca2 100644 --- a/apps/documenteditor/mobile/src/controller/ContextMenu.jsx +++ b/apps/documenteditor/mobile/src/controller/ContextMenu.jsx @@ -29,6 +29,7 @@ class ContextMenu extends ContextMenuController { this.onApiHideComment = this.onApiHideComment.bind(this); this.onApiShowChange = this.onApiShowChange.bind(this); this.getUserName = this.getUserName.bind(this); + this.isUserVisible = this.isUserVisible.bind(this); this.ShowModal = this.ShowModal.bind(this); } @@ -41,6 +42,11 @@ class ContextMenu extends ContextMenuController { return AscCommon.UserInfoParser.getParsedName(user.asc_getUserName()); } + isUserVisible(id) { + const user = this.props.users.searchUserByCurrentId(id); + return user ? (user.asc_getIdOriginal()===this.props.users.currentUser.asc_getIdOriginal() || AscCommon.UserInfoParser.isUserVisible(user.asc_getUserName())) : true; + } + componentWillUnmount() { super.componentWillUnmount(); diff --git a/apps/presentationeditor/mobile/src/controller/ContextMenu.jsx b/apps/presentationeditor/mobile/src/controller/ContextMenu.jsx index 73615138b..374ea55a1 100644 --- a/apps/presentationeditor/mobile/src/controller/ContextMenu.jsx +++ b/apps/presentationeditor/mobile/src/controller/ContextMenu.jsx @@ -25,6 +25,7 @@ class ContextMenu extends ContextMenuController { this.onApiShowComment = this.onApiShowComment.bind(this); this.onApiHideComment = this.onApiHideComment.bind(this); this.getUserName = this.getUserName.bind(this); + this.isUserVisible = this.isUserVisible.bind(this); } static closeContextMenu() { @@ -36,6 +37,11 @@ class ContextMenu extends ContextMenuController { return AscCommon.UserInfoParser.getParsedName(user.asc_getUserName()); } + isUserVisible(id) { + const user = this.props.users.searchUserByCurrentId(id); + return user ? (user.asc_getIdOriginal()===this.props.users.currentUser.asc_getIdOriginal() || AscCommon.UserInfoParser.isUserVisible(user.asc_getUserName())) : true; + } + componentWillUnmount() { super.componentWillUnmount(); diff --git a/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx b/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx index f57aebe28..619dad1c1 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx @@ -30,6 +30,7 @@ class ContextMenu extends ContextMenuController { this.isOpenWindowUser = false; this.timer; this.getUserName = this.getUserName.bind(this); + this.isUserVisible = this.isUserVisible.bind(this); this.onApiMouseMove = this.onApiMouseMove.bind(this); this.onApiHyperlinkClick = this.onApiHyperlinkClick.bind(this); } @@ -43,6 +44,11 @@ class ContextMenu extends ContextMenuController { return AscCommon.UserInfoParser.getParsedName(user.asc_getUserName()); } + isUserVisible(id) { + const user = this.props.users.searchUserByCurrentId(id); + return user ? (user.asc_getIdOriginal()===this.props.users.currentUser.asc_getIdOriginal() || AscCommon.UserInfoParser.isUserVisible(user.asc_getUserName())) : true; + } + componentWillUnmount() { super.componentWillUnmount(); @@ -277,7 +283,7 @@ class ContextMenu extends ContextMenuController { $$('.username-tip').remove(); } - if (index_locked ) { + if (index_locked && this.isUserVisible(dataarray[index_locked-1].asc_getUserId())) { const tipHeight = 20; let editorOffset = $$("#editor_sdk").offset(), XY = [ editorOffset.left - $(window).scrollLeft(), editorOffset.top - $(window).scrollTop()], From 5ba251964ad52eaad263514be08870f10e9a2927 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Fri, 18 Feb 2022 11:37:15 +0300 Subject: [PATCH 173/217] [DE PE SSE] Fix hint manager --- apps/common/main/lib/controller/HintManager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common/main/lib/controller/HintManager.js b/apps/common/main/lib/controller/HintManager.js index 516ce3f01..ee2dd42f2 100644 --- a/apps/common/main/lib/controller/HintManager.js +++ b/apps/common/main/lib/controller/HintManager.js @@ -592,7 +592,7 @@ Common.UI.HintManager = new(function() { } } - _needShow = (e.keyCode == Common.UI.Keys.ALT && !Common.Utils.ModalWindow.isVisible() && _isDocReady && _arrAlphabet.length > 0); + _needShow = (!e.shiftKey && e.keyCode == Common.UI.Keys.ALT && !Common.Utils.ModalWindow.isVisible() && _isDocReady && _arrAlphabet.length > 0); if (e.altKey && e.keyCode !== 115) { e.preventDefault(); } From 159f0b13ec6af1c421802de6c6c9c2264841edd1 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Fri, 18 Feb 2022 15:23:47 +0300 Subject: [PATCH 174/217] [SSE] Bug 55537 --- apps/spreadsheeteditor/main/app/view/FileMenu.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/spreadsheeteditor/main/app/view/FileMenu.js b/apps/spreadsheeteditor/main/app/view/FileMenu.js index 73ed419df..92b31fdb5 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenu.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenu.js @@ -448,7 +448,7 @@ define([ if (this.mode.canPrint) { var printPanel = SSE.getController('Print').getView('PrintWithPreview'); printPanel.menu = this; - this.panels['printpreview'] = printPanel.render(this.$el.find('#panel-print')); + !this.panels['printpreview'] && (this.panels['printpreview'] = printPanel.render(this.$el.find('#panel-print'))); } if ( Common.Controllers.Desktop.isActive() ) { From cf6ce3e2129427cc575c64f561c504bb4ecf2f6c Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 18 Feb 2022 15:27:29 +0300 Subject: [PATCH 175/217] [PE] Change Entrance -> Float In effect in the toolbar. Fix current level in the animation dialog. --- apps/common/main/lib/util/define.js | 11 ++++++++--- .../main/app/view/AnimationDialog.js | 3 ++- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/apps/common/main/lib/util/define.js b/apps/common/main/lib/util/define.js index 971da62bd..ce8b32f37 100644 --- a/apps/common/main/lib/util/define.js +++ b/apps/common/main/lib/util/define.js @@ -809,7 +809,7 @@ define(function(){ 'use strict'; {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_APPEAR, iconCls: 'animation-entrance-appear', displayValue: this.textAppear}, {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_FADE, iconCls: 'animation-entrance-fade', displayValue: this.textFade}, {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_FLY_IN_FROM, iconCls: 'animation-entrance-fly_in', displayValue: this.textFlyIn}, - {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_FLOAT, iconCls: 'animation-entrance-float_in', displayValue: this.textFloatIn}, + {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_FLOAT_UP, iconCls: 'animation-entrance-float_in', displayValue: this.textFloatIn, familyEffect: 'entrfloat'}, {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_SPLIT, iconCls: 'animation-entrance-split', displayValue: this.textSplit}, {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_WIPE_FROM, iconCls: 'animation-entrance-wipe', displayValue: this.textWipe}, {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_BOX, iconCls: 'animation-entrance-shape', displayValue: this.textShape, familyEffect: 'entrshape'}, @@ -896,8 +896,8 @@ define(function(){ 'use strict'; {group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_BASIC_ZOOM, displayValue: this.textBasicZoom}, {group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_CENTER_REVOLVE, displayValue: this.textCenterRevolve}, {group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_CENTER_COMPRESS, displayValue: this.textCompress}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_FLOAT_DOWN, displayValue: this.textFloatDown}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_FLOAT_UP, displayValue: this.textFloatUp}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_FLOAT_DOWN, displayValue: this.textFloatDown, familyEffect: 'entrfloat'}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_FLOAT_UP, displayValue: this.textFloatUp, familyEffect: 'entrfloat'}, {group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_GROW_AND_TURN, displayValue: this.textGrowTurn}, {group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_RISE_UP, displayValue: this.textRiseUp}, {group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_SPINNER, displayValue: this.textSpinner}, @@ -1332,6 +1332,11 @@ define(function(){ 'use strict'; {value: AscFormat.MOTION_VERTICAL_FIGURE_8, caption: this.textVerticalFigure}, {value: AscFormat.MOTION_LOOP_DE_LOOP, caption: this.textLoopDeLoop} ]; + case 'entrfloat': + return [ + {value: AscFormat.ENTRANCE_FLOAT_UP, caption: this.textFloatUp}, + {value: AscFormat.ENTRANCE_FLOAT_DOWN, caption: this.textFloatDown} + ]; default: return []; } diff --git a/apps/presentationeditor/main/app/view/AnimationDialog.js b/apps/presentationeditor/main/app/view/AnimationDialog.js index f00add7d5..a2da6fc64 100644 --- a/apps/presentationeditor/main/app/view/AnimationDialog.js +++ b/apps/presentationeditor/main/app/view/AnimationDialog.js @@ -110,6 +110,7 @@ define([ el : $('#animation-level'), cls: 'input-group-nr', editable: false, + valueField: 'id', style : 'margin-top: 16px; width: 100%;', menuStyle: 'min-width: 100%;', takeFocusOnClose: true @@ -156,7 +157,7 @@ define([ { this.cmbLevel.store.reset(Common.define.effectData.getLevelEffect(this._state.activeGroup == 'menu-effect-group-path')); var item = (this.activeLevel)?this.cmbLevel.store.findWhere({id: this.activeLevel}):this.cmbLevel.store.at(0); - this.cmbLevel.setValue(item.get('displayValue')); + this.cmbLevel.setValue(item.get('id'), item.get('displayValue')); this.activeLevel = item.get('id'); this.fillEffect(); }, From 1ae0f643fb6cde9e3a5a7b0c90b26e5dacaf9a97 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Fri, 18 Feb 2022 15:53:23 +0300 Subject: [PATCH 176/217] [SSE] Fix bug 55416 --- apps/spreadsheeteditor/main/app/controller/Toolbar.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/spreadsheeteditor/main/app/controller/Toolbar.js b/apps/spreadsheeteditor/main/app/controller/Toolbar.js index 97e314757..29be2e544 100644 --- a/apps/spreadsheeteditor/main/app/controller/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/controller/Toolbar.js @@ -3982,6 +3982,9 @@ define([ api: me.api, fontStore: me.fontStore, handler: function(dlg, result) { + if (result === 'ok') { + me.getApplication().getController('Print').updatePreview(); + } Common.NotificationCenter.trigger('edit:complete'); } }); From 383c95fc222766c916073f15ba630c21d7a4d669 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Fri, 18 Feb 2022 17:11:14 +0400 Subject: [PATCH 177/217] [DE mobile] Fix Bug 55049 --- apps/common/mobile/resources/less/common-ios.less | 3 +++ apps/common/mobile/resources/less/common-material.less | 3 +++ .../mobile/src/controller/add/AddTable.jsx | 2 +- apps/documenteditor/mobile/src/less/app.less | 9 +++++++++ 4 files changed, 16 insertions(+), 1 deletion(-) diff --git a/apps/common/mobile/resources/less/common-ios.less b/apps/common/mobile/resources/less/common-ios.less index 060ecd1bc..aa4f116eb 100644 --- a/apps/common/mobile/resources/less/common-ios.less +++ b/apps/common/mobile/resources/less/common-ios.less @@ -52,6 +52,9 @@ --f7-subnavbar-border-color: @background-menu-divider; --f7-list-border-color: @background-menu-divider; + --f7-picker-item-text-color: rgba(var(--text-normal), 0.45); + --f7-picker-item-selected-text-color: @text-normal; + // Main Toolbar #editor-navbar.navbar .right a + a, #editor-navbar.navbar .left a + a { diff --git a/apps/common/mobile/resources/less/common-material.less b/apps/common/mobile/resources/less/common-material.less index 146426690..dfd53ab6f 100644 --- a/apps/common/mobile/resources/less/common-material.less +++ b/apps/common/mobile/resources/less/common-material.less @@ -43,6 +43,9 @@ --f7-dialog-title-text-color: @text-normal; --f7-dialog-button-text-color: @brandColor; + --f7-picker-item-text-color: rgba(var(--text-normal), 0.45); + --f7-picker-item-selected-text-color: @text-normal; + .button { --f7-touch-ripple-color: transparent; } diff --git a/apps/documenteditor/mobile/src/controller/add/AddTable.jsx b/apps/documenteditor/mobile/src/controller/add/AddTable.jsx index 7916390a1..b0ff95107 100644 --- a/apps/documenteditor/mobile/src/controller/add/AddTable.jsx +++ b/apps/documenteditor/mobile/src/controller/add/AddTable.jsx @@ -37,7 +37,7 @@ class AddTableController extends Component { text: '', content: '
' + - '
' + + '
' + '
' + _t.textColumns + '
' + '
' + _t.textRows + '
' + '
' + diff --git a/apps/documenteditor/mobile/src/less/app.less b/apps/documenteditor/mobile/src/less/app.less index 82a687446..9de1ee6a8 100644 --- a/apps/documenteditor/mobile/src/less/app.less +++ b/apps/documenteditor/mobile/src/less/app.less @@ -4,6 +4,7 @@ @import '../../../../common/mobile/resources/less/_mixins.less'; @import '../../../../common/mobile/resources/less/colors-table.less'; @import '../../../../common/mobile/resources/less/colors-table-dark.less'; + @brandColor: var(--brand-word); .device-ios { @@ -158,4 +159,12 @@ height: 50px; } +// Picker + +.row-picker { + .col-50 { + color: @text-secondary; + } +} + From 44700f5f9b8d2aba7c140099272a516e045768c5 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 18 Feb 2022 18:01:23 +0300 Subject: [PATCH 178/217] Fix about: empty customer logo --- apps/common/main/lib/view/About.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/common/main/lib/view/About.js b/apps/common/main/lib/view/About.js index e588215ae..04f3530eb 100644 --- a/apps/common/main/lib/view/About.js +++ b/apps/common/main/lib/view/About.js @@ -235,10 +235,10 @@ define([ this.lblCompanyLic.parents('tr').addClass('hidden'); value = Common.UI.Themes.isDarkTheme() ? (customer.logoDark || customer.logo) : (customer.logo || customer.logoDark); - value.length ? + value && value.length ? this.divCompanyLogo.html('') : this.divCompanyLogo.parents('tr').addClass('hidden'); - value.length && Common.NotificationCenter.on('uitheme:changed', this.changeLogo.bind(this)); + value && value.length && Common.NotificationCenter.on('uitheme:changed', this.changeLogo.bind(this)); } else { this.cntLicenseeInfo.addClass('hidden'); this.cntLicensorInfo.addClass('margin-bottom'); From 4bfaa5661b3442b4ad59b7e3379d3e3725774b56 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 18 Feb 2022 21:08:31 +0300 Subject: [PATCH 179/217] Update translation --- apps/documenteditor/embed/locale/be.json | 6 + apps/documenteditor/embed/locale/es.json | 38 +- apps/documenteditor/forms/locale/cs.json | 7 +- apps/documenteditor/main/locale/be.json | 75 ++- apps/documenteditor/main/locale/cs.json | 28 +- apps/documenteditor/main/locale/en.json | 2 +- apps/documenteditor/main/locale/fr.json | 6 + apps/documenteditor/main/locale/id.json | 246 +++++++++- apps/documenteditor/main/locale/ja.json | 10 +- apps/documenteditor/main/locale/ro.json | 8 +- apps/documenteditor/main/locale/ru.json | 6 + apps/presentationeditor/embed/locale/be.json | 1 + apps/presentationeditor/embed/locale/es.json | 36 +- apps/presentationeditor/embed/locale/id.json | 3 +- apps/presentationeditor/main/locale/be.json | 12 +- apps/presentationeditor/main/locale/cs.json | 147 +++++- apps/presentationeditor/main/locale/el.json | 7 + apps/presentationeditor/main/locale/id.json | 461 ++++++++++++++++++- apps/presentationeditor/main/locale/ja.json | 15 +- apps/spreadsheeteditor/embed/locale/be.json | 3 + apps/spreadsheeteditor/embed/locale/es.json | 36 +- apps/spreadsheeteditor/main/locale/be.json | 32 +- apps/spreadsheeteditor/main/locale/cs.json | 16 + apps/spreadsheeteditor/main/locale/ja.json | 27 +- 24 files changed, 1084 insertions(+), 144 deletions(-) diff --git a/apps/documenteditor/embed/locale/be.json b/apps/documenteditor/embed/locale/be.json index bbf138fda..2ff4487d9 100644 --- a/apps/documenteditor/embed/locale/be.json +++ b/apps/documenteditor/embed/locale/be.json @@ -15,6 +15,9 @@ "DE.ApplicationController.errorFilePassProtect": "Файл абаронены паролем, яго немагчыма адкрыць.", "DE.ApplicationController.errorFileSizeExceed": "Памер файла перавышае ліміт, вызначаны для вашага сервера.
Звярніцеся да адміністратара сервера дакументаў за дадатковымі звесткамі.", "DE.ApplicationController.errorForceSave": "Падчас захавання файла адбылася памылка. Калі ласка, выкарыстайце параметр \"Спампаваць як\", каб захаваць файл на цвёрдым дыску камп’ютара, альбо паспрабуйце яшчэ раз пазней.", + "DE.ApplicationController.errorLoadingFont": "Шрыфты не загрузіліся.
Звярніцеся да адміністратара сервера дакументаў.", + "DE.ApplicationController.errorSubmit": "Не атрымалася адправіць.", + "DE.ApplicationController.errorTokenExpire": "Тэрмін дзеяння токена бяспекі дакумента сышоў.
Калі ласка, звярніцеся да адміністратара сервера дакументаў.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Злучэнне з інтэрнэтам было адноўлена, і версія файла змянілася.
Перш чым працягнуць працу, неабходна спампаваць файл альбо скапіяваць яго змесціва, каб захаваць даныя, а пасля перазагрузіць старонку.", "DE.ApplicationController.errorUserDrop": "На дадзены момант файл недаступны.", "DE.ApplicationController.notcriticalErrorTitle": "Увага", @@ -22,10 +25,13 @@ "DE.ApplicationController.scriptLoadError": "Занадта павольнае злучэнне, не ўсе кампаненты атрымалася загрузіць. Калі ласка, абнавіце старонку.", "DE.ApplicationController.textAnonymous": "Ананімны карыстальнік", "DE.ApplicationController.textClear": "Ачысціць усе палі", + "DE.ApplicationController.textGotIt": "Добра", "DE.ApplicationController.textGuest": "Госць", "DE.ApplicationController.textLoadingDocument": "Загрузка дакумента", + "DE.ApplicationController.textNext": "Наступнае поле", "DE.ApplicationController.textOf": "з", "DE.ApplicationController.textRequired": "Запоўніце ўсе абавязковыя палі, патрэбныя для адпраўлення формы. ", + "DE.ApplicationController.textSubmit": "Адправіць", "DE.ApplicationController.textSubmited": "Форма паспяхова адпраўленая
Пстрыкніце, каб закрыць падказку", "DE.ApplicationController.txtClose": "Закрыць", "DE.ApplicationController.txtEmpty": "(Пуста)", diff --git a/apps/documenteditor/embed/locale/es.json b/apps/documenteditor/embed/locale/es.json index 925a664fd..e091a1c5e 100644 --- a/apps/documenteditor/embed/locale/es.json +++ b/apps/documenteditor/embed/locale/es.json @@ -1,50 +1,50 @@ { "common.view.modals.txtCopy": "Copiar al portapapeles", - "common.view.modals.txtEmbed": "Incorporar", + "common.view.modals.txtEmbed": "Insertar", "common.view.modals.txtHeight": "Altura", "common.view.modals.txtShare": "Compartir enlace", "common.view.modals.txtWidth": "Ancho", "DE.ApplicationController.convertationErrorText": "Fallo de conversión.", - "DE.ApplicationController.convertationTimeoutText": "Se superó el tiempo de espera de conversión.", + "DE.ApplicationController.convertationTimeoutText": "Se ha superado el tiempo de conversión.", "DE.ApplicationController.criticalErrorTitle": "Error", - "DE.ApplicationController.downloadErrorText": "Error en la descarga", + "DE.ApplicationController.downloadErrorText": "Se ha producido un error en la descarga", "DE.ApplicationController.downloadTextText": "Descargando documento...", - "DE.ApplicationController.errorAccessDeny": "Está tratando de realizar una acción para la cual no tiene permiso.
Por favor, contacte con su Administrador del Servidor de Documentos.", + "DE.ApplicationController.errorAccessDeny": "Está intentando realizar una acción para la que no tiene permiso.
Contacte con el administrador del servidor de documentos.", "DE.ApplicationController.errorDefaultMessage": "Código de error: %1", - "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.errorEditingDownloadas": "Se ha producido un error durante el trabajo con el documento.
Use la opción 'Descargar como...' para guardar la copia de seguridad del archivo en el disco duro de su ordenador.", + "DE.ApplicationController.errorFilePassProtect": "El archivo está protegido por una contraseña y no se puede abrir.", + "DE.ApplicationController.errorFileSizeExceed": "El tamaño del archivo supera el límiete establecido por su servidor.
Contacte con el administrador del servidor de documentos para obtener más detalles.", + "DE.ApplicationController.errorForceSave": "Se ha producido un error al guardar el archivo. Utilice la opción \"Descargar como\" para guardar el archivo en el disco duro de su ordenador o inténtelo más tarde.", + "DE.ApplicationController.errorLoadingFont": "Los tipos de letra no están cargados.
Contacte con el administrador del servidor de documentos.", "DE.ApplicationController.errorSubmit": "Error al enviar.", - "DE.ApplicationController.errorTokenExpire": "El token de seguridad del documento ha expirado.
Por favor, póngase en contacto con el administrador del Servidor de Documentos.", - "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.", - "DE.ApplicationController.notcriticalErrorTitle": "Aviso", + "DE.ApplicationController.errorTokenExpire": "El token de seguridad del documento ha expirado.
Contacte con el administrador del servidor de documentos", + "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Se ha restablecido la conexión a Internet y se ha cambiado la versión del archivo.
Para poder seguir trabajando, es necesario descargar el archivo o copiar su contenido para asegurarse de que no se ha perdido nada, y luego volver a cargar esta página.", + "DE.ApplicationController.errorUserDrop": "No se puede acceder al archivo.", + "DE.ApplicationController.notcriticalErrorTitle": "Advertencia", "DE.ApplicationController.openErrorText": "Se ha producido un error al abrir el archivo. ", - "DE.ApplicationController.scriptLoadError": "La conexión a Internet es demasiado lenta, algunos de los componentes no se han podido cargar. Por favor, recargue la página.", + "DE.ApplicationController.scriptLoadError": "La conexión a Internet es demasiado lenta, algunos de los componentes no se han podido cargar. Recargue la página.", "DE.ApplicationController.textAnonymous": "Anónimo", "DE.ApplicationController.textClear": "Borrar todos los campos", - "DE.ApplicationController.textGotIt": "Entiendo", + "DE.ApplicationController.textGotIt": "Entendido", "DE.ApplicationController.textGuest": "Invitado", "DE.ApplicationController.textLoadingDocument": "Cargando documento", "DE.ApplicationController.textNext": "Campo siguiente", "DE.ApplicationController.textOf": "de", "DE.ApplicationController.textRequired": "Rellene todos los campos obligatorios para enviar el formulario.", "DE.ApplicationController.textSubmit": "Enviar", - "DE.ApplicationController.textSubmited": "Formulario enviado con éxito
Haga clic para cerrar el consejo", + "DE.ApplicationController.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...", + "DE.ApplicationController.waitText": "Espere...", "DE.ApplicationView.txtDownload": "Descargar", "DE.ApplicationView.txtDownloadDocx": "Descargar como docx", "DE.ApplicationView.txtDownloadPdf": "Descargar como pdf", - "DE.ApplicationView.txtEmbed": "Incorporar", + "DE.ApplicationView.txtEmbed": "Insertar", "DE.ApplicationView.txtFileLocation": "Abrir ubicación del archivo", - "DE.ApplicationView.txtFullScreen": "Pantalla Completa", + "DE.ApplicationView.txtFullScreen": "Pantalla completa", "DE.ApplicationView.txtPrint": "Imprimir", "DE.ApplicationView.txtShare": "Compartir" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/cs.json b/apps/documenteditor/forms/locale/cs.json index 45054ea8c..c45e2c933 100644 --- a/apps/documenteditor/forms/locale/cs.json +++ b/apps/documenteditor/forms/locale/cs.json @@ -123,6 +123,7 @@ "DE.Controllers.ApplicationController.textSaveAs": "Uložit jako PDF", "DE.Controllers.ApplicationController.textSaveAsDesktop": "Uložit jako...", "DE.Controllers.ApplicationController.textSubmited": "Formulář úspěšně uložen.
Klikněte pro zavření nápovědy.", + "DE.Controllers.ApplicationController.titleLicenseExp": "Platnost licence vypršela", "DE.Controllers.ApplicationController.titleServerVersion": "Editor byl aktualizován", "DE.Controllers.ApplicationController.titleUpdateVersion": "Verze změněna", "DE.Controllers.ApplicationController.txtArt": "Zde napište text", @@ -139,6 +140,7 @@ "DE.Controllers.ApplicationController.uploadImageSizeMessage": "Obrázek je příliš velký. Maximální velikost je 25 MB.", "DE.Controllers.ApplicationController.waitText": "Čekejte prosím…", "DE.Controllers.ApplicationController.warnLicenseExceeded": "Došlo k dosažení limitu počtu souběžných spojení %1 editorů. Dokument bude otevřen pouze pro náhled.
Pro více podrobností kontaktujte svého správce.", + "DE.Controllers.ApplicationController.warnLicenseExp": "Platnost vaší licence vypršela.
Prosím, aktualizujte vaší licenci a obnovte stránku.", "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "Platnost vaší licence skončila.
Nemáte přístup k upravování dokumentů.
Obraťte se na svého správce.", "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "Vaši licenci je nutné obnovit.
Přístup k možnostem editace dokumentu je omezen.
Pro získání plného přístupu prosím kontaktujte svého administrátora.", "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "Došlo dosažení limitu %1 editorů v režimu spolupráce na úpravách. Ohledně podrobností se obraťte na svého správce.", @@ -147,12 +149,15 @@ "DE.Views.ApplicationView.textClear": "Vymazat všechna pole", "DE.Views.ApplicationView.textCopy": "Kopírovat", "DE.Views.ApplicationView.textCut": "Vyjmout", + "DE.Views.ApplicationView.textFitToPage": "Přízpůsobit stránce", + "DE.Views.ApplicationView.textFitToWidth": "Přizpůsobit šířce", "DE.Views.ApplicationView.textNext": "Následující pole", "DE.Views.ApplicationView.textPaste": "Vložit", "DE.Views.ApplicationView.textPrintSel": "Vytisknout vybrané", "DE.Views.ApplicationView.textRedo": "Znovu", "DE.Views.ApplicationView.textSubmit": "Potvrdit", "DE.Views.ApplicationView.textUndo": "Zpět", + "DE.Views.ApplicationView.textZoom": "Přiblížení", "DE.Views.ApplicationView.txtDarkMode": "Tmavý režim", "DE.Views.ApplicationView.txtDownload": "Stáhnout", "DE.Views.ApplicationView.txtDownloadDocx": "Stáhnout jako docx", @@ -162,5 +167,5 @@ "DE.Views.ApplicationView.txtFullScreen": "Na celou obrazovku", "DE.Views.ApplicationView.txtPrint": "Tisk", "DE.Views.ApplicationView.txtShare": "Sdílet", - "DE.Views.ApplicationView.txtTheme": "Vzhled uživatelského rozhraní" + "DE.Views.ApplicationView.txtTheme": "Vzhled prostředí" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/be.json b/apps/documenteditor/main/locale/be.json index eba9b2179..01b681768 100644 --- a/apps/documenteditor/main/locale/be.json +++ b/apps/documenteditor/main/locale/be.json @@ -35,7 +35,7 @@ "Common.Controllers.ReviewChanges.textIndentRight": "Водступ справа", "Common.Controllers.ReviewChanges.textInserted": "Устаўлена:", "Common.Controllers.ReviewChanges.textItalic": "Курсіў", - "Common.Controllers.ReviewChanges.textJustify": "Па шырыні", + "Common.Controllers.ReviewChanges.textJustify": "Выраўнованне па шырыні", "Common.Controllers.ReviewChanges.textKeepLines": "Не падзяляць абзац", "Common.Controllers.ReviewChanges.textKeepNext": "Не адасобліваць ад наступнага", "Common.Controllers.ReviewChanges.textLeft": "Выраўнаваць па леваму краю", @@ -79,16 +79,25 @@ "Common.Controllers.ReviewChanges.textUrl": "Устаўце URL-адрас дакумента", "Common.Controllers.ReviewChanges.textWidow": "Кіраванне акном", "Common.define.chartData.textArea": "Вобласць", + "Common.define.chartData.textAreaStackedPer": "100% з абласцямі і зводкай", "Common.define.chartData.textBar": "Лінія", "Common.define.chartData.textBarNormal3d": "Трохвымерная гістаграма з групаваннем", "Common.define.chartData.textBarNormal3dPerspective": "Трохвымерная гістаграма", "Common.define.chartData.textBarStacked3d": "Трохвымерная састаўная гістаграма", + "Common.define.chartData.textBarStackedPer": "100% слупкі са зводкай", "Common.define.chartData.textBarStackedPer3d": "Трохвымерная састаўная гістаграма 100%", "Common.define.chartData.textCharts": "Дыяграмы", "Common.define.chartData.textColumn": "Гістаграма", "Common.define.chartData.textHBarNormal3d": "Трохвымерная лінейная з групаваннем", + "Common.define.chartData.textHBarStacked3d": "3-D лініі са зводкай", + "Common.define.chartData.textHBarStackedPer": "100% лініі са зводкай", + "Common.define.chartData.textHBarStackedPer3d": "3-D 100% лініі са зводкай", "Common.define.chartData.textLine": "Графік", + "Common.define.chartData.textLine3d": "3-D лініі", + "Common.define.chartData.textLineStackedPer": "100% лініі са зводкай", + "Common.define.chartData.textLineStackedPerMarker": "100% лініі са зводкай і адзнакамі", "Common.define.chartData.textPie": "Па крузе", + "Common.define.chartData.textPie3d": "3-D круг", "Common.define.chartData.textPoint": "XY (рассеяная)", "Common.define.chartData.textStock": "Біржа", "Common.define.chartData.textSurface": "Паверхня", @@ -178,6 +187,8 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Спісы з адзнакамі", "Common.Views.AutoCorrectDialog.textBy": "На", "Common.Views.AutoCorrectDialog.textDelete": "Выдаліць", + "Common.Views.AutoCorrectDialog.textFLCells": "Першыя словы ў ячэйках табліцы з вялікай літары", + "Common.Views.AutoCorrectDialog.textFLSentence": "Сказы з вялікай літары", "Common.Views.AutoCorrectDialog.textHyphens": "Злучкі (--) на працяжнік (—)", "Common.Views.AutoCorrectDialog.textMathCorrect": "Аўтазамена матэматычнымі сімваламі", "Common.Views.AutoCorrectDialog.textNumbered": "Нумараваныя спісы", @@ -197,6 +208,8 @@ "Common.Views.AutoCorrectDialog.warnReset": "Любая дададзеная вамі аўтазамена будзе выдаленая, а значэнні вернуцца да прадвызначаных. Хочаце працягнуць?", "Common.Views.AutoCorrectDialog.warnRestore": "Аўтазамена для %1 скінутая да прадвызначанага значэння. Хочаце працягнуць?", "Common.Views.Chat.textSend": "Адправіць", + "Common.Views.Comments.mniAuthorAsc": "Аўтары ад А да Я", + "Common.Views.Comments.mniAuthorDesc": "Аўтары ад Я да А", "Common.Views.Comments.textAdd": "Дадаць", "Common.Views.Comments.textAddComment": "Дадаць каментар", "Common.Views.Comments.textAddCommentToDoc": "Дадаць каментар да дакумента", @@ -339,7 +352,8 @@ "Common.Views.ReviewChanges.txtFinalCap": "Выніковы дакумент", "Common.Views.ReviewChanges.txtHistory": "Гісторыя версій", "Common.Views.ReviewChanges.txtMarkup": "Усе змены {0}", - "Common.Views.ReviewChanges.txtMarkupCap": "Змены", + "Common.Views.ReviewChanges.txtMarkupCap": "Разметка і зноскі", + "Common.Views.ReviewChanges.txtMarkupSimple": "Усе змены {0}
Зноскі адключаныя", "Common.Views.ReviewChanges.txtNext": "Далей", "Common.Views.ReviewChanges.txtOriginal": "Усе змены адкінутыя {0}", "Common.Views.ReviewChanges.txtOriginalCap": "Зыходны дакумент", @@ -489,6 +503,7 @@ "DE.Controllers.Main.errorUsersExceed": "Перасягнута колькасць карыстальнікаў, дазволеных згодна тарыфу", "DE.Controllers.Main.errorViewerDisconnect": "Злучэнне страчана. Вы зможаце праглядаць дакумент,
але не зможаце спампаваць альбо надрукаваць яго да аднаўлення злучэння і перазагрузкі старонкі.", "DE.Controllers.Main.leavePageText": "У дакуменце ёсць незахаваныя змены. Пстрыкніце \"Застацца на гэтай старонцы\", пасля \"Захаваць\". Націсніце \"Пакінуць старонку\", каб адкінуць змены.", + "DE.Controllers.Main.leavePageTextOnClose": "Усе незахаваныя змены ў гэтым дакуменце страцяцца.
Націсніце \"Скасаваць\" і \"Захаваць\", каб захаваць іх. Націсніце \"Добра\", каб адкінуць незахаваныя змены.", "DE.Controllers.Main.loadFontsTextText": "Загрузка даных…", "DE.Controllers.Main.loadFontsTitleText": "Загрузка даных", "DE.Controllers.Main.loadFontTextText": "Загрузка даных…", @@ -561,9 +576,9 @@ "DE.Controllers.Main.txtEvenPage": "Цотная старонка", "DE.Controllers.Main.txtFiguredArrows": "Фігурныя стрэлкі", "DE.Controllers.Main.txtFirstPage": "Першая старонка", - "DE.Controllers.Main.txtFooter": "Ніжні калантытул", + "DE.Controllers.Main.txtFooter": "Ніжні калонтытул", "DE.Controllers.Main.txtFormulaNotInTable": "Формула не ў табліцы", - "DE.Controllers.Main.txtHeader": "Верхні калантытул", + "DE.Controllers.Main.txtHeader": "Верхні калонтытул", "DE.Controllers.Main.txtHyperlink": "Гіперспасылка", "DE.Controllers.Main.txtIndTooLarge": "Індэкс занадта вялікі", "DE.Controllers.Main.txtLines": "Лініі", @@ -789,7 +804,7 @@ "DE.Controllers.Main.uploadDocSizeMessage": "Перасягнуты максімальны памер дакумента.", "DE.Controllers.Main.uploadImageExtMessage": "Невядомы фармат выявы.", "DE.Controllers.Main.uploadImageFileCountMessage": "Выяў не запампавана.", - "DE.Controllers.Main.uploadImageSizeMessage": "Перасягнуты максімальны памер выявы", + "DE.Controllers.Main.uploadImageSizeMessage": "Занадта вялікая выява. Максімальны памер - 25 МБ.", "DE.Controllers.Main.uploadImageTextText": "Запампоўванне выявы…", "DE.Controllers.Main.uploadImageTitleText": "Запампоўванне выявы", "DE.Controllers.Main.waitText": "Калі ласка, пачакайце...", @@ -805,6 +820,7 @@ "DE.Controllers.Main.warnProcessRightsChange": "Вам адмоўлена ў правах на рэдагаванне гэтага файла.", "DE.Controllers.Navigation.txtBeginning": "Пачатак дакумента", "DE.Controllers.Navigation.txtGotoBeginning": "Перайсці да пачатку дакумента", + "DE.Controllers.Statusbar.textDisconnect": "Злучэнне страчана
Выконваецца спроба падлучэння. Праверце налады.", "DE.Controllers.Statusbar.textHasChanges": "Адсочаны новыя змены", "DE.Controllers.Statusbar.textTrackChanges": "Дакумент адкрыты з уключаным рэжымам адсочвання зменаў.", "DE.Controllers.Statusbar.tipReview": "Адсочваць змены", @@ -828,6 +844,7 @@ "DE.Controllers.Toolbar.textScript": "Індэксы", "DE.Controllers.Toolbar.textSymbols": "Сімвалы", "DE.Controllers.Toolbar.textWarning": "Увага", + "DE.Controllers.Toolbar.tipMarkersArrow": "Маркеры-стрэлкі", "DE.Controllers.Toolbar.txtAccent_Accent": "Націск", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Стрэлка ўправа-ўлева зверху", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Стрэлка ўлева зверху", @@ -1202,7 +1219,7 @@ "DE.Views.ChartSettings.textUndock": "Адмацаваць ад панэлі", "DE.Views.ChartSettings.textWidth": "Шырыня", "DE.Views.ChartSettings.textWrap": "Стыль абцякання", - "DE.Views.ChartSettings.txtBehind": "За", + "DE.Views.ChartSettings.txtBehind": "За тэкстам", "DE.Views.ChartSettings.txtInFront": "Перад тэкстам", "DE.Views.ChartSettings.txtInline": "У тэксце", "DE.Views.ChartSettings.txtSquare": "Вакол", @@ -1316,8 +1333,8 @@ "DE.Views.DocumentHolder.directHText": "Гарызантальна", "DE.Views.DocumentHolder.directionText": "Напрамак тэксту", "DE.Views.DocumentHolder.editChartText": "Рэдагаваць даныя", - "DE.Views.DocumentHolder.editFooterText": "Рэдагаваць ніжні калантытул", - "DE.Views.DocumentHolder.editHeaderText": "Рэдагаваць верхні калантытул", + "DE.Views.DocumentHolder.editFooterText": "Рэдагаваць ніжні калонтытул", + "DE.Views.DocumentHolder.editHeaderText": "Рэдагаваць верхні калонтытул", "DE.Views.DocumentHolder.editHyperlinkText": "Рэдагаваць гіперспасылку", "DE.Views.DocumentHolder.guestText": "Госць", "DE.Views.DocumentHolder.hyperlinkText": "Гіперспасылка", @@ -1421,6 +1438,7 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Абнавіць змест", "DE.Views.DocumentHolder.textWrap": "Стыль абцякання", "DE.Views.DocumentHolder.tipIsLocked": "Гэты элемент рэдагуецца іншым карыстальнікам.", + "DE.Views.DocumentHolder.tipMarkersArrow": "Маркеры-стрэлкі", "DE.Views.DocumentHolder.toDictionaryText": "Дадаць у слоўнік", "DE.Views.DocumentHolder.txtAddBottom": "Дадаць ніжнюю мяжу", "DE.Views.DocumentHolder.txtAddFractionBar": "Дадаць рыску дробу", @@ -1432,7 +1450,7 @@ "DE.Views.DocumentHolder.txtAddTop": "Дадаць верхнюю мяжу", "DE.Views.DocumentHolder.txtAddVer": "Дадаць вертыкальную лінію", "DE.Views.DocumentHolder.txtAlignToChar": "Выраўноўванне па сімвале", - "DE.Views.DocumentHolder.txtBehind": "За", + "DE.Views.DocumentHolder.txtBehind": "За тэкстам", "DE.Views.DocumentHolder.txtBorderProps": "Уласцівасці межаў", "DE.Views.DocumentHolder.txtBottom": "Знізу", "DE.Views.DocumentHolder.txtColumnAlign": "Выраўноўванне слупка", @@ -1576,6 +1594,7 @@ "DE.Views.FileMenu.btnSettingsCaption": "Дадатковыя налады…", "DE.Views.FileMenu.btnToEditCaption": "Рэдагаваць дакумент", "DE.Views.FileMenu.textDownload": "Спампаваць", + "DE.Views.FileMenuPanels.CreateNew.txtBlank": "Пусты дакумент", "DE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Стварыць новы", "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Ужыць", "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Дадаць аўтара", @@ -1622,7 +1641,7 @@ "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Перш чым убачыць змены іх патрэбна ухваліць", "DE.Views.FileMenuPanels.Settings.strFast": "Хуткі", "DE.Views.FileMenuPanels.Settings.strFontRender": "Хінтынг шрыфтоў", - "DE.Views.FileMenuPanels.Settings.strForcesave": "Заўсёды захоўваць на серверы (інакш захоўваць на серверы падчас закрыцця дакумента)", + "DE.Views.FileMenuPanels.Settings.strForcesave": " Дадаваць версію ў сховішча пасля націскання кнопкі \"Захаваць\" або \"Ctrl+S\"", "DE.Views.FileMenuPanels.Settings.strInputMode": "Уключыць іерогліфы", "DE.Views.FileMenuPanels.Settings.strLiveComment": "Уключыць адлюстраванне каментароў у тэксце", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Налады макрасаў", @@ -1643,7 +1662,7 @@ "DE.Views.FileMenuPanels.Settings.textAutoSave": "Аўтазахаванне", "DE.Views.FileMenuPanels.Settings.textCompatible": "Сумяшчальнасць", "DE.Views.FileMenuPanels.Settings.textDisabled": "Выключана", - "DE.Views.FileMenuPanels.Settings.textForceSave": "Захаваць на серверы", + "DE.Views.FileMenuPanels.Settings.textForceSave": "Захаванне прамежкавых версій", "DE.Views.FileMenuPanels.Settings.textMinute": "Кожную хвіліну", "DE.Views.FileMenuPanels.Settings.textOldVersions": "Зрабіць файлы сумяшчальнымі са старымі версіямі MS Word пры захаванні як DOCX", "DE.Views.FileMenuPanels.Settings.txtAll": "Праглядзець усе", @@ -1669,6 +1688,7 @@ "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Паказваць апавяшчэнне", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Адключыць усе макрасы з апавяшчэннем", "DE.Views.FileMenuPanels.Settings.txtWin": "як Windows", + "DE.Views.FormSettings.textAlways": "Заўсёды", "DE.Views.FormSettings.textAspect": "Захоўваць прапорцыі", "DE.Views.FormSettings.textAutofit": "Аўтазапаўненне", "DE.Views.FormSettings.textBackgroundColor": "Колер фону", @@ -1683,9 +1703,12 @@ "DE.Views.FormSettings.textPlaceholder": "Запаўняльнік", "DE.Views.FormSettings.textRequired": "Патрабуецца", "DE.Views.FormSettings.textSelectImage": "Абраць выяву", + "DE.Views.FormSettings.textTipAdd": "Дадаць новае значэнне", "DE.Views.FormSettings.textTipDown": "Перамясціць уніз", "DE.Views.FormSettings.textTipUp": "Перамясціць уверх", + "DE.Views.FormSettings.textWidth": "Шырыня ячэйкі", "DE.Views.FormsTab.capBtnComboBox": "Поле са спісам", + "DE.Views.FormsTab.textCreateForm": "Дадайце палі і стварыце запаўняльны дакумент OFORM", "DE.Views.FormsTab.textNoHighlight": "Без падсвятлення", "DE.Views.FormsTab.tipImageField": "Уставіць выяву", "DE.Views.FormsTab.txtUntitled": "Без назвы", @@ -1696,8 +1719,8 @@ "DE.Views.HeaderFooterSettings.textDiffFirst": "Асобны для першай старонкі", "DE.Views.HeaderFooterSettings.textDiffOdd": "Асобныя для цотных і няцотных", "DE.Views.HeaderFooterSettings.textFrom": "Пачаць з", - "DE.Views.HeaderFooterSettings.textHeaderFromBottom": "Ніжні калантытул", - "DE.Views.HeaderFooterSettings.textHeaderFromTop": "Верхні калантытул", + "DE.Views.HeaderFooterSettings.textHeaderFromBottom": "Ніжні калонтытул", + "DE.Views.HeaderFooterSettings.textHeaderFromTop": "Верхні калонтытул", "DE.Views.HeaderFooterSettings.textInsertCurrent": "Уставіць на бягучай пазіцыі", "DE.Views.HeaderFooterSettings.textOptions": "Параметры", "DE.Views.HeaderFooterSettings.textPageNum": "Уставіць нумар старонкі", @@ -1745,7 +1768,7 @@ "DE.Views.ImageSettings.textSize": "Памер", "DE.Views.ImageSettings.textWidth": "Шырыня", "DE.Views.ImageSettings.textWrap": "Стыль абцякання", - "DE.Views.ImageSettings.txtBehind": "За", + "DE.Views.ImageSettings.txtBehind": "За тэкстам", "DE.Views.ImageSettings.txtInFront": "Перад тэкстам", "DE.Views.ImageSettings.txtInline": "У тэксце", "DE.Views.ImageSettings.txtSquare": "Вакол", @@ -1820,7 +1843,7 @@ "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Лініі і стрэлкі", "DE.Views.ImageSettingsAdvanced.textWidth": "Шырыня", "DE.Views.ImageSettingsAdvanced.textWrap": "Стыль абцякання", - "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "За", + "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "За тэкстам", "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Перад тэкстам", "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "У тэксце", "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Вакол", @@ -1853,7 +1876,7 @@ "DE.Views.LineNumbersDialog.txtAutoText": "Аўта", "DE.Views.Links.capBtnBookmarks": "Закладка", "DE.Views.Links.capBtnCaption": "Назва", - "DE.Views.Links.capBtnContentsUpdate": "Абнавіць", + "DE.Views.Links.capBtnContentsUpdate": "Абнавіць табліцу", "DE.Views.Links.capBtnCrossRef": "Перакрыжаваная спасылка", "DE.Views.Links.capBtnInsContents": "Змест", "DE.Views.Links.capBtnInsFootnote": "Зноска", @@ -2094,7 +2117,7 @@ "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Аўта", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Без межаў", "DE.Views.RightMenu.txtChartSettings": "Налады дыяграмы", - "DE.Views.RightMenu.txtHeaderFooterSettings": "Налады верхняга і ніжняга калантытулаў", + "DE.Views.RightMenu.txtHeaderFooterSettings": "Налады верхняга і ніжняга калонтытулаў", "DE.Views.RightMenu.txtImageSettings": "Налады выявы", "DE.Views.RightMenu.txtMailMergeSettings": "Налады аб’яднання", "DE.Views.RightMenu.txtParagraphSettings": "Налады абзаца", @@ -2147,7 +2170,7 @@ "DE.Views.ShapeSettings.textWrap": "Стыль абцякання", "DE.Views.ShapeSettings.tipAddGradientPoint": "Дадаць кропку градыента", "DE.Views.ShapeSettings.tipRemoveGradientPoint": "Выдаліць кропку градыента", - "DE.Views.ShapeSettings.txtBehind": "За", + "DE.Views.ShapeSettings.txtBehind": "За тэкстам", "DE.Views.ShapeSettings.txtBrownPaper": "Карычневая папера", "DE.Views.ShapeSettings.txtCanvas": "Палатно", "DE.Views.ShapeSettings.txtCarton": "Картон", @@ -2205,6 +2228,7 @@ "DE.Views.TableOfContentsSettings.strLinks": "Фарматаваць змест у спасылкі", "DE.Views.TableOfContentsSettings.strShowPages": "Паказаць нумары старонак", "DE.Views.TableOfContentsSettings.textBuildTable": "Стварыць змест з", + "DE.Views.TableOfContentsSettings.textBuildTableOF": "Стварыць табліцу з дапамогай", "DE.Views.TableOfContentsSettings.textEquation": "Раўнанне", "DE.Views.TableOfContentsSettings.textFigure": "Фігура", "DE.Views.TableOfContentsSettings.textLeader": "Запаўняльнік", @@ -2218,6 +2242,7 @@ "DE.Views.TableOfContentsSettings.textStyles": "Стылі", "DE.Views.TableOfContentsSettings.textTable": "Табліца", "DE.Views.TableOfContentsSettings.textTitle": "Змест", + "DE.Views.TableOfContentsSettings.txtCentered": "Па цэнтры", "DE.Views.TableOfContentsSettings.txtClassic": "Класічны", "DE.Views.TableOfContentsSettings.txtCurrent": "Бягучы", "DE.Views.TableOfContentsSettings.txtModern": "Сучасны", @@ -2375,10 +2400,13 @@ "DE.Views.TextArtSettings.tipAddGradientPoint": "Дадаць кропку градыента", "DE.Views.TextArtSettings.tipRemoveGradientPoint": "Выдаліць кропку градыента", "DE.Views.TextArtSettings.txtNoBorders": "Без абвядзення", + "DE.Views.TextToTableDialog.textAutofit": "Аўтаматычны выбар шырыні", "DE.Views.TextToTableDialog.textColumns": "Слупкі", + "DE.Views.TextToTableDialog.textContents": "Аўтазапаўненне па змесціву", "DE.Views.TextToTableDialog.textOther": "Іншае", "DE.Views.TextToTableDialog.textPara": "Абзацы", "DE.Views.TextToTableDialog.textTableSize": "Памеры табліцы", + "DE.Views.TextToTableDialog.textWindow": "Аўтазапаўненне па шырыні акна", "DE.Views.TextToTableDialog.txtAutoText": "Аўта", "DE.Views.Toolbar.capBtnAddComment": "Дадаць каментар", "DE.Views.Toolbar.capBtnBlankPage": "Пустая старонка", @@ -2389,7 +2417,7 @@ "DE.Views.Toolbar.capBtnInsControls": "Элементы кіравання змесцівам", "DE.Views.Toolbar.capBtnInsDropcap": "Буквіца", "DE.Views.Toolbar.capBtnInsEquation": "Раўнанне", - "DE.Views.Toolbar.capBtnInsHeader": "Калантытулы", + "DE.Views.Toolbar.capBtnInsHeader": "Калонтытулы", "DE.Views.Toolbar.capBtnInsImage": "Выява", "DE.Views.Toolbar.capBtnInsPagebreak": "Разрывы", "DE.Views.Toolbar.capBtnInsShape": "Фігура", @@ -2407,12 +2435,13 @@ "DE.Views.Toolbar.capImgForward": "Перамясціць уперад", "DE.Views.Toolbar.capImgGroup": "Групаванне", "DE.Views.Toolbar.capImgWrapping": "Абцяканне", + "DE.Views.Toolbar.mniCapitalizeWords": "Кожнае слова з вялікай літары", "DE.Views.Toolbar.mniCustomTable": "Уставіць адвольную табліцу", "DE.Views.Toolbar.mniDrawTable": "Нарысаваць табліцу", "DE.Views.Toolbar.mniEditControls": "Налады элемента кіравання", "DE.Views.Toolbar.mniEditDropCap": "Налады буквіцы", - "DE.Views.Toolbar.mniEditFooter": "Рэдагаваць ніжні калантытул", - "DE.Views.Toolbar.mniEditHeader": "Рэдагаваць верхні калантытул", + "DE.Views.Toolbar.mniEditFooter": "Рэдагаваць ніжні калонтытул", + "DE.Views.Toolbar.mniEditHeader": "Рэдагаваць верхні калонтытул", "DE.Views.Toolbar.mniEraseTable": "Ачысціць табліцу", "DE.Views.Toolbar.mniFromFile": "З файла", "DE.Views.Toolbar.mniFromStorage": "Са сховішча", @@ -2504,6 +2533,7 @@ "DE.Views.Toolbar.tipAlignRight": "Выраўнаваць па праваму краю", "DE.Views.Toolbar.tipBack": "Назад", "DE.Views.Toolbar.tipBlankPage": "Уставіць пустую старонку", + "DE.Views.Toolbar.tipChangeCase": "Змяніць рэгістр", "DE.Views.Toolbar.tipChangeChart": "Змяніць тып дыяграмы", "DE.Views.Toolbar.tipClearStyle": "Ачысціць стыль", "DE.Views.Toolbar.tipColorSchemas": "Змяніць каляровую схему", @@ -2515,7 +2545,7 @@ "DE.Views.Toolbar.tipDecFont": "Паменшыць памер шрыфту", "DE.Views.Toolbar.tipDecPrLeft": "Паменшыць водступ", "DE.Views.Toolbar.tipDropCap": "Уставіць буквіцу", - "DE.Views.Toolbar.tipEditHeader": "Рэдагаваць калантытулы", + "DE.Views.Toolbar.tipEditHeader": "Рэдагаваць калонтытулы", "DE.Views.Toolbar.tipFontColor": "Колер шрыфту", "DE.Views.Toolbar.tipFontName": "Шрыфт", "DE.Views.Toolbar.tipFontSize": "Памер шрыфту", @@ -2583,6 +2613,7 @@ "DE.Views.Toolbar.txtScheme7": "Справядлівасць", "DE.Views.Toolbar.txtScheme8": "Плаваючая", "DE.Views.Toolbar.txtScheme9": "Ліцейня", + "DE.Views.ViewTab.textAlwaysShowToolbar": "Заўсёды паказваць панэль інструментаў", "DE.Views.ViewTab.textNavigation": "Навігацыя", "DE.Views.ViewTab.textZoom": "Маштаб", "DE.Views.WatermarkSettingsDialog.textAuto": "Аўта", diff --git a/apps/documenteditor/main/locale/cs.json b/apps/documenteditor/main/locale/cs.json index 7e3a3e1cf..c2ab1a6b4 100644 --- a/apps/documenteditor/main/locale/cs.json +++ b/apps/documenteditor/main/locale/cs.json @@ -183,7 +183,7 @@ "Common.UI.SynchronizeTip.textDontShow": "Tuto zprávu už nezobrazovat", "Common.UI.SynchronizeTip.textSynchronize": "Dokument byl mezitím změněn jiným uživatelem.
Kliknutím uložte změny provedené vámi a načtení těch od ostatních.", "Common.UI.ThemeColorPalette.textStandartColors": "Standardní barvy", - "Common.UI.ThemeColorPalette.textThemeColors": "Barvy motivu vzhledu", + "Common.UI.ThemeColorPalette.textThemeColors": "Barvy vzhledu prostředí", "Common.UI.Themes.txtThemeClassicLight": "Standartní světlost", "Common.UI.Themes.txtThemeDark": "Tmavé", "Common.UI.Themes.txtThemeLight": "Světlé", @@ -808,16 +808,16 @@ "DE.Controllers.Main.txtShape_snip2SameRect": "Obdélník se dvěma ustřiženými rohy na stejné straně", "DE.Controllers.Main.txtShape_snipRoundRect": "Obdélník s jedním zaobleným a jedním ustřiženým rohem na stejné straně", "DE.Controllers.Main.txtShape_spline": "Křivka", - "DE.Controllers.Main.txtShape_star10": "Hvězda s 10 cípy", - "DE.Controllers.Main.txtShape_star12": "Hvězda s 12 cípy", - "DE.Controllers.Main.txtShape_star16": "Hvězda se 16 cípy", - "DE.Controllers.Main.txtShape_star24": "Hvězda se 24 cípy", - "DE.Controllers.Main.txtShape_star32": "Hvězda s 32 cípy", - "DE.Controllers.Main.txtShape_star4": "Hvězda se 4 cípy", - "DE.Controllers.Main.txtShape_star5": "Hvězda s 5 cípy", - "DE.Controllers.Main.txtShape_star6": "Hvězda se 6 cípy", - "DE.Controllers.Main.txtShape_star7": "Hvězda se 7 cípy", - "DE.Controllers.Main.txtShape_star8": "Hvězda s 8 cípy", + "DE.Controllers.Main.txtShape_star10": "Hvězda s 10 paprsky", + "DE.Controllers.Main.txtShape_star12": "Hvězda s 12 paprsky", + "DE.Controllers.Main.txtShape_star16": "Hvězda s 16 paprsky", + "DE.Controllers.Main.txtShape_star24": "Hvězda se 24 paprsky", + "DE.Controllers.Main.txtShape_star32": "Hvězda se 32 paprsky", + "DE.Controllers.Main.txtShape_star4": "Hvězda se 4 paprsky", + "DE.Controllers.Main.txtShape_star5": "Hvězda s 5 paprsky", + "DE.Controllers.Main.txtShape_star6": "Hvězda se 6 paprsky", + "DE.Controllers.Main.txtShape_star7": "Hvězda se 7 paprsky", + "DE.Controllers.Main.txtShape_star8": "Hvězda s 8 paprsky", "DE.Controllers.Main.txtShape_stripedRightArrow": "Proužkovaná šipka vpravo", "DE.Controllers.Main.txtShape_sun": "Slunce", "DE.Controllers.Main.txtShape_teardrop": "Slza", @@ -922,6 +922,7 @@ "DE.Controllers.Toolbar.tipMarkersFRhombus": "Kosočtvercové odrážky s výplní", "DE.Controllers.Toolbar.tipMarkersFRound": "Vyplněné kulaté odrážky", "DE.Controllers.Toolbar.tipMarkersFSquare": "Plné čtvercové odrážky", + "DE.Controllers.Toolbar.tipMarkersHRound": "Duté kulaté odrážky", "DE.Controllers.Toolbar.tipMarkersStar": "Hvězdičkové odrážky", "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Víceúrovňové číslované odrážky", "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Víceúrovňové symbolové odrážky", @@ -1532,6 +1533,7 @@ "DE.Views.DocumentHolder.tipMarkersFRhombus": "Kosočtvercové odrážky s výplní", "DE.Views.DocumentHolder.tipMarkersFRound": "Vyplněné kulaté odrážky", "DE.Views.DocumentHolder.tipMarkersFSquare": "Plné čtvercové odrážky", + "DE.Views.DocumentHolder.tipMarkersHRound": "Duté kulaté odrážky", "DE.Views.DocumentHolder.tipMarkersStar": "Hvězdičkové odrážky", "DE.Views.DocumentHolder.toDictionaryText": "Přidat do slovníku", "DE.Views.DocumentHolder.txtAddBottom": "Přidat spodní ohraničení", @@ -2081,7 +2083,7 @@ "DE.Views.ListSettingsDialog.txtType": "Typ", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", "DE.Views.MailMergeEmailDlg.okButtonText": "Poslat", - "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Téma", + "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Prostředí", "DE.Views.MailMergeEmailDlg.textAttachDocx": "Připojit jako DOCX", "DE.Views.MailMergeEmailDlg.textAttachPdf": "Připojit jako PDF", "DE.Views.MailMergeEmailDlg.textFileName": "Název souboru", @@ -2813,7 +2815,7 @@ "DE.Views.ViewTab.textDarkDocument": "Tmavý režim dokumentu", "DE.Views.ViewTab.textFitToPage": "Přizpůsobit stránce", "DE.Views.ViewTab.textFitToWidth": "Přizpůsobit šířce", - "DE.Views.ViewTab.textInterfaceTheme": "Vzhled uživatelského rozhraní", + "DE.Views.ViewTab.textInterfaceTheme": "Vzhled prostředí", "DE.Views.ViewTab.textNavigation": "Navigace", "DE.Views.ViewTab.textRulers": "Pravítka", "DE.Views.ViewTab.textStatusBar": "Stavová lišta", diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 29c15f1eb..dc8b72519 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -512,8 +512,8 @@ "DE.Controllers.LeftMenu.txtCompatible": "The document will be saved to the new format. It will allow to use all the editor features, but might affect the document layout.
Use the 'Compatibility' option of the advanced settings if you want to make the files compatible with older MS Word versions.", "DE.Controllers.LeftMenu.txtUntitled": "Untitled", "DE.Controllers.LeftMenu.warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", - "DE.Controllers.LeftMenu.warnDownloadAsRTF": "If you continue saving in this format some of the formatting might be lost.
Are you sure you want to continue?", "DE.Controllers.LeftMenu.warnDownloadAsPdf": "Your {0} will be converted to an editable format. This may take a while. The resulting document will be optimized to allow you to edit the text, so it might not look exactly like the original {0}, especially if the original file contained lots of graphics.", + "DE.Controllers.LeftMenu.warnDownloadAsRTF": "If you continue saving in this format some of the formatting might be lost.
Are you sure you want to continue?", "DE.Controllers.Main.applyChangesTextText": "Loading the changes...", "DE.Controllers.Main.applyChangesTitleText": "Loading the Changes", "DE.Controllers.Main.convertationTimeoutText": "Conversion timeout exceeded.", diff --git a/apps/documenteditor/main/locale/fr.json b/apps/documenteditor/main/locale/fr.json index aaef5fb29..b7a916f08 100644 --- a/apps/documenteditor/main/locale/fr.json +++ b/apps/documenteditor/main/locale/fr.json @@ -213,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Listes à puces automatiques", "Common.Views.AutoCorrectDialog.textBy": "Par", "Common.Views.AutoCorrectDialog.textDelete": "Supprimer", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Ajouter un point avec un double espace", "Common.Views.AutoCorrectDialog.textFLCells": "Mettre la première lettre des cellules du tableau en majuscule", "Common.Views.AutoCorrectDialog.textFLSentence": "Majuscule en début de phrase", "Common.Views.AutoCorrectDialog.textHyperlink": "Adresses Internet et réseau avec des liens hypertextes", @@ -511,6 +512,7 @@ "DE.Controllers.LeftMenu.txtCompatible": "Le fichier sera enregistré au nouveau format. Toutes les fonctionnalités des éditeurs vous seront disponibles, mais cela peut affecter la mise en page du document.
Activez l'option \" Compatibilité \" dans les paramètres avancés pour rendre votre fichier compatible avec les anciennes versions de MS Word. ", "DE.Controllers.LeftMenu.txtUntitled": "Sans titre", "DE.Controllers.LeftMenu.warnDownloadAs": "Si vous continuez à enregistrer dans ce format toutes les fonctions sauf le texte seront perdues.
Êtes-vous sûr de vouloir continuer ?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "Votre {0} sera converti en un format modifiable. Cette opération peut prendre quelque temps. Le document résultant sera optimisé pour l'édition de texte, il peut donc être différent de l'original {0}, surtout si le fichier original contient de nombreux éléments graphiques.", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Si vous continuer à sauvegarder dans ce format une partie de la mise en forme peut être supprimée
Êtes-vous sûr de vouloir continuer?", "DE.Controllers.Main.applyChangesTextText": "Chargement des changemets...", "DE.Controllers.Main.applyChangesTitleText": "Chargement des changemets", @@ -1460,6 +1462,7 @@ "DE.Views.DocumentHolder.strSign": "Signer", "DE.Views.DocumentHolder.styleText": "En tant que style", "DE.Views.DocumentHolder.tableText": "Tableau", + "DE.Views.DocumentHolder.textAccept": "Accepter la modification", "DE.Views.DocumentHolder.textAlign": "Aligner", "DE.Views.DocumentHolder.textArrange": "Organiser", "DE.Views.DocumentHolder.textArrangeBack": "Mettre en arrière-plan", @@ -1494,6 +1497,7 @@ "DE.Views.DocumentHolder.textPaste": "Coller", "DE.Views.DocumentHolder.textPrevPage": "Page précédente", "DE.Views.DocumentHolder.textRefreshField": "Actualiser le champ", + "DE.Views.DocumentHolder.textReject": "Rejeter la modification", "DE.Views.DocumentHolder.textRemCheckBox": "Supprimer une case à cocher", "DE.Views.DocumentHolder.textRemComboBox": "Supprimer une zone de liste déroulante", "DE.Views.DocumentHolder.textRemDropdown": "Supprimer une liste déroulante", @@ -2378,6 +2382,8 @@ "DE.Views.Statusbar.pageIndexText": "Page {0} de {1}", "DE.Views.Statusbar.tipFitPage": "Ajuster à la page", "DE.Views.Statusbar.tipFitWidth": "Ajuster à la largeur", + "DE.Views.Statusbar.tipHandTool": "Outil Main", + "DE.Views.Statusbar.tipSelectTool": "Outil de sélection", "DE.Views.Statusbar.tipSetLang": "Définir la langue du texte", "DE.Views.Statusbar.tipZoomFactor": "Grossissement", "DE.Views.Statusbar.tipZoomIn": "Zoom avant", diff --git a/apps/documenteditor/main/locale/id.json b/apps/documenteditor/main/locale/id.json index 7546a1bd0..31dfeedb8 100644 --- a/apps/documenteditor/main/locale/id.json +++ b/apps/documenteditor/main/locale/id.json @@ -49,6 +49,9 @@ "Common.Controllers.ReviewChanges.textParaDeleted": "Paragraph Deleted", "Common.Controllers.ReviewChanges.textParaFormatted": "Paragraph Formatted", "Common.Controllers.ReviewChanges.textParaInserted": "Paragraph Inserted", + "Common.Controllers.ReviewChanges.textParaMoveFromDown": "Pindah ke bawah", + "Common.Controllers.ReviewChanges.textParaMoveFromUp": "Pindah ke atas", + "Common.Controllers.ReviewChanges.textParaMoveTo": "Pindah", "Common.Controllers.ReviewChanges.textPosition": "Position", "Common.Controllers.ReviewChanges.textRight": "Align right", "Common.Controllers.ReviewChanges.textShape": "Shape", @@ -60,12 +63,23 @@ "Common.Controllers.ReviewChanges.textStrikeout": "Strikeout", "Common.Controllers.ReviewChanges.textSubScript": "Subscript", "Common.Controllers.ReviewChanges.textSuperScript": "Superscript", + "Common.Controllers.ReviewChanges.textTableChanged": "Setelan tabel", + "Common.Controllers.ReviewChanges.textTableRowsAdd": "Baris tabel ditambah", + "Common.Controllers.ReviewChanges.textTableRowsDel": "Baris Tabel dihapus", "Common.Controllers.ReviewChanges.textTabs": "Change tabs", "Common.Controllers.ReviewChanges.textUnderline": "Underline", "Common.Controllers.ReviewChanges.textWidow": "Widow control", + "Common.define.chartData.textBar": "Palang", + "Common.define.chartData.textCharts": "Bagan", "Common.define.chartData.textColumn": "Kolom", "Common.define.chartData.textLine": "Garis", + "Common.define.chartData.textPie": "Diagram Lingkaran", + "Common.define.chartData.textStock": "Diagram Garis", + "Common.Translation.warnFileLockedBtnEdit": "Buat salinan", + "Common.UI.ButtonColored.textAutoColor": "Otomatis", "Common.UI.ButtonColored.textNewColor": "Tambahkan warna khusus baru", + "Common.UI.Calendar.textMonths": "bulan", + "Common.UI.Calendar.textYears": "tahun", "Common.UI.ComboBorderSize.txtNoBorders": "Tidak ada pembatas", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Tidak ada pembatas", "Common.UI.ComboDataView.emptyComboText": "Tidak ada model", @@ -87,6 +101,7 @@ "Common.UI.SynchronizeTip.textDontShow": "Jangan tampilkan pesan ini lagi", "Common.UI.SynchronizeTip.textSynchronize": "Dokumen telah diubah oleh pengguna lain.
Silakan klik untuk menyimpan perubahan dan memuat ulang pembaruan.", "Common.UI.ThemeColorPalette.textStandartColors": "Warna Standar", + "Common.UI.ThemeColorPalette.textThemeColors": "Warna Tema", "Common.UI.Window.cancelButtonText": "Batalkan", "Common.UI.Window.closeButtonText": "Tutup", "Common.UI.Window.noButtonText": "Tidak", @@ -105,11 +120,18 @@ "Common.Views.About.txtTel": "tel:", "Common.Views.About.txtVersion": "Versi", "Common.Views.AutoCorrectDialog.textAdd": "Tambahkan", + "Common.Views.AutoCorrectDialog.textBy": "oleh", + "Common.Views.AutoCorrectDialog.textDelete": "Hapus", + "Common.Views.AutoCorrectDialog.textReplace": "Ganti", + "Common.Views.AutoCorrectDialog.textReset": "Atur ulang", + "Common.Views.AutoCorrectDialog.textResetAll": "Atur ulang kembali ke awal", + "Common.Views.AutoCorrectDialog.textRestore": "Pemulihan", "Common.Views.Chat.textSend": "Kirim", "Common.Views.Comments.textAdd": "Tambahkan", "Common.Views.Comments.textAddComment": "Tambahkan", "Common.Views.Comments.textAddCommentToDoc": "Tambahkan Komentar untuk Dokumen", "Common.Views.Comments.textAddReply": "Tambahkan Balasan", + "Common.Views.Comments.textAll": "Semua", "Common.Views.Comments.textAnonym": "Tamu", "Common.Views.Comments.textCancel": "Batalkan", "Common.Views.Comments.textClose": "Tutup", @@ -135,8 +157,21 @@ "Common.Views.ExternalMergeEditor.textClose": "Close", "Common.Views.ExternalMergeEditor.textSave": "Save & Exit", "Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recipients", + "Common.Views.Header.textAdvSettings": "Pengaturan Lanjut", "Common.Views.Header.textBack": "Buka Dokumen", + "Common.Views.Header.textHideLines": "Sembunyikan Mistar", + "Common.Views.Header.textHideStatusBar": "Sembunyikan Bilah Status", + "Common.Views.Header.textZoom": "Pembesaran", + "Common.Views.Header.tipDownload": "Unduh File", + "Common.Views.Header.tipRedo": "Ulangi", + "Common.Views.Header.tipSave": "Simpan", + "Common.Views.Header.tipUndo": "Batalkan", + "Common.Views.Header.tipViewSettings": "Lihat Pengaturan", "Common.Views.Header.txtAccessRights": "Ubah hak akses", + "Common.Views.Header.txtRename": "Ganti nama", + "Common.Views.History.textCloseHistory": "Tutup riwayat", + "Common.Views.History.textRestore": "Pemulihan", + "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "Tempel URL gambar:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Kolom ini harus diisi", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Bagian ini harus berupa URL dengn format \"http://www.contoh.com\"", @@ -146,28 +181,64 @@ "Common.Views.InsertTableDialog.txtMinText": "Input minimal untuk kolom ini adalah {0}.", "Common.Views.InsertTableDialog.txtRows": "Jumlah Baris", "Common.Views.InsertTableDialog.txtTitle": "Ukuran Tabel", + "Common.Views.InsertTableDialog.txtTitleSplit": "Pisahkan Sel", + "Common.Views.LanguageDialog.labelSelect": "Pilih bahasa dokumen", "Common.Views.OpenDialog.txtEncoding": "Encoding ", "Common.Views.OpenDialog.txtOpenFile": "Masukkan kata sandi untuk buka file", + "Common.Views.OpenDialog.txtPassword": "Kata Sandi", + "Common.Views.OpenDialog.txtPreview": "Pratinjau", "Common.Views.OpenDialog.txtTitle": "Choose %1 options", + "Common.Views.PasswordDialog.txtPassword": "Kata Sandi", + "Common.Views.PasswordDialog.txtTitle": "Setel kata sandi", "Common.Views.PasswordDialog.txtWarning": "Perhatian: Tidak bisa dipulihkan jika Anda kehilangan atau lupa kata sandi. Simpan di tempat yang aman.", + "Common.Views.Plugins.textStart": "Mulai", + "Common.Views.Protection.txtChangePwd": "Ubah kata sandi", + "Common.Views.RenameDialog.textName": "Nama file", + "Common.Views.ReviewChanges.textEnable": "Aktifkan", "Common.Views.ReviewChanges.tipHistory": "Tampilkan riwayat versi", + "Common.Views.ReviewChanges.tipSetDocLang": "Atur Bahasa Dokumen", + "Common.Views.ReviewChanges.tipSetSpelling": "Periksa Ejaan", "Common.Views.ReviewChanges.txtAccept": "Accept", "Common.Views.ReviewChanges.txtAcceptAll": "Accept All Changes", "Common.Views.ReviewChanges.txtAcceptCurrent": "Accept Current Changes", "Common.Views.ReviewChanges.txtClose": "Close", "Common.Views.ReviewChanges.txtCommentRemove": "Hapus", + "Common.Views.ReviewChanges.txtCommentResolve": "Selesaikan", + "Common.Views.ReviewChanges.txtDocLang": "Bahasa", "Common.Views.ReviewChanges.txtHistory": "Riwayat versi", "Common.Views.ReviewChanges.txtNext": "To Next Change", "Common.Views.ReviewChanges.txtPrev": "To Previous Change", + "Common.Views.ReviewChanges.txtPreview": "Pratinjau", "Common.Views.ReviewChanges.txtReject": "Reject", "Common.Views.ReviewChanges.txtRejectAll": "Reject All Changes", "Common.Views.ReviewChanges.txtRejectCurrent": "Reject Current Changes", + "Common.Views.ReviewChanges.txtSpelling": "Periksa Ejaan", "Common.Views.ReviewChangesDialog.txtAccept": "Terima", "Common.Views.ReviewChangesDialog.txtAcceptAll": "Terima semua perubahan", "Common.Views.ReviewChangesDialog.txtReject": "Tolak", "Common.Views.ReviewPopover.textAdd": "Tambahkan", "Common.Views.ReviewPopover.textAddReply": "Tambahkan balasan", + "Common.Views.ReviewPopover.textCancel": "Batalkan", + "Common.Views.ReviewPopover.textClose": "Tutup", + "Common.Views.ReviewPopover.textEdit": "OK", + "Common.Views.ReviewPopover.textOpenAgain": "Buka Lagi", + "Common.Views.ReviewPopover.textReply": "Balas", + "Common.Views.ReviewPopover.textResolve": "Selesaikan", "Common.Views.ReviewPopover.txtAccept": "Terima", + "Common.Views.ReviewPopover.txtDeleteTip": "Hapus", + "Common.Views.ReviewPopover.txtEditTip": "Sunting", + "Common.Views.ReviewPopover.txtReject": "Tolak", + "Common.Views.SelectFileDlg.textTitle": "Pilih sumber data", + "Common.Views.SignDialog.textBold": "Tebal", + "Common.Views.SignDialog.textChange": "Ganti", + "Common.Views.SignDialog.textItalic": "Miring", + "Common.Views.SignDialog.textSelect": "Pilih", + "Common.Views.SignDialog.tipFontSize": "Ukuran Huruf", + "Common.Views.SignSettingsDialog.textInfoName": "Nama", + "Common.Views.SignSettingsDialog.txtEmpty": "Kolom ini harus diisi", + "Common.Views.SymbolTableDialog.textCharacter": "Karakter", + "Common.Views.SymbolTableDialog.textFont": "Huruf", + "Common.Views.SymbolTableDialog.textSpecial": "karakter khusus", "Common.Views.SymbolTableDialog.textSymbols": "Simbol", "DE.Controllers.LeftMenu.leavePageText": "All unsaved changes in this document will be lost.
Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.", "DE.Controllers.LeftMenu.newDocumentTitle": "Dokumen tidak bernama", @@ -232,7 +303,10 @@ "DE.Controllers.Main.splitMaxColsErrorText": "Jumlah kolom harus kurang dari %1.", "DE.Controllers.Main.splitMaxRowsErrorText": "Jumlah haris harus kurang dari %1.", "DE.Controllers.Main.textAnonymous": "Anonim", + "DE.Controllers.Main.textClose": "Tutup", "DE.Controllers.Main.textCloseTip": "Klik untuk menutup tips", + "DE.Controllers.Main.textGuest": "Tamu", + "DE.Controllers.Main.textLearnMore": "Pelajari selengkapnya", "DE.Controllers.Main.textLoadingDocument": "Memuat dokumen", "DE.Controllers.Main.textStrict": "Strict mode", "DE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.
Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.", @@ -240,19 +314,36 @@ "DE.Controllers.Main.txtAbove": "Di atas", "DE.Controllers.Main.txtArt": "Your text here", "DE.Controllers.Main.txtBasicShapes": "Bentuk Dasar", + "DE.Controllers.Main.txtBelow": "Di bawah", "DE.Controllers.Main.txtButtons": "Tombol", "DE.Controllers.Main.txtCallouts": "Balon Kata", "DE.Controllers.Main.txtCharts": "Bagan", "DE.Controllers.Main.txtDiagramTitle": "Chart Title", "DE.Controllers.Main.txtEditingMode": "Atur mode editing...", "DE.Controllers.Main.txtErrorLoadHistory": "History loading failed", + "DE.Controllers.Main.txtEvenPage": "Halaman Genap", "DE.Controllers.Main.txtFiguredArrows": "Tanda Panah Berpola", "DE.Controllers.Main.txtLines": "Garis", "DE.Controllers.Main.txtMath": "Matematika", "DE.Controllers.Main.txtNeedSynchronize": "Ada pembaruan", + "DE.Controllers.Main.txtNone": "tidak ada", "DE.Controllers.Main.txtRectangles": "Persegi Panjang", "DE.Controllers.Main.txtSeries": "Series", + "DE.Controllers.Main.txtShape_bevel": "Miring", + "DE.Controllers.Main.txtShape_frame": "Kerangka", + "DE.Controllers.Main.txtShape_leftArrow": "Panah Kiri", + "DE.Controllers.Main.txtShape_line": "Garis", + "DE.Controllers.Main.txtShape_mathEqual": "Setara", + "DE.Controllers.Main.txtShape_mathMinus": "Minus", + "DE.Controllers.Main.txtShape_mathPlus": "Plus", + "DE.Controllers.Main.txtShape_pie": "Diagram Lingkaran", + "DE.Controllers.Main.txtShape_plus": "Plus", + "DE.Controllers.Main.txtShape_rightArrow": "Tanda Panah ke Kanan", "DE.Controllers.Main.txtStarsRibbons": "Bintang & Pita", + "DE.Controllers.Main.txtStyle_Normal": "Normal", + "DE.Controllers.Main.txtStyle_Quote": "Kutip", + "DE.Controllers.Main.txtStyle_Title": "Judul", + "DE.Controllers.Main.txtTableOfContents": "Daftar Isi", "DE.Controllers.Main.txtXAxis": "X Axis", "DE.Controllers.Main.txtYAxis": "Y Axis", "DE.Controllers.Main.unknownErrorText": "Error tidak dikenal.", @@ -262,6 +353,7 @@ "DE.Controllers.Main.uploadImageSizeMessage": "Melebihi ukuran maksimal file.", "DE.Controllers.Main.uploadImageTextText": "Mengunggah gambar...", "DE.Controllers.Main.uploadImageTitleText": "Mengunggah Gambar", + "DE.Controllers.Main.waitText": "Silahkan menunggu", "DE.Controllers.Main.warnBrowserIE9": "Aplikasi ini tidak berjalan dengan baik di IE9. Gunakan IE10 atau versi yang terbaru", "DE.Controllers.Main.warnBrowserZoom": "Pengaturan pembesaran tampilan pada browser Anda saat ini tidak didukung sepenuhnya. Silakan atur ulang ke tampilan standar dengan menekan Ctrl+0.", "DE.Controllers.Main.warnProcessRightsChange": "Hak Anda untuk mengedit file ditolak.", @@ -276,6 +368,7 @@ "DE.Controllers.Toolbar.textFontSizeErr": "Input yang dimasukkan salah.
Silakan masukkan input numerik antara 1 dan 300", "DE.Controllers.Toolbar.textFraction": "Pecahan", "DE.Controllers.Toolbar.textFunction": "Fungsi", + "DE.Controllers.Toolbar.textGroup": "Grup", "DE.Controllers.Toolbar.textInsert": "Sisipkan", "DE.Controllers.Toolbar.textIntegral": "Integral", "DE.Controllers.Toolbar.textLargeOperator": "Operator Besar", @@ -604,10 +697,23 @@ "DE.Controllers.Toolbar.txtSymbol_vdots": "Vertical Ellipsis", "DE.Controllers.Toolbar.txtSymbol_xsi": "Xi", "DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", + "DE.Controllers.Viewport.textFitPage": "Sesuaikan Halaman", + "DE.Controllers.Viewport.textFitWidth": "Sesuaikan Lebar", "DE.Views.BookmarksDialog.textAdd": "Tambahkan", + "DE.Views.BookmarksDialog.textClose": "Tutup", + "DE.Views.BookmarksDialog.textCopy": "Salin", + "DE.Views.BookmarksDialog.textDelete": "Hapus", + "DE.Views.BookmarksDialog.textLocation": "Lokasi", + "DE.Views.BookmarksDialog.textName": "Nama", + "DE.Views.BookmarksDialog.textSort": "Urutkan berdasar", "DE.Views.CaptionDialog.textAfter": "setelah", "DE.Views.CaptionDialog.textBefore": "Sebelum", + "DE.Views.CaptionDialog.textColon": "Titik dua", + "DE.Views.CaptionDialog.textInsert": "Sisipkan", + "DE.Views.CaptionDialog.textNumbering": "Penomoran", "DE.Views.CaptionDialog.textTable": "Tabel", + "DE.Views.CellsAddDialog.textCol": "Kolom", + "DE.Views.CellsAddDialog.textRow": "Baris", "DE.Views.ChartSettings.textAdvanced": "Tampilkan pengaturan lanjut", "DE.Views.ChartSettings.textChartType": "Ubah Tipe Bagan", "DE.Views.ChartSettings.textEditData": "Edit Data", @@ -626,9 +732,25 @@ "DE.Views.ChartSettings.txtTight": "Ketat", "DE.Views.ChartSettings.txtTitle": "Bagan", "DE.Views.ChartSettings.txtTopAndBottom": "Atas dan bawah", + "DE.Views.ControlSettingsDialog.strGeneral": "Umum", "DE.Views.ControlSettingsDialog.textAdd": "Tambahkan", + "DE.Views.ControlSettingsDialog.textChange": "Sunting", + "DE.Views.ControlSettingsDialog.textColor": "Warna", + "DE.Views.ControlSettingsDialog.textDelete": "Hapus", + "DE.Views.ControlSettingsDialog.textLang": "Bahasa", + "DE.Views.ControlSettingsDialog.textName": "Judul", + "DE.Views.ControlSettingsDialog.textNone": "tidak ada", + "DE.Views.ControlSettingsDialog.textTag": "Tandai", + "DE.Views.ControlSettingsDialog.textUp": "Naik", + "DE.Views.ControlSettingsDialog.textValue": "Nilai", + "DE.Views.CrossReferenceDialog.textInsert": "Sisipkan", + "DE.Views.CrossReferenceDialog.textTable": "Tabel", + "DE.Views.CustomColumnsDialog.textColumns": "Jumlah Kolom", + "DE.Views.CustomColumnsDialog.textTitle": "Kolom", + "DE.Views.DateTimeDialog.textLang": "Bahasa", "DE.Views.DocumentHolder.aboveText": "Di atas", "DE.Views.DocumentHolder.addCommentText": "Tambahkan Komentar", + "DE.Views.DocumentHolder.advancedDropCapText": "Pengaturan Drop Cap", "DE.Views.DocumentHolder.advancedFrameText": "Pengaturan Lanjut untuk Kerangka", "DE.Views.DocumentHolder.advancedParagraphText": "Pengaturan Lanjut untuk Paragraf", "DE.Views.DocumentHolder.advancedTableText": "Pengaturan Lanjut untuk Tabel", @@ -672,6 +794,7 @@ "DE.Views.DocumentHolder.mergeCellsText": "Gabungkan Sel", "DE.Views.DocumentHolder.moreText": "Varian lain...", "DE.Views.DocumentHolder.noSpellVariantsText": "Tidak ada varian", + "DE.Views.DocumentHolder.notcriticalErrorTitle": "Peringatan", "DE.Views.DocumentHolder.originalSizeText": "Ukuran Standar", "DE.Views.DocumentHolder.paragraphText": "Paragraf", "DE.Views.DocumentHolder.removeHyperlinkText": "Hapus Hyperlink", @@ -696,11 +819,16 @@ "DE.Views.DocumentHolder.textArrangeForward": "Majukan", "DE.Views.DocumentHolder.textArrangeFront": "Tampilkan di Halaman Muka", "DE.Views.DocumentHolder.textCopy": "Salin", + "DE.Views.DocumentHolder.textCropFill": "Isian", "DE.Views.DocumentHolder.textCut": "Potong", "DE.Views.DocumentHolder.textEditWrapBoundary": "Edit Pembatas Potongan Teks", + "DE.Views.DocumentHolder.textFromFile": "Dari File", + "DE.Views.DocumentHolder.textFromUrl": "Dari URL", "DE.Views.DocumentHolder.textNextPage": "Halaman Selanjutnya", "DE.Views.DocumentHolder.textPaste": "Tempel", "DE.Views.DocumentHolder.textPrevPage": "Halaman Sebelumnya", + "DE.Views.DocumentHolder.textRemove": "Hapus", + "DE.Views.DocumentHolder.textReplace": "Ganti Gambar", "DE.Views.DocumentHolder.textSettings": "Pengaturan", "DE.Views.DocumentHolder.textShapeAlignBottom": "Rata Bawah", "DE.Views.DocumentHolder.textShapeAlignCenter": "Rata Tengah", @@ -709,6 +837,7 @@ "DE.Views.DocumentHolder.textShapeAlignRight": "Rata Kanan", "DE.Views.DocumentHolder.textShapeAlignTop": "Rata Atas", "DE.Views.DocumentHolder.textTOC": "Daftar Isi", + "DE.Views.DocumentHolder.textUndo": "Batalkan", "DE.Views.DocumentHolder.textWrap": "Bentuk Potongan", "DE.Views.DocumentHolder.tipIsLocked": "Elemen ini sedang diedit oleh pengguna lain.", "DE.Views.DocumentHolder.txtAddBottom": "Add bottom border", @@ -834,6 +963,7 @@ "DE.Views.DropcapSettingsAdvanced.textWidth": "Lebar", "DE.Views.DropcapSettingsAdvanced.tipFontName": "Nama Huruf", "DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Tidak ada pembatas", + "DE.Views.EditListItemDialog.textValue": "Nilai", "DE.Views.FileMenu.btnBackCaption": "Buka Dokumen", "DE.Views.FileMenu.btnCreateNewCaption": "Buat Baru", "DE.Views.FileMenu.btnDownloadCaption": "Unduh sebagai...", @@ -849,22 +979,30 @@ "DE.Views.FileMenu.btnSettingsCaption": "Pengaturan Lanjut...", "DE.Views.FileMenu.btnToEditCaption": "Edit Dokumen", "DE.Views.FileMenu.textDownload": "Download", + "DE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Buat Baru", + "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Terapkan", "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Tambahkan penulis", "DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Penulis", "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Ubah hak akses", "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Komentar", + "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Dibuat", "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Memuat...", + "DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Pemilik", "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Halaman", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Paragraf", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokasi", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Orang yang memiliki hak", "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Simbol dengan spasi", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistik", + "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subyek", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Simbol", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Judul Dokumen", + "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Diunggah", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Kata", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Change access rights", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Persons who have rights", + "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Peringatan", + "DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Edit Dokumen", "DE.Views.FileMenuPanels.Settings.okButtonText": "Terapkan", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Turn on alignment guides", "DE.Views.FileMenuPanels.Settings.strAutosave": "Aktifkan simpan otomatis", @@ -890,6 +1028,8 @@ "DE.Views.FileMenuPanels.Settings.textMinute": "Tiap Menit", "DE.Views.FileMenuPanels.Settings.txtAll": "Lihat Semua", "DE.Views.FileMenuPanels.Settings.txtCm": "Sentimeter", + "DE.Views.FileMenuPanels.Settings.txtFitPage": "Sesuaikan Halaman", + "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Sesuaikan Lebar", "DE.Views.FileMenuPanels.Settings.txtInput": "Ganti Input", "DE.Views.FileMenuPanels.Settings.txtLast": "Lihat yang Terakhir", "DE.Views.FileMenuPanels.Settings.txtLiveComment": "Komentar Langsung", @@ -899,6 +1039,15 @@ "DE.Views.FileMenuPanels.Settings.txtPt": "Titik", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Periksa Ejaan", "DE.Views.FileMenuPanels.Settings.txtWin": "sebagai Windows", + "DE.Views.FormSettings.textBackgroundColor": "Warna Latar", + "DE.Views.FormSettings.textColor": "Warna Pembatas", + "DE.Views.FormSettings.textDelete": "Hapus", + "DE.Views.FormSettings.textDisconnect": "Putuskan hubungan", + "DE.Views.FormSettings.textFromFile": "Dari File", + "DE.Views.FormSettings.textFromUrl": "Dari URL", + "DE.Views.FormSettings.textImage": "Gambar", + "DE.Views.FormSettings.textNever": "tidak pernah", + "DE.Views.FormsTab.capBtnImage": "Gambar", "DE.Views.FormsTab.tipImageField": "Sisipkan Gambar", "DE.Views.HeaderFooterSettings.textBottomCenter": "Bawah Tengah", "DE.Views.HeaderFooterSettings.textBottomLeft": "Bawah Kiri", @@ -916,12 +1065,15 @@ "DE.Views.HeaderFooterSettings.textTopRight": "Atas Kanan", "DE.Views.HyperlinkSettingsDialog.textDefault": "Fragmen teks yang dipilih", "DE.Views.HyperlinkSettingsDialog.textDisplay": "Tampilan", + "DE.Views.HyperlinkSettingsDialog.textExternal": "Tautan eksternal", "DE.Views.HyperlinkSettingsDialog.textTitle": "Pengaturan Hyperlink", "DE.Views.HyperlinkSettingsDialog.textTooltip": "Teks ScreenTip", "DE.Views.HyperlinkSettingsDialog.textUrl": "Tautkan dengan", "DE.Views.HyperlinkSettingsDialog.txtEmpty": "Kolom ini harus diisi", "DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Bagian ini harus berupa URL dengn format \"http://www.contoh.com\"", "DE.Views.ImageSettings.textAdvanced": "Tampilkan pengaturan lanjut", + "DE.Views.ImageSettings.textCropFill": "Isian", + "DE.Views.ImageSettings.textEdit": "Sunting", "DE.Views.ImageSettings.textFromFile": "Dari File", "DE.Views.ImageSettings.textFromUrl": "Dari URL", "DE.Views.ImageSettings.textHeight": "Ketinggian", @@ -939,6 +1091,8 @@ "DE.Views.ImageSettings.txtTopAndBottom": "Atas dan bawah", "DE.Views.ImageSettingsAdvanced.strMargins": "Lapisan Teks", "DE.Views.ImageSettingsAdvanced.textAlignment": "Perataan", + "DE.Views.ImageSettingsAdvanced.textAltDescription": "Deskripsi", + "DE.Views.ImageSettingsAdvanced.textAltTitle": "Judul", "DE.Views.ImageSettingsAdvanced.textArrows": "Tanda panah", "DE.Views.ImageSettingsAdvanced.textBeginSize": "Ukuran Mulai", "DE.Views.ImageSettingsAdvanced.textBeginStyle": "Gaya Mulai", @@ -1001,11 +1155,21 @@ "DE.Views.LeftMenu.tipSearch": "Cari", "DE.Views.LeftMenu.tipSupport": "Masukan & Dukungan", "DE.Views.LeftMenu.tipTitles": "Judul", + "DE.Views.LineNumbersDialog.textNumbering": "Penomoran", + "DE.Views.LineNumbersDialog.txtAutoText": "Otomatis", + "DE.Views.Links.capBtnInsContents": "Daftar Isi", + "DE.Views.Links.textContentsSettings": "Pengaturan", "DE.Views.Links.tipInsertHyperlink": "Tambahkan hyperlink", "DE.Views.ListSettingsDialog.textAuto": "Otomatis", + "DE.Views.ListSettingsDialog.textCenter": "Tengah", "DE.Views.ListSettingsDialog.textLeft": "Kiri", + "DE.Views.ListSettingsDialog.textPreview": "Pratinjau", "DE.Views.ListSettingsDialog.textRight": "Kanan", + "DE.Views.ListSettingsDialog.txtAlign": "Perataan", + "DE.Views.ListSettingsDialog.txtColor": "Warna", + "DE.Views.ListSettingsDialog.txtNone": "tidak ada", "DE.Views.ListSettingsDialog.txtSize": "Ukuran", + "DE.Views.ListSettingsDialog.txtType": "Tipe", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", "DE.Views.MailMergeEmailDlg.okButtonText": "Send", "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Theme", @@ -1053,9 +1217,17 @@ "DE.Views.MailMergeSettings.txtPrev": "To previous record", "DE.Views.MailMergeSettings.txtUntitled": "Untitled", "DE.Views.MailMergeSettings.warnProcessMailMerge": "Starting merge failed", + "DE.Views.Navigation.txtCollapse": "Tutup semua", + "DE.Views.Navigation.txtExpand": "Buka semua", + "DE.Views.NoteSettingsDialog.textApply": "Terapkan", + "DE.Views.NoteSettingsDialog.textInsert": "Sisipkan", + "DE.Views.NoteSettingsDialog.textLocation": "Lokasi", + "DE.Views.NoteSettingsDialog.textNumbering": "Penomoran", "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Warning", "DE.Views.PageMarginsDialog.textBottom": "Bottom", "DE.Views.PageMarginsDialog.textLeft": "Left", + "DE.Views.PageMarginsDialog.textNormal": "Normal", + "DE.Views.PageMarginsDialog.textPreview": "Pratinjau", "DE.Views.PageMarginsDialog.textRight": "Right", "DE.Views.PageMarginsDialog.textTitle": "Margins", "DE.Views.PageMarginsDialog.textTop": "Top", @@ -1064,6 +1236,10 @@ "DE.Views.PageSizeDialog.textHeight": "Height", "DE.Views.PageSizeDialog.textTitle": "Page Size", "DE.Views.PageSizeDialog.textWidth": "Width", + "DE.Views.PageSizeDialog.txtCustom": "Khusus", + "DE.Views.ParagraphSettings.strIndent": "Indentasi", + "DE.Views.ParagraphSettings.strIndentsLeftText": "Kiri", + "DE.Views.ParagraphSettings.strIndentsRightText": "Kanan", "DE.Views.ParagraphSettings.strLineHeight": "Spasi Antar Baris", "DE.Views.ParagraphSettings.strParagraphSpacing": "Spasi", "DE.Views.ParagraphSettings.strSomeParagraphSpace": "Jangan tambahkan interval antar paragraf dengan model yang sama", @@ -1086,6 +1262,8 @@ "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Kiri", "DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Spasi Antar Baris", "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Kanan", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Setelah", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Sebelum", "DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Tetap satukan garis", "DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Satukan dengan berikutnya", "DE.Views.ParagraphSettingsAdvanced.strMargins": "Lapisan", @@ -1113,7 +1291,9 @@ "DE.Views.ParagraphSettingsAdvanced.textEffects": "Efek", "DE.Views.ParagraphSettingsAdvanced.textExact": "Persis", "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Baris Pertama", + "DE.Views.ParagraphSettingsAdvanced.textJustified": "Rata Kiri-Kanan", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Kiri", + "DE.Views.ParagraphSettingsAdvanced.textNone": "tidak ada", "DE.Views.ParagraphSettingsAdvanced.textPosition": "Posisi", "DE.Views.ParagraphSettingsAdvanced.textRemove": "Hapus", "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Hapus Semua", @@ -1134,6 +1314,7 @@ "DE.Views.ParagraphSettingsAdvanced.tipOuter": "Buat Pembatas Luar Saja", "DE.Views.ParagraphSettingsAdvanced.tipRight": "Buat Pembatas Kanan Saja", "DE.Views.ParagraphSettingsAdvanced.tipTop": "Buat Pembatas Atas Saja", + "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Otomatis", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Tidak ada pembatas", "DE.Views.RightMenu.txtChartSettings": "Pengaturan Bagan", "DE.Views.RightMenu.txtHeaderFooterSettings": "Pengaturan Header dan Footer", @@ -1152,6 +1333,7 @@ "DE.Views.ShapeSettings.strSize": "Ukuran", "DE.Views.ShapeSettings.strStroke": "Tekanan", "DE.Views.ShapeSettings.strTransparency": "Opasitas", + "DE.Views.ShapeSettings.strType": "Tipe", "DE.Views.ShapeSettings.textAdvanced": "Tampilkan pengaturan lanjut", "DE.Views.ShapeSettings.textBorderSizeErr": "Input yang dimasukkan salah.
Silakan masukkan input antara 1pt dan 1584pt.", "DE.Views.ShapeSettings.textColor": "Isian Warna", @@ -1165,6 +1347,7 @@ "DE.Views.ShapeSettings.textLinear": "Linier", "DE.Views.ShapeSettings.textNoFill": "Tidak ada Isian", "DE.Views.ShapeSettings.textPatternFill": "Pola", + "DE.Views.ShapeSettings.textPosition": "Jabatan", "DE.Views.ShapeSettings.textRadial": "Radial", "DE.Views.ShapeSettings.textSelectTexture": "Pilih", "DE.Views.ShapeSettings.textStretch": "Rentangkan", @@ -1191,6 +1374,7 @@ "DE.Views.ShapeSettings.txtTight": "Ketat", "DE.Views.ShapeSettings.txtTopAndBottom": "Atas dan bawah", "DE.Views.ShapeSettings.txtWood": "Kayu", + "DE.Views.SignatureSettings.notcriticalErrorTitle": "Peringatan", "DE.Views.Statusbar.goToPageText": "Buka Halaman", "DE.Views.Statusbar.pageIndexText": "Halaman {0} dari {1}", "DE.Views.Statusbar.tipFitPage": "Sesuaikan Halaman", @@ -1205,6 +1389,12 @@ "DE.Views.StyleTitleDialog.textTitle": "Title", "DE.Views.StyleTitleDialog.txtEmpty": "This field is required", "DE.Views.StyleTitleDialog.txtNotEmpty": "Field must not be empty", + "DE.Views.TableOfContentsSettings.textNone": "tidak ada", + "DE.Views.TableOfContentsSettings.textRadioStyle": "Model", + "DE.Views.TableOfContentsSettings.textStyle": "Model", + "DE.Views.TableOfContentsSettings.textTable": "Tabel", + "DE.Views.TableOfContentsSettings.textTitle": "Daftar Isi", + "DE.Views.TableOfContentsSettings.txtCurrent": "Saat ini", "DE.Views.TableSettings.deleteColumnText": "Hapus Kolom", "DE.Views.TableSettings.deleteRowText": "Hapus Baris", "DE.Views.TableSettings.deleteTableText": "Hapus Tabel", @@ -1230,11 +1420,13 @@ "DE.Views.TableSettings.textEmptyTemplate": "Tidak ada template", "DE.Views.TableSettings.textFirst": "Pertama", "DE.Views.TableSettings.textHeader": "Header", + "DE.Views.TableSettings.textHeight": "Ketinggian", "DE.Views.TableSettings.textLast": "Terakhir", "DE.Views.TableSettings.textRows": "Baris", "DE.Views.TableSettings.textSelectBorders": "Pilih pembatas yang ingin Anda ubah dengan menerarpkan model yang telah dipilih di atas", "DE.Views.TableSettings.textTemplate": "Pilih Dari Template", "DE.Views.TableSettings.textTotal": "Total", + "DE.Views.TableSettings.textWidth": "Lebar", "DE.Views.TableSettings.tipAll": "Buat Pembatas Luar dan Semua Garis Dalam", "DE.Views.TableSettings.tipBottom": "Buat Pembatas Bawah-Luar Saja", "DE.Views.TableSettings.tipInner": "Buat Garis Dalam Saja", @@ -1249,6 +1441,8 @@ "DE.Views.TableSettingsAdvanced.textAlign": "Perataan", "DE.Views.TableSettingsAdvanced.textAlignment": "Perataan", "DE.Views.TableSettingsAdvanced.textAllowSpacing": "Beri spasi antar sel", + "DE.Views.TableSettingsAdvanced.textAltDescription": "Deskripsi", + "DE.Views.TableSettingsAdvanced.textAltTitle": "Judul", "DE.Views.TableSettingsAdvanced.textAnchorText": "Teks", "DE.Views.TableSettingsAdvanced.textAutofit": "Otomatis sesuaikan ukuran dengan konten ", "DE.Views.TableSettingsAdvanced.textBackColor": "Latar Sel", @@ -1281,7 +1475,9 @@ "DE.Views.TableSettingsAdvanced.textRight": "Kanan", "DE.Views.TableSettingsAdvanced.textRightOf": "ke sebelah kanan dari", "DE.Views.TableSettingsAdvanced.textRightTooltip": "Kanan", + "DE.Views.TableSettingsAdvanced.textTable": "Tabel", "DE.Views.TableSettingsAdvanced.textTableBackColor": "Latar Belakang Tabel", + "DE.Views.TableSettingsAdvanced.textTableSize": "Ukuran Tabel", "DE.Views.TableSettingsAdvanced.textTitle": "Tabel - Pengaturan Lanjut", "DE.Views.TableSettingsAdvanced.textTop": "Atas", "DE.Views.TableSettingsAdvanced.textVertical": "Vertikal", @@ -1290,6 +1486,7 @@ "DE.Views.TableSettingsAdvanced.textWrap": "Potongan Teks", "DE.Views.TableSettingsAdvanced.textWrapNoneTooltip": "Tabel berderet", "DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "Tabel alur", + "DE.Views.TableSettingsAdvanced.textWrappingStyle": "Bentuk Potongan", "DE.Views.TableSettingsAdvanced.tipAll": "Buat Pembatas Luar dan Semua Garis Dalam", "DE.Views.TableSettingsAdvanced.tipCellAll": "Buat Pembatas untuk Sel Dalam Saja", "DE.Views.TableSettingsAdvanced.tipCellInner": "Buat Garis Vertikal dan Horisontal untuk Sel Dalam Saja", @@ -1300,12 +1497,17 @@ "DE.Views.TableSettingsAdvanced.tipTableOuterCellAll": "Buat Pembatas Luar dan Pembatas untuk Semua Sel Dalam", "DE.Views.TableSettingsAdvanced.tipTableOuterCellInner": "Buat Pembatas Luar dan Garis Vertikal dan Horisontal untuk Sel Dalam", "DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter": "Buat Pembatas Luar Tabel dan Pembatas Luar untuk Sel Dalam", + "DE.Views.TableSettingsAdvanced.txtCm": "Sentimeter", "DE.Views.TableSettingsAdvanced.txtNoBorders": "Tidak ada pembatas", + "DE.Views.TableSettingsAdvanced.txtPt": "Titik", + "DE.Views.TableToTextDialog.textOther": "Lainnya", + "DE.Views.TableToTextDialog.textTab": "Tab", "DE.Views.TextArtSettings.strColor": "Color", "DE.Views.TextArtSettings.strFill": "Fill", "DE.Views.TextArtSettings.strSize": "Size", "DE.Views.TextArtSettings.strStroke": "Stroke", "DE.Views.TextArtSettings.strTransparency": "Opacity", + "DE.Views.TextArtSettings.strType": "Tipe", "DE.Views.TextArtSettings.textBorderSizeErr": "The entered value is incorrect.
Please enter a value between 0 pt and 1584 pt.", "DE.Views.TextArtSettings.textColor": "Color Fill", "DE.Views.TextArtSettings.textDirection": "Direction", @@ -1313,19 +1515,38 @@ "DE.Views.TextArtSettings.textGradientFill": "Gradient Fill", "DE.Views.TextArtSettings.textLinear": "Linear", "DE.Views.TextArtSettings.textNoFill": "No Fill", + "DE.Views.TextArtSettings.textPosition": "Jabatan", "DE.Views.TextArtSettings.textRadial": "Radial", "DE.Views.TextArtSettings.textSelectTexture": "Select", "DE.Views.TextArtSettings.textStyle": "Style", "DE.Views.TextArtSettings.textTemplate": "Template", "DE.Views.TextArtSettings.textTransform": "Transform", "DE.Views.TextArtSettings.txtNoBorders": "No Line", + "DE.Views.TextToTableDialog.textColumns": "Kolom", + "DE.Views.TextToTableDialog.textOther": "Lainnya", + "DE.Views.TextToTableDialog.textPara": "Paragraf", + "DE.Views.TextToTableDialog.textRows": "Baris", + "DE.Views.TextToTableDialog.textTab": "Tab", + "DE.Views.TextToTableDialog.textTableSize": "Ukuran Tabel", + "DE.Views.TextToTableDialog.txtAutoText": "Otomatis", "DE.Views.Toolbar.capBtnAddComment": "Tambahkan komentar", + "DE.Views.Toolbar.capBtnColumns": "Kolom", + "DE.Views.Toolbar.capBtnComment": "Komentar", "DE.Views.Toolbar.capBtnInsChart": "Bagan", + "DE.Views.Toolbar.capBtnInsDropcap": "Drop Cap", + "DE.Views.Toolbar.capBtnInsImage": "Gambar", + "DE.Views.Toolbar.capBtnInsTable": "Tabel", + "DE.Views.Toolbar.capBtnPageSize": "Ukuran", + "DE.Views.Toolbar.capImgAlign": "Sejajarkan", + "DE.Views.Toolbar.capImgBackward": "Mundurkan", + "DE.Views.Toolbar.capImgForward": "Majukan", "DE.Views.Toolbar.capImgGroup": "Grup", "DE.Views.Toolbar.mniCustomTable": "Sisipkan Tabel Khusus", "DE.Views.Toolbar.mniEditDropCap": "Pengaturan Drop Cap", "DE.Views.Toolbar.mniEditFooter": "Edit Footer", "DE.Views.Toolbar.mniEditHeader": "Edit Header", + "DE.Views.Toolbar.mniFromFile": "Dari File", + "DE.Views.Toolbar.mniFromUrl": "Dari URL", "DE.Views.Toolbar.mniHiddenBorders": "Pembatas Tabel Disembunyikan", "DE.Views.Toolbar.mniHiddenChars": "Karakter Tidak Dicetak", "DE.Views.Toolbar.mniImageFromFile": "Gambar dari File", @@ -1340,6 +1561,7 @@ "DE.Views.Toolbar.textColumnsThree": "Three", "DE.Views.Toolbar.textColumnsTwo": "Two", "DE.Views.Toolbar.textContPage": "Halaman Bersambung", + "DE.Views.Toolbar.textDateControl": "Tanggal", "DE.Views.Toolbar.textEvenPage": "Halaman Genap", "DE.Views.Toolbar.textInMargin": "Dalam Margin", "DE.Views.Toolbar.textInsColumnBreak": "Insert Column Break", @@ -1370,7 +1592,11 @@ "DE.Views.Toolbar.textStyleMenuUpdate": "Update from selection", "DE.Views.Toolbar.textSubscript": "Subskrip", "DE.Views.Toolbar.textSuperscript": "Superskrip", + "DE.Views.Toolbar.textTabFile": "File", "DE.Views.Toolbar.textTabHome": "Halaman Depan", + "DE.Views.Toolbar.textTabInsert": "Sisipkan", + "DE.Views.Toolbar.textTabReview": "Ulasan", + "DE.Views.Toolbar.textTabView": "Lihat", "DE.Views.Toolbar.textTitleError": "Error", "DE.Views.Toolbar.textToCurrent": "Ke posisi saat ini", "DE.Views.Toolbar.textTop": "Top: ", @@ -1419,6 +1645,8 @@ "DE.Views.Toolbar.tipRedo": "Ulangi", "DE.Views.Toolbar.tipSave": "Simpan", "DE.Views.Toolbar.tipSaveCoauth": "Simpan perubahan yang Anda buat agar dapat dilihat oleh pengguna lain", + "DE.Views.Toolbar.tipSendBackward": "Mundurkan", + "DE.Views.Toolbar.tipSendForward": "Majukan", "DE.Views.Toolbar.tipShowHiddenChars": "Karakter Tidak Dicetak", "DE.Views.Toolbar.tipSynchronize": "Dokumen telah diubah oleh pengguna lain. Silakan klik untuk menyimpan perubahan dan memuat ulang pembaruan.", "DE.Views.Toolbar.tipUndo": "Batalkan", @@ -1442,5 +1670,21 @@ "DE.Views.Toolbar.txtScheme6": "Himpunan", "DE.Views.Toolbar.txtScheme7": "Margin Sisa", "DE.Views.Toolbar.txtScheme8": "Alur", - "DE.Views.Toolbar.txtScheme9": "Cetakan" + "DE.Views.Toolbar.txtScheme9": "Cetakan", + "DE.Views.ViewTab.textFitToPage": "Sesuaikan Halaman", + "DE.Views.ViewTab.textFitToWidth": "Sesuaikan Lebar", + "DE.Views.ViewTab.textZoom": "Perbesar", + "DE.Views.WatermarkSettingsDialog.textAuto": "Otomatis", + "DE.Views.WatermarkSettingsDialog.textBold": "Tebal", + "DE.Views.WatermarkSettingsDialog.textFont": "Huruf", + "DE.Views.WatermarkSettingsDialog.textFromFile": "Dari File", + "DE.Views.WatermarkSettingsDialog.textFromUrl": "Dari URL", + "DE.Views.WatermarkSettingsDialog.textHor": "Horizontal", + "DE.Views.WatermarkSettingsDialog.textItalic": "Miring", + "DE.Views.WatermarkSettingsDialog.textLanguage": "Bahasa", + "DE.Views.WatermarkSettingsDialog.textNone": "tidak ada", + "DE.Views.WatermarkSettingsDialog.textStrikeout": "Coret ganda", + "DE.Views.WatermarkSettingsDialog.textText": "Teks", + "DE.Views.WatermarkSettingsDialog.textUnderline": "Garis bawah", + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Ukuran Huruf" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json index 55c8e5183..ccc5aca84 100644 --- a/apps/documenteditor/main/locale/ja.json +++ b/apps/documenteditor/main/locale/ja.json @@ -213,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "自動箇条書き", "Common.Views.AutoCorrectDialog.textBy": "幅", "Common.Views.AutoCorrectDialog.textDelete": "削除する", + "Common.Views.AutoCorrectDialog.textFLCells": "テーブルセルの最初の文字を大文字にする", "Common.Views.AutoCorrectDialog.textFLSentence": "文章の最初の文字を大文字にする", "Common.Views.AutoCorrectDialog.textHyperlink": "インターネットとネットワークのアドレスをハイパーリンクに変更する", "Common.Views.AutoCorrectDialog.textHyphens": "ハイフン(--)の代わりにダッシュ(—)", @@ -505,7 +506,7 @@ "DE.Controllers.LeftMenu.requestEditRightsText": "アクセス権の編集の要求中...", "DE.Controllers.LeftMenu.textLoadHistory": "バリエーションの履歴の読み込み中...", "DE.Controllers.LeftMenu.textNoTextFound": "検索データが見つかりませんでした。他の検索設定を選択してください。", - "DE.Controllers.LeftMenu.textReplaceSkipped": "置換が行われました。スキップされた発生回数は{0}です。", + "DE.Controllers.LeftMenu.textReplaceSkipped": "置換が完了しました。{0}つスキップされました。", "DE.Controllers.LeftMenu.textReplaceSuccess": "検索が行われました。変更された発生回数は{0}です。", "DE.Controllers.LeftMenu.txtCompatible": "ドキュメントは新しい形式で保存されます。 すべてのエディタ機能を使用できますが、ドキュメントのレイアウトに影響する可能性があります。
ファイルを古いバージョンのMS Wordと互換性を持たせる場合は、詳細設定の[互換性]オプションをご使用ください。", "DE.Controllers.LeftMenu.txtUntitled": "タイトルなし", @@ -608,6 +609,7 @@ "DE.Controllers.Main.textLongName": "128文字未満の名前を入力してください。", "DE.Controllers.Main.textNoLicenseTitle": "ライセンス制限に達しました。", "DE.Controllers.Main.textPaidFeature": "有料機能", + "DE.Controllers.Main.textReconnect": "接続を回復しました", "DE.Controllers.Main.textRemember": "選択内容を保存する", "DE.Controllers.Main.textRenameError": "ユーザー名は空にできません。", "DE.Controllers.Main.textRenameLabel": "コラボレーションに使用する名前を入力します", @@ -1892,6 +1894,7 @@ "DE.Views.ImageSettings.textCrop": "トリミング", "DE.Views.ImageSettings.textCropFill": "塗りつぶし", "DE.Views.ImageSettings.textCropFit": "収める", + "DE.Views.ImageSettings.textCropToShape": "図形に合わせてトリミング", "DE.Views.ImageSettings.textEdit": "編集する", "DE.Views.ImageSettings.textEditObject": "オブジェクトを編集する", "DE.Views.ImageSettings.textFitMargins": "余白内に収まる", @@ -2176,6 +2179,7 @@ "DE.Views.PageSizeDialog.textTitle": "ページのサイズ", "DE.Views.PageSizeDialog.textWidth": "幅", "DE.Views.PageSizeDialog.txtCustom": "ユーザー設定", + "DE.Views.PageThumbnails.textClosePanel": "ページサムネイルを閉じる", "DE.Views.ParagraphSettings.strIndent": "インデント", "DE.Views.ParagraphSettings.strIndentsLeftText": "左", "DE.Views.ParagraphSettings.strIndentsRightText": "右", @@ -2794,9 +2798,11 @@ "DE.Views.Toolbar.txtScheme7": "株主資本", "DE.Views.Toolbar.txtScheme8": "フロー", "DE.Views.Toolbar.txtScheme9": "エコロジー", - "DE.Views.ViewTab.textAlwaysShowToolbar": "常にツールバーを表示する", + "DE.Views.ViewTab.textAlwaysShowToolbar": "ツールバーを常に表示する", + "DE.Views.ViewTab.textDarkDocument": "ダーク ドキュメント", "DE.Views.ViewTab.textFitToPage": "ページに合わせる", "DE.Views.ViewTab.textInterfaceTheme": "インターフェイスのテーマ", + "DE.Views.ViewTab.textNavigation": "ナビゲーション", "DE.Views.ViewTab.textRulers": "ルーラー", "DE.Views.ViewTab.textZoom": "ズーム", "DE.Views.WatermarkSettingsDialog.textAuto": "自動", diff --git a/apps/documenteditor/main/locale/ro.json b/apps/documenteditor/main/locale/ro.json index 87217ce37..ac257d705 100644 --- a/apps/documenteditor/main/locale/ro.json +++ b/apps/documenteditor/main/locale/ro.json @@ -213,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Creare automată a listei cu marcatori", "Common.Views.AutoCorrectDialog.textBy": "După", "Common.Views.AutoCorrectDialog.textDelete": "Ștergere", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Adăugarea unui punct prin apăsarea dublă a barei de spațiu ", "Common.Views.AutoCorrectDialog.textFLCells": "Scrie cu majusculă prima litera din fiecare celulă de tabel", "Common.Views.AutoCorrectDialog.textFLSentence": "Scrie cu majusculă prima literă a propoziției", "Common.Views.AutoCorrectDialog.textHyperlink": "Căi Internet și de rețea cu hyperlink-uri", @@ -511,6 +512,7 @@ "DE.Controllers.LeftMenu.txtCompatible": "Documentul va fi slvat în format nou. În acest caz, toate opțiunile editorului vor deveni disponibile, totuși aspectul documentului poate fi afectat.
Folosiți setări avansate și opțiunea de Compatibilitate dacă fișierul trebuie să fie compatibil cu o versiune mai veche MS Word.", "DE.Controllers.LeftMenu.txtUntitled": "Fără titlu", "DE.Controllers.LeftMenu.warnDownloadAs": "Dacă salvați în acest format de fișier, este posibil ca unele dintre caracteristici să se piardă, cu excepția textului.
Sunteți sigur că doriți să continuați?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "Fișierul dvs {0} va fi convertit într-un format editabil. Convertirea poate dura ceva timp. Documentul rezultat va fi optimizat pentru a vă permite să editați textul, dar s-ar putea să nu arate exact ca original {0}, mai ales dacă fișierul original conține mai multe elemente grafice.", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Dacă salvați în acest format de fișier, este posibil ca unele dintre formatări să se piardă.
Sigur doriți să continuați?", "DE.Controllers.Main.applyChangesTextText": "Încărcarea modificărilor...", "DE.Controllers.Main.applyChangesTitleText": "Încărcare modificări", @@ -1460,6 +1462,7 @@ "DE.Views.DocumentHolder.strSign": "Semnare", "DE.Views.DocumentHolder.styleText": "Formatare cu stil", "DE.Views.DocumentHolder.tableText": "Tabel", + "DE.Views.DocumentHolder.textAccept": "Acceptați această modificare", "DE.Views.DocumentHolder.textAlign": "Aliniere", "DE.Views.DocumentHolder.textArrange": "Aranjare", "DE.Views.DocumentHolder.textArrangeBack": "Trimitere în plan secundar", @@ -1494,6 +1497,7 @@ "DE.Views.DocumentHolder.textPaste": "Lipire", "DE.Views.DocumentHolder.textPrevPage": "Pagina anterioară", "DE.Views.DocumentHolder.textRefreshField": "Actualizare câmp", + "DE.Views.DocumentHolder.textReject": "Respingenți această modificare", "DE.Views.DocumentHolder.textRemCheckBox": "Eliminare control casetă de selectare", "DE.Views.DocumentHolder.textRemComboBox": "Eliminare control casetă combo", "DE.Views.DocumentHolder.textRemDropdown": "Eliminare listă verticală", @@ -2032,7 +2036,7 @@ "DE.Views.LineNumbersDialog.txtAutoText": "Auto", "DE.Views.Links.capBtnBookmarks": "Marcaj", "DE.Views.Links.capBtnCaption": "Legenda", - "DE.Views.Links.capBtnContentsUpdate": "Actualizare", + "DE.Views.Links.capBtnContentsUpdate": "Actualizare tabel", "DE.Views.Links.capBtnCrossRef": "Referință încrucișată", "DE.Views.Links.capBtnInsContents": "Cuprins", "DE.Views.Links.capBtnInsFootnote": "Notă de subsol", @@ -2378,6 +2382,8 @@ "DE.Views.Statusbar.pageIndexText": "Page {0} din {1}", "DE.Views.Statusbar.tipFitPage": "Portivire la pagina", "DE.Views.Statusbar.tipFitWidth": "Potrivire lățime", + "DE.Views.Statusbar.tipHandTool": "Instrumentul Mână", + "DE.Views.Statusbar.tipSelectTool": "Instrumentul Selectare", "DE.Views.Statusbar.tipSetLang": "Setare limba text", "DE.Views.Statusbar.tipZoomFactor": "Zoom", "DE.Views.Statusbar.tipZoomIn": "Mărire", diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json index 9123e4cfd..3bacb3217 100644 --- a/apps/documenteditor/main/locale/ru.json +++ b/apps/documenteditor/main/locale/ru.json @@ -213,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Стили маркированных списков", "Common.Views.AutoCorrectDialog.textBy": "На", "Common.Views.AutoCorrectDialog.textDelete": "Удалить", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Добавлять точку двойным пробелом", "Common.Views.AutoCorrectDialog.textFLCells": "Делать первые буквы ячеек таблиц прописными", "Common.Views.AutoCorrectDialog.textFLSentence": "Делать первые буквы предложений прописными", "Common.Views.AutoCorrectDialog.textHyperlink": "Адреса в Интернете и сетевые пути гиперссылками", @@ -511,6 +512,7 @@ "DE.Controllers.LeftMenu.txtCompatible": "Документ будет сохранен в новый формат. Это позволит использовать все функции редактора, но может повлиять на структуру документа.
Используйте опцию 'Совместимость' в дополнительных параметрах, если хотите сделать файлы совместимыми с более старыми версиями MS Word.", "DE.Controllers.LeftMenu.txtUntitled": "Без имени", "DE.Controllers.LeftMenu.warnDownloadAs": "Если Вы продолжите сохранение в этот формат, весь функционал, кроме текста, будет потерян.
Вы действительно хотите продолжить?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "{0} будет сконвертирован в редактируемый формат. Это может занять некоторое время. Получившийся в результате документ будет оптимизирован для редактирования текста, поэтому он может отличаться от исходного {0}, особенно если исходный файл содержит много графических элементов.", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Если вы продолжите сохранение в этот формат, часть форматирования может быть потеряна.
Вы действительно хотите продолжить?", "DE.Controllers.Main.applyChangesTextText": "Загрузка изменений...", "DE.Controllers.Main.applyChangesTitleText": "Загрузка изменений", @@ -1460,6 +1462,7 @@ "DE.Views.DocumentHolder.strSign": "Подписать", "DE.Views.DocumentHolder.styleText": "Форматирование как стиль", "DE.Views.DocumentHolder.tableText": "Таблицу", + "DE.Views.DocumentHolder.textAccept": "Принять изменение", "DE.Views.DocumentHolder.textAlign": "Выравнивание", "DE.Views.DocumentHolder.textArrange": "Порядок", "DE.Views.DocumentHolder.textArrangeBack": "Перенести на задний план", @@ -1494,6 +1497,7 @@ "DE.Views.DocumentHolder.textPaste": "Вставить", "DE.Views.DocumentHolder.textPrevPage": "Предыдущая страница", "DE.Views.DocumentHolder.textRefreshField": "Обновить поле", + "DE.Views.DocumentHolder.textReject": "Отклонить изменение", "DE.Views.DocumentHolder.textRemCheckBox": "Удалить флажок", "DE.Views.DocumentHolder.textRemComboBox": "Удалить поле со списком", "DE.Views.DocumentHolder.textRemDropdown": "Удалить выпадающий список", @@ -2378,6 +2382,8 @@ "DE.Views.Statusbar.pageIndexText": "Страница {0} из {1}", "DE.Views.Statusbar.tipFitPage": "По размеру страницы", "DE.Views.Statusbar.tipFitWidth": "По ширине", + "DE.Views.Statusbar.tipHandTool": "Инструмент \"Рука\"", + "DE.Views.Statusbar.tipSelectTool": "Инструмент выделения", "DE.Views.Statusbar.tipSetLang": "Выбрать язык текста", "DE.Views.Statusbar.tipZoomFactor": "Масштаб", "DE.Views.Statusbar.tipZoomIn": "Увеличить", diff --git a/apps/presentationeditor/embed/locale/be.json b/apps/presentationeditor/embed/locale/be.json index 164a5e089..9f4303dc1 100644 --- a/apps/presentationeditor/embed/locale/be.json +++ b/apps/presentationeditor/embed/locale/be.json @@ -14,6 +14,7 @@ "PE.ApplicationController.errorFilePassProtect": "Файл абаронены паролем, яго немагчыма адкрыць.", "PE.ApplicationController.errorFileSizeExceed": "Памер файла перавышае ліміт, вызначаны для вашага сервера.
Звярніцеся да адміністратара сервера дакументаў за дадатковымі звесткамі.", "PE.ApplicationController.errorForceSave": "Падчас захавання файла адбылася памылка. Калі ласка, выкарыстайце параметр \"Спампаваць як\", каб захаваць файл на цвёрдым дыску камп’ютара, альбо паспрабуйце яшчэ раз пазней.", + "PE.ApplicationController.errorLoadingFont": "Шрыфты не загрузіліся.
Звярніцеся да адміністратара сервера дакументаў.", "PE.ApplicationController.errorTokenExpire": "Тэрмін дзеяння токена бяспекі дакумента сышоў.
Калі ласка, звярніцеся да адміністратара сервера дакументаў.", "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Злучэнне з інтэрнэтам было адноўлена, і версія файла змянілася.
Перш чым працягнуць працу, неабходна спампаваць файл альбо скапіяваць яго змесціва, каб захаваць даныя, а пасля перазагрузіць старонку.", "PE.ApplicationController.errorUserDrop": "На дадзены момант файл недаступны.", diff --git a/apps/presentationeditor/embed/locale/es.json b/apps/presentationeditor/embed/locale/es.json index be4ef8ae6..c0b9b7a54 100644 --- a/apps/presentationeditor/embed/locale/es.json +++ b/apps/presentationeditor/embed/locale/es.json @@ -1,38 +1,38 @@ { "common.view.modals.txtCopy": "Copiar al portapapeles", - "common.view.modals.txtEmbed": "Incorporar", + "common.view.modals.txtEmbed": "Insertar", "common.view.modals.txtHeight": "Altura", "common.view.modals.txtShare": "Compartir enlace", "common.view.modals.txtWidth": "Ancho", - "PE.ApplicationController.convertationErrorText": "Fallo de conversión.", - "PE.ApplicationController.convertationTimeoutText": "Límite de tiempo de conversión está superado.", + "PE.ApplicationController.convertationErrorText": "Se ha producido un error en la conversión.", + "PE.ApplicationController.convertationTimeoutText": "Se ha superado el tiempo de conversión.", "PE.ApplicationController.criticalErrorTitle": "Error", - "PE.ApplicationController.downloadErrorText": "Fallo en descarga.", + "PE.ApplicationController.downloadErrorText": "Se ha producido un error en la descarga", "PE.ApplicationController.downloadTextText": "Descargando presentación...", - "PE.ApplicationController.errorAccessDeny": "Usted no tiene permisos para realizar la acción que está intentando hacer.
Por favor, contacte con su Administrador del Servidor de Documentos.", + "PE.ApplicationController.errorAccessDeny": "Está intentando realizar una acción para la que no tiene permiso.
Contacte con el administrador del servidor de documentos.", "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.errorTokenExpire": "El token de seguridad del documento ha expirado.
Por favor, póngase en contacto con el administrador del Servidor de Documentos.", - "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", + "PE.ApplicationController.errorFilePassProtect": "El archivo está protegido por una contraseña y no se puede abrir.", + "PE.ApplicationController.errorFileSizeExceed": "El tamaño del archivo supera el límiete establecido por su servidor.
Contacte con el administrador del servidor de documentos para obtener más detalles.", + "PE.ApplicationController.errorForceSave": "Se ha producido un error al guardar el archivo. Utilice la opción \"Descargar como\" para guardar el archivo en el disco duro de su ordenador o inténtelo más tarde.", + "PE.ApplicationController.errorLoadingFont": "Los tipos de letra no están cargados.
Contacte con el administrador del servidor de documentos.", + "PE.ApplicationController.errorTokenExpire": "El token de seguridad del documento ha expirado.
Contacte con el administrador del servidor de documentos", + "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Se ha restablecido la conexión a Internet y se ha cambiado la versión del archivo.
Para poder seguir trabajando, es necesario descargar el archivo o copiar su contenido para asegurarse de que no se ha perdido nada, y luego volver a cargar esta página.", + "PE.ApplicationController.errorUserDrop": "No se puede acceder al archivo.", + "PE.ApplicationController.notcriticalErrorTitle": "Advertencia", "PE.ApplicationController.openErrorText": "Se ha producido un error al abrir el archivo. ", - "PE.ApplicationController.scriptLoadError": "La conexión a Internet es demasiado lenta, no se podía cargar algunos componentes. Por favor, recargue la página.", + "PE.ApplicationController.scriptLoadError": "La conexión a Internet es demasiado lenta, algunos de los componentes no se han podido cargar. Recargue la página.", "PE.ApplicationController.textAnonymous": "Anónimo", "PE.ApplicationController.textGuest": "Invitado", "PE.ApplicationController.textLoadingDocument": "Cargando presentación", "PE.ApplicationController.textOf": "de", "PE.ApplicationController.txtClose": "Cerrar", "PE.ApplicationController.unknownErrorText": "Error desconocido.", - "PE.ApplicationController.unsupportedBrowserErrorText": "Su navegador no está soportado.", - "PE.ApplicationController.waitText": "Por favor, espere...", + "PE.ApplicationController.unsupportedBrowserErrorText": "Su navegador no es compatible.", + "PE.ApplicationController.waitText": "Espere...", "PE.ApplicationView.txtDownload": "Descargar", - "PE.ApplicationView.txtEmbed": "Incorporar", + "PE.ApplicationView.txtEmbed": "Insertar", "PE.ApplicationView.txtFileLocation": "Abrir ubicación del archivo", - "PE.ApplicationView.txtFullScreen": "Pantalla Completa", + "PE.ApplicationView.txtFullScreen": "Pantalla completa", "PE.ApplicationView.txtPrint": "Imprimir", "PE.ApplicationView.txtShare": "Compartir" } \ No newline at end of file diff --git a/apps/presentationeditor/embed/locale/id.json b/apps/presentationeditor/embed/locale/id.json index bd2968a12..826ba68e6 100644 --- a/apps/presentationeditor/embed/locale/id.json +++ b/apps/presentationeditor/embed/locale/id.json @@ -17,7 +17,7 @@ "PE.ApplicationController.errorUserDrop": "File tidak dapat di akses", "PE.ApplicationController.notcriticalErrorTitle": "Peringatan", "PE.ApplicationController.scriptLoadError": "Koneksi terlalu lambat,", - "PE.ApplicationController.textAnonymous": "Tamu", + "PE.ApplicationController.textAnonymous": "Anonim", "PE.ApplicationController.textLoadingDocument": "Memuat penyajian", "PE.ApplicationController.textOf": "Dari", "PE.ApplicationController.txtClose": "Tutup", @@ -26,6 +26,7 @@ "PE.ApplicationController.waitText": "Mohon menunggu", "PE.ApplicationView.txtDownload": "Unduh", "PE.ApplicationView.txtEmbed": "Melekatkan", + "PE.ApplicationView.txtFileLocation": "Buka Dokumen", "PE.ApplicationView.txtFullScreen": "Layar penuh", "PE.ApplicationView.txtShare": "Bagikan" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/be.json b/apps/presentationeditor/main/locale/be.json index f756587f8..317cc7223 100644 --- a/apps/presentationeditor/main/locale/be.json +++ b/apps/presentationeditor/main/locale/be.json @@ -461,8 +461,8 @@ "PE.Controllers.Main.txtEditingMode": "Актывацыя рэжыму рэдагавання…", "PE.Controllers.Main.txtErrorLoadHistory": "Не атрымалася загрузіць гісторыю", "PE.Controllers.Main.txtFiguredArrows": "Фігурныя стрэлкі", - "PE.Controllers.Main.txtFooter": "Ніжні калантытул", - "PE.Controllers.Main.txtHeader": "Верхні калантытул", + "PE.Controllers.Main.txtFooter": "Ніжні калонтытул", + "PE.Controllers.Main.txtHeader": "Верхні калонтытул", "PE.Controllers.Main.txtImage": "Вобраз", "PE.Controllers.Main.txtLines": "Лініі", "PE.Controllers.Main.txtLoading": "Загрузка…", @@ -1373,13 +1373,13 @@ "PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Увага", "PE.Views.HeaderFooterDialog.textDateTime": "Дата і час", "PE.Views.HeaderFooterDialog.textFixed": "Фіксаванае", - "PE.Views.HeaderFooterDialog.textFooter": "Тэкст ніжняга калантытула", + "PE.Views.HeaderFooterDialog.textFooter": "Тэкст ніжняга калонтытула", "PE.Views.HeaderFooterDialog.textFormat": "Фарматы", "PE.Views.HeaderFooterDialog.textLang": "Мова", "PE.Views.HeaderFooterDialog.textNotTitle": "Не паказваць на тытульным слайдзе", "PE.Views.HeaderFooterDialog.textPreview": "Прагляд", "PE.Views.HeaderFooterDialog.textSlideNum": "Нумар слайда", - "PE.Views.HeaderFooterDialog.textTitle": "Налады ніжняга калантытула", + "PE.Views.HeaderFooterDialog.textTitle": "Налады ніжняга калонтытула", "PE.Views.HeaderFooterDialog.textUpdate": "Абнаўляць аўтаматычна", "PE.Views.HyperlinkSettingsDialog.strDisplay": "Паказваць", "PE.Views.HyperlinkSettingsDialog.strLinkTo": "Звязаць з", @@ -1806,7 +1806,7 @@ "PE.Views.Toolbar.capBtnAddComment": "Дадаць каментар", "PE.Views.Toolbar.capBtnComment": "Каментар", "PE.Views.Toolbar.capBtnDateTime": "Дата і час", - "PE.Views.Toolbar.capBtnInsHeader": "Ніжні калантытул", + "PE.Views.Toolbar.capBtnInsHeader": "Ніжні калонтытул", "PE.Views.Toolbar.capBtnInsSymbol": "Сімвал", "PE.Views.Toolbar.capBtnSlideNum": "Нумар слайда", "PE.Views.Toolbar.capInsertAudio": "Аўдыё", @@ -1877,7 +1877,7 @@ "PE.Views.Toolbar.tipDateTime": "Уставіць быгучую назву і час", "PE.Views.Toolbar.tipDecFont": "Паменшыць памер шрыфту", "PE.Views.Toolbar.tipDecPrLeft": "Паменшыць водступ", - "PE.Views.Toolbar.tipEditHeader": "Рэдагаваць ніжні калантытул", + "PE.Views.Toolbar.tipEditHeader": "Рэдагаваць ніжні калонтытул", "PE.Views.Toolbar.tipFontColor": "Колер шрыфту", "PE.Views.Toolbar.tipFontName": "Шрыфт", "PE.Views.Toolbar.tipFontSize": "Памер шрыфту", diff --git a/apps/presentationeditor/main/locale/cs.json b/apps/presentationeditor/main/locale/cs.json index bf14c219c..d53977e6f 100644 --- a/apps/presentationeditor/main/locale/cs.json +++ b/apps/presentationeditor/main/locale/cs.json @@ -48,32 +48,71 @@ "Common.define.chartData.textStock": "Burzovní graf", "Common.define.chartData.textSurface": "Povrch", "Common.define.effectData.textAcross": "Napříč", - "Common.define.effectData.textAppear": "Objeví", + "Common.define.effectData.textAppear": "Celé najednou", + "Common.define.effectData.textArcDown": "Oblouk dole", + "Common.define.effectData.textArcLeft": "Oblouk vlevo", + "Common.define.effectData.textArcRight": "Oblouk vpravo", + "Common.define.effectData.textArcUp": "Oblouk nahoře", "Common.define.effectData.textBasic": "Základní", + "Common.define.effectData.textBasicSwivel": "Základní otočný", "Common.define.effectData.textBasicZoom": "Základní přiblížení", "Common.define.effectData.textBean": "Fazole", "Common.define.effectData.textBlinds": "Žaluzie", - "Common.define.effectData.textBrushColor": "Barva štětce", + "Common.define.effectData.textBlink": "Mrknutí", + "Common.define.effectData.textBoldFlash": "Záblesk tučně", + "Common.define.effectData.textBoldReveal": "Zobrazení tučně", + "Common.define.effectData.textBoomerang": "Bumerang", + "Common.define.effectData.textBounce": "Odraz", + "Common.define.effectData.textBounceLeft": "Odraz vlevo", + "Common.define.effectData.textBounceRight": "Odraz vpravo", + "Common.define.effectData.textBox": "Schránka", + "Common.define.effectData.textBrushColor": "Přebarvení", + "Common.define.effectData.textCenterRevolve": "Rotace kolem středu", + "Common.define.effectData.textCheckerboard": "Šachovnice", "Common.define.effectData.textCircle": "Kruh", "Common.define.effectData.textCollapse": "Sbalit", + "Common.define.effectData.textColorPulse": "Barevný pulz", "Common.define.effectData.textComplementaryColor": "Doplňková barva", "Common.define.effectData.textComplementaryColor2": "Doplňková barva 2", "Common.define.effectData.textCompress": "Komprimovat", "Common.define.effectData.textContrast": "Kontrast", "Common.define.effectData.textContrastingColor": "Kontrastující barva", "Common.define.effectData.textCredits": "Poděkování", + "Common.define.effectData.textCrescentMoon": "Srpek měsíce", + "Common.define.effectData.textCurveDown": "Křivka dolů", + "Common.define.effectData.textCurvedSquare": "Zaoblený čtverec", + "Common.define.effectData.textCurvedX": "Zakřivené X", + "Common.define.effectData.textCurvyLeft": "Vývrtka doleva", + "Common.define.effectData.textCurvyRight": "Vývrtka doprava", + "Common.define.effectData.textCurvyStar": "Zakřivená hvězda", "Common.define.effectData.textCustomPath": "Uživatelsky určená cesta", + "Common.define.effectData.textCuverUp": "Křivka nahoru", + "Common.define.effectData.textDarken": "Tmavnutí", + "Common.define.effectData.textDecayingWave": "Rozpadající se vlna", + "Common.define.effectData.textDesaturate": "Do černobílé", + "Common.define.effectData.textDiagonalDownRight": "Diagonálně vpravo dolů", + "Common.define.effectData.textDiagonalUpRight": "Diagonálně vpravo nahoru", "Common.define.effectData.textDiamond": "Kosodélník", - "Common.define.effectData.textDisappear": "Zmizet", + "Common.define.effectData.textDisappear": "Prolnutí", + "Common.define.effectData.textDissolveIn": "Rozpustit dovnitř", + "Common.define.effectData.textDissolveOut": "Rozpustit vně", "Common.define.effectData.textDown": "Dolů", "Common.define.effectData.textDrop": "Zahodit", "Common.define.effectData.textEmphasis": "Zdůrazňující efekt", + "Common.define.effectData.textEntrance": "Vstupní efekt", + "Common.define.effectData.textEqualTriangle": "Rovnoramenný trojúhelník", "Common.define.effectData.textExciting": "Vzrušující", "Common.define.effectData.textExit": "Efekt při ukončení", "Common.define.effectData.textExpand": "Rozšířit", "Common.define.effectData.textFade": "Vyblednout", + "Common.define.effectData.textFigureFour": "Znásobená osmička", "Common.define.effectData.textFillColor": "Barva výplně", "Common.define.effectData.textFlip": "Převrátit", + "Common.define.effectData.textFloat": "Hladké", + "Common.define.effectData.textFloatDown": "Plynutí dolů", + "Common.define.effectData.textFloatIn": "Hladké zobrazení", + "Common.define.effectData.textFloatOut": "Hladké zmizení", + "Common.define.effectData.textFloatUp": "Plynutí nahoru", "Common.define.effectData.textFlyIn": "Přiletět", "Common.define.effectData.textFlyOut": "Odletět", "Common.define.effectData.textFontColor": "Barva písma", @@ -86,49 +125,116 @@ "Common.define.effectData.textFromTop": "Shora", "Common.define.effectData.textFromTopLeft": "Zleva nahoře", "Common.define.effectData.textFromTopRight": "Zprava nahoře", + "Common.define.effectData.textFunnel": "Nálevka", + "Common.define.effectData.textGrowShrink": "Růst/Zmenšit", "Common.define.effectData.textGrowTurn": "Narůst a otočit", + "Common.define.effectData.textGrowWithColor": "Narůst se změnou barvy", "Common.define.effectData.textHeart": "Srdce", "Common.define.effectData.textHeartbeat": "Srdeční tep", "Common.define.effectData.textHexagon": "Šestiúhelník", "Common.define.effectData.textHorizontal": "Vodorovné", - "Common.define.effectData.textInFromScreenCenter": "Ze středu obrazovky", + "Common.define.effectData.textHorizontalFigure": "Ležatá osmička", + "Common.define.effectData.textHorizontalIn": "Vodorovně uvnitř", + "Common.define.effectData.textHorizontalOut": "Vodorovně vně", + "Common.define.effectData.textIn": "Dovnitř", + "Common.define.effectData.textInFromScreenCenter": "Dovnitř ze středu obrazovky", + "Common.define.effectData.textInSlightly": "Dovnitř mírně", + "Common.define.effectData.textInToScreenCenter": "Dovnitř na střed obrazovky", "Common.define.effectData.textInvertedSquare": "Převrácený čtverec", "Common.define.effectData.textInvertedTriangle": "Převrácený trojúhelník", - "Common.define.effectData.textLineColor": "Barva čáry", + "Common.define.effectData.textLeft": "Vlevo", + "Common.define.effectData.textLeftDown": "Vlevo dolů", + "Common.define.effectData.textLeftUp": "Vlevo nahoru", + "Common.define.effectData.textLighten": "Zesvětlit", + "Common.define.effectData.textLineColor": "Barva ohraničení", "Common.define.effectData.textLinesCurves": "Křivky čar", + "Common.define.effectData.textLoopDeLoop": "Smyčkovitě", "Common.define.effectData.textModerate": "Mírné", "Common.define.effectData.textNeutron": "Neutron", "Common.define.effectData.textObjectCenter": "Střed objektu", "Common.define.effectData.textObjectColor": "Barva objektu", "Common.define.effectData.textOctagon": "Osmiúhelník", + "Common.define.effectData.textOut": "Vně", + "Common.define.effectData.textOutFromScreenBottom": "Pryč skrze dolní část obrazovky", + "Common.define.effectData.textOutSlightly": "Vně mírně", + "Common.define.effectData.textParallelogram": "Rovnoběžník", "Common.define.effectData.textPath": "Trasa pohybu", + "Common.define.effectData.textPeanut": "Burský oříšek", + "Common.define.effectData.textPeekIn": "Přilétnutí", + "Common.define.effectData.textPeekOut": "Odlétnutí", "Common.define.effectData.textPentagon": "Pětiúhelník", + "Common.define.effectData.textPinwheel": "Větrník", "Common.define.effectData.textPlus": "Plus", - "Common.define.effectData.textPulse": "Puls", + "Common.define.effectData.textPointStar": "Hvězda s paprsky", + "Common.define.effectData.textPointStar4": "Hvězda se 4 paprsky", + "Common.define.effectData.textPointStar5": "Hvězda s 5 paprsky", + "Common.define.effectData.textPointStar6": "Hvězda s 6 paprsky", + "Common.define.effectData.textPointStar8": "Hvězda s 8 paprsky", + "Common.define.effectData.textPulse": "Pulz", "Common.define.effectData.textRandomBars": "Náhodné pruhy", + "Common.define.effectData.textRight": "Vpravo", + "Common.define.effectData.textRightDown": "Vpravo dole", "Common.define.effectData.textRightTriangle": "Pravoúhlý trojúhelník", + "Common.define.effectData.textRightUp": "Vpravo nahoře", + "Common.define.effectData.textRiseUp": "Stoupat", + "Common.define.effectData.textSCurve1": "Křivka 1", + "Common.define.effectData.textSCurve2": "Křivka 2", "Common.define.effectData.textShape": "Tvar", + "Common.define.effectData.textShimmer": "Třpit", "Common.define.effectData.textShrinkTurn": "Zmenšit a otočit", "Common.define.effectData.textSineWave": "Sinusová vlna", + "Common.define.effectData.textSinkDown": "Potopení", + "Common.define.effectData.textSlideCenter": "Střed snímku", "Common.define.effectData.textSpecial": "Speciální", + "Common.define.effectData.textSpin": "Točit", + "Common.define.effectData.textSpinner": "Odstředivka", + "Common.define.effectData.textSpiralIn": "Spirála", + "Common.define.effectData.textSpiralLeft": "Vlevo do spirály", + "Common.define.effectData.textSpiralOut": "Vně do spirály", + "Common.define.effectData.textSpiralRight": "Vpravo do spirály", "Common.define.effectData.textSplit": "Rozdělit", + "Common.define.effectData.textSpoke1": "1 Paprsek", + "Common.define.effectData.textSpoke2": "2 Paprsky", + "Common.define.effectData.textSpoke3": "3 Paprsky", + "Common.define.effectData.textSpoke4": "4 Paprsky", + "Common.define.effectData.textSpoke8": "8 paprsků", "Common.define.effectData.textSpring": "Pružina", "Common.define.effectData.textSquare": "Čtverec", + "Common.define.effectData.textStairsDown": "Po schodech dolů", "Common.define.effectData.textStretch": "Roztáhnout", "Common.define.effectData.textStrips": "Proužky", "Common.define.effectData.textSubtle": "Jemné", + "Common.define.effectData.textSwivel": "Otočný", + "Common.define.effectData.textSwoosh": "Vlnovka", + "Common.define.effectData.textTeardrop": "Slza", + "Common.define.effectData.textTeeter": "Houpačka", + "Common.define.effectData.textToBottom": "Dolů", + "Common.define.effectData.textToBottomLeft": "Dolů vlevo", + "Common.define.effectData.textToBottomRight": "Dolů vpravo", + "Common.define.effectData.textToFromScreenBottom": "Vně na spodní část obrazovky", "Common.define.effectData.textToLeft": "Doleva", "Common.define.effectData.textToRight": "Doprava", "Common.define.effectData.textToTop": "Nahoru", + "Common.define.effectData.textToTopLeft": "Nahoru vlevo", + "Common.define.effectData.textToTopRight": "Nahoru vpravo", "Common.define.effectData.textTransparency": "Průhlednost", "Common.define.effectData.textTrapezoid": "Lichoběžník", + "Common.define.effectData.textTurnDown": "Otočit dolů", + "Common.define.effectData.textTurnDownRight": "Otočit vpravo dolů", "Common.define.effectData.textTurnUp": "Převrátit nahoru", "Common.define.effectData.textTurnUpRight": "Převrátit vpravo", "Common.define.effectData.textUnderline": "Podtrhnout", "Common.define.effectData.textUp": "Nahoru", "Common.define.effectData.textVertical": "Svislé", + "Common.define.effectData.textVerticalFigure": "Vertikální osmička", + "Common.define.effectData.textVerticalIn": "Svislý uvnitř", + "Common.define.effectData.textVerticalOut": "Svislý vně", "Common.define.effectData.textWave": "Vlnka", + "Common.define.effectData.textWedge": "Konjunkce", "Common.define.effectData.textWheel": "Kolo", + "Common.define.effectData.textWhip": "Bič", + "Common.define.effectData.textWipe": "Setření", + "Common.define.effectData.textZigzag": "Cikcak", "Common.define.effectData.textZoom": "Přiblížení", "Common.Translation.warnFileLocked": "Soubor je upravován v jiné aplikaci. Můžete pokračovat v úpravách a uložit ho jako kopii.", "Common.Translation.warnFileLockedBtnEdit": "Vytvořit kopii", @@ -159,7 +265,7 @@ "Common.UI.SynchronizeTip.textDontShow": "Tuto zprávu už nezobrazovat", "Common.UI.SynchronizeTip.textSynchronize": "Dokument byl mezitím změněn jiným uživatelem.
Kliknutím uložte změny provedené vámi a načtěte ty od ostatních.", "Common.UI.ThemeColorPalette.textStandartColors": "Standardní barvy", - "Common.UI.ThemeColorPalette.textThemeColors": "Barvy motivu vzhledu", + "Common.UI.ThemeColorPalette.textThemeColors": "Barvy vzhledu prostředí", "Common.UI.Themes.txtThemeClassicLight": "Standartní světlost", "Common.UI.Themes.txtThemeDark": "Tmavé", "Common.UI.Themes.txtThemeLight": "Světlé", @@ -189,6 +295,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Automatické odrážkové seznamy", "Common.Views.AutoCorrectDialog.textBy": "Od", "Common.Views.AutoCorrectDialog.textDelete": "Odstranit", + "Common.Views.AutoCorrectDialog.textFLCells": "První písmeno v obsahu buněk tabulky měnit na velké", "Common.Views.AutoCorrectDialog.textFLSentence": "Velká na začátku věty", "Common.Views.AutoCorrectDialog.textHyperlink": "Internetové a síťové přístupy s hypertextovými odkazy", "Common.Views.AutoCorrectDialog.textHyphens": "Spojovníky (--) s pomlčkou (—)", @@ -522,8 +629,8 @@ "PE.Controllers.Main.loadImageTitleText": "Načítání obrázku", "PE.Controllers.Main.loadingDocumentTextText": "Načítání prezentace…", "PE.Controllers.Main.loadingDocumentTitleText": "Načítání prezentace", - "PE.Controllers.Main.loadThemeTextText": "Načítání motivu vzhledu...", - "PE.Controllers.Main.loadThemeTitleText": "Načítání motivu vzhledu", + "PE.Controllers.Main.loadThemeTextText": "Načítání vzhledu prostředí...", + "PE.Controllers.Main.loadThemeTitleText": "Načítání vzhledu prostředí", "PE.Controllers.Main.notcriticalErrorTitle": "Varování", "PE.Controllers.Main.openErrorText": "Při otevírání souboru došlo k chybě.", "PE.Controllers.Main.openTextText": "Otevírání prezentace…", @@ -815,7 +922,7 @@ "PE.Controllers.Main.txtTheme_green_leaf": "Zelený list", "PE.Controllers.Main.txtTheme_lines": "Řádky", "PE.Controllers.Main.txtTheme_office": "Kancelář", - "PE.Controllers.Main.txtTheme_office_theme": "Kancelářský motiv vzhledu", + "PE.Controllers.Main.txtTheme_office_theme": "Kancelářský vzhledu prostředí", "PE.Controllers.Main.txtTheme_official": "Oficiální", "PE.Controllers.Main.txtTheme_pixel": "Pixel", "PE.Controllers.Main.txtTheme_safari": "Safari", @@ -840,6 +947,7 @@ "PE.Controllers.Main.warnNoLicense": "Došlo dosažení limitu souběžných připojení %1 editorů. Dokument bude otevřen pouze pro náhled.
Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", "PE.Controllers.Main.warnNoLicenseUsers": "Došlo k dosažení limitu %1 editorů. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", "PE.Controllers.Main.warnProcessRightsChange": "Bylo vám odepřeno oprávnění soubor upravovat.", + "PE.Controllers.Statusbar.textDisconnect": "Spojení je ztraceno
Pokus o opětovné připojení. Zkontrolujte nastavení připojení.", "PE.Controllers.Statusbar.zoomText": "Přiblížení {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "Písmo (font) ve kterém se chystáte uložit, není na tomto zařízení k dispozici.
Text bude zobrazen pomocí některého ze systémových písem s tím, že uložené písmo bude použito, když bude dostupné.
Chcete pokračovat?", "PE.Controllers.Toolbar.textAccent": "Akcenty", @@ -1180,11 +1288,12 @@ "PE.Views.Animation.strDuration": "Doba trvání", "PE.Views.Animation.strRepeat": "Zopakovat", "PE.Views.Animation.strRewind": "Vrátit na začátek", - "PE.Views.Animation.strStart": "Začátek", + "PE.Views.Animation.strStart": "Spustit", "PE.Views.Animation.strTrigger": "Spouštěč", "PE.Views.Animation.textMoreEffects": "Zobrazit další efekty", "PE.Views.Animation.textMoveEarlier": "Přesunout dřívější", "PE.Views.Animation.textMoveLater": "Přesunout pozdější", + "PE.Views.Animation.textMultiple": "vícenásobný", "PE.Views.Animation.textNone": "Žádné", "PE.Views.Animation.textOnClickOf": "Při kliknutí na", "PE.Views.Animation.textOnClickSequence": "Při posloupnosti kliknutí", @@ -1195,6 +1304,7 @@ "PE.Views.Animation.txtAnimationPane": "Podokno animací", "PE.Views.Animation.txtParameters": "Parametry", "PE.Views.Animation.txtPreview": "Náhled", + "PE.Views.Animation.txtSec": "sek", "PE.Views.AnimationDialog.textPreviewEffect": "Náhled efektu", "PE.Views.AnimationDialog.textTitle": "Další efekty", "PE.Views.ChartSettings.textAdvanced": "Zobrazit pokročilá nastavení", @@ -1315,7 +1425,7 @@ "PE.Views.DocumentHolder.txtBorderProps": "Vlastnosti ohraničení", "PE.Views.DocumentHolder.txtBottom": "Dole", "PE.Views.DocumentHolder.txtChangeLayout": "Změnit uspořádání", - "PE.Views.DocumentHolder.txtChangeTheme": "Změnit motiv vzhledu", + "PE.Views.DocumentHolder.txtChangeTheme": "Změnit vzhled prostředí", "PE.Views.DocumentHolder.txtColumnAlign": "Zarovnání sloupce", "PE.Views.DocumentHolder.txtDecreaseArg": "Snížit velikost argumentu", "PE.Views.DocumentHolder.txtDeleteArg": "Odstranit argument", @@ -1361,9 +1471,11 @@ "PE.Views.DocumentHolder.txtLimitUnder": "Limit pod textem", "PE.Views.DocumentHolder.txtMatchBrackets": "Přizpůsobit závorky výšce argumentu", "PE.Views.DocumentHolder.txtMatrixAlign": "Zarovnání matice", + "PE.Views.DocumentHolder.txtMoveSlidesToEnd": "Přesunout snímek na konec", + "PE.Views.DocumentHolder.txtMoveSlidesToStart": "Přesunout snímek na začátek", "PE.Views.DocumentHolder.txtNewSlide": "Nový snímek", "PE.Views.DocumentHolder.txtOverbar": "Čárka nad textem", - "PE.Views.DocumentHolder.txtPasteDestFormat": "Použít cílový motiv vzhledu", + "PE.Views.DocumentHolder.txtPasteDestFormat": "Použít cílový vzhledu prostředí", "PE.Views.DocumentHolder.txtPastePicture": "Obrázek", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Ponechat formátování zdroje", "PE.Views.DocumentHolder.txtPressLink": "Stikněte CTRL a klikněte na odkaz", @@ -1891,7 +2003,7 @@ "PE.Views.TableSettings.txtTable_NoGrid": "Žádná mřížka", "PE.Views.TableSettings.txtTable_NoStyle": "Bez stylu", "PE.Views.TableSettings.txtTable_TableGrid": "Mřížka tabulky", - "PE.Views.TableSettings.txtTable_ThemedStyle": "Styl opatřený motivem vzhledu", + "PE.Views.TableSettings.txtTable_ThemedStyle": "Styl se vzhledem prostředí", "PE.Views.TableSettingsAdvanced.textAlt": "Alternativní text", "PE.Views.TableSettingsAdvanced.textAltDescription": "Popis", "PE.Views.TableSettingsAdvanced.textAltTip": "Alternativní textová reprezentace informací vizuálního objektu, která bude čtena lidem se zrakovým nebo kognitivním postižením, aby jim pomohla lépe porozumět informacím, které se nacházejí v obrázku, grafu, obrazci nebo v tabulce.", @@ -2069,7 +2181,7 @@ "PE.Views.Toolbar.tipShapeArrange": "Uspořádat obrazec", "PE.Views.Toolbar.tipSlideNum": "Vložit číslo snímku", "PE.Views.Toolbar.tipSlideSize": "Vybrat velikost snímku", - "PE.Views.Toolbar.tipSlideTheme": "Motiv vzhledu snímku", + "PE.Views.Toolbar.tipSlideTheme": "Vzhledu prostředí snímku", "PE.Views.Toolbar.tipUndo": "Krok zpět", "PE.Views.Toolbar.tipVAligh": "Svislé zarovnání", "PE.Views.Toolbar.tipViewSettings": "Zobrazit nastavení", @@ -2129,7 +2241,7 @@ "PE.Views.Transitions.textVerticalIn": "Svislý uvnitř", "PE.Views.Transitions.textVerticalOut": "Svislý vně", "PE.Views.Transitions.textWedge": "Konjunkce", - "PE.Views.Transitions.textWipe": "Vyčistit", + "PE.Views.Transitions.textWipe": "Setření", "PE.Views.Transitions.textZoom": "Přiblížení", "PE.Views.Transitions.textZoomIn": "Přiblížit", "PE.Views.Transitions.textZoomOut": "Oddálit", @@ -2138,9 +2250,10 @@ "PE.Views.Transitions.txtParameters": "Parametry", "PE.Views.Transitions.txtPreview": "Náhled", "PE.Views.Transitions.txtSec": "S", + "PE.Views.ViewTab.textAlwaysShowToolbar": "Vždy zobrazovat panel nástrojů", "PE.Views.ViewTab.textFitToSlide": "Přizpůsobit snímku", "PE.Views.ViewTab.textFitToWidth": "Přizpůsobit šířce", - "PE.Views.ViewTab.textInterfaceTheme": "Vzhled uživatelského rozhraní", + "PE.Views.ViewTab.textInterfaceTheme": "Vzhled prostředí", "PE.Views.ViewTab.textNotes": "Poznámky", "PE.Views.ViewTab.textRulers": "Pravítka", "PE.Views.ViewTab.textStatusBar": "Stavová lišta", diff --git a/apps/presentationeditor/main/locale/el.json b/apps/presentationeditor/main/locale/el.json index 59085b43f..965283899 100644 --- a/apps/presentationeditor/main/locale/el.json +++ b/apps/presentationeditor/main/locale/el.json @@ -127,6 +127,8 @@ "Common.define.effectData.textFromTopRight": "Από την Κορυφή Δεξιά", "Common.define.effectData.textFunnel": "Χωνί", "Common.define.effectData.textGrowShrink": "Μεγέθυνση/Σμίκρυνση", + "Common.define.effectData.textGrowTurn": "Μεγέθυνση & Στροφή", + "Common.define.effectData.textGrowWithColor": "Μεγέθυνση Με Χρώμα", "Common.define.effectData.textHeart": "Καρδιά", "Common.define.effectData.textHeartbeat": "Σφυγμός", "Common.define.effectData.textHexagon": "Εξάγωνο", @@ -163,6 +165,7 @@ "Common.define.effectData.textPentagon": "Πεντάγωνο", "Common.define.effectData.textPinwheel": "Τροχός", "Common.define.effectData.textPlus": "Συν", + "Common.define.effectData.textPointStar": "Αστέρι με Σημεία", "Common.define.effectData.textPointStar4": "Αστέρι 4 Σημείων", "Common.define.effectData.textPointStar5": "Αστέρι 5 Σημείων", "Common.define.effectData.textPointStar6": "Αστέρι 6 Σημείων", @@ -216,6 +219,10 @@ "Common.define.effectData.textToTopRight": "Προς την Κορυφή Δεξιά", "Common.define.effectData.textTransparency": "Διαφάνεια", "Common.define.effectData.textTrapezoid": "Τραπέζιο", + "Common.define.effectData.textTurnDown": "Στροφή Κάτω", + "Common.define.effectData.textTurnDownRight": "Στροφή Κάτω Δεξιά", + "Common.define.effectData.textTurnUp": "Στροφή Πάνω", + "Common.define.effectData.textTurnUpRight": "Στροφή Πάνω Δεξιά", "Common.define.effectData.textUnderline": "Υπογράμμιση", "Common.define.effectData.textUp": "Πάνω", "Common.define.effectData.textVertical": "Κατακόρυφος", diff --git a/apps/presentationeditor/main/locale/id.json b/apps/presentationeditor/main/locale/id.json index 7d81c6e09..e3e328972 100644 --- a/apps/presentationeditor/main/locale/id.json +++ b/apps/presentationeditor/main/locale/id.json @@ -5,6 +5,28 @@ "Common.Controllers.ExternalDiagramEditor.textClose": "Close", "Common.Controllers.ExternalDiagramEditor.warningText": "The object is disabled because it is being edited by another user.", "Common.Controllers.ExternalDiagramEditor.warningTitle": "Warning", + "Common.define.chartData.textArea": "Grafik Area", + "Common.define.chartData.textBar": "Palang", + "Common.define.chartData.textCharts": "Bagan", + "Common.define.chartData.textColumn": "Kolom", + "Common.define.chartData.textLine": "Garis", + "Common.define.chartData.textStock": "Diagram Garis", + "Common.define.effectData.textFillColor": "Fill Color", + "Common.define.effectData.textFontColor": "Warna Huruf", + "Common.define.effectData.textHorizontal": "Horisontal", + "Common.define.effectData.textIn": "Dalam", + "Common.define.effectData.textLeft": "Kiri", + "Common.define.effectData.textPlus": "Plus", + "Common.define.effectData.textRight": "Kanan", + "Common.define.effectData.textSquare": "Persegi", + "Common.define.effectData.textStretch": "Rentangkan", + "Common.define.effectData.textUnderline": "Garis bawah", + "Common.define.effectData.textUp": "Naik", + "Common.define.effectData.textVertical": "Vertikal", + "Common.define.effectData.textZoom": "Perbesar", + "Common.Translation.warnFileLockedBtnEdit": "Buat salinan", + "Common.UI.ButtonColored.textAutoColor": "Otomatis", + "Common.UI.ButtonColored.textNewColor": "Tambahkan Warna Khusus Baru", "Common.UI.ComboBorderSize.txtNoBorders": "No borders", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "No borders", "Common.UI.ComboDataView.emptyComboText": "No styles", @@ -25,6 +47,8 @@ "Common.UI.SearchDialog.txtBtnReplaceAll": "Replace All", "Common.UI.SynchronizeTip.textDontShow": "Don't show this message again", "Common.UI.SynchronizeTip.textSynchronize": "The document has been changed by another user.
Please click to save your changes and reload the updates.", + "Common.UI.ThemeColorPalette.textStandartColors": "Warna Standar", + "Common.UI.ThemeColorPalette.textThemeColors": "Warna Tema", "Common.UI.Window.cancelButtonText": "Cancel", "Common.UI.Window.closeButtonText": "Close", "Common.UI.Window.noButtonText": "No", @@ -42,17 +66,26 @@ "Common.Views.About.txtPoweredBy": "Powered by", "Common.Views.About.txtTel": "tel.: ", "Common.Views.About.txtVersion": "Version ", + "Common.Views.AutoCorrectDialog.textAdd": "Tambahkan", + "Common.Views.AutoCorrectDialog.textBy": "oleh", + "Common.Views.AutoCorrectDialog.textDelete": "Hapus", + "Common.Views.AutoCorrectDialog.textReplace": "Ganti", + "Common.Views.AutoCorrectDialog.textReset": "Atur ulang", + "Common.Views.AutoCorrectDialog.textResetAll": "Atur ulang kembali ke awal", + "Common.Views.AutoCorrectDialog.textRestore": "Pemulihan", "Common.Views.Chat.textSend": "Send", "Common.Views.Comments.textAdd": "Add", "Common.Views.Comments.textAddComment": "Tambahkan", "Common.Views.Comments.textAddCommentToDoc": "Add Comment to Document", "Common.Views.Comments.textAddReply": "Add Reply", + "Common.Views.Comments.textAll": "Semua", "Common.Views.Comments.textAnonym": "Guest", "Common.Views.Comments.textCancel": "Cancel", "Common.Views.Comments.textClose": "Close", "Common.Views.Comments.textComments": "Comments", "Common.Views.Comments.textEdit": "Edit", "Common.Views.Comments.textEnterCommentHint": "Enter your comment here", + "Common.Views.Comments.textHintAddComment": "Tambahkan komentar", "Common.Views.Comments.textOpenAgain": "Open Again", "Common.Views.Comments.textReply": "Reply", "Common.Views.Comments.textResolve": "Resolve", @@ -68,7 +101,21 @@ "Common.Views.ExternalDiagramEditor.textClose": "Close", "Common.Views.ExternalDiagramEditor.textSave": "Save & Exit", "Common.Views.ExternalDiagramEditor.textTitle": "Chart Editor", + "Common.Views.Header.textAdvSettings": "Pengaturan Lanjut", "Common.Views.Header.textBack": "Go to Documents", + "Common.Views.Header.textHideLines": "Sembunyikan Mistar", + "Common.Views.Header.textHideStatusBar": "Sembunyikan Bilah Status", + "Common.Views.Header.textZoom": "Perbesar", + "Common.Views.Header.tipDownload": "Unduh File", + "Common.Views.Header.tipRedo": "Ulangi", + "Common.Views.Header.tipSave": "Simpan", + "Common.Views.Header.tipUndo": "Batalkan", + "Common.Views.Header.tipViewSettings": "Lihat Pengaturan", + "Common.Views.Header.txtAccessRights": "Ubah hak akses", + "Common.Views.Header.txtRename": "Ganti nama", + "Common.Views.History.textCloseHistory": "Tutup riwayat", + "Common.Views.History.textRestore": "Pemulihan", + "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "Paste an image URL:", "Common.Views.ImageFromUrlDialog.txtEmpty": "This field is required", "Common.Views.ImageFromUrlDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format", @@ -78,11 +125,64 @@ "Common.Views.InsertTableDialog.txtMinText": "The minimum value for this field is {0}.", "Common.Views.InsertTableDialog.txtRows": "Number of Rows", "Common.Views.InsertTableDialog.txtTitle": "Table Size", + "Common.Views.InsertTableDialog.txtTitleSplit": "Pisahkan Sel", + "Common.Views.LanguageDialog.labelSelect": "Pilih bahasa dokumen", + "Common.Views.ListSettingsDialog.txtColor": "Warna", + "Common.Views.ListSettingsDialog.txtNone": "Tidak ada", + "Common.Views.ListSettingsDialog.txtSize": "Ukuran", + "Common.Views.ListSettingsDialog.txtType": "Tipe", + "Common.Views.OpenDialog.txtEncoding": "Enkoding", "Common.Views.OpenDialog.txtOpenFile": "Masukkan kata sandi untuk buka file", + "Common.Views.OpenDialog.txtPassword": "Kata Sandi", + "Common.Views.PasswordDialog.txtPassword": "Kata Sandi", + "Common.Views.PasswordDialog.txtTitle": "Setel kata sandi", "Common.Views.PasswordDialog.txtWarning": "Perhatian: Tidak bisa dipulihkan jika Anda kehilangan atau lupa kata sandi. Simpan di tempat yang aman.", + "Common.Views.Plugins.textStart": "Mulai", + "Common.Views.Protection.txtChangePwd": "Ubah kata sandi", + "Common.Views.RenameDialog.textName": "Nama file", + "Common.Views.ReviewChanges.tipHistory": "Tampilkan riwayat versi", + "Common.Views.ReviewChanges.tipSetDocLang": "Atur Bahasa Dokumen", + "Common.Views.ReviewChanges.tipSetSpelling": "Periksa Ejaan", + "Common.Views.ReviewChanges.txtAccept": "Terima", + "Common.Views.ReviewChanges.txtAcceptAll": "Terima semua perubahan", + "Common.Views.ReviewChanges.txtChat": "Chat", + "Common.Views.ReviewChanges.txtClose": "Tutup", + "Common.Views.ReviewChanges.txtCommentRemove": "Hapus", + "Common.Views.ReviewChanges.txtCommentResolve": "Selesaikan", + "Common.Views.ReviewChanges.txtDocLang": "Bahasa", + "Common.Views.ReviewChanges.txtHistory": "Riwayat versi", + "Common.Views.ReviewChanges.txtNext": "Berikutnya", + "Common.Views.ReviewChanges.txtPrev": "Sebelumnya", + "Common.Views.ReviewChanges.txtReject": "Tolak", + "Common.Views.ReviewChanges.txtSpelling": "Periksa Ejaan", + "Common.Views.ReviewPopover.textAdd": "Tambahkan", + "Common.Views.ReviewPopover.textAddReply": "Tambahkan Balasan", + "Common.Views.ReviewPopover.textCancel": "Batalkan", + "Common.Views.ReviewPopover.textClose": "Tutup", + "Common.Views.ReviewPopover.textEdit": "OK", + "Common.Views.ReviewPopover.textOpenAgain": "Buka Lagi", + "Common.Views.ReviewPopover.textReply": "Balas", + "Common.Views.ReviewPopover.textResolve": "Selesaikan", + "Common.Views.ReviewPopover.txtDeleteTip": "Hapus", + "Common.Views.ReviewPopover.txtEditTip": "Sunting", + "Common.Views.SelectFileDlg.textTitle": "Pilih sumber data", + "Common.Views.SignDialog.textBold": "Tebal", + "Common.Views.SignDialog.textChange": "Ganti", + "Common.Views.SignDialog.textItalic": "Miring", + "Common.Views.SignDialog.textSelect": "Pilih", + "Common.Views.SignDialog.tipFontSize": "Ukuran Huruf", + "Common.Views.SignSettingsDialog.textInfoName": "Nama", + "Common.Views.SignSettingsDialog.txtEmpty": "Kolom ini harus diisi", + "Common.Views.SymbolTableDialog.textCharacter": "Karakter", + "Common.Views.SymbolTableDialog.textFont": "Huruf", + "Common.Views.SymbolTableDialog.textSpecial": "Karakter khusus", + "Common.Views.SymbolTableDialog.textSymbols": "Simbol", "PE.Controllers.LeftMenu.newDocumentTitle": "Unnamed presentation", + "PE.Controllers.LeftMenu.notcriticalErrorTitle": "Peringatan", "PE.Controllers.LeftMenu.requestEditRightsText": "Requesting editing rights...", "PE.Controllers.LeftMenu.textNoTextFound": "The data you have been searching for could not be found. Please adjust your search options.", + "PE.Controllers.LeftMenu.textReplaceSkipped": "Penggantian telah dilakukan. Ada {0} yang dilewatkan.", + "PE.Controllers.LeftMenu.textReplaceSuccess": "Pencarian telah dilakukan. Ada {0} yang diganti.", "PE.Controllers.Main.applyChangesTextText": "Loading data...", "PE.Controllers.Main.applyChangesTitleText": "Loading Data", "PE.Controllers.Main.convertationTimeoutText": "Conversion timeout exceeded.", @@ -129,7 +229,10 @@ "PE.Controllers.Main.splitMaxColsErrorText": "The number of columns must be less than %1.", "PE.Controllers.Main.splitMaxRowsErrorText": "The number of rows must be less than %1.", "PE.Controllers.Main.textAnonymous": "Anonymous", + "PE.Controllers.Main.textClose": "Tutup", "PE.Controllers.Main.textCloseTip": "Click to close the tip", + "PE.Controllers.Main.textGuest": "Tamu", + "PE.Controllers.Main.textLearnMore": "Pelajari selengkapnya", "PE.Controllers.Main.textLoadingDocument": "Loading presentation", "PE.Controllers.Main.textShape": "Shape", "PE.Controllers.Main.textStrict": "Strict mode", @@ -142,11 +245,25 @@ "PE.Controllers.Main.txtDiagramTitle": "Chart Title", "PE.Controllers.Main.txtEditingMode": "Set editing mode...", "PE.Controllers.Main.txtFiguredArrows": "Figured Arrows", + "PE.Controllers.Main.txtImage": "Gambar", "PE.Controllers.Main.txtLines": "Lines", + "PE.Controllers.Main.txtLoading": "Memuat...", "PE.Controllers.Main.txtMath": "Math", + "PE.Controllers.Main.txtMedia": "Media", "PE.Controllers.Main.txtNeedSynchronize": "You have updates", + "PE.Controllers.Main.txtNone": "Tidak ada", "PE.Controllers.Main.txtRectangles": "Rectangles", "PE.Controllers.Main.txtSeries": "Series", + "PE.Controllers.Main.txtShape_bevel": "Miring", + "PE.Controllers.Main.txtShape_downArrow": "Panah Bawah", + "PE.Controllers.Main.txtShape_frame": "Kerangka", + "PE.Controllers.Main.txtShape_leftArrow": "Panah Kiri", + "PE.Controllers.Main.txtShape_line": "Garis", + "PE.Controllers.Main.txtShape_mathEqual": "Setara", + "PE.Controllers.Main.txtShape_mathMinus": "Minus", + "PE.Controllers.Main.txtShape_mathPlus": "Plus", + "PE.Controllers.Main.txtShape_plus": "Plus", + "PE.Controllers.Main.txtShape_rightArrow": "Tanda Panah ke Kanan", "PE.Controllers.Main.txtSldLtTBlank": "Blank", "PE.Controllers.Main.txtSldLtTChart": "Chart", "PE.Controllers.Main.txtSldLtTChartAndTx": "Chart and Text", @@ -184,6 +301,8 @@ "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Vertical Title and Text Over Chart", "PE.Controllers.Main.txtSldLtTVertTx": "Vertical Text", "PE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons", + "PE.Controllers.Main.txtTheme_green": "Hijau", + "PE.Controllers.Main.txtTheme_lines": "Garis", "PE.Controllers.Main.txtXAxis": "X Axis", "PE.Controllers.Main.txtYAxis": "Y Axis", "PE.Controllers.Main.unknownErrorText": "Unknown error.", @@ -193,14 +312,249 @@ "PE.Controllers.Main.uploadImageSizeMessage": "Maximum image size limit exceeded.", "PE.Controllers.Main.uploadImageTextText": "Uploading image...", "PE.Controllers.Main.uploadImageTitleText": "Uploading Image", + "PE.Controllers.Main.waitText": "Silahkan menunggu...", "PE.Controllers.Main.warnBrowserIE9": "The application has low capabilities on IE9. Use IE10 or higher", "PE.Controllers.Main.warnBrowserZoom": "Your browser current zoom setting is not fully supported. Please reset to the default zoom by pressing Ctrl+0.", "PE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", "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": "Aksen", + "PE.Controllers.Toolbar.textBracket": "Tanda Kurung", "PE.Controllers.Toolbar.textEmptyImgUrl": "You need to specify image URL.", "PE.Controllers.Toolbar.textFontSizeErr": "The entered value is incorrect.
Please enter a numeric value between 1 and 300", + "PE.Controllers.Toolbar.textFraction": "Pecahan", + "PE.Controllers.Toolbar.textFunction": "Fungsi", + "PE.Controllers.Toolbar.textInsert": "Sisipkan", + "PE.Controllers.Toolbar.textIntegral": "Integral", + "PE.Controllers.Toolbar.textLargeOperator": "Operator Besar", + "PE.Controllers.Toolbar.textLimitAndLog": "Limit dan Logaritma", + "PE.Controllers.Toolbar.textMatrix": "Matriks", + "PE.Controllers.Toolbar.textOperator": "Operator", + "PE.Controllers.Toolbar.textRadical": "Perakaran", "PE.Controllers.Toolbar.textWarning": "Warning", + "PE.Controllers.Toolbar.txtAccent_Accent": "Akut", + "PE.Controllers.Toolbar.txtAccent_ArrowD": "Tanda Panah Kanan-Kiri Atas", + "PE.Controllers.Toolbar.txtAccent_ArrowL": "Panah Kiri Atas", + "PE.Controllers.Toolbar.txtAccent_ArrowR": "Tanda Panah ke Kanan Atas", + "PE.Controllers.Toolbar.txtAccent_Bar": "Palang", + "PE.Controllers.Toolbar.txtAccent_BarTop": "Garis Atas", + "PE.Controllers.Toolbar.txtAccent_BorderBox": "Kotak Formula (Dengan Placeholder)", + "PE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Kotak Formula (Contoh)", + "PE.Controllers.Toolbar.txtAccent_Check": "Periksa", + "PE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Kurung Kurawal Atas", + "PE.Controllers.Toolbar.txtAccent_Custom_2": "ABC Dengan Overbar", + "PE.Controllers.Toolbar.txtAccent_DDot": "Titik Dua", + "PE.Controllers.Toolbar.txtAccent_Dot": "Titik", + "PE.Controllers.Toolbar.txtAccent_DoubleBar": "Overbar Ganda", + "PE.Controllers.Toolbar.txtAccent_Grave": "Aksen Kiri", + "PE.Controllers.Toolbar.txtAccent_GroupBot": "Pengelompokan Karakter Di Bawah", + "PE.Controllers.Toolbar.txtAccent_GroupTop": "Pengelompokan Karakter Di Atas", + "PE.Controllers.Toolbar.txtAccent_HarpoonL": "Panah Tiga Kiri Atas", + "PE.Controllers.Toolbar.txtAccent_Hat": "Caping", + "PE.Controllers.Toolbar.txtAccent_Smile": "Prosodi ", + "PE.Controllers.Toolbar.txtBracket_Angle": "Tanda Kurung", + "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Tanda Kurung dengan Pemisah", + "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Tanda Kurung dengan Pemisah", + "PE.Controllers.Toolbar.txtBracket_Curve": "Tanda Kurung", + "PE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Tanda Kurung dengan Pemisah", + "PE.Controllers.Toolbar.txtBracket_Custom_1": "Kasus (Dua Kondisi)", + "PE.Controllers.Toolbar.txtBracket_Custom_2": "Kasus (Tiga Kondisi)", + "PE.Controllers.Toolbar.txtBracket_Custom_5": "Contoh Kasus", + "PE.Controllers.Toolbar.txtBracket_Custom_6": "Koefisien Binomial", + "PE.Controllers.Toolbar.txtBracket_Custom_7": "Koefisien Binomial", + "PE.Controllers.Toolbar.txtBracket_Line": "Tanda Kurung", + "PE.Controllers.Toolbar.txtBracket_LineDouble": "Tanda Kurung", + "PE.Controllers.Toolbar.txtBracket_LowLim": "Tanda Kurung", + "PE.Controllers.Toolbar.txtBracket_Round": "Tanda Kurung", + "PE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Tanda Kurung dengan Pemisah", + "PE.Controllers.Toolbar.txtBracket_Square": "Tanda Kurung", + "PE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Tanda Kurung", + "PE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Tanda Kurung", + "PE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Tanda Kurung", + "PE.Controllers.Toolbar.txtBracket_SquareDouble": "Tanda Kurung", + "PE.Controllers.Toolbar.txtBracket_UppLim": "Tanda Kurung", + "PE.Controllers.Toolbar.txtFractionDifferential_1": "Diferensial", + "PE.Controllers.Toolbar.txtFractionDifferential_2": "Diferensial", + "PE.Controllers.Toolbar.txtFractionDifferential_3": "Diferensial", + "PE.Controllers.Toolbar.txtFractionDifferential_4": "Diferensial", + "PE.Controllers.Toolbar.txtFractionHorizontal": "Pecahan Linear", + "PE.Controllers.Toolbar.txtFractionPi_2": "Pi Dibagi 2", + "PE.Controllers.Toolbar.txtFunction_1_Cos": "Fungsi Kosin Terbalik", + "PE.Controllers.Toolbar.txtFunction_1_Cosh": "Fungsi Kosin Hiperbolik Terbalik", + "PE.Controllers.Toolbar.txtFunction_1_Cot": "Fungsi Kotangen Terbalik", + "PE.Controllers.Toolbar.txtFunction_1_Coth": "Fungsi Kotangen Hiperbolik Terbalik", + "PE.Controllers.Toolbar.txtFunction_1_Csc": "Fungsi Kosekans Terbalik", + "PE.Controllers.Toolbar.txtFunction_1_Csch": "Fungsi Kosekan Hiperbolik Terbalik", + "PE.Controllers.Toolbar.txtFunction_1_Sec": "Fungsi Sekans Terbalik", + "PE.Controllers.Toolbar.txtFunction_1_Sech": "Fungsi Sekans Hiperbolik Terbalik", + "PE.Controllers.Toolbar.txtFunction_1_Sin": "Fungsi Sin Terbalik", + "PE.Controllers.Toolbar.txtFunction_1_Sinh": "Fungsi Sin Hiperbolik Terbalik", + "PE.Controllers.Toolbar.txtFunction_1_Tan": "Fungsi Tangen Terbalik", + "PE.Controllers.Toolbar.txtFunction_1_Tanh": "Fungsi Tangen Hiperbolik Terbalik", + "PE.Controllers.Toolbar.txtFunction_Cos": "Fungsi Kosin", + "PE.Controllers.Toolbar.txtFunction_Cosh": "Fungsi Kosin Hiperbolik", + "PE.Controllers.Toolbar.txtFunction_Cot": "Fungsi Kotangen", + "PE.Controllers.Toolbar.txtFunction_Coth": "Fungsi Kotangen Hiperbolik", + "PE.Controllers.Toolbar.txtFunction_Csc": "Fungsi Kosekans", + "PE.Controllers.Toolbar.txtFunction_Csch": "Fungsi Kosekans Hiperbolik", + "PE.Controllers.Toolbar.txtFunction_Sech": "Fungsi Sekans Hiperbolik", + "PE.Controllers.Toolbar.txtFunction_Sinh": "Fungsi Sin Hiperbolik", + "PE.Controllers.Toolbar.txtFunction_Tanh": "Fungsi Tangen Hiperbolik", + "PE.Controllers.Toolbar.txtIntegral": "Integral", + "PE.Controllers.Toolbar.txtIntegral_dtheta": "Theta Diferensial", + "PE.Controllers.Toolbar.txtIntegral_dx": "Diferensial x", + "PE.Controllers.Toolbar.txtIntegral_dy": "Diferensial y", + "PE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integral", + "PE.Controllers.Toolbar.txtIntegralDouble": "Integral Ganda", + "PE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Integral Ganda", + "PE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Integral Ganda", + "PE.Controllers.Toolbar.txtIntegralOriented": "Integral Kontur", + "PE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Integral Kontur", + "PE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Integral Kontur", + "PE.Controllers.Toolbar.txtIntegralSubSup": "Integral", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd": "Ko-Produk", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Ko-Produk", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Ko-Produk", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Ko-Produk", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Ko-Produk", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Produk", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Prod": "Produk", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Produk", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Produk", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Produk", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Produk", + "PE.Controllers.Toolbar.txtLimitLog_Custom_1": "Contoh Limit", + "PE.Controllers.Toolbar.txtLimitLog_Custom_2": "Contoh Maksimal", + "PE.Controllers.Toolbar.txtLimitLog_Lim": "Limit", + "PE.Controllers.Toolbar.txtLimitLog_Ln": "Logaritma Natural", + "PE.Controllers.Toolbar.txtLimitLog_Log": "Logaritma", + "PE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritma", + "PE.Controllers.Toolbar.txtLimitLog_Max": "Maksimal", + "PE.Controllers.Toolbar.txtLimitLog_Min": "Minimum", + "PE.Controllers.Toolbar.txtMatrix_1_2": "1x2 Matriks Kosong", + "PE.Controllers.Toolbar.txtMatrix_1_3": "1x3 Matriks Kosong", + "PE.Controllers.Toolbar.txtMatrix_2_1": "2x1 Matriks Kosong", + "PE.Controllers.Toolbar.txtMatrix_2_2": "2x2 Matriks Kosong", + "PE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Matriks Kosong dengan Tanda Kurung", + "PE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Matriks Kosong dengan Tanda Kurung", + "PE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Matriks Kosong dengan Tanda Kurung", + "PE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Matriks Kosong dengan Tanda Kurung", + "PE.Controllers.Toolbar.txtMatrix_2_3": "2x3 Matriks Kosong", + "PE.Controllers.Toolbar.txtMatrix_3_1": "3x1 Matriks Kosong", + "PE.Controllers.Toolbar.txtMatrix_3_2": "3x2 Matriks Kosong", + "PE.Controllers.Toolbar.txtMatrix_3_3": "3x3 Matriks Kosong", + "PE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Titik Bawah", + "PE.Controllers.Toolbar.txtMatrix_Dots_Center": "Titik Tengah", + "PE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Titik Diagonal", + "PE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 Matriks Identitas", + "PE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 Matriks Identitas", + "PE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 Matriks Identitas", + "PE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 Matriks Identitas", + "PE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Tanda Panah Kanan-Kiri Bawah", + "PE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Tanda Panah Kanan-Kiri Atas", + "PE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Panah Kiri Bawah", + "PE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Panah Kiri Atas", + "PE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Tanda Panah ke Kanan Atas", + "PE.Controllers.Toolbar.txtOperator_ColonEquals": "Titik Dua", + "PE.Controllers.Toolbar.txtOperator_Custom_2": "Hasil Delta", + "PE.Controllers.Toolbar.txtOperator_Definition": "Setara Menurut Definisi", + "PE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta Setara Dengan", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Tanda Panah Kanan-Kiri Bawah", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Tanda Panah Kanan-Kiri Atas", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Panah Kiri Bawah", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Panah Kiri Atas", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Tanda Panah ke Kanan Atas", + "PE.Controllers.Toolbar.txtOperator_EqualsEquals": "Setara Setara", + "PE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus Sama Dengan", + "PE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus Sama Dengan", + "PE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Diukur Berdasar", + "PE.Controllers.Toolbar.txtRadicalCustom_1": "Akar", + "PE.Controllers.Toolbar.txtRadicalCustom_2": "Akar", + "PE.Controllers.Toolbar.txtRadicalRoot_3": "Akar Pangkat Tiga", + "PE.Controllers.Toolbar.txtRadicalRoot_n": "Akar Dengan Derajat", + "PE.Controllers.Toolbar.txtScriptSub": "Subskrip", + "PE.Controllers.Toolbar.txtScriptSubSupLeft": "Subskrip-SuperskripKiri", + "PE.Controllers.Toolbar.txtScriptSup": "Superskrip", + "PE.Controllers.Toolbar.txtSymbol_about": "Kira-Kira", + "PE.Controllers.Toolbar.txtSymbol_additional": "Komplemen", + "PE.Controllers.Toolbar.txtSymbol_aleph": "Alef", + "PE.Controllers.Toolbar.txtSymbol_alpha": "Alfa", + "PE.Controllers.Toolbar.txtSymbol_approx": "Setara Dengan", + "PE.Controllers.Toolbar.txtSymbol_ast": "Operator Tanda Bintang", + "PE.Controllers.Toolbar.txtSymbol_beta": "Beta", + "PE.Controllers.Toolbar.txtSymbol_beth": "Taruhan", + "PE.Controllers.Toolbar.txtSymbol_bullet": "Operator Butir", + "PE.Controllers.Toolbar.txtSymbol_cbrt": "Akar Pangkat Tiga", + "PE.Controllers.Toolbar.txtSymbol_cdots": "Elipsis Tengah Horisontal", + "PE.Controllers.Toolbar.txtSymbol_celsius": "Derajat Celcius", + "PE.Controllers.Toolbar.txtSymbol_chi": "Chi", + "PE.Controllers.Toolbar.txtSymbol_cong": "Kira-Kira Setara Dengan", + "PE.Controllers.Toolbar.txtSymbol_degree": "Derajat", + "PE.Controllers.Toolbar.txtSymbol_delta": "Delta", + "PE.Controllers.Toolbar.txtSymbol_div": "Tanda Pembagi", + "PE.Controllers.Toolbar.txtSymbol_downarrow": "Panah Bawah", + "PE.Controllers.Toolbar.txtSymbol_emptyset": "Himpunan Kosong", + "PE.Controllers.Toolbar.txtSymbol_epsilon": "Epsilon", + "PE.Controllers.Toolbar.txtSymbol_equals": "Setara", + "PE.Controllers.Toolbar.txtSymbol_equiv": "Identik Dengan", + "PE.Controllers.Toolbar.txtSymbol_eta": "Eta", + "PE.Controllers.Toolbar.txtSymbol_factorial": "Faktorial", + "PE.Controllers.Toolbar.txtSymbol_fahrenheit": "Derajat Fahrenheit", + "PE.Controllers.Toolbar.txtSymbol_forall": "Untuk Semua", + "PE.Controllers.Toolbar.txtSymbol_gamma": "Gamma", + "PE.Controllers.Toolbar.txtSymbol_geq": "Lebih Dari atau Sama Dengan", + "PE.Controllers.Toolbar.txtSymbol_gg": "Lebih Dari", + "PE.Controllers.Toolbar.txtSymbol_greater": "Lebih Dari", + "PE.Controllers.Toolbar.txtSymbol_in": "Elemen Dari", + "PE.Controllers.Toolbar.txtSymbol_inc": "Naik", + "PE.Controllers.Toolbar.txtSymbol_infinity": "Tak Terbatas", + "PE.Controllers.Toolbar.txtSymbol_iota": "Iota", + "PE.Controllers.Toolbar.txtSymbol_kappa": "Kappa", + "PE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", + "PE.Controllers.Toolbar.txtSymbol_leftarrow": "Panah Kiri", + "PE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Panah Kanan-Kiri", + "PE.Controllers.Toolbar.txtSymbol_leq": "Kurang Dari atau Sama Dengan", + "PE.Controllers.Toolbar.txtSymbol_less": "Kurang Dari", + "PE.Controllers.Toolbar.txtSymbol_ll": "Kurang Dari", + "PE.Controllers.Toolbar.txtSymbol_minus": "Minus", + "PE.Controllers.Toolbar.txtSymbol_mp": "Minus Plus", + "PE.Controllers.Toolbar.txtSymbol_ni": "Sertakan sebagai Anggota", + "PE.Controllers.Toolbar.txtSymbol_not": "Tanda Negasi", + "PE.Controllers.Toolbar.txtSymbol_nu": "Nu", + "PE.Controllers.Toolbar.txtSymbol_o": "Omikron", + "PE.Controllers.Toolbar.txtSymbol_omega": "Omega", + "PE.Controllers.Toolbar.txtSymbol_partial": "Diferensial Parsial", + "PE.Controllers.Toolbar.txtSymbol_percent": "Persentase", + "PE.Controllers.Toolbar.txtSymbol_phi": "Phi", + "PE.Controllers.Toolbar.txtSymbol_pi": "Pi", + "PE.Controllers.Toolbar.txtSymbol_plus": "Plus", + "PE.Controllers.Toolbar.txtSymbol_pm": "Plus Minus", + "PE.Controllers.Toolbar.txtSymbol_propto": "Proposional Dengan", + "PE.Controllers.Toolbar.txtSymbol_psi": "Psi", + "PE.Controllers.Toolbar.txtSymbol_qdrt": "Akar Kuadrat", + "PE.Controllers.Toolbar.txtSymbol_qed": "Pembuktian Akhir", + "PE.Controllers.Toolbar.txtSymbol_rho": "Rho", + "PE.Controllers.Toolbar.txtSymbol_rightarrow": "Tanda Panah ke Kanan", + "PE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", + "PE.Controllers.Toolbar.txtSymbol_sqrt": "Tanda Akar", + "PE.Controllers.Toolbar.txtSymbol_tau": "Tau", + "PE.Controllers.Toolbar.txtSymbol_theta": "Theta", + "PE.Controllers.Toolbar.txtSymbol_times": "Tanda Perkalian", + "PE.Controllers.Toolbar.txtSymbol_varepsilon": "Varian Epsilon", + "PE.Controllers.Toolbar.txtSymbol_varphi": "Varian Phi", + "PE.Controllers.Toolbar.txtSymbol_varpi": "Varian Pi", + "PE.Controllers.Toolbar.txtSymbol_varrho": "Varian Rho", + "PE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma Variant", + "PE.Controllers.Toolbar.txtSymbol_vartheta": "Theta Variant", + "PE.Controllers.Toolbar.txtSymbol_xsi": "Xi", + "PE.Controllers.Viewport.textFitWidth": "Sesuaikan Lebar", + "PE.Views.Animation.strStart": "Mulai", + "PE.Views.Animation.textMultiple": "Banyak", + "PE.Views.Animation.textNone": "Tidak ada", + "PE.Views.Animation.txtParameters": "Parameter", + "PE.Views.Animation.txtPreview": "Pratinjau", + "PE.Views.ChartSettings.textAdvanced": "Tampilkan pengaturan lanjut", "PE.Views.ChartSettings.textChartType": "Change Chart Type", "PE.Views.ChartSettings.textEditData": "Edit Data", "PE.Views.ChartSettings.textHeight": "Height", @@ -208,15 +562,21 @@ "PE.Views.ChartSettings.textSize": "Size", "PE.Views.ChartSettings.textStyle": "Style", "PE.Views.ChartSettings.textWidth": "Width", + "PE.Views.ChartSettingsAdvanced.textAltDescription": "Deskripsi", + "PE.Views.ChartSettingsAdvanced.textAltTitle": "Judul", + "PE.Views.ChartSettingsAdvanced.textTitle": "Bagan - Pengaturan Lanjut", + "PE.Views.DateTimeDialog.textLang": "Bahasa", "PE.Views.DocumentHolder.aboveText": "Above", "PE.Views.DocumentHolder.addCommentText": "Add Comment", "PE.Views.DocumentHolder.advancedImageText": "Image Advanced Settings", "PE.Views.DocumentHolder.advancedParagraphText": "Text Advanced Settings", "PE.Views.DocumentHolder.advancedShapeText": "Shape Advanced Settings", "PE.Views.DocumentHolder.advancedTableText": "Table Advanced Settings", + "PE.Views.DocumentHolder.alignmentText": "Perataan", "PE.Views.DocumentHolder.belowText": "Below", "PE.Views.DocumentHolder.cellAlignText": "Cell Vertical Alignment", "PE.Views.DocumentHolder.cellText": "Cell", + "PE.Views.DocumentHolder.centerText": "Tengah", "PE.Views.DocumentHolder.columnText": "Column", "PE.Views.DocumentHolder.deleteColumnText": "Delete Column", "PE.Views.DocumentHolder.deleteRowText": "Delete Row", @@ -229,6 +589,8 @@ "PE.Views.DocumentHolder.editChartText": "Edit Data", "PE.Views.DocumentHolder.editHyperlinkText": "Edit Hyperlink", "PE.Views.DocumentHolder.hyperlinkText": "Hyperlink", + "PE.Views.DocumentHolder.ignoreAllSpellText": "Abaikan Semua", + "PE.Views.DocumentHolder.ignoreSpellText": "Abaikan", "PE.Views.DocumentHolder.insertColumnLeftText": "Column Left", "PE.Views.DocumentHolder.insertColumnRightText": "Column Right", "PE.Views.DocumentHolder.insertColumnText": "Insert Column", @@ -236,11 +598,19 @@ "PE.Views.DocumentHolder.insertRowBelowText": "Row Below", "PE.Views.DocumentHolder.insertRowText": "Insert Row", "PE.Views.DocumentHolder.insertText": "Insert", + "PE.Views.DocumentHolder.langText": "Pilih Bahasa", + "PE.Views.DocumentHolder.leftText": "Kiri", + "PE.Views.DocumentHolder.loadSpellText": "Memuat varian...", "PE.Views.DocumentHolder.mergeCellsText": "Merge Cells", + "PE.Views.DocumentHolder.mniCustomTable": "Sisipkan Tabel Khusus", + "PE.Views.DocumentHolder.moreText": "Varian lain...", + "PE.Views.DocumentHolder.noSpellVariantsText": "Tidak ada varian", "PE.Views.DocumentHolder.originalSizeText": "Default Size", "PE.Views.DocumentHolder.removeHyperlinkText": "Remove Hyperlink", + "PE.Views.DocumentHolder.rightText": "Kanan", "PE.Views.DocumentHolder.rowText": "Row", "PE.Views.DocumentHolder.selectText": "Select", + "PE.Views.DocumentHolder.spellcheckText": "Periksa ejaan", "PE.Views.DocumentHolder.splitCellsText": "Split Cell...", "PE.Views.DocumentHolder.splitCellTitleText": "Split Cell", "PE.Views.DocumentHolder.tableText": "Table", @@ -249,10 +619,14 @@ "PE.Views.DocumentHolder.textArrangeForward": "Move Forward", "PE.Views.DocumentHolder.textArrangeFront": "Bring To Foreground", "PE.Views.DocumentHolder.textCopy": "Copy", + "PE.Views.DocumentHolder.textCropFill": "Isian", "PE.Views.DocumentHolder.textCut": "Cut", + "PE.Views.DocumentHolder.textFromFile": "Dari File", + "PE.Views.DocumentHolder.textFromUrl": "Dari URL", "PE.Views.DocumentHolder.textNextPage": "Next Slide", "PE.Views.DocumentHolder.textPaste": "Paste", "PE.Views.DocumentHolder.textPrevPage": "Previous Slide", + "PE.Views.DocumentHolder.textReplace": "Ganti Gambar", "PE.Views.DocumentHolder.textShapeAlignBottom": "Align Bottom", "PE.Views.DocumentHolder.textShapeAlignCenter": "Align Center", "PE.Views.DocumentHolder.textShapeAlignLeft": "Align Left", @@ -260,10 +634,12 @@ "PE.Views.DocumentHolder.textShapeAlignRight": "Align Right", "PE.Views.DocumentHolder.textShapeAlignTop": "Align Top", "PE.Views.DocumentHolder.textSlideSettings": "Slide Settings", + "PE.Views.DocumentHolder.textUndo": "Batalkan", "PE.Views.DocumentHolder.tipIsLocked": "This element is currently being edited by another user.", "PE.Views.DocumentHolder.txtAlign": "Align", "PE.Views.DocumentHolder.txtArrange": "Arrange", "PE.Views.DocumentHolder.txtBackground": "Background", + "PE.Views.DocumentHolder.txtBottom": "Bawah", "PE.Views.DocumentHolder.txtChangeLayout": "Change Layout", "PE.Views.DocumentHolder.txtDeleteSlide": "Delete Slide", "PE.Views.DocumentHolder.txtDistribHor": "Distribute Horizontally", @@ -275,6 +651,7 @@ "PE.Views.DocumentHolder.txtPreview": "Preview", "PE.Views.DocumentHolder.txtSelectAll": "Select All", "PE.Views.DocumentHolder.txtSlide": "Slide", + "PE.Views.DocumentHolder.txtTop": "Atas", "PE.Views.DocumentHolder.txtUngroup": "Ungroup", "PE.Views.DocumentHolder.vertAlignText": "Vertical Alignment", "PE.Views.DocumentPreview.goToSlideText": "Go to Slide", @@ -288,11 +665,13 @@ "PE.Views.DocumentPreview.txtPause": "Pause Presentation", "PE.Views.DocumentPreview.txtPlay": "Start Presentation", "PE.Views.DocumentPreview.txtPrev": "Previous Slide", + "PE.Views.DocumentPreview.txtReset": "Atur ulang", "PE.Views.FileMenu.btnAboutCaption": "About", "PE.Views.FileMenu.btnBackCaption": "Go to Documents", "PE.Views.FileMenu.btnCreateNewCaption": "Create New", "PE.Views.FileMenu.btnDownloadCaption": "Download as...", "PE.Views.FileMenu.btnHelpCaption": "Help...", + "PE.Views.FileMenu.btnHistoryCaption": "Riwayat versi", "PE.Views.FileMenu.btnInfoCaption": "Presentation Info...", "PE.Views.FileMenu.btnPrintCaption": "Print", "PE.Views.FileMenu.btnRecentFilesCaption": "Open Recent...", @@ -302,13 +681,22 @@ "PE.Views.FileMenu.btnSaveCaption": "Save", "PE.Views.FileMenu.btnSettingsCaption": "Advanced Settings...", "PE.Views.FileMenu.btnToEditCaption": "Edit Presentation", + "PE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Buat Baru", + "PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Terapkan", + "PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Tambahkan penulis", "PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Author", "PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Change access rights", + "PE.Views.FileMenuPanels.DocumentInfo.txtComment": "Komentar", + "PE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Dibuat", + "PE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Pemilik", "PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Location", "PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persons who have rights", + "PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subyek", "PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Presentation Title", + "PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Diunggah", "PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Change access rights", "PE.Views.FileMenuPanels.DocumentRights.txtRights": "Persons who have rights", + "PE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Peringatan", "PE.Views.FileMenuPanels.Settings.okButtonText": "Apply", "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Turn on alignment guides", "PE.Views.FileMenuPanels.Settings.strAutosave": "Turn on autosave", @@ -316,6 +704,7 @@ "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Other users will see your changes at once", "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "You will need to accept changes before you can see them", "PE.Views.FileMenuPanels.Settings.strFast": "Fast", + "PE.Views.FileMenuPanels.Settings.strFontRender": "Contoh Huruf", "PE.Views.FileMenuPanels.Settings.strInputMode": "Turn on hieroglyphs", "PE.Views.FileMenuPanels.Settings.strShowChanges": "Realtime Collaboration Changes", "PE.Views.FileMenuPanels.Settings.strStrict": "Strict", @@ -332,9 +721,18 @@ "PE.Views.FileMenuPanels.Settings.txtAll": "View All", "PE.Views.FileMenuPanels.Settings.txtCm": "Centimeter", "PE.Views.FileMenuPanels.Settings.txtFitSlide": "Fit Slide", + "PE.Views.FileMenuPanels.Settings.txtFitWidth": "Sesuaikan Lebar", "PE.Views.FileMenuPanels.Settings.txtInput": "Alternate Input", "PE.Views.FileMenuPanels.Settings.txtLast": "View Last", + "PE.Views.FileMenuPanels.Settings.txtMac": "sebagai OS X", + "PE.Views.FileMenuPanels.Settings.txtNative": "Asli", "PE.Views.FileMenuPanels.Settings.txtPt": "Point", + "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Periksa Ejaan", + "PE.Views.FileMenuPanels.Settings.txtWin": "sebagai Windows", + "PE.Views.HeaderFooterDialog.applyText": "Terapkan", + "PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Peringatan", + "PE.Views.HeaderFooterDialog.textLang": "Bahasa", + "PE.Views.HeaderFooterDialog.textPreview": "Pratinjau", "PE.Views.HyperlinkSettingsDialog.strDisplay": "Display", "PE.Views.HyperlinkSettingsDialog.strLinkTo": "Link To", "PE.Views.HyperlinkSettingsDialog.textDefault": "Selected text fragment", @@ -353,6 +751,8 @@ "PE.Views.HyperlinkSettingsDialog.txtPrev": "Previous Slide", "PE.Views.HyperlinkSettingsDialog.txtSlide": "Slide", "PE.Views.ImageSettings.textAdvanced": "Show advanced settings", + "PE.Views.ImageSettings.textCropFill": "Isian", + "PE.Views.ImageSettings.textEdit": "Sunting", "PE.Views.ImageSettings.textFromFile": "From File", "PE.Views.ImageSettings.textFromUrl": "From URL", "PE.Views.ImageSettings.textHeight": "Height", @@ -360,9 +760,12 @@ "PE.Views.ImageSettings.textOriginalSize": "Default Size", "PE.Views.ImageSettings.textSize": "Size", "PE.Views.ImageSettings.textWidth": "Width", + "PE.Views.ImageSettingsAdvanced.textAltDescription": "Deskripsi", + "PE.Views.ImageSettingsAdvanced.textAltTitle": "Judul", "PE.Views.ImageSettingsAdvanced.textHeight": "Height", "PE.Views.ImageSettingsAdvanced.textKeepRatio": "Constant Proportions", "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Default Size", + "PE.Views.ImageSettingsAdvanced.textPlacement": "Penempatan", "PE.Views.ImageSettingsAdvanced.textPosition": "Position", "PE.Views.ImageSettingsAdvanced.textSize": "Size", "PE.Views.ImageSettingsAdvanced.textTitle": "Image - Advanced Settings", @@ -387,19 +790,28 @@ "PE.Views.ParagraphSettingsAdvanced.noTabs": "The specified tabs will appear in this field", "PE.Views.ParagraphSettingsAdvanced.strAllCaps": "All caps", "PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double strikethrough", + "PE.Views.ParagraphSettingsAdvanced.strIndent": "Indentasi", "PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Left", + "PE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Spasi Antar Baris", "PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Right", + "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Setelah", + "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Sebelum", "PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Font", "PE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Indents & Placement", "PE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Small caps", + "PE.Views.ParagraphSettingsAdvanced.strSpacing": "Spasi", "PE.Views.ParagraphSettingsAdvanced.strStrike": "Strikethrough", "PE.Views.ParagraphSettingsAdvanced.strSubscript": "Subscript", "PE.Views.ParagraphSettingsAdvanced.strSuperscript": "Superscript", "PE.Views.ParagraphSettingsAdvanced.strTabs": "Tab", "PE.Views.ParagraphSettingsAdvanced.textAlign": "Alignment", + "PE.Views.ParagraphSettingsAdvanced.textAuto": "Banyak", "PE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Character Spacing", "PE.Views.ParagraphSettingsAdvanced.textDefault": "Default Tab", "PE.Views.ParagraphSettingsAdvanced.textEffects": "Effects", + "PE.Views.ParagraphSettingsAdvanced.textExact": "Persis", + "PE.Views.ParagraphSettingsAdvanced.textFirstLine": "Baris Pertama", + "PE.Views.ParagraphSettingsAdvanced.textJustified": "Rata Kiri-Kanan", "PE.Views.ParagraphSettingsAdvanced.textRemove": "Remove", "PE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Remove All", "PE.Views.ParagraphSettingsAdvanced.textSet": "Specify", @@ -408,6 +820,7 @@ "PE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tab Position", "PE.Views.ParagraphSettingsAdvanced.textTabRight": "Right", "PE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraph - Advanced Settings", + "PE.Views.ParagraphSettingsAdvanced.txtAutoText": "Otomatis", "PE.Views.RightMenu.txtChartSettings": "Chart Settings", "PE.Views.RightMenu.txtImageSettings": "Image Settings", "PE.Views.RightMenu.txtParagraphSettings": "Text Settings", @@ -424,6 +837,7 @@ "PE.Views.ShapeSettings.strSize": "Size", "PE.Views.ShapeSettings.strStroke": "Stroke", "PE.Views.ShapeSettings.strTransparency": "Opacity", + "PE.Views.ShapeSettings.strType": "Tipe", "PE.Views.ShapeSettings.textAdvanced": "Show advanced settings", "PE.Views.ShapeSettings.textBorderSizeErr": "The entered value is incorrect.
Please enter a value between 0 pt and 1584 pt.", "PE.Views.ShapeSettings.textColor": "Color Fill", @@ -437,6 +851,7 @@ "PE.Views.ShapeSettings.textLinear": "Linear", "PE.Views.ShapeSettings.textNoFill": "No Fill", "PE.Views.ShapeSettings.textPatternFill": "Pattern", + "PE.Views.ShapeSettings.textPosition": "Posisi", "PE.Views.ShapeSettings.textRadial": "Radial", "PE.Views.ShapeSettings.textSelectTexture": "Select", "PE.Views.ShapeSettings.textStretch": "Stretch", @@ -455,13 +870,17 @@ "PE.Views.ShapeSettings.txtNoBorders": "No Line", "PE.Views.ShapeSettings.txtPapyrus": "Papyrus", "PE.Views.ShapeSettings.txtWood": "Wood", + "PE.Views.ShapeSettingsAdvanced.strColumns": "Kolom", "PE.Views.ShapeSettingsAdvanced.strMargins": "Text Padding", + "PE.Views.ShapeSettingsAdvanced.textAltDescription": "Deskripsi", + "PE.Views.ShapeSettingsAdvanced.textAltTitle": "Judul", "PE.Views.ShapeSettingsAdvanced.textArrows": "Arrows", "PE.Views.ShapeSettingsAdvanced.textBeginSize": "Begin Size", "PE.Views.ShapeSettingsAdvanced.textBeginStyle": "Begin Style", "PE.Views.ShapeSettingsAdvanced.textBevel": "Bevel", "PE.Views.ShapeSettingsAdvanced.textBottom": "Bottom", "PE.Views.ShapeSettingsAdvanced.textCapType": "Cap Type", + "PE.Views.ShapeSettingsAdvanced.textColNumber": "Jumlah Kolom", "PE.Views.ShapeSettingsAdvanced.textEndSize": "End Size", "PE.Views.ShapeSettingsAdvanced.textEndStyle": "End Style", "PE.Views.ShapeSettingsAdvanced.textFlat": "Flat", @@ -480,11 +899,13 @@ "PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Weights & Arrows", "PE.Views.ShapeSettingsAdvanced.textWidth": "Width", "PE.Views.ShapeSettingsAdvanced.txtNone": "None", + "PE.Views.SignatureSettings.notcriticalErrorTitle": "Peringatan", "PE.Views.SlideSettings.strBackground": "Background color", "PE.Views.SlideSettings.strColor": "Color", "PE.Views.SlideSettings.strFill": "Fill", "PE.Views.SlideSettings.strForeground": "Foreground color", "PE.Views.SlideSettings.strPattern": "Pattern", + "PE.Views.SlideSettings.strTransparency": "Opasitas", "PE.Views.SlideSettings.textAdvanced": "Show advanced settings", "PE.Views.SlideSettings.textColor": "Color Fill", "PE.Views.SlideSettings.textDirection": "Direction", @@ -497,6 +918,7 @@ "PE.Views.SlideSettings.textLinear": "Linear", "PE.Views.SlideSettings.textNoFill": "No Fill", "PE.Views.SlideSettings.textPatternFill": "Pattern", + "PE.Views.SlideSettings.textPosition": "Posisi", "PE.Views.SlideSettings.textRadial": "Radial", "PE.Views.SlideSettings.textReset": "Reset Changes", "PE.Views.SlideSettings.textSelectTexture": "Select", @@ -536,6 +958,7 @@ "PE.Views.Statusbar.tipFitPage": "Fit Slide", "PE.Views.Statusbar.tipFitWidth": "Fit Width", "PE.Views.Statusbar.tipPreview": "Start Preview", + "PE.Views.Statusbar.tipSetLang": "Atur Bahasa Teks", "PE.Views.Statusbar.tipZoomFactor": "Magnification", "PE.Views.Statusbar.tipZoomIn": "Zoom In", "PE.Views.Statusbar.tipZoomOut": "Zoom Out", @@ -564,11 +987,13 @@ "PE.Views.TableSettings.textEmptyTemplate": "No templates", "PE.Views.TableSettings.textFirst": "First", "PE.Views.TableSettings.textHeader": "Header", + "PE.Views.TableSettings.textHeight": "Ketinggian", "PE.Views.TableSettings.textLast": "Last", "PE.Views.TableSettings.textRows": "Rows", "PE.Views.TableSettings.textSelectBorders": "Select borders you want to change applying style chosen above", "PE.Views.TableSettings.textTemplate": "Select From Template", "PE.Views.TableSettings.textTotal": "Total", + "PE.Views.TableSettings.textWidth": "Lebar", "PE.Views.TableSettings.tipAll": "Set Outer Border and All Inner Lines", "PE.Views.TableSettings.tipBottom": "Set Outer Bottom Border Only", "PE.Views.TableSettings.tipInner": "Set Inner Lines Only", @@ -580,6 +1005,8 @@ "PE.Views.TableSettings.tipRight": "Set Outer Right Border Only", "PE.Views.TableSettings.tipTop": "Set Outer Top Border Only", "PE.Views.TableSettings.txtNoBorders": "No borders", + "PE.Views.TableSettingsAdvanced.textAltDescription": "Deskripsi", + "PE.Views.TableSettingsAdvanced.textAltTitle": "Judul", "PE.Views.TableSettingsAdvanced.textBottom": "Bottom", "PE.Views.TableSettingsAdvanced.textCheckMargins": "Use default margins", "PE.Views.TableSettingsAdvanced.textDefaultMargins": "Default Margins", @@ -597,6 +1024,7 @@ "PE.Views.TextArtSettings.strSize": "Size", "PE.Views.TextArtSettings.strStroke": "Stroke", "PE.Views.TextArtSettings.strTransparency": "Opacity", + "PE.Views.TextArtSettings.strType": "Tipe", "PE.Views.TextArtSettings.textBorderSizeErr": "The entered value is incorrect.
Please enter a value between 0 pt and 1584 pt.", "PE.Views.TextArtSettings.textColor": "Color Fill", "PE.Views.TextArtSettings.textDirection": "Direction", @@ -609,6 +1037,7 @@ "PE.Views.TextArtSettings.textLinear": "Linear", "PE.Views.TextArtSettings.textNoFill": "No Fill", "PE.Views.TextArtSettings.textPatternFill": "Pattern", + "PE.Views.TextArtSettings.textPosition": "Posisi", "PE.Views.TextArtSettings.textRadial": "Radial", "PE.Views.TextArtSettings.textSelectTexture": "Select", "PE.Views.TextArtSettings.textStretch": "Stretch", @@ -629,12 +1058,21 @@ "PE.Views.TextArtSettings.txtNoBorders": "No Line", "PE.Views.TextArtSettings.txtPapyrus": "Papyrus", "PE.Views.TextArtSettings.txtWood": "Wood", + "PE.Views.Toolbar.capBtnAddComment": "Tambahkan komentar", + "PE.Views.Toolbar.capBtnComment": "Komentar", + "PE.Views.Toolbar.capInsertChart": "Bagan", + "PE.Views.Toolbar.capInsertImage": "Gambar", + "PE.Views.Toolbar.capInsertTable": "Tabel", + "PE.Views.Toolbar.capTabFile": "File", + "PE.Views.Toolbar.capTabHome": "Halaman Depan", + "PE.Views.Toolbar.capTabInsert": "Sisipkan", "PE.Views.Toolbar.mniCustomTable": "Insert Custom Table", "PE.Views.Toolbar.mniImageFromFile": "Picture from File", "PE.Views.Toolbar.mniImageFromUrl": "Picture from URL", "PE.Views.Toolbar.mniSlideAdvanced": "Advanced Settings", "PE.Views.Toolbar.mniSlideStandard": "Standard (4:3)", "PE.Views.Toolbar.mniSlideWide": "Widescreen (16:9)", + "PE.Views.Toolbar.strMenuNoFill": "Tidak ada Isian", "PE.Views.Toolbar.textAlignBottom": "Align text to the bottom", "PE.Views.Toolbar.textAlignCenter": "Center text", "PE.Views.Toolbar.textAlignJust": "Justify", @@ -657,22 +1095,31 @@ "PE.Views.Toolbar.textStrikeout": "Strikeout", "PE.Views.Toolbar.textSubscript": "Subscript", "PE.Views.Toolbar.textSuperscript": "Superscript", + "PE.Views.Toolbar.textTabFile": "File", + "PE.Views.Toolbar.textTabHome": "Halaman Depan", + "PE.Views.Toolbar.textTabInsert": "Sisipkan", + "PE.Views.Toolbar.textTabView": "Lihat", "PE.Views.Toolbar.textTitleError": "Error", "PE.Views.Toolbar.textUnderline": "Underline", "PE.Views.Toolbar.tipAddSlide": "Add Slide", "PE.Views.Toolbar.tipBack": "Back", + "PE.Views.Toolbar.tipChangeChart": "Ubah Tipe Bagan", "PE.Views.Toolbar.tipChangeSlide": "Change Slide Layout", "PE.Views.Toolbar.tipClearStyle": "Clear Style", "PE.Views.Toolbar.tipColorSchemas": "Change Color Scheme", "PE.Views.Toolbar.tipCopy": "Copy", "PE.Views.Toolbar.tipCopyStyle": "Copy Style", + "PE.Views.Toolbar.tipDecFont": "Perkecil Ukuran Huruf", "PE.Views.Toolbar.tipDecPrLeft": "Decrease Indent", "PE.Views.Toolbar.tipFontColor": "Font color", "PE.Views.Toolbar.tipFontName": "Font Name", "PE.Views.Toolbar.tipFontSize": "Font Size", "PE.Views.Toolbar.tipHAligh": "Horizontal Align", + "PE.Views.Toolbar.tipHighlightColor": "Warna Sorot", + "PE.Views.Toolbar.tipIncFont": "Perbesar Ukuran Huruf", "PE.Views.Toolbar.tipIncPrLeft": "Increase Indent", "PE.Views.Toolbar.tipInsertChart": "Insert Chart", + "PE.Views.Toolbar.tipInsertEquation": "Masukkan Persamaan", "PE.Views.Toolbar.tipInsertHyperlink": "Add Hyperlink", "PE.Views.Toolbar.tipInsertImage": "Insert Picture", "PE.Views.Toolbar.tipInsertShape": "Insert Autoshape", @@ -718,5 +1165,17 @@ "PE.Views.Toolbar.txtScheme7": "Equity", "PE.Views.Toolbar.txtScheme8": "Flow", "PE.Views.Toolbar.txtScheme9": "Foundry", - "PE.Views.Toolbar.txtUngroup": "Ungroup" + "PE.Views.Toolbar.txtUngroup": "Ungroup", + "PE.Views.Transitions.textBottom": "Bawah", + "PE.Views.Transitions.textLeft": "Kiri", + "PE.Views.Transitions.textNone": "Tidak ada", + "PE.Views.Transitions.textRight": "Kanan", + "PE.Views.Transitions.textTop": "Atas", + "PE.Views.Transitions.textZoom": "Perbesar", + "PE.Views.Transitions.textZoomIn": "Perbesar", + "PE.Views.Transitions.textZoomOut": "Perkecil", + "PE.Views.Transitions.txtParameters": "Parameter", + "PE.Views.Transitions.txtPreview": "Pratinjau", + "PE.Views.ViewTab.textFitToWidth": "Sesuaikan Lebar", + "PE.Views.ViewTab.textZoom": "Perbesar" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ja.json b/apps/presentationeditor/main/locale/ja.json index fc0938b15..a8fee5cf9 100644 --- a/apps/presentationeditor/main/locale/ja.json +++ b/apps/presentationeditor/main/locale/ja.json @@ -47,13 +47,24 @@ "Common.define.chartData.textScatterSmoothMarker": "マーカーと平滑線付き散布図", "Common.define.chartData.textStock": "株価チャート", "Common.define.chartData.textSurface": "表面", + "Common.define.effectData.textCircle": "円", + "Common.define.effectData.textDown": "下", "Common.define.effectData.textFade": "フェード", + "Common.define.effectData.textHorizontal": "水平", "Common.define.effectData.textLeft": "左", "Common.define.effectData.textLeftDown": "左下", "Common.define.effectData.textLeftUp": "左上", "Common.define.effectData.textRight": "右", "Common.define.effectData.textRightDown": "右下", "Common.define.effectData.textRightUp": "右上", + "Common.define.effectData.textSpoke1": "1スポーク", + "Common.define.effectData.textSpoke2": "2スポーク", + "Common.define.effectData.textSpoke3": "3スポーク", + "Common.define.effectData.textSpoke4": "4スポーク", + "Common.define.effectData.textSpoke8": "8スポーク", + "Common.define.effectData.textUp": "上", + "Common.define.effectData.textWipe": "ワイプ", + "Common.define.effectData.textZigzag": "ジグザグ", "Common.define.effectData.textZoom": "ズーム", "Common.Translation.warnFileLocked": "文書が他のアプリで編集されています。編集を続けて、コピーとして保存できます。", "Common.Translation.warnFileLockedBtnEdit": "コピーを作成", @@ -390,7 +401,7 @@ "PE.Controllers.LeftMenu.requestEditRightsText": "アクセス権の編集の要求中...", "PE.Controllers.LeftMenu.textLoadHistory": "バージョン履歴の読み込み中...", "PE.Controllers.LeftMenu.textNoTextFound": "検索データが見つかりませんでした。他の検索設定を選択してください。", - "PE.Controllers.LeftMenu.textReplaceSkipped": "置換が行われました。スキップされた発生回数は{0}です。", + "PE.Controllers.LeftMenu.textReplaceSkipped": "置換が完了しました。{0}つスキップされました。", "PE.Controllers.LeftMenu.textReplaceSuccess": "検索が行われました。変更された発生回数は{0}です。", "PE.Controllers.LeftMenu.txtUntitled": "タイトルなし", "PE.Controllers.Main.applyChangesTextText": "データを読み込んでいます...", @@ -1912,6 +1923,7 @@ "PE.Views.Toolbar.textStrikeout": "取り消し線", "PE.Views.Toolbar.textSubscript": "下付き", "PE.Views.Toolbar.textSuperscript": "上付き文字", + "PE.Views.Toolbar.textTabAnimation": "アニメーション", "PE.Views.Toolbar.textTabCollaboration": "共同編集", "PE.Views.Toolbar.textTabFile": "ファイル", "PE.Views.Toolbar.textTabHome": "ホーム", @@ -2034,5 +2046,6 @@ "PE.Views.Transitions.txtParameters": "パラメーター", "PE.Views.Transitions.txtPreview": "プレビュー", "PE.Views.Transitions.txtSec": "秒", + "PE.Views.ViewTab.textAlwaysShowToolbar": "ツールバーを常に表示する", "PE.Views.ViewTab.textZoom": "ズーム" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/embed/locale/be.json b/apps/spreadsheeteditor/embed/locale/be.json index 97b6f0a85..80a4b9f80 100644 --- a/apps/spreadsheeteditor/embed/locale/be.json +++ b/apps/spreadsheeteditor/embed/locale/be.json @@ -14,6 +14,8 @@ "SSE.ApplicationController.errorFilePassProtect": "Файл абаронены паролем, яго немагчыма адкрыць.", "SSE.ApplicationController.errorFileSizeExceed": "Памер файла перавышае ліміт, вызначаны для вашага сервера.
Звярніцеся да адміністратара сервера дакументаў за дадатковымі звесткамі.", "SSE.ApplicationController.errorForceSave": "Падчас захавання файла адбылася памылка. Калі ласка, выкарыстайце параметр \"Спампаваць як\", каб захаваць файл на цвёрдым дыску камп’ютара, альбо паспрабуйце яшчэ раз пазней.", + "SSE.ApplicationController.errorLoadingFont": "Шрыфты не загрузіліся.
Звярніцеся да адміністратара сервера дакументаў.", + "SSE.ApplicationController.errorTokenExpire": "Тэрмін дзеяння токена бяспекі дакумента сышоў.
Калі ласка, звярніцеся да адміністратара сервера дакументаў.", "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Злучэнне з інтэрнэтам было адноўлена, і версія файла змянілася.
Перш чым працягнуць працу, неабходна спампаваць файл альбо скапіяваць яго змесціва, каб захаваць даныя, а пасля перазагрузіць старонку.", "SSE.ApplicationController.errorUserDrop": "На дадзены момант файл недаступны.", "SSE.ApplicationController.notcriticalErrorTitle": "Увага", @@ -29,6 +31,7 @@ "SSE.ApplicationController.waitText": "Калі ласка, пачакайце...", "SSE.ApplicationView.txtDownload": "Спампаваць", "SSE.ApplicationView.txtEmbed": "Убудаваць", + "SSE.ApplicationView.txtFileLocation": "Перайсці да дакументаў", "SSE.ApplicationView.txtFullScreen": "Поўнаэкранны рэжым", "SSE.ApplicationView.txtPrint": "Друк", "SSE.ApplicationView.txtShare": "Падзяліцца" diff --git a/apps/spreadsheeteditor/embed/locale/es.json b/apps/spreadsheeteditor/embed/locale/es.json index a8f4405a0..775c9c64e 100644 --- a/apps/spreadsheeteditor/embed/locale/es.json +++ b/apps/spreadsheeteditor/embed/locale/es.json @@ -1,38 +1,38 @@ { "common.view.modals.txtCopy": "Copiar al portapapeles", - "common.view.modals.txtEmbed": "Incorporar", + "common.view.modals.txtEmbed": "Insertar", "common.view.modals.txtHeight": "Altura", "common.view.modals.txtShare": "Compartir enlace", "common.view.modals.txtWidth": "Ancho", - "SSE.ApplicationController.convertationErrorText": "Fallo de conversión.", - "SSE.ApplicationController.convertationTimeoutText": "Límite de tiempo de conversión está superado.", + "SSE.ApplicationController.convertationErrorText": "Se ha producido un error en la conversión.", + "SSE.ApplicationController.convertationTimeoutText": "Se ha superado el tiempo de conversión.", "SSE.ApplicationController.criticalErrorTitle": "Error", - "SSE.ApplicationController.downloadErrorText": "Fallo en descarga.", + "SSE.ApplicationController.downloadErrorText": "Se ha producido un error en la descarga", "SSE.ApplicationController.downloadTextText": "Descargando hoja de cálculo...", - "SSE.ApplicationController.errorAccessDeny": "Usted no tiene permisos para realizar la acción que está intentando hacer.
Por favor, contacte con su Administrador del Servidor de Documentos.", + "SSE.ApplicationController.errorAccessDeny": "Está intentando realizar una acción para la que no tiene permiso.
Contacte con el administrador del servidor de documentos.", "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.errorTokenExpire": "El token de seguridad del documento ha expirado.
Por favor, póngase en contacto con el administrador del Servidor de Documentos.", - "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", + "SSE.ApplicationController.errorFilePassProtect": "El archivo está protegido por una contraseña y no se puede abrir.", + "SSE.ApplicationController.errorFileSizeExceed": "El tamaño del archivo supera el límiete establecido por su servidor.
Contacte con el administrador del servidor de documentos para obtener más detalles.", + "SSE.ApplicationController.errorForceSave": "Se ha producido un error al guardar el archivo. Utilice la opción \"Descargar como\" para guardar el archivo en el disco duro de su ordenador o inténtelo más tarde.", + "SSE.ApplicationController.errorLoadingFont": "Los tipos de letra no están cargados.
Contacte con el administrador del servidor de documentos.", + "SSE.ApplicationController.errorTokenExpire": "El token de seguridad del documento ha expirado.
Contacte con el administrador del servidor de documentos", + "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Se ha restablecido la conexión a Internet y se ha cambiado la versión del archivo.
Para poder seguir trabajando, es necesario descargar el archivo o copiar su contenido para asegurarse de que no se ha perdido nada, y luego volver a cargar esta página.", + "SSE.ApplicationController.errorUserDrop": "No se puede acceder al archivo.", + "SSE.ApplicationController.notcriticalErrorTitle": "Advertencia", "SSE.ApplicationController.openErrorText": "Se ha producido un error al abrir el archivo. ", - "SSE.ApplicationController.scriptLoadError": "La conexión a Internet es demasiado lenta, no se podía cargar algunos componentes. Por favor, recargue la página.", + "SSE.ApplicationController.scriptLoadError": "La conexión a Internet es demasiado lenta, algunos de los componentes no se han podido cargar. Recargue la página.", "SSE.ApplicationController.textAnonymous": "Anónimo", "SSE.ApplicationController.textGuest": "Invitado", "SSE.ApplicationController.textLoadingDocument": "Cargando hoja de cálculo", "SSE.ApplicationController.textOf": "de", "SSE.ApplicationController.txtClose": "Cerrar", "SSE.ApplicationController.unknownErrorText": "Error desconocido.", - "SSE.ApplicationController.unsupportedBrowserErrorText": "Su navegador no está soportado.", - "SSE.ApplicationController.waitText": "Por favor, espere...", + "SSE.ApplicationController.unsupportedBrowserErrorText": "Su navegador no es compatible.", + "SSE.ApplicationController.waitText": "Espere...", "SSE.ApplicationView.txtDownload": "Descargar", - "SSE.ApplicationView.txtEmbed": "Incorporar", + "SSE.ApplicationView.txtEmbed": "Insertar", "SSE.ApplicationView.txtFileLocation": "Abrir ubicación del archivo", - "SSE.ApplicationView.txtFullScreen": "Pantalla Completa", + "SSE.ApplicationView.txtFullScreen": "Pantalla completa", "SSE.ApplicationView.txtPrint": "Imprimir", "SSE.ApplicationView.txtShare": "Compartir" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/be.json b/apps/spreadsheeteditor/main/locale/be.json index 253ad5464..80a167977 100644 --- a/apps/spreadsheeteditor/main/locale/be.json +++ b/apps/spreadsheeteditor/main/locale/be.json @@ -134,7 +134,7 @@ "Common.Views.Header.textBack": "Перайсці да дакументаў", "Common.Views.Header.textCompactView": "Схаваць панэль прылад", "Common.Views.Header.textHideLines": "Схаваць лінейкі", - "Common.Views.Header.textHideStatusBar": "Схаваць панэль стану", + "Common.Views.Header.textHideStatusBar": "Аб'яднаць панэлі радкоў і стану", "Common.Views.Header.textSaveBegin": "Захаванне…", "Common.Views.Header.textSaveChanged": "Зменена", "Common.Views.Header.textSaveEnd": "Усе змены захаваныя", @@ -637,7 +637,7 @@ "SSE.Controllers.Main.textNoLicenseTitle": "Ліцэнзійнае абмежаванне", "SSE.Controllers.Main.textPaidFeature": "Платная функцыя", "SSE.Controllers.Main.textPleaseWait": "Аперацыя можа заняць больш часу. Калі ласка, пачакайце… ", - "SSE.Controllers.Main.textRemember": "Запомніць мой выбар", + "SSE.Controllers.Main.textRemember": "Запомніць мой выбар для ўсіх файлаў", "SSE.Controllers.Main.textShape": "Фігура", "SSE.Controllers.Main.textStrict": "Строгі рэжым", "SSE.Controllers.Main.textTryUndoRedo": "Функцыі скасавання і паўтору дзеянняў выключаныя ў хуткім рэжыме сумеснага рэдагавання.
Націсніце кнопку \"Строгі рэжым\", каб пераключыцца ў строгі рэжым сумеснага рэдагавання, каб рэдагаваць файл без іншых карыстальнікаў і адпраўляць змены толькі пасля іх захавання. Пераключацца паміж рэжымамі сумеснага рэдагавання можна з дапамогай дадатковых налад рэдактара.", @@ -1725,7 +1725,7 @@ "SSE.Views.DocumentHolder.txtSortFontColor": "Спачатку ячэйкі з вылучаным шрыфтам", "SSE.Views.DocumentHolder.txtSparklines": "Спарклайны", "SSE.Views.DocumentHolder.txtText": "Тэкст", - "SSE.Views.DocumentHolder.txtTextAdvanced": "Дадатковыя налады тэксту", + "SSE.Views.DocumentHolder.txtTextAdvanced": "Дадатковыя налады абзаца", "SSE.Views.DocumentHolder.txtTime": "Час", "SSE.Views.DocumentHolder.txtUngroup": "Разгрупаваць", "SSE.Views.DocumentHolder.txtWidth": "Шырыня", @@ -1802,7 +1802,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Дзесятковы падзяляльнік", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Хуткі", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Хінтынг шрыфтоў", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Заўсёды захоўваць на серверы (інакш захоўваць на серверы падчас закрыцця дакумента)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": " Дадаваць версію ў сховішча пасля націскання кнопкі \"Захаваць\" або \"Ctrl+S\"", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Мова формул", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Прыклад: СУМ; МІН; МАКС; ПАДЛІК", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Уключыць адлюстраванне каментароў у тэксце", @@ -1826,7 +1826,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoRecover": "Аўтаматычнае аднаўленне", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave": "Аўтазахаванне", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "Выключана", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Захаваць на серверы", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Захаванне прамежкавых версій", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Кожную хвіліну", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Стыль спасылак", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "Прадвызначаны рэжым кэшу", @@ -1861,7 +1861,7 @@ "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Абараніць табліцу", "SSE.Views.FileMenuPanels.ProtectDoc.strSignature": "Пры дапамозе подпісу", "SSE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Рэдагаваць табліцу", - "SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Пры рэдагаванні табліцы выдаляцца подпісы.
Сапраўды хочаце працягнуць? ", + "SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Пры рэдагаванні табліцы выдаляцца подпісы.
Працягнуць?", "SSE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Гэтая электронная табліца абароненая паролем", "SSE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "Гэтую табліцу неабходна падпісаць.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "У табліцу былі дададзеныя дзейныя подпісы. Табліца абароненая ад рэдагавання.", @@ -1975,8 +1975,8 @@ "SSE.Views.HeaderFooterDialog.textEven": "Цотная старонка", "SSE.Views.HeaderFooterDialog.textFileName": "Назва файла", "SSE.Views.HeaderFooterDialog.textFirst": "Першая старонка", - "SSE.Views.HeaderFooterDialog.textFooter": "Ніжні калантытул", - "SSE.Views.HeaderFooterDialog.textHeader": "Верхні калантытул", + "SSE.Views.HeaderFooterDialog.textFooter": "Ніжні калонтытул", + "SSE.Views.HeaderFooterDialog.textHeader": "Верхні калонтытул", "SSE.Views.HeaderFooterDialog.textInsert": "Уставіць", "SSE.Views.HeaderFooterDialog.textItalic": "Курсіў", "SSE.Views.HeaderFooterDialog.textLeft": "Злева", @@ -1993,7 +1993,7 @@ "SSE.Views.HeaderFooterDialog.textSubscript": "Падрадковыя", "SSE.Views.HeaderFooterDialog.textSuperscript": "Надрадковыя", "SSE.Views.HeaderFooterDialog.textTime": "Час", - "SSE.Views.HeaderFooterDialog.textTitle": "Налады калантытулаў", + "SSE.Views.HeaderFooterDialog.textTitle": "Налады калонтытулаў", "SSE.Views.HeaderFooterDialog.textUnderline": "Падкрэслены", "SSE.Views.HeaderFooterDialog.tipFontName": "Шрыфт", "SSE.Views.HeaderFooterDialog.tipFontSize": "Памер шрыфту", @@ -2333,7 +2333,7 @@ "SSE.Views.PrintWithPreview.txtFitCols": "Умясціць усе слупкі на адной старонцы", "SSE.Views.PrintWithPreview.txtFitPage": "Умясціць аркуш на адной старонцы", "SSE.Views.PrintWithPreview.txtFitRows": "Умясціць усе радкі на адной старонцы", - "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Налады калантытулаў", + "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Налады калонтытулаў", "SSE.Views.PrintWithPreview.txtIgnore": "Ігнараваць вобласць друку", "SSE.Views.PrintWithPreview.txtLandscape": "Альбомная", "SSE.Views.PrintWithPreview.txtLeft": "Злева", @@ -2354,7 +2354,7 @@ "SSE.Views.RightMenu.txtCellSettings": "Налады ячэйкі", "SSE.Views.RightMenu.txtChartSettings": "Налады дыяграмы", "SSE.Views.RightMenu.txtImageSettings": "Налады выявы", - "SSE.Views.RightMenu.txtParagraphSettings": "Налады тэксту", + "SSE.Views.RightMenu.txtParagraphSettings": "Налады абзаца", "SSE.Views.RightMenu.txtPivotSettings": "Налады зводнай табліцы", "SSE.Views.RightMenu.txtSettings": "Асноўныя налады", "SSE.Views.RightMenu.txtShapeSettings": "Налады фігуры", @@ -2486,7 +2486,7 @@ "SSE.Views.SignatureSettings.strSigner": "Падпісальнік", "SSE.Views.SignatureSettings.strValid": "Дзейныя подпісы", "SSE.Views.SignatureSettings.txtContinueEditing": "Рэдагаваць усё роўна", - "SSE.Views.SignatureSettings.txtEditWarning": "Пры рэдагаванні табліцы выдаляцца подпісы.
Сапраўды хочаце працягнуць? ", + "SSE.Views.SignatureSettings.txtEditWarning": "Пры рэдагаванні табліцы выдаляцца подпісы.
Працягнуць?", "SSE.Views.SignatureSettings.txtRequestedSignatures": "Гэтую табліцу неабходна падпісаць.", "SSE.Views.SignatureSettings.txtSigned": "У табліцу былі дададзеныя дзейныя подпісы. Табліца абароненая ад рэдагавання.", "SSE.Views.SignatureSettings.txtSignedInvalid": "Некаторыя з лічбавых подпісаў электроннай табліцы хібныя альбо іх немагчыма праверыць. Табліца абароненая ад рэдагавання.", @@ -2634,7 +2634,7 @@ "SSE.Views.Spellcheck.txtSpelling": "Правапіс", "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Скапіяваць у канец)", "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Перамясціць у канец)", - "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Скапіяваць перад аркушам", + "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Уставіць перад аркушам", "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Перамясціць перад аркушам", "SSE.Views.Statusbar.filteredRecordsText": "Адфільтравана {0} з {1} запісаў", "SSE.Views.Statusbar.filteredText": "Рэжым фільтрацыі", @@ -2772,7 +2772,7 @@ "SSE.Views.Toolbar.capBtnAddComment": "Дадаць каментар", "SSE.Views.Toolbar.capBtnColorSchemas": "Каляровая схема", "SSE.Views.Toolbar.capBtnComment": "Каментар", - "SSE.Views.Toolbar.capBtnInsHeader": "Калантытулы", + "SSE.Views.Toolbar.capBtnInsHeader": "Калонтытулы", "SSE.Views.Toolbar.capBtnInsSlicer": "Зводка", "SSE.Views.Toolbar.capBtnInsSymbol": "Сімвал", "SSE.Views.Toolbar.capBtnMargins": "Палі", @@ -2899,7 +2899,7 @@ "SSE.Views.Toolbar.tipEditChart": "Рэдагаваць дыяграму", "SSE.Views.Toolbar.tipEditChartData": "Абраць даныя", "SSE.Views.Toolbar.tipEditChartType": "Змяніць тып дыяграмы", - "SSE.Views.Toolbar.tipEditHeader": "Рэдагаваць калантытулы", + "SSE.Views.Toolbar.tipEditHeader": "Рэдагаваць калонтытулы", "SSE.Views.Toolbar.tipFontColor": "Колер шрыфту", "SSE.Views.Toolbar.tipFontName": "Шрыфт", "SSE.Views.Toolbar.tipFontSize": "Памер шрыфту", @@ -2925,7 +2925,7 @@ "SSE.Views.Toolbar.tipPageOrient": "Арыентацыя старонкі", "SSE.Views.Toolbar.tipPageSize": "Памер старонкі", "SSE.Views.Toolbar.tipPaste": "Уставіць", - "SSE.Views.Toolbar.tipPrColor": "Колер фону", + "SSE.Views.Toolbar.tipPrColor": "Колер запаўнення", "SSE.Views.Toolbar.tipPrint": "Друк", "SSE.Views.Toolbar.tipPrintArea": "Вобласць друку", "SSE.Views.Toolbar.tipPrintTitles": "Друкаваць загалоўкі", diff --git a/apps/spreadsheeteditor/main/locale/cs.json b/apps/spreadsheeteditor/main/locale/cs.json index 52f3c3250..8a1194bc3 100644 --- a/apps/spreadsheeteditor/main/locale/cs.json +++ b/apps/spreadsheeteditor/main/locale/cs.json @@ -480,6 +480,7 @@ "SSE.Controllers.DocumentHolder.txtAddVer": "Přidat svislou čáru", "SSE.Controllers.DocumentHolder.txtAlignToChar": "Zarovnat vůči znaku", "SSE.Controllers.DocumentHolder.txtAll": "(vše)", + "SSE.Controllers.DocumentHolder.txtAllTableHint": "Získá veškerý obsah tabulky, nebo definovaných sloupců tabulky tj. hlavičky, data a celkový počet řádků", "SSE.Controllers.DocumentHolder.txtAnd": "a", "SSE.Controllers.DocumentHolder.txtBegins": "Začíná na", "SSE.Controllers.DocumentHolder.txtBelowAve": "Podprůměrné", @@ -489,6 +490,7 @@ "SSE.Controllers.DocumentHolder.txtColumn": "Sloupec", "SSE.Controllers.DocumentHolder.txtColumnAlign": "Zarovnání sloupce", "SSE.Controllers.DocumentHolder.txtContains": "Obsahuje", + "SSE.Controllers.DocumentHolder.txtDataTableHint": "Získá hodnotu buněk tabulky, nebo definovaných sloupců tabulky", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Snížit velikost argumentu", "SSE.Controllers.DocumentHolder.txtDeleteArg": "Odstranit argument", "SSE.Controllers.DocumentHolder.txtDeleteBreak": "Odstranit ruční zalomení", @@ -512,6 +514,7 @@ "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Větší nebo rovno", "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Znak nad textem", "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Znak pod textem", + "SSE.Controllers.DocumentHolder.txtHeadersTableHint": "Získá hlavičky v tabulce, nebo hlavičky definovaných sloupců tabulky", "SSE.Controllers.DocumentHolder.txtHeight": "Výška", "SSE.Controllers.DocumentHolder.txtHideBottom": "Skrýt ohraničení dole", "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "Skrýt dolní limit", @@ -592,6 +595,7 @@ "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Roztáhnout závorky", "SSE.Controllers.DocumentHolder.txtThisRowHint": "Zvolte pouze tento řádek zadaného sloupce", "SSE.Controllers.DocumentHolder.txtTop": "Nahoře", + "SSE.Controllers.DocumentHolder.txtTotalsTableHint": "Získá hodnotu celkového počtu řádků, nebo definovaných sloupců tabulky", "SSE.Controllers.DocumentHolder.txtUnderbar": "Čárka pod textem", "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Vzít zpět automatické rozšíření tabulky", "SSE.Controllers.DocumentHolder.txtUseTextImport": "Použít průvodce importem textu", @@ -646,6 +650,7 @@ "SSE.Controllers.Main.errorAutoFilterHiddenRange": "Operaci nelze provést, protože oblast obsahuje filtrované buňky.
Odkryjte filtrované prvky a zkuste to znovu.", "SSE.Controllers.Main.errorBadImageUrl": "URL adresa obrázku není správně", "SSE.Controllers.Main.errorCannotUngroup": "Seskupení není možné zrušit. Pro zahájení obrysu, vyberte podrobnost řádek nebo sloupců a seskupte je.", + "SSE.Controllers.Main.errorCannotUseCommandProtectedSheet": "Tento příkaz nelze použít na zabezpečený list. Pro použití příkazu, zrušte zabezpečení listu.
Může být vyžadováno zadání hesla.", "SSE.Controllers.Main.errorChangeArray": "Nemůžete měnit část pole.", "SSE.Controllers.Main.errorChangeFilteredRange": "Dojde ke změně rozsahu filtrů v listě.
Pro provedení je nutné vypnout automatické filtry.", "SSE.Controllers.Main.errorChangeOnProtectedSheet": "Buňka nebo graf, který se pokoušíte změnit je na zabezpečeném listu. Pro provedení změny, vypněte zabezpečení listu. Může být vyžadováno zadání hesla.", @@ -762,6 +767,10 @@ "SSE.Controllers.Main.textCustomLoader": "Mějte na paměti, že dle podmínek licence nejste oprávněni měnit zavaděč.
Pro získání nabídky se obraťte na naše obchodní oddělení.", "SSE.Controllers.Main.textDisconnect": "Spojení je ztraceno", "SSE.Controllers.Main.textFillOtherRows": "Vyplnit ostatní řádky", + "SSE.Controllers.Main.textFormulaFilledAllRows": "Vzorec zadaný v {0} řádcích obsahuje data. Doplnění dat do ostatních řádků, může trvat několik minut.", + "SSE.Controllers.Main.textFormulaFilledAllRowsWithEmpty": "Vzorec je zadán zadaný prvních {0} řádcích. Doplnění dat do ostatních řádků, může trvat několik minut.", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherHaveData": "Vzorec je zadaný pouze v prvních {0} řádcích, z důvodu ukládání do paměti. Dalších {1} řádků v tomto listu neobsahuje data. Data můžete zapsat manuálně.", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherIsEmpty": "Vzorec je zadaný pouze v prvních {0} řádcích, z důvodu ukládání do paměti. Ostatní řádky v tomto listu neobsahují data.", "SSE.Controllers.Main.textGuest": "Návštěvník", "SSE.Controllers.Main.textHasMacros": "Soubor obsahuje automatická makra.
Opravdu chcete makra spustit?", "SSE.Controllers.Main.textLearnMore": "Více informací", @@ -2744,9 +2753,12 @@ "SSE.Views.PrintWithPreview.txtCurrentSheet": "Stávající list", "SSE.Views.PrintWithPreview.txtCustom": "Uživatelsky určené", "SSE.Views.PrintWithPreview.txtCustomOptions": "Uživatelsky určené předvolby", + "SSE.Views.PrintWithPreview.txtEmptyTable": "Není co vytisknout, protože tabulka je prázdná.", "SSE.Views.PrintWithPreview.txtFitCols": "Přizpůsobit všechny sloupce na jedné stránce", "SSE.Views.PrintWithPreview.txtFitPage": "Přizpůsobit list jedné stránce", "SSE.Views.PrintWithPreview.txtFitRows": "Přizpůsobit všechny řádky na jedné stránce", + "SSE.Views.PrintWithPreview.txtGridlinesAndHeadings": "Mřížky a nadpisy", + "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Nastavení záhlaví/zápatí", "SSE.Views.PrintWithPreview.txtIgnore": "Ignorovat oblast tisku", "SSE.Views.PrintWithPreview.txtLandscape": "Na šířku", "SSE.Views.PrintWithPreview.txtLeft": "Vlevo", @@ -2763,6 +2775,9 @@ "SSE.Views.PrintWithPreview.txtPrintRange": "Rozsah tisku", "SSE.Views.PrintWithPreview.txtPrintTitles": "Tisk názvů", "SSE.Views.PrintWithPreview.txtRepeat": "Opakovat…", + "SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft": "Vlevo opakovat sloupce", + "SSE.Views.PrintWithPreview.txtRepeatRowsAtTop": "Nahoře opakovat řádky", + "SSE.Views.PrintWithPreview.txtRight": "Vpravo", "SSE.Views.PrintWithPreview.txtSave": "Uložit", "SSE.Views.PrintWithPreview.txtScaling": "Změna měřítka", "SSE.Views.PrintWithPreview.txtSelection": "Výběr", @@ -3420,6 +3435,7 @@ "SSE.Views.Toolbar.tipMarkersFRhombus": "Kosočtvercové odrážky s výplní", "SSE.Views.Toolbar.tipMarkersFRound": "Vyplněné kulaté odrážky", "SSE.Views.Toolbar.tipMarkersFSquare": "Plné čtvercové odrážky", + "SSE.Views.Toolbar.tipMarkersHRound": "Duté kulaté odrážky", "SSE.Views.Toolbar.tipMarkersStar": "Hvězdičkové odrážky", "SSE.Views.Toolbar.tipMerge": "Sloučit a vystředit", "SSE.Views.Toolbar.tipNone": "Žádné", diff --git a/apps/spreadsheeteditor/main/locale/ja.json b/apps/spreadsheeteditor/main/locale/ja.json index 240a8cbb2..4d1df8f67 100644 --- a/apps/spreadsheeteditor/main/locale/ja.json +++ b/apps/spreadsheeteditor/main/locale/ja.json @@ -187,6 +187,7 @@ "Common.Views.Comments.textAddComment": "コメントを追加", "Common.Views.Comments.textAddCommentToDoc": "ドキュメントにコメントを追加", "Common.Views.Comments.textAddReply": "返信する", + "Common.Views.Comments.textAll": "すべて", "Common.Views.Comments.textAnonym": "ゲスト", "Common.Views.Comments.textCancel": "キャンセル", "Common.Views.Comments.textClose": "閉じる", @@ -200,6 +201,7 @@ "Common.Views.Comments.textResolve": "解決", "Common.Views.Comments.textResolved": "解決済み", "Common.Views.Comments.textSort": "コメントを並べ替える", + "Common.Views.Comments.textViewResolved": "コメントを再開する権限がありません", "Common.Views.CopyWarningDialog.textDontShow": "今後このメッセージを表示しない", "Common.Views.CopyWarningDialog.textMsg": "このタブの編集のツールバーのボタンとコンテキストメニューを使って、コピー、分割と貼り付けをすることができます。

他のアプリケーションにコピーと貼り付けのために、次のショートカットキー を使ってください:", "Common.Views.CopyWarningDialog.textTitle": "コピー,切り取り,貼り付けの操作", @@ -284,7 +286,7 @@ "Common.Views.PasswordDialog.txtPassword": "パスワード", "Common.Views.PasswordDialog.txtRepeat": "パスワードを再入力", "Common.Views.PasswordDialog.txtTitle": "パスワードの設定", - "Common.Views.PasswordDialog.txtWarning": "注意: パスワードを忘れると、元に戻せません。", + "Common.Views.PasswordDialog.txtWarning": "注意: パスワードを忘れると元に戻せません。安全な場所に記録してください。", "Common.Views.PluginDlg.textLoading": "読み込み中", "Common.Views.Plugins.groupCaption": "プラグイン", "Common.Views.Plugins.strPlugins": "プラグイン", @@ -367,6 +369,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "もう一度開く", "Common.Views.ReviewPopover.textReply": "返事する", "Common.Views.ReviewPopover.textResolve": "解決する", + "Common.Views.ReviewPopover.textViewResolved": "コメントを再開する権限がありません", "Common.Views.ReviewPopover.txtDeleteTip": "削除", "Common.Views.ReviewPopover.txtEditTip": "編集", "Common.Views.SaveAsDlg.textLoading": "読み込み中", @@ -614,7 +617,7 @@ "SSE.Controllers.LeftMenu.textLoadHistory": "バリエーションの履歴の読み込み中...", "SSE.Controllers.LeftMenu.textLookin": "検索の範囲", "SSE.Controllers.LeftMenu.textNoTextFound": "検索データが見つかりませんでした。他の検索設定を選択してください。", - "SSE.Controllers.LeftMenu.textReplaceSkipped": "置換が行われました。スキップされた発生回数は{0}です。", + "SSE.Controllers.LeftMenu.textReplaceSkipped": "置換が完了しました。{0}つスキップされました。", "SSE.Controllers.LeftMenu.textReplaceSuccess": "検索完了しました。更新件数は、{0} です。", "SSE.Controllers.LeftMenu.textSearch": "検索", "SSE.Controllers.LeftMenu.textSheet": "シート", @@ -642,6 +645,7 @@ "SSE.Controllers.Main.errorAutoFilterHiddenRange": "エリアをフィルタされたセルが含まれているので、操作を実行できません。
フィルタリングの要素を表示して、もう一度お試しください", "SSE.Controllers.Main.errorBadImageUrl": "画像のURLが正しくありません。", "SSE.Controllers.Main.errorCannotUngroup": "グループ化を解除できません。 アウトラインを開始するには、詳細の行または列を選択してグループ化ください。", + "SSE.Controllers.Main.errorCannotUseCommandProtectedSheet": "このコマンドは、保護されたシートでは使用できません。このコマンドを使用するには、シートの保護を解除してください。
パスワードの入力を求められる場合があります。", "SSE.Controllers.Main.errorChangeArray": "配列の一部を変更することはできません。", "SSE.Controllers.Main.errorChangeFilteredRange": "これにより、ワークシートのフィルター範囲が変更されます。
このタスクを完了するには、オートフィルターをご削除ください。", "SSE.Controllers.Main.errorChangeOnProtectedSheet": "変更しようとしているチャートには、保護されたシートにあります。変更するには保護を解除が必要です。パスワードの入力を要求されることもあります。", @@ -1063,6 +1067,7 @@ "SSE.Controllers.Statusbar.errorLastSheet": "最低 1 つのワークシートが含まれていなければなりません。", "SSE.Controllers.Statusbar.errorRemoveSheet": "ワークシートを削除することができません。", "SSE.Controllers.Statusbar.strSheet": "シート", + "SSE.Controllers.Statusbar.textDisconnect": "切断されました
設定を確認してください。", "SSE.Controllers.Statusbar.textSheetViewTip": "シートビューモードになっています。 フィルタと並べ替えは、あなたとまだこのビューにいる人だけに表示されます。", "SSE.Controllers.Statusbar.textSheetViewTipFilters": "シート表示モードになっています。 フィルタは、あなたとまだこの表示にいる人だけに表示されます。", "SSE.Controllers.Statusbar.warnDeleteSheet": "選択したシートにはデータが含まれている可能性があります。続行してもよろしいですか?", @@ -2727,6 +2732,13 @@ "SSE.Views.PrintTitlesDialog.textSelectRange": "範囲の選択", "SSE.Views.PrintTitlesDialog.textTitle": "タイトルを印刷する", "SSE.Views.PrintTitlesDialog.textTop": "上の行を繰り返す", + "SSE.Views.PrintWithPreview.txtActualSize": "実際の大きさ", + "SSE.Views.PrintWithPreview.txtAllSheets": "全てのシート", + "SSE.Views.PrintWithPreview.txtApplyToAllSheets": "全てのシートに適用", + "SSE.Views.PrintWithPreview.txtLeft": "左", + "SSE.Views.PrintWithPreview.txtPrint": "印刷", + "SSE.Views.PrintWithPreview.txtPrintGrid": "枠線の印刷", + "SSE.Views.PrintWithPreview.txtPrintRange": "印刷範囲\t", "SSE.Views.ProtectDialog.textExistName": "エラー!この名がある範囲があります。", "SSE.Views.ProtectDialog.textInvalidName": "範囲の名前に含めることができるのは、文字、数字、およびスペースだけです", "SSE.Views.ProtectDialog.textInvalidRange": "エラー!セルの範囲が正しくありません。", @@ -2744,7 +2756,7 @@ "SSE.Views.ProtectDialog.txtInsHyper": "ハイパーリンクを挿入する", "SSE.Views.ProtectDialog.txtInsRows": "行を挿入する", "SSE.Views.ProtectDialog.txtObjs": "オブジェクトを編集する", - "SSE.Views.ProtectDialog.txtOptional": "任意の", + "SSE.Views.ProtectDialog.txtOptional": "任意", "SSE.Views.ProtectDialog.txtPassword": "パスワード", "SSE.Views.ProtectDialog.txtPivot": "ピボット表とピボットチャートを使う", "SSE.Views.ProtectDialog.txtProtect": "保護する", @@ -2757,7 +2769,7 @@ "SSE.Views.ProtectDialog.txtSheetDescription": "編集権限を制限して、他のユーザーが不用意にデータを変更することを防ぎます", "SSE.Views.ProtectDialog.txtSheetTitle": "シートを保護する", "SSE.Views.ProtectDialog.txtSort": "並べ替え", - "SSE.Views.ProtectDialog.txtWarning": "注意: パスワードを忘れると、元に戻せません。安全な場所に持ってください。", + "SSE.Views.ProtectDialog.txtWarning": "注意: パスワードを忘れると元に戻せません。安全な場所に記録してください。", "SSE.Views.ProtectDialog.txtWBDescription": "他のユーザは非表示のワークシートを表示したり、シート追加、移動、削除したり、シートを非表示、名の変更することができないようにブックの構造をパスワードで保護できます", "SSE.Views.ProtectDialog.txtWBTitle": "ブックを保護する", "SSE.Views.ProtectRangesDlg.guestText": "ゲスト", @@ -3289,6 +3301,7 @@ "SSE.Views.Toolbar.textPageMarginsCustom": "ユーザー設定の余白", "SSE.Views.Toolbar.textPortrait": "縦向き", "SSE.Views.Toolbar.textPrint": "印刷", + "SSE.Views.Toolbar.textPrintGridlines": "枠線の印刷", "SSE.Views.Toolbar.textPrintOptions": "設定の印刷", "SSE.Views.Toolbar.textRight": "右:", "SSE.Views.Toolbar.textRightBorders": "右の罫線", @@ -3367,6 +3380,7 @@ "SSE.Views.Toolbar.tipInsertTable": "テーブルの挿入", "SSE.Views.Toolbar.tipInsertText": "テキストボックスを挿入する", "SSE.Views.Toolbar.tipInsertTextart": "ワードアートの挿入", + "SSE.Views.Toolbar.tipMarkersArrow": "箇条書き(矢印)", "SSE.Views.Toolbar.tipMerge": "結合して、中央に配置する", "SSE.Views.Toolbar.tipNumFormat": "数値の書式", "SSE.Views.Toolbar.tipPageMargins": "余白", @@ -3511,6 +3525,7 @@ "SSE.Views.ViewManagerDlg.warnDeleteView": "現在有効になっている表示 '%1'を削除しようとしています。
この表示を閉じて削除しますか?", "SSE.Views.ViewTab.capBtnFreeze": "ウィンドウ枠の固定", "SSE.Views.ViewTab.capBtnSheetView": "シートの表示", + "SSE.Views.ViewTab.textAlwaysShowToolbar": "ツールバーを常に表示する", "SSE.Views.ViewTab.textClose": "閉じる", "SSE.Views.ViewTab.textCreate": "新しい", "SSE.Views.ViewTab.textDefault": "デフォルト", @@ -3531,9 +3546,9 @@ "SSE.Views.WBProtection.hintProtectSheet": "シートを保護する", "SSE.Views.WBProtection.hintProtectWB": "ブックを保護する", "SSE.Views.WBProtection.txtAllowRanges": "範囲の編集を許可する", - "SSE.Views.WBProtection.txtHiddenFormula": "非表示の数式", + "SSE.Views.WBProtection.txtHiddenFormula": "数式を非表示", "SSE.Views.WBProtection.txtLockedCell": "ロックしたセル", - "SSE.Views.WBProtection.txtLockedShape": "形がロックした", + "SSE.Views.WBProtection.txtLockedShape": "図形をロック", "SSE.Views.WBProtection.txtLockedText": "テキストをロックする", "SSE.Views.WBProtection.txtProtectSheet": "シートを保護する", "SSE.Views.WBProtection.txtProtectWB": "ブックを保護する", From 30ff4d7191bfe0b05cf1ee79d799a42058bec56d Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 18 Feb 2022 21:15:43 +0300 Subject: [PATCH 180/217] [Mobile] Update translation --- apps/documenteditor/mobile/locale/cs.json | 58 +++++++++---------- apps/documenteditor/mobile/locale/ja.json | 36 ++++++------ apps/presentationeditor/mobile/locale/cs.json | 40 ++++++------- apps/presentationeditor/mobile/locale/ja.json | 30 +++++----- apps/spreadsheeteditor/mobile/locale/az.json | 4 +- apps/spreadsheeteditor/mobile/locale/be.json | 4 +- apps/spreadsheeteditor/mobile/locale/bg.json | 4 +- apps/spreadsheeteditor/mobile/locale/ca.json | 4 +- apps/spreadsheeteditor/mobile/locale/cs.json | 44 +++++++------- apps/spreadsheeteditor/mobile/locale/da.json | 4 +- apps/spreadsheeteditor/mobile/locale/de.json | 4 +- apps/spreadsheeteditor/mobile/locale/el.json | 4 +- apps/spreadsheeteditor/mobile/locale/en.json | 2 +- apps/spreadsheeteditor/mobile/locale/es.json | 4 +- apps/spreadsheeteditor/mobile/locale/fr.json | 2 + apps/spreadsheeteditor/mobile/locale/gl.json | 4 +- apps/spreadsheeteditor/mobile/locale/hu.json | 4 +- apps/spreadsheeteditor/mobile/locale/it.json | 4 +- apps/spreadsheeteditor/mobile/locale/ja.json | 42 +++++++------- apps/spreadsheeteditor/mobile/locale/ko.json | 4 +- apps/spreadsheeteditor/mobile/locale/lo.json | 4 +- apps/spreadsheeteditor/mobile/locale/lv.json | 4 +- apps/spreadsheeteditor/mobile/locale/nb.json | 4 +- apps/spreadsheeteditor/mobile/locale/nl.json | 4 +- apps/spreadsheeteditor/mobile/locale/pl.json | 4 +- apps/spreadsheeteditor/mobile/locale/pt.json | 4 +- apps/spreadsheeteditor/mobile/locale/ro.json | 2 + apps/spreadsheeteditor/mobile/locale/ru.json | 2 + apps/spreadsheeteditor/mobile/locale/sk.json | 4 +- apps/spreadsheeteditor/mobile/locale/sl.json | 4 +- apps/spreadsheeteditor/mobile/locale/tr.json | 4 +- apps/spreadsheeteditor/mobile/locale/uk.json | 4 +- apps/spreadsheeteditor/mobile/locale/vi.json | 4 +- apps/spreadsheeteditor/mobile/locale/zh.json | 4 +- 34 files changed, 201 insertions(+), 153 deletions(-) diff --git a/apps/documenteditor/mobile/locale/cs.json b/apps/documenteditor/mobile/locale/cs.json index 0599355a0..d2d03ed7f 100644 --- a/apps/documenteditor/mobile/locale/cs.json +++ b/apps/documenteditor/mobile/locale/cs.json @@ -41,6 +41,7 @@ "textLocation": "Umístění", "textNextPage": "Další stránka", "textOddPage": "Lichá stránka", + "textOk": "OK", "textOther": "Jiné", "textPageBreak": "Konec stránky", "textPageNumber": "Číslo stránky", @@ -56,8 +57,7 @@ "textStartAt": "Začít na", "textTable": "Tabulka", "textTableSize": "Velikost tabulky", - "txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"", - "textOk": "Ok" + "txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"" }, "Common": { "Collaboration": { @@ -158,13 +158,13 @@ "textUsers": "Uživatelé", "textWidow": "Ovládací prvek okna" }, + "HighlightColorPalette": { + "textNoFill": "Bez výplně" + }, "ThemeColorPalette": { "textCustomColors": "Vlastní barvy", "textStandartColors": "Standardní barvy", - "textThemeColors": "Barvy motivu vzhledu" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" + "textThemeColors": "Barvy vzhledu prostředí" } }, "ContextMenu": { @@ -229,6 +229,7 @@ "textContinueFromPreviousSection": "Pokračovat od předchozí sekce", "textCustomColor": "Vlastní barva", "textDecember": "prosinec", + "textDesign": "Vzhled", "textDifferentFirstPage": "Odlišná první stránka", "textDifferentOddAndEvenPages": "Rozdílné liché a sudé stránky", "textDisplay": "Zobrazit", @@ -238,6 +239,7 @@ "textEffects": "Efekty", "textEmpty": "prázdné", "textEmptyImgUrl": "Musíte upřesnit URL obrázku.", + "textFebruary": "únor", "textFill": "Výplň", "textFirstColumn": "První sloupec", "textFirstLine": "První řádek", @@ -246,6 +248,7 @@ "textFontColors": "Barvy písma", "textFonts": "Styly", "textFooter": "Zápatí", + "textFr": "pá", "textHeader": "Záhlaví", "textHeaderRow": "Záhlaví řádků", "textHighlightColor": "Barva zvýraznění", @@ -254,6 +257,9 @@ "textImageURL": "URL obrázku", "textInFront": "Vpředu", "textInline": "V textu", + "textJanuary": "leden", + "textJuly": "červenec", + "textJune": "červen", "textKeepLinesTogether": "Držet řádky pohromadě", "textKeepWithNext": "Svázat s následujícím", "textLastColumn": "Poslední sloupec", @@ -262,13 +268,19 @@ "textLink": "Odkaz", "textLinkSettings": "Nastavení odkazů", "textLinkToPrevious": "Odkaz na předchozí", + "textMarch": "březen", + "textMay": "květen", + "textMo": "po", "textMoveBackward": "Jít zpět", "textMoveForward": "Posunout vpřed", "textMoveWithText": "Přesunout s textem", "textNone": "Žádné", "textNoStyles": "Žádné styly pro tento typ grafů.", "textNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"", + "textNovember": "listopad", "textNumbers": "Čísla", + "textOctober": "říjen", + "textOk": "OK", "textOpacity": "Průhlednost", "textOptions": "Možnosti", "textOrphanControl": "Kontrola osamocených řádků", @@ -289,9 +301,11 @@ "textReplace": "Nahradit", "textReplaceImage": "Nahradit obrázek", "textResizeToFitContent": "Změnit velikost pro přizpůsobení obsahu", + "textSa": "so", "textScreenTip": "Nápověda", "textSelectObjectToEdit": "Vyberte objekt pro úpravu", "textSendToBackground": "Přesunout do pozadí", + "textSeptember": "září", "textSettings": "Nastavení", "textShape": "Obrazec", "textSize": "Velikost", @@ -302,35 +316,21 @@ "textStrikethrough": "Přeškrtnuté", "textStyle": "Styl", "textStyleOptions": "Možnosti stylu", + "textSu": "ne", "textSubscript": "Dolní index", "textSuperscript": "Horní index", "textTable": "Tabulka", "textTableOptions": "Možnosti tabulky", "textText": "Text", + "textTh": "čt", "textThrough": "Skrz", "textTight": "Těsné", "textTopAndBottom": "Nahoře a dole", "textTotalRow": "Součtový řádek", + "textTu": "út", "textType": "Typ", - "textWrap": "Obtékání", - "textDesign": "Design", - "textFebruary": "February", - "textFr": "Fr", - "textJanuary": "January", - "textJuly": "July", - "textJune": "June", - "textMarch": "March", - "textMay": "May", - "textMo": "Mo", - "textNovember": "November", - "textOctober": "October", - "textOk": "Ok", - "textSa": "Sa", - "textSeptember": "September", - "textSu": "Su", - "textTh": "Th", - "textTu": "Tu", - "textWe": "We" + "textWe": "st", + "textWrap": "Obtékání" }, "Error": { "convertationTimeoutText": "Vypršel čas konverze.", @@ -487,8 +487,11 @@ "textHasMacros": "Soubor obsahuje automatická makra.
Opravdu chcete makra spustit?", "textNo": "Ne", "textNoLicenseTitle": "Došlo k dosažení limitu licence", + "textNoTextFound": "Text nebyl nalezen", "textPaidFeature": "Placená funkce", "textRemember": "Zapamatovat moji volbu", + "textReplaceSkipped": "Nahrazení bylo provedeno. {0} výskytů bylo přeskočeno.", + "textReplaceSuccess": "Hledání bylo dokončeno. Nahrazeno výskytů: {0}", "textYes": "Ano", "titleLicenseExp": "Platnost licence vypršela", "titleServerVersion": "Editor byl aktualizován", @@ -500,10 +503,7 @@ "warnLicenseUsersExceeded": "Došlo dosažení limitu %1 editorů v režimu spolupráce na úpravách. Ohledně podrobností se obraťte na svého správce.", "warnNoLicense": "Došlo k dosažení limitu souběžného připojení %1 editorů. Tento dokument bude otevřen pouze pro náhled. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", "warnNoLicenseUsers": "Došlo k dosažení limitu %1 editorů. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", - "warnProcessRightsChange": "Nemáte oprávnění pro úpravu tohoto dokumentu.", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "Nemáte oprávnění pro úpravu tohoto dokumentu." }, "Settings": { "advDRMOptions": "Zabezpečený soubor", diff --git a/apps/documenteditor/mobile/locale/ja.json b/apps/documenteditor/mobile/locale/ja.json index dfd8610bb..78599cf30 100644 --- a/apps/documenteditor/mobile/locale/ja.json +++ b/apps/documenteditor/mobile/locale/ja.json @@ -41,6 +41,7 @@ "textLocation": "場所", "textNextPage": "次のページ", "textOddPage": "奇数ページ", + "textOk": "OK", "textOther": "その他", "textPageBreak": "改ページ", "textPageNumber": "ページ番号", @@ -56,8 +57,7 @@ "textStartAt": "から始まる", "textTable": "表", "textTableSize": "表のサイズ", - "txtNotUrl": "このフィールドは、「http://www.example.com」の形式のURLである必要があります。", - "textOk": "Ok" + "txtNotUrl": "このフィールドは、「http://www.example.com」の形式のURLである必要があります。" }, "Common": { "Collaboration": { @@ -158,13 +158,13 @@ "textUsers": "ユーザー", "textWidow": "改ページ時 1 行残して段落を区切らない" }, + "HighlightColorPalette": { + "textNoFill": "塗りつぶしなし" + }, "ThemeColorPalette": { "textCustomColors": "ユーザー設定の色", "textStandartColors": "標準の色", "textThemeColors": "テーマの色" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -229,6 +229,7 @@ "textContinueFromPreviousSection": "前のセクションから続ける", "textCustomColor": "ユーザー設定の色", "textDecember": "12月", + "textDesign": "デザイン", "textDifferentFirstPage": "先頭ページのみ別指定", "textDifferentOddAndEvenPages": "奇数/偶数ページ別指定", "textDisplay": "表示する", @@ -236,6 +237,7 @@ "textDoubleStrikethrough": "二重取り消し線", "textEditLink": "リンクを編集する", "textEffects": "効果", + "textEmpty": "空", "textEmptyImgUrl": "イメージのURLを指定すべきです。", "textFebruary": "2月", "textFill": "塗りつぶし", @@ -246,6 +248,7 @@ "textFontColors": "フォントの色", "textFonts": "フォント", "textFooter": "フッター", + "textFr": "金", "textHeader": "ヘッダー", "textHeaderRow": "ヘッダー行", "textHighlightColor": "強調表示の色", @@ -267,6 +270,7 @@ "textLinkToPrevious": "前に結合する", "textMarch": "3月", "textMay": "5月", + "textMo": "月", "textMoveBackward": "背面に動かす", "textMoveForward": "前面に動かす", "textMoveWithText": "テキストと一緒に移動する", @@ -276,6 +280,7 @@ "textNovember": "11月", "textNumbers": "数", "textOctober": "10月", + "textOk": "OK", "textOpacity": "不透明度", "textOptions": "オプション", "textOrphanControl": "改ページ時 1 行残して段落を区切らない", @@ -296,6 +301,7 @@ "textReplace": "置換する", "textReplaceImage": "イメージを置換する", "textResizeToFitContent": "内容に合わせてサイズを変更する", + "textSa": "土", "textScreenTip": "ヒント", "textSelectObjectToEdit": "編集するためにオブジェクト​​を選んでください", "textSendToBackground": "背景へ動かす", @@ -310,27 +316,21 @@ "textStrikethrough": "取り消し線", "textStyle": "スタイル", "textStyleOptions": "スタイルの設定", + "textSu": "日", "textSubscript": "下付き文字", "textSuperscript": "上付き文字", "textTable": "表", "textTableOptions": "表の設定", "textText": "テキスト", + "textTh": "木", "textThrough": "スルー", "textTight": "外周", "textTopAndBottom": "上と下", "textTotalRow": "合計行", + "textTu": "火", "textType": "タイプ", - "textWrap": "折り返す", - "textDesign": "Design", - "textEmpty": "Empty", - "textFr": "Fr", - "textMo": "Mo", - "textOk": "Ok", - "textSa": "Sa", - "textSu": "Su", - "textTh": "Th", - "textTu": "Tu", - "textWe": "We" + "textWe": "水", + "textWrap": "折り返す" }, "Error": { "convertationTimeoutText": "変換のタイムアウトを超過しました。", @@ -487,8 +487,10 @@ "textHasMacros": "ファイルには自動マクロが含まれています。
マクロを実行しますか?", "textNo": "いいえ", "textNoLicenseTitle": "ライセンス制限に達しました", + "textNoTextFound": "テキストが見つかりませんでした", "textPaidFeature": "有料機能", "textRemember": "選択を覚える", + "textReplaceSkipped": "置換が完了しました。{0}つスキップされました。", "textYes": "はい", "titleLicenseExp": "ライセンスの有効期限が切れています", "titleServerVersion": "編集者が更新された", @@ -501,8 +503,6 @@ "warnNoLicense": "%1エディター 時接続数の制限に達しました。この文書が見るだけのために開かれる。個人的なアップグレード条件については、%1営業チームを連絡してください。", "warnNoLicenseUsers": "%1エディターのユーザー制限に達しました。 個人的なアップグレード条件については、%1営業チームを連絡してください。", "warnProcessRightsChange": "ファイルを編集する権限がありません!", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" }, "Settings": { diff --git a/apps/presentationeditor/mobile/locale/cs.json b/apps/presentationeditor/mobile/locale/cs.json index e9cec20f9..adbaed10b 100644 --- a/apps/presentationeditor/mobile/locale/cs.json +++ b/apps/presentationeditor/mobile/locale/cs.json @@ -33,13 +33,13 @@ "textTryUndoRedo": "Funkce Zpět/Znovu jsou vypnuty pro rychlý režim spolupráce.", "textUsers": "Uživatelé" }, + "HighlightColorPalette": { + "textNoFill": "Bez výplně" + }, "ThemeColorPalette": { "textCustomColors": "Vlastní barvy", "textStandartColors": "Standardní barvy", - "textThemeColors": "Barvy tématu" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" + "textThemeColors": "Barvy vzhledu prostředí" } }, "ContextMenu": { @@ -107,9 +107,12 @@ "textHasMacros": "Soubor obsahuje automatická makra.
Opravdu chcete makra spustit?", "textNo": "Ne", "textNoLicenseTitle": "Došlo k dosažení limitu licence", + "textNoTextFound": "Text nebyl nalezen", "textOpenFile": "Zadejte heslo pro otevření souboru", "textPaidFeature": "Placená funkce", "textRemember": "Zapamatovat moji volbu", + "textReplaceSkipped": "Nahrazení bylo provedeno. {0} výskytů bylo přeskočeno.", + "textReplaceSuccess": "Hledání bylo dokončeno. Nahrazeno výskytů: {0}", "textYes": "Ano", "titleLicenseExp": "Platnost licence vypršela", "titleServerVersion": "Editor byl aktualizován", @@ -123,10 +126,7 @@ "warnLicenseUsersExceeded": "Došlo dosažení limitu %1 editorů v režimu spolupráce na úpravách. Ohledně podrobností se obraťte na svého správce.", "warnNoLicense": "Došlo k dosažení limitu souběžného připojení %1 editorů. Tento dokument bude otevřen pouze pro náhled. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", "warnNoLicenseUsers": "Došlo k dosažení limitu %1 editorů. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", - "warnProcessRightsChange": "Nemáte oprávnění pro úpravu tohoto dokumentu.", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "Nemáte oprávnění pro úpravu tohoto dokumentu." } }, "Error": { @@ -182,8 +182,8 @@ "loadImageTitleText": "Načítání obrázku", "loadingDocumentTextText": "Načítání dokumentu…", "loadingDocumentTitleText": "Načítání dokumentu", - "loadThemeTextText": "Načítání motivu vzhledu...", - "loadThemeTitleText": "Načítání motivu vzhledu", + "loadThemeTextText": "Načítání vzhledu prostředí...", + "loadThemeTitleText": "Načítání vzhledu prostředí", "openTextText": "Otevírání dokumentu...", "openTitleText": "Otevírání dokumentu", "printTextText": "Tisknutí dokumentu...", @@ -228,6 +228,7 @@ "textLinkTo": "Odkaz na", "textLinkType": "Typ odkazu", "textNextSlide": "Další snímek", + "textOk": "OK", "textOther": "Jiné", "textPictureFromLibrary": "Obrázek z knihovny", "textPictureFromURL": "Obrázek z adresy URL", @@ -240,8 +241,7 @@ "textSlideNumber": "Číslo snímku", "textTable": "Tabulka", "textTableSize": "Velikost tabulky", - "txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"", - "textOk": "Ok" + "txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"" }, "Edit": { "notcriticalErrorTitle": "Varování", @@ -261,6 +261,7 @@ "textAllCaps": "Všechny kapitálky", "textApplyAll": "Použít na všechny snímky", "textAuto": "Automaticky", + "textAutomatic": "Automaticky", "textBack": "Zpět", "textBandedColumn": "Pruhované sloupce", "textBandedRow": "Pruhované řádky", @@ -285,6 +286,7 @@ "textDefault": "Vybraný text", "textDelay": "Prodleva", "textDeleteSlide": "Odstranit snímek", + "textDesign": "Vzhled", "textDisplay": "Zobrazit", "textDistanceFromText": "Vzdálenost od textu", "textDistributeHorizontally": "Rozmístit vodorovně", @@ -336,6 +338,7 @@ "textNoTextFound": "Text nebyl nalezen", "textNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"", "textNumbers": "Čísla", + "textOk": "OK", "textOpacity": "Průhlednost", "textOptions": "Možnosti", "textPictureFromLibrary": "Obrázek z knihovny", @@ -374,7 +377,7 @@ "textSuperscript": "Horní index", "textTable": "Tabulka", "textText": "Text", - "textTheme": "Téma", + "textTheme": "Prostředí", "textTop": "Nahoru", "textTopLeft": "Vlevo nahoře", "textTopRight": "Vpravo nahoře", @@ -386,14 +389,11 @@ "textVerticalIn": "Svislý uvnitř", "textVerticalOut": "Svislý vně", "textWedge": "Konjunkce", - "textWipe": "Vyčistit", + "textWipe": "Setření", "textZoom": "Přiblížení", "textZoomIn": "Přiblížit", "textZoomOut": "Oddálit", - "textZoomRotate": "Přiblížit a otočit", - "textAutomatic": "Automatic", - "textDesign": "Design", - "textOk": "Ok" + "textZoomRotate": "Přiblížit a otočit" }, "Settings": { "mniSlideStandard": "Standardní (4:3)", @@ -410,6 +410,7 @@ "textColorSchemes": "Schémata barev", "textComment": "Komentář", "textCreated": "Vytvořeno", + "textDarkTheme": "Tmavý vzhled prostředí", "textDisableAll": "Vypnout vše", "textDisableAllMacrosWithNotification": "Vypnout všechna makra s notifikacemi", "textDisableAllMacrosWithoutNotification": "Vypnout všechna makra bez notifikací", @@ -472,8 +473,7 @@ "txtScheme6": "Hala", "txtScheme7": "Rovnost", "txtScheme8": "Tok", - "txtScheme9": "Slévárna", - "textDarkTheme": "Dark Theme" + "txtScheme9": "Slévárna" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/ja.json b/apps/presentationeditor/mobile/locale/ja.json index debb8d4e1..a6a0bd6f2 100644 --- a/apps/presentationeditor/mobile/locale/ja.json +++ b/apps/presentationeditor/mobile/locale/ja.json @@ -33,13 +33,13 @@ "textTryUndoRedo": "高速で共同な編集モードでは、元に戻す/やり直し機能が無効になります。", "textUsers": "ユーザー" }, + "HighlightColorPalette": { + "textNoFill": "塗りつぶしなし" + }, "ThemeColorPalette": { "textCustomColors": "ユーザー設定の色", "textStandartColors": "標準の色", "textThemeColors": "テーマの色" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -107,9 +107,12 @@ "textHasMacros": "ファイルには自動マクロが含まれています。
マクロを実行しますか?", "textNo": "いいえ", "textNoLicenseTitle": "ライセンス制限に達しました", + "textNoTextFound": "テキストが見つかりませんでした", "textOpenFile": "ファイルを開くためにパスワードを入力してください", "textPaidFeature": "有料機能", "textRemember": "選択を覚える", + "textReplaceSkipped": "置換が完了しました。{0}つスキップされました。", + "textReplaceSuccess": "検索が完了しました。{0}つが置換されました。", "textYes": "はい", "titleLicenseExp": "ライセンスの有効期限が切れています", "titleServerVersion": "編集者が更新された", @@ -123,10 +126,7 @@ "warnLicenseUsersExceeded": "%1エディターのユーザー制限に達しました。 詳細についてはアドミニストレータを連絡してください。", "warnNoLicense": "%1エディター 時接続数の制限に達しました。この文書が見るだけのために開かれる。個人的なアップグレード条件については、%1営業チームを連絡してください。", "warnNoLicenseUsers": "%1エディターのユーザー制限に達しました。 個人的なアップグレード条件については、%1営業チームを連絡してください。", - "warnProcessRightsChange": "ファイルを編集する権限がありません!", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "ファイルを編集する権限がありません!" } }, "Error": { @@ -228,6 +228,7 @@ "textLinkTo": "リンク先", "textLinkType": "リンクのタイプ", "textNextSlide": "次のスライド", + "textOk": "OK", "textOther": "その他", "textPictureFromLibrary": "ライブラリからのイメージ", "textPictureFromURL": "URLからのイメージ", @@ -240,8 +241,7 @@ "textSlideNumber": "スライド番号", "textTable": "表", "textTableSize": "表のサイズ", - "txtNotUrl": "このフィールドは、「http://www.example.com」の形式のURLである必要がある", - "textOk": "Ok" + "txtNotUrl": "このフィールドは、「http://www.example.com」の形式のURLである必要がある" }, "Edit": { "notcriticalErrorTitle": " 警告", @@ -261,6 +261,7 @@ "textAllCaps": "全ての大字", "textApplyAll": "全てのスライドに適用する", "textAuto": "自動", + "textAutomatic": "自動", "textBack": "戻る", "textBandedColumn": "列を交代する", "textBandedRow": "行を交代する", @@ -285,6 +286,7 @@ "textDefault": "選択したテキスト", "textDelay": "遅延", "textDeleteSlide": "スタンドを削除する", + "textDesign": "デザイン", "textDisplay": "表示する", "textDistanceFromText": "テキストからの間隔", "textDistributeHorizontally": "左右に整列", @@ -336,6 +338,7 @@ "textNoTextFound": "テキストが見つかりませんでした", "textNotUrl": "このフィールドは、「http://www.example.com」の形式のURLである必要があります。", "textNumbers": "数", + "textOk": "OK", "textOpacity": "不透明度", "textOptions": "設定", "textPictureFromLibrary": "ライブラリからのイメージ", @@ -390,10 +393,7 @@ "textZoom": "ズーム", "textZoomIn": "拡大", "textZoomOut": "縮小", - "textZoomRotate": "ズームと回転", - "textAutomatic": "Automatic", - "textDesign": "Design", - "textOk": "Ok" + "textZoomRotate": "ズームと回転" }, "Settings": { "mniSlideStandard": "標準(4:3)", @@ -410,6 +410,7 @@ "textColorSchemes": "色スキーム", "textComment": "コメント", "textCreated": "作成された", + "textDarkTheme": "デークテーマ", "textDisableAll": "全てを無効にする", "textDisableAllMacrosWithNotification": "警告を表示して全てのマクロを無効にする", "textDisableAllMacrosWithoutNotification": "警告を表示してないすべてのマクロを無効にする", @@ -472,8 +473,7 @@ "txtScheme6": "コンコース", "txtScheme7": "株主資本", "txtScheme8": "フロー", - "txtScheme9": "ファウンドリ", - "textDarkTheme": "Dark Theme" + "txtScheme9": "ファウンドリ" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/az.json b/apps/spreadsheeteditor/mobile/locale/az.json index 8edd8ccae..775fafeb9 100644 --- a/apps/spreadsheeteditor/mobile/locale/az.json +++ b/apps/spreadsheeteditor/mobile/locale/az.json @@ -298,8 +298,8 @@ "textWarnDeleteSheet": "İş vərəqində məlumat ola bilər. Əməliyyat davam etdirilsin?", "textHidden": "Hidden", "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "Bu sənəddə saxlanmamış dəyişiklikləriniz var. Avtomatik saxlanmanı gözləmək üçün \"Bu Səhifədə Qalın\" hissəsinin üzərinə klikləyin. Bütün saxlanmamış dəyişiklikləri ləğv etmək üçün \"Bu səhifədən Çıxın\" hissəsinin üzərinə klikləyin.", diff --git a/apps/spreadsheeteditor/mobile/locale/be.json b/apps/spreadsheeteditor/mobile/locale/be.json index cc401449d..628ff6163 100644 --- a/apps/spreadsheeteditor/mobile/locale/be.json +++ b/apps/spreadsheeteditor/mobile/locale/be.json @@ -250,8 +250,8 @@ "textHide": "Hide", "textMore": "More", "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)", "textOk": "Ok", "textRename": "Rename", "textRenameSheet": "Rename Sheet", diff --git a/apps/spreadsheeteditor/mobile/locale/bg.json b/apps/spreadsheeteditor/mobile/locale/bg.json index 4621ba6ad..92302679e 100644 --- a/apps/spreadsheeteditor/mobile/locale/bg.json +++ b/apps/spreadsheeteditor/mobile/locale/bg.json @@ -299,7 +299,9 @@ "textMove": "Move", "textMoveBack": "Move back", "textMoveForward": "Move forward", - "textHidden": "Hidden" + "textHidden": "Hidden", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "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 ff22a2004..640adbb16 100644 --- a/apps/spreadsheeteditor/mobile/locale/ca.json +++ b/apps/spreadsheeteditor/mobile/locale/ca.json @@ -299,7 +299,9 @@ "textSheet": "Full", "textSheetName": "Nom del full", "textUnhide": "Mostrar", - "textWarnDeleteSheet": "El full de càlcul pot tenir dades. Vols continuar amb l'operació?" + "textWarnDeleteSheet": "El full de càlcul pot tenir dades. Vols continuar amb l'operació?", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "Tens canvis no desats en aquest document. Fes clic a \"Queda't en aquesta pàgina\" per esperar al desament automàtic. Fes 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 6a50552cd..e68d6d3c1 100644 --- a/apps/spreadsheeteditor/mobile/locale/cs.json +++ b/apps/spreadsheeteditor/mobile/locale/cs.json @@ -36,7 +36,7 @@ "ThemeColorPalette": { "textCustomColors": "Vlastní barvy", "textStandartColors": "Standardní barvy", - "textThemeColors": "Barvy motivu vzhledu" + "textThemeColors": "Barvy vzhledu prostředí" } }, "ContextMenu": { @@ -68,6 +68,7 @@ "Main": { "criticalErrorTitle": "Chyba", "errorAccessDeny": "Pokoušíte se provést akci, na kterou nemáte oprávnění.
Obraťte se na Vašeho správce.", + "errorOpensource": "Při využívání bezplatné komunitní veze, můžete otevřít dokumenty pouze pro náhled. Pro získání přístupu k mobilním online editorům, je nutná komerční licence.", "errorProcessSaveResult": "Ukládání selhalo.", "errorServerVersion": "Verze editoru byla aktualizována. Stránka bude znovu načtena, aby se změny uplatnily.", "errorUpdateVersion": "Verze souboru byla změněna. Stránka bude znovu načtena.", @@ -142,9 +143,14 @@ "textGuest": "Návštěvník", "textHasMacros": "Soubor obsahuje automatická makra.
Opravdu chcete makra spustit?", "textNo": "Ne", + "textNoChoices": "Neexistují žádné možnosti pro vyplnění buňky.
Jako náhradu je možné vybrat pouze textové hodnoty ze sloupce.", "textNoLicenseTitle": "Došlo k dosažení limitu licence", + "textNoTextFound": "Text nebyl nalezen", + "textOk": "OK", "textPaidFeature": "Placená funkce", "textRemember": "Zapamatovat moji volbu", + "textReplaceSkipped": "Nahrazení bylo provedeno. {0} výskytů bylo přeskočeno.", + "textReplaceSuccess": "Hledání bylo dokončeno. Nahrazeno výskytů: {0}", "textYes": "Ano", "titleServerVersion": "Editor byl aktualizován", "titleUpdateVersion": "Verze změněna", @@ -154,13 +160,7 @@ "warnLicenseUsersExceeded": "Došlo dosažení limitu %1 editorů v režimu spolupráce na úpravách. Ohledně podrobností se obraťte na svého správce.", "warnNoLicense": "Došlo k dosažení limitu souběžného připojení %1 editorů. Tento dokument bude otevřen pouze pro náhled. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", "warnNoLicenseUsers": "Došlo k dosažení limitu %1 editorů. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", - "warnProcessRightsChange": "Nemáte oprávnění pro úpravu tohoto dokumentu.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", - "textNoTextFound": "Text not found", - "textOk": "Ok", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "Nemáte oprávnění pro úpravu tohoto dokumentu." } }, "Error": { @@ -175,6 +175,7 @@ "errorAutoFilterDataRange": "Operaci nelze pro zvolený rozsah buněk provést.
Vyberte jednotnou oblast dat uvnitř nebo vně tabulky a zkuste to znovu.", "errorAutoFilterHiddenRange": "Operaci nelze provést, protože oblast obsahuje filtrované buňky.
Odkryjte filtrované prvky a zkuste to znovu.", "errorBadImageUrl": "Adresa URL obrázku je nesprávná", + "errorCannotUseCommandProtectedSheet": "Tento příkaz nelze použít na zabezpečený list. Pro použití příkazu, zrušte zabezpečení listu.
Může být vyžadováno zadání hesla.", "errorChangeArray": "Nemůžete měnit část pole.", "errorChangeOnProtectedSheet": "Buňka nebo graf, který se pokoušíte změnit je na zabezpečeném listu. Pro provedení změny, vypněte zabezpečení listu. Může být vyžadováno zadání hesla.", "errorConnectToServer": "Není možné uložit dokument. Zkontrolujte nastavení připojení, nebo kontaktujte Vašeho správce.
Po kliknutím na tlačítko 'OK' budete vyzváni ke stažení dokumentu.", @@ -233,8 +234,7 @@ "unknownErrorText": "Neznámá chyba.", "uploadImageExtMessage": "Neznámý formát obrázku.", "uploadImageFileCountMessage": "Nenahrány žádné obrázky.", - "uploadImageSizeMessage": "Obrázek je příliš velký. Maximální velikost je 25 MB.", - "errorCannotUseCommandProtectedSheet": "You cannot use this command on a protected sheet. To use this command, unprotect the sheet.
You might be requested to enter a password." + "uploadImageSizeMessage": "Obrázek je příliš velký. Maximální velikost je 25 MB." }, "LongActions": { "advDRMPassword": "Heslo", @@ -287,8 +287,12 @@ "textErrNotEmpty": "List musí mít název", "textErrorLastSheet": "Sešit musí obsahovat alespoň jeden viditelný list.", "textErrorRemoveSheet": "Nelze odstranit list.", + "textHidden": "Skrytý", "textHide": "Skrýt", "textMore": "Více", + "textMove": "Přesunout", + "textMoveBack": "Posunout zpět", + "textMoveForward": "Posunout vpřed", "textOk": "OK", "textRename": "Přejmenovat", "textRenameSheet": "Přejmenovat list", @@ -296,10 +300,8 @@ "textSheetName": "Název listu", "textUnhide": "Odkrýt", "textWarnDeleteSheet": "List může obsahovat data. Pokračovat v operaci? ", - "textHidden": "Hidden", - "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "V tomto dokumentu máte neuložené změny. Klikněte na 'Zůstat na této stránce' a počkejte dokud nedojde k automatickému uložení. Klikněte na 'Opustit tuto stránku' pro zahození neuložených změn.", @@ -342,6 +344,7 @@ "textLink": "Odkaz", "textLinkSettings": "Nastavení odkazů", "textLinkType": "Typ odkazu", + "textOk": "OK", "textOther": "Jiné", "textPictureFromLibrary": "Obrázek z knihovny", "textPictureFromURL": "Obrázek z adresy URL", @@ -359,8 +362,7 @@ "txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"", "txtSorting": "Řazení", "txtSortSelected": "Seřadit vybrané", - "txtYes": "Ano", - "textOk": "Ok" + "txtYes": "Ano" }, "Edit": { "notcriticalErrorTitle": "Varování", @@ -379,6 +381,7 @@ "textAngleClockwise": "Otočit ve směru hodinových ručiček", "textAngleCounterclockwise": "Otočit proti směru hodinových ručiček", "textAuto": "Automaticky", + "textAutomatic": "Automaticky", "textAxisCrosses": "Křížení os", "textAxisOptions": "Možnosti osy", "textAxisPosition": "Pozice osy", @@ -479,6 +482,7 @@ "textNoOverlay": "Bez překrytí", "textNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"", "textNumber": "Číslo", + "textOk": "OK", "textOnTickMarks": "Na značkách zaškrtnutí", "textOpacity": "Průhlednost", "textOut": "Vně", @@ -540,9 +544,7 @@ "textYen": "Jen", "txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"", "txtSortHigh2Low": "Seřadit od nejvyššího po nejnižší", - "txtSortLow2High": "Seřadit od nejnižšího po nejvyšší", - "textAutomatic": "Automatic", - "textOk": "Ok" + "txtSortLow2High": "Seřadit od nejnižšího po nejvyšší" }, "Settings": { "advCSVOptions": "Vyberte možnosti CSV", @@ -572,6 +574,7 @@ "textComments": "Komentáře", "textCreated": "Vytvořeno", "textCustomSize": "Vlastní velikost", + "textDarkTheme": "Tmavý vzhled prostředí", "textDelimeter": "Oddělovač", "textDisableAll": "Vypnout vše", "textDisableAllMacrosWithNotification": "Vypnout všechna makra s notifikacemi", @@ -672,8 +675,7 @@ "txtSemicolon": "Středník", "txtSpace": "Mezera", "txtTab": "Tabulátor", - "warnDownloadAs": "Pokud budete pokračovat v ukládání v tomto formátu, vše kromě textu bude ztraceno.
Opravdu chcete pokračovat?", - "textDarkTheme": "Dark Theme" + "warnDownloadAs": "Pokud budete pokračovat v ukládání v tomto formátu, vše kromě textu bude ztraceno.
Opravdu chcete pokračovat?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/da.json b/apps/spreadsheeteditor/mobile/locale/da.json index d65416a67..52cdd0fa8 100644 --- a/apps/spreadsheeteditor/mobile/locale/da.json +++ b/apps/spreadsheeteditor/mobile/locale/da.json @@ -292,8 +292,8 @@ "textErrorLastSheet": "The workbook must have at least one visible worksheet.", "textHidden": "Hidden", "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)", "textRename": "Rename", "textRenameSheet": "Rename Sheet", "textSheet": "Sheet", diff --git a/apps/spreadsheeteditor/mobile/locale/de.json b/apps/spreadsheeteditor/mobile/locale/de.json index a159b2f01..361281e27 100644 --- a/apps/spreadsheeteditor/mobile/locale/de.json +++ b/apps/spreadsheeteditor/mobile/locale/de.json @@ -299,7 +299,9 @@ "textSheetName": "Blattname", "textUnhide": "Einblenden", "textWarnDeleteSheet": "Das Arbeitsblatt kann Daten enthalten. Möchten Sie fortsetzen?", - "textHidden": "Hidden" + "textHidden": "Hidden", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "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 d235ae34d..182a36481 100644 --- a/apps/spreadsheeteditor/mobile/locale/el.json +++ b/apps/spreadsheeteditor/mobile/locale/el.json @@ -299,7 +299,9 @@ "textSheet": "Φύλλο", "textSheetName": "Όνομα Φύλλου", "textUnhide": "Αναίρεση απόκρυψης", - "textWarnDeleteSheet": "Το φύλλο εργασίας ίσως περιέχει δεδομένα. Να συνεχιστεί η λειτουργία;" + "textWarnDeleteSheet": "Το φύλλο εργασίας ίσως περιέχει δεδομένα. Να συνεχιστεί η λειτουργία;", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "Έχετε μη αποθηκευμένες αλλαγές στο έγγραφο. Πατήστε 'Παραμονή στη Σελίδα' για να περιμένετε την αυτόματη αποθήκευση. Πατήστε 'Έξοδος από τη Σελίδα' για να απορρίψετε όλες τις μη αποθηκευμένες αλλαγές.", diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json index af000bd4f..8f03b7e5f 100644 --- a/apps/spreadsheeteditor/mobile/locale/en.json +++ b/apps/spreadsheeteditor/mobile/locale/en.json @@ -291,8 +291,8 @@ "textHide": "Hide", "textMore": "More", "textMove": "Move", - "textMoveToEnd": "(Move to end)", "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)", "textOk": "Ok", "textRename": "Rename", "textRenameSheet": "Rename Sheet", diff --git a/apps/spreadsheeteditor/mobile/locale/es.json b/apps/spreadsheeteditor/mobile/locale/es.json index f95428ed4..33c91d59a 100644 --- a/apps/spreadsheeteditor/mobile/locale/es.json +++ b/apps/spreadsheeteditor/mobile/locale/es.json @@ -299,7 +299,9 @@ "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?", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "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 d5881286f..7da3e4ec9 100644 --- a/apps/spreadsheeteditor/mobile/locale/fr.json +++ b/apps/spreadsheeteditor/mobile/locale/fr.json @@ -292,7 +292,9 @@ "textMore": "Plus", "textMove": "Déplacer", "textMoveBack": "Déplacer vers l’arrière", + "textMoveBefore": "Déplacer avant la feuille", "textMoveForward": "Déplacer vers l'avant", + "textMoveToEnd": "(Déplacer à la fin)", "textOk": "OK", "textRename": "Renommer", "textRenameSheet": "Renommer la feuille", diff --git a/apps/spreadsheeteditor/mobile/locale/gl.json b/apps/spreadsheeteditor/mobile/locale/gl.json index 2b05c032f..3a6570a05 100644 --- a/apps/spreadsheeteditor/mobile/locale/gl.json +++ b/apps/spreadsheeteditor/mobile/locale/gl.json @@ -299,7 +299,9 @@ "textSheet": "Folla", "textSheetName": "Nome da folla", "textUnhide": "Volver a amosar", - "textWarnDeleteSheet": "A folla de traballo pode que conteña datos. Queres continuar a operación?" + "textWarnDeleteSheet": "A folla de traballo pode que conteña datos. Queres continuar a operación?", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "Ten cambios non gardados neste documento. Prema en \"Quedarse nesta páxina\" para esperar ata que se garden automaticamente. Prema en \"Saír desta páxina\" para descartar todos os cambios non gardados.", diff --git a/apps/spreadsheeteditor/mobile/locale/hu.json b/apps/spreadsheeteditor/mobile/locale/hu.json index 21458aa96..cb0bea492 100644 --- a/apps/spreadsheeteditor/mobile/locale/hu.json +++ b/apps/spreadsheeteditor/mobile/locale/hu.json @@ -299,7 +299,9 @@ "textSheetName": "Munkalap neve", "textUnhide": "Megmutat", "textWarnDeleteSheet": "A munkalap lehet hogy tartalmaz adatok. Folytatja a műveletet?", - "textHidden": "Hidden" + "textHidden": "Hidden", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "Nem mentett módosításai vannak ebben a dokumentumban. Kattintson a „Maradj ezen az oldalon” gombra az automatikus mentés megvárásához. Kattintson a \"Hagyja el ezt az oldalt\" gombra az összes nem mentett módosítás elvetéséhez.", diff --git a/apps/spreadsheeteditor/mobile/locale/it.json b/apps/spreadsheeteditor/mobile/locale/it.json index ebc97d77f..e21ee6063 100644 --- a/apps/spreadsheeteditor/mobile/locale/it.json +++ b/apps/spreadsheeteditor/mobile/locale/it.json @@ -299,7 +299,9 @@ "textSheet": "Foglio", "textSheetName": "Nome foglio", "textUnhide": "Scoprire", - "textWarnDeleteSheet": "Il foglio di calcolo potrebbe contenere dati. Procedere con l'operazione?" + "textWarnDeleteSheet": "Il foglio di calcolo potrebbe contenere dati. Procedere con l'operazione?", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "Ci sono i cambiamenti non salvati in questo documento. Fai clic su \"Rimanere su questa pagina\" per attendere il salvataggio automatico. Fai clic su \"Lasciare questa pagina\" per eliminare tutti i cambiamenti non salvati.", diff --git a/apps/spreadsheeteditor/mobile/locale/ja.json b/apps/spreadsheeteditor/mobile/locale/ja.json index a124550e5..1e03929fc 100644 --- a/apps/spreadsheeteditor/mobile/locale/ja.json +++ b/apps/spreadsheeteditor/mobile/locale/ja.json @@ -68,6 +68,7 @@ "Main": { "criticalErrorTitle": "エラー", "errorAccessDeny": "許可されていないアクションを実行しています。アドミニストレータを連絡してください。", + "errorOpensource": "無料のコミュニティバージョンを使用すると、表示専用のドキュメントを開くことができます。モバイルWebエディターにアクセスするには、商用ライセンスが必要です。", "errorProcessSaveResult": "保存が失敗", "errorServerVersion": "エディターのバージョンが更新されました。 変更を適用するために、ページが再読み込みされます。", "errorUpdateVersion": "ファイルのバージョンが変更されました。ページが再ロードされます。", @@ -142,9 +143,14 @@ "textGuest": "ゲスト", "textHasMacros": "ファイルには自動マクロが含まれています。
マクロを実行しますか?", "textNo": "いいえ", + "textNoChoices": "セルを記入する選択肢がありません。
置換対象として選択できるのは列のテキスト値のみです。", "textNoLicenseTitle": "ライセンス制限に達しました", + "textNoTextFound": "テキストが見つかりませんでした", + "textOk": "OK", "textPaidFeature": "有料機能", "textRemember": "選択を覚える", + "textReplaceSkipped": "置換が完了しました。{0}つスキップされました。", + "textReplaceSuccess": "検索が完了しました。{0}つが置換されました。", "textYes": "Yes", "titleServerVersion": "編集者が更新された", "titleUpdateVersion": "バージョンが変更されました", @@ -154,13 +160,7 @@ "warnLicenseUsersExceeded": "%1エディターのユーザー制限に達しました。 詳細についてはアドミニストレータを連絡してください。", "warnNoLicense": "%1エディター 時接続数の制限に達しました。この文書が見るだけのために開かれる。個人的なアップグレード条件については、%1営業チームを連絡してください。", "warnNoLicenseUsers": "%1エディターのユーザー制限に達しました。 個人的なアップグレード条件については、%1営業チームを連絡してください。", - "warnProcessRightsChange": "ファイルを編集する権限がありません!", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", - "textNoTextFound": "Text not found", - "textOk": "Ok", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "ファイルを編集する権限がありません!" } }, "Error": { @@ -175,6 +175,7 @@ "errorAutoFilterDataRange": "選択したセルの範囲に対しては操作を実行できません。表の中また表の外に均質のデータの範囲を選択してもう一度してください。", "errorAutoFilterHiddenRange": "範囲がフィルターセルがありますから操作を実行できません。フィルターした要素を表示してもう一度してください。", "errorBadImageUrl": "画像のURLが正しくありません。", + "errorCannotUseCommandProtectedSheet": "このコマンドは、保護されたシートでは使用できません。このコマンドを使用するには、シートの保護を解除してください。
パスワードの入力を求められる場合があります。", "errorChangeArray": "配列の一部を変更することはできません。", "errorChangeOnProtectedSheet": "変更しようとしているセルやチャートが保護されたシートにあります。変更するには、対象のシートの保護を解除してください。パスワードの入力を求められる場合があります。", "errorConnectToServer": "この文書を保存できません。接続設定をチェックし、アドミニストレータを連絡してください。
「OK」をクリックすると、文書をダウンロードするに提案されます。", @@ -233,8 +234,7 @@ "unknownErrorText": "不明なエラー", "uploadImageExtMessage": "不明なイメージ形式", "uploadImageFileCountMessage": "アップロードしたイメージがない", - "uploadImageSizeMessage": "イメージのサイズの上限が超えさせました。サイズの上限が25MB。", - "errorCannotUseCommandProtectedSheet": "You cannot use this command on a protected sheet. To use this command, unprotect the sheet.
You might be requested to enter a password." + "uploadImageSizeMessage": "イメージのサイズの上限が超えさせました。サイズの上限が25MB。" }, "LongActions": { "advDRMPassword": "パスワード", @@ -287,8 +287,12 @@ "textErrNotEmpty": "シート名は空であってはなりません", "textErrorLastSheet": "ブックではシートが少なくとも 1 つ表示されている必要があります。", "textErrorRemoveSheet": "ワークシートを削除できません。", + "textHidden": "非表示", "textHide": "隠す", "textMore": "もっと", + "textMove": "移動", + "textMoveBack": "後面に移動", + "textMoveForward": "前面に移動", "textOk": "OK", "textRename": "名前の変更", "textRenameSheet": "このシートの名前を変更する", @@ -296,10 +300,8 @@ "textSheetName": "シートの名", "textUnhide": "表示する", "textWarnDeleteSheet": "ワークシートはデータがあるそうです。操作を続けてもよろしいですか?", - "textHidden": "Hidden", - "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "保存されていない変更があります。自動保存を待つように「このページから移動しない」をクリックしてください。保存されていない変更を破棄ように「このページから移動する」をクリックしてください。", @@ -342,6 +344,7 @@ "textLink": "リンク", "textLinkSettings": "リンク設定", "textLinkType": "リンクのタイプ", + "textOk": "OK", "textOther": "その他", "textPictureFromLibrary": "ライブラリからのイメージ", "textPictureFromURL": "URLからのイメージ", @@ -359,8 +362,7 @@ "txtNotUrl": "このフィールドは、「http://www.example.com」の形式のURLである必要があります。", "txtSorting": "並べ替え中", "txtSortSelected": "選択したを並べ替える", - "txtYes": "Yes", - "textOk": "Ok" + "txtYes": "Yes" }, "Edit": { "notcriticalErrorTitle": " 警告", @@ -379,6 +381,7 @@ "textAngleClockwise": "右回りに​​回転", "textAngleCounterclockwise": "左回りに​​回転", "textAuto": "オート", + "textAutomatic": "自動", "textAxisCrosses": "軸との交点", "textAxisOptions": "軸の設定", "textAxisPosition": "軸位置", @@ -479,6 +482,7 @@ "textNoOverlay": "オーバーレイなし", "textNotUrl": "このフィールドは、「http://www.example.com」の形式のURLである必要があります。", "textNumber": "数", + "textOk": "OK", "textOnTickMarks": "目盛", "textOpacity": "不透明度", "textOut": "外", @@ -540,9 +544,7 @@ "textYen": "円", "txtNotUrl": "このフィールドは、「http://www.example.com」の形式のURLである必要があります。", "txtSortHigh2Low": " 大きい順に並べ替えます", - "txtSortLow2High": "小さい順に並べ替えます。", - "textAutomatic": "Automatic", - "textOk": "Ok" + "txtSortLow2High": "小さい順に並べ替えます。" }, "Settings": { "advCSVOptions": "CSVオプションを選択する", @@ -572,6 +574,7 @@ "textComments": "コメント", "textCreated": "作成された", "textCustomSize": "ユーザー設定サイズ", + "textDarkTheme": "ダークテーマ", "textDelimeter": "デリミタ", "textDisableAll": "全てを無効にする", "textDisableAllMacrosWithNotification": "警告を表示して全てのマクロを無効にする", @@ -672,8 +675,7 @@ "txtSemicolon": "セミコロン", "txtSpace": "スペース", "txtTab": "タブ", - "warnDownloadAs": "この形式で保存する続けば、テクスト除いて全てが失います。続けてもよろしいですか?", - "textDarkTheme": "Dark Theme" + "warnDownloadAs": "この形式で保存する続けば、テクスト除いて全てが失います。続けてもよろしいですか?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/ko.json b/apps/spreadsheeteditor/mobile/locale/ko.json index 603ba7041..afe5a7913 100644 --- a/apps/spreadsheeteditor/mobile/locale/ko.json +++ b/apps/spreadsheeteditor/mobile/locale/ko.json @@ -298,8 +298,8 @@ "textWarnDeleteSheet": "워크시트에 데이터가 포함될 수 있습니다. 진행 하시겠습니까?", "textHidden": "Hidden", "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "이 문서에 저장되지 않은 변경 사항이 있습니다. 자동 저장을 활성화하려면 \"이 페이지에서 나가기\"를 클릭하십시오. \"이 페이지에서 나가기\"를 클릭하면 저장되지 않은 모든 편집 내용이 삭제됩니다.", diff --git a/apps/spreadsheeteditor/mobile/locale/lo.json b/apps/spreadsheeteditor/mobile/locale/lo.json index 4621ba6ad..92302679e 100644 --- a/apps/spreadsheeteditor/mobile/locale/lo.json +++ b/apps/spreadsheeteditor/mobile/locale/lo.json @@ -299,7 +299,9 @@ "textMove": "Move", "textMoveBack": "Move back", "textMoveForward": "Move forward", - "textHidden": "Hidden" + "textHidden": "Hidden", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "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 4621ba6ad..92302679e 100644 --- a/apps/spreadsheeteditor/mobile/locale/lv.json +++ b/apps/spreadsheeteditor/mobile/locale/lv.json @@ -299,7 +299,9 @@ "textMove": "Move", "textMoveBack": "Move back", "textMoveForward": "Move forward", - "textHidden": "Hidden" + "textHidden": "Hidden", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "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 4621ba6ad..92302679e 100644 --- a/apps/spreadsheeteditor/mobile/locale/nb.json +++ b/apps/spreadsheeteditor/mobile/locale/nb.json @@ -299,7 +299,9 @@ "textMove": "Move", "textMoveBack": "Move back", "textMoveForward": "Move forward", - "textHidden": "Hidden" + "textHidden": "Hidden", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "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 50d782a98..07a11e956 100644 --- a/apps/spreadsheeteditor/mobile/locale/nl.json +++ b/apps/spreadsheeteditor/mobile/locale/nl.json @@ -298,8 +298,8 @@ "textWarnDeleteSheet": "Het werkblad heeft misschien gegevens. Verder gaan met de bewerking?", "textHidden": "Hidden", "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "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 4621ba6ad..92302679e 100644 --- a/apps/spreadsheeteditor/mobile/locale/pl.json +++ b/apps/spreadsheeteditor/mobile/locale/pl.json @@ -299,7 +299,9 @@ "textMove": "Move", "textMoveBack": "Move back", "textMoveForward": "Move forward", - "textHidden": "Hidden" + "textHidden": "Hidden", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "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 53a5216e4..8ba51641a 100644 --- a/apps/spreadsheeteditor/mobile/locale/pt.json +++ b/apps/spreadsheeteditor/mobile/locale/pt.json @@ -299,7 +299,9 @@ "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?", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "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 2521dd9dc..46fe48da3 100644 --- a/apps/spreadsheeteditor/mobile/locale/ro.json +++ b/apps/spreadsheeteditor/mobile/locale/ro.json @@ -292,7 +292,9 @@ "textMore": "Mai multe", "textMove": "Mutare", "textMoveBack": "Mutare înapoi", + "textMoveBefore": "Mutare înaintea foii", "textMoveForward": "Mutare înainte", + "textMoveToEnd": "(Mutare la sfârșit)", "textOk": "OK", "textRename": "Redenumire", "textRenameSheet": "Redenumire foaie", diff --git a/apps/spreadsheeteditor/mobile/locale/ru.json b/apps/spreadsheeteditor/mobile/locale/ru.json index 2bfbf03e9..bb7974196 100644 --- a/apps/spreadsheeteditor/mobile/locale/ru.json +++ b/apps/spreadsheeteditor/mobile/locale/ru.json @@ -292,7 +292,9 @@ "textMore": "Ещё", "textMove": "Переместить", "textMoveBack": "Переместить назад", + "textMoveBefore": "Переместить перед листом", "textMoveForward": "Переместить вперед", + "textMoveToEnd": "(Переместить в конец)", "textOk": "Ok", "textRename": "Переименовать", "textRenameSheet": "Переименовать лист", diff --git a/apps/spreadsheeteditor/mobile/locale/sk.json b/apps/spreadsheeteditor/mobile/locale/sk.json index 4621ba6ad..92302679e 100644 --- a/apps/spreadsheeteditor/mobile/locale/sk.json +++ b/apps/spreadsheeteditor/mobile/locale/sk.json @@ -299,7 +299,9 @@ "textMove": "Move", "textMoveBack": "Move back", "textMoveForward": "Move forward", - "textHidden": "Hidden" + "textHidden": "Hidden", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "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 4621ba6ad..92302679e 100644 --- a/apps/spreadsheeteditor/mobile/locale/sl.json +++ b/apps/spreadsheeteditor/mobile/locale/sl.json @@ -299,7 +299,9 @@ "textMove": "Move", "textMoveBack": "Move back", "textMoveForward": "Move forward", - "textHidden": "Hidden" + "textHidden": "Hidden", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "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 a86c63b82..377bb3dfe 100644 --- a/apps/spreadsheeteditor/mobile/locale/tr.json +++ b/apps/spreadsheeteditor/mobile/locale/tr.json @@ -299,7 +299,9 @@ "textSheetName": "Sayfa ismi", "textUnhide": "Gizlemeyi kaldır", "textWarnDeleteSheet": "Çalışma sayfasında veri olabilir. İşleme devam edilsin mi?", - "textHidden": "Hidden" + "textHidden": "Hidden", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "Bu belgede kaydedilmemiş değişiklikleriniz var. Otomatik kaydetmeyi beklemek için 'Bu Sayfada Kal' seçeneğini tıklayın. Kaydedilmemiş tüm değişiklikleri atmak için 'Bu Sayfadan Ayrıl'ı tıklayın.", diff --git a/apps/spreadsheeteditor/mobile/locale/uk.json b/apps/spreadsheeteditor/mobile/locale/uk.json index 4621ba6ad..92302679e 100644 --- a/apps/spreadsheeteditor/mobile/locale/uk.json +++ b/apps/spreadsheeteditor/mobile/locale/uk.json @@ -299,7 +299,9 @@ "textMove": "Move", "textMoveBack": "Move back", "textMoveForward": "Move forward", - "textHidden": "Hidden" + "textHidden": "Hidden", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "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 4621ba6ad..92302679e 100644 --- a/apps/spreadsheeteditor/mobile/locale/vi.json +++ b/apps/spreadsheeteditor/mobile/locale/vi.json @@ -299,7 +299,9 @@ "textMove": "Move", "textMoveBack": "Move back", "textMoveForward": "Move forward", - "textHidden": "Hidden" + "textHidden": "Hidden", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "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 cecedeb1d..fa6519a34 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh.json +++ b/apps/spreadsheeteditor/mobile/locale/zh.json @@ -299,7 +299,9 @@ "textSheet": "表格", "textSheetName": "工作表名称", "textUnhide": "取消隐藏", - "textWarnDeleteSheet": "该工作表可能带有数据。要进行操作吗?" + "textWarnDeleteSheet": "该工作表可能带有数据。要进行操作吗?", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "你在该文档中有未保存的修改。点击“留在该页”来等待自动保存。点击“离开该页”将舍弃全部未保存的更改。", From 4ce698b9b98e1d3646748c14f5114dac832f599c Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Mon, 21 Feb 2022 17:25:30 +0400 Subject: [PATCH 181/217] [DE PE SSE mobile] For Bug 53998 --- apps/documenteditor/mobile/src/page/main.jsx | 4 +++- apps/presentationeditor/mobile/src/page/main.jsx | 4 +++- apps/spreadsheeteditor/mobile/src/page/main.jsx | 5 ++++- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/apps/documenteditor/mobile/src/page/main.jsx b/apps/documenteditor/mobile/src/page/main.jsx index d1355598d..93f1dfa05 100644 --- a/apps/documenteditor/mobile/src/page/main.jsx +++ b/apps/documenteditor/mobile/src/page/main.jsx @@ -101,7 +101,9 @@ class MainPage extends Component { {/* Top Navbar */} - {showLogo && appOptions.canBranding !== undefined && } + {showLogo && appOptions.canBranding !== undefined &&
{ + window.open(`${__PUBLISHER_URL__}`, "_blank"); + }}>
} diff --git a/apps/presentationeditor/mobile/src/page/main.jsx b/apps/presentationeditor/mobile/src/page/main.jsx index a75e7c868..d1f099a0b 100644 --- a/apps/presentationeditor/mobile/src/page/main.jsx +++ b/apps/presentationeditor/mobile/src/page/main.jsx @@ -110,7 +110,9 @@ class MainPage extends Component { {/* Top Navbar */} - {showLogo && appOptions.canBranding !== undefined && } + {showLogo && appOptions.canBranding !== undefined &&
{ + window.open(`${__PUBLISHER_URL__}`, "_blank"); + }}>
} diff --git a/apps/spreadsheeteditor/mobile/src/page/main.jsx b/apps/spreadsheeteditor/mobile/src/page/main.jsx index d5e702e73..951bcc33b 100644 --- a/apps/spreadsheeteditor/mobile/src/page/main.jsx +++ b/apps/spreadsheeteditor/mobile/src/page/main.jsx @@ -107,7 +107,10 @@ class MainPage extends Component { {/* Top Navbar */} - {showLogo && appOptions.canBranding !== undefined && } + {showLogo && appOptions.canBranding !== undefined &&
{ + window.open(`${__PUBLISHER_URL__}`, "_blank"); + }}>
} From 76c3e48f1e136e2f5c49f5f7eabc9b4f93cd455d Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Mon, 21 Feb 2022 17:50:25 +0300 Subject: [PATCH 182/217] [SSE] Bug 55635 --- apps/spreadsheeteditor/main/app/controller/Print.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/spreadsheeteditor/main/app/controller/Print.js b/apps/spreadsheeteditor/main/app/controller/Print.js index 273fca42f..e8af354c4 100644 --- a/apps/spreadsheeteditor/main/app/controller/Print.js +++ b/apps/spreadsheeteditor/main/app/controller/Print.js @@ -318,9 +318,8 @@ define([ if (!!pageCount) { this.updateNavigationButtons(0, pageCount); this.printSettings.txtNumberPage.checkValidate(); - - this._isPreviewVisible = true; } + this._isPreviewVisible = true; }, openPrintSettings: function(type, cmp, format, asUrl) { From ad084e9656ae1586175ac0a60a33f0f096391096 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 21 Feb 2022 18:42:26 +0300 Subject: [PATCH 183/217] [PE] Fix animation effects --- apps/common/main/lib/util/define.js | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/apps/common/main/lib/util/define.js b/apps/common/main/lib/util/define.js index ce8b32f37..2bc566739 100644 --- a/apps/common/main/lib/util/define.js +++ b/apps/common/main/lib/util/define.js @@ -835,7 +835,7 @@ define(function(){ 'use strict'; {group: 'menu-effect-group-exit', value: AscFormat.EXIT_DISAPPEAR, iconCls: 'animation-exit-disappear', displayValue: this.textDisappear}, {group: 'menu-effect-group-exit', value: AscFormat.EXIT_FADE, iconCls: 'animation-exit-fade', displayValue: this.textFade}, {group: 'menu-effect-group-exit', value: AscFormat.EXIT_FLY_OUT_TO, iconCls: 'animation-exit-fly_out', displayValue: this.textFlyOut}, - {group: 'menu-effect-group-exit', value: AscFormat.EXIT_FLOAT, iconCls: 'animation-exit-float_out', displayValue: this.textFloatOut}, + {group: 'menu-effect-group-exit', value: AscFormat.EXIT_FLOAT_DOWN, iconCls: 'animation-exit-float_out', displayValue: this.textFloatOut, familyEffect: 'exitfloat'}, {group: 'menu-effect-group-exit', value: AscFormat.EXIT_SPLIT, iconCls: 'animation-exit-split', displayValue: this.textSplit}, {group: 'menu-effect-group-exit', value: AscFormat.EXIT_WIPE_FROM, iconCls: 'animation-exit-wipe', displayValue: this.textWipe}, {group: 'menu-effect-group-exit', value: AscFormat.EXIT_BOX, iconCls: 'animation-exit-shape', displayValue: this.textShape, familyEffect: 'shape'}, @@ -843,7 +843,7 @@ define(function(){ 'use strict'; {group: 'menu-effect-group-exit', value: AscFormat.EXIT_RANDOM_BARS, iconCls: 'animation-exit-random_bars', displayValue: this.textRandomBars}, {group: 'menu-effect-group-exit', value: AscFormat.EXIT_SHRINK_AND_TURN, iconCls: 'animation-exit-shrink_turn', displayValue: this.textShrinkTurn}, {group: 'menu-effect-group-exit', value: AscFormat.EXIT_ZOOM, iconCls: 'animation-exit-zoom', displayValue: this.textZoom}, - {group: 'menu-effect-group-exit', value: AscFormat.EXIT_BASIC_SWIVEL, iconCls: 'animation-exit-swivel', displayValue: this.textSwivel}, + {group: 'menu-effect-group-exit', value: AscFormat.EXIT_SWIVEL, iconCls: 'animation-exit-swivel', displayValue: this.textSwivel}, {group: 'menu-effect-group-exit', value: AscFormat.EXIT_BOUNCE, iconCls: 'animation-exit-bounce', displayValue: this.textBounce}, {group: 'menu-effect-group-path', value: AscFormat.MOTION_DOWN, iconCls: 'animation-motion_paths-lines', displayValue: this.textLines, familyEffect: 'pathlines'}, {group: 'menu-effect-group-path', value: AscFormat.MOTION_ARC_DOWN, iconCls: 'animation-motion_paths-arcs', displayValue: this.textArcs, familyEffect: 'patharcs'}, @@ -954,8 +954,8 @@ define(function(){ 'use strict'; {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_BASIC_ZOOM, displayValue: this.textBasicZoom}, {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_CENTER_REVOLVE, displayValue: this.textCenterRevolve}, {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_COLLAPSE, displayValue: this.textCollapse}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_FLOAT_DOWN, displayValue: this.textFloatDown}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_FLOAT_UP, displayValue: this.textFloatUp}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_FLOAT_DOWN, displayValue: this.textFloatDown, familyEffect: 'exitfloat'}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_FLOAT_UP, displayValue: this.textFloatUp, familyEffect: 'exitfloat'}, {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_SHRINK_AND_TURN, displayValue: this.textShrinkTurn}, {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_SINK_DOWN, displayValue: this.textSinkDown}, {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_SPINNER, displayValue: this.textSpinner}, @@ -1242,8 +1242,8 @@ define(function(){ 'use strict'; ]; case AscFormat.EXIT_ZOOM: return [ - {value: AscFormat.ENTRANCE_ZOOM_OBJECT_CENTER, caption: this.textObjectCenter}, - {value: AscFormat.ENTRANCE_ZOOM_SLIDE_CENTER, caption: this.textSlideCenter} + {value: AscFormat.EXIT_ZOOM_OBJECT_CENTER, caption: this.textObjectCenter}, + {value: AscFormat.EXIT_ZOOM_SLIDE_CENTER, caption: this.textSlideCenter} ]; case AscFormat.EXIT_BASIC_ZOOM: return [ @@ -1337,6 +1337,11 @@ define(function(){ 'use strict'; {value: AscFormat.ENTRANCE_FLOAT_UP, caption: this.textFloatUp}, {value: AscFormat.ENTRANCE_FLOAT_DOWN, caption: this.textFloatDown} ]; + case 'exitfloat': + return [ + {value: AscFormat.EXIT_FLOAT_UP, caption: this.textFloatUp}, + {value: AscFormat.EXIT_FLOAT_DOWN, caption: this.textFloatDown} + ]; default: return []; } From a0ce0f13c7a28ea1a1e58698646792c54f77f379 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 21 Feb 2022 21:21:12 +0300 Subject: [PATCH 184/217] [PE] Fix Bug 55681 (fix default animation parameters) --- apps/common/main/lib/util/define.js | 98 +++++++++---------- .../main/app/view/Animation.js | 4 +- apps/presentationeditor/main/locale/en.json | 6 +- 3 files changed, 55 insertions(+), 53 deletions(-) diff --git a/apps/common/main/lib/util/define.js b/apps/common/main/lib/util/define.js index 2bc566739..df54c82e2 100644 --- a/apps/common/main/lib/util/define.js +++ b/apps/common/main/lib/util/define.js @@ -760,10 +760,10 @@ define(function(){ 'use strict'; textObjectCenter: 'Object Center', textSlideCenter: 'Slide Center', textInFromScreenCenter: 'In From Screen Center', - textInToScreenCenter: 'In To Screen Center', - textInSlightly: 'In Slightly', textOutFromScreenBottom: 'Out From Screen Bottom', - textToFromScreenBottom: 'Out To Screen Bottom', + textInSlightly: 'In Slightly', + textInToScreenBottom: 'In To Screen Bottom', + textOutToScreenCenter: 'Out To Screen Center', textOutSlightly: 'Out Slightly', textToBottom: 'To Bottom', textToBottomLeft: 'To Bottom-Left', @@ -812,7 +812,7 @@ define(function(){ 'use strict'; {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_FLOAT_UP, iconCls: 'animation-entrance-float_in', displayValue: this.textFloatIn, familyEffect: 'entrfloat'}, {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_SPLIT, iconCls: 'animation-entrance-split', displayValue: this.textSplit}, {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_WIPE_FROM, iconCls: 'animation-entrance-wipe', displayValue: this.textWipe}, - {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_BOX, iconCls: 'animation-entrance-shape', displayValue: this.textShape, familyEffect: 'entrshape'}, + {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_CIRCLE, iconCls: 'animation-entrance-shape', displayValue: this.textShape, familyEffect: 'entrshape'}, {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_WHEEL, iconCls: 'animation-entrance-wheel', displayValue: this.textWheel}, {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_RANDOM_BARS, iconCls: 'animation-entrance-random_bars', displayValue: this.textRandomBars}, {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_GROW_AND_TURN, iconCls: 'animation-entrance-grow_turn', displayValue: this.textGrowTurn}, @@ -838,7 +838,7 @@ define(function(){ 'use strict'; {group: 'menu-effect-group-exit', value: AscFormat.EXIT_FLOAT_DOWN, iconCls: 'animation-exit-float_out', displayValue: this.textFloatOut, familyEffect: 'exitfloat'}, {group: 'menu-effect-group-exit', value: AscFormat.EXIT_SPLIT, iconCls: 'animation-exit-split', displayValue: this.textSplit}, {group: 'menu-effect-group-exit', value: AscFormat.EXIT_WIPE_FROM, iconCls: 'animation-exit-wipe', displayValue: this.textWipe}, - {group: 'menu-effect-group-exit', value: AscFormat.EXIT_BOX, iconCls: 'animation-exit-shape', displayValue: this.textShape, familyEffect: 'shape'}, + {group: 'menu-effect-group-exit', value: AscFormat.EXIT_CIRCLE, iconCls: 'animation-exit-shape', displayValue: this.textShape, familyEffect: 'shape'}, {group: 'menu-effect-group-exit', value: AscFormat.EXIT_WHEEL, iconCls: 'animation-exit-wheel', displayValue: this.textWheel}, {group: 'menu-effect-group-exit', value: AscFormat.EXIT_RANDOM_BARS, iconCls: 'animation-exit-random_bars', displayValue: this.textRandomBars}, {group: 'menu-effect-group-exit', value: AscFormat.EXIT_SHRINK_AND_TURN, iconCls: 'animation-exit-shrink_turn', displayValue: this.textShrinkTurn}, @@ -1043,33 +1043,33 @@ define(function(){ 'use strict'; switch (type) { case AscFormat.ENTRANCE_BLINDS: return [ - {value: AscFormat.ENTRANCE_BLINDS_HORIZONTAL, caption: this.textHorizontal}, + {value: AscFormat.ENTRANCE_BLINDS_HORIZONTAL, caption: this.textHorizontal, defvalue: true}, {value: AscFormat.ENTRANCE_BLINDS_VERTICAL, caption: this.textVertical} ]; case AscFormat.ENTRANCE_BOX: return [ - {value: AscFormat.ENTRANCE_BOX_IN, caption: this.textIn}, + {value: AscFormat.ENTRANCE_BOX_IN, caption: this.textIn, defvalue: true}, {value: AscFormat.ENTRANCE_BOX_OUT, caption: this.textOut} ]; case AscFormat.ENTRANCE_CHECKERBOARD: return [ - {value: AscFormat.ENTRANCE_CHECKERBOARD_ACROSS, caption: this.textAcross}, + {value: AscFormat.ENTRANCE_CHECKERBOARD_ACROSS, caption: this.textAcross, defvalue: true}, {value: AscFormat.ENTRANCE_CHECKERBOARD_DOWN, caption: this.textDown} ]; case AscFormat.ENTRANCE_CIRCLE: return [ - {value: AscFormat.ENTRANCE_CIRCLE_IN, caption: this.textIn}, + {value: AscFormat.ENTRANCE_CIRCLE_IN, caption: this.textIn, defvalue: true}, {value: AscFormat.ENTRANCE_CIRCLE_OUT, caption: this.textOut} ]; case AscFormat.ENTRANCE_DIAMOND: return [ - {value: AscFormat.ENTRANCE_DIAMOND_IN, caption: this.textIn}, + {value: AscFormat.ENTRANCE_DIAMOND_IN, caption: this.textIn, defvalue: true}, {value: AscFormat.ENTRANCE_DIAMOND_OUT, caption: this.textOut} ]; case AscFormat.ENTRANCE_FLY_IN_FROM: return [ - {value: AscFormat.ENTRANCE_FLY_IN_FROM_BOTTOM, caption: this.textFromBottom}, + {value: AscFormat.ENTRANCE_FLY_IN_FROM_BOTTOM, caption: this.textFromBottom, defvalue: true}, {value: AscFormat.ENTRANCE_FLY_IN_FROM_BOTTOM_LEFT, caption: this.textFromBottomLeft}, {value: AscFormat.ENTRANCE_FLY_IN_FROM_LEFT, caption: this.textFromLeft}, {value: AscFormat.ENTRANCE_FLY_IN_FROM_TOP_LEFT, caption: this.textFromTopLeft}, @@ -1080,38 +1080,38 @@ define(function(){ 'use strict'; ]; case AscFormat.ENTRANCE_PEEK_IN_FROM: return [ - {value: AscFormat.ENTRANCE_PEEK_IN_FROM_BOTTOM, caption: this.textFromBottom}, + {value: AscFormat.ENTRANCE_PEEK_IN_FROM_BOTTOM, caption: this.textFromBottom, defvalue: true}, {value: AscFormat.ENTRANCE_PEEK_IN_FROM_LEFT, caption: this.textFromLeft}, {value: AscFormat.ENTRANCE_PEEK_IN_FROM_RIGHT, caption: this.textFromRight}, {value: AscFormat.ENTRANCE_PEEK_IN_FROM_TOP, caption: this.textFromTop} ]; case AscFormat.ENTRANCE_PLUS: return [ - {value: AscFormat.ENTRANCE_PLUS_IN, caption: this.textIn}, + {value: AscFormat.ENTRANCE_PLUS_IN, caption: this.textIn, defvalue: true}, {value: AscFormat.ENTRANCE_PLUS_OUT, caption: this.textOut} ]; case AscFormat.ENTRANCE_RANDOM_BARS: return [ - {value: AscFormat.ENTRANCE_RANDOM_BARS_HORIZONTAL, caption: this.textHorizontal}, + {value: AscFormat.ENTRANCE_RANDOM_BARS_HORIZONTAL, caption: this.textHorizontal, defvalue: true}, {value: AscFormat.ENTRANCE_RANDOM_BARS_VERTICAL, caption: this.textVertical} ]; case AscFormat.ENTRANCE_SPLIT: return [ {value: AscFormat.ENTRANCE_SPLIT_HORIZONTAL_IN, caption: this.textHorizontalIn}, {value: AscFormat.ENTRANCE_SPLIT_HORIZONTAL_OUT, caption: this.textHorizontalOut}, - {value: AscFormat.ENTRANCE_SPLIT_VERTICAL_IN, caption: this.textVerticalIn}, + {value: AscFormat.ENTRANCE_SPLIT_VERTICAL_IN, caption: this.textVerticalIn, defvalue: true}, {value: AscFormat.ENTRANCE_SPLIT_VERTICAL_OUT, caption: this.textVerticalOut} ]; case AscFormat.ENTRANCE_STRIPS: return [ - {value: AscFormat.ENTRANCE_STRIPS_LEFT_DOWN, caption: this.textLeftDown}, + {value: AscFormat.ENTRANCE_STRIPS_LEFT_DOWN, caption: this.textLeftDown, defvalue: true}, {value: AscFormat.ENTRANCE_STRIPS_LEFT_UP, caption: this.textLeftUp}, {value: AscFormat.ENTRANCE_STRIPS_RIGHT_DOWN, caption: this.textRightDown}, {value: AscFormat.ENTRANCE_STRIPS_RIGHT_UP, caption: this.textRightUp} ]; case AscFormat.ENTRANCE_WHEEL: return [ - {value: AscFormat.ENTRANCE_WHEEL_1_SPOKE, caption: this.textSpoke1}, + {value: AscFormat.ENTRANCE_WHEEL_1_SPOKE, caption: this.textSpoke1, defvalue: true}, {value: AscFormat.ENTRANCE_WHEEL_2_SPOKES, caption: this.textSpoke2}, {value: AscFormat.ENTRANCE_WHEEL_3_SPOKES, caption: this.textSpoke3}, {value: AscFormat.ENTRANCE_WHEEL_4_SPOKES, caption: this.textSpoke4}, @@ -1119,19 +1119,19 @@ define(function(){ 'use strict'; ]; case AscFormat.ENTRANCE_WIPE_FROM: return [ - {value: AscFormat.ENTRANCE_WIPE_FROM_BOTTOM, caption: this.textFromBottom}, + {value: AscFormat.ENTRANCE_WIPE_FROM_BOTTOM, caption: this.textFromBottom, defvalue: true}, {value: AscFormat.ENTRANCE_WIPE_FROM_LEFT, caption: this.textFromLeft}, {value: AscFormat.ENTRANCE_WIPE_FROM_RIGHT, caption: this.textFromRight}, {value: AscFormat.ENTRANCE_WIPE_FROM_TOP, caption: this.textFromTop} ]; case AscFormat.ENTRANCE_ZOOM: return [ - {value: AscFormat.ENTRANCE_ZOOM_OBJECT_CENTER, caption: this.textObjectCenter}, + {value: AscFormat.ENTRANCE_ZOOM_OBJECT_CENTER, caption: this.textObjectCenter, defvalue: true}, {value: AscFormat.ENTRANCE_ZOOM_SLIDE_CENTER, caption: this.textSlideCenter} ]; case AscFormat.ENTRANCE_BASIC_ZOOM: return [ - {value: AscFormat.ENTRANCE_BASIC_ZOOM_IN, caption: this.textIn}, + {value: AscFormat.ENTRANCE_BASIC_ZOOM_IN, caption: this.textIn, defvalue: true}, {value: AscFormat.ENTRANCE_BASIC_ZOOM_IN_FROM_SCREEN_CENTER, caption: this.textInFromScreenCenter}, {value: AscFormat.ENTRANCE_BASIC_ZOOM_IN_SLIGHTLY, caption: this.textInSlightly}, {value: AscFormat.ENTRANCE_BASIC_ZOOM_OUT, caption: this.textOut}, @@ -1140,7 +1140,7 @@ define(function(){ 'use strict'; ]; case AscFormat.ENTRANCE_STRETCH: return [ - {value: AscFormat.ENTRANCE_STRETCH_ACROSS, caption: this.textAcross}, + {value: AscFormat.ENTRANCE_STRETCH_ACROSS, caption: this.textAcross, defvalue: true}, {value: AscFormat.ENTRANCE_STRETCH_FROM_BOTTOM, caption: this.textFromBottom}, {value: AscFormat.ENTRANCE_STRETCH_FROM_LEFT, caption: this.textFromLeft}, {value: AscFormat.ENTRANCE_STRETCH_FROM_RIGHT, caption: this.textFromRight}, @@ -1148,7 +1148,7 @@ define(function(){ 'use strict'; ]; case AscFormat.ENTRANCE_BASIC_SWIVEL: return [ - {value: AscFormat.ENTRANCE_BASIC_SWIVEL_HORIZONTAL, caption: this.textHorizontal}, + {value: AscFormat.ENTRANCE_BASIC_SWIVEL_HORIZONTAL, caption: this.textHorizontal, defvalue: true}, {value: AscFormat.ENTRANCE_BASIC_SWIVEL_VERTICAL, caption: this.textVertical} ]; default: @@ -1160,32 +1160,32 @@ define(function(){ 'use strict'; switch (type){ case AscFormat.EXIT_BLINDS: return [ - {value: AscFormat.EXIT_BLINDS_HORIZONTAL, caption: this.textHorizontal}, + {value: AscFormat.EXIT_BLINDS_HORIZONTAL, caption: this.textHorizontal, defvalue: true}, {value: AscFormat.EXIT_BLINDS_VERTICAL, caption: this.textVertical} ]; case AscFormat.EXIT_BOX: return [ {value: AscFormat.EXIT_BOX_IN, caption: this.textIn}, - {value: AscFormat.EXIT_BOX_OUT, caption: this.textOut} + {value: AscFormat.EXIT_BOX_OUT, caption: this.textOut, defvalue: true} ]; case AscFormat.EXIT_CHECKERBOARD: return [ - {value: AscFormat.EXIT_CHECKERBOARD_ACROSS, caption: this.textAcross}, + {value: AscFormat.EXIT_CHECKERBOARD_ACROSS, caption: this.textAcross, defvalue: true}, {value: AscFormat.EXIT_CIRCLE_OUT, caption: this.textUp} ]; case AscFormat.EXIT_CIRCLE: return [ {value: AscFormat.EXIT_CIRCLE_IN, caption: this.textIn}, - {value: AscFormat.EXIT_BOX_OUT, caption: this.textOut} + {value: AscFormat.EXIT_CIRCLE_OUT, caption: this.textOut, defvalue: true} ]; case AscFormat.EXIT_DIAMOND: return [ {value: AscFormat.EXIT_DIAMOND_IN, caption: this.textIn}, - {value: AscFormat.EXIT_DIAMOND_IN, caption: this.textOut} + {value: AscFormat.EXIT_DIAMOND_OUT, caption: this.textOut, defvalue: true} ]; case AscFormat.EXIT_FLY_OUT_TO: return [ - {value: AscFormat.EXIT_FLY_OUT_TO_BOTTOM, caption: this.textToBottom}, + {value: AscFormat.EXIT_FLY_OUT_TO_BOTTOM, caption: this.textToBottom, defvalue: true}, {value: AscFormat.EXIT_FLY_OUT_TO_BOTTOM_LEFT, caption: this.textToBottomLeft}, {value: AscFormat.EXIT_FLY_OUT_TO_LEFT, caption: this.textToLeft}, {value: AscFormat.EXIT_FLY_OUT_TO_TOP_LEFT, caption: this.textToTopLeft}, @@ -1196,7 +1196,7 @@ define(function(){ 'use strict'; ]; case AscFormat.EXIT_PEEK_OUT_TO: return [ - {value: AscFormat.EXIT_PEEK_OUT_TO_BOTTOM, caption: this.textToBottom}, + {value: AscFormat.EXIT_PEEK_OUT_TO_BOTTOM, caption: this.textToBottom, defvalue: true}, {value: AscFormat.EXIT_PEEK_OUT_TO_LEFT, caption: this.textToLeft}, {value: AscFormat.EXIT_PEEK_OUT_TO_RIGHT, caption: this.textToRight}, {value: AscFormat.EXIT_PEEK_OUT_TO_TOP, caption: this.textToTop} @@ -1204,30 +1204,30 @@ define(function(){ 'use strict'; case AscFormat.EXIT_PLUS: return [ {value: AscFormat.EXIT_PLUS_IN, caption: this.textIn}, - {value: AscFormat.EXIT_PLUS_OUT, caption: this.textOut} + {value: AscFormat.EXIT_PLUS_OUT, caption: this.textOut, defvalue: true} ]; case AscFormat.EXIT_RANDOM_BARS: return [ - {value: AscFormat.EXIT_RANDOM_BARS_HORIZONTAL, caption: this.textHorizontal}, + {value: AscFormat.EXIT_RANDOM_BARS_HORIZONTAL, caption: this.textHorizontal, defvalue: true}, {value: AscFormat.EXIT_RANDOM_BARS_VERTICAL, caption: this.textVertical} ]; case AscFormat.EXIT_SPLIT: return [ {value: AscFormat.EXIT_SPLIT_HORIZONTAL_IN, caption: this.textHorizontalIn}, {value: AscFormat.EXIT_SPLIT_HORIZONTAL_OUT, caption: this.textHorizontalOut}, - {value: AscFormat.EXIT_SPLIT_VERTICAL_IN, caption: this.textVerticalIn}, + {value: AscFormat.EXIT_SPLIT_VERTICAL_IN, caption: this.textVerticalIn, defvalue: true}, {value: AscFormat.EXIT_SPLIT_VERTICAL_OUT, caption: this.textVerticalOut} ]; case AscFormat.EXIT_STRIPS: return [ - {value: AscFormat.EXIT_STRIPS_LEFT_DOWN, caption: this.textLeftDown}, + {value: AscFormat.EXIT_STRIPS_LEFT_DOWN, caption: this.textLeftDown, defvalue: true}, {value: AscFormat.EXIT_STRIPS_LEFT_UP, caption: this.textLeftUp}, {value: AscFormat.EXIT_STRIPS_RIGHT_DOWN, caption: this.textRightDown}, {value: AscFormat.EXIT_STRIPS_RIGHT_UP, caption: this.textRightUp} ]; case AscFormat.EXIT_WHEEL: return [ - {value: AscFormat.EXIT_WHEEL_1_SPOKE, caption: this.textSpoke1}, + {value: AscFormat.EXIT_WHEEL_1_SPOKE, caption: this.textSpoke1, defvalue: true}, {value: AscFormat.EXIT_WHEEL_2_SPOKES, caption: this.textSpoke2}, {value: AscFormat.EXIT_WHEEL_3_SPOKES, caption: this.textSpoke3}, {value: AscFormat.EXIT_WHEEL_4_SPOKES, caption: this.textSpoke4}, @@ -1235,28 +1235,28 @@ define(function(){ 'use strict'; ]; case AscFormat.EXIT_WIPE_FROM: return [ - {value: AscFormat.EXIT_WIPE_FROM_BOTTOM, caption: this.textFromBottom}, + {value: AscFormat.EXIT_WIPE_FROM_BOTTOM, caption: this.textFromBottom, defvalue: true}, {value: AscFormat.EXIT_WIPE_FROM_LEFT, caption: this.textFromLeft}, {value: AscFormat.EXIT_WIPE_FROM_RIGHT, caption: this.textFromRight}, {value: AscFormat.EXIT_WIPE_FROM_TOP, caption: this.textFromTop} ]; case AscFormat.EXIT_ZOOM: return [ - {value: AscFormat.EXIT_ZOOM_OBJECT_CENTER, caption: this.textObjectCenter}, + {value: AscFormat.EXIT_ZOOM_OBJECT_CENTER, caption: this.textObjectCenter, defvalue: true}, {value: AscFormat.EXIT_ZOOM_SLIDE_CENTER, caption: this.textSlideCenter} ]; case AscFormat.EXIT_BASIC_ZOOM: return [ + {value: AscFormat.EXIT_BASIC_ZOOM_OUT, caption: this.textOut, defvalue: true}, + {value: AscFormat.EXIT_BASIC_ZOOM_OUT_TO_SCREEN_CENTER, caption: this.textOutToScreenCenter}, + {value: AscFormat.EXIT_BASIC_ZOOM_OUT_SLIGHTLY, caption: this.textOutSlightly}, {value: AscFormat.EXIT_BASIC_ZOOM_IN, caption: this.textIn}, - {value: AscFormat.EXIT_BASIC_ZOOM_IN_TO_SCREEN_BOTTOM, caption: this.textInToScreenCenter}, - {value: AscFormat.EXIT_BASIC_ZOOM_IN_SLIGHTLY, caption: this.textInSlightly}, - {value: AscFormat.EXIT_BASIC_ZOOM_OUT, caption: this.textOut}, - {value: AscFormat.EXIT_BASIC_ZOOM_OUT_TO_SCREEN_CENTER, caption: this.textOutToScreenBottom}, - {value: AscFormat.EXIT_BASIC_ZOOM_OUT_SLIGHTLY, caption: this.textOutSlightly} + {value: AscFormat.EXIT_BASIC_ZOOM_IN_TO_SCREEN_BOTTOM, caption: this.textInToScreenBottom}, + {value: AscFormat.EXIT_BASIC_ZOOM_IN_SLIGHTLY, caption: this.textInSlightly} ]; case AscFormat.EXIT_COLLAPSE: return [ - {value: AscFormat.EXIT_COLLAPSE_ACROSS, caption: this.textAcross}, + {value: AscFormat.EXIT_COLLAPSE_ACROSS, caption: this.textAcross, defvalue: true}, {value: AscFormat.EXIT_COLLAPSE_TO_BOTTOM, caption: this.textToBottom}, {value: AscFormat.EXIT_COLLAPSE_TO_LEFT, caption: this.textToLeft}, {value: AscFormat.EXIT_COLLAPSE_TO_RIGHT, caption: this.textToRight}, @@ -1264,7 +1264,7 @@ define(function(){ 'use strict'; ]; case AscFormat.EXIT_BASIC_SWIVEL: return [ - {value: AscFormat.EXIT_BASIC_SWIVEL_HORIZONTAL, caption: this.textHorizontal}, + {value: AscFormat.EXIT_BASIC_SWIVEL_HORIZONTAL, caption: this.textHorizontal, defvalue: true}, {value: AscFormat.EXIT_BASIC_SWIVEL_VERTICAL, caption: this.textVertical} ]; default: @@ -1279,17 +1279,17 @@ define(function(){ 'use strict'; switch (familyEffect){ case 'shape': return [ - {value: AscFormat.EXIT_BOX, caption: this.textBox}, {value: AscFormat.EXIT_CIRCLE, caption: this.textCircle}, - {value: AscFormat.EXIT_PLUS, caption: this.textPlus}, - {value: AscFormat.EXIT_DIAMOND, caption: this.textDiamond} + {value: AscFormat.EXIT_BOX, caption: this.textBox}, + {value: AscFormat.EXIT_DIAMOND, caption: this.textDiamond}, + {value: AscFormat.EXIT_PLUS, caption: this.textPlus} ]; case 'entrshape': return [ - {value: AscFormat.ENTRANCE_BOX, caption: this.textBox}, {value: AscFormat.ENTRANCE_CIRCLE, caption: this.textCircle}, - {value: AscFormat.ENTRANCE_PLUS, caption: this.textPlus}, - {value: AscFormat.ENTRANCE_DIAMOND, caption: this.textDiamond} + {value: AscFormat.ENTRANCE_BOX, caption: this.textBox}, + {value: AscFormat.ENTRANCE_DIAMOND, caption: this.textDiamond}, + {value: AscFormat.ENTRANCE_PLUS, caption: this.textPlus} ]; case 'pathlines': return[ diff --git a/apps/presentationeditor/main/app/view/Animation.js b/apps/presentationeditor/main/app/view/Animation.js index 0fdeba5b0..581d359d8 100644 --- a/apps/presentationeditor/main/app/view/Animation.js +++ b/apps/presentationeditor/main/app/view/Animation.js @@ -558,13 +558,13 @@ define([ opt.checkable = true; opt.toggleGroup = 'animateeffects'; this.btnParameters.menu.addItem(opt); - (opt.value == option) && (selectedElement = this.btnParameters.menu.items[index]); + (opt.value == option || option===undefined && !!opt.defvalue) && (selectedElement = this.btnParameters.menu.items[index]); }, this); (effect && effect.familyEffect) && this.btnParameters.menu.addItem({caption: '--'}); } else { this.btnParameters.menu.clearAll(); this.btnParameters.menu.items.forEach(function (opt) { - if(opt.toggleGroup == 'animateeffects' && opt.value == option) + if(opt.toggleGroup == 'animateeffects' && (opt.value == option || option===undefined && !!opt.options.defvalue)) selectedElement = opt; },this); } diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json index 07c8f99e2..c0f1e9b42 100644 --- a/apps/presentationeditor/main/locale/en.json +++ b/apps/presentationeditor/main/locale/en.json @@ -140,7 +140,8 @@ "Common.define.effectData.textIn": "In", "Common.define.effectData.textInFromScreenCenter": "In From Screen Center", "Common.define.effectData.textInSlightly": "In Slightly", - "Common.define.effectData.textInToScreenCenter": "In To Screen Center", + "Common.define.effectData.textInToScreenBottom": "In To Screen Bottom", + "del_Common.define.effectData.textInToScreenCenter": "In To Screen Center", "Common.define.effectData.textInvertedSquare": "Inverted Square", "Common.define.effectData.textInvertedTriangle": "Inverted Triangle", "Common.define.effectData.textLeft": "Left", @@ -160,6 +161,7 @@ "Common.define.effectData.textOut": "Out", "Common.define.effectData.textOutFromScreenBottom": "Out From Screen Bottom", "Common.define.effectData.textOutSlightly": "Out Slightly", + "Common.define.effectData.textOutToScreenCenter": "Out To Screen Center", "Common.define.effectData.textParallelogram": "Parallelogram", "Common.define.effectData.textPath": "Motion Path", "Common.define.effectData.textPeanut": "Peanut", @@ -215,7 +217,7 @@ "Common.define.effectData.textToBottom": "To Bottom", "Common.define.effectData.textToBottomLeft": "To Bottom-Left", "Common.define.effectData.textToBottomRight": "To Bottom-Right", - "Common.define.effectData.textToFromScreenBottom": "Out To Screen Bottom", + "del_Common.define.effectData.textToFromScreenBottom": "Out To Screen Bottom", "Common.define.effectData.textToLeft": "To Left", "Common.define.effectData.textToRight": "To Right", "Common.define.effectData.textToTop": "To Top", From 54482a5021a558da0e0c220d81c93b67dc36aaa3 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 21 Feb 2022 21:58:41 +0300 Subject: [PATCH 185/217] [PE] Fix ComboDataView when picker contains groups (animation) --- apps/common/main/lib/component/ComboDataView.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/common/main/lib/component/ComboDataView.js b/apps/common/main/lib/component/ComboDataView.js index 0a568e3b8..ec972e57f 100644 --- a/apps/common/main/lib/component/ComboDataView.js +++ b/apps/common/main/lib/component/ComboDataView.js @@ -416,6 +416,9 @@ define([ if (forceFill || !me.fieldPicker.store.findWhere({'id': record.get('id')})){ if (me.itemMarginLeft===undefined) { var div = $($(this.menuPicker.el).find('.inner > div:not(.grouped-data):not(.ps-scrollbar-x-rail):not(.ps-scrollbar-y-rail)')[0]); + if (!div || div.length<1) { // try to find items in groups + div = $($(this.menuPicker.el).find('.inner .group-items-container > div:not(.grouped-data):not(.ps-scrollbar-x-rail):not(.ps-scrollbar-y-rail)')[0]); + } if (div.length > 0) { me.itemMarginLeft = parseInt(div.css('margin-left')); me.itemMarginRight = parseInt(div.css('margin-right')); From c1c2e97770a834bbfba838b5c38f73b0bfc171ec Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Tue, 22 Feb 2022 01:19:45 +0400 Subject: [PATCH 186/217] [DE mobile] Fix Bug 55657 --- apps/documenteditor/mobile/src/controller/ContextMenu.jsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/documenteditor/mobile/src/controller/ContextMenu.jsx b/apps/documenteditor/mobile/src/controller/ContextMenu.jsx index 9bccbeee3..eb366b911 100644 --- a/apps/documenteditor/mobile/src/controller/ContextMenu.jsx +++ b/apps/documenteditor/mobile/src/controller/ContextMenu.jsx @@ -18,7 +18,8 @@ import EditorUIController from '../lib/patch'; canFillForms: stores.storeAppOptions.canFillForms, users: stores.users, isDisconnected: stores.users.isDisconnected, - displayMode: stores.storeReview.displayMode + displayMode: stores.storeReview.displayMode, + dataDoc: stores.storeDocumentInfo.dataDoc })) class ContextMenu extends ContextMenuController { constructor(props) { @@ -267,7 +268,7 @@ class ContextMenu extends ContextMenuController { }); } - if ( canFillForms && canCopy && !locked ) { + if ( canFillForms && dataDoc.fileType !== 'oform' && !locked ) { itemsIcon.push({ event: 'paste', icon: 'icon-paste' From 0a813a5d8d1a96506b5ddf647f1605e87c1b9bda Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Tue, 22 Feb 2022 12:48:00 +0300 Subject: [PATCH 187/217] [DE] Fix Bug 55660 --- apps/documenteditor/mobile/src/less/app-ios.less | 2 +- apps/documenteditor/mobile/src/less/app-material.less | 2 +- apps/documenteditor/mobile/src/less/icons-material.less | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/documenteditor/mobile/src/less/app-ios.less b/apps/documenteditor/mobile/src/less/app-ios.less index d8f784511..3e5723b45 100644 --- a/apps/documenteditor/mobile/src/less/app-ios.less +++ b/apps/documenteditor/mobile/src/less/app-ios.less @@ -32,7 +32,7 @@ border-top: 1px solid #446995; border-bottom: 1px solid #446995; input { - color: #000; + color: @text-normal; font-size: 17px; font-weight: var(--f7-list-item-after-line-height); } diff --git a/apps/documenteditor/mobile/src/less/app-material.less b/apps/documenteditor/mobile/src/less/app-material.less index 0182800f7..46ad54346 100644 --- a/apps/documenteditor/mobile/src/less/app-material.less +++ b/apps/documenteditor/mobile/src/less/app-material.less @@ -79,7 +79,7 @@ border:none; input { - color: #000; + color: @text-normal; font-size: 16px; width: 40px; font-weight: var(--f7-list-item-after-line-height); diff --git a/apps/documenteditor/mobile/src/less/icons-material.less b/apps/documenteditor/mobile/src/less/icons-material.less index 2eb429078..e470749c6 100644 --- a/apps/documenteditor/mobile/src/less/icons-material.less +++ b/apps/documenteditor/mobile/src/less/icons-material.less @@ -78,7 +78,7 @@ &.icon-expand-down { width: 17px; height: 17px; - .encoded-svg-mask('', @fill-white); + .encoded-svg-mask(''); } &.icon-expand-up { width: 17px; From 27e6b1f41485b7179a5672a5bad7b08e65eecf0b Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 22 Feb 2022 13:19:33 +0300 Subject: [PATCH 188/217] Fix Bug 55678 --- apps/api/documents/api.js | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/apps/api/documents/api.js b/apps/api/documents/api.js index f7e0189e8..d2d9ead97 100644 --- a/apps/api/documents/api.js +++ b/apps/api/documents/api.js @@ -932,14 +932,17 @@ if (config.editorConfig.customization.loaderName !== 'none') params += "&customer=" + encodeURIComponent(config.editorConfig.customization.loaderName); } else params += "&customer={{APP_CUSTOMER_NAME}}"; - if ( (typeof(config.editorConfig.customization) == 'object') && config.editorConfig.customization.loaderLogo) { - if (config.editorConfig.customization.loaderLogo !== '') params += "&logo=" + encodeURIComponent(config.editorConfig.customization.loaderLogo); - } else if ( (typeof(config.editorConfig.customization) == 'object') && config.editorConfig.customization.logo) { - if (config.type=='embedded' && (config.editorConfig.customization.logo.image || config.editorConfig.customization.logo.imageEmbedded)) - params += "&headerlogo=" + encodeURIComponent(config.editorConfig.customization.logo.image || config.editorConfig.customization.logo.imageEmbedded); - else if (config.type!='embedded' && (config.editorConfig.customization.logo.image || config.editorConfig.customization.logo.imageDark)) { - config.editorConfig.customization.logo.image && (params += "&headerlogo=" + encodeURIComponent(config.editorConfig.customization.logo.image)); - config.editorConfig.customization.logo.imageDark && (params += "&headerlogodark=" + encodeURIComponent(config.editorConfig.customization.logo.imageDark)); + if (typeof(config.editorConfig.customization) == 'object') { + if ( config.editorConfig.customization.loaderLogo && config.editorConfig.customization.loaderLogo !== '') { + params += "&logo=" + encodeURIComponent(config.editorConfig.customization.loaderLogo); + } + if ( config.editorConfig.customization.logo ) { + if (config.type=='embedded' && (config.editorConfig.customization.logo.image || config.editorConfig.customization.logo.imageEmbedded)) + params += "&headerlogo=" + encodeURIComponent(config.editorConfig.customization.logo.image || config.editorConfig.customization.logo.imageEmbedded); + else if (config.type!='embedded' && (config.editorConfig.customization.logo.image || config.editorConfig.customization.logo.imageDark)) { + config.editorConfig.customization.logo.image && (params += "&headerlogo=" + encodeURIComponent(config.editorConfig.customization.logo.image)); + config.editorConfig.customization.logo.imageDark && (params += "&headerlogodark=" + encodeURIComponent(config.editorConfig.customization.logo.imageDark)); + } } } } From 0e8b408303a94034bcfc0dae1428a9ee7a51a898 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 22 Feb 2022 13:24:16 +0300 Subject: [PATCH 189/217] Fix loader for fillForm mode in full editor (and fix open pdf files) --- apps/api/documents/api.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/api/documents/api.js b/apps/api/documents/api.js index d2d9ead97..f0f72168d 100644 --- a/apps/api/documents/api.js +++ b/apps/api/documents/api.js @@ -962,8 +962,6 @@ if (config.editorConfig && config.editorConfig.customization && (config.editorConfig.customization.toolbar===false)) params += "&toolbar=false"; - else if (config.document && config.document.permissions && (config.document.permissions.edit === false && config.document.permissions.fillForms )) - params += "&toolbar=true"; if (config.parentOrigin) params += "&parentOrigin=" + config.parentOrigin; From 2dced655d9970cf55c59c95b7eaca27a5d3112bb Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Tue, 22 Feb 2022 13:39:53 +0300 Subject: [PATCH 190/217] [DE] Fix bug 50062 --- apps/documenteditor/main/app/view/DocumentHolder.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/documenteditor/main/app/view/DocumentHolder.js b/apps/documenteditor/main/app/view/DocumentHolder.js index f85484e2c..cdeeed126 100644 --- a/apps/documenteditor/main/app/view/DocumentHolder.js +++ b/apps/documenteditor/main/app/view/DocumentHolder.js @@ -2120,7 +2120,7 @@ define([ menuViewCut.setDisabled(disabled || !cancopy); menuViewPaste.setVisible(me._fillFormwMode && canEditControl); menuViewPaste.setDisabled(disabled); - menuViewPrint.setVisible(me.mode.canPrint); + menuViewPrint.setVisible(me.mode.canPrint && !me._fillFormwMode); menuViewPrint.setDisabled(!cancopy); }, From 876ac7670df54f7b7708fc6b779a2228965fc67b Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Tue, 22 Feb 2022 14:34:41 +0300 Subject: [PATCH 191/217] [SSE] Fix Bug 55656 --- apps/common/mobile/resources/less/comments.less | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/common/mobile/resources/less/comments.less b/apps/common/mobile/resources/less/comments.less index dfee37a7c..fb2945ff8 100644 --- a/apps/common/mobile/resources/less/comments.less +++ b/apps/common/mobile/resources/less/comments.less @@ -242,6 +242,9 @@ .actions-modal.modal-in { z-index: 13700; + .actions-group::after { + background-color: @background-menu-divider; + } } .actions-backdrop.backdrop-in { From 01c89dbd74dee8514db79529ff4769e3aa1f2f3d Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 22 Feb 2022 18:23:37 +0300 Subject: [PATCH 192/217] [DE forms] Load plugins --- apps/common/forms/resources/less/common.less | 1 + apps/common/main/lib/controller/Plugins.js | 3 +- apps/common/main/lib/view/PluginDlg.js | 185 +++++++ apps/common/main/lib/view/Plugins.js | 134 ----- apps/documenteditor/forms/app.js | 5 +- .../app/controller/ApplicationController.js | 5 + .../forms/app/controller/Plugins.js | 457 ++++++++++++++++++ apps/documenteditor/forms/app_dev.js | 5 +- 8 files changed, 658 insertions(+), 137 deletions(-) create mode 100644 apps/common/main/lib/view/PluginDlg.js create mode 100644 apps/documenteditor/forms/app/controller/Plugins.js diff --git a/apps/common/forms/resources/less/common.less b/apps/common/forms/resources/less/common.less index 1e61888f3..c1a0ccd51 100644 --- a/apps/common/forms/resources/less/common.less +++ b/apps/common/forms/resources/less/common.less @@ -80,6 +80,7 @@ @import "../../../../common/main/resources/less/spinner.less"; @import "../../../../common/main/resources/less/checkbox.less"; @import "../../../../common/main/resources/less/opendialog.less"; +@import "../../../../common/main/resources/less/advanced-settings-window.less"; @toolbarBorderColor: @border-toolbar-ie; @toolbarBorderColor: @border-toolbar; diff --git a/apps/common/main/lib/controller/Plugins.js b/apps/common/main/lib/controller/Plugins.js index ae74097bc..98d3f0c56 100644 --- a/apps/common/main/lib/controller/Plugins.js +++ b/apps/common/main/lib/controller/Plugins.js @@ -39,7 +39,8 @@ define([ 'core', 'common/main/lib/collection/Plugins', - 'common/main/lib/view/Plugins' + 'common/main/lib/view/Plugins', + 'common/main/lib/view/PluginDlg' ], function () { 'use strict'; diff --git a/apps/common/main/lib/view/PluginDlg.js b/apps/common/main/lib/view/PluginDlg.js new file mode 100644 index 000000000..81a5e0ce5 --- /dev/null +++ b/apps/common/main/lib/view/PluginDlg.js @@ -0,0 +1,185 @@ +/* + * + * (c) Copyright Ascensio System SIA 2010-2022 + * + * This program is a free software product. You can redistribute it and/or + * modify it under the terms of the GNU Affero General Public License (AGPL) + * version 3 as published by the Free Software Foundation. In accordance with + * Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect + * that Ascensio System SIA expressly excludes the warranty of non-infringement + * of any third-party rights. + * + * This program is distributed WITHOUT ANY WARRANTY; without even the implied + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For + * details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html + * + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. + * + * The interactive user interfaces in modified source and object code versions + * of the Program must display Appropriate Legal Notices, as required under + * Section 5 of the GNU AGPL version 3. + * + * Pursuant to Section 7(b) of the License you must retain the original Product + * logo when distributing the program. Pursuant to Section 7(e) we decline to + * grant you any rights under trademark law for use of our trademarks. + * + * All the Product's GUI elements, including illustrations and icon sets, as + * well as technical writing content are licensed under the terms of the + * Creative Commons Attribution-ShareAlike 4.0 International. See the License + * terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode + * +*/ +/** + * User: Julia.Radzhabova + * Date: 17.05.16 + * Time: 15:38 + */ + +if (Common === undefined) + var Common = {}; + +Common.Views = Common.Views || {}; + +define([ + 'common/main/lib/util/utils', + 'common/main/lib/component/BaseView', + 'common/main/lib/component/Layout', + 'common/main/lib/component/Window' +], function (template) { + 'use strict'; + + Common.Views.PluginDlg = Common.UI.Window.extend(_.extend({ + initialize : function(options) { + var _options = {}; + _.extend(_options, { + header: true, + enableKeyEvents: false + }, options); + + var header_footer = (_options.buttons && _.size(_options.buttons)>0) ? 85 : 34; + if (!_options.header) header_footer -= 34; + this.bordersOffset = 40; + _options.width = (Common.Utils.innerWidth()-this.bordersOffset*2-_options.width)<0 ? Common.Utils.innerWidth()-this.bordersOffset*2: _options.width; + _options.height += header_footer; + _options.height = (Common.Utils.innerHeight()-this.bordersOffset*2-_options.height)<0 ? Common.Utils.innerHeight()-this.bordersOffset*2: _options.height; + _options.cls += ' advanced-settings-dlg'; + + this.template = [ + '
', + '
', + '
', + '<% if ((typeof buttons !== "undefined") && _.size(buttons) > 0) { %>', + '
', + '<% } %>' + ].join(''); + + _options.tpl = _.template(this.template)(_options); + + this.url = options.url || ''; + this.frameId = options.frameId || 'plugin_iframe'; + Common.UI.Window.prototype.initialize.call(this, _options); + }, + + render: function() { + Common.UI.Window.prototype.render.call(this); + this.$window.find('> .body').css({height: 'auto', overflow: 'hidden'}); + + this.boxEl = this.$window.find('.body > .box'); + this._headerFooterHeight = (this.options.buttons && _.size(this.options.buttons)>0) ? 85 : 34; + if (!this.options.header) this._headerFooterHeight -= 34; + this._headerFooterHeight += ((parseInt(this.$window.css('border-top-width')) + parseInt(this.$window.css('border-bottom-width')))); + + var iframe = document.createElement("iframe"); + iframe.id = this.frameId; + iframe.name = 'pluginFrameEditor'; + iframe.width = '100%'; + iframe.height = '100%'; + iframe.align = "top"; + iframe.frameBorder = 0; + iframe.scrolling = "no"; + iframe.allow = "camera; microphone; display-capture"; + iframe.onload = _.bind(this._onLoad,this); + + var me = this; + setTimeout(function(){ + if (me.isLoaded) return; + me.loadMask = new Common.UI.LoadMask({owner: $('#id-plugin-placeholder')}); + me.loadMask.setTitle(me.textLoading); + me.loadMask.show(); + if (me.isLoaded) me.loadMask.hide(); + }, 500); + + iframe.src = this.url; + $('#id-plugin-placeholder').append(iframe); + + this.on('resizing', function(args){ + me.boxEl.css('height', parseInt(me.$window.css('height')) - me._headerFooterHeight); + }); + + var onMainWindowResize = function(){ + me.onWindowResize(); + }; + $(window).on('resize', onMainWindowResize); + this.on('close', function() { + $(window).off('resize', onMainWindowResize); + }); + }, + + _onLoad: function() { + this.isLoaded = true; + if (this.loadMask) + this.loadMask.hide(); + }, + + setInnerSize: function(width, height) { + var maxHeight = Common.Utils.innerHeight(), + maxWidth = Common.Utils.innerWidth(), + borders_width = (parseInt(this.$window.css('border-left-width')) + parseInt(this.$window.css('border-right-width'))), + bordersOffset = this.bordersOffset*2; + if (maxHeight - bordersOffsetmain_height-bordersOffset) + this.$window.css('top', main_height-bordersOffset - win_height); + if (leftmain_width-bordersOffset) + this.$window.css('left', main_width-bordersOffset-win_width); + } else { + if (win_height>main_height-bordersOffset*2) { + this.setHeight(Math.max(main_height-bordersOffset*2, this.initConfig.minheight)); + this.boxEl.css('height', Math.max(main_height-bordersOffset*2, this.initConfig.minheight) - this._headerFooterHeight); + this.$window.css('top', bordersOffset); + } + if (win_width>main_width-bordersOffset*2) { + this.setWidth(Math.max(main_width-bordersOffset*2, this.initConfig.minwidth)); + this.$window.css('left', bordersOffset); + } + } + }, + + textLoading : 'Loading' + }, Common.Views.PluginDlg || {})); +}); \ No newline at end of file diff --git a/apps/common/main/lib/view/Plugins.js b/apps/common/main/lib/view/Plugins.js index 449bf4be3..75ed76e8b 100644 --- a/apps/common/main/lib/view/Plugins.js +++ b/apps/common/main/lib/view/Plugins.js @@ -429,138 +429,4 @@ define([ groupCaption: 'Plugins' }, Common.Views.Plugins || {})); - - Common.Views.PluginDlg = Common.UI.Window.extend(_.extend({ - initialize : function(options) { - var _options = {}; - _.extend(_options, { - header: true, - enableKeyEvents: false - }, options); - - var header_footer = (_options.buttons && _.size(_options.buttons)>0) ? 85 : 34; - if (!_options.header) header_footer -= 34; - this.bordersOffset = 40; - _options.width = (Common.Utils.innerWidth()-this.bordersOffset*2-_options.width)<0 ? Common.Utils.innerWidth()-this.bordersOffset*2: _options.width; - _options.height += header_footer; - _options.height = (Common.Utils.innerHeight()-this.bordersOffset*2-_options.height)<0 ? Common.Utils.innerHeight()-this.bordersOffset*2: _options.height; - _options.cls += ' advanced-settings-dlg'; - - this.template = [ - '
', - '
', - '
', - '<% if ((typeof buttons !== "undefined") && _.size(buttons) > 0) { %>', - '
', - '<% } %>' - ].join(''); - - _options.tpl = _.template(this.template)(_options); - - this.url = options.url || ''; - this.frameId = options.frameId || 'plugin_iframe'; - Common.UI.Window.prototype.initialize.call(this, _options); - }, - - render: function() { - Common.UI.Window.prototype.render.call(this); - this.$window.find('> .body').css({height: 'auto', overflow: 'hidden'}); - - this.boxEl = this.$window.find('.body > .box'); - this._headerFooterHeight = (this.options.buttons && _.size(this.options.buttons)>0) ? 85 : 34; - if (!this.options.header) this._headerFooterHeight -= 34; - this._headerFooterHeight += ((parseInt(this.$window.css('border-top-width')) + parseInt(this.$window.css('border-bottom-width')))); - - var iframe = document.createElement("iframe"); - iframe.id = this.frameId; - iframe.name = 'pluginFrameEditor'; - iframe.width = '100%'; - iframe.height = '100%'; - iframe.align = "top"; - iframe.frameBorder = 0; - iframe.scrolling = "no"; - iframe.allow = "camera; microphone; display-capture"; - iframe.onload = _.bind(this._onLoad,this); - - var me = this; - setTimeout(function(){ - if (me.isLoaded) return; - me.loadMask = new Common.UI.LoadMask({owner: $('#id-plugin-placeholder')}); - me.loadMask.setTitle(me.textLoading); - me.loadMask.show(); - if (me.isLoaded) me.loadMask.hide(); - }, 500); - - iframe.src = this.url; - $('#id-plugin-placeholder').append(iframe); - - this.on('resizing', function(args){ - me.boxEl.css('height', parseInt(me.$window.css('height')) - me._headerFooterHeight); - }); - - var onMainWindowResize = function(){ - me.onWindowResize(); - }; - $(window).on('resize', onMainWindowResize); - this.on('close', function() { - $(window).off('resize', onMainWindowResize); - }); - }, - - _onLoad: function() { - this.isLoaded = true; - if (this.loadMask) - this.loadMask.hide(); - }, - - setInnerSize: function(width, height) { - var maxHeight = Common.Utils.innerHeight(), - maxWidth = Common.Utils.innerWidth(), - borders_width = (parseInt(this.$window.css('border-left-width')) + parseInt(this.$window.css('border-right-width'))), - bordersOffset = this.bordersOffset*2; - if (maxHeight - bordersOffsetmain_height-bordersOffset) - this.$window.css('top', main_height-bordersOffset - win_height); - if (leftmain_width-bordersOffset) - this.$window.css('left', main_width-bordersOffset-win_width); - } else { - if (win_height>main_height-bordersOffset*2) { - this.setHeight(Math.max(main_height-bordersOffset*2, this.initConfig.minheight)); - this.boxEl.css('height', Math.max(main_height-bordersOffset*2, this.initConfig.minheight) - this._headerFooterHeight); - this.$window.css('top', bordersOffset); - } - if (win_width>main_width-bordersOffset*2) { - this.setWidth(Math.max(main_width-bordersOffset*2, this.initConfig.minwidth)); - this.$window.css('left', bordersOffset); - } - } - }, - - textLoading : 'Loading' - }, Common.Views.PluginDlg || {})); }); \ No newline at end of file diff --git a/apps/documenteditor/forms/app.js b/apps/documenteditor/forms/app.js index 6ac4557d2..5535a30bf 100644 --- a/apps/documenteditor/forms/app.js +++ b/apps/documenteditor/forms/app.js @@ -139,7 +139,8 @@ require([ nameSpace: 'DE', autoCreate: false, controllers : [ - 'ApplicationController' + 'ApplicationController', + 'Plugins' ] }); @@ -147,10 +148,12 @@ require([ function() { require([ 'documenteditor/forms/app/controller/ApplicationController', + 'documenteditor/forms/app/controller/Plugins', 'documenteditor/forms/app/view/ApplicationView', 'common/main/lib/util/utils', 'common/main/lib/util/LocalStorage', 'common/main/lib/controller/Themes', + 'common/main/lib/view/PluginDlg', 'common/forms/lib/view/modals' ], function() { app.start(); diff --git a/apps/documenteditor/forms/app/controller/ApplicationController.js b/apps/documenteditor/forms/app/controller/ApplicationController.js index 0a4788bd0..a898d25be 100644 --- a/apps/documenteditor/forms/app/controller/ApplicationController.js +++ b/apps/documenteditor/forms/app/controller/ApplicationController.js @@ -414,6 +414,8 @@ define([ this.appOptions.saveAsUrl = this.editorConfig.saveAsUrl; this.appOptions.canRequestSaveAs = this.editorConfig.canRequestSaveAs; this.appOptions.isDesktopApp = this.editorConfig.targetApp == 'desktop'; + this.appOptions.lang = this.editorConfig.lang; + this.appOptions.canPlugins = false; }, onExternalMessage: function(msg) { @@ -564,6 +566,8 @@ define([ AscCommon.UserInfoParser.setParser(true); AscCommon.UserInfoParser.setCurrentName(this.appOptions.user.fullname); + DE.getController('Plugins').setMode(this.appOptions, this.api); + var me = this; me.view.btnSubmit.setVisible(this.appOptions.canFillForms && this.appOptions.canSubmitForms); me.view.btnDownload.setVisible(this.appOptions.canDownload && this.appOptions.canFillForms && !this.appOptions.canSubmitForms); @@ -1339,6 +1343,7 @@ define([ Common.NotificationCenter.on('storage:image-load', _.bind(this.openImageFromStorage, this)); // try to load image from storage Common.NotificationCenter.on('storage:image-insert', _.bind(this.insertImageFromStorage, this)); // set loaded image to control } + DE.getController('Plugins').setApi(this.api); this.updateWindowTitle(true); diff --git a/apps/documenteditor/forms/app/controller/Plugins.js b/apps/documenteditor/forms/app/controller/Plugins.js new file mode 100644 index 000000000..4e3fbdbe9 --- /dev/null +++ b/apps/documenteditor/forms/app/controller/Plugins.js @@ -0,0 +1,457 @@ +/* + * + * (c) Copyright Ascensio System SIA 2010-2022 + * + * This program is a free software product. You can redistribute it and/or + * modify it under the terms of the GNU Affero General Public License (AGPL) + * version 3 as published by the Free Software Foundation. In accordance with + * Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect + * that Ascensio System SIA expressly excludes the warranty of non-infringement + * of any third-party rights. + * + * This program is distributed WITHOUT ANY WARRANTY; without even the implied + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For + * details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html + * + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. + * + * The interactive user interfaces in modified source and object code versions + * of the Program must display Appropriate Legal Notices, as required under + * Section 5 of the GNU AGPL version 3. + * + * Pursuant to Section 7(b) of the License you must retain the original Product + * logo when distributing the program. Pursuant to Section 7(e) we decline to + * grant you any rights under trademark law for use of our trademarks. + * + * All the Product's GUI elements, including illustrations and icon sets, as + * well as technical writing content are licensed under the terms of the + * Creative Commons Attribution-ShareAlike 4.0 International. See the License + * terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode + * +*/ +/** + * User: Julia.Radzhabova + * Date: 22.02.2022 + */ + +define([ + 'core', + 'common/main/lib/collection/Plugins', + 'common/main/lib/view/PluginDlg' +], function () { + 'use strict'; + + DE.Controllers.Plugins = Backbone.Controller.extend(_.extend({ + models: [], + appOptions: {}, + configPlugins: {autostart:[]},// {config: 'from editor config', plugins: 'loaded plugins', autostart: 'autostart guids'} + serverPlugins: {autostart:[]},// {config: 'from editor config', plugins: 'loaded plugins', autostart: 'autostart guids'} + collections: [ + 'Common.Collections.Plugins' + ], + initialize: function() { + }, + + events: function() { + }, + + onLaunch: function() { + this._moveOffset = {x:0, y:0}; + this.autostart = []; + + Common.Gateway.on('init', this.loadConfig.bind(this)); + }, + + loadConfig: function(data) { + var me = this; + me.configPlugins.config = data.config.plugins; + me.editor = 'word'; + }, + + loadPlugins: function() { + if (this.configPlugins.config) { + this.getPlugins(this.configPlugins.config.pluginsData) + .then(function(loaded) + { + me.configPlugins.plugins = loaded; + me.mergePlugins(); + }) + .catch(function(err) + { + me.configPlugins.plugins = false; + }); + } else + this.configPlugins.plugins = false; + + var server_plugins_url = '../../../../plugins.json', + me = this; + Common.Utils.loadConfig(server_plugins_url, function (obj) { + if ( obj != 'error' ) { + me.serverPlugins.config = obj; + me.getPlugins(me.serverPlugins.config.pluginsData) + .then(function(loaded) + { + me.serverPlugins.plugins = loaded; + me.mergePlugins(); + }) + .catch(function(err) + { + me.serverPlugins.plugins = false; + }); + } else + me.serverPlugins.plugins = false; + }); + }, + + setApi: function(api) { + this.api = api; + + if (!this.appOptions.customization || (this.appOptions.customization.plugins!==false)) { + this.api.asc_registerCallback("asc_onPluginShow", _.bind(this.onPluginShow, this)); + this.api.asc_registerCallback("asc_onPluginClose", _.bind(this.onPluginClose, this)); + this.api.asc_registerCallback("asc_onPluginResize", _.bind(this.onPluginResize, this)); + this.api.asc_registerCallback("asc_onPluginMouseUp", _.bind(this.onPluginMouseUp, this)); + this.api.asc_registerCallback("asc_onPluginMouseMove", _.bind(this.onPluginMouseMove, this)); + this.api.asc_registerCallback('asc_onPluginsReset', _.bind(this.resetPluginsList, this)); + this.api.asc_registerCallback('asc_onPluginsInit', _.bind(this.onPluginsInit, this)); + + this.loadPlugins(); + } + return this; + }, + + setMode: function(mode, api) { + this.appOptions = mode; + this.api = api; + return this; + }, + + refreshPluginsList: function() { + var me = this; + var storePlugins = this.getApplication().getCollection('Common.Collections.Plugins'), + arr = []; + storePlugins.each(function(item){ + var plugin = new Asc.CPlugin(); + plugin.deserialize(item.attributes); + + var variations = item.get('variations'), + variationsArr = []; + variations.forEach(function(itemVar){ + var variation = new Asc.CPluginVariation(); + variation.deserialize(itemVar.attributes); + variationsArr.push(variation); + }); + + plugin.set_Variations(variationsArr); + item.set('pluginObj', plugin); + arr.push(plugin); + }); + this.api.asc_pluginsRegister('', arr); + Common.Gateway.pluginsReady(); + }, + + onPluginShow: function(plugin, variationIndex, frameId, urlAddition) { + var variation = plugin.get_Variations()[variationIndex]; + if (variation.get_Visual()) { + var url = variation.get_Url(); + url = ((plugin.get_BaseUrl().length == 0) ? url : plugin.get_BaseUrl()) + url; + if (urlAddition) + url += urlAddition; + var me = this, + isCustomWindow = variation.get_CustomWindow(), + arrBtns = variation.get_Buttons(), + newBtns = [], + size = variation.get_Size(), + isModal = variation.get_Modal(); + if (!size || size.length<2) size = [800, 600]; + + if (_.isArray(arrBtns)) { + _.each(arrBtns, function(b, index){ + if (b.visible) + newBtns[index] = {caption: b.text, value: index, primary: b.primary}; + }); + } + + var help = variation.get_Help(); + me.pluginDlg = new Common.Views.PluginDlg({ + cls: isCustomWindow ? 'plain' : '', + header: !isCustomWindow, + title: plugin.get_Name(), + width: size[0], // inner width + height: size[1], // inner height + url: url, + frameId : frameId, + buttons: isCustomWindow ? undefined : newBtns, + toolcallback: _.bind(this.onToolClose, this), + help: !!help, + modal: isModal!==undefined ? isModal : true + }); + me.pluginDlg.on({ + 'render:after': function(obj){ + obj.getChild('.footer .dlg-btn').on('click', _.bind(me.onDlgBtnClick, me)); + me.pluginContainer = me.pluginDlg.$window.find('#id-plugin-container'); + }, + 'close': function(obj){ + me.pluginDlg = undefined; + }, + 'drag': function(args){ + me.api.asc_pluginEnableMouseEvents(args[1]=='start'); + }, + 'resize': function(args){ + me.api.asc_pluginEnableMouseEvents(args[1]=='start'); + }, + 'help': function(){ + help && window.open(help, '_blank'); + } + }); + + me.pluginDlg.show(); + } + }, + + onPluginClose: function(plugin) { + if (this.pluginDlg) + this.pluginDlg.close(); + this.runAutoStartPlugins(); + }, + + onPluginResize: function(size, minSize, maxSize, callback ) { + if (this.pluginDlg) { + var resizable = (minSize && minSize.length>1 && maxSize && maxSize.length>1 && (maxSize[0] > minSize[0] || maxSize[1] > minSize[1] || maxSize[0]==0 || maxSize[1] == 0)); + this.pluginDlg.setResizable(resizable, minSize, maxSize); + this.pluginDlg.setInnerSize(size[0], size[1]); + if (callback) + callback.call(); + } + }, + + onDlgBtnClick: function(event) { + var state = event.currentTarget.attributes['result'].value; + this.api.asc_pluginButtonClick(parseInt(state)); + }, + + onToolClose: function() { + this.api.asc_pluginButtonClick(-1); + }, + + onPluginMouseUp: function(x, y) { + if (this.pluginDlg) { + if (this.pluginDlg.binding.dragStop) this.pluginDlg.binding.dragStop(); + if (this.pluginDlg.binding.resizeStop) this.pluginDlg.binding.resizeStop(); + } + }, + + onPluginMouseMove: function(x, y) { + if (this.pluginDlg) { + var offset = this.pluginContainer.offset(); + if (this.pluginDlg.binding.drag) this.pluginDlg.binding.drag({ pageX: x*Common.Utils.zoom()+offset.left, pageY: y*Common.Utils.zoom()+offset.top }); + if (this.pluginDlg.binding.resize) this.pluginDlg.binding.resize({ pageX: x*Common.Utils.zoom()+offset.left, pageY: y*Common.Utils.zoom()+offset.top }); + } + }, + + onPluginsInit: function(pluginsdata) { + !(pluginsdata instanceof Array) && (pluginsdata = pluginsdata["pluginsData"]); + this.parsePlugins(pluginsdata) + }, + + runAutoStartPlugins: function() { + if (this.autostart && this.autostart.length > 0) { + this.api.asc_pluginRun(this.autostart.shift(), 0, ''); + } + }, + + resetPluginsList: function() { + this.getApplication().getCollection('Common.Collections.Plugins').reset(); + }, + + parsePlugins: function(pluginsdata) { + var me = this; + var pluginStore = this.getApplication().getCollection('Common.Collections.Plugins'), + isEdit = false, + editor = me.editor, + apiVersion = me.api ? me.api.GetVersion() : undefined; + if ( pluginsdata instanceof Array ) { + var arr = [], + lang = me.appOptions.lang.split(/[\-_]/)[0]; + pluginsdata.forEach(function(item){ + if ( arr.some(function(i) { + return (i.get('baseUrl') == item.baseUrl || i.get('guid') == item.guid); + } + ) || pluginStore.findWhere({baseUrl: item.baseUrl}) || pluginStore.findWhere({guid: item.guid})) + { + return; + } + + var variationsArr = [], + pluginVisible = false; + item.variations.forEach(function(itemVar){ + var visible = (isEdit || itemVar.isViewer && (itemVar.isDisplayedInViewer!==false)) && _.contains(itemVar.EditorsSupport, editor) && !itemVar.isSystem; + if ( visible ) pluginVisible = true; + + if (!item.isUICustomizer ) { + var model = new Common.Models.PluginVariation(itemVar); + var description = itemVar.description; + if (typeof itemVar.descriptionLocale == 'object') + description = itemVar.descriptionLocale[lang] || itemVar.descriptionLocale['en'] || description || ''; + + _.each(itemVar.buttons, function(b, index){ + if (typeof b.textLocale == 'object') + b.text = b.textLocale[lang] || b.textLocale['en'] || b.text || ''; + b.visible = (isEdit || b.isViewer !== false); + }); + + model.set({ + description: description, + index: variationsArr.length, + url: itemVar.url, + icons: itemVar.icons2 || itemVar.icons, + buttons: itemVar.buttons, + visible: visible, + help: itemVar.help + }); + + variationsArr.push(model); + } + }); + + if (variationsArr.length > 0 && !item.isUICustomizer) { + var name = item.name; + if (typeof item.nameLocale == 'object') + name = item.nameLocale[lang] || item.nameLocale['en'] || name || ''; + + if (pluginVisible) + pluginVisible = me.checkPluginVersion(apiVersion, item.minVersion); + + arr.push(new Common.Models.Plugin({ + name : name, + guid: item.guid, + baseUrl : item.baseUrl, + variations: variationsArr, + currentVariation: 0, + visible: pluginVisible, + groupName: (item.group) ? item.group.name : '', + groupRank: (item.group) ? item.group.rank : 0, + minVersion: item.minVersion + })); + } + }); + + if (pluginStore) + { + arr = pluginStore.models.concat(arr); + arr.sort(function(a, b){ + var rank_a = a.get('groupRank'), + rank_b = b.get('groupRank'); + if (rank_a < rank_b) + return (rank_a==0) ? 1 : -1; + if (rank_a > rank_b) + return (rank_b==0) ? -1 : 1; + return 0; + }); + pluginStore.reset(arr); + this.appOptions.canPlugins = !pluginStore.isEmpty(); + } + } + else { + this.appOptions.canPlugins = false; + } + + if (this.appOptions.canPlugins) { + this.refreshPluginsList(); + this.runAutoStartPlugins(); + } + }, + + checkPluginVersion: function(apiVersion, pluginVersion) { + if (apiVersion && apiVersion!=='develop' && pluginVersion && typeof pluginVersion == 'string') { + var res = pluginVersion.match(/^([0-9]+)(?:.([0-9]+))?(?:.([0-9]+))?$/), + apires = apiVersion.match(/^([0-9]+)(?:.([0-9]+))?(?:.([0-9]+))?$/); + if (res && res.length>1 && apires && apires.length>1) { + for (var i=0; i<3; i++) { + var pluginVer = res[i+1] ? parseInt(res[i+1]) : 0, + apiVer = apires[i+1] ? parseInt(apires[i+1]) : 0; + if (pluginVer>apiVer) + return false; + if (pluginVer0) + arr = plugins.plugins; + if (plugins && plugins.config) { + var val = plugins.config.autostart || plugins.config.autoStartGuid; + if (typeof (val) == 'string') + val = [val]; + warn = !!plugins.config.autoStartGuid; + autostart = val || []; + } + + plugins = this.serverPlugins; + if (plugins.plugins && plugins.plugins.length>0) + arr = arr.concat(plugins.plugins); + if (plugins && plugins.config) { + val = plugins.config.autostart || plugins.config.autoStartGuid; + if (typeof (val) == 'string') + val = [val]; + (warn || plugins.config.autoStartGuid) && console.warn("Obsolete: The autoStartGuid parameter is deprecated. Please check the documentation for new plugin connection configuration."); + autostart = autostart.concat(val || []); + } + + this.autostart = autostart; + this.parsePlugins(arr); + } + } + + }, DE.Controllers.Plugins || {})); +}); diff --git a/apps/documenteditor/forms/app_dev.js b/apps/documenteditor/forms/app_dev.js index 33aa736fc..d9800d9c6 100644 --- a/apps/documenteditor/forms/app_dev.js +++ b/apps/documenteditor/forms/app_dev.js @@ -129,7 +129,8 @@ require([ nameSpace: 'DE', autoCreate: false, controllers : [ - 'ApplicationController' + 'ApplicationController', + 'Plugins' ] }); @@ -137,10 +138,12 @@ require([ function() { require([ 'documenteditor/forms/app/controller/ApplicationController', + 'documenteditor/forms/app/controller/Plugins', 'documenteditor/forms/app/view/ApplicationView', 'common/main/lib/util/utils', 'common/main/lib/util/LocalStorage', 'common/main/lib/controller/Themes', + 'common/main/lib/view/PluginDlg', 'common/forms/lib/view/modals' ], function() { window.compareVersions = true; From 4ba266c6c7e8d3cbd4a7b41a146e6692d27c6dd5 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Thu, 24 Feb 2022 13:10:27 +0300 Subject: [PATCH 193/217] [all] fix bug 55359 --- apps/documenteditor/main/app/controller/ViewTab.js | 6 ++++-- apps/presentationeditor/main/app/controller/ViewTab.js | 6 ++++-- apps/spreadsheeteditor/main/app/controller/ViewTab.js | 6 ++++-- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/apps/documenteditor/main/app/controller/ViewTab.js b/apps/documenteditor/main/app/controller/ViewTab.js index 0e544b79b..6558e36aa 100644 --- a/apps/documenteditor/main/app/controller/ViewTab.js +++ b/apps/documenteditor/main/app/controller/ViewTab.js @@ -246,8 +246,10 @@ define([ if (this.view) { var current_theme = Common.UI.Themes.currentThemeId() || Common.UI.Themes.defaultThemeId(), menu_item = _.findWhere(this.view.btnInterfaceTheme.menu.items, {value: current_theme}); - this.view.btnInterfaceTheme.menu.clearAll(); - menu_item.setChecked(true, true); + if ( menu_item ) { + this.view.btnInterfaceTheme.menu.clearAll(); + menu_item.setChecked(true, true); + } this.view.btnDarkDocument.setDisabled(!Common.UI.Themes.isDarkTheme()); } }, diff --git a/apps/presentationeditor/main/app/controller/ViewTab.js b/apps/presentationeditor/main/app/controller/ViewTab.js index 9fedc8a61..23d85f9f4 100644 --- a/apps/presentationeditor/main/app/controller/ViewTab.js +++ b/apps/presentationeditor/main/app/controller/ViewTab.js @@ -202,8 +202,10 @@ define([ if (this.view) { var current_theme = Common.UI.Themes.currentThemeId() || Common.UI.Themes.defaultThemeId(), menu_item = _.findWhere(this.view.btnInterfaceTheme.menu.items, {value: current_theme}); - this.view.btnInterfaceTheme.menu.clearAll(); - menu_item.setChecked(true, true); + if ( !!menu_item ) { + this.view.btnInterfaceTheme.menu.clearAll(); + menu_item.setChecked(true, true); + } } }, diff --git a/apps/spreadsheeteditor/main/app/controller/ViewTab.js b/apps/spreadsheeteditor/main/app/controller/ViewTab.js index 09d045e0b..8a09ef62b 100644 --- a/apps/spreadsheeteditor/main/app/controller/ViewTab.js +++ b/apps/spreadsheeteditor/main/app/controller/ViewTab.js @@ -284,8 +284,10 @@ define([ if (this.view) { var current_theme = Common.UI.Themes.currentThemeId() || Common.UI.Themes.defaultThemeId(), menu_item = _.findWhere(this.view.btnInterfaceTheme.menu.items, {value: current_theme}); - this.view.btnInterfaceTheme.menu.clearAll(); - menu_item.setChecked(true, true); + if ( !!menu_item ) { + this.view.btnInterfaceTheme.menu.clearAll(); + menu_item.setChecked(true, true); + } } } From 84854bc475f4c7b639bb9f7b22597d8a57b7a31e Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 24 Feb 2022 15:42:21 +0300 Subject: [PATCH 194/217] Fix Bug 55735 --- .../main/app/view/ShapeSettings.js | 35 +++++++++++-------- .../main/app/view/ShapeSettings.js | 32 ++++++++++------- .../main/app/view/SlideSettings.js | 34 +++++++++++------- .../main/app/view/CellSettings.js | 22 ++++++------ .../main/app/view/ShapeSettings.js | 34 +++++++++++------- 5 files changed, 95 insertions(+), 62 deletions(-) diff --git a/apps/documenteditor/main/app/view/ShapeSettings.js b/apps/documenteditor/main/app/view/ShapeSettings.js index b832fc750..8f7a7031d 100644 --- a/apps/documenteditor/main/app/view/ShapeSettings.js +++ b/apps/documenteditor/main/app/view/ShapeSettings.js @@ -129,7 +129,7 @@ define([ this.txtKnit, this.txtLeather, this.txtBrownPaper, this.txtPapyrus, this.txtWood]; this.fillControls = []; - this.gradientColorsStr=""; + this.gradientColorsStr="#000, #fff"; this.typeGradient = 90 ; this.render(); }, @@ -468,9 +468,13 @@ define([ rawData = record; } - this.typeGradient = rawData.type + 90; - - (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) ? this.GradLinearDirectionType = rawData.type : this.GradRadialDirectionIdx = 0; + if (this.GradFillType === Asc.c_oAscFillGradType.GRAD_LINEAR) { + this.GradLinearDirectionType = rawData.type; + this.typeGradient = rawData.type + 90; + } else { + this.GradRadialDirectionIdx = 0; + this.typeGradient = rawData.type; + } if (this.api) { if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) { this.numGradientAngle.setValue(rawData.type, true); @@ -1223,13 +1227,13 @@ define([ btnDirectionRedraw: function(slider, gradientColorsStr) { this.gradientColorsStr = gradientColorsStr; - if (this.mnuDirectionPicker.dataViewItems.length == 1) - this.mnuDirectionPicker.dataViewItems[0].$el.children(0).css({'background': 'radial-gradient(' + gradientColorsStr + ')'}); - else - this.mnuDirectionPicker.dataViewItems.forEach(function (item) { - var type = item.model.get('type') + 90; - item.$el.children(0).css({'background': 'linear-gradient(' + type + 'deg, ' + gradientColorsStr + ')'}); - }); + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = gradientColorsStr; + }); + this._viewDataRadial.gradientColorsStr = this.gradientColorsStr; + this.mnuDirectionPicker.store.each(function(item){ + item.set('gradientColorsStr', gradientColorsStr); + }, this); if (this.typeGradient == -1) this.btnDirection.$icon.css({'background': 'none'}); @@ -1397,9 +1401,12 @@ define([ { type:270, subtype:3}, { type:225, subtype:7} ]; + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = me.gradientColorsStr; + }); this._viewDataRadial = [ - { type:2, subtype:5} + { type:2, subtype:5, gradientColorsStr: this.gradientColorsStr} ]; this.btnDirection = new Common.UI.Button({ @@ -1424,8 +1431,8 @@ define([ allowScrollbar: false, store: new Common.UI.DataViewStore(me._viewDataLinear), itemTemplate: _.template('
') + +'<% if(type!=2) {%>linear-gradient(<%= type + 90 %>deg,<%= gradientColorsStr %>)' + +' <%} else {%> radial-gradient(<%= gradientColorsStr %>) <%}%>;">
') }); }); this.btnDirection.render($('#shape-button-direction')); diff --git a/apps/presentationeditor/main/app/view/ShapeSettings.js b/apps/presentationeditor/main/app/view/ShapeSettings.js index 236a161b8..3d4167f10 100644 --- a/apps/presentationeditor/main/app/view/ShapeSettings.js +++ b/apps/presentationeditor/main/app/view/ShapeSettings.js @@ -448,8 +448,13 @@ define([ rawData = record; } - this.typeGradient = rawData.type + 90; - (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) ? this.GradLinearDirectionType = rawData.type : this.GradRadialDirectionIdx = 0; + if (this.GradFillType === Asc.c_oAscFillGradType.GRAD_LINEAR) { + this.GradLinearDirectionType = rawData.type; + this.typeGradient = rawData.type + 90; + } else { + this.GradRadialDirectionIdx = 0; + this.typeGradient = rawData.type; + } if (this.api) { if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) { this.numGradientAngle.setValue(rawData.type, true); @@ -536,13 +541,13 @@ define([ btnDirectionRedraw: function(slider, gradientColorsStr) { this.gradientColorsStr = gradientColorsStr; - if (this.mnuDirectionPicker.dataViewItems.length == 1) - this.mnuDirectionPicker.dataViewItems[0].$el.children(0).css({'background': 'radial-gradient(' + gradientColorsStr + ')'}); - else - this.mnuDirectionPicker.dataViewItems.forEach(function (item) { - var type = item.model.get('type') + 90; - item.$el.children(0).css({'background': 'linear-gradient(' + type + 'deg, ' + gradientColorsStr + ')'}); - }); + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = gradientColorsStr; + }); + this._viewDataRadial.gradientColorsStr = this.gradientColorsStr; + this.mnuDirectionPicker.store.each(function(item){ + item.set('gradientColorsStr', gradientColorsStr); + }, this); if (this.typeGradient == -1) this.btnDirection.$icon.css({'background': 'none'}); @@ -1302,9 +1307,12 @@ define([ { type:270, subtype:3}, { type:225, subtype:7} ]; + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = me.gradientColorsStr; + }); this._viewDataRadial = [ - { type:2, subtype:5} + { type:2, subtype:5, gradientColorsStr: this.gradientColorsStr} ]; this.btnDirection = new Common.UI.Button({ @@ -1328,8 +1336,8 @@ define([ restoreHeight: 174, store: new Common.UI.DataViewStore(me._viewDataLinear), itemTemplate: _.template('
') + +'<% if(type!=2) {%>linear-gradient(<%= type + 90 %>deg,<%= gradientColorsStr %>)' + +' <%} else {%> radial-gradient(<%= gradientColorsStr %>) <%}%>;">
') }); }); this.btnDirection.render($('#shape-button-direction')); diff --git a/apps/presentationeditor/main/app/view/SlideSettings.js b/apps/presentationeditor/main/app/view/SlideSettings.js index 2b4005fdc..1bb821d15 100644 --- a/apps/presentationeditor/main/app/view/SlideSettings.js +++ b/apps/presentationeditor/main/app/view/SlideSettings.js @@ -110,7 +110,7 @@ define([ this.textureNames = [this.txtCanvas, this.txtCarton, this.txtDarkFabric, this.txtGrain, this.txtGranite, this.txtGreyPaper, this.txtKnit, this.txtLeather, this.txtBrownPaper, this.txtPapyrus, this.txtWood]; - this.gradientColorsStr=""; + this.gradientColorsStr="#000, #fff"; this.typeGradient = 90; this.render(); @@ -519,8 +519,13 @@ define([ rawData = record; } - this.typeGradient = rawData.type + 90; - (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) ? this.GradLinearDirectionType = rawData.type : this.GradRadialDirectionIdx = 0; + if (this.GradFillType === Asc.c_oAscFillGradType.GRAD_LINEAR) { + this.GradLinearDirectionType = rawData.type; + this.typeGradient = rawData.type + 90; + } else { + this.GradRadialDirectionIdx = 0; + this.typeGradient = rawData.type; + } if (this.api) { if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) { this.numGradientAngle.setValue(rawData.type, true); @@ -607,13 +612,13 @@ define([ btnDirectionRedraw: function(slider, gradientColorsStr) { this.gradientColorsStr = gradientColorsStr; - if (this.mnuDirectionPicker.dataViewItems.length == 1) - this.mnuDirectionPicker.dataViewItems[0].$el.children(0).css({'background': 'radial-gradient(' + gradientColorsStr + ')'}); - else - this.mnuDirectionPicker.dataViewItems.forEach(function (item) { - var type = item.model.get('type') + 90; - item.$el.children(0).css({'background': 'linear-gradient(' + type + 'deg, ' + gradientColorsStr + ')'}); - }); + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = gradientColorsStr; + }); + this._viewDataRadial.gradientColorsStr = this.gradientColorsStr; + this.mnuDirectionPicker.store.each(function(item){ + item.set('gradientColorsStr', gradientColorsStr); + }, this); if (this.typeGradient == -1) this.btnDirection.$icon.css({'background': 'none'}); @@ -799,9 +804,12 @@ define([ { type:270, subtype:3}, { type:225, subtype:7} ]; + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = me.gradientColorsStr; + }); this._viewDataRadial = [ - { type:2, subtype:5} + { type:2, subtype:5, gradientColorsStr: this.gradientColorsStr} ]; this.btnDirection = new Common.UI.Button({ @@ -825,8 +833,8 @@ define([ restoreHeight: 174, store: new Common.UI.DataViewStore(me._viewDataLinear), itemTemplate: _.template('
') + +'<% if(type!=2) {%>linear-gradient(<%= type + 90 %>deg,<%= gradientColorsStr %>)' + +' <%} else {%> radial-gradient(<%= gradientColorsStr %>) <%}%>;">
') }); }); this.btnDirection.render($('#slide-button-direction')); diff --git a/apps/spreadsheeteditor/main/app/view/CellSettings.js b/apps/spreadsheeteditor/main/app/view/CellSettings.js index f6f58591e..690341383 100644 --- a/apps/spreadsheeteditor/main/app/view/CellSettings.js +++ b/apps/spreadsheeteditor/main/app/view/CellSettings.js @@ -92,7 +92,7 @@ define([ this.GradColor = { values: [0, 100], colors: ['000000', 'ffffff'], currentIdx: 0}; this.fillControls = []; - this.gradientColorsStr=""; + this.gradientColorsStr="#000, #fff"; this.typeGradient = 90; this.render(); @@ -242,6 +242,9 @@ define([ { offsetx: 50, offsety: 100, type:270, subtype:3}, { offsetx: 100, offsety: 100, type:225, subtype:7} ]; + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = me.gradientColorsStr; + }); this.btnDirection = new Common.UI.Button({ cls : 'btn-large-dataview', @@ -263,7 +266,8 @@ define([ parentMenu: btn.menu, restoreHeight: 174, store: new Common.UI.DataViewStore(me._viewDataLinear), - itemTemplate: _.template('
') + itemTemplate: _.template('
') }); }); this.btnDirection.render($('#cell-button-direction')); @@ -1080,15 +1084,13 @@ define([ }, btnDirectionRedraw: function(slider, gradientColorsStr) { - this.gradientColorsStr = gradientColorsStr; - if (this.mnuDirectionPicker.dataViewItems.length == 1) - this.mnuDirectionPicker.dataViewItems[0].$el.children(0).css({'background': 'radial-gradient(' + gradientColorsStr + ')'}); - else - this.mnuDirectionPicker.dataViewItems.forEach(function (item) { - var type = item.model.get('type') + 90; - item.$el.children(0).css({'background': 'linear-gradient(' + type + 'deg, ' + gradientColorsStr + ')'}); - }); + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = gradientColorsStr; + }); + this.mnuDirectionPicker.store.each(function(item){ + item.set('gradientColorsStr', gradientColorsStr); + }, this); if (this.typeGradient == -1) this.btnDirection.$icon.css({'background': 'none'}); diff --git a/apps/spreadsheeteditor/main/app/view/ShapeSettings.js b/apps/spreadsheeteditor/main/app/view/ShapeSettings.js index 3cb0252cb..50ee3dfea 100644 --- a/apps/spreadsheeteditor/main/app/view/ShapeSettings.js +++ b/apps/spreadsheeteditor/main/app/view/ShapeSettings.js @@ -124,7 +124,7 @@ define([ this.txtKnit, this.txtLeather, this.txtBrownPaper, this.txtPapyrus, this.txtWood]; this.fillControls = []; - this.gradientColorsStr=""; + this.gradientColorsStr="#000, #fff"; this.typeGradient = 90; this.render(); @@ -461,8 +461,13 @@ define([ rawData = record; } - this.typeGradient = rawData.type + 90; - (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) ? this.GradLinearDirectionType = rawData.type : this.GradRadialDirectionIdx = 0; + if (this.GradFillType === Asc.c_oAscFillGradType.GRAD_LINEAR) { + this.GradLinearDirectionType = rawData.type; + this.typeGradient = rawData.type + 90; + } else { + this.GradRadialDirectionIdx = 0; + this.typeGradient = rawData.type; + } if (this.api) { if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) { this.numGradientAngle.setValue(rawData.type, true); @@ -1144,13 +1149,13 @@ define([ btnDirectionRedraw: function(slider, gradientColorsStr) { this.gradientColorsStr = gradientColorsStr; - if (this.mnuDirectionPicker.dataViewItems.length == 1) - this.mnuDirectionPicker.dataViewItems[0].$el.children(0).css({'background': 'radial-gradient(' + gradientColorsStr + ')'}); - else - this.mnuDirectionPicker.dataViewItems.forEach(function (item) { - var type = item.model.get('type') + 90; - item.$el.children(0).css({'background': 'linear-gradient(' + type + 'deg, ' + gradientColorsStr + ')'}); - }); + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = gradientColorsStr; + }); + this._viewDataRadial.gradientColorsStr = this.gradientColorsStr; + this.mnuDirectionPicker.store.each(function(item){ + item.set('gradientColorsStr', gradientColorsStr); + }, this); if (this.typeGradient == -1) this.btnDirection.$icon.css({'background': 'none'}); @@ -1318,9 +1323,12 @@ define([ { type:270, subtype:3}, { type:225, subtype:7} ]; + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = me.gradientColorsStr; + }); this._viewDataRadial = [ - { type:2, subtype:5} + { type:2, subtype:5, gradientColorsStr: this.gradientColorsStr} ]; this.btnDirection = new Common.UI.Button({ @@ -1344,8 +1352,8 @@ define([ restoreHeight: 174, store: new Common.UI.DataViewStore(me._viewDataLinear), itemTemplate: _.template('
') + +'<% if(type!=2) {%>linear-gradient(<%= type + 90 %>deg,<%= gradientColorsStr %>)' + +' <%} else {%> radial-gradient(<%= gradientColorsStr %>) <%}%>;">
') }); }); this.btnDirection.render($('#shape-button-direction')); From de1c5ba1937ff20f11978156b7fa9d2ed2d05055 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Thu, 24 Feb 2022 16:39:09 +0300 Subject: [PATCH 195/217] [mobile] fix bug 55742, 55744 --- apps/documenteditor/mobile/src/store/textSettings.js | 10 +++++----- .../mobile/src/store/textSettings.js | 10 +++++----- .../spreadsheeteditor/mobile/src/store/textSettings.js | 10 +++++----- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/apps/documenteditor/mobile/src/store/textSettings.js b/apps/documenteditor/mobile/src/store/textSettings.js index 2e8ae3122..9e35a9144 100644 --- a/apps/documenteditor/mobile/src/store/textSettings.js +++ b/apps/documenteditor/mobile/src/store/textSettings.js @@ -101,11 +101,11 @@ export class storeTextSettings { this.thumbCanvas = document.createElement('canvas'); this.thumbContext = this.thumbCanvas.getContext('2d'); this.thumbs = [ - {ratio: 1, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail.png', width: this.iconWidth, height: this.iconHeight}, - {ratio: 1.25, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail@1.25x.png', width: this.iconWidth * 1.25, height: this.iconHeight * 1.25}, - {ratio: 1.5, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail@1.5x.png', width: this.iconWidth * 1.5, height: this.iconHeight * 1.5}, - {ratio: 1.75, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail@1.75x.png', width: this.iconWidth * 1.75, height: this.iconHeight * 1.75}, - {ratio: 2, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail@2x.png', width: this.iconWidth * 2, height: this.iconHeight * 2} + {ratio: 1, path: '../../../../../sdkjs/common/Images/fonts_thumbnail.png', width: this.iconWidth, height: this.iconHeight}, + {ratio: 1.25, path: '../../../../../sdkjs/common/Images/fonts_thumbnail@1.25x.png', width: this.iconWidth * 1.25, height: this.iconHeight * 1.25}, + {ratio: 1.5, path: '../../../../../sdkjs/common/Images/fonts_thumbnail@1.5x.png', width: this.iconWidth * 1.5, height: this.iconHeight * 1.5}, + {ratio: 1.75, path: '../../../../../sdkjs/common/Images/fonts_thumbnail@1.75x.png', width: this.iconWidth * 1.75, height: this.iconHeight * 1.75}, + {ratio: 2, path: '../../../../../sdkjs/common/Images/fonts_thumbnail@2x.png', width: this.iconWidth * 2, height: this.iconHeight * 2} ]; const applicationPixelRatio = Common.Utils.applicationPixelRatio(); diff --git a/apps/presentationeditor/mobile/src/store/textSettings.js b/apps/presentationeditor/mobile/src/store/textSettings.js index 0abfd0e62..74d018cd0 100644 --- a/apps/presentationeditor/mobile/src/store/textSettings.js +++ b/apps/presentationeditor/mobile/src/store/textSettings.js @@ -102,11 +102,11 @@ export class storeTextSettings { this.thumbCanvas = document.createElement('canvas'); this.thumbContext = this.thumbCanvas.getContext('2d'); this.thumbs = [ - {ratio: 1, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail.png', width: this.iconWidth, height: this.iconHeight}, - {ratio: 1.25, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail@1.25x.png', width: this.iconWidth * 1.25, height: this.iconHeight * 1.25}, - {ratio: 1.5, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail@1.5x.png', width: this.iconWidth * 1.5, height: this.iconHeight * 1.5}, - {ratio: 1.75, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail@1.75x.png', width: this.iconWidth * 1.75, height: this.iconHeight * 1.75}, - {ratio: 2, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail@2x.png', width: this.iconWidth * 2, height: this.iconHeight * 2} + {ratio: 1, path: '../../../../../sdkjs/common/Images/fonts_thumbnail.png', width: this.iconWidth, height: this.iconHeight}, + {ratio: 1.25, path: '../../../../../sdkjs/common/Images/fonts_thumbnail@1.25x.png', width: this.iconWidth * 1.25, height: this.iconHeight * 1.25}, + {ratio: 1.5, path: '../../../../../sdkjs/common/Images/fonts_thumbnail@1.5x.png', width: this.iconWidth * 1.5, height: this.iconHeight * 1.5}, + {ratio: 1.75, path: '../../../../../sdkjs/common/Images/fonts_thumbnail@1.75x.png', width: this.iconWidth * 1.75, height: this.iconHeight * 1.75}, + {ratio: 2, path: '../../../../../sdkjs/common/Images/fonts_thumbnail@2x.png', width: this.iconWidth * 2, height: this.iconHeight * 2} ]; const applicationPixelRatio = Common.Utils.applicationPixelRatio(); diff --git a/apps/spreadsheeteditor/mobile/src/store/textSettings.js b/apps/spreadsheeteditor/mobile/src/store/textSettings.js index 9b57d4350..b034ad03f 100644 --- a/apps/spreadsheeteditor/mobile/src/store/textSettings.js +++ b/apps/spreadsheeteditor/mobile/src/store/textSettings.js @@ -105,11 +105,11 @@ export class storeTextSettings { this.thumbCanvas = document.createElement('canvas'); this.thumbContext = this.thumbCanvas.getContext('2d'); this.thumbs = [ - {ratio: 1, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail.png', width: this.iconWidth, height: this.iconHeight}, - {ratio: 1.25, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail@1.25x.png', width: this.iconWidth * 1.25, height: this.iconHeight * 1.25}, - {ratio: 1.5, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail@1.5x.png', width: this.iconWidth * 1.5, height: this.iconHeight * 1.5}, - {ratio: 1.75, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail@1.75x.png', width: this.iconWidth * 1.75, height: this.iconHeight * 1.75}, - {ratio: 2, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail@2x.png', width: this.iconWidth * 2, height: this.iconHeight * 2} + {ratio: 1, path: '../../../../../sdkjs/common/Images/fonts_thumbnail.png', width: this.iconWidth, height: this.iconHeight}, + {ratio: 1.25, path: '../../../../../sdkjs/common/Images/fonts_thumbnail@1.25x.png', width: this.iconWidth * 1.25, height: this.iconHeight * 1.25}, + {ratio: 1.5, path: '../../../../../sdkjs/common/Images/fonts_thumbnail@1.5x.png', width: this.iconWidth * 1.5, height: this.iconHeight * 1.5}, + {ratio: 1.75, path: '../../../../../sdkjs/common/Images/fonts_thumbnail@1.75x.png', width: this.iconWidth * 1.75, height: this.iconHeight * 1.75}, + {ratio: 2, path: '../../../../../sdkjs/common/Images/fonts_thumbnail@2x.png', width: this.iconWidth * 2, height: this.iconHeight * 2} ]; const applicationPixelRatio = Common.Utils.applicationPixelRatio(); From e3459aa8f0383b2d4f0f09f68fadc3233de9c37c Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Thu, 24 Feb 2022 17:10:26 +0300 Subject: [PATCH 196/217] [SSE] Fix Bug 55629 --- .../mobile/src/view/Statusbar.jsx | 66 ++++++++++--------- 1 file changed, 35 insertions(+), 31 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx b/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx index 5e49ad2bd..b228ea604 100644 --- a/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx @@ -14,23 +14,25 @@ const PageListMove = props => { const allSheets = sheets.sheets; return ( - - - - - { allSheets.map((model, index) => - model.hidden ? null : + + + + + + { allSheets.map((model, index) => + model.hidden ? null : + onMenuMoveClick(index)} />) + } onMenuMoveClick(index)} />) - } - onMenuMoveClick(-255)}/> - - - + title={t('Statusbar.textMoveToEnd')} + onClick={() => onMenuMoveClick(-255)}/> + + + + ) }; @@ -40,19 +42,21 @@ const PageAllList = (props) => { const allSheets = sheets.sheets; return ( - - - { allSheets.map( (model,sheetIndex) => - onTabListClick(sheetIndex)}> - {model.hidden ? -
- {t('Statusbar.textHidden')} -
- : null} -
) - } -
-
+ + + + { allSheets.map( (model,sheetIndex) => + onTabListClick(sheetIndex)}> + {model.hidden ? +
+ {t('Statusbar.textHidden')} +
+ : null} +
) + } +
+
+
) }; @@ -138,7 +142,7 @@ const StatusbarView = inject('storeAppOptions', 'sheets', 'users')(observer(prop ) : null} { - + } @@ -150,7 +154,7 @@ const StatusbarView = inject('storeAppOptions', 'sheets', 'users')(observer(prop
: - + } From 99e2630c9e88a7e4cbe141d7cd75ef0be3d8713b Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 24 Feb 2022 17:49:07 +0300 Subject: [PATCH 197/217] [SSE] For Bug 48526 --- apps/spreadsheeteditor/main/app/view/DataTab.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/spreadsheeteditor/main/app/view/DataTab.js b/apps/spreadsheeteditor/main/app/view/DataTab.js index b5c4f8d0d..35f998f1d 100644 --- a/apps/spreadsheeteditor/main/app/view/DataTab.js +++ b/apps/spreadsheeteditor/main/app/view/DataTab.js @@ -220,7 +220,7 @@ define([ iconCls: 'toolbar__icon btn-data-validation', caption: this.capBtnTextDataValidation, disabled: true, - lock: [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.editPivot, _set.cantModifyFilter, _set.sheetLock, _set.wsLock], + lock: [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.editPivot, _set.cantModifyFilter, _set.sheetLock, _set.wsLock], dataHint: '1', dataHintDirection: 'bottom', dataHintOffset: 'small' From 7bba5f4a046d1f8f662c2830bd48a07486705bbe Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Thu, 24 Feb 2022 21:35:50 +0300 Subject: [PATCH 198/217] Fix selectors users --- .../mobile/lib/controller/ContextMenu.jsx | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/apps/common/mobile/lib/controller/ContextMenu.jsx b/apps/common/mobile/lib/controller/ContextMenu.jsx index 8a91b862e..6bd4ad0de 100644 --- a/apps/common/mobile/lib/controller/ContextMenu.jsx +++ b/apps/common/mobile/lib/controller/ContextMenu.jsx @@ -175,6 +175,7 @@ class ContextMenuController extends Component { break; } } + if (!src) { src = $$(`
`); src.attr('userid', UserId); @@ -185,11 +186,20 @@ class ContextMenuController extends Component { //src.fadeIn(150); src[0].classList.add('active'); - $$('#id_main_view').append(src); + $$("#editor_sdk").append(src); } - src.css({ - top: (Y - tipHeight) + 'px', - left: X + 'px'}); + + if ( X + src.outerWidth() > $$(window).width() ) { + src.css({ + top: (Y - tipHeight) + 'px', + left: X - src.outerWidth() + 'px'}); + } else { + src.css({ + left: X + 'px', + top: (Y - tipHeight) + 'px', + }); + } + /** coauthoring end **/ } From 2241438fc79233a20232d69d910795f3881906f1 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Thu, 24 Feb 2022 22:40:22 +0300 Subject: [PATCH 199/217] [all] fix markup for win xp --- apps/common/main/lib/view/Header.js | 8 +++++--- .../common/main/resources/less/winxp_fix.less | 19 ++++++++++++++++--- 2 files changed, 21 insertions(+), 6 deletions(-) diff --git a/apps/common/main/lib/view/Header.js b/apps/common/main/lib/view/Header.js index 79df1ab09..19de39c1f 100644 --- a/apps/common/main/lib/view/Header.js +++ b/apps/common/main/lib/view/Header.js @@ -104,9 +104,11 @@ define([ '
' + '
' + '
' + - '' + + '
' + + '' + + '
' '
' + '' + ''; diff --git a/apps/common/main/resources/less/winxp_fix.less b/apps/common/main/resources/less/winxp_fix.less index 25e061195..9b319bf6a 100644 --- a/apps/common/main/resources/less/winxp_fix.less +++ b/apps/common/main/resources/less/winxp_fix.less @@ -1,6 +1,19 @@ .winxp { - .toolbar .tabs>ul, - .toolbar .extra .btn-slot,#box-document-title .btn-slot { - height:28px; + @toolbar-editor-height: 28px; + @toolbar-viewer-height: 32px; + .toolbar { + .tabs > ul, .extra .btn-slot { + height: @toolbar-editor-height; } + + &.toolbar-view { + .tabs > ul, .extra .btn-slot { + height: @toolbar-viewer-height; + } + } + } + + #box-document-title .btn-slot { + height: @toolbar-editor-height; + } } \ No newline at end of file From 06f3f2c1e793e0b126b093dd2f69f98d7376e34f Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 25 Feb 2022 21:48:38 +0300 Subject: [PATCH 200/217] Update translation --- apps/documenteditor/main/locale/ca.json | 6 + apps/documenteditor/main/locale/cs.json | 6 + apps/documenteditor/main/locale/ja.json | 3 + apps/documenteditor/main/locale/nl.json | 34 + apps/documenteditor/main/locale/pt.json | 6 + apps/documenteditor/main/locale/zh.json | 6 + apps/presentationeditor/main/locale/ca.json | 2 - apps/presentationeditor/main/locale/cs.json | 2 - apps/presentationeditor/main/locale/de.json | 2 - apps/presentationeditor/main/locale/el.json | 2 - apps/presentationeditor/main/locale/en.json | 2 - apps/presentationeditor/main/locale/es.json | 2 - apps/presentationeditor/main/locale/fr.json | 2 - apps/presentationeditor/main/locale/gl.json | 2 - apps/presentationeditor/main/locale/it.json | 2 - apps/presentationeditor/main/locale/ja.json | 2 + apps/presentationeditor/main/locale/nl.json | 17 +- apps/presentationeditor/main/locale/pt.json | 2 - apps/presentationeditor/main/locale/ro.json | 2 - apps/presentationeditor/main/locale/ru.json | 2 - apps/presentationeditor/main/locale/sv.json | 2 - apps/presentationeditor/main/locale/uk.json | 2 - apps/presentationeditor/main/locale/zh.json | 2 - apps/spreadsheeteditor/main/locale/id.json | 791 +++++++++++++++++++- apps/spreadsheeteditor/main/locale/pt.json | 36 +- 25 files changed, 887 insertions(+), 50 deletions(-) diff --git a/apps/documenteditor/main/locale/ca.json b/apps/documenteditor/main/locale/ca.json index 3324af12b..b88c489b2 100644 --- a/apps/documenteditor/main/locale/ca.json +++ b/apps/documenteditor/main/locale/ca.json @@ -213,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Llistes automàtiques de pics", "Common.Views.AutoCorrectDialog.textBy": "Per", "Common.Views.AutoCorrectDialog.textDelete": "Suprimeix", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Afegiu punt amb doble espai", "Common.Views.AutoCorrectDialog.textFLCells": "Posa en majúscula la primera lletra de les cel·les de la taula", "Common.Views.AutoCorrectDialog.textFLSentence": "Escriu en majúscules la primera lletra de les frases", "Common.Views.AutoCorrectDialog.textHyperlink": "Camins de xarxa i d'Internet per enllaços", @@ -511,6 +512,7 @@ "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.
Useu 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 i deseu en aquest format, es perdran totes les característiques, excepte el text.
Voleu continuar?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "El vostre {0} es convertirà a un format editable. Això pot trigar una estona. El document resultant s'optimitzarà perquè pugueu editar el text, de manera que pot ser que no se sembli a l'original {0}, sobretot si el fitxer original contenia molts gràfics.", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Si continueu i deseu en aquest format, es pot perdre part del format.
Voleu continuar?", "DE.Controllers.Main.applyChangesTextText": "S'estan carregant els canvis...", "DE.Controllers.Main.applyChangesTitleText": "S'estan carregant els canvis", @@ -1460,6 +1462,7 @@ "DE.Views.DocumentHolder.strSign": "Signa", "DE.Views.DocumentHolder.styleText": "Format d'estil", "DE.Views.DocumentHolder.tableText": "Taula", + "DE.Views.DocumentHolder.textAccept": "Accepteu el canvi", "DE.Views.DocumentHolder.textAlign": "Alineació", "DE.Views.DocumentHolder.textArrange": "Organitza", "DE.Views.DocumentHolder.textArrangeBack": "Envia al fons", @@ -1494,6 +1497,7 @@ "DE.Views.DocumentHolder.textPaste": "Enganxa", "DE.Views.DocumentHolder.textPrevPage": "Pàgina anterior", "DE.Views.DocumentHolder.textRefreshField": "Actualitza el camp", + "DE.Views.DocumentHolder.textReject": "Rebutjeu el canvi", "DE.Views.DocumentHolder.textRemCheckBox": "Suprimeix la casella de selecció", "DE.Views.DocumentHolder.textRemComboBox": "Suprimeix el quadre combinat", "DE.Views.DocumentHolder.textRemDropdown": "Suprimeix el desplegable", @@ -2378,6 +2382,8 @@ "DE.Views.Statusbar.pageIndexText": "Pàgina {0} de {1}", "DE.Views.Statusbar.tipFitPage": "Ajusta-ho a la pàgina", "DE.Views.Statusbar.tipFitWidth": "Ajusta-ho a l'amplària", + "DE.Views.Statusbar.tipHandTool": "Eina manual", + "DE.Views.Statusbar.tipSelectTool": "Seleccioneu l'eina", "DE.Views.Statusbar.tipSetLang": "Estableix l'idioma del text", "DE.Views.Statusbar.tipZoomFactor": "Zoom", "DE.Views.Statusbar.tipZoomIn": "Amplia", diff --git a/apps/documenteditor/main/locale/cs.json b/apps/documenteditor/main/locale/cs.json index c2ab1a6b4..a865066a9 100644 --- a/apps/documenteditor/main/locale/cs.json +++ b/apps/documenteditor/main/locale/cs.json @@ -213,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Automatické odrážkové seznamy", "Common.Views.AutoCorrectDialog.textBy": "Od", "Common.Views.AutoCorrectDialog.textDelete": "Odstranit", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Přidat interval s dvojitou mezerou", "Common.Views.AutoCorrectDialog.textFLCells": "První písmeno v obsahu buněk tabulky měnit na velké", "Common.Views.AutoCorrectDialog.textFLSentence": "Velká na začátku věty", "Common.Views.AutoCorrectDialog.textHyperlink": "Internetové a síťové přístupy s hypertextovými odkazy", @@ -511,6 +512,7 @@ "DE.Controllers.LeftMenu.txtCompatible": "Dokument bude uložen v novém formátu. Umožní vám využít všechny funkce editoru, ale může ovlivnit rozvržení dokumentu.
Pokud chcete, aby soubory byly kompatibilní se staršími verzemi MS Word, použijte volbu „Kompatibilita“ v pokročilých nastaveních.", "DE.Controllers.LeftMenu.txtUntitled": "Bez názvu", "DE.Controllers.LeftMenu.warnDownloadAs": "Pokud budete pokračovat v ukládání v tomto formátu, vše kromě textu bude ztraceno.
Opravdu chcete pokračovat?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "Vašich {0} bude převedeno do editovatelného formátu. Tato operace může chvíli trvat. Výsledný dokument bude optimalizován a umožní editaci textu. Nemusí vypadat totožně jako původní {0}, zvláště pokud původní soubor obsahoval velké množství grafiky. ", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Uložením v tomto formátu může být ztracena část formátování dokumentu.
Opravdu chcete pokračovat?", "DE.Controllers.Main.applyChangesTextText": "Načítání změn…", "DE.Controllers.Main.applyChangesTitleText": "Načítání změn", @@ -1460,6 +1462,7 @@ "DE.Views.DocumentHolder.strSign": "Podepsat", "DE.Views.DocumentHolder.styleText": "Formátování jako styl", "DE.Views.DocumentHolder.tableText": "Tabulka", + "DE.Views.DocumentHolder.textAccept": "Přijmout změnu", "DE.Views.DocumentHolder.textAlign": "Zarovnání", "DE.Views.DocumentHolder.textArrange": "Uspořádat", "DE.Views.DocumentHolder.textArrangeBack": "Přesunout na pozadí", @@ -1494,6 +1497,7 @@ "DE.Views.DocumentHolder.textPaste": "Vložit", "DE.Views.DocumentHolder.textPrevPage": "Předchozí stránka", "DE.Views.DocumentHolder.textRefreshField": "Obnovit pole", + "DE.Views.DocumentHolder.textReject": "Odmítnout změnu", "DE.Views.DocumentHolder.textRemCheckBox": "Odstranit zaškrtávací pole", "DE.Views.DocumentHolder.textRemComboBox": "Odstranit výběrové pole", "DE.Views.DocumentHolder.textRemDropdown": "Odstranit rozevírací seznam", @@ -2378,6 +2382,8 @@ "DE.Views.Statusbar.pageIndexText": "Stránka {0} z {1}", "DE.Views.Statusbar.tipFitPage": "Přizpůsobit stránce", "DE.Views.Statusbar.tipFitWidth": "Přizpůsobit šířce", + "DE.Views.Statusbar.tipHandTool": "Nástroj ruka", + "DE.Views.Statusbar.tipSelectTool": "Zvolit nástroj", "DE.Views.Statusbar.tipSetLang": "Nastavit jazyk textu", "DE.Views.Statusbar.tipZoomFactor": "Měřítko zobrazení", "DE.Views.Statusbar.tipZoomIn": "Přiblížit", diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json index ccc5aca84..6ee05345e 100644 --- a/apps/documenteditor/main/locale/ja.json +++ b/apps/documenteditor/main/locale/ja.json @@ -213,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "自動箇条書き", "Common.Views.AutoCorrectDialog.textBy": "幅", "Common.Views.AutoCorrectDialog.textDelete": "削除する", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "スペース2回でピリオドを入力する", "Common.Views.AutoCorrectDialog.textFLCells": "テーブルセルの最初の文字を大文字にする", "Common.Views.AutoCorrectDialog.textFLSentence": "文章の最初の文字を大文字にする", "Common.Views.AutoCorrectDialog.textHyperlink": "インターネットとネットワークのアドレスをハイパーリンクに変更する", @@ -511,6 +512,7 @@ "DE.Controllers.LeftMenu.txtCompatible": "ドキュメントは新しい形式で保存されます。 すべてのエディタ機能を使用できますが、ドキュメントのレイアウトに影響する可能性があります。
ファイルを古いバージョンのMS Wordと互換性を持たせる場合は、詳細設定の[互換性]オプションをご使用ください。", "DE.Controllers.LeftMenu.txtUntitled": "タイトルなし", "DE.Controllers.LeftMenu.warnDownloadAs": "この形式で保存し続ける場合は、テキスト以外のすべての機能が失われます。
続行してもよろしいですか?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "あなたの{0}は編集可能な形式に変換されます。これには時間がかかる場合があります。変換後のドキュメントは、テキストを編集できるように最適化されるため、特に元のファイルに多くのグラフィックが含まれている場合、元の {0} と全く同じようには見えないかもしれません。", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "この形式で保存を続けると、一部の書式が失われる可能性があります。
続行しますか?", "DE.Controllers.Main.applyChangesTextText": "変更の読み込み中...", "DE.Controllers.Main.applyChangesTitleText": "変更の読み込み中", @@ -1455,6 +1457,7 @@ "DE.Views.DocumentHolder.strSign": "サイン", "DE.Views.DocumentHolder.styleText": "スタイルようにフォーマッティングする", "DE.Views.DocumentHolder.tableText": "テーブル", + "DE.Views.DocumentHolder.textAccept": "変更を受け入れる", "DE.Views.DocumentHolder.textAlign": "整列", "DE.Views.DocumentHolder.textArrange": "整列", "DE.Views.DocumentHolder.textArrangeBack": "背景へ移動", diff --git a/apps/documenteditor/main/locale/nl.json b/apps/documenteditor/main/locale/nl.json index 0eda9e811..dba5ba8ff 100644 --- a/apps/documenteditor/main/locale/nl.json +++ b/apps/documenteditor/main/locale/nl.json @@ -168,6 +168,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Nieuw", "Common.UI.ExtendedColorDialog.textRGBErr": "De ingevoerde waarde is onjuist.
Voer een numerieke waarde tussen 0 en 255 in.", "Common.UI.HSBColorPicker.textNoColor": "Geen kleur", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Wachtwoord verbergen", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Wachtwoord weergeven", "Common.UI.SearchDialog.textHighlight": "Resultaten markeren", "Common.UI.SearchDialog.textMatchCase": "Hoofdlettergevoelig", "Common.UI.SearchDialog.textReplaceDef": "Voer de vervangende tekst in", @@ -236,12 +238,14 @@ "Common.Views.Comments.mniAuthorDesc": "Auteur Z tot A", "Common.Views.Comments.mniDateAsc": "Oudste", "Common.Views.Comments.mniDateDesc": "Nieuwste", + "Common.Views.Comments.mniFilterGroups": "Filter per groep", "Common.Views.Comments.mniPositionAsc": "Van bovenkant", "Common.Views.Comments.mniPositionDesc": "Van onderkant", "Common.Views.Comments.textAdd": "Toevoegen", "Common.Views.Comments.textAddComment": "Opmerking toevoegen", "Common.Views.Comments.textAddCommentToDoc": "Opmerking toevoegen aan document", "Common.Views.Comments.textAddReply": "Antwoord toevoegen", + "Common.Views.Comments.textAll": "Alle", "Common.Views.Comments.textAnonym": "Gast", "Common.Views.Comments.textCancel": "Annuleren", "Common.Views.Comments.textClose": "Sluiten", @@ -255,6 +259,7 @@ "Common.Views.Comments.textResolve": "Oplossen", "Common.Views.Comments.textResolved": "Opgelost", "Common.Views.Comments.textSort": "Opmerkingen sorteren", + "Common.Views.Comments.textViewResolved": "U heeft geen toestemming om deze opmerking te heropenen", "Common.Views.CopyWarningDialog.textDontShow": "Dit bericht niet meer weergeven", "Common.Views.CopyWarningDialog.textMsg": "De acties Kopiëren, Knippen en Plakken kunnen alleen met behulp van de knoppen op de werkbalk en de acties in het contextmenu worden uitgevoerd op dit tabblad van de editor.

Als u wilt kopiëren naar of plakken van toepassingen buiten het tabblad van de editor, gebruikt u de volgende toetsencombinaties:", "Common.Views.CopyWarningDialog.textTitle": "Acties Kopiëren, Knippen en Plakken", @@ -431,6 +436,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Opnieuw openen", "Common.Views.ReviewPopover.textReply": "Beantwoorden", "Common.Views.ReviewPopover.textResolve": "Oplossen", + "Common.Views.ReviewPopover.textViewResolved": "U heeft geen toestemming om deze opmerking te heropenen", "Common.Views.ReviewPopover.txtAccept": "Accepteer", "Common.Views.ReviewPopover.txtDeleteTip": "Verwijder", "Common.Views.ReviewPopover.txtEditTip": "Bewerken", @@ -602,6 +608,7 @@ "DE.Controllers.Main.textLongName": "Voer een naam in die uit minder dan 128 tekens bestaat.", "DE.Controllers.Main.textNoLicenseTitle": "Licentielimiet bereikt", "DE.Controllers.Main.textPaidFeature": "Betaalde optie", + "DE.Controllers.Main.textReconnect": "Connectie is hervat", "DE.Controllers.Main.textRemember": "Onthoud voorkeur", "DE.Controllers.Main.textRenameError": "Gebruikersnaam mag niet leeg zijn. ", "DE.Controllers.Main.textRenameLabel": "Voer een naam in die voor samenwerking moet worden gebruikt ", @@ -879,6 +886,7 @@ "DE.Controllers.Main.warnProcessRightsChange": "Het recht om het bestand te bewerken is u ontzegd.", "DE.Controllers.Navigation.txtBeginning": "Begin van het document", "DE.Controllers.Navigation.txtGotoBeginning": "Ga naar het begin van het document", + "DE.Controllers.Statusbar.textDisconnect": "Verbinding verbroken
Proberen opnieuw te verbinden. Controleer de netwerkinstellingen.", "DE.Controllers.Statusbar.textHasChanges": "Er zijn nieuwe wijzigingen bijgehouden", "DE.Controllers.Statusbar.textSetTrackChanges": "U bevindt zich in de modus Wijzigingen bijhouden ", "DE.Controllers.Statusbar.textTrackChanges": "Het document is geopend met de modus 'Wijzigingen bijhouden' geactiveerd", @@ -902,10 +910,14 @@ "DE.Controllers.Toolbar.textMatrix": "Matrices", "DE.Controllers.Toolbar.textOperator": "Operators", "DE.Controllers.Toolbar.textRadical": "Wortels", + "DE.Controllers.Toolbar.textRecentlyUsed": "Recent gebruikt", "DE.Controllers.Toolbar.textScript": "Scripts", "DE.Controllers.Toolbar.textSymbols": "Symbolen", "DE.Controllers.Toolbar.textTabForms": "Formulieren", "DE.Controllers.Toolbar.textWarning": "Waarschuwing", + "DE.Controllers.Toolbar.tipMarkersArrow": "Pijltjes", + "DE.Controllers.Toolbar.tipMarkersCheckmark": "Vinkjes", + "DE.Controllers.Toolbar.tipMarkersDash": "Streepjes", "DE.Controllers.Toolbar.txtAccent_Accent": "Aigu", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Pijl van rechts naar links boven", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Pijl links boven", @@ -1439,6 +1451,7 @@ "DE.Views.DocumentHolder.strSign": "Onderteken", "DE.Views.DocumentHolder.styleText": "Opmaak als stijl", "DE.Views.DocumentHolder.tableText": "Tabel", + "DE.Views.DocumentHolder.textAccept": "Accepteer verandering", "DE.Views.DocumentHolder.textAlign": "Uitlijnen", "DE.Views.DocumentHolder.textArrange": "Ordenen", "DE.Views.DocumentHolder.textArrangeBack": "Naar achtergrond sturen", @@ -1472,6 +1485,7 @@ "DE.Views.DocumentHolder.textPaste": "Plakken", "DE.Views.DocumentHolder.textPrevPage": "Vorige pagina", "DE.Views.DocumentHolder.textRefreshField": "Ververs veld", + "DE.Views.DocumentHolder.textReject": "Verandering weigeren", "DE.Views.DocumentHolder.textRemCheckBox": "Verwijder het selectievakje", "DE.Views.DocumentHolder.textRemComboBox": "Verwijder keuzelijst met invoervak", "DE.Views.DocumentHolder.textRemDropdown": "Dropdown verwijderen", @@ -1505,6 +1519,9 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Inhoudsopgave verversen", "DE.Views.DocumentHolder.textWrap": "Terugloopstijl", "DE.Views.DocumentHolder.tipIsLocked": "Dit element wordt op dit moment bewerkt door een andere gebruiker.", + "DE.Views.DocumentHolder.tipMarkersArrow": "Pijltjes", + "DE.Views.DocumentHolder.tipMarkersCheckmark": "Vinkjes", + "DE.Views.DocumentHolder.tipMarkersDash": "Streepjes", "DE.Views.DocumentHolder.toDictionaryText": "Toevoegen aan woordenboek", "DE.Views.DocumentHolder.txtAddBottom": "Onderrand toevoegen", "DE.Views.DocumentHolder.txtAddFractionBar": "Deelteken toevoegen", @@ -1871,6 +1888,7 @@ "DE.Views.ImageSettings.textCrop": "Uitsnijden", "DE.Views.ImageSettings.textCropFill": "Vulling", "DE.Views.ImageSettings.textCropFit": "Aanpassen", + "DE.Views.ImageSettings.textCropToShape": "Bijsnijden naar vorm", "DE.Views.ImageSettings.textEdit": "Bewerken", "DE.Views.ImageSettings.textEditObject": "Object bewerken", "DE.Views.ImageSettings.textFitMargins": "Aan Marge Aanpassen", @@ -1885,6 +1903,7 @@ "DE.Views.ImageSettings.textHintFlipV": "Verticaal omdraaien", "DE.Views.ImageSettings.textInsert": "Afbeelding vervangen", "DE.Views.ImageSettings.textOriginalSize": "Ware grootte", + "DE.Views.ImageSettings.textRecentlyUsed": "Recent gebruikt", "DE.Views.ImageSettings.textRotate90": "Draaien 90°", "DE.Views.ImageSettings.textRotation": "Draaien", "DE.Views.ImageSettings.textSize": "Grootte", @@ -2155,6 +2174,9 @@ "DE.Views.PageSizeDialog.textTitle": "Paginaformaat", "DE.Views.PageSizeDialog.textWidth": "Breedte", "DE.Views.PageSizeDialog.txtCustom": "Aangepast", + "DE.Views.PageThumbnails.textPageThumbnails": "Pagina pictogrammen", + "DE.Views.PageThumbnails.textThumbnailsSettings": "Pictograminstellingen", + "DE.Views.PageThumbnails.textThumbnailsSize": "Pictogram grootte", "DE.Views.ParagraphSettings.strIndent": "Inspringen", "DE.Views.ParagraphSettings.strIndentsLeftText": "Links", "DE.Views.ParagraphSettings.strIndentsRightText": "Rechts", @@ -2290,6 +2312,7 @@ "DE.Views.ShapeSettings.textPatternFill": "Patroon", "DE.Views.ShapeSettings.textPosition": "Positie", "DE.Views.ShapeSettings.textRadial": "Radiaal", + "DE.Views.ShapeSettings.textRecentlyUsed": "Recent gebruikt", "DE.Views.ShapeSettings.textRotate90": "Draaien 90°", "DE.Views.ShapeSettings.textRotation": "Draaien", "DE.Views.ShapeSettings.textSelectImage": "selecteer afbeelding", @@ -2340,6 +2363,7 @@ "DE.Views.Statusbar.pageIndexText": "Pagina {0} van {1}", "DE.Views.Statusbar.tipFitPage": "Aan pagina aanpassen", "DE.Views.Statusbar.tipFitWidth": "Aan breedte aanpassen", + "DE.Views.Statusbar.tipSelectTool": "Gereedschap selecteren", "DE.Views.Statusbar.tipSetLang": "Taal van tekst instellen", "DE.Views.Statusbar.tipZoomFactor": "Zoomen", "DE.Views.Statusbar.tipZoomIn": "Inzoomen", @@ -2681,6 +2705,7 @@ "DE.Views.Toolbar.textTabLinks": "Verwijzingen", "DE.Views.Toolbar.textTabProtect": "Beveiliging", "DE.Views.Toolbar.textTabReview": "Beoordelen", + "DE.Views.Toolbar.textTabView": "Bekijken", "DE.Views.Toolbar.textTitleError": "Fout", "DE.Views.Toolbar.textToCurrent": "Naar huidige positie", "DE.Views.Toolbar.textTop": "Boven:", @@ -2772,6 +2797,15 @@ "DE.Views.Toolbar.txtScheme7": "Vermogen", "DE.Views.Toolbar.txtScheme8": "Stroom", "DE.Views.Toolbar.txtScheme9": "Gieterij", + "DE.Views.ViewTab.textAlwaysShowToolbar": "Werkbalk altijd weergeven", + "DE.Views.ViewTab.textDarkDocument": "Donker document", + "DE.Views.ViewTab.textFitToPage": "Aan pagina aanpassen", + "DE.Views.ViewTab.textFitToWidth": "Aan breedte aanpassen", + "DE.Views.ViewTab.textInterfaceTheme": "Thema van de interface", + "DE.Views.ViewTab.textNavigation": "Navigatie", + "DE.Views.ViewTab.textRulers": "Linialen", + "DE.Views.ViewTab.textStatusBar": "Statusbalk", + "DE.Views.ViewTab.textZoom": "Inzoomen", "DE.Views.WatermarkSettingsDialog.textAuto": "Automatisch", "DE.Views.WatermarkSettingsDialog.textBold": "Vet", "DE.Views.WatermarkSettingsDialog.textColor": "Tekstkleur", diff --git a/apps/documenteditor/main/locale/pt.json b/apps/documenteditor/main/locale/pt.json index d4fd3e45b..a31fcd768 100644 --- a/apps/documenteditor/main/locale/pt.json +++ b/apps/documenteditor/main/locale/pt.json @@ -213,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Listas com marcadores automáticas", "Common.Views.AutoCorrectDialog.textBy": "Por", "Common.Views.AutoCorrectDialog.textDelete": "Excluir", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Adicionar ponto com espaço duplo", "Common.Views.AutoCorrectDialog.textFLCells": "Capitalizar a primeira letra das células da tabela", "Common.Views.AutoCorrectDialog.textFLSentence": "Capitalizar a primeira carta de sentenças", "Common.Views.AutoCorrectDialog.textHyperlink": "Internet e caminhos de rede com hyperlinks", @@ -511,6 +512,7 @@ "DE.Controllers.LeftMenu.txtCompatible": "O documento será salvo em novo formato. Isto permitirá usar todos os recursos de editor, mas pode afetar o layout do documento.
Use a opção de 'Compatibilidade' para configurações avançadas se deseja tornar o arquivo compatível com versões antigas do MS Word.", "DE.Controllers.LeftMenu.txtUntitled": "Sem título", "DE.Controllers.LeftMenu.warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "O documento resultante será otimizado para permitir que você edite o texto, portanto, não gráficos exatamente iguais ao original, se o arquivo original contiver muitos gráficos.", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Se você continuar salvando neste formato algumas formatações podem ser perdidas.
Você tem certeza que deseja continuar?", "DE.Controllers.Main.applyChangesTextText": "Carregando as alterações...", "DE.Controllers.Main.applyChangesTitleText": "Carregando as alterações", @@ -1460,6 +1462,7 @@ "DE.Views.DocumentHolder.strSign": "Assinar", "DE.Views.DocumentHolder.styleText": "Formatar como Estilo", "DE.Views.DocumentHolder.tableText": "Tabela", + "DE.Views.DocumentHolder.textAccept": "Aceitar alteração", "DE.Views.DocumentHolder.textAlign": "Alinhar", "DE.Views.DocumentHolder.textArrange": "Organizar", "DE.Views.DocumentHolder.textArrangeBack": "Enviar para plano de fundo", @@ -1494,6 +1497,7 @@ "DE.Views.DocumentHolder.textPaste": "Colar", "DE.Views.DocumentHolder.textPrevPage": "Página anterior", "DE.Views.DocumentHolder.textRefreshField": "Atualizar o campo", + "DE.Views.DocumentHolder.textReject": "Rejeitar alteração", "DE.Views.DocumentHolder.textRemCheckBox": "Remover caixa de seleção", "DE.Views.DocumentHolder.textRemComboBox": "Remover caixa de combinação", "DE.Views.DocumentHolder.textRemDropdown": "Remover lista suspensa", @@ -2378,6 +2382,8 @@ "DE.Views.Statusbar.pageIndexText": "Página {0} de {1}", "DE.Views.Statusbar.tipFitPage": "Ajustar página", "DE.Views.Statusbar.tipFitWidth": "Ajustar largura", + "DE.Views.Statusbar.tipHandTool": "Ferramenta de mão", + "DE.Views.Statusbar.tipSelectTool": "Selecionar ferramenta", "DE.Views.Statusbar.tipSetLang": "Definir idioma do texto", "DE.Views.Statusbar.tipZoomFactor": "Zoom", "DE.Views.Statusbar.tipZoomIn": "Ampliar", diff --git a/apps/documenteditor/main/locale/zh.json b/apps/documenteditor/main/locale/zh.json index e32da15e7..541aa28d4 100644 --- a/apps/documenteditor/main/locale/zh.json +++ b/apps/documenteditor/main/locale/zh.json @@ -213,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "自动项目符号列表", "Common.Views.AutoCorrectDialog.textBy": "依据", "Common.Views.AutoCorrectDialog.textDelete": "删除", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "按两下空白键自动增加一个句点(.)符号", "Common.Views.AutoCorrectDialog.textFLCells": "表格单元格的首字母大写", "Common.Views.AutoCorrectDialog.textFLSentence": "将句子首字母大写", "Common.Views.AutoCorrectDialog.textHyperlink": "带超链接的互联网与网络路径", @@ -511,6 +512,7 @@ "DE.Controllers.LeftMenu.txtCompatible": "文档将保存为新格式。它将允许使用所有编辑器功能,但可能会影响文档布局。
如果要使文档与旧版微软 Word 兼容,请使用高级设置的“兼容性”选项。", "DE.Controllers.LeftMenu.txtUntitled": "无标题", "DE.Controllers.LeftMenu.warnDownloadAs": "如果您继续以此格式保存,除文本之外的所有功能将丢失。
您确定要继续吗?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "您的 {0} 将转换成一份可修改的文件。系统需要处理一段时间。转换后的文件即可随之修改,但可能不完全跟您的原 {0} 相同,特别是如果原文件有过多的图像将会更有差异。", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "如果您继续以此格式保存,一些格式可能会丢失。
您确定要继续吗?", "DE.Controllers.Main.applyChangesTextText": "载入更改...", "DE.Controllers.Main.applyChangesTitleText": "加载更改", @@ -1460,6 +1462,7 @@ "DE.Views.DocumentHolder.strSign": "签名", "DE.Views.DocumentHolder.styleText": "格式化为样式", "DE.Views.DocumentHolder.tableText": "表格", + "DE.Views.DocumentHolder.textAccept": "接受变化", "DE.Views.DocumentHolder.textAlign": "对齐", "DE.Views.DocumentHolder.textArrange": "安排", "DE.Views.DocumentHolder.textArrangeBack": "发送到背景", @@ -1494,6 +1497,7 @@ "DE.Views.DocumentHolder.textPaste": "粘贴", "DE.Views.DocumentHolder.textPrevPage": "上一页", "DE.Views.DocumentHolder.textRefreshField": "刷新字段", + "DE.Views.DocumentHolder.textReject": "拒绝变化", "DE.Views.DocumentHolder.textRemCheckBox": "删除多选框", "DE.Views.DocumentHolder.textRemComboBox": "删除组合框", "DE.Views.DocumentHolder.textRemDropdown": "删除候选列表", @@ -2378,6 +2382,8 @@ "DE.Views.Statusbar.pageIndexText": "第{0}页共{1}页", "DE.Views.Statusbar.tipFitPage": "适合页面", "DE.Views.Statusbar.tipFitWidth": "适合宽度", + "DE.Views.Statusbar.tipHandTool": "移动工具", + "DE.Views.Statusbar.tipSelectTool": "选取工具", "DE.Views.Statusbar.tipSetLang": "设置文本语言", "DE.Views.Statusbar.tipZoomFactor": "放大", "DE.Views.Statusbar.tipZoomIn": "放大", diff --git a/apps/presentationeditor/main/locale/ca.json b/apps/presentationeditor/main/locale/ca.json index 07e843b29..d3569eaad 100644 --- a/apps/presentationeditor/main/locale/ca.json +++ b/apps/presentationeditor/main/locale/ca.json @@ -139,7 +139,6 @@ "Common.define.effectData.textIn": "Entrant", "Common.define.effectData.textInFromScreenCenter": "Amplia des del centre de la pantalla", "Common.define.effectData.textInSlightly": "Amplia lleugerament", - "Common.define.effectData.textInToScreenCenter": "Al centre de la pantalla", "Common.define.effectData.textInvertedSquare": "Quadrat invertit", "Common.define.effectData.textInvertedTriangle": "Triangle invertit", "Common.define.effectData.textLeft": "Esquerra", @@ -211,7 +210,6 @@ "Common.define.effectData.textToBottom": "Cap a baix", "Common.define.effectData.textToBottomLeft": "Cap a baix a l'esquerra", "Common.define.effectData.textToBottomRight": "Cap a baix a la dreta", - "Common.define.effectData.textToFromScreenBottom": "Redueix cap a la part inferior de la pantalla", "Common.define.effectData.textToLeft": "Cap a la dreta", "Common.define.effectData.textToRight": "Cap a la dreta", "Common.define.effectData.textToTop": "Cap a dalt", diff --git a/apps/presentationeditor/main/locale/cs.json b/apps/presentationeditor/main/locale/cs.json index d53977e6f..67d9dbeb7 100644 --- a/apps/presentationeditor/main/locale/cs.json +++ b/apps/presentationeditor/main/locale/cs.json @@ -139,7 +139,6 @@ "Common.define.effectData.textIn": "Dovnitř", "Common.define.effectData.textInFromScreenCenter": "Dovnitř ze středu obrazovky", "Common.define.effectData.textInSlightly": "Dovnitř mírně", - "Common.define.effectData.textInToScreenCenter": "Dovnitř na střed obrazovky", "Common.define.effectData.textInvertedSquare": "Převrácený čtverec", "Common.define.effectData.textInvertedTriangle": "Převrácený trojúhelník", "Common.define.effectData.textLeft": "Vlevo", @@ -211,7 +210,6 @@ "Common.define.effectData.textToBottom": "Dolů", "Common.define.effectData.textToBottomLeft": "Dolů vlevo", "Common.define.effectData.textToBottomRight": "Dolů vpravo", - "Common.define.effectData.textToFromScreenBottom": "Vně na spodní část obrazovky", "Common.define.effectData.textToLeft": "Doleva", "Common.define.effectData.textToRight": "Doprava", "Common.define.effectData.textToTop": "Nahoru", diff --git a/apps/presentationeditor/main/locale/de.json b/apps/presentationeditor/main/locale/de.json index 21c8b33d8..0e69ffd4a 100644 --- a/apps/presentationeditor/main/locale/de.json +++ b/apps/presentationeditor/main/locale/de.json @@ -139,7 +139,6 @@ "Common.define.effectData.textIn": "In", "Common.define.effectData.textInFromScreenCenter": "Vergrößern von Bildschirmmitte", "Common.define.effectData.textInSlightly": "Etwas vergrößern", - "Common.define.effectData.textInToScreenCenter": "Vergrößern in Bildschirmmitte", "Common.define.effectData.textInvertedSquare": "Invertiertes Quadrat", "Common.define.effectData.textInvertedTriangle": "Invertiertes Dreieck", "Common.define.effectData.textLeft": "Nach links", @@ -211,7 +210,6 @@ "Common.define.effectData.textToBottom": "Nach unten", "Common.define.effectData.textToBottomLeft": "Nach links unten", "Common.define.effectData.textToBottomRight": "Nach rechts unten", - "Common.define.effectData.textToFromScreenBottom": "Verkleinern nach unten", "Common.define.effectData.textToLeft": "Nach links", "Common.define.effectData.textToRight": "Nach rechts", "Common.define.effectData.textToTop": "Nach oben", diff --git a/apps/presentationeditor/main/locale/el.json b/apps/presentationeditor/main/locale/el.json index 965283899..498655dfa 100644 --- a/apps/presentationeditor/main/locale/el.json +++ b/apps/presentationeditor/main/locale/el.json @@ -139,7 +139,6 @@ "Common.define.effectData.textIn": "Μέσα", "Common.define.effectData.textInFromScreenCenter": "Μέσα Από το Κέντρο της Οθόνης", "Common.define.effectData.textInSlightly": "Ελαφρώς Μέσα", - "Common.define.effectData.textInToScreenCenter": "Μέσα Προς το Κέντρο της Οθόνης", "Common.define.effectData.textInvertedSquare": "Ανεστραμμένο Τετράγωνο", "Common.define.effectData.textInvertedTriangle": "Ανεστραμμένο Τρίγωνο", "Common.define.effectData.textLeft": "Αριστερά", @@ -211,7 +210,6 @@ "Common.define.effectData.textToBottom": "Προς το Κάτω Μέρος", "Common.define.effectData.textToBottomLeft": "Προς το Κάτω Μέρος Αριστερά", "Common.define.effectData.textToBottomRight": "Προς το Κάτω Μέρος Δεξιά", - "Common.define.effectData.textToFromScreenBottom": "Έξω Προς το Κάτω Μέρος της Οθόνης", "Common.define.effectData.textToLeft": "Προς τα Αριστερά", "Common.define.effectData.textToRight": "Προς τα Δεξιά", "Common.define.effectData.textToTop": "Προς την Κορυφή", diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json index c0f1e9b42..7b5073e89 100644 --- a/apps/presentationeditor/main/locale/en.json +++ b/apps/presentationeditor/main/locale/en.json @@ -141,7 +141,6 @@ "Common.define.effectData.textInFromScreenCenter": "In From Screen Center", "Common.define.effectData.textInSlightly": "In Slightly", "Common.define.effectData.textInToScreenBottom": "In To Screen Bottom", - "del_Common.define.effectData.textInToScreenCenter": "In To Screen Center", "Common.define.effectData.textInvertedSquare": "Inverted Square", "Common.define.effectData.textInvertedTriangle": "Inverted Triangle", "Common.define.effectData.textLeft": "Left", @@ -217,7 +216,6 @@ "Common.define.effectData.textToBottom": "To Bottom", "Common.define.effectData.textToBottomLeft": "To Bottom-Left", "Common.define.effectData.textToBottomRight": "To Bottom-Right", - "del_Common.define.effectData.textToFromScreenBottom": "Out To Screen Bottom", "Common.define.effectData.textToLeft": "To Left", "Common.define.effectData.textToRight": "To Right", "Common.define.effectData.textToTop": "To Top", diff --git a/apps/presentationeditor/main/locale/es.json b/apps/presentationeditor/main/locale/es.json index d548c834d..a54532638 100644 --- a/apps/presentationeditor/main/locale/es.json +++ b/apps/presentationeditor/main/locale/es.json @@ -139,7 +139,6 @@ "Common.define.effectData.textIn": "Hacia dentro", "Common.define.effectData.textInFromScreenCenter": "Aumentar desde el centro de pantalla", "Common.define.effectData.textInSlightly": "Acercar ligeramente", - "Common.define.effectData.textInToScreenCenter": "Aumentar hacia el centro de la pantalla", "Common.define.effectData.textInvertedSquare": "Cuadrado invertido", "Common.define.effectData.textInvertedTriangle": "Triángulo invertido", "Common.define.effectData.textLeft": "Izquierda", @@ -211,7 +210,6 @@ "Common.define.effectData.textToBottom": "Hacia abajo", "Common.define.effectData.textToBottomLeft": "Hacia abajo a la izquierda", "Common.define.effectData.textToBottomRight": "Hacia abajo a la derecha", - "Common.define.effectData.textToFromScreenBottom": "De fuera hacia la parte inferior de la pantalla", "Common.define.effectData.textToLeft": "A la izquierda", "Common.define.effectData.textToRight": "A la derecha", "Common.define.effectData.textToTop": "Hacia arriba", diff --git a/apps/presentationeditor/main/locale/fr.json b/apps/presentationeditor/main/locale/fr.json index 58bf7458a..b46c2bfb5 100644 --- a/apps/presentationeditor/main/locale/fr.json +++ b/apps/presentationeditor/main/locale/fr.json @@ -139,7 +139,6 @@ "Common.define.effectData.textIn": "Vers l’intérieur", "Common.define.effectData.textInFromScreenCenter": "Avant depuis le centre de l’écran", "Common.define.effectData.textInSlightly": "Avant léger", - "Common.define.effectData.textInToScreenCenter": "Avant vers le centre de l’écran", "Common.define.effectData.textInvertedSquare": "Carré inversé", "Common.define.effectData.textInvertedTriangle": "Triangle inversé", "Common.define.effectData.textLeft": "Gauche", @@ -211,7 +210,6 @@ "Common.define.effectData.textToBottom": "Vers le bas", "Common.define.effectData.textToBottomLeft": "Vers le coin inférieur gauche", "Common.define.effectData.textToBottomRight": "Vers le coin inférieur droit", - "Common.define.effectData.textToFromScreenBottom": "Arrière vers le bas de l’écran", "Common.define.effectData.textToLeft": "Vers la gauche", "Common.define.effectData.textToRight": "Vers la droite", "Common.define.effectData.textToTop": "Vers le haut", diff --git a/apps/presentationeditor/main/locale/gl.json b/apps/presentationeditor/main/locale/gl.json index e383c187e..fbf7977bc 100644 --- a/apps/presentationeditor/main/locale/gl.json +++ b/apps/presentationeditor/main/locale/gl.json @@ -139,7 +139,6 @@ "Common.define.effectData.textIn": "En", "Common.define.effectData.textInFromScreenCenter": "Aumentar desde o centro de pantalla", "Common.define.effectData.textInSlightly": "Achegar lixeiramente", - "Common.define.effectData.textInToScreenCenter": "Aumentar ao centro da pantalla", "Common.define.effectData.textInvertedSquare": "Cadrado invertido", "Common.define.effectData.textInvertedTriangle": "Triángulo invertido", "Common.define.effectData.textLeft": "Esquerda", @@ -211,7 +210,6 @@ "Common.define.effectData.textToBottom": "Cara abaixo", "Common.define.effectData.textToBottomLeft": "Cara abaixo á esquerda", "Common.define.effectData.textToBottomRight": "Cara abaixo á dereita", - "Common.define.effectData.textToFromScreenBottom": "De fóra cara á parte inferior da pantalla", "Common.define.effectData.textToLeft": "Á esquerda", "Common.define.effectData.textToRight": "Á dereita", "Common.define.effectData.textToTop": "Cara arriba", diff --git a/apps/presentationeditor/main/locale/it.json b/apps/presentationeditor/main/locale/it.json index c69280a51..40d6822c6 100644 --- a/apps/presentationeditor/main/locale/it.json +++ b/apps/presentationeditor/main/locale/it.json @@ -139,7 +139,6 @@ "Common.define.effectData.textIn": "All'interno", "Common.define.effectData.textInFromScreenCenter": "Aumentare da centro schermo", "Common.define.effectData.textInSlightly": "Lieve aumento", - "Common.define.effectData.textInToScreenCenter": "Aumento al centro schermo", "Common.define.effectData.textInvertedSquare": "Quadrato invertito", "Common.define.effectData.textInvertedTriangle": "Triangolo invertito", "Common.define.effectData.textLeft": "A sinistra", @@ -211,7 +210,6 @@ "Common.define.effectData.textToBottom": "Verso il basso", "Common.define.effectData.textToBottomLeft": "Verso il basso a sinistra", "Common.define.effectData.textToBottomRight": "Verso il basso a destra", - "Common.define.effectData.textToFromScreenBottom": "Diminuzione verso il basso dello schermo", "Common.define.effectData.textToLeft": "A sinistra", "Common.define.effectData.textToRight": "A destra", "Common.define.effectData.textToTop": "Verso l'alto", diff --git a/apps/presentationeditor/main/locale/ja.json b/apps/presentationeditor/main/locale/ja.json index a8fee5cf9..a1ff9fca4 100644 --- a/apps/presentationeditor/main/locale/ja.json +++ b/apps/presentationeditor/main/locale/ja.json @@ -47,6 +47,7 @@ "Common.define.chartData.textScatterSmoothMarker": "マーカーと平滑線付き散布図", "Common.define.chartData.textStock": "株価チャート", "Common.define.chartData.textSurface": "表面", + "Common.define.effectData.textBox": "ボックス", "Common.define.effectData.textCircle": "円", "Common.define.effectData.textDown": "下", "Common.define.effectData.textFade": "フェード", @@ -63,6 +64,7 @@ "Common.define.effectData.textSpoke4": "4スポーク", "Common.define.effectData.textSpoke8": "8スポーク", "Common.define.effectData.textUp": "上", + "Common.define.effectData.textWave": "波", "Common.define.effectData.textWipe": "ワイプ", "Common.define.effectData.textZigzag": "ジグザグ", "Common.define.effectData.textZoom": "ズーム", diff --git a/apps/presentationeditor/main/locale/nl.json b/apps/presentationeditor/main/locale/nl.json index 177007bf2..4c92f2315 100644 --- a/apps/presentationeditor/main/locale/nl.json +++ b/apps/presentationeditor/main/locale/nl.json @@ -47,6 +47,16 @@ "Common.define.chartData.textScatterSmoothMarker": "Verspreid met vloeiende lijnen en markeringen ", "Common.define.chartData.textStock": "Voorraad", "Common.define.chartData.textSurface": "Oppervlak", + "Common.define.effectData.textCircle": "Rondje", + "Common.define.effectData.textCollapse": "Samenvouwen", + "Common.define.effectData.textDrop": "Vallen", + "Common.define.effectData.textHeart": "Hart", + "Common.define.effectData.textHeartbeat": "Hartslag", + "Common.define.effectData.textHexagon": "Zeshoek", + "Common.define.effectData.textPointStar4": "Vierpuntsster", + "Common.define.effectData.textPointStar5": "Vijfpuntsster", + "Common.define.effectData.textPointStar6": "Zespuntsster", + "Common.define.effectData.textPointStar8": "Achtpuntsster", "Common.Translation.warnFileLocked": "Het bestand wordt bewerkt in een andere app. U kunt doorgaan met bewerken en als kopie opslaan.", "Common.Translation.warnFileLockedBtnEdit": "Maak een kopie", "Common.Translation.warnFileLockedBtnView": "Open voor lezen", @@ -61,6 +71,7 @@ "Common.UI.ExtendedColorDialog.textNew": "Nieuw", "Common.UI.ExtendedColorDialog.textRGBErr": "De ingevoerde waarde is onjuist.
Voer een numerieke waarde tussen 0 en 255 in.", "Common.UI.HSBColorPicker.textNoColor": "Geen kleur", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Wachtwoord verbergen", "Common.UI.SearchDialog.textHighlight": "Resultaten markeren", "Common.UI.SearchDialog.textMatchCase": "Hoofdlettergevoelig", "Common.UI.SearchDialog.textReplaceDef": "Voer de vervangende tekst in", @@ -135,6 +146,7 @@ "Common.Views.Comments.textAddComment": "Opmerking toevoegen", "Common.Views.Comments.textAddCommentToDoc": "Opmerking toevoegen aan document", "Common.Views.Comments.textAddReply": "Antwoord toevoegen", + "Common.Views.Comments.textAll": "Alle", "Common.Views.Comments.textAnonym": "Gast", "Common.Views.Comments.textCancel": "Annuleren", "Common.Views.Comments.textClose": "Sluiten", @@ -1086,6 +1098,7 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "PE.Controllers.Viewport.textFitPage": "Aanpassen aan dia", "PE.Controllers.Viewport.textFitWidth": "Aan breedte aanpassen", + "PE.Views.Animation.strDelay": "Vertragen", "PE.Views.ChartSettings.textAdvanced": "Geavanceerde instellingen tonen", "PE.Views.ChartSettings.textChartType": "Grafiektype wijzigen", "PE.Views.ChartSettings.textEditData": "Gegevens bewerken", @@ -1957,6 +1970,7 @@ "PE.Views.Toolbar.tipViewSettings": "Weergave-instellingen", "PE.Views.Toolbar.txtDistribHor": "Horizontaal verdelen", "PE.Views.Toolbar.txtDistribVert": "Verticaal verdelen", + "PE.Views.Toolbar.txtDuplicateSlide": "Dia dupliceren", "PE.Views.Toolbar.txtGroup": "Groeperen", "PE.Views.Toolbar.txtObjectsAlign": "Geslecteerde objecten uitlijnen", "PE.Views.Toolbar.txtScheme1": "Kantoor", @@ -2018,5 +2032,6 @@ "PE.Views.Transitions.txtApplyToAll": "Toepassen op alle dia's", "PE.Views.Transitions.txtParameters": "Parameters", "PE.Views.Transitions.txtPreview": "Voorbeeld", - "PE.Views.Transitions.txtSec": "s" + "PE.Views.Transitions.txtSec": "s", + "PE.Views.ViewTab.textAlwaysShowToolbar": "Werkbalk altijd weergeven" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/pt.json b/apps/presentationeditor/main/locale/pt.json index 4f9c83d1b..3e6687abd 100644 --- a/apps/presentationeditor/main/locale/pt.json +++ b/apps/presentationeditor/main/locale/pt.json @@ -139,7 +139,6 @@ "Common.define.effectData.textIn": "Em", "Common.define.effectData.textInFromScreenCenter": "No centro da tela", "Common.define.effectData.textInSlightly": "Ligeiramente", - "Common.define.effectData.textInToScreenCenter": "No centro da tela", "Common.define.effectData.textInvertedSquare": "Quadrado invertido", "Common.define.effectData.textInvertedTriangle": "Triângulo Invertido", "Common.define.effectData.textLeft": "Esquerda", @@ -211,7 +210,6 @@ "Common.define.effectData.textToBottom": "Para baixo", "Common.define.effectData.textToBottomLeft": "Para Inferior-Esquerda", "Common.define.effectData.textToBottomRight": "Para baixo-direita", - "Common.define.effectData.textToFromScreenBottom": "Fora para o fundo da tela", "Common.define.effectData.textToLeft": "Para a esquerda", "Common.define.effectData.textToRight": "Para a direita", "Common.define.effectData.textToTop": "Para o topo", diff --git a/apps/presentationeditor/main/locale/ro.json b/apps/presentationeditor/main/locale/ro.json index 8579b03b8..c2f06ad79 100644 --- a/apps/presentationeditor/main/locale/ro.json +++ b/apps/presentationeditor/main/locale/ro.json @@ -139,7 +139,6 @@ "Common.define.effectData.textIn": "În interior", "Common.define.effectData.textInFromScreenCenter": "În interior din centrul ecranului", "Common.define.effectData.textInSlightly": "Ușor în interior", - "Common.define.effectData.textInToScreenCenter": "În interior către centrul ecranului", "Common.define.effectData.textInvertedSquare": "Pătrat invers", "Common.define.effectData.textInvertedTriangle": "Triunghi invers", "Common.define.effectData.textLeft": "Stânga", @@ -211,7 +210,6 @@ "Common.define.effectData.textToBottom": "În jos", "Common.define.effectData.textToBottomLeft": "Spre stânga jos", "Common.define.effectData.textToBottomRight": "Spre dreapta jos", - "Common.define.effectData.textToFromScreenBottom": "În exterior către josul ecranului", "Common.define.effectData.textToLeft": "Spre stânga", "Common.define.effectData.textToRight": "Spre dreapta", "Common.define.effectData.textToTop": "În sus", diff --git a/apps/presentationeditor/main/locale/ru.json b/apps/presentationeditor/main/locale/ru.json index 59df123e8..15cb2420f 100644 --- a/apps/presentationeditor/main/locale/ru.json +++ b/apps/presentationeditor/main/locale/ru.json @@ -139,7 +139,6 @@ "Common.define.effectData.textIn": "Внутрь", "Common.define.effectData.textInFromScreenCenter": "Увеличение из центра экрана", "Common.define.effectData.textInSlightly": "Небольшое увеличение", - "Common.define.effectData.textInToScreenCenter": "Увеличение к центру экрана", "Common.define.effectData.textInvertedSquare": "Квадрат наизнанку", "Common.define.effectData.textInvertedTriangle": "Треугольник наизнанку", "Common.define.effectData.textLeft": "Влево", @@ -211,7 +210,6 @@ "Common.define.effectData.textToBottom": "Вниз", "Common.define.effectData.textToBottomLeft": "Вниз влево", "Common.define.effectData.textToBottomRight": "Вниз вправо", - "Common.define.effectData.textToFromScreenBottom": "Уменьшение к нижней части экрана", "Common.define.effectData.textToLeft": "Влево", "Common.define.effectData.textToRight": "Вправо", "Common.define.effectData.textToTop": "Вверх", diff --git a/apps/presentationeditor/main/locale/sv.json b/apps/presentationeditor/main/locale/sv.json index e888f1196..872a68309 100644 --- a/apps/presentationeditor/main/locale/sv.json +++ b/apps/presentationeditor/main/locale/sv.json @@ -139,7 +139,6 @@ "Common.define.effectData.textIn": "In", "Common.define.effectData.textInFromScreenCenter": "In från skärmens mitt", "Common.define.effectData.textInSlightly": "Något inåt", - "Common.define.effectData.textInToScreenCenter": "In till skärmens mitt", "Common.define.effectData.textInvertedSquare": "Omvänd kvadrat", "Common.define.effectData.textInvertedTriangle": "Omvänd triangel", "Common.define.effectData.textLeft": "Vänster", @@ -211,7 +210,6 @@ "Common.define.effectData.textToBottom": "Till nederkant", "Common.define.effectData.textToBottomLeft": "Till vänster nederkant", "Common.define.effectData.textToBottomRight": "Till höger nederkant", - "Common.define.effectData.textToFromScreenBottom": "Ut till skärmens nederkant", "Common.define.effectData.textToLeft": "Till vänster", "Common.define.effectData.textToRight": "Till höger", "Common.define.effectData.textToTop": "Till ovankant", diff --git a/apps/presentationeditor/main/locale/uk.json b/apps/presentationeditor/main/locale/uk.json index f238c2d17..369556469 100644 --- a/apps/presentationeditor/main/locale/uk.json +++ b/apps/presentationeditor/main/locale/uk.json @@ -139,7 +139,6 @@ "Common.define.effectData.textIn": "Всередину", "Common.define.effectData.textInFromScreenCenter": "Збільшення із центру екрану", "Common.define.effectData.textInSlightly": "Невелике збільшення", - "Common.define.effectData.textInToScreenCenter": "Збільшення до центру екрану", "Common.define.effectData.textInvertedSquare": "Обернений квадрат", "Common.define.effectData.textInvertedTriangle": "Перевернутий трикутник", "Common.define.effectData.textLeft": "Ліворуч", @@ -211,7 +210,6 @@ "Common.define.effectData.textToBottom": "Вниз", "Common.define.effectData.textToBottomLeft": "Вниз ліворуч", "Common.define.effectData.textToBottomRight": "Вниз праворуч", - "Common.define.effectData.textToFromScreenBottom": "Зменшення до нижньої частини екрану", "Common.define.effectData.textToLeft": "Ліворуч", "Common.define.effectData.textToRight": "Праворуч", "Common.define.effectData.textToTop": "Вгору", diff --git a/apps/presentationeditor/main/locale/zh.json b/apps/presentationeditor/main/locale/zh.json index a83075c55..64d844ff9 100644 --- a/apps/presentationeditor/main/locale/zh.json +++ b/apps/presentationeditor/main/locale/zh.json @@ -139,7 +139,6 @@ "Common.define.effectData.textIn": "在", "Common.define.effectData.textInFromScreenCenter": "从屏幕中心放大", "Common.define.effectData.textInSlightly": "轻微放大", - "Common.define.effectData.textInToScreenCenter": "缩大到屏幕中心", "Common.define.effectData.textInvertedSquare": "正方形结", "Common.define.effectData.textInvertedTriangle": "三角结", "Common.define.effectData.textLeft": "左侧", @@ -211,7 +210,6 @@ "Common.define.effectData.textToBottom": "到底部", "Common.define.effectData.textToBottomLeft": "到左下部", "Common.define.effectData.textToBottomRight": "到右下部", - "Common.define.effectData.textToFromScreenBottom": "缩小到屏幕底部", "Common.define.effectData.textToLeft": "到左侧", "Common.define.effectData.textToRight": "到右侧", "Common.define.effectData.textToTop": "到顶部", diff --git a/apps/spreadsheeteditor/main/locale/id.json b/apps/spreadsheeteditor/main/locale/id.json index d106493af..250546c06 100644 --- a/apps/spreadsheeteditor/main/locale/id.json +++ b/apps/spreadsheeteditor/main/locale/id.json @@ -2,6 +2,37 @@ "cancelButtonText": "Cancel", "Common.Controllers.Chat.notcriticalErrorTitle": "Warning", "Common.Controllers.Chat.textEnterMessage": "Enter your message here", + "Common.Controllers.History.notcriticalErrorTitle": "Peringatan", + "Common.define.chartData.textArea": "Grafik Area", + "Common.define.chartData.textBar": "Palang", + "Common.define.chartData.textCharts": "Bagan", + "Common.define.chartData.textColumn": "Kolom", + "Common.define.chartData.textColumnSpark": "Kolom", + "Common.define.chartData.textLine": "Garis", + "Common.define.chartData.textLineSpark": "Garis", + "Common.define.chartData.textPie": "Diagram Lingkaran", + "Common.define.conditionalData.textAbove": "Di atas", + "Common.define.conditionalData.textBelow": "Di bawah", + "Common.define.conditionalData.textBottom": "Bawah", + "Common.define.conditionalData.textDate": "Tanggal", + "Common.define.conditionalData.textDuplicate": "Duplikat", + "Common.define.conditionalData.textError": "Kesalahan", + "Common.define.conditionalData.textGreater": "Lebih Dari", + "Common.define.conditionalData.textGreaterEq": "Lebih Dari atau Sama Dengan", + "Common.define.conditionalData.textLastMonth": "bulan lalu", + "Common.define.conditionalData.textLastWeek": "minggu lalu", + "Common.define.conditionalData.textLess": "Kurang Dari", + "Common.define.conditionalData.textLessEq": "Kurang Dari atau Sama Dengan", + "Common.define.conditionalData.textNotEqual": "Tidak Sama Dengan", + "Common.define.conditionalData.textText": "Teks", + "Common.define.conditionalData.textThisMonth": "Bulan ini", + "Common.define.conditionalData.textToday": "Hari ini", + "Common.define.conditionalData.textTomorrow": "Besok", + "Common.define.conditionalData.textTop": "Atas", + "Common.define.conditionalData.textYesterday": "Kemarin", + "Common.Translation.warnFileLockedBtnEdit": "Buat salinan", + "Common.UI.ButtonColored.textAutoColor": "Otomatis", + "Common.UI.ButtonColored.textNewColor": "Tambahkan Warna Khusus Baru", "Common.UI.ComboBorderSize.txtNoBorders": "No borders", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "No borders", "Common.UI.ComboDataView.emptyComboText": "No styles", @@ -22,6 +53,7 @@ "Common.UI.SearchDialog.txtBtnReplaceAll": "Replace All", "Common.UI.SynchronizeTip.textDontShow": "Don't show this message again", "Common.UI.SynchronizeTip.textSynchronize": "The document has been changed by another user.
Please click to save your changes and reload the updates.", + "Common.UI.ThemeColorPalette.textThemeColors": "Warna Tema", "Common.UI.Window.cancelButtonText": "Cancel", "Common.UI.Window.closeButtonText": "Close", "Common.UI.Window.noButtonText": "No", @@ -39,17 +71,26 @@ "Common.Views.About.txtPoweredBy": "Powered by", "Common.Views.About.txtTel": "tel.: ", "Common.Views.About.txtVersion": "Version ", + "Common.Views.AutoCorrectDialog.textAdd": "Tambahkan", + "Common.Views.AutoCorrectDialog.textBy": "oleh", + "Common.Views.AutoCorrectDialog.textDelete": "Hapus", + "Common.Views.AutoCorrectDialog.textReplace": "Ganti", + "Common.Views.AutoCorrectDialog.textReset": "Atur ulang", + "Common.Views.AutoCorrectDialog.textResetAll": "Atur ulang kembali ke awal", + "Common.Views.AutoCorrectDialog.textRestore": "Pemulihan", "Common.Views.Chat.textSend": "Send", "Common.Views.Comments.textAdd": "Add", "Common.Views.Comments.textAddComment": "Add Comment", "Common.Views.Comments.textAddCommentToDoc": "Add Comment to Document", "Common.Views.Comments.textAddReply": "Add Reply", + "Common.Views.Comments.textAll": "Semua", "Common.Views.Comments.textAnonym": "Guest", "Common.Views.Comments.textCancel": "Cancel", "Common.Views.Comments.textClose": "Close", "Common.Views.Comments.textComments": "Comments", "Common.Views.Comments.textEdit": "Edit", "Common.Views.Comments.textEnterCommentHint": "Enter your comment here", + "Common.Views.Comments.textHintAddComment": "Tambahkan komentar", "Common.Views.Comments.textOpenAgain": "Open Again", "Common.Views.Comments.textReply": "Reply", "Common.Views.Comments.textResolve": "Resolve", @@ -62,27 +103,119 @@ "Common.Views.CopyWarningDialog.textToPaste": "for Paste", "Common.Views.DocumentAccessDialog.textLoading": "Loading...", "Common.Views.DocumentAccessDialog.textTitle": "Sharing Settings", + "Common.Views.Header.textAdvSettings": "Pengaturan Lanjut", "Common.Views.Header.textBack": "Go to Documents", + "Common.Views.Header.textHideLines": "Sembunyikan Mistar", + "Common.Views.Header.textZoom": "Pembesaran", + "Common.Views.Header.tipDownload": "Unduh File", + "Common.Views.Header.tipRedo": "Ulangi", + "Common.Views.Header.tipSave": "Simpan", + "Common.Views.Header.tipUndo": "Batalkan", + "Common.Views.Header.tipViewSettings": "Lihat Pengaturan", + "Common.Views.Header.txtAccessRights": "Ubah hak akses", + "Common.Views.Header.txtRename": "Ganti nama", + "Common.Views.History.textCloseHistory": "Tutup riwayat", + "Common.Views.History.textRestore": "Pemulihan", + "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "Paste an image URL:", "Common.Views.ImageFromUrlDialog.txtEmpty": "This field is required", "Common.Views.ImageFromUrlDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format", + "Common.Views.ListSettingsDialog.txtColor": "Warna", + "Common.Views.ListSettingsDialog.txtNone": "tidak ada", + "Common.Views.ListSettingsDialog.txtSize": "Ukuran", + "Common.Views.ListSettingsDialog.txtType": "Tipe", + "Common.Views.OpenDialog.txtAdvanced": "Tingkat Lanjut", + "Common.Views.OpenDialog.txtColon": "Titik dua", + "Common.Views.OpenDialog.txtComma": "Koma", "Common.Views.OpenDialog.txtDelimiter": "Delimiter", + "Common.Views.OpenDialog.txtEmpty": "Kolom ini harus diisi", "Common.Views.OpenDialog.txtEncoding": "Encoding ", "Common.Views.OpenDialog.txtOpenFile": "Masukkan kata sandi untuk buka file", + "Common.Views.OpenDialog.txtOther": "Lainnya", + "Common.Views.OpenDialog.txtPassword": "Kata Sandi", + "Common.Views.OpenDialog.txtPreview": "Pratinjau", + "Common.Views.OpenDialog.txtSemicolon": "Titik koma", "Common.Views.OpenDialog.txtSpace": "Space", "Common.Views.OpenDialog.txtTab": "Tab", "Common.Views.OpenDialog.txtTitle": "Choose %1 options", + "Common.Views.PasswordDialog.txtPassword": "Kata Sandi", + "Common.Views.PasswordDialog.txtTitle": "Setel kata sandi", "Common.Views.PasswordDialog.txtWarning": "Perhatian: Tidak bisa dipulihkan jika Anda kehilangan atau lupa kata sandi. Simpan di tempat yang aman.", + "Common.Views.Plugins.textStart": "Mulai", + "Common.Views.Protection.txtChangePwd": "Ubah kata sandi", + "Common.Views.RenameDialog.textName": "Nama file", + "Common.Views.ReviewChanges.tipHistory": "Tampilkan riwayat versi", + "Common.Views.ReviewChanges.tipSetDocLang": "Atur Bahasa Dokumen", + "Common.Views.ReviewChanges.tipSetSpelling": "Periksa Ejaan", + "Common.Views.ReviewChanges.txtAccept": "Terima", + "Common.Views.ReviewChanges.txtAcceptAll": "Terima semua perubahan", + "Common.Views.ReviewChanges.txtClose": "Tutup", + "Common.Views.ReviewChanges.txtCommentRemove": "Hapus", + "Common.Views.ReviewChanges.txtCommentResolve": "Selesaikan", + "Common.Views.ReviewChanges.txtHistory": "Riwayat versi", + "Common.Views.ReviewChanges.txtNext": "Berikutnya", + "Common.Views.ReviewChanges.txtPrev": "Sebelumnya", + "Common.Views.ReviewChanges.txtReject": "Tolak", + "Common.Views.ReviewChanges.txtSpelling": "Periksa Ejaan", + "Common.Views.ReviewPopover.textAdd": "Tambahkan", + "Common.Views.ReviewPopover.textAddReply": "Tambahkan Balasan", + "Common.Views.ReviewPopover.textCancel": "Batalkan", + "Common.Views.ReviewPopover.textClose": "Tutup", + "Common.Views.ReviewPopover.textEdit": "OK", + "Common.Views.ReviewPopover.textOpenAgain": "Buka Lagi", + "Common.Views.ReviewPopover.textReply": "Balas", + "Common.Views.ReviewPopover.textResolve": "Selesaikan", + "Common.Views.ReviewPopover.txtDeleteTip": "Hapus", + "Common.Views.ReviewPopover.txtEditTip": "Sunting", + "Common.Views.SelectFileDlg.textTitle": "Pilih sumber data", + "Common.Views.SignDialog.textBold": "Tebal", + "Common.Views.SignDialog.textChange": "Ganti", + "Common.Views.SignDialog.textItalic": "Miring", + "Common.Views.SignDialog.textSelect": "Pilih", + "Common.Views.SignDialog.tipFontSize": "Ukuran Huruf", + "Common.Views.SignSettingsDialog.textInfoName": "Nama", + "Common.Views.SignSettingsDialog.txtEmpty": "Kolom ini harus diisi", + "Common.Views.SymbolTableDialog.textCharacter": "Karakter", + "Common.Views.SymbolTableDialog.textFont": "Huruf", + "Common.Views.SymbolTableDialog.textSpecial": "karakter khusus", + "SSE.Controllers.DataTab.textColumns": "Kolom", + "SSE.Controllers.DataTab.textRows": "Baris", + "SSE.Controllers.DocumentHolder.alignmentText": "Perataan", + "SSE.Controllers.DocumentHolder.centerText": "Tengah", + "SSE.Controllers.DocumentHolder.deleteColumnText": "Hapus Kolom", + "SSE.Controllers.DocumentHolder.deleteText": "Hapus", "SSE.Controllers.DocumentHolder.guestText": "Guest", + "SSE.Controllers.DocumentHolder.insertColumnLeftText": "Kolom Kiri", + "SSE.Controllers.DocumentHolder.insertColumnRightText": "Kolom Kanan", + "SSE.Controllers.DocumentHolder.insertRowAboveText": "Baris di Atas", + "SSE.Controllers.DocumentHolder.insertRowBelowText": "Baris di Bawah", + "SSE.Controllers.DocumentHolder.insertText": "Sisipkan", + "SSE.Controllers.DocumentHolder.leftText": "Kiri", + "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Peringatan", + "SSE.Controllers.DocumentHolder.rightText": "Kanan", "SSE.Controllers.DocumentHolder.textChangeColumnWidth": "Column Width {0} symbols ({1} pixels)", "SSE.Controllers.DocumentHolder.textChangeRowHeight": "Row Height {0} points ({1} pixels)", "SSE.Controllers.DocumentHolder.textCtrlClick": "Press CTRL and click link", "SSE.Controllers.DocumentHolder.textInsertLeft": "Insert Left", "SSE.Controllers.DocumentHolder.textInsertTop": "Insert Top", "SSE.Controllers.DocumentHolder.tipIsLocked": "This element is being edited by another user.", + "SSE.Controllers.DocumentHolder.txtAnd": "dan", + "SSE.Controllers.DocumentHolder.txtBottom": "Bawah", + "SSE.Controllers.DocumentHolder.txtColumn": "Kolom", + "SSE.Controllers.DocumentHolder.txtFilterBottom": "Bawah", + "SSE.Controllers.DocumentHolder.txtFilterTop": "Atas", + "SSE.Controllers.DocumentHolder.txtGreater": "Lebih Dari", + "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Lebih Dari atau Sama Dengan", "SSE.Controllers.DocumentHolder.txtHeight": "Height", + "SSE.Controllers.DocumentHolder.txtLess": "Kurang Dari", + "SSE.Controllers.DocumentHolder.txtLessEquals": "Kurang Dari atau Sama Dengan", + "SSE.Controllers.DocumentHolder.txtOr": "Atau", + "SSE.Controllers.DocumentHolder.txtPaste": "Tempel", "SSE.Controllers.DocumentHolder.txtRowHeight": "Row Height", + "SSE.Controllers.DocumentHolder.txtTop": "Atas", "SSE.Controllers.DocumentHolder.txtWidth": "Width", + "SSE.Controllers.FormulaDialog.sCategoryAll": "Semua", + "SSE.Controllers.FormulaDialog.sCategoryInformation": "Informasi", "SSE.Controllers.LeftMenu.newDocumentTitle": "Unnamed spreadsheet", "SSE.Controllers.LeftMenu.textByColumns": "By columns", "SSE.Controllers.LeftMenu.textByRows": "By rows", @@ -164,10 +297,15 @@ "SSE.Controllers.Main.saveTextText": "Saving spreadsheet...", "SSE.Controllers.Main.saveTitleText": "Saving Spreadsheet", "SSE.Controllers.Main.textAnonymous": "Anonymous", + "SSE.Controllers.Main.textClose": "Tutup", "SSE.Controllers.Main.textCloseTip": "Click to close the tip", "SSE.Controllers.Main.textConfirm": "Confirmation", + "SSE.Controllers.Main.textGuest": "Tamu", + "SSE.Controllers.Main.textLearnMore": "Pelajari selengkapnya", "SSE.Controllers.Main.textLoadingDocument": "Loading spreadsheet", + "SSE.Controllers.Main.textNeedSynchronize": "Ada pembaruan", "SSE.Controllers.Main.textNo": "No", + "SSE.Controllers.Main.textNoLicenseTitle": "%1 keterbatasan koneksi", "SSE.Controllers.Main.textPleaseWait": "The operation might take more time than expected. Please wait...", "SSE.Controllers.Main.textShape": "Shape", "SSE.Controllers.Main.textStrict": "Strict mode", @@ -178,16 +316,44 @@ "SSE.Controllers.Main.txtButtons": "Buttons", "SSE.Controllers.Main.txtCallouts": "Callouts", "SSE.Controllers.Main.txtCharts": "Charts", + "SSE.Controllers.Main.txtColumn": "Kolom", + "SSE.Controllers.Main.txtDate": "Tanggal", + "SSE.Controllers.Main.txtDays": "Hari", "SSE.Controllers.Main.txtDiagramTitle": "Chart Title", "SSE.Controllers.Main.txtEditingMode": "Set editing mode...", "SSE.Controllers.Main.txtFiguredArrows": "Figured Arrows", + "SSE.Controllers.Main.txtFile": "File", + "SSE.Controllers.Main.txtGroup": "Grup", + "SSE.Controllers.Main.txtHours": "jam", "SSE.Controllers.Main.txtLines": "Lines", "SSE.Controllers.Main.txtMath": "Math", + "SSE.Controllers.Main.txtMinutes": "menit", + "SSE.Controllers.Main.txtMonths": "bulan", + "SSE.Controllers.Main.txtPage": "Halaman", + "SSE.Controllers.Main.txtPages": "Halaman", "SSE.Controllers.Main.txtRectangles": "Rectangles", + "SSE.Controllers.Main.txtRow": "Baris", "SSE.Controllers.Main.txtSeries": "Series", + "SSE.Controllers.Main.txtShape_bevel": "Miring", + "SSE.Controllers.Main.txtShape_downArrow": "Panah Bawah", + "SSE.Controllers.Main.txtShape_frame": "Kerangka", + "SSE.Controllers.Main.txtShape_leftArrow": "Panah Kiri", + "SSE.Controllers.Main.txtShape_line": "Garis", + "SSE.Controllers.Main.txtShape_mathEqual": "Setara", + "SSE.Controllers.Main.txtShape_mathPlus": "Plus", + "SSE.Controllers.Main.txtShape_pie": "Diagram Lingkaran", + "SSE.Controllers.Main.txtShape_plus": "Plus", + "SSE.Controllers.Main.txtShape_rightArrow": "Tanda Panah ke Kanan", "SSE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons", + "SSE.Controllers.Main.txtStyle_Comma": "Koma", + "SSE.Controllers.Main.txtStyle_Currency": "Mata uang", + "SSE.Controllers.Main.txtStyle_Note": "Catatan", + "SSE.Controllers.Main.txtStyle_Title": "Judul", + "SSE.Controllers.Main.txtTable": "Tabel", + "SSE.Controllers.Main.txtTime": "Waktu", "SSE.Controllers.Main.txtXAxis": "X Axis", "SSE.Controllers.Main.txtYAxis": "Y Axis", + "SSE.Controllers.Main.txtYears": "tahun", "SSE.Controllers.Main.unknownErrorText": "Unknown error.", "SSE.Controllers.Main.unsupportedBrowserErrorText": "Your browser is not supported.", "SSE.Controllers.Main.uploadImageExtMessage": "Unknown image format.", @@ -195,11 +361,13 @@ "SSE.Controllers.Main.uploadImageSizeMessage": "Maximium image size limit exceeded.", "SSE.Controllers.Main.uploadImageTextText": "Uploading image...", "SSE.Controllers.Main.uploadImageTitleText": "Uploading Image", + "SSE.Controllers.Main.waitText": "Silahkan menunggu", "SSE.Controllers.Main.warnBrowserIE9": "The application has low capabilities on IE9. Use IE10 or higher", "SSE.Controllers.Main.warnBrowserZoom": "Your browser current zoom setting is not fully supported. Please reset to the default zoom by pressing Ctrl+0.", "SSE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", "SSE.Controllers.Print.strAllSheets": "All Sheets", "SSE.Controllers.Print.textWarning": "Warning", + "SSE.Controllers.Print.txtCustom": "Khusus", "SSE.Controllers.Print.warnCheckMargings": "Margins are incorrect", "SSE.Controllers.Statusbar.errorLastSheet": "Workbook must have at least one visible worksheet.", "SSE.Controllers.Statusbar.errorRemoveSheet": "Cannot delete the worksheet.", @@ -207,39 +375,305 @@ "SSE.Controllers.Statusbar.warnDeleteSheet": "The worksheet might contain data. Are you sure you want to proceed?", "SSE.Controllers.Statusbar.zoomText": "Zoom {0}%", "SSE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.
The text style will be displayed using one of the system fonts, the saved font will be used when it is available.
Do you want to continue?", + "SSE.Controllers.Toolbar.errorStockChart": "Urutan baris salah. Untuk membuat diagram garis, masukkan data pada lembar kerja dengan urutan berikut ini:
harga pembukaan, harga maksimal, harga minimal, harga penutupan.", + "SSE.Controllers.Toolbar.textAccent": "Aksen", + "SSE.Controllers.Toolbar.textBracket": "Tanda Kurung", "SSE.Controllers.Toolbar.textFontSizeErr": "The entered value is incorrect.
Please enter a numeric value between 1 and 409", + "SSE.Controllers.Toolbar.textFunction": "Fungsi", + "SSE.Controllers.Toolbar.textInsert": "Sisipkan", + "SSE.Controllers.Toolbar.textLargeOperator": "Operator Besar", + "SSE.Controllers.Toolbar.textLimitAndLog": "Limit dan Logaritma", + "SSE.Controllers.Toolbar.textMatrix": "Matriks", + "SSE.Controllers.Toolbar.textRadical": "Perakaran", "SSE.Controllers.Toolbar.textWarning": "Warning", + "SSE.Controllers.Toolbar.txtAccent_Accent": "Akut", + "SSE.Controllers.Toolbar.txtAccent_ArrowD": "Tanda Panah Kanan-Kiri Atas", + "SSE.Controllers.Toolbar.txtAccent_ArrowL": "Panah Kiri Atas", + "SSE.Controllers.Toolbar.txtAccent_ArrowR": "Tanda Panah ke Kanan Atas", + "SSE.Controllers.Toolbar.txtAccent_Bar": "Palang", + "SSE.Controllers.Toolbar.txtAccent_BarTop": "Garis Atas", + "SSE.Controllers.Toolbar.txtAccent_BorderBox": "Kotak Formula (Dengan Placeholder)", + "SSE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Kotak Formula(Contoh)", + "SSE.Controllers.Toolbar.txtAccent_Check": "Periksa", + "SSE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Kurung Kurawal Atas", + "SSE.Controllers.Toolbar.txtAccent_Custom_2": "ABC Dengan Overbar", + "SSE.Controllers.Toolbar.txtAccent_DDot": "Titik Dua", + "SSE.Controllers.Toolbar.txtAccent_DoubleBar": "Overbar Ganda", + "SSE.Controllers.Toolbar.txtAccent_Grave": "Aksen Kiri", + "SSE.Controllers.Toolbar.txtAccent_GroupBot": "Pengelompokan Karakter Di Bawah", + "SSE.Controllers.Toolbar.txtAccent_GroupTop": "Pengelompokan Karakter Di Atas", + "SSE.Controllers.Toolbar.txtAccent_HarpoonL": "Panah Tiga Kiri Atas", + "SSE.Controllers.Toolbar.txtAccent_Hat": "Caping", + "SSE.Controllers.Toolbar.txtAccent_Smile": "Prosodi ", + "SSE.Controllers.Toolbar.txtBracket_Angle": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Tanda Kurung dengan Pemisah", + "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Tanda Kurung dengan Pemisah", + "SSE.Controllers.Toolbar.txtBracket_Curve": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Tanda Kurung dengan Pemisah", + "SSE.Controllers.Toolbar.txtBracket_Custom_1": "Kasus (Dua Kondisi)", + "SSE.Controllers.Toolbar.txtBracket_Custom_2": "Kasus (Tiga Kondisi)", + "SSE.Controllers.Toolbar.txtBracket_Custom_5": "Contoh Kasus", + "SSE.Controllers.Toolbar.txtBracket_Custom_6": "Koefisien Binomial", + "SSE.Controllers.Toolbar.txtBracket_Custom_7": "Koefisien Binomial", + "SSE.Controllers.Toolbar.txtBracket_Line": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtBracket_LineDouble": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtBracket_LowLim": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtBracket_Round": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Tanda Kurung dengan Pemisah", + "SSE.Controllers.Toolbar.txtBracket_Square": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtBracket_UppLim": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtFractionDifferential_1": "Diferensial", + "SSE.Controllers.Toolbar.txtFractionDifferential_2": "Diferensial", + "SSE.Controllers.Toolbar.txtFractionDifferential_3": "Diferensial", + "SSE.Controllers.Toolbar.txtFractionDifferential_4": "Diferensial", + "SSE.Controllers.Toolbar.txtFractionHorizontal": "Pecahan Linear", + "SSE.Controllers.Toolbar.txtFractionPi_2": "Pi Dibagi 2", + "SSE.Controllers.Toolbar.txtFunction_1_Cos": "Fungsi Kosin Terbalik", + "SSE.Controllers.Toolbar.txtFunction_1_Cosh": "Fungsi Kosin Hiperbolik Terbalik", + "SSE.Controllers.Toolbar.txtFunction_1_Cot": "Fungsi Kotangen Terbalik", + "SSE.Controllers.Toolbar.txtFunction_1_Coth": "Fungsi Kotangen Hiperbolik Terbalik", + "SSE.Controllers.Toolbar.txtFunction_1_Csc": "Fungsi Kosekans Terbalik", + "SSE.Controllers.Toolbar.txtFunction_1_Csch": "Fungsi Kosekan Hiperbolik Terbalik", + "SSE.Controllers.Toolbar.txtFunction_1_Sec": "Fungsi Sekans Terbalik", + "SSE.Controllers.Toolbar.txtFunction_1_Sech": "Fungsi Sekans Hiperbolik Terbalik", + "SSE.Controllers.Toolbar.txtFunction_1_Sin": "Fungsi Sin Terbalik", + "SSE.Controllers.Toolbar.txtFunction_1_Sinh": "Fungsi Sin Hiperbolik Terbalik", + "SSE.Controllers.Toolbar.txtFunction_1_Tan": "Fungsi Tangen Terbalik", + "SSE.Controllers.Toolbar.txtFunction_1_Tanh": "Fungsi Tangen Hiperbolik Terbalik", + "SSE.Controllers.Toolbar.txtFunction_Cos": "Fungsi Kosin", + "SSE.Controllers.Toolbar.txtFunction_Cosh": "Fungsi Kosin Hiperbolik", + "SSE.Controllers.Toolbar.txtFunction_Cot": "Fungsi Kotangen", + "SSE.Controllers.Toolbar.txtFunction_Coth": "Fungsi Kotangen Hiperbolik", + "SSE.Controllers.Toolbar.txtFunction_Csc": "Fungsi Kosekans", + "SSE.Controllers.Toolbar.txtFunction_Csch": "Fungsi Kosekans Hiperbolik", + "SSE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", + "SSE.Controllers.Toolbar.txtFunction_Sech": "Fungsi Sekans Hiperbolik", + "SSE.Controllers.Toolbar.txtFunction_Sinh": "Fungsi Sin Hiperbolik", + "SSE.Controllers.Toolbar.txtFunction_Tanh": "Fungsi Tangen Hiperbolik", + "SSE.Controllers.Toolbar.txtIntegral_dtheta": "Theta Diferensial", + "SSE.Controllers.Toolbar.txtIntegral_dx": "Diferensial x", + "SSE.Controllers.Toolbar.txtIntegral_dy": "Diferensial y", + "SSE.Controllers.Toolbar.txtIntegralDouble": "Integral Ganda", + "SSE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Integral Ganda", + "SSE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Integral Ganda", + "SSE.Controllers.Toolbar.txtIntegralOriented": "Integral Kontur", + "SSE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Integral Kontur", + "SSE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Integral Kontur", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd": "Ko-Produk", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Ko-Produk", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Ko-Produk", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Ko-Produk", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Ko-Produk", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Produk", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection": "Perpotongan", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Perpotongan", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Perpotongan", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Perpotongan", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Perpotongan", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod": "Produk", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Produk", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Produk", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Produk", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Produk", + "SSE.Controllers.Toolbar.txtLimitLog_Custom_1": "Contoh Limit", + "SSE.Controllers.Toolbar.txtLimitLog_Custom_2": "Contoh Maksimal", + "SSE.Controllers.Toolbar.txtLimitLog_Ln": "Logaritma Natural", + "SSE.Controllers.Toolbar.txtLimitLog_Log": "Logaritma", + "SSE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritma", + "SSE.Controllers.Toolbar.txtLimitLog_Max": "Maksimal", + "SSE.Controllers.Toolbar.txtMatrix_1_2": "1x2 Matriks Kosong", + "SSE.Controllers.Toolbar.txtMatrix_1_3": "1x3 Matriks Kosong", + "SSE.Controllers.Toolbar.txtMatrix_2_1": "2x1 Matriks Kosong", + "SSE.Controllers.Toolbar.txtMatrix_2_2": "2x2 Matriks Kosong", + "SSE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Matriks Kosong dengan Tanda Kurung", + "SSE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Matriks Kosong dengan Tanda Kurung", + "SSE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Matriks Kosong dengan Tanda Kurung", + "SSE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Matriks Kosong dengan Tanda Kurung", + "SSE.Controllers.Toolbar.txtMatrix_2_3": "2x3 Matriks Kosong", + "SSE.Controllers.Toolbar.txtMatrix_3_1": "3x1 Matriks Kosong", + "SSE.Controllers.Toolbar.txtMatrix_3_2": "3x2 Matriks Kosong", + "SSE.Controllers.Toolbar.txtMatrix_3_3": "3x3 Matriks Kosong", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Center": "Titik Tengah", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Titik Diagonal", + "SSE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 Matriks Identitas", + "SSE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 Matriks Identitas", + "SSE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 Matriks Identitas", + "SSE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 Matriks Identitas", + "SSE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Tanda Panah Kanan-Kiri Bawah", + "SSE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Tanda Panah Kanan-Kiri Atas", + "SSE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Panah Kiri Bawah", + "SSE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Panah Kiri Atas", + "SSE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Tanda Panah ke Kanan Atas", + "SSE.Controllers.Toolbar.txtOperator_ColonEquals": "Titik Dua", + "SSE.Controllers.Toolbar.txtOperator_Custom_2": "Hasil Delta", + "SSE.Controllers.Toolbar.txtOperator_Definition": "Setara Menurut Definisi", + "SSE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta Setara Dengan", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Tanda Panah Kanan-Kiri Bawah", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Tanda Panah Kanan-Kiri Atas", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Panah Kiri Bawah", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Panah Kiri Atas", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Tanda Panah ke Kanan Atas", + "SSE.Controllers.Toolbar.txtOperator_EqualsEquals": "Setara Setara", + "SSE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus Sama Dengan", + "SSE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus Sama Dengan", + "SSE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Diukur Berdasar", + "SSE.Controllers.Toolbar.txtRadicalCustom_1": "Akar", + "SSE.Controllers.Toolbar.txtRadicalCustom_2": "Akar", + "SSE.Controllers.Toolbar.txtRadicalRoot_3": "Akar Pangkat Tiga", + "SSE.Controllers.Toolbar.txtRadicalRoot_n": "Akar Dengan Derajat", + "SSE.Controllers.Toolbar.txtScriptSub": "Subskrip", + "SSE.Controllers.Toolbar.txtScriptSubSupLeft": "Subskrip-SuperskripKiri", + "SSE.Controllers.Toolbar.txtScriptSup": "Superskrip", + "SSE.Controllers.Toolbar.txtSymbol_about": "Kira-Kira", + "SSE.Controllers.Toolbar.txtSymbol_additional": "Komplemen", + "SSE.Controllers.Toolbar.txtSymbol_aleph": "Alef", + "SSE.Controllers.Toolbar.txtSymbol_alpha": "Alfa", + "SSE.Controllers.Toolbar.txtSymbol_approx": "Setara Dengan", + "SSE.Controllers.Toolbar.txtSymbol_ast": "Operator Tanda Bintang", + "SSE.Controllers.Toolbar.txtSymbol_beta": "Beta", + "SSE.Controllers.Toolbar.txtSymbol_beth": "Taruhan", + "SSE.Controllers.Toolbar.txtSymbol_bullet": "Operator Butir", + "SSE.Controllers.Toolbar.txtSymbol_cap": "Perpotongan", + "SSE.Controllers.Toolbar.txtSymbol_cbrt": "Akar Pangkat Tiga", + "SSE.Controllers.Toolbar.txtSymbol_cdots": "Elipsis Tengah Horisontal", + "SSE.Controllers.Toolbar.txtSymbol_celsius": "Derajat Celcius", + "SSE.Controllers.Toolbar.txtSymbol_chi": "Chi", + "SSE.Controllers.Toolbar.txtSymbol_cong": "Kira-Kira Setara Dengan", + "SSE.Controllers.Toolbar.txtSymbol_ddots": "Serong Kanan Bawah ", + "SSE.Controllers.Toolbar.txtSymbol_degree": "Derajat", + "SSE.Controllers.Toolbar.txtSymbol_delta": "Delta", + "SSE.Controllers.Toolbar.txtSymbol_div": "Tanda Pembagi", + "SSE.Controllers.Toolbar.txtSymbol_downarrow": "Panah Bawah", + "SSE.Controllers.Toolbar.txtSymbol_emptyset": "Himpunan Kosong", + "SSE.Controllers.Toolbar.txtSymbol_epsilon": "Epsilon", + "SSE.Controllers.Toolbar.txtSymbol_equals": "Setara", + "SSE.Controllers.Toolbar.txtSymbol_equiv": "Identik Dengan", + "SSE.Controllers.Toolbar.txtSymbol_eta": "Eta", + "SSE.Controllers.Toolbar.txtSymbol_factorial": "Faktorial", + "SSE.Controllers.Toolbar.txtSymbol_fahrenheit": "Derajat Fahrenheit", + "SSE.Controllers.Toolbar.txtSymbol_forall": "Untuk Semua", + "SSE.Controllers.Toolbar.txtSymbol_gamma": "Gamma", + "SSE.Controllers.Toolbar.txtSymbol_geq": "Lebih Dari atau Sama Dengan", + "SSE.Controllers.Toolbar.txtSymbol_greater": "Lebih Dari", + "SSE.Controllers.Toolbar.txtSymbol_in": "Elemen Dari", + "SSE.Controllers.Toolbar.txtSymbol_inc": "Naik", + "SSE.Controllers.Toolbar.txtSymbol_infinity": "Tak Terbatas", + "SSE.Controllers.Toolbar.txtSymbol_iota": "Iota", + "SSE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", + "SSE.Controllers.Toolbar.txtSymbol_leftarrow": "Panah Kiri", + "SSE.Controllers.Toolbar.txtSymbol_leq": "Kurang Dari atau Sama Dengan", + "SSE.Controllers.Toolbar.txtSymbol_less": "Kurang Dari", + "SSE.Controllers.Toolbar.txtSymbol_ll": "Kurang Dari", + "SSE.Controllers.Toolbar.txtSymbol_minus": "Minus", + "SSE.Controllers.Toolbar.txtSymbol_mp": "Minus Plus", + "SSE.Controllers.Toolbar.txtSymbol_mu": "Mu", + "SSE.Controllers.Toolbar.txtSymbol_neq": "Tidak Sama Dengan", + "SSE.Controllers.Toolbar.txtSymbol_ni": "Sertakan sebagai Anggota", + "SSE.Controllers.Toolbar.txtSymbol_not": "Tanda Negasi", + "SSE.Controllers.Toolbar.txtSymbol_o": "Omikron", + "SSE.Controllers.Toolbar.txtSymbol_omega": "Omega", + "SSE.Controllers.Toolbar.txtSymbol_partial": "Diferensial Parsial", + "SSE.Controllers.Toolbar.txtSymbol_percent": "Persentase", + "SSE.Controllers.Toolbar.txtSymbol_phi": "Phi", + "SSE.Controllers.Toolbar.txtSymbol_pi": "Pi", + "SSE.Controllers.Toolbar.txtSymbol_plus": "Plus", + "SSE.Controllers.Toolbar.txtSymbol_pm": "Plus Minus", + "SSE.Controllers.Toolbar.txtSymbol_propto": "Proposional Dengan", + "SSE.Controllers.Toolbar.txtSymbol_psi": "Psi", + "SSE.Controllers.Toolbar.txtSymbol_qdrt": "Akar Kuadrat", + "SSE.Controllers.Toolbar.txtSymbol_qed": "Pembuktian Akhir", + "SSE.Controllers.Toolbar.txtSymbol_rho": "Rho", + "SSE.Controllers.Toolbar.txtSymbol_rightarrow": "Tanda Panah ke Kanan", + "SSE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", + "SSE.Controllers.Toolbar.txtSymbol_sqrt": "Tanda Akar", + "SSE.Controllers.Toolbar.txtSymbol_theta": "Theta", + "SSE.Controllers.Toolbar.txtSymbol_times": "Tanda Perkalian", + "SSE.Controllers.Toolbar.txtSymbol_upsilon": "Upsilon", + "SSE.Controllers.Toolbar.txtSymbol_varepsilon": "Varian Epsilon", + "SSE.Controllers.Toolbar.txtSymbol_varphi": "Varian Phi", + "SSE.Controllers.Toolbar.txtSymbol_varpi": "Varian Pi", + "SSE.Controllers.Toolbar.txtSymbol_varrho": "Varian Rho", + "SSE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma Variant", "SSE.Controllers.Toolbar.warnMergeLostData": "Only the data from the upper-left cell will remain in the merged cell.
Are you sure you want to continue?", + "SSE.Views.AdvancedSeparatorDialog.textTitle": "Pengaturan Lanjut", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Custom Filter", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Blanks}", "SSE.Views.AutoFilterDialog.textSelectAll": "Select All", "SSE.Views.AutoFilterDialog.textWarning": "Warning", + "SSE.Views.AutoFilterDialog.txtClear": "Hapus", "SSE.Views.AutoFilterDialog.txtEmpty": "Enter cell filter", "SSE.Views.AutoFilterDialog.txtTitle": "Filter", + "SSE.Views.AutoFilterDialog.txtTop10": "10 Teratas", "SSE.Views.AutoFilterDialog.warnNoSelected": "You must choose at least one value", "SSE.Views.CellEditor.textManager": "Name Manager", "SSE.Views.CellEditor.tipFormula": "Insert Function", "SSE.Views.CellRangeDialog.errorMaxRows": "ERROR! The maximum number of data series per chart is 255", + "SSE.Views.CellRangeDialog.errorStockChart": "Urutan baris salah. Untuk membuat diagram garis, masukkan data pada lembar kerja dengan urutan berikut ini:
harga pembukaan, harga maksimal, harga minimal, harga penutupan.", "SSE.Views.CellRangeDialog.txtEmpty": "This field is required", "SSE.Views.CellRangeDialog.txtInvalidRange": "ERROR! Invalid cells range", "SSE.Views.CellRangeDialog.txtTitle": "Select Data Range", + "SSE.Views.CellSettings.textBackColor": "Warna Latar", + "SSE.Views.CellSettings.textBackground": "Warna Latar", + "SSE.Views.CellSettings.textBorderColor": "Warna", + "SSE.Views.CellSettings.textBorders": "Gaya Pembatas", + "SSE.Views.CellSettings.textColor": "Isian Warna", + "SSE.Views.CellSettings.textDirection": "Arah", + "SSE.Views.CellSettings.textFill": "Isian", + "SSE.Views.CellSettings.textForeground": "Warna latar depan", + "SSE.Views.CellSettings.textGradient": "Gradien", + "SSE.Views.CellSettings.textGradientColor": "Warna", + "SSE.Views.CellSettings.textGradientFill": "Isian Gradien", + "SSE.Views.CellSettings.textLinear": "Linier", + "SSE.Views.CellSettings.textNoFill": "Tidak ada Isian", + "SSE.Views.CellSettings.textPattern": "Pola", + "SSE.Views.CellSettings.textPatternFill": "Pola", + "SSE.Views.CellSettings.textPosition": "Jabatan", + "SSE.Views.CellSettings.tipAll": "Buat Pembatas Luar dan Semua Garis Dalam", + "SSE.Views.CellSettings.tipBottom": "Buat Pembatas Bawah-Luar Saja", + "SSE.Views.CellSettings.tipInner": "Buat Garis Dalam Saja", + "SSE.Views.CellSettings.tipInnerHor": "Buat Garis Horisontal Dalam Saja", + "SSE.Views.CellSettings.tipInnerVert": "Buat Garis Dalam Vertikal Saja", + "SSE.Views.CellSettings.tipLeft": "Buat Pembatas Kiri-Luar Saja", + "SSE.Views.CellSettings.tipNone": "Tanpa Pembatas", + "SSE.Views.CellSettings.tipOuter": "Buat Pembatas Luar Saja", + "SSE.Views.CellSettings.tipRight": "Buat Pembatas Kanan-Luar Saja", + "SSE.Views.CellSettings.tipTop": "Buat Pembatas Atas-Luar Saja", + "SSE.Views.ChartDataDialog.errorStockChart": "Urutan baris salah. Untuk membuat diagram garis, masukkan data pada lembar kerja dengan urutan berikut ini:
harga pembukaan, harga maksimal, harga minimal, harga penutupan.", + "SSE.Views.ChartDataDialog.textAdd": "Tambahkan", + "SSE.Views.ChartDataDialog.textDelete": "Hapus", + "SSE.Views.ChartDataDialog.textEdit": "Sunting", + "SSE.Views.ChartDataDialog.textUp": "Naik", + "SSE.Views.ChartDataRangeDialog.errorStockChart": "Urutan baris salah. Untuk membuat diagram garis, masukkan data pada lembar kerja dengan urutan berikut ini:
harga pembukaan, harga maksimal, harga minimal, harga penutupan.", + "SSE.Views.ChartSettings.strSparkColor": "Warna", "SSE.Views.ChartSettings.textAdvanced": "Show advanced settings", + "SSE.Views.ChartSettings.textBorderSizeErr": "Input yang dimasukkan salah.
Silakan masukkan input antara 1pt dan 1584pt.", + "SSE.Views.ChartSettings.textChangeType": "Ubah tipe", "SSE.Views.ChartSettings.textChartType": "Change Chart Type", "SSE.Views.ChartSettings.textEditData": "Edit Data", "SSE.Views.ChartSettings.textHeight": "Height", "SSE.Views.ChartSettings.textKeepRatio": "Constant Proportions", + "SSE.Views.ChartSettings.textShow": "Tampilkan", "SSE.Views.ChartSettings.textSize": "Size", "SSE.Views.ChartSettings.textStyle": "Style", + "SSE.Views.ChartSettings.textType": "Tipe", "SSE.Views.ChartSettings.textWidth": "Width", "SSE.Views.ChartSettingsDlg.errorMaxRows": "ERROR! The maximum number of data series per chart is 255", "SSE.Views.ChartSettingsDlg.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:
opening price, max price, min price, closing price.", + "SSE.Views.ChartSettingsDlg.textAltDescription": "Deskripsi", + "SSE.Views.ChartSettingsDlg.textAltTitle": "Judul", "SSE.Views.ChartSettingsDlg.textAuto": "Auto", "SSE.Views.ChartSettingsDlg.textAxisCrosses": "Axis Crosses", "SSE.Views.ChartSettingsDlg.textAxisOptions": "Axis Options", "SSE.Views.ChartSettingsDlg.textAxisPos": "Axis Position", "SSE.Views.ChartSettingsDlg.textAxisSettings": "Axis Settings", + "SSE.Views.ChartSettingsDlg.textAxisTitle": "Judul", "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Between Tick Marks", "SSE.Views.ChartSettingsDlg.textBillions": "Billions", + "SSE.Views.ChartSettingsDlg.textBottom": "Bawah", "SSE.Views.ChartSettingsDlg.textCategoryName": "Category Name", "SSE.Views.ChartSettingsDlg.textCenter": "Center", "SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Chart Elements &
Chart Legend", @@ -250,6 +684,7 @@ "SSE.Views.ChartSettingsDlg.textDataLabels": "Data Labels", "SSE.Views.ChartSettingsDlg.textDataRows": "in rows", "SSE.Views.ChartSettingsDlg.textDisplayLegend": "Display Legend", + "SSE.Views.ChartSettingsDlg.textFit": "Sesuaikan Lebar", "SSE.Views.ChartSettingsDlg.textFixed": "Fixed", "SSE.Views.ChartSettingsDlg.textGridLines": "Gridlines", "SSE.Views.ChartSettingsDlg.textHide": "Hide", @@ -268,6 +703,7 @@ "SSE.Views.ChartSettingsDlg.textLabelOptions": "Label Options", "SSE.Views.ChartSettingsDlg.textLabelPos": "Label Position", "SSE.Views.ChartSettingsDlg.textLayout": "Layout", + "SSE.Views.ChartSettingsDlg.textLeft": "Kiri", "SSE.Views.ChartSettingsDlg.textLeftOverlay": "Left Overlay", "SSE.Views.ChartSettingsDlg.textLegendBottom": "Bottom", "SSE.Views.ChartSettingsDlg.textLegendLeft": "Left", @@ -295,6 +731,7 @@ "SSE.Views.ChartSettingsDlg.textOuterTop": "Outer Top", "SSE.Views.ChartSettingsDlg.textOverlay": "Overlay", "SSE.Views.ChartSettingsDlg.textReverse": "Values in reverse order", + "SSE.Views.ChartSettingsDlg.textRight": "Kanan", "SSE.Views.ChartSettingsDlg.textRightOverlay": "Right Overlay", "SSE.Views.ChartSettingsDlg.textRotated": "Rotated", "SSE.Views.ChartSettingsDlg.textSelectData": "Select Data", @@ -311,6 +748,7 @@ "SSE.Views.ChartSettingsDlg.textThousands": "Thousands", "SSE.Views.ChartSettingsDlg.textTickOptions": "Tick Options", "SSE.Views.ChartSettingsDlg.textTitle": "Chart - Advanced Settings", + "SSE.Views.ChartSettingsDlg.textTop": "Atas", "SSE.Views.ChartSettingsDlg.textTrillions": "Trillions", "SSE.Views.ChartSettingsDlg.textType": "Type", "SSE.Views.ChartSettingsDlg.textTypeData": "Type & Data", @@ -320,6 +758,32 @@ "SSE.Views.ChartSettingsDlg.textXAxisTitle": "X Axis Title", "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y Axis Title", "SSE.Views.ChartSettingsDlg.txtEmpty": "This field is required", + "SSE.Views.ChartTypeDialog.textStyle": "Model", + "SSE.Views.ChartTypeDialog.textType": "Tipe", + "SSE.Views.CreatePivotDialog.txtEmpty": "Kolom ini harus diisi", + "SSE.Views.CreateSparklineDialog.txtEmpty": "Kolom ini harus diisi", + "SSE.Views.DataTab.capBtnGroup": "Grup", + "SSE.Views.DataTab.capBtnUngroup": "Pisahkan dari grup", + "SSE.Views.DataValidationDialog.strSettings": "Pengaturan", + "SSE.Views.DataValidationDialog.textAlert": "Waspada", + "SSE.Views.DataValidationDialog.textAllow": "Ijinkan", + "SSE.Views.DataValidationDialog.textData": "Data", + "SSE.Views.DataValidationDialog.textEndDate": "Tanggal Berakhir", + "SSE.Views.DataValidationDialog.textMax": "Maksimal", + "SSE.Views.DataValidationDialog.textMessage": "Pesan", + "SSE.Views.DataValidationDialog.textSource": "Sumber", + "SSE.Views.DataValidationDialog.textStartDate": "Tanggal Mulai", + "SSE.Views.DataValidationDialog.textStyle": "Model", + "SSE.Views.DataValidationDialog.textTitle": "Judul", + "SSE.Views.DataValidationDialog.txtDate": "Tanggal", + "SSE.Views.DataValidationDialog.txtEndDate": "Tanggal Berakhir", + "SSE.Views.DataValidationDialog.txtGreaterThan": "Lebih Dari", + "SSE.Views.DataValidationDialog.txtGreaterThanOrEqual": "Lebih Dari atau Sama Dengan", + "SSE.Views.DataValidationDialog.txtLessThan": "Kurang Dari", + "SSE.Views.DataValidationDialog.txtLessThanOrEqual": "Kurang Dari atau Sama Dengan", + "SSE.Views.DataValidationDialog.txtOther": "Lainnya", + "SSE.Views.DataValidationDialog.txtStartDate": "Tanggal Mulai", + "SSE.Views.DataValidationDialog.txtTime": "Waktu", "SSE.Views.DigitalFilterDialog.capAnd": "And", "SSE.Views.DigitalFilterDialog.capCondition1": "equals", "SSE.Views.DigitalFilterDialog.capCondition10": "does not end with", @@ -339,22 +803,50 @@ "SSE.Views.DigitalFilterDialog.textUse1": "Use ? to present any single character", "SSE.Views.DigitalFilterDialog.textUse2": "Use * to present any series of character", "SSE.Views.DigitalFilterDialog.txtTitle": "Custom Filter", + "SSE.Views.DocumentHolder.advancedImgText": "Pengaturan Lanjut untuk Gambar", "SSE.Views.DocumentHolder.advancedShapeText": "Shape Advanced Settings", "SSE.Views.DocumentHolder.bottomCellText": "Align Bottom", "SSE.Views.DocumentHolder.centerCellText": "Align Center", "SSE.Views.DocumentHolder.chartText": "Chart Advanced Settings", + "SSE.Views.DocumentHolder.deleteColumnText": "Kolom", + "SSE.Views.DocumentHolder.deleteRowText": "Baris", + "SSE.Views.DocumentHolder.deleteTableText": "Tabel", "SSE.Views.DocumentHolder.direct270Text": "Rotate at 270°", "SSE.Views.DocumentHolder.direct90Text": "Rotate at 90°", "SSE.Views.DocumentHolder.directHText": "Horizontal", "SSE.Views.DocumentHolder.directionText": "Text Direction", "SSE.Views.DocumentHolder.editChartText": "Edit Data", "SSE.Views.DocumentHolder.editHyperlinkText": "Edit Hyperlink", + "SSE.Views.DocumentHolder.insertColumnLeftText": "Kolom Kiri", + "SSE.Views.DocumentHolder.insertColumnRightText": "Kolom Kanan", + "SSE.Views.DocumentHolder.insertRowAboveText": "Baris di Atas", + "SSE.Views.DocumentHolder.insertRowBelowText": "Baris di Bawah", + "SSE.Views.DocumentHolder.originalSizeText": "Ukuran Sebenarnya", "SSE.Views.DocumentHolder.removeHyperlinkText": "Remove Hyperlink", + "SSE.Views.DocumentHolder.selectRowText": "Baris", + "SSE.Views.DocumentHolder.selectTableText": "Tabel", + "SSE.Views.DocumentHolder.textAlign": "Ratakan", + "SSE.Views.DocumentHolder.textArrange": "Susun", "SSE.Views.DocumentHolder.textArrangeBack": "Send to Background", "SSE.Views.DocumentHolder.textArrangeBackward": "Move Backward", "SSE.Views.DocumentHolder.textArrangeForward": "Move Forward", "SSE.Views.DocumentHolder.textArrangeFront": "Bring to Foreground", + "SSE.Views.DocumentHolder.textBullets": "Butir", + "SSE.Views.DocumentHolder.textCropFill": "Isian", "SSE.Views.DocumentHolder.textFreezePanes": "Freeze Panes", + "SSE.Views.DocumentHolder.textFromFile": "Dari File", + "SSE.Views.DocumentHolder.textFromUrl": "Dari URL", + "SSE.Views.DocumentHolder.textNone": "tidak ada", + "SSE.Views.DocumentHolder.textNumbering": "Penomoran", + "SSE.Views.DocumentHolder.textReplace": "Ganti Gambar", + "SSE.Views.DocumentHolder.textShapeAlignBottom": "Rata Bawah", + "SSE.Views.DocumentHolder.textShapeAlignCenter": "Rata Tengah", + "SSE.Views.DocumentHolder.textShapeAlignLeft": "Rata Kiri", + "SSE.Views.DocumentHolder.textShapeAlignMiddle": "Rata di Tengah", + "SSE.Views.DocumentHolder.textShapeAlignRight": "Rata Kanan", + "SSE.Views.DocumentHolder.textShapeAlignTop": "Rata Atas", + "SSE.Views.DocumentHolder.textSum": "Jumlah", + "SSE.Views.DocumentHolder.textUndo": "Batalkan", "SSE.Views.DocumentHolder.textUnFreezePanes": "Unfreeze Panes", "SSE.Views.DocumentHolder.topCellText": "Align Top", "SSE.Views.DocumentHolder.txtAddComment": "Add Comment", @@ -370,7 +862,9 @@ "SSE.Views.DocumentHolder.txtColumn": "Entire column", "SSE.Views.DocumentHolder.txtColumnWidth": "Column Width", "SSE.Views.DocumentHolder.txtCopy": "Copy", + "SSE.Views.DocumentHolder.txtCurrency": "Mata uang", "SSE.Views.DocumentHolder.txtCut": "Cut", + "SSE.Views.DocumentHolder.txtDate": "Tanggal", "SSE.Views.DocumentHolder.txtDelete": "Delete", "SSE.Views.DocumentHolder.txtDescending": "Descending", "SSE.Views.DocumentHolder.txtEditComment": "Edit Comment", @@ -379,23 +873,31 @@ "SSE.Views.DocumentHolder.txtHide": "Hide", "SSE.Views.DocumentHolder.txtInsert": "Insert", "SSE.Views.DocumentHolder.txtInsHyperlink": "Hyperlink", + "SSE.Views.DocumentHolder.txtNumber": "Angka", "SSE.Views.DocumentHolder.txtPaste": "Paste", + "SSE.Views.DocumentHolder.txtPercentage": "Persentase", "SSE.Views.DocumentHolder.txtRow": "Entire row", "SSE.Views.DocumentHolder.txtRowHeight": "Row Height", + "SSE.Views.DocumentHolder.txtSelect": "Pilih", "SSE.Views.DocumentHolder.txtShiftDown": "Shift cells down", "SSE.Views.DocumentHolder.txtShiftLeft": "Shift cells left", "SSE.Views.DocumentHolder.txtShiftRight": "Shift cells right", "SSE.Views.DocumentHolder.txtShiftUp": "Shift cells up", "SSE.Views.DocumentHolder.txtShow": "Show", "SSE.Views.DocumentHolder.txtSort": "Sort", + "SSE.Views.DocumentHolder.txtText": "Teks", "SSE.Views.DocumentHolder.txtTextAdvanced": "Text Advanced Settings", + "SSE.Views.DocumentHolder.txtTime": "Waktu", "SSE.Views.DocumentHolder.txtUngroup": "Ungroup", "SSE.Views.DocumentHolder.txtWidth": "Width", "SSE.Views.DocumentHolder.vertAlignText": "Vertical Alignment", + "SSE.Views.FieldSettingsDialog.txtProduct": "Produk", + "SSE.Views.FieldSettingsDialog.txtSum": "Jumlah", "SSE.Views.FileMenu.btnBackCaption": "Go to Documents", "SSE.Views.FileMenu.btnCreateNewCaption": "Create New", "SSE.Views.FileMenu.btnDownloadCaption": "Download as...", "SSE.Views.FileMenu.btnHelpCaption": "Help...", + "SSE.Views.FileMenu.btnHistoryCaption": "Riwayat versi", "SSE.Views.FileMenu.btnInfoCaption": "Spreadsheet Info...", "SSE.Views.FileMenu.btnPrintCaption": "Print", "SSE.Views.FileMenu.btnRecentFilesCaption": "Open Recent...", @@ -405,11 +907,19 @@ "SSE.Views.FileMenu.btnSaveCaption": "Save", "SSE.Views.FileMenu.btnSettingsCaption": "Advanced Settings...", "SSE.Views.FileMenu.btnToEditCaption": "Edit Spreadsheet", + "SSE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Buat Baru", + "SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Terapkan", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Tambahkan penulis", "SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Author", "SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Change access rights", + "SSE.Views.FileMenuPanels.DocumentInfo.txtComment": "Komentar", + "SSE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Dibuat", + "SSE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Pemilik", "SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Location", "SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persons who have rights", + "SSE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subyek", "SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Spreadsheet Title", + "SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Diunggah", "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Change access rights", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Persons who have rights", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Apply", @@ -443,15 +953,83 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Point", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Russian", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "as Windows", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Terapkan", + "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Peringatan", "SSE.Views.FileMenuPanels.Settings.txtGeneral": "General", + "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Periksa Ejaan", + "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Peringatan", + "SSE.Views.FormatRulesEditDlg.textAutomatic": "Otomatis", + "SSE.Views.FormatRulesEditDlg.textBold": "Tebal", + "SSE.Views.FormatRulesEditDlg.textClear": "Hapus", + "SSE.Views.FormatRulesEditDlg.textCustom": "Khusus", + "SSE.Views.FormatRulesEditDlg.textFill": "Isian", + "SSE.Views.FormatRulesEditDlg.textGradient": "Gradien", + "SSE.Views.FormatRulesEditDlg.textItalic": "Miring", + "SSE.Views.FormatRulesEditDlg.textMaximum": "Maksimal", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Tambahkan Warna Khusus Baru", + "SSE.Views.FormatRulesEditDlg.textNoBorders": "Tidak ada pembatas", + "SSE.Views.FormatRulesEditDlg.textNone": "tidak ada", + "SSE.Views.FormatRulesEditDlg.textPosition": "Jabatan", + "SSE.Views.FormatRulesEditDlg.textPreview": "Pratinjau", + "SSE.Views.FormatRulesEditDlg.textSubscript": "Subskrip", + "SSE.Views.FormatRulesEditDlg.textSuperscript": "Superskrip", + "SSE.Views.FormatRulesEditDlg.textUnderline": "Garis bawah", + "SSE.Views.FormatRulesEditDlg.txtCurrency": "Mata uang", + "SSE.Views.FormatRulesEditDlg.txtDate": "Tanggal", + "SSE.Views.FormatRulesEditDlg.txtEmpty": "Kolom ini harus diisi", + "SSE.Views.FormatRulesEditDlg.txtNumber": "Angka", + "SSE.Views.FormatRulesEditDlg.txtPercentage": "Persentase", + "SSE.Views.FormatRulesEditDlg.txtText": "Teks", + "SSE.Views.FormatRulesEditDlg.txtTime": "Waktu", + "SSE.Views.FormatRulesManagerDlg.guestText": "Tamu", + "SSE.Views.FormatRulesManagerDlg.lockText": "Dikunci", + "SSE.Views.FormatRulesManagerDlg.textDelete": "Hapus", + "SSE.Views.FormatRulesManagerDlg.textEdit": "Sunting", + "SSE.Views.FormatRulesManagerDlg.textNew": "baru", + "SSE.Views.FormatSettingsDialog.textCategory": "Kategori", + "SSE.Views.FormatSettingsDialog.txtCurrency": "Mata uang", + "SSE.Views.FormatSettingsDialog.txtCustom": "Khusus", + "SSE.Views.FormatSettingsDialog.txtDate": "Tanggal", + "SSE.Views.FormatSettingsDialog.txtGeneral": "Umum", + "SSE.Views.FormatSettingsDialog.txtNone": "tidak ada", + "SSE.Views.FormatSettingsDialog.txtNumber": "Angka", + "SSE.Views.FormatSettingsDialog.txtPercentage": "Persentase", + "SSE.Views.FormatSettingsDialog.txtText": "Teks", + "SSE.Views.FormatSettingsDialog.txtTime": "Waktu", "SSE.Views.FormulaDialog.sDescription": "Description", "SSE.Views.FormulaDialog.textGroupDescription": "Select Function Group", "SSE.Views.FormulaDialog.textListDescription": "Select Function", + "SSE.Views.FormulaDialog.txtSearch": "Cari", "SSE.Views.FormulaDialog.txtTitle": "Insert Function", + "SSE.Views.FormulaTab.textAutomatic": "Otomatis", + "SSE.Views.FormulaTab.txtAdditional": "Tambahan", + "SSE.Views.FormulaWizard.textAny": "Apa saja", + "SSE.Views.FormulaWizard.textNumber": "Angka", + "SSE.Views.FormulaWizard.textText": "Teks", + "SSE.Views.HeaderFooterDialog.textBold": "Tebal", + "SSE.Views.HeaderFooterDialog.textCenter": "Tengah", + "SSE.Views.HeaderFooterDialog.textDate": "Tanggal", + "SSE.Views.HeaderFooterDialog.textDiffOdd": "Halaman ganjil dan genap yang berbeda", + "SSE.Views.HeaderFooterDialog.textEven": "Halaman Genap", + "SSE.Views.HeaderFooterDialog.textFileName": "Nama file", + "SSE.Views.HeaderFooterDialog.textInsert": "Sisipkan", + "SSE.Views.HeaderFooterDialog.textItalic": "Miring", + "SSE.Views.HeaderFooterDialog.textLeft": "Kiri", + "SSE.Views.HeaderFooterDialog.textNewColor": "Tambahkan Warna Khusus Baru", + "SSE.Views.HeaderFooterDialog.textOdd": "Halaman Ganjil", + "SSE.Views.HeaderFooterDialog.textRight": "Kanan", + "SSE.Views.HeaderFooterDialog.textStrikeout": "Coret ganda", + "SSE.Views.HeaderFooterDialog.textSubscript": "Subskrip", + "SSE.Views.HeaderFooterDialog.textSuperscript": "Superskrip", + "SSE.Views.HeaderFooterDialog.textTime": "Waktu", + "SSE.Views.HeaderFooterDialog.textUnderline": "Garis bawah", + "SSE.Views.HeaderFooterDialog.tipFontName": "Huruf", + "SSE.Views.HeaderFooterDialog.tipFontSize": "Ukuran Huruf", "SSE.Views.HyperlinkSettingsDialog.strDisplay": "Display", "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Link to", "SSE.Views.HyperlinkSettingsDialog.strRange": "Range", "SSE.Views.HyperlinkSettingsDialog.strSheet": "Sheet", + "SSE.Views.HyperlinkSettingsDialog.textCopy": "Salin", "SSE.Views.HyperlinkSettingsDialog.textDefault": "Selected range", "SSE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Enter caption here", "SSE.Views.HyperlinkSettingsDialog.textEmptyLink": "Enter link here", @@ -463,6 +1041,9 @@ "SSE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink Settings", "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "This field is required", "SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format", + "SSE.Views.ImageSettings.textAdvanced": "Tampilkan pengaturan lanjut", + "SSE.Views.ImageSettings.textCropFill": "Isian", + "SSE.Views.ImageSettings.textEdit": "Sunting", "SSE.Views.ImageSettings.textFromFile": "From File", "SSE.Views.ImageSettings.textFromUrl": "From URL", "SSE.Views.ImageSettings.textHeight": "Height", @@ -471,11 +1052,15 @@ "SSE.Views.ImageSettings.textOriginalSize": "Default Size", "SSE.Views.ImageSettings.textSize": "Size", "SSE.Views.ImageSettings.textWidth": "Width", + "SSE.Views.ImageSettingsAdvanced.textAltDescription": "Deskripsi", + "SSE.Views.ImageSettingsAdvanced.textAltTitle": "Judul", + "SSE.Views.ImageSettingsAdvanced.textTitle": "Gambar - Pengaturan Lanjut", "SSE.Views.LeftMenu.tipAbout": "About", "SSE.Views.LeftMenu.tipChat": "Chat", "SSE.Views.LeftMenu.tipComments": "Comments", "SSE.Views.LeftMenu.tipFile": "File", "SSE.Views.LeftMenu.tipSearch": "Search", + "SSE.Views.LeftMenu.tipSpellcheck": "Periksa Ejaan", "SSE.Views.LeftMenu.tipSupport": "Feedback & Support", "SSE.Views.MainSettingsPrint.okButtonText": "Save", "SSE.Views.MainSettingsPrint.strBottom": "Bottom", @@ -486,6 +1071,8 @@ "SSE.Views.MainSettingsPrint.strPrint": "Print", "SSE.Views.MainSettingsPrint.strRight": "Right", "SSE.Views.MainSettingsPrint.strTop": "Top", + "SSE.Views.MainSettingsPrint.textActualSize": "Ukuran Sebenarnya", + "SSE.Views.MainSettingsPrint.textCustom": "Khusus", "SSE.Views.MainSettingsPrint.textPageOrientation": "Page Orientation", "SSE.Views.MainSettingsPrint.textPageSize": "Page Size", "SSE.Views.MainSettingsPrint.textPrintGrid": "Print Gridlines", @@ -511,6 +1098,7 @@ "SSE.Views.NamedRangePasteDlg.txtTitle": "Paste Name", "SSE.Views.NameManagerDlg.closeButtonText": "Close", "SSE.Views.NameManagerDlg.guestText": "Guest", + "SSE.Views.NameManagerDlg.lockText": "Dikunci", "SSE.Views.NameManagerDlg.textDataRange": "Data Range", "SSE.Views.NameManagerDlg.textDelete": "Delete", "SSE.Views.NameManagerDlg.textEdit": "Edit", @@ -528,6 +1116,11 @@ "SSE.Views.NameManagerDlg.textWorkbook": "Workbook", "SSE.Views.NameManagerDlg.tipIsLocked": "This element is being edited by another user.", "SSE.Views.NameManagerDlg.txtTitle": "Name Manager", + "SSE.Views.PageMarginsDialog.textBottom": "Bawah", + "SSE.Views.PageMarginsDialog.textLeft": "Kiri", + "SSE.Views.PageMarginsDialog.textRight": "Kanan", + "SSE.Views.PageMarginsDialog.textTitle": "Margin", + "SSE.Views.PageMarginsDialog.textTop": "Atas", "SSE.Views.ParagraphSettings.strLineHeight": "Line Spacing", "SSE.Views.ParagraphSettings.strParagraphSpacing": "Spacing", "SSE.Views.ParagraphSettings.strSpacingAfter": "After", @@ -542,18 +1135,27 @@ "SSE.Views.ParagraphSettingsAdvanced.strAllCaps": "All caps", "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double strikethrough", "SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Left", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Spasi Antar Baris", "SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Right", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Setelah", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Sebelum", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecialBy": "oleh", "SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Font", "SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Indents & Placement", "SSE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Small caps", + "SSE.Views.ParagraphSettingsAdvanced.strSpacing": "Spasi", "SSE.Views.ParagraphSettingsAdvanced.strStrike": "Strikethrough", "SSE.Views.ParagraphSettingsAdvanced.strSubscript": "Subscript", "SSE.Views.ParagraphSettingsAdvanced.strSuperscript": "Superscript", "SSE.Views.ParagraphSettingsAdvanced.strTabs": "Tab", "SSE.Views.ParagraphSettingsAdvanced.textAlign": "Alignment", + "SSE.Views.ParagraphSettingsAdvanced.textAuto": "Banyak", "SSE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Character Spacing", "SSE.Views.ParagraphSettingsAdvanced.textDefault": "Default Tab", "SSE.Views.ParagraphSettingsAdvanced.textEffects": "Effects", + "SSE.Views.ParagraphSettingsAdvanced.textExact": "Persis", + "SSE.Views.ParagraphSettingsAdvanced.textFirstLine": "Baris Pertama", + "SSE.Views.ParagraphSettingsAdvanced.textJustified": "Rata Kiri-Kanan", "SSE.Views.ParagraphSettingsAdvanced.textRemove": "Remove", "SSE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Remove All", "SSE.Views.ParagraphSettingsAdvanced.textSet": "Specify", @@ -562,6 +1164,24 @@ "SSE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tab Position", "SSE.Views.ParagraphSettingsAdvanced.textTabRight": "Right", "SSE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraph - Advanced Settings", + "SSE.Views.ParagraphSettingsAdvanced.txtAutoText": "Otomatis", + "SSE.Views.PivotDigitalFilterDialog.txtAnd": "dan", + "SSE.Views.PivotGroupDialog.textAuto": "Otomatis", + "SSE.Views.PivotGroupDialog.textBy": "oleh", + "SSE.Views.PivotGroupDialog.textDays": "Hari", + "SSE.Views.PivotGroupDialog.textHour": "jam", + "SSE.Views.PivotGroupDialog.textMin": "menit", + "SSE.Views.PivotGroupDialog.textMonth": "bulan", + "SSE.Views.PivotGroupDialog.textYear": "tahun", + "SSE.Views.PivotSettings.textAdvanced": "Tampilkan pengaturan lanjut", + "SSE.Views.PivotSettings.textColumns": "Kolom", + "SSE.Views.PivotSettings.textRows": "Baris", + "SSE.Views.PivotSettingsAdvanced.textAltDescription": "Deskripsi", + "SSE.Views.PivotSettingsAdvanced.textAltTitle": "Judul", + "SSE.Views.PivotSettingsAdvanced.txtEmpty": "Kolom ini harus diisi", + "SSE.Views.PivotSettingsAdvanced.txtName": "Nama", + "SSE.Views.PivotTable.txtCreate": "Sisipkan Tabel", + "SSE.Views.PivotTable.txtSelect": "Pilih", "SSE.Views.PrintSettings.btnPrint": "Save & Print", "SSE.Views.PrintSettings.strBottom": "Bottom", "SSE.Views.PrintSettings.strLandscape": "Landscape", @@ -570,10 +1190,12 @@ "SSE.Views.PrintSettings.strPortrait": "Portrait", "SSE.Views.PrintSettings.strPrint": "Print", "SSE.Views.PrintSettings.strRight": "Right", + "SSE.Views.PrintSettings.strShow": "Tampilkan", "SSE.Views.PrintSettings.strTop": "Top", "SSE.Views.PrintSettings.textActualSize": "Actual Size", "SSE.Views.PrintSettings.textAllSheets": "All Sheets", "SSE.Views.PrintSettings.textCurrentSheet": "Current Sheet", + "SSE.Views.PrintSettings.textCustom": "Khusus", "SSE.Views.PrintSettings.textHideDetails": "Hide Details", "SSE.Views.PrintSettings.textLayout": "Layout", "SSE.Views.PrintSettings.textPageOrientation": "Page Orientation", @@ -584,12 +1206,47 @@ "SSE.Views.PrintSettings.textSelection": "Selection", "SSE.Views.PrintSettings.textShowDetails": "Show Details", "SSE.Views.PrintSettings.textTitle": "Print Settings", + "SSE.Views.PrintWithPreview.txtActualSize": "Ukuran Sebenarnya", + "SSE.Views.PrintWithPreview.txtBottom": "Bawah", + "SSE.Views.PrintWithPreview.txtCustom": "Khusus", + "SSE.Views.PrintWithPreview.txtLeft": "Kiri", + "SSE.Views.PrintWithPreview.txtMargins": "Margin", + "SSE.Views.PrintWithPreview.txtPage": "Halaman", + "SSE.Views.PrintWithPreview.txtPageNumInvalid": "Nomor halaman salah", + "SSE.Views.PrintWithPreview.txtPageOrientation": "Orientasi Halaman", + "SSE.Views.PrintWithPreview.txtPageSize": "Ukuran Halaman", + "SSE.Views.PrintWithPreview.txtPrint": "Cetak", + "SSE.Views.PrintWithPreview.txtRight": "Kanan", + "SSE.Views.PrintWithPreview.txtSave": "Simpan", + "SSE.Views.PrintWithPreview.txtTop": "Atas", + "SSE.Views.ProtectDialog.txtEmpty": "Kolom ini harus diisi", + "SSE.Views.ProtectDialog.txtPassword": "Kata Sandi", + "SSE.Views.ProtectDialog.txtRangeName": "Judul", + "SSE.Views.ProtectDialog.txtWarning": "Perhatian: Tidak bisa dipulihkan jika Anda kehilangan atau lupa kata sandi. Simpan di tempat yang aman.", + "SSE.Views.ProtectRangesDlg.guestText": "Tamu", + "SSE.Views.ProtectRangesDlg.lockText": "Dikunci", + "SSE.Views.ProtectRangesDlg.textDelete": "Hapus", + "SSE.Views.ProtectRangesDlg.textEdit": "Sunting", + "SSE.Views.ProtectRangesDlg.textNew": "baru", + "SSE.Views.ProtectRangesDlg.textPwd": "Kata Sandi", + "SSE.Views.ProtectRangesDlg.textTitle": "Judul", + "SSE.Views.ProtectRangesDlg.txtNo": "Tidak", + "SSE.Views.ProtectRangesDlg.txtYes": "Ya", + "SSE.Views.RemoveDuplicatesDialog.textColumns": "Kolom", + "SSE.Views.RemoveDuplicatesDialog.textSelectAll": "Pilih semua", "SSE.Views.RightMenu.txtChartSettings": "Chart Settings", "SSE.Views.RightMenu.txtImageSettings": "Image Settings", "SSE.Views.RightMenu.txtParagraphSettings": "Text Settings", "SSE.Views.RightMenu.txtSettings": "Common Settings", "SSE.Views.RightMenu.txtShapeSettings": "Shape Settings", + "SSE.Views.RightMenu.txtTableSettings": "Pengaturan Tabel", "SSE.Views.RightMenu.txtTextArtSettings": "Text Art Settings", + "SSE.Views.ScaleDialog.textAuto": "Otomatis", + "SSE.Views.ScaleDialog.textFewPages": "Halaman", + "SSE.Views.ScaleDialog.textHeight": "Ketinggian", + "SSE.Views.ScaleDialog.textManyPages": "Halaman", + "SSE.Views.ScaleDialog.textOnePage": "Halaman", + "SSE.Views.ScaleDialog.textWidth": "Lebar", "SSE.Views.SetValueDialog.txtMaxText": "The maximum value for this field is {0}", "SSE.Views.SetValueDialog.txtMinText": "The minimum value for this field is {0}", "SSE.Views.ShapeSettings.strBackground": "Background color", @@ -601,6 +1258,7 @@ "SSE.Views.ShapeSettings.strSize": "Size", "SSE.Views.ShapeSettings.strStroke": "Stroke", "SSE.Views.ShapeSettings.strTransparency": "Opacity", + "SSE.Views.ShapeSettings.strType": "Tipe", "SSE.Views.ShapeSettings.textAdvanced": "Show advanced settings", "SSE.Views.ShapeSettings.textBorderSizeErr": "The entered value is incorrect.
Please enter a value between 0 pt and 1584 pt.", "SSE.Views.ShapeSettings.textColor": "Color Fill", @@ -615,6 +1273,7 @@ "SSE.Views.ShapeSettings.textNoFill": "No Fill", "SSE.Views.ShapeSettings.textOriginalSize": "Original Size", "SSE.Views.ShapeSettings.textPatternFill": "Pattern", + "SSE.Views.ShapeSettings.textPosition": "Jabatan", "SSE.Views.ShapeSettings.textRadial": "Radial", "SSE.Views.ShapeSettings.textSelectTexture": "Select", "SSE.Views.ShapeSettings.textStretch": "Stretch", @@ -633,13 +1292,17 @@ "SSE.Views.ShapeSettings.txtNoBorders": "No Line", "SSE.Views.ShapeSettings.txtPapyrus": "Papyrus", "SSE.Views.ShapeSettings.txtWood": "Wood", + "SSE.Views.ShapeSettingsAdvanced.strColumns": "Kolom", "SSE.Views.ShapeSettingsAdvanced.strMargins": "Text Padding", + "SSE.Views.ShapeSettingsAdvanced.textAltDescription": "Deskripsi", + "SSE.Views.ShapeSettingsAdvanced.textAltTitle": "Judul", "SSE.Views.ShapeSettingsAdvanced.textArrows": "Arrows", "SSE.Views.ShapeSettingsAdvanced.textBeginSize": "Begin Size", "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Begin Style", "SSE.Views.ShapeSettingsAdvanced.textBevel": "Bevel", "SSE.Views.ShapeSettingsAdvanced.textBottom": "Bottom", "SSE.Views.ShapeSettingsAdvanced.textCapType": "Cap Type", + "SSE.Views.ShapeSettingsAdvanced.textColNumber": "Jumlah Kolom", "SSE.Views.ShapeSettingsAdvanced.textEndSize": "End Size", "SSE.Views.ShapeSettingsAdvanced.textEndStyle": "End Style", "SSE.Views.ShapeSettingsAdvanced.textFlat": "Flat", @@ -657,6 +1320,51 @@ "SSE.Views.ShapeSettingsAdvanced.textTop": "Top", "SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "Weights & Arrows", "SSE.Views.ShapeSettingsAdvanced.textWidth": "Width", + "SSE.Views.SignatureSettings.notcriticalErrorTitle": "Peringatan", + "SSE.Views.SlicerAddDialog.textColumns": "Kolom", + "SSE.Views.SlicerSettings.textAdvanced": "Tampilkan pengaturan lanjut", + "SSE.Views.SlicerSettings.textButtons": "Tombol", + "SSE.Views.SlicerSettings.textColumns": "Kolom", + "SSE.Views.SlicerSettings.textHeight": "Ketinggian", + "SSE.Views.SlicerSettings.textHor": "Horisontal", + "SSE.Views.SlicerSettings.textKeepRatio": "Proporsi Konstan", + "SSE.Views.SlicerSettings.textPosition": "Jabatan", + "SSE.Views.SlicerSettings.textSize": "Ukuran", + "SSE.Views.SlicerSettings.textStyle": "Model", + "SSE.Views.SlicerSettings.textVert": "Vertikal", + "SSE.Views.SlicerSettings.textWidth": "Lebar", + "SSE.Views.SlicerSettingsAdvanced.strButtons": "Tombol", + "SSE.Views.SlicerSettingsAdvanced.strColumns": "Kolom", + "SSE.Views.SlicerSettingsAdvanced.strHeight": "Ketinggian", + "SSE.Views.SlicerSettingsAdvanced.strSize": "Ukuran", + "SSE.Views.SlicerSettingsAdvanced.strStyle": "Model", + "SSE.Views.SlicerSettingsAdvanced.strWidth": "Lebar", + "SSE.Views.SlicerSettingsAdvanced.textAltDescription": "Deskripsi", + "SSE.Views.SlicerSettingsAdvanced.textAltTitle": "Judul", + "SSE.Views.SlicerSettingsAdvanced.textKeepRatio": "Proporsi Konstan", + "SSE.Views.SlicerSettingsAdvanced.textName": "Nama", + "SSE.Views.SlicerSettingsAdvanced.txtEmpty": "Kolom ini harus diisi", + "SSE.Views.SortDialog.textAuto": "Otomatis", + "SSE.Views.SortDialog.textBelow": "Di bawah", + "SSE.Views.SortDialog.textColumn": "Kolom", + "SSE.Views.SortDialog.textFontColor": "Warna Huruf", + "SSE.Views.SortDialog.textLeft": "Kiri", + "SSE.Views.SortDialog.textNone": "tidak ada", + "SSE.Views.SortDialog.textOptions": "Pilihan", + "SSE.Views.SortDialog.textOrder": "Pesanan", + "SSE.Views.SortDialog.textRight": "Kanan", + "SSE.Views.SortDialog.textRow": "Baris", + "SSE.Views.SortDialog.textSortBy": "Urutkan berdasar", + "SSE.Views.SortDialog.textTop": "Atas", + "SSE.Views.SortOptionsDialog.textCase": "Harus sama persis", + "SSE.Views.SpecialPasteDialog.textAdd": "Tambahkan", + "SSE.Views.SpecialPasteDialog.textAll": "Semua", + "SSE.Views.SpecialPasteDialog.textComments": "Komentar", + "SSE.Views.SpecialPasteDialog.textNone": "tidak ada", + "SSE.Views.SpecialPasteDialog.textPaste": "Tempel", + "SSE.Views.Spellcheck.textChange": "Ganti", + "SSE.Views.Spellcheck.textIgnore": "Abaikan", + "SSE.Views.Spellcheck.textIgnoreAll": "Abaikan Semua", "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Copy to end)", "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Move to end)", "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Copy before sheet", @@ -666,8 +1374,10 @@ "SSE.Views.Statusbar.itemHidden": "Hidden", "SSE.Views.Statusbar.itemHide": "Hide", "SSE.Views.Statusbar.itemInsert": "Insert", + "SSE.Views.Statusbar.itemMaximum": "Maksimal", "SSE.Views.Statusbar.itemMove": "Move", "SSE.Views.Statusbar.itemRename": "Rename", + "SSE.Views.Statusbar.itemSum": "Jumlah", "SSE.Views.Statusbar.itemTabColor": "Tab Color", "SSE.Views.Statusbar.RenameDialog.errNameExists": "Worksheet with such a name already exists.", "SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "A sheet name cannot contain the following characters: \\/*?[]:", @@ -691,6 +1401,27 @@ "SSE.Views.TableOptionsDialog.txtFormat": "Create table", "SSE.Views.TableOptionsDialog.txtInvalidRange": "ERROR! Invalid cells range", "SSE.Views.TableOptionsDialog.txtTitle": "Title", + "SSE.Views.TableSettings.deleteColumnText": "Hapus Kolom", + "SSE.Views.TableSettings.deleteRowText": "Hapus Baris", + "SSE.Views.TableSettings.deleteTableText": "Hapus Tabel", + "SSE.Views.TableSettings.insertColumnLeftText": "Sisipkan Kolom di Kiri", + "SSE.Views.TableSettings.insertColumnRightText": "Sisipkan Kolom di Kanan", + "SSE.Views.TableSettings.insertRowBelowText": "Sisipkan Baris di Bawah", + "SSE.Views.TableSettings.notcriticalErrorTitle": "Peringatan", + "SSE.Views.TableSettings.selectRowText": "Pilih Baris", + "SSE.Views.TableSettings.selectTableText": "Pilih Tabel", + "SSE.Views.TableSettings.textAdvanced": "Tampilkan pengaturan lanjut", + "SSE.Views.TableSettings.textBanded": "Bergaris", + "SSE.Views.TableSettings.textColumns": "Kolom", + "SSE.Views.TableSettings.textEdit": "Baris & Kolom", + "SSE.Views.TableSettings.textEmptyTemplate": "Tidak ada template", + "SSE.Views.TableSettings.textFirst": "pertama", + "SSE.Views.TableSettings.textLast": "terakhir", + "SSE.Views.TableSettings.textRows": "Baris", + "SSE.Views.TableSettings.textTemplate": "Pilih Dari Template", + "SSE.Views.TableSettingsAdvanced.textAltDescription": "Deskripsi", + "SSE.Views.TableSettingsAdvanced.textAltTitle": "Judul", + "SSE.Views.TableSettingsAdvanced.textTitle": "Tabel - Pengaturan Lanjut", "SSE.Views.TextArtSettings.strBackground": "Background color", "SSE.Views.TextArtSettings.strColor": "Color", "SSE.Views.TextArtSettings.strFill": "Fill", @@ -699,6 +1430,7 @@ "SSE.Views.TextArtSettings.strSize": "Size", "SSE.Views.TextArtSettings.strStroke": "Stroke", "SSE.Views.TextArtSettings.strTransparency": "Opacity", + "SSE.Views.TextArtSettings.strType": "Tipe", "SSE.Views.TextArtSettings.textBorderSizeErr": "The entered value is incorrect.
Please enter a value between 0 pt and 1584 pt.", "SSE.Views.TextArtSettings.textColor": "Color Fill", "SSE.Views.TextArtSettings.textDirection": "Direction", @@ -711,6 +1443,7 @@ "SSE.Views.TextArtSettings.textLinear": "Linear", "SSE.Views.TextArtSettings.textNoFill": "No Fill", "SSE.Views.TextArtSettings.textPatternFill": "Pattern", + "SSE.Views.TextArtSettings.textPosition": "Jabatan", "SSE.Views.TextArtSettings.textRadial": "Radial", "SSE.Views.TextArtSettings.textSelectTexture": "Select", "SSE.Views.TextArtSettings.textStretch": "Stretch", @@ -731,6 +1464,17 @@ "SSE.Views.TextArtSettings.txtNoBorders": "No Line", "SSE.Views.TextArtSettings.txtPapyrus": "Papyrus", "SSE.Views.TextArtSettings.txtWood": "Wood", + "SSE.Views.Toolbar.capBtnAddComment": "Tambahkan komentar", + "SSE.Views.Toolbar.capBtnComment": "Komentar", + "SSE.Views.Toolbar.capBtnMargins": "Margin", + "SSE.Views.Toolbar.capBtnPageSize": "Ukuran", + "SSE.Views.Toolbar.capImgAlign": "Ratakan", + "SSE.Views.Toolbar.capImgBackward": "Mundurkan", + "SSE.Views.Toolbar.capImgForward": "Majukan", + "SSE.Views.Toolbar.capImgGroup": "Grup", + "SSE.Views.Toolbar.capInsertChart": "Bagan", + "SSE.Views.Toolbar.capInsertImage": "Gambar", + "SSE.Views.Toolbar.capInsertTable": "Tabel", "SSE.Views.Toolbar.mniImageFromFile": "Picture from File", "SSE.Views.Toolbar.mniImageFromUrl": "Picture from URL", "SSE.Views.Toolbar.textAlignBottom": "Align Bottom", @@ -741,6 +1485,8 @@ "SSE.Views.Toolbar.textAlignRight": "Align Right", "SSE.Views.Toolbar.textAlignTop": "Align Top", "SSE.Views.Toolbar.textAllBorders": "All Borders", + "SSE.Views.Toolbar.textAuto": "Otomatis", + "SSE.Views.Toolbar.textAutoColor": "Otomatis", "SSE.Views.Toolbar.textBold": "Bold", "SSE.Views.Toolbar.textBordersColor": "Border Color", "SSE.Views.Toolbar.textBottomBorders": "Bottom Borders", @@ -753,23 +1499,37 @@ "SSE.Views.Toolbar.textDiagUpBorder": "Diagonal Up Border", "SSE.Views.Toolbar.textEntireCol": "Entire Column", "SSE.Views.Toolbar.textEntireRow": "Entire Row", + "SSE.Views.Toolbar.textFewPages": "Halaman", + "SSE.Views.Toolbar.textHeight": "Ketinggian", "SSE.Views.Toolbar.textHorizontal": "Horizontal Text", "SSE.Views.Toolbar.textInsDown": "Shift Cells Down", "SSE.Views.Toolbar.textInsideBorders": "Inside Borders", "SSE.Views.Toolbar.textInsRight": "Shift Cells Right", "SSE.Views.Toolbar.textItalic": "Italic", "SSE.Views.Toolbar.textLeftBorders": "Left Borders", + "SSE.Views.Toolbar.textManyPages": "Halaman", "SSE.Views.Toolbar.textMiddleBorders": "Inside Horizontal Borders", "SSE.Views.Toolbar.textNewColor": "Add New Custom Color", "SSE.Views.Toolbar.textNoBorders": "No Borders", + "SSE.Views.Toolbar.textOnePage": "Halaman", "SSE.Views.Toolbar.textOutBorders": "Outside Borders", "SSE.Views.Toolbar.textPrint": "Print", "SSE.Views.Toolbar.textPrintOptions": "Print Settings", "SSE.Views.Toolbar.textRightBorders": "Right Borders", "SSE.Views.Toolbar.textRotateDown": "Rotate Text Down", "SSE.Views.Toolbar.textRotateUp": "Rotate Text Up", + "SSE.Views.Toolbar.textScaleCustom": "Khusus", + "SSE.Views.Toolbar.textStrikeout": "Coret ganda", + "SSE.Views.Toolbar.textSubscript": "Subskrip", + "SSE.Views.Toolbar.textSuperscript": "Superskrip", + "SSE.Views.Toolbar.textTabData": "Data", + "SSE.Views.Toolbar.textTabFile": "File", + "SSE.Views.Toolbar.textTabHome": "Halaman Depan", + "SSE.Views.Toolbar.textTabInsert": "Sisipkan", + "SSE.Views.Toolbar.textTabView": "Lihat", "SSE.Views.Toolbar.textTopBorders": "Top Borders", "SSE.Views.Toolbar.textUnderline": "Underline", + "SSE.Views.Toolbar.textWidth": "Lebar", "SSE.Views.Toolbar.textZoom": "Zoom", "SSE.Views.Toolbar.tipAlignBottom": "Align Bottom", "SSE.Views.Toolbar.tipAlignCenter": "Align Center", @@ -782,6 +1542,7 @@ "SSE.Views.Toolbar.tipBack": "Back", "SSE.Views.Toolbar.tipBorders": "Borders", "SSE.Views.Toolbar.tipCellStyle": "Cell Style", + "SSE.Views.Toolbar.tipChangeChart": "Ubah Tipe Bagan", "SSE.Views.Toolbar.tipClearStyle": "Clear", "SSE.Views.Toolbar.tipColorSchemas": "Change Color Scheme", "SSE.Views.Toolbar.tipCopy": "Copy", @@ -793,25 +1554,34 @@ "SSE.Views.Toolbar.tipDigStyleCurrency": "Currency Style", "SSE.Views.Toolbar.tipDigStylePercent": "Percent Style", "SSE.Views.Toolbar.tipEditChart": "Edit Chart", + "SSE.Views.Toolbar.tipEditChartType": "Ubah Tipe Bagan", "SSE.Views.Toolbar.tipFontColor": "Font Color", "SSE.Views.Toolbar.tipFontName": "Font Name", "SSE.Views.Toolbar.tipFontSize": "Font Size", "SSE.Views.Toolbar.tipIncDecimal": "Increase Decimal", "SSE.Views.Toolbar.tipIncFont": "Increment font size", "SSE.Views.Toolbar.tipInsertChart": "Insert Chart", + "SSE.Views.Toolbar.tipInsertChartSpark": "Sisipkan Bagan", + "SSE.Views.Toolbar.tipInsertEquation": "Masukkan Persamaan", "SSE.Views.Toolbar.tipInsertHyperlink": "Add Hyperlink", "SSE.Views.Toolbar.tipInsertImage": "Insert Picture", "SSE.Views.Toolbar.tipInsertOpt": "Insert Cells", "SSE.Views.Toolbar.tipInsertShape": "Insert Autoshape", + "SSE.Views.Toolbar.tipInsertTable": "Sisipkan Tabel", "SSE.Views.Toolbar.tipInsertText": "Insert Text", "SSE.Views.Toolbar.tipMerge": "Merge", + "SSE.Views.Toolbar.tipNone": "tidak ada", "SSE.Views.Toolbar.tipNumFormat": "Number Format", + "SSE.Views.Toolbar.tipPageOrient": "Orientasi Halaman", + "SSE.Views.Toolbar.tipPageSize": "Ukuran Halaman", "SSE.Views.Toolbar.tipPaste": "Paste", "SSE.Views.Toolbar.tipPrColor": "Background Color", "SSE.Views.Toolbar.tipPrint": "Print", "SSE.Views.Toolbar.tipRedo": "Redo", "SSE.Views.Toolbar.tipSave": "Save", "SSE.Views.Toolbar.tipSaveCoauth": "Save your changes for the other users to see them.", + "SSE.Views.Toolbar.tipSendBackward": "Mundurkan", + "SSE.Views.Toolbar.tipSendForward": "Majukan", "SSE.Views.Toolbar.tipSynchronize": "The document has been changed by another user. Please click to save your changes and reload the updates.", "SSE.Views.Toolbar.tipTextOrientation": "Orientation", "SSE.Views.Toolbar.tipUndo": "Undo", @@ -883,5 +1653,24 @@ "SSE.Views.Toolbar.txtText": "Text", "SSE.Views.Toolbar.txtTime": "Time", "SSE.Views.Toolbar.txtUnmerge": "Unmerge Cells", - "SSE.Views.Toolbar.txtYen": "¥ Yen" + "SSE.Views.Toolbar.txtYen": "¥ Yen", + "SSE.Views.Top10FilterDialog.textType": "Tampilkan", + "SSE.Views.Top10FilterDialog.txtBottom": "Bawah", + "SSE.Views.Top10FilterDialog.txtBy": "oleh", + "SSE.Views.Top10FilterDialog.txtSum": "Jumlah", + "SSE.Views.Top10FilterDialog.txtTop": "Atas", + "SSE.Views.ValueFieldSettingsDialog.txtIndex": "Indeks", + "SSE.Views.ValueFieldSettingsDialog.txtProduct": "Produk", + "SSE.Views.ValueFieldSettingsDialog.txtSum": "Jumlah", + "SSE.Views.ViewManagerDlg.closeButtonText": "Tutup", + "SSE.Views.ViewManagerDlg.guestText": "Tamu", + "SSE.Views.ViewManagerDlg.lockText": "Dikunci", + "SSE.Views.ViewManagerDlg.textDelete": "Hapus", + "SSE.Views.ViewManagerDlg.textDuplicate": "Duplikat", + "SSE.Views.ViewManagerDlg.textNew": "baru", + "SSE.Views.ViewManagerDlg.textRename": "Ganti nama", + "SSE.Views.ViewTab.textClose": "Tutup", + "SSE.Views.ViewTab.textCreate": "baru", + "SSE.Views.ViewTab.textDefault": "standar", + "SSE.Views.ViewTab.textZoom": "Pembesaran" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/pt.json b/apps/spreadsheeteditor/main/locale/pt.json index f25c2e248..7d75b0e41 100644 --- a/apps/spreadsheeteditor/main/locale/pt.json +++ b/apps/spreadsheeteditor/main/locale/pt.json @@ -310,7 +310,7 @@ "Common.Views.ReviewChanges.strFast": "Rápido", "Common.Views.ReviewChanges.strFastDesc": "Coedição em tempo real. Todas as alterações são salvas automaticamente.", "Common.Views.ReviewChanges.strStrict": "Estrito", - "Common.Views.ReviewChanges.strStrictDesc": "Use o botão 'Salvar' para sincronizar as alterações que você e outras pessoas fazem.", + "Common.Views.ReviewChanges.strStrictDesc": "Use o botão 'Salvar' para sincronizar as alterações que você e outras pessoas fazeram.", "Common.Views.ReviewChanges.tipAcceptCurrent": "Aceitar alteração atual", "Common.Views.ReviewChanges.tipCoAuthMode": "Definir o modo de co-edição", "Common.Views.ReviewChanges.tipCommentRem": "Remover comentários", @@ -344,7 +344,7 @@ "Common.Views.ReviewChanges.txtDocLang": "Idioma", "Common.Views.ReviewChanges.txtFinal": "Todas as alterações aceitas (Visualização)", "Common.Views.ReviewChanges.txtFinalCap": "Final", - "Common.Views.ReviewChanges.txtHistory": "Histórico de Versões", + "Common.Views.ReviewChanges.txtHistory": "Histórico da Versões", "Common.Views.ReviewChanges.txtMarkup": "Todas as alterações (Edição)", "Common.Views.ReviewChanges.txtMarkupCap": "Marcação", "Common.Views.ReviewChanges.txtNext": "Próximo", @@ -569,7 +569,7 @@ "SSE.Controllers.DocumentHolder.txtPasteSourceFormat": "Formatação da fonte", "SSE.Controllers.DocumentHolder.txtPasteTranspose": "Transpor", "SSE.Controllers.DocumentHolder.txtPasteValFormat": "Valor + toda formatação", - "SSE.Controllers.DocumentHolder.txtPasteValNumFormat": "Valor + formato de número", + "SSE.Controllers.DocumentHolder.txtPasteValNumFormat": "Valor + formato do número", "SSE.Controllers.DocumentHolder.txtPasteValues": "Colar apenas valor", "SSE.Controllers.DocumentHolder.txtPercent": "por cento", "SSE.Controllers.DocumentHolder.txtRedoExpansion": "Refazer tabela de expansão automática", @@ -686,7 +686,7 @@ "SSE.Controllers.Main.errorFTChangeTableRangeError": "Não foi possível concluir a operação para o intervalo de células selecionado.
Selecione um intervalo para que a primeira linha da tabela fique na mesma linha
e a tabela resultante se sobreponha à atual.", "SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "Não foi possível concluir a operação para o intervalo de células selecionado.
Selecione um intervalo que não inclua outras tabelas.", "SSE.Controllers.Main.errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", - "SSE.Controllers.Main.errorKeyEncrypt": "Descritor de chave desconhecido", + "SSE.Controllers.Main.errorKeyEncrypt": "Descrição de chave desconhecida", "SSE.Controllers.Main.errorKeyExpire": "Descritor de chave expirado", "SSE.Controllers.Main.errorLabledColumnsPivot": "Para criar uma tabela dinâmica, você deve usar os dados organizados como uma lista com colunas rotuladas.", "SSE.Controllers.Main.errorLoadingFont": "As fontes não foram carregadas.
Entre em contato com o administrador do Document Server.", @@ -949,7 +949,7 @@ "SSE.Controllers.Main.txtShape_mathNotEqual": "Não igual", "SSE.Controllers.Main.txtShape_mathPlus": "Mais", "SSE.Controllers.Main.txtShape_moon": "Lua", - "SSE.Controllers.Main.txtShape_noSmoking": "Entrada Proibida", + "SSE.Controllers.Main.txtShape_noSmoking": "Símbolo \"Não\"", "SSE.Controllers.Main.txtShape_notchedRightArrow": "Seta direita entalhada", "SSE.Controllers.Main.txtShape_octagon": "Octógono", "SSE.Controllers.Main.txtShape_parallelogram": "Paralelogramo", @@ -1408,7 +1408,7 @@ "SSE.Controllers.Toolbar.txtSymbol_psi": "Psi", "SSE.Controllers.Toolbar.txtSymbol_qdrt": "Raiz quadrada", "SSE.Controllers.Toolbar.txtSymbol_qed": "Fim da prova", - "SSE.Controllers.Toolbar.txtSymbol_rddots": "Reticências diagonal direitas para cima", + "SSE.Controllers.Toolbar.txtSymbol_rddots": "Reticências diagonal direita para cima", "SSE.Controllers.Toolbar.txtSymbol_rho": "Rô", "SSE.Controllers.Toolbar.txtSymbol_rightarrow": "Seta para direita", "SSE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", @@ -1682,7 +1682,7 @@ "SSE.Views.ChartSettingsDlg.textOut": "Fora", "SSE.Views.ChartSettingsDlg.textOuterTop": "Fora do topo", "SSE.Views.ChartSettingsDlg.textOverlay": "Sobreposição", - "SSE.Views.ChartSettingsDlg.textReverse": "Valores na ordem reversa", + "SSE.Views.ChartSettingsDlg.textReverse": "Valores em ordem reversa", "SSE.Views.ChartSettingsDlg.textReverseOrder": "Ordem reversa", "SSE.Views.ChartSettingsDlg.textRight": "Direita", "SSE.Views.ChartSettingsDlg.textRightOverlay": "Sobreposição direita", @@ -2021,7 +2021,7 @@ "SSE.Views.FileMenu.btnExitCaption": "Sair", "SSE.Views.FileMenu.btnFileOpenCaption": "Abrir...", "SSE.Views.FileMenu.btnHelpCaption": "Ajuda...", - "SSE.Views.FileMenu.btnHistoryCaption": "Histórico de versão", + "SSE.Views.FileMenu.btnHistoryCaption": "Histórico da versão", "SSE.Views.FileMenu.btnInfoCaption": "Informações da planilha", "SSE.Views.FileMenu.btnPrintCaption": "Imprimir", "SSE.Views.FileMenu.btnProtectCaption": "Proteger", @@ -2079,7 +2079,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Tema de interface", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "separador de milhares", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Unidade de medida", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings": "Use separadores com base nas configurações regionais", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings": "Usar separadores com base nas configurações regionais", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "Valor de zoom padrão", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes": "A cada 10 minutos", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text30Minutes": "A cada 30 minutos", @@ -2305,7 +2305,7 @@ "SSE.Views.FormatSettingsDialog.textDecimal": "Decimal", "SSE.Views.FormatSettingsDialog.textFormat": "Formato", "SSE.Views.FormatSettingsDialog.textLinked": "Ligado à fonte", - "SSE.Views.FormatSettingsDialog.textSeparator": "Use separador 1.000", + "SSE.Views.FormatSettingsDialog.textSeparator": "Usar separador 1.000", "SSE.Views.FormatSettingsDialog.textSymbols": "Símbolos", "SSE.Views.FormatSettingsDialog.textTitle": "Formato de número", "SSE.Views.FormatSettingsDialog.txtAccounting": "Contabilidade", @@ -2602,7 +2602,7 @@ "SSE.Views.PivotDigitalFilterDialog.capCondition9": "Termina com", "SSE.Views.PivotDigitalFilterDialog.textShowLabel": "Mostrar itens para os quais o rótulo:", "SSE.Views.PivotDigitalFilterDialog.textShowValue": "Mostrar itens para os quais:", - "SSE.Views.PivotDigitalFilterDialog.textUse1": "Usar ? apresentar qualquer um caracter", + "SSE.Views.PivotDigitalFilterDialog.textUse1": "Usar ? apresentar qualquer um caractere", "SSE.Views.PivotDigitalFilterDialog.textUse2": "Use * para apresentar qualquer série de caracteres", "SSE.Views.PivotDigitalFilterDialog.txtAnd": "E", "SSE.Views.PivotDigitalFilterDialog.txtTitleLabel": "Filtro de rótulos", @@ -2803,7 +2803,7 @@ "SSE.Views.ProtectDialog.txtObjs": "Editar objetos", "SSE.Views.ProtectDialog.txtOptional": "Opcional", "SSE.Views.ProtectDialog.txtPassword": "Senha", - "SSE.Views.ProtectDialog.txtPivot": "Use Tabela Dinâmica e Gráfico Dinâmico", + "SSE.Views.ProtectDialog.txtPivot": "Usar Tabela Dinâmica e Gráfico Dinâmico", "SSE.Views.ProtectDialog.txtProtect": "Proteger", "SSE.Views.ProtectDialog.txtRange": "Intervalo", "SSE.Views.ProtectDialog.txtRangeName": "Título", @@ -2984,7 +2984,7 @@ "SSE.Views.SlicerAddDialog.textColumns": "Colunas", "SSE.Views.SlicerAddDialog.txtTitle": "Inserir Segmentação de Dados", "SSE.Views.SlicerSettings.strHideNoData": "Ocultar itens sem dados", - "SSE.Views.SlicerSettings.strIndNoData": "Indique visualmente itens sem dados", + "SSE.Views.SlicerSettings.strIndNoData": "Itens indicados visualmente sem dados", "SSE.Views.SlicerSettings.strShowDel": "Mostrar itens excluídos da fonte de dados", "SSE.Views.SlicerSettings.strShowNoData": "Mostrar itens sem dados por último", "SSE.Views.SlicerSettings.strSorting": "Classificação e filtragem", @@ -3012,7 +3012,7 @@ "SSE.Views.SlicerSettingsAdvanced.strColumns": "Colunas", "SSE.Views.SlicerSettingsAdvanced.strHeight": "Altura", "SSE.Views.SlicerSettingsAdvanced.strHideNoData": "Ocultar itens sem dados", - "SSE.Views.SlicerSettingsAdvanced.strIndNoData": "Indique visualmente itens sem dados", + "SSE.Views.SlicerSettingsAdvanced.strIndNoData": "Itens indicados visualmente sem dados", "SSE.Views.SlicerSettingsAdvanced.strReferences": "Referências", "SSE.Views.SlicerSettingsAdvanced.strShowDel": "Mostrar itens excluídos da fonte de dados", "SSE.Views.SlicerSettingsAdvanced.strShowHeader": "Cabeçalho de exibição", @@ -3123,8 +3123,8 @@ "SSE.Views.Spellcheck.txtDictionaryLanguage": "Idioma do dicionário", "SSE.Views.Spellcheck.txtNextTip": "Vá para a próxima palavra", "SSE.Views.Spellcheck.txtSpelling": "Ortografia", - "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Copiar para fim)", - "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Mover para fim)", + "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Copiar para o final)", + "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Mover para o final)", "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Copiar antes da folha", "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Mover antes da folha", "SSE.Views.Statusbar.filteredRecordsText": "{0} de {1} registros filtrados", @@ -3526,7 +3526,7 @@ "SSE.Views.Toolbar.txtTableTemplate": "Formato como Modelo de tabela", "SSE.Views.Toolbar.txtText": "Texto", "SSE.Views.Toolbar.txtTime": "Hora", - "SSE.Views.Toolbar.txtUnmerge": "Desfaz a mesclagem de células", + "SSE.Views.Toolbar.txtUnmerge": "Desfazer a mesclagem de células", "SSE.Views.Toolbar.txtYen": "¥ Yen", "SSE.Views.Top10FilterDialog.textType": "Exibir", "SSE.Views.Top10FilterDialog.txtBottom": "Inferior", @@ -3575,7 +3575,7 @@ "SSE.Views.ViewManagerDlg.textLongName": "Digite um nome que tenha menos de 128 caracteres.", "SSE.Views.ViewManagerDlg.textNew": "Novo", "SSE.Views.ViewManagerDlg.textRename": "Renomear", - "SSE.Views.ViewManagerDlg.textRenameError": "O nome da vista não deve estar vazio.", + "SSE.Views.ViewManagerDlg.textRenameError": "O nome não deve estar vazio.", "SSE.Views.ViewManagerDlg.textRenameLabel": "Renomear vista", "SSE.Views.ViewManagerDlg.textViews": "Vistas de folha", "SSE.Views.ViewManagerDlg.tipIsLocked": "Este elemento está sendo editado por outro usuário.", From d2838046756748b8fc4626fbdb81a453ab3d1d32 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 25 Feb 2022 21:55:27 +0300 Subject: [PATCH 201/217] [Mobile] Update translation --- apps/presentationeditor/mobile/locale/en.json | 1 + apps/spreadsheeteditor/mobile/locale/ca.json | 8 +++----- apps/spreadsheeteditor/mobile/locale/cs.json | 8 +++----- apps/spreadsheeteditor/mobile/locale/de.json | 2 -- apps/spreadsheeteditor/mobile/locale/el.json | 2 -- apps/spreadsheeteditor/mobile/locale/es.json | 2 -- apps/spreadsheeteditor/mobile/locale/fr.json | 2 -- apps/spreadsheeteditor/mobile/locale/gl.json | 2 -- apps/spreadsheeteditor/mobile/locale/hu.json | 2 -- apps/spreadsheeteditor/mobile/locale/it.json | 2 -- apps/spreadsheeteditor/mobile/locale/ja.json | 2 -- apps/spreadsheeteditor/mobile/locale/pt.json | 2 -- apps/spreadsheeteditor/mobile/locale/ro.json | 2 -- apps/spreadsheeteditor/mobile/locale/ru.json | 2 -- apps/spreadsheeteditor/mobile/locale/tr.json | 2 -- apps/spreadsheeteditor/mobile/locale/zh.json | 8 +++----- 16 files changed, 10 insertions(+), 39 deletions(-) diff --git a/apps/presentationeditor/mobile/locale/en.json b/apps/presentationeditor/mobile/locale/en.json index 90941fd52..9de378630 100644 --- a/apps/presentationeditor/mobile/locale/en.json +++ b/apps/presentationeditor/mobile/locale/en.json @@ -382,6 +382,7 @@ "textTopLeft": "Top-Left", "textTopRight": "Top-Right", "textTotalRow": "Total Row", + "del_textTransition": "Transition", "textTransitions": "Transitions", "textType": "Type", "textUnCover": "UnCover", diff --git a/apps/spreadsheeteditor/mobile/locale/ca.json b/apps/spreadsheeteditor/mobile/locale/ca.json index 640adbb16..5b8b771bc 100644 --- a/apps/spreadsheeteditor/mobile/locale/ca.json +++ b/apps/spreadsheeteditor/mobile/locale/ca.json @@ -291,17 +291,15 @@ "textHide": "Amaga", "textMore": "Més", "textMove": "Desplaça", - "textMoveBack": "Ves endarrere", - "textMoveForward": "Ves endavant", + "textMoveBefore": "Desplaceu abans del full", + "textMoveToEnd": "Aneu al final", "textOk": "D'acord", "textRename": "Canvia el nom", "textRenameSheet": "Canvia el nom del full", "textSheet": "Full", "textSheetName": "Nom del full", "textUnhide": "Mostrar", - "textWarnDeleteSheet": "El full de càlcul pot tenir dades. Vols continuar amb l'operació?", - "textMoveBefore": "Move before sheet", - "textMoveToEnd": "(Move to end)" + "textWarnDeleteSheet": "El full de càlcul pot tenir dades. Vols continuar amb l'operació?" }, "Toolbar": { "dlgLeaveMsgText": "Tens canvis no desats en aquest document. Fes clic a \"Queda't en aquesta pàgina\" per esperar al desament automàtic. Fes 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 e68d6d3c1..84cdf1fea 100644 --- a/apps/spreadsheeteditor/mobile/locale/cs.json +++ b/apps/spreadsheeteditor/mobile/locale/cs.json @@ -291,17 +291,15 @@ "textHide": "Skrýt", "textMore": "Více", "textMove": "Přesunout", - "textMoveBack": "Posunout zpět", - "textMoveForward": "Posunout vpřed", + "textMoveBefore": "Přesunout před list", + "textMoveToEnd": "(Přesunout na konec)", "textOk": "OK", "textRename": "Přejmenovat", "textRenameSheet": "Přejmenovat list", "textSheet": "List", "textSheetName": "Název listu", "textUnhide": "Odkrýt", - "textWarnDeleteSheet": "List může obsahovat data. Pokračovat v operaci? ", - "textMoveBefore": "Move before sheet", - "textMoveToEnd": "(Move to end)" + "textWarnDeleteSheet": "List může obsahovat data. Pokračovat v operaci? " }, "Toolbar": { "dlgLeaveMsgText": "V tomto dokumentu máte neuložené změny. Klikněte na 'Zůstat na této stránce' a počkejte dokud nedojde k automatickému uložení. Klikněte na 'Opustit tuto stránku' pro zahození neuložených změn.", diff --git a/apps/spreadsheeteditor/mobile/locale/de.json b/apps/spreadsheeteditor/mobile/locale/de.json index 361281e27..f11a5a938 100644 --- a/apps/spreadsheeteditor/mobile/locale/de.json +++ b/apps/spreadsheeteditor/mobile/locale/de.json @@ -290,8 +290,6 @@ "textHide": "Ausblenden", "textMore": "Mehr", "textMove": "Verschieben", - "textMoveBack": "Zurück", - "textMoveForward": "Vorwärts", "textOk": "OK", "textRename": "Umbenennen", "textRenameSheet": "Tabelle umbenennen", diff --git a/apps/spreadsheeteditor/mobile/locale/el.json b/apps/spreadsheeteditor/mobile/locale/el.json index 182a36481..b60a43b57 100644 --- a/apps/spreadsheeteditor/mobile/locale/el.json +++ b/apps/spreadsheeteditor/mobile/locale/el.json @@ -291,8 +291,6 @@ "textHide": "Απόκρυψη", "textMore": "Περισσότερα", "textMove": "Μετακίνηση", - "textMoveBack": "Μετακίνηση πίσω", - "textMoveForward": "Μετακίνηση εμπρός", "textOk": "Εντάξει", "textRename": "Μετονομασία", "textRenameSheet": "Μετονομασία Φύλλου", diff --git a/apps/spreadsheeteditor/mobile/locale/es.json b/apps/spreadsheeteditor/mobile/locale/es.json index 33c91d59a..5ed3367de 100644 --- a/apps/spreadsheeteditor/mobile/locale/es.json +++ b/apps/spreadsheeteditor/mobile/locale/es.json @@ -291,8 +291,6 @@ "textHide": "Ocultar", "textMore": "Más", "textMove": "Mover", - "textMoveBack": "Retroceder", - "textMoveForward": "Avanzar", "textOk": "OK", "textRename": "Renombrar", "textRenameSheet": "Renombrar hoja", diff --git a/apps/spreadsheeteditor/mobile/locale/fr.json b/apps/spreadsheeteditor/mobile/locale/fr.json index 7da3e4ec9..c5a860d04 100644 --- a/apps/spreadsheeteditor/mobile/locale/fr.json +++ b/apps/spreadsheeteditor/mobile/locale/fr.json @@ -291,9 +291,7 @@ "textHide": "Masquer", "textMore": "Plus", "textMove": "Déplacer", - "textMoveBack": "Déplacer vers l’arrière", "textMoveBefore": "Déplacer avant la feuille", - "textMoveForward": "Déplacer vers l'avant", "textMoveToEnd": "(Déplacer à la fin)", "textOk": "OK", "textRename": "Renommer", diff --git a/apps/spreadsheeteditor/mobile/locale/gl.json b/apps/spreadsheeteditor/mobile/locale/gl.json index 3a6570a05..05818029d 100644 --- a/apps/spreadsheeteditor/mobile/locale/gl.json +++ b/apps/spreadsheeteditor/mobile/locale/gl.json @@ -291,8 +291,6 @@ "textHide": "Agochar", "textMore": "Máis", "textMove": "Mover", - "textMoveBack": "Volver", - "textMoveForward": "Mover á fronte", "textOk": "Aceptar", "textRename": "Renomear", "textRenameSheet": "Renomear folla", diff --git a/apps/spreadsheeteditor/mobile/locale/hu.json b/apps/spreadsheeteditor/mobile/locale/hu.json index cb0bea492..e8f9aea49 100644 --- a/apps/spreadsheeteditor/mobile/locale/hu.json +++ b/apps/spreadsheeteditor/mobile/locale/hu.json @@ -290,8 +290,6 @@ "textHide": "Elrejt", "textMore": "Több", "textMove": "Áthelyezés", - "textMoveBack": "Mozgatás hátra", - "textMoveForward": "Előre mozgat", "textOk": "OK", "textRename": "Átnevezés", "textRenameSheet": "Munkalap átnevezése", diff --git a/apps/spreadsheeteditor/mobile/locale/it.json b/apps/spreadsheeteditor/mobile/locale/it.json index e21ee6063..1821935e5 100644 --- a/apps/spreadsheeteditor/mobile/locale/it.json +++ b/apps/spreadsheeteditor/mobile/locale/it.json @@ -291,8 +291,6 @@ "textHide": "Nascondere", "textMore": "Di più", "textMove": "Sposta", - "textMoveBack": "Sposta indietro", - "textMoveForward": "Sposta avanti", "textOk": "OK", "textRename": "Rinominare", "textRenameSheet": "Rinominare foglio", diff --git a/apps/spreadsheeteditor/mobile/locale/ja.json b/apps/spreadsheeteditor/mobile/locale/ja.json index 1e03929fc..a7d738867 100644 --- a/apps/spreadsheeteditor/mobile/locale/ja.json +++ b/apps/spreadsheeteditor/mobile/locale/ja.json @@ -291,8 +291,6 @@ "textHide": "隠す", "textMore": "もっと", "textMove": "移動", - "textMoveBack": "後面に移動", - "textMoveForward": "前面に移動", "textOk": "OK", "textRename": "名前の変更", "textRenameSheet": "このシートの名前を変更する", diff --git a/apps/spreadsheeteditor/mobile/locale/pt.json b/apps/spreadsheeteditor/mobile/locale/pt.json index 8ba51641a..62822a8e4 100644 --- a/apps/spreadsheeteditor/mobile/locale/pt.json +++ b/apps/spreadsheeteditor/mobile/locale/pt.json @@ -291,8 +291,6 @@ "textHide": "Ocultar", "textMore": "Mais", "textMove": "Mover", - "textMoveBack": "Voltar", - "textMoveForward": "Mover para frente", "textOk": "OK", "textRename": "Renomear", "textRenameSheet": "Renomear Folha", diff --git a/apps/spreadsheeteditor/mobile/locale/ro.json b/apps/spreadsheeteditor/mobile/locale/ro.json index 46fe48da3..8c488620b 100644 --- a/apps/spreadsheeteditor/mobile/locale/ro.json +++ b/apps/spreadsheeteditor/mobile/locale/ro.json @@ -291,9 +291,7 @@ "textHide": "Ascunde", "textMore": "Mai multe", "textMove": "Mutare", - "textMoveBack": "Mutare înapoi", "textMoveBefore": "Mutare înaintea foii", - "textMoveForward": "Mutare înainte", "textMoveToEnd": "(Mutare la sfârșit)", "textOk": "OK", "textRename": "Redenumire", diff --git a/apps/spreadsheeteditor/mobile/locale/ru.json b/apps/spreadsheeteditor/mobile/locale/ru.json index bb7974196..c49d387f6 100644 --- a/apps/spreadsheeteditor/mobile/locale/ru.json +++ b/apps/spreadsheeteditor/mobile/locale/ru.json @@ -291,9 +291,7 @@ "textHide": "Скрыть", "textMore": "Ещё", "textMove": "Переместить", - "textMoveBack": "Переместить назад", "textMoveBefore": "Переместить перед листом", - "textMoveForward": "Переместить вперед", "textMoveToEnd": "(Переместить в конец)", "textOk": "Ok", "textRename": "Переименовать", diff --git a/apps/spreadsheeteditor/mobile/locale/tr.json b/apps/spreadsheeteditor/mobile/locale/tr.json index 377bb3dfe..26522f148 100644 --- a/apps/spreadsheeteditor/mobile/locale/tr.json +++ b/apps/spreadsheeteditor/mobile/locale/tr.json @@ -290,8 +290,6 @@ "textHide": "Gizle", "textMore": "Daha fazla", "textMove": "Taşı", - "textMoveBack": "Geriye taşı", - "textMoveForward": "İleri Taşı", "textOk": "Tamam", "textRename": "Yeniden adlandır", "textRenameSheet": "Sayfayı Yeniden Adlandır", diff --git a/apps/spreadsheeteditor/mobile/locale/zh.json b/apps/spreadsheeteditor/mobile/locale/zh.json index fa6519a34..aaa1d618d 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh.json +++ b/apps/spreadsheeteditor/mobile/locale/zh.json @@ -291,17 +291,15 @@ "textHide": "隐藏", "textMore": "更多", "textMove": "移动", - "textMoveBack": "后移", - "textMoveForward": "前移", + "textMoveBefore": "在工作表之前移动", + "textMoveToEnd": "(移动到末尾)", "textOk": "OK", "textRename": "重命名", "textRenameSheet": "重命名工作表", "textSheet": "表格", "textSheetName": "工作表名称", "textUnhide": "取消隐藏", - "textWarnDeleteSheet": "该工作表可能带有数据。要进行操作吗?", - "textMoveBefore": "Move before sheet", - "textMoveToEnd": "(Move to end)" + "textWarnDeleteSheet": "该工作表可能带有数据。要进行操作吗?" }, "Toolbar": { "dlgLeaveMsgText": "你在该文档中有未保存的修改。点击“留在该页”来等待自动保存。点击“离开该页”将舍弃全部未保存的更改。", From ce2a9557d1a918e4f14ebf494b5c063b1fc61b55 Mon Sep 17 00:00:00 2001 From: OVSharova Date: Mon, 28 Feb 2022 11:56:31 +0300 Subject: [PATCH 202/217] gradient for text --- .../main/app/view/TextArtSettings.js | 82 +++++++++++++------ .../main/app/view/TextArtSettings.js | 78 +++++++++++++----- .../main/app/view/TextArtSettings.js | 79 +++++++++++++----- 3 files changed, 172 insertions(+), 67 deletions(-) diff --git a/apps/documenteditor/main/app/view/TextArtSettings.js b/apps/documenteditor/main/app/view/TextArtSettings.js index 5f8128e0a..a6a66bea6 100644 --- a/apps/documenteditor/main/app/view/TextArtSettings.js +++ b/apps/documenteditor/main/app/view/TextArtSettings.js @@ -108,6 +108,8 @@ define([ this.BorderSize = 0; this.BorderType = Asc.c_oDashType.solid; + this.gradientColorsStr="#000, #fff"; + this.typeGradient = 90 ; DE.getCollection('Common.Collections.TextArt').bind({ reset: this.fillTextArt.bind(this) }); @@ -278,10 +280,9 @@ define([ this.mnuDirectionPicker.restoreHeight = 174; var record = this.mnuDirectionPicker.store.findWhere({type: this.GradLinearDirectionType}); this.mnuDirectionPicker.selectRecord(record, true); - if (record) - this.btnDirection.setIconCls('item-gradient ' + record.get('iconcls')); - else - this.btnDirection.setIconCls(''); + + this.typeGradient = (record) ? this.GradLinearDirectionType + 90 : -1; + this.numGradientAngle.setValue(this.GradLinearDirectionType, true); this.numGradientAngle.setDisabled(this._locked); } else if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_PATH) { @@ -290,9 +291,9 @@ define([ this.mnuDirectionPicker.restoreHeight = 58; this.mnuDirectionPicker.selectByIndex(this.GradRadialDirectionIdx, true); if (this.GradRadialDirectionIdx>=0) - this.btnDirection.setIconCls('item-gradient ' + this._viewDataRadial[this.GradRadialDirectionIdx].iconcls); + this.typeGradient = this._viewDataRadial[this.GradRadialDirectionIdx].type; else - this.btnDirection.setIconCls(''); + this.typeGradient= -1; this.numGradientAngle.setValue(0, true); this.numGradientAngle.setDisabled(true); } @@ -332,8 +333,14 @@ define([ rawData = record; } - this.btnDirection.setIconCls('item-gradient ' + rawData.iconcls); - (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) ? this.GradLinearDirectionType = rawData.type : this.GradRadialDirectionIdx = 0; + //this.btnDirection.setIconCls('item-gradient ' + rawData.iconcls); + if (this.GradFillType === Asc.c_oAscFillGradType.GRAD_LINEAR) { + this.GradLinearDirectionType = rawData.type; + this.typeGradient = rawData.type + 90; + } else { + this.GradRadialDirectionIdx = 0; + this.typeGradient = rawData.type; + } if (this.api) { if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) { this.numGradientAngle.setValue(rawData.type, true); @@ -612,7 +619,7 @@ define([ this.onGradTypeSelect(this.cmbGradType, rec.attributes); } else { this.cmbGradType.setValue(''); - this.btnDirection.setIconCls(''); + this.typeGradient = -1; } this._state.GradFillType = this.GradFillType; } @@ -623,10 +630,7 @@ define([ this.GradLinearDirectionType=value; var record = this.mnuDirectionPicker.store.findWhere({type: value}); this.mnuDirectionPicker.selectRecord(record, true); - if (record) - this.btnDirection.setIconCls('item-gradient ' + record.get('iconcls')); - else - this.btnDirection.setIconCls(''); + this.typeGradient = (record)? value + 90 : -1; this.numGradientAngle.setValue(value, true); } } else @@ -659,10 +663,17 @@ define([ me.GradColor.values[index] = position; } }); + + var arrGrCollors=[]; + var scale=(this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR)?1:0.7; for (var index=0; index= this.GradColor.colors.length) { me.GradColor.currentIdx = 0; } @@ -830,6 +841,26 @@ define([ } }, + btnDirectionRedraw: function(slider, gradientColorsStr) { + this.gradientColorsStr = gradientColorsStr; + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = gradientColorsStr; + }); + this._viewDataRadial.gradientColorsStr = this.gradientColorsStr; + this.mnuDirectionPicker.store.each(function(item){ + item.set('gradientColorsStr', gradientColorsStr); + }, this); + + if (this.typeGradient == -1) + this.btnDirection.$icon.css({'background': 'none'}); + else if (this.typeGradient == 2) + this.btnDirection.$icon.css({'background': ('radial-gradient(' + gradientColorsStr + ')')}); + else + this.btnDirection.$icon.css({ + 'background': ('linear-gradient(' + this.typeGradient + 'deg, ' + gradientColorsStr + ')') + }); + }, + createDelayedControls: function() { var me = this; @@ -904,18 +935,21 @@ define([ this.lockedControls.push(this.cmbGradType); this._viewDataLinear = [ - { offsetx: 0, offsety: 0, type:45, subtype:-1, iconcls:'gradient-left-top' }, - { offsetx: 50, offsety: 0, type:90, subtype:4, iconcls:'gradient-top'}, - { offsetx: 100, offsety: 0, type:135, subtype:5, iconcls:'gradient-right-top'}, - { offsetx: 0, offsety: 50, type:0, subtype:6, iconcls:'gradient-left', cls: 'item-gradient-separator', selected: true}, - { offsetx: 100, offsety: 50, type:180, subtype:1, iconcls:'gradient-right'}, - { offsetx: 0, offsety: 100, type:315, subtype:2, iconcls:'gradient-left-bottom'}, - { offsetx: 50, offsety: 100, type:270, subtype:3, iconcls:'gradient-bottom'}, - { offsetx: 100, offsety: 100, type:225, subtype:7, iconcls:'gradient-right-bottom'} + { type:45, subtype:-1}, + { type:90, subtype:4}, + { type:135, subtype:5}, + { type:0, subtype:6, cls: 'item-gradient-separator', selected: true}, + { type:180, subtype:1}, + { type:315, subtype:2}, + { type:270, subtype:3}, + { type:225, subtype:7} ]; + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = me.gradientColorsStr; + }); this._viewDataRadial = [ - { offsetx: 100, offsety: 150, type:2, subtype:5, iconcls:'gradient-radial-center'} + { type:2, subtype:5, gradientColorsStr: this.gradientColorsStr} ]; this.btnDirection = new Common.UI.Button({ @@ -938,7 +972,9 @@ define([ parentMenu: btn.menu, restoreHeight: 174, store: new Common.UI.DataViewStore(me._viewDataLinear), - itemTemplate: _.template('
') + itemTemplate: _.template('
') }); }); this.btnDirection.render($('#textart-button-direction')); diff --git a/apps/presentationeditor/main/app/view/TextArtSettings.js b/apps/presentationeditor/main/app/view/TextArtSettings.js index 3819358a7..7e3352012 100644 --- a/apps/presentationeditor/main/app/view/TextArtSettings.js +++ b/apps/presentationeditor/main/app/view/TextArtSettings.js @@ -129,6 +129,8 @@ define([ this.TransformSettings = $('.textart-transform'); + this.gradientColorsStr="#000, #fff"; + this.typeGradient = 90 ; PE.getCollection('Common.Collections.TextArt').bind({ reset: this.fillTextArt.bind(this) }); @@ -397,10 +399,7 @@ define([ this.mnuDirectionPicker.restoreHeight = 174; var record = this.mnuDirectionPicker.store.findWhere({type: this.GradLinearDirectionType}); this.mnuDirectionPicker.selectRecord(record, true); - if (record) - this.btnDirection.setIconCls('item-gradient ' + record.get('iconcls')); - else - this.btnDirection.setIconCls(''); + this.typeGradient = (record) ? this.GradLinearDirectionType + 90 : -1; this.numGradientAngle.setValue(this.GradLinearDirectionType, true); this.numGradientAngle.setDisabled(this._locked); } else if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_PATH) { @@ -409,9 +408,9 @@ define([ this.mnuDirectionPicker.restoreHeight = 58; this.mnuDirectionPicker.selectByIndex(this.GradRadialDirectionIdx, true); if (this.GradRadialDirectionIdx>=0) - this.btnDirection.setIconCls('item-gradient ' + this._viewDataRadial[this.GradRadialDirectionIdx].iconcls); + this.typeGradient = this._viewDataRadial[this.GradRadialDirectionIdx].type; else - this.btnDirection.setIconCls(''); + this.typeGradient= -1; this.numGradientAngle.setValue(0, true); this.numGradientAngle.setDisabled(true); } @@ -451,7 +450,13 @@ define([ rawData = record; } - this.btnDirection.setIconCls('item-gradient ' + rawData.iconcls); + if (this.GradFillType === Asc.c_oAscFillGradType.GRAD_LINEAR) { + this.GradLinearDirectionType = rawData.type; + this.typeGradient = rawData.type + 90; + } else { + this.GradRadialDirectionIdx = 0; + this.typeGradient = rawData.type; + } (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) ? this.GradLinearDirectionType = rawData.type : this.GradRadialDirectionIdx = 0; if (this.api) { if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) { @@ -805,7 +810,7 @@ define([ this.onGradTypeSelect(this.cmbGradType, rec.attributes); } else { this.cmbGradType.setValue(''); - this.btnDirection.setIconCls(''); + this.typeGradient = -1; } this._state.GradFillType = this.GradFillType; } @@ -816,10 +821,7 @@ define([ this.GradLinearDirectionType=value; var record = this.mnuDirectionPicker.store.findWhere({type: value}); this.mnuDirectionPicker.selectRecord(record, true); - if (record) - this.btnDirection.setIconCls('item-gradient ' + record.get('iconcls')); - else - this.btnDirection.setIconCls(''); + this.typeGradient = (record)? value + 90 : -1; this.numGradientAngle.setValue(value, true); } } else @@ -852,10 +854,17 @@ define([ me.GradColor.values[index] = position; } }); + var arrGrCollors=[]; + var scale=(this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR)?1:0.7; + for (var index=0; index= this.GradColor.colors.length) { me.GradColor.currentIdx = 0; } @@ -1076,6 +1085,26 @@ define([ } }, + btnDirectionRedraw: function(slider, gradientColorsStr) { + this.gradientColorsStr = gradientColorsStr; + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = gradientColorsStr; + }); + this._viewDataRadial.gradientColorsStr = this.gradientColorsStr; + this.mnuDirectionPicker.store.each(function(item){ + item.set('gradientColorsStr', gradientColorsStr); + }, this); + + if (this.typeGradient == -1) + this.btnDirection.$icon.css({'background': 'none'}); + else if (this.typeGradient == 2) + this.btnDirection.$icon.css({'background': ('radial-gradient(' + gradientColorsStr + ')')}); + else + this.btnDirection.$icon.css({ + 'background': ('linear-gradient(' + this.typeGradient + 'deg, ' + gradientColorsStr + ')') + }); + }, + createDelayedControls: function() { var me = this; @@ -1218,18 +1247,21 @@ define([ this.lockedControls.push(this.cmbGradType); this._viewDataLinear = [ - { offsetx: 0, offsety: 0, type:45, subtype:-1, iconcls:'gradient-left-top' }, - { offsetx: 50, offsety: 0, type:90, subtype:4, iconcls:'gradient-top'}, - { offsetx: 100, offsety: 0, type:135, subtype:5, iconcls:'gradient-right-top'}, - { offsetx: 0, offsety: 50, type:0, subtype:6, iconcls:'gradient-left', cls: 'item-gradient-separator', selected: true}, - { offsetx: 100, offsety: 50, type:180, subtype:1, iconcls:'gradient-right'}, - { offsetx: 0, offsety: 100, type:315, subtype:2, iconcls:'gradient-left-bottom'}, - { offsetx: 50, offsety: 100, type:270, subtype:3, iconcls:'gradient-bottom'}, - { offsetx: 100, offsety: 100, type:225, subtype:7, iconcls:'gradient-right-bottom'} + { type:45, subtype:-1}, + { type:90, subtype:4}, + { type:135, subtype:5}, + { type:0, subtype:6, cls: 'item-gradient-separator', selected: true}, + { type:180, subtype:1}, + { type:315, subtype:2}, + { type:270, subtype:3}, + { type:225, subtype:7} ]; + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = me.gradientColorsStr; + }); this._viewDataRadial = [ - { offsetx: 100, offsety: 150, type:2, subtype:5, iconcls:'gradient-radial-center'} + { type:2, subtype:5, gradientColorsStr: this.gradientColorsStr} ]; this.btnDirection = new Common.UI.Button({ @@ -1252,7 +1284,9 @@ define([ parentMenu: btn.menu, restoreHeight: 174, store: new Common.UI.DataViewStore(me._viewDataLinear), - itemTemplate: _.template('
') + itemTemplate: _.template('
') }); }); this.btnDirection.render($('#textart-button-direction')); diff --git a/apps/spreadsheeteditor/main/app/view/TextArtSettings.js b/apps/spreadsheeteditor/main/app/view/TextArtSettings.js index 651d4fcbc..ef15aebd6 100644 --- a/apps/spreadsheeteditor/main/app/view/TextArtSettings.js +++ b/apps/spreadsheeteditor/main/app/view/TextArtSettings.js @@ -130,6 +130,8 @@ define([ this.TransformSettings = $('.textart-transform'); + this.gradientColorsStr="#000, #fff"; + this.typeGradient = 90 ; SSE.getCollection('Common.Collections.TextArt').bind({ reset: this.fillTextArt.bind(this) }); @@ -398,10 +400,7 @@ define([ this.mnuDirectionPicker.restoreHeight = 174; var record = this.mnuDirectionPicker.store.findWhere({type: this.GradLinearDirectionType}); this.mnuDirectionPicker.selectRecord(record, true); - if (record) - this.btnDirection.setIconCls('item-gradient ' + record.get('iconcls')); - else - this.btnDirection.setIconCls(''); + this.typeGradient = (record) ? this.GradLinearDirectionType + 90 : -1; this.numGradientAngle.setValue(this.GradLinearDirectionType, true); this.numGradientAngle.setDisabled(this._locked); } else if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_PATH) { @@ -410,9 +409,9 @@ define([ this.mnuDirectionPicker.restoreHeight = 58; this.mnuDirectionPicker.selectByIndex(this.GradRadialDirectionIdx, true); if (this.GradRadialDirectionIdx>=0) - this.btnDirection.setIconCls('item-gradient ' + this._viewDataRadial[this.GradRadialDirectionIdx].iconcls); + this.typeGradient = this._viewDataRadial[this.GradRadialDirectionIdx].type; else - this.btnDirection.setIconCls(''); + this.typeGradient= -1; this.numGradientAngle.setValue(0, true); this.numGradientAngle.setDisabled(true); } @@ -452,7 +451,14 @@ define([ rawData = record; } - this.btnDirection.setIconCls('item-gradient ' + rawData.iconcls); + //this.btnDirection.setIconCls('item-gradient ' + rawData.iconcls); + if (this.GradFillType === Asc.c_oAscFillGradType.GRAD_LINEAR) { + this.GradLinearDirectionType = rawData.type; + this.typeGradient = rawData.type + 90; + } else { + this.GradRadialDirectionIdx = 0; + this.typeGradient = rawData.type; + } (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) ? this.GradLinearDirectionType = rawData.type : this.GradRadialDirectionIdx = 0; if (this.api) { if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) { @@ -809,7 +815,7 @@ define([ this.onGradTypeSelect(this.cmbGradType, rec.attributes); } else { this.cmbGradType.setValue(''); - this.btnDirection.setIconCls(''); + this.typeGradient = -1; } this._state.GradFillType = this.GradFillType; } @@ -820,10 +826,7 @@ define([ this.GradLinearDirectionType=value; var record = this.mnuDirectionPicker.store.findWhere({type: value}); this.mnuDirectionPicker.selectRecord(record, true); - if (record) - this.btnDirection.setIconCls('item-gradient ' + record.get('iconcls')); - else - this.btnDirection.setIconCls(''); + this.typeGradient = (record)? value + 90 : -1; this.numGradientAngle.setValue(value, true); } } else @@ -856,10 +859,17 @@ define([ me.GradColor.values[index] = position; } }); + + var arrGrCollors=[]; + var scale=(this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR)?1:0.7; for (var index=0; index= this.GradColor.colors.length) { me.GradColor.currentIdx = 0; } @@ -1080,6 +1090,26 @@ define([ } }, + btnDirectionRedraw: function(slider, gradientColorsStr) { + this.gradientColorsStr = gradientColorsStr; + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = gradientColorsStr; + }); + this._viewDataRadial.gradientColorsStr = this.gradientColorsStr; + this.mnuDirectionPicker.store.each(function(item){ + item.set('gradientColorsStr', gradientColorsStr); + }, this); + + if (this.typeGradient == -1) + this.btnDirection.$icon.css({'background': 'none'}); + else if (this.typeGradient == 2) + this.btnDirection.$icon.css({'background': ('radial-gradient(' + gradientColorsStr + ')')}); + else + this.btnDirection.$icon.css({ + 'background': ('linear-gradient(' + this.typeGradient + 'deg, ' + gradientColorsStr + ')') + }); + }, + createDelayedControls: function() { var me = this; @@ -1222,18 +1252,21 @@ define([ this.lockedControls.push(this.cmbGradType); this._viewDataLinear = [ - { offsetx: 0, offsety: 0, type:45, subtype:-1, iconcls:'gradient-left-top' }, - { offsetx: 50, offsety: 0, type:90, subtype:4, iconcls:'gradient-top'}, - { offsetx: 100, offsety: 0, type:135, subtype:5, iconcls:'gradient-right-top'}, - { offsetx: 0, offsety: 50, type:0, subtype:6, iconcls:'gradient-left', cls: 'item-gradient-separator', selected: true}, - { offsetx: 100, offsety: 50, type:180, subtype:1, iconcls:'gradient-right'}, - { offsetx: 0, offsety: 100, type:315, subtype:2, iconcls:'gradient-left-bottom'}, - { offsetx: 50, offsety: 100, type:270, subtype:3, iconcls:'gradient-bottom'}, - { offsetx: 100, offsety: 100, type:225, subtype:7, iconcls:'gradient-right-bottom'} + { type:45, subtype:-1}, + { type:90, subtype:4}, + { type:135, subtype:5}, + { type:0, subtype:6, cls: 'item-gradient-separator', selected: true}, + { type:180, subtype:1}, + { type:315, subtype:2}, + { type:270, subtype:3}, + { type:225, subtype:7} ]; + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = me.gradientColorsStr; + }); this._viewDataRadial = [ - { offsetx: 100, offsety: 150, type:2, subtype:5, iconcls:'gradient-radial-center'} + { type:2, subtype:5, gradientColorsStr: this.gradientColorsStr} ]; this.btnDirection = new Common.UI.Button({ @@ -1256,7 +1289,9 @@ define([ parentMenu: btn.menu, restoreHeight: 174, store: new Common.UI.DataViewStore(me._viewDataLinear), - itemTemplate: _.template('
') + itemTemplate: _.template('
') }); }); this.btnDirection.render($('#textart-button-direction')); From 336ff3681e2a79a96ac8a71019f44992605b228a Mon Sep 17 00:00:00 2001 From: OVSharova Date: Mon, 28 Feb 2022 15:56:05 +0300 Subject: [PATCH 203/217] fix bug delay --- apps/presentationeditor/main/app/view/TextArtSettings.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/apps/presentationeditor/main/app/view/TextArtSettings.js b/apps/presentationeditor/main/app/view/TextArtSettings.js index 7e3352012..848e77b94 100644 --- a/apps/presentationeditor/main/app/view/TextArtSettings.js +++ b/apps/presentationeditor/main/app/view/TextArtSettings.js @@ -533,6 +533,14 @@ define([ this.api.setEndPointHistory(); this._gradientApplyFunc(); } + + var arrGrCollors=[]; + var scale=(this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR)?1:0.7; + for (var index=0; index < slider.thumbs.length; index++) { + arrGrCollors.push(slider.getColorValue(index)+ ' '+ slider.getValue(index)*scale +'%'); + } + + this.btnDirectionRedraw(slider, arrGrCollors.join(', ')); this._sendUndoPoint = true; }, From eb5cc65702ada82dd7f7fb6ea36b8b443405d3e9 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 28 Feb 2022 16:14:31 +0300 Subject: [PATCH 204/217] [Mobile] Update translation --- apps/presentationeditor/mobile/locale/ca.json | 1 - apps/presentationeditor/mobile/locale/cs.json | 1 - apps/presentationeditor/mobile/locale/de.json | 1 - apps/presentationeditor/mobile/locale/el.json | 1 - apps/presentationeditor/mobile/locale/en.json | 1 - apps/presentationeditor/mobile/locale/es.json | 1 - apps/presentationeditor/mobile/locale/fr.json | 1 - apps/presentationeditor/mobile/locale/gl.json | 1 - apps/presentationeditor/mobile/locale/hu.json | 1 - apps/presentationeditor/mobile/locale/it.json | 1 - apps/presentationeditor/mobile/locale/ja.json | 3 +-- apps/presentationeditor/mobile/locale/ko.json | 1 - apps/presentationeditor/mobile/locale/nl.json | 1 - apps/presentationeditor/mobile/locale/pt.json | 1 - apps/presentationeditor/mobile/locale/ro.json | 1 - apps/presentationeditor/mobile/locale/ru.json | 1 - apps/presentationeditor/mobile/locale/tr.json | 1 - apps/presentationeditor/mobile/locale/zh.json | 1 - 18 files changed, 1 insertion(+), 19 deletions(-) diff --git a/apps/presentationeditor/mobile/locale/ca.json b/apps/presentationeditor/mobile/locale/ca.json index 31f17d156..09e00fbab 100644 --- a/apps/presentationeditor/mobile/locale/ca.json +++ b/apps/presentationeditor/mobile/locale/ca.json @@ -382,7 +382,6 @@ "textTopLeft": "Superior-esquerra", "textTopRight": "Superior-dreta", "textTotalRow": "Fila de total", - "textTransition": "Transició", "textTransitions": "Transicions", "textType": "Tipus", "textUnCover": "Descobreix", diff --git a/apps/presentationeditor/mobile/locale/cs.json b/apps/presentationeditor/mobile/locale/cs.json index adbaed10b..2ff86dc22 100644 --- a/apps/presentationeditor/mobile/locale/cs.json +++ b/apps/presentationeditor/mobile/locale/cs.json @@ -382,7 +382,6 @@ "textTopLeft": "Vlevo nahoře", "textTopRight": "Vpravo nahoře", "textTotalRow": "Součtový řádek", - "textTransition": "Přechod", "textTransitions": "Přechody", "textType": "Typ", "textUnCover": "Odkrýt", diff --git a/apps/presentationeditor/mobile/locale/de.json b/apps/presentationeditor/mobile/locale/de.json index c87eebb48..58bcf073f 100644 --- a/apps/presentationeditor/mobile/locale/de.json +++ b/apps/presentationeditor/mobile/locale/de.json @@ -382,7 +382,6 @@ "textTopLeft": "Oben links", "textTopRight": "Oben rechts", "textTotalRow": "Ergebniszeile", - "textTransition": "Übergang", "textTransitions": "Übergänge", "textType": "Typ", "textUnCover": "Aufdecken", diff --git a/apps/presentationeditor/mobile/locale/el.json b/apps/presentationeditor/mobile/locale/el.json index 9cb5c9620..664da091a 100644 --- a/apps/presentationeditor/mobile/locale/el.json +++ b/apps/presentationeditor/mobile/locale/el.json @@ -382,7 +382,6 @@ "textTopLeft": "Πάνω-Αριστερά", "textTopRight": "Πάνω-Δεξιά", "textTotalRow": "Συνολική Γραμμή", - "textTransition": "Μετάβαση", "textTransitions": "Μεταβάσεις", "textType": "Τύπος", "textUnCover": "Αποκάλυψη", diff --git a/apps/presentationeditor/mobile/locale/en.json b/apps/presentationeditor/mobile/locale/en.json index 9de378630..90941fd52 100644 --- a/apps/presentationeditor/mobile/locale/en.json +++ b/apps/presentationeditor/mobile/locale/en.json @@ -382,7 +382,6 @@ "textTopLeft": "Top-Left", "textTopRight": "Top-Right", "textTotalRow": "Total Row", - "del_textTransition": "Transition", "textTransitions": "Transitions", "textType": "Type", "textUnCover": "UnCover", diff --git a/apps/presentationeditor/mobile/locale/es.json b/apps/presentationeditor/mobile/locale/es.json index 3a83c0c19..b8cfbba7c 100644 --- a/apps/presentationeditor/mobile/locale/es.json +++ b/apps/presentationeditor/mobile/locale/es.json @@ -382,7 +382,6 @@ "textTopLeft": "Arriba a la izquierda", "textTopRight": "Arriba a la derecha", "textTotalRow": "Fila de totales", - "textTransition": "Transición", "textTransitions": "Transiciones", "textType": "Tipo", "textUnCover": "Revelar", diff --git a/apps/presentationeditor/mobile/locale/fr.json b/apps/presentationeditor/mobile/locale/fr.json index aff78b2f0..7ba089451 100644 --- a/apps/presentationeditor/mobile/locale/fr.json +++ b/apps/presentationeditor/mobile/locale/fr.json @@ -382,7 +382,6 @@ "textTopLeft": "Haut à gauche", "textTopRight": "Haut à droite", "textTotalRow": "Ligne de total", - "textTransition": "Transition", "textTransitions": "Transitions", "textType": "Type", "textUnCover": "Découvrir", diff --git a/apps/presentationeditor/mobile/locale/gl.json b/apps/presentationeditor/mobile/locale/gl.json index 742ba734d..c86417a12 100644 --- a/apps/presentationeditor/mobile/locale/gl.json +++ b/apps/presentationeditor/mobile/locale/gl.json @@ -382,7 +382,6 @@ "textTopLeft": "Parte superior esquerda", "textTopRight": "Parte superior dereita", "textTotalRow": "Fila total", - "textTransition": "Transición", "textTransitions": "Transicións", "textType": "Tipo", "textUnCover": "Rebelar", diff --git a/apps/presentationeditor/mobile/locale/hu.json b/apps/presentationeditor/mobile/locale/hu.json index 412274beb..c74497ae9 100644 --- a/apps/presentationeditor/mobile/locale/hu.json +++ b/apps/presentationeditor/mobile/locale/hu.json @@ -382,7 +382,6 @@ "textTopLeft": "Bal felső", "textTopRight": "Jobb felső", "textTotalRow": "Összes sor", - "textTransition": "Átmenet", "textTransitions": "Átmenetek", "textType": "Típus", "textUnCover": "Felfed", diff --git a/apps/presentationeditor/mobile/locale/it.json b/apps/presentationeditor/mobile/locale/it.json index afee10aa8..b14c904fa 100644 --- a/apps/presentationeditor/mobile/locale/it.json +++ b/apps/presentationeditor/mobile/locale/it.json @@ -382,7 +382,6 @@ "textTopLeft": "In alto a sinistra", "textTopRight": "In alto a destra", "textTotalRow": "Riga del totale", - "textTransition": "Transizione", "textTransitions": "Transizioni", "textType": "Tipo", "textUnCover": "Scoprire", diff --git a/apps/presentationeditor/mobile/locale/ja.json b/apps/presentationeditor/mobile/locale/ja.json index a6a0bd6f2..66fac9361 100644 --- a/apps/presentationeditor/mobile/locale/ja.json +++ b/apps/presentationeditor/mobile/locale/ja.json @@ -294,7 +294,7 @@ "textDone": "完了", "textDoubleStrikethrough": "二重取り消し線", "textDuplicateSlide": "スライドの複製", - "textDuration": "期間", + "textDuration": "継続時間", "textEditLink": "リンクを編集する", "textEffect": "効果", "textEffects": "効果", @@ -382,7 +382,6 @@ "textTopLeft": "左上", "textTopRight": "右上", "textTotalRow": "合計行", - "textTransition": "切り替え​​", "textTransitions": "切り替え効果", "textType": "タイプ", "textUnCover": "アンカバー", diff --git a/apps/presentationeditor/mobile/locale/ko.json b/apps/presentationeditor/mobile/locale/ko.json index 1152fc5ff..39106ae89 100644 --- a/apps/presentationeditor/mobile/locale/ko.json +++ b/apps/presentationeditor/mobile/locale/ko.json @@ -379,7 +379,6 @@ "textTopLeft": "왼쪽 위", "textTopRight": "오른쪽 위", "textTotalRow": "합계", - "textTransition": "전환", "textTransitions": "전환", "textType": "유형", "textUnCover": "당기기", diff --git a/apps/presentationeditor/mobile/locale/nl.json b/apps/presentationeditor/mobile/locale/nl.json index 991b0f073..def1863c0 100644 --- a/apps/presentationeditor/mobile/locale/nl.json +++ b/apps/presentationeditor/mobile/locale/nl.json @@ -382,7 +382,6 @@ "textTopLeft": "Linksboven", "textTopRight": "Rechtsboven", "textTotalRow": "Totaalrij", - "textTransition": "Overgang", "textTransitions": "Overgangen", "textType": "Type", "textUnCover": "Onthullen", diff --git a/apps/presentationeditor/mobile/locale/pt.json b/apps/presentationeditor/mobile/locale/pt.json index c3ea981dc..cc53baea0 100644 --- a/apps/presentationeditor/mobile/locale/pt.json +++ b/apps/presentationeditor/mobile/locale/pt.json @@ -382,7 +382,6 @@ "textTopLeft": "Parte superior esquerda", "textTopRight": "Parte superior direita", "textTotalRow": "Linha total", - "textTransition": "Transição", "textTransitions": "Transições", "textType": "Tipo", "textUnCover": "Descobrir", diff --git a/apps/presentationeditor/mobile/locale/ro.json b/apps/presentationeditor/mobile/locale/ro.json index 30dc47e3f..d5978feb3 100644 --- a/apps/presentationeditor/mobile/locale/ro.json +++ b/apps/presentationeditor/mobile/locale/ro.json @@ -382,7 +382,6 @@ "textTopLeft": "Stânga sus", "textTopRight": "Dreapta sus", "textTotalRow": "Rând total", - "textTransition": "Tranziții", "textTransitions": "Tranziții", "textType": "Tip", "textUnCover": "Descoperire", diff --git a/apps/presentationeditor/mobile/locale/ru.json b/apps/presentationeditor/mobile/locale/ru.json index c42b05784..6d4bcda58 100644 --- a/apps/presentationeditor/mobile/locale/ru.json +++ b/apps/presentationeditor/mobile/locale/ru.json @@ -382,7 +382,6 @@ "textTopLeft": "Сверху слева", "textTopRight": "Сверху справа", "textTotalRow": "Строка итогов", - "textTransition": "Переход", "textTransitions": "Переходы", "textType": "Тип", "textUnCover": "Открывание", diff --git a/apps/presentationeditor/mobile/locale/tr.json b/apps/presentationeditor/mobile/locale/tr.json index ad192a2b1..d6a30341c 100644 --- a/apps/presentationeditor/mobile/locale/tr.json +++ b/apps/presentationeditor/mobile/locale/tr.json @@ -379,7 +379,6 @@ "textTopLeft": "Üst-Sol", "textTopRight": "Üst-Sağ", "textTotalRow": "Toplam Satır", - "textTransition": "Geçiş", "textTransitions": "geçişler", "textType": "Tip", "textUnCover": "Meydana çıkar", diff --git a/apps/presentationeditor/mobile/locale/zh.json b/apps/presentationeditor/mobile/locale/zh.json index 533bc87fc..daa677149 100644 --- a/apps/presentationeditor/mobile/locale/zh.json +++ b/apps/presentationeditor/mobile/locale/zh.json @@ -382,7 +382,6 @@ "textTopLeft": "左上", "textTopRight": "右上", "textTotalRow": "总行", - "textTransition": "过渡", "textTransitions": "切换", "textType": "类型", "textUnCover": "揭露", From de669790d194dd78913807950a5289498c922a7c Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 28 Feb 2022 16:21:11 +0300 Subject: [PATCH 205/217] [SSE] Refactoring spellcheck panel --- apps/spreadsheeteditor/main/app.js | 4 ++-- apps/spreadsheeteditor/main/app/controller/Spellcheck.js | 3 +++ apps/spreadsheeteditor/main/app_dev.js | 4 ++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/apps/spreadsheeteditor/main/app.js b/apps/spreadsheeteditor/main/app.js index 74d763024..a9cf9cc1b 100644 --- a/apps/spreadsheeteditor/main/app.js +++ b/apps/spreadsheeteditor/main/app.js @@ -152,9 +152,9 @@ require([ 'Print', 'Toolbar', 'Statusbar', - 'Spellcheck', 'RightMenu', 'LeftMenu', + 'Spellcheck', 'Main', 'PivotTable', 'DataTab', @@ -177,9 +177,9 @@ require([ 'spreadsheeteditor/main/app/controller/CellEditor', 'spreadsheeteditor/main/app/controller/Toolbar', 'spreadsheeteditor/main/app/controller/Statusbar', - 'spreadsheeteditor/main/app/controller/Spellcheck', 'spreadsheeteditor/main/app/controller/RightMenu', 'spreadsheeteditor/main/app/controller/LeftMenu', + 'spreadsheeteditor/main/app/controller/Spellcheck', 'spreadsheeteditor/main/app/controller/Main', 'spreadsheeteditor/main/app/controller/Print', 'spreadsheeteditor/main/app/controller/PivotTable', diff --git a/apps/spreadsheeteditor/main/app/controller/Spellcheck.js b/apps/spreadsheeteditor/main/app/controller/Spellcheck.js index 7a166723e..54e982183 100644 --- a/apps/spreadsheeteditor/main/app/controller/Spellcheck.js +++ b/apps/spreadsheeteditor/main/app/controller/Spellcheck.js @@ -254,6 +254,9 @@ define([ }, onSpellCheckVariantsFound: function (property) { + if (property===null && this._currentSpellObj === property && !(this.panelSpellcheck && this.panelSpellcheck.isVisible())) + return; + this._currentSpellObj = property; var arr = [], diff --git a/apps/spreadsheeteditor/main/app_dev.js b/apps/spreadsheeteditor/main/app_dev.js index c3253a8fe..746539606 100644 --- a/apps/spreadsheeteditor/main/app_dev.js +++ b/apps/spreadsheeteditor/main/app_dev.js @@ -142,9 +142,9 @@ require([ 'Print', 'Toolbar', 'Statusbar', - 'Spellcheck', 'RightMenu', 'LeftMenu', + 'Spellcheck', 'Main', 'PivotTable', 'DataTab', @@ -167,9 +167,9 @@ require([ 'spreadsheeteditor/main/app/controller/CellEditor', 'spreadsheeteditor/main/app/controller/Toolbar', 'spreadsheeteditor/main/app/controller/Statusbar', - 'spreadsheeteditor/main/app/controller/Spellcheck', 'spreadsheeteditor/main/app/controller/RightMenu', 'spreadsheeteditor/main/app/controller/LeftMenu', + 'spreadsheeteditor/main/app/controller/Spellcheck', 'spreadsheeteditor/main/app/controller/Main', 'spreadsheeteditor/main/app/controller/Print', 'spreadsheeteditor/main/app/controller/PivotTable', From 004667bea91478a14edef12f7c37346bd507bfaf Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 28 Feb 2022 16:29:41 +0300 Subject: [PATCH 206/217] [Mobile] Update translation --- apps/presentationeditor/mobile/locale/az.json | 1 - apps/presentationeditor/mobile/locale/be.json | 1 - 2 files changed, 2 deletions(-) diff --git a/apps/presentationeditor/mobile/locale/az.json b/apps/presentationeditor/mobile/locale/az.json index a06c36408..33a8e623b 100644 --- a/apps/presentationeditor/mobile/locale/az.json +++ b/apps/presentationeditor/mobile/locale/az.json @@ -379,7 +379,6 @@ "textTopLeft": "Yuxarı-Sol", "textTopRight": "Yuxarı-Sağ", "textTotalRow": "Yekun Sətir", - "textTransition": "Keçid", "textTransitions": "Keçidlər", "textType": "Növ", "textUnCover": "Açın", diff --git a/apps/presentationeditor/mobile/locale/be.json b/apps/presentationeditor/mobile/locale/be.json index b2fb8fec5..89a00db4b 100644 --- a/apps/presentationeditor/mobile/locale/be.json +++ b/apps/presentationeditor/mobile/locale/be.json @@ -377,7 +377,6 @@ "textTopLeft": "Уверсе злева", "textTopRight": "Уверсе справа", "textTotalRow": "Радок вынікаў", - "textTransition": "Пераход", "textType": "Тып", "textUnCover": "Адкрыццё", "textVerticalIn": "Вертыкальна ўнутр", From c47fbe0ff9e98e269e26ba5ddc18d6e1673aee96 Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Tue, 1 Mar 2022 10:51:08 +0300 Subject: [PATCH 207/217] [SSE] Add user selector --- .../mobile/lib/controller/ContextMenu.jsx | 1 - .../mobile/src/controller/ContextMenu.jsx | 46 ++++++++++++++++--- .../mobile/src/less/app.less | 2 +- 3 files changed, 41 insertions(+), 8 deletions(-) diff --git a/apps/common/mobile/lib/controller/ContextMenu.jsx b/apps/common/mobile/lib/controller/ContextMenu.jsx index 6bd4ad0de..94cce47c8 100644 --- a/apps/common/mobile/lib/controller/ContextMenu.jsx +++ b/apps/common/mobile/lib/controller/ContextMenu.jsx @@ -181,7 +181,6 @@ class ContextMenuController extends Component { src.attr('userid', UserId); src.css({'background-color': '#'+Common.Utils.ThemeColor.getHexColor(color.get_r(), color.get_g(), color.get_b())}); src.text(this.getUserName(UserId)); - $$('#id_main_parent').append(src); this.fastCoAuthTips.push(src); //src.fadeIn(150); src[0].classList.add('active'); diff --git a/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx b/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx index 619dad1c1..6ddad68b7 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx @@ -269,13 +269,18 @@ class ContextMenu extends ContextMenuController { } onApiMouseMove(dataarray) { - let index_locked; + const tipHeight = 20; + let index_locked, + index_foreign, + editorOffset = $$("#editor_sdk").offset(), + XY = [ editorOffset.left - $(window).scrollLeft(), editorOffset.top - $(window).scrollTop()]; for (let i = dataarray.length; i > 0; i--) { if (dataarray[i-1].asc_getType() === Asc.c_oAscMouseMoveType.LockedObject) index_locked = i; + if (dataarray[i-1].asc_getType() === Asc.c_oAscMouseMoveType.ForeignSelect) index_foreign = i; } - if (!index_locked && this.isOpenWindowUser) { + if (this.isOpenWindowUser) { this.timer = setTimeout(() => $$('.username-tip').remove(), 1500); this.isOpenWindowUser = false; } else { @@ -284,10 +289,7 @@ class ContextMenu extends ContextMenuController { } if (index_locked && this.isUserVisible(dataarray[index_locked-1].asc_getUserId())) { - const tipHeight = 20; - let editorOffset = $$("#editor_sdk").offset(), - XY = [ editorOffset.left - $(window).scrollLeft(), editorOffset.top - $(window).scrollTop()], - data = dataarray[index_locked - 1], + let data = dataarray[index_locked - 1], X = data.asc_getX(), Y = data.asc_getY(), src = $$(`
`); @@ -318,6 +320,38 @@ class ContextMenu extends ContextMenuController { } this.isOpenWindowUser = true; } + + if(index_foreign && this.isUserVisible(dataarray[index_foreign-1].asc_getUserId())) { + let data = dataarray[index_foreign - 1], + src = $$(`
`), + color = data.asc_getColor(), + foreignSelectX = data.asc_getX(), + foreignSelectY = data.asc_getY(); + + src.css({ + height : tipHeight + 'px', + position : 'absolute', + zIndex : '5000', + visibility : 'visible', + 'background-color': '#'+Common.Utils.ThemeColor.getHexColor(color.get_r(), color.get_g(), color.get_b()) + }); + + src.text(this.getUserName(data.asc_getUserId())); + src.addClass('active'); + $$(document.body).append(src); + + if ( foreignSelectX + src.outerWidth() > $$(window).width() ) { + src.css({ + left: foreignSelectX - src.outerWidth() + 'px', + top: (foreignSelectY + XY[1] - tipHeight) + 'px', + }); + } else { + src.css({ + left: foreignSelectX + 'px', + top: (foreignSelectY + XY[1] - tipHeight) + 'px', + }); + } + } } initExtraItems () { diff --git a/apps/spreadsheeteditor/mobile/src/less/app.less b/apps/spreadsheeteditor/mobile/src/less/app.less index 323279360..c11f89d5a 100644 --- a/apps/spreadsheeteditor/mobile/src/less/app.less +++ b/apps/spreadsheeteditor/mobile/src/less/app.less @@ -71,7 +71,7 @@ } } -.username-tip.active { +.username-tip { background-color: #ee3525; } From 9fc7608193744267fdee34dafa67c10ed111408e Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Tue, 1 Mar 2022 12:35:50 +0300 Subject: [PATCH 208/217] [DE] Fix Bug 55763 --- apps/documenteditor/mobile/src/less/app.less | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/documenteditor/mobile/src/less/app.less b/apps/documenteditor/mobile/src/less/app.less index 9de1ee6a8..24f421af0 100644 --- a/apps/documenteditor/mobile/src/less/app.less +++ b/apps/documenteditor/mobile/src/less/app.less @@ -167,4 +167,8 @@ } } - +.calendar-sheet{ + .calendar-day-weekend { + color: #D25252; + } +} From 0342820f943e733d8ca5949da89827e902465feb Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 1 Mar 2022 16:38:14 +0300 Subject: [PATCH 209/217] [DE] Fix Bug 55812 --- apps/documenteditor/main/app/controller/Navigation.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/documenteditor/main/app/controller/Navigation.js b/apps/documenteditor/main/app/controller/Navigation.js index bbb6a0caa..f528e131e 100644 --- a/apps/documenteditor/main/app/controller/Navigation.js +++ b/apps/documenteditor/main/app/controller/Navigation.js @@ -61,6 +61,9 @@ define([ if (!me._navigationObject) me._navigationObject = obj; me.updateNavigation(); + } else { + if (me.panelNavigation && me.panelNavigation.viewNavigationList && me.panelNavigation.viewNavigationList.scroller) + me.panelNavigation.viewNavigationList.scroller.update({alwaysVisibleY: true}); } }, 'hide': function() { @@ -293,6 +296,8 @@ define([ arr[0].set('tip', this.txtGotoBeginning); } this.getApplication().getCollection('Navigation').reset(arr); + if (this.panelNavigation && this.panelNavigation.viewNavigationList && this.panelNavigation.viewNavigationList.scroller) + this.panelNavigation.viewNavigationList.scroller.update({alwaysVisibleY: true}); } }, From 0aff146ac0359df7b520de30339fbacf4142f5d0 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 1 Mar 2022 17:17:02 +0300 Subject: [PATCH 210/217] Fix Bug 55816 --- apps/common/main/resources/less/language-dialog.less | 2 +- apps/common/mobile/resources/less/common.less | 4 +++- apps/documenteditor/main/app/view/ControlSettingsDialog.js | 2 +- apps/documenteditor/main/app/view/DateTimeDialog.js | 2 +- apps/presentationeditor/main/app/view/DateTimeDialog.js | 2 +- apps/presentationeditor/main/app/view/HeaderFooterDialog.js | 2 +- apps/spreadsheeteditor/main/app/view/FileMenuPanels.js | 2 +- .../spreadsheeteditor/mobile/src/store/applicationSettings.js | 4 ++-- 8 files changed, 11 insertions(+), 9 deletions(-) diff --git a/apps/common/main/resources/less/language-dialog.less b/apps/common/main/resources/less/language-dialog.less index 1acb2ad15..900d4d73e 100644 --- a/apps/common/main/resources/less/language-dialog.less +++ b/apps/common/main/resources/less/language-dialog.less @@ -79,7 +79,7 @@ li { &.lv, &.lv-LV {background-position: -32px -72px;} &.lt, &.lt-LT {background-position: 0 -84px;} &.vi, &.vi-VN {background-position: -16px -84px;} - &.de-CH, &.fr-CH {background-position: -32px -84px;} + &.de-CH, &.fr-CH , &.it-CH {background-position: -32px -84px;} &.pt-PT {background-position: -16px -96px;} &.de-AT {background-position: -32px -96px;} &.es, &.es-ES {background-position: 0 -108px;} diff --git a/apps/common/mobile/resources/less/common.less b/apps/common/mobile/resources/less/common.less index 1a609b498..68b136f60 100644 --- a/apps/common/mobile/resources/less/common.less +++ b/apps/common/mobile/resources/less/common.less @@ -653,7 +653,9 @@ input[type="number"]::-webkit-inner-spin-button { .lang-flag.vi-VN { background-position: -16px -84px; } -.lang-flag.de-CH { +.lang-flag.de-CH, +.lang-flag.fr-CH, +.lang-flag.it-CH { background-position: -32px -84px; } .lang-flag.pt-PT { diff --git a/apps/documenteditor/main/app/view/ControlSettingsDialog.js b/apps/documenteditor/main/app/view/ControlSettingsDialog.js index 46f42eb2d..f8c10561a 100644 --- a/apps/documenteditor/main/app/view/ControlSettingsDialog.js +++ b/apps/documenteditor/main/app/view/ControlSettingsDialog.js @@ -205,7 +205,7 @@ define([ 'text!documenteditor/main/app/template/ControlSettingsDialog.template', // date picker var data = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0C07 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A }, - { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, + { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0810 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, { value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 }]; data.forEach(function(item) { var langinfo = Common.util.LanguageInfo.getLocalLanguageName(item.value); diff --git a/apps/documenteditor/main/app/view/DateTimeDialog.js b/apps/documenteditor/main/app/view/DateTimeDialog.js index 931ad20a2..80253793d 100644 --- a/apps/documenteditor/main/app/view/DateTimeDialog.js +++ b/apps/documenteditor/main/app/view/DateTimeDialog.js @@ -89,7 +89,7 @@ define([ Common.UI.Window.prototype.render.call(this); var data = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0C07 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A }, - { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, + { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0810 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, { value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 }]; data.forEach(function(item) { var langinfo = Common.util.LanguageInfo.getLocalLanguageName(item.value); diff --git a/apps/presentationeditor/main/app/view/DateTimeDialog.js b/apps/presentationeditor/main/app/view/DateTimeDialog.js index 397aba526..e170cb6d1 100644 --- a/apps/presentationeditor/main/app/view/DateTimeDialog.js +++ b/apps/presentationeditor/main/app/view/DateTimeDialog.js @@ -89,7 +89,7 @@ define([ Common.UI.Window.prototype.render.call(this); var data = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0C07 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A }, - { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, + { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0810 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, { value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 }]; data.forEach(function(item) { var langinfo = Common.util.LanguageInfo.getLocalLanguageName(item.value); diff --git a/apps/presentationeditor/main/app/view/HeaderFooterDialog.js b/apps/presentationeditor/main/app/view/HeaderFooterDialog.js index 41480db38..b1fb2b1a1 100644 --- a/apps/presentationeditor/main/app/view/HeaderFooterDialog.js +++ b/apps/presentationeditor/main/app/view/HeaderFooterDialog.js @@ -123,7 +123,7 @@ define(['text!presentationeditor/main/app/template/HeaderFooterDialog.template', }); var data = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0C07 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A }, - { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, + { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0810 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, { value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 }]; data.forEach(function(item) { var langinfo = Common.util.LanguageInfo.getLocalLanguageName(item.value); diff --git a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js index 3b4e313fd..df69c1f5d 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js @@ -553,7 +553,7 @@ define([ }); var regdata = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0C07 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A }, - { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, + { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0810 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, { value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 }]; regdata.forEach(function(item) { var langinfo = Common.util.LanguageInfo.getLocalLanguageName(item.value); diff --git a/apps/spreadsheeteditor/mobile/src/store/applicationSettings.js b/apps/spreadsheeteditor/mobile/src/store/applicationSettings.js index 437fae8cf..d45318d05 100644 --- a/apps/spreadsheeteditor/mobile/src/store/applicationSettings.js +++ b/apps/spreadsheeteditor/mobile/src/store/applicationSettings.js @@ -52,8 +52,8 @@ export class storeApplicationSettings { getRegDataCodes() { const regDataCode = [ - { value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A }, - { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, + { value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0C07 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A }, + { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0810 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, { value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 } ]; From 8d6f5a396e27fa6915fda3de46bc9fdd3c316fad Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Tue, 1 Mar 2022 17:43:46 +0300 Subject: [PATCH 211/217] [SSE] Correct selector --- apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx b/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx index 6ddad68b7..d21cff870 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx @@ -351,6 +351,7 @@ class ContextMenu extends ContextMenuController { top: (foreignSelectY + XY[1] - tipHeight) + 'px', }); } + this.isOpenWindowUser = true; } } From cc60ecdd5494d0ea0724cf70024b6c12eb8000af Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Wed, 2 Mar 2022 13:09:22 +0300 Subject: [PATCH 212/217] Fix regSettings and refactoring --- apps/common/mobile/resources/img/about/logo-white_s.svg | 6 ++++++ apps/common/mobile/resources/img/about/logo_s.svg | 6 ++++++ apps/common/mobile/resources/less/about.less | 8 ++++---- apps/common/mobile/resources/less/common.less | 2 +- apps/common/mobile/resources/less/ios/icons.less | 6 +++--- apps/common/mobile/resources/less/material/icons.less | 4 ++-- vendor/framework7-react/build/webpack.config.js | 3 +-- 7 files changed, 23 insertions(+), 12 deletions(-) create mode 100644 apps/common/mobile/resources/img/about/logo-white_s.svg create mode 100644 apps/common/mobile/resources/img/about/logo_s.svg diff --git a/apps/common/mobile/resources/img/about/logo-white_s.svg b/apps/common/mobile/resources/img/about/logo-white_s.svg new file mode 100644 index 000000000..ae110aed0 --- /dev/null +++ b/apps/common/mobile/resources/img/about/logo-white_s.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/apps/common/mobile/resources/img/about/logo_s.svg b/apps/common/mobile/resources/img/about/logo_s.svg new file mode 100644 index 000000000..04df9911d --- /dev/null +++ b/apps/common/mobile/resources/img/about/logo_s.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/apps/common/mobile/resources/less/about.less b/apps/common/mobile/resources/less/about.less index 8299cd565..6b71c1c41 100644 --- a/apps/common/mobile/resources/less/about.less +++ b/apps/common/mobile/resources/less/about.less @@ -1,5 +1,5 @@ // @text-normal: #000; -// @common-image-about-path - defined in webpack config +// @common-image-path - defined in webpack config .about { .page-content { @@ -49,18 +49,18 @@ display: inline-block; width: 100%; height: 55px; - background: ~"url(@{common-image-about-path}/logo_s.svg) no-repeat center"; + background: ~"url(@{common-image-path}/about/logo_s.svg) no-repeat center"; } .theme-type-dark { .about .logo { - background: ~"url(@{common-image-about-path}/logo-white_s.svg) no-repeat center"; + background: ~"url(@{common-image-path}/about/logo-white_s.svg) no-repeat center"; } } } .theme-type-dark { .about .logo { - background: ~"url(@{common-image-about-path}/logo-white_s.svg) no-repeat center"; + background: ~"url(@{common-image-path}/about/logo-white_s.svg) no-repeat center"; } } \ No newline at end of file diff --git a/apps/common/mobile/resources/less/common.less b/apps/common/mobile/resources/less/common.less index 68b136f60..2563c3470 100644 --- a/apps/common/mobile/resources/less/common.less +++ b/apps/common/mobile/resources/less/common.less @@ -555,7 +555,7 @@ input[type="number"]::-webkit-inner-spin-button { .icon.lang-flag { background-size: 48px auto; - background-image: url(../img/controls/flags@2x.png); + background-image: ~'url(@{common-image-path}/controls/flags@2x.png)'; } .icon.lang-flag { diff --git a/apps/common/mobile/resources/less/ios/icons.less b/apps/common/mobile/resources/less/ios/icons.less index 0456b303c..ae34c3505 100644 --- a/apps/common/mobile/resources/less/ios/icons.less +++ b/apps/common/mobile/resources/less/ios/icons.less @@ -1,10 +1,10 @@ -// @common-image-header-path - defined in webpack config +// @common-image-path - defined in webpack config .device-ios { .theme-type-dark { i.icon { &.icon-logo { - background: ~"url(@{common-image-header-path}/logo-android.svg)" no-repeat center; + background: ~"url(@{common-image-path}/header/logo-android.svg)" no-repeat center; } } } @@ -15,7 +15,7 @@ &.icon-logo { width: 100px; height: 14px; - background: ~"url(@{common-image-header-path}/logo-ios.svg)" no-repeat center; + background: ~"url(@{common-image-path}/header/logo-ios.svg)" no-repeat center; } &.icon-prev { width: 22px; diff --git a/apps/common/mobile/resources/less/material/icons.less b/apps/common/mobile/resources/less/material/icons.less index 6768ae033..2a34e8c73 100644 --- a/apps/common/mobile/resources/less/material/icons.less +++ b/apps/common/mobile/resources/less/material/icons.less @@ -1,4 +1,4 @@ -// @common-image-header-path - defined in webpack config +// @common-image-path - defined in webpack config .device-android { i.icon { @@ -8,7 +8,7 @@ &.icon-logo { width: 100px; height: 14px; - background: ~"url(@{common-image-header-path}/logo-android.svg) no-repeat center"; + background: ~"url(@{common-image-path}/header/logo-android.svg) no-repeat center"; } &.icon-prev { width: 20px; diff --git a/vendor/framework7-react/build/webpack.config.js b/vendor/framework7-react/build/webpack.config.js index 7780894ce..09257fa73 100644 --- a/vendor/framework7-react/build/webpack.config.js +++ b/vendor/framework7-react/build/webpack.config.js @@ -132,8 +132,7 @@ module.exports = { lessOptions: { javascriptEnabled: true, globalVars: { - "common-image-header-path": env === 'production' ? `../../../${editor}/mobile/resources/img/header` : '../../common/mobile/resources/img/header', - "common-image-about-path": env === 'production' ? `../../../${editor}/mobile/resources/img/about` : '../../common/main/resources/img/about', + "common-image-path": env === 'production' ? `../../../${editor}/mobile/resources/img` : '../../common/mobile/resources/img', "app-image-path": env === 'production' ? '../resources/img' : './resources/img', } } From a1467d131f41a5871813420c06a9c8117f5312f4 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Wed, 2 Mar 2022 14:45:35 +0300 Subject: [PATCH 213/217] [DE] Fix bug 55820 --- apps/documenteditor/main/app/controller/PageThumbnails.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/documenteditor/main/app/controller/PageThumbnails.js b/apps/documenteditor/main/app/controller/PageThumbnails.js index f8702d131..91736f5e2 100644 --- a/apps/documenteditor/main/app/controller/PageThumbnails.js +++ b/apps/documenteditor/main/app/controller/PageThumbnails.js @@ -57,8 +57,8 @@ define([ this.addListeners({ 'PageThumbnails': { 'show': _.bind(function () { + this.api.asc_viewerThumbnailsResize(); if (this.firstShow) { - this.api.asc_viewerThumbnailsResize(); this.api.asc_setViewerThumbnailsUsePageRect(Common.localStorage.getBool("de-thumbnails-highlight", true)); this.firstShow = false; } From 37c1275b369c49546647fb81b6dc3b031d07e1ac Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Thu, 3 Mar 2022 13:27:50 +0300 Subject: [PATCH 214/217] [SSE] Fix Bug 55814 --- apps/spreadsheeteditor/mobile/src/less/app.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/src/less/app.less b/apps/spreadsheeteditor/mobile/src/less/app.less index 323279360..123cfc140 100644 --- a/apps/spreadsheeteditor/mobile/src/less/app.less +++ b/apps/spreadsheeteditor/mobile/src/less/app.less @@ -134,8 +134,8 @@ border-radius: 2px; } } - .page{ - top: 30px; + .navbar { + top: -1px; } } From 073d8a4e74db6fb81ec379a2bdb6aa14ab71550e Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 3 Mar 2022 16:00:03 +0300 Subject: [PATCH 215/217] [DE] Fix Bug 55855 --- apps/documenteditor/main/app/view/FormSettings.js | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/apps/documenteditor/main/app/view/FormSettings.js b/apps/documenteditor/main/app/view/FormSettings.js index fc1762dad..2af5d2f4f 100644 --- a/apps/documenteditor/main/app/view/FormSettings.js +++ b/apps/documenteditor/main/app/view/FormSettings.js @@ -1274,26 +1274,15 @@ define([ this._state.imgPositionY = 50; } this.imagePositionLabel.text(Math.round(this._state.imgPositionX) + ',' + Math.round(this._state.imgPositionY)); - - if (this._sendUndoPoint) { - this.api.setStartPointHistory(); - this._sendUndoPoint = false; - this.updateslider = setInterval(_.bind(this.imgPositionApplyFunc, this, type), 100); - } }, onImagePositionChangeComplete: function (type, field, newValue, oldValue) { - clearInterval(this.updateslider); if (type === 'x') { this._state.imgPositionX = newValue; } else { this._state.imgPositionY = newValue; } - if (!this._sendUndoPoint) { // start point was added - this.api.setEndPointHistory(); - this.imgPositionApplyFunc(type); - } - this._sendUndoPoint = true; + this.imgPositionApplyFunc(type); }, imgPositionApplyFunc: function (type) { From 3aff08333f4f1180736b6526c939f5f2d510b16a Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Thu, 3 Mar 2022 17:11:15 +0300 Subject: [PATCH 216/217] [DE PE SSE] Fix Bug 55865 --- apps/common/mobile/resources/less/common-material.less | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/apps/common/mobile/resources/less/common-material.less b/apps/common/mobile/resources/less/common-material.less index dfd53ab6f..2c86a3010 100644 --- a/apps/common/mobile/resources/less/common-material.less +++ b/apps/common/mobile/resources/less/common-material.less @@ -46,6 +46,10 @@ --f7-picker-item-text-color: rgba(var(--text-normal), 0.45); --f7-picker-item-selected-text-color: @text-normal; + --f7-input-bg-color: @background-primary; + --f7-input-placeholder-color: @text-secondary; + --f7-input-text-color: @text-normal; + .button { --f7-touch-ripple-color: transparent; } @@ -86,7 +90,6 @@ --f7-list-item-text-text-color: @text-normal; --f7-list-item-subtitle-text-color: @text-secondary; --f7-block-title-text-color: @text-secondary; - --f7-input-placeholder-color: @text-secondary; --f7-label-text-color: @text-normal; --f7-page-bg-color: @background-tertiary; --f7-list-bg-color: @background-primary; @@ -95,7 +98,6 @@ --f7-toggle-inactive-color: @background-menu-divider; --f7-toggle-border-color: @background-menu-divider; --f7-actions-button-text-color: @text-normal; - --f7-input-text-color: @text-normal; --f7-subnavbar-border-color: @background-menu-divider; --f7-list-border-color: @background-menu-divider; } @@ -607,6 +609,7 @@ .inputs-list { margin: 15px 0 0; ul { + background: none; &::before, &::after { display: none; } From 81258c1830726e91cb30b59892f9896420f9da66 Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Thu, 3 Mar 2022 17:49:55 +0300 Subject: [PATCH 217/217] [PE] Fix Bug 55867 --- apps/presentationeditor/mobile/src/controller/Main.jsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/presentationeditor/mobile/src/controller/Main.jsx b/apps/presentationeditor/mobile/src/controller/Main.jsx index 6d1ac5f12..cd4bb85da 100644 --- a/apps/presentationeditor/mobile/src/controller/Main.jsx +++ b/apps/presentationeditor/mobile/src/controller/Main.jsx @@ -627,10 +627,11 @@ class MainController extends Component { } onAdvancedOptions (type, advOptions) { + const { t } = this.props; + const _t = t('Controller.Main', {returnObjects:true}); + if ($$('.dlg-adv-options.modal-in').length > 0) return; - const _t = this._t; - if (type == Asc.c_oAscAdvancedOptionsID.DRM) { Common.Notifications.trigger('preloader:close'); Common.Notifications.trigger('preloader:endAction', Asc.c_oAscAsyncActionType['BlockInteraction'], this.LoadingDocument, true);