diff --git a/apps/common/main/lib/util/htmlutils.js b/apps/common/main/lib/util/htmlutils.js
index d75a54d0a..aa0312061 100644
--- a/apps/common/main/lib/util/htmlutils.js
+++ b/apps/common/main/lib/util/htmlutils.js
@@ -68,6 +68,7 @@ if ( window.desktop ) {
delete params.uitheme;
} else {
localStorage.setItem("ui-theme-id", theme.id);
+ localStorage.removeItem("ui-theme-use-system");
}
localStorage.removeItem("ui-theme");
diff --git a/apps/common/main/lib/view/AutoCorrectDialog.js b/apps/common/main/lib/view/AutoCorrectDialog.js
index 0cea0bf82..2b1651663 100644
--- a/apps/common/main/lib/view/AutoCorrectDialog.js
+++ b/apps/common/main/lib/view/AutoCorrectDialog.js
@@ -487,22 +487,30 @@ define([ 'text!common/main/lib/template/AutoCorrectDialog.template',
onDelete: function() {
var rec = this.mathList.getSelectedRec();
+ var path = '';
+ var val;
if (rec) {
if (rec.get('defaultValue')) {
- var path = this.appPrefix + "settings-math-correct-rem";
+ path = this.appPrefix + "settings-math-correct-rem";
var disabled = !rec.get('defaultDisabled');
rec.set('defaultDisabled', disabled);
if (disabled)
this.arrRem.push(rec.get('replaced'));
else
this.arrRem.splice(this.arrRem.indexOf(rec.get('replaced')), 1);
- var val = JSON.stringify(this.arrRem);
+ val = JSON.stringify(this.arrRem);
Common.Utils.InternalSettings.set(path, val);
Common.localStorage.setItem(path, val);
this.btnDelete.setCaption(disabled ? this.textRestore : this.textDelete);
disabled ? this.api.asc_deleteFromAutoCorrectMathSymbols(rec.get('replaced')) : this.api.asc_AddOrEditFromAutoCorrectMathSymbols(rec.get('replaced'), rec.get('defaultValue'));
} else {
_mathStore.remove(rec);
+
+ this.arrAdd.splice(this.arrAdd.indexOf(rec.get('replaced')), 1);
+ path = this.appPrefix + "settings-math-correct-add";
+ val = JSON.stringify(this.arrAdd);
+ Common.Utils.InternalSettings.set(path, val);
+ Common.localStorage.setItem(path, val);
this.mathList.scroller && this.mathList.scroller.update({});
this.api.asc_deleteFromAutoCorrectMathSymbols(rec.get('replaced'));
}
@@ -746,22 +754,30 @@ define([ 'text!common/main/lib/template/AutoCorrectDialog.template',
onDeleteRec: function() {
var rec = this.mathRecList.getSelectedRec();
+ var path;
+ var val;
if (rec) {
if (rec.get('defaultValue')) {
- var path = this.appPrefix + "settings-rec-functions-rem";
+ path = this.appPrefix + "settings-rec-functions-rem";
var disabled = !rec.get('defaultDisabled');
rec.set('defaultDisabled', disabled);
if (disabled)
this.arrRemRec.push(rec.get('value'));
else
this.arrRemRec.splice(this.arrRemRec.indexOf(rec.get('value')), 1);
- var val = JSON.stringify(this.arrRemRec);
+ val = JSON.stringify(this.arrRemRec);
Common.Utils.InternalSettings.set(path, val);
Common.localStorage.setItem(path, val);
this.btnDeleteRec.setCaption(disabled ? this.textRestore : this.textDelete);
disabled ? this.api.asc_deleteFromAutoCorrectMathFunctions(rec.get('value')) : this.api.asc_AddFromAutoCorrectMathFunctions(rec.get('value'));
} else {
_functionsStore.remove(rec);
+
+ this.arrAddRec.splice(this.arrAddRec.indexOf(rec.get('value')), 1);
+ path = this.appPrefix + "settings-rec-functions-add";
+ val = JSON.stringify(this.arrAddRec);
+ Common.Utils.InternalSettings.set(path, val);
+ Common.localStorage.setItem(path, val);
this.mathRecList.scroller && this.mathRecList.scroller.update({});
this.api.asc_deleteFromAutoCorrectMathFunctions(rec.get('value'));
}
diff --git a/apps/common/main/lib/view/Chat.js b/apps/common/main/lib/view/Chat.js
index 583c90461..4a9f78722 100644
--- a/apps/common/main/lib/view/Chat.js
+++ b/apps/common/main/lib/view/Chat.js
@@ -336,9 +336,24 @@ define([
// text box setup autosize input text
this.setupAutoSizingTextBox();
- this.txtMessage.bind('input propertychange', _.bind(this.updateHeightTextBox, this));
+ this.disableTextBoxButton($(this.txtMessage));
+ this.txtMessage.bind('input propertychange', _.bind(this.onTextareaInput, this));
},
+ onTextareaInput: function(event) {
+ this.updateHeightTextBox(event);
+ this.disableTextBoxButton($(event.target));
+ },
+ disableTextBoxButton: function(textboxEl) {
+ var button = $(textboxEl.siblings('#chat-msg-btn-add')[0]);
+ if(textboxEl.val().trim().length > 0) {
+ button.removeAttr('disabled');
+ button.removeClass('disabled');
+ } else {
+ button.attr('disabled', true);
+ button.addClass('disabled');
+ }
+ },
updateLayout: function (applyUsersAutoSizig) {
var me = this;
var height = this.panelBox.height();
diff --git a/apps/common/main/lib/view/Comments.js b/apps/common/main/lib/view/Comments.js
index 879779f17..2cee62927 100644
--- a/apps/common/main/lib/view/Comments.js
+++ b/apps/common/main/lib/view/Comments.js
@@ -98,6 +98,17 @@ define([
var text = $(this.el).find('textarea');
return (text && text.length) ? text.val().trim() : '';
},
+ disableTextBoxButton: function(textboxEl) {
+ var button = $(textboxEl.siblings('#id-comments-change')[0]);
+
+ if(textboxEl.val().trim().length > 0) {
+ button.removeAttr('disabled');
+ button.removeClass('disabled');
+ } else {
+ button.attr('disabled', true);
+ button.addClass('disabled');
+ }
+ },
autoHeightTextBox: function () {
var view = this,
textBox = $(this.el).find('textarea'),
@@ -127,13 +138,19 @@ define([
view.autoScrollToEditButtons();
}
+ function onTextareaInput(event) {
+ updateTextBoxHeight();
+ view.disableTextBoxButton($(event.target));
+ }
+
if (textBox && textBox.length) {
domTextBox = textBox.get(0);
+ view.disableTextBoxButton(textBox);
if (domTextBox) {
lineHeight = parseInt(textBox.css('lineHeight'), 10) * 0.25;
updateTextBoxHeight();
- textBox.bind('input propertychange', updateTextBoxHeight)
+ textBox.bind('input propertychange', onTextareaInput)
}
}
@@ -171,7 +188,7 @@ define([
addCommentHeight: 45,
newCommentHeight: 110,
- textBoxAutoSizeLocked: undefined, // disable autosize textbox
+ textBoxAutoSizeLocked: undefined, // disable autoHeightTextBoxsize textbox
viewmode: false,
_commentsViewOnItemClick: function (picker, item, record, e) {
@@ -694,7 +711,17 @@ define([
this.layout.setResizeValue(0, container.height() - this.addCommentHeight);
}
},
+ disableTextBoxButton: function(textboxEl) {
+ var button = $(textboxEl.parent().siblings('.add')[0]);
+ if(textboxEl.val().trim().length > 0) {
+ button.removeAttr('disabled');
+ button.removeClass('disabled');
+ } else {
+ button.attr('disabled', true);
+ button.addClass('disabled');
+ }
+ },
autoHeightTextBox: function () {
var me = this, domTextBox = null, lineHeight = 0, minHeight = 44;
var textBox = $('#comment-msg-new', this.el);
@@ -736,9 +763,15 @@ define([
Math.min(height - contentHeight - textBoxMinHeightIndent, height - me.newCommentHeight)));
}
+ function onTextareaInput(event) {
+ updateTextBoxHeight();
+ me.disableTextBoxButton($(event.target));
+ }
+
+ me.disableTextBoxButton(textBox);
lineHeight = parseInt(textBox.css('lineHeight'), 10) * 0.25;
updateTextBoxHeight();
- textBox.bind('input propertychange', updateTextBoxHeight);
+ textBox.bind('input propertychange', onTextareaInput);
this.textBox = textBox;
},
diff --git a/apps/common/main/lib/view/ExternalDiagramEditor.js b/apps/common/main/lib/view/ExternalDiagramEditor.js
index e977ec4d0..7fcc78670 100644
--- a/apps/common/main/lib/view/ExternalDiagramEditor.js
+++ b/apps/common/main/lib/view/ExternalDiagramEditor.js
@@ -46,6 +46,7 @@ define([
initialize : function(options) {
var _options = {};
_.extend(_options, {
+ id: 'id-external-diagram-editor',
title: this.textTitle,
storageName: 'diagram-editor',
sdkplaceholder: 'id-diagram-editor-placeholder',
diff --git a/apps/common/main/lib/view/ExternalMergeEditor.js b/apps/common/main/lib/view/ExternalMergeEditor.js
index 0b91a6e3a..f8f696f10 100644
--- a/apps/common/main/lib/view/ExternalMergeEditor.js
+++ b/apps/common/main/lib/view/ExternalMergeEditor.js
@@ -46,6 +46,7 @@ define([
initialize : function(options) {
var _options = {};
_.extend(_options, {
+ id: 'id-external-merge-editor',
title: this.textTitle,
storageName: 'merge-editor',
sdkplaceholder: 'id-merge-editor-placeholder',
diff --git a/apps/common/main/lib/view/ExternalOleEditor.js b/apps/common/main/lib/view/ExternalOleEditor.js
index 415705b13..f3338b492 100644
--- a/apps/common/main/lib/view/ExternalOleEditor.js
+++ b/apps/common/main/lib/view/ExternalOleEditor.js
@@ -46,6 +46,7 @@ define([
initialize : function(options) {
var _options = {};
_.extend(_options, {
+ id: 'id-external-ole-editor',
title: this.textTitle,
storageName: 'ole-editor',
sdkplaceholder: 'id-ole-editor-placeholder',
diff --git a/apps/common/main/lib/view/ReviewPopover.js b/apps/common/main/lib/view/ReviewPopover.js
index 0c8c31b42..2d26dec68 100644
--- a/apps/common/main/lib/view/ReviewPopover.js
+++ b/apps/common/main/lib/view/ReviewPopover.js
@@ -173,6 +173,17 @@ define([
var text = $(this.el).find('textarea');
return (text && text.length) ? text.val().trim() : '';
},
+ disableTextBoxButton: function(textboxEl) {
+ var button = $(textboxEl.siblings('#id-comments-change-popover')[0]);
+
+ if(textboxEl.val().trim().length > 0) {
+ button.removeAttr('disabled');
+ button.removeClass('disabled');
+ } else {
+ button.attr('disabled', true);
+ button.addClass('disabled');
+ }
+ },
autoHeightTextBox: function () {
var view = this,
textBox = this.$el.find('textarea'),
@@ -183,6 +194,7 @@ define([
oldHeight = 0,
newHeight = 0;
+
function updateTextBoxHeight() {
scrollPos = parentView.scroller.getScrollTop();
if (domTextBox.scrollHeight > domTextBox.clientHeight) {
@@ -211,13 +223,20 @@ define([
parentView.autoScrollToEditButtons();
}
+ function onTextareaInput(event) {
+ updateTextBoxHeight();
+ view.disableTextBoxButton($(event.target));
+ }
+
+
if (textBox && textBox.length && parentView.scroller) {
domTextBox = textBox.get(0);
+ view.disableTextBoxButton(textBox);
if (domTextBox) {
lineHeight = parseInt(textBox.css('lineHeight'), 10) * 0.25;
updateTextBoxHeight();
- textBox.bind('input propertychange', updateTextBoxHeight)
+ textBox.bind('input propertychange', onTextareaInput)
}
}
@@ -240,13 +259,14 @@ define([
el: $('#id-comments-popover'),
itemTemplate: _.template(replaceWords(commentsTemplate, {
textAddReply: me.textAddReply,
+ textMentionReply: me.canRequestSendNotify ? (me.mentionShare ? me.textMention : me.textMentionNotify) : me.textAddReply,
textAdd: me.textAdd,
textCancel: me.textCancel,
textEdit: me.textEdit,
textReply: me.textReply,
textClose: me.textClose,
maxCommLength: Asc.c_oAscMaxCellOrCommentLength,
- textMention: me.canRequestSendNotify ? (me.mentionShare ? me.textMention : me.textMentionNotify) : ''
+ textMentionComment: me.canRequestSendNotify ? (me.mentionShare ? me.textMention : me.textMentionNotify) : me.textEnterComment
})
)
});
@@ -321,7 +341,9 @@ define([
if (record.get('hint')) {
me.fireEvent('comment:disableHint', [record]);
- return;
+
+ if(!record.get('fullInfoInHint'))
+ return;
}
if (btn.hasClass('btn-edit')) {
@@ -516,8 +538,10 @@ define([
},
'animate:before': function () {
var text = me.$window.find('textarea');
- if (text && text.length)
+ if (text && text.length){
text.focus();
+ me.commentsView.disableTextBoxButton(text);
+ }
}
});
}
@@ -1292,6 +1316,7 @@ define([
textFollowMove : 'Follow Move',
textMention : '+mention will provide access to the document and send an email',
textMentionNotify : '+mention will notify the user via email',
+ textEnterComment : 'Enter your comment here',
textViewResolved : 'You have not permission for reopen comment',
txtAccept: 'Accept',
txtReject: 'Reject',
diff --git a/apps/common/main/resources/img/toolbar/1x/text-box-horizontal.png b/apps/common/main/resources/img/toolbar/1x/text-box-horizontal.png
deleted file mode 100644
index 4dbaf0d6e..000000000
Binary files a/apps/common/main/resources/img/toolbar/1x/text-box-horizontal.png and /dev/null differ
diff --git a/apps/common/main/resources/img/toolbar/1x/text-box-vertical.png b/apps/common/main/resources/img/toolbar/1x/text-box-vertical.png
deleted file mode 100644
index 0aa4448aa..000000000
Binary files a/apps/common/main/resources/img/toolbar/1x/text-box-vertical.png and /dev/null differ
diff --git a/apps/common/main/resources/less/comments.less b/apps/common/main/resources/less/comments.less
index c911a59e1..97782a53e 100644
--- a/apps/common/main/resources/less/comments.less
+++ b/apps/common/main/resources/less/comments.less
@@ -70,7 +70,7 @@
label {
color: @text-normal-ie;
color: @text-normal;
- font: 12px arial;
+ font-size: 12px;
line-height: normal;
border-bottom: @scaled-one-px-value-ie dotted @text-normal-ie;
border-bottom: @scaled-one-px-value dotted @text-normal;
@@ -120,7 +120,7 @@
.dataview-ct {
width: 100%;
height: 100%;
- font: 12px arial;
+ font-size: 12px;
line-height: normal;
position: relative;
overflow: hidden;
diff --git a/apps/common/main/resources/less/common.less b/apps/common/main/resources/less/common.less
index aee84bd0f..b7c6f6918 100644
--- a/apps/common/main/resources/less/common.less
+++ b/apps/common/main/resources/less/common.less
@@ -298,4 +298,7 @@ body {
&.pixel-ratio__1_75 {
image-rendering: crisp-edges; // FF only
}
+
+ font-family: @font-family-sans-serif;
+ font-family: @font-family-base;
}
\ No newline at end of file
diff --git a/apps/common/main/resources/less/variables.less b/apps/common/main/resources/less/variables.less
index 0660a8c87..0fd142adc 100644
--- a/apps/common/main/resources/less/variables.less
+++ b/apps/common/main/resources/less/variables.less
@@ -60,7 +60,7 @@
@font-family-serif: Georgia, "Times New Roman", Times, serif;
@font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace;
@font-family-tahoma: tahoma, arial, verdana, sans-serif;
-@font-family-base: @font-family-sans-serif;
+@font-family-base: var(--font-family-base-custom, @font-family-sans-serif), @font-family-sans-serif;
@font-size-base: 11px;
@font-size-large: 13px;
diff --git a/apps/common/mobile/lib/controller/collaboration/Review.jsx b/apps/common/mobile/lib/controller/collaboration/Review.jsx
index d6db4d966..820bfa2ea 100644
--- a/apps/common/mobile/lib/controller/collaboration/Review.jsx
+++ b/apps/common/mobile/lib/controller/collaboration/Review.jsx
@@ -277,7 +277,7 @@ class ReviewChange extends Component {
}
if (value.Get_VertAlign() !== undefined) {
proptext.length > 0 && proptext.push();
- proptext.push();
+ proptext.push();
}
if (value.Get_Color() !== undefined) {
proptext.length > 0 && proptext.push();
diff --git a/apps/common/mobile/resources/css/skeleton.css b/apps/common/mobile/resources/css/skeleton.css
index 0ac99096e..85c8c2031 100644
--- a/apps/common/mobile/resources/css/skeleton.css
+++ b/apps/common/mobile/resources/css/skeleton.css
@@ -116,3 +116,31 @@ body.theme-type-dark {
50% { opacity:1; }
100% { opacity:0.1; }
}
+
+.md .navbar.navbar-with-logo {
+ height: 34px;
+}
+
+.ios .navbar.navbar-with-logo {
+ height: 26px;
+}
+
+:root .theme-type-dark {
+ --f7-navbar-bg-color: #232323;
+ --f7-subnavbar-bg-color: #232323;
+}
+
+.md .word-editor {
+ --f7-navbar-bg-color: var(--background-navbar-word, #446995);
+ --f7-subnavbar-bg-color: var(--background-navbar-word, #446995);
+}
+
+.md .cell-editor {
+ --f7-navbar-bg-color: var(--background-navbar-word, #40865c);
+ --f7-subnavbar-bg-color: var(--background-navbar-word, #40865c);
+}
+
+.md .slide-editor {
+ --f7-navbar-bg-color: var(--background-navbar-word, #aa5252);
+ --f7-subnavbar-bg-color: var(--background-navbar-word, #aa5252);
+}
\ No newline at end of file
diff --git a/apps/common/mobile/utils/htmlutils.js b/apps/common/mobile/utils/htmlutils.js
index 6f04e0041..7c1cbc0b5 100644
--- a/apps/common/mobile/utils/htmlutils.js
+++ b/apps/common/mobile/utils/htmlutils.js
@@ -15,11 +15,11 @@ if ( localStorage && localStorage.getItem('mobile-mode-direction') === 'rtl' ) {
load_stylesheet('./css/framework7.css')
}
-let obj = !localStorage ? {id: 'theme-light', type: 'light'} : JSON.parse(localStorage.getItem("ui-theme"));
+let obj = !localStorage ? {id: 'theme-light', type: 'light'} : JSON.parse(localStorage.getItem("mobile-ui-theme"));
if ( !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));
+ localStorage && localStorage.setItem("mobile-ui-theme", JSON.stringify(obj));
}
-document.body.classList.add(`theme-type-${obj.type}`);
+document.body.classList.add(`theme-type-${obj.type}`, `${window.asceditor}-editor`);
diff --git a/apps/documenteditor/embed/js/ApplicationController.js b/apps/documenteditor/embed/js/ApplicationController.js
index ae1d89786..9bd89517b 100644
--- a/apps/documenteditor/embed/js/ApplicationController.js
+++ b/apps/documenteditor/embed/js/ApplicationController.js
@@ -753,6 +753,19 @@ DE.ApplicationController = new(function(){
message = me.errorTokenExpire;
break;
+ case Asc.c_oAscError.ID.ConvertationOpenFormat:
+ if (errData === 'pdf')
+ message = me.errorInconsistentExtPdf.replace('%1', docConfig.fileType || '');
+ else if (errData === 'docx')
+ message = me.errorInconsistentExtDocx.replace('%1', docConfig.fileType || '');
+ else if (errData === 'xlsx')
+ message = me.errorInconsistentExtXlsx.replace('%1', docConfig.fileType || '');
+ else if (errData === 'pptx')
+ message = me.errorInconsistentExtPptx.replace('%1', docConfig.fileType || '');
+ else
+ message = me.errorInconsistentExt;
+ break;
+
default:
message = me.errorDefaultMessage.replace('%1', id);
break;
@@ -962,6 +975,11 @@ DE.ApplicationController = new(function(){
errorLoadingFont: 'Fonts are not loaded. Please contact your Document Server administrator.',
errorTokenExpire: 'The document security token has expired. Please contact your Document Server administrator.',
openErrorText: 'An error has occurred while opening the file',
- textCtrl: 'Ctrl'
+ textCtrl: 'Ctrl',
+ errorInconsistentExtDocx: 'An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.',
+ errorInconsistentExtXlsx: 'An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.',
+ errorInconsistentExtPptx: 'An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.',
+ errorInconsistentExtPdf: 'An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.',
+ errorInconsistentExt: 'An error has occurred while opening the file. The file content does not match the file extension.'
}
})();
\ No newline at end of file
diff --git a/apps/documenteditor/embed/locale/de.json b/apps/documenteditor/embed/locale/de.json
index 84108feb6..778900559 100644
--- a/apps/documenteditor/embed/locale/de.json
+++ b/apps/documenteditor/embed/locale/de.json
@@ -16,6 +16,11 @@
"DE.ApplicationController.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.",
"DE.ApplicationController.errorFileSizeExceed": "Die Dateigröße überschreitet die für Ihren Server festgelegte Einschränkung. Weitere Informationen können Sie von Ihrem Document Server-Administrator erhalten.",
"DE.ApplicationController.errorForceSave": "Beim Speichern der Datei ist ein Fehler aufgetreten. Verwenden Sie die Option \"Herunterladen als\", um die Datei auf Ihrer Computerfestplatte zu speichern oder versuchen Sie es später erneut.",
+ "DE.ApplicationController.errorInconsistentExt": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei stimmt nicht mit der Dateierweiterung überein.",
+ "DE.ApplicationController.errorInconsistentExtDocx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Textdokumenten (z.B. docx), aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "DE.ApplicationController.errorInconsistentExtPdf": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht einem der folgenden Formate: pdf/djvu/xps/oxps, aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "DE.ApplicationController.errorInconsistentExtPptx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Präsentationen (z.B. pptx), aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "DE.ApplicationController.errorInconsistentExtXlsx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Tabellenkalkulationen (z.B. xlsx), aber die Datei hat die inkonsistente Erweiterung: %1.",
"DE.ApplicationController.errorLoadingFont": "Schriftarten nicht hochgeladen. Bitte wenden Sie sich an Administratoren von Ihrem Document Server.",
"DE.ApplicationController.errorSubmit": "Fehler beim Senden.",
"DE.ApplicationController.errorTokenExpire": "Sicherheitstoken des Dokuments ist abgelaufen. Wenden Sie sich an Ihren Serveradministrator.",
diff --git a/apps/documenteditor/embed/locale/el.json b/apps/documenteditor/embed/locale/el.json
index ce18851e5..c03b0a138 100644
--- a/apps/documenteditor/embed/locale/el.json
+++ b/apps/documenteditor/embed/locale/el.json
@@ -26,6 +26,7 @@
"DE.ApplicationController.scriptLoadError": "Η σύνδεση είναι πολύ αργή, δεν ήταν δυνατή η φόρτωση ορισμένων στοιχείων. Φορτώστε ξανά τη σελίδα.",
"DE.ApplicationController.textAnonymous": "Ανώνυμος",
"DE.ApplicationController.textClear": "Εκκαθάριση Όλων των Πεδίων",
+ "DE.ApplicationController.textCtrl": "Ctrl",
"DE.ApplicationController.textGotIt": "Ελήφθη",
"DE.ApplicationController.textGuest": "Επισκέπτης",
"DE.ApplicationController.textLoadingDocument": "Φόρτωση εγγράφου",
diff --git a/apps/documenteditor/embed/locale/en.json b/apps/documenteditor/embed/locale/en.json
index 19ebd329f..7e4bf26f8 100644
--- a/apps/documenteditor/embed/locale/en.json
+++ b/apps/documenteditor/embed/locale/en.json
@@ -16,6 +16,11 @@
"DE.ApplicationController.errorFilePassProtect": "The file is password protected and cannot be opened.",
"DE.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server. Please contact your Document Server administrator for details.",
"DE.ApplicationController.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.",
+ "DE.ApplicationController.errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "DE.ApplicationController.errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "DE.ApplicationController.errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "DE.ApplicationController.errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "DE.ApplicationController.errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
"DE.ApplicationController.errorLoadingFont": "Fonts are not loaded. Please contact your Document Server administrator.",
"DE.ApplicationController.errorSubmit": "Submit failed.",
"DE.ApplicationController.errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
diff --git a/apps/documenteditor/embed/locale/es.json b/apps/documenteditor/embed/locale/es.json
index f9cdaf4c1..258214100 100644
--- a/apps/documenteditor/embed/locale/es.json
+++ b/apps/documenteditor/embed/locale/es.json
@@ -16,6 +16,11 @@
"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.errorInconsistentExt": "Se ha producido un error al abrir el archivo. El contenido del archivo no coincide con la extensión del mismo.",
+ "DE.ApplicationController.errorInconsistentExtDocx": "Se ha producido un error al abrir el archivo. El contenido del archivo corresponde a documentos de texto (por ejemplo, docx), pero el archivo tiene extensión inconsistente: %1.",
+ "DE.ApplicationController.errorInconsistentExtPdf": "Se ha producido un error al abrir el archivo. El contenido del archivo corresponde a uno de los siguientes formatos: pdf/djvu/xps/oxps, pero el archivo tiene extensión inconsistente: %1.",
+ "DE.ApplicationController.errorInconsistentExtPptx": "Se ha producido un error al abrir el archivo. El contenido del archivo corresponde a presentaciones (por ejemplo, pptx), pero el archivo tiene extensión inconsistente: %1.",
+ "DE.ApplicationController.errorInconsistentExtXlsx": "Se ha producido un error al abrir el archivo. El contenido del archivo corresponde a hojas de cálculo (por ejemplo, xlsx), pero el archivo tiene extensión inconsistente: %1.",
"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. Contacte con el administrador del servidor de documentos",
diff --git a/apps/documenteditor/embed/locale/fr.json b/apps/documenteditor/embed/locale/fr.json
index 0b47feac9..e53864f10 100644
--- a/apps/documenteditor/embed/locale/fr.json
+++ b/apps/documenteditor/embed/locale/fr.json
@@ -16,6 +16,11 @@
"DE.ApplicationController.errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut pas être ouvert.",
"DE.ApplicationController.errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur. Veuillez contacter votre administrateur de Document Server pour obtenir plus d'informations. ",
"DE.ApplicationController.errorForceSave": "Une erreur est survenue lors de l'enregistrement du fichier. Veuillez utiliser l'option «Télécharger en tant que» pour enregistrer le fichier sur le disque dur de votre ordinateur ou réessayer plus tard.",
+ "DE.ApplicationController.errorInconsistentExt": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier ne correspond pas à l'extension du fichier.",
+ "DE.ApplicationController.errorInconsistentExtDocx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des documents texte (par exemple docx), mais le fichier a une extension incohérente : %1.",
+ "DE.ApplicationController.errorInconsistentExtPdf": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à l'un des formats suivants : pdf/djvu/xps/oxps, mais le fichier a l'extension incohérente : %1.",
+ "DE.ApplicationController.errorInconsistentExtPptx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des présentations (par exemple pptx), mais le fichier a une extension incohérente : %1.",
+ "DE.ApplicationController.errorInconsistentExtXlsx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des feuilles de calcul (par exemple xlsx), mais le fichier a une extension incohérente : %1.",
"DE.ApplicationController.errorLoadingFont": "Les polices ne sont pas téléchargées. Veuillez contacter l'administrateur de Document Server.",
"DE.ApplicationController.errorSubmit": "Échec de soumission",
"DE.ApplicationController.errorTokenExpire": "Le jeton de sécurité du document a expiré. Veuillez contactez l'administrateur de Document Server.",
diff --git a/apps/documenteditor/embed/locale/hy.json b/apps/documenteditor/embed/locale/hy.json
index 1a0ce5fa9..f1cf6245e 100644
--- a/apps/documenteditor/embed/locale/hy.json
+++ b/apps/documenteditor/embed/locale/hy.json
@@ -16,6 +16,11 @@
"DE.ApplicationController.errorFilePassProtect": "Ֆայլն ունի գաղտնաբառ և չի կարող բացվել։",
"DE.ApplicationController.errorFileSizeExceed": "Ֆայլի չափը գերազանցում է ձեր սերվերի համար սահմանված սահմանափակումը: Մանրամասների համար խնդրում ենք կապվել Ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:",
"DE.ApplicationController.errorForceSave": "Սխալ է տեղի ունեցել ֆայլը պահելիս:Խնդրում ենք օգտագործել «Ներբեռնել որպես» տարբերակը՝ ֆայլը ձեր համակարգչի կոշտ սկավառակում պահելու համար կամ ավելի ուշ նորից փորձեք:",
+ "DE.ApplicationController.errorInconsistentExt": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը չի համապատասխանում ֆայլի ընդլայնմանը:",
+ "DE.ApplicationController.errorInconsistentExtDocx": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը համապատասխանում է տեքստային փաստաթղթերին (օրինակ՝ docx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում՝ %1:",
+ "DE.ApplicationController.errorInconsistentExtPdf": "Ֆայլը բացելիս սխալ է տեղի ունեցել:Ֆայլի բովանդակությունը համապատասխանում է հետևյալ ձևաչափերից մեկին՝pdf/djvu/xps/oxps,բայց ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
+ "DE.ApplicationController.errorInconsistentExtPptx": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը համապատասխանում է ներկայացումներին (օրինակ՝ pptx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
+ "DE.ApplicationController.errorInconsistentExtXlsx": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը համապատասխանում է աղյուսակներին (օր. xlsx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
"DE.ApplicationController.errorLoadingFont": "Տառատեսակները բեռնված չեն: Խնդրում ենք կապվել ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:",
"DE.ApplicationController.errorSubmit": "Չհաջողվեց հաստատել",
"DE.ApplicationController.errorTokenExpire": "Փաստաթղթի անվտանգության կտրոնի ժամկետն անցել է։ Դիմեք փաստաթղթերի սպասարկիչի ձեր վարիչին։",
diff --git a/apps/documenteditor/embed/locale/pt.json b/apps/documenteditor/embed/locale/pt.json
index aa2e46dc1..9e3654878 100644
--- a/apps/documenteditor/embed/locale/pt.json
+++ b/apps/documenteditor/embed/locale/pt.json
@@ -16,6 +16,11 @@
"DE.ApplicationController.errorFilePassProtect": "O documento é protegido por senha e não pode ser aberto.",
"DE.ApplicationController.errorFileSizeExceed": "O tamanho do arquivo excede o limite de seu servidor. Por favor, contate seu administrador de Servidor de Documentos para detalhes.",
"DE.ApplicationController.errorForceSave": "Ocorreu um erro na gravação. Favor utilizar a opção 'Baixar como' para gravar o arquivo em seu computador ou tente novamente mais tarde.",
+ "DE.ApplicationController.errorInconsistentExt": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo não corresponde à extensão do arquivo.",
+ "DE.ApplicationController.errorInconsistentExtDocx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a documentos de texto (por exemplo, docx), mas o arquivo tem a extensão inconsistente: %1.",
+ "DE.ApplicationController.errorInconsistentExtPdf": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a um dos seguintes formatos: pdf/djvu/xps/oxps, mas o arquivo tem a extensão inconsistente: %1.",
+ "DE.ApplicationController.errorInconsistentExtPptx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a apresentações (por exemplo, pptx), mas o arquivo tem a extensão inconsistente: %1.",
+ "DE.ApplicationController.errorInconsistentExtXlsx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a planilhas (por exemplo, xlsx), mas o arquivo tem a extensão inconsistente: %1.",
"DE.ApplicationController.errorLoadingFont": "As fontes não foram carregadas. Entre em contato com o administrador do Document Server.",
"DE.ApplicationController.errorSubmit": "Falha no envio.",
"DE.ApplicationController.errorTokenExpire": "O token de segurança do documento expirou. Entre em contato com o administrador do Document Server.",
diff --git a/apps/documenteditor/embed/locale/ru.json b/apps/documenteditor/embed/locale/ru.json
index 64800605c..aa7c76edd 100644
--- a/apps/documenteditor/embed/locale/ru.json
+++ b/apps/documenteditor/embed/locale/ru.json
@@ -16,6 +16,11 @@
"DE.ApplicationController.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.",
"DE.ApplicationController.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера. Обратитесь к администратору Сервера документов для получения дополнительной информации.",
"DE.ApplicationController.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.",
+ "DE.ApplicationController.errorInconsistentExt": "При открытии файла произошла ошибка. Содержимое файла не соответствует расширению файла.",
+ "DE.ApplicationController.errorInconsistentExtDocx": "При открытии файла произошла ошибка. Содержимое файла соответствует документам (например, docx), но файл имеет несоответствующее расширение: %1.",
+ "DE.ApplicationController.errorInconsistentExtPdf": "При открытии файла произошла ошибка. Содержимое файла соответствует одному из следующих форматов: pdf/djvu/xps/oxps, но файл имеет несоответствующее расширение: %1.",
+ "DE.ApplicationController.errorInconsistentExtPptx": "При открытии файла произошла ошибка. Содержимое файла соответствует презентациям (например, pptx), но файл имеет несоответствующее расширение: %1.",
+ "DE.ApplicationController.errorInconsistentExtXlsx": "При открытии файла произошла ошибка. Содержимое файла соответствует электронным таблицам (например, xlsx), но файл имеет несоответствующее расширение: %1.",
"DE.ApplicationController.errorLoadingFont": "Шрифты не загружены. Пожалуйста, обратитесь к администратору Сервера документов.",
"DE.ApplicationController.errorSubmit": "Не удалось отправить.",
"DE.ApplicationController.errorTokenExpire": "Истек срок действия токена безопасности документа. Пожалуйста, обратитесь к администратору Сервера документов.",
diff --git a/apps/documenteditor/forms/app/controller/ApplicationController.js b/apps/documenteditor/forms/app/controller/ApplicationController.js
index 2f86dcea2..3938469ce 100644
--- a/apps/documenteditor/forms/app/controller/ApplicationController.js
+++ b/apps/documenteditor/forms/app/controller/ApplicationController.js
@@ -301,6 +301,20 @@ define([
config.msg = this.errorTextFormWrongFormat;
break;
+ case Asc.c_oAscError.ID.ConvertationOpenFormat:
+ config.maxwidth = 600;
+ if (errData === 'pdf')
+ config.msg = this.errorInconsistentExtPdf.replace('%1', this.document.fileType || '');
+ else if (errData === 'docx')
+ config.msg = this.errorInconsistentExtDocx.replace('%1', this.document.fileType || '');
+ else if (errData === 'xlsx')
+ config.msg = this.errorInconsistentExtXlsx.replace('%1', this.document.fileType || '');
+ else if (errData === 'pptx')
+ config.msg = this.errorInconsistentExtPptx.replace('%1', this.document.fileType || '');
+ else
+ config.msg = this.errorInconsistentExt;
+ break;
+
default:
config.msg = (typeof id == 'string') ? id : this.errorDefaultMessage.replace('%1', id);
break;
@@ -1909,7 +1923,12 @@ define([
textSaveAsDesktop: 'Save as...',
warnLicenseExp: 'Your license has expired. Please update your license and refresh the page.',
titleLicenseExp: 'License expired',
- errorTextFormWrongFormat: 'The value entered does not match the format of the field.'
+ errorTextFormWrongFormat: 'The value entered does not match the format of the field.',
+ errorInconsistentExtDocx: 'An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.',
+ errorInconsistentExtXlsx: 'An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.',
+ errorInconsistentExtPptx: 'An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.',
+ errorInconsistentExtPdf: 'An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.',
+ errorInconsistentExt: 'An error has occurred while opening the file. The file content does not match the file extension.'
}, DE.Controllers.ApplicationController));
diff --git a/apps/documenteditor/forms/locale/ca.json b/apps/documenteditor/forms/locale/ca.json
index d87380af1..a7fb0f315 100644
--- a/apps/documenteditor/forms/locale/ca.json
+++ b/apps/documenteditor/forms/locale/ca.json
@@ -53,7 +53,7 @@
"Common.UI.Window.yesButtonText": "Sí",
"Common.Views.CopyWarningDialog.textDontShow": "No tornis a mostrar aquest missatge",
"Common.Views.CopyWarningDialog.textMsg": "Les accions de copia, retalla i enganxa utilitzant el menú contextual només es realitzaran dins d'aquesta pestanya de l'editor.
Per copiar o enganxar a o des d'aplicacions fora de la pestanya de l'editor utilitza les següents combinacions de teclat:",
- "Common.Views.CopyWarningDialog.textTitle": "Accions de copia, talla i enganxa ",
+ "Common.Views.CopyWarningDialog.textTitle": "Accions de Copiar, Tallar i Enganxar ",
"Common.Views.CopyWarningDialog.textToCopy": "Per copiar",
"Common.Views.CopyWarningDialog.textToCut": "Per tallar",
"Common.Views.CopyWarningDialog.textToPaste": "Per enganxar",
@@ -65,7 +65,7 @@
"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.closeButtonText": "Tancar fitxer",
"Common.Views.OpenDialog.txtEncoding": "Codificació",
"Common.Views.OpenDialog.txtIncorrectPwd": "La contrasenya no és correcta.",
"Common.Views.OpenDialog.txtOpenFile": "Introduïu una contrasenya per obrir el fitxer",
@@ -73,11 +73,11 @@
"Common.Views.OpenDialog.txtPreview": "Visualització prèvia",
"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.OpenDialog.txtTitleProtected": "Arxiu 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": "Seleccioneu l'origen de les dades",
+ "Common.Views.SelectFileDlg.textTitle": "Selecciona 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! Utilitzeu la drecera de teclat [Ctrl] + [C]",
diff --git a/apps/documenteditor/forms/locale/de.json b/apps/documenteditor/forms/locale/de.json
index 572e434de..b10b424a5 100644
--- a/apps/documenteditor/forms/locale/de.json
+++ b/apps/documenteditor/forms/locale/de.json
@@ -96,6 +96,11 @@
"DE.Controllers.ApplicationController.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.",
"DE.Controllers.ApplicationController.errorFileSizeExceed": "Die Dateigröße überschreitet die für Ihren Server festgelegte Einschränkung. Weitere Informationen können Sie von Ihrem Document Server-Administrator erhalten.",
"DE.Controllers.ApplicationController.errorForceSave": "Beim Speichern der Datei ist ein Fehler aufgetreten. Verwenden Sie die Option \"Herunterladen als\", um die Datei auf Ihrer Computerfestplatte zu speichern oder versuchen Sie es später erneut.",
+ "DE.Controllers.ApplicationController.errorInconsistentExt": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei stimmt nicht mit der Dateierweiterung überein.",
+ "DE.Controllers.ApplicationController.errorInconsistentExtDocx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Textdokumenten (z.B. docx), aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "DE.Controllers.ApplicationController.errorInconsistentExtPdf": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht einem der folgenden Formate: pdf/djvu/xps/oxps, aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "DE.Controllers.ApplicationController.errorInconsistentExtPptx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Präsentationen (z.B. pptx), aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "DE.Controllers.ApplicationController.errorInconsistentExtXlsx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Tabellenkalkulationen (z.B. xlsx), aber die Datei hat die inkonsistente Erweiterung: %1.",
"DE.Controllers.ApplicationController.errorLoadingFont": "Schriftarten nicht hochgeladen. Bitte wenden Sie sich an Administratoren von Ihrem Document Server.",
"DE.Controllers.ApplicationController.errorServerVersion": "Version des Editors wurde aktualisiert. Die Seite wird neu geladen, um die Änderungen zu übernehmen.",
"DE.Controllers.ApplicationController.errorSessionAbsolute": "Die Bearbeitungssitzung des Dokumentes ist abgelaufen. Laden Sie die Seite neu.",
diff --git a/apps/documenteditor/forms/locale/el.json b/apps/documenteditor/forms/locale/el.json
index 2d89e8f08..c7ed14e8f 100644
--- a/apps/documenteditor/forms/locale/el.json
+++ b/apps/documenteditor/forms/locale/el.json
@@ -65,7 +65,7 @@
"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.closeButtonText": "Κλείσιμο αρχείου",
"Common.Views.OpenDialog.txtEncoding": "Κωδικοποίηση",
"Common.Views.OpenDialog.txtIncorrectPwd": "Το συνθηματικό είναι εσφαλμένο.",
"Common.Views.OpenDialog.txtOpenFile": "Εισάγετε συνθηματικό για να ανοίξετε το αρχείο",
diff --git a/apps/documenteditor/forms/locale/en.json b/apps/documenteditor/forms/locale/en.json
index 35aae0701..b0e29eb68 100644
--- a/apps/documenteditor/forms/locale/en.json
+++ b/apps/documenteditor/forms/locale/en.json
@@ -53,7 +53,7 @@
"Common.UI.Window.yesButtonText": "Yes",
"Common.Views.CopyWarningDialog.textDontShow": "Don't show this message again",
"Common.Views.CopyWarningDialog.textMsg": "Copy, cut and paste actions using context menu actions will be performed within this editor tab only.
To copy or paste to or from applications outside the editor tab use the following keyboard combinations:",
- "Common.Views.CopyWarningDialog.textTitle": "Copy, Cut and Paste Actions",
+ "Common.Views.CopyWarningDialog.textTitle": "Copy, Cut and Paste actions",
"Common.Views.CopyWarningDialog.textToCopy": "for Copy",
"Common.Views.CopyWarningDialog.textToCut": "for Cut",
"Common.Views.CopyWarningDialog.textToPaste": "for Paste",
@@ -65,7 +65,7 @@
"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.OpenDialog.closeButtonText": "Close File",
+ "Common.Views.OpenDialog.closeButtonText": "Close file",
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
"Common.Views.OpenDialog.txtIncorrectPwd": "Password is incorrect.",
"Common.Views.OpenDialog.txtOpenFile": "Enter a password to open the file",
@@ -73,12 +73,12 @@
"Common.Views.OpenDialog.txtPreview": "Preview",
"Common.Views.OpenDialog.txtProtected": "Once you enter the password and open the file, the current password to the file will be reset.",
"Common.Views.OpenDialog.txtTitle": "Choose %1 options",
- "Common.Views.OpenDialog.txtTitleProtected": "Protected File",
+ "Common.Views.OpenDialog.txtTitleProtected": "Protected file",
"Common.Views.SaveAsDlg.textLoading": "Loading",
"Common.Views.SaveAsDlg.textTitle": "Folder for save",
"Common.Views.SelectFileDlg.textLoading": "Loading",
- "Common.Views.SelectFileDlg.textTitle": "Select Data Source",
- "Common.Views.ShareDialog.textTitle": "Share Link",
+ "Common.Views.SelectFileDlg.textTitle": "Select data source",
+ "Common.Views.ShareDialog.textTitle": "Share link",
"Common.Views.ShareDialog.txtCopy": "Copy to clipboard",
"Common.Views.ShareDialog.warnCopy": "Browser's error! Use keyboard shortcut [Ctrl] + [C]",
"DE.Controllers.ApplicationController.convertationErrorText": "Conversion failed.",
@@ -96,6 +96,11 @@
"DE.Controllers.ApplicationController.errorFilePassProtect": "The file is password protected and cannot be opened.",
"DE.Controllers.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server. Please contact your Document Server administrator for details.",
"DE.Controllers.ApplicationController.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.",
+ "DE.Controllers.ApplicationController.errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "DE.Controllers.ApplicationController.errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "DE.Controllers.ApplicationController.errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "DE.Controllers.ApplicationController.errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "DE.Controllers.ApplicationController.errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
"DE.Controllers.ApplicationController.errorLoadingFont": "Fonts are not loaded. Please contact your Document Server administrator.",
"DE.Controllers.ApplicationController.errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
"DE.Controllers.ApplicationController.errorSessionAbsolute": "The document editing session has expired. Please reload the page.",
diff --git a/apps/documenteditor/forms/locale/es.json b/apps/documenteditor/forms/locale/es.json
index b0d394af1..67aa5c0fb 100644
--- a/apps/documenteditor/forms/locale/es.json
+++ b/apps/documenteditor/forms/locale/es.json
@@ -96,6 +96,11 @@
"DE.Controllers.ApplicationController.errorFilePassProtect": "El archivo está protegido por una contraseña y no puede ser abierto.",
"DE.Controllers.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.Controllers.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.Controllers.ApplicationController.errorInconsistentExt": "Se ha producido un error al abrir el archivo. El contenido del archivo no coincide con la extensión del mismo.",
+ "DE.Controllers.ApplicationController.errorInconsistentExtDocx": "Se ha producido un error al abrir el archivo. El contenido del archivo corresponde a documentos de texto (por ejemplo, docx), pero el archivo tiene extensión inconsistente: %1.",
+ "DE.Controllers.ApplicationController.errorInconsistentExtPdf": "Se ha producido un error al abrir el archivo. El contenido del archivo corresponde a uno de los siguientes formatos: pdf/djvu/xps/oxps, pero el archivo tiene extensión inconsistente: %1.",
+ "DE.Controllers.ApplicationController.errorInconsistentExtPptx": "Se ha producido un error al abrir el archivo. El contenido del archivo corresponde a presentaciones (por ejemplo, pptx), pero el archivo tiene extensión inconsistente: %1.",
+ "DE.Controllers.ApplicationController.errorInconsistentExtXlsx": "Se ha producido un error al abrir el archivo. El contenido del archivo corresponde a hojas de cálculo (por ejemplo, xlsx), pero el archivo tiene extensión inconsistente: %1.",
"DE.Controllers.ApplicationController.errorLoadingFont": "Las fuentes no están cargadas. Por favor, póngase en contacto con el administrador del Document Server.",
"DE.Controllers.ApplicationController.errorServerVersion": "La versión del editor ha sido actualizada. La página será recargada para aplicar los cambios.",
"DE.Controllers.ApplicationController.errorSessionAbsolute": "La sesión de editar el documento ha expirado. Por favor, recargue la página.",
diff --git a/apps/documenteditor/forms/locale/fr.json b/apps/documenteditor/forms/locale/fr.json
index ac69e85f0..94d258b93 100644
--- a/apps/documenteditor/forms/locale/fr.json
+++ b/apps/documenteditor/forms/locale/fr.json
@@ -53,7 +53,7 @@
"Common.UI.Window.yesButtonText": "Oui",
"Common.Views.CopyWarningDialog.textDontShow": "Ne plus afficher ce message",
"Common.Views.CopyWarningDialog.textMsg": "Les fonctions de copier, couper et coller avec des commandes de menu contextuel ne peuvent être effectuées que dans cet onglet de l'éditeur.
Pour copier ou coller vers ou depuis des applications en dehors de l'onglet d'éditeur, utilisez les raccourcis clavier suivants :",
- "Common.Views.CopyWarningDialog.textTitle": "Fonctions de Copier, Couper et Coller",
+ "Common.Views.CopyWarningDialog.textTitle": "Actions copier, couper et coller",
"Common.Views.CopyWarningDialog.textToCopy": "pour Copier",
"Common.Views.CopyWarningDialog.textToCut": "pour Couper",
"Common.Views.CopyWarningDialog.textToPaste": "pour Coller",
@@ -65,7 +65,7 @@
"Common.Views.ImageFromUrlDialog.textUrl": "Collez l'URL de l'image :",
"Common.Views.ImageFromUrlDialog.txtEmpty": "Ce champ est obligatoire",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Ce champ doit être une URL au format \"http://www.example.com\"",
- "Common.Views.OpenDialog.closeButtonText": "Fermer le fichier",
+ "Common.Views.OpenDialog.closeButtonText": "Fermer fichier",
"Common.Views.OpenDialog.txtEncoding": "Codage",
"Common.Views.OpenDialog.txtIncorrectPwd": "Le mot de passe est incorrect.",
"Common.Views.OpenDialog.txtOpenFile": "Entrez le mot de passe pour ouvrir le fichier",
@@ -78,7 +78,7 @@
"Common.Views.SaveAsDlg.textTitle": "Dossier pour enregistrement",
"Common.Views.SelectFileDlg.textLoading": "Chargement",
"Common.Views.SelectFileDlg.textTitle": "Sélectionner la source de données",
- "Common.Views.ShareDialog.textTitle": "Partager un lien",
+ "Common.Views.ShareDialog.textTitle": "Partager le lien",
"Common.Views.ShareDialog.txtCopy": "Copier dans le presse-papiers",
"Common.Views.ShareDialog.warnCopy": "Erreur du navigateur ! Utilisez le raccourci clavier [Ctrl] + [C]",
"DE.Controllers.ApplicationController.convertationErrorText": "Échec de la conversion.",
@@ -96,6 +96,11 @@
"DE.Controllers.ApplicationController.errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut pas être ouvert.",
"DE.Controllers.ApplicationController.errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur. Veuillez contacter votre administrateur de Document Server pour obtenir plus d'informations. ",
"DE.Controllers.ApplicationController.errorForceSave": "Une erreur est survenue lors de l'enregistrement du fichier. Veuillez utiliser l'option «Télécharger en tant que» pour enregistrer le fichier sur le disque dur de votre ordinateur ou réessayer plus tard.",
+ "DE.Controllers.ApplicationController.errorInconsistentExt": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier ne correspond pas à l'extension du fichier.",
+ "DE.Controllers.ApplicationController.errorInconsistentExtDocx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des documents texte (par exemple docx), mais le fichier a une extension incohérente : %1.",
+ "DE.Controllers.ApplicationController.errorInconsistentExtPdf": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à l'un des formats suivants : pdf/djvu/xps/oxps, mais le fichier a l'extension incohérente : %1.",
+ "DE.Controllers.ApplicationController.errorInconsistentExtPptx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des présentations (par exemple pptx), mais le fichier a une extension incohérente : %1.",
+ "DE.Controllers.ApplicationController.errorInconsistentExtXlsx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des feuilles de calcul (par exemple xlsx), mais le fichier a une extension incohérente : %1.",
"DE.Controllers.ApplicationController.errorLoadingFont": "Les polices ne sont pas téléchargées. Veuillez contacter l'administrateur de Document Server.",
"DE.Controllers.ApplicationController.errorServerVersion": "La version de l'éditeur a été mise à jour. La page sera rechargée pour appliquer les modifications.",
"DE.Controllers.ApplicationController.errorSessionAbsolute": "La session d'édition du document a expiré. Veuillez recharger la page.",
diff --git a/apps/documenteditor/forms/locale/hy.json b/apps/documenteditor/forms/locale/hy.json
index f62b524a0..3fbb724ec 100644
--- a/apps/documenteditor/forms/locale/hy.json
+++ b/apps/documenteditor/forms/locale/hy.json
@@ -96,6 +96,11 @@
"DE.Controllers.ApplicationController.errorFilePassProtect": "Ֆայլն ունի գաղտնաբառ և չի կարող բացվել։",
"DE.Controllers.ApplicationController.errorFileSizeExceed": "Ֆայլի չափը գերազանցում է ձեր սերվերի համար սահմանված սահմանափակումը: Մանրամասների համար խնդրում ենք կապվել Ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:",
"DE.Controllers.ApplicationController.errorForceSave": "Սխալ է տեղի ունեցել ֆայլը պահելիս:Խնդրում ենք օգտագործել «Ներբեռնել որպես» տարբերակը՝ ֆայլը ձեր համակարգչի կոշտ սկավառակում պահելու համար կամ ավելի ուշ նորից փորձեք:",
+ "DE.Controllers.ApplicationController.errorInconsistentExt": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը չի համապատասխանում ֆայլի ընդլայնմանը:",
+ "DE.Controllers.ApplicationController.errorInconsistentExtDocx": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը համապատասխանում է տեքստային փաստաթղթերին (օրինակ՝ docx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում՝ %1:",
+ "DE.Controllers.ApplicationController.errorInconsistentExtPdf": "Ֆայլը բացելիս սխալ է տեղի ունեցել:Ֆայլի բովանդակությունը համապատասխանում է հետևյալ ձևաչափերից մեկին՝pdf/djvu/xps/oxps,բայց ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
+ "DE.Controllers.ApplicationController.errorInconsistentExtPptx": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը համապատասխանում է ներկայացումներին (օրինակ՝ pptx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
+ "DE.Controllers.ApplicationController.errorInconsistentExtXlsx": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը համապատասխանում է աղյուսակներին (օր. xlsx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
"DE.Controllers.ApplicationController.errorLoadingFont": "Տառատեսակները բեռնված չեն: Խնդրում ենք կապվել ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:",
"DE.Controllers.ApplicationController.errorServerVersion": "Խմբագրիչի տարբերակը արդիացվել է։ Որպեսզի փոփոխումները տեղի ունենան, էջը նորից կբեռնվի։",
"DE.Controllers.ApplicationController.errorSessionAbsolute": "Փաստաթղթի խմբագրման գործաժամը սպառվել է։ Նորի՛ց բեռնեք էջը։",
diff --git a/apps/documenteditor/forms/locale/id.json b/apps/documenteditor/forms/locale/id.json
index 43700c0d1..d31bdb3e1 100644
--- a/apps/documenteditor/forms/locale/id.json
+++ b/apps/documenteditor/forms/locale/id.json
@@ -96,6 +96,7 @@
"DE.Controllers.ApplicationController.errorFilePassProtect": "Dokumen dilindungi dengan kata sandi dan tidak dapat dibuka.",
"DE.Controllers.ApplicationController.errorFileSizeExceed": "Ukuran file melewati batas server Anda. Silakan hubungi admin Server Dokumen Anda untuk detail.",
"DE.Controllers.ApplicationController.errorForceSave": "Ada kesalahan saat menyimpan file. Silakan gunakan opsi 'Download sebagai' untuk menyimpan file ke komputer Anda dan coba lagi.",
+ "DE.Controllers.ApplicationController.errorInconsistentExtPdf": "Sebuah kesalahan terjadi ketika membuka file. Isi file berhubungan dengan satu dari format berikut: pdf/djvu/xps/oxps, tapi file memiliki ekstensi yang tidak konsisten: %1.",
"DE.Controllers.ApplicationController.errorLoadingFont": "Font tidak bisa dimuat. Silakan kontak admin Server Dokumen Anda.",
"DE.Controllers.ApplicationController.errorServerVersion": "Versi editor sudah di update. Halaman akan dimuat ulang untuk menerapkan perubahan.",
"DE.Controllers.ApplicationController.errorSessionAbsolute": "Waktu edit dokumen sudah selesai. Silakan muat ulang halaman.",
diff --git a/apps/documenteditor/forms/locale/pt.json b/apps/documenteditor/forms/locale/pt.json
index 154a25d24..8ac11aff8 100644
--- a/apps/documenteditor/forms/locale/pt.json
+++ b/apps/documenteditor/forms/locale/pt.json
@@ -96,6 +96,11 @@
"DE.Controllers.ApplicationController.errorFilePassProtect": "O documento é protegido por senha e não pode ser aberto.",
"DE.Controllers.ApplicationController.errorFileSizeExceed": "O tamanho do arquivo excede o limite de seu servidor. Por favor, contate seu administrador de Servidor de Documentos para detalhes.",
"DE.Controllers.ApplicationController.errorForceSave": "Ocorreu um erro na gravação. Favor utilizar a opção 'Transferir como' para gravar o arquivo em seu computador ou tente novamente mais tarde.",
+ "DE.Controllers.ApplicationController.errorInconsistentExt": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo não corresponde à extensão do arquivo.",
+ "DE.Controllers.ApplicationController.errorInconsistentExtDocx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a documentos de texto (por exemplo, docx), mas o arquivo tem a extensão inconsistente: %1.",
+ "DE.Controllers.ApplicationController.errorInconsistentExtPdf": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a um dos seguintes formatos: pdf/djvu/xps/oxps, mas o arquivo tem a extensão inconsistente: %1.",
+ "DE.Controllers.ApplicationController.errorInconsistentExtPptx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a apresentações (por exemplo, pptx), mas o arquivo tem a extensão inconsistente: %1.",
+ "DE.Controllers.ApplicationController.errorInconsistentExtXlsx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a planilhas (por exemplo, xlsx), mas o arquivo tem a extensão inconsistente: %1.",
"DE.Controllers.ApplicationController.errorLoadingFont": "As fontes não foram carregadas. Entre em contato com o administrador do Document Server.",
"DE.Controllers.ApplicationController.errorServerVersion": "A versão do editor foi atualizada. A página será recarregada para aplicar as alterações.",
"DE.Controllers.ApplicationController.errorSessionAbsolute": "A sessão de edição de documentos expirou. Por Favor atualize a página.",
diff --git a/apps/documenteditor/forms/locale/ru.json b/apps/documenteditor/forms/locale/ru.json
index 5f1b7b09d..989280ef5 100644
--- a/apps/documenteditor/forms/locale/ru.json
+++ b/apps/documenteditor/forms/locale/ru.json
@@ -96,6 +96,11 @@
"DE.Controllers.ApplicationController.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.",
"DE.Controllers.ApplicationController.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера. Обратитесь к администратору Сервера документов для получения дополнительной информации.",
"DE.Controllers.ApplicationController.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.",
+ "DE.Controllers.ApplicationController.errorInconsistentExt": "При открытии файла произошла ошибка. Содержимое файла не соответствует расширению файла.",
+ "DE.Controllers.ApplicationController.errorInconsistentExtDocx": "При открытии файла произошла ошибка. Содержимое файла соответствует документам (например, docx), но файл имеет несоответствующее расширение: %1.",
+ "DE.Controllers.ApplicationController.errorInconsistentExtPdf": "При открытии файла произошла ошибка. Содержимое файла соответствует одному из следующих форматов: pdf/djvu/xps/oxps, но файл имеет несоответствующее расширение: %1.",
+ "DE.Controllers.ApplicationController.errorInconsistentExtPptx": "При открытии файла произошла ошибка. Содержимое файла соответствует презентациям (например, pptx), но файл имеет несоответствующее расширение: %1.",
+ "DE.Controllers.ApplicationController.errorInconsistentExtXlsx": "При открытии файла произошла ошибка. Содержимое файла соответствует электронным таблицам (например, xlsx), но файл имеет несоответствующее расширение: %1.",
"DE.Controllers.ApplicationController.errorLoadingFont": "Шрифты не загружены. Пожалуйста, обратитесь к администратору Сервера документов.",
"DE.Controllers.ApplicationController.errorServerVersion": "Версия редактора была обновлена. Страница будет перезагружена, чтобы применить изменения.",
"DE.Controllers.ApplicationController.errorSessionAbsolute": "Время сеанса редактирования документа истекло. Пожалуйста, обновите страницу.",
diff --git a/apps/documenteditor/main/app/controller/DocumentHolder.js b/apps/documenteditor/main/app/controller/DocumentHolder.js
index a9cbed995..1dfdd92a6 100644
--- a/apps/documenteditor/main/app/controller/DocumentHolder.js
+++ b/apps/documenteditor/main/app/controller/DocumentHolder.js
@@ -2367,7 +2367,7 @@ define([
store: group.get('groupStore'),
scrollAlwaysVisible: true,
showLast: false,
- restoreHeight: 10000,
+ restoreHeight: 450,
itemTemplate: _.template(
'
' +
'' +
@@ -2381,6 +2381,12 @@ define([
});
menu.off('show:before', onShowBefore);
};
+ var bringForward = function (menu) {
+ eqContainer.addClass('has-open-menu');
+ };
+ var sendBackward = function (menu) {
+ eqContainer.removeClass('has-open-menu');
+ };
for (var i = 0; i < equationsStore.length; ++i) {
var equationGroup = equationsStore.at(i);
var btn = new Common.UI.Button({
@@ -2399,6 +2405,8 @@ define([
})
});
btn.menu.on('show:before', onShowBefore);
+ btn.menu.on('show:before', bringForward);
+ btn.menu.on('hide:after', sendBackward);
me.equationBtns.push(btn);
}
@@ -2430,8 +2438,14 @@ define([
showPoint[1] = bounds[3] + 10;
!Common.Utils.InternalSettings.get("de-hidden-rulers") && (showPoint[1] -= 26);
}
- eqContainer.css({left: showPoint[0], top : Math.min(this._Height - eqContainer.outerHeight(), Math.max(0, showPoint[1]))});
- // menu.menuAlign = validation ? 'tr-br' : 'tl-bl';
+ showPoint[1] = Math.min(me._Height - eqContainer.outerHeight(), Math.max(0, showPoint[1]));
+ eqContainer.css({left: showPoint[0], top : showPoint[1]});
+
+ var menuAlign = (me._Height - showPoint[1] - eqContainer.outerHeight() < 220) ? 'bl-tl' : 'tl-bl';
+ me.equationBtns.forEach(function(item){
+ item && (item.menu.menuAlign = menuAlign);
+ });
+ me.equationSettingsBtn.menu.menuAlign = menuAlign;
if (eqContainer.is(':visible')) {
if (me.equationSettingsBtn.menu.isVisible()) {
me.equationSettingsBtn.menu.options.initMenu();
diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js
index 660fc7184..f2dd0f5fa 100644
--- a/apps/documenteditor/main/app/controller/Main.js
+++ b/apps/documenteditor/main/app/controller/Main.js
@@ -380,6 +380,19 @@ define([
Common.Utils.InternalSettings.set("guest-username", value);
Common.Utils.InternalSettings.set("save-guest-username", !!value);
}
+ if (this.appOptions.customization.font) {
+ if (this.appOptions.customization.font.name && typeof this.appOptions.customization.font.name === 'string') {
+ var arr = this.appOptions.customization.font.name.split(',');
+ for (var i=0; iVerify that the CAPS LOCK key is off and be sure to use the correct capitalization.',
confirmMaxChangesSize: 'The size of actions exceeds the limitation set for your server. Press "Undo" to cancel your last action or press "Continue" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).',
textUndo: 'Undo',
- textContinue: 'Continue'
+ textContinue: 'Continue',
+ errorInconsistentExtDocx: 'An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.',
+ errorInconsistentExtXlsx: 'An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.',
+ errorInconsistentExtPptx: 'An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.',
+ errorInconsistentExtPdf: 'An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.',
+ errorInconsistentExt: 'An error has occurred while opening the file. The file content does not match the file extension.'
}
})(), DE.Controllers.Main || {}))
});
\ No newline at end of file
diff --git a/apps/documenteditor/main/app/controller/Search.js b/apps/documenteditor/main/app/controller/Search.js
index aa35b2b1b..47c16acd6 100644
--- a/apps/documenteditor/main/app/controller/Search.js
+++ b/apps/documenteditor/main/app/controller/Search.js
@@ -124,7 +124,7 @@ define([
for (var l = 0; l < text.length; l++) {
var charCode = text.charCodeAt(l),
char = text.charAt(l);
- if (AscCommon.g_aPunctuation[charCode] !== undefined || char.trim() === '') {
+ if (AscCommon.IsPunctuation(charCode) !== undefined || char.trim() === '') {
isPunctuation = true;
break;
}
diff --git a/apps/documenteditor/main/app/view/ProtectDialog.js b/apps/documenteditor/main/app/view/ProtectDialog.js
index 8c41dccea..43c741b60 100644
--- a/apps/documenteditor/main/app/view/ProtectDialog.js
+++ b/apps/documenteditor/main/app/view/ProtectDialog.js
@@ -73,7 +73,7 @@ define([
'',
'
',
'',
- '
',
+ '
',
'',
'
',
'',
diff --git a/apps/documenteditor/main/locale/az.json b/apps/documenteditor/main/locale/az.json
index f71d1a6c8..efff53ac5 100644
--- a/apps/documenteditor/main/locale/az.json
+++ b/apps/documenteditor/main/locale/az.json
@@ -9,6 +9,7 @@
"Common.Controllers.ExternalMergeEditor.textClose": "Bağla",
"Common.Controllers.ExternalMergeEditor.warningText": "Obyekt deaktiv edilib, çünki o, başqa istifadəçi tərəfindən redaktə olunur.",
"Common.Controllers.ExternalMergeEditor.warningTitle": "Xəbərdarlıq",
+ "Common.Controllers.ExternalOleEditor.textAnonymous": "Anonim",
"Common.Controllers.History.notcriticalErrorTitle": "Xəbərdarlıq",
"Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Sənədləri müqayisə etmək üçün edilən bütün dəyişikliklər qəbul edilmiş hesab ediləcək. Davam etmək istəyirsiniz?",
"Common.Controllers.ReviewChanges.textAtLeast": "ən azı",
@@ -242,6 +243,7 @@
"Common.Views.Comments.textAddComment": "Şərh Əlavə Et",
"Common.Views.Comments.textAddCommentToDoc": "Sənədə şərh əlavə et",
"Common.Views.Comments.textAddReply": "Cavab əlavə edin",
+ "Common.Views.Comments.textAll": "Bütün",
"Common.Views.Comments.textAnonym": "Qonaq",
"Common.Views.Comments.textCancel": "Ləğv et",
"Common.Views.Comments.textClose": "Bağla",
@@ -433,6 +435,7 @@
"Common.Views.ReviewPopover.txtReject": "Rədd edin",
"Common.Views.SaveAsDlg.textLoading": "Yüklənir",
"Common.Views.SaveAsDlg.textTitle": "Yadda saxlama üçün qovluq",
+ "Common.Views.SearchPanel.textCaseSensitive": "Böyük-kiçik hərflərə diqqət",
"Common.Views.SelectFileDlg.textLoading": "Yüklənir",
"Common.Views.SelectFileDlg.textTitle": "Verilənlər Mənbəyini Seçin",
"Common.Views.SignDialog.textBold": "Qalın",
@@ -1978,6 +1981,7 @@
"DE.Views.LineNumbersDialog.textStartAt": "Başlayın",
"DE.Views.LineNumbersDialog.textTitle": "Sətir Nömrələri",
"DE.Views.LineNumbersDialog.txtAutoText": "Avto",
+ "DE.Views.Links.capBtnAddText": "Mətn əlavə edin",
"DE.Views.Links.capBtnBookmarks": "Əlfəcin",
"DE.Views.Links.capBtnCaption": "Başlıq",
"DE.Views.Links.capBtnContentsUpdate": "Təzələyin",
@@ -2662,6 +2666,7 @@
"DE.Views.Toolbar.textTabLinks": "İstinadlar",
"DE.Views.Toolbar.textTabProtect": "Qoruma",
"DE.Views.Toolbar.textTabReview": "Nəzərdən keçir",
+ "DE.Views.Toolbar.textTabView": "Görünüş",
"DE.Views.Toolbar.textTitleError": "Xəta",
"DE.Views.Toolbar.textToCurrent": "Cari mövqeyə qədər",
"DE.Views.Toolbar.textTop": "Yuxarı:",
@@ -2753,6 +2758,8 @@
"DE.Views.Toolbar.txtScheme7": "Bərabərlik",
"DE.Views.Toolbar.txtScheme8": "Axın",
"DE.Views.Toolbar.txtScheme9": "Emalatxana",
+ "DE.Views.ViewTab.textInterfaceTheme": "İnterfeys mövzusu",
+ "DE.Views.ViewTab.tipInterfaceTheme": "İnterfeys mövzusu",
"DE.Views.WatermarkSettingsDialog.textAuto": "Avto",
"DE.Views.WatermarkSettingsDialog.textBold": "Qalın",
"DE.Views.WatermarkSettingsDialog.textColor": "Mətn rəngi",
diff --git a/apps/documenteditor/main/locale/be.json b/apps/documenteditor/main/locale/be.json
index 9ae9d4239..a1c3e29f5 100644
--- a/apps/documenteditor/main/locale/be.json
+++ b/apps/documenteditor/main/locale/be.json
@@ -827,6 +827,7 @@
"DE.Controllers.Main.txtSyntaxError": "Сінтаксічная памылка",
"DE.Controllers.Main.txtTableInd": "Індэкс табліцы не можа быць нулём",
"DE.Controllers.Main.txtTableOfContents": "Змест",
+ "DE.Controllers.Main.txtTableOfFigures": "Спіс ілюстрацый",
"DE.Controllers.Main.txtTooLarge": "Лік занадта вялікі для фарматавання",
"DE.Controllers.Main.txtTypeEquation": "Месца для раўнання.",
"DE.Controllers.Main.txtUndefBookmark": "Закладка не вызначаная",
@@ -1682,6 +1683,7 @@
"DE.Views.FileMenuPanels.Settings.strPasteButton": "Паказваць кнопку параметраў устаўкі падчас устаўкі",
"DE.Views.FileMenuPanels.Settings.strShowChanges": "Адлюстроўваць змены падчас сумеснай працы",
"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 хвілін",
@@ -1937,6 +1939,7 @@
"DE.Views.Links.capBtnInsContents": "Змест",
"DE.Views.Links.capBtnInsFootnote": "Зноска",
"DE.Views.Links.capBtnInsLink": "Гіперспасылка",
+ "DE.Views.Links.capBtnTOF": "Спіс ілюстрацый",
"DE.Views.Links.confirmDeleteFootnotes": "Хочаце выдаліць усе зноскі?",
"DE.Views.Links.confirmReplaceTOF": "Хочаце замяніць абраную табліцу фігур?",
"DE.Views.Links.mniConvertNote": "Пераўтварыць усе зноскі",
@@ -2311,6 +2314,7 @@
"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": "Бягучы",
@@ -2705,6 +2709,7 @@
"DE.Views.ViewTab.tipDarkDocument": "Цёмны дакумент",
"DE.Views.ViewTab.tipFitToPage": "Па памеры старонкі",
"DE.Views.ViewTab.tipFitToWidth": "Па шырыні",
+ "DE.Views.ViewTab.tipInterfaceTheme": "Тэма інтэрфейсу",
"DE.Views.WatermarkSettingsDialog.textAuto": "Аўта",
"DE.Views.WatermarkSettingsDialog.textBold": "Тоўсты",
"DE.Views.WatermarkSettingsDialog.textColor": "Колер тэксту",
diff --git a/apps/documenteditor/main/locale/bg.json b/apps/documenteditor/main/locale/bg.json
index 2d9f26f80..d98a282b4 100644
--- a/apps/documenteditor/main/locale/bg.json
+++ b/apps/documenteditor/main/locale/bg.json
@@ -266,6 +266,8 @@
"Common.Views.ReviewChanges.txtChat": "Чат",
"Common.Views.ReviewChanges.txtClose": "Затвори",
"Common.Views.ReviewChanges.txtCoAuthMode": "Режим на съвместно редактиране",
+ "Common.Views.ReviewChanges.txtCommentRemove": "Премахване",
+ "Common.Views.ReviewChanges.txtCommentResolve": "Решение",
"Common.Views.ReviewChanges.txtDocLang": "Език",
"Common.Views.ReviewChanges.txtEditing": "редактиране",
"Common.Views.ReviewChanges.txtFinal": "Всички промени са приети {0}",
@@ -1574,6 +1576,7 @@
"DE.Views.LeftMenu.tipChat": "Чат",
"DE.Views.LeftMenu.tipComments": "Коментари",
"DE.Views.LeftMenu.tipNavigation": "Навигация",
+ "DE.Views.LeftMenu.tipOutline": "Заглавия",
"DE.Views.LeftMenu.tipPlugins": "Добавки",
"DE.Views.LeftMenu.tipSearch": "Търсене",
"DE.Views.LeftMenu.tipSupport": "Обратна връзка и поддръжка",
@@ -1648,6 +1651,7 @@
"DE.Views.MailMergeSettings.txtPrev": "Към предишния запис",
"DE.Views.MailMergeSettings.txtUntitled": "Неозаглавен",
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Започването на сливане не бе успешно",
+ "DE.Views.Navigation.strNavigate": "Заглавия",
"DE.Views.Navigation.txtCollapse": "Свиване на всички",
"DE.Views.Navigation.txtDemote": "Понижавам",
"DE.Views.Navigation.txtEmpty": "Този документ не съдържа заглавия",
@@ -2117,6 +2121,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": "Връх: ",
@@ -2203,6 +2208,9 @@
"DE.Views.Toolbar.txtScheme8": "Поток",
"DE.Views.Toolbar.txtScheme9": "Леярна",
"DE.Views.ViewTab.textInterfaceTheme": "Тема на интерфейса",
+ "DE.Views.ViewTab.textOutline": "Заглавия",
+ "DE.Views.ViewTab.textRulers": "Владетели",
+ "DE.Views.ViewTab.tipHeadings": "Заглавия",
"DE.Views.WatermarkSettingsDialog.textFont": "Шрифт",
"DE.Views.WatermarkSettingsDialog.textLanguage": "Език",
"DE.Views.WatermarkSettingsDialog.textTitle": "Настройки на воден знак"
diff --git a/apps/documenteditor/main/locale/ca.json b/apps/documenteditor/main/locale/ca.json
index 53107a3c8..9d06a7e85 100644
--- a/apps/documenteditor/main/locale/ca.json
+++ b/apps/documenteditor/main/locale/ca.json
@@ -125,6 +125,61 @@
"Common.define.chartData.textScatterSmoothMarker": "Dispersió amb línies suaus i marcadors",
"Common.define.chartData.textStock": "Accions",
"Common.define.chartData.textSurface": "Superfície",
+ "Common.define.smartArt.textAccentedPicture": "Imatge amb èmfasi",
+ "Common.define.smartArt.textAccentProcess": "Procés d'èmfasi",
+ "Common.define.smartArt.textAlternatingFlow": "Flux alternatiu",
+ "Common.define.smartArt.textAlternatingHexagons": "Hexàgons alternants",
+ "Common.define.smartArt.textAlternatingPictureBlocks": "Blocs d'imatges alternatius",
+ "Common.define.smartArt.textAlternatingPictureCircles": "Cercles d'imatges alternatius",
+ "Common.define.smartArt.textArchitectureLayout": "Disposició de l'arquitectura",
+ "Common.define.smartArt.textArrowRibbon": "Banda amb fletxes",
+ "Common.define.smartArt.textAscendingPictureAccentProcess": "Procés d'èmfasi d'imatge ascendent",
+ "Common.define.smartArt.textBalance": "Saldo",
+ "Common.define.smartArt.textBasicBendingProcess": "Procés corb bàsic",
+ "Common.define.smartArt.textBasicBlockList": "Llista de blocs bàsica",
+ "Common.define.smartArt.textBasicChevronProcess": "Procés angular bàsic",
+ "Common.define.smartArt.textBasicCycle": "Cicle bàsic",
+ "Common.define.smartArt.textBasicMatrix": "Matriu bàsica",
+ "Common.define.smartArt.textBasicPie": "Circular bàsic",
+ "Common.define.smartArt.textBasicProcess": "Procés bàsic",
+ "Common.define.smartArt.textBasicPyramid": "Piràmide bàsica",
+ "Common.define.smartArt.textBasicRadial": "Radial bàsic",
+ "Common.define.smartArt.textBasicTarget": "Destinació bàsica",
+ "Common.define.smartArt.textBasicTimeline": "Cronologia bàsica",
+ "Common.define.smartArt.textBasicVenn": "Venn bàsic",
+ "Common.define.smartArt.textBendingPictureAccentList": "Llista d'èmfasi d'imatges corba",
+ "Common.define.smartArt.textBendingPictureBlocks": "Blocs d'imatges corbes",
+ "Common.define.smartArt.textBendingPictureCaption": "Llegenda d'imatge corba",
+ "Common.define.smartArt.textBendingPictureCaptionList": "Llista de llegendes d'imatges corba",
+ "Common.define.smartArt.textBendingPictureSemiTranparentText": "Text d'imatge semitransparent corb",
+ "Common.define.smartArt.textBlockCycle": "Cicle de blocs",
+ "Common.define.smartArt.textBubblePictureList": "Llista d'imatges de bombolla",
+ "Common.define.smartArt.textCaptionedPictures": "Imatges amb llegenda",
+ "Common.define.smartArt.textChevronAccentProcess": "Procés d'èmfasi angular",
+ "Common.define.smartArt.textChevronList": "Llista angular",
+ "Common.define.smartArt.textCircleAccentTimeline": "Cronologia d'èmfasi de cercle",
+ "Common.define.smartArt.textCircleArrowProcess": "Procés de fletxa circular",
+ "Common.define.smartArt.textCirclePictureHierarchy": "Jerarquia d'imatge circular",
+ "Common.define.smartArt.textCircleProcess": "Procés circular",
+ "Common.define.smartArt.textCircleRelationship": "Relació circular",
+ "Common.define.smartArt.textCircularBendingProcess": "Procés corb circular",
+ "Common.define.smartArt.textCircularPictureCallout": "Crida d'imatge circular",
+ "Common.define.smartArt.textClosedChevronProcess": "Procés angular tancat",
+ "Common.define.smartArt.textContinuousArrowProcess": "Procés de fletxes continu",
+ "Common.define.smartArt.textContinuousBlockProcess": "Procés de blocs continu",
+ "Common.define.smartArt.textContinuousCycle": "Cicle continu",
+ "Common.define.smartArt.textContinuousPictureList": "Llista d'imatges contínua",
+ "Common.define.smartArt.textConvergingArrows": "Fletxes convergents",
+ "Common.define.smartArt.textConvergingRadial": "Radial convergent",
+ "Common.define.smartArt.textConvergingText": "Text convergent",
+ "Common.define.smartArt.textCounterbalanceArrows": "Fletxes de contrapès",
+ "Common.define.smartArt.textCycle": "Cicle",
+ "Common.define.smartArt.textCycleMatrix": "Matriu de cicle",
+ "Common.define.smartArt.textDescendingBlockList": "Llista de blocs descendents",
+ "Common.define.smartArt.textDescendingProcess": "Procés descendent",
+ "Common.define.smartArt.textDetailedProcess": "Procés detallat",
+ "Common.define.smartArt.textDivergingArrows": "Fletxes divergents",
+ "Common.define.smartArt.textDivergingRadial": "Radial divergent",
"Common.Translation.textMoreButton": "Més",
"Common.Translation.warnFileLocked": "No pots editar aquest fitxer perquè és obert en una altra aplicació.",
"Common.Translation.warnFileLockedBtnEdit": "Crea una còpia",
@@ -288,6 +343,7 @@
"Common.Views.DocumentAccessDialog.textLoading": "S'està carregant...",
"Common.Views.DocumentAccessDialog.textTitle": "Configuració per compartir",
"Common.Views.ExternalDiagramEditor.textTitle": "Editor de gràfics",
+ "Common.Views.ExternalEditor.textClose": "Tanca",
"Common.Views.ExternalMergeEditor.textTitle": "Destinataris de la combinació de la correspondència",
"Common.Views.ExternalOleEditor.textTitle": "Editor del full de càlcul",
"Common.Views.Header.labelCoUsersDescr": "Usuaris que editen el fitxer:",
@@ -354,6 +410,7 @@
"Common.Views.Plugins.textStart": "Inici",
"Common.Views.Plugins.textStop": "Atura",
"Common.Views.Protection.hintAddPwd": "Xifra amb contrasenya",
+ "Common.Views.Protection.hintDelPwd": "Suprimeix la contrasenya",
"Common.Views.Protection.hintPwd": "Canvia o suprimeix la contrasenya",
"Common.Views.Protection.hintSignature": "Afegeix una signatura digital o una línia de signatura",
"Common.Views.Protection.txtAddPwd": "Afegeix una contrasenya",
@@ -499,6 +556,7 @@
"Common.Views.SignDialog.tipFontName": "Nom de la lletra",
"Common.Views.SignDialog.tipFontSize": "Mida de la lletra",
"Common.Views.SignSettingsDialog.textAllowComment": "Permet al signant afegir comentaris al diàleg de signatura",
+ "Common.Views.SignSettingsDialog.textDefInstruction": "Abans de signar aquest document, comproveu que el contingut és correcte.",
"Common.Views.SignSettingsDialog.textInfoEmail": "Correu electrònic",
"Common.Views.SignSettingsDialog.textInfoName": "Nom",
"Common.Views.SignSettingsDialog.textInfoTitle": "Títol del signant",
@@ -640,6 +698,7 @@
"DE.Controllers.Main.textClose": "Tanca",
"DE.Controllers.Main.textCloseTip": "Feu clic per tancar el consell",
"DE.Controllers.Main.textContactUs": "Contacta amb vendes",
+ "DE.Controllers.Main.textContinue": "Continua",
"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": "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ó",
@@ -1329,9 +1388,13 @@
"DE.Views.CellsAddDialog.textRow": "Files",
"DE.Views.CellsAddDialog.textTitle": "Insereix diversos",
"DE.Views.CellsAddDialog.textUp": "Per damunt del cursor",
+ "DE.Views.ChartSettings.text3dDepth": "Profunditat (% de la base)",
"DE.Views.ChartSettings.text3dRotation": "Rotació 3D",
"DE.Views.ChartSettings.textAdvanced": "Mostra la configuració avançada",
+ "DE.Views.ChartSettings.textAutoscale": "Escala automàtica",
"DE.Views.ChartSettings.textChartType": "Canvia el tipus de gràfic",
+ "DE.Views.ChartSettings.textDefault": "Rotació per defecte",
+ "DE.Views.ChartSettings.textDown": "Avall",
"DE.Views.ChartSettings.textEditData": "Edita les dades",
"DE.Views.ChartSettings.textHeight": "Alçada",
"DE.Views.ChartSettings.textOriginalSize": "Mida real",
@@ -1429,6 +1492,8 @@
"DE.Views.DateTimeDialog.textLang": "Idioma",
"DE.Views.DateTimeDialog.textUpdate": "Actualitza automàticament",
"DE.Views.DateTimeDialog.txtTitle": "Hora i data",
+ "DE.Views.DocProtection.hintProtectDoc": "Protegir document",
+ "DE.Views.DocProtection.txtProtectDoc": "Protegir document",
"DE.Views.DocumentHolder.aboveText": "A dalt",
"DE.Views.DocumentHolder.addCommentText": "Afegeix un comentari",
"DE.Views.DocumentHolder.advancedDropCapText": "Configuració de la lletra de caixa alta",
@@ -1437,6 +1502,8 @@
"DE.Views.DocumentHolder.advancedTableText": "Configuració avançada de la taula",
"DE.Views.DocumentHolder.advancedText": "Configuració avançada",
"DE.Views.DocumentHolder.alignmentText": "Alineació",
+ "DE.Views.DocumentHolder.allLinearText": "Tot lineal",
+ "DE.Views.DocumentHolder.allProfText": "Tot professional",
"DE.Views.DocumentHolder.belowText": "Més avall",
"DE.Views.DocumentHolder.breakBeforeText": "Salt de pàgina anterior",
"DE.Views.DocumentHolder.bulletsText": "Pics i numeració",
@@ -1445,6 +1512,8 @@
"DE.Views.DocumentHolder.centerText": "Centra",
"DE.Views.DocumentHolder.chartText": "Configuració avançada del gràfic",
"DE.Views.DocumentHolder.columnText": "Columna",
+ "DE.Views.DocumentHolder.currLinearText": "Lineal - actual",
+ "DE.Views.DocumentHolder.currProfText": "Professional - actual",
"DE.Views.DocumentHolder.deleteColumnText": "Suprimeix la columna",
"DE.Views.DocumentHolder.deleteRowText": "Suprimeix la fila",
"DE.Views.DocumentHolder.deleteTableText": "Suprimeix la taula",
@@ -1457,6 +1526,7 @@
"DE.Views.DocumentHolder.editFooterText": "Edita el peu de pàgina",
"DE.Views.DocumentHolder.editHeaderText": "Edita la capçalera",
"DE.Views.DocumentHolder.editHyperlinkText": "Edita l'enllaç",
+ "DE.Views.DocumentHolder.eqToInlineText": "Canvia a Inline",
"DE.Views.DocumentHolder.guestText": "Convidat",
"DE.Views.DocumentHolder.hyperlinkText": "Enllaç",
"DE.Views.DocumentHolder.ignoreAllSpellText": "Ignora-ho tot",
@@ -2374,6 +2444,11 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Estableix només la vora superior",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automàtic",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Sense vores",
+ "DE.Views.ProtectDialog.textComments": "Comentaris",
+ "DE.Views.ProtectDialog.txtAllow": "Només permet aquest tipus d'edició del document",
+ "DE.Views.ProtectDialog.txtIncorrectPwd": "La contrasenya de confirmació no és idèntica",
+ "DE.Views.ProtectDialog.txtProtect": "Protegir",
+ "DE.Views.ProtectDialog.txtTitle": "Protegir",
"DE.Views.RightMenu.txtChartSettings": "Configuració del gràfic",
"DE.Views.RightMenu.txtFormSettings": "Configuració del formulari\n\t",
"DE.Views.RightMenu.txtHeaderFooterSettings": "Configuració de la capçalera i el peu de pàgina",
@@ -2564,8 +2639,12 @@
"DE.Views.TableSettings.tipOuter": "Estableix només la vora exterior",
"DE.Views.TableSettings.tipRight": "Estableix només la vora exterior dreta",
"DE.Views.TableSettings.tipTop": "Estableix només la vora superior externa",
+ "DE.Views.TableSettings.txtGroupTable_BorderedAndLined": "Taules amb vores i línies",
+ "DE.Views.TableSettings.txtGroupTable_Custom": "personalitzat",
"DE.Views.TableSettings.txtNoBorders": "Sense vores",
"DE.Views.TableSettings.txtTable_Accent": "Accent",
+ "DE.Views.TableSettings.txtTable_Bordered": "Amb vores",
+ "DE.Views.TableSettings.txtTable_BorderedAndLined": "Amb vores i línies",
"DE.Views.TableSettings.txtTable_Colorful": "Multicolor",
"DE.Views.TableSettings.txtTable_Dark": "Fosc",
"DE.Views.TableSettings.txtTable_GridTable": "Taula amb quadrícula",
diff --git a/apps/documenteditor/main/locale/cs.json b/apps/documenteditor/main/locale/cs.json
index d86081414..c932f9eb4 100644
--- a/apps/documenteditor/main/locale/cs.json
+++ b/apps/documenteditor/main/locale/cs.json
@@ -1424,6 +1424,8 @@
"DE.Views.DateTimeDialog.textLang": "Jazyk",
"DE.Views.DateTimeDialog.textUpdate": "Aktualizovat automaticky",
"DE.Views.DateTimeDialog.txtTitle": "Datum a čas",
+ "DE.Views.DocProtection.hintProtectDoc": "Zabezpečit dokument",
+ "DE.Views.DocProtection.txtProtectDoc": "Zabezpečit dokument",
"DE.Views.DocumentHolder.aboveText": "Nad",
"DE.Views.DocumentHolder.addCommentText": "Přidat komentář",
"DE.Views.DocumentHolder.advancedDropCapText": "Nastavení iniciály",
diff --git a/apps/documenteditor/main/locale/da.json b/apps/documenteditor/main/locale/da.json
index 49340958d..2b8497a10 100644
--- a/apps/documenteditor/main/locale/da.json
+++ b/apps/documenteditor/main/locale/da.json
@@ -193,6 +193,7 @@
"Common.UI.ThemeColorPalette.textStandartColors": "Standard farve",
"Common.UI.ThemeColorPalette.textThemeColors": "Tema farver",
"Common.UI.Themes.txtThemeClassicLight": "Klassisk lys",
+ "Common.UI.Themes.txtThemeContrastDark": "Mørk kontrast",
"Common.UI.Themes.txtThemeDark": "Mørk",
"Common.UI.Themes.txtThemeLight": "Lys",
"Common.UI.Themes.txtThemeSystem": "Samme som system",
@@ -1432,6 +1433,8 @@
"DE.Views.DateTimeDialog.textLang": "Sprog",
"DE.Views.DateTimeDialog.textUpdate": "Opdater automatisk",
"DE.Views.DateTimeDialog.txtTitle": "Dato og tid",
+ "DE.Views.DocProtection.hintProtectDoc": "Beskyt dokument",
+ "DE.Views.DocProtection.txtProtectDoc": "Beskyt dokument",
"DE.Views.DocumentHolder.aboveText": "Over",
"DE.Views.DocumentHolder.addCommentText": "Tilføj kommentar",
"DE.Views.DocumentHolder.advancedDropCapText": "Indstillinger for unical",
@@ -2338,6 +2341,8 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Vælg kun øverste ramme",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automatisk",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Ingen rammer",
+ "DE.Views.ProtectDialog.txtProtect": "Beskyt",
+ "DE.Views.ProtectDialog.txtTitle": "Beskyt",
"DE.Views.RightMenu.txtChartSettings": "Diagram indstillinger",
"DE.Views.RightMenu.txtFormSettings": "Formularindstillinger",
"DE.Views.RightMenu.txtHeaderFooterSettings": "Sidehoved- og sidefodsinstillinger",
@@ -2876,14 +2881,18 @@
"DE.Views.Toolbar.txtScheme8": "Flow",
"DE.Views.Toolbar.txtScheme9": "Støberi",
"DE.Views.ViewTab.textAlwaysShowToolbar": "Vis altid værktøjslinje",
+ "DE.Views.ViewTab.textDarkDocument": "Mørk dokument",
"DE.Views.ViewTab.textFitToPage": "Tilpas til side",
"DE.Views.ViewTab.textFitToWidth": "Tilpas til bredde",
+ "DE.Views.ViewTab.textInterfaceTheme": "Interface tema",
"DE.Views.ViewTab.textOutline": "Overskrifter",
"DE.Views.ViewTab.textRulers": "Linealer",
"DE.Views.ViewTab.textZoom": "Zoom",
+ "DE.Views.ViewTab.tipDarkDocument": "Mørk dokument",
"DE.Views.ViewTab.tipFitToPage": "Tilpas til side",
"DE.Views.ViewTab.tipFitToWidth": "Tilpas til bredde",
"DE.Views.ViewTab.tipHeadings": "Overskrifter",
+ "DE.Views.ViewTab.tipInterfaceTheme": "Interface tema",
"DE.Views.WatermarkSettingsDialog.textAuto": "Automatisk",
"DE.Views.WatermarkSettingsDialog.textBold": "Fed",
"DE.Views.WatermarkSettingsDialog.textColor": "Tekstfarve",
diff --git a/apps/documenteditor/main/locale/de.json b/apps/documenteditor/main/locale/de.json
index 186e912f6..b99a64616 100644
--- a/apps/documenteditor/main/locale/de.json
+++ b/apps/documenteditor/main/locale/de.json
@@ -125,6 +125,165 @@
"Common.define.chartData.textScatterSmoothMarker": "Punkte mit interpolierten Linien und Datenpunkten",
"Common.define.chartData.textStock": "Kurs",
"Common.define.chartData.textSurface": "Oberfläche",
+ "Common.define.smartArt.textAccentedPicture": "Bild mit Akzenten",
+ "Common.define.smartArt.textAccentProcess": "Akzentprozess",
+ "Common.define.smartArt.textAlternatingFlow": "Alternierender Fluss",
+ "Common.define.smartArt.textAlternatingHexagons": "Alternierende Sechsecke",
+ "Common.define.smartArt.textAlternatingPictureBlocks": "Alternierende Bildblöcke",
+ "Common.define.smartArt.textAlternatingPictureCircles": "Alternierende Bildblöcke",
+ "Common.define.smartArt.textArchitectureLayout": "Architekturlayout",
+ "Common.define.smartArt.textArrowRibbon": "Pfeilband",
+ "Common.define.smartArt.textAscendingPictureAccentProcess": "Aufsteigender Prozess mit Bildakzenten",
+ "Common.define.smartArt.textBalance": "Kontostand",
+ "Common.define.smartArt.textBasicBendingProcess": "Einfacher umgebrochener Prozess",
+ "Common.define.smartArt.textBasicBlockList": "Einfache Blockliste",
+ "Common.define.smartArt.textBasicChevronProcess": "Einfacher Chevronprozess",
+ "Common.define.smartArt.textBasicCycle": "Einfacher Kreis",
+ "Common.define.smartArt.textBasicMatrix": "Einfache Matrix",
+ "Common.define.smartArt.textBasicPie": "Einfaches Kreisdiagramm",
+ "Common.define.smartArt.textBasicProcess": "Einfacher Prozess",
+ "Common.define.smartArt.textBasicPyramid": "Einfache Pyramide",
+ "Common.define.smartArt.textBasicRadial": "Einfaches Radial",
+ "Common.define.smartArt.textBasicTarget": "Einfaches Ziel",
+ "Common.define.smartArt.textBasicTimeline": "Einfache Zeitachse",
+ "Common.define.smartArt.textBasicVenn": "Einfaches Venn",
+ "Common.define.smartArt.textBendingPictureAccentList": "Umgebrochene Bildakzentliste",
+ "Common.define.smartArt.textBendingPictureBlocks": "Umgebrochene Bildblöcke",
+ "Common.define.smartArt.textBendingPictureCaption": "Umgebrochene Bildbeschriftung",
+ "Common.define.smartArt.textBendingPictureCaptionList": "Umgebrochene Bildbeschriftungsliste",
+ "Common.define.smartArt.textBendingPictureSemiTranparentText": "Umgebrochener halbtransparenter Bildtext",
+ "Common.define.smartArt.textBlockCycle": "Blockkreis",
+ "Common.define.smartArt.textBubblePictureList": "Blasenbildliste",
+ "Common.define.smartArt.textCaptionedPictures": "Bilder mit Beschriftungen",
+ "Common.define.smartArt.textChevronAccentProcess": "Chevronakzentprozess",
+ "Common.define.smartArt.textChevronList": "Chevronliste",
+ "Common.define.smartArt.textCircleAccentTimeline": "Zeitachse mit Kreisakzent",
+ "Common.define.smartArt.textCircleArrowProcess": "Kreisförmiger Pfeilprozess",
+ "Common.define.smartArt.textCirclePictureHierarchy": "Bilderhierarchie mit Kreisakzent",
+ "Common.define.smartArt.textCircleProcess": "Kreisprozess",
+ "Common.define.smartArt.textCircleRelationship": "Kreisbeziehung",
+ "Common.define.smartArt.textCircularBendingProcess": "Kreisförmiger umgebrochener Prozess",
+ "Common.define.smartArt.textCircularPictureCallout": "Bildlegende mit Kreisakzent",
+ "Common.define.smartArt.textClosedChevronProcess": "Geschlossener Chevronprozess",
+ "Common.define.smartArt.textContinuousArrowProcess": "Fortlaufender Pfeilprozess",
+ "Common.define.smartArt.textContinuousBlockProcess": "Fortlaufender Blockprozess",
+ "Common.define.smartArt.textContinuousCycle": "Fortlaufender Kreis",
+ "Common.define.smartArt.textContinuousPictureList": "Fortlaufende Bildliste",
+ "Common.define.smartArt.textConvergingArrows": "Zusammenlaufende Pfeile",
+ "Common.define.smartArt.textConvergingRadial": "Zusammenlaufendes Radial",
+ "Common.define.smartArt.textConvergingText": "Zusammenlaufender Text",
+ "Common.define.smartArt.textCounterbalanceArrows": "Gegengewichtspfeile",
+ "Common.define.smartArt.textCycle": "Zyklus",
+ "Common.define.smartArt.textCycleMatrix": "Kreismatrix",
+ "Common.define.smartArt.textDescendingBlockList": "Absteigende Blockliste",
+ "Common.define.smartArt.textDescendingProcess": "Absteigender Prozess",
+ "Common.define.smartArt.textDetailedProcess": "Detaillierter Prozess",
+ "Common.define.smartArt.textDivergingArrows": "Auseinanderlaufende Pfeile",
+ "Common.define.smartArt.textDivergingRadial": "Auseinanderlaufendes Radial",
+ "Common.define.smartArt.textEquation": "Gleichung",
+ "Common.define.smartArt.textFramedTextPicture": "Umrahmte Textgrafik",
+ "Common.define.smartArt.textFunnel": "Trichter",
+ "Common.define.smartArt.textGear": "Zahnrad",
+ "Common.define.smartArt.textGridMatrix": "Rastermatrix",
+ "Common.define.smartArt.textGroupedList": "Gruppierte Liste",
+ "Common.define.smartArt.textHalfCircleOrganizationChart": "Halbkreisorganigramm",
+ "Common.define.smartArt.textHexagonCluster": "Sechseck-Cluster",
+ "Common.define.smartArt.textHexagonRadial": "Sechseck Radial",
+ "Common.define.smartArt.textHierarchy": "Hierarchie",
+ "Common.define.smartArt.textHierarchyList": "Hierarchieliste",
+ "Common.define.smartArt.textHorizontalBulletList": "Horizontale Aufzählungsliste",
+ "Common.define.smartArt.textHorizontalHierarchy": "Horizontale Hierarchie",
+ "Common.define.smartArt.textHorizontalLabeledHierarchy": "Horizontal beschriftete Hierarchie",
+ "Common.define.smartArt.textHorizontalMultiLevelHierarchy": "Horizontale Hierarchie mit mehreren Ebenen",
+ "Common.define.smartArt.textHorizontalOrganizationChart": "Horizontales Organigramm",
+ "Common.define.smartArt.textHorizontalPictureList": "Horizontale Bildliste",
+ "Common.define.smartArt.textIncreasingArrowProcess": "Wachsender Pfeil-Prozess",
+ "Common.define.smartArt.textIncreasingCircleProcess": "Wachsender Kreis-Prozess",
+ "Common.define.smartArt.textInterconnectedBlockProcess": "Vernetzter Blockprozess",
+ "Common.define.smartArt.textInterconnectedRings": "Verbundene Ringe",
+ "Common.define.smartArt.textInvertedPyramid": "Umgekehrte Pyramide",
+ "Common.define.smartArt.textLabeledHierarchy": "Beschriftete Hierarchie",
+ "Common.define.smartArt.textLinearVenn": "Lineares Venn",
+ "Common.define.smartArt.textLinedList": "Liste mit Linien",
+ "Common.define.smartArt.textList": "Liste",
+ "Common.define.smartArt.textMatrix": "Matrix",
+ "Common.define.smartArt.textMultidirectionalCycle": "Kreis mit mehreren Richtungen",
+ "Common.define.smartArt.textNameAndTitleOrganizationChart": "Organigramm mit Name und Titel",
+ "Common.define.smartArt.textNestedTarget": "Geschachteltes Ziel",
+ "Common.define.smartArt.textNondirectionalCycle": "Richtungsloser Kreis",
+ "Common.define.smartArt.textOpposingArrows": "Entgegengesetzte Pfeile",
+ "Common.define.smartArt.textOpposingIdeas": "Konträre Ansichten",
+ "Common.define.smartArt.textOrganizationChart": "Organigramm",
+ "Common.define.smartArt.textOther": "Sonstiges",
+ "Common.define.smartArt.textPhasedProcess": "Phasenprozess",
+ "Common.define.smartArt.textPicture": "Bild",
+ "Common.define.smartArt.textPictureAccentBlocks": "Bildakzentblöcke",
+ "Common.define.smartArt.textPictureAccentList": "Bildakzentliste",
+ "Common.define.smartArt.textPictureAccentProcess": "Bildakzentprozess",
+ "Common.define.smartArt.textPictureCaptionList": "Bildbeschriftungsliste",
+ "Common.define.smartArt.textPictureFrame": "Bildrahmen",
+ "Common.define.smartArt.textPictureGrid": "Bildraster",
+ "Common.define.smartArt.textPictureLineup": "Bildanordnung",
+ "Common.define.smartArt.textPictureOrganizationChart": "Bildorganigramm",
+ "Common.define.smartArt.textPictureStrips": "Bildstreifen",
+ "Common.define.smartArt.textPieProcess": "Kreisdiagrammprozess",
+ "Common.define.smartArt.textPlusAndMinus": "Plus und Minus",
+ "Common.define.smartArt.textProcess": "Prozess",
+ "Common.define.smartArt.textProcessArrows": "Prozesspfeile",
+ "Common.define.smartArt.textProcessList": "Prozessliste",
+ "Common.define.smartArt.textPyramid": "Pyramide",
+ "Common.define.smartArt.textPyramidList": "Pyramidenliste",
+ "Common.define.smartArt.textRadialCluster": "Radialer Cluster",
+ "Common.define.smartArt.textRadialCycle": "Radialkreis",
+ "Common.define.smartArt.textRadialList": "Radialliste",
+ "Common.define.smartArt.textRadialPictureList": "Radiale Bildliste",
+ "Common.define.smartArt.textRadialVenn": "Radialvenn",
+ "Common.define.smartArt.textRandomToResultProcess": "Zufallsergebnisprozess",
+ "Common.define.smartArt.textRelationship": "Beziehung",
+ "Common.define.smartArt.textRepeatingBendingProcess": "Wiederholter umgebrochener Prozess",
+ "Common.define.smartArt.textReverseList": "Umgekehrte Liste",
+ "Common.define.smartArt.textSegmentedCycle": "Segmentierter Kreis",
+ "Common.define.smartArt.textSegmentedProcess": "Segmentierter Prozess",
+ "Common.define.smartArt.textSegmentedPyramid": "Segmentierte Pyramide",
+ "Common.define.smartArt.textSnapshotPictureList": "Momentaufnahme-Bildliste",
+ "Common.define.smartArt.textSpiralPicture": "Spiralförmige Grafik",
+ "Common.define.smartArt.textSquareAccentList": "Liste mit quadratischen Akzenten",
+ "Common.define.smartArt.textStackedList": "Gestapelte Liste",
+ "Common.define.smartArt.textStackedVenn": "Gestapeltes Venn",
+ "Common.define.smartArt.textStaggeredProcess": "Gestaffelter Prozess",
+ "Common.define.smartArt.textStepDownProcess": "Prozess mit absteigenden Schritten",
+ "Common.define.smartArt.textStepUpProcess": "Prozess mit aufsteigenden Schritten",
+ "Common.define.smartArt.textSubStepProcess": "Unterschrittprozess",
+ "Common.define.smartArt.textTabbedArc": "Registerkartenbogen",
+ "Common.define.smartArt.textTableHierarchy": "Tabellenhierarchie",
+ "Common.define.smartArt.textTableList": "Tabellenliste",
+ "Common.define.smartArt.textTabList": "Registerkartenliste",
+ "Common.define.smartArt.textTargetList": "Zielliste",
+ "Common.define.smartArt.textTextCycle": "Textkreis",
+ "Common.define.smartArt.textThemePictureAccent": "Designbildakzent",
+ "Common.define.smartArt.textThemePictureAlternatingAccent": "Alternierender Designbildakzent",
+ "Common.define.smartArt.textThemePictureGrid": "Designbildraster",
+ "Common.define.smartArt.textTitledMatrix": "Betitelte Matrix",
+ "Common.define.smartArt.textTitledPictureAccentList": "Bildakzentliste mit Titel",
+ "Common.define.smartArt.textTitledPictureBlocks": "Titelbildblöcke",
+ "Common.define.smartArt.textTitlePictureLineup": "Titelbildanordnung",
+ "Common.define.smartArt.textTrapezoidList": "Trapezförmige Liste",
+ "Common.define.smartArt.textUpwardArrow": "Pfeil nach oben",
+ "Common.define.smartArt.textVaryingWidthList": "Liste mit variabler Breite",
+ "Common.define.smartArt.textVerticalAccentList": "Liste mit vertikalen Akzenten",
+ "Common.define.smartArt.textVerticalArrowList": "Vertical Arrow List",
+ "Common.define.smartArt.textVerticalBendingProcess": "Vertikaler umgebrochener Prozess",
+ "Common.define.smartArt.textVerticalBlockList": "Vertikale Blockliste",
+ "Common.define.smartArt.textVerticalBoxList": "Vertikale Feldliste",
+ "Common.define.smartArt.textVerticalBracketList": "Liste mit vertikalen Klammerakzenten",
+ "Common.define.smartArt.textVerticalBulletList": "Vertikale Aufzählung",
+ "Common.define.smartArt.textVerticalChevronList": "Vertikale Chevronliste",
+ "Common.define.smartArt.textVerticalCircleList": "Liste mit vertikalen Kreisakzenten",
+ "Common.define.smartArt.textVerticalCurvedList": "Liste mit vertikalen Kurven",
+ "Common.define.smartArt.textVerticalEquation": "Vertikale Formel",
+ "Common.define.smartArt.textVerticalPictureAccentList": "Vertikale Bildakzentliste",
+ "Common.define.smartArt.textVerticalPictureList": "Vertikale Bildliste",
+ "Common.define.smartArt.textVerticalProcess": "Vertikaler Prozess",
"Common.Translation.textMoreButton": "Mehr",
"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",
@@ -288,6 +447,8 @@
"Common.Views.DocumentAccessDialog.textLoading": "Ladevorgang...",
"Common.Views.DocumentAccessDialog.textTitle": "Freigabeeinstellungen",
"Common.Views.ExternalDiagramEditor.textTitle": "Diagramm bearbeiten",
+ "Common.Views.ExternalEditor.textClose": "Schließen",
+ "Common.Views.ExternalEditor.textSave": "Speichern und beenden",
"Common.Views.ExternalMergeEditor.textTitle": "Seriendruckempfänger",
"Common.Views.ExternalOleEditor.textTitle": "Editor der Tabellenkalkulationen",
"Common.Views.Header.labelCoUsersDescr": "Das Dokument wird gerade von mehreren Benutzern bearbeitet.",
@@ -354,6 +515,7 @@
"Common.Views.Plugins.textStart": "Starten",
"Common.Views.Plugins.textStop": "Beenden",
"Common.Views.Protection.hintAddPwd": "Mit Kennwort verschlüsseln",
+ "Common.Views.Protection.hintDelPwd": "Kennwort löschen",
"Common.Views.Protection.hintPwd": "Das Kennwort ändern oder löschen",
"Common.Views.Protection.hintSignature": "Digitale Signatur oder Unterschriftenzeile hinzufügen",
"Common.Views.Protection.txtAddPwd": "Kennwort hinzufügen",
@@ -499,6 +661,7 @@
"Common.Views.SignDialog.tipFontName": "Schriftart",
"Common.Views.SignDialog.tipFontSize": "Schriftgrad",
"Common.Views.SignSettingsDialog.textAllowComment": "Signaturgeber verfügt über die Möglichkeit, einen Kommentar im Signaturdialog hinzuzufügen",
+ "Common.Views.SignSettingsDialog.textDefInstruction": "Überprüfen Sie, ob der signierte Inhalt stimmt, bevor Sie dieses Dokument signieren.",
"Common.Views.SignSettingsDialog.textInfoEmail": "Email Adresse",
"Common.Views.SignSettingsDialog.textInfoName": "Name",
"Common.Views.SignSettingsDialog.textInfoTitle": "Titel des Signatureingebers",
@@ -552,6 +715,7 @@
"DE.Controllers.LeftMenu.warnReplaceString": "{0} darf nicht als Sonderzeichen in das Feld \"Ersetzen durch\" eingegeben werden.",
"DE.Controllers.Main.applyChangesTextText": "Die Änderungen werden geladen...",
"DE.Controllers.Main.applyChangesTitleText": "Laden von Änderungen",
+ "DE.Controllers.Main.confirmMaxChangesSize": "Die Anzahl der Aktionen überschreitet die für Ihren Server festgelegte Grenze. Drücken Sie \"Rückgängig\", um Ihre letzte Aktion abzubrechen, oder drücken Sie \"Weiter\", um die Aktion lokal fortzusetzen (Sie müssen die Datei herunterladen oder ihren Inhalt kopieren, um sicherzustellen, dass nichts verloren geht).",
"DE.Controllers.Main.convertationTimeoutText": "Zeitüberschreitung bei der Konvertierung.",
"DE.Controllers.Main.criticalErrorExtText": "Klicken Sie auf \"OK\", um in die Dokumentenliste zu gelangen.",
"DE.Controllers.Main.criticalErrorTitle": "Fehler",
@@ -578,12 +742,18 @@
"DE.Controllers.Main.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.",
"DE.Controllers.Main.errorFileSizeExceed": "Die Dateigröße überschreitet die für Ihren Server festgelegte Einschränkung. Weitere Informationen können Sie von Ihrem Document Server-Administrator erhalten.",
"DE.Controllers.Main.errorForceSave": "Beim Speichern der Datei ist ein Fehler aufgetreten. Verwenden Sie die Option \"Herunterladen als\", um die Datei auf Ihrer Computerfestplatte zu speichern oder versuchen Sie es später erneut.",
+ "DE.Controllers.Main.errorInconsistentExt": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei stimmt nicht mit der Dateierweiterung überein.",
+ "DE.Controllers.Main.errorInconsistentExtDocx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Textdokumenten (z.B. docx), aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "DE.Controllers.Main.errorInconsistentExtPdf": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht einem der folgenden Formate: pdf/djvu/xps/oxps, aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "DE.Controllers.Main.errorInconsistentExtPptx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Präsentationen (z.B. pptx), aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "DE.Controllers.Main.errorInconsistentExtXlsx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Tabellenkalkulationen (z.B. xlsx), aber die Datei hat die inkonsistente Erweiterung: %1.",
"DE.Controllers.Main.errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor",
"DE.Controllers.Main.errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen",
"DE.Controllers.Main.errorLoadingFont": "Schriftarten nicht hochgeladen. Bitte wenden Sie sich an Administratoren von Ihrem Document Server.",
"DE.Controllers.Main.errorMailMergeLoadFile": "Fehler beim Laden des Dokuments. Bitte wählen Sie eine andere Datei.",
"DE.Controllers.Main.errorMailMergeSaveFile": "Merge ist fehlgeschlagen.",
"DE.Controllers.Main.errorNoTOC": "Es gibt kein Inhaltsverzeichnis. Sie können es auf der Registerkarte \"Verweise\" einfügen.",
+ "DE.Controllers.Main.errorPasswordIsNotCorrect": "Das eingegebene Kennwort ist ungültig. Stellen Sie sicher, dass die FESTSTELLTASTE nicht aktiviert ist und dass Sie die korrekte Groß-/Kleinschreibung verwenden.",
"DE.Controllers.Main.errorProcessSaveResult": "Speichern ist fehlgeschlagen.",
"DE.Controllers.Main.errorServerVersion": "Editor-Version wurde aktualisiert. Die Seite wird neu geladen, um die Änderungen zu übernehmen.",
"DE.Controllers.Main.errorSessionAbsolute": "Die Bearbeitungssitzung des Dokumentes ist abgelaufen. Laden Sie die Seite neu.",
@@ -640,6 +810,7 @@
"DE.Controllers.Main.textClose": "Schließen",
"DE.Controllers.Main.textCloseTip": "Klicken Sie, um den Tipp zu schließen",
"DE.Controllers.Main.textContactUs": "Verkaufsteam kontaktieren",
+ "DE.Controllers.Main.textContinue": "Fortsetzen",
"DE.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?",
"DE.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.",
"DE.Controllers.Main.textDisconnect": "Verbindung wurde unterbrochen",
@@ -660,6 +831,7 @@
"DE.Controllers.Main.textStrict": "Formaler Modus",
"DE.Controllers.Main.textTryUndoRedo": "Undo/Redo Optionen sind für den halbformalen Zusammenbearbeitungsmodus deaktiviert. Klicken Sie auf den Button \"Formaler Modus\", um den formalen Zusammenbearbeitungsmodus zu aktivieren, um die Datei, ohne Störungen anderer Benutzer zu bearbeiten und die Änderungen erst nachdem Sie sie gespeichert haben, zu senden. Sie können zwischen den Zusammenbearbeitungsmodi mit der Hilfe der erweiterten Einstellungen von Editor umschalten.",
"DE.Controllers.Main.textTryUndoRedoWarn": "Die Optionen Rückgängig/Wiederholen sind für den halbformalen Zusammenbearbeitungsmodus deaktiviert.",
+ "DE.Controllers.Main.textUndo": "Rückgängig",
"DE.Controllers.Main.titleLicenseExp": "Lizenz ist abgelaufen",
"DE.Controllers.Main.titleServerVersion": "Editor wurde aktualisiert",
"DE.Controllers.Main.titleUpdateVersion": "Version wurde geändert",
@@ -1329,16 +1501,31 @@
"DE.Views.CellsAddDialog.textRow": "Zeilen",
"DE.Views.CellsAddDialog.textTitle": "Einfügen: mehrere",
"DE.Views.CellsAddDialog.textUp": "Über dem Cursor",
+ "DE.Views.ChartSettings.text3dDepth": "Tiefe (% der Basis)",
+ "DE.Views.ChartSettings.text3dHeight": "Höhe (% der Basis)",
+ "DE.Views.ChartSettings.text3dRotation": "3D-Drehung",
"DE.Views.ChartSettings.textAdvanced": "Erweiterte Einstellungen anzeigen",
+ "DE.Views.ChartSettings.textAutoscale": "Autoskalierung",
"DE.Views.ChartSettings.textChartType": "Diagrammtyp ändern",
+ "DE.Views.ChartSettings.textDefault": "Standardmäßige Drehung",
+ "DE.Views.ChartSettings.textDown": "Unten",
"DE.Views.ChartSettings.textEditData": "Daten ändern",
"DE.Views.ChartSettings.textHeight": "Höhe",
+ "DE.Views.ChartSettings.textLeft": "Links",
+ "DE.Views.ChartSettings.textNarrow": "Blickfeld verengen",
"DE.Views.ChartSettings.textOriginalSize": "Tatsächliche Größe",
+ "DE.Views.ChartSettings.textPerspective": "Perspektive",
+ "DE.Views.ChartSettings.textRight": "Rechts",
+ "DE.Views.ChartSettings.textRightAngle": "Rechtwinklige Achsen",
"DE.Views.ChartSettings.textSize": "Größe",
"DE.Views.ChartSettings.textStyle": "Stil",
"DE.Views.ChartSettings.textUndock": "Seitenbereich abdocken",
+ "DE.Views.ChartSettings.textUp": "Aufwärts",
+ "DE.Views.ChartSettings.textWiden": "Blickfeld verbreitern",
"DE.Views.ChartSettings.textWidth": "Breite",
"DE.Views.ChartSettings.textWrap": "Textumbruch",
+ "DE.Views.ChartSettings.textX": "X-Rotation",
+ "DE.Views.ChartSettings.textY": "Y-Rotation",
"DE.Views.ChartSettings.txtBehind": "Hinter dem Text",
"DE.Views.ChartSettings.txtInFront": "Vorne",
"DE.Views.ChartSettings.txtInline": "Inline",
@@ -1428,14 +1615,24 @@
"DE.Views.DateTimeDialog.textLang": "Sprache",
"DE.Views.DateTimeDialog.textUpdate": "Automatisch aktualisieren",
"DE.Views.DateTimeDialog.txtTitle": "Datum & Uhrzeit",
+ "DE.Views.DocProtection.hintProtectDoc": "Datei schützen",
+ "DE.Views.DocProtection.txtDocProtectedComment": "Das Dokument ist geschützt. Sie können nur Kommentare zu diesem Dokument hinterlassen.",
+ "DE.Views.DocProtection.txtDocProtectedForms": "Das Dokument ist geschützt. Sie können nur Formulare in diesem Dokument ausfüllen.",
+ "DE.Views.DocProtection.txtDocProtectedTrack": "Das Dokument ist geschützt. Sie können dieses Dokument bearbeiten, aber alle Änderungen werden nachverfolgt.",
+ "DE.Views.DocProtection.txtDocProtectedView": "Das Dokument ist geschützt. Sie können dieses Dokument nur ansehen.",
+ "DE.Views.DocProtection.txtDocUnlockDescription": "Geben Sie ein Passwort ein, um den Schutz des Dokuments aufzuheben",
+ "DE.Views.DocProtection.txtProtectDoc": "Datei schützen",
"DE.Views.DocumentHolder.aboveText": "Oben",
"DE.Views.DocumentHolder.addCommentText": "Kommentar hinzufügen",
"DE.Views.DocumentHolder.advancedDropCapText": "Initialformatierung",
+ "DE.Views.DocumentHolder.advancedEquationText": "Einstellungen der Gleichung",
"DE.Views.DocumentHolder.advancedFrameText": "Rahmen - Erweiterte Einstellungen",
"DE.Views.DocumentHolder.advancedParagraphText": "Absatz - Erweiterte Einstellungen",
"DE.Views.DocumentHolder.advancedTableText": "Tabelle - Erweiterte Einstellungen",
"DE.Views.DocumentHolder.advancedText": "Erweiterte Einstellungen",
"DE.Views.DocumentHolder.alignmentText": "Ausrichtung",
+ "DE.Views.DocumentHolder.allLinearText": "Alle – Linear",
+ "DE.Views.DocumentHolder.allProfText": "Alle – Professionelle",
"DE.Views.DocumentHolder.belowText": "Unten",
"DE.Views.DocumentHolder.breakBeforeText": "Seitenumbruch oberhalb",
"DE.Views.DocumentHolder.bulletsText": "Aufzählung und Nummerierung",
@@ -1444,6 +1641,8 @@
"DE.Views.DocumentHolder.centerText": "Zenter",
"DE.Views.DocumentHolder.chartText": "Erweiterte Einstellungen des Diagramms",
"DE.Views.DocumentHolder.columnText": "Spalte",
+ "DE.Views.DocumentHolder.currLinearText": "Aktuell – Linear",
+ "DE.Views.DocumentHolder.currProfText": "Aktuell – Professionell",
"DE.Views.DocumentHolder.deleteColumnText": "Spalte löschen",
"DE.Views.DocumentHolder.deleteRowText": "Zeile löschen",
"DE.Views.DocumentHolder.deleteTableText": "Tabelle löschen",
@@ -1456,6 +1655,7 @@
"DE.Views.DocumentHolder.editFooterText": "Fußzeile bearbeiten",
"DE.Views.DocumentHolder.editHeaderText": "Kopfzeile bearbeiten",
"DE.Views.DocumentHolder.editHyperlinkText": "Hyperlink bearbeiten",
+ "DE.Views.DocumentHolder.eqToInlineText": "Zum Inline wechseln",
"DE.Views.DocumentHolder.guestText": "Gast",
"DE.Views.DocumentHolder.hyperlinkText": "Hyperlink",
"DE.Views.DocumentHolder.ignoreAllSpellText": "Alle auslassen",
@@ -1470,6 +1670,7 @@
"DE.Views.DocumentHolder.insertText": "Einfügen",
"DE.Views.DocumentHolder.keepLinesText": "Absatz zusammenhalten",
"DE.Views.DocumentHolder.langText": "Sprache wählen",
+ "DE.Views.DocumentHolder.latexText": "LaTeX",
"DE.Views.DocumentHolder.leftText": "Links",
"DE.Views.DocumentHolder.loadSpellText": "Varianten werden geladen...",
"DE.Views.DocumentHolder.mergeCellsText": "Zellen verbinden",
@@ -1657,6 +1858,7 @@
"DE.Views.DocumentHolder.txtUnderbar": "Balken unter dem Text ",
"DE.Views.DocumentHolder.txtUngroup": "Gruppierung aufheben",
"DE.Views.DocumentHolder.txtWarnUrl": "Dieser Link kann für Ihr Gerät und Daten gefährlich sein. Möchten Sie wirklich fortsetzen?",
+ "DE.Views.DocumentHolder.unicodeText": "Unicode",
"DE.Views.DocumentHolder.updateStyleText": "Format aktualisieren %1",
"DE.Views.DocumentHolder.vertAlignText": "Vertikale Ausrichtung",
"DE.Views.DropcapSettingsAdvanced.strBorders": "Rahmen & Füllung",
@@ -1753,6 +1955,7 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistiken",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Thema",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symbole",
+ "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tags",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titel",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Hochgeladen",
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Wörter",
@@ -2066,6 +2269,7 @@
"DE.Views.LeftMenu.tipComments": "Kommentare",
"DE.Views.LeftMenu.tipNavigation": "Navigation",
"DE.Views.LeftMenu.tipOutline": "Überschriften",
+ "DE.Views.LeftMenu.tipPageThumbnails": "Miniaturansichten",
"DE.Views.LeftMenu.tipPlugins": "Plugins",
"DE.Views.LeftMenu.tipSearch": "Suchen",
"DE.Views.LeftMenu.tipSupport": "Feedback und Support",
@@ -2373,6 +2577,18 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Nur obere Rahmenlinie festlegen",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automatisch",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Keine Rahmen",
+ "DE.Views.ProtectDialog.textComments": "Kommentare",
+ "DE.Views.ProtectDialog.textForms": "Ausfüllen von Formularen",
+ "DE.Views.ProtectDialog.textReview": "Überarbeitungen",
+ "DE.Views.ProtectDialog.textView": "Keine Änderungen (Schreibgeschützt)",
+ "DE.Views.ProtectDialog.txtAllow": "Nur diese Art der Bearbeitung im Dokument zulassen",
+ "DE.Views.ProtectDialog.txtIncorrectPwd": "Bestätigungseingabe ist nicht identisch",
+ "DE.Views.ProtectDialog.txtOptional": "optional",
+ "DE.Views.ProtectDialog.txtPassword": "Kennwort",
+ "DE.Views.ProtectDialog.txtProtect": "Schützen",
+ "DE.Views.ProtectDialog.txtRepeat": "Kennwort wiederholen",
+ "DE.Views.ProtectDialog.txtTitle": "Schützen",
+ "DE.Views.ProtectDialog.txtWarning": "Vorsicht: Wenn Sie das Kennwort verlieren oder vergessen, lässt es sich nicht mehr wiederherstellen. Bewahren Sie es an einem sicheren Ort auf.",
"DE.Views.RightMenu.txtChartSettings": "Diagrammeinstellungen",
"DE.Views.RightMenu.txtFormSettings": "Einstellungen des Formulars",
"DE.Views.RightMenu.txtHeaderFooterSettings": "Kopf- und Fußzeileneinstellungen",
@@ -2563,12 +2779,20 @@
"DE.Views.TableSettings.tipOuter": "Nur äußere Rahmenlinie festlegen",
"DE.Views.TableSettings.tipRight": "Nur äußere rechte Rahmenlinie festlegen",
"DE.Views.TableSettings.tipTop": "Nur äußere obere Rahmenlinie festlegen",
+ "DE.Views.TableSettings.txtGroupTable_BorderedAndLined": "Umgrenzte und linierte Tabellen",
+ "DE.Views.TableSettings.txtGroupTable_Custom": "Einstellbar",
+ "DE.Views.TableSettings.txtGroupTable_Grid": "Gitternetztabellen",
+ "DE.Views.TableSettings.txtGroupTable_List": "Listentabellen",
+ "DE.Views.TableSettings.txtGroupTable_Plain": "Einfache Tabellen",
"DE.Views.TableSettings.txtNoBorders": "Keine Rahmen",
"DE.Views.TableSettings.txtTable_Accent": "Akzent",
+ "DE.Views.TableSettings.txtTable_Bordered": "Umgrenzt",
+ "DE.Views.TableSettings.txtTable_BorderedAndLined": "Umgrenzt und liniert",
"DE.Views.TableSettings.txtTable_Colorful": "Farbig",
"DE.Views.TableSettings.txtTable_Dark": "Dunkel",
"DE.Views.TableSettings.txtTable_GridTable": "Gitternetztabelle",
"DE.Views.TableSettings.txtTable_Light": "Hell",
+ "DE.Views.TableSettings.txtTable_Lined": "Mit Linien",
"DE.Views.TableSettings.txtTable_ListTable": "Listentabelle",
"DE.Views.TableSettings.txtTable_PlainTable": "Einfache Tabelle",
"DE.Views.TableSettings.txtTable_TableGrid": "Tabellenraster",
@@ -2690,7 +2914,7 @@
"DE.Views.TextToTableDialog.textTitle": "Text in Tabelle umwandeln",
"DE.Views.TextToTableDialog.textWindow": "An Fenster autoanpassen",
"DE.Views.TextToTableDialog.txtAutoText": "Automatisch",
- "DE.Views.Toolbar.capBtnAddComment": "Kommentar hinzufügen",
+ "DE.Views.Toolbar.capBtnAddComment": "Kommentar Hinzufügen",
"DE.Views.Toolbar.capBtnBlankPage": "Leere Seite",
"DE.Views.Toolbar.capBtnColumns": "Spalten",
"DE.Views.Toolbar.capBtnComment": "Kommentar",
@@ -2703,6 +2927,7 @@
"DE.Views.Toolbar.capBtnInsImage": "Bild",
"DE.Views.Toolbar.capBtnInsPagebreak": "Umbrüche",
"DE.Views.Toolbar.capBtnInsShape": "Form",
+ "DE.Views.Toolbar.capBtnInsSmartArt": "SmartArt",
"DE.Views.Toolbar.capBtnInsSymbol": "Symbol",
"DE.Views.Toolbar.capBtnInsTable": "Tabelle",
"DE.Views.Toolbar.capBtnInsTextart": "Text Art",
@@ -2849,13 +3074,16 @@
"DE.Views.Toolbar.tipIncPrLeft": "Einzug vergrößern",
"DE.Views.Toolbar.tipInsertChart": "Diagramm einfügen",
"DE.Views.Toolbar.tipInsertEquation": "Formel einfügen",
+ "DE.Views.Toolbar.tipInsertHorizontalText": "Horizontales Textfeld einfügen",
"DE.Views.Toolbar.tipInsertImage": "Bild einfügen",
"DE.Views.Toolbar.tipInsertNum": "Seitenzahl einfügen",
"DE.Views.Toolbar.tipInsertShape": "AutoForm einfügen",
+ "DE.Views.Toolbar.tipInsertSmartArt": "SmartArt einfügen",
"DE.Views.Toolbar.tipInsertSymbol": "Symbol einfügen",
"DE.Views.Toolbar.tipInsertTable": "Tabelle einfügen",
"DE.Views.Toolbar.tipInsertText": "Textfeld einfügen",
"DE.Views.Toolbar.tipInsertTextArt": "TextArt einfügen",
+ "DE.Views.Toolbar.tipInsertVerticalText": "Vertikales Textfeld einfügen",
"DE.Views.Toolbar.tipLineNumbers": "Zeilennummern anzeigen",
"DE.Views.Toolbar.tipLineSpace": "Zeilenabstand",
"DE.Views.Toolbar.tipMailRecepients": "Serienbrief",
@@ -2927,8 +3155,10 @@
"DE.Views.ViewTab.textFitToPage": "Seite anpassen",
"DE.Views.ViewTab.textFitToWidth": "An Breite anpassen",
"DE.Views.ViewTab.textInterfaceTheme": "Thema der Benutzeroberfläche",
+ "DE.Views.ViewTab.textLeftMenu": "Linkes Bedienfeld",
"DE.Views.ViewTab.textNavigation": "Navigation",
"DE.Views.ViewTab.textOutline": "Überschriften",
+ "DE.Views.ViewTab.textRightMenu": "Rechtes Bedienungsfeld ",
"DE.Views.ViewTab.textRulers": "Lineale",
"DE.Views.ViewTab.textStatusBar": "Statusleiste",
"DE.Views.ViewTab.textZoom": "Zoom",
diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json
index 78bc75cfc..ceeff19ba 100644
--- a/apps/documenteditor/main/locale/en.json
+++ b/apps/documenteditor/main/locale/en.json
@@ -343,12 +343,12 @@
"Common.UI.SearchDialog.textMatchCase": "Case sensitive",
"Common.UI.SearchDialog.textReplaceDef": "Enter the replacement text",
"Common.UI.SearchDialog.textSearchStart": "Enter your text here",
- "Common.UI.SearchDialog.textTitle": "Find and Replace",
+ "Common.UI.SearchDialog.textTitle": "Find and replace",
"Common.UI.SearchDialog.textTitle2": "Find",
"Common.UI.SearchDialog.textWholeWords": "Whole words only",
"Common.UI.SearchDialog.txtBtnHideReplace": "Hide Replace",
"Common.UI.SearchDialog.txtBtnReplace": "Replace",
- "Common.UI.SearchDialog.txtBtnReplaceAll": "Replace All",
+ "Common.UI.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.textRecentColors": "Recent Colors",
@@ -382,9 +382,9 @@
"Common.Views.About.txtTel": "tel.: ",
"Common.Views.About.txtVersion": "Version ",
"Common.Views.AutoCorrectDialog.textAdd": "Add",
- "Common.Views.AutoCorrectDialog.textApplyText": "Apply As You Type",
+ "Common.Views.AutoCorrectDialog.textApplyText": "Apply as you type",
"Common.Views.AutoCorrectDialog.textAutoCorrect": "Text AutoCorrect",
- "Common.Views.AutoCorrectDialog.textAutoFormat": "AutoFormat As You Type",
+ "Common.Views.AutoCorrectDialog.textAutoFormat": "AutoFormat as you type",
"Common.Views.AutoCorrectDialog.textBulleted": "Automatic bulleted lists",
"Common.Views.AutoCorrectDialog.textBy": "By",
"Common.Views.AutoCorrectDialog.textDelete": "Delete",
@@ -396,10 +396,10 @@
"Common.Views.AutoCorrectDialog.textMathCorrect": "Math AutoCorrect",
"Common.Views.AutoCorrectDialog.textNumbered": "Automatic numbered lists",
"Common.Views.AutoCorrectDialog.textQuotes": "\"Straight quotes\" with \"smart quotes\"",
- "Common.Views.AutoCorrectDialog.textRecognized": "Recognized Functions",
+ "Common.Views.AutoCorrectDialog.textRecognized": "Recognized functions",
"Common.Views.AutoCorrectDialog.textRecognizedDesc": "The following expressions are recognized math expressions. They will not be automatically italicized.",
"Common.Views.AutoCorrectDialog.textReplace": "Replace",
- "Common.Views.AutoCorrectDialog.textReplaceText": "Replace As You Type",
+ "Common.Views.AutoCorrectDialog.textReplaceText": "Replace as you type",
"Common.Views.AutoCorrectDialog.textReplaceType": "Replace text as you type",
"Common.Views.AutoCorrectDialog.textReset": "Reset",
"Common.Views.AutoCorrectDialog.textResetAll": "Reset to default",
@@ -440,12 +440,12 @@
"Common.Views.Comments.txtEmpty": "There are no comments in the document.",
"Common.Views.CopyWarningDialog.textDontShow": "Don't show this message again",
"Common.Views.CopyWarningDialog.textMsg": "Copy, cut and paste actions using the editor toolbar buttons and context menu actions will be performed within this editor tab only.
To copy or paste to or from applications outside the editor tab use the following keyboard combinations:",
- "Common.Views.CopyWarningDialog.textTitle": "Copy, Cut and Paste Actions",
+ "Common.Views.CopyWarningDialog.textTitle": "Copy, Cut and Paste actions",
"Common.Views.CopyWarningDialog.textToCopy": "for Copy",
"Common.Views.CopyWarningDialog.textToCut": "for Cut",
"Common.Views.CopyWarningDialog.textToPaste": "for Paste",
"Common.Views.DocumentAccessDialog.textLoading": "Loading...",
- "Common.Views.DocumentAccessDialog.textTitle": "Sharing Settings",
+ "Common.Views.DocumentAccessDialog.textTitle": "Sharing settings",
"Common.Views.ExternalDiagramEditor.textTitle": "Chart Editor",
"Common.Views.ExternalEditor.textClose": "Close",
"Common.Views.ExternalEditor.textSave": "Save & Exit",
@@ -485,14 +485,14 @@
"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.InsertTableDialog.textInvalidRowsCols": "You need to specify valid rows and columns count.",
- "Common.Views.InsertTableDialog.txtColumns": "Number of Columns",
+ "Common.Views.InsertTableDialog.txtColumns": "Number of columns",
"Common.Views.InsertTableDialog.txtMaxText": "The maximum value for this field is {0}.",
"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": "Split Cell",
+ "Common.Views.InsertTableDialog.txtRows": "Number of rows",
+ "Common.Views.InsertTableDialog.txtTitle": "Table size",
+ "Common.Views.InsertTableDialog.txtTitleSplit": "Split cell",
"Common.Views.LanguageDialog.labelSelect": "Select document language",
- "Common.Views.OpenDialog.closeButtonText": "Close File",
+ "Common.Views.OpenDialog.closeButtonText": "Close file",
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
"Common.Views.OpenDialog.txtIncorrectPwd": "Password is incorrect.",
"Common.Views.OpenDialog.txtOpenFile": "Enter a password to open the file",
@@ -500,12 +500,12 @@
"Common.Views.OpenDialog.txtPreview": "Preview",
"Common.Views.OpenDialog.txtProtected": "Once you enter the password and open the file, the current password to the file will be reset.",
"Common.Views.OpenDialog.txtTitle": "Choose %1 options",
- "Common.Views.OpenDialog.txtTitleProtected": "Protected File",
+ "Common.Views.OpenDialog.txtTitleProtected": "Protected file",
"Common.Views.PasswordDialog.txtDescription": "Set a password to protect this document",
"Common.Views.PasswordDialog.txtIncorrectPwd": "Confirmation password is not identical",
"Common.Views.PasswordDialog.txtPassword": "Password",
"Common.Views.PasswordDialog.txtRepeat": "Repeat password",
- "Common.Views.PasswordDialog.txtTitle": "Set Password",
+ "Common.Views.PasswordDialog.txtTitle": "Set password",
"Common.Views.PasswordDialog.txtWarning": "Warning: If you lose or forget the password, it cannot be recovered. Please keep it in a safe place.",
"Common.Views.PluginDlg.textLoading": "Loading",
"Common.Views.Plugins.groupCaption": "Plugins",
@@ -598,20 +598,21 @@
"Common.Views.ReviewChanges.txtSpelling": "Spell Checking",
"Common.Views.ReviewChanges.txtTurnon": "Track Changes",
"Common.Views.ReviewChanges.txtView": "Display Mode",
- "Common.Views.ReviewChangesDialog.textTitle": "Review Changes",
+ "Common.Views.ReviewChangesDialog.textTitle": "Review changes",
"Common.Views.ReviewChangesDialog.txtAccept": "Accept",
- "Common.Views.ReviewChangesDialog.txtAcceptAll": "Accept All Changes",
- "Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Accept Current Change",
+ "Common.Views.ReviewChangesDialog.txtAcceptAll": "Accept all changes",
+ "Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Accept current change",
"Common.Views.ReviewChangesDialog.txtNext": "To next change",
"Common.Views.ReviewChangesDialog.txtPrev": "To previous change",
"Common.Views.ReviewChangesDialog.txtReject": "Reject",
- "Common.Views.ReviewChangesDialog.txtRejectAll": "Reject All Changes",
- "Common.Views.ReviewChangesDialog.txtRejectCurrent": "Reject Current Change",
+ "Common.Views.ReviewChangesDialog.txtRejectAll": "Reject all changes",
+ "Common.Views.ReviewChangesDialog.txtRejectCurrent": "Reject current change",
"Common.Views.ReviewPopover.textAdd": "Add",
"Common.Views.ReviewPopover.textAddReply": "Add Reply",
"Common.Views.ReviewPopover.textCancel": "Cancel",
"Common.Views.ReviewPopover.textClose": "Close",
"Common.Views.ReviewPopover.textEdit": "OK",
+ "Common.Views.ReviewPopover.textEnterComment": "Enter your comment here",
"Common.Views.ReviewPopover.textFollowMove": "Follow Move",
"Common.Views.ReviewPopover.textMention": "+mention will provide access to the document and send an email",
"Common.Views.ReviewPopover.textMentionNotify": "+mention will notify the user via email",
@@ -644,7 +645,7 @@
"Common.Views.SearchPanel.tipNextResult": "Next result",
"Common.Views.SearchPanel.tipPreviousResult": "Previous result",
"Common.Views.SelectFileDlg.textLoading": "Loading",
- "Common.Views.SelectFileDlg.textTitle": "Select Data Source",
+ "Common.Views.SelectFileDlg.textTitle": "Select data source",
"Common.Views.SignDialog.textBold": "Bold",
"Common.Views.SignDialog.textCertificate": "Certificate",
"Common.Views.SignDialog.textChange": "Change",
@@ -653,13 +654,13 @@
"Common.Views.SignDialog.textNameError": "Signer name must not be empty.",
"Common.Views.SignDialog.textPurpose": "Purpose for signing this document",
"Common.Views.SignDialog.textSelect": "Select",
- "Common.Views.SignDialog.textSelectImage": "Select Image",
+ "Common.Views.SignDialog.textSelectImage": "Select image",
"Common.Views.SignDialog.textSignature": "Signature looks as",
- "Common.Views.SignDialog.textTitle": "Sign Document",
+ "Common.Views.SignDialog.textTitle": "Sign document",
"Common.Views.SignDialog.textUseImage": "or click 'Select Image' to use a picture as signature",
"Common.Views.SignDialog.textValid": "Valid from %1 to %2",
- "Common.Views.SignDialog.tipFontName": "Font Name",
- "Common.Views.SignDialog.tipFontSize": "Font Size",
+ "Common.Views.SignDialog.tipFontName": "Font name",
+ "Common.Views.SignDialog.tipFontSize": "Font size",
"Common.Views.SignSettingsDialog.textAllowComment": "Allow signer to add comment in the signature dialog",
"Common.Views.SignSettingsDialog.textDefInstruction": "Before signing this document, verify that the content you are signing is correct.",
"Common.Views.SignSettingsDialog.textInfoEmail": "Suggested signer's e-mail",
@@ -667,35 +668,35 @@
"Common.Views.SignSettingsDialog.textInfoTitle": "Suggested signer's title",
"Common.Views.SignSettingsDialog.textInstructions": "Instructions for signer",
"Common.Views.SignSettingsDialog.textShowDate": "Show sign date in signature line",
- "Common.Views.SignSettingsDialog.textTitle": "Signature Setup",
+ "Common.Views.SignSettingsDialog.textTitle": "Signature setup",
"Common.Views.SignSettingsDialog.txtEmpty": "This field is required",
"Common.Views.SymbolTableDialog.textCharacter": "Character",
"Common.Views.SymbolTableDialog.textCode": "Unicode HEX value",
- "Common.Views.SymbolTableDialog.textCopyright": "Copyright Sign",
- "Common.Views.SymbolTableDialog.textDCQuote": "Closing Double Quote",
- "Common.Views.SymbolTableDialog.textDOQuote": "Opening Double Quote",
- "Common.Views.SymbolTableDialog.textEllipsis": "Horizontal Ellipsis",
- "Common.Views.SymbolTableDialog.textEmDash": "Em Dash",
- "Common.Views.SymbolTableDialog.textEmSpace": "Em Space",
- "Common.Views.SymbolTableDialog.textEnDash": "En Dash",
- "Common.Views.SymbolTableDialog.textEnSpace": "En Space",
+ "Common.Views.SymbolTableDialog.textCopyright": "Copyright sign",
+ "Common.Views.SymbolTableDialog.textDCQuote": "Closing double quote",
+ "Common.Views.SymbolTableDialog.textDOQuote": "Opening double quote",
+ "Common.Views.SymbolTableDialog.textEllipsis": "Horizontal ellipsis",
+ "Common.Views.SymbolTableDialog.textEmDash": "Em dash",
+ "Common.Views.SymbolTableDialog.textEmSpace": "Em space",
+ "Common.Views.SymbolTableDialog.textEnDash": "En dash",
+ "Common.Views.SymbolTableDialog.textEnSpace": "En space",
"Common.Views.SymbolTableDialog.textFont": "Font",
- "Common.Views.SymbolTableDialog.textNBHyphen": "Non-breaking Hyphen",
- "Common.Views.SymbolTableDialog.textNBSpace": "No-break Space",
- "Common.Views.SymbolTableDialog.textPilcrow": "Pilcrow Sign",
- "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Em Space",
+ "Common.Views.SymbolTableDialog.textNBHyphen": "Non-breaking hyphen",
+ "Common.Views.SymbolTableDialog.textNBSpace": "No-break space",
+ "Common.Views.SymbolTableDialog.textPilcrow": "Pilcrow sign",
+ "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Em space",
"Common.Views.SymbolTableDialog.textRange": "Range",
"Common.Views.SymbolTableDialog.textRecent": "Recently used symbols",
- "Common.Views.SymbolTableDialog.textRegistered": "Registered Sign",
- "Common.Views.SymbolTableDialog.textSCQuote": "Closing Single Quote",
- "Common.Views.SymbolTableDialog.textSection": "Section Sign",
- "Common.Views.SymbolTableDialog.textShortcut": "Shortcut Key",
- "Common.Views.SymbolTableDialog.textSHyphen": "Soft Hyphen",
- "Common.Views.SymbolTableDialog.textSOQuote": "Opening Single Quote",
+ "Common.Views.SymbolTableDialog.textRegistered": "Registered sign",
+ "Common.Views.SymbolTableDialog.textSCQuote": "Closing single quote",
+ "Common.Views.SymbolTableDialog.textSection": "Section sign",
+ "Common.Views.SymbolTableDialog.textShortcut": "Shortcut key",
+ "Common.Views.SymbolTableDialog.textSHyphen": "Soft hyphen",
+ "Common.Views.SymbolTableDialog.textSOQuote": "Opening single quote",
"Common.Views.SymbolTableDialog.textSpecial": "Special characters",
"Common.Views.SymbolTableDialog.textSymbols": "Symbols",
"Common.Views.SymbolTableDialog.textTitle": "Symbol",
- "Common.Views.SymbolTableDialog.textTradeMark": "Trademark Symbol ",
+ "Common.Views.SymbolTableDialog.textTradeMark": "Trademark symbol ",
"Common.Views.UserNameDialog.textDontShow": "Don't ask me again",
"Common.Views.UserNameDialog.textLabel": "Label:",
"Common.Views.UserNameDialog.textLabelError": "Label must not be empty.",
@@ -742,6 +743,11 @@
"DE.Controllers.Main.errorFilePassProtect": "The file is password protected and cannot be opened.",
"DE.Controllers.Main.errorFileSizeExceed": "The file size exceeds the limitation set for your server. Please contact your Document Server administrator for details.",
"DE.Controllers.Main.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to a drive or try again later.",
+ "DE.Controllers.Main.errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "DE.Controllers.Main.errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "DE.Controllers.Main.errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "DE.Controllers.Main.errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "DE.Controllers.Main.errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
"DE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor",
"DE.Controllers.Main.errorKeyExpire": "Key descriptor expired",
"DE.Controllers.Main.errorLoadingFont": "Fonts are not loaded. Please contact your Document Server administrator.",
@@ -1459,7 +1465,7 @@
"DE.Views.BookmarksDialog.textClose": "Close",
"DE.Views.BookmarksDialog.textCopy": "Copy",
"DE.Views.BookmarksDialog.textDelete": "Delete",
- "DE.Views.BookmarksDialog.textGetLink": "Get Link",
+ "DE.Views.BookmarksDialog.textGetLink": "Get link",
"DE.Views.BookmarksDialog.textGoto": "Go to",
"DE.Views.BookmarksDialog.textHidden": "Hidden bookmarks",
"DE.Views.BookmarksDialog.textLocation": "Location",
@@ -1488,13 +1494,13 @@
"DE.Views.CaptionDialog.textPeriod": "period",
"DE.Views.CaptionDialog.textSeparator": "Use separator",
"DE.Views.CaptionDialog.textTable": "Table",
- "DE.Views.CaptionDialog.textTitle": "Insert Caption",
+ "DE.Views.CaptionDialog.textTitle": "Insert caption",
"DE.Views.CellsAddDialog.textCol": "Columns",
"DE.Views.CellsAddDialog.textDown": "Below the cursor",
"DE.Views.CellsAddDialog.textLeft": "To the left",
"DE.Views.CellsAddDialog.textRight": "To the right",
"DE.Views.CellsAddDialog.textRow": "Rows",
- "DE.Views.CellsAddDialog.textTitle": "Insert Several",
+ "DE.Views.CellsAddDialog.textTitle": "Insert several",
"DE.Views.CellsAddDialog.textUp": "Above the cursor",
"DE.Views.ChartSettings.text3dDepth": "Depth (% of base)",
"DE.Views.ChartSettings.text3dHeight": "Height (% of base)",
@@ -1532,7 +1538,7 @@
"DE.Views.ControlSettingsDialog.strGeneral": "General",
"DE.Views.ControlSettingsDialog.textAdd": "Add",
"DE.Views.ControlSettingsDialog.textAppearance": "Appearance",
- "DE.Views.ControlSettingsDialog.textApplyAll": "Apply to All",
+ "DE.Views.ControlSettingsDialog.textApplyAll": "Apply to all",
"DE.Views.ControlSettingsDialog.textBox": "Bounding box",
"DE.Views.ControlSettingsDialog.textChange": "Edit",
"DE.Views.ControlSettingsDialog.textCheckbox": "Check box",
@@ -1553,7 +1559,7 @@
"DE.Views.ControlSettingsDialog.textShowAs": "Show as",
"DE.Views.ControlSettingsDialog.textSystemColor": "System",
"DE.Views.ControlSettingsDialog.textTag": "Tag",
- "DE.Views.ControlSettingsDialog.textTitle": "Content Control Settings",
+ "DE.Views.ControlSettingsDialog.textTitle": "Content control settings",
"DE.Views.ControlSettingsDialog.textUnchecked": "Unchecked symbol",
"DE.Views.ControlSettingsDialog.textUp": "Up",
"DE.Views.ControlSettingsDialog.textValue": "Value",
@@ -1618,12 +1624,12 @@
"DE.Views.DocProtection.txtDocUnlockDescription": "Enter a password to unprotect document",
"DE.Views.DocProtection.txtProtectDoc": "Protect Document",
"DE.Views.DocumentHolder.aboveText": "Above",
- "DE.Views.DocumentHolder.addCommentText": "Add Comment",
+ "DE.Views.DocumentHolder.addCommentText": "Add comment",
"DE.Views.DocumentHolder.advancedDropCapText": "Drop Cap Settings",
"DE.Views.DocumentHolder.advancedEquationText": "Equation Settings",
"DE.Views.DocumentHolder.advancedFrameText": "Frame Advanced Settings",
- "DE.Views.DocumentHolder.advancedParagraphText": "Paragraph Advanced Settings",
- "DE.Views.DocumentHolder.advancedTableText": "Table Advanced Settings",
+ "DE.Views.DocumentHolder.advancedParagraphText": "Paragraph advanced settings",
+ "DE.Views.DocumentHolder.advancedTableText": "Table advanced settings",
"DE.Views.DocumentHolder.advancedText": "Advanced Settings",
"DE.Views.DocumentHolder.alignmentText": "Alignment",
"DE.Views.DocumentHolder.allLinearText": "All - Linear",
@@ -1631,10 +1637,10 @@
"DE.Views.DocumentHolder.belowText": "Below",
"DE.Views.DocumentHolder.breakBeforeText": "Page break before",
"DE.Views.DocumentHolder.bulletsText": "Bullets and Numbering",
- "DE.Views.DocumentHolder.cellAlignText": "Cell Vertical Alignment",
+ "DE.Views.DocumentHolder.cellAlignText": "Cell vertical alignment",
"DE.Views.DocumentHolder.cellText": "Cell",
"DE.Views.DocumentHolder.centerText": "Center",
- "DE.Views.DocumentHolder.chartText": "Chart Advanced Settings",
+ "DE.Views.DocumentHolder.chartText": "Chart advanced settings",
"DE.Views.DocumentHolder.columnText": "Column",
"DE.Views.DocumentHolder.currLinearText": "Current - Linear",
"DE.Views.DocumentHolder.currProfText": "Current - Professional",
@@ -1645,17 +1651,17 @@
"DE.Views.DocumentHolder.direct270Text": "Rotate Text Up",
"DE.Views.DocumentHolder.direct90Text": "Rotate Text Down",
"DE.Views.DocumentHolder.directHText": "Horizontal",
- "DE.Views.DocumentHolder.directionText": "Text Direction",
- "DE.Views.DocumentHolder.editChartText": "Edit Data",
+ "DE.Views.DocumentHolder.directionText": "Text direction",
+ "DE.Views.DocumentHolder.editChartText": "Edit data",
"DE.Views.DocumentHolder.editFooterText": "Edit Footer",
"DE.Views.DocumentHolder.editHeaderText": "Edit Header",
"DE.Views.DocumentHolder.editHyperlinkText": "Edit Hyperlink",
"DE.Views.DocumentHolder.eqToInlineText": "Change to Inline",
"DE.Views.DocumentHolder.guestText": "Guest",
"DE.Views.DocumentHolder.hyperlinkText": "Hyperlink",
- "DE.Views.DocumentHolder.ignoreAllSpellText": "Ignore All",
+ "DE.Views.DocumentHolder.ignoreAllSpellText": "Ignore all",
"DE.Views.DocumentHolder.ignoreSpellText": "Ignore",
- "DE.Views.DocumentHolder.imageText": "Image Advanced Settings",
+ "DE.Views.DocumentHolder.imageText": "Image advanced settings",
"DE.Views.DocumentHolder.insertColumnLeftText": "Column Left",
"DE.Views.DocumentHolder.insertColumnRightText": "Column Right",
"DE.Views.DocumentHolder.insertColumnText": "Insert Column",
@@ -1664,15 +1670,15 @@
"DE.Views.DocumentHolder.insertRowText": "Insert Row",
"DE.Views.DocumentHolder.insertText": "Insert",
"DE.Views.DocumentHolder.keepLinesText": "Keep lines together",
- "DE.Views.DocumentHolder.langText": "Select Language",
+ "DE.Views.DocumentHolder.langText": "Select language",
"DE.Views.DocumentHolder.latexText": "LaTeX",
"DE.Views.DocumentHolder.leftText": "Left",
"DE.Views.DocumentHolder.loadSpellText": "Loading variants...",
- "DE.Views.DocumentHolder.mergeCellsText": "Merge Cells",
+ "DE.Views.DocumentHolder.mergeCellsText": "Merge cells",
"DE.Views.DocumentHolder.moreText": "More variants...",
"DE.Views.DocumentHolder.noSpellVariantsText": "No variants",
"DE.Views.DocumentHolder.notcriticalErrorTitle": "Warning",
- "DE.Views.DocumentHolder.originalSizeText": "Actual Size",
+ "DE.Views.DocumentHolder.originalSizeText": "Actual size",
"DE.Views.DocumentHolder.paragraphText": "Paragraph",
"DE.Views.DocumentHolder.removeHyperlinkText": "Remove Hyperlink",
"DE.Views.DocumentHolder.rightText": "Right",
@@ -1683,9 +1689,9 @@
"DE.Views.DocumentHolder.selectRowText": "Select Row",
"DE.Views.DocumentHolder.selectTableText": "Select Table",
"DE.Views.DocumentHolder.selectText": "Select",
- "DE.Views.DocumentHolder.shapeText": "Shape Advanced Settings",
+ "DE.Views.DocumentHolder.shapeText": "Shape advanced settings",
"DE.Views.DocumentHolder.spellcheckText": "Spellcheck",
- "DE.Views.DocumentHolder.splitCellsText": "Split Cell...",
+ "DE.Views.DocumentHolder.splitCellsText": "Split cell...",
"DE.Views.DocumentHolder.splitCellTitleText": "Split Cell",
"DE.Views.DocumentHolder.strDelete": "Remove Signature",
"DE.Views.DocumentHolder.strDetails": "Signature Details",
@@ -1693,7 +1699,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.textAccept": "Accept change",
"DE.Views.DocumentHolder.textAlign": "Align",
"DE.Views.DocumentHolder.textArrange": "Arrange",
"DE.Views.DocumentHolder.textArrangeBack": "Send to Background",
@@ -1728,7 +1734,7 @@
"DE.Views.DocumentHolder.textPaste": "Paste",
"DE.Views.DocumentHolder.textPrevPage": "Previous Page",
"DE.Views.DocumentHolder.textRefreshField": "Update field",
- "DE.Views.DocumentHolder.textReject": "Reject Change",
+ "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",
@@ -1760,9 +1766,9 @@
"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.textWrap": "Wrapping style",
"DE.Views.DocumentHolder.tipIsLocked": "This element is currently being edited by another user.",
- "DE.Views.DocumentHolder.toDictionaryText": "Add to Dictionary",
+ "DE.Views.DocumentHolder.toDictionaryText": "Add to dictionary",
"DE.Views.DocumentHolder.txtAddBottom": "Add bottom border",
"DE.Views.DocumentHolder.txtAddFractionBar": "Add fraction bar",
"DE.Views.DocumentHolder.txtAddHor": "Add horizontal line",
@@ -1773,7 +1779,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 Text",
+ "DE.Views.DocumentHolder.txtBehind": "Behind text",
"DE.Views.DocumentHolder.txtBorderProps": "Border properties",
"DE.Views.DocumentHolder.txtBottom": "Bottom",
"DE.Views.DocumentHolder.txtColumnAlign": "Column alignment",
@@ -1785,8 +1791,8 @@
"DE.Views.DocumentHolder.txtDeleteEq": "Delete equation",
"DE.Views.DocumentHolder.txtDeleteGroupChar": "Delete char",
"DE.Views.DocumentHolder.txtDeleteRadical": "Delete radical",
- "DE.Views.DocumentHolder.txtDistribHor": "Distribute Horizontally",
- "DE.Views.DocumentHolder.txtDistribVert": "Distribute Vertically",
+ "DE.Views.DocumentHolder.txtDistribHor": "Distribute horizontally",
+ "DE.Views.DocumentHolder.txtDistribVert": "Distribute vertically",
"DE.Views.DocumentHolder.txtEmpty": "(Empty)",
"DE.Views.DocumentHolder.txtFractionLinear": "Change to linear fraction",
"DE.Views.DocumentHolder.txtFractionSkewed": "Change to skewed fraction",
@@ -1809,12 +1815,12 @@
"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 of Text",
- "DE.Views.DocumentHolder.txtInline": "In Line with Text",
+ "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",
- "DE.Views.DocumentHolder.txtInsertCaption": "Insert Caption",
+ "DE.Views.DocumentHolder.txtInsertCaption": "Insert caption",
"DE.Views.DocumentHolder.txtInsertEqAfter": "Insert equation after",
"DE.Views.DocumentHolder.txtInsertEqBefore": "Insert equation before",
"DE.Views.DocumentHolder.txtKeepTextOnly": "Keep text only",
@@ -1827,7 +1833,7 @@
"DE.Views.DocumentHolder.txtOverwriteCells": "Overwrite cells",
"DE.Views.DocumentHolder.txtPasteSourceFormat": "Keep source formatting",
"DE.Views.DocumentHolder.txtPressLink": "Press {0} and click link",
- "DE.Views.DocumentHolder.txtPrintSelection": "Print Selection",
+ "DE.Views.DocumentHolder.txtPrintSelection": "Print selection",
"DE.Views.DocumentHolder.txtRemFractionBar": "Remove fraction bar",
"DE.Views.DocumentHolder.txtRemLimit": "Remove limit",
"DE.Views.DocumentHolder.txtRemoveAccentChar": "Remove accent character",
@@ -1855,17 +1861,17 @@
"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.unicodeText": "Unicode",
"DE.Views.DocumentHolder.updateStyleText": "Update %1 style",
- "DE.Views.DocumentHolder.vertAlignText": "Vertical Alignment",
+ "DE.Views.DocumentHolder.vertAlignText": "Vertical alignment",
"DE.Views.DropcapSettingsAdvanced.strBorders": "Borders & Fill",
- "DE.Views.DropcapSettingsAdvanced.strDropcap": "Drop Cap",
+ "DE.Views.DropcapSettingsAdvanced.strDropcap": "Drop cap",
"DE.Views.DropcapSettingsAdvanced.strMargins": "Margins",
"DE.Views.DropcapSettingsAdvanced.textAlign": "Alignment",
"DE.Views.DropcapSettingsAdvanced.textAtLeast": "At least",
"DE.Views.DropcapSettingsAdvanced.textAuto": "Auto",
- "DE.Views.DropcapSettingsAdvanced.textBackColor": "Background Color",
- "DE.Views.DropcapSettingsAdvanced.textBorderColor": "Border Color",
+ "DE.Views.DropcapSettingsAdvanced.textBackColor": "Background color",
+ "DE.Views.DropcapSettingsAdvanced.textBorderColor": "Border color",
"DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Click on diagram or use buttons to select borders",
- "DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Border Size",
+ "DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Border size",
"DE.Views.DropcapSettingsAdvanced.textBottom": "Bottom",
"DE.Views.DropcapSettingsAdvanced.textCenter": "Center",
"DE.Views.DropcapSettingsAdvanced.textColumn": "Column",
@@ -1890,8 +1896,8 @@
"DE.Views.DropcapSettingsAdvanced.textRelative": "Relative to",
"DE.Views.DropcapSettingsAdvanced.textRight": "Right",
"DE.Views.DropcapSettingsAdvanced.textRowHeight": "Height in rows",
- "DE.Views.DropcapSettingsAdvanced.textTitle": "Drop Cap - Advanced Settings",
- "DE.Views.DropcapSettingsAdvanced.textTitleFrame": "Frame - Advanced Settings",
+ "DE.Views.DropcapSettingsAdvanced.textTitle": "Drop cap - Advanced settings",
+ "DE.Views.DropcapSettingsAdvanced.textTitleFrame": "Frame - Advanced settings",
"DE.Views.DropcapSettingsAdvanced.textTop": "Top",
"DE.Views.DropcapSettingsAdvanced.textVertical": "Vertical",
"DE.Views.DropcapSettingsAdvanced.textWidth": "Width",
@@ -2141,9 +2147,9 @@
"DE.Views.HeaderFooterSettings.textTopRight": "Top right",
"DE.Views.HyperlinkSettingsDialog.textDefault": "Selected text fragment",
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Display",
- "DE.Views.HyperlinkSettingsDialog.textExternal": "External Link",
- "DE.Views.HyperlinkSettingsDialog.textInternal": "Place in Document",
- "DE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink Settings",
+ "DE.Views.HyperlinkSettingsDialog.textExternal": "External link",
+ "DE.Views.HyperlinkSettingsDialog.textInternal": "Place in document",
+ "DE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink settings",
"DE.Views.HyperlinkSettingsDialog.textTooltip": "ScreenTip text",
"DE.Views.HyperlinkSettingsDialog.textUrl": "Link to",
"DE.Views.HyperlinkSettingsDialog.txtBeginning": "Beginning of document",
@@ -2184,10 +2190,10 @@
"DE.Views.ImageSettings.txtThrough": "Through",
"DE.Views.ImageSettings.txtTight": "Tight",
"DE.Views.ImageSettings.txtTopAndBottom": "Top and bottom",
- "DE.Views.ImageSettingsAdvanced.strMargins": "Text Padding",
+ "DE.Views.ImageSettingsAdvanced.strMargins": "Text padding",
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Absolute",
"DE.Views.ImageSettingsAdvanced.textAlignment": "Alignment",
- "DE.Views.ImageSettingsAdvanced.textAlt": "Alternative Text",
+ "DE.Views.ImageSettingsAdvanced.textAlt": "Alternative text",
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Description",
"DE.Views.ImageSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart, or table.",
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Title",
@@ -2195,36 +2201,36 @@
"DE.Views.ImageSettingsAdvanced.textArrows": "Arrows",
"DE.Views.ImageSettingsAdvanced.textAspectRatio": "Lock aspect ratio",
"DE.Views.ImageSettingsAdvanced.textAutofit": "AutoFit",
- "DE.Views.ImageSettingsAdvanced.textBeginSize": "Begin Size",
- "DE.Views.ImageSettingsAdvanced.textBeginStyle": "Begin Style",
+ "DE.Views.ImageSettingsAdvanced.textBeginSize": "Begin size",
+ "DE.Views.ImageSettingsAdvanced.textBeginStyle": "Begin style",
"DE.Views.ImageSettingsAdvanced.textBelow": "below",
"DE.Views.ImageSettingsAdvanced.textBevel": "Bevel",
"DE.Views.ImageSettingsAdvanced.textBottom": "Bottom",
- "DE.Views.ImageSettingsAdvanced.textBottomMargin": "Bottom Margin",
- "DE.Views.ImageSettingsAdvanced.textBtnWrap": "Text Wrapping",
- "DE.Views.ImageSettingsAdvanced.textCapType": "Cap Type",
+ "DE.Views.ImageSettingsAdvanced.textBottomMargin": "Bottom margin",
+ "DE.Views.ImageSettingsAdvanced.textBtnWrap": "Text wrapping",
+ "DE.Views.ImageSettingsAdvanced.textCapType": "Cap type",
"DE.Views.ImageSettingsAdvanced.textCenter": "Center",
"DE.Views.ImageSettingsAdvanced.textCharacter": "Character",
"DE.Views.ImageSettingsAdvanced.textColumn": "Column",
- "DE.Views.ImageSettingsAdvanced.textDistance": "Distance from Text",
- "DE.Views.ImageSettingsAdvanced.textEndSize": "End Size",
- "DE.Views.ImageSettingsAdvanced.textEndStyle": "End Style",
+ "DE.Views.ImageSettingsAdvanced.textDistance": "Distance from text",
+ "DE.Views.ImageSettingsAdvanced.textEndSize": "End size",
+ "DE.Views.ImageSettingsAdvanced.textEndStyle": "End style",
"DE.Views.ImageSettingsAdvanced.textFlat": "Flat",
"DE.Views.ImageSettingsAdvanced.textFlipped": "Flipped",
"DE.Views.ImageSettingsAdvanced.textHeight": "Height",
"DE.Views.ImageSettingsAdvanced.textHorizontal": "Horizontal",
"DE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontally",
- "DE.Views.ImageSettingsAdvanced.textJoinType": "Join Type",
+ "DE.Views.ImageSettingsAdvanced.textJoinType": "Join type",
"DE.Views.ImageSettingsAdvanced.textKeepRatio": "Constant proportions",
"DE.Views.ImageSettingsAdvanced.textLeft": "Left",
- "DE.Views.ImageSettingsAdvanced.textLeftMargin": "Left Margin",
+ "DE.Views.ImageSettingsAdvanced.textLeftMargin": "Left margin",
"DE.Views.ImageSettingsAdvanced.textLine": "Line",
- "DE.Views.ImageSettingsAdvanced.textLineStyle": "Line Style",
+ "DE.Views.ImageSettingsAdvanced.textLineStyle": "Line style",
"DE.Views.ImageSettingsAdvanced.textMargin": "Margin",
"DE.Views.ImageSettingsAdvanced.textMiter": "Miter",
"DE.Views.ImageSettingsAdvanced.textMove": "Move object with text",
"DE.Views.ImageSettingsAdvanced.textOptions": "Options",
- "DE.Views.ImageSettingsAdvanced.textOriginalSize": "Actual Size",
+ "DE.Views.ImageSettingsAdvanced.textOriginalSize": "Actual size",
"DE.Views.ImageSettingsAdvanced.textOverlap": "Allow overlap",
"DE.Views.ImageSettingsAdvanced.textPage": "Page",
"DE.Views.ImageSettingsAdvanced.textParagraph": "Paragraph",
@@ -2234,27 +2240,27 @@
"DE.Views.ImageSettingsAdvanced.textRelativeWH": "Relative",
"DE.Views.ImageSettingsAdvanced.textResizeFit": "Resize shape to fit text",
"DE.Views.ImageSettingsAdvanced.textRight": "Right",
- "DE.Views.ImageSettingsAdvanced.textRightMargin": "Right Margin",
+ "DE.Views.ImageSettingsAdvanced.textRightMargin": "Right margin",
"DE.Views.ImageSettingsAdvanced.textRightOf": "to the right of",
"DE.Views.ImageSettingsAdvanced.textRotation": "Rotation",
"DE.Views.ImageSettingsAdvanced.textRound": "Round",
- "DE.Views.ImageSettingsAdvanced.textShape": "Shape Settings",
+ "DE.Views.ImageSettingsAdvanced.textShape": "Shape settings",
"DE.Views.ImageSettingsAdvanced.textSize": "Size",
"DE.Views.ImageSettingsAdvanced.textSquare": "Square",
- "DE.Views.ImageSettingsAdvanced.textTextBox": "Text Box",
- "DE.Views.ImageSettingsAdvanced.textTitle": "Image - Advanced Settings",
- "DE.Views.ImageSettingsAdvanced.textTitleChart": "Chart - Advanced Settings",
- "DE.Views.ImageSettingsAdvanced.textTitleShape": "Shape - Advanced Settings",
+ "DE.Views.ImageSettingsAdvanced.textTextBox": "Text box",
+ "DE.Views.ImageSettingsAdvanced.textTitle": "Image - Advanced settings",
+ "DE.Views.ImageSettingsAdvanced.textTitleChart": "Chart - Advanced settings",
+ "DE.Views.ImageSettingsAdvanced.textTitleShape": "Shape - Advanced settings",
"DE.Views.ImageSettingsAdvanced.textTop": "Top",
- "DE.Views.ImageSettingsAdvanced.textTopMargin": "Top Margin",
+ "DE.Views.ImageSettingsAdvanced.textTopMargin": "Top margin",
"DE.Views.ImageSettingsAdvanced.textVertical": "Vertical",
"DE.Views.ImageSettingsAdvanced.textVertically": "Vertically",
"DE.Views.ImageSettingsAdvanced.textWeightArrows": "Weights & Arrows",
"DE.Views.ImageSettingsAdvanced.textWidth": "Width",
- "DE.Views.ImageSettingsAdvanced.textWrap": "Wrapping Style",
- "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.textWrap": "Wrapping style",
+ "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",
@@ -2282,11 +2288,11 @@
"DE.Views.LineNumbersDialog.textForward": "This point forward",
"DE.Views.LineNumbersDialog.textFromText": "From text",
"DE.Views.LineNumbersDialog.textNumbering": "Numbering",
- "DE.Views.LineNumbersDialog.textRestartEachPage": "Restart Each Page",
- "DE.Views.LineNumbersDialog.textRestartEachSection": "Restart Each Section",
+ "DE.Views.LineNumbersDialog.textRestartEachPage": "Restart each page",
+ "DE.Views.LineNumbersDialog.textRestartEachSection": "Restart each section",
"DE.Views.LineNumbersDialog.textSection": "Current section",
"DE.Views.LineNumbersDialog.textStartAt": "Start at",
- "DE.Views.LineNumbersDialog.textTitle": "Line Numbers",
+ "DE.Views.LineNumbersDialog.textTitle": "Line numbers",
"DE.Views.LineNumbersDialog.txtAutoText": "Auto",
"DE.Views.Links.capBtnAddText": "Add Text",
"DE.Views.Links.capBtnBookmarks": "Bookmark",
@@ -2335,13 +2341,13 @@
"DE.Views.ListSettingsDialog.txtAlign": "Alignment",
"DE.Views.ListSettingsDialog.txtBullet": "Bullet",
"DE.Views.ListSettingsDialog.txtColor": "Color",
- "DE.Views.ListSettingsDialog.txtFont": "Font and Symbol",
+ "DE.Views.ListSettingsDialog.txtFont": "Font and symbol",
"DE.Views.ListSettingsDialog.txtLikeText": "Like a text",
"DE.Views.ListSettingsDialog.txtNewBullet": "New bullet",
"DE.Views.ListSettingsDialog.txtNone": "None",
"DE.Views.ListSettingsDialog.txtSize": "Size",
"DE.Views.ListSettingsDialog.txtSymbol": "Symbol",
- "DE.Views.ListSettingsDialog.txtTitle": "List Settings",
+ "DE.Views.ListSettingsDialog.txtTitle": "List settings",
"DE.Views.ListSettingsDialog.txtType": "Type",
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
"DE.Views.MailMergeEmailDlg.okButtonText": "Send",
@@ -2353,8 +2359,8 @@
"DE.Views.MailMergeEmailDlg.textFrom": "From",
"DE.Views.MailMergeEmailDlg.textHTML": "HTML",
"DE.Views.MailMergeEmailDlg.textMessage": "Message",
- "DE.Views.MailMergeEmailDlg.textSubject": "Subject Line",
- "DE.Views.MailMergeEmailDlg.textTitle": "Send to Email",
+ "DE.Views.MailMergeEmailDlg.textSubject": "Subject line",
+ "DE.Views.MailMergeEmailDlg.textTitle": "Send to email",
"DE.Views.MailMergeEmailDlg.textTo": "To",
"DE.Views.MailMergeEmailDlg.textWarning": "Warning!",
"DE.Views.MailMergeEmailDlg.textWarningMsg": "Please note that mailing cannot be stopped once your click the 'Send' button.",
@@ -2413,7 +2419,7 @@
"DE.Views.NoteSettingsDialog.textApply": "Apply",
"DE.Views.NoteSettingsDialog.textApplyTo": "Apply changes to",
"DE.Views.NoteSettingsDialog.textContinue": "Continuous",
- "DE.Views.NoteSettingsDialog.textCustom": "Custom Mark",
+ "DE.Views.NoteSettingsDialog.textCustom": "Custom mark",
"DE.Views.NoteSettingsDialog.textDocEnd": "End of document",
"DE.Views.NoteSettingsDialog.textDocument": "Whole document",
"DE.Views.NoteSettingsDialog.textEachPage": "Restart each page",
@@ -2424,16 +2430,16 @@
"DE.Views.NoteSettingsDialog.textInsert": "Insert",
"DE.Views.NoteSettingsDialog.textLocation": "Location",
"DE.Views.NoteSettingsDialog.textNumbering": "Numbering",
- "DE.Views.NoteSettingsDialog.textNumFormat": "Number Format",
+ "DE.Views.NoteSettingsDialog.textNumFormat": "Number format",
"DE.Views.NoteSettingsDialog.textPageBottom": "Bottom of page",
"DE.Views.NoteSettingsDialog.textSectEnd": "End of section",
"DE.Views.NoteSettingsDialog.textSection": "Current section",
"DE.Views.NoteSettingsDialog.textStart": "Start at",
"DE.Views.NoteSettingsDialog.textTextBottom": "Below text",
- "DE.Views.NoteSettingsDialog.textTitle": "Notes Settings",
- "DE.Views.NotesRemoveDialog.textEnd": "Delete All Endnotes",
- "DE.Views.NotesRemoveDialog.textFoot": "Delete All Footnotes",
- "DE.Views.NotesRemoveDialog.textTitle": "Delete Notes",
+ "DE.Views.NoteSettingsDialog.textTitle": "Notes settings",
+ "DE.Views.NotesRemoveDialog.textEnd": "Delete all endnotes",
+ "DE.Views.NotesRemoveDialog.textFoot": "Delete all footnotes",
+ "DE.Views.NotesRemoveDialog.textTitle": "Delete notes",
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Warning",
"DE.Views.PageMarginsDialog.textBottom": "Bottom",
"DE.Views.PageMarginsDialog.textGutter": "Gutter",
@@ -2455,7 +2461,7 @@
"DE.Views.PageMarginsDialog.txtMarginsW": "Left and right margins are too wide for a given page width",
"DE.Views.PageSizeDialog.textHeight": "Height",
"DE.Views.PageSizeDialog.textPreset": "Preset",
- "DE.Views.PageSizeDialog.textTitle": "Page Size",
+ "DE.Views.PageSizeDialog.textTitle": "Page size",
"DE.Views.PageSizeDialog.textWidth": "Width",
"DE.Views.PageSizeDialog.txtCustom": "Custom",
"DE.Views.PageThumbnails.textClosePanel": "Close page thumbnails",
@@ -2489,7 +2495,7 @@
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double strikethrough",
"DE.Views.ParagraphSettingsAdvanced.strIndent": "Indents",
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Left",
- "DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Line Spacing",
+ "DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Line spacing",
"DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "Outline level",
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Right",
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "After",
@@ -2501,7 +2507,7 @@
"DE.Views.ParagraphSettingsAdvanced.strOrphan": "Orphan control",
"DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Font",
"DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Indents & Spacing",
- "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Line & Page Breaks",
+ "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Line & Page breaks",
"DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Placement",
"DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Small caps",
"DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "Don't add interval between paragraphs of the same style",
@@ -2515,26 +2521,26 @@
"DE.Views.ParagraphSettingsAdvanced.textAll": "All",
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "At least",
"DE.Views.ParagraphSettingsAdvanced.textAuto": "Multiple",
- "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Background Color",
- "DE.Views.ParagraphSettingsAdvanced.textBodyText": "Basic Text",
- "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Border Color",
+ "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Background color",
+ "DE.Views.ParagraphSettingsAdvanced.textBodyText": "Basic text",
+ "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Border color",
"DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Click on diagram or use buttons to select borders and apply chosen style to them",
- "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Border Size",
+ "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Border size",
"DE.Views.ParagraphSettingsAdvanced.textBottom": "Bottom",
"DE.Views.ParagraphSettingsAdvanced.textCentered": "Centered",
- "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Character Spacing",
+ "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Character spacing",
"DE.Views.ParagraphSettingsAdvanced.textContext": "Contextual",
- "DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Contextual and Discretionary",
- "DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Contextual, Historical and Discretionary",
- "DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Contextual and Historical",
- "DE.Views.ParagraphSettingsAdvanced.textDefault": "Default Tab",
+ "DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Contextual and discretionary",
+ "DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Contextual, historical and discretionary",
+ "DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Contextual and historical",
+ "DE.Views.ParagraphSettingsAdvanced.textDefault": "Default tab",
"DE.Views.ParagraphSettingsAdvanced.textDiscret": "Discretionary",
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Effects",
"DE.Views.ParagraphSettingsAdvanced.textExact": "Exactly",
"DE.Views.ParagraphSettingsAdvanced.textFirstLine": "First line",
"DE.Views.ParagraphSettingsAdvanced.textHanging": "Hanging",
"DE.Views.ParagraphSettingsAdvanced.textHistorical": "Historical",
- "DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "Historical and Discretionary",
+ "DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "Historical and discretionary",
"DE.Views.ParagraphSettingsAdvanced.textJustified": "Justified",
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Leader",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Left",
@@ -2542,25 +2548,25 @@
"DE.Views.ParagraphSettingsAdvanced.textLigatures": "Ligatures",
"DE.Views.ParagraphSettingsAdvanced.textNone": "None",
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(none)",
- "DE.Views.ParagraphSettingsAdvanced.textOpenType": "OpenType Features",
+ "DE.Views.ParagraphSettingsAdvanced.textOpenType": "OpenType features",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Position",
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Remove",
- "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Remove All",
+ "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Remove all",
"DE.Views.ParagraphSettingsAdvanced.textRight": "Right",
"DE.Views.ParagraphSettingsAdvanced.textSet": "Specify",
"DE.Views.ParagraphSettingsAdvanced.textSpacing": "Spacing",
"DE.Views.ParagraphSettingsAdvanced.textStandard": "Standard only",
- "DE.Views.ParagraphSettingsAdvanced.textStandardContext": "Standard and Contextual",
- "DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "Standard, Contextual and Discretionary",
- "DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "Standard, Contextual and Historical",
- "DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "Standard and Discretionary",
- "DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret": "Standard, Historical and Discretionary",
- "DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "Standard and Historical",
+ "DE.Views.ParagraphSettingsAdvanced.textStandardContext": "Standard and contextual",
+ "DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "Standard, contextual and discretionary",
+ "DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "Standard, contextual and historical",
+ "DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "Standard and discretionary",
+ "DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret": "Standard, historical and discretionary",
+ "DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "Standard and historical",
"DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Center",
"DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Left",
- "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tab Position",
+ "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tab position",
"DE.Views.ParagraphSettingsAdvanced.textTabRight": "Right",
- "DE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraph - Advanced Settings",
+ "DE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraph - Advanced settings",
"DE.Views.ParagraphSettingsAdvanced.textTop": "Top",
"DE.Views.ParagraphSettingsAdvanced.tipAll": "Set outer border and all inner lines",
"DE.Views.ParagraphSettingsAdvanced.tipBottom": "Set bottom border only",
@@ -2685,20 +2691,20 @@
"DE.Views.Statusbar.tipZoomIn": "Zoom in",
"DE.Views.Statusbar.tipZoomOut": "Zoom out",
"DE.Views.Statusbar.txtPageNumInvalid": "Page number invalid",
- "DE.Views.StyleTitleDialog.textHeader": "Create New Style",
+ "DE.Views.StyleTitleDialog.textHeader": "Create new style",
"DE.Views.StyleTitleDialog.textNextStyle": "Next paragraph style",
"DE.Views.StyleTitleDialog.textTitle": "Title",
"DE.Views.StyleTitleDialog.txtEmpty": "This field is required",
"DE.Views.StyleTitleDialog.txtNotEmpty": "Field must not be empty",
"DE.Views.StyleTitleDialog.txtSameAs": "Same as created new style",
- "DE.Views.TableFormulaDialog.textBookmark": "Paste Bookmark",
- "DE.Views.TableFormulaDialog.textFormat": "Number Format",
+ "DE.Views.TableFormulaDialog.textBookmark": "Paste bookmark",
+ "DE.Views.TableFormulaDialog.textFormat": "Number format",
"DE.Views.TableFormulaDialog.textFormula": "Formula",
- "DE.Views.TableFormulaDialog.textInsertFunction": "Paste Function",
- "DE.Views.TableFormulaDialog.textTitle": "Formula Settings",
+ "DE.Views.TableFormulaDialog.textInsertFunction": "Paste function",
+ "DE.Views.TableFormulaDialog.textTitle": "Formula settings",
"DE.Views.TableOfContentsSettings.strAlign": "Right align page numbers",
"DE.Views.TableOfContentsSettings.strFullCaption": "Include label and number",
- "DE.Views.TableOfContentsSettings.strLinks": "Format Table of Contents as links",
+ "DE.Views.TableOfContentsSettings.strLinks": "Format table of contents as links",
"DE.Views.TableOfContentsSettings.strLinksOF": "Format table of figures as links",
"DE.Views.TableOfContentsSettings.strShowPages": "Show page numbers",
"DE.Views.TableOfContentsSettings.textBuildTable": "Build table of contents from",
@@ -2716,8 +2722,8 @@
"DE.Views.TableOfContentsSettings.textStyle": "Style",
"DE.Views.TableOfContentsSettings.textStyles": "Styles",
"DE.Views.TableOfContentsSettings.textTable": "Table",
- "DE.Views.TableOfContentsSettings.textTitle": "Table of Contents",
- "DE.Views.TableOfContentsSettings.textTitleTOF": "Table of Figures",
+ "DE.Views.TableOfContentsSettings.textTitle": "Table of contents",
+ "DE.Views.TableOfContentsSettings.textTitleTOF": "Table of figures",
"DE.Views.TableOfContentsSettings.txtCentered": "Centered",
"DE.Views.TableOfContentsSettings.txtClassic": "Classic",
"DE.Views.TableOfContentsSettings.txtCurrent": "Current",
@@ -2794,33 +2800,33 @@
"DE.Views.TableSettingsAdvanced.textAlign": "Alignment",
"DE.Views.TableSettingsAdvanced.textAlignment": "Alignment",
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Spacing between cells",
- "DE.Views.TableSettingsAdvanced.textAlt": "Alternative Text",
+ "DE.Views.TableSettingsAdvanced.textAlt": "Alternative text",
"DE.Views.TableSettingsAdvanced.textAltDescription": "Description",
"DE.Views.TableSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart, or table.",
"DE.Views.TableSettingsAdvanced.textAltTitle": "Title",
"DE.Views.TableSettingsAdvanced.textAnchorText": "Text",
"DE.Views.TableSettingsAdvanced.textAutofit": "Automatically resize to fit contents",
- "DE.Views.TableSettingsAdvanced.textBackColor": "Cell Background",
+ "DE.Views.TableSettingsAdvanced.textBackColor": "Cell background",
"DE.Views.TableSettingsAdvanced.textBelow": "below",
- "DE.Views.TableSettingsAdvanced.textBorderColor": "Border Color",
+ "DE.Views.TableSettingsAdvanced.textBorderColor": "Border color",
"DE.Views.TableSettingsAdvanced.textBorderDesc": "Click on diagram or use buttons to select borders and apply chosen style to them",
"DE.Views.TableSettingsAdvanced.textBordersBackgroung": "Borders & Background",
- "DE.Views.TableSettingsAdvanced.textBorderWidth": "Border Size",
+ "DE.Views.TableSettingsAdvanced.textBorderWidth": "Border size",
"DE.Views.TableSettingsAdvanced.textBottom": "Bottom",
- "DE.Views.TableSettingsAdvanced.textCellOptions": "Cell Options",
+ "DE.Views.TableSettingsAdvanced.textCellOptions": "Cell options",
"DE.Views.TableSettingsAdvanced.textCellProps": "Cell",
- "DE.Views.TableSettingsAdvanced.textCellSize": "Cell Size",
+ "DE.Views.TableSettingsAdvanced.textCellSize": "Cell size",
"DE.Views.TableSettingsAdvanced.textCenter": "Center",
"DE.Views.TableSettingsAdvanced.textCenterTooltip": "Center",
"DE.Views.TableSettingsAdvanced.textCheckMargins": "Use default margins",
- "DE.Views.TableSettingsAdvanced.textDefaultMargins": "Default Cell Margins",
- "DE.Views.TableSettingsAdvanced.textDistance": "Distance from Text",
+ "DE.Views.TableSettingsAdvanced.textDefaultMargins": "Default cell margins",
+ "DE.Views.TableSettingsAdvanced.textDistance": "Distance from text",
"DE.Views.TableSettingsAdvanced.textHorizontal": "Horizontal",
- "DE.Views.TableSettingsAdvanced.textIndLeft": "Indent from Left",
+ "DE.Views.TableSettingsAdvanced.textIndLeft": "Indent from left",
"DE.Views.TableSettingsAdvanced.textLeft": "Left",
"DE.Views.TableSettingsAdvanced.textLeftTooltip": "Left",
"DE.Views.TableSettingsAdvanced.textMargin": "Margin",
- "DE.Views.TableSettingsAdvanced.textMargins": "Cell Margins",
+ "DE.Views.TableSettingsAdvanced.textMargins": "Cell margins",
"DE.Views.TableSettingsAdvanced.textMeasure": "Measure in",
"DE.Views.TableSettingsAdvanced.textMove": "Move object with text",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "For selected cells only",
@@ -2835,18 +2841,18 @@
"DE.Views.TableSettingsAdvanced.textRightOf": "to the right of",
"DE.Views.TableSettingsAdvanced.textRightTooltip": "Right",
"DE.Views.TableSettingsAdvanced.textTable": "Table",
- "DE.Views.TableSettingsAdvanced.textTableBackColor": "Table Background",
- "DE.Views.TableSettingsAdvanced.textTablePosition": "Table Position",
- "DE.Views.TableSettingsAdvanced.textTableSize": "Table Size",
- "DE.Views.TableSettingsAdvanced.textTitle": "Table - Advanced Settings",
+ "DE.Views.TableSettingsAdvanced.textTableBackColor": "Table background",
+ "DE.Views.TableSettingsAdvanced.textTablePosition": "Table position",
+ "DE.Views.TableSettingsAdvanced.textTableSize": "Table size",
+ "DE.Views.TableSettingsAdvanced.textTitle": "Table - Advanced settings",
"DE.Views.TableSettingsAdvanced.textTop": "Top",
"DE.Views.TableSettingsAdvanced.textVertical": "Vertical",
"DE.Views.TableSettingsAdvanced.textWidth": "Width",
"DE.Views.TableSettingsAdvanced.textWidthSpaces": "Width & Spaces",
- "DE.Views.TableSettingsAdvanced.textWrap": "Text Wrapping",
+ "DE.Views.TableSettingsAdvanced.textWrap": "Text wrapping",
"DE.Views.TableSettingsAdvanced.textWrapNoneTooltip": "Inline table",
"DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "Flow table",
- "DE.Views.TableSettingsAdvanced.textWrappingStyle": "Wrapping Style",
+ "DE.Views.TableSettingsAdvanced.textWrappingStyle": "Wrapping style",
"DE.Views.TableSettingsAdvanced.textWrapText": "Wrap text",
"DE.Views.TableSettingsAdvanced.tipAll": "Set outer border and all inner lines",
"DE.Views.TableSettingsAdvanced.tipCellAll": "Set borders for inner cells only",
@@ -2870,7 +2876,7 @@
"DE.Views.TableToTextDialog.textSemicolon": "Semicolons",
"DE.Views.TableToTextDialog.textSeparator": "Separate text with",
"DE.Views.TableToTextDialog.textTab": "Tabs",
- "DE.Views.TableToTextDialog.textTitle": "Convert Table to Text",
+ "DE.Views.TableToTextDialog.textTitle": "Convert table to text",
"DE.Views.TextArtSettings.strColor": "Color",
"DE.Views.TextArtSettings.strFill": "Fill",
"DE.Views.TextArtSettings.strSize": "Size",
@@ -2894,7 +2900,7 @@
"DE.Views.TextArtSettings.tipAddGradientPoint": "Add gradient point",
"DE.Views.TextArtSettings.tipRemoveGradientPoint": "Remove gradient point",
"DE.Views.TextArtSettings.txtNoBorders": "No Line",
- "DE.Views.TextToTableDialog.textAutofit": "Autofit Behavior",
+ "DE.Views.TextToTableDialog.textAutofit": "Autofit behavior",
"DE.Views.TextToTableDialog.textColumns": "Columns",
"DE.Views.TextToTableDialog.textContents": "Autofit to contents",
"DE.Views.TextToTableDialog.textEmpty": "You must type a character for the custom separator.",
@@ -2903,10 +2909,10 @@
"DE.Views.TextToTableDialog.textPara": "Paragraphs",
"DE.Views.TextToTableDialog.textRows": "Rows",
"DE.Views.TextToTableDialog.textSemicolon": "Semicolons",
- "DE.Views.TextToTableDialog.textSeparator": "Separate Text at",
+ "DE.Views.TextToTableDialog.textSeparator": "Separate text at",
"DE.Views.TextToTableDialog.textTab": "Tabs",
- "DE.Views.TextToTableDialog.textTableSize": "Table Size",
- "DE.Views.TextToTableDialog.textTitle": "Convert Text to Table",
+ "DE.Views.TextToTableDialog.textTableSize": "Table size",
+ "DE.Views.TextToTableDialog.textTitle": "Convert text to table",
"DE.Views.TextToTableDialog.textWindow": "Autofit to window",
"DE.Views.TextToTableDialog.txtAutoText": "Auto",
"DE.Views.Toolbar.capBtnAddComment": "Add Comment",
@@ -3145,13 +3151,15 @@
"DE.Views.Toolbar.txtScheme7": "Equity",
"DE.Views.Toolbar.txtScheme8": "Flow",
"DE.Views.Toolbar.txtScheme9": "Foundry",
- "DE.Views.ViewTab.textAlwaysShowToolbar": "Always show toolbar",
- "DE.Views.ViewTab.textDarkDocument": "Dark document",
+ "DE.Views.ViewTab.textAlwaysShowToolbar": "Always Show Toolbar",
+ "DE.Views.ViewTab.textDarkDocument": "Dark Document",
"DE.Views.ViewTab.textFitToPage": "Fit To Page",
"DE.Views.ViewTab.textFitToWidth": "Fit To Width",
- "DE.Views.ViewTab.textInterfaceTheme": "Interface theme",
+ "DE.Views.ViewTab.textInterfaceTheme": "Interface Theme",
+ "DE.Views.ViewTab.textLeftMenu": "Left Panel",
"DE.Views.ViewTab.textNavigation": "Navigation",
"DE.Views.ViewTab.textOutline": "Headings",
+ "DE.Views.ViewTab.textRightMenu": "Right Panel",
"DE.Views.ViewTab.textRulers": "Rulers",
"DE.Views.ViewTab.textStatusBar": "Status Bar",
"DE.Views.ViewTab.textZoom": "Zoom",
@@ -3160,15 +3168,13 @@
"DE.Views.ViewTab.tipFitToWidth": "Fit to width",
"DE.Views.ViewTab.tipHeadings": "Headings",
"DE.Views.ViewTab.tipInterfaceTheme": "Interface theme",
- "DE.Views.ViewTab.textLeftMenu": "Left panel",
- "DE.Views.ViewTab.textRightMenu": "Right panel",
"DE.Views.WatermarkSettingsDialog.textAuto": "Auto",
"DE.Views.WatermarkSettingsDialog.textBold": "Bold",
"DE.Views.WatermarkSettingsDialog.textColor": "Text color",
"DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonal",
"DE.Views.WatermarkSettingsDialog.textFont": "Font",
- "DE.Views.WatermarkSettingsDialog.textFromFile": "From File",
- "DE.Views.WatermarkSettingsDialog.textFromStorage": "From Storage",
+ "DE.Views.WatermarkSettingsDialog.textFromFile": "From file",
+ "DE.Views.WatermarkSettingsDialog.textFromStorage": "From storage",
"DE.Views.WatermarkSettingsDialog.textFromUrl": "From URL",
"DE.Views.WatermarkSettingsDialog.textHor": "Horizontal",
"DE.Views.WatermarkSettingsDialog.textImageW": "Image watermark",
@@ -3177,13 +3183,13 @@
"DE.Views.WatermarkSettingsDialog.textLayout": "Layout",
"DE.Views.WatermarkSettingsDialog.textNone": "None",
"DE.Views.WatermarkSettingsDialog.textScale": "Scale",
- "DE.Views.WatermarkSettingsDialog.textSelect": "Select Image",
+ "DE.Views.WatermarkSettingsDialog.textSelect": "Select image",
"DE.Views.WatermarkSettingsDialog.textStrikeout": "Strikethrough",
"DE.Views.WatermarkSettingsDialog.textText": "Text",
"DE.Views.WatermarkSettingsDialog.textTextW": "Text watermark",
- "DE.Views.WatermarkSettingsDialog.textTitle": "Watermark Settings",
+ "DE.Views.WatermarkSettingsDialog.textTitle": "Watermark settings",
"DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparent",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Underline",
- "DE.Views.WatermarkSettingsDialog.tipFontName": "Font Name",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Font Size"
+ "DE.Views.WatermarkSettingsDialog.tipFontName": "Font name",
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Font size"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/es.json b/apps/documenteditor/main/locale/es.json
index 37f9eb482..7df1061ba 100644
--- a/apps/documenteditor/main/locale/es.json
+++ b/apps/documenteditor/main/locale/es.json
@@ -125,6 +125,165 @@
"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.smartArt.textAccentedPicture": "Imagen destacada",
+ "Common.define.smartArt.textAccentProcess": "Proceso destacado",
+ "Common.define.smartArt.textAlternatingFlow": "Flujo alternativo",
+ "Common.define.smartArt.textAlternatingHexagons": "Hexágonos alternados",
+ "Common.define.smartArt.textAlternatingPictureBlocks": "Bloques de imágenes alternativos",
+ "Common.define.smartArt.textAlternatingPictureCircles": "Círculos con imágenes alternativos",
+ "Common.define.smartArt.textArchitectureLayout": "Diseño de arquitectura",
+ "Common.define.smartArt.textArrowRibbon": "Cinta de flechas",
+ "Common.define.smartArt.textAscendingPictureAccentProcess": "Proceso de imágenes destacadas ascendente",
+ "Common.define.smartArt.textBalance": "Saldo",
+ "Common.define.smartArt.textBasicBendingProcess": "Proceso curvo básico",
+ "Common.define.smartArt.textBasicBlockList": "Lista de bloques básica",
+ "Common.define.smartArt.textBasicChevronProcess": "Proceso cheurón básico",
+ "Common.define.smartArt.textBasicCycle": "Ciclo básico",
+ "Common.define.smartArt.textBasicMatrix": "Matriz básica",
+ "Common.define.smartArt.textBasicPie": "Circular básico",
+ "Common.define.smartArt.textBasicProcess": "Proceso básico",
+ "Common.define.smartArt.textBasicPyramid": "Pirámide básica",
+ "Common.define.smartArt.textBasicRadial": "Radial básico",
+ "Common.define.smartArt.textBasicTarget": "Objetivo básico",
+ "Common.define.smartArt.textBasicTimeline": "Escala de tiempo básica",
+ "Common.define.smartArt.textBasicVenn": "Venn básico",
+ "Common.define.smartArt.textBendingPictureAccentList": "Lista destacada con círculos abajo",
+ "Common.define.smartArt.textBendingPictureBlocks": "Bloques de imágenes con cuadro",
+ "Common.define.smartArt.textBendingPictureCaption": "Imágenes con títulos",
+ "Common.define.smartArt.textBendingPictureCaptionList": "Lista de títulos de imágenes",
+ "Common.define.smartArt.textBendingPictureSemiTranparentText": "Imágenes con texto semitransparente",
+ "Common.define.smartArt.textBlockCycle": "Ciclo de bloques",
+ "Common.define.smartArt.textBubblePictureList": "Lista de imágenes con burbujas",
+ "Common.define.smartArt.textCaptionedPictures": "Imágenes con títulos",
+ "Common.define.smartArt.textChevronAccentProcess": "Proceso cheurón destacado",
+ "Common.define.smartArt.textChevronList": "Lista de cheurones",
+ "Common.define.smartArt.textCircleAccentTimeline": "Línea de tiempo con círculos",
+ "Common.define.smartArt.textCircleArrowProcess": "Proceso de círculos con flecha",
+ "Common.define.smartArt.textCirclePictureHierarchy": "Jerarquía con imágenes en círculos",
+ "Common.define.smartArt.textCircleProcess": "Proceso de círculos",
+ "Common.define.smartArt.textCircleRelationship": "Relación de círculo",
+ "Common.define.smartArt.textCircularBendingProcess": "Proceso curvo circular",
+ "Common.define.smartArt.textCircularPictureCallout": "Globo de imagen circular",
+ "Common.define.smartArt.textClosedChevronProcess": "Proceso de cheurón cerrado",
+ "Common.define.smartArt.textContinuousArrowProcess": "Proceso de flechas continuo",
+ "Common.define.smartArt.textContinuousBlockProcess": "Proceso de bloque continuo",
+ "Common.define.smartArt.textContinuousCycle": "Ciclo continuo",
+ "Common.define.smartArt.textContinuousPictureList": "Lista de imágenes continua",
+ "Common.define.smartArt.textConvergingArrows": "Flechas convergentes",
+ "Common.define.smartArt.textConvergingRadial": "Radial convergente",
+ "Common.define.smartArt.textConvergingText": "Texto convergente",
+ "Common.define.smartArt.textCounterbalanceArrows": "Flechas de contrapeso",
+ "Common.define.smartArt.textCycle": "Ciclo",
+ "Common.define.smartArt.textCycleMatrix": "Matriz de ciclo",
+ "Common.define.smartArt.textDescendingBlockList": "Lista de bloques descendente",
+ "Common.define.smartArt.textDescendingProcess": "Proceso descendente",
+ "Common.define.smartArt.textDetailedProcess": "Proceso detallado",
+ "Common.define.smartArt.textDivergingArrows": "Flechas divergentes",
+ "Common.define.smartArt.textDivergingRadial": "Radial divergente",
+ "Common.define.smartArt.textEquation": "Ecuación",
+ "Common.define.smartArt.textFramedTextPicture": "Imagen de texto enmarcado",
+ "Common.define.smartArt.textFunnel": "Embudo",
+ "Common.define.smartArt.textGear": "Engranaje",
+ "Common.define.smartArt.textGridMatrix": "Matriz de cuadrícula",
+ "Common.define.smartArt.textGroupedList": "Lista agrupada",
+ "Common.define.smartArt.textHalfCircleOrganizationChart": "Organigrama con semicírculos",
+ "Common.define.smartArt.textHexagonCluster": "Grupo de hexágonos",
+ "Common.define.smartArt.textHexagonRadial": "Radial con hexágonos",
+ "Common.define.smartArt.textHierarchy": "Jerarquía",
+ "Common.define.smartArt.textHierarchyList": "Lista de jerarquías",
+ "Common.define.smartArt.textHorizontalBulletList": "Lista de viñetas horizontal",
+ "Common.define.smartArt.textHorizontalHierarchy": "Jerarquía horizontal",
+ "Common.define.smartArt.textHorizontalLabeledHierarchy": "Jerarquía etiquetada horizontal",
+ "Common.define.smartArt.textHorizontalMultiLevelHierarchy": "Jerarquía horizontal de varios niveles",
+ "Common.define.smartArt.textHorizontalOrganizationChart": "Organigrama horizontal",
+ "Common.define.smartArt.textHorizontalPictureList": "Lista horizontal de imágenes",
+ "Common.define.smartArt.textIncreasingArrowProcess": "Proceso de flechas crecientes",
+ "Common.define.smartArt.textIncreasingCircleProcess": "Proceso de círculos crecientes",
+ "Common.define.smartArt.textInterconnectedBlockProcess": "Bloque interconectado",
+ "Common.define.smartArt.textInterconnectedRings": "Anillos interconectados",
+ "Common.define.smartArt.textInvertedPyramid": "Pirámide invertida",
+ "Common.define.smartArt.textLabeledHierarchy": "Jerarquía etiquetada",
+ "Common.define.smartArt.textLinearVenn": "Venn lineal",
+ "Common.define.smartArt.textLinedList": "Lista alineada",
+ "Common.define.smartArt.textList": "Lista",
+ "Common.define.smartArt.textMatrix": "Matriz",
+ "Common.define.smartArt.textMultidirectionalCycle": "Ciclo multidireccional",
+ "Common.define.smartArt.textNameAndTitleOrganizationChart": "Organigrama con nombres y cargos",
+ "Common.define.smartArt.textNestedTarget": "Objetivo anidado",
+ "Common.define.smartArt.textNondirectionalCycle": "Ciclo sin dirección",
+ "Common.define.smartArt.textOpposingArrows": "Flechas opuestas",
+ "Common.define.smartArt.textOpposingIdeas": "Ideas opuestas",
+ "Common.define.smartArt.textOrganizationChart": "Organigrama",
+ "Common.define.smartArt.textOther": "Otro",
+ "Common.define.smartArt.textPhasedProcess": "Proceso en fases",
+ "Common.define.smartArt.textPicture": "Imagen",
+ "Common.define.smartArt.textPictureAccentBlocks": "Imágenes destacadas en bloques",
+ "Common.define.smartArt.textPictureAccentList": "Lista de imágenes destacadas",
+ "Common.define.smartArt.textPictureAccentProcess": "Proceso de imágenes destacadas",
+ "Common.define.smartArt.textPictureCaptionList": "Lista de títulos de imágenes",
+ "Common.define.smartArt.textPictureFrame": "MarcoDeFotos",
+ "Common.define.smartArt.textPictureGrid": "Imágenes en cuadrícula",
+ "Common.define.smartArt.textPictureLineup": "Imágenes en paralelo",
+ "Common.define.smartArt.textPictureOrganizationChart": "Organigrama con imágenes",
+ "Common.define.smartArt.textPictureStrips": "Picture Strips",
+ "Common.define.smartArt.textPieProcess": "Proceso circular",
+ "Common.define.smartArt.textPlusAndMinus": "Más y menos",
+ "Common.define.smartArt.textProcess": "Proceso",
+ "Common.define.smartArt.textProcessArrows": "Flechas de proceso",
+ "Common.define.smartArt.textProcessList": "Lista de procesos",
+ "Common.define.smartArt.textPyramid": "Pirámide",
+ "Common.define.smartArt.textPyramidList": "Lista en pirámide",
+ "Common.define.smartArt.textRadialCluster": "Diseño radial",
+ "Common.define.smartArt.textRadialCycle": "Ciclo radial",
+ "Common.define.smartArt.textRadialList": "Lista radial",
+ "Common.define.smartArt.textRadialPictureList": "Lista radial con imágenes",
+ "Common.define.smartArt.textRadialVenn": "Venn radial",
+ "Common.define.smartArt.textRandomToResultProcess": "Proceso de azar a resultado",
+ "Common.define.smartArt.textRelationship": "Relación",
+ "Common.define.smartArt.textRepeatingBendingProcess": "Proceso curvo repetitivo",
+ "Common.define.smartArt.textReverseList": "Lista inversa",
+ "Common.define.smartArt.textSegmentedCycle": "Ciclo segmentado",
+ "Common.define.smartArt.textSegmentedProcess": "Proceso segmentado",
+ "Common.define.smartArt.textSegmentedPyramid": "Pirámide segmentada",
+ "Common.define.smartArt.textSnapshotPictureList": "Lista de imágenes instantáneas",
+ "Common.define.smartArt.textSpiralPicture": "Imagen en espiral",
+ "Common.define.smartArt.textSquareAccentList": "Lista de imágenes con cuadrados",
+ "Common.define.smartArt.textStackedList": "Lista apilada",
+ "Common.define.smartArt.textStackedVenn": "Venn apilado",
+ "Common.define.smartArt.textStaggeredProcess": "Proceso escalonado",
+ "Common.define.smartArt.textStepDownProcess": "Proceso de nivel inferior",
+ "Common.define.smartArt.textStepUpProcess": "Proceso de nivel superior",
+ "Common.define.smartArt.textSubStepProcess": "Proceso de pasos secundarios",
+ "Common.define.smartArt.textTabbedArc": "Arco con pestañas",
+ "Common.define.smartArt.textTableHierarchy": "Jerarquía de tabla",
+ "Common.define.smartArt.textTableList": "Lista de tablas",
+ "Common.define.smartArt.textTabList": "Lista de pestañas",
+ "Common.define.smartArt.textTargetList": "Lista de objetivo",
+ "Common.define.smartArt.textTextCycle": "Ciclo de texto",
+ "Common.define.smartArt.textThemePictureAccent": "Imágenes temáticas destacadas",
+ "Common.define.smartArt.textThemePictureAlternatingAccent": "Imágenes temáticas destacadas alternativas",
+ "Common.define.smartArt.textThemePictureGrid": "Imágenes temáticas en cuadrícula",
+ "Common.define.smartArt.textTitledMatrix": "Matriz con títulos",
+ "Common.define.smartArt.textTitledPictureAccentList": "Lista de imágenes destacadas con título",
+ "Common.define.smartArt.textTitledPictureBlocks": "Bloques de imágenes con títulos",
+ "Common.define.smartArt.textTitlePictureLineup": "Serie de imágenes con título",
+ "Common.define.smartArt.textTrapezoidList": "Lista de trapezoides",
+ "Common.define.smartArt.textUpwardArrow": "Flecha arriba",
+ "Common.define.smartArt.textVaryingWidthList": "Lista de ancho variable",
+ "Common.define.smartArt.textVerticalAccentList": "Lista con rectángulos en vertical",
+ "Common.define.smartArt.textVerticalArrowList": "Lista vertical de flechas",
+ "Common.define.smartArt.textVerticalBendingProcess": "Proceso curvo vertical",
+ "Common.define.smartArt.textVerticalBlockList": "Lista de bloques verticales",
+ "Common.define.smartArt.textVerticalBoxList": "Lista vertical de cuadros",
+ "Common.define.smartArt.textVerticalBracketList": "Lista vertical con corchetes",
+ "Common.define.smartArt.textVerticalBulletList": "Lista vertical de viñetas",
+ "Common.define.smartArt.textVerticalChevronList": "Lista vertical de cheurones",
+ "Common.define.smartArt.textVerticalCircleList": "Lista con círculos en vertical",
+ "Common.define.smartArt.textVerticalCurvedList": "Lista curvada vertical",
+ "Common.define.smartArt.textVerticalEquation": "Ecuación vertical",
+ "Common.define.smartArt.textVerticalPictureAccentList": "Lista con círculos a la izquierda",
+ "Common.define.smartArt.textVerticalPictureList": "Lista vertical de imágenes",
+ "Common.define.smartArt.textVerticalProcess": "Proceso vertical",
"Common.Translation.textMoreButton": "Más",
"Common.Translation.warnFileLocked": "No puede editar este archivo porque está siendo editado en otra aplicación.",
"Common.Translation.warnFileLockedBtnEdit": "Crear una copia",
@@ -184,7 +343,7 @@
"Common.UI.SearchDialog.textMatchCase": "Sensible a mayúsculas y minúsculas",
"Common.UI.SearchDialog.textReplaceDef": "Introduzca el texto de sustitución",
"Common.UI.SearchDialog.textSearchStart": "Introduzca su texto aquí",
- "Common.UI.SearchDialog.textTitle": "Encontrar y reemplazar",
+ "Common.UI.SearchDialog.textTitle": "Buscar y reemplazar",
"Common.UI.SearchDialog.textTitle2": "Encontrar",
"Common.UI.SearchDialog.textWholeWords": "Sólo palabras completas",
"Common.UI.SearchDialog.txtBtnHideReplace": "Esconder Sustitución",
@@ -281,13 +440,15 @@
"Common.Views.Comments.txtEmpty": "Sin comentarios en 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",
+ "Common.Views.CopyWarningDialog.textTitle": "Acciones de Copiar, Cortar y Pegar",
"Common.Views.CopyWarningDialog.textToCopy": "para copiar",
"Common.Views.CopyWarningDialog.textToCut": "para cortar",
"Common.Views.CopyWarningDialog.textToPaste": "para pegar",
"Common.Views.DocumentAccessDialog.textLoading": "Cargando...",
"Common.Views.DocumentAccessDialog.textTitle": "Ajustes de uso compartido",
"Common.Views.ExternalDiagramEditor.textTitle": "Editor de gráfico",
+ "Common.Views.ExternalEditor.textClose": "Cerrar",
+ "Common.Views.ExternalEditor.textSave": "Guardar y salir",
"Common.Views.ExternalMergeEditor.textTitle": "Receptores de Fusión de Correo",
"Common.Views.ExternalOleEditor.textTitle": "Editor de hojas de cálculo",
"Common.Views.Header.labelCoUsersDescr": "Usuarios que están editando el archivo:",
@@ -354,6 +515,7 @@
"Common.Views.Plugins.textStart": "Iniciar",
"Common.Views.Plugins.textStop": "Detener",
"Common.Views.Protection.hintAddPwd": "Encriptar con contraseña",
+ "Common.Views.Protection.hintDelPwd": "Eliminar contraseña",
"Common.Views.Protection.hintPwd": "Cambie o elimine la contraseña",
"Common.Views.Protection.hintSignature": "Agregar firma digital o línea de firma",
"Common.Views.Protection.txtAddPwd": "Agregar contraseña",
@@ -499,6 +661,7 @@
"Common.Views.SignDialog.tipFontName": "Nombre del tipo de letra",
"Common.Views.SignDialog.tipFontSize": "Tamaño del tipo de letra",
"Common.Views.SignSettingsDialog.textAllowComment": "Permitir al firmante agregar comentarios en el diálogo de firma",
+ "Common.Views.SignSettingsDialog.textDefInstruction": "Antes de firmar este documento, verifique que el contenido que está firmando es correcto.",
"Common.Views.SignSettingsDialog.textInfoEmail": "E-mail",
"Common.Views.SignSettingsDialog.textInfoName": "Nombre",
"Common.Views.SignSettingsDialog.textInfoTitle": "Título de quien firma",
@@ -552,6 +715,7 @@
"DE.Controllers.LeftMenu.warnReplaceString": "{0} no es un carácter especial válido para el campo de sustitución.",
"DE.Controllers.Main.applyChangesTextText": "Cargando cambios...",
"DE.Controllers.Main.applyChangesTitleText": "Cargando cambios",
+ "DE.Controllers.Main.confirmMaxChangesSize": "El tamaño de las acciones excede la limitación establecida para su servidor. Pulse \"Deshacer\" para cancelar su última acción o pulse \"Continuar\" para mantener la acción localmente (debe descargar el archivo o copiar su contenido para asegurarse de que no se pierde nada).",
"DE.Controllers.Main.convertationTimeoutText": "Tiempo de conversión está superado.",
"DE.Controllers.Main.criticalErrorExtText": "Pulse \"OK\" para regresar al documento.",
"DE.Controllers.Main.criticalErrorTitle": "Error",
@@ -578,12 +742,18 @@
"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": "Se produjo un error al guardar el archivo. Utilice la opción \"Descargar como\" para guardar el archivo en el disco duro o inténtelo de nuevo más tarde.",
+ "DE.Controllers.Main.errorInconsistentExt": "Se ha producido un error al abrir el archivo. El contenido del archivo no coincide con la extensión del mismo.",
+ "DE.Controllers.Main.errorInconsistentExtDocx": "Se ha producido un error al abrir el archivo. El contenido del archivo corresponde a documentos de texto (por ejemplo, docx), pero el archivo tiene extensión inconsistente: %1.",
+ "DE.Controllers.Main.errorInconsistentExtPdf": "Se ha producido un error al abrir el archivo. El contenido del archivo corresponde a uno de los siguientes formatos: pdf/djvu/xps/oxps, pero el archivo tiene extensión inconsistente: %1.",
+ "DE.Controllers.Main.errorInconsistentExtPptx": "Se ha producido un error al abrir el archivo. El contenido del archivo corresponde a presentaciones (por ejemplo, pptx), pero el archivo tiene extensión inconsistente: %1.",
+ "DE.Controllers.Main.errorInconsistentExtXlsx": "Se ha producido un error al abrir el archivo. El contenido del archivo corresponde a hojas de cálculo (por ejemplo, xlsx), pero el archivo tiene extensión inconsistente: %1.",
"DE.Controllers.Main.errorKeyEncrypt": "Descriptor de clave desconocido",
"DE.Controllers.Main.errorKeyExpire": "Descriptor de clave ha expirado",
"DE.Controllers.Main.errorLoadingFont": "Las fuentes no están cargadas. Por favor, póngase en contacto con el administrador del Document Server.",
"DE.Controllers.Main.errorMailMergeLoadFile": "La carga del documento ha fallado. Por favor, seleccione un archivo diferente.",
"DE.Controllers.Main.errorMailMergeSaveFile": "Error de fusión.",
"DE.Controllers.Main.errorNoTOC": "No hay ninguna tabla de contenido para actualizar. Se puede insertar una desde la pestaña Referencias.",
+ "DE.Controllers.Main.errorPasswordIsNotCorrect": "La contraseña que ha proporcionado no es correcta. Verifique que la tecla Bloq Mayús está desactivada y asegúrese de utilizar las mayúsculas correctas.",
"DE.Controllers.Main.errorProcessSaveResult": "Problemas al guardar",
"DE.Controllers.Main.errorServerVersion": "La versión del editor ha sido actualizada. La página será recargada para aplicar los cambios.",
"DE.Controllers.Main.errorSessionAbsolute": "Sesión de editar el documento ha expirado. Por favor, recargue la página.",
@@ -640,6 +810,7 @@
"DE.Controllers.Main.textClose": "Cerrar",
"DE.Controllers.Main.textCloseTip": "Pulse para cerrar el consejo",
"DE.Controllers.Main.textContactUs": "Contactar con equipo de ventas",
+ "DE.Controllers.Main.textContinue": "Continuar",
"DE.Controllers.Main.textConvertEquation": "Esta ecuación fue creada con una versión antigua del editor de ecuaciones que ya no es compatible. Para editarla, convierta la ecuación al formato ML de Office Math. ¿Convertir ahora?",
"DE.Controllers.Main.textCustomLoader": "Note, por favor, que según los términos de la licencia Usted no tiene derecho a cambiar el cargador. Por favor, póngase en contacto con nuestro Departamento de Ventas para obtener una cotización.",
"DE.Controllers.Main.textDisconnect": "Se ha perdido la conexión",
@@ -660,6 +831,7 @@
"DE.Controllers.Main.textStrict": "Modo estricto",
"DE.Controllers.Main.textTryUndoRedo": "Las funciones Anular/Rehacer se desactivan para el modo co-edición rápido. Haga Clic en el botón \"modo estricto\" para cambiar al modo de co-edición estricta para editar el archivo sin la interferencia de otros usuarios y enviar sus cambios sólo después de guardarlos. Se puede cambiar entre los modos de co-edición usando los ajustes avanzados de edición.",
"DE.Controllers.Main.textTryUndoRedoWarn": "Las funciones Deshacer/Rehacer son desactivados en el modo de co-edición rápido.",
+ "DE.Controllers.Main.textUndo": "Deshacer",
"DE.Controllers.Main.titleLicenseExp": "Licencia ha expirado",
"DE.Controllers.Main.titleServerVersion": "Editor ha sido actualizado",
"DE.Controllers.Main.titleUpdateVersion": "Versión ha cambiado",
@@ -992,12 +1164,12 @@
"DE.Controllers.Toolbar.txtAccent_Smile": "Acento breve",
"DE.Controllers.Toolbar.txtAccent_Tilde": "Tilde",
"DE.Controllers.Toolbar.txtBracket_Angle": "Paréntesis",
- "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Paréntesis con separadores",
- "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Paréntesis con separadores",
+ "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Corchetes con separadores",
+ "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Corchetes con separadores",
"DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Corchete único",
"DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Corchete único",
"DE.Controllers.Toolbar.txtBracket_Curve": "Paréntesis",
- "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Paréntesis con separadores",
+ "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Corchetes con separadores",
"DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Corchete único",
"DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Corchete único",
"DE.Controllers.Toolbar.txtBracket_Custom_1": "Casos (dos condiciones)",
@@ -1017,7 +1189,7 @@
"DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Corchete único",
"DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Corchete único",
"DE.Controllers.Toolbar.txtBracket_Round": "Paréntesis",
- "DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Paréntesis con separadores",
+ "DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Corchetes con separadores",
"DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Corchete único",
"DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Corchete único",
"DE.Controllers.Toolbar.txtBracket_Square": "Paréntesis",
@@ -1327,18 +1499,33 @@
"DE.Views.CellsAddDialog.textLeft": "A la izquierda",
"DE.Views.CellsAddDialog.textRight": "A la derecha",
"DE.Views.CellsAddDialog.textRow": "Filas",
- "DE.Views.CellsAddDialog.textTitle": "Insertar Varios",
+ "DE.Views.CellsAddDialog.textTitle": "Insertar varios",
"DE.Views.CellsAddDialog.textUp": "Por encima del cursor",
+ "DE.Views.ChartSettings.text3dDepth": "Profundidad (% de la base)",
+ "DE.Views.ChartSettings.text3dHeight": "Altura (% de la base)",
+ "DE.Views.ChartSettings.text3dRotation": "Rotación 3D",
"DE.Views.ChartSettings.textAdvanced": "Mostrar ajustes avanzados",
+ "DE.Views.ChartSettings.textAutoscale": "Escalado automático",
"DE.Views.ChartSettings.textChartType": "Cambiar tipo de gráfico",
+ "DE.Views.ChartSettings.textDefault": "Rotación por defecto",
+ "DE.Views.ChartSettings.textDown": "Abajo",
"DE.Views.ChartSettings.textEditData": "Editar datos",
"DE.Views.ChartSettings.textHeight": "Altura",
+ "DE.Views.ChartSettings.textLeft": "Izquierda",
+ "DE.Views.ChartSettings.textNarrow": "Campo de visión estrecho",
"DE.Views.ChartSettings.textOriginalSize": "Tamaño real",
+ "DE.Views.ChartSettings.textPerspective": "Perspectiva",
+ "DE.Views.ChartSettings.textRight": "Derecha",
+ "DE.Views.ChartSettings.textRightAngle": "Ejes en ángulo recto",
"DE.Views.ChartSettings.textSize": "Tamaño",
"DE.Views.ChartSettings.textStyle": "Estilo",
"DE.Views.ChartSettings.textUndock": "Desacoplar de panel",
+ "DE.Views.ChartSettings.textUp": "Arriba",
+ "DE.Views.ChartSettings.textWiden": "Campo de visión ancho",
"DE.Views.ChartSettings.textWidth": "Ancho",
"DE.Views.ChartSettings.textWrap": "Ajuste de texto",
+ "DE.Views.ChartSettings.textX": "Rotación X",
+ "DE.Views.ChartSettings.textY": "Rotación Y",
"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",
@@ -1428,14 +1615,24 @@
"DE.Views.DateTimeDialog.textLang": "Idioma",
"DE.Views.DateTimeDialog.textUpdate": "Actualizar automáticamente",
"DE.Views.DateTimeDialog.txtTitle": "Fecha y hora",
+ "DE.Views.DocProtection.hintProtectDoc": "Proteger documento",
+ "DE.Views.DocProtection.txtDocProtectedComment": "El documento está protegido. Sólo puede insertar comentarios en este documento.",
+ "DE.Views.DocProtection.txtDocProtectedForms": "El documento está protegido. Sólo puede rellenar los formularios de este documento.",
+ "DE.Views.DocProtection.txtDocProtectedTrack": "El documento está protegido. Puede editar este documento, pero todos los cambios serán revisados.",
+ "DE.Views.DocProtection.txtDocProtectedView": "El documento está protegido. Sólo puede visualizar este documento.",
+ "DE.Views.DocProtection.txtDocUnlockDescription": "Introduzca una contraseña para desproteger el documento",
+ "DE.Views.DocProtection.txtProtectDoc": "Proteger documento",
"DE.Views.DocumentHolder.aboveText": "Encima",
"DE.Views.DocumentHolder.addCommentText": "Agregar comentario",
"DE.Views.DocumentHolder.advancedDropCapText": "Configuración de Capitalización",
+ "DE.Views.DocumentHolder.advancedEquationText": "Ajustes de la ecuació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": "Configuración avanzada",
"DE.Views.DocumentHolder.alignmentText": "Alineación",
+ "DE.Views.DocumentHolder.allLinearText": "Lineal (todos)",
+ "DE.Views.DocumentHolder.allProfText": "Profesional (todos)",
"DE.Views.DocumentHolder.belowText": "Abajo",
"DE.Views.DocumentHolder.breakBeforeText": "Salto de página antes",
"DE.Views.DocumentHolder.bulletsText": "Viñetas y numeración",
@@ -1444,6 +1641,8 @@
"DE.Views.DocumentHolder.centerText": "Al centro",
"DE.Views.DocumentHolder.chartText": "Ajustes avanzados de gráfico",
"DE.Views.DocumentHolder.columnText": "Columna",
+ "DE.Views.DocumentHolder.currLinearText": "Lineal (actual)",
+ "DE.Views.DocumentHolder.currProfText": "Profesional (actual)",
"DE.Views.DocumentHolder.deleteColumnText": "Borrar columna",
"DE.Views.DocumentHolder.deleteRowText": "Borrar fila",
"DE.Views.DocumentHolder.deleteTableText": "Borrar tabla",
@@ -1456,6 +1655,7 @@
"DE.Views.DocumentHolder.editFooterText": "Editar pie de página",
"DE.Views.DocumentHolder.editHeaderText": "Editar encabezado",
"DE.Views.DocumentHolder.editHyperlinkText": "Editar hiperenlace",
+ "DE.Views.DocumentHolder.eqToInlineText": "Cambiar a En línea",
"DE.Views.DocumentHolder.guestText": "Visitante",
"DE.Views.DocumentHolder.hyperlinkText": "Hiperenlace",
"DE.Views.DocumentHolder.ignoreAllSpellText": "Ignorar todo",
@@ -1470,6 +1670,7 @@
"DE.Views.DocumentHolder.insertText": "Insertar",
"DE.Views.DocumentHolder.keepLinesText": "Mantener líneas juntas",
"DE.Views.DocumentHolder.langText": "Seleccionar idioma",
+ "DE.Views.DocumentHolder.latexText": "LaTeX",
"DE.Views.DocumentHolder.leftText": "Izquierdo",
"DE.Views.DocumentHolder.loadSpellText": "Cargando variantes",
"DE.Views.DocumentHolder.mergeCellsText": "Unir celdas",
@@ -1657,6 +1858,7 @@
"DE.Views.DocumentHolder.txtUnderbar": "Barra debajo de texto",
"DE.Views.DocumentHolder.txtUngroup": "Desagrupar",
"DE.Views.DocumentHolder.txtWarnUrl": "Hacer clic en este enlace puede ser perjudicial para su dispositivo y sus datos. ¿Está seguro de que quiere continuar?",
+ "DE.Views.DocumentHolder.unicodeText": "Unicode",
"DE.Views.DocumentHolder.updateStyleText": "Actualizar estilo %1",
"DE.Views.DocumentHolder.vertAlignText": "Alineación vertical",
"DE.Views.DropcapSettingsAdvanced.strBorders": "Bordes y relleno",
@@ -1693,8 +1895,8 @@
"DE.Views.DropcapSettingsAdvanced.textRelative": "En relación a",
"DE.Views.DropcapSettingsAdvanced.textRight": "Derecho",
"DE.Views.DropcapSettingsAdvanced.textRowHeight": "Altura en filas",
- "DE.Views.DropcapSettingsAdvanced.textTitle": "Letra capital - ajustes avanzados",
- "DE.Views.DropcapSettingsAdvanced.textTitleFrame": "Marco-ajustes avanzados",
+ "DE.Views.DropcapSettingsAdvanced.textTitle": "Letra capital - Ajustes avanzados",
+ "DE.Views.DropcapSettingsAdvanced.textTitleFrame": "Marco - Ajustes avanzados",
"DE.Views.DropcapSettingsAdvanced.textTop": "Superior",
"DE.Views.DropcapSettingsAdvanced.textVertical": "Vertical",
"DE.Views.DropcapSettingsAdvanced.textWidth": "Ancho",
@@ -1753,6 +1955,7 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Estadísticas",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Asunto",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Símbolos",
+ "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Etiquetas",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Subido",
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Palabras",
@@ -1945,7 +2148,7 @@
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Mostrar",
"DE.Views.HyperlinkSettingsDialog.textExternal": "Enlace externo",
"DE.Views.HyperlinkSettingsDialog.textInternal": "Lugar en documento",
- "DE.Views.HyperlinkSettingsDialog.textTitle": "Configuración de hiperenlace",
+ "DE.Views.HyperlinkSettingsDialog.textTitle": "Ajustes de enlace",
"DE.Views.HyperlinkSettingsDialog.textTooltip": "Información en pantalla",
"DE.Views.HyperlinkSettingsDialog.textUrl": "Enlace a",
"DE.Views.HyperlinkSettingsDialog.txtBeginning": "Principio del documento",
@@ -2008,7 +2211,7 @@
"DE.Views.ImageSettingsAdvanced.textCenter": "Al centro",
"DE.Views.ImageSettingsAdvanced.textCharacter": "Carácter",
"DE.Views.ImageSettingsAdvanced.textColumn": "Columna",
- "DE.Views.ImageSettingsAdvanced.textDistance": "Distancia del texto",
+ "DE.Views.ImageSettingsAdvanced.textDistance": "Distancia desde el texto",
"DE.Views.ImageSettingsAdvanced.textEndSize": "Tamaño final",
"DE.Views.ImageSettingsAdvanced.textEndStyle": "Estilo final",
"DE.Views.ImageSettingsAdvanced.textFlat": "Plano",
@@ -2045,7 +2248,7 @@
"DE.Views.ImageSettingsAdvanced.textSquare": "Cuadrado",
"DE.Views.ImageSettingsAdvanced.textTextBox": "Cuadro de texto",
"DE.Views.ImageSettingsAdvanced.textTitle": "Imagen - Ajustes avanzados",
- "DE.Views.ImageSettingsAdvanced.textTitleChart": "Gráfico- Ajustes avanzados",
+ "DE.Views.ImageSettingsAdvanced.textTitleChart": "Gráfico - Ajustes avanzados",
"DE.Views.ImageSettingsAdvanced.textTitleShape": "Forma - ajustes avanzados",
"DE.Views.ImageSettingsAdvanced.textTop": "Superior",
"DE.Views.ImageSettingsAdvanced.textTopMargin": "Margen superior",
@@ -2066,6 +2269,7 @@
"DE.Views.LeftMenu.tipComments": "Comentarios",
"DE.Views.LeftMenu.tipNavigation": "Navegación",
"DE.Views.LeftMenu.tipOutline": "Títulos",
+ "DE.Views.LeftMenu.tipPageThumbnails": "Miniaturas de página",
"DE.Views.LeftMenu.tipPlugins": "Plugins",
"DE.Views.LeftMenu.tipSearch": "Búsqueda",
"DE.Views.LeftMenu.tipSupport": "Feedback y Soporte",
@@ -2087,7 +2291,7 @@
"DE.Views.LineNumbersDialog.textRestartEachSection": "Reiniciar cada sección",
"DE.Views.LineNumbersDialog.textSection": "Sección actual",
"DE.Views.LineNumbersDialog.textStartAt": "Empezar en",
- "DE.Views.LineNumbersDialog.textTitle": "Numeración de Líneas",
+ "DE.Views.LineNumbersDialog.textTitle": "Numeración de líneas",
"DE.Views.LineNumbersDialog.txtAutoText": "Auto",
"DE.Views.Links.capBtnAddText": "Agregar texto",
"DE.Views.Links.capBtnBookmarks": "Marcador",
@@ -2136,13 +2340,13 @@
"DE.Views.ListSettingsDialog.txtAlign": "Alineación",
"DE.Views.ListSettingsDialog.txtBullet": "Viñeta",
"DE.Views.ListSettingsDialog.txtColor": "Color",
- "DE.Views.ListSettingsDialog.txtFont": "Fuente y Símbolo",
+ "DE.Views.ListSettingsDialog.txtFont": "Fuente y símbolo",
"DE.Views.ListSettingsDialog.txtLikeText": "Como un texto",
"DE.Views.ListSettingsDialog.txtNewBullet": "Nueva viñeta",
"DE.Views.ListSettingsDialog.txtNone": "Ninguno",
"DE.Views.ListSettingsDialog.txtSize": "Tamaño",
"DE.Views.ListSettingsDialog.txtSymbol": "Símbolo",
- "DE.Views.ListSettingsDialog.txtTitle": "Opciones de lista",
+ "DE.Views.ListSettingsDialog.txtTitle": "Ajustes de lista",
"DE.Views.ListSettingsDialog.txtType": "Tipo",
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
"DE.Views.MailMergeEmailDlg.okButtonText": "Enviar",
@@ -2214,7 +2418,7 @@
"DE.Views.NoteSettingsDialog.textApply": "Aplicar",
"DE.Views.NoteSettingsDialog.textApplyTo": "Aplicar cambios a",
"DE.Views.NoteSettingsDialog.textContinue": "Continua",
- "DE.Views.NoteSettingsDialog.textCustom": "Símbolo especial",
+ "DE.Views.NoteSettingsDialog.textCustom": "Marca personal",
"DE.Views.NoteSettingsDialog.textDocEnd": "Final del documento",
"DE.Views.NoteSettingsDialog.textDocument": "Todo el documento",
"DE.Views.NoteSettingsDialog.textEachPage": "Reiniciar cada página",
@@ -2231,10 +2435,10 @@
"DE.Views.NoteSettingsDialog.textSection": "Sección actual",
"DE.Views.NoteSettingsDialog.textStart": "Empezar con",
"DE.Views.NoteSettingsDialog.textTextBottom": "Bajo el texto",
- "DE.Views.NoteSettingsDialog.textTitle": "Ajustes de las notas a pie de página",
- "DE.Views.NotesRemoveDialog.textEnd": "Eliminar Todas las Notas al Final",
+ "DE.Views.NoteSettingsDialog.textTitle": "Ajustes de notas",
+ "DE.Views.NotesRemoveDialog.textEnd": "Eliminar todas las notas al final",
"DE.Views.NotesRemoveDialog.textFoot": "Eliminar todas las notas al pie de página",
- "DE.Views.NotesRemoveDialog.textTitle": "Eliminar Notas",
+ "DE.Views.NotesRemoveDialog.textTitle": "Eliminar notas",
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Aviso",
"DE.Views.PageMarginsDialog.textBottom": "Inferior",
"DE.Views.PageMarginsDialog.textGutter": "Reliure",
@@ -2302,7 +2506,7 @@
"DE.Views.ParagraphSettingsAdvanced.strOrphan": "Control de líneas huérfanas",
"DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Letra ",
"DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Sangría y espaciado",
- "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Saltos de línea y Saltos de página",
+ "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 agregue intervalos entre párrafos del mismo estilo",
@@ -2317,7 +2521,7 @@
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Por lo menos",
"DE.Views.ParagraphSettingsAdvanced.textAuto": "Múltiple",
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Color de fondo",
- "DE.Views.ParagraphSettingsAdvanced.textBodyText": "Texto Básico",
+ "DE.Views.ParagraphSettingsAdvanced.textBodyText": "Texto básico",
"DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Color de borde",
"DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Haga clic en diagrama o use botones para seleccionar bordes y aplicar el estilo seleccionado",
"DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Tamaño de borde",
@@ -2325,17 +2529,17 @@
"DE.Views.ParagraphSettingsAdvanced.textCentered": "Centrado",
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espaciado entre caracteres",
"DE.Views.ParagraphSettingsAdvanced.textContext": "Contexto",
- "DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Contexto y discrecionalidad",
- "DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Contexto, histórico y discrecionalidad",
- "DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Contexto e histórico",
- "DE.Views.ParagraphSettingsAdvanced.textDefault": "Tabulador Predeterminado",
+ "DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Contextuales y discrecionales",
+ "DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Contextuales, históricas y discrecionales",
+ "DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Contextuales e históricas",
+ "DE.Views.ParagraphSettingsAdvanced.textDefault": "Pestaña predeterminada",
"DE.Views.ParagraphSettingsAdvanced.textDiscret": "Discrecionalidad",
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Efectos",
"DE.Views.ParagraphSettingsAdvanced.textExact": "Exactamente",
"DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Primera linea",
"DE.Views.ParagraphSettingsAdvanced.textHanging": "Suspendido",
"DE.Views.ParagraphSettingsAdvanced.textHistorical": "Histórico",
- "DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "Histórico y discrecionalidad",
+ "DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "Históricas y discrecionales",
"DE.Views.ParagraphSettingsAdvanced.textJustified": "Justificado",
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Director",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Izquierdo",
@@ -2343,7 +2547,7 @@
"DE.Views.ParagraphSettingsAdvanced.textLigatures": "Ligaduras",
"DE.Views.ParagraphSettingsAdvanced.textNone": "Ninguno",
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(ninguno)",
- "DE.Views.ParagraphSettingsAdvanced.textOpenType": "Características de OpenType",
+ "DE.Views.ParagraphSettingsAdvanced.textOpenType": "Características OpenType",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Posición",
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Eliminar",
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Eliminar todo",
@@ -2373,6 +2577,18 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Fijar sólo borde superior",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Sin bordes",
+ "DE.Views.ProtectDialog.textComments": "Comentarios",
+ "DE.Views.ProtectDialog.textForms": "Relleno de formularios",
+ "DE.Views.ProtectDialog.textReview": "Cambios realizados",
+ "DE.Views.ProtectDialog.textView": "Sin cambios (Sólo lectura)",
+ "DE.Views.ProtectDialog.txtAllow": "Permitir sólo este tipo de edición en el documento",
+ "DE.Views.ProtectDialog.txtIncorrectPwd": "La contraseña de confirmación no es idéntica",
+ "DE.Views.ProtectDialog.txtOptional": "opcional",
+ "DE.Views.ProtectDialog.txtPassword": "Contraseña",
+ "DE.Views.ProtectDialog.txtProtect": "Proteger",
+ "DE.Views.ProtectDialog.txtRepeat": "Repita la contraseña",
+ "DE.Views.ProtectDialog.txtTitle": "Proteger",
+ "DE.Views.ProtectDialog.txtWarning": "Precaución: Si pierde u olvida su contraseña, no podrá recuperarla. Guárdalo en un lugar seguro.",
"DE.Views.RightMenu.txtChartSettings": "Ajustes de gráfico",
"DE.Views.RightMenu.txtFormSettings": "Ajustes de formulario",
"DE.Views.RightMenu.txtHeaderFooterSettings": "Ajustes de encabezado y pie de página",
@@ -2487,7 +2703,7 @@
"DE.Views.TableFormulaDialog.textTitle": "Ajustes de fórmula",
"DE.Views.TableOfContentsSettings.strAlign": "Alinee los números de página a la derecha",
"DE.Views.TableOfContentsSettings.strFullCaption": "Incluir etiqueta y número",
- "DE.Views.TableOfContentsSettings.strLinks": "Formatear tabla de ilustraciones como enlaces",
+ "DE.Views.TableOfContentsSettings.strLinks": "Formatear tabla de contenido como enlaces",
"DE.Views.TableOfContentsSettings.strLinksOF": "Formatear tabla de ilustraciones como enlaces",
"DE.Views.TableOfContentsSettings.strShowPages": "Mostrar números de página",
"DE.Views.TableOfContentsSettings.textBuildTable": "Crear tabla de contenidos desde",
@@ -2563,12 +2779,20 @@
"DE.Views.TableSettings.tipOuter": "Fijar sólo borde exterior",
"DE.Views.TableSettings.tipRight": "Fijar sólo borde exterior derecho",
"DE.Views.TableSettings.tipTop": "Fijar sólo borde exterior superior",
+ "DE.Views.TableSettings.txtGroupTable_BorderedAndLined": "Tablas con bordes y líneas",
+ "DE.Views.TableSettings.txtGroupTable_Custom": "Personalizado",
+ "DE.Views.TableSettings.txtGroupTable_Grid": "Tablas de cuadrícula",
+ "DE.Views.TableSettings.txtGroupTable_List": "Tablas de lista",
+ "DE.Views.TableSettings.txtGroupTable_Plain": "Tablas sin formato",
"DE.Views.TableSettings.txtNoBorders": "Sin bordes",
"DE.Views.TableSettings.txtTable_Accent": "Acento",
+ "DE.Views.TableSettings.txtTable_Bordered": "Con bordes",
+ "DE.Views.TableSettings.txtTable_BorderedAndLined": "Con bordes y líneas",
"DE.Views.TableSettings.txtTable_Colorful": "Colorido",
"DE.Views.TableSettings.txtTable_Dark": "Oscuro",
"DE.Views.TableSettings.txtTable_GridTable": "Tabla de rejilla",
"DE.Views.TableSettings.txtTable_Light": "Claro",
+ "DE.Views.TableSettings.txtTable_Lined": "Con líneas",
"DE.Views.TableSettings.txtTable_ListTable": "Tabla de lista",
"DE.Views.TableSettings.txtTable_PlainTable": "Tabla normal",
"DE.Views.TableSettings.txtTable_TableGrid": "Cuadrícula de tabla",
@@ -2590,12 +2814,12 @@
"DE.Views.TableSettingsAdvanced.textBottom": "Inferior",
"DE.Views.TableSettingsAdvanced.textCellOptions": "Opciones de celda",
"DE.Views.TableSettingsAdvanced.textCellProps": "Celda",
- "DE.Views.TableSettingsAdvanced.textCellSize": "Tamaño de Celda",
+ "DE.Views.TableSettingsAdvanced.textCellSize": "Tamaño de сelda",
"DE.Views.TableSettingsAdvanced.textCenter": "Al centro",
"DE.Views.TableSettingsAdvanced.textCenterTooltip": "Al centro",
"DE.Views.TableSettingsAdvanced.textCheckMargins": "Usar márgenes predeterminados",
"DE.Views.TableSettingsAdvanced.textDefaultMargins": "Márgenes de celda predeterminados",
- "DE.Views.TableSettingsAdvanced.textDistance": "Distancia del texto",
+ "DE.Views.TableSettingsAdvanced.textDistance": "Distancia desde el texto",
"DE.Views.TableSettingsAdvanced.textHorizontal": "Horizontal ",
"DE.Views.TableSettingsAdvanced.textIndLeft": "Sangría a la izquierda",
"DE.Views.TableSettingsAdvanced.textLeft": "Izquierdo",
@@ -2703,9 +2927,10 @@
"DE.Views.Toolbar.capBtnInsImage": "Imagen",
"DE.Views.Toolbar.capBtnInsPagebreak": "Cambios de línea",
"DE.Views.Toolbar.capBtnInsShape": "Forma",
+ "DE.Views.Toolbar.capBtnInsSmartArt": "SmartArt",
"DE.Views.Toolbar.capBtnInsSymbol": "Símbolo",
"DE.Views.Toolbar.capBtnInsTable": "Tabla",
- "DE.Views.Toolbar.capBtnInsTextart": "Galería de Texto",
+ "DE.Views.Toolbar.capBtnInsTextart": "Galería de texto",
"DE.Views.Toolbar.capBtnInsTextbox": "Cuadro de Texto",
"DE.Views.Toolbar.capBtnLineNumbers": "Numeración de Líneas",
"DE.Views.Toolbar.capBtnMargins": "Márgenes",
@@ -2849,13 +3074,16 @@
"DE.Views.Toolbar.tipIncPrLeft": "Aumentar sangría",
"DE.Views.Toolbar.tipInsertChart": "Insertar gráfico",
"DE.Views.Toolbar.tipInsertEquation": "Insertar ecuación",
+ "DE.Views.Toolbar.tipInsertHorizontalText": "Insertar cuadro de texto horizontal",
"DE.Views.Toolbar.tipInsertImage": "Insertar imagen",
"DE.Views.Toolbar.tipInsertNum": "Insertar número de página",
"DE.Views.Toolbar.tipInsertShape": "Insertar autoforma",
+ "DE.Views.Toolbar.tipInsertSmartArt": "Insertar SmartArt",
"DE.Views.Toolbar.tipInsertSymbol": "Insertar Symboló",
"DE.Views.Toolbar.tipInsertTable": "Insertar tabla",
"DE.Views.Toolbar.tipInsertText": "Insertar cuadro de texto",
"DE.Views.Toolbar.tipInsertTextArt": "Insertar Galería de Texto",
+ "DE.Views.Toolbar.tipInsertVerticalText": "Insertar cuadro de texto vertical",
"DE.Views.Toolbar.tipLineNumbers": "Mostrar números de línea",
"DE.Views.Toolbar.tipLineSpace": "Espaciado de línea de párrafo",
"DE.Views.Toolbar.tipMailRecepients": "Combinación de Correspondencia",
@@ -2926,9 +3154,11 @@
"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.textInterfaceTheme": "Tema de interfaz",
+ "DE.Views.ViewTab.textLeftMenu": "Panel izquierdo",
"DE.Views.ViewTab.textNavigation": "Navegación",
"DE.Views.ViewTab.textOutline": "Títulos",
+ "DE.Views.ViewTab.textRightMenu": "Panel derecho",
"DE.Views.ViewTab.textRulers": "Reglas",
"DE.Views.ViewTab.textStatusBar": "Barra de estado",
"DE.Views.ViewTab.textZoom": "Zoom",
@@ -2942,7 +3172,7 @@
"DE.Views.WatermarkSettingsDialog.textColor": "Color de texto",
"DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonal",
"DE.Views.WatermarkSettingsDialog.textFont": "Fuente",
- "DE.Views.WatermarkSettingsDialog.textFromFile": "De archivo",
+ "DE.Views.WatermarkSettingsDialog.textFromFile": "Desde archivo",
"DE.Views.WatermarkSettingsDialog.textFromStorage": "Desde almacenamiento",
"DE.Views.WatermarkSettingsDialog.textFromUrl": "De URL",
"DE.Views.WatermarkSettingsDialog.textHor": "Horizontal ",
@@ -2959,6 +3189,6 @@
"DE.Views.WatermarkSettingsDialog.textTitle": "Ajustes de Marca de agua",
"DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparente",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Subrayado",
- "DE.Views.WatermarkSettingsDialog.tipFontName": "Nombre de fuente",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Tamaño de fuente"
+ "DE.Views.WatermarkSettingsDialog.tipFontName": "Nombre del tipo de letra",
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Tamaño del tipo de letra"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/fr.json b/apps/documenteditor/main/locale/fr.json
index 503438817..3404ee030 100644
--- a/apps/documenteditor/main/locale/fr.json
+++ b/apps/documenteditor/main/locale/fr.json
@@ -399,7 +399,7 @@
"Common.Views.AutoCorrectDialog.textRecognized": "Fonctions reconnues",
"Common.Views.AutoCorrectDialog.textRecognizedDesc": "Les expressions suivantes sont les expressions mathématiques reconnues. Elles ne seront pas mises en italique automatiquement.",
"Common.Views.AutoCorrectDialog.textReplace": "Remplacer",
- "Common.Views.AutoCorrectDialog.textReplaceText": "Remplacer au cours de la frappe",
+ "Common.Views.AutoCorrectDialog.textReplaceText": "Remplacer pendant la frappe",
"Common.Views.AutoCorrectDialog.textReplaceType": "Remplacer le texte au cours de la frappe",
"Common.Views.AutoCorrectDialog.textReset": "Réinitialiser",
"Common.Views.AutoCorrectDialog.textResetAll": "Rétablir paramètres par défaut",
@@ -440,7 +440,7 @@
"Common.Views.Comments.txtEmpty": "Il n'y a pas de commentaires dans le document.",
"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",
+ "Common.Views.CopyWarningDialog.textTitle": "Actions copier, couper et coller",
"Common.Views.CopyWarningDialog.textToCopy": "pour Copier",
"Common.Views.CopyWarningDialog.textToCut": "pour Couper",
"Common.Views.CopyWarningDialog.textToPaste": "pour Coller",
@@ -492,7 +492,7 @@
"Common.Views.InsertTableDialog.txtTitle": "Taille du tableau",
"Common.Views.InsertTableDialog.txtTitleSplit": "Fractionner la cellule",
"Common.Views.LanguageDialog.labelSelect": "Sélectionner la langue du document",
- "Common.Views.OpenDialog.closeButtonText": "Fermer le fichier",
+ "Common.Views.OpenDialog.closeButtonText": "Fermer fichier",
"Common.Views.OpenDialog.txtEncoding": "Codage ",
"Common.Views.OpenDialog.txtIncorrectPwd": "Le mot de passe est incorrect.",
"Common.Views.OpenDialog.txtOpenFile": "Entrer le mot de passe pour ouvrir le fichier",
@@ -598,15 +598,15 @@
"Common.Views.ReviewChanges.txtSpelling": "Vérification de l'orthographe",
"Common.Views.ReviewChanges.txtTurnon": "Suivi des modifications",
"Common.Views.ReviewChanges.txtView": "Mode d'affichage",
- "Common.Views.ReviewChangesDialog.textTitle": "Examiner les modifications",
+ "Common.Views.ReviewChangesDialog.textTitle": "Réviser les modifications",
"Common.Views.ReviewChangesDialog.txtAccept": "Accepter",
"Common.Views.ReviewChangesDialog.txtAcceptAll": "Accepter toutes les modifications",
"Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Accepter la modification actuelle",
"Common.Views.ReviewChangesDialog.txtNext": "À la modification suivante",
"Common.Views.ReviewChangesDialog.txtPrev": "À la modification précédente",
"Common.Views.ReviewChangesDialog.txtReject": "Rejeter",
- "Common.Views.ReviewChangesDialog.txtRejectAll": "Rejeter toutes les modifications",
- "Common.Views.ReviewChangesDialog.txtRejectCurrent": "Rejeter cette modification",
+ "Common.Views.ReviewChangesDialog.txtRejectAll": "Refuser toutes les modifications",
+ "Common.Views.ReviewChangesDialog.txtRejectCurrent": "Refuser la modification actuelle",
"Common.Views.ReviewPopover.textAdd": "Ajouter",
"Common.Views.ReviewPopover.textAddReply": "Ajouter une réponse",
"Common.Views.ReviewPopover.textCancel": "Annuler",
@@ -644,7 +644,7 @@
"Common.Views.SearchPanel.tipNextResult": "Résultat suivant",
"Common.Views.SearchPanel.tipPreviousResult": "Résultat précédent",
"Common.Views.SelectFileDlg.textLoading": "Chargement",
- "Common.Views.SelectFileDlg.textTitle": "Sélectionnez la source de données",
+ "Common.Views.SelectFileDlg.textTitle": "Sélectionner la source de données",
"Common.Views.SignDialog.textBold": "Gras",
"Common.Views.SignDialog.textCertificate": "Certificat",
"Common.Views.SignDialog.textChange": "Modifier",
@@ -658,8 +658,8 @@
"Common.Views.SignDialog.textTitle": "Signer le document",
"Common.Views.SignDialog.textUseImage": "ou cliquez sur \"Sélectionner une image\" afin d'utiliser une image en tant que signature",
"Common.Views.SignDialog.textValid": "Valide de %1 à %2",
- "Common.Views.SignDialog.tipFontName": "Nom de la police",
- "Common.Views.SignDialog.tipFontSize": "Taille de la police",
+ "Common.Views.SignDialog.tipFontName": "Nom de police",
+ "Common.Views.SignDialog.tipFontSize": "Taille de police",
"Common.Views.SignSettingsDialog.textAllowComment": "Autoriser le signataire à ajouter un commentaire dans la boîte de dialogue de la signature",
"Common.Views.SignSettingsDialog.textDefInstruction": "Avant de signer un document, vérifiez que le contenu que vous signez est correct.",
"Common.Views.SignSettingsDialog.textInfoEmail": "E-mail du signataire suggéré",
@@ -667,35 +667,35 @@
"Common.Views.SignSettingsDialog.textInfoTitle": "Titre du signataire suggéré",
"Common.Views.SignSettingsDialog.textInstructions": "Instructions pour les signataires",
"Common.Views.SignSettingsDialog.textShowDate": "Afficher la date de signature à côté de la signature",
- "Common.Views.SignSettingsDialog.textTitle": "Mise en place de la signature",
+ "Common.Views.SignSettingsDialog.textTitle": "Configuration de signature",
"Common.Views.SignSettingsDialog.txtEmpty": "Ce champ est obligatoire.",
"Common.Views.SymbolTableDialog.textCharacter": "Caractère",
"Common.Views.SymbolTableDialog.textCode": "Valeur hexadécimale Unicode",
- "Common.Views.SymbolTableDialog.textCopyright": "Signe Copyright",
- "Common.Views.SymbolTableDialog.textDCQuote": "Fermer les guillemets",
- "Common.Views.SymbolTableDialog.textDOQuote": "Ouvrir les guillemets",
+ "Common.Views.SymbolTableDialog.textCopyright": "Symbole de copyright",
+ "Common.Views.SymbolTableDialog.textDCQuote": "Guillemet double fermant",
+ "Common.Views.SymbolTableDialog.textDOQuote": "Double guillemet ouvrant",
"Common.Views.SymbolTableDialog.textEllipsis": "Points de suspension",
"Common.Views.SymbolTableDialog.textEmDash": "Tiret cadratin",
"Common.Views.SymbolTableDialog.textEmSpace": "Espace cadratin",
"Common.Views.SymbolTableDialog.textEnDash": "Tiret demi-cadratin",
"Common.Views.SymbolTableDialog.textEnSpace": "Espace demi-cadratin",
"Common.Views.SymbolTableDialog.textFont": "Police",
- "Common.Views.SymbolTableDialog.textNBHyphen": "tiret insécable",
+ "Common.Views.SymbolTableDialog.textNBHyphen": "Trait d’union insécable",
"Common.Views.SymbolTableDialog.textNBSpace": "Espace insécable",
- "Common.Views.SymbolTableDialog.textPilcrow": "Symbole de Paragraphe",
+ "Common.Views.SymbolTableDialog.textPilcrow": "Pied-de-mouche",
"Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Espace cadratin",
"Common.Views.SymbolTableDialog.textRange": "Plage",
"Common.Views.SymbolTableDialog.textRecent": "Caractères spéciaux récemment utilisés",
- "Common.Views.SymbolTableDialog.textRegistered": "Signe 'Registred'",
- "Common.Views.SymbolTableDialog.textSCQuote": "Fermer l'apostrophe",
- "Common.Views.SymbolTableDialog.textSection": "Signe de Section ",
- "Common.Views.SymbolTableDialog.textShortcut": "Raccourcis clavier",
+ "Common.Views.SymbolTableDialog.textRegistered": "Symbole de marque déposée",
+ "Common.Views.SymbolTableDialog.textSCQuote": "Guillemet simple fermant",
+ "Common.Views.SymbolTableDialog.textSection": "Paragraphe",
+ "Common.Views.SymbolTableDialog.textShortcut": "Touche de raccourci",
"Common.Views.SymbolTableDialog.textSHyphen": "Trait d'union conditionnel",
- "Common.Views.SymbolTableDialog.textSOQuote": "Ouvrir l'apostrophe",
+ "Common.Views.SymbolTableDialog.textSOQuote": "Guillemet simple ouvrant",
"Common.Views.SymbolTableDialog.textSpecial": "symboles spéciaux",
"Common.Views.SymbolTableDialog.textSymbols": "Symboles",
"Common.Views.SymbolTableDialog.textTitle": "Symbole",
- "Common.Views.SymbolTableDialog.textTradeMark": "Logo",
+ "Common.Views.SymbolTableDialog.textTradeMark": "Symbole de marque",
"Common.Views.UserNameDialog.textDontShow": "Ne plus me demander à nouveau",
"Common.Views.UserNameDialog.textLabel": "Étiquette :",
"Common.Views.UserNameDialog.textLabelError": "Étiquette ne doit pas être vide",
@@ -742,6 +742,11 @@
"DE.Controllers.Main.errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut être ouvert.",
"DE.Controllers.Main.errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur. Veuillez contacter votre administrateur de Document Server pour obtenir plus d'information. ",
"DE.Controllers.Main.errorForceSave": "Une erreur est survenue lors de l'enregistrement du fichier. Veuillez utiliser l'option \"Télécharger comme\" pour enregistrer le fichier sur le disque dur de votre ordinateur ou réessayer plus tard.",
+ "DE.Controllers.Main.errorInconsistentExt": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier ne correspond pas à l'extension du fichier.",
+ "DE.Controllers.Main.errorInconsistentExtDocx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des documents texte (par exemple docx), mais le fichier a une extension incohérente : %1.",
+ "DE.Controllers.Main.errorInconsistentExtPdf": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à l'un des formats suivants : pdf/djvu/xps/oxps, mais le fichier a l'extension incohérente : %1.",
+ "DE.Controllers.Main.errorInconsistentExtPptx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des présentations (par exemple pptx), mais le fichier a une extension incohérente : %1.",
+ "DE.Controllers.Main.errorInconsistentExtXlsx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des feuilles de calcul (par exemple xlsx), mais le fichier a une extension incohérente : %1.",
"DE.Controllers.Main.errorKeyEncrypt": "Descripteur de clés inconnu",
"DE.Controllers.Main.errorKeyExpire": "Descripteur de clés expiré",
"DE.Controllers.Main.errorLoadingFont": "Les polices ne sont pas téléchargées. Veuillez contacter l'administrateur de Document Server.",
@@ -1494,7 +1499,7 @@
"DE.Views.CellsAddDialog.textLeft": "Vers la gauche",
"DE.Views.CellsAddDialog.textRight": "Vers la droite",
"DE.Views.CellsAddDialog.textRow": "Lignes",
- "DE.Views.CellsAddDialog.textTitle": "Inserer Plusieurs",
+ "DE.Views.CellsAddDialog.textTitle": "Insérer plusieurs",
"DE.Views.CellsAddDialog.textUp": "au-dessus du curseur",
"DE.Views.ChartSettings.text3dDepth": "Profondeur (% de la base)",
"DE.Views.ChartSettings.text3dHeight": "Hauteur (% de la base)",
@@ -1863,7 +1868,7 @@
"DE.Views.DropcapSettingsAdvanced.textAtLeast": "Au moins ",
"DE.Views.DropcapSettingsAdvanced.textAuto": "Auto",
"DE.Views.DropcapSettingsAdvanced.textBackColor": "Couleur d'arrière-plan",
- "DE.Views.DropcapSettingsAdvanced.textBorderColor": "Couleur",
+ "DE.Views.DropcapSettingsAdvanced.textBorderColor": "Couleur de bordure",
"DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Cliquez sur le diagramme ou utilisez les boutons pour sélectionner les bordures",
"DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Taille de bordure",
"DE.Views.DropcapSettingsAdvanced.textBottom": "En bas",
@@ -2142,7 +2147,7 @@
"DE.Views.HyperlinkSettingsDialog.textDefault": "Fragment du texte sélectionné",
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Afficher",
"DE.Views.HyperlinkSettingsDialog.textExternal": "Lien externe",
- "DE.Views.HyperlinkSettingsDialog.textInternal": "Endroit dans le document",
+ "DE.Views.HyperlinkSettingsDialog.textInternal": "Placer dans le document",
"DE.Views.HyperlinkSettingsDialog.textTitle": "Paramètres du lien hypertexte",
"DE.Views.HyperlinkSettingsDialog.textTooltip": "Texte de l'info-bulle ",
"DE.Views.HyperlinkSettingsDialog.textUrl": "Lien vers",
@@ -2184,7 +2189,7 @@
"DE.Views.ImageSettings.txtThrough": "Au travers",
"DE.Views.ImageSettings.txtTight": "Rapproché",
"DE.Views.ImageSettings.txtTopAndBottom": "Haut et bas",
- "DE.Views.ImageSettingsAdvanced.strMargins": "Rembourrage texte",
+ "DE.Views.ImageSettingsAdvanced.strMargins": "Marges intérieures",
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Absolue",
"DE.Views.ImageSettingsAdvanced.textAlignment": "Alignement",
"DE.Views.ImageSettingsAdvanced.textAlt": "Texte de remplacement",
@@ -2208,23 +2213,23 @@
"DE.Views.ImageSettingsAdvanced.textColumn": "Colonne",
"DE.Views.ImageSettingsAdvanced.textDistance": "Distance du texte",
"DE.Views.ImageSettingsAdvanced.textEndSize": "Taille de fin",
- "DE.Views.ImageSettingsAdvanced.textEndStyle": "Style de fin",
+ "DE.Views.ImageSettingsAdvanced.textEndStyle": "Style final",
"DE.Views.ImageSettingsAdvanced.textFlat": "Plat",
"DE.Views.ImageSettingsAdvanced.textFlipped": "Retourné",
"DE.Views.ImageSettingsAdvanced.textHeight": "Hauteur",
"DE.Views.ImageSettingsAdvanced.textHorizontal": "Horizontal",
"DE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontalement",
- "DE.Views.ImageSettingsAdvanced.textJoinType": "Type de jointure",
+ "DE.Views.ImageSettingsAdvanced.textJoinType": "Type de connexion",
"DE.Views.ImageSettingsAdvanced.textKeepRatio": "Proportions constantes",
"DE.Views.ImageSettingsAdvanced.textLeft": "À gauche",
"DE.Views.ImageSettingsAdvanced.textLeftMargin": "Marge gauche",
"DE.Views.ImageSettingsAdvanced.textLine": "Ligne",
- "DE.Views.ImageSettingsAdvanced.textLineStyle": "Style de la ligne",
+ "DE.Views.ImageSettingsAdvanced.textLineStyle": "Style de ligne",
"DE.Views.ImageSettingsAdvanced.textMargin": "Marge",
"DE.Views.ImageSettingsAdvanced.textMiter": "Onglet",
"DE.Views.ImageSettingsAdvanced.textMove": "Déplacer avec le texte",
"DE.Views.ImageSettingsAdvanced.textOptions": "Options",
- "DE.Views.ImageSettingsAdvanced.textOriginalSize": "Taille actuelle",
+ "DE.Views.ImageSettingsAdvanced.textOriginalSize": "Taille réelle",
"DE.Views.ImageSettingsAdvanced.textOverlap": "Autoriser le chevauchement",
"DE.Views.ImageSettingsAdvanced.textPage": "Page",
"DE.Views.ImageSettingsAdvanced.textParagraph": "Paragraphe",
@@ -2238,7 +2243,7 @@
"DE.Views.ImageSettingsAdvanced.textRightOf": "à droite de",
"DE.Views.ImageSettingsAdvanced.textRotation": "Rotation",
"DE.Views.ImageSettingsAdvanced.textRound": "Arrondi",
- "DE.Views.ImageSettingsAdvanced.textShape": "Paramètres de la forme",
+ "DE.Views.ImageSettingsAdvanced.textShape": "Paramètres de forme",
"DE.Views.ImageSettingsAdvanced.textSize": "Taille",
"DE.Views.ImageSettingsAdvanced.textSquare": "Carré",
"DE.Views.ImageSettingsAdvanced.textTextBox": "Zone de texte",
@@ -2282,11 +2287,11 @@
"DE.Views.LineNumbersDialog.textForward": "Ce point en avant",
"DE.Views.LineNumbersDialog.textFromText": "A partir du texte",
"DE.Views.LineNumbersDialog.textNumbering": "Numérotation",
- "DE.Views.LineNumbersDialog.textRestartEachPage": "Restaurer chaque page",
- "DE.Views.LineNumbersDialog.textRestartEachSection": "Restaurer chaque section",
+ "DE.Views.LineNumbersDialog.textRestartEachPage": "Redémarrer à chaque page",
+ "DE.Views.LineNumbersDialog.textRestartEachSection": "Redémarrer à chaque section",
"DE.Views.LineNumbersDialog.textSection": "Section active",
"DE.Views.LineNumbersDialog.textStartAt": "Commencer par",
- "DE.Views.LineNumbersDialog.textTitle": "Numéros des lignes",
+ "DE.Views.LineNumbersDialog.textTitle": "Numérotation des lignes",
"DE.Views.LineNumbersDialog.txtAutoText": "Auto",
"DE.Views.Links.capBtnAddText": "Ajouter du texte",
"DE.Views.Links.capBtnBookmarks": "Signet",
@@ -2335,7 +2340,7 @@
"DE.Views.ListSettingsDialog.txtAlign": "Alignement",
"DE.Views.ListSettingsDialog.txtBullet": "Puce",
"DE.Views.ListSettingsDialog.txtColor": "Couleur",
- "DE.Views.ListSettingsDialog.txtFont": "Symboles et caractères",
+ "DE.Views.ListSettingsDialog.txtFont": "Police et symbole",
"DE.Views.ListSettingsDialog.txtLikeText": "En tant que texte",
"DE.Views.ListSettingsDialog.txtNewBullet": "Nouvelle puce",
"DE.Views.ListSettingsDialog.txtNone": "Rien",
@@ -2353,8 +2358,8 @@
"DE.Views.MailMergeEmailDlg.textFrom": "De",
"DE.Views.MailMergeEmailDlg.textHTML": "HTML",
"DE.Views.MailMergeEmailDlg.textMessage": "Message",
- "DE.Views.MailMergeEmailDlg.textSubject": "Sujet ligne",
- "DE.Views.MailMergeEmailDlg.textTitle": "Envoyer par Email",
+ "DE.Views.MailMergeEmailDlg.textSubject": "Ligne d'objet",
+ "DE.Views.MailMergeEmailDlg.textTitle": "Envoyer par e-mail",
"DE.Views.MailMergeEmailDlg.textTo": "à",
"DE.Views.MailMergeEmailDlg.textWarning": "Attention !",
"DE.Views.MailMergeEmailDlg.textWarningMsg": "S'il vous plaît noter que postale ne peut pas être arrêté une fois que vous cliquez sur le bouton 'Envoyer'.",
@@ -2430,9 +2435,9 @@
"DE.Views.NoteSettingsDialog.textSection": "Section active",
"DE.Views.NoteSettingsDialog.textStart": "Commencer par",
"DE.Views.NoteSettingsDialog.textTextBottom": "Sous le texte",
- "DE.Views.NoteSettingsDialog.textTitle": "Paramètres des notes de bas de page",
- "DE.Views.NotesRemoveDialog.textEnd": "Supprimer toutes les notes de fin",
- "DE.Views.NotesRemoveDialog.textFoot": "Supprimer les notes de bas de page",
+ "DE.Views.NoteSettingsDialog.textTitle": "Paramètres des notes",
+ "DE.Views.NotesRemoveDialog.textEnd": "Supprimer toutes les notes de fin de page",
+ "DE.Views.NotesRemoveDialog.textFoot": "Supprimer toutes les notes de bas de page",
"DE.Views.NotesRemoveDialog.textTitle": "Supprimer les notes",
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Avertissement",
"DE.Views.PageMarginsDialog.textBottom": "Bas",
@@ -2501,7 +2506,7 @@
"DE.Views.ParagraphSettingsAdvanced.strOrphan": "Éviter orphelines",
"DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Police",
"DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Retraits et espacement",
- "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Enchaînements",
+ "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Sauts de ligne et de page",
"DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Emplacement",
"DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Petites majuscules",
"DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "Ne pas ajouter d'intervalle entre paragraphes du même style",
@@ -2517,17 +2522,17 @@
"DE.Views.ParagraphSettingsAdvanced.textAuto": "Multiple ",
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Couleur d'arrière-plan",
"DE.Views.ParagraphSettingsAdvanced.textBodyText": "Texte simple",
- "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Couleur",
+ "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Couleur de bordure",
"DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Cliquez sur le diagramme ou utilisez les boutons pour sélectionner les bordures et appliquez le style choisi",
"DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Taille de bordure",
"DE.Views.ParagraphSettingsAdvanced.textBottom": "En bas",
"DE.Views.ParagraphSettingsAdvanced.textCentered": "Centré",
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espacement des caractères",
"DE.Views.ParagraphSettingsAdvanced.textContext": "Contextuels",
- "DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Contextuels et discrétionnaires",
- "DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Contextuels, historiques et discrétionnaires",
- "DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Contextuels et historiques",
- "DE.Views.ParagraphSettingsAdvanced.textDefault": "Par défaut",
+ "DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Contextuelles et discrétionnaires",
+ "DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Contextuelles, historiques et discrétionnaires",
+ "DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Contextuelles et historiques",
+ "DE.Views.ParagraphSettingsAdvanced.textDefault": "Onglet par défaut",
"DE.Views.ParagraphSettingsAdvanced.textDiscret": "Discrétionnaires",
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Effets",
"DE.Views.ParagraphSettingsAdvanced.textExact": "Exactement",
@@ -2558,7 +2563,7 @@
"DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "Standards et historiques",
"DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Centre",
"DE.Views.ParagraphSettingsAdvanced.textTabLeft": "À gauche",
- "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Position",
+ "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Position de l'onglet",
"DE.Views.ParagraphSettingsAdvanced.textTabRight": "A droite",
"DE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraphe - Paramètres avancés",
"DE.Views.ParagraphSettingsAdvanced.textTop": "En haut",
@@ -2691,10 +2696,10 @@
"DE.Views.StyleTitleDialog.txtEmpty": "Ce champ est obligatoire",
"DE.Views.StyleTitleDialog.txtNotEmpty": "Le champ ne doit pas être vide",
"DE.Views.StyleTitleDialog.txtSameAs": "Identique au nouveau style créé",
- "DE.Views.TableFormulaDialog.textBookmark": "Coller Signet ",
+ "DE.Views.TableFormulaDialog.textBookmark": "Insérer le signet",
"DE.Views.TableFormulaDialog.textFormat": "Format de nombre",
"DE.Views.TableFormulaDialog.textFormula": "Formule",
- "DE.Views.TableFormulaDialog.textInsertFunction": "Coller Fonction",
+ "DE.Views.TableFormulaDialog.textInsertFunction": "Coller une fonction",
"DE.Views.TableFormulaDialog.textTitle": "Paramètres de formule",
"DE.Views.TableOfContentsSettings.strAlign": "Aligner les numéros de page à droite",
"DE.Views.TableOfContentsSettings.strFullCaption": "Inclure l'étiquette et le numéro",
@@ -2717,7 +2722,7 @@
"DE.Views.TableOfContentsSettings.textStyles": "Styles",
"DE.Views.TableOfContentsSettings.textTable": "Tableau",
"DE.Views.TableOfContentsSettings.textTitle": "Table des matières",
- "DE.Views.TableOfContentsSettings.textTitleTOF": "Table des figures",
+ "DE.Views.TableOfContentsSettings.textTitleTOF": "Table des illustrations",
"DE.Views.TableOfContentsSettings.txtCentered": "Centré",
"DE.Views.TableOfContentsSettings.txtClassic": "Classique",
"DE.Views.TableOfContentsSettings.txtCurrent": "Actuel",
@@ -2800,9 +2805,9 @@
"DE.Views.TableSettingsAdvanced.textAltTitle": "Titre",
"DE.Views.TableSettingsAdvanced.textAnchorText": "Texte",
"DE.Views.TableSettingsAdvanced.textAutofit": "Redimensionner automatiquement pour ajuster au contenu",
- "DE.Views.TableSettingsAdvanced.textBackColor": "Fond de la cellule",
+ "DE.Views.TableSettingsAdvanced.textBackColor": "Arrière-plan de cellule ",
"DE.Views.TableSettingsAdvanced.textBelow": "en dessous",
- "DE.Views.TableSettingsAdvanced.textBorderColor": "Couleur",
+ "DE.Views.TableSettingsAdvanced.textBorderColor": "Couleur de bordure",
"DE.Views.TableSettingsAdvanced.textBorderDesc": "Cliquez sur le diagramme ou utilisez les boutons pour sélectionner bordures et appliquez le style choisi",
"DE.Views.TableSettingsAdvanced.textBordersBackgroung": "Bordures et arrière-plan",
"DE.Views.TableSettingsAdvanced.textBorderWidth": "Taille de bordure",
@@ -2835,7 +2840,7 @@
"DE.Views.TableSettingsAdvanced.textRightOf": "à droite de",
"DE.Views.TableSettingsAdvanced.textRightTooltip": "A droite",
"DE.Views.TableSettingsAdvanced.textTable": "Tableau",
- "DE.Views.TableSettingsAdvanced.textTableBackColor": "Fond du tableau",
+ "DE.Views.TableSettingsAdvanced.textTableBackColor": "Arrière-plan de tableau",
"DE.Views.TableSettingsAdvanced.textTablePosition": "Position du tableau",
"DE.Views.TableSettingsAdvanced.textTableSize": "Taille du tableau",
"DE.Views.TableSettingsAdvanced.textTitle": "Tableau - Paramètres avancés",
@@ -2993,7 +2998,7 @@
"DE.Views.Toolbar.textLandscape": "Paysage",
"DE.Views.Toolbar.textLeft": "À gauche:",
"DE.Views.Toolbar.textListSettings": "Paramètres de la liste",
- "DE.Views.Toolbar.textMarginsLast": "Dernière mesure",
+ "DE.Views.Toolbar.textMarginsLast": "Dernières personnalisées",
"DE.Views.Toolbar.textMarginsModerate": "Modérer",
"DE.Views.Toolbar.textMarginsNarrow": "Étroit",
"DE.Views.Toolbar.textMarginsNormal": "Normal",
@@ -3149,9 +3154,11 @@
"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.textInterfaceTheme": "Thème d’interface",
+ "DE.Views.ViewTab.textLeftMenu": "Panneau gauche",
"DE.Views.ViewTab.textNavigation": "Navigation",
"DE.Views.ViewTab.textOutline": "Titres",
+ "DE.Views.ViewTab.textRightMenu": "Panneau droit",
"DE.Views.ViewTab.textRulers": "Règles",
"DE.Views.ViewTab.textStatusBar": "Barre d'état",
"DE.Views.ViewTab.textZoom": "Zoom",
@@ -3165,8 +3172,8 @@
"DE.Views.WatermarkSettingsDialog.textColor": "Couleur du texte",
"DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonale",
"DE.Views.WatermarkSettingsDialog.textFont": "Police",
- "DE.Views.WatermarkSettingsDialog.textFromFile": "Depuis un fichier",
- "DE.Views.WatermarkSettingsDialog.textFromStorage": "A partir de l'espace de stockage",
+ "DE.Views.WatermarkSettingsDialog.textFromFile": "D'un fichier",
+ "DE.Views.WatermarkSettingsDialog.textFromStorage": "Depuis l'espace de stockage",
"DE.Views.WatermarkSettingsDialog.textFromUrl": "D'une URL",
"DE.Views.WatermarkSettingsDialog.textHor": "Horizontal",
"DE.Views.WatermarkSettingsDialog.textImageW": "Image en filigrane",
diff --git a/apps/documenteditor/main/locale/hu.json b/apps/documenteditor/main/locale/hu.json
index 1e697b7ec..112230d3a 100644
--- a/apps/documenteditor/main/locale/hu.json
+++ b/apps/documenteditor/main/locale/hu.json
@@ -125,6 +125,26 @@
"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.smartArt.textAccentedPicture": "Hangsúlyos kép",
+ "Common.define.smartArt.textAccentProcess": "Akcentus eljárás",
+ "Common.define.smartArt.textAlternatingFlow": "Váltakozó folyamat",
+ "Common.define.smartArt.textAlternatingHexagons": "Váltakozó hatszögek",
+ "Common.define.smartArt.textAlternatingPictureBlocks": "Váltakozó képblokkok",
+ "Common.define.smartArt.textAlternatingPictureCircles": "Váltakozó képkörök",
+ "Common.define.smartArt.textArchitectureLayout": "Tervezés Elrendezés",
+ "Common.define.smartArt.textArrowRibbon": "Nyilas szalag",
+ "Common.define.smartArt.textAscendingPictureAccentProcess": "Felszálló kép hangsúlyozásának folyamata",
+ "Common.define.smartArt.textBalance": "Egyensúly",
+ "Common.define.smartArt.textBasicBendingProcess": "Alapvető elhajlítási folyamat",
+ "Common.define.smartArt.textBasicBlockList": "Alapvető blokkok listája",
+ "Common.define.smartArt.textBasicChevronProcess": "Alapvető Chevron folyamat",
+ "Common.define.smartArt.textBasicCycle": "Alapciklus",
+ "Common.define.smartArt.textBasicMatrix": "Alap mátrix",
+ "Common.define.smartArt.textBasicPie": "Egyszerű körforgás",
+ "Common.define.smartArt.textBasicProcess": "Alapfolyamat",
+ "Common.define.smartArt.textBasicPyramid": "Egyszerű piramis",
+ "Common.define.smartArt.textBasicRadial": "Alap sugárirányú",
+ "Common.define.smartArt.textBasicTarget": "Alapvető cél",
"Common.Translation.textMoreButton": "Több",
"Common.Translation.warnFileLocked": "Nem szerkesztheti ezt a fájlt, mert egy másik alkalmazásban szerkesztik.",
"Common.Translation.warnFileLockedBtnEdit": "Másolat létrehozása",
@@ -2401,6 +2421,7 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Csak felső szegély beállítása",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Nincsenek szegélyek",
+ "DE.Views.ProtectDialog.txtAllow": "Csak ilyen típusú szerkesztés engedélyezése a dokumentumban",
"DE.Views.RightMenu.txtChartSettings": "Diagram beállítások",
"DE.Views.RightMenu.txtFormSettings": "Űrlapbeállítások",
"DE.Views.RightMenu.txtHeaderFooterSettings": "Fejléc és lábléc beállítások",
diff --git a/apps/documenteditor/main/locale/hy.json b/apps/documenteditor/main/locale/hy.json
index 9d076c1d2..3a598bd36 100644
--- a/apps/documenteditor/main/locale/hy.json
+++ b/apps/documenteditor/main/locale/hy.json
@@ -125,11 +125,165 @@
"Common.define.chartData.textScatterSmoothMarker": "Ցրել սահուն գծերով և նշիչներով",
"Common.define.chartData.textStock": "Տվյալների տատանում",
"Common.define.chartData.textSurface": "Մակերեսային",
+ "Common.define.smartArt.textAccentedPicture": "Շեշտված նկար",
+ "Common.define.smartArt.textAccentProcess": "Շեշտման ընթացք",
+ "Common.define.smartArt.textAlternatingFlow": "Այլընտրական հոսք",
+ "Common.define.smartArt.textAlternatingHexagons": "Այլընտրական վեցանկյունիներ",
+ "Common.define.smartArt.textAlternatingPictureBlocks": "Այլընտրական նկարների կազմեր",
+ "Common.define.smartArt.textAlternatingPictureCircles": "Այլընտրական նկարների շրջանակներ",
+ "Common.define.smartArt.textArchitectureLayout": "Ճարտարապետական դասավորություն",
+ "Common.define.smartArt.textArrowRibbon": "Սլաքի երիզ",
+ "Common.define.smartArt.textAscendingPictureAccentProcess": "Աճող նկարների շեշտման ընթացք",
"Common.define.smartArt.textBalance": "Հաշվեկշիռ",
+ "Common.define.smartArt.textBasicBendingProcess": "Հիմնական ծռման ընթացք",
+ "Common.define.smartArt.textBasicBlockList": "Հիմնական բաժնի ցուցակ",
+ "Common.define.smartArt.textBasicChevronProcess": "Հիմնական ծպեղների ընթացք",
+ "Common.define.smartArt.textBasicCycle": "Հիմնական շրջան",
+ "Common.define.smartArt.textBasicMatrix": "Հիմնական մատրիցա",
+ "Common.define.smartArt.textBasicPie": "Հիմնական բլիթ",
+ "Common.define.smartArt.textBasicProcess": "Հիմնական ընթացք",
+ "Common.define.smartArt.textBasicPyramid": "Հիմնական բուրգ",
+ "Common.define.smartArt.textBasicRadial": "Հիմնական շառավիղ",
+ "Common.define.smartArt.textBasicTarget": "Հիմնական նպատակ",
+ "Common.define.smartArt.textBasicTimeline": "Հիմնական ժամագիծ",
+ "Common.define.smartArt.textBasicVenn": "Հիմնական վրածածք",
+ "Common.define.smartArt.textBendingPictureAccentList": "Ծռված նկարի շեշտման ցուցակ",
+ "Common.define.smartArt.textBendingPictureBlocks": "Ծռված նկարների կազմեր",
+ "Common.define.smartArt.textBendingPictureCaption": "Ծռված նկարի խորագիր",
+ "Common.define.smartArt.textBendingPictureCaptionList": "Ծռված նկարի խորագրերի ցուցակ",
+ "Common.define.smartArt.textBendingPictureSemiTranparentText": "Ծռված նկարի կիսաթափանցիկ գրվածք",
+ "Common.define.smartArt.textBlockCycle": "Բաժնի շրջան",
+ "Common.define.smartArt.textBubblePictureList": "Դրսագրով նկարների ցուցակ",
+ "Common.define.smartArt.textCaptionedPictures": "Խորագրով նկարներ",
+ "Common.define.smartArt.textChevronAccentProcess": "Ծպեղների շեշտման ընթաց",
+ "Common.define.smartArt.textChevronList": "Ծպեղների ցուցակ",
+ "Common.define.smartArt.textCircleAccentTimeline": "Շրջանաձև շեշտման ժամագիծ",
+ "Common.define.smartArt.textCircleArrowProcess": "Շրջանաձև սլաքի ընթացք",
+ "Common.define.smartArt.textCirclePictureHierarchy": "Շրջանաձև նկարների աստիճանակարգություն",
+ "Common.define.smartArt.textCircleProcess": "Շրջանաձև ընթացք",
+ "Common.define.smartArt.textCircleRelationship": "Շրջանների հարաբերություն",
+ "Common.define.smartArt.textCircularBendingProcess": "Շրջանային ծռման ընթացք",
+ "Common.define.smartArt.textCircularPictureCallout": "Շրջանաձև նկարի դրսագիր",
+ "Common.define.smartArt.textClosedChevronProcess": "Փակ ծպեղների ընթացք",
+ "Common.define.smartArt.textContinuousArrowProcess": "Շարունակական սլաքի ընթացք",
+ "Common.define.smartArt.textContinuousBlockProcess": "Շարունակական բաժնի ընթացք",
+ "Common.define.smartArt.textContinuousCycle": "Շարունակական շրջան",
+ "Common.define.smartArt.textContinuousPictureList": "Շարունակական նկարի ցուցակ",
+ "Common.define.smartArt.textConvergingArrows": "Միակցող սլաքներ",
+ "Common.define.smartArt.textConvergingRadial": "Զուգահեռ շառավիղ",
+ "Common.define.smartArt.textConvergingText": "Զուգամետ գրվածք",
+ "Common.define.smartArt.textCounterbalanceArrows": "Հակակշիռ սլաքներ",
+ "Common.define.smartArt.textCycle": "Շրջան",
+ "Common.define.smartArt.textCycleMatrix": "Շրջանային մատրիցա",
+ "Common.define.smartArt.textDescendingBlockList": "Նվազող կազմերի ցուցակ",
+ "Common.define.smartArt.textDescendingProcess": "Նվազող ընթացք",
+ "Common.define.smartArt.textDetailedProcess": "Մանրամասն ընթացք",
+ "Common.define.smartArt.textDivergingArrows": "Հակադիր սլաքներ",
+ "Common.define.smartArt.textDivergingRadial": "Ցրված շառավիղ",
"Common.define.smartArt.textEquation": "Հավասարում",
+ "Common.define.smartArt.textFramedTextPicture": "Շրջանակված գրվածքով նկար",
"Common.define.smartArt.textFunnel": "Ձագարաձև",
+ "Common.define.smartArt.textGear": "Ատամնանիվ",
+ "Common.define.smartArt.textGridMatrix": "Ցանցավոր մատրիցա",
+ "Common.define.smartArt.textGroupedList": "Խմբավորված ցուցակ",
+ "Common.define.smartArt.textHalfCircleOrganizationChart": "Կիսաշրջանաձև կազմակերպության գծապատկեր",
+ "Common.define.smartArt.textHexagonCluster": "Վեցանկյունիների բույլ",
+ "Common.define.smartArt.textHexagonRadial": "Վեցանկյունիների շառավիղ",
+ "Common.define.smartArt.textHierarchy": "Ստորակարգ",
+ "Common.define.smartArt.textHierarchyList": "Ստորակարգի ցուցակ",
+ "Common.define.smartArt.textHorizontalBulletList": "Հորիզոնական պարբերակի ցուցակ",
+ "Common.define.smartArt.textHorizontalHierarchy": "Հորիզոնական ստորակարգ",
+ "Common.define.smartArt.textHorizontalLabeledHierarchy": "Հորիզոնական պիտակված ստորակարգ",
+ "Common.define.smartArt.textHorizontalMultiLevelHierarchy": "Հորիզոնական բազմակակարդակ աստիճանակարգություն",
+ "Common.define.smartArt.textHorizontalOrganizationChart": "Հորիզոնական կազմակերպության գծապատկեր",
+ "Common.define.smartArt.textHorizontalPictureList": "Հորիզոնական նկարների ցուցակ",
+ "Common.define.smartArt.textIncreasingArrowProcess": "Աճող սլաքի ընթացք",
+ "Common.define.smartArt.textIncreasingCircleProcess": "Աճող շրջանաձև ընթացք",
+ "Common.define.smartArt.textInterconnectedBlockProcess": "Փոխկապակցված կազմերի ընթացք",
+ "Common.define.smartArt.textInterconnectedRings": "Փոխկապակցված օղակներ",
+ "Common.define.smartArt.textInvertedPyramid": "Հակադարձված բուրգ",
+ "Common.define.smartArt.textLabeledHierarchy": "Պիտակված ստորակարգ",
+ "Common.define.smartArt.textLinearVenn": "Գծային վրածածք",
+ "Common.define.smartArt.textLinedList": "Գծված ցուցակ",
"Common.define.smartArt.textList": "Ցուցակ",
+ "Common.define.smartArt.textMatrix": "Մատրիցա",
+ "Common.define.smartArt.textMultidirectionalCycle": "Բազմուղի շրջան",
+ "Common.define.smartArt.textNameAndTitleOrganizationChart": "Անուններով և պաշտոններով կազմակերպության գծապատկեր",
+ "Common.define.smartArt.textNestedTarget": "Ներդրված թիրախ",
+ "Common.define.smartArt.textNondirectionalCycle": "Ոչ ուղղորդված շրջան",
+ "Common.define.smartArt.textOpposingArrows": "Հակադրող սլաքներ",
+ "Common.define.smartArt.textOpposingIdeas": "Հակադրող առաջարկներ",
+ "Common.define.smartArt.textOrganizationChart": "Կազմակերպության գծապատկեր",
"Common.define.smartArt.textOther": "Այլ",
+ "Common.define.smartArt.textPhasedProcess": "Փուլային ընթացք",
+ "Common.define.smartArt.textPicture": "Նկար",
+ "Common.define.smartArt.textPictureAccentBlocks": "Նկարների շեշտման կազմեր",
+ "Common.define.smartArt.textPictureAccentList": "Նկարի շեշտման ցուցակ",
+ "Common.define.smartArt.textPictureAccentProcess": "Նկարի շեշտման ընթացք",
+ "Common.define.smartArt.textPictureCaptionList": "Նկարի խորագրերի ցուցակ",
+ "Common.define.smartArt.textPictureFrame": "ՆկարիՇրջանակ",
+ "Common.define.smartArt.textPictureGrid": "Նկարների ցանց",
+ "Common.define.smartArt.textPictureLineup": "Նկարների շարան",
+ "Common.define.smartArt.textPictureOrganizationChart": "Նկարի կազմակերպության գծապատկեր",
+ "Common.define.smartArt.textPictureStrips": "Նկարների գծեր",
+ "Common.define.smartArt.textPieProcess": "Բլիթային գծապատկերով ընթացք",
+ "Common.define.smartArt.textPlusAndMinus": "Գումարած և հանած",
+ "Common.define.smartArt.textProcess": "Ընթացք",
+ "Common.define.smartArt.textProcessArrows": "Ընթացքի սլաքներ",
+ "Common.define.smartArt.textProcessList": "Ընթացքների ցուցակ",
+ "Common.define.smartArt.textPyramid": "Բուրգ",
+ "Common.define.smartArt.textPyramidList": "Բուրգի ցուցակ",
+ "Common.define.smartArt.textRadialCluster": "Շառավիղների բույլ",
+ "Common.define.smartArt.textRadialCycle": "Շառավղային շրջան",
+ "Common.define.smartArt.textRadialList": "Շառավղի ցուցակ",
+ "Common.define.smartArt.textRadialPictureList": "Շառավղային նկարների ցուցակ",
+ "Common.define.smartArt.textRadialVenn": "Շառավղային վրածածք",
+ "Common.define.smartArt.textRandomToResultProcess": "Պատահականից դեպի արդյունք ընթացք",
+ "Common.define.smartArt.textRelationship": "Հարաբերություն",
+ "Common.define.smartArt.textRepeatingBendingProcess": "Կրկնվող ծռման ընթացք",
+ "Common.define.smartArt.textReverseList": "Հետադարձ ցուցակ",
+ "Common.define.smartArt.textSegmentedCycle": "Մասնատված շրջան",
+ "Common.define.smartArt.textSegmentedProcess": "Մասնատված ընթացք",
+ "Common.define.smartArt.textSegmentedPyramid": "Մասնատված բուրգ",
+ "Common.define.smartArt.textSnapshotPictureList": "Ճեպապատկերների ցուցակ",
+ "Common.define.smartArt.textSpiralPicture": "Պարուրաձև նկար",
+ "Common.define.smartArt.textSquareAccentList": "Քառակուսի շեշտման ցուցակ",
+ "Common.define.smartArt.textStackedList": "Շեղջված ցուցակ",
+ "Common.define.smartArt.textStackedVenn": "Շեղջված վրածածք",
+ "Common.define.smartArt.textStaggeredProcess": "Աստիճանայաին ընթացք",
+ "Common.define.smartArt.textStepDownProcess": "Իջնող ընթացք",
+ "Common.define.smartArt.textStepUpProcess": "Բարձրացող ընթացք",
+ "Common.define.smartArt.textSubStepProcess": "Ենթաքայլերով ընթացք",
+ "Common.define.smartArt.textTabbedArc": "Ներդիրավոր աղեղ",
+ "Common.define.smartArt.textTableHierarchy": "Աղյուսակի ստորակարգ",
+ "Common.define.smartArt.textTableList": "Աղյուսակային ցուցակ",
+ "Common.define.smartArt.textTabList": "Ներդիրների ցուցակ",
+ "Common.define.smartArt.textTargetList": "Նպատակակետի ցուցակ",
+ "Common.define.smartArt.textTextCycle": "Գրվածքի շրջան",
+ "Common.define.smartArt.textThemePictureAccent": "Ոճի նկարի շեշտում",
+ "Common.define.smartArt.textThemePictureAlternatingAccent": "Ոճի նկարի այլընտրական շեշտում",
+ "Common.define.smartArt.textThemePictureGrid": "Ոճի նկարի ցանց",
+ "Common.define.smartArt.textTitledMatrix": "Անվանված մատրիցա",
+ "Common.define.smartArt.textTitledPictureAccentList": "Անվանված նկարների շեշտման ցուցակ",
+ "Common.define.smartArt.textTitledPictureBlocks": "Անվանված նկարների կազմեր",
+ "Common.define.smartArt.textTitlePictureLineup": "Ոճի նկարների շարան",
+ "Common.define.smartArt.textTrapezoidList": "Սեղանի ցուցակ",
+ "Common.define.smartArt.textUpwardArrow": "Վեր սլացող սլաք",
+ "Common.define.smartArt.textVaryingWidthList": "Փոփոխվող լայնությունների ցուցակ",
+ "Common.define.smartArt.textVerticalAccentList": "Ուղղաձիգ շեշտման ցուցակ",
+ "Common.define.smartArt.textVerticalArrowList": "Ուղղաձիգ սլաքի ցուցակ",
+ "Common.define.smartArt.textVerticalBendingProcess": "Ուղղաձիգ ծռման ընթացք",
+ "Common.define.smartArt.textVerticalBlockList": "Ուղղաձիգ կապանի ցուցակ",
+ "Common.define.smartArt.textVerticalBoxList": "Ուղղաձիգ ցուցակատուփ",
+ "Common.define.smartArt.textVerticalBracketList": "Ուղղաձիգ ուղղանկյուն փակագծերի ցուցակ",
+ "Common.define.smartArt.textVerticalBulletList": "Ուղղաձիգ պարբերակների ցուցակ",
+ "Common.define.smartArt.textVerticalChevronList": "Ուղղաձիգ ծպեղների ցուցակ",
+ "Common.define.smartArt.textVerticalCircleList": "Ուղղաձիգ շրջանով ցուցակ",
+ "Common.define.smartArt.textVerticalCurvedList": "Ուղղաձիգ կորով ցուցակ",
+ "Common.define.smartArt.textVerticalEquation": "Ուղղաձիգ հավասարում",
+ "Common.define.smartArt.textVerticalPictureAccentList": "Ուղղաձիգ նկարի շեշտման ցուցակ",
+ "Common.define.smartArt.textVerticalPictureList": "Ուղղաձիգ նկարի ցուցակ",
+ "Common.define.smartArt.textVerticalProcess": "Ուղղաձիգ ընթացք",
"Common.Translation.textMoreButton": "Ավել",
"Common.Translation.warnFileLocked": "Դուք չեք կարող խմբագրել այս ֆայլը, քանի որ այն խմբագրվում է մեկ այլ հավելվածում:",
"Common.Translation.warnFileLockedBtnEdit": "Ստեղծել պատճեն",
@@ -294,6 +448,7 @@
"Common.Views.DocumentAccessDialog.textTitle": "Համօգտագործման կարգավորումներ",
"Common.Views.ExternalDiagramEditor.textTitle": "Գծապատկերի խմբագրիչ",
"Common.Views.ExternalEditor.textClose": "Փակել",
+ "Common.Views.ExternalEditor.textSave": "Պահպանել և դուրս գալ",
"Common.Views.ExternalMergeEditor.textTitle": "Փոստի միավորման հաղորդագրություն ստացողներ",
"Common.Views.ExternalOleEditor.textTitle": "Աղյուսակաթերթի խմբագիր",
"Common.Views.Header.labelCoUsersDescr": "Փաստաթուղթը խմբագրողներ՝",
@@ -416,7 +571,7 @@
"Common.Views.ReviewChanges.txtCommentResolveCurrent": "Լուծել ընթացիկ մեկնաբանությունները",
"Common.Views.ReviewChanges.txtCommentResolveMy": "Լուծել իմ մեկնաբանությունները",
"Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Լուծել իմ ընթացիկ մեկնաբանությունները",
- "Common.Views.ReviewChanges.txtCompare": " Համեմատել",
+ "Common.Views.ReviewChanges.txtCompare": "Համեմատել",
"Common.Views.ReviewChanges.txtDocLang": "Լեզու",
"Common.Views.ReviewChanges.txtEditing": "Խմբագրում ",
"Common.Views.ReviewChanges.txtFinal": "Բոլոր փոփոխումներն ընդունված են {0}",
@@ -506,7 +661,8 @@
"Common.Views.SignDialog.tipFontName": "Տառատեսակի անուն",
"Common.Views.SignDialog.tipFontSize": "Տառատեսակի չափ",
"Common.Views.SignSettingsDialog.textAllowComment": "Թույլ տալ ստորագրողին ավելացնել մեկնաբանություն ստորագրության երկխոսության մեջ",
- "Common.Views.SignSettingsDialog.textInfoEmail": "Էլ․ հասցե",
+ "Common.Views.SignSettingsDialog.textDefInstruction": "Նախքան այս փաստաթուղթը ստորագրելը, ստուգեք, որ Ձեր ստորագրած բովանդակությունը ճիշտ է:",
+ "Common.Views.SignSettingsDialog.textInfoEmail": "Առաջարկվող ստորագրողի Էլ․ հասցե",
"Common.Views.SignSettingsDialog.textInfoName": "Անուն",
"Common.Views.SignSettingsDialog.textInfoTitle": "Ստորագրողի անվանումը",
"Common.Views.SignSettingsDialog.textInstructions": "Հրահանգներ ստորագրողի համար",
@@ -518,11 +674,11 @@
"Common.Views.SymbolTableDialog.textCopyright": "Պատճենաշնորհի նշան",
"Common.Views.SymbolTableDialog.textDCQuote": "Փակող կրկնակի չակերտ",
"Common.Views.SymbolTableDialog.textDOQuote": "Բացել կրկնակի փակագծերը",
- "Common.Views.SymbolTableDialog.textEllipsis": "Հորիզոնական բազմակետեր ",
- "Common.Views.SymbolTableDialog.textEmDash": "Երկար գծիկ",
+ "Common.Views.SymbolTableDialog.textEllipsis": "Հորիզոնական էլիպսներ",
+ "Common.Views.SymbolTableDialog.textEmDash": "M-աչափ գիծ",
"Common.Views.SymbolTableDialog.textEmSpace": "Երկար բացատ",
"Common.Views.SymbolTableDialog.textEnDash": "Միջին գծիկ",
- "Common.Views.SymbolTableDialog.textEnSpace": "Միջին բացատ",
+ "Common.Views.SymbolTableDialog.textEnSpace": "en տարածություն",
"Common.Views.SymbolTableDialog.textFont": "Տառատեսակ ",
"Common.Views.SymbolTableDialog.textNBHyphen": "Չընդատվող գծիկ",
"Common.Views.SymbolTableDialog.textNBSpace": "Առանց ընդմիջման տարածություն",
@@ -559,6 +715,7 @@
"DE.Controllers.LeftMenu.warnReplaceString": "{0}-ը վավեր գրանշան չէ փոխարինել դաշտի համար:",
"DE.Controllers.Main.applyChangesTextText": "Փոփոխությունների բեռնում․․․",
"DE.Controllers.Main.applyChangesTitleText": "Փոփոխությունների բեռնում",
+ "DE.Controllers.Main.confirmMaxChangesSize": "Գործողությունների չափը գերազանցում է Ձեր սերվերի համար սահմանված սահմանափակումը: Սեղմեք «Հետարկել»՝ Ձեր վերջին գործողությունը չեղարկելու համար կամ սեղմեք «Շարունակել»՝ գործողությունը տեղում պահելու համար (Դուք պետք է ներբեռնեք ֆայլը կամ պատճենեք դրա բովանդակությունը՝ համոզվելու համար, որ ոչինչ կորած չէ):",
"DE.Controllers.Main.convertationTimeoutText": "Փոխարկման սպասման ժամանակը սպառվել է։",
"DE.Controllers.Main.criticalErrorExtText": "Սեղմեք «լավ» ու վերադարձեք փաստաթղթերի ցանկին",
"DE.Controllers.Main.criticalErrorTitle": "Սխալ",
@@ -585,12 +742,18 @@
"DE.Controllers.Main.errorFilePassProtect": "Ֆայլն ունի գաղտնաբառ և չի կարող բացվել։",
"DE.Controllers.Main.errorFileSizeExceed": "Ֆայլի չափը գերազանցում է ձեր սերվերի համար սահմանված սահմանափակումը: Մանրամասների համար խնդրում ենք կապվել Ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:",
"DE.Controllers.Main.errorForceSave": "Փաստաթղթի պահպանման ժամանակ տեղի ունեցավ սխալ։ «Ներբեռնել որպես» հրամանով պահպանեք նիշքը Ձեր համակարգչի կոշտ սկավառակում կամ ավելի ուշ նորից փորձեք։",
+ "DE.Controllers.Main.errorInconsistentExt": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը չի համապատասխանում ֆայլի ընդլայնմանը:",
+ "DE.Controllers.Main.errorInconsistentExtDocx": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը համապատասխանում է տեքստային փաստաթղթերին (օրինակ՝ docx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում՝ %1:",
+ "DE.Controllers.Main.errorInconsistentExtPdf": "Ֆայլը բացելիս սխալ է տեղի ունեցել:Ֆայլի բովանդակությունը համապատասխանում է հետևյալ ձևաչափերից մեկին՝pdf/djvu/xps/oxps,բայց ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
+ "DE.Controllers.Main.errorInconsistentExtPptx": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը համապատասխանում է ներկայացումներին (օրինակ՝ pptx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
+ "DE.Controllers.Main.errorInconsistentExtXlsx": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը համապատասխանում է աղյուսակներին (օր. xlsx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
"DE.Controllers.Main.errorKeyEncrypt": "Բանալու անհայտ նկարագրիչ",
"DE.Controllers.Main.errorKeyExpire": "Բանալու նկարագրիչի ժամկետը սպառվել է",
"DE.Controllers.Main.errorLoadingFont": "Տառատեսակները բեռնված չեն: Խնդրում ենք կապվել ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:",
"DE.Controllers.Main.errorMailMergeLoadFile": "Փաստաթղթի բեռնումը խափանվեց։ Խնդրում ենք ընտրել մեկ այլ ֆայլ:",
"DE.Controllers.Main.errorMailMergeSaveFile": "Միաձուլումը խափանվեց։",
"DE.Controllers.Main.errorNoTOC": "Արդիացնելու համար բովանդակություն չկա: Կարող եք զետեղել այն հղումներ ներդիրից:",
+ "DE.Controllers.Main.errorPasswordIsNotCorrect": "Ձեր տրամադրած գաղտնաբառը ճիշտ չէ: Ստուգեք, որ CAPS LOCK ստեղնը անջատված է և օգտագործեք ճիշտ գլխատառացումը:",
"DE.Controllers.Main.errorProcessSaveResult": "Պահումը ձախողվել է:",
"DE.Controllers.Main.errorServerVersion": "Խմբագրիչի տարբերակը արդիացվել է։ Որպեսզի փոփոխումները տեղի ունենան, էջը նորից կբեռնվի։",
"DE.Controllers.Main.errorSessionAbsolute": "Փաստաթղթի խմբագրման գործաժամը սպառվել է։ Նորի՛ց բեռնեք էջը։",
@@ -1338,20 +1501,31 @@
"DE.Views.CellsAddDialog.textRow": "Տողեր",
"DE.Views.CellsAddDialog.textTitle": "Տեղադրեք մի քանիսը",
"DE.Views.CellsAddDialog.textUp": "Նշորդի վերևում",
+ "DE.Views.ChartSettings.text3dDepth": "Խորությունը (բազայի %)",
+ "DE.Views.ChartSettings.text3dHeight": "Բարձրություն (բազայի %)",
+ "DE.Views.ChartSettings.text3dRotation": "3D Պտտում",
"DE.Views.ChartSettings.textAdvanced": "Ցուցադրել լրացուցիչ կարգավորումները",
+ "DE.Views.ChartSettings.textAutoscale": "Ինքնասանդղակ",
"DE.Views.ChartSettings.textChartType": "Փոխել գծապատկերի տեսակը",
+ "DE.Views.ChartSettings.textDefault": "Սկզբնադիր շրջում",
"DE.Views.ChartSettings.textDown": "Ներքև",
"DE.Views.ChartSettings.textEditData": "Խմբագրել տվյալները",
"DE.Views.ChartSettings.textHeight": "Բարձրություն",
"DE.Views.ChartSettings.textLeft": "Ձախ",
+ "DE.Views.ChartSettings.textNarrow": "Նեղ տեսադաշտ",
"DE.Views.ChartSettings.textOriginalSize": "Իրական չափ",
+ "DE.Views.ChartSettings.textPerspective": "Հեռանկար",
"DE.Views.ChartSettings.textRight": "Աջ",
+ "DE.Views.ChartSettings.textRightAngle": "Աջ անկյան առանցքներ",
"DE.Views.ChartSettings.textSize": "Չափ",
"DE.Views.ChartSettings.textStyle": "Ոճ",
"DE.Views.ChartSettings.textUndock": "Ապահարակցել վահանակից",
"DE.Views.ChartSettings.textUp": "Վեր",
+ "DE.Views.ChartSettings.textWiden": "Լայն տեսադաշտ",
"DE.Views.ChartSettings.textWidth": "Լայնք",
"DE.Views.ChartSettings.textWrap": "Ծալման ոճ",
+ "DE.Views.ChartSettings.textX": "X պտտում",
+ "DE.Views.ChartSettings.textY": "Y պտտում",
"DE.Views.ChartSettings.txtBehind": "Տեքստի հետևում",
"DE.Views.ChartSettings.txtInFront": "Տեքստի դիմաց",
"DE.Views.ChartSettings.txtInline": "Գրվածքի հետ մեկտող",
@@ -1442,15 +1616,23 @@
"DE.Views.DateTimeDialog.textUpdate": "Ինքնաբար արդիացնել",
"DE.Views.DateTimeDialog.txtTitle": "Ամիս-ամսաթիվ, ժամ",
"DE.Views.DocProtection.hintProtectDoc": "Պաշտպանել փաստաթուղթը",
+ "DE.Views.DocProtection.txtDocProtectedComment": "Փաստաթուղթը պաշտպանված է: Դուք կարող եք միայն մեկնաբանություններ տեղադրել այս փաստաթղթում:",
+ "DE.Views.DocProtection.txtDocProtectedForms": "Փաստաթուղթը պաշտպանված է: Այս փաստաթղթում կարող եք լրացնել միայն ձևերը:",
+ "DE.Views.DocProtection.txtDocProtectedTrack": "Փաստաթուղթը պաշտպանված է: Դուք կարող եք խմբագրել այս փաստաթուղթը, բայց բոլոր փոփոխությունները կհետևվեն:",
+ "DE.Views.DocProtection.txtDocProtectedView": "Փաստաթուղթը պաշտպանված է: Դուք կարող եք դիտել միայն այս փաստաթուղթը:",
+ "DE.Views.DocProtection.txtDocUnlockDescription": "Փաստաթուղթը չպաշտպանելու համար մուտքագրեք գաղտնաբառ։",
"DE.Views.DocProtection.txtProtectDoc": "Պաշտպանել փաստաթուղթը",
"DE.Views.DocumentHolder.aboveText": "Վերև",
"DE.Views.DocumentHolder.addCommentText": "Ավելացնել մեկնաբանություն",
"DE.Views.DocumentHolder.advancedDropCapText": "Սկզբնատառի կարգավորումներ",
+ "DE.Views.DocumentHolder.advancedEquationText": "Հավասարման կարգավորումներ",
"DE.Views.DocumentHolder.advancedFrameText": "Շրջանակի լրացուցիչ կարգավորումներ",
"DE.Views.DocumentHolder.advancedParagraphText": "Պարբերության լրացուցիչ կարգավորումներ",
"DE.Views.DocumentHolder.advancedTableText": "Աղյուսակի լրացուցիչ կարգավորումներ",
"DE.Views.DocumentHolder.advancedText": "Լրացուցիչ կարգավորումներ",
"DE.Views.DocumentHolder.alignmentText": "Հավասարեցում",
+ "DE.Views.DocumentHolder.allLinearText": "Ամբողջական գծային",
+ "DE.Views.DocumentHolder.allProfText": "Ամբողջական պրոֆեսիոնալ",
"DE.Views.DocumentHolder.belowText": "Ներքևում",
"DE.Views.DocumentHolder.breakBeforeText": "Սկզբից էջատում",
"DE.Views.DocumentHolder.bulletsText": "Պարբերակներ և համարակալում",
@@ -1459,6 +1641,8 @@
"DE.Views.DocumentHolder.centerText": "Կենտրոնով",
"DE.Views.DocumentHolder.chartText": "Գծապատկերի լրացուցիչ կարգավորումներ",
"DE.Views.DocumentHolder.columnText": "Սյունակ",
+ "DE.Views.DocumentHolder.currLinearText": "Ընթացիկ - Գծային",
+ "DE.Views.DocumentHolder.currProfText": "Ընթացիկ-Պրոֆեսիոնալ",
"DE.Views.DocumentHolder.deleteColumnText": "Ջնջել սյունակ",
"DE.Views.DocumentHolder.deleteRowText": "Ջնջել տող",
"DE.Views.DocumentHolder.deleteTableText": "Ջնջել աղյուսակը",
@@ -1471,6 +1655,7 @@
"DE.Views.DocumentHolder.editFooterText": "Խմբագրել էջատակը",
"DE.Views.DocumentHolder.editHeaderText": "Խմբագրել էջագլուխը",
"DE.Views.DocumentHolder.editHyperlinkText": "Խմբագրել գերհղումը",
+ "DE.Views.DocumentHolder.eqToInlineText": "Փոխել ներտող ",
"DE.Views.DocumentHolder.guestText": "Հյուր",
"DE.Views.DocumentHolder.hyperlinkText": "Գերհղում",
"DE.Views.DocumentHolder.ignoreAllSpellText": "Անտեսել բոլորը",
@@ -1485,6 +1670,7 @@
"DE.Views.DocumentHolder.insertText": "Զետեղել",
"DE.Views.DocumentHolder.keepLinesText": "Տողերը պահել միասին ",
"DE.Views.DocumentHolder.langText": "Ընտրել լեզուն",
+ "DE.Views.DocumentHolder.latexText": "LaTeX",
"DE.Views.DocumentHolder.leftText": "Ձախ",
"DE.Views.DocumentHolder.loadSpellText": "Տարբերակների բեռնում...",
"DE.Views.DocumentHolder.mergeCellsText": "Միաձուլել վանդակները",
@@ -1672,6 +1858,7 @@
"DE.Views.DocumentHolder.txtUnderbar": "Տեքստի տակ գիծ",
"DE.Views.DocumentHolder.txtUngroup": "Ապախմբավորել",
"DE.Views.DocumentHolder.txtWarnUrl": "Այս հղմանը հետևելը կարող է վնասել ձեր սարքավորումն ու տվյալները: Վստա՞հ եք, որ ցանկանում եք շարունակել:",
+ "DE.Views.DocumentHolder.unicodeText": "Յունիկոդ",
"DE.Views.DocumentHolder.updateStyleText": "Թարմացնել %1 ոճը",
"DE.Views.DocumentHolder.vertAlignText": "Ուղղաձիգ հավասարեցում",
"DE.Views.DropcapSettingsAdvanced.strBorders": "Եզրագծեր և լցում",
@@ -1768,6 +1955,7 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Վիճակագրություն",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Նյութ",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Նշաններ",
+ "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Պիտակներ",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Վերնագիր",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Վերբեռնվել է",
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Բառեր",
@@ -2061,7 +2249,7 @@
"DE.Views.ImageSettingsAdvanced.textTextBox": "Գրվածքի տուփ",
"DE.Views.ImageSettingsAdvanced.textTitle": "Պատկեր - լրացուցիչ կարգավորումներ",
"DE.Views.ImageSettingsAdvanced.textTitleChart": "Գծապատկեր - լրացուցիչ կարգավորումներ",
- "DE.Views.ImageSettingsAdvanced.textTitleShape": "Պատկեր - լրացուցիչ կարգավորումներ",
+ "DE.Views.ImageSettingsAdvanced.textTitleShape": "Պատկեր - ընդլայնված կարգավորումներ",
"DE.Views.ImageSettingsAdvanced.textTop": "Վերև",
"DE.Views.ImageSettingsAdvanced.textTopMargin": "Վերին լուսանցք",
"DE.Views.ImageSettingsAdvanced.textVertical": "Ուղղահայաց",
@@ -2377,7 +2565,7 @@
"DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Ձախ",
"DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Ներդիրի դիրքը",
"DE.Views.ParagraphSettingsAdvanced.textTabRight": "Աջ",
- "DE.Views.ParagraphSettingsAdvanced.textTitle": "Պարբերություն- լրացուցիչ կարգավորումներ",
+ "DE.Views.ParagraphSettingsAdvanced.textTitle": "Պարբերություն- ընդլայնված կարգավորումներ",
"DE.Views.ParagraphSettingsAdvanced.textTop": "Վերև",
"DE.Views.ParagraphSettingsAdvanced.tipAll": "Սահմանել արտաքին եզրագիծը և բոլոր ներքին գծերը",
"DE.Views.ParagraphSettingsAdvanced.tipBottom": "Սահմանել միայն ստորին Եզրագիծ",
@@ -2390,12 +2578,17 @@
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Ինքնաշխատ",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Առանց եզրագծերի",
"DE.Views.ProtectDialog.textComments": "Մեկնաբանություններ",
+ "DE.Views.ProtectDialog.textForms": "Լրացվող ձևեր",
+ "DE.Views.ProtectDialog.textReview": "Հետագծված փոփոխություններ",
+ "DE.Views.ProtectDialog.textView": "Փոփոխություններ չկան (Միայն-կարդալու)",
+ "DE.Views.ProtectDialog.txtAllow": "Թույլատրել միայն այս տեսակի խմբագրումը փաստաթղթում",
"DE.Views.ProtectDialog.txtIncorrectPwd": "Հաստատման գաղտնաբառը նույնը չէ",
"DE.Views.ProtectDialog.txtOptional": "ընտրովի",
"DE.Views.ProtectDialog.txtPassword": "Գաղտնաբառ",
"DE.Views.ProtectDialog.txtProtect": "Պաշտպանել",
"DE.Views.ProtectDialog.txtRepeat": "Կրկնել գաղտնաբառը",
"DE.Views.ProtectDialog.txtTitle": "Պաշտպանել",
+ "DE.Views.ProtectDialog.txtWarning": "Զգուշացում․ գաղտնաբառը կորցնելու կամ մոռանալու դեպքում այն չի կարող վերականգնվել։Խնդրում ենք պահել այն ապահով տեղում:",
"DE.Views.RightMenu.txtChartSettings": "Գծապատկերի կարգավորումներ",
"DE.Views.RightMenu.txtFormSettings": "Ձևի կարգավորումներ",
"DE.Views.RightMenu.txtHeaderFooterSettings": "Էջագլխի և էջատակի կարգավորումներ",
@@ -2586,13 +2779,20 @@
"DE.Views.TableSettings.tipOuter": "Սահմանել միայն արտաքին եզրագիծը",
"DE.Views.TableSettings.tipRight": "Սահմանել միայն արտաքին աջ եզրագիծը",
"DE.Views.TableSettings.tipTop": "Սահմանել միայն արտաքին վերին եզրագիծը",
+ "DE.Views.TableSettings.txtGroupTable_BorderedAndLined": "Եզրագծած և Ընդգծված Աղյուսակներ",
"DE.Views.TableSettings.txtGroupTable_Custom": "Հարմարեցված",
+ "DE.Views.TableSettings.txtGroupTable_Grid": "Ցանցավոր աղյուսակներ",
+ "DE.Views.TableSettings.txtGroupTable_List": "Ցուցակային աղյուսակներ",
+ "DE.Views.TableSettings.txtGroupTable_Plain": "Պարզ աղյուսակներ",
"DE.Views.TableSettings.txtNoBorders": "Առանց եզրագծերի",
"DE.Views.TableSettings.txtTable_Accent": "Շեշտ",
+ "DE.Views.TableSettings.txtTable_Bordered": "Եզրագծած",
+ "DE.Views.TableSettings.txtTable_BorderedAndLined": "Եզրագծած և Ընդգծված",
"DE.Views.TableSettings.txtTable_Colorful": "Գունավոր",
"DE.Views.TableSettings.txtTable_Dark": "Մութ",
"DE.Views.TableSettings.txtTable_GridTable": "Ցանցային աղյուսակ",
"DE.Views.TableSettings.txtTable_Light": "Լույս",
+ "DE.Views.TableSettings.txtTable_Lined": "Գծավոր",
"DE.Views.TableSettings.txtTable_ListTable": "Ցանկի աղյուսակ",
"DE.Views.TableSettings.txtTable_PlainTable": "Պարզ աղյուսակ ",
"DE.Views.TableSettings.txtTable_TableGrid": "Աղյուսակի կետացանց",
@@ -2874,13 +3074,16 @@
"DE.Views.Toolbar.tipIncPrLeft": "Մեծացնել բացատը պարբերության սկզբում",
"DE.Views.Toolbar.tipInsertChart": "Զետեղել գծապատկեր",
"DE.Views.Toolbar.tipInsertEquation": "Դնել հավասարում",
+ "DE.Views.Toolbar.tipInsertHorizontalText": "Զետեղել հորիզոնական գրվածքի տուփ",
"DE.Views.Toolbar.tipInsertImage": "Զետեղել նկար",
"DE.Views.Toolbar.tipInsertNum": "Դնել էջի համարը",
"DE.Views.Toolbar.tipInsertShape": "Զետեղել պատկեր",
+ "DE.Views.Toolbar.tipInsertSmartArt": "Զետեղել SmartArt",
"DE.Views.Toolbar.tipInsertSymbol": "Տեղադրել նշան",
"DE.Views.Toolbar.tipInsertTable": "Դնել աղյուսակ",
"DE.Views.Toolbar.tipInsertText": "Դնել տեքստատուփ",
"DE.Views.Toolbar.tipInsertTextArt": "Դնել տեքստարվեստից",
+ "DE.Views.Toolbar.tipInsertVerticalText": "Զետեղել ուղղահայաց գրվածքի տուփ",
"DE.Views.Toolbar.tipLineNumbers": "Ցուցադրել տողերի համարները",
"DE.Views.Toolbar.tipLineSpace": "Պարբերության տողամիջոց",
"DE.Views.Toolbar.tipMailRecepients": "Փոստի միավորում",
@@ -2951,9 +3154,11 @@
"DE.Views.ViewTab.textDarkDocument": "Մուգ փաստաթուղթ",
"DE.Views.ViewTab.textFitToPage": "Հարմարեցնել էջին",
"DE.Views.ViewTab.textFitToWidth": "Լայնքով",
- "DE.Views.ViewTab.textInterfaceTheme": "Ինտերֆեյսի թեմա",
+ "DE.Views.ViewTab.textInterfaceTheme": "Ինտերֆեյսի ոճ",
+ "DE.Views.ViewTab.textLeftMenu": "Ձախ վահանակ",
"DE.Views.ViewTab.textNavigation": "Նավիգացիա",
"DE.Views.ViewTab.textOutline": "Վերնագրեր",
+ "DE.Views.ViewTab.textRightMenu": "Աջ վահանակ",
"DE.Views.ViewTab.textRulers": "Քանոններ",
"DE.Views.ViewTab.textStatusBar": "Վիճակագոտի",
"DE.Views.ViewTab.textZoom": "Խոշորացնել",
diff --git a/apps/documenteditor/main/locale/id.json b/apps/documenteditor/main/locale/id.json
index 44f1a0351..d1efce41d 100644
--- a/apps/documenteditor/main/locale/id.json
+++ b/apps/documenteditor/main/locale/id.json
@@ -125,6 +125,165 @@
"Common.define.chartData.textScatterSmoothMarker": "Diagram sebar dengan garis mulus dan marker",
"Common.define.chartData.textStock": "Diagram Garis",
"Common.define.chartData.textSurface": "Permukaan",
+ "Common.define.smartArt.textAccentedPicture": "Gambar Beraksen",
+ "Common.define.smartArt.textAccentProcess": "Proses Aksen",
+ "Common.define.smartArt.textAlternatingFlow": "Alur Bolak-Balik",
+ "Common.define.smartArt.textAlternatingHexagons": "Segi Enam Bolak-Balik",
+ "Common.define.smartArt.textAlternatingPictureBlocks": "Blok Gambar Bolak-Balik",
+ "Common.define.smartArt.textAlternatingPictureCircles": "Lingkaran Gambar Bolak-Balik",
+ "Common.define.smartArt.textArchitectureLayout": "Tata Letak Arsitektur",
+ "Common.define.smartArt.textArrowRibbon": "Pita Anak Panah",
+ "Common.define.smartArt.textAscendingPictureAccentProcess": "Proses Akses Gambar Naik",
+ "Common.define.smartArt.textBalance": "Seimbang",
+ "Common.define.smartArt.textBasicBendingProcess": "Proses Meliuk Dasar",
+ "Common.define.smartArt.textBasicBlockList": "Daftar Blok Dasar",
+ "Common.define.smartArt.textBasicChevronProcess": "Proses Chevron Dasar",
+ "Common.define.smartArt.textBasicCycle": "Lingkaran Dasar",
+ "Common.define.smartArt.textBasicMatrix": "Matriks Dasar",
+ "Common.define.smartArt.textBasicPie": "Pai Dasar",
+ "Common.define.smartArt.textBasicProcess": "Proses Dasar",
+ "Common.define.smartArt.textBasicPyramid": "Piramida Dasar",
+ "Common.define.smartArt.textBasicRadial": "Radial Dasar",
+ "Common.define.smartArt.textBasicTarget": "Target Dasar",
+ "Common.define.smartArt.textBasicTimeline": "Garis Waktu Dasar",
+ "Common.define.smartArt.textBasicVenn": "Venn Dasar",
+ "Common.define.smartArt.textBendingPictureAccentList": "Daftar Akses Gambar Meliuk",
+ "Common.define.smartArt.textBendingPictureBlocks": "Blok Gambar Meliuk",
+ "Common.define.smartArt.textBendingPictureCaption": "Keterangan Gambar Meliuk",
+ "Common.define.smartArt.textBendingPictureCaptionList": "Daftar Keterangan Gambar Meliuk",
+ "Common.define.smartArt.textBendingPictureSemiTranparentText": "Teks Semi-Transparan Gambar Meliuk",
+ "Common.define.smartArt.textBlockCycle": "Lingkaran Blok",
+ "Common.define.smartArt.textBubblePictureList": "Daftar Gambar Gelembung",
+ "Common.define.smartArt.textCaptionedPictures": "Gambar Dengan Keterangan",
+ "Common.define.smartArt.textChevronAccentProcess": "Proses Aksen Chevron",
+ "Common.define.smartArt.textChevronList": "Daftar Chevron",
+ "Common.define.smartArt.textCircleAccentTimeline": "Garis Waktu Aksen Lingkaran",
+ "Common.define.smartArt.textCircleArrowProcess": "Proses Panah Lingkaran",
+ "Common.define.smartArt.textCirclePictureHierarchy": "Hierarki Gambar Lingkaran",
+ "Common.define.smartArt.textCircleProcess": "Proses Lingkaran",
+ "Common.define.smartArt.textCircleRelationship": "Hubungan Lingkaran",
+ "Common.define.smartArt.textCircularBendingProcess": "Proses Melingkar",
+ "Common.define.smartArt.textCircularPictureCallout": "Panggilan Gambar Melingkar",
+ "Common.define.smartArt.textClosedChevronProcess": "Proses Chevron Tertutup",
+ "Common.define.smartArt.textContinuousArrowProcess": "Proses Panah Berkelanjutan",
+ "Common.define.smartArt.textContinuousBlockProcess": "Proses Blok Berkelanjutan",
+ "Common.define.smartArt.textContinuousCycle": "Siklus Berkelanjutan",
+ "Common.define.smartArt.textContinuousPictureList": "Daftar Gambar Berkelanjutan",
+ "Common.define.smartArt.textConvergingArrows": "Panah Memusat",
+ "Common.define.smartArt.textConvergingRadial": "Radial Memusat",
+ "Common.define.smartArt.textConvergingText": "Teks Memusat",
+ "Common.define.smartArt.textCounterbalanceArrows": "Panah Pengimbang",
+ "Common.define.smartArt.textCycle": "Siklus",
+ "Common.define.smartArt.textCycleMatrix": "Matriks Siklus",
+ "Common.define.smartArt.textDescendingBlockList": "Daftar Blok Turun",
+ "Common.define.smartArt.textDescendingProcess": "Proses Menurun",
+ "Common.define.smartArt.textDetailedProcess": "Proses Terperinci",
+ "Common.define.smartArt.textDivergingArrows": "Panah Menyebar",
+ "Common.define.smartArt.textDivergingRadial": "Radial Menyebar",
+ "Common.define.smartArt.textEquation": "Persamaan",
+ "Common.define.smartArt.textFramedTextPicture": "Gambar Teks Terbingkai",
+ "Common.define.smartArt.textFunnel": "Corong",
+ "Common.define.smartArt.textGear": "Gerigi",
+ "Common.define.smartArt.textGridMatrix": "Matriks Kisi",
+ "Common.define.smartArt.textGroupedList": "Daftar yang Dikelompokkan",
+ "Common.define.smartArt.textHalfCircleOrganizationChart": "Bagan Organisasi Setengah Lingkaran",
+ "Common.define.smartArt.textHexagonCluster": "Kluster Segi Enam",
+ "Common.define.smartArt.textHexagonRadial": "Radial Segi Enam",
+ "Common.define.smartArt.textHierarchy": "Hierarki",
+ "Common.define.smartArt.textHierarchyList": "Daftar Hierarki",
+ "Common.define.smartArt.textHorizontalBulletList": "Daftar Poin Horizontal",
+ "Common.define.smartArt.textHorizontalHierarchy": "Hierarki Horizontal",
+ "Common.define.smartArt.textHorizontalLabeledHierarchy": "Hierarki Berlabel Horizontal",
+ "Common.define.smartArt.textHorizontalMultiLevelHierarchy": "Hierarki Multi-Level Horizontal",
+ "Common.define.smartArt.textHorizontalOrganizationChart": "Bagan Organisasi Horizontal",
+ "Common.define.smartArt.textHorizontalPictureList": "Daftar Gambar Horizontal",
+ "Common.define.smartArt.textIncreasingArrowProcess": "Proses Panah Meningkat",
+ "Common.define.smartArt.textIncreasingCircleProcess": "Proses Lingkaran Meningkat",
+ "Common.define.smartArt.textInterconnectedBlockProcess": "Proses Blok yang Saling Terhubung",
+ "Common.define.smartArt.textInterconnectedRings": "Cincin yang Saling Terhubung",
+ "Common.define.smartArt.textInvertedPyramid": "Piramida Terbalik",
+ "Common.define.smartArt.textLabeledHierarchy": "Hierarki Berlabel",
+ "Common.define.smartArt.textLinearVenn": "Venn Linear",
+ "Common.define.smartArt.textLinedList": "Daftar Bergaris",
+ "Common.define.smartArt.textList": "Daftar",
+ "Common.define.smartArt.textMatrix": "Matriks",
+ "Common.define.smartArt.textMultidirectionalCycle": "Siklus Multiarah",
+ "Common.define.smartArt.textNameAndTitleOrganizationChart": "Bagan Organisasi Nama dan Jabatan",
+ "Common.define.smartArt.textNestedTarget": "Target Bertumpuk",
+ "Common.define.smartArt.textNondirectionalCycle": "Siklus Tanpa Arah",
+ "Common.define.smartArt.textOpposingArrows": "Panah Berlawanan",
+ "Common.define.smartArt.textOpposingIdeas": "Ide Berlawanan",
+ "Common.define.smartArt.textOrganizationChart": "Bagan Organisasi",
+ "Common.define.smartArt.textOther": "Lainnya",
+ "Common.define.smartArt.textPhasedProcess": "Proses Berfase",
+ "Common.define.smartArt.textPicture": "Gambar",
+ "Common.define.smartArt.textPictureAccentBlocks": "Blok Aksen Gambar",
+ "Common.define.smartArt.textPictureAccentList": "Daftar Aksen Gambar",
+ "Common.define.smartArt.textPictureAccentProcess": "Proses Aksen Gambar",
+ "Common.define.smartArt.textPictureCaptionList": "Daftar Keterangan Gambar",
+ "Common.define.smartArt.textPictureFrame": "PictureFrame",
+ "Common.define.smartArt.textPictureGrid": "Kisi Gambar",
+ "Common.define.smartArt.textPictureLineup": "Deretan Gambar",
+ "Common.define.smartArt.textPictureOrganizationChart": "Bagan Organisasi Gambar",
+ "Common.define.smartArt.textPictureStrips": "Jalur Gambar",
+ "Common.define.smartArt.textPieProcess": "Proses Pai",
+ "Common.define.smartArt.textPlusAndMinus": "Plus dan Minus",
+ "Common.define.smartArt.textProcess": "Proses",
+ "Common.define.smartArt.textProcessArrows": "Panah Proses",
+ "Common.define.smartArt.textProcessList": "Daftar Proses",
+ "Common.define.smartArt.textPyramid": "Piramida",
+ "Common.define.smartArt.textPyramidList": "Daftar Piramida",
+ "Common.define.smartArt.textRadialCluster": "Kluster Radial",
+ "Common.define.smartArt.textRadialCycle": "Siklus Radial",
+ "Common.define.smartArt.textRadialList": "Daftar Radial",
+ "Common.define.smartArt.textRadialPictureList": "Daftar Gambar Radial",
+ "Common.define.smartArt.textRadialVenn": "Venn Radial",
+ "Common.define.smartArt.textRandomToResultProcess": "Proses Acak ke Hasil",
+ "Common.define.smartArt.textRelationship": "Hubungan",
+ "Common.define.smartArt.textRepeatingBendingProcess": "Proses Pengarahan Berulang",
+ "Common.define.smartArt.textReverseList": "Daftar Terbalik",
+ "Common.define.smartArt.textSegmentedCycle": "Siklus Bersegmen",
+ "Common.define.smartArt.textSegmentedProcess": "Proses Bersegmen",
+ "Common.define.smartArt.textSegmentedPyramid": "Piramida Bersegmen",
+ "Common.define.smartArt.textSnapshotPictureList": "Daftar Gambar Snapshot",
+ "Common.define.smartArt.textSpiralPicture": "Gambar Spiral",
+ "Common.define.smartArt.textSquareAccentList": "Daftar Aksen Persegi",
+ "Common.define.smartArt.textStackedList": "Daftar Bertumpuk",
+ "Common.define.smartArt.textStackedVenn": "Venn Bertumpuk",
+ "Common.define.smartArt.textStaggeredProcess": "Proses Pengaturan",
+ "Common.define.smartArt.textStepDownProcess": "Proses Mundur",
+ "Common.define.smartArt.textStepUpProcess": "Proses Meningkat",
+ "Common.define.smartArt.textSubStepProcess": "Proses Sub-Langkah",
+ "Common.define.smartArt.textTabbedArc": "Busur Bertab",
+ "Common.define.smartArt.textTableHierarchy": "Hierarki Tabel",
+ "Common.define.smartArt.textTableList": "Daftar Tabel",
+ "Common.define.smartArt.textTabList": "Daftar Tab",
+ "Common.define.smartArt.textTargetList": "Daftar Target",
+ "Common.define.smartArt.textTextCycle": "Siklus Teks",
+ "Common.define.smartArt.textThemePictureAccent": "Aksen Gambar Tema",
+ "Common.define.smartArt.textThemePictureAlternatingAccent": "Aksen Bolak-Balik Gambar Tema",
+ "Common.define.smartArt.textThemePictureGrid": "Kisi Gambar Tema",
+ "Common.define.smartArt.textTitledMatrix": "Matriks Berjudul",
+ "Common.define.smartArt.textTitledPictureAccentList": "Daftar Aksen Gambar Berjudul",
+ "Common.define.smartArt.textTitledPictureBlocks": "Blok Gambar Berjudul",
+ "Common.define.smartArt.textTitlePictureLineup": "Deretan Gambar Judul",
+ "Common.define.smartArt.textTrapezoidList": "Daftar Trapesium",
+ "Common.define.smartArt.textUpwardArrow": "Panah ke Atas",
+ "Common.define.smartArt.textVaryingWidthList": "Daftar dengan Lebar Bervariasi",
+ "Common.define.smartArt.textVerticalAccentList": "Daftar Aksen Vertikal",
+ "Common.define.smartArt.textVerticalArrowList": "Daftar Panah Vertikal",
+ "Common.define.smartArt.textVerticalBendingProcess": "Arah Proses Vertikal",
+ "Common.define.smartArt.textVerticalBlockList": "Daftar Blok Vertikal",
+ "Common.define.smartArt.textVerticalBoxList": "Daftar Kotak Vertikal",
+ "Common.define.smartArt.textVerticalBracketList": "Daftar Tanda Kurung Vertikal",
+ "Common.define.smartArt.textVerticalBulletList": "Daftar Poin Vertikal",
+ "Common.define.smartArt.textVerticalChevronList": "Daftar Chevron Vertikal",
+ "Common.define.smartArt.textVerticalCircleList": "Daftar Lingkaran Vertikal",
+ "Common.define.smartArt.textVerticalCurvedList": "Daftar Kurva Vertikal",
+ "Common.define.smartArt.textVerticalEquation": "Persamaan Vertikal",
+ "Common.define.smartArt.textVerticalPictureAccentList": "Daftar Aksen Gambar Vertikal",
+ "Common.define.smartArt.textVerticalPictureList": "Daftar Gambar Vertikal",
+ "Common.define.smartArt.textVerticalProcess": "Proses Vertikal",
"Common.Translation.textMoreButton": "Lainnya",
"Common.Translation.warnFileLocked": "Anda tidak bisa edit file ini karena sedang di edit di aplikasi lain.",
"Common.Translation.warnFileLockedBtnEdit": "Buat salinan",
@@ -184,12 +343,12 @@
"Common.UI.SearchDialog.textMatchCase": "Harus sama persis",
"Common.UI.SearchDialog.textReplaceDef": "Tuliskan teks pengganti",
"Common.UI.SearchDialog.textSearchStart": "Tuliskan teks Anda di sini",
- "Common.UI.SearchDialog.textTitle": "Cari dan Ganti",
+ "Common.UI.SearchDialog.textTitle": "Cari dan ganti",
"Common.UI.SearchDialog.textTitle2": "Cari",
"Common.UI.SearchDialog.textWholeWords": "Seluruh kata saja",
"Common.UI.SearchDialog.txtBtnHideReplace": "Sembunyikan Replace",
"Common.UI.SearchDialog.txtBtnReplace": "Ganti",
- "Common.UI.SearchDialog.txtBtnReplaceAll": "Ganti Semua",
+ "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.textRecentColors": "Warna Terakhir",
@@ -223,7 +382,7 @@
"Common.Views.About.txtTel": "tel: ",
"Common.Views.About.txtVersion": "Versi ",
"Common.Views.AutoCorrectDialog.textAdd": "Tambahkan",
- "Common.Views.AutoCorrectDialog.textApplyText": "Terapkan Sesuai yang Anda Tulis",
+ "Common.Views.AutoCorrectDialog.textApplyText": "Terapkan sambil Anda menulis",
"Common.Views.AutoCorrectDialog.textAutoCorrect": "AutoKoreksi Teks",
"Common.Views.AutoCorrectDialog.textAutoFormat": "AutoFormat Sesuai yang Anda Mau",
"Common.Views.AutoCorrectDialog.textBulleted": "Butir list otomatis",
@@ -237,10 +396,10 @@
"Common.Views.AutoCorrectDialog.textMathCorrect": "AutoCorrect Matematika",
"Common.Views.AutoCorrectDialog.textNumbered": "Penomoran list otomatis",
"Common.Views.AutoCorrectDialog.textQuotes": "\"Straight quotes\" dengan \"smart quotes\"",
- "Common.Views.AutoCorrectDialog.textRecognized": "Fungsi yang Diterima",
+ "Common.Views.AutoCorrectDialog.textRecognized": "Fungsi yang dikenali",
"Common.Views.AutoCorrectDialog.textRecognizedDesc": "Ekspresi ini merupakan ekspresi matematika. Ekspresi ini tidak akan dimiringkan secara otomatis.",
"Common.Views.AutoCorrectDialog.textReplace": "Ganti",
- "Common.Views.AutoCorrectDialog.textReplaceText": "Ganti Saat Anda Mengetik",
+ "Common.Views.AutoCorrectDialog.textReplaceText": "Ganti sambil Anda mengetik",
"Common.Views.AutoCorrectDialog.textReplaceType": "Ganti teks saat Anda mengetik",
"Common.Views.AutoCorrectDialog.textReset": "Atur ulang",
"Common.Views.AutoCorrectDialog.textResetAll": "Atur ulang kembali ke awal",
@@ -260,8 +419,8 @@
"Common.Views.Comments.mniPositionAsc": "Dari atas",
"Common.Views.Comments.mniPositionDesc": "Dari bawah",
"Common.Views.Comments.textAdd": "Tambahkan",
- "Common.Views.Comments.textAddComment": "Tambahkan Komentar",
- "Common.Views.Comments.textAddCommentToDoc": "Tambahkan Komentar untuk Dokumen",
+ "Common.Views.Comments.textAddComment": "Tambahkan komentar",
+ "Common.Views.Comments.textAddCommentToDoc": "Tambahkan Komentar untuk dokumen",
"Common.Views.Comments.textAddReply": "Tambahkan Balasan",
"Common.Views.Comments.textAll": "Semua",
"Common.Views.Comments.textAnonym": "Tamu",
@@ -281,12 +440,12 @@
"Common.Views.Comments.txtEmpty": "Tidak ada komentar pada dokumen.",
"Common.Views.CopyWarningDialog.textDontShow": "Jangan tampilkan pesan ini lagi",
"Common.Views.CopyWarningDialog.textMsg": "Langkah salin, potong dan tempel menggunakan tombol editor toolbar dan menu konteks dapat dilakukan hanya dengan tab editor ni saja.
Untuk menyalin atau menempel ke atau dari aplikasi di luar tab editor, gunakan kombinasi tombol keyboard berikut ini:",
- "Common.Views.CopyWarningDialog.textTitle": "Salin, Potong dan Tempel",
+ "Common.Views.CopyWarningDialog.textTitle": "Aksi Salin, Potong, dan Tempel",
"Common.Views.CopyWarningDialog.textToCopy": "untuk Salin",
"Common.Views.CopyWarningDialog.textToCut": "untuk Potong",
"Common.Views.CopyWarningDialog.textToPaste": "untuk Tempel",
"Common.Views.DocumentAccessDialog.textLoading": "Memuat...",
- "Common.Views.DocumentAccessDialog.textTitle": "Pengaturan Berbagi",
+ "Common.Views.DocumentAccessDialog.textTitle": "Pengaturan berbagi",
"Common.Views.ExternalDiagramEditor.textTitle": "Editor Bagan",
"Common.Views.ExternalEditor.textClose": "Tutup",
"Common.Views.ExternalEditor.textSave": "Simpan & Keluar",
@@ -326,14 +485,14 @@
"Common.Views.ImageFromUrlDialog.txtEmpty": "Kolom ini harus diisi",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Bagian ini harus berupa URL dengn format \"http://www.contoh.com\"",
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Anda harus menentukan baris dan jumlah kolom yang benar.",
- "Common.Views.InsertTableDialog.txtColumns": "Jumlah Kolom",
+ "Common.Views.InsertTableDialog.txtColumns": "Jumlah kolom",
"Common.Views.InsertTableDialog.txtMaxText": "Input maksimal untuk kolom ini adalah {0}.",
"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.InsertTableDialog.txtRows": "Jumlah baris",
+ "Common.Views.InsertTableDialog.txtTitle": "Ukuran tabel",
+ "Common.Views.InsertTableDialog.txtTitleSplit": "Belah sel",
"Common.Views.LanguageDialog.labelSelect": "Pilih bahasa dokumen",
- "Common.Views.OpenDialog.closeButtonText": "Tutup File",
+ "Common.Views.OpenDialog.closeButtonText": "Tutup file",
"Common.Views.OpenDialog.txtEncoding": "Enkoding ",
"Common.Views.OpenDialog.txtIncorrectPwd": "Password salah.",
"Common.Views.OpenDialog.txtOpenFile": "Masukkan kata sandi untuk buka file",
@@ -341,7 +500,7 @@
"Common.Views.OpenDialog.txtPreview": "Pratinjau",
"Common.Views.OpenDialog.txtProtected": "Jika Anda memasukkan password dan membuka file, password file saat ini akan di reset.",
"Common.Views.OpenDialog.txtTitle": "Pilih %1 opsi",
- "Common.Views.OpenDialog.txtTitleProtected": "File yang Diproteksi",
+ "Common.Views.OpenDialog.txtTitleProtected": "File yang diproteksi",
"Common.Views.PasswordDialog.txtDescription": "Buat password untuk melindungi dokumen ini",
"Common.Views.PasswordDialog.txtIncorrectPwd": "Password konfirmasi tidak sama",
"Common.Views.PasswordDialog.txtPassword": "Kata Sandi",
@@ -417,7 +576,7 @@
"Common.Views.ReviewChanges.txtEditing": "Editing",
"Common.Views.ReviewChanges.txtFinal": "Semua perubahan diterima {0}",
"Common.Views.ReviewChanges.txtFinalCap": "Final",
- "Common.Views.ReviewChanges.txtHistory": "Riwayat Versi",
+ "Common.Views.ReviewChanges.txtHistory": "Riwayat versi",
"Common.Views.ReviewChanges.txtMarkup": "Semua perubahan {0}",
"Common.Views.ReviewChanges.txtMarkupCap": "Markup dan balon",
"Common.Views.ReviewChanges.txtMarkupSimple": "Semua perubahan {0} Tanpa balloons",
@@ -439,15 +598,15 @@
"Common.Views.ReviewChanges.txtSpelling": "Periksa Ejaan",
"Common.Views.ReviewChanges.txtTurnon": "Lacak Perubahan",
"Common.Views.ReviewChanges.txtView": "Mode Tampilan",
- "Common.Views.ReviewChangesDialog.textTitle": "Review Perubahan",
+ "Common.Views.ReviewChangesDialog.textTitle": "Tinjau perubahan",
"Common.Views.ReviewChangesDialog.txtAccept": "Terima",
"Common.Views.ReviewChangesDialog.txtAcceptAll": "Terima semua perubahan",
- "Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Terima Perubahan Saat Ini",
+ "Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Terima perubahan saat ini",
"Common.Views.ReviewChangesDialog.txtNext": "Ke perubahan berikutnya",
"Common.Views.ReviewChangesDialog.txtPrev": "Ke perubahan sebelumnya",
"Common.Views.ReviewChangesDialog.txtReject": "Tolak",
- "Common.Views.ReviewChangesDialog.txtRejectAll": "Tolak Semua Perubahan",
- "Common.Views.ReviewChangesDialog.txtRejectCurrent": "Tolak Perubahan Saat Ini",
+ "Common.Views.ReviewChangesDialog.txtRejectAll": "Tolak semua perubahan",
+ "Common.Views.ReviewChangesDialog.txtRejectCurrent": "Tolak perubahan saat ini",
"Common.Views.ReviewPopover.textAdd": "Tambahkan",
"Common.Views.ReviewPopover.textAddReply": "Tambahkan Balasan",
"Common.Views.ReviewPopover.textCancel": "Batalkan",
@@ -494,13 +653,13 @@
"Common.Views.SignDialog.textNameError": "Nama penandatangan tidak boleh kosong.",
"Common.Views.SignDialog.textPurpose": "Tujuan menandatangani dokumen ini",
"Common.Views.SignDialog.textSelect": "Pilih",
- "Common.Views.SignDialog.textSelectImage": "Pilih Gambar",
+ "Common.Views.SignDialog.textSelectImage": "Pilih gambar",
"Common.Views.SignDialog.textSignature": "Tandatangan terlihat seperti",
- "Common.Views.SignDialog.textTitle": "Tanda Tangan Dokumen",
+ "Common.Views.SignDialog.textTitle": "Tanda tangani dokumen",
"Common.Views.SignDialog.textUseImage": "atau klik 'Pilih Gambar' untuk menjadikan gambar sebagai tandatangan",
"Common.Views.SignDialog.textValid": "Valid dari %1 sampai %2",
- "Common.Views.SignDialog.tipFontName": "Nama Font",
- "Common.Views.SignDialog.tipFontSize": "Ukuran Huruf",
+ "Common.Views.SignDialog.tipFontName": "Nama font",
+ "Common.Views.SignDialog.tipFontSize": "Ukuran font",
"Common.Views.SignSettingsDialog.textAllowComment": "Izinkan penandatangan untuk menambahkan komentar di dialog tanda tangan",
"Common.Views.SignSettingsDialog.textDefInstruction": "Sebelum menandatangani dokumen ini, pastikan konten yang akan Anda tanda tangani sudah benar.",
"Common.Views.SignSettingsDialog.textInfoEmail": "E-mail penandatangan yang disarankan",
@@ -508,35 +667,35 @@
"Common.Views.SignSettingsDialog.textInfoTitle": "Gelar penandatangan yang disarankan",
"Common.Views.SignSettingsDialog.textInstructions": "Instruksi untuk penandatangan",
"Common.Views.SignSettingsDialog.textShowDate": "Tampilkan tanggal di garis tandatangan",
- "Common.Views.SignSettingsDialog.textTitle": "Setup Tanda Tangan",
+ "Common.Views.SignSettingsDialog.textTitle": "Penyiapan tanda tangan",
"Common.Views.SignSettingsDialog.txtEmpty": "Area ini dibutuhkan",
"Common.Views.SymbolTableDialog.textCharacter": "Karakter",
"Common.Views.SymbolTableDialog.textCode": "Nilai Unicode HEX",
- "Common.Views.SymbolTableDialog.textCopyright": "Copyright Sign",
- "Common.Views.SymbolTableDialog.textDCQuote": "Kutip Dua Penutup",
- "Common.Views.SymbolTableDialog.textDOQuote": "Kutip Dua Pembuka",
- "Common.Views.SymbolTableDialog.textEllipsis": "Ellipsis Horizontal",
- "Common.Views.SymbolTableDialog.textEmDash": "Em Dash",
- "Common.Views.SymbolTableDialog.textEmSpace": "Em Space",
- "Common.Views.SymbolTableDialog.textEnDash": "En Dash",
- "Common.Views.SymbolTableDialog.textEnSpace": "En Space",
+ "Common.Views.SymbolTableDialog.textCopyright": "Tanda hak cipta",
+ "Common.Views.SymbolTableDialog.textDCQuote": "Kutip ganda penutup",
+ "Common.Views.SymbolTableDialog.textDOQuote": "Kutip ganda pembuka",
+ "Common.Views.SymbolTableDialog.textEllipsis": "Ellipsis horizontal",
+ "Common.Views.SymbolTableDialog.textEmDash": "Em dash",
+ "Common.Views.SymbolTableDialog.textEmSpace": "Em space",
+ "Common.Views.SymbolTableDialog.textEnDash": "En dash",
+ "Common.Views.SymbolTableDialog.textEnSpace": "En space",
"Common.Views.SymbolTableDialog.textFont": "Huruf",
- "Common.Views.SymbolTableDialog.textNBHyphen": "Hyphen Non-breaking",
- "Common.Views.SymbolTableDialog.textNBSpace": "Spasi Tanpa-break",
+ "Common.Views.SymbolTableDialog.textNBHyphen": "Tanda sambung tak-putus",
+ "Common.Views.SymbolTableDialog.textNBSpace": "Spasi tak-putus",
"Common.Views.SymbolTableDialog.textPilcrow": "Simbol Pilcrow",
"Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Em Space",
"Common.Views.SymbolTableDialog.textRange": "Rentang",
"Common.Views.SymbolTableDialog.textRecent": "Simbol yang baru digunakan",
- "Common.Views.SymbolTableDialog.textRegistered": "Tandatangan Teregistrasi",
- "Common.Views.SymbolTableDialog.textSCQuote": "Kutip Satu Penutup",
- "Common.Views.SymbolTableDialog.textSection": "Sesi Tandatangan",
- "Common.Views.SymbolTableDialog.textShortcut": "Kunci Shortcut",
- "Common.Views.SymbolTableDialog.textSHyphen": "Soft Hyphen",
- "Common.Views.SymbolTableDialog.textSOQuote": "Kutip Satu Pembuka",
+ "Common.Views.SymbolTableDialog.textRegistered": "Tanda terdaftar",
+ "Common.Views.SymbolTableDialog.textSCQuote": "Kutip tunggal penutup",
+ "Common.Views.SymbolTableDialog.textSection": "Tanda seksi",
+ "Common.Views.SymbolTableDialog.textShortcut": "Tombol pintasan",
+ "Common.Views.SymbolTableDialog.textSHyphen": "Tanda hubung lunak",
+ "Common.Views.SymbolTableDialog.textSOQuote": "Kutip tunggal pembuka",
"Common.Views.SymbolTableDialog.textSpecial": "Karakter khusus",
"Common.Views.SymbolTableDialog.textSymbols": "Simbol",
"Common.Views.SymbolTableDialog.textTitle": "Simbol",
- "Common.Views.SymbolTableDialog.textTradeMark": "Simbol Trademark ",
+ "Common.Views.SymbolTableDialog.textTradeMark": "Simbol merk dagang ",
"Common.Views.UserNameDialog.textDontShow": "Jangan tanya saya lagi",
"Common.Views.UserNameDialog.textLabel": "Label:",
"Common.Views.UserNameDialog.textLabelError": "Label tidak boleh kosong.",
@@ -556,6 +715,7 @@
"DE.Controllers.LeftMenu.warnReplaceString": "{0} bukan karakter khusus yang valid untuk bidang penggantian.",
"DE.Controllers.Main.applyChangesTextText": "Memuat perubahan...",
"DE.Controllers.Main.applyChangesTitleText": "Memuat Perubahan",
+ "DE.Controllers.Main.confirmMaxChangesSize": "Ukuran tindakan melebihi batas yang ditetapkan untuk server Anda. Tekan \"Batalkan\" untuk membatalkan tindakan terakhir Anda atau tekan \"Lanjutkan\" untuk menyimpan tindakan secara lokal (Anda perlu mengunduh file atau menyalin isinya untuk memastikan tidak ada yang hilang).",
"DE.Controllers.Main.convertationTimeoutText": "Waktu konversi habis.",
"DE.Controllers.Main.criticalErrorExtText": "Tekan \"OK\" untuk kembali ke daftar dokumen.",
"DE.Controllers.Main.criticalErrorTitle": "Kesalahan",
@@ -582,6 +742,11 @@
"DE.Controllers.Main.errorFilePassProtect": "Dokumen dilindungi dengan kata sandi dan tidak dapat dibuka.",
"DE.Controllers.Main.errorFileSizeExceed": "Ukuran file melewati batas server Anda. Silakan hubungi admin Server Dokumen Anda untuk detail.",
"DE.Controllers.Main.errorForceSave": "Ada kesalahan saat menyimpan file. Silakan gunakan opsi 'Unduh sebagai' untuk menyimpan file ke komputer Anda dan coba lagi.",
+ "DE.Controllers.Main.errorInconsistentExt": "Terjadi kesalahan saat membuka file. Isi file tidak cocok dengan ekstensi file.",
+ "DE.Controllers.Main.errorInconsistentExtDocx": "Terjadi kesalahan saat membuka file. Isi file berhubungan dengan dokumen teks (mis. docx), tapi file memiliki ekstensi yang tidak konsisten: %1.",
+ "DE.Controllers.Main.errorInconsistentExtPdf": "Sebuah kesalahan terjadi ketika membuka file. Isi file berhubungan dengan satu dari format berikut: pdf/djvu/xps/oxps, tapi file memiliki ekstensi yang tidak konsisten: %1.",
+ "DE.Controllers.Main.errorInconsistentExtPptx": "Terjadi kesalahan saat membuka file. Isi file berhubungan dengan presentasi (mis. pptx), tapi file memiliki ekstensi yang tidak konsisten: %1.",
+ "DE.Controllers.Main.errorInconsistentExtXlsx": "Terjadi kesalahan saat membuka file. Isi file berhubungan dengan spreadsheet (mis. xlsx), tapi file memiliki ekstensi yang tidak konsisten: %1.",
"DE.Controllers.Main.errorKeyEncrypt": "Deskriptor kunci tidak dikenal",
"DE.Controllers.Main.errorKeyExpire": "Deskriptor kunci tidak berfungsi",
"DE.Controllers.Main.errorLoadingFont": "Font tidak bisa dimuat. Silakan kontak admin Server Dokumen Anda.",
@@ -628,7 +793,7 @@
"DE.Controllers.Main.reloadButtonText": "Muat Ulang Halaman",
"DE.Controllers.Main.requestEditFailedMessageText": "Saat ini dokumen sedang diedit. Silakan coba beberapa saat lagi.",
"DE.Controllers.Main.requestEditFailedTitleText": "Akses ditolak",
- "DE.Controllers.Main.saveErrorText": "Eror ketika menyimpan file.",
+ "DE.Controllers.Main.saveErrorText": "Terjadi kesalahan ketika menyimpan file.",
"DE.Controllers.Main.saveErrorTextDesktop": "File tidak bisa disimpan atau dibuat. Alasan yang mungkin adalah: 1. File hanya bisa dibaca. 2. File sedang diedit user lain. 3. Memori penuh atau terkorupsi.",
"DE.Controllers.Main.saveTextText": "Menyimpan dokumen...",
"DE.Controllers.Main.saveTitleText": "Menyimpan Dokumen",
@@ -645,6 +810,7 @@
"DE.Controllers.Main.textClose": "Tutup",
"DE.Controllers.Main.textCloseTip": "Klik untuk menutup tips",
"DE.Controllers.Main.textContactUs": "Hubungi sales",
+ "DE.Controllers.Main.textContinue": "Lanjutkan",
"DE.Controllers.Main.textConvertEquation": "Persamaan ini dibuat dengan editor persamaan versi lama yang sudah tidak didukung. Untuk edit, konversikan persamaan ke format Office Math ML. Konversi sekarang?",
"DE.Controllers.Main.textCustomLoader": "Perlu diketahui bahwa berdasarkan syarat dari lisensi, Anda tidak bisa untuk mengganti loader. Silakan hubungi Departemen Penjualan kami untuk mendapatkan harga.",
"DE.Controllers.Main.textDisconnect": "Koneksi terputus",
@@ -665,6 +831,7 @@
"DE.Controllers.Main.textStrict": "Mode strict",
"DE.Controllers.Main.textTryUndoRedo": "Fungsi Undo/Redo dinonaktifkan untuk mode Co-editing Cepat. Klik tombol 'Mode strict' untuk mengganti ke Mode Strict Co-editing untuk edit file tanpa gangguan dari user lain dan kirim perubahan Anda hanya setelah Anda menyimpannya. Anda bisa mengganti mode co-editing menggunakan editor di pengaturan lanjut.",
"DE.Controllers.Main.textTryUndoRedoWarn": "Fungsi Undo/Redo dinonaktifkan untuk mode Co-editing Cepat.",
+ "DE.Controllers.Main.textUndo": "Batalkan",
"DE.Controllers.Main.titleLicenseExp": "Lisensi kadaluwarsa",
"DE.Controllers.Main.titleServerVersion": "Editor mengupdate",
"DE.Controllers.Main.titleUpdateVersion": "Versi telah diubah",
@@ -826,7 +993,7 @@
"DE.Controllers.Main.txtShape_mathNotEqual": "Tidak Sama",
"DE.Controllers.Main.txtShape_mathPlus": "Plus",
"DE.Controllers.Main.txtShape_moon": "Bulan",
- "DE.Controllers.Main.txtShape_noSmoking": "\"No\" simbol",
+ "DE.Controllers.Main.txtShape_noSmoking": "Simbol \"Tidak\"",
"DE.Controllers.Main.txtShape_notchedRightArrow": "Panah Takik Kanan",
"DE.Controllers.Main.txtShape_octagon": "Oktagon",
"DE.Controllers.Main.txtShape_parallelogram": "Parallelogram",
@@ -913,7 +1080,7 @@
"DE.Controllers.Main.txtYAxis": "Sumbu Y",
"DE.Controllers.Main.txtZeroDivide": "Pembagi Nol",
"DE.Controllers.Main.unknownErrorText": "Kesalahan tidak diketahui.",
- "DE.Controllers.Main.unsupportedBrowserErrorText": "Peramban kamu tidak didukung.",
+ "DE.Controllers.Main.unsupportedBrowserErrorText": "Peramban Anda tidak didukung.",
"DE.Controllers.Main.uploadDocExtMessage": "Format dokumen tidak diketahui.",
"DE.Controllers.Main.uploadDocFileCountMessage": "Tidak ada dokumen yang diupload.",
"DE.Controllers.Main.uploadDocSizeMessage": "Batas ukuran maksimum dokumen terlampaui.",
@@ -924,9 +1091,9 @@
"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.warnBrowserZoom": "Pengaturan pembesaran tampilan pada peramban Anda saat ini tidak didukung sepenuhnya. Silakan atur ulang ke pembesaran standar dengan menekan Ctrl+0.",
"DE.Controllers.Main.warnLicenseExceeded": "Anda sudah mencapai batas untuk koneksi bersamaan ke %1 editor. Dokumen ini akan dibuka untuk dilihat saja. Hubungi admin Anda untuk mempelajari lebih lanjut.",
- "DE.Controllers.Main.warnLicenseExp": "Lisensi Anda sudah kadaluwarsa. Silakan update lisensi Anda dan muat ulang halaman.",
+ "DE.Controllers.Main.warnLicenseExp": "Lisensi Anda sudah kedaluwarsa. Silakan perbarui lisensi Anda dan segarkan halaman.",
"DE.Controllers.Main.warnLicenseLimitedNoAccess": "Lisensi kadaluwarsa. Anda tidak memiliki akses untuk editing dokumen secara keseluruhan. Silakan hubungi admin Anda.",
"DE.Controllers.Main.warnLicenseLimitedRenewed": "Lisensi perlu diperbaharui. Anda memiliki akses terbatas untuk edit dokumen. Silakan hubungi admin Anda untuk mendapatkan akses penuh",
"DE.Controllers.Main.warnLicenseUsersExceeded": "Anda sudah mencapai batas user untuk %1 editor. Hubungi admin Anda untuk mempelajari lebih lanjut.",
@@ -952,7 +1119,7 @@
"DE.Controllers.Toolbar.textAccent": "Aksen",
"DE.Controllers.Toolbar.textBracket": "Tanda Kurung",
"DE.Controllers.Toolbar.textEmptyImgUrl": "Anda harus menentukan URL gambar.",
- "DE.Controllers.Toolbar.textEmptyMMergeUrl": "Anda perlu melengkapkan URL.",
+ "DE.Controllers.Toolbar.textEmptyMMergeUrl": "Anda perlu menyatakan URL.",
"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",
@@ -976,7 +1143,7 @@
"DE.Controllers.Toolbar.txtAccent_Bar": "Palang",
"DE.Controllers.Toolbar.txtAccent_BarBot": "Underbar",
"DE.Controllers.Toolbar.txtAccent_BarTop": "Garis Atas",
- "DE.Controllers.Toolbar.txtAccent_BorderBox": "Kotak Formula (Dengan Placeholder)",
+ "DE.Controllers.Toolbar.txtAccent_BorderBox": "Rumus berkotak (dengan placeholder)",
"DE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Kotak Formula(Contoh)",
"DE.Controllers.Toolbar.txtAccent_Check": "Periksa",
"DE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Underbrace",
@@ -997,12 +1164,12 @@
"DE.Controllers.Toolbar.txtAccent_Smile": "Prosodi",
"DE.Controllers.Toolbar.txtAccent_Tilde": "Tilde",
"DE.Controllers.Toolbar.txtBracket_Angle": "Tanda Kurung",
- "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Tanda Kurung dengan Pemisah",
- "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Tanda Kurung dengan Pemisah",
+ "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Tanda kurung dengan pemisah",
+ "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Tanda kurung dengan pemisah",
"DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Kurung Kurawal Single",
"DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Kurung Kurawal Single",
"DE.Controllers.Toolbar.txtBracket_Curve": "Tanda Kurung",
- "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Tanda Kurung dengan Pemisah",
+ "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Tanda kurung dengan pemisah",
"DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Kurung Kurawal Single",
"DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Kurung Kurawal Single",
"DE.Controllers.Toolbar.txtBracket_Custom_1": "Kasus (Dua Kondisi)",
@@ -1010,8 +1177,8 @@
"DE.Controllers.Toolbar.txtBracket_Custom_3": "Tumpuk objek",
"DE.Controllers.Toolbar.txtBracket_Custom_4": "Tumpuk objek",
"DE.Controllers.Toolbar.txtBracket_Custom_5": "Contoh Kasus",
- "DE.Controllers.Toolbar.txtBracket_Custom_6": "Koefisien Binomial",
- "DE.Controllers.Toolbar.txtBracket_Custom_7": "Koefisien Binomial",
+ "DE.Controllers.Toolbar.txtBracket_Custom_6": "Koefisien binomial",
+ "DE.Controllers.Toolbar.txtBracket_Custom_7": "Koefisien binomial",
"DE.Controllers.Toolbar.txtBracket_Line": "Tanda Kurung",
"DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Kurung Kurawal Single",
"DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Kurung Kurawal Single",
@@ -1022,7 +1189,7 @@
"DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Kurung Kurawal Single",
"DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Kurung Kurawal Single",
"DE.Controllers.Toolbar.txtBracket_Round": "Tanda Kurung",
- "DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Tanda Kurung dengan Pemisah",
+ "DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Tanda kurung dengan pemisah",
"DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Kurung Kurawal Single",
"DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Kurung Kurawal Single",
"DE.Controllers.Toolbar.txtBracket_Square": "Tanda Kurung",
@@ -1144,28 +1311,28 @@
"DE.Controllers.Toolbar.txtLimitLog_Min": "Minimum",
"DE.Controllers.Toolbar.txtMarginsH": "Margin atas dan bawah terlalu jauh untuk halaman setinggi ini",
"DE.Controllers.Toolbar.txtMarginsW": "Margin kiri dan kanan terlalu besar dengan lebar halaman yang ada",
- "DE.Controllers.Toolbar.txtMatrix_1_2": "1x2 Matriks Kosong",
- "DE.Controllers.Toolbar.txtMatrix_1_3": "1x3 Matriks Kosong",
- "DE.Controllers.Toolbar.txtMatrix_2_1": "2x1 Matriks Kosong",
- "DE.Controllers.Toolbar.txtMatrix_2_2": "2x2 Matriks Kosong",
+ "DE.Controllers.Toolbar.txtMatrix_1_2": "matriks kosong 1x2",
+ "DE.Controllers.Toolbar.txtMatrix_1_3": "matriks kosong 1x3",
+ "DE.Controllers.Toolbar.txtMatrix_2_1": "matriks kosong 2x1",
+ "DE.Controllers.Toolbar.txtMatrix_2_2": "matriks kosong 2x2",
"DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Matriks Kosong dengan Tanda Kurung",
"DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Matriks Kosong dengan Tanda Kurung",
"DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Matriks Kosong dengan Tanda Kurung",
"DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Matriks Kosong dengan Tanda Kurung",
- "DE.Controllers.Toolbar.txtMatrix_2_3": "2x3 Matriks Kosong",
- "DE.Controllers.Toolbar.txtMatrix_3_1": "3x1 Matriks Kosong",
- "DE.Controllers.Toolbar.txtMatrix_3_2": "3x2 Matriks Kosong",
- "DE.Controllers.Toolbar.txtMatrix_3_3": "3x3 Matriks Kosong",
- "DE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Titik Bawah",
+ "DE.Controllers.Toolbar.txtMatrix_2_3": "matriks kosong 2x3",
+ "DE.Controllers.Toolbar.txtMatrix_3_1": "matriks kosong 3x1",
+ "DE.Controllers.Toolbar.txtMatrix_3_2": "matriks kosong 3x2",
+ "DE.Controllers.Toolbar.txtMatrix_3_3": "matriks kosong 3x3",
+ "DE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Titik garis dasar",
"DE.Controllers.Toolbar.txtMatrix_Dots_Center": "Titik Tengah",
"DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Titik Diagonal",
"DE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Titik Vertikal",
"DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Sparse Matrix",
"DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Sparse Matrix",
- "DE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 Matriks Identitas",
- "DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 Matriks Identitas",
- "DE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 Matriks Identitas",
- "DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 Matriks Identitas",
+ "DE.Controllers.Toolbar.txtMatrix_Identity_2": "matriks identitas 2x2",
+ "DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "matriks identitas 3x3",
+ "DE.Controllers.Toolbar.txtMatrix_Identity_3": "matriks identitas 3x3",
+ "DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "matriks identitas 3x3",
"DE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Tanda Panah Kanan-Kiri Bawah",
"DE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Tanda Panah Kanan-Kiri Atas",
"DE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Panah Kiri Bawah",
@@ -1206,16 +1373,16 @@
"DE.Controllers.Toolbar.txtSymbol_aleph": "Alef",
"DE.Controllers.Toolbar.txtSymbol_alpha": "Alfa",
"DE.Controllers.Toolbar.txtSymbol_approx": "Setara Dengan",
- "DE.Controllers.Toolbar.txtSymbol_ast": "Operator Tanda Bintang",
+ "DE.Controllers.Toolbar.txtSymbol_ast": "Operator tanda bintang",
"DE.Controllers.Toolbar.txtSymbol_beta": "Beta",
"DE.Controllers.Toolbar.txtSymbol_beth": "Taruhan",
- "DE.Controllers.Toolbar.txtSymbol_bullet": "Operator Butir",
+ "DE.Controllers.Toolbar.txtSymbol_bullet": "Operator butir",
"DE.Controllers.Toolbar.txtSymbol_cap": "Perpotongan",
"DE.Controllers.Toolbar.txtSymbol_cbrt": "Akar Pangkat Tiga",
"DE.Controllers.Toolbar.txtSymbol_cdots": "Elipsis Tengah Horisontal",
"DE.Controllers.Toolbar.txtSymbol_celsius": "Derajat Celcius",
"DE.Controllers.Toolbar.txtSymbol_chi": "Chi",
- "DE.Controllers.Toolbar.txtSymbol_cong": "Kira-Kira Setara Dengan",
+ "DE.Controllers.Toolbar.txtSymbol_cong": "Kira-kira sama dengan",
"DE.Controllers.Toolbar.txtSymbol_cup": "Union",
"DE.Controllers.Toolbar.txtSymbol_ddots": "Serong Kanan Bawah",
"DE.Controllers.Toolbar.txtSymbol_degree": "Derajat",
@@ -1297,7 +1464,7 @@
"DE.Views.BookmarksDialog.textClose": "Tutup",
"DE.Views.BookmarksDialog.textCopy": "Salin",
"DE.Views.BookmarksDialog.textDelete": "Hapus",
- "DE.Views.BookmarksDialog.textGetLink": "Dapatkan Link",
+ "DE.Views.BookmarksDialog.textGetLink": "Dapatkan tautan",
"DE.Views.BookmarksDialog.textGoto": "Pergi ke",
"DE.Views.BookmarksDialog.textHidden": "Bookmarks tersembunyi",
"DE.Views.BookmarksDialog.textLocation": "Lokasi",
@@ -1326,13 +1493,13 @@
"DE.Views.CaptionDialog.textPeriod": "periode",
"DE.Views.CaptionDialog.textSeparator": "Gunakan separator",
"DE.Views.CaptionDialog.textTable": "Tabel",
- "DE.Views.CaptionDialog.textTitle": "Sisipkan Caption",
+ "DE.Views.CaptionDialog.textTitle": "Sisipkan caption",
"DE.Views.CellsAddDialog.textCol": "Kolom",
"DE.Views.CellsAddDialog.textDown": "Di bawah cursor",
"DE.Views.CellsAddDialog.textLeft": "Ke kiri",
"DE.Views.CellsAddDialog.textRight": "Ke kanan",
"DE.Views.CellsAddDialog.textRow": "Baris",
- "DE.Views.CellsAddDialog.textTitle": "Sisipkan Beberapa",
+ "DE.Views.CellsAddDialog.textTitle": "Sisipkan beberapa",
"DE.Views.CellsAddDialog.textUp": "Diatas kursor",
"DE.Views.ChartSettings.text3dDepth": "Kedalaman (% dari dasar)",
"DE.Views.ChartSettings.text3dHeight": "Tinggi (% dari dasar)",
@@ -1369,8 +1536,8 @@
"DE.Views.ChartSettings.txtTopAndBottom": "Atas dan bawah",
"DE.Views.ControlSettingsDialog.strGeneral": "Umum",
"DE.Views.ControlSettingsDialog.textAdd": "Tambahkan",
- "DE.Views.ControlSettingsDialog.textAppearance": "Tampilan",
- "DE.Views.ControlSettingsDialog.textApplyAll": "Terapkan untuk Semua",
+ "DE.Views.ControlSettingsDialog.textAppearance": "Penampilan",
+ "DE.Views.ControlSettingsDialog.textApplyAll": "Terapkan untuk semua",
"DE.Views.ControlSettingsDialog.textBox": "Kotak Pembatas",
"DE.Views.ControlSettingsDialog.textChange": "Sunting",
"DE.Views.ControlSettingsDialog.textCheckbox": "Kotak centang",
@@ -1391,7 +1558,7 @@
"DE.Views.ControlSettingsDialog.textShowAs": "Tampilkan sebagai",
"DE.Views.ControlSettingsDialog.textSystemColor": "Sistem",
"DE.Views.ControlSettingsDialog.textTag": "Tandai",
- "DE.Views.ControlSettingsDialog.textTitle": "Pengaturan Kontrol Konten",
+ "DE.Views.ControlSettingsDialog.textTitle": "Pengaturan kontrol konten",
"DE.Views.ControlSettingsDialog.textUnchecked": "Simbol tidak dicentang",
"DE.Views.ControlSettingsDialog.textUp": "Naik",
"DE.Views.ControlSettingsDialog.textValue": "Nilai",
@@ -1454,9 +1621,9 @@
"DE.Views.DocProtection.txtDocProtectedTrack": "Dokumen terproteksi. Anda dapat menyunting dokumen ini, tapi semua perubahan akan dilacak.",
"DE.Views.DocProtection.txtDocProtectedView": "Dokumen terproteksi. Anda hanya bisa melihat dokumen ini.",
"DE.Views.DocProtection.txtDocUnlockDescription": "Masukkan kata sandi untuk membuka proteksi dokumen",
- "DE.Views.DocProtection.txtProtectDoc": "Proteksi Dokumen",
+ "DE.Views.DocProtection.txtProtectDoc": "Proteksi dokumen",
"DE.Views.DocumentHolder.aboveText": "Di atas",
- "DE.Views.DocumentHolder.addCommentText": "Tambahkan Komentar",
+ "DE.Views.DocumentHolder.addCommentText": "Tambahkan komentar",
"DE.Views.DocumentHolder.advancedDropCapText": "Pengaturan Drop Cap",
"DE.Views.DocumentHolder.advancedEquationText": "Pengaturan Persamaan",
"DE.Views.DocumentHolder.advancedFrameText": "Pengaturan Lanjut untuk Kerangka",
@@ -1562,7 +1729,7 @@
"DE.Views.DocumentHolder.textLeft": "Pindahkan sel ke kiri",
"DE.Views.DocumentHolder.textNest": "Nest table",
"DE.Views.DocumentHolder.textNextPage": "Halaman Selanjutnya",
- "DE.Views.DocumentHolder.textNumberingValue": "Penomoran Nilai",
+ "DE.Views.DocumentHolder.textNumberingValue": "Penomoran nilai",
"DE.Views.DocumentHolder.textPaste": "Tempel",
"DE.Views.DocumentHolder.textPrevPage": "Halaman Sebelumnya",
"DE.Views.DocumentHolder.textRefreshField": "Update area",
@@ -1611,7 +1778,7 @@
"DE.Views.DocumentHolder.txtAddTop": "Tambah pembatas atas",
"DE.Views.DocumentHolder.txtAddVer": "Tambah garis vertikal",
"DE.Views.DocumentHolder.txtAlignToChar": "Rata dengan karakter",
- "DE.Views.DocumentHolder.txtBehind": "Di Belakang Teks",
+ "DE.Views.DocumentHolder.txtBehind": "Di belakang teks",
"DE.Views.DocumentHolder.txtBorderProps": "Properti pembatas",
"DE.Views.DocumentHolder.txtBottom": "Bawah",
"DE.Views.DocumentHolder.txtColumnAlign": "Rata kolom",
@@ -1623,8 +1790,8 @@
"DE.Views.DocumentHolder.txtDeleteEq": "Hapus persamaan",
"DE.Views.DocumentHolder.txtDeleteGroupChar": "Hapus char",
"DE.Views.DocumentHolder.txtDeleteRadical": "Hapus radikal",
- "DE.Views.DocumentHolder.txtDistribHor": "Distribusikan Horizontal",
- "DE.Views.DocumentHolder.txtDistribVert": "Distribusikan Vertikal",
+ "DE.Views.DocumentHolder.txtDistribHor": "Distribusikan arah horizontal",
+ "DE.Views.DocumentHolder.txtDistribVert": "Distribusikan arah vertikal",
"DE.Views.DocumentHolder.txtEmpty": "(Kosong)",
"DE.Views.DocumentHolder.txtFractionLinear": "Ubah ke pecahan linear",
"DE.Views.DocumentHolder.txtFractionSkewed": "Ubah ke pecahan",
@@ -1647,12 +1814,12 @@
"DE.Views.DocumentHolder.txtHideTopLimit": "Sembunyikan nilai batas atas",
"DE.Views.DocumentHolder.txtHideVer": "Sembunyikan garis vertikal",
"DE.Views.DocumentHolder.txtIncreaseArg": "Tingkatkan ukuran argumen",
- "DE.Views.DocumentHolder.txtInFront": "Di Depan Teks",
- "DE.Views.DocumentHolder.txtInline": "Sejajar dengan Teks",
+ "DE.Views.DocumentHolder.txtInFront": "Di depan teks",
+ "DE.Views.DocumentHolder.txtInline": "Sejajar dengan teks",
"DE.Views.DocumentHolder.txtInsertArgAfter": "Sisipkan argumen setelah",
"DE.Views.DocumentHolder.txtInsertArgBefore": "Sisipkan argumen sebelum",
"DE.Views.DocumentHolder.txtInsertBreak": "Sisipkan break manual",
- "DE.Views.DocumentHolder.txtInsertCaption": "Sisipkan Caption",
+ "DE.Views.DocumentHolder.txtInsertCaption": "Sisipkan caption",
"DE.Views.DocumentHolder.txtInsertEqAfter": "Sisipkan persamaan setelah",
"DE.Views.DocumentHolder.txtInsertEqBefore": "Sisipkan persamaan sebelum",
"DE.Views.DocumentHolder.txtKeepTextOnly": "Pertahankan hanya teks",
@@ -1665,7 +1832,7 @@
"DE.Views.DocumentHolder.txtOverwriteCells": "Tiban sel",
"DE.Views.DocumentHolder.txtPasteSourceFormat": "Pertahankan formatting sumber",
"DE.Views.DocumentHolder.txtPressLink": "Tekan {0} dan klik link",
- "DE.Views.DocumentHolder.txtPrintSelection": "Print Pilihan",
+ "DE.Views.DocumentHolder.txtPrintSelection": "Cetak pilihan",
"DE.Views.DocumentHolder.txtRemFractionBar": "Hilangkan bar pecahan",
"DE.Views.DocumentHolder.txtRemLimit": "Hilangkan limit",
"DE.Views.DocumentHolder.txtRemoveAccentChar": "Hilangkan aksen karakter",
@@ -1695,15 +1862,15 @@
"DE.Views.DocumentHolder.updateStyleText": "Update %1 style",
"DE.Views.DocumentHolder.vertAlignText": "Perataan Vertikal",
"DE.Views.DropcapSettingsAdvanced.strBorders": "Pembatas & Isian",
- "DE.Views.DropcapSettingsAdvanced.strDropcap": "Drop Cap",
+ "DE.Views.DropcapSettingsAdvanced.strDropcap": "Drop cap",
"DE.Views.DropcapSettingsAdvanced.strMargins": "Margin",
"DE.Views.DropcapSettingsAdvanced.textAlign": "Perataan",
"DE.Views.DropcapSettingsAdvanced.textAtLeast": "Sekurang-kurangnya",
"DE.Views.DropcapSettingsAdvanced.textAuto": "Otomatis",
- "DE.Views.DropcapSettingsAdvanced.textBackColor": "Warna Latar",
- "DE.Views.DropcapSettingsAdvanced.textBorderColor": "Warna",
+ "DE.Views.DropcapSettingsAdvanced.textBackColor": "Warna latar",
+ "DE.Views.DropcapSettingsAdvanced.textBorderColor": "Warna tepi",
"DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Klik pada diagram atau gunakan tombol untuk memilih pembatas",
- "DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Ukuran Pembatas",
+ "DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Ukuran tepi",
"DE.Views.DropcapSettingsAdvanced.textBottom": "Bawah",
"DE.Views.DropcapSettingsAdvanced.textCenter": "Tengah",
"DE.Views.DropcapSettingsAdvanced.textColumn": "Kolom",
@@ -1728,8 +1895,8 @@
"DE.Views.DropcapSettingsAdvanced.textRelative": "Relatif dengan",
"DE.Views.DropcapSettingsAdvanced.textRight": "Kanan",
"DE.Views.DropcapSettingsAdvanced.textRowHeight": "Ketinggian dalam ukuran baris",
- "DE.Views.DropcapSettingsAdvanced.textTitle": "Drop Cap - Pengaturan Lanjut",
- "DE.Views.DropcapSettingsAdvanced.textTitleFrame": "Kerangka - Pengaturan Lanjut",
+ "DE.Views.DropcapSettingsAdvanced.textTitle": "Drop cap - Pengaturan lanjut",
+ "DE.Views.DropcapSettingsAdvanced.textTitleFrame": "Kerangka - Pengaturan lanjut",
"DE.Views.DropcapSettingsAdvanced.textTop": "Atas",
"DE.Views.DropcapSettingsAdvanced.textVertical": "Vertikal",
"DE.Views.DropcapSettingsAdvanced.textWidth": "Lebar",
@@ -1746,7 +1913,7 @@
"DE.Views.FileMenu.btnExitCaption": "Tutup",
"DE.Views.FileMenu.btnFileOpenCaption": "Buka",
"DE.Views.FileMenu.btnHelpCaption": "Bantuan",
- "DE.Views.FileMenu.btnHistoryCaption": "Riwayat Versi",
+ "DE.Views.FileMenu.btnHistoryCaption": "Riwayat versi",
"DE.Views.FileMenu.btnInfoCaption": "Informasi Dokumen",
"DE.Views.FileMenu.btnPrintCaption": "Cetak",
"DE.Views.FileMenu.btnProtectCaption": "Proteksi",
@@ -1788,6 +1955,7 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistik",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subyek",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Simbol",
+ "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tag",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Judul",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Diunggah",
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Kata",
@@ -1796,7 +1964,7 @@
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "Orang yang memiliki hak",
"DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Peringatan",
"DE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Dengan password",
- "DE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteksi Dokumen",
+ "DE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteksi dokumen",
"DE.Views.FileMenuPanels.ProtectDoc.strSignature": "Dengan tanda tangan",
"DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Edit Dokumen",
"DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Editing akan menghapus tandatangan dari dokumen. Lanjutkan?",
@@ -1894,7 +2062,7 @@
"DE.Views.FormSettings.textKey": "Kunci",
"DE.Views.FormSettings.textLetters": "Huruf",
"DE.Views.FormSettings.textLock": "Kunci",
- "DE.Views.FormSettings.textMask": "Samaran Arbitrer",
+ "DE.Views.FormSettings.textMask": "Sebarang Masker",
"DE.Views.FormSettings.textMaxChars": "Batas karakter",
"DE.Views.FormSettings.textMulti": "Area multi-garis",
"DE.Views.FormSettings.textNever": "tidak pernah",
@@ -1967,8 +2135,8 @@
"DE.Views.HeaderFooterSettings.textHeaderFromTop": "Header dari Atas",
"DE.Views.HeaderFooterSettings.textInsertCurrent": "Sisipkan ke Posisi Saat Ini",
"DE.Views.HeaderFooterSettings.textOptions": "Pilihan",
- "DE.Views.HeaderFooterSettings.textPageNum": "Sisipkan Nomor Halaman",
- "DE.Views.HeaderFooterSettings.textPageNumbering": "Penomoran Halaman",
+ "DE.Views.HeaderFooterSettings.textPageNum": "Sisipkan nomor halaman",
+ "DE.Views.HeaderFooterSettings.textPageNumbering": "Penomoran halaman",
"DE.Views.HeaderFooterSettings.textPosition": "Posisi",
"DE.Views.HeaderFooterSettings.textPrev": "Lanjut dari sesi sebelumnya",
"DE.Views.HeaderFooterSettings.textSameAs": "Tautkan dengan Sebelumnya",
@@ -1979,8 +2147,8 @@
"DE.Views.HyperlinkSettingsDialog.textDefault": "Fragmen teks yang dipilih",
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Tampilan",
"DE.Views.HyperlinkSettingsDialog.textExternal": "Tautan eksternal",
- "DE.Views.HyperlinkSettingsDialog.textInternal": "Letakkan di Dokumen",
- "DE.Views.HyperlinkSettingsDialog.textTitle": "Pengaturan Hyperlink",
+ "DE.Views.HyperlinkSettingsDialog.textInternal": "Letakkan di dokumen",
+ "DE.Views.HyperlinkSettingsDialog.textTitle": "Pengaturan hyperlink",
"DE.Views.HyperlinkSettingsDialog.textTooltip": "Teks ScreenTip",
"DE.Views.HyperlinkSettingsDialog.textUrl": "Tautkan dengan",
"DE.Views.HyperlinkSettingsDialog.txtBeginning": "Awal dokumen",
@@ -2021,10 +2189,10 @@
"DE.Views.ImageSettings.txtThrough": "Tembus",
"DE.Views.ImageSettings.txtTight": "Ketat",
"DE.Views.ImageSettings.txtTopAndBottom": "Atas dan bawah",
- "DE.Views.ImageSettingsAdvanced.strMargins": "Lapisan Teks",
+ "DE.Views.ImageSettingsAdvanced.strMargins": "Lapisan teks",
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Absolut",
"DE.Views.ImageSettingsAdvanced.textAlignment": "Perataan",
- "DE.Views.ImageSettingsAdvanced.textAlt": "Teks Alternatif",
+ "DE.Views.ImageSettingsAdvanced.textAlt": "Teks alternatif",
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Deskripsi",
"DE.Views.ImageSettingsAdvanced.textAltTip": "Representasi alternatif berbasis teks dari informasi objek visual, yang akan dibaca kepada orang dengan gangguan penglihatan atau kognitif untuk membantu mereka lebih memahami informasi yang ada dalam gambar, autoshape, grafik, atau tabel.",
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Judul",
@@ -2032,20 +2200,20 @@
"DE.Views.ImageSettingsAdvanced.textArrows": "Tanda panah",
"DE.Views.ImageSettingsAdvanced.textAspectRatio": "Kunci aspek rasio",
"DE.Views.ImageSettingsAdvanced.textAutofit": "AutoFit",
- "DE.Views.ImageSettingsAdvanced.textBeginSize": "Ukuran Mulai",
- "DE.Views.ImageSettingsAdvanced.textBeginStyle": "Gaya Mulai",
+ "DE.Views.ImageSettingsAdvanced.textBeginSize": "Ukuran mulai",
+ "DE.Views.ImageSettingsAdvanced.textBeginStyle": "Gaya mulai",
"DE.Views.ImageSettingsAdvanced.textBelow": "di bawah",
"DE.Views.ImageSettingsAdvanced.textBevel": "Miring",
"DE.Views.ImageSettingsAdvanced.textBottom": "Bawah",
- "DE.Views.ImageSettingsAdvanced.textBottomMargin": "Margin Bawah",
- "DE.Views.ImageSettingsAdvanced.textBtnWrap": "Potongan Teks",
- "DE.Views.ImageSettingsAdvanced.textCapType": "Tipe Cap",
+ "DE.Views.ImageSettingsAdvanced.textBottomMargin": "Margin bawah",
+ "DE.Views.ImageSettingsAdvanced.textBtnWrap": "Pelipatan teks",
+ "DE.Views.ImageSettingsAdvanced.textCapType": "Tipe cap",
"DE.Views.ImageSettingsAdvanced.textCenter": "Tengah",
"DE.Views.ImageSettingsAdvanced.textCharacter": "Karakter",
"DE.Views.ImageSettingsAdvanced.textColumn": "Kolom",
- "DE.Views.ImageSettingsAdvanced.textDistance": "Jarak dari Teks",
- "DE.Views.ImageSettingsAdvanced.textEndSize": "Ukuran Akhir",
- "DE.Views.ImageSettingsAdvanced.textEndStyle": "Model Akhir",
+ "DE.Views.ImageSettingsAdvanced.textDistance": "Jarak dari teks",
+ "DE.Views.ImageSettingsAdvanced.textEndSize": "Ukuran akhir",
+ "DE.Views.ImageSettingsAdvanced.textEndStyle": "Gaya akhir",
"DE.Views.ImageSettingsAdvanced.textFlat": "Datar",
"DE.Views.ImageSettingsAdvanced.textFlipped": "Flipped",
"DE.Views.ImageSettingsAdvanced.textHeight": "Tinggi",
@@ -2054,14 +2222,14 @@
"DE.Views.ImageSettingsAdvanced.textJoinType": "Gabungkan Tipe",
"DE.Views.ImageSettingsAdvanced.textKeepRatio": "Proporsi Konstan",
"DE.Views.ImageSettingsAdvanced.textLeft": "Kiri",
- "DE.Views.ImageSettingsAdvanced.textLeftMargin": "Margin Kiri",
+ "DE.Views.ImageSettingsAdvanced.textLeftMargin": "Margin kiri",
"DE.Views.ImageSettingsAdvanced.textLine": "Garis",
- "DE.Views.ImageSettingsAdvanced.textLineStyle": "Model Garis",
+ "DE.Views.ImageSettingsAdvanced.textLineStyle": "Gaya garis",
"DE.Views.ImageSettingsAdvanced.textMargin": "Margin",
"DE.Views.ImageSettingsAdvanced.textMiter": "Siku-siku",
"DE.Views.ImageSettingsAdvanced.textMove": "Pindah obyek bersama teks",
"DE.Views.ImageSettingsAdvanced.textOptions": "Pilihan",
- "DE.Views.ImageSettingsAdvanced.textOriginalSize": "Ukuran Sebenarnya",
+ "DE.Views.ImageSettingsAdvanced.textOriginalSize": "Ukuran sebenarnya",
"DE.Views.ImageSettingsAdvanced.textOverlap": "Ijinkan menumpuk",
"DE.Views.ImageSettingsAdvanced.textPage": "Halaman",
"DE.Views.ImageSettingsAdvanced.textParagraph": "Paragraf",
@@ -2071,27 +2239,27 @@
"DE.Views.ImageSettingsAdvanced.textRelativeWH": "Relatif",
"DE.Views.ImageSettingsAdvanced.textResizeFit": "Ubah ukuran bentuk agar cocok ke teks",
"DE.Views.ImageSettingsAdvanced.textRight": "Kanan",
- "DE.Views.ImageSettingsAdvanced.textRightMargin": "Margin Kanan",
+ "DE.Views.ImageSettingsAdvanced.textRightMargin": "Margin kanan",
"DE.Views.ImageSettingsAdvanced.textRightOf": "ke sebelah kanan dari",
"DE.Views.ImageSettingsAdvanced.textRotation": "Rotasi",
"DE.Views.ImageSettingsAdvanced.textRound": "Bulat",
- "DE.Views.ImageSettingsAdvanced.textShape": "Pengaturan Bentuk",
+ "DE.Views.ImageSettingsAdvanced.textShape": "Pengaturan bentuk",
"DE.Views.ImageSettingsAdvanced.textSize": "Ukuran",
"DE.Views.ImageSettingsAdvanced.textSquare": "Persegi",
- "DE.Views.ImageSettingsAdvanced.textTextBox": "Kotak Teks",
- "DE.Views.ImageSettingsAdvanced.textTitle": "Gambar - Pengaturan Lanjut",
- "DE.Views.ImageSettingsAdvanced.textTitleChart": "Bagan - Pengaturan Lanjut",
- "DE.Views.ImageSettingsAdvanced.textTitleShape": "Bentuk - Pengaturan Lanjut",
+ "DE.Views.ImageSettingsAdvanced.textTextBox": "Kotak teks",
+ "DE.Views.ImageSettingsAdvanced.textTitle": "Gambar - Pengaturan lanjut",
+ "DE.Views.ImageSettingsAdvanced.textTitleChart": "Bagan - Pengaturan lanjut",
+ "DE.Views.ImageSettingsAdvanced.textTitleShape": "Bentuk - Pengaturan lanjut",
"DE.Views.ImageSettingsAdvanced.textTop": "Atas",
- "DE.Views.ImageSettingsAdvanced.textTopMargin": "Margin Atas",
+ "DE.Views.ImageSettingsAdvanced.textTopMargin": "Margin atas",
"DE.Views.ImageSettingsAdvanced.textVertical": "Vertikal",
"DE.Views.ImageSettingsAdvanced.textVertically": "Secara Vertikal",
"DE.Views.ImageSettingsAdvanced.textWeightArrows": "Bobot & Panah",
"DE.Views.ImageSettingsAdvanced.textWidth": "Lebar",
- "DE.Views.ImageSettingsAdvanced.textWrap": "Bentuk Potongan",
- "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Di Belakang Teks",
- "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Di depan",
- "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "Sejajar dengan Teks",
+ "DE.Views.ImageSettingsAdvanced.textWrap": "Gaya pelipatan",
+ "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Di belakang teks",
+ "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Di depan teks",
+ "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "Sejajar dengan teks",
"DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Persegi",
"DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Tembus",
"DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Ketat",
@@ -2119,11 +2287,11 @@
"DE.Views.LineNumbersDialog.textForward": "Dari poin ini sampai selanjutnya",
"DE.Views.LineNumbersDialog.textFromText": "Dari teks",
"DE.Views.LineNumbersDialog.textNumbering": "Penomoran",
- "DE.Views.LineNumbersDialog.textRestartEachPage": "Restart Setiap Halaman",
- "DE.Views.LineNumbersDialog.textRestartEachSection": "Restart Setiap Sesi",
+ "DE.Views.LineNumbersDialog.textRestartEachPage": "Mulai ulang setiap halaman",
+ "DE.Views.LineNumbersDialog.textRestartEachSection": "Mulai ulang setiap seksi",
"DE.Views.LineNumbersDialog.textSection": "Sesi Saat Ini",
"DE.Views.LineNumbersDialog.textStartAt": "Dimulai pada",
- "DE.Views.LineNumbersDialog.textTitle": "Nomor Garis",
+ "DE.Views.LineNumbersDialog.textTitle": "Nomor garis",
"DE.Views.LineNumbersDialog.txtAutoText": "Otomatis",
"DE.Views.Links.capBtnAddText": "Tambahkan Teks",
"DE.Views.Links.capBtnBookmarks": "Bookmark",
@@ -2172,13 +2340,13 @@
"DE.Views.ListSettingsDialog.txtAlign": "Perataan",
"DE.Views.ListSettingsDialog.txtBullet": "Butir",
"DE.Views.ListSettingsDialog.txtColor": "Warna",
- "DE.Views.ListSettingsDialog.txtFont": "Font dan Simbol",
+ "DE.Views.ListSettingsDialog.txtFont": "Font dan simbol",
"DE.Views.ListSettingsDialog.txtLikeText": "Seperti teks",
"DE.Views.ListSettingsDialog.txtNewBullet": "Butir baru",
"DE.Views.ListSettingsDialog.txtNone": "Tidak ada",
"DE.Views.ListSettingsDialog.txtSize": "Ukuran",
"DE.Views.ListSettingsDialog.txtSymbol": "Simbol",
- "DE.Views.ListSettingsDialog.txtTitle": "List Pengaturan",
+ "DE.Views.ListSettingsDialog.txtTitle": "Pengaturan daftar",
"DE.Views.ListSettingsDialog.txtType": "Tipe",
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
"DE.Views.MailMergeEmailDlg.okButtonText": "Kirim",
@@ -2190,8 +2358,8 @@
"DE.Views.MailMergeEmailDlg.textFrom": "Dari",
"DE.Views.MailMergeEmailDlg.textHTML": "HTML",
"DE.Views.MailMergeEmailDlg.textMessage": "Pesan",
- "DE.Views.MailMergeEmailDlg.textSubject": "Garis Subjek",
- "DE.Views.MailMergeEmailDlg.textTitle": "Kirim ke Email",
+ "DE.Views.MailMergeEmailDlg.textSubject": "Baris subjek",
+ "DE.Views.MailMergeEmailDlg.textTitle": "Kirim ke email",
"DE.Views.MailMergeEmailDlg.textTo": "Ke",
"DE.Views.MailMergeEmailDlg.textWarning": "Peringatan!",
"DE.Views.MailMergeEmailDlg.textWarningMsg": "Perlu dicatat bahwa mengirim email tidak bisa dihentikan setelah Anda klik tombol 'Kirim'.",
@@ -2250,7 +2418,7 @@
"DE.Views.NoteSettingsDialog.textApply": "Terapkan",
"DE.Views.NoteSettingsDialog.textApplyTo": "Terapkan perubahan ke",
"DE.Views.NoteSettingsDialog.textContinue": "Kontinyu",
- "DE.Views.NoteSettingsDialog.textCustom": "Custom Tanda",
+ "DE.Views.NoteSettingsDialog.textCustom": "Tanda ubahan",
"DE.Views.NoteSettingsDialog.textDocEnd": "Akhir dokumen",
"DE.Views.NoteSettingsDialog.textDocument": "Keseluruhan dokumen",
"DE.Views.NoteSettingsDialog.textEachPage": "Restart Setiap Halaman",
@@ -2261,16 +2429,16 @@
"DE.Views.NoteSettingsDialog.textInsert": "Sisipkan",
"DE.Views.NoteSettingsDialog.textLocation": "Lokasi",
"DE.Views.NoteSettingsDialog.textNumbering": "Penomoran",
- "DE.Views.NoteSettingsDialog.textNumFormat": "Format Nomor",
+ "DE.Views.NoteSettingsDialog.textNumFormat": "Format nomor",
"DE.Views.NoteSettingsDialog.textPageBottom": "Bawah halaman",
"DE.Views.NoteSettingsDialog.textSectEnd": "Akhir sesi",
"DE.Views.NoteSettingsDialog.textSection": "Sesi Saat Ini",
"DE.Views.NoteSettingsDialog.textStart": "Dimulai pada",
"DE.Views.NoteSettingsDialog.textTextBottom": "Di bawah teks",
- "DE.Views.NoteSettingsDialog.textTitle": "Pengaturan Catatan",
- "DE.Views.NotesRemoveDialog.textEnd": "Hapus Semua Endnotes",
- "DE.Views.NotesRemoveDialog.textFoot": "Hapus Semua Footnotes",
- "DE.Views.NotesRemoveDialog.textTitle": "Hapus Catatan",
+ "DE.Views.NoteSettingsDialog.textTitle": "Pengaturan catatan",
+ "DE.Views.NotesRemoveDialog.textEnd": "Hapus semua catatan akhir",
+ "DE.Views.NotesRemoveDialog.textFoot": "Hapus semua catatan kaki",
+ "DE.Views.NotesRemoveDialog.textTitle": "Hapus catatan",
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Peringatan",
"DE.Views.PageMarginsDialog.textBottom": "Bawah",
"DE.Views.PageMarginsDialog.textGutter": "Jarak Spasi",
@@ -2292,7 +2460,7 @@
"DE.Views.PageMarginsDialog.txtMarginsW": "Margin kiri dan kanan terlalu besar dengan lebar halaman yang ada",
"DE.Views.PageSizeDialog.textHeight": "Tinggi",
"DE.Views.PageSizeDialog.textPreset": "Preset",
- "DE.Views.PageSizeDialog.textTitle": "Ukuran Halaman",
+ "DE.Views.PageSizeDialog.textTitle": "Ukuran halaman",
"DE.Views.PageSizeDialog.textWidth": "Lebar",
"DE.Views.PageSizeDialog.txtCustom": "Khusus",
"DE.Views.PageThumbnails.textClosePanel": "Tutup thumbnails halaman",
@@ -2326,7 +2494,7 @@
"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.strIndentsLineSpacing": "Jarak baris",
"DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "Level outline",
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Kanan",
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Setelah",
@@ -2338,7 +2506,7 @@
"DE.Views.ParagraphSettingsAdvanced.strOrphan": "Kontrol Orphan",
"DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Huruf",
"DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Indentasi & Peletakan",
- "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Break Garis & Halaman",
+ "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Putus Baris & Halaman",
"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",
@@ -2352,19 +2520,19 @@
"DE.Views.ParagraphSettingsAdvanced.textAll": "Semua",
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Sekurang-kurangnya",
"DE.Views.ParagraphSettingsAdvanced.textAuto": "Banyak",
- "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Warna Latar",
- "DE.Views.ParagraphSettingsAdvanced.textBodyText": "Teks Basic",
- "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Warna Pembatas",
+ "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Warna latar",
+ "DE.Views.ParagraphSettingsAdvanced.textBodyText": "Teks dasar",
+ "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Warna tepi",
"DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Klik pada diagram atau gunakan tombol untuk memilih pembatas dan menerapkan pilihan model",
- "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Ukuran Pembatas",
+ "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Ukuran tepi",
"DE.Views.ParagraphSettingsAdvanced.textBottom": "Bawah",
"DE.Views.ParagraphSettingsAdvanced.textCentered": "Tengah",
- "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Spasi Antar Karakter",
+ "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Spasi antar karakter",
"DE.Views.ParagraphSettingsAdvanced.textContext": "Kontekstual",
"DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Kontekstual dan",
"DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Kontekstual, Bersejarah, dan",
"DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Kontekstual dan Bersejarah",
- "DE.Views.ParagraphSettingsAdvanced.textDefault": "Tab Standar",
+ "DE.Views.ParagraphSettingsAdvanced.textDefault": "Tab baku",
"DE.Views.ParagraphSettingsAdvanced.textDiscret": "Diskresional",
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Efek",
"DE.Views.ParagraphSettingsAdvanced.textExact": "Persis",
@@ -2382,12 +2550,12 @@
"DE.Views.ParagraphSettingsAdvanced.textOpenType": "Fitur OpenType",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Posisi",
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Hapus",
- "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Hapus Semua",
+ "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Hapus semua",
"DE.Views.ParagraphSettingsAdvanced.textRight": "Kanan",
"DE.Views.ParagraphSettingsAdvanced.textSet": "Tentukan",
"DE.Views.ParagraphSettingsAdvanced.textSpacing": "Spasi",
"DE.Views.ParagraphSettingsAdvanced.textStandard": "Standar saja",
- "DE.Views.ParagraphSettingsAdvanced.textStandardContext": "Standar dan Kontekstual",
+ "DE.Views.ParagraphSettingsAdvanced.textStandardContext": "Standar dan kontekstual",
"DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "Standar, Kontekstual, dan Diskresional",
"DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "Standar, Kontekstual, dan Bersejarah",
"DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "Standar dan Diskresional",
@@ -2395,9 +2563,9 @@
"DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "Standar dan Bersejarah",
"DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Tengah",
"DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Kiri",
- "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Posisi Tab",
+ "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Posisi tab",
"DE.Views.ParagraphSettingsAdvanced.textTabRight": "Kanan",
- "DE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraf - Pengaturan Lanjut",
+ "DE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraf - Pengaturan lanjut",
"DE.Views.ParagraphSettingsAdvanced.textTop": "Atas",
"DE.Views.ParagraphSettingsAdvanced.tipAll": "Buat Pembatas Luar dan Semua Garis Dalam",
"DE.Views.ParagraphSettingsAdvanced.tipBottom": "Buat Pembatas Bawah Saja",
@@ -2522,20 +2690,20 @@
"DE.Views.Statusbar.tipZoomIn": "Perbesar",
"DE.Views.Statusbar.tipZoomOut": "Perkecil",
"DE.Views.Statusbar.txtPageNumInvalid": "Nomor halaman salah",
- "DE.Views.StyleTitleDialog.textHeader": "Buat style baru",
+ "DE.Views.StyleTitleDialog.textHeader": "Buat gaya baru",
"DE.Views.StyleTitleDialog.textNextStyle": "Style paragraf berikutnya",
"DE.Views.StyleTitleDialog.textTitle": "Judul",
"DE.Views.StyleTitleDialog.txtEmpty": "Kolom ini harus diisi",
"DE.Views.StyleTitleDialog.txtNotEmpty": "Area tidak boleh kosong",
"DE.Views.StyleTitleDialog.txtSameAs": "Sama seperti membuat style baru",
- "DE.Views.TableFormulaDialog.textBookmark": "Paste Bookmark",
- "DE.Views.TableFormulaDialog.textFormat": "Format Nomor",
+ "DE.Views.TableFormulaDialog.textBookmark": "Tempel markah",
+ "DE.Views.TableFormulaDialog.textFormat": "Format nomor",
"DE.Views.TableFormulaDialog.textFormula": "Formula",
- "DE.Views.TableFormulaDialog.textInsertFunction": "Paste Fungsi",
- "DE.Views.TableFormulaDialog.textTitle": "Pengaturan Formula",
+ "DE.Views.TableFormulaDialog.textInsertFunction": "Tempel fungsi",
+ "DE.Views.TableFormulaDialog.textTitle": "Pengaturan rumus",
"DE.Views.TableOfContentsSettings.strAlign": "Nomor halaman rata kanan",
"DE.Views.TableOfContentsSettings.strFullCaption": "Sertakan label dan nomor",
- "DE.Views.TableOfContentsSettings.strLinks": "Format Daftar Isi sebagai Link",
+ "DE.Views.TableOfContentsSettings.strLinks": "Format daftar isi sebagai tautan",
"DE.Views.TableOfContentsSettings.strLinksOF": "Format daftar gambar sebagai link",
"DE.Views.TableOfContentsSettings.strShowPages": "Tampilkan nomor halaman",
"DE.Views.TableOfContentsSettings.textBuildTable": "Buat daftar isi dari",
@@ -2553,7 +2721,7 @@
"DE.Views.TableOfContentsSettings.textStyle": "Model",
"DE.Views.TableOfContentsSettings.textStyles": "Style",
"DE.Views.TableOfContentsSettings.textTable": "Tabel",
- "DE.Views.TableOfContentsSettings.textTitle": "Daftar Isi",
+ "DE.Views.TableOfContentsSettings.textTitle": "Daftar isi",
"DE.Views.TableOfContentsSettings.textTitleTOF": "Daftar gambar",
"DE.Views.TableOfContentsSettings.txtCentered": "Tengah",
"DE.Views.TableOfContentsSettings.txtClassic": "Klasik",
@@ -2631,33 +2799,33 @@
"DE.Views.TableSettingsAdvanced.textAlign": "Perataan",
"DE.Views.TableSettingsAdvanced.textAlignment": "Perataan",
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Beri spasi antar sel",
- "DE.Views.TableSettingsAdvanced.textAlt": "Teks Alternatif",
+ "DE.Views.TableSettingsAdvanced.textAlt": "Teks alternatif",
"DE.Views.TableSettingsAdvanced.textAltDescription": "Deskripsi",
"DE.Views.TableSettingsAdvanced.textAltTip": "Representasi alternatif berbasis teks dari informasi objek visual, yang akan dibaca kepada orang dengan gangguan penglihatan atau kognitif untuk membantu mereka lebih memahami informasi yang ada dalam gambar, autoshape, grafik, atau tabel.",
"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",
+ "DE.Views.TableSettingsAdvanced.textBackColor": "Latar sel",
"DE.Views.TableSettingsAdvanced.textBelow": "di bawah",
- "DE.Views.TableSettingsAdvanced.textBorderColor": "Warna Pembatas",
+ "DE.Views.TableSettingsAdvanced.textBorderColor": "Warna tepi",
"DE.Views.TableSettingsAdvanced.textBorderDesc": "Klik pada diagram atau gunakan tombol untuk memilih pembatas dan menerapkan pilihan model",
"DE.Views.TableSettingsAdvanced.textBordersBackgroung": "Pembatas & Latar",
- "DE.Views.TableSettingsAdvanced.textBorderWidth": "Ukuran Pembatas",
+ "DE.Views.TableSettingsAdvanced.textBorderWidth": "Ukuran tepi",
"DE.Views.TableSettingsAdvanced.textBottom": "Bawah",
- "DE.Views.TableSettingsAdvanced.textCellOptions": "Opsi Sel",
+ "DE.Views.TableSettingsAdvanced.textCellOptions": "Opsi sel",
"DE.Views.TableSettingsAdvanced.textCellProps": "Properti Sel",
- "DE.Views.TableSettingsAdvanced.textCellSize": "Ukuran Sel",
+ "DE.Views.TableSettingsAdvanced.textCellSize": "Ukuran sel",
"DE.Views.TableSettingsAdvanced.textCenter": "Tengah",
"DE.Views.TableSettingsAdvanced.textCenterTooltip": "Tengah",
"DE.Views.TableSettingsAdvanced.textCheckMargins": "Gunakan margin standar",
- "DE.Views.TableSettingsAdvanced.textDefaultMargins": "Margin Standar",
- "DE.Views.TableSettingsAdvanced.textDistance": "Jarak dari Teks",
+ "DE.Views.TableSettingsAdvanced.textDefaultMargins": "Margin sel baku",
+ "DE.Views.TableSettingsAdvanced.textDistance": "Jarak dari teks",
"DE.Views.TableSettingsAdvanced.textHorizontal": "Horisontal",
- "DE.Views.TableSettingsAdvanced.textIndLeft": "Indentasi dari Kiri",
+ "DE.Views.TableSettingsAdvanced.textIndLeft": "Indentasi dari kiri",
"DE.Views.TableSettingsAdvanced.textLeft": "Kiri",
"DE.Views.TableSettingsAdvanced.textLeftTooltip": "Kiri",
"DE.Views.TableSettingsAdvanced.textMargin": "Margin",
- "DE.Views.TableSettingsAdvanced.textMargins": "Margin Sel",
+ "DE.Views.TableSettingsAdvanced.textMargins": "Margin sel",
"DE.Views.TableSettingsAdvanced.textMeasure": "Diukur dalam",
"DE.Views.TableSettingsAdvanced.textMove": "Pindah obyek bersama teks",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "Hanya untuk sel yang dipilih",
@@ -2672,18 +2840,18 @@
"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.textTablePosition": "Posisi Tabel",
- "DE.Views.TableSettingsAdvanced.textTableSize": "Ukuran Tabel",
- "DE.Views.TableSettingsAdvanced.textTitle": "Tabel - Pengaturan Lanjut",
+ "DE.Views.TableSettingsAdvanced.textTableBackColor": "Latar belakang tabel",
+ "DE.Views.TableSettingsAdvanced.textTablePosition": "Posisi tabel",
+ "DE.Views.TableSettingsAdvanced.textTableSize": "Ukuran tabel",
+ "DE.Views.TableSettingsAdvanced.textTitle": "Tabel - Pengaturan lanjut",
"DE.Views.TableSettingsAdvanced.textTop": "Atas",
"DE.Views.TableSettingsAdvanced.textVertical": "Vertikal",
"DE.Views.TableSettingsAdvanced.textWidth": "Lebar",
"DE.Views.TableSettingsAdvanced.textWidthSpaces": "Lebar & Spasi",
- "DE.Views.TableSettingsAdvanced.textWrap": "Potongan Teks",
+ "DE.Views.TableSettingsAdvanced.textWrap": "Pelipatan teks",
"DE.Views.TableSettingsAdvanced.textWrapNoneTooltip": "Tabel berderet",
"DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "Tabel alur",
- "DE.Views.TableSettingsAdvanced.textWrappingStyle": "Bentuk Potongan",
+ "DE.Views.TableSettingsAdvanced.textWrappingStyle": "Gaya pelipatan",
"DE.Views.TableSettingsAdvanced.textWrapText": "Wrap Teks",
"DE.Views.TableSettingsAdvanced.tipAll": "Buat Pembatas Luar dan Semua Garis Dalam",
"DE.Views.TableSettingsAdvanced.tipCellAll": "Buat Pembatas untuk Sel Dalam Saja",
@@ -2700,14 +2868,14 @@
"DE.Views.TableSettingsAdvanced.txtNoBorders": "Tidak ada pembatas",
"DE.Views.TableSettingsAdvanced.txtPercent": "Persen",
"DE.Views.TableSettingsAdvanced.txtPt": "Titik",
- "DE.Views.TableToTextDialog.textEmpty": "Anda harus menulis karakter untuk separator custom.",
+ "DE.Views.TableToTextDialog.textEmpty": "Anda harus mengetikkan sebuah karakter untuk pemisah ubahan.",
"DE.Views.TableToTextDialog.textNested": "Konversi tabel nested",
"DE.Views.TableToTextDialog.textOther": "Lainnya",
"DE.Views.TableToTextDialog.textPara": "Tanda paragraf",
"DE.Views.TableToTextDialog.textSemicolon": "Semicolons",
"DE.Views.TableToTextDialog.textSeparator": "Pisahkan teks dengan",
"DE.Views.TableToTextDialog.textTab": "Tab",
- "DE.Views.TableToTextDialog.textTitle": "Konversi Tabel ke Teks",
+ "DE.Views.TableToTextDialog.textTitle": "Konversi tabel ke teks",
"DE.Views.TextArtSettings.strColor": "Warna",
"DE.Views.TextArtSettings.strFill": "Isi",
"DE.Views.TextArtSettings.strSize": "Ukuran",
@@ -2734,19 +2902,19 @@
"DE.Views.TextToTableDialog.textAutofit": "Sifat Autofit",
"DE.Views.TextToTableDialog.textColumns": "Kolom",
"DE.Views.TextToTableDialog.textContents": "Autofit ke konten",
- "DE.Views.TextToTableDialog.textEmpty": "Anda harus menulis karakter untuk separator custom.",
+ "DE.Views.TextToTableDialog.textEmpty": "Anda harus mengetikkan sebuah karakter untuk pemisah ubahan.",
"DE.Views.TextToTableDialog.textFixed": "Lebar kolom tetap",
"DE.Views.TextToTableDialog.textOther": "Lainnya",
"DE.Views.TextToTableDialog.textPara": "Paragraf",
"DE.Views.TextToTableDialog.textRows": "Baris",
"DE.Views.TextToTableDialog.textSemicolon": "Semicolons",
- "DE.Views.TextToTableDialog.textSeparator": "Pisahkan Teks pada",
+ "DE.Views.TextToTableDialog.textSeparator": "Pisahkan teks pada",
"DE.Views.TextToTableDialog.textTab": "Tab",
- "DE.Views.TextToTableDialog.textTableSize": "Ukuran Tabel",
- "DE.Views.TextToTableDialog.textTitle": "Konversi Teks ke Tabel",
+ "DE.Views.TextToTableDialog.textTableSize": "Ukuran tabel",
+ "DE.Views.TextToTableDialog.textTitle": "Konversi teks ke tabel",
"DE.Views.TextToTableDialog.textWindow": "Autofit ke jendela",
"DE.Views.TextToTableDialog.txtAutoText": "Otomatis",
- "DE.Views.Toolbar.capBtnAddComment": "Tambahkan Komentar",
+ "DE.Views.Toolbar.capBtnAddComment": "Tambahkan komentar",
"DE.Views.Toolbar.capBtnBlankPage": "Halaman Kosong",
"DE.Views.Toolbar.capBtnColumns": "Kolom",
"DE.Views.Toolbar.capBtnComment": "Komentar",
@@ -2759,11 +2927,12 @@
"DE.Views.Toolbar.capBtnInsImage": "Gambar",
"DE.Views.Toolbar.capBtnInsPagebreak": "Breaks",
"DE.Views.Toolbar.capBtnInsShape": "Bentuk",
+ "DE.Views.Toolbar.capBtnInsSmartArt": "SmartArt",
"DE.Views.Toolbar.capBtnInsSymbol": "Simbol",
"DE.Views.Toolbar.capBtnInsTable": "Tabel",
"DE.Views.Toolbar.capBtnInsTextart": "Text Art",
"DE.Views.Toolbar.capBtnInsTextbox": "Kotak Teks",
- "DE.Views.Toolbar.capBtnLineNumbers": "Nomor Garis",
+ "DE.Views.Toolbar.capBtnLineNumbers": "Nomor garis",
"DE.Views.Toolbar.capBtnMargins": "Margin",
"DE.Views.Toolbar.capBtnPageOrient": "Orientasi",
"DE.Views.Toolbar.capBtnPageSize": "Ukuran",
@@ -2909,6 +3078,7 @@
"DE.Views.Toolbar.tipInsertImage": "Sisipkan Gambar",
"DE.Views.Toolbar.tipInsertNum": "Sisipkan Nomor Halaman",
"DE.Views.Toolbar.tipInsertShape": "Sisipkan Bentuk Otomatis",
+ "DE.Views.Toolbar.tipInsertSmartArt": "Sisipkan SmartArt",
"DE.Views.Toolbar.tipInsertSymbol": "Sisipkan simbol",
"DE.Views.Toolbar.tipInsertTable": "Sisipkan Tabel",
"DE.Views.Toolbar.tipInsertText": "Sisipkan kotak teks",
@@ -2980,13 +3150,15 @@
"DE.Views.Toolbar.txtScheme7": "Margin Sisa",
"DE.Views.Toolbar.txtScheme8": "Alur",
"DE.Views.Toolbar.txtScheme9": "Cetakan",
- "DE.Views.ViewTab.textAlwaysShowToolbar": "Selalu tampilkan toolbar",
+ "DE.Views.ViewTab.textAlwaysShowToolbar": "Selalu Tampilkan Bilah Alat",
"DE.Views.ViewTab.textDarkDocument": "Dokumen gelap",
"DE.Views.ViewTab.textFitToPage": "Sesuaikan Halaman",
"DE.Views.ViewTab.textFitToWidth": "Sesuaikan Lebar",
- "DE.Views.ViewTab.textInterfaceTheme": "Tema interface",
+ "DE.Views.ViewTab.textInterfaceTheme": "Tema Antar Muka",
+ "DE.Views.ViewTab.textLeftMenu": "Panel Kiri",
"DE.Views.ViewTab.textNavigation": "Navigasi",
"DE.Views.ViewTab.textOutline": "Tajuk",
+ "DE.Views.ViewTab.textRightMenu": "Panel Kanan",
"DE.Views.ViewTab.textRulers": "Penggaris",
"DE.Views.ViewTab.textStatusBar": "Bar Status",
"DE.Views.ViewTab.textZoom": "Pembesaran",
@@ -3000,8 +3172,8 @@
"DE.Views.WatermarkSettingsDialog.textColor": "Warna teks",
"DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonal",
"DE.Views.WatermarkSettingsDialog.textFont": "Huruf",
- "DE.Views.WatermarkSettingsDialog.textFromFile": "Dari File",
- "DE.Views.WatermarkSettingsDialog.textFromStorage": "Dari Penyimpanan",
+ "DE.Views.WatermarkSettingsDialog.textFromFile": "Dari file",
+ "DE.Views.WatermarkSettingsDialog.textFromStorage": "Dari penyimpanan",
"DE.Views.WatermarkSettingsDialog.textFromUrl": "Dari URL",
"DE.Views.WatermarkSettingsDialog.textHor": "Horisontal",
"DE.Views.WatermarkSettingsDialog.textImageW": "Watermark gambar",
@@ -3010,13 +3182,13 @@
"DE.Views.WatermarkSettingsDialog.textLayout": "Layout",
"DE.Views.WatermarkSettingsDialog.textNone": "Tidak ada",
"DE.Views.WatermarkSettingsDialog.textScale": "Skala",
- "DE.Views.WatermarkSettingsDialog.textSelect": "Pilih Gambar",
+ "DE.Views.WatermarkSettingsDialog.textSelect": "Pilih gambar",
"DE.Views.WatermarkSettingsDialog.textStrikeout": "Coret ganda",
"DE.Views.WatermarkSettingsDialog.textText": "Teks",
"DE.Views.WatermarkSettingsDialog.textTextW": "Watermark teks",
- "DE.Views.WatermarkSettingsDialog.textTitle": "Pengaturan Watermark",
+ "DE.Views.WatermarkSettingsDialog.textTitle": "Pengaturan watermark",
"DE.Views.WatermarkSettingsDialog.textTransparency": "Semi Transparan",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Garis bawah",
- "DE.Views.WatermarkSettingsDialog.tipFontName": "Nama Font",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Ukuran Huruf"
+ "DE.Views.WatermarkSettingsDialog.tipFontName": "Nama font",
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Ukuran font"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/it.json b/apps/documenteditor/main/locale/it.json
index af5e3f2ea..6656ea399 100644
--- a/apps/documenteditor/main/locale/it.json
+++ b/apps/documenteditor/main/locale/it.json
@@ -125,6 +125,13 @@
"Common.define.chartData.textScatterSmoothMarker": "Grafico a dispersione con linee e indicatori",
"Common.define.chartData.textStock": "Azionario",
"Common.define.chartData.textSurface": "Superficie",
+ "Common.define.smartArt.textBalance": "Equilibri",
+ "Common.define.smartArt.textEquation": "Equazione",
+ "Common.define.smartArt.textFunnel": "Imbuto",
+ "Common.define.smartArt.textList": "Elenco",
+ "Common.define.smartArt.textMatrix": "Matrice",
+ "Common.define.smartArt.textOther": "Altro",
+ "Common.define.smartArt.textPicture": "Immagine",
"Common.Translation.textMoreButton": "più",
"Common.Translation.warnFileLocked": "Non puoi modificare questo file perché è in fase di modifica in un'altra applicazione.",
"Common.Translation.warnFileLockedBtnEdit": "Crea copia",
@@ -288,6 +295,8 @@
"Common.Views.DocumentAccessDialog.textLoading": "Caricamento in corso...",
"Common.Views.DocumentAccessDialog.textTitle": "Impostazioni di condivisione",
"Common.Views.ExternalDiagramEditor.textTitle": "Editor di grafici",
+ "Common.Views.ExternalEditor.textClose": "Chiudi",
+ "Common.Views.ExternalEditor.textSave": "Salva ed esci",
"Common.Views.ExternalMergeEditor.textTitle": "Destinatari Stampa unione",
"Common.Views.ExternalOleEditor.textTitle": "Editor di fogli di calcolo",
"Common.Views.Header.labelCoUsersDescr": "Utenti che stanno modificando il file:",
@@ -354,6 +363,7 @@
"Common.Views.Plugins.textStart": "Inizia",
"Common.Views.Plugins.textStop": "Termina",
"Common.Views.Protection.hintAddPwd": "Crittografa con password",
+ "Common.Views.Protection.hintDelPwd": "Elimina password",
"Common.Views.Protection.hintPwd": "Modifica o rimuovi password",
"Common.Views.Protection.hintSignature": "Aggiungi firma digitale o riga di firma",
"Common.Views.Protection.txtAddPwd": "Aggiungi password",
@@ -435,7 +445,7 @@
"Common.Views.ReviewChanges.txtSharing": "Condivisione",
"Common.Views.ReviewChanges.txtSpelling": "Controllo ortografico",
"Common.Views.ReviewChanges.txtTurnon": "Traccia cambiamenti",
- "Common.Views.ReviewChanges.txtView": "Modalità Visualizzazione",
+ "Common.Views.ReviewChanges.txtView": "Modalità di visualizzazione",
"Common.Views.ReviewChangesDialog.textTitle": "Rivedi modifiche",
"Common.Views.ReviewChangesDialog.txtAccept": "Accetta",
"Common.Views.ReviewChangesDialog.txtAcceptAll": "Accetta tutte le modifiche",
@@ -591,6 +601,7 @@
"DE.Controllers.Main.errorSetPassword": "Impossibile impostare la password.",
"DE.Controllers.Main.errorStockChart": "Righe ordinate in modo errato. Per creare un grafico azionario posizionare i dati sul foglio nel seguente ordine: prezzo di apertura, prezzo massimo, prezzo minimo, prezzo di chiusura.",
"DE.Controllers.Main.errorSubmit": "Invio fallito.",
+ "DE.Controllers.Main.errorTextFormWrongFormat": "Il valore inserito non corrisponde al formato del campo.",
"DE.Controllers.Main.errorToken": "Il token di sicurezza del documento non è stato creato correttamente. Si prega di contattare l'amministratore del Server dei Documenti.",
"DE.Controllers.Main.errorTokenExpire": "Il token di sicurezza del documento è scaduto. Si prega di contattare l'amministratore del Server dei Documenti.",
"DE.Controllers.Main.errorUpdateVersion": "La versione del file è stata modificata. La pagina verrà ricaricata.",
@@ -638,6 +649,7 @@
"DE.Controllers.Main.textClose": "Chiudi",
"DE.Controllers.Main.textCloseTip": "Clicca su per chiudere la notifica",
"DE.Controllers.Main.textContactUs": "Contatta il team di vendite",
+ "DE.Controllers.Main.textContinue": "Continua",
"DE.Controllers.Main.textConvertEquation": "Questa equazione è stata creata con una vecchia versione dell'editor di equazioni che non è più supportata.Per modificarla, convertire l'equazione nel formato ML di Office Math. Convertire ora?",
"DE.Controllers.Main.textCustomLoader": "Si prega di notare che, in base ai termini della licenza, non si ha il diritto di modificare il caricatore. Si prega di contattare il nostro reparto vendite per ottenere un preventivo.",
"DE.Controllers.Main.textDisconnect": "Connessione persa",
@@ -658,6 +670,7 @@
"DE.Controllers.Main.textStrict": "Modalità Rigorosa",
"DE.Controllers.Main.textTryUndoRedo": "Le funzioni Annulla/Ripristina sono disabilitate per la Modalità di Co-editing Veloce. Clicca il pulsante 'Modalità Rigorosa' per passare alla Modalità di Co-editing Rigorosa per poter modificare il file senza l'interferenza di altri utenti e inviare le modifiche solamente dopo averle salvate. Puoi passare da una modalità all'altra di co-editing utilizzando le Impostazioni avanzate dell'editor.",
"DE.Controllers.Main.textTryUndoRedoWarn": "Le funzioni Annulla/Ripeti sono disattivate nella modalità rapida in modifica collaborativa.",
+ "DE.Controllers.Main.textUndo": "Annulla",
"DE.Controllers.Main.titleLicenseExp": "La licenza è scaduta",
"DE.Controllers.Main.titleServerVersion": "L'editor è stato aggiornato",
"DE.Controllers.Main.titleUpdateVersion": "Versione Modificata",
@@ -1329,12 +1342,17 @@
"DE.Views.CellsAddDialog.textUp": "Sopra il cursore",
"DE.Views.ChartSettings.textAdvanced": "Mostra impostazioni avanzate",
"DE.Views.ChartSettings.textChartType": "Cambia tipo di grafico",
+ "DE.Views.ChartSettings.textDown": "Giù",
"DE.Views.ChartSettings.textEditData": "Modifica dati",
"DE.Views.ChartSettings.textHeight": "Altezza",
+ "DE.Views.ChartSettings.textLeft": "A sinistra",
"DE.Views.ChartSettings.textOriginalSize": "Dimensione reale",
+ "DE.Views.ChartSettings.textPerspective": "Prospettiva",
+ "DE.Views.ChartSettings.textRight": "A destra",
"DE.Views.ChartSettings.textSize": "Dimensione",
"DE.Views.ChartSettings.textStyle": "Stile",
"DE.Views.ChartSettings.textUndock": "Disancora dal pannello",
+ "DE.Views.ChartSettings.textUp": "Verso l'alto",
"DE.Views.ChartSettings.textWidth": "Larghezza",
"DE.Views.ChartSettings.textWrap": "Stile di disposizione testo",
"DE.Views.ChartSettings.txtBehind": "Dietro al testo",
@@ -1426,6 +1444,8 @@
"DE.Views.DateTimeDialog.textLang": "Lingua",
"DE.Views.DateTimeDialog.textUpdate": "Aggiorna automaticamente",
"DE.Views.DateTimeDialog.txtTitle": "Data e ora",
+ "DE.Views.DocProtection.hintProtectDoc": "Proteggi documento",
+ "DE.Views.DocProtection.txtProtectDoc": "Proteggi documento",
"DE.Views.DocumentHolder.aboveText": "Al di sopra",
"DE.Views.DocumentHolder.addCommentText": "Aggiungi commento",
"DE.Views.DocumentHolder.advancedDropCapText": "Impostazioni di capolettera",
@@ -1751,6 +1771,7 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistiche",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Oggetto",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Simboli",
+ "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Etichette",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titolo documento",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Caricato",
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Parole",
@@ -1759,7 +1780,7 @@
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "Persone che hanno diritti",
"DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Avviso",
"DE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "con Password",
- "DE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteggi Documento",
+ "DE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteggi documento",
"DE.Views.FileMenuPanels.ProtectDoc.strSignature": "con Firma",
"DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Modifica documento",
"DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "La modifica eliminerà le firme dal documento. Vuoi continuare?",
@@ -1841,6 +1862,7 @@
"DE.Views.FormSettings.textComplex": "Campo complesso",
"DE.Views.FormSettings.textConnected": "Campi collegati",
"DE.Views.FormSettings.textDelete": "Elimina",
+ "DE.Views.FormSettings.textDigits": "Cifre",
"DE.Views.FormSettings.textDisconnect": "Disconnetti",
"DE.Views.FormSettings.textDropDown": "Menù a discesca",
"DE.Views.FormSettings.textExact": "Esattamente",
@@ -1859,6 +1881,7 @@
"DE.Views.FormSettings.textMulti": "Campo con molte righe",
"DE.Views.FormSettings.textNever": "Mai",
"DE.Views.FormSettings.textNoBorder": "Senza bordo",
+ "DE.Views.FormSettings.textNone": "Nessuno",
"DE.Views.FormSettings.textPlaceholder": "Segnaposto",
"DE.Views.FormSettings.textRadiobox": "Pulsante opzione",
"DE.Views.FormSettings.textRequired": "Richiesto",
@@ -2059,6 +2082,7 @@
"DE.Views.LeftMenu.tipComments": "Commenti",
"DE.Views.LeftMenu.tipNavigation": "Navigazione",
"DE.Views.LeftMenu.tipOutline": "Intestazioni",
+ "DE.Views.LeftMenu.tipPageThumbnails": "Miniature delle pagine",
"DE.Views.LeftMenu.tipPlugins": "Plugin",
"DE.Views.LeftMenu.tipSearch": "Ricerca",
"DE.Views.LeftMenu.tipSupport": "Feedback & Supporto",
@@ -2366,6 +2390,14 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Imposta solo bordo superiore",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Nessun bordo",
+ "DE.Views.ProtectDialog.textComments": "Commenti",
+ "DE.Views.ProtectDialog.txtIncorrectPwd": "La password di conferma non corrisponde",
+ "DE.Views.ProtectDialog.txtOptional": "opzionale",
+ "DE.Views.ProtectDialog.txtPassword": "Password",
+ "DE.Views.ProtectDialog.txtProtect": "Proteggere",
+ "DE.Views.ProtectDialog.txtRepeat": "Ripeti la password",
+ "DE.Views.ProtectDialog.txtTitle": "Proteggere",
+ "DE.Views.ProtectDialog.txtWarning": "Importante: una volta persa o dimenticata, la password non potrà più essere recuperata. Conservalo in un luogo sicuro.",
"DE.Views.RightMenu.txtChartSettings": "Impostazioni grafico",
"DE.Views.RightMenu.txtFormSettings": "Impostazioni modulo",
"DE.Views.RightMenu.txtHeaderFooterSettings": "Impostazioni intestazione e piè di pagina",
@@ -2556,6 +2588,7 @@
"DE.Views.TableSettings.tipOuter": "Imposta solo bordi esterni",
"DE.Views.TableSettings.tipRight": "Imposta solo bordo esterno destro",
"DE.Views.TableSettings.tipTop": "Imposta solo bordo esterno superiore",
+ "DE.Views.TableSettings.txtGroupTable_Custom": "Personalizzato",
"DE.Views.TableSettings.txtNoBorders": "Nessun bordo",
"DE.Views.TableSettings.txtTable_Accent": "Accento",
"DE.Views.TableSettings.txtTable_Colorful": "Colorato",
@@ -2684,7 +2717,7 @@
"DE.Views.TextToTableDialog.textWindow": "Autofit alla finestra",
"DE.Views.TextToTableDialog.txtAutoText": "Automatico",
"DE.Views.Toolbar.capBtnAddComment": "Aggiungi commento",
- "DE.Views.Toolbar.capBtnBlankPage": "Pagina Vuota",
+ "DE.Views.Toolbar.capBtnBlankPage": "Pagina vuota",
"DE.Views.Toolbar.capBtnColumns": "Colonne",
"DE.Views.Toolbar.capBtnComment": "Commento",
"DE.Views.Toolbar.capBtnDateTime": "Data e ora",
@@ -2696,6 +2729,7 @@
"DE.Views.Toolbar.capBtnInsImage": "Immagine",
"DE.Views.Toolbar.capBtnInsPagebreak": "Interruzione di pagina",
"DE.Views.Toolbar.capBtnInsShape": "Forma",
+ "DE.Views.Toolbar.capBtnInsSmartArt": "SmartArt",
"DE.Views.Toolbar.capBtnInsSymbol": "Simbolo",
"DE.Views.Toolbar.capBtnInsTable": "Tabella",
"DE.Views.Toolbar.capBtnInsTextart": "Text Art",
diff --git a/apps/documenteditor/main/locale/ko.json b/apps/documenteditor/main/locale/ko.json
index adb40bf00..2fc8ea7f9 100644
--- a/apps/documenteditor/main/locale/ko.json
+++ b/apps/documenteditor/main/locale/ko.json
@@ -1379,6 +1379,8 @@
"DE.Views.DateTimeDialog.textLang": "언어",
"DE.Views.DateTimeDialog.textUpdate": "자동 업데이트",
"DE.Views.DateTimeDialog.txtTitle": "날짜 및 시간",
+ "DE.Views.DocProtection.hintProtectDoc": "문서 보호",
+ "DE.Views.DocProtection.txtProtectDoc": "문서 보호",
"DE.Views.DocumentHolder.aboveText": "위",
"DE.Views.DocumentHolder.addCommentText": "주석 추가",
"DE.Views.DocumentHolder.advancedDropCapText": "드롭 캡 설정",
@@ -2003,6 +2005,7 @@
"DE.Views.LineNumbersDialog.textStartAt": "시작",
"DE.Views.LineNumbersDialog.textTitle": "행번호",
"DE.Views.LineNumbersDialog.txtAutoText": "자동",
+ "DE.Views.Links.capBtnAddText": "텍스트추가",
"DE.Views.Links.capBtnBookmarks": "즐겨찾기",
"DE.Views.Links.capBtnCaption": "참조",
"DE.Views.Links.capBtnContentsUpdate": "표 업데이트",
@@ -2258,6 +2261,8 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "위쪽 테두리",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "자동",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "테두리 없음",
+ "DE.Views.ProtectDialog.txtProtect": "보호",
+ "DE.Views.ProtectDialog.txtTitle": "보호",
"DE.Views.RightMenu.txtChartSettings": "차트 설정",
"DE.Views.RightMenu.txtFormSettings": "폼 설정",
"DE.Views.RightMenu.txtHeaderFooterSettings": "머리글 및 바닥 글 설정",
diff --git a/apps/documenteditor/main/locale/pl.json b/apps/documenteditor/main/locale/pl.json
index 0e1986c03..da0465fe3 100644
--- a/apps/documenteditor/main/locale/pl.json
+++ b/apps/documenteditor/main/locale/pl.json
@@ -1405,6 +1405,8 @@
"DE.Views.DateTimeDialog.textLang": "Język",
"DE.Views.DateTimeDialog.textUpdate": "Aktualizuj automatycznie",
"DE.Views.DateTimeDialog.txtTitle": "Data i czas",
+ "DE.Views.DocProtection.hintProtectDoc": "Chroń dokument",
+ "DE.Views.DocProtection.txtProtectDoc": "Chroń dokument",
"DE.Views.DocumentHolder.aboveText": "Powyżej",
"DE.Views.DocumentHolder.addCommentText": "Dodaj komentarz",
"DE.Views.DocumentHolder.advancedDropCapText": "Inicjały Ustawienia",
diff --git a/apps/documenteditor/main/locale/pt-pt.json b/apps/documenteditor/main/locale/pt-pt.json
index 31a5d12e9..276b4d966 100644
--- a/apps/documenteditor/main/locale/pt-pt.json
+++ b/apps/documenteditor/main/locale/pt-pt.json
@@ -125,6 +125,11 @@
"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.smartArt.textEquation": "Equação",
+ "Common.define.smartArt.textFunnel": "Funil",
+ "Common.define.smartArt.textList": "Lista",
+ "Common.define.smartArt.textOther": "Outro",
+ "Common.define.smartArt.textPicture": "Imagem",
"Common.Translation.textMoreButton": "Mais",
"Common.Translation.warnFileLocked": "Não pode editar o ficheiro porque este está a ser editado por outra aplicação.",
"Common.Translation.warnFileLockedBtnEdit": "Criar uma cópia",
@@ -645,6 +650,7 @@
"DE.Controllers.Main.textClose": "Fechar",
"DE.Controllers.Main.textCloseTip": "Clique para fechar a dica",
"DE.Controllers.Main.textContactUs": "Contacte a equipa comercial",
+ "DE.Controllers.Main.textContinue": "Continuar",
"DE.Controllers.Main.textConvertEquation": "Esta equação foi criada com uma versão anterior da aplicação e já não é suportada. Para a editar, tem que converter a equação para o formato Office Math ML. Converter agora?",
"DE.Controllers.Main.textCustomLoader": "Tenha em conta de que, de acordo com os termos da licença, não tem permissões para alterar o carregador. Por favor contacte a equipa comercial.",
"DE.Controllers.Main.textDisconnect": "A ligação está perdida",
@@ -665,6 +671,7 @@
"DE.Controllers.Main.textStrict": "Modo estrito",
"DE.Controllers.Main.textTryUndoRedo": "As funções Desfazer/Refazer foram desativadas para se poder co-editar o documento. Clique no botão 'Modo estrito' para ativar este modo de edição e editar o ficheiro sem ser incomodado por outros utilizadores enviando apenas as suas alterações assim que terminar e guardar. Pode alternar entre modos de co-edição através das definições avançadas.",
"DE.Controllers.Main.textTryUndoRedoWarn": "As funções Desfazer/Refazer estão desativadas no modo de co-edição rápida.",
+ "DE.Controllers.Main.textUndo": "Desfazer",
"DE.Controllers.Main.titleLicenseExp": "Licença expirada",
"DE.Controllers.Main.titleServerVersion": "Editor atualizado",
"DE.Controllers.Main.titleUpdateVersion": "Versão alterada",
@@ -1447,7 +1454,7 @@
"DE.Views.DateTimeDialog.textFormat": "Formatos",
"DE.Views.DateTimeDialog.textLang": "Idioma",
"DE.Views.DateTimeDialog.textUpdate": "Atualizar automaticamente",
- "DE.Views.DateTimeDialog.txtTitle": "Data e Hora",
+ "DE.Views.DateTimeDialog.txtTitle": "Data e hora",
"DE.Views.DocProtection.hintProtectDoc": "Proteger o documento",
"DE.Views.DocProtection.txtDocProtectedComment": "O documento está protegido. Apenas pode inserir comentários a este documento.",
"DE.Views.DocProtection.txtDocProtectedForms": "O documento está protegido. Apenas pode preencher formulários neste documento.",
@@ -1788,6 +1795,7 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Estatísticas",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Assunto",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Símbolos",
+ "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tags",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Carregado",
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Palavras",
@@ -2750,7 +2758,7 @@
"DE.Views.Toolbar.capBtnBlankPage": "Página vazia",
"DE.Views.Toolbar.capBtnColumns": "Colunas",
"DE.Views.Toolbar.capBtnComment": "Comentário",
- "DE.Views.Toolbar.capBtnDateTime": "Data e Hora",
+ "DE.Views.Toolbar.capBtnDateTime": "Data e hora",
"DE.Views.Toolbar.capBtnInsChart": "Gráfico",
"DE.Views.Toolbar.capBtnInsControls": "Controlos de conteúdo",
"DE.Views.Toolbar.capBtnInsDropcap": "Letra capitular",
@@ -2759,6 +2767,7 @@
"DE.Views.Toolbar.capBtnInsImage": "Imagem",
"DE.Views.Toolbar.capBtnInsPagebreak": "Quebras",
"DE.Views.Toolbar.capBtnInsShape": "Forma",
+ "DE.Views.Toolbar.capBtnInsSmartArt": "SmartArt",
"DE.Views.Toolbar.capBtnInsSymbol": "Símbolo",
"DE.Views.Toolbar.capBtnInsTable": "Tabela",
"DE.Views.Toolbar.capBtnInsTextart": "Lágrima",
diff --git a/apps/documenteditor/main/locale/pt.json b/apps/documenteditor/main/locale/pt.json
index bd9eef6e6..44dbacfe9 100644
--- a/apps/documenteditor/main/locale/pt.json
+++ b/apps/documenteditor/main/locale/pt.json
@@ -125,6 +125,165 @@
"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.smartArt.textAccentedPicture": "Imagem com Ênfase",
+ "Common.define.smartArt.textAccentProcess": "Processo em Destaque",
+ "Common.define.smartArt.textAlternatingFlow": "Fluxo alternado",
+ "Common.define.smartArt.textAlternatingHexagons": "Hexágonos alternados",
+ "Common.define.smartArt.textAlternatingPictureBlocks": "Blocos de imagem alternados",
+ "Common.define.smartArt.textAlternatingPictureCircles": "Círculos de imagens alternadas",
+ "Common.define.smartArt.textArchitectureLayout": "Layout de arquitetura",
+ "Common.define.smartArt.textArrowRibbon": "Seta em Forma de Fita",
+ "Common.define.smartArt.textAscendingPictureAccentProcess": "Processo de acentuação da imagem ascendente",
+ "Common.define.smartArt.textBalance": "Saldo",
+ "Common.define.smartArt.textBasicBendingProcess": "Processo Básico de Dobragem",
+ "Common.define.smartArt.textBasicBlockList": "Lista básica de blocos",
+ "Common.define.smartArt.textBasicChevronProcess": "Processo Básico em Divisas",
+ "Common.define.smartArt.textBasicCycle": "Ciclo Básico",
+ "Common.define.smartArt.textBasicMatrix": "Matriz Básica",
+ "Common.define.smartArt.textBasicPie": "Torta Básica",
+ "Common.define.smartArt.textBasicProcess": "Processo Básico",
+ "Common.define.smartArt.textBasicPyramid": "Pirâmide Básica",
+ "Common.define.smartArt.textBasicRadial": "Radial Básico",
+ "Common.define.smartArt.textBasicTarget": "Alvo Básico",
+ "Common.define.smartArt.textBasicTimeline": "Linha do tempo básica",
+ "Common.define.smartArt.textBasicVenn": "Venn básico",
+ "Common.define.smartArt.textBendingPictureAccentList": "Lista de Acentos de Imagem Dobrada",
+ "Common.define.smartArt.textBendingPictureBlocks": "Dobrar Blocos de Imagem",
+ "Common.define.smartArt.textBendingPictureCaption": "Dobrando a legenda da imagem",
+ "Common.define.smartArt.textBendingPictureCaptionList": "Lista de legendas de imagens dobradas",
+ "Common.define.smartArt.textBendingPictureSemiTranparentText": "Dobrando o Texto Semitransparente da Imagem",
+ "Common.define.smartArt.textBlockCycle": "Ciclo de bloco",
+ "Common.define.smartArt.textBubblePictureList": "Lista de imagens de bolhas",
+ "Common.define.smartArt.textCaptionedPictures": "Imagens legendadas",
+ "Common.define.smartArt.textChevronAccentProcess": "Processo de Ênfase em Divisas",
+ "Common.define.smartArt.textChevronList": "Lista de Divisas",
+ "Common.define.smartArt.textCircleAccentTimeline": "Linha do tempo de destaque do círculo",
+ "Common.define.smartArt.textCircleArrowProcess": "Processo de seta circular",
+ "Common.define.smartArt.textCirclePictureHierarchy": "Hierarquia de imagem do círculo",
+ "Common.define.smartArt.textCircleProcess": "Processo Círculo",
+ "Common.define.smartArt.textCircleRelationship": "Relacionamento do Círculo",
+ "Common.define.smartArt.textCircularBendingProcess": "Processo de dobra circular",
+ "Common.define.smartArt.textCircularPictureCallout": "Texto explicativo de imagem circular",
+ "Common.define.smartArt.textClosedChevronProcess": "Processo Fechado em Divisas",
+ "Common.define.smartArt.textContinuousArrowProcess": "Processo de Seta Contínua",
+ "Common.define.smartArt.textContinuousBlockProcess": "Processo de Bloco Contínuo",
+ "Common.define.smartArt.textContinuousCycle": "Ciclo Contínuo",
+ "Common.define.smartArt.textContinuousPictureList": "Lista de Imagens Contínua",
+ "Common.define.smartArt.textConvergingArrows": "Setas convergentes",
+ "Common.define.smartArt.textConvergingRadial": "Radial convergente",
+ "Common.define.smartArt.textConvergingText": "Texto convergente",
+ "Common.define.smartArt.textCounterbalanceArrows": "Setas de contrapeso",
+ "Common.define.smartArt.textCycle": "Ciclo",
+ "Common.define.smartArt.textCycleMatrix": "Matriz de Ciclo",
+ "Common.define.smartArt.textDescendingBlockList": "Lista de Bloqueios Descendentes",
+ "Common.define.smartArt.textDescendingProcess": "Processo descendente",
+ "Common.define.smartArt.textDetailedProcess": "Processo Detalhado",
+ "Common.define.smartArt.textDivergingArrows": "Flechas divergentes",
+ "Common.define.smartArt.textDivergingRadial": "Radial divergente",
+ "Common.define.smartArt.textEquation": "Equação",
+ "Common.define.smartArt.textFramedTextPicture": "Imagem de texto emoldurada",
+ "Common.define.smartArt.textFunnel": "Funil",
+ "Common.define.smartArt.textGear": "Engrenagem",
+ "Common.define.smartArt.textGridMatrix": "Matriz de grade",
+ "Common.define.smartArt.textGroupedList": "Lista Agrupada",
+ "Common.define.smartArt.textHalfCircleOrganizationChart": "Organograma de meio círculo",
+ "Common.define.smartArt.textHexagonCluster": "Conjunto Hexagonal",
+ "Common.define.smartArt.textHexagonRadial": "Radial Hexágono",
+ "Common.define.smartArt.textHierarchy": "Hierarquia",
+ "Common.define.smartArt.textHierarchyList": "Lista de hierarquia",
+ "Common.define.smartArt.textHorizontalBulletList": "Lista de marcadores horizontais",
+ "Common.define.smartArt.textHorizontalHierarchy": "Hierarquia Horizontal",
+ "Common.define.smartArt.textHorizontalLabeledHierarchy": "Hierarquia Horizontal Rotulada",
+ "Common.define.smartArt.textHorizontalMultiLevelHierarchy": "Hierarquia horizontal multinível",
+ "Common.define.smartArt.textHorizontalOrganizationChart": "Organograma Horizontal",
+ "Common.define.smartArt.textHorizontalPictureList": "Lista de imagens horizontais",
+ "Common.define.smartArt.textIncreasingArrowProcess": "Processo de seta crescente",
+ "Common.define.smartArt.textIncreasingCircleProcess": "Aumentando o Processo do Círculo",
+ "Common.define.smartArt.textInterconnectedBlockProcess": "Processo de bloco interconectado",
+ "Common.define.smartArt.textInterconnectedRings": "Anéis Interconectados",
+ "Common.define.smartArt.textInvertedPyramid": "Pirâmide invertida",
+ "Common.define.smartArt.textLabeledHierarchy": "Hierarquia rotulada",
+ "Common.define.smartArt.textLinearVenn": "Venn Linear",
+ "Common.define.smartArt.textLinedList": "Lista alinhada",
+ "Common.define.smartArt.textList": "Lista",
+ "Common.define.smartArt.textMatrix": "Matriz",
+ "Common.define.smartArt.textMultidirectionalCycle": "Ciclo multidirecional",
+ "Common.define.smartArt.textNameAndTitleOrganizationChart": "Organograma de Nome e Título",
+ "Common.define.smartArt.textNestedTarget": "Alvo Aninhado",
+ "Common.define.smartArt.textNondirectionalCycle": "Ciclo Não Direcional",
+ "Common.define.smartArt.textOpposingArrows": "Setas Opostas",
+ "Common.define.smartArt.textOpposingIdeas": "Ideias opostas",
+ "Common.define.smartArt.textOrganizationChart": "Organograma",
+ "Common.define.smartArt.textOther": "Outro",
+ "Common.define.smartArt.textPhasedProcess": "Processo em fases",
+ "Common.define.smartArt.textPicture": "Imagem",
+ "Common.define.smartArt.textPictureAccentBlocks": "Blocos de destaque de imagem",
+ "Common.define.smartArt.textPictureAccentList": "Lista de destaques da imagem",
+ "Common.define.smartArt.textPictureAccentProcess": "Processo de destaque da imagem",
+ "Common.define.smartArt.textPictureCaptionList": "Lista de legendas de imagens",
+ "Common.define.smartArt.textPictureFrame": "Porta-retrato",
+ "Common.define.smartArt.textPictureGrid": "Grade de imagens",
+ "Common.define.smartArt.textPictureLineup": "Alinhamento de imagens",
+ "Common.define.smartArt.textPictureOrganizationChart": "Organograma de imagens",
+ "Common.define.smartArt.textPictureStrips": "Tiras de imagem",
+ "Common.define.smartArt.textPieProcess": "Processo em Pizza",
+ "Common.define.smartArt.textPlusAndMinus": "Mais e menos",
+ "Common.define.smartArt.textProcess": "Processo",
+ "Common.define.smartArt.textProcessArrows": "Setas de processo",
+ "Common.define.smartArt.textProcessList": "Lista de processos",
+ "Common.define.smartArt.textPyramid": "Pirâmide",
+ "Common.define.smartArt.textPyramidList": "Lista de pirâmides",
+ "Common.define.smartArt.textRadialCluster": "Aglomerado Radial",
+ "Common.define.smartArt.textRadialCycle": "Ciclo radial",
+ "Common.define.smartArt.textRadialList": "Lista radial",
+ "Common.define.smartArt.textRadialPictureList": "Lista de imagens radiais",
+ "Common.define.smartArt.textRadialVenn": "Venn Radial",
+ "Common.define.smartArt.textRandomToResultProcess": "Processo aleatório para resultado",
+ "Common.define.smartArt.textRelationship": "Relação",
+ "Common.define.smartArt.textRepeatingBendingProcess": "Repetindo o processo de dobra",
+ "Common.define.smartArt.textReverseList": "Lista reversa",
+ "Common.define.smartArt.textSegmentedCycle": "Ciclo Segmentado",
+ "Common.define.smartArt.textSegmentedProcess": "Processo segmentado",
+ "Common.define.smartArt.textSegmentedPyramid": "Pirâmide segmentada",
+ "Common.define.smartArt.textSnapshotPictureList": "Lista de fotos instantâneas",
+ "Common.define.smartArt.textSpiralPicture": "Imagem em espiral",
+ "Common.define.smartArt.textSquareAccentList": "Lista de Acentos Quadrados",
+ "Common.define.smartArt.textStackedList": "Lista empilhada",
+ "Common.define.smartArt.textStackedVenn": "Venn Empilhado",
+ "Common.define.smartArt.textStaggeredProcess": "Processo escalonado",
+ "Common.define.smartArt.textStepDownProcess": "Processo de redução",
+ "Common.define.smartArt.textStepUpProcess": "Processo de intensificação",
+ "Common.define.smartArt.textSubStepProcess": "Processo de subetapas",
+ "Common.define.smartArt.textTabbedArc": "Arco com abas",
+ "Common.define.smartArt.textTableHierarchy": "Hierarquia da Tabela",
+ "Common.define.smartArt.textTableList": "Lista de Tabelas",
+ "Common.define.smartArt.textTabList": "Lista de guias",
+ "Common.define.smartArt.textTargetList": "Lista de alvos",
+ "Common.define.smartArt.textTextCycle": "Ciclo de texto",
+ "Common.define.smartArt.textThemePictureAccent": "Destaque da Imagem do Tema",
+ "Common.define.smartArt.textThemePictureAlternatingAccent": "Acento Alternado da Imagem do Tema",
+ "Common.define.smartArt.textThemePictureGrid": "Grade de imagens do tema",
+ "Common.define.smartArt.textTitledMatrix": "Matriz intitulada",
+ "Common.define.smartArt.textTitledPictureAccentList": "Lista de Acentos de Imagem Intitulada",
+ "Common.define.smartArt.textTitledPictureBlocks": "Blocos de imagens intitulados",
+ "Common.define.smartArt.textTitlePictureLineup": "Título Imagem Alinhamento",
+ "Common.define.smartArt.textTrapezoidList": "Lista de trapézios",
+ "Common.define.smartArt.textUpwardArrow": "Seta para cima",
+ "Common.define.smartArt.textVaryingWidthList": "Lista de largura variável",
+ "Common.define.smartArt.textVerticalAccentList": "Lista de acentos verticais",
+ "Common.define.smartArt.textVerticalArrowList": "Lista de setas verticais",
+ "Common.define.smartArt.textVerticalBendingProcess": "Processo de dobra vertical",
+ "Common.define.smartArt.textVerticalBlockList": "Lista de Bloqueios Verticais",
+ "Common.define.smartArt.textVerticalBoxList": "Lista de caixas verticais",
+ "Common.define.smartArt.textVerticalBracketList": "Lista de colchetes verticais",
+ "Common.define.smartArt.textVerticalBulletList": "Lista de marcadores verticais",
+ "Common.define.smartArt.textVerticalChevronList": "Lista Vertical em Divisas",
+ "Common.define.smartArt.textVerticalCircleList": "Lista de círculos verticais",
+ "Common.define.smartArt.textVerticalCurvedList": "Lista Curva Vertical",
+ "Common.define.smartArt.textVerticalEquation": "Equação Vertical",
+ "Common.define.smartArt.textVerticalPictureAccentList": "Lista Vertical de Acentos de Imagem",
+ "Common.define.smartArt.textVerticalPictureList": "Lista de imagens verticais",
+ "Common.define.smartArt.textVerticalProcess": "Processo Vertical",
"Common.Translation.textMoreButton": "Mais",
"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",
@@ -281,7 +440,7 @@
"Common.Views.Comments.txtEmpty": "Não há comentários no documento.",
"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",
+ "Common.Views.CopyWarningDialog.textTitle": "Copiar, Cortar e Colar",
"Common.Views.CopyWarningDialog.textToCopy": "para Copiar",
"Common.Views.CopyWarningDialog.textToCut": "para Cortar",
"Common.Views.CopyWarningDialog.textToPaste": "para Colar",
@@ -401,7 +560,7 @@
"Common.Views.ReviewChanges.txtAcceptCurrent": "Aceitar alterações atuais",
"Common.Views.ReviewChanges.txtChat": "Chat",
"Common.Views.ReviewChanges.txtClose": "Fechar",
- "Common.Views.ReviewChanges.txtCoAuthMode": "Modo de Coedição",
+ "Common.Views.ReviewChanges.txtCoAuthMode": "Modo de coedição",
"Common.Views.ReviewChanges.txtCommentRemAll": "Excluir Todos os Comentários",
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Excluir comentários atuais",
"Common.Views.ReviewChanges.txtCommentRemMy": "Excluir meus comentários",
@@ -417,7 +576,7 @@
"Common.Views.ReviewChanges.txtEditing": "Editando",
"Common.Views.ReviewChanges.txtFinal": "Todas as alterações aceitas {0}",
"Common.Views.ReviewChanges.txtFinalCap": "Final",
- "Common.Views.ReviewChanges.txtHistory": "Histórico de Versão",
+ "Common.Views.ReviewChanges.txtHistory": "Histórico de versão",
"Common.Views.ReviewChanges.txtMarkup": "Todas as alterações {0}",
"Common.Views.ReviewChanges.txtMarkupCap": "Marcação",
"Common.Views.ReviewChanges.txtMarkupSimple": "Todas as mudanças {0} Não há balões",
@@ -441,7 +600,7 @@
"Common.Views.ReviewChanges.txtView": "Modo de exibição",
"Common.Views.ReviewChangesDialog.textTitle": "Rever alterações",
"Common.Views.ReviewChangesDialog.txtAccept": "Aceitar",
- "Common.Views.ReviewChangesDialog.txtAcceptAll": "Aceitar todas as alterações",
+ "Common.Views.ReviewChangesDialog.txtAcceptAll": "Aceitar todas as alterações.",
"Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Aceitar a alteração atual",
"Common.Views.ReviewChangesDialog.txtNext": "Para a próxima alteração",
"Common.Views.ReviewChangesDialog.txtPrev": "Para a alteração anterior",
@@ -503,9 +662,9 @@
"Common.Views.SignDialog.tipFontSize": "Tamanho da fonte",
"Common.Views.SignSettingsDialog.textAllowComment": "Permitir ao signatário inserir comentários no diálogo de assinatura",
"Common.Views.SignSettingsDialog.textDefInstruction": "Antes de assinar este documento, verifique se o conteúdo que está a assinar está correto.",
- "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail",
+ "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail do assinante sugerido",
"Common.Views.SignSettingsDialog.textInfoName": "Nome",
- "Common.Views.SignSettingsDialog.textInfoTitle": "Título do Signatário",
+ "Common.Views.SignSettingsDialog.textInfoTitle": "Título do assinante",
"Common.Views.SignSettingsDialog.textInstructions": "Instruções para o Assinante",
"Common.Views.SignSettingsDialog.textShowDate": "Exibir a data da assinatura na linha da assinatura",
"Common.Views.SignSettingsDialog.textTitle": "Configurações da Assinatura",
@@ -556,6 +715,7 @@
"DE.Controllers.LeftMenu.warnReplaceString": "{0} não é um caractere especial válido para o campo de substituição.",
"DE.Controllers.Main.applyChangesTextText": "Carregando as alterações...",
"DE.Controllers.Main.applyChangesTitleText": "Carregando as alterações",
+ "DE.Controllers.Main.confirmMaxChangesSize": "O tamanho das ações excede a limitação definida para seu servidor. Pressione \"Desfazer\" para cancelar sua última ação ou pressione \"Continue\" para manter a ação localmente (você precisa baixar o arquivo ou copiar seu conteúdo para garantir que nada seja perdido).",
"DE.Controllers.Main.convertationTimeoutText": "Tempo limite de conversão excedido.",
"DE.Controllers.Main.criticalErrorExtText": "Pressione \"OK\" para voltar para a lista de documentos.",
"DE.Controllers.Main.criticalErrorTitle": "Erro",
@@ -582,6 +742,11 @@
"DE.Controllers.Main.errorFilePassProtect": "O documento é protegido por senha e não pode ser aberto.",
"DE.Controllers.Main.errorFileSizeExceed": "O tamanho do arquivo excede o limite de seu servidor. Por favor, contate seu administrador de Servidor de Documentos para detalhes.",
"DE.Controllers.Main.errorForceSave": "Ocorreu um erro na gravação. Favor utilizar a opção 'Baixar como' para gravar o arquivo em seu computador ou tente novamente mais tarde.",
+ "DE.Controllers.Main.errorInconsistentExt": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo não corresponde à extensão do arquivo.",
+ "DE.Controllers.Main.errorInconsistentExtDocx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a documentos de texto (por exemplo, docx), mas o arquivo tem a extensão inconsistente: %1.",
+ "DE.Controllers.Main.errorInconsistentExtPdf": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a um dos seguintes formatos: pdf/djvu/xps/oxps, mas o arquivo tem a extensão inconsistente: %1.",
+ "DE.Controllers.Main.errorInconsistentExtPptx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a apresentações (por exemplo, pptx), mas o arquivo tem a extensão inconsistente: %1.",
+ "DE.Controllers.Main.errorInconsistentExtXlsx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a planilhas (por exemplo, xlsx), mas o arquivo tem a extensão inconsistente: %1.",
"DE.Controllers.Main.errorKeyEncrypt": "Descritor de chave desconhecido",
"DE.Controllers.Main.errorKeyExpire": "Descritor de chave expirado",
"DE.Controllers.Main.errorLoadingFont": "As fontes não foram carregadas. Entre em contato com o administrador do Document Server.",
@@ -645,6 +810,7 @@
"DE.Controllers.Main.textClose": "Fechar",
"DE.Controllers.Main.textCloseTip": "Clique para fechar a dica",
"DE.Controllers.Main.textContactUs": "Contate as vendas",
+ "DE.Controllers.Main.textContinue": "Continuar",
"DE.Controllers.Main.textConvertEquation": "Esta equação foi criada com uma versão antiga do editor de equação que não é mais compatível. Para editá-lo, converta a equação para o formato Office Math ML. Converter agora?",
"DE.Controllers.Main.textCustomLoader": "Por favor, observe que de acordo com os termos de licença, você não tem autorização para alterar o carregador. Por favor, contate o Departamento de Vendas para fazer cotação.",
"DE.Controllers.Main.textDisconnect": "A conexão está perdida",
@@ -665,6 +831,7 @@
"DE.Controllers.Main.textStrict": "Modo estrito",
"DE.Controllers.Main.textTryUndoRedo": "As funções Desfazer/Refazer ficam desabilitadas no modo de Coedição Rápida. Selecione o modo 'Estrito' para editar o aquivo sem que outros usuários interfiram e envie suas mudanças somente ao salvar o documento. Você pode alternar entre os modos de coedição usando as Configurações Avançadas.\",",
"DE.Controllers.Main.textTryUndoRedoWarn": "As funções Desfazer/Refazer estão desabilitadas para o modo de coedição rápido",
+ "DE.Controllers.Main.textUndo": "Desfazer",
"DE.Controllers.Main.titleLicenseExp": "A licença expirou",
"DE.Controllers.Main.titleServerVersion": "Editor atualizado",
"DE.Controllers.Main.titleUpdateVersion": "Versão alterada",
@@ -976,7 +1143,7 @@
"DE.Controllers.Toolbar.txtAccent_Bar": "Barra",
"DE.Controllers.Toolbar.txtAccent_BarBot": "Barra inferior",
"DE.Controllers.Toolbar.txtAccent_BarTop": "Barra superior",
- "DE.Controllers.Toolbar.txtAccent_BorderBox": "Fórmula embalada (com Placeholder)",
+ "DE.Controllers.Toolbar.txtAccent_BorderBox": "Fórmula Emoldurada (com Espaço Reservado)",
"DE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Fórmula embalada(Exemplo)",
"DE.Controllers.Toolbar.txtAccent_Check": "Verificar",
"DE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Chave Inferior",
@@ -1454,7 +1621,7 @@
"DE.Views.DocProtection.txtDocProtectedTrack": "O documento está protegido. Você pode editar este documento, mas todas as alterações serão rastreadas.",
"DE.Views.DocProtection.txtDocProtectedView": "O documento está protegido. Você só pode visualizar este documento.",
"DE.Views.DocProtection.txtDocUnlockDescription": "Digite uma senha para desproteger o documento",
- "DE.Views.DocProtection.txtProtectDoc": "Proteger o Documento",
+ "DE.Views.DocProtection.txtProtectDoc": "Proteger o documento",
"DE.Views.DocumentHolder.aboveText": "Acima",
"DE.Views.DocumentHolder.addCommentText": "Adicionar comentário",
"DE.Views.DocumentHolder.advancedDropCapText": "Configurações de capitulação",
@@ -1611,7 +1778,7 @@
"DE.Views.DocumentHolder.txtAddTop": "Adicionar borda superior",
"DE.Views.DocumentHolder.txtAddVer": "Adicionar linha vertical",
"DE.Views.DocumentHolder.txtAlignToChar": "Alinhar à símbolo",
- "DE.Views.DocumentHolder.txtBehind": "Atrás",
+ "DE.Views.DocumentHolder.txtBehind": "Atrás do texto",
"DE.Views.DocumentHolder.txtBorderProps": "Propriedades de borda",
"DE.Views.DocumentHolder.txtBottom": "Inferior",
"DE.Views.DocumentHolder.txtColumnAlign": "Alinhamento de colunas",
@@ -1648,7 +1815,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": "Em linha",
+ "DE.Views.DocumentHolder.txtInline": "Alinhado com o Texto",
"DE.Views.DocumentHolder.txtInsertArgAfter": "Inserir argumento após",
"DE.Views.DocumentHolder.txtInsertArgBefore": "Inserir argumento antes",
"DE.Views.DocumentHolder.txtInsertBreak": "Inserir quebra manual",
@@ -1700,7 +1867,7 @@
"DE.Views.DropcapSettingsAdvanced.textAlign": "Alinhamento",
"DE.Views.DropcapSettingsAdvanced.textAtLeast": "Pelo menos",
"DE.Views.DropcapSettingsAdvanced.textAuto": "Automático",
- "DE.Views.DropcapSettingsAdvanced.textBackColor": "Cor do plano de fundo",
+ "DE.Views.DropcapSettingsAdvanced.textBackColor": "Cor de fundo",
"DE.Views.DropcapSettingsAdvanced.textBorderColor": "Cor da borda",
"DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Clique no diagrama ou use os botões para selecionar bordas",
"DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Tamanho da borda",
@@ -1746,7 +1913,7 @@
"DE.Views.FileMenu.btnExitCaption": "Fechar",
"DE.Views.FileMenu.btnFileOpenCaption": "Abrir",
"DE.Views.FileMenu.btnHelpCaption": "Ajuda",
- "DE.Views.FileMenu.btnHistoryCaption": "Histórico de Versão",
+ "DE.Views.FileMenu.btnHistoryCaption": "Histórico de versão",
"DE.Views.FileMenu.btnInfoCaption": "Informações do documento",
"DE.Views.FileMenu.btnPrintCaption": "Imprimir",
"DE.Views.FileMenu.btnProtectCaption": "Proteger",
@@ -1788,6 +1955,7 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Estatísticas",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Assunto",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Símbolos",
+ "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Etiquetas",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título do documento",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Carregado",
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Palavras",
@@ -1796,7 +1964,7 @@
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "Pessoas que têm direitos",
"DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Aviso",
"DE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Com senha",
- "DE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteger o Documento",
+ "DE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteger o documento",
"DE.Views.FileMenuPanels.ProtectDoc.strSignature": "Com assinatura",
"DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Editar documento",
"DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Editar excluirá as assinaturas do documento. Deseja continuar?",
@@ -1806,7 +1974,7 @@
"DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Algumas das assinaturas digitais no documento estão inválidas ou não puderam ser verificadas. O documento está protegido para edição.",
"DE.Views.FileMenuPanels.ProtectDoc.txtView": "Visualizar assinaturas",
"DE.Views.FileMenuPanels.Settings.okButtonText": "Aplicar",
- "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Modo de Coedição",
+ "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Modo de coedição",
"DE.Views.FileMenuPanels.Settings.strFast": "Rápido",
"DE.Views.FileMenuPanels.Settings.strFontRender": "Dicas de fonte",
"DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignorar palavras MAIÚSCULAS",
@@ -2089,9 +2257,9 @@
"DE.Views.ImageSettingsAdvanced.textWeightArrows": "Pesos e Setas",
"DE.Views.ImageSettingsAdvanced.textWidth": "Largura",
"DE.Views.ImageSettingsAdvanced.textWrap": "Estilo da quebra automática",
- "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Atrás",
+ "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Atrás do texto",
"DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Em frente",
- "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "Em linha",
+ "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "Alinhado com o Texto",
"DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Quadrado",
"DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Através",
"DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Justo",
@@ -2123,9 +2291,9 @@
"DE.Views.LineNumbersDialog.textRestartEachSection": "Reiniciar cada uma das seções",
"DE.Views.LineNumbersDialog.textSection": "Seção atual",
"DE.Views.LineNumbersDialog.textStartAt": "Começar em",
- "DE.Views.LineNumbersDialog.textTitle": "Números de Linhas",
+ "DE.Views.LineNumbersDialog.textTitle": "Números de linhas",
"DE.Views.LineNumbersDialog.txtAutoText": "Automático",
- "DE.Views.Links.capBtnAddText": "Adicionar Texto",
+ "DE.Views.Links.capBtnAddText": "Adicionar texto",
"DE.Views.Links.capBtnBookmarks": "Favorito",
"DE.Views.Links.capBtnCaption": "Legenda",
"DE.Views.Links.capBtnContentsUpdate": "Atualizar tabela",
@@ -2352,7 +2520,7 @@
"DE.Views.ParagraphSettingsAdvanced.textAll": "Tudo",
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Pelo menos",
"DE.Views.ParagraphSettingsAdvanced.textAuto": "Múltiplo",
- "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Cor do plano de fundo",
+ "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Cor de fundo",
"DE.Views.ParagraphSettingsAdvanced.textBodyText": "Texto Básico",
"DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Cor da borda",
"DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Clique no diagrama ou use os botões para selecionar bordas e aplicar o estilo escolhido a elas",
@@ -2553,8 +2721,8 @@
"DE.Views.TableOfContentsSettings.textStyle": "Estilo",
"DE.Views.TableOfContentsSettings.textStyles": "Estilos",
"DE.Views.TableOfContentsSettings.textTable": "Tabela",
- "DE.Views.TableOfContentsSettings.textTitle": "Tabela de Conteúdo",
- "DE.Views.TableOfContentsSettings.textTitleTOF": "Tabela de Figuras",
+ "DE.Views.TableOfContentsSettings.textTitle": "Tabela de conteúdo",
+ "DE.Views.TableOfContentsSettings.textTitleTOF": "Tabela de figuras",
"DE.Views.TableOfContentsSettings.txtCentered": "Centralizado",
"DE.Views.TableOfContentsSettings.txtClassic": "Clássico",
"DE.Views.TableOfContentsSettings.txtCurrent": "Atual",
@@ -2683,7 +2851,7 @@
"DE.Views.TableSettingsAdvanced.textWrap": "Disposição do texto",
"DE.Views.TableSettingsAdvanced.textWrapNoneTooltip": "Tabela embutida",
"DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "Tabela de fluxo",
- "DE.Views.TableSettingsAdvanced.textWrappingStyle": "Estilo da quebra",
+ "DE.Views.TableSettingsAdvanced.textWrappingStyle": "Estilo da quebra automática",
"DE.Views.TableSettingsAdvanced.textWrapText": "Quebrar texto ",
"DE.Views.TableSettingsAdvanced.tipAll": "Definir borda externa e todas as linhas internas",
"DE.Views.TableSettingsAdvanced.tipCellAll": "Definir bordas para células internas apenas",
@@ -2759,6 +2927,7 @@
"DE.Views.Toolbar.capBtnInsImage": "Imagem",
"DE.Views.Toolbar.capBtnInsPagebreak": "Quebras",
"DE.Views.Toolbar.capBtnInsShape": "Forma",
+ "DE.Views.Toolbar.capBtnInsSmartArt": "SmartArt",
"DE.Views.Toolbar.capBtnInsSymbol": "Símbolo",
"DE.Views.Toolbar.capBtnInsTable": "Tabela",
"DE.Views.Toolbar.capBtnInsTextart": "Arte de texto",
@@ -2909,6 +3078,7 @@
"DE.Views.Toolbar.tipInsertImage": "Inserir imagem",
"DE.Views.Toolbar.tipInsertNum": "Inserir número da página",
"DE.Views.Toolbar.tipInsertShape": "Inserir forma automática",
+ "DE.Views.Toolbar.tipInsertSmartArt": "Inserir SmartArt",
"DE.Views.Toolbar.tipInsertSymbol": "Inserir símbolo",
"DE.Views.Toolbar.tipInsertTable": "Inserir tabela",
"DE.Views.Toolbar.tipInsertText": "Inserir caixa de texto",
@@ -2985,8 +3155,10 @@
"DE.Views.ViewTab.textFitToPage": "Ajustar a página",
"DE.Views.ViewTab.textFitToWidth": "Ajustar largura",
"DE.Views.ViewTab.textInterfaceTheme": "Tema de interface",
+ "DE.Views.ViewTab.textLeftMenu": "Painel esquerdo",
"DE.Views.ViewTab.textNavigation": "Navegação",
"DE.Views.ViewTab.textOutline": "Cabeçalhos",
+ "DE.Views.ViewTab.textRightMenu": "Painel direito",
"DE.Views.ViewTab.textRulers": "Regras",
"DE.Views.ViewTab.textStatusBar": "Barra de status",
"DE.Views.ViewTab.textZoom": "Ampliação",
diff --git a/apps/documenteditor/main/locale/ro.json b/apps/documenteditor/main/locale/ro.json
index af60eaebd..498c9b70f 100644
--- a/apps/documenteditor/main/locale/ro.json
+++ b/apps/documenteditor/main/locale/ro.json
@@ -1425,6 +1425,8 @@
"DE.Views.DateTimeDialog.textLang": "Limbă",
"DE.Views.DateTimeDialog.textUpdate": "Actualizarea automată",
"DE.Views.DateTimeDialog.txtTitle": "Dată și oră",
+ "DE.Views.DocProtection.hintProtectDoc": "Protejare document",
+ "DE.Views.DocProtection.txtProtectDoc": "Protejare document",
"DE.Views.DocumentHolder.aboveText": "Deasupra",
"DE.Views.DocumentHolder.addCommentText": "Adaugă comentariu",
"DE.Views.DocumentHolder.advancedDropCapText": "Setări majusculă încorporată",
diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json
index 1dd9edcd6..846ea2958 100644
--- a/apps/documenteditor/main/locale/ru.json
+++ b/apps/documenteditor/main/locale/ru.json
@@ -612,6 +612,7 @@
"Common.Views.ReviewPopover.textCancel": "Отмена",
"Common.Views.ReviewPopover.textClose": "Закрыть",
"Common.Views.ReviewPopover.textEdit": "OK",
+ "Common.Views.ReviewPopover.textEnterComment": "Введите здесь свой комментарий",
"Common.Views.ReviewPopover.textFollowMove": "Перейти на прежнее место",
"Common.Views.ReviewPopover.textMention": "+упоминание предоставит доступ к документу и отправит оповещение по почте",
"Common.Views.ReviewPopover.textMentionNotify": "+упоминание отправит пользователю оповещение по почте",
@@ -742,6 +743,11 @@
"DE.Controllers.Main.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.",
"DE.Controllers.Main.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера. Обратитесь к администратору Сервера документов для получения дополнительной информации.",
"DE.Controllers.Main.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на диск или повторите попытку позже.",
+ "DE.Controllers.Main.errorInconsistentExt": "При открытии файла произошла ошибка. Содержимое файла не соответствует расширению файла.",
+ "DE.Controllers.Main.errorInconsistentExtDocx": "При открытии файла произошла ошибка. Содержимое файла соответствует документам (например, docx), но файл имеет несоответствующее расширение: %1.",
+ "DE.Controllers.Main.errorInconsistentExtPdf": "При открытии файла произошла ошибка. Содержимое файла соответствует одному из следующих форматов: pdf/djvu/xps/oxps, но файл имеет несоответствующее расширение: %1.",
+ "DE.Controllers.Main.errorInconsistentExtPptx": "При открытии файла произошла ошибка. Содержимое файла соответствует презентациям (например, pptx), но файл имеет несоответствующее расширение: %1.",
+ "DE.Controllers.Main.errorInconsistentExtXlsx": "При открытии файла произошла ошибка. Содержимое файла соответствует электронным таблицам (например, xlsx), но файл имеет несоответствующее расширение: %1.",
"DE.Controllers.Main.errorKeyEncrypt": "Неизвестный дескриптор ключа",
"DE.Controllers.Main.errorKeyExpire": "Срок действия дескриптора ключа истек",
"DE.Controllers.Main.errorLoadingFont": "Шрифты не загружены. Пожалуйста, обратитесь к администратору Сервера документов.",
@@ -3150,8 +3156,10 @@
"DE.Views.ViewTab.textFitToPage": "По размеру страницы",
"DE.Views.ViewTab.textFitToWidth": "По ширине",
"DE.Views.ViewTab.textInterfaceTheme": "Тема интерфейса",
+ "DE.Views.ViewTab.textLeftMenu": "Левая панель",
"DE.Views.ViewTab.textNavigation": "Навигация",
"DE.Views.ViewTab.textOutline": "Заголовки",
+ "DE.Views.ViewTab.textRightMenu": "Правая панель",
"DE.Views.ViewTab.textRulers": "Линейки",
"DE.Views.ViewTab.textStatusBar": "Строка состояния",
"DE.Views.ViewTab.textZoom": "Масштаб",
diff --git a/apps/documenteditor/main/locale/sk.json b/apps/documenteditor/main/locale/sk.json
index d74a7bdad..acdc7974a 100644
--- a/apps/documenteditor/main/locale/sk.json
+++ b/apps/documenteditor/main/locale/sk.json
@@ -1377,6 +1377,8 @@
"DE.Views.DateTimeDialog.textLang": "Jazyk",
"DE.Views.DateTimeDialog.textUpdate": "Aktualizovať automaticky",
"DE.Views.DateTimeDialog.txtTitle": "Dátum a čas",
+ "DE.Views.DocProtection.hintProtectDoc": "Ochrániť dokument",
+ "DE.Views.DocProtection.txtProtectDoc": "Ochrániť dokument",
"DE.Views.DocumentHolder.aboveText": "Nad",
"DE.Views.DocumentHolder.addCommentText": "Pridať komentár",
"DE.Views.DocumentHolder.advancedDropCapText": "Nastavenia kvapkového uzáveru",
@@ -2250,6 +2252,8 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Nastaviť len horné orámovanie",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automaticky",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Bez orámovania",
+ "DE.Views.ProtectDialog.txtProtect": "Ochrániť",
+ "DE.Views.ProtectDialog.txtTitle": "Ochrániť",
"DE.Views.RightMenu.txtChartSettings": "Nastavenia grafu",
"DE.Views.RightMenu.txtFormSettings": "Nastavenia formulára",
"DE.Views.RightMenu.txtHeaderFooterSettings": "Nastavenie hlavičky a päty",
diff --git a/apps/documenteditor/main/locale/sl.json b/apps/documenteditor/main/locale/sl.json
index 84fcb125e..2011c5a85 100644
--- a/apps/documenteditor/main/locale/sl.json
+++ b/apps/documenteditor/main/locale/sl.json
@@ -61,7 +61,7 @@
"Common.Controllers.ReviewChanges.textParaMoveTo": "Premakni se:",
"Common.Controllers.ReviewChanges.textPosition": "Position",
"Common.Controllers.ReviewChanges.textRight": "Align right",
- "Common.Controllers.ReviewChanges.textShape": "Shape",
+ "Common.Controllers.ReviewChanges.textShape": "Oblika",
"Common.Controllers.ReviewChanges.textShd": "Background color",
"Common.Controllers.ReviewChanges.textSmallCaps": "Small caps",
"Common.Controllers.ReviewChanges.textSpacing": "Spacing",
@@ -430,6 +430,7 @@
"DE.Controllers.Main.textLoadingDocument": "Nalaganje dokumenta",
"DE.Controllers.Main.textNoLicenseTitle": "%1 omejitev povezave",
"DE.Controllers.Main.textReconnect": "Povezava je obnovljena",
+ "DE.Controllers.Main.textShape": "Oblika",
"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.titleServerVersion": "Urednik je bil posodobljen",
@@ -512,6 +513,7 @@
"DE.Controllers.Main.txtStyle_Heading_8": "Naslov 8",
"DE.Controllers.Main.txtStyle_Heading_9": "Naslov 9",
"DE.Controllers.Main.txtStyle_Normal": "Normalno",
+ "DE.Controllers.Main.txtTableOfContents": "Vsebina",
"DE.Controllers.Main.txtTypeEquation": "Tukaj vnesite enačbo",
"DE.Controllers.Main.txtXAxis": "X os",
"DE.Controllers.Main.txtYAxis": "Y os",
@@ -939,6 +941,7 @@
"DE.Views.CrossReferenceDialog.textEndNoteNum": "Številka končne opombe",
"DE.Views.CrossReferenceDialog.textEquation": "Enačba",
"DE.Views.CrossReferenceDialog.textFootnote": "Sprotna opomba",
+ "DE.Views.CrossReferenceDialog.textHeading": "Naslov",
"DE.Views.CrossReferenceDialog.textNoteNum": "Številka sprotne opombe",
"DE.Views.CustomColumnsDialog.textColumns": "Število stolpcev",
"DE.Views.CustomColumnsDialog.textTitle": "Stolpci",
@@ -947,6 +950,8 @@
"DE.Views.DateTimeDialog.textLang": "Jezik",
"DE.Views.DateTimeDialog.textUpdate": "Samodejno posodobi",
"DE.Views.DateTimeDialog.txtTitle": "Datum & Ura",
+ "DE.Views.DocProtection.hintProtectDoc": "Zaščiti dokument",
+ "DE.Views.DocProtection.txtProtectDoc": "Zaščiti dokument",
"DE.Views.DocumentHolder.aboveText": "Nad",
"DE.Views.DocumentHolder.addCommentText": "Dodaj komentar",
"DE.Views.DocumentHolder.advancedFrameText": "Napredne nastavitve okvirja",
@@ -1044,6 +1049,7 @@
"DE.Views.DocumentHolder.textShapeAlignRight": "Poravnaj desno",
"DE.Views.DocumentHolder.textShapeAlignTop": "Poravnaj vrh",
"DE.Views.DocumentHolder.textTitleCellsRemove": "Izbriši celice",
+ "DE.Views.DocumentHolder.textTOC": "Vsebina",
"DE.Views.DocumentHolder.textUndo": "Razveljavi",
"DE.Views.DocumentHolder.textWrap": "Slog zavijanja",
"DE.Views.DocumentHolder.tipIsLocked": "Ta element trenutno ureja drug uporabnik.",
@@ -1393,6 +1399,7 @@
"DE.Views.LeftMenu.tipChat": "Pogovor",
"DE.Views.LeftMenu.tipComments": "Komentarji",
"DE.Views.LeftMenu.tipNavigation": "Navigacija",
+ "DE.Views.LeftMenu.tipOutline": "Naslovi",
"DE.Views.LeftMenu.tipPlugins": "Razširitve",
"DE.Views.LeftMenu.tipSearch": "Iskanje",
"DE.Views.LeftMenu.tipSupport": "Povratne informacije & Pomoč",
@@ -1405,6 +1412,7 @@
"DE.Views.Links.capBtnAddText": "Dodaj besedilo",
"DE.Views.Links.capBtnBookmarks": "Zaznamek",
"DE.Views.Links.capBtnCaption": "Napis",
+ "DE.Views.Links.capBtnInsContents": "Vsebina",
"DE.Views.Links.capBtnInsFootnote": "Sprotna opomba",
"DE.Views.Links.capBtnInsLink": "Hiperpovezava",
"DE.Views.Links.confirmReplaceTOF": "Ali želite zamenjati izbrano kazalo slik?",
@@ -1478,6 +1486,7 @@
"DE.Views.MailMergeSettings.txtPrev": "To previous record",
"DE.Views.MailMergeSettings.txtUntitled": "Untitled",
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Starting merge failed",
+ "DE.Views.Navigation.strNavigate": "Naslovi",
"DE.Views.Navigation.txtEmpty": "V dokumentu ni naslovov. Z uporabo slogov v besedilu določite naslove, tako se bodo prikazali v kazalu in navigaciji.",
"DE.Views.Navigation.txtEmptyViewer": "V dokumentu ni naslovov.",
"DE.Views.Navigation.txtFontSize": "Velikost pisave",
@@ -1595,6 +1604,8 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Nastavi le zgornjo mejo",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Samodejno",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Ni mej",
+ "DE.Views.ProtectDialog.txtProtect": "Zaščiti",
+ "DE.Views.ProtectDialog.txtTitle": "Zaščiti",
"DE.Views.RightMenu.txtChartSettings": "Nastavitve grafa",
"DE.Views.RightMenu.txtFormSettings": "Nastavitve obrazca",
"DE.Views.RightMenu.txtHeaderFooterSettings": "Nastavitve glave in noge",
@@ -1691,6 +1702,7 @@
"DE.Views.TableOfContentsSettings.textNone": "Nič",
"DE.Views.TableOfContentsSettings.textRadioCaption": "Napis",
"DE.Views.TableOfContentsSettings.textStyle": "Slog",
+ "DE.Views.TableOfContentsSettings.textTitle": "Vsebina",
"DE.Views.TableOfContentsSettings.txtCentered": "Poravnano na sredino",
"DE.Views.TableOfContentsSettings.txtClassic": "Klasično",
"DE.Views.TableOfContentsSettings.txtOnline": "Vpisan",
@@ -1842,6 +1854,7 @@
"DE.Views.Toolbar.capBtnInsHeader": "Glava/noga",
"DE.Views.Toolbar.capBtnInsImage": "Slika",
"DE.Views.Toolbar.capBtnInsPagebreak": "Prelomi",
+ "DE.Views.Toolbar.capBtnInsShape": "Oblika",
"DE.Views.Toolbar.capBtnInsSymbol": "Simbol",
"DE.Views.Toolbar.capBtnInsTable": "Tabela",
"DE.Views.Toolbar.capBtnInsTextbox": "Polje z besedilom",
@@ -1922,6 +1935,7 @@
"DE.Views.Toolbar.textTabLayout": "Postavitev",
"DE.Views.Toolbar.textTabProtect": "Zaščita",
"DE.Views.Toolbar.textTabReview": "Pregled",
+ "DE.Views.Toolbar.textTabView": "Pogled",
"DE.Views.Toolbar.textTitleError": "Napaka",
"DE.Views.Toolbar.textToCurrent": "Do trenutnega položaja",
"DE.Views.Toolbar.textTop": "Top: ",
@@ -2006,7 +2020,9 @@
"DE.Views.Toolbar.txtScheme9": "Livarna",
"DE.Views.ViewTab.textAlwaysShowToolbar": "Vedno prikaži orodno vrstico",
"DE.Views.ViewTab.textDarkDocument": "Temen način",
+ "DE.Views.ViewTab.textOutline": "Naslovi",
"DE.Views.ViewTab.textZoom": "Povečaj",
+ "DE.Views.ViewTab.tipHeadings": "Naslovi",
"DE.Views.WatermarkSettingsDialog.textAuto": "Samodejno",
"DE.Views.WatermarkSettingsDialog.textBold": "Krepko",
"DE.Views.WatermarkSettingsDialog.textColor": "Barva besedila",
diff --git a/apps/documenteditor/main/locale/zh.json b/apps/documenteditor/main/locale/zh.json
index 102c954c7..cf663d5c7 100644
--- a/apps/documenteditor/main/locale/zh.json
+++ b/apps/documenteditor/main/locale/zh.json
@@ -263,7 +263,27 @@
"Common.define.smartArt.textThemePictureAccent": "主题图片重点",
"Common.define.smartArt.textThemePictureAlternatingAccent": "主题图片交替重点",
"Common.define.smartArt.textThemePictureGrid": "主题图片网格",
+ "Common.define.smartArt.textTitledMatrix": "带标题的矩阵",
+ "Common.define.smartArt.textTitledPictureAccentList": "标题图片重点列表",
+ "Common.define.smartArt.textTitledPictureBlocks": "标题图片块",
"Common.define.smartArt.textTitlePictureLineup": "标题图片排列",
+ "Common.define.smartArt.textTrapezoidList": "梯形列表",
+ "Common.define.smartArt.textUpwardArrow": "向上箭头",
+ "Common.define.smartArt.textVaryingWidthList": "不同宽度列表",
+ "Common.define.smartArt.textVerticalAccentList": "垂直重点列表",
+ "Common.define.smartArt.textVerticalArrowList": "垂直箭头列表",
+ "Common.define.smartArt.textVerticalBendingProcess": "垂直蛇形流程",
+ "Common.define.smartArt.textVerticalBlockList": "垂直块列表",
+ "Common.define.smartArt.textVerticalBoxList": "垂直框列表",
+ "Common.define.smartArt.textVerticalBracketList": "垂直括弧列表",
+ "Common.define.smartArt.textVerticalBulletList": "垂直项目符号列表",
+ "Common.define.smartArt.textVerticalChevronList": "垂直 V 形列表",
+ "Common.define.smartArt.textVerticalCircleList": "垂直圆形列表",
+ "Common.define.smartArt.textVerticalCurvedList": "垂直曲形列表",
+ "Common.define.smartArt.textVerticalEquation": "垂直公式",
+ "Common.define.smartArt.textVerticalPictureAccentList": "垂直图片重点列表",
+ "Common.define.smartArt.textVerticalPictureList": "垂直图片列表",
+ "Common.define.smartArt.textVerticalProcess": "垂直流程",
"Common.Translation.textMoreButton": "更多",
"Common.Translation.warnFileLocked": "您不能编辑此文件,因为它正在另一个应用程序中被编辑。",
"Common.Translation.warnFileLockedBtnEdit": "建立副本",
@@ -806,6 +826,7 @@
"DE.Controllers.Main.textStrict": "手动模式",
"DE.Controllers.Main.textTryUndoRedo": "对于自动的协同编辑模式,取消/重做功能是禁用的。< br >单击“手动模式”按钮切换到手动协同编辑模式,这样,编辑该文件时只有您保存修改之后,其他用户才能访问这些修改。您可以使用编辑器高级设置易于切换编辑模式。",
"DE.Controllers.Main.textTryUndoRedoWarn": "自动共同编辑模式下,撤销/重做功能被禁用。",
+ "DE.Controllers.Main.textUndo": "撤消",
"DE.Controllers.Main.titleLicenseExp": "许可证过期",
"DE.Controllers.Main.titleServerVersion": "编辑器已更新",
"DE.Controllers.Main.titleUpdateVersion": "版本已变化",
@@ -2553,6 +2574,7 @@
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "没有边框",
"DE.Views.ProtectDialog.textComments": "评论",
"DE.Views.ProtectDialog.textForms": "填写表单",
+ "DE.Views.ProtectDialog.textReview": "修订",
"DE.Views.ProtectDialog.textView": "不允许任何更改(只读)",
"DE.Views.ProtectDialog.txtAllow": "仅允许在文档中进行此类型的编辑",
"DE.Views.ProtectDialog.txtIncorrectPwd": "确认的密码与先前输入的不一致。",
@@ -2561,6 +2583,7 @@
"DE.Views.ProtectDialog.txtProtect": "保护",
"DE.Views.ProtectDialog.txtRepeat": "重复输入密码",
"DE.Views.ProtectDialog.txtTitle": "保护",
+ "DE.Views.ProtectDialog.txtWarning": "警告: 如果丢失或忘记密码,则无法将其恢复。请妥善保存。",
"DE.Views.RightMenu.txtChartSettings": "图表设置",
"DE.Views.RightMenu.txtFormSettings": "表单设置",
"DE.Views.RightMenu.txtHeaderFooterSettings": "页眉和页脚设置",
diff --git a/apps/documenteditor/main/resources/less/toolbar.less b/apps/documenteditor/main/resources/less/toolbar.less
index e7f419c33..0f8711ab4 100644
--- a/apps/documenteditor/main/resources/less/toolbar.less
+++ b/apps/documenteditor/main/resources/less/toolbar.less
@@ -130,7 +130,7 @@
border-radius: 0;
padding: 3px 10px;
color: #ffffff;
- font: 11px arial;
+ .font-size-normal();
white-space: nowrap;
letter-spacing: 1px;
overflow: hidden;
@@ -179,7 +179,9 @@
.separator {
height: 20px;
}
- z-index: @zindex-dropdown - 19;
+ &.has-open-menu {
+ z-index: @zindex-navbar + 1;
+ }
}
.dropdown-menu.list-settings-level {
diff --git a/apps/documenteditor/mobile/locale/az.json b/apps/documenteditor/mobile/locale/az.json
index 303e32b14..b12eb1e67 100644
--- a/apps/documenteditor/mobile/locale/az.json
+++ b/apps/documenteditor/mobile/locale/az.json
@@ -220,6 +220,7 @@
"textAlign": "Nizamlayın",
"textAllCaps": "Bütün başlıqlar",
"textAllowOverlap": "Üst-üstə düşməsinə icazə verin",
+ "textAugust": "avqust",
"textAuto": "Avtomatik",
"textAutomatic": "Avtomatik",
"textBack": "Geriyə",
@@ -232,7 +233,9 @@
"textBringToForeground": "Ön plana çıxarın",
"textBullets": "Markerlər",
"textBulletsAndNumbers": "Markerlər və Ədədlər",
+ "textCancel": "Ləğv",
"textCellMargins": "Xanalardakı Kənar Boşluqlar",
+ "textCentered": "Mərkəzlənmiş",
"textChart": "Diaqram",
"textClose": "Bağlayın",
"textColor": "Rəng",
@@ -320,9 +323,6 @@
"textWrap": "Keçirin",
"textAmountOfLevels": "Amount of Levels",
"textApril": "April",
- "textAugust": "August",
- "textCancel": "Cancel",
- "textCentered": "Centered",
"textChangeShape": "Change Shape",
"textClassic": "Classic",
"textCreateTextStyle": "Create new text style",
@@ -419,8 +419,15 @@
"uploadImageSizeMessage": "Təsvir çox böyükdür. Maksimum ölçü 25 MB-dır.",
"errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
- "errorTextFormWrongFormat": "The value entered does not match the format of the field."
+ "errorTextFormWrongFormat": "The value entered does not match the format of the field.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Məlumat yüklənir...",
@@ -570,6 +577,7 @@
"textApplicationSettings": "Proqram Parametrləri",
"textAuthor": "Müəllif",
"textBack": "Geriyə",
+ "textBeginningDocument": "Sənədin başlanğıcı",
"textBottom": "Aşağı",
"textCancel": "Ləğv edin",
"textCaseSensitive": "Böyük/Kiçik Hərfə Həssas",
@@ -670,7 +678,6 @@
"txtScheme7": "Bərabər",
"txtScheme8": "Axın",
"txtScheme9": "Emalatxana",
- "textBeginningDocument": "Beginning of document",
"textDirection": "Direction",
"textEmptyHeading": "Empty Heading",
"textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appears in the table of contents.",
diff --git a/apps/documenteditor/mobile/locale/be.json b/apps/documenteditor/mobile/locale/be.json
index b3fa8fa3d..2e3ed30de 100644
--- a/apps/documenteditor/mobile/locale/be.json
+++ b/apps/documenteditor/mobile/locale/be.json
@@ -407,6 +407,11 @@
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
"errorFilePassProtect": "The file is password protected and could not be opened.",
"errorFileSizeExceed": "The file size exceeds your server limit. Please, contact your admin.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
"errorLoadingFont": "Fonts are not loaded. Please contact your Document Server administrator.",
"errorMailMergeLoadFile": "Loading failed",
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
@@ -415,6 +420,8 @@
"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.",
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
"errorUserDrop": "The file can't be accessed right now.",
"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",
diff --git a/apps/documenteditor/mobile/locale/bg.json b/apps/documenteditor/mobile/locale/bg.json
index 75e679405..2a67506d3 100644
--- a/apps/documenteditor/mobile/locale/bg.json
+++ b/apps/documenteditor/mobile/locale/bg.json
@@ -423,7 +423,14 @@
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Loading data...",
diff --git a/apps/documenteditor/mobile/locale/ca.json b/apps/documenteditor/mobile/locale/ca.json
index cdd4dbf15..8847c42ce 100644
--- a/apps/documenteditor/mobile/locale/ca.json
+++ b/apps/documenteditor/mobile/locale/ca.json
@@ -420,7 +420,14 @@
"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."
+ "uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "S'estan carregant les dades...",
diff --git a/apps/documenteditor/mobile/locale/cs.json b/apps/documenteditor/mobile/locale/cs.json
index a2e816f71..0d6afe8ac 100644
--- a/apps/documenteditor/mobile/locale/cs.json
+++ b/apps/documenteditor/mobile/locale/cs.json
@@ -26,6 +26,7 @@
"textContinuousPage": "Pokračovat na stránce",
"textCurrentPosition": "Aktuální pozice",
"textDisplay": "Zobrazit",
+ "textDone": "Hotovo",
"textEmptyImgUrl": "Musíte upřesnit URL obrázku.",
"textEvenPage": "Sudá stránka",
"textFootnote": "Poznámka pod čarou",
@@ -49,6 +50,8 @@
"textPictureFromLibrary": "Obrázek z knihovny",
"textPictureFromURL": "Obrázek z adresy URL",
"textPosition": "Pozice",
+ "textRecommended": "Doporučeno",
+ "textRequired": "Požadováno",
"textRightBottom": "Vpravo dole",
"textRightTop": "Vpravo nahoře",
"textRows": "Řádky",
@@ -61,10 +64,7 @@
"textTableSize": "Velikost tabulky",
"textWithBlueLinks": "s modrými odkazy",
"textWithPageNumbers": "s číslováním stránek",
- "txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"",
- "textDone": "Done",
- "textRecommended": "Recommended",
- "textRequired": "Required"
+ "txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\""
},
"Common": {
"Collaboration": {
@@ -147,6 +147,7 @@
"textReviewChange": "Přehled změn",
"textRight": "Zarovnat vpravo",
"textShape": "Obrazec",
+ "textSharingSettings": "Nastavení sdílení",
"textShd": "Barva pozadí",
"textSmallCaps": "Malá písmena",
"textSpacing": "Mezery",
@@ -163,8 +164,7 @@
"textTryUndoRedo": "Funkce Zpět/Znovu jsou vypnuty pro rychlý režim spolupráce.",
"textUnderline": "Podtržení",
"textUsers": "Uživatelé",
- "textWidow": "Ovládací prvek okna",
- "textSharingSettings": "Sharing Settings"
+ "textWidow": "Ovládací prvek okna"
},
"HighlightColorPalette": {
"textNoFill": "Bez výplně"
@@ -184,6 +184,7 @@
"menuDelete": "Odstranit",
"menuDeleteTable": "Odstranit tabulku",
"menuEdit": "Upravit",
+ "menuEditLink": "Upravit odkaz",
"menuJoinList": "Připojit k předchozímu seznamu",
"menuMerge": "Sloučit",
"menuMore": "Více",
@@ -204,8 +205,7 @@
"textRefreshEntireTable": "Obnovit celou tabulku",
"textRefreshPageNumbersOnly": "Obnovit pouze číslování stránek",
"textRows": "Řádky",
- "txtWarnUrl": "Kliknutí na tento odkaz může být škodlivé pro Vaše zařízení a Vaše data. Jste si jistí, že chcete pokračovat?",
- "menuEditLink": "Edit Link"
+ "txtWarnUrl": "Kliknutí na tento odkaz může být škodlivé pro Vaše zařízení a Vaše data. Jste si jistí, že chcete pokračovat?"
},
"Edit": {
"notcriticalErrorTitle": "Varování",
@@ -238,6 +238,7 @@
"textCancel": "Zrušit",
"textCellMargins": "Okraje buňky",
"textCentered": "Vycentrováno",
+ "textChangeShape": "Vlastní tvar",
"textChart": "Graf",
"textClassic": "Klasické",
"textClose": "Zavřít",
@@ -246,7 +247,10 @@
"textCreateTextStyle": "Vytvořit nový styl textu",
"textCurrent": "Aktuální",
"textCustomColor": "Vlastní barva",
+ "textCustomStyle": "Vlastní styl",
"textDecember": "prosinec",
+ "textDeleteImage": "Smazat obrázek",
+ "textDeleteLink": "Smazat odkaz",
"textDesign": "Vzhled",
"textDifferentFirstPage": "Odlišná první stránka",
"textDifferentOddAndEvenPages": "Rozdílné liché a sudé stránky",
@@ -319,6 +323,7 @@
"textPictureFromLibrary": "Obrázek z knihovny",
"textPictureFromURL": "Obrázek z adresy URL",
"textPt": "pt",
+ "textRecommended": "Doporučeno",
"textRefresh": "Načíst znovu",
"textRefreshEntireTable": "Obnovit celou tabulku",
"textRefreshPageNumbersOnly": "Obnovit pouze číslování stránek",
@@ -330,6 +335,7 @@
"textRepeatAsHeaderRow": "Opakujte jako řádek záhlaví",
"textReplace": "Nahradit",
"textReplaceImage": "Nahradit obrázek",
+ "textRequired": "Požadováno",
"textResizeToFitContent": "Změnit velikost pro přizpůsobení obsahu",
"textRightAlign": "Zarovnat vpravo",
"textSa": "so",
@@ -359,6 +365,7 @@
"textTableOfCont": "Obsah",
"textTableOptions": "Možnosti tabulky",
"textText": "Text",
+ "textTextWrapping": "Obtékaní textu",
"textTh": "čt",
"textThrough": "Skrz",
"textTight": "Těsné",
@@ -369,14 +376,7 @@
"textType": "Typ",
"textWe": "st",
"textWrap": "Obtékání",
- "textChangeShape": "Change Shape",
- "textCustomStyle": "Custom Style",
- "textDeleteImage": "Delete Image",
- "textDeleteLink": "Delete Link",
- "textRecommended": "Recommended",
- "textRequired": "Required",
- "textTextWrapping": "Text Wrapping",
- "textWrappingStyle": "Wrapping Style"
+ "textWrappingStyle": "Obtékání textu"
},
"Error": {
"convertationTimeoutText": "Vypršel čas konverze.",
@@ -390,6 +390,7 @@
"errorDataEncrypted": "Obdrženy šifrované změny – bez hesla je není možné zobrazit.",
"errorDataRange": "Nesprávný datový rozsah.",
"errorDefaultMessage": "Kód chyby: %1",
+ "errorDirectUrl": "Ověřte správnost odkazu na dokument. Je třeba, aby se jednalo o přímý odkaz pro stažení souboru.",
"errorEditingDownloadas": "Při práci s dokumentem došlo k chybě. Stáhněte dokument pro vytvoření lokální zálohy souboru.",
"errorEmptyTOC": "Začít vytvářet obsah aplikováním stylů pro nadpisy na vybraný text. ",
"errorFilePassProtect": "Soubor je zabezpečen heslem a nemůže být otevřen.",
@@ -419,8 +420,14 @@
"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.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
- "errorTextFormWrongFormat": "The value entered does not match the format of the field."
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorTextFormWrongFormat": "The value entered does not match the format of the field.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Načítání dat...",
@@ -451,14 +458,14 @@
"saveTitleText": "Ukládání dokumentu",
"sendMergeText": "Odesílaní hromadné zprávy…",
"sendMergeTitle": "Odesílaní hromadné zprávy",
+ "textContinue": "Pokračovat",
"textLoadingDocument": "Načítání dokumentu",
+ "textUndo": "Zpět",
"txtEditingMode": "Nastavit režim úprav…",
"uploadImageTextText": "Nahrávání obrázku...",
"uploadImageTitleText": "Nahrávání obrázku",
"waitText": "Čekejte prosím...",
- "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server. Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
- "textContinue": "Continue",
- "textUndo": "Undo"
+ "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server. Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost)."
},
"Main": {
"criticalErrorTitle": "Chyba",
@@ -622,6 +629,7 @@
"textMargins": "Okraje",
"textMarginsH": "Horní a spodní okraj je příliš velký vzhledem k dané výšce stránky",
"textMarginsW": "Okraje vlevo a vpravo jsou příliš velké vzhledem k šířce stránky",
+ "textMobileView": "Mobilní zobrazení",
"textNavigation": "Navigace",
"textNo": "Ne",
"textNoCharacters": "Netisknutelné znaky",
@@ -685,8 +693,7 @@
"txtScheme6": "Hala",
"txtScheme7": "Rovnost",
"txtScheme8": "Tok",
- "txtScheme9": "Slévárna",
- "textMobileView": "Mobile View"
+ "txtScheme9": "Slévárna"
},
"Toolbar": {
"dlgLeaveMsgText": "V tomto dokumentu máte neuložené změny. Klikněte na 'Zůstat na této stránce'. Klikněte na 'Opustit tuto stránku' pro zahození neuložených změn.",
@@ -694,7 +701,7 @@
"leaveButtonText": "Opustit tuto stránku",
"stayButtonText": "Zůstat na této stránce",
"textOk": "OK",
- "textSwitchedMobileView": "Switched to Mobile view",
- "textSwitchedStandardView": "Switched to Standard view"
+ "textSwitchedMobileView": "Přepnout na mobilní zobrazení",
+ "textSwitchedStandardView": "Přepnout na standartní zobrazení"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/da.json b/apps/documenteditor/mobile/locale/da.json
index 75e679405..2a67506d3 100644
--- a/apps/documenteditor/mobile/locale/da.json
+++ b/apps/documenteditor/mobile/locale/da.json
@@ -423,7 +423,14 @@
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Loading data...",
diff --git a/apps/documenteditor/mobile/locale/de.json b/apps/documenteditor/mobile/locale/de.json
index e6fb09dff..d01c042f7 100644
--- a/apps/documenteditor/mobile/locale/de.json
+++ b/apps/documenteditor/mobile/locale/de.json
@@ -26,6 +26,7 @@
"textContinuousPage": "Fortlaufende Seite",
"textCurrentPosition": "Aktuelle Position",
"textDisplay": "Anzeigen",
+ "textDone": "Fertig",
"textEmptyImgUrl": "URL des Bildes erforderlich",
"textEvenPage": "Gerade Seite",
"textFootnote": "Fußnote",
@@ -49,6 +50,8 @@
"textPictureFromLibrary": "Bild aus dem Verzeichnis",
"textPictureFromURL": "Bild aus URL",
"textPosition": "Position",
+ "textRecommended": "Empfohlen",
+ "textRequired": "Erforderlich",
"textRightBottom": "Rechts unten",
"textRightTop": "Rechts oben",
"textRows": "Zeilen",
@@ -61,10 +64,7 @@
"textTableSize": "Tabellengröße",
"textWithBlueLinks": "Mit blauen Links",
"textWithPageNumbers": "Mit Seitennummern",
- "txtNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.",
- "textDone": "Done",
- "textRecommended": "Recommended",
- "textRequired": "Required"
+ "txtNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein."
},
"Common": {
"Collaboration": {
@@ -147,6 +147,7 @@
"textReviewChange": "Änderung überprüfen",
"textRight": "Rechtsbündig ausrichten",
"textShape": "Form",
+ "textSharingSettings": "Freigabeeinstellungen",
"textShd": "Hintergrundfarbe",
"textSmallCaps": "Kapitälchen",
"textSpacing": "Abstand",
@@ -163,8 +164,7 @@
"textTryUndoRedo": "Die Optionen Rückgängig machen/Wiederholen sind für den Schnellmodus deaktiviert.",
"textUnderline": "Unterstrichen",
"textUsers": "Benutzer",
- "textWidow": "Absatzkontrolle",
- "textSharingSettings": "Sharing Settings"
+ "textWidow": "Absatzkontrolle"
},
"HighlightColorPalette": {
"textNoFill": "Keine Füllung"
@@ -184,6 +184,7 @@
"menuDelete": "Löschen",
"menuDeleteTable": "Tabelle löschen",
"menuEdit": "Bearbeiten",
+ "menuEditLink": "Link bearbeiten",
"menuJoinList": "Mit der vorherigen Liste verbinden",
"menuMerge": "Verbinden",
"menuMore": "Mehr",
@@ -204,8 +205,7 @@
"textRefreshEntireTable": "Ganze Tabelle aktualisieren",
"textRefreshPageNumbersOnly": "Nur Seitenzahlen aktualisieren",
"textRows": "Zeilen",
- "txtWarnUrl": "Dieser Link kann für Ihr Gerät und Daten gefährlich sein. Möchten Sie wirklich fortsetzen?",
- "menuEditLink": "Edit Link"
+ "txtWarnUrl": "Dieser Link kann für Ihr Gerät und Daten gefährlich sein. Möchten Sie wirklich fortsetzen?"
},
"Edit": {
"notcriticalErrorTitle": "Warnung",
@@ -238,6 +238,7 @@
"textCancel": "Abbrechen",
"textCellMargins": "Zellenränder",
"textCentered": "Zentriert",
+ "textChangeShape": "Form ändern",
"textChart": "Diagramm",
"textClassic": "Klassisch",
"textClose": "Schließen",
@@ -246,7 +247,10 @@
"textCreateTextStyle": "Neuen Textstil erstellen",
"textCurrent": "Aktuell",
"textCustomColor": "Benutzerdefinierte Farbe",
+ "textCustomStyle": "Benutzerdefinierter Stil",
"textDecember": "Dezember",
+ "textDeleteImage": "Bild löschen",
+ "textDeleteLink": "Link löschen",
"textDesign": "Design",
"textDifferentFirstPage": "Erste Seite anders",
"textDifferentOddAndEvenPages": "Gerade und ungerade Seiten anders",
@@ -319,6 +323,7 @@
"textPictureFromLibrary": "Bild aus dem Verzeichnis",
"textPictureFromURL": "Bild aus URL",
"textPt": "pt",
+ "textRecommended": "Empfohlen",
"textRefresh": "Aktualisieren",
"textRefreshEntireTable": "Ganze Tabelle aktualisieren",
"textRefreshPageNumbersOnly": "Nur Seitenzahlen aktualisieren",
@@ -330,6 +335,7 @@
"textRepeatAsHeaderRow": "Als Überschriftenzeile wiederholen",
"textReplace": "Ersetzen",
"textReplaceImage": "Bild ersetzen",
+ "textRequired": "Erforderlich",
"textResizeToFitContent": "An die Größe des Inhalts anpassen",
"textRightAlign": "Rechtsbündig",
"textSa": "Sa",
@@ -359,6 +365,7 @@
"textTableOfCont": "Inhaltsverzeichnis",
"textTableOptions": "Tabellenoptionen",
"textText": "Text",
+ "textTextWrapping": "Textumbruch",
"textTh": "Do",
"textThrough": "Durchgehend",
"textTight": "Passend",
@@ -369,14 +376,7 @@
"textType": "Typ",
"textWe": "Mi",
"textWrap": "Umbrechen",
- "textChangeShape": "Change Shape",
- "textCustomStyle": "Custom Style",
- "textDeleteImage": "Delete Image",
- "textDeleteLink": "Delete Link",
- "textRecommended": "Recommended",
- "textRequired": "Required",
- "textTextWrapping": "Text Wrapping",
- "textWrappingStyle": "Wrapping Style"
+ "textWrappingStyle": "Textumbruch"
},
"Error": {
"convertationTimeoutText": "Zeitüberschreitung bei der Konvertierung.",
@@ -390,10 +390,16 @@
"errorDataEncrypted": "Verschlüsselte Änderungen wurden empfangen. Sie können nicht entschlüsselt werden.",
"errorDataRange": "Falscher Datenbereich.",
"errorDefaultMessage": "Fehlercode: %1",
+ "errorDirectUrl": "Bitte überprüfen Sie den Link zum Dokument. Dieser Link muss ein direkter Link zu der Datei zum Herunterladen sein.",
"errorEditingDownloadas": "Fehler bei der Arbeit an diesem Dokument. Laden Sie die Datei herunter, um sie lokal zu speichern.",
"errorEmptyTOC": "Beginnen Sie die Erstellung eines Inhaltsverzeichnisses, indem Sie eine Überschriftenvorlage aus der Galerie von Stilen auf den ausgewählten Text anwenden.",
"errorFilePassProtect": "Die Datei ist mit Passwort geschützt und kann nicht geöffnet werden.",
"errorFileSizeExceed": "Die Dateigröße ist zu hoch für Ihren Server. Bitte wenden Sie sich an Administratoren.",
+ "errorInconsistentExt": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei stimmt nicht mit der Dateierweiterung überein.",
+ "errorInconsistentExtDocx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Textdokumenten (z.B. docx), aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "errorInconsistentExtPdf": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht einem der folgenden Formate: pdf/djvu/xps/oxps, aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "errorInconsistentExtPptx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Präsentationen (z.B. pptx), aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "errorInconsistentExtXlsx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Tabellenkalkulationen (z.B. xlsx), aber die Datei hat die inkonsistente Erweiterung: %1.",
"errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor",
"errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen",
"errorLoadingFont": "Schriftarten nicht hochgeladen. Bitte wenden Sie sich an Administratoren von Ihrem Document Server.",
@@ -420,11 +426,13 @@
"uploadImageExtMessage": "Unbekanntes Bildformat.",
"uploadImageFileCountMessage": "Keine Bilder hochgeladen.",
"uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Daten werden geladen...",
"applyChangesTitleText": "Daten werden geladen",
+ "confirmMaxChangesSize": "Die Anzahl der Aktionen überschreitet die für Ihren Server festgelegte Grenze. Drücken Sie \"Rückgängig\", um Ihre letzte Aktion abzubrechen, oder drücken Sie \"Weiter\", um die Aktion lokal fortzusetzen (Sie müssen die Datei herunterladen oder ihren Inhalt kopieren, um sicherzustellen, dass nichts verloren geht).",
"downloadMergeText": "Ladevorgang...",
"downloadMergeTitle": "Ladevorgang",
"downloadTextText": "Dokument wird heruntergeladen...",
@@ -451,14 +459,13 @@
"saveTitleText": "Dokument wird gespeichert...",
"sendMergeText": "Merge wird versandt...",
"sendMergeTitle": "Ergebnisse der Zusammenführung werden gesendet",
+ "textContinue": "Fortsetzen",
"textLoadingDocument": "Dokument wird geladen",
+ "textUndo": "Rückgängig",
"txtEditingMode": "Bearbeitungsmodul wird festgelegt...",
"uploadImageTextText": "Bild wird hochgeladen...",
"uploadImageTitleText": "Bild wird hochgeladen",
- "waitText": "Bitte warten...",
- "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server. Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
- "textContinue": "Continue",
- "textUndo": "Undo"
+ "waitText": "Bitte warten..."
},
"Main": {
"criticalErrorTitle": "Fehler",
diff --git a/apps/documenteditor/mobile/locale/el.json b/apps/documenteditor/mobile/locale/el.json
index 13d052642..d74629006 100644
--- a/apps/documenteditor/mobile/locale/el.json
+++ b/apps/documenteditor/mobile/locale/el.json
@@ -420,7 +420,14 @@
"uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.",
"uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB.",
"errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
- "errorTextFormWrongFormat": "The value entered does not match the format of the field."
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorTextFormWrongFormat": "The value entered does not match the format of the field.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Φόρτωση δεδομένων...",
diff --git a/apps/documenteditor/mobile/locale/en.json b/apps/documenteditor/mobile/locale/en.json
index f0a60e6ae..d7c8a76db 100644
--- a/apps/documenteditor/mobile/locale/en.json
+++ b/apps/documenteditor/mobile/locale/en.json
@@ -396,6 +396,11 @@
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
"errorFilePassProtect": "The file is password protected and could not be opened.",
"errorFileSizeExceed": "The file size exceeds your server limit. Please, contact your admin.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
"errorKeyEncrypt": "Unknown key descriptor",
"errorKeyExpire": "Key descriptor expired",
"errorLoadingFont": "Fonts are not loaded. Please contact your Document Server administrator.",
@@ -407,6 +412,8 @@
"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.",
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
"errorUpdateVersionOnDisconnect": "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",
diff --git a/apps/documenteditor/mobile/locale/es.json b/apps/documenteditor/mobile/locale/es.json
index 842217e88..33c073afc 100644
--- a/apps/documenteditor/mobile/locale/es.json
+++ b/apps/documenteditor/mobile/locale/es.json
@@ -26,6 +26,7 @@
"textContinuousPage": "Página continua",
"textCurrentPosition": "Posición actual",
"textDisplay": "Mostrar",
+ "textDone": "Hecho",
"textEmptyImgUrl": "Hay que especificar URL de imagen.",
"textEvenPage": "Página par",
"textFootnote": "Nota a pie de página",
@@ -49,6 +50,8 @@
"textPictureFromLibrary": "Imagen desde biblioteca",
"textPictureFromURL": "Imagen desde URL",
"textPosition": "Posición",
+ "textRecommended": "Recomendado",
+ "textRequired": "Necesario",
"textRightBottom": "Abajo a la derecha",
"textRightTop": "Arriba a la derecha",
"textRows": "Filas",
@@ -61,10 +64,7 @@
"textTableSize": "Tamaño de tabla",
"textWithBlueLinks": "Con enlaces azules",
"textWithPageNumbers": "Con números de página",
- "txtNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\"",
- "textDone": "Done",
- "textRecommended": "Recommended",
- "textRequired": "Required"
+ "txtNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\""
},
"Common": {
"Collaboration": {
@@ -147,6 +147,7 @@
"textReviewChange": "Revisar cambios",
"textRight": "Alinear a la derecha",
"textShape": "Forma",
+ "textSharingSettings": "Ajustes de uso compartido",
"textShd": "Color de fondo",
"textSmallCaps": "Versalitas",
"textSpacing": "Espaciado",
@@ -163,8 +164,7 @@
"textTryUndoRedo": "Las funciones Deshacer/Rehacer están desactivadas en el modo de co-edición rápido.",
"textUnderline": "Subrayar",
"textUsers": "Usuarios",
- "textWidow": "Control de viudas",
- "textSharingSettings": "Sharing Settings"
+ "textWidow": "Control de viudas"
},
"HighlightColorPalette": {
"textNoFill": "Sin relleno"
@@ -184,6 +184,7 @@
"menuDelete": "Eliminar",
"menuDeleteTable": "Eliminar tabla",
"menuEdit": "Editar",
+ "menuEditLink": "Editar enlace",
"menuJoinList": "Unir a lista anterior",
"menuMerge": "Combinar",
"menuMore": "Más",
@@ -204,8 +205,7 @@
"textRefreshEntireTable": "Actualizar toda la tabla",
"textRefreshPageNumbersOnly": "Actualizar solamente los números de página",
"textRows": "Filas",
- "txtWarnUrl": "Hacer clic en este enlace puede ser perjudicial para su dispositivo y sus datos. ¿Está seguro de que quiere continuar?",
- "menuEditLink": "Edit Link"
+ "txtWarnUrl": "Hacer clic en este enlace puede ser perjudicial para su dispositivo y sus datos. ¿Está seguro de que quiere continuar?"
},
"Edit": {
"notcriticalErrorTitle": "Advertencia",
@@ -319,6 +319,7 @@
"textPictureFromLibrary": "Imagen desde biblioteca",
"textPictureFromURL": "Imagen desde URL",
"textPt": "pt",
+ "textRecommended": "Recomendado",
"textRefresh": "Actualizar",
"textRefreshEntireTable": "Actualizar toda la tabla",
"textRefreshPageNumbersOnly": "Actualizar solamente los números de página",
@@ -330,6 +331,7 @@
"textRepeatAsHeaderRow": "Repetir como fila de encabezado",
"textReplace": "Reemplazar",
"textReplaceImage": "Reemplazar imagen",
+ "textRequired": "Necesario",
"textResizeToFitContent": "Cambiar el tamaño para ajustar el contenido",
"textRightAlign": "Alinear a la derecha",
"textSa": "sá.",
@@ -359,6 +361,7 @@
"textTableOfCont": "TDC",
"textTableOptions": "Opciones de tabla",
"textText": "Texto",
+ "textTextWrapping": "Ajuste de texto",
"textTh": "ju.",
"textThrough": "A través",
"textTight": "Estrecho",
@@ -369,14 +372,11 @@
"textType": "Tipo",
"textWe": "mi.",
"textWrap": "Ajuste",
+ "textWrappingStyle": "Estilo de ajuste",
"textChangeShape": "Change Shape",
"textCustomStyle": "Custom Style",
"textDeleteImage": "Delete Image",
- "textDeleteLink": "Delete Link",
- "textRecommended": "Recommended",
- "textRequired": "Required",
- "textTextWrapping": "Text Wrapping",
- "textWrappingStyle": "Wrapping Style"
+ "textDeleteLink": "Delete Link"
},
"Error": {
"convertationTimeoutText": "Tiempo de conversión está superado.",
@@ -390,6 +390,7 @@
"errorDataEncrypted": "Se han recibido cambios cifrados, ellos no pueden ser descifrados.",
"errorDataRange": "Rango de datos incorrecto.",
"errorDefaultMessage": "Código de error: %1",
+ "errorDirectUrl": "Por favor, verifique el vínculo al documento. Este vínculo debe ser un vínculo directo al archivo para descargar.",
"errorEditingDownloadas": "Se ha producido un error al trabajar con el documento. Descargue el documento para guardar la copia de seguridad del archivo localmente.",
"errorEmptyTOC": "Empezar a crear una tabla de contenidos aplicando un estilo de encabezamiento de la galería de Estilos al texto seleccionado.",
"errorFilePassProtect": "El archivo está protegido por contraseña y no se puede abrir.",
@@ -420,7 +421,13 @@
"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.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Cargando datos...",
@@ -451,14 +458,14 @@
"saveTitleText": "Guardando documento",
"sendMergeText": "Envío de los resultados de la fusión...",
"sendMergeTitle": "Envío de los resultados de la fusión",
+ "textContinue": "Continuar",
"textLoadingDocument": "Cargando documento",
+ "textUndo": "Deshacer",
"txtEditingMode": "Establecer el modo de edición...",
"uploadImageTextText": "Cargando imagen...",
"uploadImageTitleText": "Cargando imagen",
"waitText": "Por favor, espere...",
- "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server. Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
- "textContinue": "Continue",
- "textUndo": "Undo"
+ "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server. Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost)."
},
"Main": {
"criticalErrorTitle": "Error",
diff --git a/apps/documenteditor/mobile/locale/eu.json b/apps/documenteditor/mobile/locale/eu.json
index 9ca4b2e40..4c2b51305 100644
--- a/apps/documenteditor/mobile/locale/eu.json
+++ b/apps/documenteditor/mobile/locale/eu.json
@@ -420,7 +420,14 @@
"uploadImageExtMessage": "Irudi-formatu ezezaguna.",
"uploadImageFileCountMessage": "Ez da irudirik kargatu.",
"uploadImageSizeMessage": "Irudia handiegia da. Gehienezko tamaina 25 MB da.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Datuak kargatzen...",
diff --git a/apps/documenteditor/mobile/locale/fi.json b/apps/documenteditor/mobile/locale/fi.json
index 75e679405..2a67506d3 100644
--- a/apps/documenteditor/mobile/locale/fi.json
+++ b/apps/documenteditor/mobile/locale/fi.json
@@ -423,7 +423,14 @@
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Loading data...",
diff --git a/apps/documenteditor/mobile/locale/fr.json b/apps/documenteditor/mobile/locale/fr.json
index f7e6f2e9f..26f667d41 100644
--- a/apps/documenteditor/mobile/locale/fr.json
+++ b/apps/documenteditor/mobile/locale/fr.json
@@ -244,7 +244,7 @@
"textClose": "Fermer",
"textColor": "Couleur",
"textContinueFromPreviousSection": "Continuer à partir de la section précédente",
- "textCreateTextStyle": "Créer un nouveau style de texte",
+ "textCreateTextStyle": "Créer un nouveau style",
"textCurrent": "Actuel",
"textCustomColor": "Couleur personnalisée",
"textCustomStyle": "Style personnalisé",
@@ -263,7 +263,7 @@
"textEffects": "Effets",
"textEmpty": "Vide",
"textEmptyImgUrl": "Spécifiez l'URL de l'image",
- "textEnterTitleNewStyle": "Saisissez le titre d'un nouveau style",
+ "textEnterTitleNewStyle": "Saisissez le titre du style",
"textFebruary": "février",
"textFill": "Remplissage",
"textFirstColumn": "Première colonne",
@@ -395,6 +395,11 @@
"errorEmptyTOC": "Commencez à créer une table des matières en appliquant un style de titres de la galerie Styles au texte sélectionné.",
"errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut être ouvert.",
"errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur. Veuillez contacter votre administrateur. ",
+ "errorInconsistentExt": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier ne correspond pas à l'extension du fichier.",
+ "errorInconsistentExtDocx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des documents texte (par exemple docx), mais le fichier a une extension incohérente : %1.",
+ "errorInconsistentExtPdf": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à l'un des formats suivants : pdf/djvu/xps/oxps, mais le fichier a l'extension incohérente : %1.",
+ "errorInconsistentExtPptx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des présentations (par exemple pptx), mais le fichier a une extension incohérente : %1.",
+ "errorInconsistentExtXlsx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des feuilles de calcul (par exemple xlsx), mais le fichier a une extension incohérente : %1.",
"errorKeyEncrypt": "Descripteur de clé inconnu",
"errorKeyExpire": "Descripteur de clés expiré",
"errorLoadingFont": "Les polices ne sont pas téléchargées. Veuillez contacter l'administrateur de Document Server.",
@@ -406,6 +411,8 @@
"errorSessionToken": "La connexion au serveur a été interrompue. Veuillez recharger la page.",
"errorStockChart": "Ordre des lignes est incorrect. Pour créer un graphique boursier organisez vos données sur la feuille de calcul dans l'ordre suivant: cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.",
"errorTextFormWrongFormat": "La valeur saisie ne correspond pas au format du champ.",
+ "errorToken": "Le jeton de sécurité du document n’était pas formé correctement. Veuillez contacter l'administrateur de Document Server.",
+ "errorTokenExpire": "Le jeton de sécurité du document a expiré. Veuillez contacter votre administrateur du Document Server.",
"errorUpdateVersionOnDisconnect": "La connexion a été rétablie et la version du fichier a été modifiée. Avant de pouvoir continuer à travailler, vous devez télécharger le fichier ou copier son contenu pour vous assurer que rien n'est perdu, puis recharger cette page.",
"errorUserDrop": "Le fichier ne peut pas être accédé tout de suite.",
"errorUsersExceed": "Le nombre d'utilisateurs autorisés par le plan tarifaire a été dépassé",
diff --git a/apps/documenteditor/mobile/locale/gl.json b/apps/documenteditor/mobile/locale/gl.json
index ecef1fe8e..506894ebf 100644
--- a/apps/documenteditor/mobile/locale/gl.json
+++ b/apps/documenteditor/mobile/locale/gl.json
@@ -420,7 +420,14 @@
"uploadImageFileCountMessage": "Non hai imaxes subidas.",
"uploadImageSizeMessage": "A imaxe é demasiado grande. O tamaño máximo é de 25 MB.",
"errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
- "errorTextFormWrongFormat": "The value entered does not match the format of the field."
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorTextFormWrongFormat": "The value entered does not match the format of the field.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Cargando datos...",
diff --git a/apps/documenteditor/mobile/locale/hu.json b/apps/documenteditor/mobile/locale/hu.json
index 46f49bb5b..f71b9870a 100644
--- a/apps/documenteditor/mobile/locale/hu.json
+++ b/apps/documenteditor/mobile/locale/hu.json
@@ -420,7 +420,14 @@
"unknownErrorText": "Ismeretlen hiba.",
"uploadImageExtMessage": "Ismeretlen képformátum.",
"uploadImageFileCountMessage": "Nincsenek feltöltött képek.",
- "uploadImageSizeMessage": "A kép túl nagy. A maximális méret 25 MB."
+ "uploadImageSizeMessage": "A kép túl nagy. A maximális méret 25 MB.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Adatok betöltése...",
diff --git a/apps/documenteditor/mobile/locale/hy.json b/apps/documenteditor/mobile/locale/hy.json
index 18db0af88..8d006e5f5 100644
--- a/apps/documenteditor/mobile/locale/hy.json
+++ b/apps/documenteditor/mobile/locale/hy.json
@@ -238,6 +238,7 @@
"textCancel": "Չեղարկել",
"textCellMargins": "Վանդակի լուսանցքներ",
"textCentered": "Կենտրոնացված",
+ "textChangeShape": "Փոխել ձևը",
"textChart": "Գծապատկեր",
"textClassic": "Դասական",
"textClose": "Փակել",
@@ -246,7 +247,10 @@
"textCreateTextStyle": "Ստեղծել նոր տեքստի ոճ",
"textCurrent": "Ընթացիկ",
"textCustomColor": "Հարմարեցված գույն",
+ "textCustomStyle": "Հարմարեցված ոճ",
"textDecember": "Դեկտեմբեր",
+ "textDeleteImage": "Ջնջել պատկերը",
+ "textDeleteLink": "Ջնջել հղումը",
"textDesign": "Ձևավորում",
"textDifferentFirstPage": "Տարբեր առաջին էջ",
"textDifferentOddAndEvenPages": "Կենտ ու զույգ էջերը՝ տարբեր",
@@ -372,11 +376,7 @@
"textType": "Տեսակ",
"textWe": "Չրք",
"textWrap": "Ծալում",
- "textWrappingStyle": "Ծալման ոճ",
- "textChangeShape": "Change Shape",
- "textCustomStyle": "Custom Style",
- "textDeleteImage": "Delete Image",
- "textDeleteLink": "Delete Link"
+ "textWrappingStyle": "Ծալման ոճ"
},
"Error": {
"convertationTimeoutText": "Փոխարկման սպասման ժամանակը սպառվել է։",
@@ -395,6 +395,11 @@
"errorEmptyTOC": "Սկսել ստեղծել բովանդակության աղյուսակ՝ կիրառելով վերնագրի ոճը ոճերի սրահից ընտրված տեքստում:",
"errorFilePassProtect": "Ֆայլը պաշտպանված է գաղտնաբառով և հնարավոր չէ բացել:",
"errorFileSizeExceed": "Ֆայլի չափը գերազանցում է ձեր սերվերի սահմանաչափը:Խնդրում ենք կապվել Ձեր ադմինիստրատորի հետ:",
+ "errorInconsistentExt": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը չի համապատասխանում ֆայլի ընդլայնմանը:",
+ "errorInconsistentExtDocx": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը համապատասխանում է տեքստային փաստաթղթերին (օրինակ՝ docx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում՝ %1:",
+ "errorInconsistentExtPdf": "Ֆայլը բացելիս սխալ է տեղի ունեցել:Ֆայլի բովանդակությունը համապատասխանում է հետևյալ ձևաչափերից մեկին՝pdf/djvu/xps/oxps,բայց ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
+ "errorInconsistentExtPptx": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը համապատասխանում է ներկայացումներին (օրինակ՝ pptx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
+ "errorInconsistentExtXlsx": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը համապատասխանում է աղյուսակներին (օր. xlsx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
"errorKeyEncrypt": "Բանալու անհայտ նկարագրիչ",
"errorKeyExpire": "Բանալու նկարագրիչի ժամկետը սպառվել է",
"errorLoadingFont": "Տառատեսակները բեռնված չեն: Խնդրում ենք կապվել ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:",
@@ -420,11 +425,14 @@
"unknownErrorText": "Անհայտ սխալ։",
"uploadImageExtMessage": "Նկարի անհայտ ձևաչափ։",
"uploadImageFileCountMessage": "Ոչ մի նկար չի բեռնվել։",
- "uploadImageSizeMessage": "Պատկերը չափազանց մեծ է:Առավելագույն չափը 25 ՄԲ է:"
+ "uploadImageSizeMessage": "Պատկերը չափազանց մեծ է:Առավելագույն չափը 25 ՄԲ է:",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Տվյալների բեռնում...",
"applyChangesTitleText": "Տվյալների բեռնում",
+ "confirmMaxChangesSize": "Գործողությունների չափը գերազանցում է Ձեր սերվերի համար սահմանված սահմանափակումը: Սեղմեք «Հետարկել»՝ Ձեր վերջին գործողությունը չեղարկելու համար կամ սեղմեք «Շարունակել»՝ գործողությունը տեղում պահելու համար (Դուք պետք է ներբեռնեք ֆայլը կամ պատճենեք դրա բովանդակությունը՝ համոզվելու համար, որ ոչինչ կորած չէ):",
"downloadMergeText": "Ներբեռնում...",
"downloadMergeTitle": "Ներբեռնում",
"downloadTextText": "Փաստաթղթի ներբեռնում...",
@@ -457,8 +465,7 @@
"txtEditingMode": "Սահմանել ցուցակի խմբագրում․․․",
"uploadImageTextText": "Նկարի վերբեռնում...",
"uploadImageTitleText": "Նկարի վերբեռնում",
- "waitText": "Խնդրում ենք սպասել...",
- "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server. Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost)."
+ "waitText": "Խնդրում ենք սպասել..."
},
"Main": {
"criticalErrorTitle": "Սխալ",
diff --git a/apps/documenteditor/mobile/locale/id.json b/apps/documenteditor/mobile/locale/id.json
index 346f502be..d501cad4d 100644
--- a/apps/documenteditor/mobile/locale/id.json
+++ b/apps/documenteditor/mobile/locale/id.json
@@ -395,6 +395,11 @@
"errorEmptyTOC": "Mulai membuat daftar isi dengan menerapkan gaya judul dari galeri Gaya kepada teks terpilih.",
"errorFilePassProtect": "Password file diproteksi dan tidak bisa dibuka.",
"errorFileSizeExceed": "Ukuran file melampaui limit server Anda. Silakan, hubungi admin.",
+ "errorInconsistentExt": "Terjadi kesalahan saat membuka file. Isi file tidak cocok dengan ekstensi file.",
+ "errorInconsistentExtDocx": "Terjadi kesalahan saat membuka file. Isi file berhubungan dengan dokumen teks (mis. docx), tapi file memiliki ekstensi yang tidak konsisten: %1.",
+ "errorInconsistentExtPdf": "Sebuah kesalahan terjadi ketika membuka file. Isi file berhubungan dengan satu dari format berikut: pdf/djvu/xps/oxps, tapi file memiliki ekstensi yang tidak konsisten: %1.",
+ "errorInconsistentExtPptx": "Terjadi kesalahan saat membuka file. Isi file berhubungan dengan presentasi (mis. pptx), tapi file memiliki ekstensi yang tidak konsisten: %1.",
+ "errorInconsistentExtXlsx": "Terjadi kesalahan saat membuka file. Isi file berhubungan dengan spreadsheet (mis. xlsx), tapi file memiliki ekstensi yang tidak konsisten: %1.",
"errorKeyEncrypt": "Deskriptor kunci tidak dikenal",
"errorKeyExpire": "Deskriptor kunci tidak berfungsi",
"errorLoadingFont": "Font tidak bisa dimuat. Silakan kontak admin Server Dokumen Anda.",
@@ -406,6 +411,8 @@
"errorSessionToken": "Koneksi ke server terganggu. Silakan muat ulang halaman.",
"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.",
"errorTextFormWrongFormat": "Nilai yang dimasukkan tidak cocok dengan format bidang.",
+ "errorToken": "Token keamanan dokumen tidak dibentuk dengan benar. Silakan hubungi admin Server Dokumen Anda.",
+ "errorTokenExpire": "Token keamanan dokumen sudah kedaluwarsa. Silakan hubungi admin Server Dokumen Anda.",
"errorUpdateVersionOnDisconnect": "Koneksi internet sudah kembali dan versi file sudah diganti. Sebelum Anda bisa melanjutkan kerja, Anda perlu mengunduh file atau salin konten untuk memastikan tidak ada yang hilang, lalu muat ulang halaman ini.",
"errorUserDrop": "File tidak bisa diakses sekarang.",
"errorUsersExceed": "Jumlah pengguna telah melebihi jumlah yang diijinkan dalam paket harga.",
@@ -471,7 +478,7 @@
"notcriticalErrorTitle": "Peringatan",
"SDK": {
" -Section ": "-Bagian",
- "above": "Di atas",
+ "above": "di atas",
"below": "di bawah",
"Caption": "Caption",
"Choose an item": "Pilih satu barang",
diff --git a/apps/documenteditor/mobile/locale/it.json b/apps/documenteditor/mobile/locale/it.json
index f2ccfc6bf..e48c96df6 100644
--- a/apps/documenteditor/mobile/locale/it.json
+++ b/apps/documenteditor/mobile/locale/it.json
@@ -26,6 +26,7 @@
"textContinuousPage": "Pagina continua",
"textCurrentPosition": "Posizione attuale",
"textDisplay": "Visualizzare",
+ "textDone": "Fatto",
"textEmptyImgUrl": "Devi specificare l'URL dell'immagine.",
"textEvenPage": "Pagina pari",
"textFootnote": "Note a piè di pagina",
@@ -49,6 +50,8 @@
"textPictureFromLibrary": "Immagine dalla libreria",
"textPictureFromURL": "Immagine dall'URL",
"textPosition": "Posizione",
+ "textRecommended": "Consigliato",
+ "textRequired": "Richiesto",
"textRightBottom": "In basso a destra",
"textRightTop": "In alto a destra",
"textRows": "Righe",
@@ -61,10 +64,7 @@
"textTableSize": "Dimensione di tabella",
"textWithBlueLinks": "Con link blu",
"textWithPageNumbers": "Con numeri di pagina",
- "txtNotUrl": "Questo campo deve essere un URL nel formato \"http://www.example.com\"",
- "textDone": "Done",
- "textRecommended": "Recommended",
- "textRequired": "Required"
+ "txtNotUrl": "Questo campo deve essere un URL nel formato \"http://www.example.com\""
},
"Common": {
"Collaboration": {
@@ -147,6 +147,7 @@
"textReviewChange": "Riesaminare le modifiche",
"textRight": "Allineare a destra",
"textShape": "Forma",
+ "textSharingSettings": "Impostazioni di condivisione",
"textShd": "Colore di sfondo",
"textSmallCaps": "Maiuscoletto",
"textSpacing": "Spaziatura",
@@ -163,8 +164,7 @@
"textTryUndoRedo": "Le funzioni Annulla/Ripeti sono disattivate nella modalità rapida di modifica collaborativa.",
"textUnderline": "Sottolineato",
"textUsers": "Utenti",
- "textWidow": "Controllo vedovo",
- "textSharingSettings": "Sharing Settings"
+ "textWidow": "Controllo vedovo"
},
"HighlightColorPalette": {
"textNoFill": "Nessun riempimento"
@@ -184,6 +184,7 @@
"menuDelete": "Eliminare",
"menuDeleteTable": "Eliminare tabella",
"menuEdit": "Modificare",
+ "menuEditLink": "Modifica collegamento",
"menuJoinList": "Unire all'elenco precedente",
"menuMerge": "Unire",
"menuMore": "Di più",
@@ -204,8 +205,7 @@
"textRefreshEntireTable": "Aggiorna intera tabella",
"textRefreshPageNumbersOnly": "Aggiorna solo numeri di pagina",
"textRows": "Righe",
- "txtWarnUrl": "Fare clic su questo collegamento può danneggiare il tuo dispositivo e i tuoi dati. Sei sicuro che vuoi continuare?",
- "menuEditLink": "Edit Link"
+ "txtWarnUrl": "Fare clic su questo collegamento può danneggiare il tuo dispositivo e i tuoi dati. Sei sicuro che vuoi continuare?"
},
"Edit": {
"notcriticalErrorTitle": "Avvertimento",
@@ -247,6 +247,7 @@
"textCurrent": "Attuale",
"textCustomColor": "Colore personalizzato",
"textDecember": "Dicembre",
+ "textDeleteLink": "Elimina collegamento",
"textDesign": "Design",
"textDifferentFirstPage": "Prima pagina diversa",
"textDifferentOddAndEvenPages": "Pagine pari e dispari diverse",
@@ -319,6 +320,7 @@
"textPictureFromLibrary": "Immagine dalla libreria",
"textPictureFromURL": "Immagine dall'URL",
"textPt": "pt",
+ "textRecommended": "Consigliato",
"textRefresh": "Aggiorna",
"textRefreshEntireTable": "Aggiorna intera tabella",
"textRefreshPageNumbersOnly": "Aggiorna solo numeri di pagina",
@@ -330,6 +332,7 @@
"textRepeatAsHeaderRow": "Ripetere come riga di intestazione",
"textReplace": "Sostituire",
"textReplaceImage": "Sostituire l'immagine",
+ "textRequired": "Richiesto",
"textResizeToFitContent": "Ridimensionare per adattare il contenuto",
"textRightAlign": "Allinea a destra",
"textSa": "Sab",
@@ -359,6 +362,7 @@
"textTableOfCont": "Indice",
"textTableOptions": "Opzioni di tabella",
"textText": "Testo",
+ "textTextWrapping": "Disposizione testo",
"textTh": "Gio",
"textThrough": "Attraverso",
"textTight": "Stretto",
@@ -369,14 +373,10 @@
"textType": "Tipo",
"textWe": "Mer",
"textWrap": "Avvolgere",
+ "textWrappingStyle": "Stile di disposizione testo",
"textChangeShape": "Change Shape",
"textCustomStyle": "Custom Style",
- "textDeleteImage": "Delete Image",
- "textDeleteLink": "Delete Link",
- "textRecommended": "Recommended",
- "textRequired": "Required",
- "textTextWrapping": "Text Wrapping",
- "textWrappingStyle": "Wrapping Style"
+ "textDeleteImage": "Delete Image"
},
"Error": {
"convertationTimeoutText": "È stato superato il tempo massimo della conversione.",
@@ -390,6 +390,7 @@
"errorDataEncrypted": "Le modifiche crittografate sono state ricevute, non possono essere decifrate.",
"errorDataRange": "Intervallo di dati non corretto.",
"errorDefaultMessage": "Codice errore: %1",
+ "errorDirectUrl": "Si prega di verificare il link al documento. Questo collegamento deve essere un collegamento diretto al file da scaricare.",
"errorEditingDownloadas": "Si è verificato un errore durante il lavoro con il documento. Scarica il documento per salvare il backup del file localmente.",
"errorEmptyTOC": "Inizia a creare un sommario applicando uno stile di intestazione dalla galleria Stili al testo selezionato.",
"errorFilePassProtect": "Il file è protetto da password e non può essere aperto.",
@@ -404,6 +405,7 @@
"errorSessionIdle": "Il documento non è stato modificato per molto tempo. Ti preghiamo di ricaricare la pagina.",
"errorSessionToken": "La connessione al server è stata interrotta. Ti preghiamo di ricaricare la pagina.",
"errorStockChart": "Ordine delle righe incorretto. Per creare un grafico azionario, inserisci i dati sul foglio nel seguente ordine: prezzo di apertura, prezzo massimo, prezzo minimo, prezzo di chiusura.",
+ "errorTextFormWrongFormat": "Il valore inserito non corrisponde al formato del campo.",
"errorUpdateVersionOnDisconnect": "La connessione Internet è stata ripristinata e la versione del file è stata modificata. Prima di poter continuare a lavorare, devi scaricare il file o copiarne il contenuto per assicurarti che nulla vada perso, quindi ricarica questa pagina.",
"errorUserDrop": "Non si può accedere al file al momento.",
"errorUsersExceed": "È stato superato il numero degli utenti consentito dalla tariffa",
@@ -419,8 +421,13 @@
"uploadImageExtMessage": "Formato d'immagine sconosciuto.",
"uploadImageFileCountMessage": "Nessuna immagine caricata.",
"uploadImageSizeMessage": "L'immagine è troppo grande. La dimensione massima è 25 MB.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
- "errorTextFormWrongFormat": "The value entered does not match the format of the field."
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Caricamento di dati...",
@@ -451,14 +458,14 @@
"saveTitleText": "Salvataggio del documento",
"sendMergeText": "Invio dei resultati della fusione...",
"sendMergeTitle": "Invio dei resultati della fusione",
+ "textContinue": "Continua",
"textLoadingDocument": "Caricamento di documento",
+ "textUndo": "Annulla",
"txtEditingMode": "Impostare la modalità di modifica...",
"uploadImageTextText": "Caricamento dell'immagine...",
"uploadImageTitleText": "Caricamento dell'immagine",
"waitText": "Attendere prego...",
- "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server. Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
- "textContinue": "Continue",
- "textUndo": "Undo"
+ "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server. Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost)."
},
"Main": {
"criticalErrorTitle": "Errore",
diff --git a/apps/documenteditor/mobile/locale/ja.json b/apps/documenteditor/mobile/locale/ja.json
index 774fd87c1..5471dc148 100644
--- a/apps/documenteditor/mobile/locale/ja.json
+++ b/apps/documenteditor/mobile/locale/ja.json
@@ -420,7 +420,14 @@
"unknownErrorText": "不明なエラー",
"uploadImageExtMessage": "不明なイメージの形式",
"uploadImageFileCountMessage": "アップロードしたイメージがない",
- "uploadImageSizeMessage": "イメージのサイズの上限が超えさせました。サイズの上限が25MB。"
+ "uploadImageSizeMessage": "イメージのサイズの上限が超えさせました。サイズの上限が25MB。",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "データの読み込み中...",
diff --git a/apps/documenteditor/mobile/locale/ko.json b/apps/documenteditor/mobile/locale/ko.json
index 727c7db81..6cb3457ab 100644
--- a/apps/documenteditor/mobile/locale/ko.json
+++ b/apps/documenteditor/mobile/locale/ko.json
@@ -419,8 +419,15 @@
"uploadImageSizeMessage": "이미지 크기 제한을 초과했습니다.",
"errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
- "errorTextFormWrongFormat": "The value entered does not match the format of the field."
+ "errorTextFormWrongFormat": "The value entered does not match the format of the field.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "데이터로드 중 ...",
diff --git a/apps/documenteditor/mobile/locale/lo.json b/apps/documenteditor/mobile/locale/lo.json
index b61c1eac9..93b2e1790 100644
--- a/apps/documenteditor/mobile/locale/lo.json
+++ b/apps/documenteditor/mobile/locale/lo.json
@@ -419,8 +419,15 @@
"uploadImageSizeMessage": "ຮູບພາບໃຫຍ່ເກີນໄປ. ຂະຫນາດສູງສຸດແມ່ນ 25 MB.",
"errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
- "errorTextFormWrongFormat": "The value entered does not match the format of the field."
+ "errorTextFormWrongFormat": "The value entered does not match the format of the field.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "ກຳລັງດາວໂຫຼດຂໍ້ມູນ...",
diff --git a/apps/documenteditor/mobile/locale/lv.json b/apps/documenteditor/mobile/locale/lv.json
index 75e679405..2a67506d3 100644
--- a/apps/documenteditor/mobile/locale/lv.json
+++ b/apps/documenteditor/mobile/locale/lv.json
@@ -423,7 +423,14 @@
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Loading data...",
diff --git a/apps/documenteditor/mobile/locale/ms.json b/apps/documenteditor/mobile/locale/ms.json
index 7cd4461e9..f2c700a10 100644
--- a/apps/documenteditor/mobile/locale/ms.json
+++ b/apps/documenteditor/mobile/locale/ms.json
@@ -420,7 +420,14 @@
"uploadImageFileCountMessage": "Tiada Imej dimuat naik.",
"uploadImageSizeMessage": "Imej terlalu besar. Saiz maksimum adalah 25 MB.",
"errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
- "errorTextFormWrongFormat": "The value entered does not match the format of the field."
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorTextFormWrongFormat": "The value entered does not match the format of the field.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Data dimuatkan…",
diff --git a/apps/documenteditor/mobile/locale/nb.json b/apps/documenteditor/mobile/locale/nb.json
index 75e679405..2a67506d3 100644
--- a/apps/documenteditor/mobile/locale/nb.json
+++ b/apps/documenteditor/mobile/locale/nb.json
@@ -423,7 +423,14 @@
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Loading data...",
diff --git a/apps/documenteditor/mobile/locale/nl.json b/apps/documenteditor/mobile/locale/nl.json
index efbea29fc..55e8b518d 100644
--- a/apps/documenteditor/mobile/locale/nl.json
+++ b/apps/documenteditor/mobile/locale/nl.json
@@ -419,8 +419,15 @@
"uploadImageSizeMessage": "De afbeelding is te groot. De maximale grootte is 25MB.",
"errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
- "errorTextFormWrongFormat": "The value entered does not match the format of the field."
+ "errorTextFormWrongFormat": "The value entered does not match the format of the field.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Gegevens worden geladen...",
diff --git a/apps/documenteditor/mobile/locale/pl.json b/apps/documenteditor/mobile/locale/pl.json
index 75e679405..2a67506d3 100644
--- a/apps/documenteditor/mobile/locale/pl.json
+++ b/apps/documenteditor/mobile/locale/pl.json
@@ -423,7 +423,14 @@
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Loading data...",
diff --git a/apps/documenteditor/mobile/locale/pt-pt.json b/apps/documenteditor/mobile/locale/pt-pt.json
index 93a23c626..ea328fec3 100644
--- a/apps/documenteditor/mobile/locale/pt-pt.json
+++ b/apps/documenteditor/mobile/locale/pt-pt.json
@@ -420,7 +420,14 @@
"unknownErrorText": "Erro desconhecido.",
"uploadImageExtMessage": "Formato de imagem desconhecido.",
"uploadImageFileCountMessage": "Nenhuma imagem foi carregada.",
- "uploadImageSizeMessage": "A imagem é muito grande. O tamanho máximo é de 25 MB."
+ "uploadImageSizeMessage": "A imagem é muito grande. O tamanho máximo é de 25 MB.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "A carregar dados...",
diff --git a/apps/documenteditor/mobile/locale/pt.json b/apps/documenteditor/mobile/locale/pt.json
index babe90687..de4ca1409 100644
--- a/apps/documenteditor/mobile/locale/pt.json
+++ b/apps/documenteditor/mobile/locale/pt.json
@@ -395,6 +395,11 @@
"errorEmptyTOC": "Comece a criar um sumário aplicando um estilo de título da galeria Estilos ao texto selecionado.",
"errorFilePassProtect": "O arquivo é protegido por senha e não pôde ser aberto.",
"errorFileSizeExceed": "O tamanho do arquivo excede o limite de seu servidor. Por favor, contate seu administrador.",
+ "errorInconsistentExt": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo não corresponde à extensão do arquivo.",
+ "errorInconsistentExtDocx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a documentos de texto (por exemplo, docx), mas o arquivo tem a extensão inconsistente: %1.",
+ "errorInconsistentExtPdf": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a um dos seguintes formatos: pdf/djvu/xps/oxps, mas o arquivo tem a extensão inconsistente: %1.",
+ "errorInconsistentExtPptx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a apresentações (por exemplo, pptx), mas o arquivo tem a extensão inconsistente: %1.",
+ "errorInconsistentExtXlsx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a planilhas (por exemplo, xlsx), mas o arquivo tem a extensão inconsistente: %1.",
"errorKeyEncrypt": "Descritor de chave desconhecido",
"errorKeyExpire": "Descritor de chave expirado",
"errorLoadingFont": "As fontes não foram carregadas. Entre em contato com o administrador do Document Server.",
@@ -420,11 +425,14 @@
"unknownErrorText": "Erro desconhecido.",
"uploadImageExtMessage": "Formato de imagem desconhecido.",
"uploadImageFileCountMessage": "Sem imagens carregadas.",
- "uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB."
+ "uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Carregando dados...",
"applyChangesTitleText": "Carregando dados",
+ "confirmMaxChangesSize": "O tamanho das ações excede a limitação definida para seu servidor. Pressione \"Desfazer\" para cancelar sua última ação ou pressione \"Continue\" para manter a ação localmente (você precisa baixar o arquivo ou copiar seu conteúdo para garantir que nada seja perdido).",
"downloadMergeText": "Baixando...",
"downloadMergeTitle": "Baixando",
"downloadTextText": "Baixando documento...",
@@ -451,14 +459,13 @@
"saveTitleText": "Salvando documento",
"sendMergeText": "Enviando mesclar...",
"sendMergeTitle": "Enviando Mesclar",
+ "textContinue": "Continuar",
"textLoadingDocument": "Carregando documento",
+ "textUndo": "Desfazer",
"txtEditingMode": "Definir modo de edição...",
"uploadImageTextText": "Carregando imagem...",
"uploadImageTitleText": "Carregando imagem",
- "waitText": "Por favor, aguarde...",
- "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server. Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
- "textContinue": "Continue",
- "textUndo": "Undo"
+ "waitText": "Por favor, aguarde..."
},
"Main": {
"criticalErrorTitle": "Erro",
diff --git a/apps/documenteditor/mobile/locale/ro.json b/apps/documenteditor/mobile/locale/ro.json
index bcb17a665..31111d5cd 100644
--- a/apps/documenteditor/mobile/locale/ro.json
+++ b/apps/documenteditor/mobile/locale/ro.json
@@ -420,7 +420,14 @@
"uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.",
"uploadImageSizeMessage": "Imaginea este prea mare. Limita de dimensiune este de 25 MB.",
"errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
- "errorTextFormWrongFormat": "The value entered does not match the format of the field."
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorTextFormWrongFormat": "The value entered does not match the format of the field.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Încărcarea datelor...",
diff --git a/apps/documenteditor/mobile/locale/ru.json b/apps/documenteditor/mobile/locale/ru.json
index 7b33a4d08..f0e017bbe 100644
--- a/apps/documenteditor/mobile/locale/ru.json
+++ b/apps/documenteditor/mobile/locale/ru.json
@@ -395,6 +395,11 @@
"errorEmptyTOC": "Начните создавать оглавление, применив к выделенному тексту стиль заголовка из галереи Стилей.",
"errorFilePassProtect": "Файл защищен паролем и не может быть открыт.",
"errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера. Пожалуйста, обратитесь к администратору.",
+ "errorInconsistentExt": "При открытии файла произошла ошибка. Содержимое файла не соответствует расширению файла.",
+ "errorInconsistentExtDocx": "При открытии файла произошла ошибка. Содержимое файла соответствует документам (например, docx), но файл имеет несоответствующее расширение: %1.",
+ "errorInconsistentExtPdf": "При открытии файла произошла ошибка. Содержимое файла соответствует одному из следующих форматов: pdf/djvu/xps/oxps, но файл имеет несоответствующее расширение: %1.",
+ "errorInconsistentExtPptx": "При открытии файла произошла ошибка. Содержимое файла соответствует презентациям (например, pptx), но файл имеет несоответствующее расширение: %1.",
+ "errorInconsistentExtXlsx": "При открытии файла произошла ошибка. Содержимое файла соответствует электронным таблицам (например, xlsx), но файл имеет несоответствующее расширение: %1.",
"errorKeyEncrypt": "Неизвестный дескриптор ключа",
"errorKeyExpire": "Срок действия дескриптора ключа истек",
"errorLoadingFont": "Шрифты не загружены. Пожалуйста, обратитесь к администратору Сервера документов.",
@@ -406,6 +411,8 @@
"errorSessionToken": "Подключение к серверу было прервано. Пожалуйста, обновите страницу.",
"errorStockChart": "Неверный порядок строк. Чтобы создать биржевую диаграмму, расположите данные на листе в следующем порядке: цена открытия, максимальная цена, минимальная цена, цена закрытия.",
"errorTextFormWrongFormat": "Введенное значение не соответствует формату поля.",
+ "errorToken": "Токен безопасности документа имеет неправильный формат. Пожалуйста, обратитесь к администратору Сервера документов.",
+ "errorTokenExpire": "Истек срок действия токена безопасности документа. Пожалуйста, обратитесь к администратору Сервера документов.",
"errorUpdateVersionOnDisconnect": "Соединение было восстановлено, и версия файла изменилась. Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.",
"errorUserDrop": "В настоящий момент файл недоступен.",
"errorUsersExceed": "Превышено количество пользователей, разрешенных согласно тарифному плану",
diff --git a/apps/documenteditor/mobile/locale/sk.json b/apps/documenteditor/mobile/locale/sk.json
index ece5571ac..3bf5e2d86 100644
--- a/apps/documenteditor/mobile/locale/sk.json
+++ b/apps/documenteditor/mobile/locale/sk.json
@@ -419,8 +419,15 @@
"uploadImageSizeMessage": "Obrázok je príliš veľký. Maximálna veľkosť je 25 MB.",
"errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
- "errorTextFormWrongFormat": "The value entered does not match the format of the field."
+ "errorTextFormWrongFormat": "The value entered does not match the format of the field.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Načítavanie dát...",
diff --git a/apps/documenteditor/mobile/locale/sl.json b/apps/documenteditor/mobile/locale/sl.json
index e20a604ca..542541bed 100644
--- a/apps/documenteditor/mobile/locale/sl.json
+++ b/apps/documenteditor/mobile/locale/sl.json
@@ -623,6 +623,11 @@
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
"errorFilePassProtect": "The file is password protected and could not be opened.",
"errorFileSizeExceed": "The file size exceeds your server limit. Please, contact your admin.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
"errorKeyEncrypt": "Unknown key descriptor",
"errorKeyExpire": "Key descriptor expired",
"errorLoadingFont": "Fonts are not loaded. Please contact your Document Server administrator.",
@@ -634,6 +639,8 @@
"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.",
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
"errorUpdateVersionOnDisconnect": "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",
diff --git a/apps/documenteditor/mobile/locale/sv.json b/apps/documenteditor/mobile/locale/sv.json
index 75e679405..2a67506d3 100644
--- a/apps/documenteditor/mobile/locale/sv.json
+++ b/apps/documenteditor/mobile/locale/sv.json
@@ -423,7 +423,14 @@
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Loading data...",
diff --git a/apps/documenteditor/mobile/locale/tr.json b/apps/documenteditor/mobile/locale/tr.json
index 2eacfe819..496a83f19 100644
--- a/apps/documenteditor/mobile/locale/tr.json
+++ b/apps/documenteditor/mobile/locale/tr.json
@@ -419,8 +419,15 @@
"uploadImageSizeMessage": "Görüntü çok büyük. Maksimum boyut 25 MB'dir.",
"errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
- "errorTextFormWrongFormat": "The value entered does not match the format of the field."
+ "errorTextFormWrongFormat": "The value entered does not match the format of the field.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Veri yükleniyor...",
diff --git a/apps/documenteditor/mobile/locale/uk.json b/apps/documenteditor/mobile/locale/uk.json
index 84deb7514..7d32f8d70 100644
--- a/apps/documenteditor/mobile/locale/uk.json
+++ b/apps/documenteditor/mobile/locale/uk.json
@@ -419,8 +419,15 @@
"uploadImageSizeMessage": "Занадто велике зображення. Максимальний розмір – 25 MB.",
"errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
- "errorTextFormWrongFormat": "The value entered does not match the format of the field."
+ "errorTextFormWrongFormat": "The value entered does not match the format of the field.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Завантаження даних...",
diff --git a/apps/documenteditor/mobile/locale/vi.json b/apps/documenteditor/mobile/locale/vi.json
index 75e679405..2a67506d3 100644
--- a/apps/documenteditor/mobile/locale/vi.json
+++ b/apps/documenteditor/mobile/locale/vi.json
@@ -423,7 +423,14 @@
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Loading data...",
diff --git a/apps/documenteditor/mobile/locale/zh-tw.json b/apps/documenteditor/mobile/locale/zh-tw.json
index ee5ce8bfa..dcfb96223 100644
--- a/apps/documenteditor/mobile/locale/zh-tw.json
+++ b/apps/documenteditor/mobile/locale/zh-tw.json
@@ -420,7 +420,14 @@
"uploadImageFileCountMessage": "無上傳圖片。",
"uploadImageSizeMessage": "圖像超出最大大小限制。最大為25MB。",
"errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
- "errorTextFormWrongFormat": "The value entered does not match the format of the field."
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorTextFormWrongFormat": "The value entered does not match the format of the field.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "載入資料中...",
diff --git a/apps/documenteditor/mobile/locale/zh.json b/apps/documenteditor/mobile/locale/zh.json
index dc4b98332..cef07930b 100644
--- a/apps/documenteditor/mobile/locale/zh.json
+++ b/apps/documenteditor/mobile/locale/zh.json
@@ -420,11 +420,19 @@
"unknownErrorText": "未知错误。",
"uploadImageExtMessage": "未知图像格式。",
"uploadImageFileCountMessage": "没有图片上传",
- "uploadImageSizeMessage": "图片太大了。最大允许的大小是 25 MB."
+ "uploadImageSizeMessage": "图片太大了。最大允许的大小是 25 MB.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "数据加载中…",
"applyChangesTitleText": "数据加载中",
+ "confirmMaxChangesSize": "行动的大小超过了对您服务器设置的限制。 按 \"撤消\"取消您的最后一次行动,或按\"继续\"在本地保留该行动(您需要下载文件或复制其内容以确保没有任何损失)。",
"downloadMergeText": "下载中…",
"downloadMergeTitle": "下载中",
"downloadTextText": "正在下载文件...",
@@ -451,14 +459,13 @@
"saveTitleText": "保存文件",
"sendMergeText": "任务合并",
"sendMergeTitle": "任务合并",
+ "textContinue": "发送",
"textLoadingDocument": "文件加载中…",
+ "textUndo": "复原",
"txtEditingMode": "设置编辑模式..",
"uploadImageTextText": "上传图片...",
"uploadImageTitleText": "图片上传中",
- "waitText": "请稍候...",
- "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server. Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
- "textContinue": "Continue",
- "textUndo": "Undo"
+ "waitText": "请稍候..."
},
"Main": {
"criticalErrorTitle": "错误",
diff --git a/apps/documenteditor/mobile/src/controller/Error.jsx b/apps/documenteditor/mobile/src/controller/Error.jsx
index f06fbce0c..8fe766a05 100644
--- a/apps/documenteditor/mobile/src/controller/Error.jsx
+++ b/apps/documenteditor/mobile/src/controller/Error.jsx
@@ -3,7 +3,7 @@ import { inject } from 'mobx-react';
import { f7 } from 'framework7-react';
import { useTranslation } from 'react-i18next';
-const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocument}) => {
+const ErrorController = inject('storeAppOptions','storeDocumentInfo')(({storeAppOptions, storeDocumentInfo, LoadingDocument}) => {
const { t } = useTranslation();
const _t = t("Error", { returnObjects: true });
@@ -88,11 +88,11 @@ const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocu
break;
case Asc.c_oAscError.ID.VKeyEncrypt:
- config.msg = _t.errorKeyEncrypt;
+ config.msg = _t.errorToken;
break;
case Asc.c_oAscError.ID.KeyExpire:
- config.msg = _t.errorKeyExpire;
+ config.msg = _t.errorTokenExpire;
break;
case Asc.c_oAscError.ID.UserCountExceed:
@@ -197,6 +197,20 @@ const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocu
config.msg = _t.errorDirectUrl;
break;
+ case Asc.c_oAscError.ID.ConvertationOpenFormat:
+ let docExt = storeDocumentInfo.dataDoc ? storeDocumentInfo.dataDoc.fileType || '' : '';
+ if (errData === 'pdf')
+ config.msg = _t.errorInconsistentExtPdf.replace('%1', docExt);
+ else if (errData === 'docx')
+ config.msg = _t.errorInconsistentExtDocx.replace('%1', docExt);
+ else if (errData === 'xlsx')
+ config.msg = _t.errorInconsistentExtXlsx.replace('%1', docExt);
+ else if (errData === 'pptx')
+ config.msg = _t.errorInconsistentExtPptx.replace('%1', docExt);
+ else
+ config.msg = _t.errorInconsistentExt;
+ break;
+
default:
config.msg = _t.errorDefaultMessage.replace('%1', id);
break;
diff --git a/apps/documenteditor/mobile/src/index_dev.html b/apps/documenteditor/mobile/src/index_dev.html
index 939932bab..131c5e153 100644
--- a/apps/documenteditor/mobile/src/index_dev.html
+++ b/apps/documenteditor/mobile/src/index_dev.html
@@ -25,6 +25,7 @@
<% if ( htmlWebpackPlugin.options.skeleton.htmlscript ) { %>
<% } %>
diff --git a/apps/documenteditor/mobile/src/page/main.jsx b/apps/documenteditor/mobile/src/page/main.jsx
index cac56243e..0930ea82d 100644
--- a/apps/documenteditor/mobile/src/page/main.jsx
+++ b/apps/documenteditor/mobile/src/page/main.jsx
@@ -33,6 +33,12 @@ class MainPage extends Component {
};
}
+ componentDidMount() {
+ if ( $$('.skl-container').length ) {
+ $$('.skl-container').remove();
+ }
+ }
+
handleClickToOpenOptions = (opts, showOpts) => {
f7.popover.close('.document-menu.modal-in', false);
@@ -142,6 +148,7 @@ class MainPage extends Component {
const showPlaceholder = !appOptions.isDocReady && (!config.customization || !(config.customization.loaderName || config.customization.loaderLogo));
const isBranding = appOptions.canBranding || appOptions.canBrandingExt;
+
if ($$('.skl-container').length) {
$$('.skl-container').remove();
}
diff --git a/apps/presentationeditor/embed/js/ApplicationController.js b/apps/presentationeditor/embed/js/ApplicationController.js
index 1ef42abb2..28e6fe5c3 100644
--- a/apps/presentationeditor/embed/js/ApplicationController.js
+++ b/apps/presentationeditor/embed/js/ApplicationController.js
@@ -614,6 +614,19 @@ PE.ApplicationController = new(function(){
message = me.errorTokenExpire;
break;
+ case Asc.c_oAscError.ID.ConvertationOpenFormat:
+ if (errData === 'pdf')
+ message = me.errorInconsistentExtPdf.replace('%1', docConfig.fileType || '');
+ else if (errData === 'docx')
+ message = me.errorInconsistentExtDocx.replace('%1', docConfig.fileType || '');
+ else if (errData === 'xlsx')
+ message = me.errorInconsistentExtXlsx.replace('%1', docConfig.fileType || '');
+ else if (errData === 'pptx')
+ message = me.errorInconsistentExtPptx.replace('%1', docConfig.fileType || '');
+ else
+ message = me.errorInconsistentExt;
+ break;
+
default:
message = me.errorDefaultMessage.replace('%1', id);
break;
@@ -782,6 +795,11 @@ PE.ApplicationController = new(function(){
errorForceSave: "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.",
errorLoadingFont: 'Fonts are not loaded. Please contact your Document Server administrator.',
errorTokenExpire: 'The document security token has expired. Please contact your Document Server administrator.',
- openErrorText: 'An error has occurred while opening the file'
+ openErrorText: 'An error has occurred while opening the file',
+ errorInconsistentExtDocx: 'An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.',
+ errorInconsistentExtXlsx: 'An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.',
+ errorInconsistentExtPptx: 'An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.',
+ errorInconsistentExtPdf: 'An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.',
+ errorInconsistentExt: 'An error has occurred while opening the file. The file content does not match the file extension.'
}
})();
diff --git a/apps/presentationeditor/embed/locale/de.json b/apps/presentationeditor/embed/locale/de.json
index 135a9b429..321553e99 100644
--- a/apps/presentationeditor/embed/locale/de.json
+++ b/apps/presentationeditor/embed/locale/de.json
@@ -15,6 +15,11 @@
"PE.ApplicationController.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.",
"PE.ApplicationController.errorFileSizeExceed": "Die Dateigröße überschreitet die für Ihren Server festgelegte Einschränkung. Weitere Informationen können Sie von Ihrem Document Server-Administrator erhalten.",
"PE.ApplicationController.errorForceSave": "Beim Speichern der Datei ist ein Fehler aufgetreten. Verwenden Sie die Option \"Herunterladen als\", um die Datei auf Ihrer Computerfestplatte zu speichern oder versuchen Sie es später erneut.",
+ "PE.ApplicationController.errorInconsistentExt": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei stimmt nicht mit der Dateierweiterung überein.",
+ "PE.ApplicationController.errorInconsistentExtDocx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Textdokumenten (z.B. docx), aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "PE.ApplicationController.errorInconsistentExtPdf": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht einem der folgenden Formate: pdf/djvu/xps/oxps, aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "PE.ApplicationController.errorInconsistentExtPptx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Präsentationen (z.B. pptx), aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "PE.ApplicationController.errorInconsistentExtXlsx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Tabellenkalkulationen (z.B. xlsx), aber die Datei hat die inkonsistente Erweiterung: %1.",
"PE.ApplicationController.errorLoadingFont": "Schriftarten nicht hochgeladen. Bitte wenden Sie sich an Administratoren von Ihrem Document Server.",
"PE.ApplicationController.errorTokenExpire": "Sicherheitstoken des Dokuments ist abgelaufen. Wenden Sie sich an Ihren Serveradministrator.",
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "Die Internetverbindung wurde wiederhergestellt und die Dateiversion wurde geändert. Bevor Sie weiterarbeiten können, müssen Sie die Datei herunterladen oder den Inhalt kopieren, um sicherzustellen, dass nichts verloren geht, und diese Seite anschließend neu laden.",
diff --git a/apps/presentationeditor/embed/locale/en.json b/apps/presentationeditor/embed/locale/en.json
index a53e47c3b..0ce46bf0b 100644
--- a/apps/presentationeditor/embed/locale/en.json
+++ b/apps/presentationeditor/embed/locale/en.json
@@ -15,6 +15,11 @@
"PE.ApplicationController.errorFilePassProtect": "The file is password protected and cannot be opened.",
"PE.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server. Please contact your Document Server administrator for details.",
"PE.ApplicationController.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.",
+ "PE.ApplicationController.errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "PE.ApplicationController.errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "PE.ApplicationController.errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "PE.ApplicationController.errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "PE.ApplicationController.errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
"PE.ApplicationController.errorLoadingFont": "Fonts are not loaded. Please contact your Document Server administrator.",
"PE.ApplicationController.errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "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.",
diff --git a/apps/presentationeditor/embed/locale/fr.json b/apps/presentationeditor/embed/locale/fr.json
index 623d4cf98..85e1e3062 100644
--- a/apps/presentationeditor/embed/locale/fr.json
+++ b/apps/presentationeditor/embed/locale/fr.json
@@ -15,6 +15,11 @@
"PE.ApplicationController.errorFilePassProtect": "Le fichier est protégé par un mot de passe et ne peut pas être ouvert.",
"PE.ApplicationController.errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur. Veuillez contacter votre administrateur de Document Server pour obtenir plus d'information. ",
"PE.ApplicationController.errorForceSave": "Une erreur est survenue lors de l'enregistrement du fichier. Veuillez utiliser l'option «Télécharger en tant que» pour enregistrer le fichier sur le disque dur de votre ordinateur ou réessayer plus tard.",
+ "PE.ApplicationController.errorInconsistentExt": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier ne correspond pas à l'extension du fichier.",
+ "PE.ApplicationController.errorInconsistentExtDocx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des documents texte (par exemple docx), mais le fichier a une extension incohérente : %1.",
+ "PE.ApplicationController.errorInconsistentExtPdf": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à l'un des formats suivants : pdf/djvu/xps/oxps, mais le fichier a l'extension incohérente : %1.",
+ "PE.ApplicationController.errorInconsistentExtPptx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des présentations (par exemple pptx), mais le fichier a une extension incohérente : %1.",
+ "PE.ApplicationController.errorInconsistentExtXlsx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des feuilles de calcul (par exemple xlsx), mais le fichier a une extension incohérente : %1.",
"PE.ApplicationController.errorLoadingFont": "Les polices ne sont pas téléchargées. Veuillez contacter l'administrateur de Document Server.",
"PE.ApplicationController.errorTokenExpire": "Le jeton de sécurité du document a expiré. Veuillez contactez l'administrateur de Document Server.",
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "La connexion a été rétablie et la version du fichier a été modifiée. Avant de pouvoir continuer à travailler, vous devez télécharger le fichier ou copier son contenu pour vous assurer que rien n'est perdu, puis recharger cette page.",
diff --git a/apps/presentationeditor/embed/locale/hy.json b/apps/presentationeditor/embed/locale/hy.json
index 52a9e9d34..7497a56e6 100644
--- a/apps/presentationeditor/embed/locale/hy.json
+++ b/apps/presentationeditor/embed/locale/hy.json
@@ -15,6 +15,11 @@
"PE.ApplicationController.errorFilePassProtect": "Ֆայլն ունի գաղտնաբառ և չի կարող բացվել։",
"PE.ApplicationController.errorFileSizeExceed": "Նիշքի չափը գերազանցում է ձեր սպասարկիչի համար եղած սահմանափակումը։ Մանրամասների համար դիմեք ձեր սպասարկիչի վարիչին։",
"PE.ApplicationController.errorForceSave": "Սխալ է տեղի ունեցել ֆայլը պահելիս:Խնդրում ենք օգտագործել «Ներբեռնել որպես» տարբերակը՝ ֆայլը ձեր համակարգչի կոշտ սկավառակում պահելու համար կամ ավելի ուշ նորից փորձեք:",
+ "PE.ApplicationController.errorInconsistentExt": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը չի համապատասխանում ֆայլի ընդլայնմանը:",
+ "PE.ApplicationController.errorInconsistentExtDocx": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը համապատասխանում է տեքստային փաստաթղթերին (օրինակ՝ docx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում՝ %1:",
+ "PE.ApplicationController.errorInconsistentExtPdf": "Ֆայլը բացելիս սխալ է տեղի ունեցել:Ֆայլի բովանդակությունը համապատասխանում է հետևյալ ձևաչափերից մեկին՝pdf/djvu/xps/oxps,բայց ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
+ "PE.ApplicationController.errorInconsistentExtPptx": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը համապատասխանում է ներկայացումներին (օրինակ՝ pptx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
+ "PE.ApplicationController.errorInconsistentExtXlsx": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը համապատասխանում է աղյուսակներին (օր. xlsx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
"PE.ApplicationController.errorLoadingFont": "Տառատեսակները բեռնված չեն: Խնդրում ենք կապվել ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:",
"PE.ApplicationController.errorTokenExpire": "Փաստաթղթի անվտանգության կտրոնի ժամկետն անցել է։ Դիմեք փաստաթղթերի սպասարկիչի ձեր վարիչին։",
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "Կապը վերահաստատվել է,և ֆայլի տարբերակը փոխվել է։ Նախքան աշխատանքը շարունակելը ներբեռնեք ֆայլը կամ պատճենեք դրա պարունակությունը՝ վստահ լինելու, որ ոչինչ չի կորել, և ապա նորից բեռնեք այս էջը։",
diff --git a/apps/presentationeditor/embed/locale/pt.json b/apps/presentationeditor/embed/locale/pt.json
index 4ba342222..f68346f3c 100644
--- a/apps/presentationeditor/embed/locale/pt.json
+++ b/apps/presentationeditor/embed/locale/pt.json
@@ -15,6 +15,11 @@
"PE.ApplicationController.errorFilePassProtect": "O documento está protegido por senha e não pode ser aberto.",
"PE.ApplicationController.errorFileSizeExceed": "O tamanho do arquivo excede o limite de seu servidor. Por favor, contate seu administrador de Servidor de Documentos para detalhes.",
"PE.ApplicationController.errorForceSave": "Ocorreu um erro na gravação. Favor utilizar a opção 'Baixar como' para gravar o arquivo em seu computador ou tente novamente mais tarde.",
+ "PE.ApplicationController.errorInconsistentExt": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo não corresponde à extensão do arquivo.",
+ "PE.ApplicationController.errorInconsistentExtDocx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a documentos de texto (por exemplo, docx), mas o arquivo tem a extensão inconsistente: %1.",
+ "PE.ApplicationController.errorInconsistentExtPdf": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a um dos seguintes formatos: pdf/djvu/xps/oxps, mas o arquivo tem a extensão inconsistente: %1.",
+ "PE.ApplicationController.errorInconsistentExtPptx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a apresentações (por exemplo, pptx), mas o arquivo tem a extensão inconsistente: %1.",
+ "PE.ApplicationController.errorInconsistentExtXlsx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a planilhas (por exemplo, xlsx), mas o arquivo tem a extensão inconsistente: %1.",
"PE.ApplicationController.errorLoadingFont": "As fontes não foram carregadas. Entre em contato com o administrador do Document Server.",
"PE.ApplicationController.errorTokenExpire": "O token de segurança do documento expirou. Entre em contato com o administrador do Document Server.",
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "A conexão à internet foi restabelecida, e a versão do arquivo foi alterada. Antes de continuar seu trabalho, transfira o arquivo ou copie seu conteúdo para assegurar que nada seja perdido, e recarregue esta página.",
diff --git a/apps/presentationeditor/embed/locale/ru.json b/apps/presentationeditor/embed/locale/ru.json
index 4c40a4746..cba990ea9 100644
--- a/apps/presentationeditor/embed/locale/ru.json
+++ b/apps/presentationeditor/embed/locale/ru.json
@@ -15,6 +15,11 @@
"PE.ApplicationController.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.",
"PE.ApplicationController.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера. Обратитесь к администратору Сервера документов для получения дополнительной информации.",
"PE.ApplicationController.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.",
+ "PE.ApplicationController.errorInconsistentExt": "При открытии файла произошла ошибка. Содержимое файла не соответствует расширению файла.",
+ "PE.ApplicationController.errorInconsistentExtDocx": "При открытии файла произошла ошибка. Содержимое файла соответствует документам (например, docx), но файл имеет несоответствующее расширение: %1.",
+ "PE.ApplicationController.errorInconsistentExtPdf": "При открытии файла произошла ошибка. Содержимое файла соответствует одному из следующих форматов: pdf/djvu/xps/oxps, но файл имеет несоответствующее расширение: %1.",
+ "PE.ApplicationController.errorInconsistentExtPptx": "При открытии файла произошла ошибка. Содержимое файла соответствует презентациям (например, pptx), но файл имеет несоответствующее расширение: %1.",
+ "PE.ApplicationController.errorInconsistentExtXlsx": "При открытии файла произошла ошибка. Содержимое файла соответствует электронным таблицам (например, xlsx), но файл имеет несоответствующее расширение: %1.",
"PE.ApplicationController.errorLoadingFont": "Шрифты не загружены. Пожалуйста, обратитесь к администратору Сервера документов.",
"PE.ApplicationController.errorTokenExpire": "Истек срок действия токена безопасности документа. Пожалуйста, обратитесь к администратору Сервера документов.",
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "Соединение было восстановлено, и версия файла изменилась. Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.",
diff --git a/apps/presentationeditor/main/app/controller/DocumentHolder.js b/apps/presentationeditor/main/app/controller/DocumentHolder.js
index 2bb85ec97..9344c8a9d 100644
--- a/apps/presentationeditor/main/app/controller/DocumentHolder.js
+++ b/apps/presentationeditor/main/app/controller/DocumentHolder.js
@@ -2282,7 +2282,7 @@ define([
store: group.get('groupStore'),
scrollAlwaysVisible: true,
showLast: false,
- restoreHeight: group.get('groupHeight') ? parseInt(group.get('groupHeight')) : true,
+ restoreHeight: 450,
itemTemplate: _.template(
'
' +
'' +
@@ -2296,6 +2296,12 @@ define([
});
menu.off('show:before', onShowBefore);
};
+ var bringForward = function (menu) {
+ eqContainer.addClass('has-open-menu');
+ };
+ var sendBackward = function (menu) {
+ eqContainer.removeClass('has-open-menu');
+ };
for (var i = 0; i < equationsStore.length; ++i) {
var equationGroup = equationsStore.at(i);
var btn = new Common.UI.Button({
@@ -2315,6 +2321,8 @@ define([
})
});
btn.menu.on('show:before', onShowBefore);
+ btn.menu.on('show:before', bringForward);
+ btn.menu.on('hide:after', sendBackward);
me.equationBtns.push(btn);
}
@@ -2341,8 +2349,14 @@ define([
if (showPoint[1]<0) {
showPoint[1] = bounds[3] + 10;
}
- eqContainer.css({left: showPoint[0], top : Math.min(me._Height - eqContainer.outerHeight(), Math.max(0, showPoint[1]))});
- // menu.menuAlign = validation ? 'tr-br' : 'tl-bl';
+ showPoint[1] = Math.min(me._Height - eqContainer.outerHeight(), Math.max(0, showPoint[1]));
+ eqContainer.css({left: showPoint[0], top : showPoint[1]});
+
+ var menuAlign = (me._Height - showPoint[1] - eqContainer.outerHeight() < 220) ? 'bl-tl' : 'tl-bl';
+ me.equationBtns.forEach(function(item){
+ item && (item.menu.menuAlign = menuAlign);
+ });
+ me.equationSettingsBtn.menu.menuAlign = menuAlign;
if (eqContainer.is(':visible')) {
if (me.equationSettingsBtn.menu.isVisible()) {
me.equationSettingsBtn.menu.options.initMenu();
diff --git a/apps/presentationeditor/main/app/controller/Main.js b/apps/presentationeditor/main/app/controller/Main.js
index f27983fa7..50770545c 100644
--- a/apps/presentationeditor/main/app/controller/Main.js
+++ b/apps/presentationeditor/main/app/controller/Main.js
@@ -339,6 +339,19 @@ define([
Common.Utils.InternalSettings.set("guest-username", value);
Common.Utils.InternalSettings.set("save-guest-username", !!value);
}
+ if (this.appOptions.customization.font) {
+ if (this.appOptions.customization.font.name && typeof this.appOptions.customization.font.name === 'string') {
+ var arr = this.appOptions.customization.font.name.split(',');
+ for (var i=0; iPress "Undo" to cancel your last action or press "Continue" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).',
textUndo: 'Undo',
- textContinue: 'Continue'
+ textContinue: 'Continue',
+ errorInconsistentExtDocx: 'An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.',
+ errorInconsistentExtXlsx: 'An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.',
+ errorInconsistentExtPptx: 'An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.',
+ errorInconsistentExtPdf: 'An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.',
+ errorInconsistentExt: 'An error has occurred while opening the file. The file content does not match the file extension.'
}
})(), PE.Controllers.Main || {}))
});
diff --git a/apps/presentationeditor/main/app/controller/Search.js b/apps/presentationeditor/main/app/controller/Search.js
index 5ef890f18..bc4ca16a4 100644
--- a/apps/presentationeditor/main/app/controller/Search.js
+++ b/apps/presentationeditor/main/app/controller/Search.js
@@ -138,7 +138,7 @@ define([
for (var l = 0; l < text.length; l++) {
var charCode = text.charCodeAt(l),
char = text.charAt(l);
- if (AscCommon.g_aPunctuation[charCode] !== undefined || char.trim() === '') {
+ if (AscCommon.IsPunctuation(charCode) !== undefined || char.trim() === '') {
isPunctuation = true;
break;
}
diff --git a/apps/presentationeditor/main/locale/az.json b/apps/presentationeditor/main/locale/az.json
index ed0d5a5bf..cb7d0c3f3 100644
--- a/apps/presentationeditor/main/locale/az.json
+++ b/apps/presentationeditor/main/locale/az.json
@@ -1892,6 +1892,7 @@
"PE.Views.Toolbar.textTabInsert": "Daxil edin",
"PE.Views.Toolbar.textTabProtect": "Qoruma",
"PE.Views.Toolbar.textTabTransitions": "Keçidlər",
+ "PE.Views.Toolbar.textTabView": "Görünüş",
"PE.Views.Toolbar.textTitleError": "Xəta",
"PE.Views.Toolbar.textUnderline": "Altından xətt çəkilmiş",
"PE.Views.Toolbar.tipAddSlide": "Slayd əlavə et",
@@ -2006,5 +2007,7 @@
"PE.Views.Transitions.txtApplyToAll": "Bütün Slaydlara Tətbiq et",
"PE.Views.Transitions.txtParameters": "Parametreler",
"PE.Views.Transitions.txtPreview": "Önbaxış",
- "PE.Views.Transitions.txtSec": "s"
+ "PE.Views.Transitions.txtSec": "s",
+ "PE.Views.ViewTab.textInterfaceTheme": "İnterfeys mövzusu",
+ "PE.Views.ViewTab.tipInterfaceTheme": "İnterfeys mövzusu"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/be.json b/apps/presentationeditor/main/locale/be.json
index 253df812a..182bcf1ac 100644
--- a/apps/presentationeditor/main/locale/be.json
+++ b/apps/presentationeditor/main/locale/be.json
@@ -1057,6 +1057,7 @@
"PE.Views.Animation.strStart": "Запуск",
"PE.Views.Animation.textMultiple": "множнік",
"PE.Views.Animation.textNone": "Няма",
+ "PE.Views.Animation.txtParameters": "Параметры",
"PE.Views.Animation.txtPreview": "Прагляд",
"PE.Views.ChartSettings.textAdvanced": "Дадатковыя налады",
"PE.Views.ChartSettings.textChartType": "Змяніць тып дыяграмы",
@@ -1149,6 +1150,7 @@
"PE.Views.DocumentHolder.textRotate": "Паварочванне",
"PE.Views.DocumentHolder.textRotate270": "Павярнуць улева на 90°",
"PE.Views.DocumentHolder.textRotate90": "Павярнуць управа на 90°",
+ "PE.Views.DocumentHolder.textRulers": "Лінейкі",
"PE.Views.DocumentHolder.textShapeAlignBottom": "Выраўнаваць па ніжняму краю",
"PE.Views.DocumentHolder.textShapeAlignCenter": "Выраўнаваць па цэнтры",
"PE.Views.DocumentHolder.textShapeAlignLeft": "Выраўнаваць па леваму краю",
@@ -1321,6 +1323,7 @@
"PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Налады макрасаў",
"PE.Views.FileMenuPanels.Settings.strPasteButton": "Паказваць кнопку параметраў устаўкі падчас устаўкі",
"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 хвілін",
@@ -1844,11 +1847,13 @@
"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.textTabView": "Выгляд",
"PE.Views.Toolbar.textTitleError": "Памылка",
"PE.Views.Toolbar.textUnderline": "Падкрэслены",
"PE.Views.Toolbar.tipAddSlide": "Дадаць слайд",
@@ -1960,6 +1965,15 @@
"PE.Views.Transitions.txtApplyToAll": "Ужыць да ўсіх слайдаў",
"PE.Views.Transitions.txtParameters": "Параметры",
"PE.Views.Transitions.txtPreview": "Прагляд",
+ "PE.Views.ViewTab.textAlwaysShowToolbar": "Заўсёды паказваць панэль інструментаў",
"PE.Views.ViewTab.textFitToSlide": "Па памеры слайда",
- "PE.Views.ViewTab.textZoom": "Маштаб"
+ "PE.Views.ViewTab.textFitToWidth": "Па шырыні",
+ "PE.Views.ViewTab.textInterfaceTheme": "Тэма інтэрфейсу",
+ "PE.Views.ViewTab.textNotes": "Нататкі",
+ "PE.Views.ViewTab.textRulers": "Лінейкі",
+ "PE.Views.ViewTab.textStatusBar": "Панэль стану",
+ "PE.Views.ViewTab.textZoom": "Маштаб",
+ "PE.Views.ViewTab.tipFitToSlide": "Па памеры слайда",
+ "PE.Views.ViewTab.tipFitToWidth": "Па шырыні",
+ "PE.Views.ViewTab.tipInterfaceTheme": "Тэма інтэрфейсу"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/bg.json b/apps/presentationeditor/main/locale/bg.json
index d6b20a5d0..3cb3cc6e9 100644
--- a/apps/presentationeditor/main/locale/bg.json
+++ b/apps/presentationeditor/main/locale/bg.json
@@ -14,6 +14,8 @@
"Common.define.chartData.textPoint": "XY (точкова)",
"Common.define.chartData.textStock": "Борсова",
"Common.define.chartData.textSurface": "Повърхност",
+ "Common.define.effectData.textFillColor": "Цвят на запълване",
+ "Common.define.effectData.textFontColor": "Цвят на шрифта",
"Common.UI.ButtonColored.textNewColor": "Нов Потребителски Цвят",
"Common.UI.ComboBorderSize.txtNoBorders": "Няма граници",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Няма граници",
@@ -116,6 +118,8 @@
"Common.Views.InsertTableDialog.txtTitle": "Размер на таблицата",
"Common.Views.InsertTableDialog.txtTitleSplit": "Разделена клетка",
"Common.Views.LanguageDialog.labelSelect": "Изберете език на документа",
+ "Common.Views.ListSettingsDialog.txtColor": "Цвят",
+ "Common.Views.ListSettingsDialog.txtNone": "Няма",
"Common.Views.OpenDialog.closeButtonText": "Затвори файл",
"Common.Views.OpenDialog.txtEncoding": "Кодиране",
"Common.Views.OpenDialog.txtIncorrectPwd": "Паролата е неправилна.",
@@ -332,6 +336,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": "Серия",
@@ -911,6 +916,8 @@
"PE.Controllers.Toolbar.txtSymbol_zeta": "Зета",
"PE.Controllers.Viewport.textFitPage": "Плъзгайте се",
"PE.Controllers.Viewport.textFitWidth": "Поставя се в ширина",
+ "PE.Views.Animation.strDelay": "Закъснение",
+ "PE.Views.Animation.textNone": "Няма",
"PE.Views.ChartSettings.textAdvanced": "Показване на разширените настройки",
"PE.Views.ChartSettings.textChartType": "Промяна на типа на диаграмата",
"PE.Views.ChartSettings.textEditData": "Редактиране на данни",
@@ -924,6 +931,7 @@
"PE.Views.ChartSettingsAdvanced.textAltTip": "Алтернативното текстово представяне на визуалната информация за обекта, което ще бъде прочетено на хората с визуални или когнитивни увреждания, за да им помогне да разберат по-добре каква информация има в изображението, автосистемата, диаграмата или таблицата.",
"PE.Views.ChartSettingsAdvanced.textAltTitle": "Заглавие",
"PE.Views.ChartSettingsAdvanced.textTitle": "Диаграма - Разширени настройки",
+ "PE.Views.DateTimeDialog.txtTitle": "Дата и час",
"PE.Views.DocumentHolder.aboveText": "По-горе",
"PE.Views.DocumentHolder.addCommentText": "Добави коментар",
"PE.Views.DocumentHolder.advancedImageText": "Разширени настройки на изображението",
@@ -993,6 +1001,7 @@
"PE.Views.DocumentHolder.textRotate": "Завъртане",
"PE.Views.DocumentHolder.textRotate270": "Завъртете на 90 ° обратно на часовниковата стрелка",
"PE.Views.DocumentHolder.textRotate90": "Завъртете на 90 ° по посока на часовниковата стрелка",
+ "PE.Views.DocumentHolder.textRulers": "Владетели",
"PE.Views.DocumentHolder.textShapeAlignBottom": "Подравняване отдолу",
"PE.Views.DocumentHolder.textShapeAlignCenter": "Подравняване на центъра ",
"PE.Views.DocumentHolder.textShapeAlignLeft": "Подравнете наляво",
@@ -1149,6 +1158,7 @@
"PE.Views.FileMenuPanels.Settings.strFast": "Бърз",
"PE.Views.FileMenuPanels.Settings.strFontRender": "Подсказване на шрифт",
"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 минути",
@@ -1172,6 +1182,7 @@
"PE.Views.FileMenuPanels.Settings.txtPt": "Точка",
"PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Проверка на правописа",
"PE.Views.FileMenuPanels.Settings.txtWin": "като Windows",
+ "PE.Views.HeaderFooterDialog.textDateTime": "Дата и час",
"PE.Views.HyperlinkSettingsDialog.strDisplay": "Показ",
"PE.Views.HyperlinkSettingsDialog.strLinkTo": "Връзка към",
"PE.Views.HyperlinkSettingsDialog.textDefault": "Избран фрагмент от текст",
@@ -1545,6 +1556,8 @@
"PE.Views.TextArtSettings.txtWood": "Дърво",
"PE.Views.Toolbar.capAddSlide": "Добавете слайд",
"PE.Views.Toolbar.capBtnComment": "Коментар",
+ "PE.Views.Toolbar.capBtnDateTime": "Дата и час",
+ "PE.Views.Toolbar.capBtnInsHeader": "Долния",
"PE.Views.Toolbar.capInsertChart": "Диаграма",
"PE.Views.Toolbar.capInsertEquation": "Уравнение",
"PE.Views.Toolbar.capInsertHyperlink": "Хипервръзка",
@@ -1593,6 +1606,7 @@
"PE.Views.Toolbar.textTabHome": "У дома",
"PE.Views.Toolbar.textTabInsert": "Вмъкни",
"PE.Views.Toolbar.textTabProtect": "Защита",
+ "PE.Views.Toolbar.textTabView": "Изглед",
"PE.Views.Toolbar.textTitleError": "Грешка",
"PE.Views.Toolbar.textUnderline": "Подчертавам",
"PE.Views.Toolbar.tipAddSlide": "Добавете слайд",
@@ -1604,6 +1618,7 @@
"PE.Views.Toolbar.tipCopy": "Копие",
"PE.Views.Toolbar.tipCopyStyle": "Копирайте стила",
"PE.Views.Toolbar.tipDecPrLeft": "Намалете отстъп",
+ "PE.Views.Toolbar.tipEditHeader": "Редактиране на долен колонтитул",
"PE.Views.Toolbar.tipFontColor": "Цвят на шрифта",
"PE.Views.Toolbar.tipFontName": "Шрифт",
"PE.Views.Toolbar.tipFontSize": "Размер на шрифта",
@@ -1619,6 +1634,7 @@
"PE.Views.Toolbar.tipInsertTextArt": "Вмъкни текст Чл",
"PE.Views.Toolbar.tipLineSpace": "Интервал между редовете",
"PE.Views.Toolbar.tipMarkers": "Маркиран списък",
+ "PE.Views.Toolbar.tipNone": "Няма",
"PE.Views.Toolbar.tipNumbers": "Номериране",
"PE.Views.Toolbar.tipPaste": "Паста",
"PE.Views.Toolbar.tipPreview": "Започнете слайдшоуто",
@@ -1660,6 +1676,7 @@
"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": "Чрез черно",
@@ -1670,6 +1687,7 @@
"PE.Views.Transitions.textCounterclockwise": "Обратно на часовниковата стрелка",
"PE.Views.Transitions.textCover": "Покрийте",
"PE.Views.Transitions.textFade": "Замирам",
+ "PE.Views.Transitions.textNone": "Няма",
"PE.Views.Transitions.textPush": "Тласък",
"PE.Views.Transitions.textSmoothly": "Плавно",
"PE.Views.Transitions.textSplit": "Разцепване",
@@ -1684,5 +1702,8 @@
"PE.Views.Transitions.textZoomRotate": "Увеличаване и завъртане",
"PE.Views.Transitions.txtApplyToAll": "Приложи към всички слайдове",
"PE.Views.Transitions.txtParameters": "Параметри",
- "PE.Views.Transitions.txtPreview": "Предварителен преглед"
+ "PE.Views.Transitions.txtPreview": "Предварителен преглед",
+ "PE.Views.ViewTab.textInterfaceTheme": "Тема на интерфейса",
+ "PE.Views.ViewTab.textRulers": "Владетели",
+ "PE.Views.ViewTab.tipInterfaceTheme": "Тема на интерфейса"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/cs.json b/apps/presentationeditor/main/locale/cs.json
index 8e9bb0669..57f5af00e 100644
--- a/apps/presentationeditor/main/locale/cs.json
+++ b/apps/presentationeditor/main/locale/cs.json
@@ -246,6 +246,8 @@
"Common.define.effectData.textWipe": "Setření",
"Common.define.effectData.textZigzag": "Cikcak",
"Common.define.effectData.textZoom": "Přiblížení",
+ "Common.define.gridlineData.txtCm": "cm",
+ "Common.define.smartArt.textList": "Seznam",
"Common.Translation.textMoreButton": "Více",
"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",
@@ -460,6 +462,7 @@
"Common.Views.Plugins.textStart": "Spustit",
"Common.Views.Plugins.textStop": "Zastavit",
"Common.Views.Protection.hintAddPwd": "Šifrovat heslem",
+ "Common.Views.Protection.hintDelPwd": "Odstranit heslo",
"Common.Views.Protection.hintPwd": "Změnit nebo odebrat heslo",
"Common.Views.Protection.hintSignature": "Přidat digitální podpis nebo řádek s podpisem",
"Common.Views.Protection.txtAddPwd": "Přidat heslo",
@@ -697,6 +700,7 @@
"PE.Controllers.Main.textClose": "Zavřít",
"PE.Controllers.Main.textCloseTip": "Tip zavřete kliknutím",
"PE.Controllers.Main.textContactUs": "Obraťte se na obchodní oddělení",
+ "PE.Controllers.Main.textContinue": "Pokračovat",
"PE.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í?",
"PE.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í.",
"PE.Controllers.Main.textDisconnect": "Spojení je ztraceno",
@@ -1368,6 +1372,7 @@
"PE.Views.ChartSettings.textEditData": "Upravit data",
"PE.Views.ChartSettings.textHeight": "Výška",
"PE.Views.ChartSettings.textKeepRatio": "Zachovat poměr stran",
+ "PE.Views.ChartSettings.textLeft": "Vlevo",
"PE.Views.ChartSettings.textSize": "Velikost",
"PE.Views.ChartSettings.textStyle": "Styl",
"PE.Views.ChartSettings.textWidth": "Šířka",
@@ -1446,6 +1451,7 @@
"PE.Views.DocumentHolder.textArrangeBackward": "Přesunout o vrstvu níž",
"PE.Views.DocumentHolder.textArrangeForward": "Přenést o vrstvu výš",
"PE.Views.DocumentHolder.textArrangeFront": "Přenést do popředí",
+ "PE.Views.DocumentHolder.textCm": "cm",
"PE.Views.DocumentHolder.textCopy": "Kopírovat",
"PE.Views.DocumentHolder.textCrop": "Oříznout",
"PE.Views.DocumentHolder.textCropFill": "Výplň",
@@ -1687,6 +1693,7 @@
"PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Vypnout všechna makra s notifikacemi",
"PE.Views.FileMenuPanels.Settings.txtWin": "jako Windows",
"PE.Views.FileMenuPanels.Settings.txtWorkspace": "Pracovní prostředí",
+ "PE.Views.GridSettings.textCm": "cm",
"PE.Views.HeaderFooterDialog.applyAllText": "Použít na vše",
"PE.Views.HeaderFooterDialog.applyText": "Použít",
"PE.Views.HeaderFooterDialog.diffLanguage": "Není možné použít formát data z jiného jazyka, než je používán pro hlavní snímek. Pro změnu hlavního, klikněte na „Uplatnit na vše“ namísto „Uplatnit“",
@@ -2074,6 +2081,9 @@
"PE.Views.TableSettings.tipOuter": "Nastavit pouze vnější ohraničení",
"PE.Views.TableSettings.tipRight": "Nastavit pouze vnější ohraničení vpravo",
"PE.Views.TableSettings.tipTop": "Nastavit pouze vnější horní ohraničení",
+ "PE.Views.TableSettings.txtGroupTable_Dark": "Tmavé",
+ "PE.Views.TableSettings.txtGroupTable_Light": "Světlé",
+ "PE.Views.TableSettings.txtGroupTable_Medium": "Střední",
"PE.Views.TableSettings.txtNoBorders": "Bez ohraničení",
"PE.Views.TableSettings.txtTable_Accent": "Akcent",
"PE.Views.TableSettings.txtTable_DarkStyle": "Tmavý styl",
@@ -2352,6 +2362,7 @@
"PE.Views.Transitions.txtPreview": "Náhled",
"PE.Views.Transitions.txtSec": "S",
"PE.Views.ViewTab.textAlwaysShowToolbar": "Vždy zobrazovat panel nástrojů",
+ "PE.Views.ViewTab.textCm": "cm",
"PE.Views.ViewTab.textFitToSlide": "Přizpůsobit snímku",
"PE.Views.ViewTab.textFitToWidth": "Přizpůsobit šířce",
"PE.Views.ViewTab.textInterfaceTheme": "Vzhled prostředí",
@@ -2360,5 +2371,6 @@
"PE.Views.ViewTab.textStatusBar": "Stavová lišta",
"PE.Views.ViewTab.textZoom": "Přiblížení",
"PE.Views.ViewTab.tipFitToSlide": "Přizpůsobit snímku",
- "PE.Views.ViewTab.tipFitToWidth": "Přizpůsobit šířce"
+ "PE.Views.ViewTab.tipFitToWidth": "Přizpůsobit šířce",
+ "PE.Views.ViewTab.tipInterfaceTheme": "Vzhled prostředí"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/da.json b/apps/presentationeditor/main/locale/da.json
index 958a746fe..150844b04 100644
--- a/apps/presentationeditor/main/locale/da.json
+++ b/apps/presentationeditor/main/locale/da.json
@@ -76,6 +76,7 @@
"Common.UI.ThemeColorPalette.textStandartColors": "Standard farve",
"Common.UI.ThemeColorPalette.textThemeColors": "Tema farver",
"Common.UI.Themes.txtThemeClassicLight": "Klassisk lys",
+ "Common.UI.Themes.txtThemeContrastDark": "Mørk kontrast",
"Common.UI.Themes.txtThemeDark": "Mørk",
"Common.UI.Themes.txtThemeLight": "Lys",
"Common.UI.Window.cancelButtonText": "Annuller",
@@ -1755,6 +1756,7 @@
"PE.Views.TableSettings.tipOuter": "Vælg kun ydre rammer",
"PE.Views.TableSettings.tipRight": "Vælg kun højre ramme",
"PE.Views.TableSettings.tipTop": "Vælg kun ydre øverste ramme",
+ "PE.Views.TableSettings.txtGroupTable_Dark": "Mørk",
"PE.Views.TableSettings.txtNoBorders": "Ingen rammer",
"PE.Views.TableSettings.txtTable_Accent": "Accent",
"PE.Views.TableSettings.txtTable_DarkStyle": "Mørkt tema",
@@ -1891,6 +1893,7 @@
"PE.Views.Toolbar.textTabInsert": "indsæt",
"PE.Views.Toolbar.textTabProtect": "Beskyttelse",
"PE.Views.Toolbar.textTabTransitions": "Oversættelser",
+ "PE.Views.Toolbar.textTabView": "Vis",
"PE.Views.Toolbar.textTitleError": "Fejl",
"PE.Views.Toolbar.textUnderline": "Understreg",
"PE.Views.Toolbar.tipAddSlide": "Tilføj dias",
@@ -2005,5 +2008,7 @@
"PE.Views.Transitions.txtApplyToAll": "Anvend på alle dias",
"PE.Views.Transitions.txtParameters": "Parametre",
"PE.Views.Transitions.txtPreview": "Forhåndvisning",
- "PE.Views.Transitions.txtSec": "S"
+ "PE.Views.Transitions.txtSec": "S",
+ "PE.Views.ViewTab.textInterfaceTheme": "Interface tema",
+ "PE.Views.ViewTab.tipInterfaceTheme": "Interface tema"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/de.json b/apps/presentationeditor/main/locale/de.json
index 152ba5901..d4667f991 100644
--- a/apps/presentationeditor/main/locale/de.json
+++ b/apps/presentationeditor/main/locale/de.json
@@ -248,6 +248,167 @@
"Common.define.effectData.textWipe": "Wischen",
"Common.define.effectData.textZigzag": "Zickzack",
"Common.define.effectData.textZoom": "Zoom",
+ "Common.define.gridlineData.txtCm": "cm",
+ "Common.define.gridlineData.txtPt": "pt",
+ "Common.define.smartArt.textAccentedPicture": "Bild mit Akzenten",
+ "Common.define.smartArt.textAccentProcess": "Akzentprozess",
+ "Common.define.smartArt.textAlternatingFlow": "Alternierender Fluss",
+ "Common.define.smartArt.textAlternatingHexagons": "Alternierende Sechsecke",
+ "Common.define.smartArt.textAlternatingPictureBlocks": "Alternierende Bildblöcke",
+ "Common.define.smartArt.textAlternatingPictureCircles": "Alternierende Bildblöcke",
+ "Common.define.smartArt.textArchitectureLayout": "Architekturlayout",
+ "Common.define.smartArt.textArrowRibbon": "Pfeilband",
+ "Common.define.smartArt.textAscendingPictureAccentProcess": "Aufsteigender Prozess mit Bildakzenten",
+ "Common.define.smartArt.textBalance": "Kontostand",
+ "Common.define.smartArt.textBasicBendingProcess": "Einfacher umgebrochener Prozess",
+ "Common.define.smartArt.textBasicBlockList": "Einfache Blockliste",
+ "Common.define.smartArt.textBasicChevronProcess": "Einfacher Chevronprozess",
+ "Common.define.smartArt.textBasicCycle": "Einfacher Kreis",
+ "Common.define.smartArt.textBasicMatrix": "Einfache Matrix",
+ "Common.define.smartArt.textBasicPie": "Einfaches Kreisdiagramm",
+ "Common.define.smartArt.textBasicProcess": "Einfacher Prozess",
+ "Common.define.smartArt.textBasicPyramid": "Einfache Pyramide",
+ "Common.define.smartArt.textBasicRadial": "Einfaches Radial",
+ "Common.define.smartArt.textBasicTarget": "Einfaches Ziel",
+ "Common.define.smartArt.textBasicTimeline": "Einfache Zeitachse",
+ "Common.define.smartArt.textBasicVenn": "Einfaches Venn",
+ "Common.define.smartArt.textBendingPictureAccentList": "Umgebrochene Bildakzentliste",
+ "Common.define.smartArt.textBendingPictureBlocks": "Umgebrochene Bildblöcke",
+ "Common.define.smartArt.textBendingPictureCaption": "Umgebrochene Bildbeschriftung",
+ "Common.define.smartArt.textBendingPictureCaptionList": "Umgebrochene Bildbeschriftungsliste",
+ "Common.define.smartArt.textBendingPictureSemiTranparentText": "Umgebrochener halbtransparenter Bildtext",
+ "Common.define.smartArt.textBlockCycle": "Blockkreis",
+ "Common.define.smartArt.textBubblePictureList": "Blasenbildliste",
+ "Common.define.smartArt.textCaptionedPictures": "Bilder mit Beschriftungen",
+ "Common.define.smartArt.textChevronAccentProcess": "Chevronakzentprozess",
+ "Common.define.smartArt.textChevronList": "Chevronliste",
+ "Common.define.smartArt.textCircleAccentTimeline": "Zeitachse mit Kreisakzent",
+ "Common.define.smartArt.textCircleArrowProcess": "Kreisförmiger Pfeilprozess",
+ "Common.define.smartArt.textCirclePictureHierarchy": "Bilderhierarchie mit Kreisakzent",
+ "Common.define.smartArt.textCircleProcess": "Kreisprozess",
+ "Common.define.smartArt.textCircleRelationship": "Kreisbeziehung",
+ "Common.define.smartArt.textCircularBendingProcess": "Kreisförmiger umgebrochener Prozess",
+ "Common.define.smartArt.textCircularPictureCallout": "Bildlegende mit Kreisakzent",
+ "Common.define.smartArt.textClosedChevronProcess": "Geschlossener Chevronprozess",
+ "Common.define.smartArt.textContinuousArrowProcess": "Fortlaufender Pfeilprozess",
+ "Common.define.smartArt.textContinuousBlockProcess": "Fortlaufender Blockprozess",
+ "Common.define.smartArt.textContinuousCycle": "Fortlaufender Kreis",
+ "Common.define.smartArt.textContinuousPictureList": "Fortlaufende Bildliste",
+ "Common.define.smartArt.textConvergingArrows": "Zusammenlaufende Pfeile",
+ "Common.define.smartArt.textConvergingRadial": "Zusammenlaufendes Radial",
+ "Common.define.smartArt.textConvergingText": "Zusammenlaufender Text",
+ "Common.define.smartArt.textCounterbalanceArrows": "Gegengewichtspfeile",
+ "Common.define.smartArt.textCycle": "Zyklus",
+ "Common.define.smartArt.textCycleMatrix": "Kreismatrix",
+ "Common.define.smartArt.textDescendingBlockList": "Absteigende Blockliste",
+ "Common.define.smartArt.textDescendingProcess": "Absteigender Prozess",
+ "Common.define.smartArt.textDetailedProcess": "Detaillierter Prozess",
+ "Common.define.smartArt.textDivergingArrows": "Auseinanderlaufende Pfeile",
+ "Common.define.smartArt.textDivergingRadial": "Auseinanderlaufendes Radial",
+ "Common.define.smartArt.textEquation": "Gleichung",
+ "Common.define.smartArt.textFramedTextPicture": "Umrahmte Textgrafik",
+ "Common.define.smartArt.textFunnel": "Trichter",
+ "Common.define.smartArt.textGear": "Zahnrad",
+ "Common.define.smartArt.textGridMatrix": "Rastermatrix",
+ "Common.define.smartArt.textGroupedList": "Gruppierte Liste",
+ "Common.define.smartArt.textHalfCircleOrganizationChart": "Halbkreisorganigramm",
+ "Common.define.smartArt.textHexagonCluster": "Sechseck-Cluster",
+ "Common.define.smartArt.textHexagonRadial": "Sechseck Radial",
+ "Common.define.smartArt.textHierarchy": "Hierarchie",
+ "Common.define.smartArt.textHierarchyList": "Hierarchieliste",
+ "Common.define.smartArt.textHorizontalBulletList": "Horizontale Aufzählungsliste",
+ "Common.define.smartArt.textHorizontalHierarchy": "Horizontale Hierarchie",
+ "Common.define.smartArt.textHorizontalLabeledHierarchy": "Horizontal beschriftete Hierarchie",
+ "Common.define.smartArt.textHorizontalMultiLevelHierarchy": "Horizontale Hierarchie mit mehreren Ebenen",
+ "Common.define.smartArt.textHorizontalOrganizationChart": "Horizontales Organigramm",
+ "Common.define.smartArt.textHorizontalPictureList": "Horizontale Bildliste",
+ "Common.define.smartArt.textIncreasingArrowProcess": "Wachsender Pfeil-Prozess",
+ "Common.define.smartArt.textIncreasingCircleProcess": "Wachsender Kreis-Prozess",
+ "Common.define.smartArt.textInterconnectedBlockProcess": "Vernetzter Blockprozess",
+ "Common.define.smartArt.textInterconnectedRings": "Verbundene Ringe",
+ "Common.define.smartArt.textInvertedPyramid": "Umgekehrte Pyramide",
+ "Common.define.smartArt.textLabeledHierarchy": "Beschriftete Hierarchie",
+ "Common.define.smartArt.textLinearVenn": "Lineares Venn",
+ "Common.define.smartArt.textLinedList": "Liste mit Linien",
+ "Common.define.smartArt.textList": "Liste",
+ "Common.define.smartArt.textMatrix": "Matrix",
+ "Common.define.smartArt.textMultidirectionalCycle": "Kreis mit mehreren Richtungen",
+ "Common.define.smartArt.textNameAndTitleOrganizationChart": "Organigramm mit Name und Titel",
+ "Common.define.smartArt.textNestedTarget": "Geschachteltes Ziel",
+ "Common.define.smartArt.textNondirectionalCycle": "Richtungsloser Kreis",
+ "Common.define.smartArt.textOpposingArrows": "Entgegengesetzte Pfeile",
+ "Common.define.smartArt.textOpposingIdeas": "Konträre Ansichten",
+ "Common.define.smartArt.textOrganizationChart": "Organigramm",
+ "Common.define.smartArt.textOther": "Sonstiges",
+ "Common.define.smartArt.textPhasedProcess": "Phasenprozess",
+ "Common.define.smartArt.textPicture": "Bild",
+ "Common.define.smartArt.textPictureAccentBlocks": "Bildakzentblöcke",
+ "Common.define.smartArt.textPictureAccentList": "Bildakzentliste",
+ "Common.define.smartArt.textPictureAccentProcess": "Bildakzentprozess",
+ "Common.define.smartArt.textPictureCaptionList": "Bildbeschriftungsliste",
+ "Common.define.smartArt.textPictureFrame": "Bildrahmen",
+ "Common.define.smartArt.textPictureGrid": "Bildraster",
+ "Common.define.smartArt.textPictureLineup": "Bildanordnung",
+ "Common.define.smartArt.textPictureOrganizationChart": "Bildorganigramm",
+ "Common.define.smartArt.textPictureStrips": "Bildstreifen",
+ "Common.define.smartArt.textPieProcess": "Kreisdiagrammprozess",
+ "Common.define.smartArt.textPlusAndMinus": "Plus und Minus",
+ "Common.define.smartArt.textProcess": "Prozess",
+ "Common.define.smartArt.textProcessArrows": "Prozesspfeile",
+ "Common.define.smartArt.textProcessList": "Prozessliste",
+ "Common.define.smartArt.textPyramid": "Pyramide",
+ "Common.define.smartArt.textPyramidList": "Pyramidenliste",
+ "Common.define.smartArt.textRadialCluster": "Radialer Cluster",
+ "Common.define.smartArt.textRadialCycle": "Radialkreis",
+ "Common.define.smartArt.textRadialList": "Radialliste",
+ "Common.define.smartArt.textRadialPictureList": "Radiale Bildliste",
+ "Common.define.smartArt.textRadialVenn": "Radialvenn",
+ "Common.define.smartArt.textRandomToResultProcess": "Zufallsergebnisprozess",
+ "Common.define.smartArt.textRelationship": "Beziehung",
+ "Common.define.smartArt.textRepeatingBendingProcess": "Wiederholter umgebrochener Prozess",
+ "Common.define.smartArt.textReverseList": "Umgekehrte Liste",
+ "Common.define.smartArt.textSegmentedCycle": "Segmentierter Kreis",
+ "Common.define.smartArt.textSegmentedProcess": "Segmentierter Prozess",
+ "Common.define.smartArt.textSegmentedPyramid": "Segmentierte Pyramide",
+ "Common.define.smartArt.textSnapshotPictureList": "Momentaufnahme-Bildliste",
+ "Common.define.smartArt.textSpiralPicture": "Spiralförmige Grafik",
+ "Common.define.smartArt.textSquareAccentList": "Liste mit quadratischen Akzenten",
+ "Common.define.smartArt.textStackedList": "Gestapelte Liste",
+ "Common.define.smartArt.textStackedVenn": "Gestapeltes Venn",
+ "Common.define.smartArt.textStaggeredProcess": "Gestaffelter Prozess",
+ "Common.define.smartArt.textStepDownProcess": "Prozess mit absteigenden Schritten",
+ "Common.define.smartArt.textStepUpProcess": "Prozess mit aufsteigenden Schritten",
+ "Common.define.smartArt.textSubStepProcess": "Unterschrittprozess",
+ "Common.define.smartArt.textTabbedArc": "Registerkartenbogen",
+ "Common.define.smartArt.textTableHierarchy": "Tabellenhierarchie",
+ "Common.define.smartArt.textTableList": "Tabellenliste",
+ "Common.define.smartArt.textTabList": "Registerkartenliste",
+ "Common.define.smartArt.textTargetList": "Zielliste",
+ "Common.define.smartArt.textTextCycle": "Textkreis",
+ "Common.define.smartArt.textThemePictureAccent": "Designbildakzent",
+ "Common.define.smartArt.textThemePictureAlternatingAccent": "Alternierender Designbildakzent",
+ "Common.define.smartArt.textThemePictureGrid": "Designbildraster",
+ "Common.define.smartArt.textTitledMatrix": "Betitelte Matrix",
+ "Common.define.smartArt.textTitledPictureAccentList": "Bildakzentliste mit Titel",
+ "Common.define.smartArt.textTitledPictureBlocks": "Titelbildblöcke",
+ "Common.define.smartArt.textTitlePictureLineup": "Titelbildanordnung",
+ "Common.define.smartArt.textTrapezoidList": "Trapezförmige Liste",
+ "Common.define.smartArt.textUpwardArrow": "Pfeil nach oben",
+ "Common.define.smartArt.textVaryingWidthList": "Liste mit variabler Breite",
+ "Common.define.smartArt.textVerticalAccentList": "Liste mit vertikalen Akzenten",
+ "Common.define.smartArt.textVerticalArrowList": "Vertical Arrow List",
+ "Common.define.smartArt.textVerticalBendingProcess": "Vertikaler umgebrochener Prozess",
+ "Common.define.smartArt.textVerticalBlockList": "Vertikale Blockliste",
+ "Common.define.smartArt.textVerticalBoxList": "Vertikale Feldliste",
+ "Common.define.smartArt.textVerticalBracketList": "Liste mit vertikalen Klammerakzenten",
+ "Common.define.smartArt.textVerticalBulletList": "Vertikale Aufzählung",
+ "Common.define.smartArt.textVerticalChevronList": "Vertikale Chevronliste",
+ "Common.define.smartArt.textVerticalCircleList": "Liste mit vertikalen Kreisakzenten",
+ "Common.define.smartArt.textVerticalCurvedList": "Liste mit vertikalen Kurven",
+ "Common.define.smartArt.textVerticalEquation": "Vertikale Formel",
+ "Common.define.smartArt.textVerticalPictureAccentList": "Vertikale Bildakzentliste",
+ "Common.define.smartArt.textVerticalPictureList": "Vertikale Bildliste",
+ "Common.define.smartArt.textVerticalProcess": "Vertikaler Prozess",
"Common.Translation.textMoreButton": "Mehr",
"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",
@@ -378,6 +539,8 @@
"Common.Views.DocumentAccessDialog.textLoading": "Ladevorgang...",
"Common.Views.DocumentAccessDialog.textTitle": "Freigabeeinstellungen",
"Common.Views.ExternalDiagramEditor.textTitle": "Diagramm bearbeiten",
+ "Common.Views.ExternalEditor.textClose": "Schließen",
+ "Common.Views.ExternalEditor.textSave": "Speichern und beenden",
"Common.Views.ExternalOleEditor.textTitle": "Editor der Tabellenkalkulationen",
"Common.Views.Header.labelCoUsersDescr": "Benutzer, die die Datei bearbeiten:",
"Common.Views.Header.textAddFavorite": "Als Favorit kennzeichnen",
@@ -468,6 +631,7 @@
"Common.Views.Plugins.textStart": "Starten",
"Common.Views.Plugins.textStop": "Beenden",
"Common.Views.Protection.hintAddPwd": "Mit Kennwort verschlüsseln",
+ "Common.Views.Protection.hintDelPwd": "Kennwort löschen",
"Common.Views.Protection.hintPwd": "Das Kennwort ändern oder löschen",
"Common.Views.Protection.hintSignature": "Fügen Sie eine digitale Signatur oder Unterschriftenzeile hinzu",
"Common.Views.Protection.txtAddPwd": "Kennwort hinzufügen",
@@ -584,6 +748,7 @@
"Common.Views.SignDialog.tipFontName": "Schriftart",
"Common.Views.SignDialog.tipFontSize": "Schriftgrad",
"Common.Views.SignSettingsDialog.textAllowComment": "Signaturgeber verfügt über die Möglichkeit, einen Kommentar im Signaturdialog hinzuzufügen",
+ "Common.Views.SignSettingsDialog.textDefInstruction": "Überprüfen Sie, ob der signierte Inhalt stimmt, bevor Sie dieses Dokument signieren.",
"Common.Views.SignSettingsDialog.textInfoEmail": "E-Mail",
"Common.Views.SignSettingsDialog.textInfoName": "Name",
"Common.Views.SignSettingsDialog.textInfoTitle": "Titel des Signatureingebers",
@@ -632,6 +797,7 @@
"PE.Controllers.LeftMenu.txtUntitled": "Unbenannt",
"PE.Controllers.Main.applyChangesTextText": "Daten werden geladen...",
"PE.Controllers.Main.applyChangesTitleText": "Daten werden geladen",
+ "PE.Controllers.Main.confirmMaxChangesSize": "Die Anzahl der Aktionen überschreitet die für Ihren Server festgelegte Grenze. Drücken Sie \"Rückgängig\", um Ihre letzte Aktion abzubrechen, oder drücken Sie \"Weiter\", um die Aktion lokal fortzusetzen (Sie müssen die Datei herunterladen oder ihren Inhalt kopieren, um sicherzustellen, dass nichts verloren geht).",
"PE.Controllers.Main.convertationTimeoutText": "Zeitüberschreitung bei der Konvertierung.",
"PE.Controllers.Main.criticalErrorExtText": "Klicken Sie auf \"OK\", um zur Dokumentenliste zu übergehen.",
"PE.Controllers.Main.criticalErrorTitle": "Fehler",
@@ -647,12 +813,18 @@
"PE.Controllers.Main.errorDataEncrypted": "Änderungen wurden verschlüsselt. Sie können nicht entschlüsselt werden.",
"PE.Controllers.Main.errorDataRange": "Falscher Datenbereich.",
"PE.Controllers.Main.errorDefaultMessage": "Fehlercode: %1",
+ "PE.Controllers.Main.errorDirectUrl": "Bitte überprüfen Sie den Link zum Dokument. Dieser Link muss ein direkter Link zu der Datei zum Herunterladen sein.",
"PE.Controllers.Main.errorEditingDownloadas": "Bei der Arbeit mit dem Dokument ist ein Fehler aufgetreten. Verwenden Sie die Option 'Herunterladen als', um die Sicherungskopie der Datei auf der Festplatte Ihres Computers zu speichern.",
"PE.Controllers.Main.errorEditingSaveas": "Bei der Arbeit mit dem Dokument ist ein Fehler aufgetreten. Verwenden Sie die Option \"Speichern als ...\", um die Sicherungskopie der Datei auf der Festplatte Ihres Computers zu speichern.",
"PE.Controllers.Main.errorEmailClient": "Es wurde kein E-Mail-Client gefunden.",
"PE.Controllers.Main.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.",
"PE.Controllers.Main.errorFileSizeExceed": "Die Dateigröße überschreitet die für Ihren Server festgelegte Einschränkung. Weitere Informationen können Sie von Ihrem Document Server-Administrator erhalten.",
"PE.Controllers.Main.errorForceSave": "Beim Speichern der Datei ist ein Fehler aufgetreten. Verwenden Sie die Option \"Herunterladen als\", um die Datei auf Ihrer Computerfestplatte zu speichern oder versuchen Sie es später erneut.",
+ "PE.Controllers.Main.errorInconsistentExt": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei stimmt nicht mit der Dateierweiterung überein.",
+ "PE.Controllers.Main.errorInconsistentExtDocx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Textdokumenten (z.B. docx), aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "PE.Controllers.Main.errorInconsistentExtPdf": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht einem der folgenden Formate: pdf/djvu/xps/oxps, aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "PE.Controllers.Main.errorInconsistentExtPptx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Präsentationen (z.B. pptx), aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "PE.Controllers.Main.errorInconsistentExtXlsx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Tabellenkalkulationen (z.B. xlsx), aber die Datei hat die inkonsistente Erweiterung: %1.",
"PE.Controllers.Main.errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor",
"PE.Controllers.Main.errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen",
"PE.Controllers.Main.errorLoadingFont": "Schriftarten nicht hochgeladen. Bitte wenden Sie sich an Administratoren von Ihrem Document Server.",
@@ -708,6 +880,7 @@
"PE.Controllers.Main.textClose": "Schließen",
"PE.Controllers.Main.textCloseTip": "Klicken Sie, um den Tipp zu schließen",
"PE.Controllers.Main.textContactUs": "Verkaufsteam kontaktieren",
+ "PE.Controllers.Main.textContinue": "Fortsetzen",
"PE.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?",
"PE.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.",
"PE.Controllers.Main.textDisconnect": "Verbindung wurde unterbrochen",
@@ -728,6 +901,7 @@
"PE.Controllers.Main.textStrict": "Formaler Modus",
"PE.Controllers.Main.textTryUndoRedo": "Undo/Redo Optionen sind für den halbformalen Zusammenbearbeitungsmodus deaktiviert. Klicken Sie auf den Button \"Formaler Modus\", um den formalen Zusammenbearbeitungsmodus zu aktivieren, um die Datei, ohne Störungen anderer Benutzer zu bearbeiten und die Änderungen erst nachdem Sie sie gespeichert haben, zu senden. Sie können zwischen den Zusammenbearbeitungsmodi mit der Hilfe der erweiterten Einstellungen von Editor umschalten.",
"PE.Controllers.Main.textTryUndoRedoWarn": "Die Optionen Rückgängig/Wiederholen sind für den halbformalen Zusammenbearbeitungsmodus deaktiviert.",
+ "PE.Controllers.Main.textUndo": "Rückgängig",
"PE.Controllers.Main.titleLicenseExp": "Lizenz ist abgelaufen",
"PE.Controllers.Main.titleServerVersion": "Editor wurde aktualisiert",
"PE.Controllers.Main.txtAddFirstSlide": "Klicken Sie, um die erste Folie hinzuzufügen",
@@ -1377,14 +1551,29 @@
"PE.Views.Animation.txtSec": "s",
"PE.Views.AnimationDialog.textPreviewEffect": "Effektvorschau",
"PE.Views.AnimationDialog.textTitle": "Mehr Effekte",
+ "PE.Views.ChartSettings.text3dDepth": "Tiefe (% der Basis)",
+ "PE.Views.ChartSettings.text3dHeight": "Höhe (% der Basis)",
+ "PE.Views.ChartSettings.text3dRotation": "3D-Drehung",
"PE.Views.ChartSettings.textAdvanced": "Erweiterte Einstellungen anzeigen",
+ "PE.Views.ChartSettings.textAutoscale": "Autoskalierung",
"PE.Views.ChartSettings.textChartType": "Diagrammtyp ändern",
+ "PE.Views.ChartSettings.textDefault": "Standardmäßige Drehung",
+ "PE.Views.ChartSettings.textDown": "Unten",
"PE.Views.ChartSettings.textEditData": "Daten ändern",
"PE.Views.ChartSettings.textHeight": "Höhe",
"PE.Views.ChartSettings.textKeepRatio": "Seitenverhältnis beibehalten",
+ "PE.Views.ChartSettings.textLeft": "Links",
+ "PE.Views.ChartSettings.textNarrow": "Blickfeld verengen",
+ "PE.Views.ChartSettings.textPerspective": "Perspektive",
+ "PE.Views.ChartSettings.textRight": "Rechts",
+ "PE.Views.ChartSettings.textRightAngle": "Rechtwinklige Achsen",
"PE.Views.ChartSettings.textSize": "Größe",
"PE.Views.ChartSettings.textStyle": "Stil",
+ "PE.Views.ChartSettings.textUp": "Aufwärts",
+ "PE.Views.ChartSettings.textWiden": "Blickfeld verbreitern",
"PE.Views.ChartSettings.textWidth": "Breite",
+ "PE.Views.ChartSettings.textX": "X-Rotation",
+ "PE.Views.ChartSettings.textY": "Y-Rotation",
"PE.Views.ChartSettingsAdvanced.textAlt": "Alternativer Text",
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Beschreibung",
"PE.Views.ChartSettingsAdvanced.textAltTip": "Die alternative textbasierte Darstellung der visuellen Objektinformation, die den Menschen mit geistigen Behinderungen oder Sehbehinderungen vorgelesen wird, um besser verstehen zu können, was genau auf dem Bild, AutoForm, Diagramm oder der Tabelle dargestellt wurde.",
@@ -1410,16 +1599,22 @@
"PE.Views.DocumentHolder.aboveText": "Oben",
"PE.Views.DocumentHolder.addCommentText": "Kommentar hinzufügen",
"PE.Views.DocumentHolder.addToLayoutText": "Zum Layout hinzufügen",
+ "PE.Views.DocumentHolder.advancedChartText": "Erweiterte Einstellungen des Diagramms",
+ "PE.Views.DocumentHolder.advancedEquationText": "Einstellungen der Gleichung",
"PE.Views.DocumentHolder.advancedImageText": "Erweiterte Einstellungen des Bildes",
"PE.Views.DocumentHolder.advancedParagraphText": "Erweiterte Text-Einstellungen",
"PE.Views.DocumentHolder.advancedShapeText": "Erweiterte Einstellungen der Form",
"PE.Views.DocumentHolder.advancedTableText": "Erweiterte Tabellen-Einstellungen",
"PE.Views.DocumentHolder.alignmentText": "Ausrichtung",
+ "PE.Views.DocumentHolder.allLinearText": "Alle – Linear",
+ "PE.Views.DocumentHolder.allProfText": "Alle – Professionelle",
"PE.Views.DocumentHolder.belowText": "Unten",
"PE.Views.DocumentHolder.cellAlignText": "Vertikale Ausrichtung in Zellen",
"PE.Views.DocumentHolder.cellText": "Zelle",
"PE.Views.DocumentHolder.centerText": "Zentriert",
"PE.Views.DocumentHolder.columnText": "Spalte",
+ "PE.Views.DocumentHolder.currLinearText": "Aktuell – Linear",
+ "PE.Views.DocumentHolder.currProfText": "Aktuell – Professionell",
"PE.Views.DocumentHolder.deleteColumnText": "Spalte löschen",
"PE.Views.DocumentHolder.deleteRowText": "Zeile löschen",
"PE.Views.DocumentHolder.deleteTableText": "Tabelle löschen",
@@ -1441,6 +1636,7 @@
"PE.Views.DocumentHolder.insertRowText": "Zeile einfügen",
"PE.Views.DocumentHolder.insertText": "Einfügen",
"PE.Views.DocumentHolder.langText": "Sprache wählen",
+ "PE.Views.DocumentHolder.latexText": "LaTeX",
"PE.Views.DocumentHolder.leftText": "Links",
"PE.Views.DocumentHolder.loadSpellText": "Varianten werden geladen...",
"PE.Views.DocumentHolder.mergeCellsText": "Zellen verbinden",
@@ -1456,15 +1652,21 @@
"PE.Views.DocumentHolder.splitCellsText": "Zelle teilen...",
"PE.Views.DocumentHolder.splitCellTitleText": "Zelle teilen",
"PE.Views.DocumentHolder.tableText": "Tabelle",
+ "PE.Views.DocumentHolder.textAddHGuides": "Horizontale Führungslinie hinzufügen",
+ "PE.Views.DocumentHolder.textAddVGuides": "Vertikale Führungslinie hinzufügen",
"PE.Views.DocumentHolder.textArrangeBack": "In den Hintergrund",
"PE.Views.DocumentHolder.textArrangeBackward": "Eine Ebene nach hinten",
"PE.Views.DocumentHolder.textArrangeForward": "Eine Ebene nach vorne",
"PE.Views.DocumentHolder.textArrangeFront": "In den Vordergrund bringen",
+ "PE.Views.DocumentHolder.textClearGuides": "Führungslinien löschen",
+ "PE.Views.DocumentHolder.textCm": "cm",
"PE.Views.DocumentHolder.textCopy": "Kopieren",
"PE.Views.DocumentHolder.textCrop": "Zuschneiden",
"PE.Views.DocumentHolder.textCropFill": "Ausfüllen",
"PE.Views.DocumentHolder.textCropFit": "Anpassen",
+ "PE.Views.DocumentHolder.textCustom": "Einstellbar",
"PE.Views.DocumentHolder.textCut": "Ausschneiden",
+ "PE.Views.DocumentHolder.textDeleteGuide": "Führungslinie löschen",
"PE.Views.DocumentHolder.textDistributeCols": "Spalten verteilen",
"PE.Views.DocumentHolder.textDistributeRows": "Zeilen verteilen",
"PE.Views.DocumentHolder.textEditPoints": "Punkte bearbeiten",
@@ -1473,6 +1675,8 @@
"PE.Views.DocumentHolder.textFromFile": "Aus Datei",
"PE.Views.DocumentHolder.textFromStorage": "aus dem Speicher",
"PE.Views.DocumentHolder.textFromUrl": "Aus URL",
+ "PE.Views.DocumentHolder.textGridlines": "Gitternetzlinien ",
+ "PE.Views.DocumentHolder.textGuides": "Führungslinien",
"PE.Views.DocumentHolder.textNextPage": "Nächste Folie",
"PE.Views.DocumentHolder.textPaste": "Einfügen",
"PE.Views.DocumentHolder.textPrevPage": "Vorherige Folie",
@@ -1480,14 +1684,21 @@
"PE.Views.DocumentHolder.textRotate": "Drehen",
"PE.Views.DocumentHolder.textRotate270": "Linksdrehung 90 Grad",
"PE.Views.DocumentHolder.textRotate90": "90° im UZS drehen",
+ "PE.Views.DocumentHolder.textRulers": "Lineale",
+ "PE.Views.DocumentHolder.textSaveAsPicture": "Als Bild speichern",
"PE.Views.DocumentHolder.textShapeAlignBottom": "Unten ausrichten",
"PE.Views.DocumentHolder.textShapeAlignCenter": "Zentriert ausrichten",
"PE.Views.DocumentHolder.textShapeAlignLeft": "Links ausrichten",
"PE.Views.DocumentHolder.textShapeAlignMiddle": "Mittig ausrichten",
"PE.Views.DocumentHolder.textShapeAlignRight": "Rechts ausrichten",
"PE.Views.DocumentHolder.textShapeAlignTop": "Oben ausrichten",
+ "PE.Views.DocumentHolder.textShowGridlines": "Gitternetzlinien anzeigen",
+ "PE.Views.DocumentHolder.textShowGuides": "Führungslinien anzeigen",
"PE.Views.DocumentHolder.textSlideSettings": "Folien-Einstellungen",
+ "PE.Views.DocumentHolder.textSmartGuides": "Smart-Führungslinien",
+ "PE.Views.DocumentHolder.textSnapObjects": "Objekt an das Raster binden",
"PE.Views.DocumentHolder.textUndo": "Rückgängig machen",
+ "PE.Views.DocumentHolder.tipGuides": "Führungslinien anzeigen",
"PE.Views.DocumentHolder.tipIsLocked": "Dieses Element wird gerade von einem anderen Benutzer bearbeitet.",
"PE.Views.DocumentHolder.toDictionaryText": "Zum Wörterbuch hinzufügen",
"PE.Views.DocumentHolder.txtAddBottom": "Unterer Rand hinzufügen",
@@ -1586,6 +1797,7 @@
"PE.Views.DocumentHolder.txtUnderbar": "Linie unter dem Text ",
"PE.Views.DocumentHolder.txtUngroup": "Gruppierung aufheben",
"PE.Views.DocumentHolder.txtWarnUrl": "Dieser Link kann für Ihr Gerät und Daten gefährlich sein. Möchten Sie wirklich fortsetzen?",
+ "PE.Views.DocumentHolder.unicodeText": "Unicode",
"PE.Views.DocumentHolder.vertAlignText": "Vertikale Ausrichtung",
"PE.Views.DocumentPreview.goToSlideText": "Zu Folie übergehen",
"PE.Views.DocumentPreview.slideIndexText": "Folie {0} von {1}",
@@ -1637,6 +1849,7 @@
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Speicherort",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personen mit Berechtigungen",
"PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Thema",
+ "PE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tags",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titel",
"PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Hochgeladen",
"PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Zugriffsrechte ändern",
@@ -1702,6 +1915,10 @@
"PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Alle Makros mit einer Benachrichtigung deaktivieren",
"PE.Views.FileMenuPanels.Settings.txtWin": "wie Windows",
"PE.Views.FileMenuPanels.Settings.txtWorkspace": "Arbeitsbereich",
+ "PE.Views.GridSettings.textCm": "cm",
+ "PE.Views.GridSettings.textCustom": "Einstellbar",
+ "PE.Views.GridSettings.textSpacing": "Abstand",
+ "PE.Views.GridSettings.textTitle": "Rastereinstellungen",
"PE.Views.HeaderFooterDialog.applyAllText": "Auf alle anwenden",
"PE.Views.HeaderFooterDialog.applyText": "Anwenden",
"PE.Views.HeaderFooterDialog.diffLanguage": "Das Datumsformat muss dieselbe Sprache wie der Folienmaster verwenden. Um den Master zu ändern, klicken Sie auf 'Auf alle anwenden' anstelle von 'Anwenden'.",
@@ -2089,6 +2306,11 @@
"PE.Views.TableSettings.tipOuter": "Nur äußere Rahmenlinie festlegen",
"PE.Views.TableSettings.tipRight": "Nur äußere rechte Rahmenlinie festlegen",
"PE.Views.TableSettings.tipTop": "Nur äußere obere Rahmenlinie festlegen",
+ "PE.Views.TableSettings.txtGroupTable_Custom": "Einstellbar",
+ "PE.Views.TableSettings.txtGroupTable_Dark": "Dunkel",
+ "PE.Views.TableSettings.txtGroupTable_Light": "Hell",
+ "PE.Views.TableSettings.txtGroupTable_Medium": "Mittelhoch",
+ "PE.Views.TableSettings.txtGroupTable_Optimal": "Beste Suchergebnisse für Dokument",
"PE.Views.TableSettings.txtNoBorders": "Keine Rahmen",
"PE.Views.TableSettings.txtTable_Accent": "Akzent",
"PE.Views.TableSettings.txtTable_DarkStyle": "Dunkle Formatvorlage",
@@ -2168,10 +2390,11 @@
"PE.Views.TextArtSettings.txtPapyrus": "Papyrus",
"PE.Views.TextArtSettings.txtWood": "Holz",
"PE.Views.Toolbar.capAddSlide": "Folie hinzufügen",
- "PE.Views.Toolbar.capBtnAddComment": "Kommentar hinzufügen",
+ "PE.Views.Toolbar.capBtnAddComment": "Kommentar Hinzufügen",
"PE.Views.Toolbar.capBtnComment": "Kommentar",
"PE.Views.Toolbar.capBtnDateTime": "Datum & Uhrzeit",
"PE.Views.Toolbar.capBtnInsHeader": "Fußzeile",
+ "PE.Views.Toolbar.capBtnInsSmartArt": "SmartArt",
"PE.Views.Toolbar.capBtnInsSymbol": "Symbol",
"PE.Views.Toolbar.capBtnSlideNum": "Foliennummer",
"PE.Views.Toolbar.capInsertAudio": "Audio",
@@ -2268,13 +2491,16 @@
"PE.Views.Toolbar.tipInsertAudio": "Audio einfügen",
"PE.Views.Toolbar.tipInsertChart": "Diagramm einfügen",
"PE.Views.Toolbar.tipInsertEquation": "Formel einfügen",
+ "PE.Views.Toolbar.tipInsertHorizontalText": "Horizontales Textfeld einfügen",
"PE.Views.Toolbar.tipInsertHyperlink": "Hyperlink hinzufügen",
"PE.Views.Toolbar.tipInsertImage": "Bild einfügen",
"PE.Views.Toolbar.tipInsertShape": "AutoForm einfügen",
+ "PE.Views.Toolbar.tipInsertSmartArt": "SmartArt einfügen",
"PE.Views.Toolbar.tipInsertSymbol": "Symbol einfügen",
"PE.Views.Toolbar.tipInsertTable": "Tabelle einfügen",
"PE.Views.Toolbar.tipInsertText": "Textfeld einfügen",
"PE.Views.Toolbar.tipInsertTextArt": "TextArt einfügen",
+ "PE.Views.Toolbar.tipInsertVerticalText": "Vertikales Textfeld einfügen",
"PE.Views.Toolbar.tipInsertVideo": "Video einfügen",
"PE.Views.Toolbar.tipLineSpace": "Zeilenabstand",
"PE.Views.Toolbar.tipMarkers": "Aufzählung",
@@ -2368,15 +2594,30 @@
"PE.Views.Transitions.txtParameters": "Parameter",
"PE.Views.Transitions.txtPreview": "Vorschau",
"PE.Views.Transitions.txtSec": "s",
+ "PE.Views.ViewTab.textAddHGuides": "Horizontale Führungslinie hinzufügen",
+ "PE.Views.ViewTab.textAddVGuides": "Vertikale Führungslinie hinzufügen",
"PE.Views.ViewTab.textAlwaysShowToolbar": "Symbolleiste immer anzeigen",
+ "PE.Views.ViewTab.textClearGuides": "Führungslinien löschen",
+ "PE.Views.ViewTab.textCm": "cm",
+ "PE.Views.ViewTab.textCustom": "Einstellbar",
"PE.Views.ViewTab.textFitToSlide": "An Folie anpassen",
"PE.Views.ViewTab.textFitToWidth": "An Breite anpassen",
+ "PE.Views.ViewTab.textGridlines": "Gitternetzlinien ",
+ "PE.Views.ViewTab.textGuides": "Führungslinien",
"PE.Views.ViewTab.textInterfaceTheme": "Thema der Benutzeroberfläche",
+ "PE.Views.ViewTab.textLeftMenu": "Linkes Bedienfeld",
"PE.Views.ViewTab.textNotes": "Notizen",
+ "PE.Views.ViewTab.textRightMenu": "Rechtes Bedienungsfeld ",
"PE.Views.ViewTab.textRulers": "Lineale",
+ "PE.Views.ViewTab.textShowGridlines": "Gitternetzlinien anzeigen",
+ "PE.Views.ViewTab.textShowGuides": "Führungslinien anzeigen",
+ "PE.Views.ViewTab.textSmartGuides": "Smart-Führungslinien",
+ "PE.Views.ViewTab.textSnapObjects": "Objekt an das Raster binden",
"PE.Views.ViewTab.textStatusBar": "Statusleiste",
"PE.Views.ViewTab.textZoom": "Zoom",
"PE.Views.ViewTab.tipFitToSlide": "An Folie anpassen",
"PE.Views.ViewTab.tipFitToWidth": "An Breite anpassen",
+ "PE.Views.ViewTab.tipGridlines": "Gitternetzlinien anzeigen",
+ "PE.Views.ViewTab.tipGuides": "Führungslinien anzeigen",
"PE.Views.ViewTab.tipInterfaceTheme": "Thema der Benutzeroberfläche"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json
index 9bc2db95f..0edde656e 100644
--- a/apps/presentationeditor/main/locale/en.json
+++ b/apps/presentationeditor/main/locale/en.json
@@ -435,12 +435,12 @@
"Common.UI.SearchDialog.textMatchCase": "Case sensitive",
"Common.UI.SearchDialog.textReplaceDef": "Enter the replacement text",
"Common.UI.SearchDialog.textSearchStart": "Enter your text here",
- "Common.UI.SearchDialog.textTitle": "Find and Replace",
+ "Common.UI.SearchDialog.textTitle": "Find and replace",
"Common.UI.SearchDialog.textTitle2": "Find",
"Common.UI.SearchDialog.textWholeWords": "Whole words only",
"Common.UI.SearchDialog.txtBtnHideReplace": "Hide Replace",
"Common.UI.SearchDialog.txtBtnReplace": "Replace",
- "Common.UI.SearchDialog.txtBtnReplaceAll": "Replace All",
+ "Common.UI.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.textRecentColors": "Recent Colors",
@@ -474,9 +474,9 @@
"Common.Views.About.txtTel": "tel.: ",
"Common.Views.About.txtVersion": "Version ",
"Common.Views.AutoCorrectDialog.textAdd": "Add",
- "Common.Views.AutoCorrectDialog.textApplyText": "Apply As You Type",
+ "Common.Views.AutoCorrectDialog.textApplyText": "Apply as you type",
"Common.Views.AutoCorrectDialog.textAutoCorrect": "Text AutoCorrect",
- "Common.Views.AutoCorrectDialog.textAutoFormat": "AutoFormat As You Type",
+ "Common.Views.AutoCorrectDialog.textAutoFormat": "AutoFormat as you type",
"Common.Views.AutoCorrectDialog.textBulleted": "Automatic bulleted lists",
"Common.Views.AutoCorrectDialog.textBy": "By",
"Common.Views.AutoCorrectDialog.textDelete": "Delete",
@@ -488,10 +488,10 @@
"Common.Views.AutoCorrectDialog.textMathCorrect": "Math AutoCorrect",
"Common.Views.AutoCorrectDialog.textNumbered": "Automatic numbered lists",
"Common.Views.AutoCorrectDialog.textQuotes": "\"Straight quotes\" with \"smart quotes\"",
- "Common.Views.AutoCorrectDialog.textRecognized": "Recognized Functions",
+ "Common.Views.AutoCorrectDialog.textRecognized": "Recognized functions",
"Common.Views.AutoCorrectDialog.textRecognizedDesc": "The following expressions are recognized math expressions. They will not be automatically italicized.",
"Common.Views.AutoCorrectDialog.textReplace": "Replace",
- "Common.Views.AutoCorrectDialog.textReplaceText": "Replace As You Type",
+ "Common.Views.AutoCorrectDialog.textReplaceText": "Replace as you type",
"Common.Views.AutoCorrectDialog.textReplaceType": "Replace text as you type",
"Common.Views.AutoCorrectDialog.textReset": "Reset",
"Common.Views.AutoCorrectDialog.textResetAll": "Reset to default",
@@ -532,12 +532,12 @@
"Common.Views.Comments.txtEmpty": "There are no comments in the document.",
"Common.Views.CopyWarningDialog.textDontShow": "Don't show this message again",
"Common.Views.CopyWarningDialog.textMsg": "Copy, cut and paste actions using the editor toolbar buttons and context menu actions will be performed within this editor tab only.
To copy or paste to or from applications outside the editor tab use the following keyboard combinations:",
- "Common.Views.CopyWarningDialog.textTitle": "Copy, Cut and Paste Actions",
+ "Common.Views.CopyWarningDialog.textTitle": "Copy, Cut and Paste actions",
"Common.Views.CopyWarningDialog.textToCopy": "for Copy",
"Common.Views.CopyWarningDialog.textToCut": "for Cut",
"Common.Views.CopyWarningDialog.textToPaste": "for Paste",
"Common.Views.DocumentAccessDialog.textLoading": "Loading...",
- "Common.Views.DocumentAccessDialog.textTitle": "Sharing Settings",
+ "Common.Views.DocumentAccessDialog.textTitle": "Sharing settings",
"Common.Views.ExternalDiagramEditor.textTitle": "Chart Editor",
"Common.Views.ExternalEditor.textClose": "Close",
"Common.Views.ExternalEditor.textSave": "Save & Exit",
@@ -582,19 +582,19 @@
"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.InsertTableDialog.textInvalidRowsCols": "You need to specify valid rows and columns number.",
- "Common.Views.InsertTableDialog.txtColumns": "Number of Columns",
+ "Common.Views.InsertTableDialog.txtColumns": "Number of columns",
"Common.Views.InsertTableDialog.txtMaxText": "The maximum value for this field is {0}.",
"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": "Split Cell",
+ "Common.Views.InsertTableDialog.txtRows": "Number of rows",
+ "Common.Views.InsertTableDialog.txtTitle": "Table size",
+ "Common.Views.InsertTableDialog.txtTitleSplit": "Split cell",
"Common.Views.LanguageDialog.labelSelect": "Select document language",
"Common.Views.ListSettingsDialog.textBulleted": "Bulleted",
- "Common.Views.ListSettingsDialog.textFromFile": "From File",
- "Common.Views.ListSettingsDialog.textFromStorage": "From Storage",
+ "Common.Views.ListSettingsDialog.textFromFile": "From file",
+ "Common.Views.ListSettingsDialog.textFromStorage": "From storage",
"Common.Views.ListSettingsDialog.textFromUrl": "From URL",
"Common.Views.ListSettingsDialog.textNumbering": "Numbered",
- "Common.Views.ListSettingsDialog.textSelect": "Select From",
+ "Common.Views.ListSettingsDialog.textSelect": "Select from",
"Common.Views.ListSettingsDialog.tipChange": "Change bullet",
"Common.Views.ListSettingsDialog.txtBullet": "Bullet",
"Common.Views.ListSettingsDialog.txtColor": "Color",
@@ -607,21 +607,21 @@
"Common.Views.ListSettingsDialog.txtSize": "Size",
"Common.Views.ListSettingsDialog.txtStart": "Start at",
"Common.Views.ListSettingsDialog.txtSymbol": "Symbol",
- "Common.Views.ListSettingsDialog.txtTitle": "List Settings",
+ "Common.Views.ListSettingsDialog.txtTitle": "List settings",
"Common.Views.ListSettingsDialog.txtType": "Type",
- "Common.Views.OpenDialog.closeButtonText": "Close File",
+ "Common.Views.OpenDialog.closeButtonText": "Close file",
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
"Common.Views.OpenDialog.txtIncorrectPwd": "Password is incorrect.",
"Common.Views.OpenDialog.txtOpenFile": "Enter a password to open the file",
"Common.Views.OpenDialog.txtPassword": "Password",
"Common.Views.OpenDialog.txtProtected": "Once you enter the password and open the file, the current password to the file will be reset.",
"Common.Views.OpenDialog.txtTitle": "Choose %1 options",
- "Common.Views.OpenDialog.txtTitleProtected": "Protected File",
+ "Common.Views.OpenDialog.txtTitleProtected": "Protected file",
"Common.Views.PasswordDialog.txtDescription": "Set a password to protect this document",
"Common.Views.PasswordDialog.txtIncorrectPwd": "Confirmation password is not identical",
"Common.Views.PasswordDialog.txtPassword": "Password",
"Common.Views.PasswordDialog.txtRepeat": "Repeat password",
- "Common.Views.PasswordDialog.txtTitle": "Set Password",
+ "Common.Views.PasswordDialog.txtTitle": "Set password",
"Common.Views.PasswordDialog.txtWarning": "Warning: If you lose or forget the password, it cannot be recovered. Please keep it in a safe place.",
"Common.Views.PluginDlg.textLoading": "Loading",
"Common.Views.Plugins.groupCaption": "Plugins",
@@ -702,6 +702,7 @@
"Common.Views.ReviewPopover.textCancel": "Cancel",
"Common.Views.ReviewPopover.textClose": "Close",
"Common.Views.ReviewPopover.textEdit": "OK",
+ "Common.Views.ReviewPopover.textEnterComment": "Enter your comment here",
"Common.Views.ReviewPopover.textMention": "+mention will provide access to the document and send an email",
"Common.Views.ReviewPopover.textMentionNotify": "+mention will notify the user via email",
"Common.Views.ReviewPopover.textOpenAgain": "Open Again",
@@ -731,7 +732,7 @@
"Common.Views.SearchPanel.tipNextResult": "Next result",
"Common.Views.SearchPanel.tipPreviousResult": "Previous result",
"Common.Views.SelectFileDlg.textLoading": "Loading",
- "Common.Views.SelectFileDlg.textTitle": "Select Data Source",
+ "Common.Views.SelectFileDlg.textTitle": "Select data source",
"Common.Views.SignDialog.textBold": "Bold",
"Common.Views.SignDialog.textCertificate": "Certificate",
"Common.Views.SignDialog.textChange": "Change",
@@ -740,13 +741,13 @@
"Common.Views.SignDialog.textNameError": "Signer name must not be empty.",
"Common.Views.SignDialog.textPurpose": "Purpose for signing this document",
"Common.Views.SignDialog.textSelect": "Select",
- "Common.Views.SignDialog.textSelectImage": "Select Image",
+ "Common.Views.SignDialog.textSelectImage": "Select image",
"Common.Views.SignDialog.textSignature": "Signature looks as",
- "Common.Views.SignDialog.textTitle": "Sign Document",
+ "Common.Views.SignDialog.textTitle": "Sign document",
"Common.Views.SignDialog.textUseImage": "or click 'Select Image' to use a picture as signature",
"Common.Views.SignDialog.textValid": "Valid from %1 to %2",
- "Common.Views.SignDialog.tipFontName": "Font Name",
- "Common.Views.SignDialog.tipFontSize": "Font Size",
+ "Common.Views.SignDialog.tipFontName": "Font name",
+ "Common.Views.SignDialog.tipFontSize": "Font size",
"Common.Views.SignSettingsDialog.textAllowComment": "Allow signer to add comment in the signature dialog",
"Common.Views.SignSettingsDialog.textDefInstruction": "Before signing this document, verify that the content you are signing is correct.",
"Common.Views.SignSettingsDialog.textInfoEmail": "Suggested signer's e-mail",
@@ -754,35 +755,35 @@
"Common.Views.SignSettingsDialog.textInfoTitle": "Suggested signer's title",
"Common.Views.SignSettingsDialog.textInstructions": "Instructions for signer",
"Common.Views.SignSettingsDialog.textShowDate": "Show sign date in signature line",
- "Common.Views.SignSettingsDialog.textTitle": "Signature Setup",
+ "Common.Views.SignSettingsDialog.textTitle": "Signature setup",
"Common.Views.SignSettingsDialog.txtEmpty": "This field is required",
"Common.Views.SymbolTableDialog.textCharacter": "Character",
"Common.Views.SymbolTableDialog.textCode": "Unicode HEX value",
- "Common.Views.SymbolTableDialog.textCopyright": "Copyright Sign",
- "Common.Views.SymbolTableDialog.textDCQuote": "Closing Double Quote",
- "Common.Views.SymbolTableDialog.textDOQuote": "Opening Double Quote",
- "Common.Views.SymbolTableDialog.textEllipsis": "Horizontal Ellipsis",
- "Common.Views.SymbolTableDialog.textEmDash": "Em Dash",
- "Common.Views.SymbolTableDialog.textEmSpace": "Em Space",
- "Common.Views.SymbolTableDialog.textEnDash": "En Dash",
- "Common.Views.SymbolTableDialog.textEnSpace": "En Space",
+ "Common.Views.SymbolTableDialog.textCopyright": "Copyright sign",
+ "Common.Views.SymbolTableDialog.textDCQuote": "Closing double quote",
+ "Common.Views.SymbolTableDialog.textDOQuote": "Opening double quote",
+ "Common.Views.SymbolTableDialog.textEllipsis": "Horizontal ellipsis",
+ "Common.Views.SymbolTableDialog.textEmDash": "Em dash",
+ "Common.Views.SymbolTableDialog.textEmSpace": "Em space",
+ "Common.Views.SymbolTableDialog.textEnDash": "En dash",
+ "Common.Views.SymbolTableDialog.textEnSpace": "En space",
"Common.Views.SymbolTableDialog.textFont": "Font",
- "Common.Views.SymbolTableDialog.textNBHyphen": "Non-breaking Hyphen",
- "Common.Views.SymbolTableDialog.textNBSpace": "No-break Space",
- "Common.Views.SymbolTableDialog.textPilcrow": "Pilcrow Sign",
- "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Em Space",
+ "Common.Views.SymbolTableDialog.textNBHyphen": "Non-breaking hyphen",
+ "Common.Views.SymbolTableDialog.textNBSpace": "No-break space",
+ "Common.Views.SymbolTableDialog.textPilcrow": "Pilcrow sign",
+ "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Em space",
"Common.Views.SymbolTableDialog.textRange": "Range",
"Common.Views.SymbolTableDialog.textRecent": "Recently used symbols",
- "Common.Views.SymbolTableDialog.textRegistered": "Registered Sign",
- "Common.Views.SymbolTableDialog.textSCQuote": "Closing Single Quote",
- "Common.Views.SymbolTableDialog.textSection": "Section Sign",
- "Common.Views.SymbolTableDialog.textShortcut": "Shortcut Key",
- "Common.Views.SymbolTableDialog.textSHyphen": "Soft Hyphen",
- "Common.Views.SymbolTableDialog.textSOQuote": "Opening Single Quote",
+ "Common.Views.SymbolTableDialog.textRegistered": "Registered sign",
+ "Common.Views.SymbolTableDialog.textSCQuote": "Closing single quote",
+ "Common.Views.SymbolTableDialog.textSection": "Section sign",
+ "Common.Views.SymbolTableDialog.textShortcut": "Shortcut key",
+ "Common.Views.SymbolTableDialog.textSHyphen": "Soft hyphen",
+ "Common.Views.SymbolTableDialog.textSOQuote": "Opening single quote",
"Common.Views.SymbolTableDialog.textSpecial": "Special characters",
"Common.Views.SymbolTableDialog.textSymbols": "Symbols",
"Common.Views.SymbolTableDialog.textTitle": "Symbol",
- "Common.Views.SymbolTableDialog.textTradeMark": "Trademark Symbol",
+ "Common.Views.SymbolTableDialog.textTradeMark": "Trademark symbol",
"Common.Views.UserNameDialog.textDontShow": "Don't ask me again",
"Common.Views.UserNameDialog.textLabel": "Label:",
"Common.Views.UserNameDialog.textLabelError": "Label must not be empty.",
@@ -820,6 +821,11 @@
"PE.Controllers.Main.errorFilePassProtect": "The file is password protected and cannot be opened.",
"PE.Controllers.Main.errorFileSizeExceed": "The file size exceeds the limitation set for your server. Please contact your Document Server administrator for details.",
"PE.Controllers.Main.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to a drive or try again later.",
+ "PE.Controllers.Main.errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "PE.Controllers.Main.errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "PE.Controllers.Main.errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "PE.Controllers.Main.errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "PE.Controllers.Main.errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
"PE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor",
"PE.Controllers.Main.errorKeyExpire": "Key descriptor expired",
"PE.Controllers.Main.errorLoadingFont": "Fonts are not loaded. Please contact your Document Server administrator.",
@@ -1544,8 +1550,8 @@
"PE.Views.Animation.txtParameters": "Parameters",
"PE.Views.Animation.txtPreview": "Preview",
"PE.Views.Animation.txtSec": "s",
- "PE.Views.AnimationDialog.textPreviewEffect": "Preview Effect",
- "PE.Views.AnimationDialog.textTitle": "More Effects",
+ "PE.Views.AnimationDialog.textPreviewEffect": "Preview effect",
+ "PE.Views.AnimationDialog.textTitle": "More effects",
"PE.Views.ChartSettings.text3dDepth": "Depth (% of base)",
"PE.Views.ChartSettings.text3dHeight": "Height (% of base)",
"PE.Views.ChartSettings.text3dRotation": "3D Rotation",
@@ -1569,7 +1575,7 @@
"PE.Views.ChartSettings.textWidth": "Width",
"PE.Views.ChartSettings.textX": "X rotation",
"PE.Views.ChartSettings.textY": "Y rotation",
- "PE.Views.ChartSettingsAdvanced.textAlt": "Alternative Text",
+ "PE.Views.ChartSettingsAdvanced.textAlt": "Alternative text",
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Description",
"PE.Views.ChartSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart, or table.",
"PE.Views.ChartSettingsAdvanced.textAltTitle": "Title",
@@ -1577,12 +1583,12 @@
"PE.Views.ChartSettingsAdvanced.textFrom": "From",
"PE.Views.ChartSettingsAdvanced.textHeight": "Height",
"PE.Views.ChartSettingsAdvanced.textHorizontal": "Horizontal",
- "PE.Views.ChartSettingsAdvanced.textKeepRatio": "Constant Proportions",
+ "PE.Views.ChartSettingsAdvanced.textKeepRatio": "Constant proportions",
"PE.Views.ChartSettingsAdvanced.textPlacement": "Placement",
"PE.Views.ChartSettingsAdvanced.textPosition": "Position",
"PE.Views.ChartSettingsAdvanced.textSize": "Size",
- "PE.Views.ChartSettingsAdvanced.textTitle": "Chart - Advanced Settings",
- "PE.Views.ChartSettingsAdvanced.textTopLeftCorner": "Top Left Corner",
+ "PE.Views.ChartSettingsAdvanced.textTitle": "Chart - Advanced settings",
+ "PE.Views.ChartSettingsAdvanced.textTopLeftCorner": "Top left corner",
"PE.Views.ChartSettingsAdvanced.textVertical": "Vertical",
"PE.Views.ChartSettingsAdvanced.textWidth": "Width",
"PE.Views.DateTimeDialog.confirmDefault": "Set default format for {0}: \"{1}\"",
@@ -1592,19 +1598,24 @@
"PE.Views.DateTimeDialog.textUpdate": "Update automatically",
"PE.Views.DateTimeDialog.txtTitle": "Date & Time",
"PE.Views.DocumentHolder.aboveText": "Above",
- "PE.Views.DocumentHolder.addCommentText": "Add Comment",
- "PE.Views.DocumentHolder.addToLayoutText": "Add to Layout",
- "PE.Views.DocumentHolder.advancedChartText": "Chart Advanced Settings",
- "PE.Views.DocumentHolder.advancedImageText": "Image Advanced Settings",
- "PE.Views.DocumentHolder.advancedParagraphText": "Paragraph Advanced Settings",
- "PE.Views.DocumentHolder.advancedShapeText": "Shape Advanced Settings",
- "PE.Views.DocumentHolder.advancedTableText": "Table Advanced Settings",
+ "PE.Views.DocumentHolder.addCommentText": "Add comment",
+ "PE.Views.DocumentHolder.addToLayoutText": "Add to layout",
+ "PE.Views.DocumentHolder.advancedChartText": "Chart advanced settings",
+ "PE.Views.DocumentHolder.advancedEquationText": "Equation Settings",
+ "PE.Views.DocumentHolder.advancedImageText": "Image advanced settings",
+ "PE.Views.DocumentHolder.advancedParagraphText": "Paragraph advanced settings",
+ "PE.Views.DocumentHolder.advancedShapeText": "Shape advanced settings",
+ "PE.Views.DocumentHolder.advancedTableText": "Table advanced settings",
"PE.Views.DocumentHolder.alignmentText": "Alignment",
+ "PE.Views.DocumentHolder.allLinearText": "All - Linear",
+ "PE.Views.DocumentHolder.allProfText": "All - Professional",
"PE.Views.DocumentHolder.belowText": "Below",
- "PE.Views.DocumentHolder.cellAlignText": "Cell Vertical Alignment",
+ "PE.Views.DocumentHolder.cellAlignText": "Cell vertical alignment",
"PE.Views.DocumentHolder.cellText": "Cell",
"PE.Views.DocumentHolder.centerText": "Center",
"PE.Views.DocumentHolder.columnText": "Column",
+ "PE.Views.DocumentHolder.currLinearText": "Current - Linear",
+ "PE.Views.DocumentHolder.currProfText": "Current - Professional",
"PE.Views.DocumentHolder.deleteColumnText": "Delete Column",
"PE.Views.DocumentHolder.deleteRowText": "Delete Row",
"PE.Views.DocumentHolder.deleteTableText": "Delete Table",
@@ -1612,11 +1623,11 @@
"PE.Views.DocumentHolder.direct270Text": "Rotate Text Up",
"PE.Views.DocumentHolder.direct90Text": "Rotate Text Down",
"PE.Views.DocumentHolder.directHText": "Horizontal",
- "PE.Views.DocumentHolder.directionText": "Text Direction",
- "PE.Views.DocumentHolder.editChartText": "Edit Data",
+ "PE.Views.DocumentHolder.directionText": "Text direction",
+ "PE.Views.DocumentHolder.editChartText": "Edit data",
"PE.Views.DocumentHolder.editHyperlinkText": "Edit Hyperlink",
"PE.Views.DocumentHolder.hyperlinkText": "Hyperlink",
- "PE.Views.DocumentHolder.ignoreAllSpellText": "Ignore All",
+ "PE.Views.DocumentHolder.ignoreAllSpellText": "Ignore all",
"PE.Views.DocumentHolder.ignoreSpellText": "Ignore",
"PE.Views.DocumentHolder.insertColumnLeftText": "Column Left",
"PE.Views.DocumentHolder.insertColumnRightText": "Column Right",
@@ -1626,19 +1637,20 @@
"PE.Views.DocumentHolder.insertRowText": "Insert Row",
"PE.Views.DocumentHolder.insertText": "Insert",
"PE.Views.DocumentHolder.langText": "Select Language",
+ "PE.Views.DocumentHolder.latexText": "LaTeX",
"PE.Views.DocumentHolder.leftText": "Left",
"PE.Views.DocumentHolder.loadSpellText": "Loading variants...",
- "PE.Views.DocumentHolder.mergeCellsText": "Merge Cells",
+ "PE.Views.DocumentHolder.mergeCellsText": "Merge cells",
"PE.Views.DocumentHolder.mniCustomTable": "Insert Custom Table",
"PE.Views.DocumentHolder.moreText": "More variants...",
"PE.Views.DocumentHolder.noSpellVariantsText": "No variants",
- "PE.Views.DocumentHolder.originalSizeText": "Actual Size",
+ "PE.Views.DocumentHolder.originalSizeText": "Actual size",
"PE.Views.DocumentHolder.removeHyperlinkText": "Remove Hyperlink",
"PE.Views.DocumentHolder.rightText": "Right",
"PE.Views.DocumentHolder.rowText": "Row",
"PE.Views.DocumentHolder.selectText": "Select",
"PE.Views.DocumentHolder.spellcheckText": "Spellcheck",
- "PE.Views.DocumentHolder.splitCellsText": "Split Cell...",
+ "PE.Views.DocumentHolder.splitCellsText": "Split cell...",
"PE.Views.DocumentHolder.splitCellTitleText": "Split Cell",
"PE.Views.DocumentHolder.tableText": "Table",
"PE.Views.DocumentHolder.textAddHGuides": "Add Horizontal Guide",
@@ -1658,7 +1670,7 @@
"PE.Views.DocumentHolder.textDeleteGuide": "Delete Guide",
"PE.Views.DocumentHolder.textDistributeCols": "Distribute columns",
"PE.Views.DocumentHolder.textDistributeRows": "Distribute rows",
- "PE.Views.DocumentHolder.textEditPoints": "Edit Points",
+ "PE.Views.DocumentHolder.textEditPoints": "Edit points",
"PE.Views.DocumentHolder.textFlipH": "Flip Horizontally",
"PE.Views.DocumentHolder.textFlipV": "Flip Vertically",
"PE.Views.DocumentHolder.textFromFile": "From File",
@@ -1683,13 +1695,13 @@
"PE.Views.DocumentHolder.textShapeAlignTop": "Align Top",
"PE.Views.DocumentHolder.textShowGridlines": "Show Gridlines",
"PE.Views.DocumentHolder.textShowGuides": "Show Guides",
- "PE.Views.DocumentHolder.textSlideSettings": "Slide Settings",
+ "PE.Views.DocumentHolder.textSlideSettings": "Slide settings",
"PE.Views.DocumentHolder.textSmartGuides": "Smart Guides",
"PE.Views.DocumentHolder.textSnapObjects": "Snap Object to Grid",
"PE.Views.DocumentHolder.textUndo": "Undo",
"PE.Views.DocumentHolder.tipGuides": "Show guides",
"PE.Views.DocumentHolder.tipIsLocked": "This element is currently being edited by another user.",
- "PE.Views.DocumentHolder.toDictionaryText": "Add to Dictionary",
+ "PE.Views.DocumentHolder.toDictionaryText": "Add to dictionary",
"PE.Views.DocumentHolder.txtAddBottom": "Add bottom border",
"PE.Views.DocumentHolder.txtAddFractionBar": "Add fraction bar",
"PE.Views.DocumentHolder.txtAddHor": "Add horizontal line",
@@ -1705,8 +1717,8 @@
"PE.Views.DocumentHolder.txtBackground": "Background",
"PE.Views.DocumentHolder.txtBorderProps": "Border properties",
"PE.Views.DocumentHolder.txtBottom": "Bottom",
- "PE.Views.DocumentHolder.txtChangeLayout": "Change Layout",
- "PE.Views.DocumentHolder.txtChangeTheme": "Change Theme",
+ "PE.Views.DocumentHolder.txtChangeLayout": "Change layout",
+ "PE.Views.DocumentHolder.txtChangeTheme": "Change theme",
"PE.Views.DocumentHolder.txtColumnAlign": "Column alignment",
"PE.Views.DocumentHolder.txtDecreaseArg": "Decrease argument size",
"PE.Views.DocumentHolder.txtDeleteArg": "Delete argument",
@@ -1716,10 +1728,10 @@
"PE.Views.DocumentHolder.txtDeleteEq": "Delete equation",
"PE.Views.DocumentHolder.txtDeleteGroupChar": "Delete char",
"PE.Views.DocumentHolder.txtDeleteRadical": "Delete radical",
- "PE.Views.DocumentHolder.txtDeleteSlide": "Delete Slide",
- "PE.Views.DocumentHolder.txtDistribHor": "Distribute Horizontally",
- "PE.Views.DocumentHolder.txtDistribVert": "Distribute Vertically",
- "PE.Views.DocumentHolder.txtDuplicateSlide": "Duplicate Slide",
+ "PE.Views.DocumentHolder.txtDeleteSlide": "Delete slide",
+ "PE.Views.DocumentHolder.txtDistribHor": "Distribute horizontally",
+ "PE.Views.DocumentHolder.txtDistribVert": "Distribute vertically",
+ "PE.Views.DocumentHolder.txtDuplicateSlide": "Duplicate slide",
"PE.Views.DocumentHolder.txtFractionLinear": "Change to linear fraction",
"PE.Views.DocumentHolder.txtFractionSkewed": "Change to skewed fraction",
"PE.Views.DocumentHolder.txtFractionStacked": "Change to stacked fraction",
@@ -1752,16 +1764,16 @@
"PE.Views.DocumentHolder.txtLimitUnder": "Limit under text",
"PE.Views.DocumentHolder.txtMatchBrackets": "Match brackets to argument height",
"PE.Views.DocumentHolder.txtMatrixAlign": "Matrix alignment",
- "PE.Views.DocumentHolder.txtMoveSlidesToEnd": "Move Slide to End",
- "PE.Views.DocumentHolder.txtMoveSlidesToStart": "Move Slide to Beginning",
- "PE.Views.DocumentHolder.txtNewSlide": "New Slide",
+ "PE.Views.DocumentHolder.txtMoveSlidesToEnd": "Move slide to end",
+ "PE.Views.DocumentHolder.txtMoveSlidesToStart": "Move slide to beginning",
+ "PE.Views.DocumentHolder.txtNewSlide": "New slide",
"PE.Views.DocumentHolder.txtOverbar": "Bar over text",
"PE.Views.DocumentHolder.txtPasteDestFormat": "Use destination theme",
"PE.Views.DocumentHolder.txtPastePicture": "Picture",
"PE.Views.DocumentHolder.txtPasteSourceFormat": "Keep source formatting",
"PE.Views.DocumentHolder.txtPressLink": "Press {0} and click link",
"PE.Views.DocumentHolder.txtPreview": "Start slideshow",
- "PE.Views.DocumentHolder.txtPrintSelection": "Print Selection",
+ "PE.Views.DocumentHolder.txtPrintSelection": "Print selection",
"PE.Views.DocumentHolder.txtRemFractionBar": "Remove fraction bar",
"PE.Views.DocumentHolder.txtRemLimit": "Remove limit",
"PE.Views.DocumentHolder.txtRemoveAccentChar": "Remove accent character",
@@ -1769,10 +1781,10 @@
"PE.Views.DocumentHolder.txtRemScripts": "Remove scripts",
"PE.Views.DocumentHolder.txtRemSubscript": "Remove subscript",
"PE.Views.DocumentHolder.txtRemSuperscript": "Remove superscript",
- "PE.Views.DocumentHolder.txtResetLayout": "Reset Slide",
+ "PE.Views.DocumentHolder.txtResetLayout": "Reset slide",
"PE.Views.DocumentHolder.txtScriptsAfter": "Scripts after text",
"PE.Views.DocumentHolder.txtScriptsBefore": "Scripts before text",
- "PE.Views.DocumentHolder.txtSelectAll": "Select All",
+ "PE.Views.DocumentHolder.txtSelectAll": "Select all",
"PE.Views.DocumentHolder.txtShowBottomLimit": "Show bottom limit",
"PE.Views.DocumentHolder.txtShowCloseBracket": "Show closing bracket",
"PE.Views.DocumentHolder.txtShowDegree": "Show degree",
@@ -1780,20 +1792,14 @@
"PE.Views.DocumentHolder.txtShowPlaceholder": "Show placeholder",
"PE.Views.DocumentHolder.txtShowTopLimit": "Show top limit",
"PE.Views.DocumentHolder.txtSlide": "Slide",
- "PE.Views.DocumentHolder.txtSlideHide": "Hide Slide",
+ "PE.Views.DocumentHolder.txtSlideHide": "Hide slide",
"PE.Views.DocumentHolder.txtStretchBrackets": "Stretch brackets",
"PE.Views.DocumentHolder.txtTop": "Top",
"PE.Views.DocumentHolder.txtUnderbar": "Bar under text",
"PE.Views.DocumentHolder.txtUngroup": "Ungroup",
"PE.Views.DocumentHolder.txtWarnUrl": "Clicking this link can be harmful to your device and data. Are you sure you want to continue?",
- "PE.Views.DocumentHolder.vertAlignText": "Vertical Alignment",
- "PE.Views.DocumentHolder.advancedEquationText": "Equation Settings",
"PE.Views.DocumentHolder.unicodeText": "Unicode",
- "PE.Views.DocumentHolder.latexText": "LaTeX",
- "PE.Views.DocumentHolder.currProfText": "Current - Professional",
- "PE.Views.DocumentHolder.currLinearText": "Current - Linear",
- "PE.Views.DocumentHolder.allProfText": "All - Professional",
- "PE.Views.DocumentHolder.allLinearText": "All - Linear",
+ "PE.Views.DocumentHolder.vertAlignText": "Vertical alignment",
"PE.Views.DocumentPreview.goToSlideText": "Go to Slide",
"PE.Views.DocumentPreview.slideIndexText": "Slide {0} of {1}",
"PE.Views.DocumentPreview.txtClose": "Close slideshow",
@@ -1913,7 +1919,7 @@
"PE.Views.GridSettings.textCm": "cm",
"PE.Views.GridSettings.textCustom": "Custom",
"PE.Views.GridSettings.textSpacing": "Spacing",
- "PE.Views.GridSettings.textTitle": "Grid Settings",
+ "PE.Views.GridSettings.textTitle": "Grid settings",
"PE.Views.HeaderFooterDialog.applyAllText": "Apply to all",
"PE.Views.HeaderFooterDialog.applyText": "Apply",
"PE.Views.HeaderFooterDialog.diffLanguage": "You can’t use a date format in a different language than the slide master. To change the master, click 'Apply to all' instead of 'Apply'",
@@ -1926,25 +1932,25 @@
"PE.Views.HeaderFooterDialog.textNotTitle": "Don't show on title slide",
"PE.Views.HeaderFooterDialog.textPreview": "Preview",
"PE.Views.HeaderFooterDialog.textSlideNum": "Slide number",
- "PE.Views.HeaderFooterDialog.textTitle": "Footer Settings",
+ "PE.Views.HeaderFooterDialog.textTitle": "Footer settings",
"PE.Views.HeaderFooterDialog.textUpdate": "Update automatically",
"PE.Views.HyperlinkSettingsDialog.strDisplay": "Display",
- "PE.Views.HyperlinkSettingsDialog.strLinkTo": "Link To",
+ "PE.Views.HyperlinkSettingsDialog.strLinkTo": "Link to",
"PE.Views.HyperlinkSettingsDialog.textDefault": "Selected text fragment",
"PE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Enter caption here",
"PE.Views.HyperlinkSettingsDialog.textEmptyLink": "Enter link here",
"PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Enter tooltip here",
- "PE.Views.HyperlinkSettingsDialog.textExternalLink": "External Link",
- "PE.Views.HyperlinkSettingsDialog.textInternalLink": "Slide In This Presentation",
+ "PE.Views.HyperlinkSettingsDialog.textExternalLink": "External link",
+ "PE.Views.HyperlinkSettingsDialog.textInternalLink": "Slide in this presentation",
"PE.Views.HyperlinkSettingsDialog.textSlides": "Slides",
- "PE.Views.HyperlinkSettingsDialog.textTipText": "ScreenTip Text",
- "PE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink Settings",
+ "PE.Views.HyperlinkSettingsDialog.textTipText": "ScreenTip text",
+ "PE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink settings",
"PE.Views.HyperlinkSettingsDialog.txtEmpty": "This field is required",
- "PE.Views.HyperlinkSettingsDialog.txtFirst": "First Slide",
- "PE.Views.HyperlinkSettingsDialog.txtLast": "Last Slide",
- "PE.Views.HyperlinkSettingsDialog.txtNext": "Next Slide",
+ "PE.Views.HyperlinkSettingsDialog.txtFirst": "First slide",
+ "PE.Views.HyperlinkSettingsDialog.txtLast": "Last slide",
+ "PE.Views.HyperlinkSettingsDialog.txtNext": "Next slide",
"PE.Views.HyperlinkSettingsDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format",
- "PE.Views.HyperlinkSettingsDialog.txtPrev": "Previous Slide",
+ "PE.Views.HyperlinkSettingsDialog.txtPrev": "Previous slide",
"PE.Views.HyperlinkSettingsDialog.txtSizeLimit": "This field is limited to 2083 characters",
"PE.Views.HyperlinkSettingsDialog.txtSlide": "Slide",
"PE.Views.ImageSettings.textAdvanced": "Show advanced settings",
@@ -1971,7 +1977,7 @@
"PE.Views.ImageSettings.textRotation": "Rotation",
"PE.Views.ImageSettings.textSize": "Size",
"PE.Views.ImageSettings.textWidth": "Width",
- "PE.Views.ImageSettingsAdvanced.textAlt": "Alternative Text",
+ "PE.Views.ImageSettingsAdvanced.textAlt": "Alternative text",
"PE.Views.ImageSettingsAdvanced.textAltDescription": "Description",
"PE.Views.ImageSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart, or table.",
"PE.Views.ImageSettingsAdvanced.textAltTitle": "Title",
@@ -1983,13 +1989,13 @@
"PE.Views.ImageSettingsAdvanced.textHorizontal": "Horizontal",
"PE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontally",
"PE.Views.ImageSettingsAdvanced.textKeepRatio": "Constant proportions",
- "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Actual Size",
+ "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Actual size",
"PE.Views.ImageSettingsAdvanced.textPlacement": "Placement",
"PE.Views.ImageSettingsAdvanced.textPosition": "Position",
"PE.Views.ImageSettingsAdvanced.textRotation": "Rotation",
"PE.Views.ImageSettingsAdvanced.textSize": "Size",
- "PE.Views.ImageSettingsAdvanced.textTitle": "Image - Advanced Settings",
- "PE.Views.ImageSettingsAdvanced.textTopLeftCorner": "Top Left Corner",
+ "PE.Views.ImageSettingsAdvanced.textTitle": "Image - Advanced settings",
+ "PE.Views.ImageSettingsAdvanced.textTopLeftCorner": "Top left corner",
"PE.Views.ImageSettingsAdvanced.textVertical": "Vertical",
"PE.Views.ImageSettingsAdvanced.textVertically": "Vertically",
"PE.Views.ImageSettingsAdvanced.textWidth": "Width",
@@ -2021,7 +2027,7 @@
"PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double strikethrough",
"PE.Views.ParagraphSettingsAdvanced.strIndent": "Indents",
"PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Left",
- "PE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Line Spacing",
+ "PE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Line spacing",
"PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Right",
"PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "After",
"PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Before",
@@ -2036,8 +2042,8 @@
"PE.Views.ParagraphSettingsAdvanced.strTabs": "Tabs",
"PE.Views.ParagraphSettingsAdvanced.textAlign": "Alignment",
"PE.Views.ParagraphSettingsAdvanced.textAuto": "Multiple",
- "PE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Character Spacing",
- "PE.Views.ParagraphSettingsAdvanced.textDefault": "Default Tab",
+ "PE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Character spacing",
+ "PE.Views.ParagraphSettingsAdvanced.textDefault": "Default tab",
"PE.Views.ParagraphSettingsAdvanced.textEffects": "Effects",
"PE.Views.ParagraphSettingsAdvanced.textExact": "Exactly",
"PE.Views.ParagraphSettingsAdvanced.textFirstLine": "First line",
@@ -2045,13 +2051,13 @@
"PE.Views.ParagraphSettingsAdvanced.textJustified": "Justified",
"PE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(none)",
"PE.Views.ParagraphSettingsAdvanced.textRemove": "Remove",
- "PE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Remove All",
+ "PE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Remove all",
"PE.Views.ParagraphSettingsAdvanced.textSet": "Specify",
"PE.Views.ParagraphSettingsAdvanced.textTabCenter": "Center",
"PE.Views.ParagraphSettingsAdvanced.textTabLeft": "Left",
- "PE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tab Position",
+ "PE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tab position",
"PE.Views.ParagraphSettingsAdvanced.textTabRight": "Right",
- "PE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraph - Advanced Settings",
+ "PE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraph - Advanced settings",
"PE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto",
"PE.Views.RightMenu.txtChartSettings": "Chart settings",
"PE.Views.RightMenu.txtImageSettings": "Image settings",
@@ -2118,35 +2124,35 @@
"PE.Views.ShapeSettings.txtPapyrus": "Papyrus",
"PE.Views.ShapeSettings.txtWood": "Wood",
"PE.Views.ShapeSettingsAdvanced.strColumns": "Columns",
- "PE.Views.ShapeSettingsAdvanced.strMargins": "Text Padding",
- "PE.Views.ShapeSettingsAdvanced.textAlt": "Alternative Text",
+ "PE.Views.ShapeSettingsAdvanced.strMargins": "Text padding",
+ "PE.Views.ShapeSettingsAdvanced.textAlt": "Alternative text",
"PE.Views.ShapeSettingsAdvanced.textAltDescription": "Description",
"PE.Views.ShapeSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart, or table.",
"PE.Views.ShapeSettingsAdvanced.textAltTitle": "Title",
"PE.Views.ShapeSettingsAdvanced.textAngle": "Angle",
"PE.Views.ShapeSettingsAdvanced.textArrows": "Arrows",
"PE.Views.ShapeSettingsAdvanced.textAutofit": "AutoFit",
- "PE.Views.ShapeSettingsAdvanced.textBeginSize": "Begin Size",
- "PE.Views.ShapeSettingsAdvanced.textBeginStyle": "Begin Style",
+ "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.textCapType": "Cap type",
"PE.Views.ShapeSettingsAdvanced.textCenter": "Center",
"PE.Views.ShapeSettingsAdvanced.textColNumber": "Number of columns",
- "PE.Views.ShapeSettingsAdvanced.textEndSize": "End Size",
- "PE.Views.ShapeSettingsAdvanced.textEndStyle": "End Style",
+ "PE.Views.ShapeSettingsAdvanced.textEndSize": "End size",
+ "PE.Views.ShapeSettingsAdvanced.textEndStyle": "End style",
"PE.Views.ShapeSettingsAdvanced.textFlat": "Flat",
"PE.Views.ShapeSettingsAdvanced.textFlipped": "Flipped",
"PE.Views.ShapeSettingsAdvanced.textFrom": "From",
"PE.Views.ShapeSettingsAdvanced.textHeight": "Height",
"PE.Views.ShapeSettingsAdvanced.textHorizontal": "Horizontal",
"PE.Views.ShapeSettingsAdvanced.textHorizontally": "Horizontally",
- "PE.Views.ShapeSettingsAdvanced.textJoinType": "Join Type",
+ "PE.Views.ShapeSettingsAdvanced.textJoinType": "Join type",
"PE.Views.ShapeSettingsAdvanced.textKeepRatio": "Constant proportions",
"PE.Views.ShapeSettingsAdvanced.textLeft": "Left",
- "PE.Views.ShapeSettingsAdvanced.textLineStyle": "Line Style",
+ "PE.Views.ShapeSettingsAdvanced.textLineStyle": "Line style",
"PE.Views.ShapeSettingsAdvanced.textMiter": "Miter",
- "PE.Views.ShapeSettingsAdvanced.textNofit": "Do not Autofit",
+ "PE.Views.ShapeSettingsAdvanced.textNofit": "Do not autofit",
"PE.Views.ShapeSettingsAdvanced.textPlacement": "Placement",
"PE.Views.ShapeSettingsAdvanced.textPosition": "Position",
"PE.Views.ShapeSettingsAdvanced.textResizeFit": "Resize shape to fit text",
@@ -2157,10 +2163,10 @@
"PE.Views.ShapeSettingsAdvanced.textSize": "Size",
"PE.Views.ShapeSettingsAdvanced.textSpacing": "Spacing between columns",
"PE.Views.ShapeSettingsAdvanced.textSquare": "Square",
- "PE.Views.ShapeSettingsAdvanced.textTextBox": "Text Box",
- "PE.Views.ShapeSettingsAdvanced.textTitle": "Shape - Advanced Settings",
+ "PE.Views.ShapeSettingsAdvanced.textTextBox": "Text box",
+ "PE.Views.ShapeSettingsAdvanced.textTitle": "Shape - Advanced settings",
"PE.Views.ShapeSettingsAdvanced.textTop": "Top",
- "PE.Views.ShapeSettingsAdvanced.textTopLeftCorner": "Top Left Corner",
+ "PE.Views.ShapeSettingsAdvanced.textTopLeftCorner": "Top left corner",
"PE.Views.ShapeSettingsAdvanced.textVertical": "Vertical",
"PE.Views.ShapeSettingsAdvanced.textVertically": "Vertically",
"PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Weights & Arrows",
@@ -2223,15 +2229,15 @@
"PE.Views.SlideSettings.txtPapyrus": "Papyrus",
"PE.Views.SlideSettings.txtWood": "Wood",
"PE.Views.SlideshowSettings.textLoop": "Loop continuously until 'Esc' is pressed",
- "PE.Views.SlideshowSettings.textTitle": "Show Settings",
+ "PE.Views.SlideshowSettings.textTitle": "Show settings",
"PE.Views.SlideSizeSettings.strLandscape": "Landscape",
"PE.Views.SlideSizeSettings.strPortrait": "Portrait",
"PE.Views.SlideSizeSettings.textHeight": "Height",
- "PE.Views.SlideSizeSettings.textSlideOrientation": "Slide Orientation",
- "PE.Views.SlideSizeSettings.textSlideSize": "Slide Size",
- "PE.Views.SlideSizeSettings.textTitle": "Slide Size Settings",
+ "PE.Views.SlideSizeSettings.textSlideOrientation": "Slide orientation",
+ "PE.Views.SlideSizeSettings.textSlideSize": "Slide size",
+ "PE.Views.SlideSizeSettings.textTitle": "Slide size settings",
"PE.Views.SlideSizeSettings.textWidth": "Width",
- "PE.Views.SlideSizeSettings.txt35": "35 mm Slides",
+ "PE.Views.SlideSizeSettings.txt35": "35 mm slides",
"PE.Views.SlideSizeSettings.txtA3": "A3 Paper (297x420 mm)",
"PE.Views.SlideSizeSettings.txtA4": "A4 Paper (210x297 mm)",
"PE.Views.SlideSizeSettings.txtB4": "B4 (ICO) Paper (250x353 mm)",
@@ -2315,27 +2321,27 @@
"PE.Views.TableSettings.txtTable_NoStyle": "No Style",
"PE.Views.TableSettings.txtTable_TableGrid": "Table Grid",
"PE.Views.TableSettings.txtTable_ThemedStyle": "Themed Style",
- "PE.Views.TableSettingsAdvanced.textAlt": "Alternative Text",
+ "PE.Views.TableSettingsAdvanced.textAlt": "Alternative text",
"PE.Views.TableSettingsAdvanced.textAltDescription": "Description",
"PE.Views.TableSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart, or table.",
"PE.Views.TableSettingsAdvanced.textAltTitle": "Title",
"PE.Views.TableSettingsAdvanced.textBottom": "Bottom",
"PE.Views.TableSettingsAdvanced.textCenter": "Center",
"PE.Views.TableSettingsAdvanced.textCheckMargins": "Use default margins",
- "PE.Views.TableSettingsAdvanced.textDefaultMargins": "Default Margins",
+ "PE.Views.TableSettingsAdvanced.textDefaultMargins": "Default margins",
"PE.Views.TableSettingsAdvanced.textFrom": "From",
"PE.Views.TableSettingsAdvanced.textHeight": "Height",
"PE.Views.TableSettingsAdvanced.textHorizontal": "Horizontal",
- "PE.Views.TableSettingsAdvanced.textKeepRatio": "Constant Proportions",
+ "PE.Views.TableSettingsAdvanced.textKeepRatio": "Constant proportions",
"PE.Views.TableSettingsAdvanced.textLeft": "Left",
- "PE.Views.TableSettingsAdvanced.textMargins": "Cell Margins",
+ "PE.Views.TableSettingsAdvanced.textMargins": "Cell margins",
"PE.Views.TableSettingsAdvanced.textPlacement": "Placement",
"PE.Views.TableSettingsAdvanced.textPosition": "Position",
"PE.Views.TableSettingsAdvanced.textRight": "Right",
"PE.Views.TableSettingsAdvanced.textSize": "Size",
- "PE.Views.TableSettingsAdvanced.textTitle": "Table - Advanced Settings",
+ "PE.Views.TableSettingsAdvanced.textTitle": "Table - Advanced settings",
"PE.Views.TableSettingsAdvanced.textTop": "Top",
- "PE.Views.TableSettingsAdvanced.textTopLeftCorner": "Top Left Corner",
+ "PE.Views.TableSettingsAdvanced.textTopLeftCorner": "Top left corner",
"PE.Views.TableSettingsAdvanced.textVertical": "Vertical",
"PE.Views.TableSettingsAdvanced.textWidth": "Width",
"PE.Views.TableSettingsAdvanced.textWidthSpaces": "Margins",
@@ -2591,7 +2597,7 @@
"PE.Views.Transitions.txtSec": "s",
"PE.Views.ViewTab.textAddHGuides": "Add Horizontal Guide",
"PE.Views.ViewTab.textAddVGuides": "Add Vertical Guide",
- "PE.Views.ViewTab.textAlwaysShowToolbar": "Always show toolbar",
+ "PE.Views.ViewTab.textAlwaysShowToolbar": "Always Show Toolbar",
"PE.Views.ViewTab.textClearGuides": "Clear Guides",
"PE.Views.ViewTab.textCm": "cm",
"PE.Views.ViewTab.textCustom": "Custom",
@@ -2599,8 +2605,10 @@
"PE.Views.ViewTab.textFitToWidth": "Fit To Width",
"PE.Views.ViewTab.textGridlines": "Gridlines",
"PE.Views.ViewTab.textGuides": "Guides",
- "PE.Views.ViewTab.textInterfaceTheme": "Interface theme",
+ "PE.Views.ViewTab.textInterfaceTheme": "Interface Theme",
+ "PE.Views.ViewTab.textLeftMenu": "Left Panel",
"PE.Views.ViewTab.textNotes": "Notes",
+ "PE.Views.ViewTab.textRightMenu": "Right Panel",
"PE.Views.ViewTab.textRulers": "Rulers",
"PE.Views.ViewTab.textShowGridlines": "Show Gridlines",
"PE.Views.ViewTab.textShowGuides": "Show Guides",
@@ -2612,7 +2620,5 @@
"PE.Views.ViewTab.tipFitToWidth": "Fit to width",
"PE.Views.ViewTab.tipGridlines": "Show gridlines",
"PE.Views.ViewTab.tipGuides": "Show Guides",
- "PE.Views.ViewTab.tipInterfaceTheme": "Interface theme",
- "PE.Views.ViewTab.textLeftMenu": "Left panel",
- "PE.Views.ViewTab.textRightMenu": "Right panel"
+ "PE.Views.ViewTab.tipInterfaceTheme": "Interface theme"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/es.json b/apps/presentationeditor/main/locale/es.json
index 3d1910c43..7315a7dd3 100644
--- a/apps/presentationeditor/main/locale/es.json
+++ b/apps/presentationeditor/main/locale/es.json
@@ -248,6 +248,14 @@
"Common.define.effectData.textWipe": "Barrido",
"Common.define.effectData.textZigzag": "Zigzag",
"Common.define.effectData.textZoom": "Zoom",
+ "Common.define.gridlineData.txtCm": "cm",
+ "Common.define.gridlineData.txtPt": "pt",
+ "Common.define.smartArt.textBalance": "Saldo",
+ "Common.define.smartArt.textEquation": "Ecuación",
+ "Common.define.smartArt.textFunnel": "Embudo",
+ "Common.define.smartArt.textList": "Lista",
+ "Common.define.smartArt.textOther": "Otro",
+ "Common.define.smartArt.textPicture": "Imagen",
"Common.Translation.textMoreButton": "Más",
"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",
@@ -378,6 +386,8 @@
"Common.Views.DocumentAccessDialog.textLoading": "Cargando...",
"Common.Views.DocumentAccessDialog.textTitle": "Ajustes de uso compartido",
"Common.Views.ExternalDiagramEditor.textTitle": "Editor de gráfico",
+ "Common.Views.ExternalEditor.textClose": "Cerrar",
+ "Common.Views.ExternalEditor.textSave": "Guardar y salir",
"Common.Views.ExternalOleEditor.textTitle": "Editor de hojas de cálculo",
"Common.Views.Header.labelCoUsersDescr": "El documento está siendo editado por usuarios:",
"Common.Views.Header.textAddFavorite": "Marcar como favorito",
@@ -468,6 +478,7 @@
"Common.Views.Plugins.textStart": "Iniciar",
"Common.Views.Plugins.textStop": "Detener",
"Common.Views.Protection.hintAddPwd": "Encriptar con contraseña",
+ "Common.Views.Protection.hintDelPwd": "Eliminar contraseña",
"Common.Views.Protection.hintPwd": "Cambie o elimine la contraseña",
"Common.Views.Protection.hintSignature": "Agregar firma digital o línea de firma",
"Common.Views.Protection.txtAddPwd": "Agregar contraseña",
@@ -647,6 +658,7 @@
"PE.Controllers.Main.errorDataEncrypted": "Se han recibido cambios cifrados, ellos no pueden ser descifrados.",
"PE.Controllers.Main.errorDataRange": "Rango de datos incorrecto.",
"PE.Controllers.Main.errorDefaultMessage": "Código de error: %1",
+ "PE.Controllers.Main.errorDirectUrl": "Por favor, verifique el vínculo al documento. Este vínculo debe ser un vínculo directo al archivo para descargar.",
"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.",
"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.",
"PE.Controllers.Main.errorEmailClient": "No se pudo encontrar ningun cliente de correo",
@@ -708,6 +720,7 @@
"PE.Controllers.Main.textClose": "Cerrar",
"PE.Controllers.Main.textCloseTip": "Pulse para cerrar el consejo",
"PE.Controllers.Main.textContactUs": "Contactar con equipo de ventas",
+ "PE.Controllers.Main.textContinue": "Continuar",
"PE.Controllers.Main.textConvertEquation": "Esta ecuación fue creada con una versión antigua del editor de ecuaciones que ya no es compatible. Para editarla, convierta la ecuación al formato ML de Office Math. ¿Convertir ahora?",
"PE.Controllers.Main.textCustomLoader": "Note, por favor, que según los términos de la licencia Usted no tiene derecho a cambiar el cargador. Por favor, póngase en contacto con nuestro Departamento de Ventas para obtener una cotización.",
"PE.Controllers.Main.textDisconnect": "Se ha perdido la conexión",
@@ -728,6 +741,7 @@
"PE.Controllers.Main.textStrict": "Modo estricto",
"PE.Controllers.Main.textTryUndoRedo": "Las funciones Anular/Rehacer se desactivan para el modo co-edición rápido. Haga Clic en el botón \"modo estricto\" para cambiar al modo de co-edición estricta para editar el archivo sin la interferencia de otros usuarios y enviar sus cambios sólo después de guardarlos. Se puede cambiar entre los modos de co-edición usando los ajustes avanzados de edición.",
"PE.Controllers.Main.textTryUndoRedoWarn": "Las funciones Deshacer/Rehacer están desactivadas en el modo de co-edición rápido.",
+ "PE.Controllers.Main.textUndo": "Deshacer",
"PE.Controllers.Main.titleLicenseExp": "Licencia ha expirado",
"PE.Controllers.Main.titleServerVersion": "Editor ha sido actualizado",
"PE.Controllers.Main.txtAddFirstSlide": "Haga clic para agregar la primera diapositiva",
@@ -1379,11 +1393,15 @@
"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.textDown": "Abajo",
"PE.Views.ChartSettings.textEditData": "Editar datos",
"PE.Views.ChartSettings.textHeight": "Altura",
"PE.Views.ChartSettings.textKeepRatio": "Proporciones constantes",
+ "PE.Views.ChartSettings.textLeft": "Izquierda",
+ "PE.Views.ChartSettings.textRight": "Derecha",
"PE.Views.ChartSettings.textSize": "Tamaño",
"PE.Views.ChartSettings.textStyle": "Estilo",
+ "PE.Views.ChartSettings.textUp": "Arriba",
"PE.Views.ChartSettings.textWidth": "Ancho",
"PE.Views.ChartSettingsAdvanced.textAlt": "Texto alternativo",
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Descripción",
@@ -1410,6 +1428,7 @@
"PE.Views.DocumentHolder.aboveText": "Arriba",
"PE.Views.DocumentHolder.addCommentText": "Agregar comentario",
"PE.Views.DocumentHolder.addToLayoutText": "Agregar al Diseño",
+ "PE.Views.DocumentHolder.advancedChartText": "Ajustes avanzados de gráfico",
"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",
@@ -1460,10 +1479,12 @@
"PE.Views.DocumentHolder.textArrangeBackward": "Enviar atrás",
"PE.Views.DocumentHolder.textArrangeForward": "Traer adelante",
"PE.Views.DocumentHolder.textArrangeFront": "Traer al frente",
+ "PE.Views.DocumentHolder.textCm": "cm",
"PE.Views.DocumentHolder.textCopy": "Copiar",
"PE.Views.DocumentHolder.textCrop": "Recortar",
"PE.Views.DocumentHolder.textCropFill": "Relleno",
"PE.Views.DocumentHolder.textCropFit": "Adaptar",
+ "PE.Views.DocumentHolder.textCustom": "Personalizado",
"PE.Views.DocumentHolder.textCut": "Cortar",
"PE.Views.DocumentHolder.textDistributeCols": "Distribuir columnas",
"PE.Views.DocumentHolder.textDistributeRows": "Distribuir filas",
@@ -1473,6 +1494,7 @@
"PE.Views.DocumentHolder.textFromFile": "De archivo",
"PE.Views.DocumentHolder.textFromStorage": "Desde almacenamiento",
"PE.Views.DocumentHolder.textFromUrl": "De URL",
+ "PE.Views.DocumentHolder.textGridlines": "Líneas de cuadrícula",
"PE.Views.DocumentHolder.textNextPage": "Diapositiva siguiente",
"PE.Views.DocumentHolder.textPaste": "Pegar",
"PE.Views.DocumentHolder.textPrevPage": "Diapositiva anterior",
@@ -1480,6 +1502,7 @@
"PE.Views.DocumentHolder.textRotate": "Girar",
"PE.Views.DocumentHolder.textRotate270": "Girar 90° a la izquierda",
"PE.Views.DocumentHolder.textRotate90": "Girar 90° a la derecha",
+ "PE.Views.DocumentHolder.textRulers": "Reglas",
"PE.Views.DocumentHolder.textShapeAlignBottom": "Alinear en la parte inferior",
"PE.Views.DocumentHolder.textShapeAlignCenter": "Alinear al centro",
"PE.Views.DocumentHolder.textShapeAlignLeft": "Alinear a la izquierda",
@@ -1637,6 +1660,7 @@
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Ubicación",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personas que tienen derechos",
"PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Asunto",
+ "PE.Views.FileMenuPanels.DocumentInfo.txtTags": "Etiquetas",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título",
"PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Subido",
"PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Cambiar derechos de acceso",
@@ -1702,6 +1726,9 @@
"PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Deshabilitar todas las macros con notificación",
"PE.Views.FileMenuPanels.Settings.txtWin": "como Windows",
"PE.Views.FileMenuPanels.Settings.txtWorkspace": "Área de trabajo",
+ "PE.Views.GridSettings.textCm": "cm",
+ "PE.Views.GridSettings.textCustom": "Personalizado",
+ "PE.Views.GridSettings.textSpacing": "Espaciado",
"PE.Views.HeaderFooterDialog.applyAllText": "Aplicar a todo",
"PE.Views.HeaderFooterDialog.applyText": "Aplicar",
"PE.Views.HeaderFooterDialog.diffLanguage": "No se puede usar un formato de fecha en un idioma diferente del patrón de diapositivas. Para cambiar el patrón pulse \"Aplicar a todo\" en vez de \"Aplicar\"",
@@ -1968,7 +1995,7 @@
"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",
- "PE.Views.SlideSettings.strDateTime": "Mostrar Fecha y Hora",
+ "PE.Views.SlideSettings.strDateTime": "Mostrar fecha y hora",
"PE.Views.SlideSettings.strFill": "Fondo",
"PE.Views.SlideSettings.strForeground": "Color de primer plano",
"PE.Views.SlideSettings.strPattern": "Patrón",
@@ -2089,6 +2116,10 @@
"PE.Views.TableSettings.tipOuter": "Fijar sólo borde exterior",
"PE.Views.TableSettings.tipRight": "Fijar sólo borde exterior derecho",
"PE.Views.TableSettings.tipTop": "Fijar sólo borde exterior superior",
+ "PE.Views.TableSettings.txtGroupTable_Custom": "Personalizado",
+ "PE.Views.TableSettings.txtGroupTable_Dark": "Oscuro",
+ "PE.Views.TableSettings.txtGroupTable_Light": "Claro",
+ "PE.Views.TableSettings.txtGroupTable_Medium": "Medio",
"PE.Views.TableSettings.txtNoBorders": "Sin bordes",
"PE.Views.TableSettings.txtTable_Accent": "Acentuación",
"PE.Views.TableSettings.txtTable_DarkStyle": "Estilo oscuro",
@@ -2172,6 +2203,7 @@
"PE.Views.Toolbar.capBtnComment": "Comentario",
"PE.Views.Toolbar.capBtnDateTime": "Fecha y hora",
"PE.Views.Toolbar.capBtnInsHeader": "Pie de página",
+ "PE.Views.Toolbar.capBtnInsSmartArt": "SmartArt",
"PE.Views.Toolbar.capBtnInsSymbol": "Símbolo",
"PE.Views.Toolbar.capBtnSlideNum": "Número de diapositiva",
"PE.Views.Toolbar.capInsertAudio": "Audio",
@@ -2181,8 +2213,8 @@
"PE.Views.Toolbar.capInsertImage": "Imagen",
"PE.Views.Toolbar.capInsertShape": "Forma",
"PE.Views.Toolbar.capInsertTable": "Tabla",
- "PE.Views.Toolbar.capInsertText": "Cuadro de Texto",
- "PE.Views.Toolbar.capInsertTextArt": "Galería de Texto",
+ "PE.Views.Toolbar.capInsertText": "Cuadro de texto",
+ "PE.Views.Toolbar.capInsertTextArt": "Galería de texto",
"PE.Views.Toolbar.capInsertVideo": "Vídeo",
"PE.Views.Toolbar.capTabFile": "Archivo",
"PE.Views.Toolbar.capTabHome": "Inicio",
@@ -2369,8 +2401,11 @@
"PE.Views.Transitions.txtPreview": "Vista previa",
"PE.Views.Transitions.txtSec": "S",
"PE.Views.ViewTab.textAlwaysShowToolbar": "Mostrar siempre la barra de herramientas",
+ "PE.Views.ViewTab.textCm": "cm",
+ "PE.Views.ViewTab.textCustom": "Personalizado",
"PE.Views.ViewTab.textFitToSlide": "Ajustar a la diapositiva",
"PE.Views.ViewTab.textFitToWidth": "Ajustar al ancho",
+ "PE.Views.ViewTab.textGridlines": "Líneas de cuadrícula",
"PE.Views.ViewTab.textInterfaceTheme": "Tema del interfaz",
"PE.Views.ViewTab.textNotes": "Notas",
"PE.Views.ViewTab.textRulers": "Reglas",
@@ -2378,5 +2413,6 @@
"PE.Views.ViewTab.textZoom": "Zoom",
"PE.Views.ViewTab.tipFitToSlide": "Ajustar a la diapositiva",
"PE.Views.ViewTab.tipFitToWidth": "Ajustar al ancho",
+ "PE.Views.ViewTab.tipGridlines": "Mostrar líneas de cuadrícula",
"PE.Views.ViewTab.tipInterfaceTheme": "Tema de la interfaz"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/eu.json b/apps/presentationeditor/main/locale/eu.json
index 02d1653fc..4b7b64c21 100644
--- a/apps/presentationeditor/main/locale/eu.json
+++ b/apps/presentationeditor/main/locale/eu.json
@@ -1361,7 +1361,7 @@
"PE.Views.Animation.textMoveEarlier": "Lehenago mugitu",
"PE.Views.Animation.textMoveLater": "Geroago mugitu",
"PE.Views.Animation.textMultiple": "Multiploa",
- "PE.Views.Animation.textNone": "bat ere ez",
+ "PE.Views.Animation.textNone": "Bat ere ez",
"PE.Views.Animation.textNoRepeat": "(bat ere ez)",
"PE.Views.Animation.textOnClickOf": "Klika egitean honekin",
"PE.Views.Animation.textOnClickSequence": "Klik sekuentzian",
@@ -2286,7 +2286,7 @@
"PE.Views.Toolbar.tipMarkersFSquare": "Betetako lauki buletak",
"PE.Views.Toolbar.tipMarkersHRound": "Biribil huts buletak",
"PE.Views.Toolbar.tipMarkersStar": "Izar-buletak",
- "PE.Views.Toolbar.tipNone": "bat ere ez",
+ "PE.Views.Toolbar.tipNone": "Bat ere ez",
"PE.Views.Toolbar.tipNumbers": "Zenbakitzea",
"PE.Views.Toolbar.tipPaste": "Itsatsi",
"PE.Views.Toolbar.tipPreview": "Aurkezpena hasi",
diff --git a/apps/presentationeditor/main/locale/fr.json b/apps/presentationeditor/main/locale/fr.json
index 64b2dc613..dbafb5d1d 100644
--- a/apps/presentationeditor/main/locale/fr.json
+++ b/apps/presentationeditor/main/locale/fr.json
@@ -491,7 +491,7 @@
"Common.Views.AutoCorrectDialog.textRecognized": "Fonctions reconnues",
"Common.Views.AutoCorrectDialog.textRecognizedDesc": "Les expressions suivantes sont les expressions mathématiques reconnues. Elles ne seront pas mises en italique automatiquement.",
"Common.Views.AutoCorrectDialog.textReplace": "Remplacer",
- "Common.Views.AutoCorrectDialog.textReplaceText": "Remplacer au cours de la frappe",
+ "Common.Views.AutoCorrectDialog.textReplaceText": "Remplacer pendant la frappe",
"Common.Views.AutoCorrectDialog.textReplaceType": "Remplacer le texte au cours de la frappe",
"Common.Views.AutoCorrectDialog.textReset": "Réinitialiser",
"Common.Views.AutoCorrectDialog.textResetAll": "Rétablir paramètres par défaut",
@@ -532,7 +532,7 @@
"Common.Views.Comments.txtEmpty": "Il n'y a pas de commentaires dans le document.",
"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",
+ "Common.Views.CopyWarningDialog.textTitle": "Actions copier, couper et coller",
"Common.Views.CopyWarningDialog.textToCopy": "pour Copier",
"Common.Views.CopyWarningDialog.textToCut": "pour Couper",
"Common.Views.CopyWarningDialog.textToPaste": "pour Coller",
@@ -590,8 +590,8 @@
"Common.Views.InsertTableDialog.txtTitleSplit": "Fractionner la cellule",
"Common.Views.LanguageDialog.labelSelect": "Sélectionner la langue du document",
"Common.Views.ListSettingsDialog.textBulleted": "à puces",
- "Common.Views.ListSettingsDialog.textFromFile": "D'un fichier",
- "Common.Views.ListSettingsDialog.textFromStorage": "A partir de l'espace de stockage",
+ "Common.Views.ListSettingsDialog.textFromFile": "Depuis un fichier",
+ "Common.Views.ListSettingsDialog.textFromStorage": "Depuis l'espace de stockage",
"Common.Views.ListSettingsDialog.textFromUrl": "D'une URL",
"Common.Views.ListSettingsDialog.textNumbering": "Numéroté",
"Common.Views.ListSettingsDialog.textSelect": "Sélectionner à partir de",
@@ -609,7 +609,7 @@
"Common.Views.ListSettingsDialog.txtSymbol": "Symbole",
"Common.Views.ListSettingsDialog.txtTitle": "Paramètres de la liste",
"Common.Views.ListSettingsDialog.txtType": "Type",
- "Common.Views.OpenDialog.closeButtonText": "Fermer le fichier",
+ "Common.Views.OpenDialog.closeButtonText": "Fermer fichier",
"Common.Views.OpenDialog.txtEncoding": "Codage ",
"Common.Views.OpenDialog.txtIncorrectPwd": "Le mot de passe est incorrect.",
"Common.Views.OpenDialog.txtOpenFile": "Entrer le mot de passe pour ouvrir le fichier",
@@ -731,7 +731,7 @@
"Common.Views.SearchPanel.tipNextResult": "Résultat suivant",
"Common.Views.SearchPanel.tipPreviousResult": "Résultat précédent",
"Common.Views.SelectFileDlg.textLoading": "Chargement",
- "Common.Views.SelectFileDlg.textTitle": "Sélectionnez la source de données",
+ "Common.Views.SelectFileDlg.textTitle": "Sélectionner la source de données",
"Common.Views.SignDialog.textBold": "Gras",
"Common.Views.SignDialog.textCertificate": "Certificat",
"Common.Views.SignDialog.textChange": "Changer",
@@ -745,8 +745,8 @@
"Common.Views.SignDialog.textTitle": "Signer le document",
"Common.Views.SignDialog.textUseImage": "ou cliquer sur \"Sélectionner une image\" afin d'utiliser une image en tant que signature",
"Common.Views.SignDialog.textValid": "Valide de %1 à %2",
- "Common.Views.SignDialog.tipFontName": "Nom de la police",
- "Common.Views.SignDialog.tipFontSize": "Taille de la police",
+ "Common.Views.SignDialog.tipFontName": "Nom de police",
+ "Common.Views.SignDialog.tipFontSize": "Taille de police",
"Common.Views.SignSettingsDialog.textAllowComment": "Autoriser le signataire à ajouter un commentaire dans la boîte de dialogue de la signature",
"Common.Views.SignSettingsDialog.textDefInstruction": "Avant de signer un document, vérifiez que le contenu que vous signez est correct.",
"Common.Views.SignSettingsDialog.textInfoEmail": "E-mail du signataire suggéré",
@@ -754,35 +754,35 @@
"Common.Views.SignSettingsDialog.textInfoTitle": "Titre du signataire suggéré",
"Common.Views.SignSettingsDialog.textInstructions": "Instructions pour les signataires",
"Common.Views.SignSettingsDialog.textShowDate": "Afficher la date de signature à côté de la signature",
- "Common.Views.SignSettingsDialog.textTitle": "Mise en place de la signature",
+ "Common.Views.SignSettingsDialog.textTitle": "Configuration de signature",
"Common.Views.SignSettingsDialog.txtEmpty": "Ce champ est obligatoire",
"Common.Views.SymbolTableDialog.textCharacter": "Caractère",
"Common.Views.SymbolTableDialog.textCode": "Valeur hexadécimale Unicode",
- "Common.Views.SymbolTableDialog.textCopyright": "Signe Copyright",
- "Common.Views.SymbolTableDialog.textDCQuote": "Fermer les guillemets",
- "Common.Views.SymbolTableDialog.textDOQuote": "Ouvrir les guillemets",
+ "Common.Views.SymbolTableDialog.textCopyright": "Symbole de copyright",
+ "Common.Views.SymbolTableDialog.textDCQuote": "Guillemet double fermant",
+ "Common.Views.SymbolTableDialog.textDOQuote": "Double guillemet ouvrant",
"Common.Views.SymbolTableDialog.textEllipsis": "Points de suspension",
"Common.Views.SymbolTableDialog.textEmDash": "Tiret cadratin",
"Common.Views.SymbolTableDialog.textEmSpace": "Espace cadratin",
"Common.Views.SymbolTableDialog.textEnDash": "Tiret demi-cadratin",
"Common.Views.SymbolTableDialog.textEnSpace": "Espace demi-cadratin",
"Common.Views.SymbolTableDialog.textFont": "Police",
- "Common.Views.SymbolTableDialog.textNBHyphen": "tiret insécable",
+ "Common.Views.SymbolTableDialog.textNBHyphen": "Trait d’union insécable",
"Common.Views.SymbolTableDialog.textNBSpace": "Espace insécable",
- "Common.Views.SymbolTableDialog.textPilcrow": "Symbole de Paragraphe",
+ "Common.Views.SymbolTableDialog.textPilcrow": "Pied-de-mouche",
"Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Espace cadratin",
"Common.Views.SymbolTableDialog.textRange": "Plage",
"Common.Views.SymbolTableDialog.textRecent": "Caractères spéciaux récemment utilisés",
- "Common.Views.SymbolTableDialog.textRegistered": "Signe 'Enregistré'",
- "Common.Views.SymbolTableDialog.textSCQuote": "Fermer l'apostrophe",
- "Common.Views.SymbolTableDialog.textSection": "Signe de Section ",
- "Common.Views.SymbolTableDialog.textShortcut": "Raccourcis clavier",
+ "Common.Views.SymbolTableDialog.textRegistered": "Symbole de marque déposée",
+ "Common.Views.SymbolTableDialog.textSCQuote": "Guillemet simple fermant",
+ "Common.Views.SymbolTableDialog.textSection": "Paragraphe",
+ "Common.Views.SymbolTableDialog.textShortcut": "Touche de raccourci",
"Common.Views.SymbolTableDialog.textSHyphen": "Trait d'union conditionnel",
- "Common.Views.SymbolTableDialog.textSOQuote": "Ouvrir l'apostrophe",
+ "Common.Views.SymbolTableDialog.textSOQuote": "Guillemet simple ouvrant",
"Common.Views.SymbolTableDialog.textSpecial": "symboles spéciaux",
"Common.Views.SymbolTableDialog.textSymbols": "Symboles",
"Common.Views.SymbolTableDialog.textTitle": "Symbole",
- "Common.Views.SymbolTableDialog.textTradeMark": "Logo",
+ "Common.Views.SymbolTableDialog.textTradeMark": "Symbole de marque",
"Common.Views.UserNameDialog.textDontShow": "Ne plus me demander à nouveau",
"Common.Views.UserNameDialog.textLabel": "Étiquette :",
"Common.Views.UserNameDialog.textLabelError": "Étiquette ne doit pas être vide",
@@ -820,6 +820,11 @@
"PE.Controllers.Main.errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut être ouvert.",
"PE.Controllers.Main.errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur. Veuillez contacter votre administrateur de Document Server pour obtenir plus d'information. ",
"PE.Controllers.Main.errorForceSave": "Une erreur est survenue lors de l'enregistrement du fichier. Veuillez utiliser l'option \"Télécharger comme\" pour enregistrer le fichier sur le disque dur de votre ordinateur ou réessayer plus tard.",
+ "PE.Controllers.Main.errorInconsistentExt": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier ne correspond pas à l'extension du fichier.",
+ "PE.Controllers.Main.errorInconsistentExtDocx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des documents texte (par exemple docx), mais le fichier a une extension incohérente : %1.",
+ "PE.Controllers.Main.errorInconsistentExtPdf": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à l'un des formats suivants : pdf/djvu/xps/oxps, mais le fichier a l'extension incohérente : %1.",
+ "PE.Controllers.Main.errorInconsistentExtPptx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des présentations (par exemple pptx), mais le fichier a une extension incohérente : %1.",
+ "PE.Controllers.Main.errorInconsistentExtXlsx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des feuilles de calcul (par exemple xlsx), mais le fichier a une extension incohérente : %1.",
"PE.Controllers.Main.errorKeyEncrypt": "Descripteur de clés inconnu",
"PE.Controllers.Main.errorKeyExpire": "Descripteur de clés expiré",
"PE.Controllers.Main.errorLoadingFont": "Les polices ne sont pas téléchargées. Veuillez contacter l'administrateur de Document Server.",
@@ -1544,7 +1549,7 @@
"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.textPreviewEffect": "Aperçu de l'effet",
"PE.Views.AnimationDialog.textTitle": "Autres effets",
"PE.Views.ChartSettings.text3dDepth": "Profondeur (% de la base)",
"PE.Views.ChartSettings.text3dHeight": "Hauteur (% de la base)",
@@ -1590,21 +1595,26 @@
"PE.Views.DateTimeDialog.textFormat": "Formats",
"PE.Views.DateTimeDialog.textLang": "Langue",
"PE.Views.DateTimeDialog.textUpdate": "Mettre à jour automatiquement",
- "PE.Views.DateTimeDialog.txtTitle": "Date & heure",
+ "PE.Views.DateTimeDialog.txtTitle": "Date et heure",
"PE.Views.DocumentHolder.aboveText": "Au-dessus",
"PE.Views.DocumentHolder.addCommentText": "Ajouter un commentaire",
"PE.Views.DocumentHolder.addToLayoutText": "Ajouter dans une mise en page",
"PE.Views.DocumentHolder.advancedChartText": "Paramètres avancés du graphique ",
+ "PE.Views.DocumentHolder.advancedEquationText": "Paramètres d'équations",
"PE.Views.DocumentHolder.advancedImageText": "Paramètres avancés de l'image",
"PE.Views.DocumentHolder.advancedParagraphText": "Paramètres avancés du texte",
"PE.Views.DocumentHolder.advancedShapeText": "Paramètres avancés de la forme",
"PE.Views.DocumentHolder.advancedTableText": "Paramètres avancés du tableau",
"PE.Views.DocumentHolder.alignmentText": "Alignement",
+ "PE.Views.DocumentHolder.allLinearText": "Toutes - Linéaire",
+ "PE.Views.DocumentHolder.allProfText": "Toutes - Professionnel",
"PE.Views.DocumentHolder.belowText": "En dessous",
"PE.Views.DocumentHolder.cellAlignText": "Alignement vertical de cellule",
"PE.Views.DocumentHolder.cellText": "Cellule",
"PE.Views.DocumentHolder.centerText": "Au centre",
"PE.Views.DocumentHolder.columnText": "Colonne",
+ "PE.Views.DocumentHolder.currLinearText": "Actuelles - Linéaire",
+ "PE.Views.DocumentHolder.currProfText": "Actuelles - Professionnel",
"PE.Views.DocumentHolder.deleteColumnText": "Supprimer la colonne",
"PE.Views.DocumentHolder.deleteRowText": "Supprimer la ligne",
"PE.Views.DocumentHolder.deleteTableText": "Supprimer le tableau",
@@ -1626,6 +1636,7 @@
"PE.Views.DocumentHolder.insertRowText": "Insérer une ligne",
"PE.Views.DocumentHolder.insertText": "Insérer",
"PE.Views.DocumentHolder.langText": "Sélectionner la langue",
+ "PE.Views.DocumentHolder.latexText": "LaTeX",
"PE.Views.DocumentHolder.leftText": "À gauche",
"PE.Views.DocumentHolder.loadSpellText": "Chargement des variantes en cours...",
"PE.Views.DocumentHolder.mergeCellsText": "Fusionner les cellules",
@@ -1674,6 +1685,7 @@
"PE.Views.DocumentHolder.textRotate270": "Faire pivoter à gauche de 90°",
"PE.Views.DocumentHolder.textRotate90": "Faire pivoter à droite de 90°",
"PE.Views.DocumentHolder.textRulers": "Règles",
+ "PE.Views.DocumentHolder.textSaveAsPicture": "Enregistrer en tant qu'image",
"PE.Views.DocumentHolder.textShapeAlignBottom": "Aligner en bas",
"PE.Views.DocumentHolder.textShapeAlignCenter": "Aligner au centre",
"PE.Views.DocumentHolder.textShapeAlignLeft": "Aligner à gauche",
@@ -1779,12 +1791,13 @@
"PE.Views.DocumentHolder.txtShowPlaceholder": "Afficher espace réservé",
"PE.Views.DocumentHolder.txtShowTopLimit": "Afficher limite supérieure",
"PE.Views.DocumentHolder.txtSlide": "Diapositive",
- "PE.Views.DocumentHolder.txtSlideHide": "Cacher la diapositive",
+ "PE.Views.DocumentHolder.txtSlideHide": "Masquer la diapositive",
"PE.Views.DocumentHolder.txtStretchBrackets": "Allonger des crochets",
"PE.Views.DocumentHolder.txtTop": "En haut",
"PE.Views.DocumentHolder.txtUnderbar": "Barre en dessous d'un texte",
"PE.Views.DocumentHolder.txtUngroup": "Dissocier",
"PE.Views.DocumentHolder.txtWarnUrl": "Cliquer sur ce lien peut être dangereux pour votre appareil et vos données. Êtes-vous sûr de vouloir continuer ?",
+ "PE.Views.DocumentHolder.unicodeText": "Unicode",
"PE.Views.DocumentHolder.vertAlignText": "Alignement vertical",
"PE.Views.DocumentPreview.goToSlideText": "Atteindre la diapositive",
"PE.Views.DocumentPreview.slideIndexText": "Diapositive {0} de {1}",
@@ -1905,6 +1918,7 @@
"PE.Views.GridSettings.textCm": "cm",
"PE.Views.GridSettings.textCustom": "Personnalisé",
"PE.Views.GridSettings.textSpacing": "Espacement",
+ "PE.Views.GridSettings.textTitle": "Paramètres de la grille",
"PE.Views.HeaderFooterDialog.applyAllText": "Appliquer à tous",
"PE.Views.HeaderFooterDialog.applyText": "Appliquer",
"PE.Views.HeaderFooterDialog.diffLanguage": "Vous ne pouvez pas utiliser la langue de date différente de celle du masque des diapositives. Pour modifier le masque, cliquez \" Appliquer à toutes \" au lieu de \" Appliquer \"",
@@ -1917,18 +1931,18 @@
"PE.Views.HeaderFooterDialog.textNotTitle": "Ne pas afficher sur la diapositive titre",
"PE.Views.HeaderFooterDialog.textPreview": "Aperçu",
"PE.Views.HeaderFooterDialog.textSlideNum": "Numéro de diapositive",
- "PE.Views.HeaderFooterDialog.textTitle": "Paramètres des pieds de page",
+ "PE.Views.HeaderFooterDialog.textTitle": "Paramètres du pied de page",
"PE.Views.HeaderFooterDialog.textUpdate": "Mettre à jour automatiquement",
"PE.Views.HyperlinkSettingsDialog.strDisplay": "Afficher",
- "PE.Views.HyperlinkSettingsDialog.strLinkTo": "Lien vers",
+ "PE.Views.HyperlinkSettingsDialog.strLinkTo": "Lier à",
"PE.Views.HyperlinkSettingsDialog.textDefault": "Fragment du texte sélectionné",
"PE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Entrez une légende ici",
"PE.Views.HyperlinkSettingsDialog.textEmptyLink": "Entrez un lien ici",
"PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Enterez une info-bulle ici",
"PE.Views.HyperlinkSettingsDialog.textExternalLink": "Lien externe",
- "PE.Views.HyperlinkSettingsDialog.textInternalLink": "Emplacement dans cette présentation",
+ "PE.Views.HyperlinkSettingsDialog.textInternalLink": "Diapositive dans cette présentation",
"PE.Views.HyperlinkSettingsDialog.textSlides": "Diapositives",
- "PE.Views.HyperlinkSettingsDialog.textTipText": "Texte de l'info-bulle ",
+ "PE.Views.HyperlinkSettingsDialog.textTipText": "Texte de l'info-bulle",
"PE.Views.HyperlinkSettingsDialog.textTitle": "Paramètres du lien hypertexte",
"PE.Views.HyperlinkSettingsDialog.txtEmpty": "Champ obligatoire",
"PE.Views.HyperlinkSettingsDialog.txtFirst": "Première diapositive",
@@ -1974,7 +1988,7 @@
"PE.Views.ImageSettingsAdvanced.textHorizontal": "Horizontalement",
"PE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontalement",
"PE.Views.ImageSettingsAdvanced.textKeepRatio": "Proportions constantes",
- "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Taille actuelle",
+ "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Taille réelle",
"PE.Views.ImageSettingsAdvanced.textPlacement": "Emplacement",
"PE.Views.ImageSettingsAdvanced.textPosition": "Position",
"PE.Views.ImageSettingsAdvanced.textRotation": "Rotation",
@@ -2028,7 +2042,7 @@
"PE.Views.ParagraphSettingsAdvanced.textAlign": "Alignement",
"PE.Views.ParagraphSettingsAdvanced.textAuto": "Multiple ",
"PE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espacement des caractères",
- "PE.Views.ParagraphSettingsAdvanced.textDefault": "Par défaut",
+ "PE.Views.ParagraphSettingsAdvanced.textDefault": "Onglet par défaut",
"PE.Views.ParagraphSettingsAdvanced.textEffects": "Effets",
"PE.Views.ParagraphSettingsAdvanced.textExact": "Exactement",
"PE.Views.ParagraphSettingsAdvanced.textFirstLine": "Première ligne",
@@ -2040,7 +2054,7 @@
"PE.Views.ParagraphSettingsAdvanced.textSet": "Spécifier",
"PE.Views.ParagraphSettingsAdvanced.textTabCenter": "Au centre",
"PE.Views.ParagraphSettingsAdvanced.textTabLeft": "À gauche",
- "PE.Views.ParagraphSettingsAdvanced.textTabPosition": "Position",
+ "PE.Views.ParagraphSettingsAdvanced.textTabPosition": "Position de l'onglet",
"PE.Views.ParagraphSettingsAdvanced.textTabRight": "A droite",
"PE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraphe - Paramètres avancés",
"PE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto",
@@ -2125,17 +2139,17 @@
"PE.Views.ShapeSettingsAdvanced.textCenter": "Au centre",
"PE.Views.ShapeSettingsAdvanced.textColNumber": "Nombre de colonnes",
"PE.Views.ShapeSettingsAdvanced.textEndSize": "Taille de fin",
- "PE.Views.ShapeSettingsAdvanced.textEndStyle": "Style de fin",
+ "PE.Views.ShapeSettingsAdvanced.textEndStyle": "Style final",
"PE.Views.ShapeSettingsAdvanced.textFlat": "Plat",
"PE.Views.ShapeSettingsAdvanced.textFlipped": "Retourné",
"PE.Views.ShapeSettingsAdvanced.textFrom": "De",
"PE.Views.ShapeSettingsAdvanced.textHeight": "Hauteur",
"PE.Views.ShapeSettingsAdvanced.textHorizontal": "Horizontalement",
"PE.Views.ShapeSettingsAdvanced.textHorizontally": "Horizontalement",
- "PE.Views.ShapeSettingsAdvanced.textJoinType": "Type de jointure",
+ "PE.Views.ShapeSettingsAdvanced.textJoinType": "Type de connexion",
"PE.Views.ShapeSettingsAdvanced.textKeepRatio": "Proportions constantes",
"PE.Views.ShapeSettingsAdvanced.textLeft": "À gauche",
- "PE.Views.ShapeSettingsAdvanced.textLineStyle": "Style de ligne",
+ "PE.Views.ShapeSettingsAdvanced.textLineStyle": "Style de la ligne",
"PE.Views.ShapeSettingsAdvanced.textMiter": "Onglet",
"PE.Views.ShapeSettingsAdvanced.textNofit": "Ne pas ajuster automatiquement",
"PE.Views.ShapeSettingsAdvanced.textPlacement": "Emplacement",
@@ -2219,8 +2233,8 @@
"PE.Views.SlideSizeSettings.strPortrait": "Portrait",
"PE.Views.SlideSizeSettings.textHeight": "Hauteur",
"PE.Views.SlideSizeSettings.textSlideOrientation": "Orientation des diapositives",
- "PE.Views.SlideSizeSettings.textSlideSize": "Taille de la diapositive",
- "PE.Views.SlideSizeSettings.textTitle": "Paramètres de taille",
+ "PE.Views.SlideSizeSettings.textSlideSize": "Taille des diapositives",
+ "PE.Views.SlideSizeSettings.textTitle": "Paramètres de la taille des diapositives",
"PE.Views.SlideSizeSettings.textWidth": "Largeur",
"PE.Views.SlideSizeSettings.txt35": "Diapositives 35 mm",
"PE.Views.SlideSizeSettings.txtA3": "A3 (297x420 mm)",
@@ -2319,7 +2333,7 @@
"PE.Views.TableSettingsAdvanced.textHorizontal": "Horizontalement",
"PE.Views.TableSettingsAdvanced.textKeepRatio": "Proportions constantes",
"PE.Views.TableSettingsAdvanced.textLeft": "À gauche",
- "PE.Views.TableSettingsAdvanced.textMargins": "Marges de la cellule",
+ "PE.Views.TableSettingsAdvanced.textMargins": "Marges de cellule",
"PE.Views.TableSettingsAdvanced.textPlacement": "Emplacement",
"PE.Views.TableSettingsAdvanced.textPosition": "Position",
"PE.Views.TableSettingsAdvanced.textRight": "A droite",
@@ -2590,8 +2604,10 @@
"PE.Views.ViewTab.textFitToWidth": "Ajuster à la largeur",
"PE.Views.ViewTab.textGridlines": "Quadrillage",
"PE.Views.ViewTab.textGuides": "Repères",
- "PE.Views.ViewTab.textInterfaceTheme": "Thème d’interface",
+ "PE.Views.ViewTab.textInterfaceTheme": "Thème d'interface",
+ "PE.Views.ViewTab.textLeftMenu": "Panneau gauche",
"PE.Views.ViewTab.textNotes": "Notes",
+ "PE.Views.ViewTab.textRightMenu": "Panneau droit",
"PE.Views.ViewTab.textRulers": "Règles",
"PE.Views.ViewTab.textShowGridlines": "Montrer les lignes de grille",
"PE.Views.ViewTab.textShowGuides": "Afficher les repères",
diff --git a/apps/presentationeditor/main/locale/hy.json b/apps/presentationeditor/main/locale/hy.json
index edcaa9f9d..5b1fbdd82 100644
--- a/apps/presentationeditor/main/locale/hy.json
+++ b/apps/presentationeditor/main/locale/hy.json
@@ -250,6 +250,7 @@
"Common.define.effectData.textZoom": "Խոշորացնել",
"Common.define.gridlineData.txtCm": "սմ",
"Common.define.gridlineData.txtPt": "կտ",
+ "Common.define.smartArt.textAccentProcess": "Շեշտման ընթացք",
"Common.define.smartArt.textBalance": "Հաշվեկշիռ",
"Common.define.smartArt.textEquation": "Հավասարում",
"Common.define.smartArt.textFunnel": "Ձագարաձև",
@@ -1390,6 +1391,7 @@
"PE.Views.Animation.txtSec": "Ջ",
"PE.Views.AnimationDialog.textPreviewEffect": "Նախադիտել էֆեկտը",
"PE.Views.AnimationDialog.textTitle": "Ավելի շատ էֆեկտներ",
+ "PE.Views.ChartSettings.text3dRotation": "3D Պտտում",
"PE.Views.ChartSettings.textAdvanced": "Ցուցադրել լրացուցիչ կարգավորումները",
"PE.Views.ChartSettings.textChartType": "Փոխել գծապատկերի տեսակը",
"PE.Views.ChartSettings.textDown": "Ներքև",
@@ -1499,6 +1501,7 @@
"PE.Views.DocumentHolder.textRotate": "Պտտել",
"PE.Views.DocumentHolder.textRotate270": "Պտտել 90° ժամացույցի սլաքի հակառակ ուղղությամբ",
"PE.Views.DocumentHolder.textRotate90": "Պտտել 90° ժամացույցի սլաքի ուղղությամբ",
+ "PE.Views.DocumentHolder.textRulers": "Քանոններ",
"PE.Views.DocumentHolder.textShapeAlignBottom": "Հավասարեցնել ներքևից",
"PE.Views.DocumentHolder.textShapeAlignCenter": "Հավասարեցնել կենտրոնով",
"PE.Views.DocumentHolder.textShapeAlignLeft": "Հավասարեցնել ձախից",
diff --git a/apps/presentationeditor/main/locale/id.json b/apps/presentationeditor/main/locale/id.json
index 967f37719..32a8cc31b 100644
--- a/apps/presentationeditor/main/locale/id.json
+++ b/apps/presentationeditor/main/locale/id.json
@@ -250,6 +250,165 @@
"Common.define.effectData.textZoom": "Pembesaran",
"Common.define.gridlineData.txtCm": "cm",
"Common.define.gridlineData.txtPt": "pt",
+ "Common.define.smartArt.textAccentedPicture": "Gambar Beraksen",
+ "Common.define.smartArt.textAccentProcess": "Proses Aksen",
+ "Common.define.smartArt.textAlternatingFlow": "Alur Bolak-Balik",
+ "Common.define.smartArt.textAlternatingHexagons": "Segi Enam Bolak-Balik",
+ "Common.define.smartArt.textAlternatingPictureBlocks": "Blok Gambar Bolak-Balik",
+ "Common.define.smartArt.textAlternatingPictureCircles": "Lingkaran Gambar Bolak-Balik",
+ "Common.define.smartArt.textArchitectureLayout": "Tata Letak Arsitektur",
+ "Common.define.smartArt.textArrowRibbon": "Pita Anak Panah",
+ "Common.define.smartArt.textAscendingPictureAccentProcess": "Proses Akses Gambar Naik",
+ "Common.define.smartArt.textBalance": "Seimbang",
+ "Common.define.smartArt.textBasicBendingProcess": "Proses Meliuk Dasar",
+ "Common.define.smartArt.textBasicBlockList": "Daftar Blok Dasar",
+ "Common.define.smartArt.textBasicChevronProcess": "Proses Chevron Dasar",
+ "Common.define.smartArt.textBasicCycle": "Lingkaran Dasar",
+ "Common.define.smartArt.textBasicMatrix": "Matriks Dasar",
+ "Common.define.smartArt.textBasicPie": "Pai Dasar",
+ "Common.define.smartArt.textBasicProcess": "Proses Dasar",
+ "Common.define.smartArt.textBasicPyramid": "Piramida Dasar",
+ "Common.define.smartArt.textBasicRadial": "Radial Dasar",
+ "Common.define.smartArt.textBasicTarget": "Target Dasar",
+ "Common.define.smartArt.textBasicTimeline": "Garis Waktu Dasar",
+ "Common.define.smartArt.textBasicVenn": "Venn Dasar",
+ "Common.define.smartArt.textBendingPictureAccentList": "Daftar Akses Gambar Meliuk",
+ "Common.define.smartArt.textBendingPictureBlocks": "Blok Gambar Meliuk",
+ "Common.define.smartArt.textBendingPictureCaption": "Keterangan Gambar Meliuk",
+ "Common.define.smartArt.textBendingPictureCaptionList": "Daftar Keterangan Gambar Meliuk",
+ "Common.define.smartArt.textBendingPictureSemiTranparentText": "Teks Semi-Transparan Gambar Meliuk",
+ "Common.define.smartArt.textBlockCycle": "Lingkaran Blok",
+ "Common.define.smartArt.textBubblePictureList": "Daftar Gambar Gelembung",
+ "Common.define.smartArt.textCaptionedPictures": "Gambar Dengan Keterangan",
+ "Common.define.smartArt.textChevronAccentProcess": "Proses Aksen Chevron",
+ "Common.define.smartArt.textChevronList": "Daftar Chevron",
+ "Common.define.smartArt.textCircleAccentTimeline": "Garis Waktu Aksen Lingkaran",
+ "Common.define.smartArt.textCircleArrowProcess": "Proses Panah Lingkaran",
+ "Common.define.smartArt.textCirclePictureHierarchy": "Hierarki Gambar Lingkaran",
+ "Common.define.smartArt.textCircleProcess": "Proses Lingkaran",
+ "Common.define.smartArt.textCircleRelationship": "Hubungan Lingkaran",
+ "Common.define.smartArt.textCircularBendingProcess": "Proses Melingkar",
+ "Common.define.smartArt.textCircularPictureCallout": "Panggilan Gambar Melingkar",
+ "Common.define.smartArt.textClosedChevronProcess": "Proses Chevron Tertutup",
+ "Common.define.smartArt.textContinuousArrowProcess": "Proses Panah Berkelanjutan",
+ "Common.define.smartArt.textContinuousBlockProcess": "Proses Blok Berkelanjutan",
+ "Common.define.smartArt.textContinuousCycle": "Siklus Berkelanjutan",
+ "Common.define.smartArt.textContinuousPictureList": "Daftar Gambar Berkelanjutan",
+ "Common.define.smartArt.textConvergingArrows": "Panah Memusat",
+ "Common.define.smartArt.textConvergingRadial": "Radial Memusat",
+ "Common.define.smartArt.textConvergingText": "Teks Memusat",
+ "Common.define.smartArt.textCounterbalanceArrows": "Panah Pengimbang",
+ "Common.define.smartArt.textCycle": "Siklus",
+ "Common.define.smartArt.textCycleMatrix": "Matriks Siklus",
+ "Common.define.smartArt.textDescendingBlockList": "Daftar Blok Turun",
+ "Common.define.smartArt.textDescendingProcess": "Proses Menurun",
+ "Common.define.smartArt.textDetailedProcess": "Proses Terperinci",
+ "Common.define.smartArt.textDivergingArrows": "Panah Menyebar",
+ "Common.define.smartArt.textDivergingRadial": "Radial Menyebar",
+ "Common.define.smartArt.textEquation": "Persamaan",
+ "Common.define.smartArt.textFramedTextPicture": "Gambar Teks Terbingkai",
+ "Common.define.smartArt.textFunnel": "Corong",
+ "Common.define.smartArt.textGear": "Gerigi",
+ "Common.define.smartArt.textGridMatrix": "Matriks Kisi",
+ "Common.define.smartArt.textGroupedList": "Daftar yang Dikelompokkan",
+ "Common.define.smartArt.textHalfCircleOrganizationChart": "Bagan Organisasi Setengah Lingkaran",
+ "Common.define.smartArt.textHexagonCluster": "Kluster Segi Enam",
+ "Common.define.smartArt.textHexagonRadial": "Radial Segi Enam",
+ "Common.define.smartArt.textHierarchy": "Hierarki",
+ "Common.define.smartArt.textHierarchyList": "Daftar Hierarki",
+ "Common.define.smartArt.textHorizontalBulletList": "Daftar Poin Horizontal",
+ "Common.define.smartArt.textHorizontalHierarchy": "Hierarki Horizontal",
+ "Common.define.smartArt.textHorizontalLabeledHierarchy": "Hierarki Berlabel Horizontal",
+ "Common.define.smartArt.textHorizontalMultiLevelHierarchy": "Hierarki Multi-Level Horizontal",
+ "Common.define.smartArt.textHorizontalOrganizationChart": "Bagan Organisasi Horizontal",
+ "Common.define.smartArt.textHorizontalPictureList": "Daftar Gambar Horizontal",
+ "Common.define.smartArt.textIncreasingArrowProcess": "Proses Panah Meningkat",
+ "Common.define.smartArt.textIncreasingCircleProcess": "Proses Lingkaran Meningkat",
+ "Common.define.smartArt.textInterconnectedBlockProcess": "Proses Blok yang Saling Terhubung",
+ "Common.define.smartArt.textInterconnectedRings": "Cincin yang Saling Terhubung",
+ "Common.define.smartArt.textInvertedPyramid": "Piramida Terbalik",
+ "Common.define.smartArt.textLabeledHierarchy": "Hierarki Berlabel",
+ "Common.define.smartArt.textLinearVenn": "Venn Linear",
+ "Common.define.smartArt.textLinedList": "Daftar Bergaris",
+ "Common.define.smartArt.textList": "Daftar",
+ "Common.define.smartArt.textMatrix": "Matriks",
+ "Common.define.smartArt.textMultidirectionalCycle": "Siklus Multiarah",
+ "Common.define.smartArt.textNameAndTitleOrganizationChart": "Bagan Organisasi Nama dan Jabatan",
+ "Common.define.smartArt.textNestedTarget": "Target Bertumpuk",
+ "Common.define.smartArt.textNondirectionalCycle": "Siklus Tanpa Arah",
+ "Common.define.smartArt.textOpposingArrows": "Panah Berlawanan",
+ "Common.define.smartArt.textOpposingIdeas": "Ide Berlawanan",
+ "Common.define.smartArt.textOrganizationChart": "Bagan Organisasi",
+ "Common.define.smartArt.textOther": "Lainnya",
+ "Common.define.smartArt.textPhasedProcess": "Proses Berfase",
+ "Common.define.smartArt.textPicture": "Gambar",
+ "Common.define.smartArt.textPictureAccentBlocks": "Blok Aksen Gambar",
+ "Common.define.smartArt.textPictureAccentList": "Daftar Aksen Gambar",
+ "Common.define.smartArt.textPictureAccentProcess": "Proses Aksen Gambar",
+ "Common.define.smartArt.textPictureCaptionList": "Daftar Keterangan Gambar",
+ "Common.define.smartArt.textPictureFrame": "PictureFrame",
+ "Common.define.smartArt.textPictureGrid": "Kisi Gambar",
+ "Common.define.smartArt.textPictureLineup": "Deretan Gambar",
+ "Common.define.smartArt.textPictureOrganizationChart": "Bagan Organisasi Gambar",
+ "Common.define.smartArt.textPictureStrips": "Jalur Gambar",
+ "Common.define.smartArt.textPieProcess": "Proses Pai",
+ "Common.define.smartArt.textPlusAndMinus": "Plus dan Minus",
+ "Common.define.smartArt.textProcess": "Proses",
+ "Common.define.smartArt.textProcessArrows": "Panah Proses",
+ "Common.define.smartArt.textProcessList": "Daftar Proses",
+ "Common.define.smartArt.textPyramid": "Piramida",
+ "Common.define.smartArt.textPyramidList": "Daftar Piramida",
+ "Common.define.smartArt.textRadialCluster": "Kluster Radial",
+ "Common.define.smartArt.textRadialCycle": "Siklus Radial",
+ "Common.define.smartArt.textRadialList": "Daftar Radial",
+ "Common.define.smartArt.textRadialPictureList": "Daftar Gambar Radial",
+ "Common.define.smartArt.textRadialVenn": "Venn Radial",
+ "Common.define.smartArt.textRandomToResultProcess": "Proses Acak ke Hasil",
+ "Common.define.smartArt.textRelationship": "Hubungan",
+ "Common.define.smartArt.textRepeatingBendingProcess": "Proses Pengarahan Berulang",
+ "Common.define.smartArt.textReverseList": "Daftar Terbalik",
+ "Common.define.smartArt.textSegmentedCycle": "Siklus Bersegmen",
+ "Common.define.smartArt.textSegmentedProcess": "Proses Bersegmen",
+ "Common.define.smartArt.textSegmentedPyramid": "Piramida Bersegmen",
+ "Common.define.smartArt.textSnapshotPictureList": "Daftar Gambar Snapshot",
+ "Common.define.smartArt.textSpiralPicture": "Gambar Spiral",
+ "Common.define.smartArt.textSquareAccentList": "Daftar Aksen Persegi",
+ "Common.define.smartArt.textStackedList": "Daftar Bertumpuk",
+ "Common.define.smartArt.textStackedVenn": "Venn Bertumpuk",
+ "Common.define.smartArt.textStaggeredProcess": "Proses Pengaturan",
+ "Common.define.smartArt.textStepDownProcess": "Proses Mundur",
+ "Common.define.smartArt.textStepUpProcess": "Proses Meningkat",
+ "Common.define.smartArt.textSubStepProcess": "Proses Sub-Langkah",
+ "Common.define.smartArt.textTabbedArc": "Busur Bertab",
+ "Common.define.smartArt.textTableHierarchy": "Hierarki Tabel",
+ "Common.define.smartArt.textTableList": "Daftar Tabel",
+ "Common.define.smartArt.textTabList": "Daftar Tab",
+ "Common.define.smartArt.textTargetList": "Daftar Target",
+ "Common.define.smartArt.textTextCycle": "Siklus Teks",
+ "Common.define.smartArt.textThemePictureAccent": "Aksen Gambar Tema",
+ "Common.define.smartArt.textThemePictureAlternatingAccent": "Aksen Bolak-Balik Gambar Tema",
+ "Common.define.smartArt.textThemePictureGrid": "Kisi Gambar Tema",
+ "Common.define.smartArt.textTitledMatrix": "Matriks Berjudul",
+ "Common.define.smartArt.textTitledPictureAccentList": "Daftar Aksen Gambar Berjudul",
+ "Common.define.smartArt.textTitledPictureBlocks": "Blok Gambar Berjudul",
+ "Common.define.smartArt.textTitlePictureLineup": "Deretan Gambar Judul",
+ "Common.define.smartArt.textTrapezoidList": "Daftar Trapesium",
+ "Common.define.smartArt.textUpwardArrow": "Panah ke Atas",
+ "Common.define.smartArt.textVaryingWidthList": "Daftar dengan Lebar Bervariasi",
+ "Common.define.smartArt.textVerticalAccentList": "Daftar Aksen Vertikal",
+ "Common.define.smartArt.textVerticalArrowList": "Daftar Panah Vertikal",
+ "Common.define.smartArt.textVerticalBendingProcess": "Arah Proses Vertikal",
+ "Common.define.smartArt.textVerticalBlockList": "Daftar Blok Vertikal",
+ "Common.define.smartArt.textVerticalBoxList": "Daftar Kotak Vertikal",
+ "Common.define.smartArt.textVerticalBracketList": "Daftar Tanda Kurung Vertikal",
+ "Common.define.smartArt.textVerticalBulletList": "Daftar Poin Vertikal",
+ "Common.define.smartArt.textVerticalChevronList": "Daftar Chevron Vertikal",
+ "Common.define.smartArt.textVerticalCircleList": "Daftar Lingkaran Vertikal",
+ "Common.define.smartArt.textVerticalCurvedList": "Daftar Kurva Vertikal",
+ "Common.define.smartArt.textVerticalEquation": "Persamaan Vertikal",
+ "Common.define.smartArt.textVerticalPictureAccentList": "Daftar Aksen Gambar Vertikal",
+ "Common.define.smartArt.textVerticalPictureList": "Daftar Gambar Vertikal",
+ "Common.define.smartArt.textVerticalProcess": "Proses Vertikal",
"Common.Translation.textMoreButton": "Lainnya",
"Common.Translation.warnFileLocked": "File sedang diedit di aplikasi lain. Anda bisa melanjutkan edit dan menyimpannya sebagai salinan.",
"Common.Translation.warnFileLockedBtnEdit": "Buat salinan",
@@ -352,8 +511,8 @@
"Common.Views.Comments.mniPositionAsc": "Dari atas",
"Common.Views.Comments.mniPositionDesc": "Dari bawah",
"Common.Views.Comments.textAdd": "Tambahkan",
- "Common.Views.Comments.textAddComment": "Tambahkan Komentar",
- "Common.Views.Comments.textAddCommentToDoc": "Tambahkan Komentar untuk Dokumen",
+ "Common.Views.Comments.textAddComment": "Tambahkan komentar",
+ "Common.Views.Comments.textAddCommentToDoc": "Tambahkan komentar untuk dokumen",
"Common.Views.Comments.textAddReply": "Tambahkan Balasan",
"Common.Views.Comments.textAll": "Semua",
"Common.Views.Comments.textAnonym": "Tamu",
@@ -423,10 +582,10 @@
"Common.Views.ImageFromUrlDialog.txtEmpty": "Kolom ini harus diisi",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Bagian ini harus berupa URL dengn format \"http://www.contoh.com\"",
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Anda harus menentukan baris dan jumlah kolom yang benar.",
- "Common.Views.InsertTableDialog.txtColumns": "Jumlah Kolom",
+ "Common.Views.InsertTableDialog.txtColumns": "Jumlah kolom",
"Common.Views.InsertTableDialog.txtMaxText": "Input maksimal untuk kolom ini adalah {0}.",
"Common.Views.InsertTableDialog.txtMinText": "Input minimal untuk kolom ini adalah {0}.",
- "Common.Views.InsertTableDialog.txtRows": "Jumlah Baris",
+ "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",
@@ -510,7 +669,7 @@
"Common.Views.ReviewChanges.txtChat": "Chat",
"Common.Views.ReviewChanges.txtClose": "Tutup",
"Common.Views.ReviewChanges.txtCoAuthMode": "Mode Edit Bersama",
- "Common.Views.ReviewChanges.txtCommentRemAll": "Hilangkan Semua Komentar",
+ "Common.Views.ReviewChanges.txtCommentRemAll": "Hilangkan semua komentar",
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Hilangkan Komentar Saat Ini",
"Common.Views.ReviewChanges.txtCommentRemMy": "Hilangkan Komentar Saya",
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Hilangkan Komentar Saya Saat Ini",
@@ -518,12 +677,12 @@
"Common.Views.ReviewChanges.txtCommentResolve": "Selesaikan",
"Common.Views.ReviewChanges.txtCommentResolveAll": "Selesaikan Semua Komentar",
"Common.Views.ReviewChanges.txtCommentResolveCurrent": "Selesaikan Komentar Saat Ini",
- "Common.Views.ReviewChanges.txtCommentResolveMy": "Selesaikan Komentar Saya",
+ "Common.Views.ReviewChanges.txtCommentResolveMy": "Selesaikan komentar saya",
"Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Selesaikan Komentar Saya Saat Ini",
"Common.Views.ReviewChanges.txtDocLang": "Bahasa",
"Common.Views.ReviewChanges.txtFinal": "Semua perubahan diterima (Preview)",
"Common.Views.ReviewChanges.txtFinalCap": "Final",
- "Common.Views.ReviewChanges.txtHistory": "Riwayat Versi",
+ "Common.Views.ReviewChanges.txtHistory": "Riwayat versi",
"Common.Views.ReviewChanges.txtMarkup": "Semua perubahan (Editing)",
"Common.Views.ReviewChanges.txtMarkupCap": "Markup",
"Common.Views.ReviewChanges.txtNext": "Selanjutnya",
@@ -638,6 +797,7 @@
"PE.Controllers.LeftMenu.txtUntitled": "Tanpa Judul",
"PE.Controllers.Main.applyChangesTextText": "Memuat data...",
"PE.Controllers.Main.applyChangesTitleText": "Memuat Data",
+ "PE.Controllers.Main.confirmMaxChangesSize": "Ukuran tindakan melebihi batas yang ditetapkan untuk server Anda. Tekan \"Batalkan\" untuk membatalkan tindakan terakhir Anda atau tekan \"Lanjutkan\" untuk menyimpan tindakan secara lokal (Anda perlu mengunduh file atau menyalin isinya untuk memastikan tidak ada yang hilang).",
"PE.Controllers.Main.convertationTimeoutText": "Waktu konversi habis.",
"PE.Controllers.Main.criticalErrorExtText": "Tekan \"OK\" untuk kembali ke daftar dokumen.",
"PE.Controllers.Main.criticalErrorTitle": "Kesalahan",
@@ -715,6 +875,7 @@
"PE.Controllers.Main.textClose": "Tutup",
"PE.Controllers.Main.textCloseTip": "Klik untuk menutup tips",
"PE.Controllers.Main.textContactUs": "Hubungi sales",
+ "PE.Controllers.Main.textContinue": "Lanjutkan",
"PE.Controllers.Main.textConvertEquation": "Persamaan ini dibuat dengan editor persamaan versi lama yang sudah tidak didukung. Untuk edit, konversikan persamaan ke format Office Math ML. Konversi sekarang?",
"PE.Controllers.Main.textCustomLoader": "Perlu diketahui bahwa berdasarkan syarat dari lisensi, Anda tidak bisa untuk mengganti loader. Silakan hubungi Departemen Penjualan kami untuk mendapatkan harga.",
"PE.Controllers.Main.textDisconnect": "Koneksi terputus",
@@ -735,6 +896,7 @@
"PE.Controllers.Main.textStrict": "Mode strict",
"PE.Controllers.Main.textTryUndoRedo": "Fungsi Undo/Redo dinonaktifkan untuk mode Co-editing Cepat. Klik tombol 'Mode strict' untuk mengganti ke Mode Strict Co-editing untuk edit file tanpa gangguan dari user lain dan kirim perubahan Anda hanya setelah Anda menyimpannya. Anda bisa mengganti mode co-editing menggunakan editor di pengaturan lanjut.",
"PE.Controllers.Main.textTryUndoRedoWarn": "Fungsi Undo/Redo dinonaktifkan untuk mode Co-editing Cepat.",
+ "PE.Controllers.Main.textUndo": "Batalkan",
"PE.Controllers.Main.titleLicenseExp": "Lisensi kadaluwarsa",
"PE.Controllers.Main.titleServerVersion": "Editor mengupdate",
"PE.Controllers.Main.txtAddFirstSlide": "Klik untuk tambah slide pertama",
@@ -922,7 +1084,7 @@
"PE.Controllers.Main.txtShape_stripedRightArrow": "Panah Putus-Putus Kanan",
"PE.Controllers.Main.txtShape_sun": "Matahari",
"PE.Controllers.Main.txtShape_teardrop": "Teardrop",
- "PE.Controllers.Main.txtShape_textRect": "Kotak Teks",
+ "PE.Controllers.Main.txtShape_textRect": "Kotak teks",
"PE.Controllers.Main.txtShape_trapezoid": "Trapezoid",
"PE.Controllers.Main.txtShape_triangle": "Segitiga",
"PE.Controllers.Main.txtShape_upArrow": "Panah keatas",
@@ -970,7 +1132,7 @@
"PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Judul dan Teks Vertikal",
"PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Judul Vertikal dan Teks di Atas Grafik",
"PE.Controllers.Main.txtSldLtTVertTx": "Teks Vertikal",
- "PE.Controllers.Main.txtSlideNumber": "Nomor Slide",
+ "PE.Controllers.Main.txtSlideNumber": "Nomor slide",
"PE.Controllers.Main.txtSlideSubtitle": "Subtitle Slide",
"PE.Controllers.Main.txtSlideText": "Teks Slide",
"PE.Controllers.Main.txtSlideTitle": "Judul Slide",
@@ -1430,19 +1592,24 @@
"PE.Views.DateTimeDialog.textUpdate": "Update secara otomatis",
"PE.Views.DateTimeDialog.txtTitle": "Tanggal & Jam",
"PE.Views.DocumentHolder.aboveText": "Di atas",
- "PE.Views.DocumentHolder.addCommentText": "Tambahkan Komentar",
+ "PE.Views.DocumentHolder.addCommentText": "Tambahkan komentar",
"PE.Views.DocumentHolder.addToLayoutText": "Tambah ke Layout",
"PE.Views.DocumentHolder.advancedChartText": "Pengaturan Lanjutan Bagan",
+ "PE.Views.DocumentHolder.advancedEquationText": "Pengaturan Persamaan",
"PE.Views.DocumentHolder.advancedImageText": "Pengaturan Lanjut untuk Gambar",
"PE.Views.DocumentHolder.advancedParagraphText": "Pengaturan Lanjut untuk Paragraf",
"PE.Views.DocumentHolder.advancedShapeText": "Pengaturan Lanjut untuk Bentuk",
"PE.Views.DocumentHolder.advancedTableText": "Pengaturan Lanjut untuk Tabel",
"PE.Views.DocumentHolder.alignmentText": "Perataan",
+ "PE.Views.DocumentHolder.allLinearText": "Semua - Linear",
+ "PE.Views.DocumentHolder.allProfText": "Semua - Profesional",
"PE.Views.DocumentHolder.belowText": "Di bawah",
"PE.Views.DocumentHolder.cellAlignText": "Sel Rata Atas",
"PE.Views.DocumentHolder.cellText": "Sel",
"PE.Views.DocumentHolder.centerText": "Tengah",
"PE.Views.DocumentHolder.columnText": "Kolom",
+ "PE.Views.DocumentHolder.currLinearText": "Saat Ini - Linear",
+ "PE.Views.DocumentHolder.currProfText": "Saat Ini - Profesional",
"PE.Views.DocumentHolder.deleteColumnText": "Hapus Kolom",
"PE.Views.DocumentHolder.deleteRowText": "Hapus Baris",
"PE.Views.DocumentHolder.deleteTableText": "Hapus Tabel",
@@ -1464,6 +1631,7 @@
"PE.Views.DocumentHolder.insertRowText": "Sisipkan Baris",
"PE.Views.DocumentHolder.insertText": "Sisipkan",
"PE.Views.DocumentHolder.langText": "Pilih Bahasa",
+ "PE.Views.DocumentHolder.latexText": "LaTex",
"PE.Views.DocumentHolder.leftText": "Kiri",
"PE.Views.DocumentHolder.loadSpellText": "Memuat varian...",
"PE.Views.DocumentHolder.mergeCellsText": "Gabungkan Sel",
@@ -1512,6 +1680,7 @@
"PE.Views.DocumentHolder.textRotate270": "Rotasi 90° Berlawanan Jarum Jam",
"PE.Views.DocumentHolder.textRotate90": "Rotasi 90° Searah Jarum Jam",
"PE.Views.DocumentHolder.textRulers": "Penggaris",
+ "PE.Views.DocumentHolder.textSaveAsPicture": "Simpan sebagai gambar",
"PE.Views.DocumentHolder.textShapeAlignBottom": "Rata Bawah",
"PE.Views.DocumentHolder.textShapeAlignCenter": "Rata Tengah",
"PE.Views.DocumentHolder.textShapeAlignLeft": "Rata Kiri",
@@ -1623,6 +1792,7 @@
"PE.Views.DocumentHolder.txtUnderbar": "Bar di bawah teks",
"PE.Views.DocumentHolder.txtUngroup": "Pisahkan dari grup",
"PE.Views.DocumentHolder.txtWarnUrl": "Klik link ini bisa berbahaya untuk perangkat dan data Anda. Apakah Anda ingin tetap lanjut?",
+ "PE.Views.DocumentHolder.unicodeText": "Unicode",
"PE.Views.DocumentHolder.vertAlignText": "Perataan Vertikal",
"PE.Views.DocumentPreview.goToSlideText": "Pergi ke Slide",
"PE.Views.DocumentPreview.slideIndexText": "Slide {0} dari {1}",
@@ -1645,7 +1815,7 @@
"PE.Views.FileMenu.btnExitCaption": "Tutup",
"PE.Views.FileMenu.btnFileOpenCaption": "Buka",
"PE.Views.FileMenu.btnHelpCaption": "Bantuan",
- "PE.Views.FileMenu.btnHistoryCaption": "Riwayat Versi",
+ "PE.Views.FileMenu.btnHistoryCaption": "Riwayat versi",
"PE.Views.FileMenu.btnInfoCaption": "Info Presentasi",
"PE.Views.FileMenu.btnPrintCaption": "Cetak",
"PE.Views.FileMenu.btnProtectCaption": "Proteksi",
@@ -1674,13 +1844,14 @@
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokasi",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Orang yang memiliki hak",
"PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subyek",
+ "PE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tag",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Judul",
"PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Diunggah",
"PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Ubah hak akses",
"PE.Views.FileMenuPanels.DocumentRights.txtRights": "Orang yang memiliki hak",
"PE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Peringatan",
"PE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Dengan password",
- "PE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteksi Presentasi",
+ "PE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteksi presentasi",
"PE.Views.FileMenuPanels.ProtectDoc.strSignature": "Dengan tanda tangan",
"PE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Edit presentasi",
"PE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Perubahan akan menghilangkan tanda tangan dari presentasi. Lanjutkan?",
@@ -1754,7 +1925,7 @@
"PE.Views.HeaderFooterDialog.textLang": "Bahasa",
"PE.Views.HeaderFooterDialog.textNotTitle": "Jangan tampilkan di judul slide",
"PE.Views.HeaderFooterDialog.textPreview": "Pratinjau",
- "PE.Views.HeaderFooterDialog.textSlideNum": "Nomor Slide",
+ "PE.Views.HeaderFooterDialog.textSlideNum": "Nomor slide",
"PE.Views.HeaderFooterDialog.textTitle": "Pengaturan Footer",
"PE.Views.HeaderFooterDialog.textUpdate": "Update secara otomatis",
"PE.Views.HyperlinkSettingsDialog.strDisplay": "Tampilan",
@@ -2213,13 +2384,14 @@
"PE.Views.TextArtSettings.txtNoBorders": "Tidak ada Garis",
"PE.Views.TextArtSettings.txtPapyrus": "Papirus",
"PE.Views.TextArtSettings.txtWood": "Kayu",
- "PE.Views.Toolbar.capAddSlide": "Tambahkan Slide",
- "PE.Views.Toolbar.capBtnAddComment": "Tambahkan Komentar",
+ "PE.Views.Toolbar.capAddSlide": "Tambahkan slide",
+ "PE.Views.Toolbar.capBtnAddComment": "Tambahkan komentar",
"PE.Views.Toolbar.capBtnComment": "Komentar",
"PE.Views.Toolbar.capBtnDateTime": "Tanggal & Jam",
"PE.Views.Toolbar.capBtnInsHeader": "Footer",
+ "PE.Views.Toolbar.capBtnInsSmartArt": "SmartArt",
"PE.Views.Toolbar.capBtnInsSymbol": "Simbol",
- "PE.Views.Toolbar.capBtnSlideNum": "Nomor Slide",
+ "PE.Views.Toolbar.capBtnSlideNum": "Nomor slide",
"PE.Views.Toolbar.capInsertAudio": "Audio",
"PE.Views.Toolbar.capInsertChart": "Grafik",
"PE.Views.Toolbar.capInsertEquation": "Persamaan",
@@ -2227,7 +2399,7 @@
"PE.Views.Toolbar.capInsertImage": "Gambar",
"PE.Views.Toolbar.capInsertShape": "Bentuk",
"PE.Views.Toolbar.capInsertTable": "Tabel",
- "PE.Views.Toolbar.capInsertText": "Kotak Teks",
+ "PE.Views.Toolbar.capInsertText": "Kotak teks",
"PE.Views.Toolbar.capInsertTextArt": "Text Art",
"PE.Views.Toolbar.capInsertVideo": "Video",
"PE.Views.Toolbar.capTabFile": "File",
@@ -2318,6 +2490,7 @@
"PE.Views.Toolbar.tipInsertHyperlink": "Tambahkan hyperlink",
"PE.Views.Toolbar.tipInsertImage": "Sisipkan Gambar",
"PE.Views.Toolbar.tipInsertShape": "Sisipkan Bentuk Otomatis",
+ "PE.Views.Toolbar.tipInsertSmartArt": "Sisipkan SmartArt",
"PE.Views.Toolbar.tipInsertSymbol": "Sisipkan simbol",
"PE.Views.Toolbar.tipInsertTable": "Sisipkan Tabel",
"PE.Views.Toolbar.tipInsertText": "Sisipkan Teks",
@@ -2427,7 +2600,9 @@
"PE.Views.ViewTab.textGridlines": "Garis Kisi",
"PE.Views.ViewTab.textGuides": "Pemandu",
"PE.Views.ViewTab.textInterfaceTheme": "Tema interface",
+ "PE.Views.ViewTab.textLeftMenu": "Panel kiri",
"PE.Views.ViewTab.textNotes": "Catatan",
+ "PE.Views.ViewTab.textRightMenu": "Panel kanan",
"PE.Views.ViewTab.textRulers": "Penggaris",
"PE.Views.ViewTab.textShowGridlines": "Tampilkan Garis Kisi",
"PE.Views.ViewTab.textShowGuides": "Tampilkan Pemandu",
diff --git a/apps/presentationeditor/main/locale/it.json b/apps/presentationeditor/main/locale/it.json
index febb5aea6..ffab6a9ec 100644
--- a/apps/presentationeditor/main/locale/it.json
+++ b/apps/presentationeditor/main/locale/it.json
@@ -168,6 +168,7 @@
"Common.define.effectData.textParallelogram": "Parallelogramma",
"Common.define.effectData.textPath": "Percorsi di movimento",
"Common.define.effectData.textPathCurve": "Curva",
+ "Common.define.effectData.textPathLine": "Linea",
"Common.define.effectData.textPathScribble": "Bozza",
"Common.define.effectData.textPeanut": "Arachidi",
"Common.define.effectData.textPeekIn": "Sbirciare dentro",
@@ -247,6 +248,13 @@
"Common.define.effectData.textWipe": "Apparizione",
"Common.define.effectData.textZigzag": "Zigzag",
"Common.define.effectData.textZoom": "Zoom",
+ "Common.define.gridlineData.txtCm": "cm",
+ "Common.define.gridlineData.txtPt": "pt",
+ "Common.define.smartArt.textBalance": "Equilibri",
+ "Common.define.smartArt.textEquation": "Equazione",
+ "Common.define.smartArt.textFunnel": "Imbuto",
+ "Common.define.smartArt.textOther": "Altro",
+ "Common.define.smartArt.textPicture": "Immagine",
"Common.Translation.textMoreButton": "più",
"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",
@@ -377,6 +385,8 @@
"Common.Views.DocumentAccessDialog.textLoading": "Caricamento in corso...",
"Common.Views.DocumentAccessDialog.textTitle": "Impostazioni di condivisione",
"Common.Views.ExternalDiagramEditor.textTitle": "Editor di grafici",
+ "Common.Views.ExternalEditor.textClose": "Chiudi",
+ "Common.Views.ExternalEditor.textSave": "Salva ed esci",
"Common.Views.ExternalOleEditor.textTitle": "Editor di fogli di calcolo",
"Common.Views.Header.labelCoUsersDescr": "Utenti che stanno modificando il file:",
"Common.Views.Header.textAddFavorite": "Segna come preferito",
@@ -426,10 +436,14 @@
"Common.Views.InsertTableDialog.txtTitleSplit": "Dividi cella",
"Common.Views.LanguageDialog.labelSelect": "Seleziona la lingua del documento",
"Common.Views.ListSettingsDialog.textBulleted": "Elenco puntato",
+ "Common.Views.ListSettingsDialog.textFromFile": "Da file",
+ "Common.Views.ListSettingsDialog.textFromStorage": "Da spazio di archiviazione",
+ "Common.Views.ListSettingsDialog.textFromUrl": "Da URL",
"Common.Views.ListSettingsDialog.textNumbering": "Numerato",
"Common.Views.ListSettingsDialog.tipChange": "Modifica elenco puntato",
"Common.Views.ListSettingsDialog.txtBullet": "Elenco puntato",
"Common.Views.ListSettingsDialog.txtColor": "Colore",
+ "Common.Views.ListSettingsDialog.txtImage": "Immagine",
"Common.Views.ListSettingsDialog.txtImport": "Importa",
"Common.Views.ListSettingsDialog.txtNewBullet": "Nuovo elenco puntato",
"Common.Views.ListSettingsDialog.txtNone": "Nessuno",
@@ -461,6 +475,7 @@
"Common.Views.Plugins.textStart": "Avvio",
"Common.Views.Plugins.textStop": "Termina",
"Common.Views.Protection.hintAddPwd": "Crittografa con password",
+ "Common.Views.Protection.hintDelPwd": "Elimina password",
"Common.Views.Protection.hintPwd": "Modifica o rimuovi password",
"Common.Views.Protection.hintSignature": "Aggiungi firma digitale o riga di firma",
"Common.Views.Protection.txtAddPwd": "Aggiungi password",
@@ -525,7 +540,7 @@
"Common.Views.ReviewChanges.txtSharing": "Condivisione",
"Common.Views.ReviewChanges.txtSpelling": "Controllo ortografia",
"Common.Views.ReviewChanges.txtTurnon": "Traccia cambiamenti",
- "Common.Views.ReviewChanges.txtView": "Modalità Visualizzazione",
+ "Common.Views.ReviewChanges.txtView": "Modalità visualizzazione",
"Common.Views.ReviewPopover.textAdd": "Aggiungi",
"Common.Views.ReviewPopover.textAddReply": "Aggiungi risposta",
"Common.Views.ReviewPopover.textCancel": "Annulla",
@@ -638,6 +653,7 @@
"PE.Controllers.Main.errorDataEncrypted": "Le modifiche crittografate sono state ricevute, non possono essere decifrate.",
"PE.Controllers.Main.errorDataRange": "Intervallo di dati non corretto.",
"PE.Controllers.Main.errorDefaultMessage": "Codice errore: %1",
+ "PE.Controllers.Main.errorDirectUrl": "Si prega di verificare il link al documento. Questo collegamento deve essere un collegamento diretto al file da scaricare.",
"PE.Controllers.Main.errorEditingDownloadas": "Si è verificato un errore durante il lavoro con il documento. Utilizza l'opzione 'Scaricare come' per salvare la copia di backup del file sul disco rigido del computer.",
"PE.Controllers.Main.errorEditingSaveas": "Si è verificato un errore durante il lavoro con il documento. Utilizza l'opzione 'Salvare come ...' per salvare la copia di backup del file sul disco rigido del computer.",
"PE.Controllers.Main.errorEmailClient": "Non è stato trovato nessun client di posta elettronica.",
@@ -699,6 +715,7 @@
"PE.Controllers.Main.textClose": "Chiudi",
"PE.Controllers.Main.textCloseTip": "Fai clic per chiudere il consiglio",
"PE.Controllers.Main.textContactUs": "Contatta il reparto vendite.",
+ "PE.Controllers.Main.textContinue": "Continua",
"PE.Controllers.Main.textConvertEquation": "Questa equazione è stata creata in una vecchia versione dell'editor di equazioni che non è più supportata. Per modificarla, devi convertire l'equazione nel formato ML di Office Math. Convertire ora?",
"PE.Controllers.Main.textCustomLoader": "Si prega di notare che, in base ai termini della licenza, non si ha il diritto di modificare il caricatore. Si prega di contattare il nostro reparto vendite per ottenere un preventivo.",
"PE.Controllers.Main.textDisconnect": "Connessione persa",
@@ -719,6 +736,7 @@
"PE.Controllers.Main.textStrict": "Modalità Rigorosa",
"PE.Controllers.Main.textTryUndoRedo": "Le funzioni Annulla/Ripristina sono disabilitate per la Modalità di Co-editing Veloce. Clicca il pulsante 'Modalità Rigorosa' per passare alla Modalità di Co-editing Rigorosa per poter modificare il file senza l'interferenza di altri utenti e inviare le modifiche solamente dopo averle salvate. Puoi passare da una modalità all'altra di co-editing utilizzando le Impostazioni avanzate dell'editor.",
"PE.Controllers.Main.textTryUndoRedoWarn": "Le funzioni Annulla/Ripeti sono disattivate nella modalità rapida in modifica collaborativa.",
+ "PE.Controllers.Main.textUndo": "Annulla",
"PE.Controllers.Main.titleLicenseExp": "La licenza è scaduta",
"PE.Controllers.Main.titleServerVersion": "L'editor è stato aggiornato",
"PE.Controllers.Main.txtAddFirstSlide": "Fare clic per aggiungere la prima diapositiva",
@@ -954,7 +972,7 @@
"PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Titolo e testo verticali",
"PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Titolo e Testo verticali su grafico",
"PE.Controllers.Main.txtSldLtTVertTx": "Testo verticale",
- "PE.Controllers.Main.txtSlideNumber": "Numero Diapositiva",
+ "PE.Controllers.Main.txtSlideNumber": "Numero diapositiva",
"PE.Controllers.Main.txtSlideSubtitle": "Sottotitolo diapositiva",
"PE.Controllers.Main.txtSlideText": "Testo diapositiva",
"PE.Controllers.Main.txtSlideTitle": "Titolo diapositiva",
@@ -1370,11 +1388,15 @@
"PE.Views.AnimationDialog.textTitle": "Altri effetti",
"PE.Views.ChartSettings.textAdvanced": "Mostra impostazioni avanzate",
"PE.Views.ChartSettings.textChartType": "Cambia tipo di grafico",
+ "PE.Views.ChartSettings.textDown": "Giù",
"PE.Views.ChartSettings.textEditData": "Modifica dati",
"PE.Views.ChartSettings.textHeight": "Altezza",
"PE.Views.ChartSettings.textKeepRatio": "Proporzioni costanti",
+ "PE.Views.ChartSettings.textLeft": "A sinistra",
+ "PE.Views.ChartSettings.textRight": "A destra",
"PE.Views.ChartSettings.textSize": "Dimensione",
"PE.Views.ChartSettings.textStyle": "Stile",
+ "PE.Views.ChartSettings.textUp": "Verso l'alto",
"PE.Views.ChartSettings.textWidth": "Larghezza",
"PE.Views.ChartSettingsAdvanced.textAlt": "Testo alternativo",
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Descrizione",
@@ -1401,6 +1423,7 @@
"PE.Views.DocumentHolder.aboveText": "Al di sopra",
"PE.Views.DocumentHolder.addCommentText": "Aggiungi commento",
"PE.Views.DocumentHolder.addToLayoutText": "Aggiungi al layout",
+ "PE.Views.DocumentHolder.advancedChartText": "Impostazioni grafico avanzate",
"PE.Views.DocumentHolder.advancedImageText": "Impostazioni avanzate dell'immagine",
"PE.Views.DocumentHolder.advancedParagraphText": "Impostazioni avanzate del paragrafo",
"PE.Views.DocumentHolder.advancedShapeText": "Impostazioni avanzate forma",
@@ -1451,10 +1474,12 @@
"PE.Views.DocumentHolder.textArrangeBackward": "Porta indietro",
"PE.Views.DocumentHolder.textArrangeForward": "Porta avanti",
"PE.Views.DocumentHolder.textArrangeFront": "Porta in primo piano",
+ "PE.Views.DocumentHolder.textCm": "cm",
"PE.Views.DocumentHolder.textCopy": "Copia",
"PE.Views.DocumentHolder.textCrop": "Ritaglia",
"PE.Views.DocumentHolder.textCropFill": "Riempimento",
"PE.Views.DocumentHolder.textCropFit": "Adatta",
+ "PE.Views.DocumentHolder.textCustom": "Personalizzato",
"PE.Views.DocumentHolder.textCut": "Taglia",
"PE.Views.DocumentHolder.textDistributeCols": "Distribuisci colonne",
"PE.Views.DocumentHolder.textDistributeRows": "Distribuisci righe",
@@ -1471,6 +1496,7 @@
"PE.Views.DocumentHolder.textRotate": "Ruota",
"PE.Views.DocumentHolder.textRotate270": "Ruota 90° a sinistra",
"PE.Views.DocumentHolder.textRotate90": "Ruota 90° a destra",
+ "PE.Views.DocumentHolder.textRulers": "Righelli",
"PE.Views.DocumentHolder.textShapeAlignBottom": "Allinea in basso",
"PE.Views.DocumentHolder.textShapeAlignCenter": "Allinea al centro",
"PE.Views.DocumentHolder.textShapeAlignLeft": "Allinea a sinistra",
@@ -1628,6 +1654,7 @@
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Percorso",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persone con diritti",
"PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Oggetto",
+ "PE.Views.FileMenuPanels.DocumentInfo.txtTags": "Etichette",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titolo presentazione",
"PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Caricato",
"PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Modifica diritti di accesso",
@@ -1693,6 +1720,9 @@
"PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Disabilita tutte le macro con notifica",
"PE.Views.FileMenuPanels.Settings.txtWin": "come Windows",
"PE.Views.FileMenuPanels.Settings.txtWorkspace": "Spazio di lavoro",
+ "PE.Views.GridSettings.textCm": "cm",
+ "PE.Views.GridSettings.textCustom": "Personalizzato",
+ "PE.Views.GridSettings.textSpacing": "Spaziatura",
"PE.Views.HeaderFooterDialog.applyAllText": "Applica a tutti",
"PE.Views.HeaderFooterDialog.applyText": "Applica",
"PE.Views.HeaderFooterDialog.diffLanguage": "Non è possibile utilizzare un formato data in una lingua diversa da quella della diapositiva. Per cambiare il master, fare clic su \"Applica a tutto\" anziché \"Applica\"",
@@ -1704,7 +1734,7 @@
"PE.Views.HeaderFooterDialog.textLang": "Lingua",
"PE.Views.HeaderFooterDialog.textNotTitle": "Non mostrare sul titolo della diapositiva",
"PE.Views.HeaderFooterDialog.textPreview": "Anteprima",
- "PE.Views.HeaderFooterDialog.textSlideNum": "Numero Diapositiva",
+ "PE.Views.HeaderFooterDialog.textSlideNum": "Numero diapositiva",
"PE.Views.HeaderFooterDialog.textTitle": "Impostazioni piè di pagina",
"PE.Views.HeaderFooterDialog.textUpdate": "Aggiorna automaticamente",
"PE.Views.HyperlinkSettingsDialog.strDisplay": "Visualizza",
@@ -1959,7 +1989,7 @@
"PE.Views.SignatureSettings.txtSignedInvalid": "Alcune delle firme digitali nella presentazione non sono valide o non possono essere verificate. La presentazione è protetta dalla modifica.",
"PE.Views.SlideSettings.strBackground": "Colore sfondo",
"PE.Views.SlideSettings.strColor": "Colore",
- "PE.Views.SlideSettings.strDateTime": "Visualizza Data e Ora",
+ "PE.Views.SlideSettings.strDateTime": "Visualizza data e ora",
"PE.Views.SlideSettings.strFill": "Sfondo",
"PE.Views.SlideSettings.strForeground": "Colore primo piano",
"PE.Views.SlideSettings.strPattern": "Modello",
@@ -2080,6 +2110,10 @@
"PE.Views.TableSettings.tipOuter": "Imposta solo il bordo esterno",
"PE.Views.TableSettings.tipRight": "Imposta solo bordo esterno destro",
"PE.Views.TableSettings.tipTop": "Imposta solo bordo esterno superiore",
+ "PE.Views.TableSettings.txtGroupTable_Custom": "Personalizzato",
+ "PE.Views.TableSettings.txtGroupTable_Dark": "Scuro",
+ "PE.Views.TableSettings.txtGroupTable_Light": "Chiaro",
+ "PE.Views.TableSettings.txtGroupTable_Medium": "Medio",
"PE.Views.TableSettings.txtNoBorders": "Nessun bordo",
"PE.Views.TableSettings.txtTable_Accent": "Accento",
"PE.Views.TableSettings.txtTable_DarkStyle": "Stile Scuro",
@@ -2163,8 +2197,9 @@
"PE.Views.Toolbar.capBtnComment": "Commento",
"PE.Views.Toolbar.capBtnDateTime": "Data e ora",
"PE.Views.Toolbar.capBtnInsHeader": "Piè di pagina",
+ "PE.Views.Toolbar.capBtnInsSmartArt": "SmartArt",
"PE.Views.Toolbar.capBtnInsSymbol": "Simbolo",
- "PE.Views.Toolbar.capBtnSlideNum": "Numero Diapositiva",
+ "PE.Views.Toolbar.capBtnSlideNum": "Numero diapositiva",
"PE.Views.Toolbar.capInsertAudio": "Audio",
"PE.Views.Toolbar.capInsertChart": "Grafico",
"PE.Views.Toolbar.capInsertEquation": "Equazione",
@@ -2359,6 +2394,8 @@
"PE.Views.Transitions.txtPreview": "Anteprima",
"PE.Views.Transitions.txtSec": "s",
"PE.Views.ViewTab.textAlwaysShowToolbar": "Mostra sempre barra degli strumenti ",
+ "PE.Views.ViewTab.textCm": "cm",
+ "PE.Views.ViewTab.textCustom": "Personalizzato",
"PE.Views.ViewTab.textFitToSlide": "Adatta alla diapositiva",
"PE.Views.ViewTab.textFitToWidth": "Adatta alla larghezza",
"PE.Views.ViewTab.textInterfaceTheme": "Tema dell'interfaccia",
diff --git a/apps/presentationeditor/main/locale/ja.json b/apps/presentationeditor/main/locale/ja.json
index 5e832266b..66937bfe5 100644
--- a/apps/presentationeditor/main/locale/ja.json
+++ b/apps/presentationeditor/main/locale/ja.json
@@ -1595,16 +1595,21 @@
"PE.Views.DocumentHolder.addCommentText": "コメントを追加",
"PE.Views.DocumentHolder.addToLayoutText": "レイアウトに追加する",
"PE.Views.DocumentHolder.advancedChartText": "チャートの詳細設定",
+ "PE.Views.DocumentHolder.advancedEquationText": "数式設定",
"PE.Views.DocumentHolder.advancedImageText": "画像の詳細設定",
"PE.Views.DocumentHolder.advancedParagraphText": "段落の詳細設定",
"PE.Views.DocumentHolder.advancedShapeText": "図形の詳細設定",
"PE.Views.DocumentHolder.advancedTableText": "テーブルの詳細設定",
"PE.Views.DocumentHolder.alignmentText": "配置",
+ "PE.Views.DocumentHolder.allLinearText": "すべて - 線形",
+ "PE.Views.DocumentHolder.allProfText": "すべて - プロフェッショナル",
"PE.Views.DocumentHolder.belowText": "下",
"PE.Views.DocumentHolder.cellAlignText": "セルの縦方向の配置",
"PE.Views.DocumentHolder.cellText": "セル",
"PE.Views.DocumentHolder.centerText": "中央揃え",
"PE.Views.DocumentHolder.columnText": "列",
+ "PE.Views.DocumentHolder.currLinearText": "現在 - 線形",
+ "PE.Views.DocumentHolder.currProfText": "現在 - プロフェッショナル",
"PE.Views.DocumentHolder.deleteColumnText": "列を削除",
"PE.Views.DocumentHolder.deleteRowText": "行を削除",
"PE.Views.DocumentHolder.deleteTableText": "表を削除する",
@@ -1626,6 +1631,7 @@
"PE.Views.DocumentHolder.insertRowText": "行の挿入",
"PE.Views.DocumentHolder.insertText": "挿入する",
"PE.Views.DocumentHolder.langText": "言語の選択",
+ "PE.Views.DocumentHolder.latexText": "LaTeX",
"PE.Views.DocumentHolder.leftText": "左",
"PE.Views.DocumentHolder.loadSpellText": "バリエーションの読み込み中...",
"PE.Views.DocumentHolder.mergeCellsText": "セルの結合",
@@ -1785,6 +1791,7 @@
"PE.Views.DocumentHolder.txtUnderbar": "テキストの下にバー",
"PE.Views.DocumentHolder.txtUngroup": "グループ解除",
"PE.Views.DocumentHolder.txtWarnUrl": "このリンクをクリックすると、お使いの端末やデータに悪影響を与える可能性があります。 本当に続けてよろしいですか?",
+ "PE.Views.DocumentHolder.unicodeText": "Unicode",
"PE.Views.DocumentHolder.vertAlignText": "垂直方向の配置",
"PE.Views.DocumentPreview.goToSlideText": "スライドへジャンプ",
"PE.Views.DocumentPreview.slideIndexText": "{1}のスライド{0}",
diff --git a/apps/presentationeditor/main/locale/pt-pt.json b/apps/presentationeditor/main/locale/pt-pt.json
index 453ed3826..ce13eefaf 100644
--- a/apps/presentationeditor/main/locale/pt-pt.json
+++ b/apps/presentationeditor/main/locale/pt-pt.json
@@ -1428,7 +1428,7 @@
"PE.Views.DateTimeDialog.textFormat": "Formatos",
"PE.Views.DateTimeDialog.textLang": "Idioma",
"PE.Views.DateTimeDialog.textUpdate": "Atualizar automaticamente",
- "PE.Views.DateTimeDialog.txtTitle": "Data e Hora",
+ "PE.Views.DateTimeDialog.txtTitle": "Data e hora",
"PE.Views.DocumentHolder.aboveText": "Acima",
"PE.Views.DocumentHolder.addCommentText": "Adicionar comentário",
"PE.Views.DocumentHolder.addToLayoutText": "Adicionar à disposição",
@@ -1680,7 +1680,7 @@
"PE.Views.FileMenuPanels.DocumentRights.txtRights": "Pessoas que têm direitos",
"PE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Aviso",
"PE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Com palavra-passe",
- "PE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteger a Apresentação",
+ "PE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteger a apresentação",
"PE.Views.FileMenuPanels.ProtectDoc.strSignature": "Com assinatura",
"PE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Editar apresentação",
"PE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "A edição irá remover as assinaturas da apresentação. Continuar?",
@@ -2009,7 +2009,7 @@
"PE.Views.SignatureSettings.txtSignedInvalid": "Algumas das assinaturas digitais são inválidas ou não puderam ser verificadas. Esta apresentação não pode ser editada.",
"PE.Views.SlideSettings.strBackground": "Cor de fundo",
"PE.Views.SlideSettings.strColor": "Cor",
- "PE.Views.SlideSettings.strDateTime": "Mostrar Data e Tempo",
+ "PE.Views.SlideSettings.strDateTime": "Mostrar data e tempo",
"PE.Views.SlideSettings.strFill": "Preencher",
"PE.Views.SlideSettings.strForeground": "Cor principal",
"PE.Views.SlideSettings.strPattern": "Padrão",
@@ -2216,7 +2216,7 @@
"PE.Views.Toolbar.capAddSlide": "Adicionar diapositivo",
"PE.Views.Toolbar.capBtnAddComment": "Adicionar comentário",
"PE.Views.Toolbar.capBtnComment": "Comentário",
- "PE.Views.Toolbar.capBtnDateTime": "Data e Hora",
+ "PE.Views.Toolbar.capBtnDateTime": "Data e hora",
"PE.Views.Toolbar.capBtnInsHeader": "Rodapé",
"PE.Views.Toolbar.capBtnInsSymbol": "Símbolo",
"PE.Views.Toolbar.capBtnSlideNum": "Número do diapositivo",
@@ -2280,7 +2280,7 @@
"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.textTabCollaboration": "Colaboração",
"PE.Views.Toolbar.textTabFile": "Ficheiro",
"PE.Views.Toolbar.textTabHome": "Base",
"PE.Views.Toolbar.textTabInsert": "Inserir",
diff --git a/apps/presentationeditor/main/locale/pt.json b/apps/presentationeditor/main/locale/pt.json
index 86e99be79..882fc9522 100644
--- a/apps/presentationeditor/main/locale/pt.json
+++ b/apps/presentationeditor/main/locale/pt.json
@@ -250,6 +250,165 @@
"Common.define.effectData.textZoom": "Zoom",
"Common.define.gridlineData.txtCm": "cm",
"Common.define.gridlineData.txtPt": "Pt",
+ "Common.define.smartArt.textAccentedPicture": "Imagem com Ênfase",
+ "Common.define.smartArt.textAccentProcess": "Processo em Destaque",
+ "Common.define.smartArt.textAlternatingFlow": "Fluxo alternado",
+ "Common.define.smartArt.textAlternatingHexagons": "Hexágonos alternados",
+ "Common.define.smartArt.textAlternatingPictureBlocks": "Blocos de imagem alternados",
+ "Common.define.smartArt.textAlternatingPictureCircles": "Círculos de imagens alternadas",
+ "Common.define.smartArt.textArchitectureLayout": "Layout de arquitetura",
+ "Common.define.smartArt.textArrowRibbon": "Seta em Forma de Fita",
+ "Common.define.smartArt.textAscendingPictureAccentProcess": "Processo de acentuação da imagem ascendente",
+ "Common.define.smartArt.textBalance": "Saldo",
+ "Common.define.smartArt.textBasicBendingProcess": "Processo Básico de Dobragem",
+ "Common.define.smartArt.textBasicBlockList": "Lista básica de blocos",
+ "Common.define.smartArt.textBasicChevronProcess": "Processo Básico em Divisas",
+ "Common.define.smartArt.textBasicCycle": "Ciclo Básico",
+ "Common.define.smartArt.textBasicMatrix": "Matriz Básica",
+ "Common.define.smartArt.textBasicPie": "Torta Básica",
+ "Common.define.smartArt.textBasicProcess": "Processo Básico",
+ "Common.define.smartArt.textBasicPyramid": "Pirâmide Básica",
+ "Common.define.smartArt.textBasicRadial": "Radial Básico",
+ "Common.define.smartArt.textBasicTarget": "Alvo Básico",
+ "Common.define.smartArt.textBasicTimeline": "Linha do tempo básica",
+ "Common.define.smartArt.textBasicVenn": "Venn básico",
+ "Common.define.smartArt.textBendingPictureAccentList": "Lista de Acentos de Imagem Dobrada",
+ "Common.define.smartArt.textBendingPictureBlocks": "Dobrar Blocos de Imagem",
+ "Common.define.smartArt.textBendingPictureCaption": "Dobrando a legenda da imagem",
+ "Common.define.smartArt.textBendingPictureCaptionList": "Lista de legendas de imagens dobradas",
+ "Common.define.smartArt.textBendingPictureSemiTranparentText": "Dobrando o Texto Semitransparente da Imagem",
+ "Common.define.smartArt.textBlockCycle": "Ciclo de bloco",
+ "Common.define.smartArt.textBubblePictureList": "Lista de imagens de bolhas",
+ "Common.define.smartArt.textCaptionedPictures": "Imagens legendadas",
+ "Common.define.smartArt.textChevronAccentProcess": "Processo de Ênfase em Divisas",
+ "Common.define.smartArt.textChevronList": "Lista de Divisas",
+ "Common.define.smartArt.textCircleAccentTimeline": "Linha do tempo de destaque do círculo",
+ "Common.define.smartArt.textCircleArrowProcess": "Processo de seta circular",
+ "Common.define.smartArt.textCirclePictureHierarchy": "Hierarquia de imagem do círculo",
+ "Common.define.smartArt.textCircleProcess": "Processo Círculo",
+ "Common.define.smartArt.textCircleRelationship": "Relacionamento do Círculo",
+ "Common.define.smartArt.textCircularBendingProcess": "Processo de dobra circular",
+ "Common.define.smartArt.textCircularPictureCallout": "Texto explicativo de imagem circular",
+ "Common.define.smartArt.textClosedChevronProcess": "Processo Fechado em Divisas",
+ "Common.define.smartArt.textContinuousArrowProcess": "Processo de Seta Contínua",
+ "Common.define.smartArt.textContinuousBlockProcess": "Processo de Bloco Contínuo",
+ "Common.define.smartArt.textContinuousCycle": "Ciclo Contínuo",
+ "Common.define.smartArt.textContinuousPictureList": "Lista de Imagens Contínua",
+ "Common.define.smartArt.textConvergingArrows": "Setas convergentes",
+ "Common.define.smartArt.textConvergingRadial": "Radial convergente",
+ "Common.define.smartArt.textConvergingText": "Texto convergente",
+ "Common.define.smartArt.textCounterbalanceArrows": "Setas de contrapeso",
+ "Common.define.smartArt.textCycle": "Ciclo",
+ "Common.define.smartArt.textCycleMatrix": "Matriz de Ciclo",
+ "Common.define.smartArt.textDescendingBlockList": "Lista de Bloqueios Descendentes",
+ "Common.define.smartArt.textDescendingProcess": "Processo descendente",
+ "Common.define.smartArt.textDetailedProcess": "Processo Detalhado",
+ "Common.define.smartArt.textDivergingArrows": "Flechas divergentes",
+ "Common.define.smartArt.textDivergingRadial": "Radial divergente",
+ "Common.define.smartArt.textEquation": "Equação",
+ "Common.define.smartArt.textFramedTextPicture": "Imagem de texto emoldurada",
+ "Common.define.smartArt.textFunnel": "Funil",
+ "Common.define.smartArt.textGear": "Engrenagem",
+ "Common.define.smartArt.textGridMatrix": "Matriz de grade",
+ "Common.define.smartArt.textGroupedList": "Lista Agrupada",
+ "Common.define.smartArt.textHalfCircleOrganizationChart": "Organograma de meio círculo",
+ "Common.define.smartArt.textHexagonCluster": "Conjunto Hexagonal",
+ "Common.define.smartArt.textHexagonRadial": "Radial Hexágono",
+ "Common.define.smartArt.textHierarchy": "Hierarquia",
+ "Common.define.smartArt.textHierarchyList": "Lista de hierarquia",
+ "Common.define.smartArt.textHorizontalBulletList": "Lista de marcadores horizontais",
+ "Common.define.smartArt.textHorizontalHierarchy": "Hierarquia Horizontal",
+ "Common.define.smartArt.textHorizontalLabeledHierarchy": "Hierarquia Horizontal Rotulada",
+ "Common.define.smartArt.textHorizontalMultiLevelHierarchy": "Hierarquia horizontal multinível",
+ "Common.define.smartArt.textHorizontalOrganizationChart": "Organograma Horizontal",
+ "Common.define.smartArt.textHorizontalPictureList": "Lista de imagens horizontais",
+ "Common.define.smartArt.textIncreasingArrowProcess": "Processo de seta crescente",
+ "Common.define.smartArt.textIncreasingCircleProcess": "Aumentando o Processo do Círculo",
+ "Common.define.smartArt.textInterconnectedBlockProcess": "Processo de bloco interconectado",
+ "Common.define.smartArt.textInterconnectedRings": "Anéis Interconectados",
+ "Common.define.smartArt.textInvertedPyramid": "Pirâmide invertida",
+ "Common.define.smartArt.textLabeledHierarchy": "Hierarquia rotulada",
+ "Common.define.smartArt.textLinearVenn": "Venn Linear",
+ "Common.define.smartArt.textLinedList": "Lista alinhada",
+ "Common.define.smartArt.textList": "Lista",
+ "Common.define.smartArt.textMatrix": "Matriz",
+ "Common.define.smartArt.textMultidirectionalCycle": "Ciclo multidirecional",
+ "Common.define.smartArt.textNameAndTitleOrganizationChart": "Organograma de Nome e Título",
+ "Common.define.smartArt.textNestedTarget": "Alvo Aninhado",
+ "Common.define.smartArt.textNondirectionalCycle": "Ciclo Não Direcional",
+ "Common.define.smartArt.textOpposingArrows": "Setas Opostas",
+ "Common.define.smartArt.textOpposingIdeas": "Ideias opostas",
+ "Common.define.smartArt.textOrganizationChart": "Organograma",
+ "Common.define.smartArt.textOther": "Outro",
+ "Common.define.smartArt.textPhasedProcess": "Processo em fases",
+ "Common.define.smartArt.textPicture": "Imagem",
+ "Common.define.smartArt.textPictureAccentBlocks": "Blocos de destaque de imagem",
+ "Common.define.smartArt.textPictureAccentList": "Lista de destaques da imagem",
+ "Common.define.smartArt.textPictureAccentProcess": "Processo de destaque da imagem",
+ "Common.define.smartArt.textPictureCaptionList": "Lista de legendas de imagens",
+ "Common.define.smartArt.textPictureFrame": "Porta-retrato",
+ "Common.define.smartArt.textPictureGrid": "Grade de imagens",
+ "Common.define.smartArt.textPictureLineup": "Alinhamento de imagens",
+ "Common.define.smartArt.textPictureOrganizationChart": "Organograma de imagens",
+ "Common.define.smartArt.textPictureStrips": "Tiras de imagem",
+ "Common.define.smartArt.textPieProcess": "Processo em Pizza",
+ "Common.define.smartArt.textPlusAndMinus": "Mais e menos",
+ "Common.define.smartArt.textProcess": "Processo",
+ "Common.define.smartArt.textProcessArrows": "Setas de processo",
+ "Common.define.smartArt.textProcessList": "Lista de processos",
+ "Common.define.smartArt.textPyramid": "Pirâmide",
+ "Common.define.smartArt.textPyramidList": "Lista de pirâmides",
+ "Common.define.smartArt.textRadialCluster": "Aglomerado Radial",
+ "Common.define.smartArt.textRadialCycle": "Ciclo radial",
+ "Common.define.smartArt.textRadialList": "Lista radial",
+ "Common.define.smartArt.textRadialPictureList": "Lista de imagens radiais",
+ "Common.define.smartArt.textRadialVenn": "Venn Radial",
+ "Common.define.smartArt.textRandomToResultProcess": "Processo aleatório para resultado",
+ "Common.define.smartArt.textRelationship": "Relação",
+ "Common.define.smartArt.textRepeatingBendingProcess": "Repetindo o processo de dobra",
+ "Common.define.smartArt.textReverseList": "Lista reversa",
+ "Common.define.smartArt.textSegmentedCycle": "Ciclo Segmentado",
+ "Common.define.smartArt.textSegmentedProcess": "Processo segmentado",
+ "Common.define.smartArt.textSegmentedPyramid": "Pirâmide segmentada",
+ "Common.define.smartArt.textSnapshotPictureList": "Lista de fotos instantâneas",
+ "Common.define.smartArt.textSpiralPicture": "Imagem em espiral",
+ "Common.define.smartArt.textSquareAccentList": "Lista de Acentos Quadrados",
+ "Common.define.smartArt.textStackedList": "Lista empilhada",
+ "Common.define.smartArt.textStackedVenn": "Venn Empilhado",
+ "Common.define.smartArt.textStaggeredProcess": "Processo escalonado",
+ "Common.define.smartArt.textStepDownProcess": "Processo de redução",
+ "Common.define.smartArt.textStepUpProcess": "Processo de intensificação",
+ "Common.define.smartArt.textSubStepProcess": "Processo de subetapas",
+ "Common.define.smartArt.textTabbedArc": "Arco com abas",
+ "Common.define.smartArt.textTableHierarchy": "Hierarquia da Tabela",
+ "Common.define.smartArt.textTableList": "Lista de Tabelas",
+ "Common.define.smartArt.textTabList": "Lista de guias",
+ "Common.define.smartArt.textTargetList": "Lista de alvos",
+ "Common.define.smartArt.textTextCycle": "Ciclo de texto",
+ "Common.define.smartArt.textThemePictureAccent": "Destaque da Imagem do Tema",
+ "Common.define.smartArt.textThemePictureAlternatingAccent": "Acento Alternado da Imagem do Tema",
+ "Common.define.smartArt.textThemePictureGrid": "Grade de imagens do tema",
+ "Common.define.smartArt.textTitledMatrix": "Matriz intitulada",
+ "Common.define.smartArt.textTitledPictureAccentList": "Lista de Acentos de Imagem Intitulada",
+ "Common.define.smartArt.textTitledPictureBlocks": "Blocos de imagens intitulados",
+ "Common.define.smartArt.textTitlePictureLineup": "Título Imagem Alinhamento",
+ "Common.define.smartArt.textTrapezoidList": "Lista de trapézios",
+ "Common.define.smartArt.textUpwardArrow": "Seta para cima",
+ "Common.define.smartArt.textVaryingWidthList": "Lista de largura variável",
+ "Common.define.smartArt.textVerticalAccentList": "Lista de acentos verticais",
+ "Common.define.smartArt.textVerticalArrowList": "Lista de setas verticais",
+ "Common.define.smartArt.textVerticalBendingProcess": "Processo de dobra vertical",
+ "Common.define.smartArt.textVerticalBlockList": "Lista de Bloqueios Verticais",
+ "Common.define.smartArt.textVerticalBoxList": "Lista de caixas verticais",
+ "Common.define.smartArt.textVerticalBracketList": "Lista de colchetes verticais",
+ "Common.define.smartArt.textVerticalBulletList": "Lista de marcadores verticais",
+ "Common.define.smartArt.textVerticalChevronList": "Lista Vertical em Divisas",
+ "Common.define.smartArt.textVerticalCircleList": "Lista de círculos verticais",
+ "Common.define.smartArt.textVerticalCurvedList": "Lista Curva Vertical",
+ "Common.define.smartArt.textVerticalEquation": "Equação Vertical",
+ "Common.define.smartArt.textVerticalPictureAccentList": "Lista Vertical de Acentos de Imagem",
+ "Common.define.smartArt.textVerticalPictureList": "Lista de imagens verticais",
+ "Common.define.smartArt.textVerticalProcess": "Processo Vertical",
"Common.Translation.textMoreButton": "Mais",
"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",
@@ -373,7 +532,7 @@
"Common.Views.Comments.txtEmpty": "Não há comentários no documento.",
"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",
+ "Common.Views.CopyWarningDialog.textTitle": "Copiar, Cortar e Colar",
"Common.Views.CopyWarningDialog.textToCopy": "para Copiar",
"Common.Views.CopyWarningDialog.textToCut": "para Cortar",
"Common.Views.CopyWarningDialog.textToPaste": "para Colar",
@@ -523,7 +682,7 @@
"Common.Views.ReviewChanges.txtDocLang": "Idioma",
"Common.Views.ReviewChanges.txtFinal": "Todas as alterações aceitas (Visualizar)",
"Common.Views.ReviewChanges.txtFinalCap": "Final",
- "Common.Views.ReviewChanges.txtHistory": "Histórico de Versões",
+ "Common.Views.ReviewChanges.txtHistory": "Histórico de versões",
"Common.Views.ReviewChanges.txtMarkup": "Todas as alterações (Edição)",
"Common.Views.ReviewChanges.txtMarkupCap": "Marcação",
"Common.Views.ReviewChanges.txtNext": "Próximo",
@@ -600,7 +759,7 @@
"Common.Views.SymbolTableDialog.textCharacter": "Caractere",
"Common.Views.SymbolTableDialog.textCode": "Valor Unicode HEX",
"Common.Views.SymbolTableDialog.textCopyright": "Assinatura de copyright",
- "Common.Views.SymbolTableDialog.textDCQuote": "Colchete Duplo",
+ "Common.Views.SymbolTableDialog.textDCQuote": "Fechar aspas duplas",
"Common.Views.SymbolTableDialog.textDOQuote": "Abertura de aspas duplas",
"Common.Views.SymbolTableDialog.textEllipsis": "Elipse horizontal",
"Common.Views.SymbolTableDialog.textEmDash": "Travessão",
@@ -638,6 +797,7 @@
"PE.Controllers.LeftMenu.txtUntitled": "Sem título",
"PE.Controllers.Main.applyChangesTextText": "Carregando dados...",
"PE.Controllers.Main.applyChangesTitleText": "Carregando dados",
+ "PE.Controllers.Main.confirmMaxChangesSize": "O tamanho das ações excede a limitação definida para seu servidor. Pressione \"Desfazer\" para cancelar sua última ação ou pressione \"Continue\" para manter a ação localmente (você precisa baixar o arquivo ou copiar seu conteúdo para garantir que nada seja perdido).",
"PE.Controllers.Main.convertationTimeoutText": "Tempo limite de conversão excedido.",
"PE.Controllers.Main.criticalErrorExtText": "Pressione \"OK\" para voltar para a lista de documentos.",
"PE.Controllers.Main.criticalErrorTitle": "Erro",
@@ -660,6 +820,11 @@
"PE.Controllers.Main.errorFilePassProtect": "O documento é protegido por senha e não pode ser aberto.",
"PE.Controllers.Main.errorFileSizeExceed": "O tamanho do arquivo excede o limite de seu servidor. Por favor, contate seu administrador de Servidor de Documentos para detalhes.",
"PE.Controllers.Main.errorForceSave": "Ocorreu um erro na gravação. Favor utilizar a opção 'Transferir como' para gravar o arquivo em seu computador ou tente novamente mais tarde.",
+ "PE.Controllers.Main.errorInconsistentExt": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo não corresponde à extensão do arquivo.",
+ "PE.Controllers.Main.errorInconsistentExtDocx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a documentos de texto (por exemplo, docx), mas o arquivo tem a extensão inconsistente: %1.",
+ "PE.Controllers.Main.errorInconsistentExtPdf": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a um dos seguintes formatos: pdf/djvu/xps/oxps, mas o arquivo tem a extensão inconsistente: %1.",
+ "PE.Controllers.Main.errorInconsistentExtPptx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a apresentações (por exemplo, pptx), mas o arquivo tem a extensão inconsistente: %1.",
+ "PE.Controllers.Main.errorInconsistentExtXlsx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a planilhas (por exemplo, xlsx), mas o arquivo tem a extensão inconsistente: %1.",
"PE.Controllers.Main.errorKeyEncrypt": "Descritor de chave desconhecido",
"PE.Controllers.Main.errorKeyExpire": "Descritor de chave expirado",
"PE.Controllers.Main.errorLoadingFont": "As fontes não foram carregadas. Entre em contato com o administrador do Document Server.",
@@ -715,6 +880,7 @@
"PE.Controllers.Main.textClose": "Fechar",
"PE.Controllers.Main.textCloseTip": "Clique para fechar a dica",
"PE.Controllers.Main.textContactUs": "Entre em contato com o departamento de vendas",
+ "PE.Controllers.Main.textContinue": "Continuar",
"PE.Controllers.Main.textConvertEquation": "Esta equação foi criada com uma versão antiga do editor de equação que não é mais compatível. Para editá-lo, converta a equação para o formato Office Math ML. Converter agora?",
"PE.Controllers.Main.textCustomLoader": "Observe que, de acordo com os termos da licença, você não tem direito de alterar a carregadeira. Entre em contato com nosso Departamento de Vendas para obter uma cotação.",
"PE.Controllers.Main.textDisconnect": "A conexão está perdida",
@@ -735,6 +901,7 @@
"PE.Controllers.Main.textStrict": "Modo estrito",
"PE.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.",
"PE.Controllers.Main.textTryUndoRedoWarn": "As funções Desfazer/Refazer estão desabilitadas para o modo de coedição rápido",
+ "PE.Controllers.Main.textUndo": "Desfazer",
"PE.Controllers.Main.titleLicenseExp": "Licença expirada",
"PE.Controllers.Main.titleServerVersion": "Editor atualizado",
"PE.Controllers.Main.txtAddFirstSlide": "Clique para adicionar o primeiro slide",
@@ -1433,16 +1600,21 @@
"PE.Views.DocumentHolder.addCommentText": "Adicionar comentário",
"PE.Views.DocumentHolder.addToLayoutText": "Adicionar ao Layout",
"PE.Views.DocumentHolder.advancedChartText": "Configurações avançadas de gráfico",
+ "PE.Views.DocumentHolder.advancedEquationText": "Definições de equações",
"PE.Views.DocumentHolder.advancedImageText": "Configurações avançadas de imagem",
"PE.Views.DocumentHolder.advancedParagraphText": "Configurações avançadas de parágrafo",
"PE.Views.DocumentHolder.advancedShapeText": "Configurações avançadas de forma",
"PE.Views.DocumentHolder.advancedTableText": "Configurações avançadas de tabela",
"PE.Views.DocumentHolder.alignmentText": "Alinhamento",
+ "PE.Views.DocumentHolder.allLinearText": "Tudo - Linear",
+ "PE.Views.DocumentHolder.allProfText": "Tudo - Profissional",
"PE.Views.DocumentHolder.belowText": "Abaixo",
"PE.Views.DocumentHolder.cellAlignText": "Alinhamento vertical da célula",
"PE.Views.DocumentHolder.cellText": "Célula",
"PE.Views.DocumentHolder.centerText": "Centro",
"PE.Views.DocumentHolder.columnText": "Coluna",
+ "PE.Views.DocumentHolder.currLinearText": "Atual - Linear",
+ "PE.Views.DocumentHolder.currProfText": "Atual - Profissional",
"PE.Views.DocumentHolder.deleteColumnText": "Excluir coluna",
"PE.Views.DocumentHolder.deleteRowText": "Excluir linha",
"PE.Views.DocumentHolder.deleteTableText": "Excluir tabela",
@@ -1464,6 +1636,7 @@
"PE.Views.DocumentHolder.insertRowText": "Inserir linha",
"PE.Views.DocumentHolder.insertText": "Inserir",
"PE.Views.DocumentHolder.langText": "Selecionar idioma",
+ "PE.Views.DocumentHolder.latexText": "LaTex",
"PE.Views.DocumentHolder.leftText": "Esquerda",
"PE.Views.DocumentHolder.loadSpellText": "Carregando variantes...",
"PE.Views.DocumentHolder.mergeCellsText": "Mesclar células",
@@ -1512,6 +1685,7 @@
"PE.Views.DocumentHolder.textRotate270": "Girar 90º no sentido anti-horário.",
"PE.Views.DocumentHolder.textRotate90": "Girar 90º no sentido horário",
"PE.Views.DocumentHolder.textRulers": "Regras",
+ "PE.Views.DocumentHolder.textSaveAsPicture": "Salvar como imagem",
"PE.Views.DocumentHolder.textShapeAlignBottom": "Alinhar à parte inferior",
"PE.Views.DocumentHolder.textShapeAlignCenter": "Alinhar ao centro",
"PE.Views.DocumentHolder.textShapeAlignLeft": "Alinhar à esquerda",
@@ -1623,6 +1797,7 @@
"PE.Views.DocumentHolder.txtUnderbar": "Barra abaixo de texto",
"PE.Views.DocumentHolder.txtUngroup": "Desagrupar",
"PE.Views.DocumentHolder.txtWarnUrl": "Clicar neste link pode ser prejudicial ao seu dispositivo e dados. Você tem certeza de que quer continuar?",
+ "PE.Views.DocumentHolder.unicodeText": "Unicode",
"PE.Views.DocumentHolder.vertAlignText": "Alinhamento vertical",
"PE.Views.DocumentPreview.goToSlideText": "Ir para Slide",
"PE.Views.DocumentPreview.slideIndexText": "Slide {0} de {1}",
@@ -1674,6 +1849,7 @@
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Localização",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Pessoas que têm direitos",
"PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Assunto",
+ "PE.Views.FileMenuPanels.DocumentInfo.txtTags": "Etiquetas",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título de apresentação",
"PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Carregado",
"PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Alterar direitos de acesso",
@@ -1689,7 +1865,7 @@
"PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Algumas das assinaturas digitais na apresentação são inválidas ou não puderam ser verificadas. A apresentação está protegida para edição.",
"PE.Views.FileMenuPanels.ProtectDoc.txtView": "Exibir assinaturas",
"PE.Views.FileMenuPanels.Settings.okButtonText": "Aplicar",
- "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Co-editing mode",
+ "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Modo de coedição",
"PE.Views.FileMenuPanels.Settings.strFast": "Rápido",
"PE.Views.FileMenuPanels.Settings.strFontRender": "Dicas de fonte",
"PE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignorar palavras MAIÚSCULAS",
@@ -1812,7 +1988,7 @@
"PE.Views.ImageSettingsAdvanced.textHorizontal": "Horizontal",
"PE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontalmente",
"PE.Views.ImageSettingsAdvanced.textKeepRatio": "Proporções constantes",
- "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Tamanho padrão",
+ "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Tamanho Real",
"PE.Views.ImageSettingsAdvanced.textPlacement": "Posicionamento",
"PE.Views.ImageSettingsAdvanced.textPosition": "Posição",
"PE.Views.ImageSettingsAdvanced.textRotation": "Rotação",
@@ -1874,7 +2050,7 @@
"PE.Views.ParagraphSettingsAdvanced.textJustified": "Justificado",
"PE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(nenhum)",
"PE.Views.ParagraphSettingsAdvanced.textRemove": "Remover",
- "PE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Remover todos",
+ "PE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Excluir todos",
"PE.Views.ParagraphSettingsAdvanced.textSet": "Especificar",
"PE.Views.ParagraphSettingsAdvanced.textTabCenter": "Centro",
"PE.Views.ParagraphSettingsAdvanced.textTabLeft": "Esquerda",
@@ -2218,6 +2394,7 @@
"PE.Views.Toolbar.capBtnComment": "Comentário",
"PE.Views.Toolbar.capBtnDateTime": "Data e Hora",
"PE.Views.Toolbar.capBtnInsHeader": "Rodapé",
+ "PE.Views.Toolbar.capBtnInsSmartArt": "SmartArt",
"PE.Views.Toolbar.capBtnInsSymbol": "Símbolo",
"PE.Views.Toolbar.capBtnSlideNum": "Número do slide",
"PE.Views.Toolbar.capInsertAudio": "Aúdio",
@@ -2318,6 +2495,7 @@
"PE.Views.Toolbar.tipInsertHyperlink": "Adicionar hiperlink",
"PE.Views.Toolbar.tipInsertImage": "Inserir imagem",
"PE.Views.Toolbar.tipInsertShape": "Inserir forma automática",
+ "PE.Views.Toolbar.tipInsertSmartArt": "Inserir SmartArt",
"PE.Views.Toolbar.tipInsertSymbol": "Inserir símbolo",
"PE.Views.Toolbar.tipInsertTable": "Inserir tabela",
"PE.Views.Toolbar.tipInsertText": "Inserir caixa de texto",
@@ -2427,7 +2605,9 @@
"PE.Views.ViewTab.textGridlines": "Linhas de grade",
"PE.Views.ViewTab.textGuides": "Guias",
"PE.Views.ViewTab.textInterfaceTheme": "Tema de interface",
+ "PE.Views.ViewTab.textLeftMenu": "Painel esquerdo",
"PE.Views.ViewTab.textNotes": "Notas",
+ "PE.Views.ViewTab.textRightMenu": "Painel direito",
"PE.Views.ViewTab.textRulers": "Regras",
"PE.Views.ViewTab.textShowGridlines": "Mostrar linhas de grade",
"PE.Views.ViewTab.textShowGuides": "Mostrar guias",
diff --git a/apps/presentationeditor/main/locale/ru.json b/apps/presentationeditor/main/locale/ru.json
index f7977a980..2c8df1e46 100644
--- a/apps/presentationeditor/main/locale/ru.json
+++ b/apps/presentationeditor/main/locale/ru.json
@@ -702,6 +702,7 @@
"Common.Views.ReviewPopover.textCancel": "Отмена",
"Common.Views.ReviewPopover.textClose": "Закрыть",
"Common.Views.ReviewPopover.textEdit": "OK",
+ "Common.Views.ReviewPopover.textEnterComment": "Введите здесь свой комментарий",
"Common.Views.ReviewPopover.textMention": "+упоминание предоставит доступ к документу и отправит оповещение по почте",
"Common.Views.ReviewPopover.textMentionNotify": "+упоминание отправит пользователю оповещение по почте",
"Common.Views.ReviewPopover.textOpenAgain": "Открыть снова",
@@ -820,6 +821,11 @@
"PE.Controllers.Main.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.",
"PE.Controllers.Main.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера. Обратитесь к администратору Сервера документов для получения дополнительной информации.",
"PE.Controllers.Main.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на диск или повторите попытку позже.",
+ "PE.Controllers.Main.errorInconsistentExt": "При открытии файла произошла ошибка. Содержимое файла не соответствует расширению файла.",
+ "PE.Controllers.Main.errorInconsistentExtDocx": "При открытии файла произошла ошибка. Содержимое файла соответствует документам (например, docx), но файл имеет несоответствующее расширение: %1.",
+ "PE.Controllers.Main.errorInconsistentExtPdf": "При открытии файла произошла ошибка. Содержимое файла соответствует одному из следующих форматов: pdf/djvu/xps/oxps, но файл имеет несоответствующее расширение: %1.",
+ "PE.Controllers.Main.errorInconsistentExtPptx": "При открытии файла произошла ошибка. Содержимое файла соответствует презентациям (например, pptx), но файл имеет несоответствующее расширение: %1.",
+ "PE.Controllers.Main.errorInconsistentExtXlsx": "При открытии файла произошла ошибка. Содержимое файла соответствует электронным таблицам (например, xlsx), но файл имеет несоответствующее расширение: %1.",
"PE.Controllers.Main.errorKeyEncrypt": "Неизвестный дескриптор ключа",
"PE.Controllers.Main.errorKeyExpire": "Срок действия дескриптора ключа истек",
"PE.Controllers.Main.errorLoadingFont": "Шрифты не загружены. Пожалуйста, обратитесь к администратору Сервера документов.",
@@ -1595,16 +1601,21 @@
"PE.Views.DocumentHolder.addCommentText": "Добавить комментарий",
"PE.Views.DocumentHolder.addToLayoutText": "Добавить в макет",
"PE.Views.DocumentHolder.advancedChartText": "Дополнительные параметры диаграммы",
+ "PE.Views.DocumentHolder.advancedEquationText": "Параметры уравнений",
"PE.Views.DocumentHolder.advancedImageText": "Дополнительные параметры изображения",
"PE.Views.DocumentHolder.advancedParagraphText": "Дополнительные параметры абзаца",
"PE.Views.DocumentHolder.advancedShapeText": "Дополнительные параметры фигуры",
"PE.Views.DocumentHolder.advancedTableText": "Дополнительные параметры таблицы",
"PE.Views.DocumentHolder.alignmentText": "Выравнивание",
+ "PE.Views.DocumentHolder.allLinearText": "Все - линейный",
+ "PE.Views.DocumentHolder.allProfText": "Все - профессиональный",
"PE.Views.DocumentHolder.belowText": "Ниже",
"PE.Views.DocumentHolder.cellAlignText": "Вертикальное выравнивание в ячейках",
"PE.Views.DocumentHolder.cellText": "Ячейку",
"PE.Views.DocumentHolder.centerText": "По центру",
"PE.Views.DocumentHolder.columnText": "Столбец",
+ "PE.Views.DocumentHolder.currLinearText": "Текущее - линейный",
+ "PE.Views.DocumentHolder.currProfText": "Текущее - Профессиональный",
"PE.Views.DocumentHolder.deleteColumnText": "Удалить столбец",
"PE.Views.DocumentHolder.deleteRowText": "Удалить строку",
"PE.Views.DocumentHolder.deleteTableText": "Удалить таблицу",
@@ -1626,6 +1637,7 @@
"PE.Views.DocumentHolder.insertRowText": "Вставить строку",
"PE.Views.DocumentHolder.insertText": "Добавить",
"PE.Views.DocumentHolder.langText": "Выбрать язык",
+ "PE.Views.DocumentHolder.latexText": "LaTeX",
"PE.Views.DocumentHolder.leftText": "По левому краю",
"PE.Views.DocumentHolder.loadSpellText": "Загрузка вариантов...",
"PE.Views.DocumentHolder.mergeCellsText": "Объединить ячейки",
@@ -1786,6 +1798,7 @@
"PE.Views.DocumentHolder.txtUnderbar": "Черта под текстом",
"PE.Views.DocumentHolder.txtUngroup": "Разгруппировать",
"PE.Views.DocumentHolder.txtWarnUrl": "Переход по этой ссылке может нанести вред вашему устройству и данным. Вы действительно хотите продолжить?",
+ "PE.Views.DocumentHolder.unicodeText": "Юникод",
"PE.Views.DocumentHolder.vertAlignText": "Вертикальное выравнивание",
"PE.Views.DocumentPreview.goToSlideText": "Перейти к слайду",
"PE.Views.DocumentPreview.slideIndexText": "Слайд {0} из {1}",
@@ -2593,7 +2606,9 @@
"PE.Views.ViewTab.textGridlines": "Линии сетки",
"PE.Views.ViewTab.textGuides": "Направляющие",
"PE.Views.ViewTab.textInterfaceTheme": "Тема интерфейса",
+ "PE.Views.ViewTab.textLeftMenu": "Левая панель",
"PE.Views.ViewTab.textNotes": "Заметки",
+ "PE.Views.ViewTab.textRightMenu": "Правая панель",
"PE.Views.ViewTab.textRulers": "Линейки",
"PE.Views.ViewTab.textShowGridlines": "Показать линии сетки",
"PE.Views.ViewTab.textShowGuides": "Показать направляющие",
diff --git a/apps/presentationeditor/main/locale/sl.json b/apps/presentationeditor/main/locale/sl.json
index 10bf1fef0..cb27af7f2 100644
--- a/apps/presentationeditor/main/locale/sl.json
+++ b/apps/presentationeditor/main/locale/sl.json
@@ -27,6 +27,8 @@
"Common.define.chartData.textPie3d": "3-D pita",
"Common.define.chartData.textPoint": "Točkovni grafikon",
"Common.define.chartData.textStock": "Založni grafikon",
+ "Common.define.effectData.textShape": "Oblika",
+ "Common.define.effectData.textShapes": "Oblike",
"Common.Translation.warnFileLockedBtnEdit": "Ustvari kopijo",
"Common.UI.ButtonColored.textNewColor": "Dodaj novo barvo po meri",
"Common.UI.ComboBorderSize.txtNoBorders": "Ni mej",
@@ -105,6 +107,7 @@
"Common.Views.DocumentAccessDialog.textTitle": "Nastavitve deljenja",
"Common.Views.ExternalDiagramEditor.textTitle": "Urejevalec grafa",
"Common.Views.Header.textBack": "Pojdi v dokumente",
+ "Common.Views.Header.textHideLines": "Skrij ravnila",
"Common.Views.Header.textHideStatusBar": "Skrij statusno vrstico",
"Common.Views.Header.tipGoEdit": "Uredi trenutno datoteko",
"Common.Views.Header.txtAccessRights": "Spremeni pravice dostopa",
@@ -126,6 +129,7 @@
"Common.Views.OpenDialog.closeButtonText": "Zapri datoteko",
"Common.Views.OpenDialog.txtOpenFile": "Vnesite geslo za odpiranje datoteke",
"Common.Views.OpenDialog.txtTitle": "Izberi %1 možnosti",
+ "Common.Views.OpenDialog.txtTitleProtected": "Zaščitena datoteka",
"Common.Views.PasswordDialog.txtIncorrectPwd": "Potrditev gesla se ne ujema",
"Common.Views.PasswordDialog.txtWarning": "Pozor: Če izgubite geslo ali ga pozabite, ga ne morete več obnoviti. Hranite ga na varnem mestu.",
"Common.Views.Protection.hintPwd": "Spremeni ali odstrani geslo",
@@ -142,6 +146,7 @@
"Common.Views.ReviewChanges.txtAcceptChanges": "Sprejmi spremembe",
"Common.Views.ReviewChanges.txtChat": "Pogovor",
"Common.Views.ReviewChanges.txtClose": "Zapri",
+ "Common.Views.ReviewChanges.txtCommentRemove": "Odstrani",
"Common.Views.ReviewChanges.txtCommentResolve": "Razreši",
"Common.Views.ReviewChanges.txtDocLang": "Jezik",
"Common.Views.ReviewChanges.txtFinalCap": "Končno",
@@ -234,7 +239,7 @@
"PE.Controllers.Main.textLoadingDocument": "Nalaganje predstavitve",
"PE.Controllers.Main.textLongName": "Vnesite ime, ki ima manj kot 128 znakov",
"PE.Controllers.Main.textPaidFeature": "Plačljive funkcije",
- "PE.Controllers.Main.textShape": "Oblika",
+ "PE.Controllers.Main.textShape": "Shape",
"PE.Controllers.Main.textStrict": "Strict mode",
"PE.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.",
"PE.Controllers.Main.txtArt": "Your text here",
@@ -1072,6 +1077,7 @@
"PE.Views.Toolbar.capInsertChart": "Graf",
"PE.Views.Toolbar.capInsertHyperlink": "Hiperpovezava",
"PE.Views.Toolbar.capInsertImage": "Slika",
+ "PE.Views.Toolbar.capInsertShape": "Oblika",
"PE.Views.Toolbar.capTabFile": "Datoteka",
"PE.Views.Toolbar.capTabHome": "Domov",
"PE.Views.Toolbar.capTabInsert": "Vstavi",
@@ -1108,6 +1114,8 @@
"PE.Views.Toolbar.textTabFile": "Datoteka",
"PE.Views.Toolbar.textTabHome": "Domov",
"PE.Views.Toolbar.textTabInsert": "Vstavi",
+ "PE.Views.Toolbar.textTabProtect": "Zaščita",
+ "PE.Views.Toolbar.textTabView": "Pogled",
"PE.Views.Toolbar.textTitleError": "Napaka",
"PE.Views.Toolbar.textUnderline": "Podčrtaj",
"PE.Views.Toolbar.tipAddSlide": "Dodaj diapozitiv",
diff --git a/apps/presentationeditor/main/locale/zh.json b/apps/presentationeditor/main/locale/zh.json
index cf77e1e62..f51c886c4 100644
--- a/apps/presentationeditor/main/locale/zh.json
+++ b/apps/presentationeditor/main/locale/zh.json
@@ -248,6 +248,167 @@
"Common.define.effectData.textWipe": "擦除",
"Common.define.effectData.textZigzag": "弯弯曲曲",
"Common.define.effectData.textZoom": "缩放",
+ "Common.define.gridlineData.txtCm": "厘米",
+ "Common.define.gridlineData.txtPt": "像素",
+ "Common.define.smartArt.textAccentedPicture": "重音图片",
+ "Common.define.smartArt.textAccentProcess": "重点流程",
+ "Common.define.smartArt.textAlternatingFlow": "交替流",
+ "Common.define.smartArt.textAlternatingHexagons": "交替六边形",
+ "Common.define.smartArt.textAlternatingPictureBlocks": "交替图片块",
+ "Common.define.smartArt.textAlternatingPictureCircles": "交替图片圆形",
+ "Common.define.smartArt.textArchitectureLayout": "结构布局",
+ "Common.define.smartArt.textArrowRibbon": "带形箭头",
+ "Common.define.smartArt.textAscendingPictureAccentProcess": "升序图片重点流程",
+ "Common.define.smartArt.textBalance": "平衡",
+ "Common.define.smartArt.textBasicBendingProcess": "基本蛇形流程",
+ "Common.define.smartArt.textBasicBlockList": "基本列表",
+ "Common.define.smartArt.textBasicChevronProcess": "基本 V 形流程",
+ "Common.define.smartArt.textBasicCycle": "基本循环",
+ "Common.define.smartArt.textBasicMatrix": "基本矩阵",
+ "Common.define.smartArt.textBasicPie": "基本饼图",
+ "Common.define.smartArt.textBasicProcess": "基本流程",
+ "Common.define.smartArt.textBasicPyramid": "基本棱锥图",
+ "Common.define.smartArt.textBasicRadial": "基本射线图",
+ "Common.define.smartArt.textBasicTarget": "基本目标图",
+ "Common.define.smartArt.textBasicTimeline": "基本时间线",
+ "Common.define.smartArt.textBasicVenn": "基本维恩图",
+ "Common.define.smartArt.textBendingPictureAccentList": "蛇形图片重点列表",
+ "Common.define.smartArt.textBendingPictureBlocks": "蛇形图片块",
+ "Common.define.smartArt.textBendingPictureCaption": "蛇形图片题注",
+ "Common.define.smartArt.textBendingPictureCaptionList": "蛇形图片题注列表",
+ "Common.define.smartArt.textBendingPictureSemiTranparentText": "蛇形图片半透明文本",
+ "Common.define.smartArt.textBlockCycle": "块循环",
+ "Common.define.smartArt.textBubblePictureList": "气泡图片列表",
+ "Common.define.smartArt.textCaptionedPictures": "题注图片",
+ "Common.define.smartArt.textChevronAccentProcess": "V 形重点流程",
+ "Common.define.smartArt.textChevronList": "V 型列表",
+ "Common.define.smartArt.textCircleAccentTimeline": "圆形重点日程表",
+ "Common.define.smartArt.textCircleArrowProcess": "圆箭头流程",
+ "Common.define.smartArt.textCirclePictureHierarchy": "圆形图片层次结构",
+ "Common.define.smartArt.textCircleProcess": "循环流程",
+ "Common.define.smartArt.textCircleRelationship": "循环关系",
+ "Common.define.smartArt.textCircularBendingProcess": "环状蛇形流程",
+ "Common.define.smartArt.textCircularPictureCallout": "圆形图片标注",
+ "Common.define.smartArt.textClosedChevronProcess": "闭合 V 形流程",
+ "Common.define.smartArt.textContinuousArrowProcess": "连续箭头流程",
+ "Common.define.smartArt.textContinuousBlockProcess": "连续块状流程",
+ "Common.define.smartArt.textContinuousCycle": "连续循环",
+ "Common.define.smartArt.textContinuousPictureList": "连续图片列表",
+ "Common.define.smartArt.textConvergingArrows": "汇聚箭头",
+ "Common.define.smartArt.textConvergingRadial": "聚合射线",
+ "Common.define.smartArt.textConvergingText": "聚合文本",
+ "Common.define.smartArt.textCounterbalanceArrows": "平衡箭头",
+ "Common.define.smartArt.textCycle": "循环",
+ "Common.define.smartArt.textCycleMatrix": "循环矩阵",
+ "Common.define.smartArt.textDescendingBlockList": "降序块列表",
+ "Common.define.smartArt.textDescendingProcess": "降序流程",
+ "Common.define.smartArt.textDetailedProcess": "详细流程",
+ "Common.define.smartArt.textDivergingArrows": "分叉箭头",
+ "Common.define.smartArt.textDivergingRadial": "分离射线",
+ "Common.define.smartArt.textEquation": "方程",
+ "Common.define.smartArt.textFramedTextPicture": "带框架的文本图片",
+ "Common.define.smartArt.textFunnel": "漏斗",
+ "Common.define.smartArt.textGear": "齿轮",
+ "Common.define.smartArt.textGridMatrix": "网格矩阵",
+ "Common.define.smartArt.textGroupedList": "分组列表",
+ "Common.define.smartArt.textHalfCircleOrganizationChart": "半圆组织结构图",
+ "Common.define.smartArt.textHexagonCluster": "六边形群集",
+ "Common.define.smartArt.textHexagonRadial": "放射状六边形",
+ "Common.define.smartArt.textHierarchy": "层次结构",
+ "Common.define.smartArt.textHierarchyList": "层次结构列表",
+ "Common.define.smartArt.textHorizontalBulletList": "水平项目符号列表",
+ "Common.define.smartArt.textHorizontalHierarchy": "水平层次结构",
+ "Common.define.smartArt.textHorizontalLabeledHierarchy": "水平标记的层次结构",
+ "Common.define.smartArt.textHorizontalMultiLevelHierarchy": "水平多层层次结构",
+ "Common.define.smartArt.textHorizontalOrganizationChart": "水平组织结构图",
+ "Common.define.smartArt.textHorizontalPictureList": "水平图片列表",
+ "Common.define.smartArt.textIncreasingArrowProcess": "递增箭头流程",
+ "Common.define.smartArt.textIncreasingCircleProcess": "递增循环流程",
+ "Common.define.smartArt.textInterconnectedBlockProcess": "互联块流程",
+ "Common.define.smartArt.textInterconnectedRings": "互联环",
+ "Common.define.smartArt.textInvertedPyramid": "倒棱锥图",
+ "Common.define.smartArt.textLabeledHierarchy": "标记的层次结构",
+ "Common.define.smartArt.textLinearVenn": "线性维恩图",
+ "Common.define.smartArt.textLinedList": "线型列表",
+ "Common.define.smartArt.textList": "列表",
+ "Common.define.smartArt.textMatrix": "矩阵",
+ "Common.define.smartArt.textMultidirectionalCycle": "多向循环",
+ "Common.define.smartArt.textNameAndTitleOrganizationChart": "姓名和职务组织结构图",
+ "Common.define.smartArt.textNestedTarget": "嵌套目标图",
+ "Common.define.smartArt.textNondirectionalCycle": "不定向循环",
+ "Common.define.smartArt.textOpposingArrows": "反向箭头",
+ "Common.define.smartArt.textOpposingIdeas": "对立观点",
+ "Common.define.smartArt.textOrganizationChart": "组织结构图",
+ "Common.define.smartArt.textOther": "其他",
+ "Common.define.smartArt.textPhasedProcess": "分阶段流程",
+ "Common.define.smartArt.textPicture": "图片",
+ "Common.define.smartArt.textPictureAccentBlocks": "图片重点块",
+ "Common.define.smartArt.textPictureAccentList": "图片重点列表",
+ "Common.define.smartArt.textPictureAccentProcess": "图片重点流程",
+ "Common.define.smartArt.textPictureCaptionList": "图片题注列表",
+ "Common.define.smartArt.textPictureFrame": "图片框",
+ "Common.define.smartArt.textPictureGrid": "图片网格",
+ "Common.define.smartArt.textPictureLineup": "图片排列",
+ "Common.define.smartArt.textPictureOrganizationChart": "图片组织结构图",
+ "Common.define.smartArt.textPictureStrips": "图片条纹",
+ "Common.define.smartArt.textPieProcess": "饼图流程",
+ "Common.define.smartArt.textPlusAndMinus": "加号和减号",
+ "Common.define.smartArt.textProcess": "流程",
+ "Common.define.smartArt.textProcessArrows": "流程箭头",
+ "Common.define.smartArt.textProcessList": "流程列表",
+ "Common.define.smartArt.textPyramid": "棱锥型",
+ "Common.define.smartArt.textPyramidList": "棱锥型列表",
+ "Common.define.smartArt.textRadialCluster": "射线群集",
+ "Common.define.smartArt.textRadialCycle": "射线循环",
+ "Common.define.smartArt.textRadialList": "射线列表",
+ "Common.define.smartArt.textRadialPictureList": "放射状图片列表",
+ "Common.define.smartArt.textRadialVenn": "射线维恩图",
+ "Common.define.smartArt.textRandomToResultProcess": "随机至结果流程",
+ "Common.define.smartArt.textRelationship": "关系",
+ "Common.define.smartArt.textRepeatingBendingProcess": "重复蛇形流程",
+ "Common.define.smartArt.textReverseList": "反转列表",
+ "Common.define.smartArt.textSegmentedCycle": "分段循环",
+ "Common.define.smartArt.textSegmentedProcess": "分段流程",
+ "Common.define.smartArt.textSegmentedPyramid": "分段棱锥图",
+ "Common.define.smartArt.textSnapshotPictureList": "快照图片列表",
+ "Common.define.smartArt.textSpiralPicture": "螺旋图",
+ "Common.define.smartArt.textSquareAccentList": "方形重点列表",
+ "Common.define.smartArt.textStackedList": "堆叠列表",
+ "Common.define.smartArt.textStackedVenn": "堆叠维恩图",
+ "Common.define.smartArt.textStaggeredProcess": "交错流程",
+ "Common.define.smartArt.textStepDownProcess": "步骤下移流程",
+ "Common.define.smartArt.textStepUpProcess": "升级流程",
+ "Common.define.smartArt.textSubStepProcess": "子步骤流程",
+ "Common.define.smartArt.textTabbedArc": "拱状",
+ "Common.define.smartArt.textTableHierarchy": "表层次结构",
+ "Common.define.smartArt.textTableList": "表格列表",
+ "Common.define.smartArt.textTabList": "选项卡列表",
+ "Common.define.smartArt.textTargetList": "目标图列表",
+ "Common.define.smartArt.textTextCycle": "文本循环",
+ "Common.define.smartArt.textThemePictureAccent": "主题图片重点",
+ "Common.define.smartArt.textThemePictureAlternatingAccent": "主题图片交替重点",
+ "Common.define.smartArt.textThemePictureGrid": "主题图片网格",
+ "Common.define.smartArt.textTitledMatrix": "带标题的矩阵",
+ "Common.define.smartArt.textTitledPictureAccentList": "标题图片重点列表",
+ "Common.define.smartArt.textTitledPictureBlocks": "标题图片块",
+ "Common.define.smartArt.textTitlePictureLineup": "标题图片排列",
+ "Common.define.smartArt.textTrapezoidList": "梯形列表",
+ "Common.define.smartArt.textUpwardArrow": "向上箭头",
+ "Common.define.smartArt.textVaryingWidthList": "不同宽度列表",
+ "Common.define.smartArt.textVerticalAccentList": "垂直重点列表",
+ "Common.define.smartArt.textVerticalArrowList": "垂直箭头列表",
+ "Common.define.smartArt.textVerticalBendingProcess": "垂直蛇形流程",
+ "Common.define.smartArt.textVerticalBlockList": "垂直块列表",
+ "Common.define.smartArt.textVerticalBoxList": "垂直框列表",
+ "Common.define.smartArt.textVerticalBracketList": "垂直括弧列表",
+ "Common.define.smartArt.textVerticalBulletList": "垂直项目符号列表",
+ "Common.define.smartArt.textVerticalChevronList": "垂直 V 形列表",
+ "Common.define.smartArt.textVerticalCircleList": "垂直圆形列表",
+ "Common.define.smartArt.textVerticalCurvedList": "垂直曲形列表",
+ "Common.define.smartArt.textVerticalEquation": "垂直公式",
+ "Common.define.smartArt.textVerticalPictureAccentList": "垂直图片重点列表",
+ "Common.define.smartArt.textVerticalPictureList": "垂直图片列表",
+ "Common.define.smartArt.textVerticalProcess": "垂直流程",
"Common.Translation.textMoreButton": "更多",
"Common.Translation.warnFileLocked": "另一个应用程序正在编辑本文件。您在可以继续编辑,并另存为副本。",
"Common.Translation.warnFileLockedBtnEdit": "创建拷贝",
@@ -636,6 +797,7 @@
"PE.Controllers.LeftMenu.txtUntitled": "无标题",
"PE.Controllers.Main.applyChangesTextText": "数据加载中…",
"PE.Controllers.Main.applyChangesTitleText": "数据加载中",
+ "PE.Controllers.Main.confirmMaxChangesSize": "行动的大小超过了对您服务器设置的限制。 按 \"撤消\"取消您的最后一次行动,或按\"继续\"在本地保留该行动(您需要下载文件或复制其内容以确保没有任何损失)。",
"PE.Controllers.Main.convertationTimeoutText": "转换超时",
"PE.Controllers.Main.criticalErrorExtText": "按“确定”返回该文件列表。",
"PE.Controllers.Main.criticalErrorTitle": "错误:",
@@ -713,6 +875,7 @@
"PE.Controllers.Main.textClose": "关闭",
"PE.Controllers.Main.textCloseTip": "点击关闭提示",
"PE.Controllers.Main.textContactUs": "联系销售",
+ "PE.Controllers.Main.textContinue": "发送",
"PE.Controllers.Main.textConvertEquation": "这个公式是由一个早期版本的公式编辑器创建的。这个版本现在不受支持了。要想编辑这个公式,你需要将其转换成 Office Math ML 格式. 现在转换吗?",
"PE.Controllers.Main.textCustomLoader": "请注意,根据许可条款您无权更改加载程序。 请联系我们的销售部门获取报价。",
"PE.Controllers.Main.textDisconnect": "网络连接失败",
@@ -733,6 +896,7 @@
"PE.Controllers.Main.textStrict": "手动模式",
"PE.Controllers.Main.textTryUndoRedo": "对于自动的协同编辑模式,取消/重做功能是禁用的。< br >单击“手动模式”按钮切换到手动协同编辑模式,这样,编辑该文件时只有您保存修改之后,其他用户才能访问这些修改。您可以使用编辑器高级设置易于切换编辑模式。",
"PE.Controllers.Main.textTryUndoRedoWarn": "自动共同编辑模式下,撤销/重做功能被禁用。",
+ "PE.Controllers.Main.textUndo": "撤消",
"PE.Controllers.Main.titleLicenseExp": "许可证过期",
"PE.Controllers.Main.titleServerVersion": "编辑器已更新",
"PE.Controllers.Main.txtAddFirstSlide": "单击添加第一张幻灯片",
@@ -1431,16 +1595,21 @@
"PE.Views.DocumentHolder.addCommentText": "添加批注",
"PE.Views.DocumentHolder.addToLayoutText": "添加到布局",
"PE.Views.DocumentHolder.advancedChartText": "图表高级设置",
+ "PE.Views.DocumentHolder.advancedEquationText": "方程式设置",
"PE.Views.DocumentHolder.advancedImageText": "高级图像设置",
"PE.Views.DocumentHolder.advancedParagraphText": "段落高级设置",
"PE.Views.DocumentHolder.advancedShapeText": "形状高级设置",
"PE.Views.DocumentHolder.advancedTableText": "高级表设置",
"PE.Views.DocumentHolder.alignmentText": "对齐",
+ "PE.Views.DocumentHolder.allLinearText": "全部 - 线性",
+ "PE.Views.DocumentHolder.allProfText": "全部 - 专业",
"PE.Views.DocumentHolder.belowText": "下面",
"PE.Views.DocumentHolder.cellAlignText": "单元格垂直对齐",
"PE.Views.DocumentHolder.cellText": "元件",
"PE.Views.DocumentHolder.centerText": "中心",
"PE.Views.DocumentHolder.columnText": "列",
+ "PE.Views.DocumentHolder.currLinearText": "当前 - 线性",
+ "PE.Views.DocumentHolder.currProfText": "当前 - 专业",
"PE.Views.DocumentHolder.deleteColumnText": "删除列",
"PE.Views.DocumentHolder.deleteRowText": "删除行",
"PE.Views.DocumentHolder.deleteTableText": "删除表",
@@ -1462,6 +1631,7 @@
"PE.Views.DocumentHolder.insertRowText": "插入行",
"PE.Views.DocumentHolder.insertText": "插入",
"PE.Views.DocumentHolder.langText": "选择语言",
+ "PE.Views.DocumentHolder.latexText": "LaTeX",
"PE.Views.DocumentHolder.leftText": "左",
"PE.Views.DocumentHolder.loadSpellText": "加载变体...",
"PE.Views.DocumentHolder.mergeCellsText": "合并单元格",
@@ -1481,10 +1651,12 @@
"PE.Views.DocumentHolder.textArrangeBackward": "下移一层",
"PE.Views.DocumentHolder.textArrangeForward": "上移一层",
"PE.Views.DocumentHolder.textArrangeFront": "放到最上面",
+ "PE.Views.DocumentHolder.textCm": "厘米",
"PE.Views.DocumentHolder.textCopy": "复制",
"PE.Views.DocumentHolder.textCrop": "裁剪",
"PE.Views.DocumentHolder.textCropFill": "填满",
"PE.Views.DocumentHolder.textCropFit": "最佳",
+ "PE.Views.DocumentHolder.textCustom": "自定义",
"PE.Views.DocumentHolder.textCut": "剪切",
"PE.Views.DocumentHolder.textDistributeCols": "分布列",
"PE.Views.DocumentHolder.textDistributeRows": "分布行",
@@ -1494,6 +1666,7 @@
"PE.Views.DocumentHolder.textFromFile": "从文件导入",
"PE.Views.DocumentHolder.textFromStorage": "来自存储设备",
"PE.Views.DocumentHolder.textFromUrl": "从URL",
+ "PE.Views.DocumentHolder.textGridlines": "网格线",
"PE.Views.DocumentHolder.textNextPage": "下一张幻灯片",
"PE.Views.DocumentHolder.textPaste": "粘贴",
"PE.Views.DocumentHolder.textPrevPage": "上一张幻灯片",
@@ -1501,12 +1674,14 @@
"PE.Views.DocumentHolder.textRotate": "旋转",
"PE.Views.DocumentHolder.textRotate270": "逆时针旋转90°",
"PE.Views.DocumentHolder.textRotate90": "顺时针旋转90°",
+ "PE.Views.DocumentHolder.textRulers": "标尺",
"PE.Views.DocumentHolder.textShapeAlignBottom": "靠下对齐",
"PE.Views.DocumentHolder.textShapeAlignCenter": "居中对齐",
"PE.Views.DocumentHolder.textShapeAlignLeft": "左对齐",
"PE.Views.DocumentHolder.textShapeAlignMiddle": "居中对齐",
"PE.Views.DocumentHolder.textShapeAlignRight": "右对齐",
"PE.Views.DocumentHolder.textShapeAlignTop": "靠上对齐",
+ "PE.Views.DocumentHolder.textShowGridlines": "显示网格线",
"PE.Views.DocumentHolder.textSlideSettings": "幻灯片设置",
"PE.Views.DocumentHolder.textUndo": "复原",
"PE.Views.DocumentHolder.tipIsLocked": "此元素正在由其他用户编辑。",
@@ -1607,9 +1782,10 @@
"PE.Views.DocumentHolder.txtUnderbar": "在文本栏",
"PE.Views.DocumentHolder.txtUngroup": "取消组合",
"PE.Views.DocumentHolder.txtWarnUrl": "点击该链接可能会损害你的设备或数据。 你确定要继续吗?",
+ "PE.Views.DocumentHolder.unicodeText": "Unicode",
"PE.Views.DocumentHolder.vertAlignText": "垂直对齐",
"PE.Views.DocumentPreview.goToSlideText": "转到幻灯片",
- "PE.Views.DocumentPreview.slideIndexText": "幻灯片第{1}张,共{0}张",
+ "PE.Views.DocumentPreview.slideIndexText": "幻灯片第{0}张,共{1}张",
"PE.Views.DocumentPreview.txtClose": "关闭幻灯片",
"PE.Views.DocumentPreview.txtEndSlideshow": "结束幻灯片放映",
"PE.Views.DocumentPreview.txtExitFullScreen": "退出全屏",
@@ -1658,6 +1834,7 @@
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "位置",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "有权利的人",
"PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "主题",
+ "PE.Views.FileMenuPanels.DocumentInfo.txtTags": "标签",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "标题",
"PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "上载",
"PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "更改访问权限",
@@ -1723,6 +1900,9 @@
"PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "解除所有带通知的宏",
"PE.Views.FileMenuPanels.Settings.txtWin": "仿照 Windows",
"PE.Views.FileMenuPanels.Settings.txtWorkspace": "工作空间",
+ "PE.Views.GridSettings.textCm": "厘米",
+ "PE.Views.GridSettings.textCustom": "自定义",
+ "PE.Views.GridSettings.textSpacing": "间距",
"PE.Views.HeaderFooterDialog.applyAllText": "全部应用",
"PE.Views.HeaderFooterDialog.applyText": "应用",
"PE.Views.HeaderFooterDialog.diffLanguage": "不能使用与幻灯片母版不同语言的日期格式。 若要更改母版,请单击“全部应用”而不是“应用”",
@@ -2053,7 +2233,7 @@
"PE.Views.SlideSizeSettings.txtStandard": "标准(4:3)",
"PE.Views.SlideSizeSettings.txtWidescreen": "宽屏",
"PE.Views.Statusbar.goToPageText": "转到幻灯片",
- "PE.Views.Statusbar.pageIndexText": "幻灯片第{1}张,共{0}张",
+ "PE.Views.Statusbar.pageIndexText": "幻灯片第{0}张,共{1}张",
"PE.Views.Statusbar.textShowBegin": "从开始显示",
"PE.Views.Statusbar.textShowCurrent": "从当前幻灯片展示",
"PE.Views.Statusbar.textShowPresenterView": "显示演示者视图",
@@ -2198,6 +2378,7 @@
"PE.Views.Toolbar.capBtnComment": "评论",
"PE.Views.Toolbar.capBtnDateTime": "日期和时间",
"PE.Views.Toolbar.capBtnInsHeader": "页脚",
+ "PE.Views.Toolbar.capBtnInsSmartArt": "SmartArt",
"PE.Views.Toolbar.capBtnInsSymbol": "符号",
"PE.Views.Toolbar.capBtnSlideNum": "幻灯片编号",
"PE.Views.Toolbar.capInsertAudio": "声音",
@@ -2294,13 +2475,16 @@
"PE.Views.Toolbar.tipInsertAudio": "插入声音",
"PE.Views.Toolbar.tipInsertChart": "插入图表",
"PE.Views.Toolbar.tipInsertEquation": "插入方程",
+ "PE.Views.Toolbar.tipInsertHorizontalText": "插入横排文本框",
"PE.Views.Toolbar.tipInsertHyperlink": "添加超链接",
"PE.Views.Toolbar.tipInsertImage": "插入图片",
"PE.Views.Toolbar.tipInsertShape": "自动插入形状",
+ "PE.Views.Toolbar.tipInsertSmartArt": "插入 SmartArt",
"PE.Views.Toolbar.tipInsertSymbol": "插入符号",
"PE.Views.Toolbar.tipInsertTable": "插入表",
"PE.Views.Toolbar.tipInsertText": "插入文字",
"PE.Views.Toolbar.tipInsertTextArt": "插入艺术字",
+ "PE.Views.Toolbar.tipInsertVerticalText": "插入竖排文本框",
"PE.Views.Toolbar.tipInsertVideo": "插入视频",
"PE.Views.Toolbar.tipLineSpace": "行间距",
"PE.Views.Toolbar.tipMarkers": "项目符号",
@@ -2395,14 +2579,19 @@
"PE.Views.Transitions.txtPreview": "预览",
"PE.Views.Transitions.txtSec": "S",
"PE.Views.ViewTab.textAlwaysShowToolbar": "始终显示工具栏",
+ "PE.Views.ViewTab.textCm": "厘米",
+ "PE.Views.ViewTab.textCustom": "自定义",
"PE.Views.ViewTab.textFitToSlide": "适合幻灯片",
"PE.Views.ViewTab.textFitToWidth": "适合宽度",
+ "PE.Views.ViewTab.textGridlines": "网格线",
"PE.Views.ViewTab.textInterfaceTheme": "界面主题",
"PE.Views.ViewTab.textNotes": "备注",
"PE.Views.ViewTab.textRulers": "标尺",
+ "PE.Views.ViewTab.textShowGridlines": "显示网格线",
"PE.Views.ViewTab.textStatusBar": "状态栏",
"PE.Views.ViewTab.textZoom": "缩放",
"PE.Views.ViewTab.tipFitToSlide": "适合幻灯片",
"PE.Views.ViewTab.tipFitToWidth": "适合宽度",
+ "PE.Views.ViewTab.tipGridlines": "显示网格线",
"PE.Views.ViewTab.tipInterfaceTheme": "界面主题"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/resources/less/toolbar.less b/apps/presentationeditor/main/resources/less/toolbar.less
index 80129babc..c601d2feb 100644
--- a/apps/presentationeditor/main/resources/less/toolbar.less
+++ b/apps/presentationeditor/main/resources/less/toolbar.less
@@ -83,7 +83,7 @@
border-radius: 0;
padding: 3px 10px;
color: #fff;
- font: 11px arial;
+ .font-size-normal();
white-space: nowrap;
letter-spacing: 1px;
overflow: hidden;
@@ -111,6 +111,9 @@
.separator {
height: 20px;
}
+ &.has-open-menu {
+ z-index: @zindex-navbar + 1;
+ }
}
.item-theme {
diff --git a/apps/presentationeditor/mobile/locale/az.json b/apps/presentationeditor/mobile/locale/az.json
index afce4f7d5..ae89689a8 100644
--- a/apps/presentationeditor/mobile/locale/az.json
+++ b/apps/presentationeditor/mobile/locale/az.json
@@ -172,7 +172,14 @@
"uploadImageExtMessage": "Naməlum təsvir formatı.",
"uploadImageFileCountMessage": "Heç bir təsvir yüklənməyib.",
"uploadImageSizeMessage": "Təsvir çox böyükdür. Maksimum ölçü 25 MB-dır.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Məlumat yüklənir...",
diff --git a/apps/presentationeditor/mobile/locale/be.json b/apps/presentationeditor/mobile/locale/be.json
index 4597cb3e2..f9f70ec48 100644
--- a/apps/presentationeditor/mobile/locale/be.json
+++ b/apps/presentationeditor/mobile/locale/be.json
@@ -162,11 +162,18 @@
"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.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
"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.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
"errorUpdateVersionOnDisconnect": "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.",
"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",
diff --git a/apps/presentationeditor/mobile/locale/bg.json b/apps/presentationeditor/mobile/locale/bg.json
index 867375190..4e150b4ac 100644
--- a/apps/presentationeditor/mobile/locale/bg.json
+++ b/apps/presentationeditor/mobile/locale/bg.json
@@ -172,7 +172,14 @@
"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.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Loading data...",
diff --git a/apps/presentationeditor/mobile/locale/ca.json b/apps/presentationeditor/mobile/locale/ca.json
index 6b474b4c1..3bf44eb64 100644
--- a/apps/presentationeditor/mobile/locale/ca.json
+++ b/apps/presentationeditor/mobile/locale/ca.json
@@ -172,7 +172,14 @@
"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."
+ "uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "S'estant carregant les dades...",
diff --git a/apps/presentationeditor/mobile/locale/cs.json b/apps/presentationeditor/mobile/locale/cs.json
index 526f44a3d..f5ff791d2 100644
--- a/apps/presentationeditor/mobile/locale/cs.json
+++ b/apps/presentationeditor/mobile/locale/cs.json
@@ -172,7 +172,14 @@
"uploadImageExtMessage": "Neznámý formát obrázku.",
"uploadImageFileCountMessage": "Žádné obrázky nenahrány.",
"uploadImageSizeMessage": "Obrázek je příliš velký. Maximální velikost je 25 MB.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Načítání dat...",
diff --git a/apps/presentationeditor/mobile/locale/de.json b/apps/presentationeditor/mobile/locale/de.json
index 2c8d25238..d88d3f8fe 100644
--- a/apps/presentationeditor/mobile/locale/de.json
+++ b/apps/presentationeditor/mobile/locale/de.json
@@ -31,9 +31,9 @@
"textOk": "OK",
"textReopen": "Wiederöffnen",
"textResolve": "Lösen",
+ "textSharingSettings": "Freigabeeinstellungen",
"textTryUndoRedo": "Die Optionen Rückgängig machen/Wiederholen sind für den Schnellmodus deaktiviert.",
- "textUsers": "Benutzer",
- "textSharingSettings": "Sharing Settings"
+ "textUsers": "Benutzer"
},
"HighlightColorPalette": {
"textNoFill": "Keine Füllung"
@@ -52,6 +52,7 @@
"menuDelete": "Löschen",
"menuDeleteTable": "Tabelle löschen",
"menuEdit": "Bearbeiten",
+ "menuEditLink": "Link bearbeiten",
"menuMerge": "Verbinden",
"menuMore": "Mehr",
"menuOpenLink": "Link öffnen",
@@ -62,8 +63,7 @@
"textDoNotShowAgain": "Nicht mehr anzeigen",
"textOk": "OK",
"textRows": "Zeilen",
- "txtWarnUrl": "Dieser Link kann für Ihr Gerät und Daten gefährlich sein. Möchten Sie wirklich fortsetzen?",
- "menuEditLink": "Edit Link"
+ "txtWarnUrl": "Dieser Link kann für Ihr Gerät und Daten gefährlich sein. Möchten Sie wirklich fortsetzen?"
},
"Controller": {
"Main": {
@@ -147,9 +147,15 @@
"errorDataEncrypted": "Verschlüsselte Änderungen wurden empfangen. Sie können nicht entschlüsselt werden.",
"errorDataRange": "Falscher Datenbereich.",
"errorDefaultMessage": "Fehlercode: %1",
+ "errorDirectUrl": "Bitte überprüfen Sie den Link zum Dokument. Dieser Link muss ein direkter Link zu der Datei zum Herunterladen sein.",
"errorEditingDownloadas": "Fehler bei der Arbeit an diesem Dokument. Laden Sie die Datei herunter, um sie lokal zu speichern.",
"errorFilePassProtect": "Die Datei ist mit Passwort geschützt und kann nicht geöffnet werden.",
"errorFileSizeExceed": "Die Dateigröße ist zu hoch für Ihren Server. Bitte wenden Sie sich an Administratoren.",
+ "errorInconsistentExt": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei stimmt nicht mit der Dateierweiterung überein.",
+ "errorInconsistentExtDocx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Textdokumenten (z.B. docx), aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "errorInconsistentExtPdf": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht einem der folgenden Formate: pdf/djvu/xps/oxps, aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "errorInconsistentExtPptx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Präsentationen (z.B. pptx), aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "errorInconsistentExtXlsx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Tabellenkalkulationen (z.B. xlsx), aber die Datei hat die inkonsistente Erweiterung: %1.",
"errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor",
"errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen",
"errorLoadingFont": "Schriftarten nicht hochgeladen. Bitte wenden Sie sich an Administratoren von Ihrem Document Server.",
@@ -172,11 +178,13 @@
"uploadImageExtMessage": "Unbekanntes Bildformat.",
"uploadImageFileCountMessage": "Keine Bilder hochgeladen.",
"uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Daten werden geladen...",
"applyChangesTitleText": "Daten werden geladen",
+ "confirmMaxChangesSize": "Die Anzahl der Aktionen überschreitet die für Ihren Server festgelegte Grenze. Drücken Sie \"Rückgängig\", um Ihre letzte Aktion abzubrechen, oder drücken Sie \"Weiter\", um die Aktion lokal fortzusetzen (Sie müssen die Datei herunterladen oder ihren Inhalt kopieren, um sicherzustellen, dass nichts verloren geht).",
"downloadTextText": "Dokument wird heruntergeladen...",
"downloadTitleText": "Herunterladen des Dokuments",
"loadFontsTextText": "Daten werden geladen...",
@@ -199,14 +207,13 @@
"savePreparingTitle": "Speichervorbereitung. Bitte warten...",
"saveTextText": "Dokument wird gespeichert...",
"saveTitleText": "Dokument wird gespeichert...",
+ "textContinue": "Fortsetzen",
"textLoadingDocument": "Dokument wird geladen...",
+ "textUndo": "Rückgängig",
"txtEditingMode": "Bearbeitungsmodul wird festgelegt...",
"uploadImageTextText": "Das Bild wird hochgeladen...",
"uploadImageTitleText": "Bild wird hochgeladen",
- "waitText": "Bitte warten...",
- "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server. Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
- "textContinue": "Continue",
- "textUndo": "Undo"
+ "waitText": "Bitte warten..."
},
"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.",
@@ -225,6 +232,7 @@
"textComment": "Kommentar",
"textDefault": "Ausgewählter Text",
"textDisplay": "Anzeigen",
+ "textDone": "Fertig",
"textEmptyImgUrl": "Sie müssen die URL des Bildes angeben.",
"textExternalLink": "Externer Link",
"textFirstSlide": "Erste Folie",
@@ -243,6 +251,8 @@
"textPictureFromLibrary": "Bild aus dem Verzeichnis",
"textPictureFromURL": "Bild aus URL",
"textPreviousSlide": "Vorherige Folie",
+ "textRecommended": "Empfohlen",
+ "textRequired": "Erforderlich",
"textRows": "Zeilen",
"textScreenTip": "QuickInfo",
"textShape": "Form",
@@ -251,10 +261,7 @@
"textSlideNumber": "Foliennummer",
"textTable": "Tabelle",
"textTableSize": "Tabellengröße",
- "txtNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.",
- "textDone": "Done",
- "textRecommended": "Recommended",
- "textRequired": "Required"
+ "txtNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein."
},
"Edit": {
"notcriticalErrorTitle": "Warnung",
@@ -273,6 +280,7 @@
"textAlignTop": "Oben ausrichten",
"textAllCaps": "Alle Großbuchstaben",
"textApplyAll": "Auf alle Folien anwenden",
+ "textArrange": "Anordnen",
"textAuto": "auto",
"textAutomatic": "Automatisch",
"textBack": "Zurück",
@@ -287,8 +295,10 @@
"textBringToForeground": "In den Vordergrund bringen",
"textBullets": "Aufzählung",
"textBulletsAndNumbers": "Aufzählungszeichen und Nummern",
+ "textCancel": "Abbrechen",
"textCaseSensitive": "Groß-/Kleinschreibung beachten",
"textCellMargins": "Zellenränder",
+ "textChangeShape": "Form ändern",
"textChart": "Diagramm",
"textClock": "Uhr",
"textClockwise": "Im Uhrzeigersinn",
@@ -298,6 +308,8 @@
"textCustomColor": "Benutzerdefinierte Farbe",
"textDefault": "Ausgewählter Text",
"textDelay": "Verzögern",
+ "textDeleteImage": "Bild löschen",
+ "textDeleteLink": "Link löschen",
"textDeleteSlide": "Folie löschen",
"textDesign": "Design",
"textDisplay": "Anzeigen",
@@ -333,6 +345,7 @@
"textHyperlink": "Hyperlink",
"textImage": "Bild",
"textImageURL": "URL des Bildes",
+ "textInsertImage": "Bild einfügen",
"textLastColumn": "Letzte Spalte",
"textLastSlide": "Letzte Folie",
"textLayout": "Layout",
@@ -359,12 +372,14 @@
"textPreviousSlide": "Vorherige Folie",
"textPt": "pt",
"textPush": "Schieben",
+ "textRecommended": "Empfohlen",
"textRemoveChart": "Diagramm entfernen",
"textRemoveShape": "Form entfernen",
"textRemoveTable": "Tabelle entfernen",
"textReplace": "Ersetzen",
"textReplaceAll": "Alle ersetzen",
"textReplaceImage": "Bild ersetzen",
+ "textRequired": "Erforderlich",
"textRight": "Rechts",
"textScreenTip": "QuickInfo",
"textSearch": "Suche",
@@ -402,15 +417,7 @@
"textZoom": "Zoom",
"textZoomIn": "Vergrößern",
"textZoomOut": "Verkleinern",
- "textZoomRotate": "Vergrößern und drehen",
- "textArrange": "Arrange",
- "textCancel": "Cancel",
- "textChangeShape": "Change Shape",
- "textDeleteImage": "Delete Image",
- "textDeleteLink": "Delete Link",
- "textInsertImage": "Insert Image",
- "textRecommended": "Recommended",
- "textRequired": "Required"
+ "textZoomRotate": "Vergrößern und drehen"
},
"Settings": {
"mniSlideStandard": "Standard (4:3)",
diff --git a/apps/presentationeditor/mobile/locale/el.json b/apps/presentationeditor/mobile/locale/el.json
index bdca81ff4..e45861ac9 100644
--- a/apps/presentationeditor/mobile/locale/el.json
+++ b/apps/presentationeditor/mobile/locale/el.json
@@ -172,7 +172,14 @@
"uploadImageExtMessage": "Άγνωστη μορφή εικόνας.",
"uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.",
"uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Φόρτωση δεδομένων...",
diff --git a/apps/presentationeditor/mobile/locale/en.json b/apps/presentationeditor/mobile/locale/en.json
index 4a656be44..0bb12b029 100644
--- a/apps/presentationeditor/mobile/locale/en.json
+++ b/apps/presentationeditor/mobile/locale/en.json
@@ -151,6 +151,11 @@
"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.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
"errorKeyEncrypt": "Unknown key descriptor",
"errorKeyExpire": "Key descriptor expired",
"errorLoadingFont": "Fonts are not loaded. Please contact your Document Server administrator.",
@@ -158,6 +163,8 @@
"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.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
"errorUpdateVersionOnDisconnect": "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",
diff --git a/apps/presentationeditor/mobile/locale/es.json b/apps/presentationeditor/mobile/locale/es.json
index 42ff565b4..3748394de 100644
--- a/apps/presentationeditor/mobile/locale/es.json
+++ b/apps/presentationeditor/mobile/locale/es.json
@@ -31,9 +31,9 @@
"textOk": "OK",
"textReopen": "Volver a abrir",
"textResolve": "Resolver",
+ "textSharingSettings": "Ajustes de uso compartido",
"textTryUndoRedo": "Las funciones Deshacer/Rehacer están desactivadas en el modo de co-edición rápido.",
- "textUsers": "Usuarios",
- "textSharingSettings": "Sharing Settings"
+ "textUsers": "Usuarios"
},
"HighlightColorPalette": {
"textNoFill": "Sin relleno"
@@ -52,6 +52,7 @@
"menuDelete": "Eliminar",
"menuDeleteTable": "Eliminar tabla",
"menuEdit": "Editar",
+ "menuEditLink": "Editar enlace",
"menuMerge": "Combinar",
"menuMore": "Más",
"menuOpenLink": "Abrir enlace",
@@ -62,8 +63,7 @@
"textDoNotShowAgain": "No mostrar de nuevo",
"textOk": "Aceptar",
"textRows": "Filas",
- "txtWarnUrl": "Hacer clic en este enlace puede ser perjudicial para su dispositivo y sus datos. ¿Está seguro de que quiere continuar?",
- "menuEditLink": "Edit Link"
+ "txtWarnUrl": "Hacer clic en este enlace puede ser perjudicial para su dispositivo y sus datos. ¿Está seguro de que quiere continuar?"
},
"Controller": {
"Main": {
@@ -147,6 +147,7 @@
"errorDataEncrypted": "Se han recibido cambios cifrados, ellos no pueden ser descifrados.",
"errorDataRange": "Rango de datos incorrecto.",
"errorDefaultMessage": "Código de error: %1",
+ "errorDirectUrl": "Por favor, verifique el vínculo al documento. Este vínculo debe ser un vínculo directo al archivo para descargar.",
"errorEditingDownloadas": "Se ha producido un error al trabajar con el documento. Utilice la opción 'Descargar' para guardar la copia de seguridad del archivo localmente.",
"errorFilePassProtect": "El archivo está protegido por contraseña y no se puede abrir.",
"errorFileSizeExceed": "El tamaño del archivo excede la limitación del servidor. Por favor, póngase en contacto con su administrador.",
@@ -172,7 +173,13 @@
"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.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Cargando datos...",
@@ -199,14 +206,14 @@
"savePreparingTitle": "Preparando para guardar. Espere, por favor...",
"saveTextText": "Guardando documento...",
"saveTitleText": "Guardando documento",
+ "textContinue": "Continuar",
"textLoadingDocument": "Cargando documento",
+ "textUndo": "Deshacer",
"txtEditingMode": "Establecer el modo de edición...",
"uploadImageTextText": "Cargando imagen...",
"uploadImageTitleText": "Cargando imagen",
"waitText": "Por favor, espere...",
- "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server. Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
- "textContinue": "Continue",
- "textUndo": "Undo"
+ "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server. Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost)."
},
"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.",
@@ -225,6 +232,7 @@
"textComment": "Comentario",
"textDefault": "Texto seleccionado",
"textDisplay": "Mostrar",
+ "textDone": "Hecho",
"textEmptyImgUrl": "Necesita especificar la URL de la imagen.",
"textExternalLink": "Enlace externo",
"textFirstSlide": "Primera diapositiva",
@@ -243,6 +251,8 @@
"textPictureFromLibrary": "Imagen desde biblioteca",
"textPictureFromURL": "Imagen desde URL",
"textPreviousSlide": "Diapositiva anterior",
+ "textRecommended": "Recomendado",
+ "textRequired": "Necesario",
"textRows": "Filas",
"textScreenTip": "Consejo de pantalla",
"textShape": "Forma",
@@ -251,10 +261,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\"",
- "textDone": "Done",
- "textRecommended": "Recommended",
- "textRequired": "Required"
+ "txtNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\""
},
"Edit": {
"notcriticalErrorTitle": "Advertencia",
@@ -273,6 +280,7 @@
"textAlignTop": "Alinear arriba",
"textAllCaps": "Mayúsculas",
"textApplyAll": "Aplicar a todas las diapositivas",
+ "textArrange": "Organizar",
"textAuto": "Auto",
"textAutomatic": "Automático",
"textBack": "Atrás",
@@ -287,6 +295,7 @@
"textBringToForeground": "Traer al primer plano",
"textBullets": "Viñetas",
"textBulletsAndNumbers": "Viñetas y números",
+ "textCancel": "Cancelar",
"textCaseSensitive": "Distinguir mayúsculas de minúsculas",
"textCellMargins": "Márgenes de celdas",
"textChart": "Gráfico",
@@ -298,6 +307,7 @@
"textCustomColor": "Color personalizado",
"textDefault": "Texto seleccionado",
"textDelay": "Retraso",
+ "textDeleteLink": "Eliminar enlace",
"textDeleteSlide": "Eliminar diapositiva",
"textDesign": "Diseño",
"textDisplay": "Mostrar",
@@ -333,6 +343,7 @@
"textHyperlink": "Hiperenlace",
"textImage": "Imagen",
"textImageURL": "URL de imagen",
+ "textInsertImage": "Insertar imagen",
"textLastColumn": "Última columna",
"textLastSlide": "Última diapositiva",
"textLayout": "Diseño",
@@ -359,12 +370,14 @@
"textPreviousSlide": "Diapositiva anterior",
"textPt": "pt",
"textPush": "Empuje",
+ "textRecommended": "Recomendado",
"textRemoveChart": "Eliminar gráfico",
"textRemoveShape": "Eliminar forma",
"textRemoveTable": "Eliminar tabla",
"textReplace": "Reemplazar",
"textReplaceAll": "Reemplazar todo",
"textReplaceImage": "Reemplazar imagen",
+ "textRequired": "Necesario",
"textRight": "A la derecha",
"textScreenTip": "Consejo de pantalla",
"textSearch": "Buscar",
@@ -403,14 +416,8 @@
"textZoomIn": "Acercar",
"textZoomOut": "Alejar",
"textZoomRotate": "Zoom y giro",
- "textArrange": "Arrange",
- "textCancel": "Cancel",
"textChangeShape": "Change Shape",
- "textDeleteImage": "Delete Image",
- "textDeleteLink": "Delete Link",
- "textInsertImage": "Insert Image",
- "textRecommended": "Recommended",
- "textRequired": "Required"
+ "textDeleteImage": "Delete Image"
},
"Settings": {
"mniSlideStandard": "Estándar (4:3)",
diff --git a/apps/presentationeditor/mobile/locale/eu.json b/apps/presentationeditor/mobile/locale/eu.json
index c7062f4c9..07c50aaff 100644
--- a/apps/presentationeditor/mobile/locale/eu.json
+++ b/apps/presentationeditor/mobile/locale/eu.json
@@ -172,7 +172,14 @@
"uploadImageExtMessage": "Irudi formatu ezezaguna.",
"uploadImageFileCountMessage": "Ez da irudirik kargatu.",
"uploadImageSizeMessage": "Irudia handiegia da. Gehienezko tamaina 25 MB da.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Datuak kargatzen...",
diff --git a/apps/presentationeditor/mobile/locale/fr.json b/apps/presentationeditor/mobile/locale/fr.json
index f9c0f4e9f..b13b9a3d6 100644
--- a/apps/presentationeditor/mobile/locale/fr.json
+++ b/apps/presentationeditor/mobile/locale/fr.json
@@ -151,6 +151,11 @@
"errorEditingDownloadas": "Une erreur s'est produite pendant le travail sur le document. Utilisez l'option \"Télécharger\" pour enregistrer une sauvegarde locale",
"errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut être ouvert.",
"errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur. Veuillez contacter votre administrateur.",
+ "errorInconsistentExt": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier ne correspond pas à l'extension du fichier.",
+ "errorInconsistentExtDocx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des documents texte (par exemple docx), mais le fichier a une extension incohérente : %1.",
+ "errorInconsistentExtPdf": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à l'un des formats suivants : pdf/djvu/xps/oxps, mais le fichier a l'extension incohérente : %1.",
+ "errorInconsistentExtPptx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des présentations (par exemple pptx), mais le fichier a une extension incohérente : %1.",
+ "errorInconsistentExtXlsx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des feuilles de calcul (par exemple xlsx), mais le fichier a une extension incohérente : %1.",
"errorKeyEncrypt": "Descripteur de clé inconnu",
"errorKeyExpire": "Descripteur de clés expiré",
"errorLoadingFont": "Les polices ne sont pas téléchargées. Veuillez contacter l'administrateur de Document Server.",
@@ -158,6 +163,8 @@
"errorSessionIdle": "Le document n'a pas été modifié depuis trop longtemps. Veuillez recharger la page.",
"errorSessionToken": "La connexion au serveur a été interrompue. Veuillez recharger la page.",
"errorStockChart": "Ordre des lignes est incorrect. Pour créer un graphique boursier organisez vos données sur la feuille de calcul dans l'ordre suivant: cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.",
+ "errorToken": "Le jeton de sécurité du document n’était pas formé correctement. Veuillez contacter votre administrateur de Document Server.",
+ "errorTokenExpire": "Le jeton de sécurité du document a expiré. Veuillez contactez l'administrateur de votre Document Server.",
"errorUpdateVersionOnDisconnect": "La connexion internet a été rétablie, la version du fichier est modifiée. Avant de continuer, téléchargez le fichier ou copiez le contenu pour vous assurer que tous les changements ont été enregistrés. Rechargez la page.",
"errorUserDrop": "Impossible d'accéder au fichier.",
"errorUsersExceed": "Le nombre d'utilisateurs autorisés par le plan tarifaire a été dépassé",
diff --git a/apps/presentationeditor/mobile/locale/gl.json b/apps/presentationeditor/mobile/locale/gl.json
index 8ce1357ea..ba8fd0cc4 100644
--- a/apps/presentationeditor/mobile/locale/gl.json
+++ b/apps/presentationeditor/mobile/locale/gl.json
@@ -172,7 +172,14 @@
"uploadImageExtMessage": "Formato de imaxe descoñecido.",
"uploadImageFileCountMessage": "Non hai imaxes subidas.",
"uploadImageSizeMessage": "A imaxe é demasiado grande. O tamaño máximo é de 25 MB.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Cargando datos...",
diff --git a/apps/presentationeditor/mobile/locale/hu.json b/apps/presentationeditor/mobile/locale/hu.json
index d30999650..2b5d82f9c 100644
--- a/apps/presentationeditor/mobile/locale/hu.json
+++ b/apps/presentationeditor/mobile/locale/hu.json
@@ -172,7 +172,14 @@
"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."
+ "uploadImageSizeMessage": "A kép túl nagy. A maximális méret 25 MB.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Adatok betöltése...",
diff --git a/apps/presentationeditor/mobile/locale/hy.json b/apps/presentationeditor/mobile/locale/hy.json
index 780ac46ad..7fbfad42a 100644
--- a/apps/presentationeditor/mobile/locale/hy.json
+++ b/apps/presentationeditor/mobile/locale/hy.json
@@ -151,6 +151,11 @@
"errorEditingDownloadas": "Փաստաթղթի հետ աշխատանքի ընթացքում սխալ է տեղի ունեցել: Օգտագործեք «Ներբեռնում» տարբերակը՝ ֆայլի կրկնօրինակը տեղում պահելու համար:",
"errorFilePassProtect": "Ֆայլը պաշտպանված է գաղտնաբառով և հնարավոր չէ բացել:",
"errorFileSizeExceed": "Ֆայլի չափը գերազանցում է Ձեր սերվերի սահմանափակումը:Խնդրում ենք կապվել Ձեր ադմինիստրատորի հետ:",
+ "errorInconsistentExt": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը չի համապատասխանում ֆայլի ընդլայնմանը:",
+ "errorInconsistentExtDocx": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը համապատասխանում է տեքստային փաստաթղթերին (օրինակ՝ docx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում՝ %1:",
+ "errorInconsistentExtPdf": "Ֆայլը բացելիս սխալ է տեղի ունեցել:Ֆայլի բովանդակությունը համապատասխանում է հետևյալ ձևաչափերից մեկին՝pdf/djvu/xps/oxps,բայց ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
+ "errorInconsistentExtPptx": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը համապատասխանում է ներկայացումներին (օրինակ՝ pptx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
+ "errorInconsistentExtXlsx": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը համապատասխանում է աղյուսակներին (օր. xlsx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
"errorKeyEncrypt": "Բանալու անհայտ նկարագրիչ",
"errorKeyExpire": "Բանալու նկարագրիչի ժամկետը սպառվել է",
"errorLoadingFont": "Տառատեսակները բեռնված չեն: Խնդրում ենք կապվել ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:",
@@ -172,11 +177,14 @@
"unknownErrorText": "Անհայտ սխալ։",
"uploadImageExtMessage": "Նկարի անհայտ ձևաչափ։",
"uploadImageFileCountMessage": "Ոչ մի նկար չի բեռնվել։",
- "uploadImageSizeMessage": "Պատկերը չափազանց մեծ է:Առավելագույն չափը 25 ՄԲ է:"
+ "uploadImageSizeMessage": "Պատկերը չափազանց մեծ է:Առավելագույն չափը 25 ՄԲ է:",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Տվյալների բեռնում...",
"applyChangesTitleText": "Տվյալների բեռնում",
+ "confirmMaxChangesSize": "Գործողությունների չափը գերազանցում է Ձեր սերվերի համար սահմանված սահմանափակումը: Սեղմեք «Հետարկել»՝ Ձեր վերջին գործողությունը չեղարկելու համար կամ սեղմեք «Շարունակել»՝ գործողությունը տեղում պահելու համար (Դուք պետք է ներբեռնեք ֆայլը կամ պատճենեք դրա բովանդակությունը՝ համոզվելու համար, որ ոչինչ կորած չէ):",
"downloadTextText": "Փաստաթղթի ներբեռնում...",
"downloadTitleText": "Փաստաթղթի ներբեռնում",
"loadFontsTextText": "Տվյալների բեռնում...",
@@ -205,8 +213,7 @@
"txtEditingMode": "Խմբագրման աշխատակարգի հաստատում...",
"uploadImageTextText": "Նկարի վերբեռնում...",
"uploadImageTitleText": "Նկարի վերբեռնում",
- "waitText": "Խնդրում ենք սպասել...",
- "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server. Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost)."
+ "waitText": "Խնդրում ենք սպասել..."
},
"Toolbar": {
"dlgLeaveMsgText": "Դուք այս փաստաթղթում չպահված փոփոխություններ ունեք:Սեղմեք «Մնալ այս էջում»՝ սպասելու ավտոմատ պահպանմանը:Սեղմեք «Լքել այս էջը»՝ չպահված բոլոր փոփոխությունները մերժելու համար:",
@@ -291,6 +298,7 @@
"textCancel": "Չեղարկել",
"textCaseSensitive": "Դուրճազգայուն",
"textCellMargins": "Վանդակի լուսանցքներ",
+ "textChangeShape": "Փոխել ձևը",
"textChart": "Գծապատկեր",
"textClock": "Ժամացույց",
"textClockwise": "Ժամասլաքի ուղղությամբ",
@@ -300,6 +308,8 @@
"textCustomColor": "Հարմարեցված գույն",
"textDefault": "Ընտրված տեքստ",
"textDelay": "Հետաձգում",
+ "textDeleteImage": "Ջնջել պատկերը",
+ "textDeleteLink": "Ջնջել հղումը",
"textDeleteSlide": "Ջնջել սահիկը",
"textDesign": "Ձևավորում",
"textDisplay": "Ցուցադրել",
@@ -407,10 +417,7 @@
"textZoom": "Խոշորացնել",
"textZoomIn": "Մեծացնել",
"textZoomOut": "Փոքրացնել",
- "textZoomRotate": "Դիտափոխում և պտտում",
- "textChangeShape": "Change Shape",
- "textDeleteImage": "Delete Image",
- "textDeleteLink": "Delete Link"
+ "textZoomRotate": "Դիտափոխում և պտտում"
},
"Settings": {
"mniSlideStandard": "Ստանդարտ (4:3)",
diff --git a/apps/presentationeditor/mobile/locale/id.json b/apps/presentationeditor/mobile/locale/id.json
index c430c6d47..c4f87251a 100644
--- a/apps/presentationeditor/mobile/locale/id.json
+++ b/apps/presentationeditor/mobile/locale/id.json
@@ -151,6 +151,11 @@
"errorEditingDownloadas": "Ada kesalahan saat bekerja dengan dokumen. Gunakan menu 'Download' untuk menyimpan file copy backup di lokal.",
"errorFilePassProtect": "Password file diproteksi dan tidak bisa dibuka.",
"errorFileSizeExceed": "Ukuran file melampaui limit server Anda. Silakan, hubungi admin.",
+ "errorInconsistentExt": "Terjadi kesalahan saat membuka file. Isi file tidak cocok dengan ekstensi file.",
+ "errorInconsistentExtDocx": "Terjadi kesalahan saat membuka file. Isi file berhubungan dengan dokumen teks (mis. docx), tapi file memiliki ekstensi yang tidak konsisten: %1.",
+ "errorInconsistentExtPdf": "Sebuah kesalahan terjadi ketika membuka file. Isi file berhubungan dengan satu dari format berikut: pdf/djvu/xps/oxps, tapi file memiliki ekstensi yang tidak konsisten: %1.",
+ "errorInconsistentExtPptx": "Terjadi kesalahan saat membuka file. Isi file berhubungan dengan presentasi (mis. pptx), tapi file memiliki ekstensi yang tidak konsisten: %1.",
+ "errorInconsistentExtXlsx": "Terjadi kesalahan saat membuka file. Isi file berhubungan dengan spreadsheet (mis. xlsx), tapi file memiliki ekstensi yang tidak konsisten: %1.",
"errorKeyEncrypt": "Deskriptor kunci tidak dikenal",
"errorKeyExpire": "Deskriptor kunci tidak berfungsi",
"errorLoadingFont": "Font tidak bisa dimuat. Silakan kontak admin Server Dokumen Anda.",
@@ -158,6 +163,8 @@
"errorSessionIdle": "Dokumen sudah lama tidak diedit. Silakan muat ulang halaman.",
"errorSessionToken": "Koneksi ke server terganggu. Silakan muat ulang halaman.",
"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.",
+ "errorToken": "Token keamanan dokumen tidak dibentuk dengan benar. Silakan hubungi admin Server Dokumen Anda.",
+ "errorTokenExpire": "Token keamanan dokumen sudah kedaluwarsa. Silakan hubungi admin Server Dokumen Anda.",
"errorUpdateVersionOnDisconnect": "Koneksi internet sudah kembali dan versi file sudah diganti. Sebelum Anda bisa melanjutkan kerja, Anda perlu mengunduh file atau salin konten untuk memastikan tidak ada yang hilang, lalu muat ulang halaman ini.",
"errorUserDrop": "File tidak bisa diakses sekarang.",
"errorUsersExceed": "Jumlah pengguna telah melebihi jumlah yang diijinkan dalam paket harga.",
diff --git a/apps/presentationeditor/mobile/locale/it.json b/apps/presentationeditor/mobile/locale/it.json
index f36d4e0c8..82d389200 100644
--- a/apps/presentationeditor/mobile/locale/it.json
+++ b/apps/presentationeditor/mobile/locale/it.json
@@ -172,7 +172,14 @@
"uploadImageExtMessage": "Formato d'immagine sconosciuto.",
"uploadImageFileCountMessage": "Nessuna immagine caricata.",
"uploadImageSizeMessage": "L'immagine è troppo grande. La dimensione massima è 25 MB.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Caricamento di dati...",
diff --git a/apps/presentationeditor/mobile/locale/ja.json b/apps/presentationeditor/mobile/locale/ja.json
index a67b4b334..0e8005134 100644
--- a/apps/presentationeditor/mobile/locale/ja.json
+++ b/apps/presentationeditor/mobile/locale/ja.json
@@ -172,7 +172,14 @@
"unknownErrorText": "不明なエラー",
"uploadImageExtMessage": "不明なイメージの形式",
"uploadImageFileCountMessage": "アップロードしたイメージがない",
- "uploadImageSizeMessage": "イメージのサイズの上限が超えさせました。サイズの上限が25MB。"
+ "uploadImageSizeMessage": "イメージのサイズの上限が超えさせました。サイズの上限が25MB。",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "データの読み込み中...",
diff --git a/apps/presentationeditor/mobile/locale/ko.json b/apps/presentationeditor/mobile/locale/ko.json
index f80181703..17b604c4a 100644
--- a/apps/presentationeditor/mobile/locale/ko.json
+++ b/apps/presentationeditor/mobile/locale/ko.json
@@ -172,7 +172,14 @@
"uploadImageExtMessage": "알 수없는 이미지 형식입니다.",
"uploadImageFileCountMessage": "이미지가 업로드되지 않았습니다.",
"uploadImageSizeMessage": "이미지 크기 제한을 초과했습니다.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "데이터로드 중 ...",
diff --git a/apps/presentationeditor/mobile/locale/lo.json b/apps/presentationeditor/mobile/locale/lo.json
index b5ce61d0c..c7d8d20cc 100644
--- a/apps/presentationeditor/mobile/locale/lo.json
+++ b/apps/presentationeditor/mobile/locale/lo.json
@@ -172,7 +172,14 @@
"uploadImageExtMessage": "ບໍ່ຮູ້ສາເຫດຂໍ້ຜິດຜາດຮູບແບບຂອງຮູບ",
"uploadImageFileCountMessage": "ບໍ່ມີຮູບພາບອັບໂຫລດ",
"uploadImageSizeMessage": "ຮູບພາບໃຫຍ່ເກີນໄປ. ຂະຫນາດສູງສຸດແມ່ນ 25 MB.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "ກຳລັງດາວໂຫຼດຂໍ້ມູນ...",
diff --git a/apps/presentationeditor/mobile/locale/lv.json b/apps/presentationeditor/mobile/locale/lv.json
index 867375190..4e150b4ac 100644
--- a/apps/presentationeditor/mobile/locale/lv.json
+++ b/apps/presentationeditor/mobile/locale/lv.json
@@ -172,7 +172,14 @@
"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.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Loading data...",
diff --git a/apps/presentationeditor/mobile/locale/ms.json b/apps/presentationeditor/mobile/locale/ms.json
index 5bbfbbb95..d77e25f3b 100644
--- a/apps/presentationeditor/mobile/locale/ms.json
+++ b/apps/presentationeditor/mobile/locale/ms.json
@@ -172,7 +172,14 @@
"uploadImageExtMessage": "Format imej yang tidak diketahui.",
"uploadImageFileCountMessage": "Tiada Imej dimuat naik.",
"uploadImageSizeMessage": "Imej terlalu besar. Saiz maksimum adalah 25 MB.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Data dimuatkan…",
diff --git a/apps/presentationeditor/mobile/locale/nb.json b/apps/presentationeditor/mobile/locale/nb.json
index 867375190..4e150b4ac 100644
--- a/apps/presentationeditor/mobile/locale/nb.json
+++ b/apps/presentationeditor/mobile/locale/nb.json
@@ -172,7 +172,14 @@
"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.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Loading data...",
diff --git a/apps/presentationeditor/mobile/locale/nl.json b/apps/presentationeditor/mobile/locale/nl.json
index 6b965d672..65b5ddfd8 100644
--- a/apps/presentationeditor/mobile/locale/nl.json
+++ b/apps/presentationeditor/mobile/locale/nl.json
@@ -172,7 +172,14 @@
"uploadImageExtMessage": "Onbekende afbeeldingsindeling.",
"uploadImageFileCountMessage": "Geen afbeeldingen geüpload.",
"uploadImageSizeMessage": "De afbeelding is te groot. De maximale grootte is 25MB.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Gegevens worden geladen...",
diff --git a/apps/presentationeditor/mobile/locale/pl.json b/apps/presentationeditor/mobile/locale/pl.json
index 867375190..4e150b4ac 100644
--- a/apps/presentationeditor/mobile/locale/pl.json
+++ b/apps/presentationeditor/mobile/locale/pl.json
@@ -172,7 +172,14 @@
"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.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Loading data...",
diff --git a/apps/presentationeditor/mobile/locale/pt-pt.json b/apps/presentationeditor/mobile/locale/pt-pt.json
index e5d88752c..fd957f8ec 100644
--- a/apps/presentationeditor/mobile/locale/pt-pt.json
+++ b/apps/presentationeditor/mobile/locale/pt-pt.json
@@ -172,7 +172,14 @@
"unknownErrorText": "Erro desconhecido.",
"uploadImageExtMessage": "Formato de imagem desconhecido.",
"uploadImageFileCountMessage": "Nenhuma imagem foi carregada.",
- "uploadImageSizeMessage": "A imagem é muito grande. O tamanho máximo é de 25 MB."
+ "uploadImageSizeMessage": "A imagem é muito grande. O tamanho máximo é de 25 MB.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "A carregar dados...",
diff --git a/apps/presentationeditor/mobile/locale/pt.json b/apps/presentationeditor/mobile/locale/pt.json
index 39153e306..71f0a2e24 100644
--- a/apps/presentationeditor/mobile/locale/pt.json
+++ b/apps/presentationeditor/mobile/locale/pt.json
@@ -151,6 +151,11 @@
"errorEditingDownloadas": "Ocorreu um erro durante o trabalho com o documento. Use a opção 'Download' para salvar a cópia de backup do arquivo localmente.",
"errorFilePassProtect": "O arquivo é protegido por senha e não pôde ser aberto.",
"errorFileSizeExceed": "O tamanho do arquivo excede o limite do servidor. Entre em contato com o administrador.",
+ "errorInconsistentExt": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo não corresponde à extensão do arquivo.",
+ "errorInconsistentExtDocx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a documentos de texto (por exemplo, docx), mas o arquivo tem a extensão inconsistente: %1.",
+ "errorInconsistentExtPdf": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a um dos seguintes formatos: pdf/djvu/xps/oxps, mas o arquivo tem a extensão inconsistente: %1.",
+ "errorInconsistentExtPptx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a apresentações (por exemplo, pptx), mas o arquivo tem a extensão inconsistente: %1.",
+ "errorInconsistentExtXlsx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a planilhas (por exemplo, xlsx), mas o arquivo tem a extensão inconsistente: %1.",
"errorKeyEncrypt": "Descritor de chave desconhecido",
"errorKeyExpire": "Descritor de chave expirado",
"errorLoadingFont": "As fontes não foram carregadas. Entre em contato com o administrador do Document Server.",
@@ -172,11 +177,14 @@
"unknownErrorText": "Erro desconhecido.",
"uploadImageExtMessage": "Formato de imagem desconhecido.",
"uploadImageFileCountMessage": "Sem imagens carregadas.",
- "uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB."
+ "uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Carregando dados...",
"applyChangesTitleText": "Carregando dados",
+ "confirmMaxChangesSize": "O tamanho das ações excede a limitação definida para seu servidor. Pressione \"Desfazer\" para cancelar sua última ação ou pressione \"Continue\" para manter a ação localmente (você precisa baixar o arquivo ou copiar seu conteúdo para garantir que nada seja perdido).",
"downloadTextText": "Baixando documento...",
"downloadTitleText": "Baixando documento",
"loadFontsTextText": "Carregando dados...",
@@ -199,14 +207,13 @@
"savePreparingTitle": "Preparando para salvar. Aguarde...",
"saveTextText": "Salvando documento...",
"saveTitleText": "Salvando documento",
+ "textContinue": "Continuar",
"textLoadingDocument": "Carregando documento",
+ "textUndo": "Desfazer",
"txtEditingMode": "Definir modo de edição...",
"uploadImageTextText": "Carregando imagem...",
"uploadImageTitleText": "Carregando imagem",
- "waitText": "Por favor, aguarde...",
- "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server. Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
- "textContinue": "Continue",
- "textUndo": "Undo"
+ "waitText": "Por favor, aguarde..."
},
"Toolbar": {
"dlgLeaveMsgText": "Você tem alterações não salvas neste documento. Clique em 'Permanecer nesta página' para aguardar o salvamento automático. Clique em 'Sair desta página' para descartar todas as alterações não salvas.",
diff --git a/apps/presentationeditor/mobile/locale/ro.json b/apps/presentationeditor/mobile/locale/ro.json
index fd1824bd8..604e90e9f 100644
--- a/apps/presentationeditor/mobile/locale/ro.json
+++ b/apps/presentationeditor/mobile/locale/ro.json
@@ -172,7 +172,14 @@
"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.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Încărcarea datelor...",
diff --git a/apps/presentationeditor/mobile/locale/ru.json b/apps/presentationeditor/mobile/locale/ru.json
index afc5ed7b9..85c6ce085 100644
--- a/apps/presentationeditor/mobile/locale/ru.json
+++ b/apps/presentationeditor/mobile/locale/ru.json
@@ -151,6 +151,11 @@
"errorEditingDownloadas": "В ходе работы с документом произошла ошибка. Используйте опцию 'Скачать', чтобы сохранить резервную копию файла локально.",
"errorFilePassProtect": "Файл защищен паролем и не может быть открыт.",
"errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера. Пожалуйста, обратитесь к администратору.",
+ "errorInconsistentExt": "При открытии файла произошла ошибка. Содержимое файла не соответствует расширению файла.",
+ "errorInconsistentExtDocx": "При открытии файла произошла ошибка. Содержимое файла соответствует документам (например, docx), но файл имеет несоответствующее расширение: %1.",
+ "errorInconsistentExtPdf": "При открытии файла произошла ошибка. Содержимое файла соответствует одному из следующих форматов: pdf/djvu/xps/oxps, но файл имеет несоответствующее расширение: %1.",
+ "errorInconsistentExtPptx": "При открытии файла произошла ошибка. Содержимое файла соответствует презентациям (например, pptx), но файл имеет несоответствующее расширение: %1.",
+ "errorInconsistentExtXlsx": "При открытии файла произошла ошибка. Содержимое файла соответствует электронным таблицам (например, xlsx), но файл имеет несоответствующее расширение: %1.",
"errorKeyEncrypt": "Неизвестный дескриптор ключа",
"errorKeyExpire": "Срок действия дескриптора ключа истек",
"errorLoadingFont": "Шрифты не загружены. Пожалуйста, обратитесь к администратору Сервера документов.",
@@ -158,6 +163,8 @@
"errorSessionIdle": "Документ долгое время не редактировался. Пожалуйста, обновите страницу.",
"errorSessionToken": "Подключение к серверу было прервано. Пожалуйста, обновите страницу.",
"errorStockChart": "Неверный порядок строк. Чтобы создать биржевую диаграмму, расположите данные на листе в следующем порядке: цена открытия, максимальная цена, минимальная цена, цена закрытия.",
+ "errorToken": "Токен безопасности документа имеет неправильный формат. Пожалуйста, обратитесь к администратору Сервера документов.",
+ "errorTokenExpire": "Истек срок действия токена безопасности документа. Пожалуйста, обратитесь к администратору Сервера документов.",
"errorUpdateVersionOnDisconnect": "Соединение было восстановлено, и версия файла изменилась. Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.",
"errorUserDrop": "В настоящий момент файл недоступен.",
"errorUsersExceed": "Превышено количество пользователей, разрешенных согласно тарифному плану",
diff --git a/apps/presentationeditor/mobile/locale/sk.json b/apps/presentationeditor/mobile/locale/sk.json
index d84fc5027..420712cd1 100644
--- a/apps/presentationeditor/mobile/locale/sk.json
+++ b/apps/presentationeditor/mobile/locale/sk.json
@@ -172,7 +172,14 @@
"uploadImageExtMessage": "Neznámy formát obrázka.",
"uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.",
"uploadImageSizeMessage": "Obrázok je príliš veľký. Maximálna veľkosť je 25 MB.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Načítavanie dát...",
diff --git a/apps/presentationeditor/mobile/locale/sl.json b/apps/presentationeditor/mobile/locale/sl.json
index 9a1578208..1363950dd 100644
--- a/apps/presentationeditor/mobile/locale/sl.json
+++ b/apps/presentationeditor/mobile/locale/sl.json
@@ -435,6 +435,11 @@
"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.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
"errorKeyEncrypt": "Unknown key descriptor",
"errorKeyExpire": "Key descriptor expired",
"errorLoadingFont": "Fonts are not loaded. Please contact your Document Server administrator.",
@@ -442,6 +447,8 @@
"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.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
"errorUpdateVersionOnDisconnect": "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",
diff --git a/apps/presentationeditor/mobile/locale/tr.json b/apps/presentationeditor/mobile/locale/tr.json
index 79b77db71..b59623131 100644
--- a/apps/presentationeditor/mobile/locale/tr.json
+++ b/apps/presentationeditor/mobile/locale/tr.json
@@ -172,7 +172,14 @@
"uploadImageExtMessage": "Bilinmeyen resim formatı.",
"uploadImageFileCountMessage": "Resim yüklenmedi.",
"uploadImageSizeMessage": "Görüntü çok büyük. Maksimum boyut 25 MB'dir.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Veri yükleniyor...",
diff --git a/apps/presentationeditor/mobile/locale/uk.json b/apps/presentationeditor/mobile/locale/uk.json
index 35952154a..2a3c8199d 100644
--- a/apps/presentationeditor/mobile/locale/uk.json
+++ b/apps/presentationeditor/mobile/locale/uk.json
@@ -153,6 +153,11 @@
"errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
"errorFilePassProtect": "The file is password protected and could not be opened.",
"errorFileSizeExceed": "The file size exceeds your server limitation. Please, contact your admin.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
"errorKeyEncrypt": "Unknown key descriptor",
"errorKeyExpire": "Key descriptor expired",
"errorLoadingFont": "Fonts are not loaded. Please contact your Document Server administrator.",
@@ -160,6 +165,8 @@
"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.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
"errorUpdateVersionOnDisconnect": "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",
diff --git a/apps/presentationeditor/mobile/locale/vi.json b/apps/presentationeditor/mobile/locale/vi.json
index 867375190..4e150b4ac 100644
--- a/apps/presentationeditor/mobile/locale/vi.json
+++ b/apps/presentationeditor/mobile/locale/vi.json
@@ -172,7 +172,14 @@
"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.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Loading data...",
diff --git a/apps/presentationeditor/mobile/locale/zh-tw.json b/apps/presentationeditor/mobile/locale/zh-tw.json
index 079b9d7ad..9f5472a8a 100644
--- a/apps/presentationeditor/mobile/locale/zh-tw.json
+++ b/apps/presentationeditor/mobile/locale/zh-tw.json
@@ -172,7 +172,14 @@
"uploadImageExtMessage": "圖片格式未知。",
"uploadImageFileCountMessage": "沒有上傳圖片。",
"uploadImageSizeMessage": "圖像超出最大大小限制。最大大小為25MB。",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "加載數據中...",
diff --git a/apps/presentationeditor/mobile/locale/zh.json b/apps/presentationeditor/mobile/locale/zh.json
index a30c3734b..8c40ef575 100644
--- a/apps/presentationeditor/mobile/locale/zh.json
+++ b/apps/presentationeditor/mobile/locale/zh.json
@@ -172,11 +172,19 @@
"unknownErrorText": "未知错误。",
"uploadImageExtMessage": "未知图像格式。",
"uploadImageFileCountMessage": "没有图片上传",
- "uploadImageSizeMessage": "超过了最大图片大小"
+ "uploadImageSizeMessage": "超过了最大图片大小",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "数据加载中…",
"applyChangesTitleText": "数据加载中",
+ "confirmMaxChangesSize": "行动的大小超过了对您服务器设置的限制。 按 \"撤消\"取消您的最后一次行动,或按\"继续\"在本地保留该行动(您需要下载文件或复制其内容以确保没有任何损失)。",
"downloadTextText": "正在下载文件...",
"downloadTitleText": "下载文件",
"loadFontsTextText": "数据加载中…",
@@ -199,14 +207,13 @@
"savePreparingTitle": "正在保存,请稍候...",
"saveTextText": "正在保存文档...",
"saveTitleText": "保存文件",
+ "textContinue": "发送",
"textLoadingDocument": "文件加载中…",
+ "textUndo": "撤消",
"txtEditingMode": "设置编辑模式..",
"uploadImageTextText": "图片上传中...",
"uploadImageTitleText": "图片上传中",
- "waitText": "请稍候...",
- "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server. Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
- "textContinue": "Continue",
- "textUndo": "Undo"
+ "waitText": "请稍候..."
},
"Toolbar": {
"dlgLeaveMsgText": "你在该文档中有未保存的修改。点击“留在该页”来等待自动保存。点击“离开该页”将舍弃全部未保存的更改。",
diff --git a/apps/presentationeditor/mobile/src/controller/Error.jsx b/apps/presentationeditor/mobile/src/controller/Error.jsx
index 8ae921b20..2741dd44e 100644
--- a/apps/presentationeditor/mobile/src/controller/Error.jsx
+++ b/apps/presentationeditor/mobile/src/controller/Error.jsx
@@ -3,7 +3,7 @@ import { inject } from 'mobx-react';
import { f7 } from 'framework7-react';
import { useTranslation } from 'react-i18next';
-const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocument}) => {
+const ErrorController = inject('storeAppOptions','storePresentationInfo')(({storeAppOptions, storePresentationInfo, LoadingDocument}) => {
const { t } = useTranslation();
const _t = t("Error", { returnObjects: true });
@@ -88,11 +88,11 @@ const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocu
break;
case Asc.c_oAscError.ID.VKeyEncrypt:
- config.msg = _t.errorKeyEncrypt;
+ config.msg = _t.errorToken;
break;
case Asc.c_oAscError.ID.KeyExpire:
- config.msg = _t.errorKeyExpire;
+ config.msg = _t.errorTokenExpire;
break;
case Asc.c_oAscError.ID.UserCountExceed:
@@ -177,6 +177,20 @@ const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocu
config.msg = _t.errorDirectUrl;
break;
+ case Asc.c_oAscError.ID.ConvertationOpenFormat:
+ let docExt = storePresentationInfo.dataDoc ? storePresentationInfo.dataDoc.fileType || '' : '';
+ if (errData === 'pdf')
+ config.msg = _t.errorInconsistentExtPdf.replace('%1', docExt);
+ else if (errData === 'docx')
+ config.msg = _t.errorInconsistentExtDocx.replace('%1', docExt);
+ else if (errData === 'xlsx')
+ config.msg = _t.errorInconsistentExtXlsx.replace('%1', docExt);
+ else if (errData === 'pptx')
+ config.msg = _t.errorInconsistentExtPptx.replace('%1', docExt);
+ else
+ config.msg = _t.errorInconsistentExt;
+ break;
+
default:
config.msg = _t.errorDefaultMessage.replace('%1', id);
break;
diff --git a/apps/presentationeditor/mobile/src/index_dev.html b/apps/presentationeditor/mobile/src/index_dev.html
index 631114ced..d5996c297 100644
--- a/apps/presentationeditor/mobile/src/index_dev.html
+++ b/apps/presentationeditor/mobile/src/index_dev.html
@@ -26,6 +26,7 @@
<% if ( htmlWebpackPlugin.options.skeleton.htmlscript ) { %>
<% } %>
diff --git a/apps/spreadsheeteditor/embed/js/ApplicationController.js b/apps/spreadsheeteditor/embed/js/ApplicationController.js
index a479d3b58..474a9220e 100644
--- a/apps/spreadsheeteditor/embed/js/ApplicationController.js
+++ b/apps/spreadsheeteditor/embed/js/ApplicationController.js
@@ -526,6 +526,19 @@ SSE.ApplicationController = new(function(){
message = me.errorTokenExpire;
break;
+ case Asc.c_oAscError.ID.ConvertationOpenFormat:
+ if (errData === 'pdf')
+ message = me.errorInconsistentExtPdf.replace('%1', docConfig.fileType || '');
+ else if (errData === 'docx')
+ message = me.errorInconsistentExtDocx.replace('%1', docConfig.fileType || '');
+ else if (errData === 'xlsx')
+ message = me.errorInconsistentExtXlsx.replace('%1', docConfig.fileType || '');
+ else if (errData === 'pptx')
+ message = me.errorInconsistentExtPptx.replace('%1', docConfig.fileType || '');
+ else
+ message = me.errorInconsistentExt;
+ break;
+
default:
message = me.errorDefaultMessage.replace('%1', id);
break;
@@ -732,6 +745,11 @@ SSE.ApplicationController = new(function(){
errorForceSave: "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.",
errorLoadingFont: 'Fonts are not loaded. Please contact your Document Server administrator.',
errorTokenExpire: 'The document security token has expired. Please contact your Document Server administrator.',
- openErrorText: 'An error has occurred while opening the file'
+ openErrorText: 'An error has occurred while opening the file',
+ errorInconsistentExtDocx: 'An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.',
+ errorInconsistentExtXlsx: 'An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.',
+ errorInconsistentExtPptx: 'An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.',
+ errorInconsistentExtPdf: 'An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.',
+ errorInconsistentExt: 'An error has occurred while opening the file. The file content does not match the file extension.'
}
})();
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/embed/locale/de.json b/apps/spreadsheeteditor/embed/locale/de.json
index 1088ab59e..2ae1305d3 100644
--- a/apps/spreadsheeteditor/embed/locale/de.json
+++ b/apps/spreadsheeteditor/embed/locale/de.json
@@ -15,6 +15,11 @@
"SSE.ApplicationController.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.",
"SSE.ApplicationController.errorFileSizeExceed": "Die Dateigröße überschreitet die für Ihren Server festgelegte Größe. Weitere Informationen können Sie von Ihrem Document Server-Administrator erhalten.",
"SSE.ApplicationController.errorForceSave": "Beim Speichern der Datei ist ein Fehler aufgetreten. Verwenden Sie die Option \"Herunterladen als\", um die Datei auf Ihrer Computerfestplatte zu speichern oder versuchen Sie es später erneut.",
+ "SSE.ApplicationController.errorInconsistentExt": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei stimmt nicht mit der Dateierweiterung überein.",
+ "SSE.ApplicationController.errorInconsistentExtDocx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Textdokumenten (z.B. docx), aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "SSE.ApplicationController.errorInconsistentExtPdf": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht einem der folgenden Formate: pdf/djvu/xps/oxps, aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "SSE.ApplicationController.errorInconsistentExtPptx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Präsentationen (z.B. pptx), aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "SSE.ApplicationController.errorInconsistentExtXlsx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Tabellenkalkulationen (z.B. xlsx), aber die Datei hat die inkonsistente Erweiterung: %1.",
"SSE.ApplicationController.errorLoadingFont": "Schriftarten nicht hochgeladen. Bitte wenden Sie sich an Administratoren von Ihrem Document Server.",
"SSE.ApplicationController.errorTokenExpire": "Sicherheitstoken des Dokuments ist abgelaufen. Wenden Sie sich an Ihren Serveradministrator.",
"SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Die Internetverbindung wurde wiederhergestellt und die Dateiversion wurde geändert. Bevor Sie weiterarbeiten können, müssen Sie die Datei herunterladen oder den Inhalt kopieren, um sicherzustellen, dass nichts verloren geht, und diese Seite anschließend neu laden.",
diff --git a/apps/spreadsheeteditor/embed/locale/en.json b/apps/spreadsheeteditor/embed/locale/en.json
index 1a99fee2a..29a9aed10 100644
--- a/apps/spreadsheeteditor/embed/locale/en.json
+++ b/apps/spreadsheeteditor/embed/locale/en.json
@@ -15,6 +15,11 @@
"SSE.ApplicationController.errorFilePassProtect": "The file is password protected and cannot be opened.",
"SSE.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server. Please contact your Document Server administrator for details.",
"SSE.ApplicationController.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.",
+ "SSE.ApplicationController.errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "SSE.ApplicationController.errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "SSE.ApplicationController.errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "SSE.ApplicationController.errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "SSE.ApplicationController.errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
"SSE.ApplicationController.errorLoadingFont": "Fonts are not loaded. Please contact your Document Server administrator.",
"SSE.ApplicationController.errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
"SSE.ApplicationController.errorUpdateVersionOnDisconnect": "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.",
diff --git a/apps/spreadsheeteditor/embed/locale/fr.json b/apps/spreadsheeteditor/embed/locale/fr.json
index 5d535da79..2e9ad3090 100644
--- a/apps/spreadsheeteditor/embed/locale/fr.json
+++ b/apps/spreadsheeteditor/embed/locale/fr.json
@@ -15,6 +15,11 @@
"SSE.ApplicationController.errorFilePassProtect": "Le fichier est protégé par un mot de passe et ne peut pas être ouvert.",
"SSE.ApplicationController.errorFileSizeExceed": "La taille du fichier dépasse les limites paramétrées sur votre serveur. Veuillez contacter votre administrateur de Document Server pour obtenir plus d'informations. ",
"SSE.ApplicationController.errorForceSave": "Une erreur est survenue lors de l'enregistrement du fichier. Veuillez utiliser l'option «Télécharger en tant que» pour enregistrer le fichier sur le disque dur de votre ordinateur ou réessayer plus tard.",
+ "SSE.ApplicationController.errorInconsistentExt": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier ne correspond pas à l'extension du fichier.",
+ "SSE.ApplicationController.errorInconsistentExtDocx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des documents texte (par exemple docx), mais le fichier a une extension incohérente : %1.",
+ "SSE.ApplicationController.errorInconsistentExtPdf": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à l'un des formats suivants : pdf/djvu/xps/oxps, mais le fichier a l'extension incohérente : %1.",
+ "SSE.ApplicationController.errorInconsistentExtPptx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des présentations (par exemple pptx), mais le fichier a une extension incohérente : %1.",
+ "SSE.ApplicationController.errorInconsistentExtXlsx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des feuilles de calcul (par exemple xlsx), mais le fichier a une extension incohérente : %1.",
"SSE.ApplicationController.errorLoadingFont": "Les polices ne sont pas téléchargées. Veuillez contacter l'administrateur de Document Server.",
"SSE.ApplicationController.errorTokenExpire": "Le jeton de sécurité du document a expiré. Veuillez contactez l'administrateur de Document Server.",
"SSE.ApplicationController.errorUpdateVersionOnDisconnect": "La connexion a été rétablie et la version du fichier a été modifiée. Avant de pouvoir continuer à travailler, vous devez télécharger le fichier ou copier son contenu pour vous assurer que rien n'est perdu, puis recharger cette page.",
diff --git a/apps/spreadsheeteditor/embed/locale/hy.json b/apps/spreadsheeteditor/embed/locale/hy.json
index a951b5ebf..f3544ae7c 100644
--- a/apps/spreadsheeteditor/embed/locale/hy.json
+++ b/apps/spreadsheeteditor/embed/locale/hy.json
@@ -15,6 +15,11 @@
"SSE.ApplicationController.errorFilePassProtect": "Ֆայլն ունի գաղտնաբառ և չի կարող բացվել։",
"SSE.ApplicationController.errorFileSizeExceed": "Ֆայլի չափը գերազանցում է ձեր սերվերի համար սահմանված սահմանափակումը: Մանրամասների համար խնդրում ենք կապվել Ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:",
"SSE.ApplicationController.errorForceSave": "Սխալ է տեղի ունեցել ֆայլը պահելիս:Խնդրում ենք օգտագործել «Ներբեռնել որպես» տարբերակը՝ ֆայլը ձեր համակարգչի կոշտ սկավառակում պահելու համար կամ ավելի ուշ նորից փորձեք:",
+ "SSE.ApplicationController.errorInconsistentExt": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը չի համապատասխանում ֆայլի ընդլայնմանը:",
+ "SSE.ApplicationController.errorInconsistentExtDocx": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը համապատասխանում է տեքստային փաստաթղթերին (օրինակ՝ docx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում՝ %1:",
+ "SSE.ApplicationController.errorInconsistentExtPdf": "Ֆայլը բացելիս սխալ է տեղի ունեցել:Ֆայլի բովանդակությունը համապատասխանում է հետևյալ ձևաչափերից մեկին՝pdf/djvu/xps/oxps,բայց ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
+ "SSE.ApplicationController.errorInconsistentExtPptx": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը համապատասխանում է ներկայացումներին (օրինակ՝ pptx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
+ "SSE.ApplicationController.errorInconsistentExtXlsx": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը համապատասխանում է աղյուսակներին (օր. xlsx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
"SSE.ApplicationController.errorLoadingFont": "Տառատեսակները բեռնված չեն: Խնդրում ենք կապվել ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:",
"SSE.ApplicationController.errorTokenExpire": "Փաստաթղթի անվտանգության կտրոնի ժամկետն անցել է։ Դիմեք փաստաթղթերի սպասարկիչի ձեր վարիչին։",
"SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Կապը վերահաստատվել է,և ֆայլի տարբերակը փոխվել է։ Նախքան աշխատանքը շարունակելը ներբեռնեք ֆայլը կամ պատճենեք դրա պարունակությունը՝ վստահ լինելու, որ ոչինչ չի կորել, և ապա նորից բեռնեք այս էջը։",
diff --git a/apps/spreadsheeteditor/embed/locale/pt.json b/apps/spreadsheeteditor/embed/locale/pt.json
index 4292965d0..f9d21b111 100644
--- a/apps/spreadsheeteditor/embed/locale/pt.json
+++ b/apps/spreadsheeteditor/embed/locale/pt.json
@@ -15,6 +15,11 @@
"SSE.ApplicationController.errorFilePassProtect": "O documento está protegido por senha e não pode ser aberto.",
"SSE.ApplicationController.errorFileSizeExceed": "O tamanho do arquivo excede o limite de seu servidor. Por favor, contate seu administrador de Servidor de Documentos para detalhes.",
"SSE.ApplicationController.errorForceSave": "Ocorreu um erro na gravação. Favor utilizar a opção 'Baixar como' para gravar o arquivo em seu computador ou tente novamente mais tarde.",
+ "SSE.ApplicationController.errorInconsistentExt": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo não corresponde à extensão do arquivo.",
+ "SSE.ApplicationController.errorInconsistentExtDocx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a documentos de texto (por exemplo, docx), mas o arquivo tem a extensão inconsistente: %1.",
+ "SSE.ApplicationController.errorInconsistentExtPdf": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a um dos seguintes formatos: pdf/djvu/xps/oxps, mas o arquivo tem a extensão inconsistente: %1.",
+ "SSE.ApplicationController.errorInconsistentExtPptx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a apresentações (por exemplo, pptx), mas o arquivo tem a extensão inconsistente: %1.",
+ "SSE.ApplicationController.errorInconsistentExtXlsx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a planilhas (por exemplo, xlsx), mas o arquivo tem a extensão inconsistente: %1.",
"SSE.ApplicationController.errorLoadingFont": "As fontes não foram carregadas. Entre em contato com o administrador do Document Server.",
"SSE.ApplicationController.errorTokenExpire": "O token de segurança do documento expirou. Entre em contato com o administrador do Document Server.",
"SSE.ApplicationController.errorUpdateVersionOnDisconnect": "A conexão à internet foi restabelecida, e a versão do arquivo foi alterada. Antes de continuar seu trabalho, transfira o arquivo ou copie seu conteúdo para assegurar que nada seja perdido, e recarregue esta página.",
diff --git a/apps/spreadsheeteditor/embed/locale/ru.json b/apps/spreadsheeteditor/embed/locale/ru.json
index a9b157c5b..dc0d8d88a 100644
--- a/apps/spreadsheeteditor/embed/locale/ru.json
+++ b/apps/spreadsheeteditor/embed/locale/ru.json
@@ -15,6 +15,11 @@
"SSE.ApplicationController.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.",
"SSE.ApplicationController.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера. Обратитесь к администратору Сервера документов для получения дополнительной информации.",
"SSE.ApplicationController.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.",
+ "SSE.ApplicationController.errorInconsistentExt": "При открытии файла произошла ошибка. Содержимое файла не соответствует расширению файла.",
+ "SSE.ApplicationController.errorInconsistentExtDocx": "При открытии файла произошла ошибка. Содержимое файла соответствует документам (например, docx), но файл имеет несоответствующее расширение: %1.",
+ "SSE.ApplicationController.errorInconsistentExtPdf": "При открытии файла произошла ошибка. Содержимое файла соответствует одному из следующих форматов: pdf/djvu/xps/oxps, но файл имеет несоответствующее расширение: %1.",
+ "SSE.ApplicationController.errorInconsistentExtPptx": "При открытии файла произошла ошибка. Содержимое файла соответствует презентациям (например, pptx), но файл имеет несоответствующее расширение: %1.",
+ "SSE.ApplicationController.errorInconsistentExtXlsx": "При открытии файла произошла ошибка. Содержимое файла соответствует электронным таблицам (например, xlsx), но файл имеет несоответствующее расширение: %1.",
"SSE.ApplicationController.errorLoadingFont": "Шрифты не загружены. Пожалуйста, обратитесь к администратору Сервера документов.",
"SSE.ApplicationController.errorTokenExpire": "Истек срок действия токена безопасности документа. Пожалуйста, обратитесь к администратору Сервера документов.",
"SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Соединение было восстановлено, и версия файла изменилась. Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.",
diff --git a/apps/spreadsheeteditor/main/app/controller/DataTab.js b/apps/spreadsheeteditor/main/app/controller/DataTab.js
index d1b023d43..0e36b5a07 100644
--- a/apps/spreadsheeteditor/main/app/controller/DataTab.js
+++ b/apps/spreadsheeteditor/main/app/controller/DataTab.js
@@ -63,6 +63,13 @@ define([
this._state = {
CSVOptions: new Asc.asc_CTextOptions(0, 4, '')
};
+ this.externalData = {
+ stackRequests: [],
+ stackResponse: [],
+ callback: undefined,
+ isUpdating: false,
+ linkStatus: {}
+ };
},
onLaunch: function () {
},
@@ -106,6 +113,13 @@ define([
});
Common.NotificationCenter.on('data:remduplicates', _.bind(this.onRemoveDuplicates, this));
Common.NotificationCenter.on('data:sortcustom', _.bind(this.onCustomSort, this));
+ if (this.toolbar.mode.canRequestReferenceData && this.api) {
+ // this.api.asc_registerCallback('asc_onNeedUpdateExternalReferenceOnOpen', _.bind(this.onNeedUpdateExternalReferenceOnOpen, this));
+ this.api.asc_registerCallback('asc_onStartUpdateExternalReference', _.bind(this.onStartUpdateExternalReference, this));
+ this.api.asc_registerCallback('asc_onUpdateExternalReference', _.bind(this.onUpdateExternalReference, this));
+ this.api.asc_registerCallback('asc_onErrorUpdateExternalReference', _.bind(this.onErrorUpdateExternalReference, this));
+ Common.Gateway.on('setreferencedata', _.bind(this.setReferenceData, this));
+ }
},
SetDisabled: function(state) {
@@ -432,12 +446,91 @@ define([
},
onExternalLinks: function() {
- (new SSE.Views.ExternalLinksDlg({
+ var me = this;
+ this.externalLinksDlg = (new SSE.Views.ExternalLinksDlg({
api: this.api,
+ isUpdating: this.externalData.isUpdating,
handler: function(result) {
Common.NotificationCenter.trigger('edit:complete');
}
- })).show();
+ }));
+ this.externalLinksDlg.on('close', function(win){
+ me.externalLinksDlg = null;
+ })
+ this.externalLinksDlg.show()
+ },
+
+ onUpdateExternalReference: function(arr, callback) {
+ if (this.toolbar.mode.isEdit && this.toolbar.editMode) {
+ var me = this;
+ me.externalData = {
+ stackRequests: [],
+ stackResponse: [],
+ callback: undefined,
+ isUpdating: false,
+ linkStatus: {}
+ };
+ arr && arr.length>0 && arr.forEach(function(item) {
+ var data;
+ switch (item.asc_getType()) {
+ case Asc.c_oAscExternalReferenceType.link:
+ data = {link: item.asc_getData()};
+ break;
+ case Asc.c_oAscExternalReferenceType.path:
+ data = {path: item.asc_getData()};
+ break;
+ case Asc.c_oAscExternalReferenceType.referenceData:
+ data = {referenceData: item.asc_getData()};
+ break;
+ }
+ data && me.externalData.stackRequests.push({data: data, id: item.asc_getId(), isExternal: item.asc_isExternalLink()});
+ });
+ me.externalData.callback = callback;
+ me.requestReferenceData();
+ }
+ },
+
+ requestReferenceData: function() {
+ if (this.externalData.stackRequests.length>0) {
+ var item = this.externalData.stackRequests.shift();
+ this.externalData.linkStatus.id = item.id;
+ this.externalData.linkStatus.isExternal = item.isExternal;
+ Common.Gateway.requestReferenceData(item.data);
+ }
+ },
+
+ setReferenceData: function(data) {
+ if (this.toolbar.mode.isEdit && this.toolbar.editMode) {
+ if (data) {
+ this.externalData.stackResponse.push(data);
+ this.externalData.linkStatus.result = this.externalData.linkStatus.isExternal ? '' : data.error || '';
+ if (this.externalLinksDlg) {
+ this.externalLinksDlg.setLinkStatus(this.externalData.linkStatus.id, this.externalData.linkStatus.result);
+ }
+ }
+ if (this.externalData.stackRequests.length>0)
+ this.requestReferenceData();
+ else if (this.externalData.callback)
+ this.externalData.callback(this.externalData.stackResponse);
+ }
+ },
+
+ onStartUpdateExternalReference: function(status) {
+ this.externalData.isUpdating = status;
+ if (this.externalLinksDlg) {
+ this.externalLinksDlg.setIsUpdating(status);
+ }
+ },
+
+ onNeedUpdateExternalReferenceOnOpen: function() {
+ var links = this.api.asc_getExternalReferences();
+ links && (links.length>0) && this.api.asc_updateExternalReferences(links);
+ },
+
+ onErrorUpdateExternalReference: function(id) {
+ if (this.externalLinksDlg) {
+ this.externalLinksDlg.setLinkStatus(id, this.txtErrorExternalLink);
+ }
},
onWorksheetLocked: function(index,locked) {
@@ -481,7 +574,8 @@ define([
txtRemoveDataValidation: 'The selection contains more than one type of validation. Erase current settings and continue?',
textEmptyUrl: 'You need to specify URL.',
txtImportWizard: 'Text Import Wizard',
- txtUrlTitle: 'Paste a data URL'
+ txtUrlTitle: 'Paste a data URL',
+ txtErrorExternalLink: 'Error: updating is failed'
}, SSE.Controllers.DataTab || {}));
});
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js
index c895ba0f8..5a2c0d5d6 100644
--- a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js
+++ b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js
@@ -119,11 +119,7 @@ define([
me._state = {wsLock: false, wsProps: []};
me.fastcoauthtips = [];
me._TtHeight = 20;
- me.externalData = {
- stackRequests: [],
- stackResponse: [],
- callback: undefined
- };
+
/** coauthoring begin **/
this.wrapEvents = {
apiHideComment: _.bind(this.onApiHideComment, this),
@@ -380,10 +376,6 @@ define([
this.api.asc_registerCallback('asc_onShowPivotGroupDialog', _.bind(this.onShowPivotGroupDialog, this));
if (!this.permissions.isEditMailMerge && !this.permissions.isEditDiagram && !this.permissions.isEditOle)
this.api.asc_registerCallback('asc_doubleClickOnTableOleObject', _.bind(this.onDoubleClickOnTableOleObject, this));
- if (this.permissions.canRequestReferenceData) {
- this.api.asc_registerCallback('asc_onUpdateExternalReference', _.bind(this.onUpdateExternalReference, this));
- Common.Gateway.on('setreferencedata', _.bind(this.setReferenceData, this));
- }
this.api.asc_registerCallback('asc_onShowMathTrack', _.bind(this.onShowMathTrack, this));
this.api.asc_registerCallback('asc_onHideMathTrack', _.bind(this.onHideMathTrack, this));
}
@@ -4268,51 +4260,6 @@ define([
}
},
- onUpdateExternalReference: function(arr, callback) {
- if (this.permissions.isEdit && !this._isDisabled) {
- var me = this;
- me.externalData = {
- stackRequests: [],
- stackResponse: [],
- callback: undefined
- };
- arr && arr.length>0 && arr.forEach(function(item) {
- var data;
- switch (item.asc_getType()) {
- case Asc.c_oAscExternalReferenceType.link:
- data = {link: item.asc_getData()};
- break;
- case Asc.c_oAscExternalReferenceType.path:
- data = {path: item.asc_getData()};
- break;
- case Asc.c_oAscExternalReferenceType.referenceData:
- data = {referenceData: item.asc_getData()};
- break;
- }
- data && me.externalData.stackRequests.push(data);
- });
- me.externalData.callback = callback;
- me.requestReferenceData();
- }
- },
-
- requestReferenceData: function() {
- if (this.externalData.stackRequests.length>0) {
- var data = this.externalData.stackRequests.shift();
- Common.Gateway.requestReferenceData(data);
- }
- },
-
- setReferenceData: function(data) {
- if (this.permissions.isEdit && !this._isDisabled) {
- data && this.externalData.stackResponse.push(data);
- if (this.externalData.stackRequests.length>0)
- this.requestReferenceData();
- else if (this.externalData.callback)
- this.externalData.callback(this.externalData.stackResponse);
- }
- },
-
onShowMathTrack: function(bounds) {
if (bounds[3] < 0) {
this.onHideMathTrack();
@@ -4348,7 +4295,7 @@ define([
store: group.get('groupStore'),
scrollAlwaysVisible: true,
showLast: false,
- restoreHeight: group.get('groupHeight') ? parseInt(group.get('groupHeight')) : true,
+ restoreHeight: 450,
itemTemplate: _.template(
'
' +
'' +
@@ -4362,6 +4309,12 @@ define([
});
menu.off('show:before', onShowBefore);
};
+ var bringForward = function (menu) {
+ eqContainer.addClass('has-open-menu');
+ };
+ var sendBackward = function (menu) {
+ eqContainer.removeClass('has-open-menu');
+ };
for (var i = 0; i < equationsStore.length; ++i) {
var equationGroup = equationsStore.at(i);
var btn = new Common.UI.Button({
@@ -4381,6 +4334,8 @@ define([
})
});
btn.menu.on('show:before', onShowBefore);
+ btn.menu.on('show:before', bringForward);
+ btn.menu.on('hide:after', sendBackward);
me.equationBtns.push(btn);
}
@@ -4410,8 +4365,14 @@ define([
if (showPoint[1]<0) {
showPoint[1] = bounds[3] + 10;
}
- eqContainer.css({left: showPoint[0], top : Math.min(me.tooltips.coauth.apiHeight - eqContainer.outerHeight(), Math.max(0, showPoint[1]))});
- // menu.menuAlign = validation ? 'tr-br' : 'tl-bl';
+ showPoint[1] = Math.min(me.tooltips.coauth.apiHeight - eqContainer.outerHeight(), Math.max(0, showPoint[1]));
+ eqContainer.css({left: showPoint[0], top : showPoint[1]});
+
+ var menuAlign = (me.tooltips.coauth.apiHeight - showPoint[1] - eqContainer.outerHeight() < 220) ? 'bl-tl' : 'tl-bl';
+ me.equationBtns.forEach(function(item){
+ item && (item.menu.menuAlign = menuAlign);
+ });
+ me.equationSettingsBtn.menu.menuAlign = menuAlign;
if (eqContainer.is(':visible')) {
if (me.equationSettingsBtn.menu.isVisible()) {
me.equationSettingsBtn.menu.options.initMenu();
diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js
index 9ffd6e90b..be6774232 100644
--- a/apps/spreadsheeteditor/main/app/controller/Main.js
+++ b/apps/spreadsheeteditor/main/app/controller/Main.js
@@ -377,6 +377,19 @@ define([
Common.Utils.InternalSettings.set("guest-username", value);
Common.Utils.InternalSettings.set("save-guest-username", !!value);
}
+ if (this.appOptions.customization.font) {
+ if (this.appOptions.customization.font.name && typeof this.appOptions.customization.font.name === 'string') {
+ var arr = this.appOptions.customization.font.name.split(',');
+ for (var i=0; iDo you want to continue?',
confirmMaxChangesSize: 'The size of actions exceeds the limitation set for your server. Press "Undo" to cancel your last action or press "Continue" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).',
textUndo: 'Undo',
- textContinue: 'Continue'
+ textContinue: 'Continue',
+ errorInconsistentExtDocx: 'An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.',
+ errorInconsistentExtXlsx: 'An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.',
+ errorInconsistentExtPptx: 'An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.',
+ errorInconsistentExtPdf: 'An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.',
+ errorInconsistentExt: 'An error has occurred while opening the file. The file content does not match the file extension.'
}
})(), SSE.Controllers.Main || {}))
});
diff --git a/apps/spreadsheeteditor/main/app/controller/Toolbar.js b/apps/spreadsheeteditor/main/app/controller/Toolbar.js
index 5145a10cf..23b3f89b2 100644
--- a/apps/spreadsheeteditor/main/app/controller/Toolbar.js
+++ b/apps/spreadsheeteditor/main/app/controller/Toolbar.js
@@ -2054,7 +2054,7 @@ define([
}
};
shortcuts['command+shift+=,ctrl+shift+=' + (Common.Utils.isGecko ? ',command+shift+ff=,ctrl+shift+ff=' : '')] = function(e) {
- if (me.editMode && !me.toolbar.btnAddCell.isDisabled()) {
+ if (me.editMode && !me.toolbar.mode.isEditMailMerge && !me.toolbar.mode.isEditDiagram && !me.toolbar.mode.isEditOle && !me.toolbar.btnAddCell.isDisabled()) {
var cellinfo = me.api.asc_getCellInfo(),
selectionType = cellinfo.asc_getSelectionType();
if (selectionType === Asc.c_oAscSelectionType.RangeRow || selectionType === Asc.c_oAscSelectionType.RangeCol) {
@@ -2085,7 +2085,7 @@ define([
return false;
};
shortcuts['command+shift+-,ctrl+shift+-' + (Common.Utils.isGecko ? ',command+shift+ff-,ctrl+shift+ff-' : '')] = function(e) {
- if (me.editMode && !me.toolbar.btnDeleteCell.isDisabled()) {
+ if (me.editMode && !me.toolbar.mode.isEditMailMerge && !me.toolbar.mode.isEditDiagram && !me.toolbar.mode.isEditOle && !me.toolbar.btnDeleteCell.isDisabled()) {
var cellinfo = me.api.asc_getCellInfo(),
selectionType = cellinfo.asc_getSelectionType();
if (selectionType === Asc.c_oAscSelectionType.RangeRow || selectionType === Asc.c_oAscSelectionType.RangeCol) {
diff --git a/apps/spreadsheeteditor/main/app/view/ExternalLinksDlg.js b/apps/spreadsheeteditor/main/app/view/ExternalLinksDlg.js
index 41c7b68b7..254381bd1 100644
--- a/apps/spreadsheeteditor/main/app/view/ExternalLinksDlg.js
+++ b/apps/spreadsheeteditor/main/app/view/ExternalLinksDlg.js
@@ -75,7 +75,8 @@ define([
'',
'
'
+ ].join('')),
tabindex: 1
});
@@ -123,7 +135,8 @@ define([
}]
})
});
- $(this.btnUpdate.cmpEl.find('button')[0]).css('min-width', '87px');
+ var el = $(this.btnUpdate.cmpEl.find('button')[0]);
+ el.css('min-width', Math.max(87, el.outerWidth()) + 'px');
this.btnUpdate.on('click', _.bind(this.onUpdate, this));
this.btnUpdate.menu.on('item:click', _.bind(this.onUpdateMenu, this));
@@ -164,12 +177,20 @@ define([
afterRender: function() {
this._setDefaults();
+ this.api.asc_registerCallback('asc_onUpdateExternalReferenceList', this.wrapEvents.onUpdateExternalReferenceList);
+ this.isUpdating && this.setIsUpdating(this.isUpdating, true);
},
getFocusedComponents: function() {
return [ this.btnUpdate, this.btnDelete, this.btnOpen, this.btnChange, this.linksList ];
},
+ close: function () {
+ this.api.asc_unregisterCallback('asc_onUpdateExternalReferenceList', this.wrapEvents.onUpdateExternalReferenceList);
+
+ Common.Views.AdvancedSettingsWindow.prototype.close.call(this);
+ },
+
getDefaultFocusableComponent: function () {
return this.linksList;
},
@@ -184,26 +205,29 @@ define([
if (links) {
for (var i=0; i0) && this.linksList.selectByIndex(0);
- this.btnUpdate.setDisabled(this.linksList.store.length<1 || !this.linksList.getSelectedRec());
- this.btnDelete.setDisabled(this.linksList.store.length<1 || !this.linksList.getSelectedRec());
- this.btnOpen.setDisabled(this.linksList.store.length<1 || !this.linksList.getSelectedRec());
- this.btnChange.setDisabled(this.linksList.store.length<1 || !this.linksList.getSelectedRec());
+ this.updateButtons();
},
onUpdate: function() {
+ if (this.isUpdating) return;
+
var rec = this.linksList.getSelectedRec();
rec && this.api.asc_updateExternalReferences([rec.get('externalRef')]);
},
onUpdateMenu: function(menu, item) {
+ if (this.isUpdating) return;
+
if (item.value == 1) {
var arr = [];
this.linksList.store.each(function(item){
@@ -215,12 +239,16 @@ define([
},
onDelete: function() {
+ if (this.isUpdating) return;
+
var rec = this.linksList.getSelectedRec();
rec && this.api.asc_removeExternalReferences([rec.get('externalRef')]);
this.refreshList();
},
onDeleteMenu: function(menu, item) {
+ if (this.isUpdating) return;
+
if (item.value == 1) {
var arr = [];
this.linksList.store.each(function(item){
@@ -240,6 +268,40 @@ define([
},
+ updateButtons: function() {
+ var selected = this.linksList.store.length>0 && !!this.linksList.getSelectedRec();
+ this.btnUpdate.setDisabled(!selected || this.isUpdating);
+ this.btnDelete.setDisabled(!selected || this.isUpdating);
+ this.btnOpen.setDisabled(!selected || this.isUpdating);
+ this.btnChange.setDisabled(!selected || this.isUpdating);
+ },
+
+ setIsUpdating: function(status, immediately) {
+ console.log(status);
+ immediately = immediately || !status; // set timeout when start updating only
+ this.isUpdating = status;
+ if (!status && this.timerId) {
+ clearTimeout(this.timerId);
+ this.timerId = 0;
+ }
+ if (immediately) {
+ this.updateButtons();
+ this.btnUpdate.setCaption(status ? this.textUpdating : this.textUpdate);
+ } else if (!this.timerId) {
+ var me = this;
+ me.timerId = setTimeout(function () {
+ me.updateButtons();
+ me.btnUpdate.setCaption(status ? me.textUpdating : me.textUpdate);
+ },500);
+ }
+ !status && this.refreshList();
+ },
+
+ setLinkStatus: function(id, result) {
+ if (!id) return;
+ this.linkStatus[id] = result || this.textOk;
+ },
+
txtTitle: 'External Links',
textUpdate: 'Update Values',
textUpdateAll: 'Update All',
@@ -248,7 +310,11 @@ define([
textDelete: 'Break Links',
textDeleteAll: 'Break All Links',
textOpen: 'Open Source',
- textChange: 'Change Source'
+ textChange: 'Change Source',
+ textStatus: 'Status',
+ textOk: 'OK',
+ textUnknown: 'Unknown',
+ textUpdating: 'Updating...'
}, SSE.Views.ExternalLinksDlg || {}));
});
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/az.json b/apps/spreadsheeteditor/main/locale/az.json
index 6164c7665..38f5682ff 100644
--- a/apps/spreadsheeteditor/main/locale/az.json
+++ b/apps/spreadsheeteditor/main/locale/az.json
@@ -3282,7 +3282,7 @@
"SSE.Views.Toolbar.textTabInsert": "Daxil edin",
"SSE.Views.Toolbar.textTabLayout": "Düzüm",
"SSE.Views.Toolbar.textTabProtect": "Qoruma",
- "SSE.Views.Toolbar.textTabView": "Görünüş",
+ "SSE.Views.Toolbar.textTabView": "Baxış",
"SSE.Views.Toolbar.textThisPivot": "Yekun sahədən",
"SSE.Views.Toolbar.textThisSheet": "Bu iş vərəqindən",
"SSE.Views.Toolbar.textThisTable": "Bu cədvəldən",
@@ -3491,6 +3491,7 @@
"SSE.Views.ViewTab.textFreezeRow": "Üst Sətiri Dondur",
"SSE.Views.ViewTab.textGridlines": "Gridlines",
"SSE.Views.ViewTab.textHeadings": "Başlıqlar",
+ "SSE.Views.ViewTab.textInterfaceTheme": "İnterfeys mövzusu",
"SSE.Views.ViewTab.textManager": "Görünüş meneceri",
"SSE.Views.ViewTab.textUnFreeze": "Panellərdən Dondurmanı götür",
"SSE.Views.ViewTab.textZeros": "Sıfırları göstərin",
@@ -3498,6 +3499,7 @@
"SSE.Views.ViewTab.tipClose": "Vərəq görünüşünü bağlayın",
"SSE.Views.ViewTab.tipCreate": "Vərəq görünüşü yaradın",
"SSE.Views.ViewTab.tipFreeze": "Panelləri Dondur",
+ "SSE.Views.ViewTab.tipInterfaceTheme": "İnterfeys mövzusu",
"SSE.Views.ViewTab.tipSheetView": "Vərəq görünüşü",
"SSE.Views.WBProtection.hintAllowRanges": "Diapazonları redaktə etməyə icazə verin",
"SSE.Views.WBProtection.hintProtectSheet": "Vərəqi qoruyun",
diff --git a/apps/spreadsheeteditor/main/locale/be.json b/apps/spreadsheeteditor/main/locale/be.json
index a3cbac2c4..d39842189 100644
--- a/apps/spreadsheeteditor/main/locale/be.json
+++ b/apps/spreadsheeteditor/main/locale/be.json
@@ -242,6 +242,7 @@
"Common.Views.ReviewChanges.txtCommentRemMy": "Выдаліць мае каментары",
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Выдаліць мае бягучыя каментары",
"Common.Views.ReviewChanges.txtCommentRemove": "Выдаліць",
+ "Common.Views.ReviewChanges.txtCommentResolve": "Вырашыць",
"Common.Views.ReviewChanges.txtDocLang": "Мова",
"Common.Views.ReviewChanges.txtFinal": "Усе змены ўхваленыя (папярэдні прагляд)",
"Common.Views.ReviewChanges.txtFinalCap": "Выніковы дакумент",
@@ -1810,6 +1811,7 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Рэгіянальныя налады",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Прыклад:",
"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": "Выкарыстоўваць падзяляльнікі на базе рэгіянальных налад",
@@ -2833,6 +2835,7 @@
"SSE.Views.Toolbar.textPageMarginsCustom": "Адвольныя палі",
"SSE.Views.Toolbar.textPortrait": "Кніжная",
"SSE.Views.Toolbar.textPrint": "Друкаванне",
+ "SSE.Views.Toolbar.textPrintHeadings": "Друкаванне загалоўкаў",
"SSE.Views.Toolbar.textPrintOptions": "Налады друку",
"SSE.Views.Toolbar.textRight": "Правае:",
"SSE.Views.Toolbar.textRightBorders": "Правыя межы",
@@ -3054,10 +3057,12 @@
"SSE.Views.ViewTab.textFormula": "Панэль формул",
"SSE.Views.ViewTab.textGridlines": "Лініі сеткі",
"SSE.Views.ViewTab.textHeadings": "Загалоўкі",
+ "SSE.Views.ViewTab.textInterfaceTheme": "Тэма інтэрфейсу",
"SSE.Views.ViewTab.textManager": "Кіраўнік мініяцюр",
"SSE.Views.ViewTab.textZoom": "Маштаб",
"SSE.Views.ViewTab.tipClose": "Закрыць мініяцюру аркуша",
"SSE.Views.ViewTab.tipCreate": "Стварыць мініяцюру аркуша",
"SSE.Views.ViewTab.tipFreeze": "Замацаваць вобласці",
+ "SSE.Views.ViewTab.tipInterfaceTheme": "Тэма інтэрфейсу",
"SSE.Views.ViewTab.tipSheetView": "Мініяцюра аркуша"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/bg.json b/apps/spreadsheeteditor/main/locale/bg.json
index 0e709208c..3626f2266 100644
--- a/apps/spreadsheeteditor/main/locale/bg.json
+++ b/apps/spreadsheeteditor/main/locale/bg.json
@@ -115,6 +115,7 @@
"Common.Views.ImageFromUrlDialog.textUrl": "Поставете URL адрес на изображение:",
"Common.Views.ImageFromUrlDialog.txtEmpty": "Това поле е задължително",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Това поле трябва да е URL адрес във формат \"http://www.example.com\"",
+ "Common.Views.ListSettingsDialog.txtColor": "Цвят",
"Common.Views.OpenDialog.closeButtonText": "Затвори файла",
"Common.Views.OpenDialog.txtAdvanced": "Допълнително",
"Common.Views.OpenDialog.txtColon": "Дебело черво",
@@ -178,6 +179,7 @@
"Common.Views.ReviewChanges.txtChat": "Чат",
"Common.Views.ReviewChanges.txtClose": "Затвори",
"Common.Views.ReviewChanges.txtCoAuthMode": "Режим на съвместно редактиране",
+ "Common.Views.ReviewChanges.txtCommentRemove": "Премахване",
"Common.Views.ReviewChanges.txtDocLang": "Език",
"Common.Views.ReviewChanges.txtFinal": "Всички промени са приети (визуализация)",
"Common.Views.ReviewChanges.txtFinalCap": "Финал",
@@ -207,6 +209,7 @@
"Common.Views.ReviewPopover.txtDeleteTip": "Изтрий",
"Common.Views.SaveAsDlg.textLoading": "Зареждане",
"Common.Views.SaveAsDlg.textTitle": "Папка за запис",
+ "Common.Views.SearchPanel.textLookIn": "Погледни в",
"Common.Views.SearchPanel.textSheet": "Лист",
"Common.Views.SelectFileDlg.textLoading": "Зареждане",
"Common.Views.SelectFileDlg.textTitle": "Изберете източник на данни",
@@ -232,6 +235,7 @@
"Common.Views.SignSettingsDialog.textShowDate": "Покажете датата на знака в реда за подпис",
"Common.Views.SignSettingsDialog.textTitle": "Настройка на подпис",
"Common.Views.SignSettingsDialog.txtEmpty": "Това поле е задължително",
+ "SSE.Controllers.DataTab.textWizard": "Текст в колони",
"SSE.Controllers.DataTab.txtExpand": "Разширете",
"SSE.Controllers.DocumentHolder.alignmentText": "Подравняване",
"SSE.Controllers.DocumentHolder.centerText": "Център",
@@ -380,6 +384,10 @@
"SSE.Controllers.DocumentHolder.txtUndoExpansion": "Отмяна на автоматичното разширяване на таблицата",
"SSE.Controllers.DocumentHolder.txtUseTextImport": "Използване на съветника за импортиране на текст",
"SSE.Controllers.DocumentHolder.txtWidth": "Ширина",
+ "SSE.Controllers.FormulaDialog.sCategoryFinancial": "Финансов",
+ "SSE.Controllers.FormulaDialog.sCategoryLogical": "Логичен",
+ "SSE.Controllers.FormulaDialog.sCategoryLookupAndReference": "Търсене и справка",
+ "SSE.Controllers.FormulaDialog.sCategoryTextAndData": "Текст и данни",
"SSE.Controllers.LeftMenu.newDocumentTitle": "Електронна таблица без име",
"SSE.Controllers.LeftMenu.textByColumns": "По колони",
"SSE.Controllers.LeftMenu.textByRows": "По редове",
@@ -433,6 +441,7 @@
"SSE.Controllers.Main.errorForceSave": "При запазването на файла възникна грешка. Моля, използвайте опцията \"Изтегляне като\", за да запишете файла на твърдия диск на компютъра или опитайте отново по-късно.",
"SSE.Controllers.Main.errorFormulaName": "Грешка във въведената формула. Използва се неправилно име на формула.",
"SSE.Controllers.Main.errorFormulaParsing": "Вътрешна грешка при анализиране на формулата.",
+ "SSE.Controllers.Main.errorFrmlMaxTextLength": "Текстовите стойности във формули са ограничени до 255 знака. Използвайте функцията CONCATENATE или оператора за свързване (&).",
"SSE.Controllers.Main.errorFrmlWrongReferences": "Функцията се отнася за лист, който не съществува. Моля, проверете данните и опитайте отново.",
"SSE.Controllers.Main.errorInvalidRef": "Въведете правилно име за избора или валидна референция, към която да отидете.",
"SSE.Controllers.Main.errorKeyEncrypt": "Дескриптор на неизвестен ключ",
@@ -869,6 +878,8 @@
"SSE.Controllers.Toolbar.txtFunction_Sinh": "Хиперболична функция на синуса",
"SSE.Controllers.Toolbar.txtFunction_Tan": "Функция на допирателната",
"SSE.Controllers.Toolbar.txtFunction_Tanh": "Хиперболична допирателна функция",
+ "SSE.Controllers.Toolbar.txtGroupCell_Custom": "Персонализиран",
+ "SSE.Controllers.Toolbar.txtGroupTable_Custom": "Персонализиран",
"SSE.Controllers.Toolbar.txtIntegral": "Интеграл",
"SSE.Controllers.Toolbar.txtIntegral_dtheta": "Диференциална тета",
"SSE.Controllers.Toolbar.txtIntegral_dx": "Диференциал x",
@@ -1137,6 +1148,9 @@
"SSE.Views.CellSettings.textBackColor": "Цвят на фона",
"SSE.Views.CellSettings.textBorderColor": "Цвят",
"SSE.Views.CellSettings.textBorders": "Стил на границите",
+ "SSE.Views.CellSettings.textColor": "Цветово пълнене",
+ "SSE.Views.CellSettings.textForeground": "Цвят на преден план",
+ "SSE.Views.CellSettings.textGradientColor": "Цвят",
"SSE.Views.CellSettings.textOrientation": "Ориентация на текста",
"SSE.Views.CellSettings.textPosition": "Позиция",
"SSE.Views.CellSettings.textSelectBorders": "Изберете граници, които искате да промените, като използвате избрания по-горе стил",
@@ -1152,6 +1166,7 @@
"SSE.Views.CellSettings.tipOuter": "Задайте само външната граница",
"SSE.Views.CellSettings.tipRight": "Задайте само външна дясна граница",
"SSE.Views.CellSettings.tipTop": "Задайте само външна горна граница",
+ "SSE.Views.ChartDataDialog.textDelete": "Премахване",
"SSE.Views.ChartDataRangeDialog.txtSeriesName": "Име на серията",
"SSE.Views.ChartSettings.strLineWeight": "Тегло на линията",
"SSE.Views.ChartSettings.strSparkColor": "Цвят",
@@ -1291,8 +1306,11 @@
"SSE.Views.ChartSettingsDlg.txtEmpty": "Това поле е задължително",
"SSE.Views.ChartTypeDialog.textSeries": "Серия",
"SSE.Views.DataTab.capBtnGroup": "Група",
+ "SSE.Views.DataTab.capBtnTextToCol": "Текст в колони",
+ "SSE.Views.DataTab.capBtnUngroup": "Разгрупира",
"SSE.Views.DataValidationDialog.strSettings": "Настройки",
"SSE.Views.DataValidationDialog.textAllow": "Позволява",
+ "SSE.Views.DataValidationDialog.textData": "Данни",
"SSE.Views.DataValidationDialog.textFormula": "Формула",
"SSE.Views.DataValidationDialog.textMax": "Максимален",
"SSE.Views.DataValidationDialog.textMessage": "Съобщение",
@@ -1510,8 +1528,11 @@
"SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "В електронната таблица са добавени валидни подписи. Електронната таблица е защитена от редактиране.",
"SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Някои от цифровите подписи в електронната таблица са невалидни или не можаха да бъдат потвърдени. Електронната таблица е защитена от редактиране.",
"SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Преглед на подписи",
+ "SSE.Views.FormatRulesEditDlg.fillColor": "Цвят на запълване",
"SSE.Views.FormatRulesEditDlg.textAllBorders": "Всички граници",
"SSE.Views.FormatRulesEditDlg.textAutomatic": "Автоматичен",
+ "SSE.Views.FormatRulesEditDlg.textColor": "Цвят на текста",
+ "SSE.Views.FormatRulesEditDlg.textCustom": "Персонализиран",
"SSE.Views.FormatRulesEditDlg.textFormat": "Формат",
"SSE.Views.FormatRulesEditDlg.textFormula": "Формула",
"SSE.Views.FormatRulesEditDlg.textMaximum": "Максимален",
@@ -1555,8 +1576,11 @@
"SSE.Views.FormulaDialog.txtTitle": "Вмъкване на функция",
"SSE.Views.FormulaTab.textAutomatic": "Автоматичен",
"SSE.Views.FormulaTab.txtAdditional": "Допълнителен",
+ "SSE.Views.FormulaTab.txtCalculation": "Изчисление",
"SSE.Views.FormulaTab.txtFormula": "Функция",
"SSE.Views.FormulaWizard.textFunction": "Функция",
+ "SSE.Views.FormulaWizard.textLogical": "логичен",
+ "SSE.Views.HeaderFooterDialog.textColor": "Цвят на текста",
"SSE.Views.HeaderFooterDialog.textEven": "Дори страница",
"SSE.Views.HeaderFooterDialog.textInsert": "Вмъкни",
"SSE.Views.HeaderFooterDialog.textNewColor": "Нов Потребителски Цвят",
@@ -1626,6 +1650,7 @@
"SSE.Views.MainSettingsPrint.strRight": "Прав",
"SSE.Views.MainSettingsPrint.strTop": "Отгоре",
"SSE.Views.MainSettingsPrint.textActualSize": "Действителен размер",
+ "SSE.Views.MainSettingsPrint.textCustom": "Персонализиран",
"SSE.Views.MainSettingsPrint.textFitCols": "Поставете всички колони на една страница",
"SSE.Views.MainSettingsPrint.textFitPage": "Поставете лист на една страница",
"SSE.Views.MainSettingsPrint.textFitRows": "Поставете всички редове на една страница",
@@ -1734,6 +1759,7 @@
"SSE.Views.PivotSettings.txtMoveUp": "Премести нагоре",
"SSE.Views.PivotSettings.txtMoveValues": "Преместване към стойности",
"SSE.Views.PivotSettings.txtRemove": "Премахване на полето",
+ "SSE.Views.PivotSettingsAdvanced.textAltTip": "Алтернативното текстово представяне на визуалната информация за обекта, което ще бъде прочетено на хората с визуални или когнитивни увреждания, за да им помогне да разберат по-добре каква информация има в изображението, автосистемата, диаграмата или таблицата.",
"SSE.Views.PivotTable.capBlankRows": "Празни редове",
"SSE.Views.PivotTable.capGrandTotals": "Големи суми",
"SSE.Views.PivotTable.capLayout": "Оформление на отчета",
@@ -1762,6 +1788,7 @@
"SSE.Views.PivotTable.tipSelect": "Изберете цялата върхова таблица",
"SSE.Views.PivotTable.tipSubtotals": "Показване или скриване на междинни суми",
"SSE.Views.PivotTable.txtCreate": "Вмъкване на таблица",
+ "SSE.Views.PivotTable.txtGroupPivot_Custom": "Персонализиран",
"SSE.Views.PivotTable.txtRefresh": "Обновяване",
"SSE.Views.PivotTable.txtSelect": "Изберете",
"SSE.Views.PrintSettings.btnDownload": "Запазване и изтегляне",
@@ -1778,6 +1805,7 @@
"SSE.Views.PrintSettings.textActualSize": "Действителен размер",
"SSE.Views.PrintSettings.textAllSheets": "Всички листове",
"SSE.Views.PrintSettings.textCurrentSheet": "Текущ лист",
+ "SSE.Views.PrintSettings.textCustom": "Персонализиран",
"SSE.Views.PrintSettings.textFitCols": "Поставете всички колони на една страница",
"SSE.Views.PrintSettings.textFitPage": "Поставете лист на една страница",
"SSE.Views.PrintSettings.textFitRows": "Поставете всички редове на една страница",
@@ -1798,6 +1826,7 @@
"SSE.Views.PrintSettings.textShowHeadings": "Показване на заглавията на редове и колони",
"SSE.Views.PrintSettings.textTitle": "Настройки за печат",
"SSE.Views.PrintSettings.textTitlePDF": "Настройки на PDF",
+ "SSE.Views.PrintWithPreview.txtCustom": "Персонализиран",
"SSE.Views.PrintWithPreview.txtPageOrientation": "Ориентация на страницата",
"SSE.Views.PrintWithPreview.txtPageSize": "Размер на страницата",
"SSE.Views.ProtectRangesDlg.guestText": "Гост",
@@ -1923,6 +1952,7 @@
"SSE.Views.SlicerSettings.textHeight": "Височина",
"SSE.Views.SlicerSettings.textPosition": "Позиция",
"SSE.Views.SlicerSettingsAdvanced.strHeight": "Височина",
+ "SSE.Views.SlicerSettingsAdvanced.textAltTip": "Алтернативното текстово представяне на визуалната информация за обекта, което ще бъде прочетено на хората с визуални или когнитивни увреждания, за да им помогне да разберат по-добре каква информация има в изображението, автосистемата, диаграмата или таблицата.",
"SSE.Views.SlicerSettingsAdvanced.textAsc": "Възходящ",
"SSE.Views.SortDialog.textAsc": "Възходящ",
"SSE.Views.SortDialog.textAuto": "Автоматичен",
@@ -2010,6 +2040,7 @@
"SSE.Views.TableSettingsAdvanced.textAltTip": "Алтернативното текстово представяне на визуалната информация за обекта, което ще бъде прочетено на хората с визуални или когнитивни увреждания, за да им помогне да разберат по-добре каква информация има в изображението, автосистемата, диаграмата или таблицата.",
"SSE.Views.TableSettingsAdvanced.textAltTitle": "Заглавие",
"SSE.Views.TableSettingsAdvanced.textTitle": "Таблица - Разширени настройки",
+ "SSE.Views.TableSettingsAdvanced.txtGroupTable_Custom": "Персонализиран",
"SSE.Views.TextArtSettings.strBackground": "Цвят на фона",
"SSE.Views.TextArtSettings.strColor": "Цвят",
"SSE.Views.TextArtSettings.strFill": "Напълнете",
@@ -2054,7 +2085,9 @@
"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.capBtnPageSize": "Размер",
@@ -2093,6 +2126,7 @@
"SSE.Views.Toolbar.textClearPrintArea": "Изчистване на зоната за печат",
"SSE.Views.Toolbar.textClockwise": "Ъгъл по часовниковата стрелка",
"SSE.Views.Toolbar.textCounterCw": "Ъгъл обратно на часовниковата стрелка",
+ "SSE.Views.Toolbar.textCustom": "Персонализиран",
"SSE.Views.Toolbar.textDelLeft": "Преместване на клетките вляво",
"SSE.Views.Toolbar.textDelUp": "Преместете клетки нагоре",
"SSE.Views.Toolbar.textDiagDownBorder": "Диагонална надолу граница",
@@ -2125,18 +2159,21 @@
"SSE.Views.Toolbar.textRightBorders": "Дясна граница",
"SSE.Views.Toolbar.textRotateDown": "Завъртете текста надолу",
"SSE.Views.Toolbar.textRotateUp": "Завъртете текста нагоре",
+ "SSE.Views.Toolbar.textScaleCustom": "Персонализиран",
"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": "досие",
"SSE.Views.Toolbar.textTabFormula": "Формула",
"SSE.Views.Toolbar.textTabHome": "У дома",
"SSE.Views.Toolbar.textTabInsert": "Вмъкни",
"SSE.Views.Toolbar.textTabLayout": "Оформление",
"SSE.Views.Toolbar.textTabProtect": "Защита",
+ "SSE.Views.Toolbar.textTabView": "Изглед",
"SSE.Views.Toolbar.textTop": "Връх:",
"SSE.Views.Toolbar.textTopBorders": "Топ граници",
"SSE.Views.Toolbar.textUnderline": "Подчертавам",
diff --git a/apps/spreadsheeteditor/main/locale/da.json b/apps/spreadsheeteditor/main/locale/da.json
index 6304d868c..3af01ce59 100644
--- a/apps/spreadsheeteditor/main/locale/da.json
+++ b/apps/spreadsheeteditor/main/locale/da.json
@@ -130,6 +130,7 @@
"Common.UI.ThemeColorPalette.textStandartColors": "Standard farve",
"Common.UI.ThemeColorPalette.textThemeColors": "Tema farver",
"Common.UI.Themes.txtThemeClassicLight": "Klassisk lys",
+ "Common.UI.Themes.txtThemeContrastDark": "Mørk kontrast",
"Common.UI.Themes.txtThemeDark": "Mørk",
"Common.UI.Themes.txtThemeLight": "Lys",
"Common.UI.Window.cancelButtonText": "Annuller",
@@ -1196,6 +1197,7 @@
"SSE.Controllers.Toolbar.txtFunction_Sinh": "hyperbolsk sinus funktion",
"SSE.Controllers.Toolbar.txtFunction_Tan": "Tangens funktion",
"SSE.Controllers.Toolbar.txtFunction_Tanh": "hyperbolsk tangent funktion",
+ "SSE.Controllers.Toolbar.txtGroupTable_Dark": "Mørk",
"SSE.Controllers.Toolbar.txtInsertCells": "Indsæt celler",
"SSE.Controllers.Toolbar.txtIntegral": "integral",
"SSE.Controllers.Toolbar.txtIntegral_dtheta": "Differential theta",
@@ -2650,6 +2652,7 @@
"SSE.Views.PivotTable.tipSelect": "Vælg hele pivottabellen",
"SSE.Views.PivotTable.tipSubtotals": "Vis eller skjul subtotaler",
"SSE.Views.PivotTable.txtCreate": "Indsæt tabel",
+ "SSE.Views.PivotTable.txtGroupPivot_Dark": "Mørk",
"SSE.Views.PivotTable.txtPivotTable": "Pivottabel",
"SSE.Views.PivotTable.txtRefresh": "Genindlæs",
"SSE.Views.PivotTable.txtSelect": "Vælg",
@@ -3138,6 +3141,7 @@
"SSE.Views.TableSettingsAdvanced.textAltTip": "Den alternative tekstbaserede repræsentation af det visuelle objekt, som vil blive læst til folk med syns- eller læringsudfordringer for at hjælpe dem til at forstå den information der kan findes i et billede, autoshape, diagram eller tabel",
"SSE.Views.TableSettingsAdvanced.textAltTitle": "Titel",
"SSE.Views.TableSettingsAdvanced.textTitle": "Tabel - avancerede indstillinger",
+ "SSE.Views.TableSettingsAdvanced.txtGroupTable_Dark": "Mørk",
"SSE.Views.TextArtSettings.strBackground": "Baggrundsfarve",
"SSE.Views.TextArtSettings.strColor": "Farve",
"SSE.Views.TextArtSettings.strFill": "Fyld",
@@ -3204,7 +3208,7 @@
"SSE.Views.Toolbar.capInsertHyperlink": "Hyperlink",
"SSE.Views.Toolbar.capInsertImage": "Billede",
"SSE.Views.Toolbar.capInsertShape": "Form",
- "SSE.Views.Toolbar.capInsertSpark": "mini diagram",
+ "SSE.Views.Toolbar.capInsertSpark": "Mini diagram",
"SSE.Views.Toolbar.capInsertTable": "Tabel",
"SSE.Views.Toolbar.capInsertText": "Tekstboks",
"SSE.Views.Toolbar.mniImageFromFile": "Billede fra fil",
@@ -3497,6 +3501,7 @@
"SSE.Views.ViewTab.textFreezeRow": "Frys øverste række",
"SSE.Views.ViewTab.textGridlines": "Gitterlinier",
"SSE.Views.ViewTab.textHeadings": "Overskrifter",
+ "SSE.Views.ViewTab.textInterfaceTheme": "Interface tema",
"SSE.Views.ViewTab.textManager": "Administrér visning",
"SSE.Views.ViewTab.textUnFreeze": "Lås paneler op",
"SSE.Views.ViewTab.textZeros": "Vis nuller",
@@ -3504,6 +3509,7 @@
"SSE.Views.ViewTab.tipClose": "Luk ark-visning",
"SSE.Views.ViewTab.tipCreate": "Opret ark-visning",
"SSE.Views.ViewTab.tipFreeze": "Frys paneler",
+ "SSE.Views.ViewTab.tipInterfaceTheme": "Interface tema",
"SSE.Views.ViewTab.tipSheetView": "Arkvisning",
"SSE.Views.WBProtection.hintAllowRanges": "Tillad redigeringsområder",
"SSE.Views.WBProtection.hintProtectSheet": "Beskyt ark",
diff --git a/apps/spreadsheeteditor/main/locale/de.json b/apps/spreadsheeteditor/main/locale/de.json
index 1b18a69ff..73f4e340a 100644
--- a/apps/spreadsheeteditor/main/locale/de.json
+++ b/apps/spreadsheeteditor/main/locale/de.json
@@ -100,6 +100,165 @@
"Common.define.conditionalData.textUnique": "Eindeutig",
"Common.define.conditionalData.textValue": "Wert ist",
"Common.define.conditionalData.textYesterday": "Gestern",
+ "Common.define.smartArt.textAccentedPicture": "Bild mit Akzenten",
+ "Common.define.smartArt.textAccentProcess": "Akzentprozess",
+ "Common.define.smartArt.textAlternatingFlow": "Alternierender Fluss",
+ "Common.define.smartArt.textAlternatingHexagons": "Alternierende Sechsecke",
+ "Common.define.smartArt.textAlternatingPictureBlocks": "Alternierende Bildblöcke",
+ "Common.define.smartArt.textAlternatingPictureCircles": "Alternierende Bildblöcke",
+ "Common.define.smartArt.textArchitectureLayout": "Architekturlayout",
+ "Common.define.smartArt.textArrowRibbon": "Pfeilband",
+ "Common.define.smartArt.textAscendingPictureAccentProcess": "Aufsteigender Prozess mit Bildakzenten",
+ "Common.define.smartArt.textBalance": "Kontostand",
+ "Common.define.smartArt.textBasicBendingProcess": "Einfacher umgebrochener Prozess",
+ "Common.define.smartArt.textBasicBlockList": "Einfache Blockliste",
+ "Common.define.smartArt.textBasicChevronProcess": "Einfacher Chevronprozess",
+ "Common.define.smartArt.textBasicCycle": "Einfacher Kreis",
+ "Common.define.smartArt.textBasicMatrix": "Einfache Matrix",
+ "Common.define.smartArt.textBasicPie": "Einfaches Kreisdiagramm",
+ "Common.define.smartArt.textBasicProcess": "Einfacher Prozess",
+ "Common.define.smartArt.textBasicPyramid": "Einfache Pyramide",
+ "Common.define.smartArt.textBasicRadial": "Einfaches Radial",
+ "Common.define.smartArt.textBasicTarget": "Einfaches Ziel",
+ "Common.define.smartArt.textBasicTimeline": "Einfache Zeitachse",
+ "Common.define.smartArt.textBasicVenn": "Einfaches Venn",
+ "Common.define.smartArt.textBendingPictureAccentList": "Umgebrochene Bildakzentliste",
+ "Common.define.smartArt.textBendingPictureBlocks": "Umgebrochene Bildblöcke",
+ "Common.define.smartArt.textBendingPictureCaption": "Umgebrochene Bildbeschriftung",
+ "Common.define.smartArt.textBendingPictureCaptionList": "Umgebrochene Bildbeschriftungsliste",
+ "Common.define.smartArt.textBendingPictureSemiTranparentText": "Umgebrochener halbtransparenter Bildtext",
+ "Common.define.smartArt.textBlockCycle": "Blockkreis",
+ "Common.define.smartArt.textBubblePictureList": "Blasenbildliste",
+ "Common.define.smartArt.textCaptionedPictures": "Bilder mit Beschriftungen",
+ "Common.define.smartArt.textChevronAccentProcess": "Chevronakzentprozess",
+ "Common.define.smartArt.textChevronList": "Chevronliste",
+ "Common.define.smartArt.textCircleAccentTimeline": "Zeitachse mit Kreisakzent",
+ "Common.define.smartArt.textCircleArrowProcess": "Kreisförmiger Pfeilprozess",
+ "Common.define.smartArt.textCirclePictureHierarchy": "Bilderhierarchie mit Kreisakzent",
+ "Common.define.smartArt.textCircleProcess": "Kreisprozess",
+ "Common.define.smartArt.textCircleRelationship": "Kreisbeziehung",
+ "Common.define.smartArt.textCircularBendingProcess": "Kreisförmiger umgebrochener Prozess",
+ "Common.define.smartArt.textCircularPictureCallout": "Bildlegende mit Kreisakzent",
+ "Common.define.smartArt.textClosedChevronProcess": "Geschlossener Chevronprozess",
+ "Common.define.smartArt.textContinuousArrowProcess": "Fortlaufender Pfeilprozess",
+ "Common.define.smartArt.textContinuousBlockProcess": "Fortlaufender Blockprozess",
+ "Common.define.smartArt.textContinuousCycle": "Fortlaufender Kreis",
+ "Common.define.smartArt.textContinuousPictureList": "Fortlaufende Bildliste",
+ "Common.define.smartArt.textConvergingArrows": "Zusammenlaufende Pfeile",
+ "Common.define.smartArt.textConvergingRadial": "Zusammenlaufendes Radial",
+ "Common.define.smartArt.textConvergingText": "Zusammenlaufender Text",
+ "Common.define.smartArt.textCounterbalanceArrows": "Gegengewichtspfeile",
+ "Common.define.smartArt.textCycle": "Zyklus",
+ "Common.define.smartArt.textCycleMatrix": "Kreismatrix",
+ "Common.define.smartArt.textDescendingBlockList": "Absteigende Blockliste",
+ "Common.define.smartArt.textDescendingProcess": "Absteigender Prozess",
+ "Common.define.smartArt.textDetailedProcess": "Detaillierter Prozess",
+ "Common.define.smartArt.textDivergingArrows": "Auseinanderlaufende Pfeile",
+ "Common.define.smartArt.textDivergingRadial": "Auseinanderlaufendes Radial",
+ "Common.define.smartArt.textEquation": "Gleichung",
+ "Common.define.smartArt.textFramedTextPicture": "Umrahmte Textgrafik",
+ "Common.define.smartArt.textFunnel": "Trichter",
+ "Common.define.smartArt.textGear": "Zahnrad",
+ "Common.define.smartArt.textGridMatrix": "Rastermatrix",
+ "Common.define.smartArt.textGroupedList": "Gruppierte Liste",
+ "Common.define.smartArt.textHalfCircleOrganizationChart": "Halbkreisorganigramm",
+ "Common.define.smartArt.textHexagonCluster": "Sechseck-Cluster",
+ "Common.define.smartArt.textHexagonRadial": "Sechseck Radial",
+ "Common.define.smartArt.textHierarchy": "Hierarchie",
+ "Common.define.smartArt.textHierarchyList": "Hierarchieliste",
+ "Common.define.smartArt.textHorizontalBulletList": "Horizontale Aufzählungsliste",
+ "Common.define.smartArt.textHorizontalHierarchy": "Horizontale Hierarchie",
+ "Common.define.smartArt.textHorizontalLabeledHierarchy": "Horizontal beschriftete Hierarchie",
+ "Common.define.smartArt.textHorizontalMultiLevelHierarchy": "Horizontale Hierarchie mit mehreren Ebenen",
+ "Common.define.smartArt.textHorizontalOrganizationChart": "Horizontales Organigramm",
+ "Common.define.smartArt.textHorizontalPictureList": "Horizontale Bildliste",
+ "Common.define.smartArt.textIncreasingArrowProcess": "Wachsender Pfeil-Prozess",
+ "Common.define.smartArt.textIncreasingCircleProcess": "Wachsender Kreis-Prozess",
+ "Common.define.smartArt.textInterconnectedBlockProcess": "Vernetzter Blockprozess",
+ "Common.define.smartArt.textInterconnectedRings": "Verbundene Ringe",
+ "Common.define.smartArt.textInvertedPyramid": "Umgekehrte Pyramide",
+ "Common.define.smartArt.textLabeledHierarchy": "Beschriftete Hierarchie",
+ "Common.define.smartArt.textLinearVenn": "Lineares Venn",
+ "Common.define.smartArt.textLinedList": "Liste mit Linien",
+ "Common.define.smartArt.textList": "Liste",
+ "Common.define.smartArt.textMatrix": "Matrix",
+ "Common.define.smartArt.textMultidirectionalCycle": "Kreis mit mehreren Richtungen",
+ "Common.define.smartArt.textNameAndTitleOrganizationChart": "Organigramm mit Name und Titel",
+ "Common.define.smartArt.textNestedTarget": "Geschachteltes Ziel",
+ "Common.define.smartArt.textNondirectionalCycle": "Richtungsloser Kreis",
+ "Common.define.smartArt.textOpposingArrows": "Entgegengesetzte Pfeile",
+ "Common.define.smartArt.textOpposingIdeas": "Konträre Ansichten",
+ "Common.define.smartArt.textOrganizationChart": "Organigramm",
+ "Common.define.smartArt.textOther": "Sonstiges",
+ "Common.define.smartArt.textPhasedProcess": "Phasenprozess",
+ "Common.define.smartArt.textPicture": "Bild",
+ "Common.define.smartArt.textPictureAccentBlocks": "Bildakzentblöcke",
+ "Common.define.smartArt.textPictureAccentList": "Bildakzentliste",
+ "Common.define.smartArt.textPictureAccentProcess": "Bildakzentprozess",
+ "Common.define.smartArt.textPictureCaptionList": "Bildbeschriftungsliste",
+ "Common.define.smartArt.textPictureFrame": "Bildrahmen",
+ "Common.define.smartArt.textPictureGrid": "Bildraster",
+ "Common.define.smartArt.textPictureLineup": "Bildanordnung",
+ "Common.define.smartArt.textPictureOrganizationChart": "Bildorganigramm",
+ "Common.define.smartArt.textPictureStrips": "Bildstreifen",
+ "Common.define.smartArt.textPieProcess": "Kreisdiagrammprozess",
+ "Common.define.smartArt.textPlusAndMinus": "Plus und Minus",
+ "Common.define.smartArt.textProcess": "Prozess",
+ "Common.define.smartArt.textProcessArrows": "Prozesspfeile",
+ "Common.define.smartArt.textProcessList": "Prozessliste",
+ "Common.define.smartArt.textPyramid": "Pyramide",
+ "Common.define.smartArt.textPyramidList": "Pyramidenliste",
+ "Common.define.smartArt.textRadialCluster": "Radialer Cluster",
+ "Common.define.smartArt.textRadialCycle": "Radialkreis",
+ "Common.define.smartArt.textRadialList": "Radialliste",
+ "Common.define.smartArt.textRadialPictureList": "Radiale Bildliste",
+ "Common.define.smartArt.textRadialVenn": "Radialvenn",
+ "Common.define.smartArt.textRandomToResultProcess": "Zufallsergebnisprozess",
+ "Common.define.smartArt.textRelationship": "Beziehung",
+ "Common.define.smartArt.textRepeatingBendingProcess": "Wiederholter umgebrochener Prozess",
+ "Common.define.smartArt.textReverseList": "Umgekehrte Liste",
+ "Common.define.smartArt.textSegmentedCycle": "Segmentierter Kreis",
+ "Common.define.smartArt.textSegmentedProcess": "Segmentierter Prozess",
+ "Common.define.smartArt.textSegmentedPyramid": "Segmentierte Pyramide",
+ "Common.define.smartArt.textSnapshotPictureList": "Momentaufnahme-Bildliste",
+ "Common.define.smartArt.textSpiralPicture": "Spiralförmige Grafik",
+ "Common.define.smartArt.textSquareAccentList": "Liste mit quadratischen Akzenten",
+ "Common.define.smartArt.textStackedList": "Gestapelte Liste",
+ "Common.define.smartArt.textStackedVenn": "Gestapeltes Venn",
+ "Common.define.smartArt.textStaggeredProcess": "Gestaffelter Prozess",
+ "Common.define.smartArt.textStepDownProcess": "Prozess mit absteigenden Schritten",
+ "Common.define.smartArt.textStepUpProcess": "Prozess mit aufsteigenden Schritten",
+ "Common.define.smartArt.textSubStepProcess": "Unterschrittprozess",
+ "Common.define.smartArt.textTabbedArc": "Registerkartenbogen",
+ "Common.define.smartArt.textTableHierarchy": "Tabellenhierarchie",
+ "Common.define.smartArt.textTableList": "Tabellenliste",
+ "Common.define.smartArt.textTabList": "Registerkartenliste",
+ "Common.define.smartArt.textTargetList": "Zielliste",
+ "Common.define.smartArt.textTextCycle": "Textkreis",
+ "Common.define.smartArt.textThemePictureAccent": "Designbildakzent",
+ "Common.define.smartArt.textThemePictureAlternatingAccent": "Alternierender Designbildakzent",
+ "Common.define.smartArt.textThemePictureGrid": "Designbildraster",
+ "Common.define.smartArt.textTitledMatrix": "Betitelte Matrix",
+ "Common.define.smartArt.textTitledPictureAccentList": "Bildakzentliste mit Titel",
+ "Common.define.smartArt.textTitledPictureBlocks": "Titelbildblöcke",
+ "Common.define.smartArt.textTitlePictureLineup": "Titelbildanordnung",
+ "Common.define.smartArt.textTrapezoidList": "Trapezförmige Liste",
+ "Common.define.smartArt.textUpwardArrow": "Pfeil nach oben",
+ "Common.define.smartArt.textVaryingWidthList": "Liste mit variabler Breite",
+ "Common.define.smartArt.textVerticalAccentList": "Liste mit vertikalen Akzenten",
+ "Common.define.smartArt.textVerticalArrowList": "Vertical Arrow List",
+ "Common.define.smartArt.textVerticalBendingProcess": "Vertikaler umgebrochener Prozess",
+ "Common.define.smartArt.textVerticalBlockList": "Vertikale Blockliste",
+ "Common.define.smartArt.textVerticalBoxList": "Vertikale Feldliste",
+ "Common.define.smartArt.textVerticalBracketList": "Liste mit vertikalen Klammerakzenten",
+ "Common.define.smartArt.textVerticalBulletList": "Vertikale Aufzählung",
+ "Common.define.smartArt.textVerticalChevronList": "Vertikale Chevronliste",
+ "Common.define.smartArt.textVerticalCircleList": "Liste mit vertikalen Kreisakzenten",
+ "Common.define.smartArt.textVerticalCurvedList": "Liste mit vertikalen Kurven",
+ "Common.define.smartArt.textVerticalEquation": "Vertikale Formel",
+ "Common.define.smartArt.textVerticalPictureAccentList": "Vertikale Bildakzentliste",
+ "Common.define.smartArt.textVerticalPictureList": "Vertikale Bildliste",
+ "Common.define.smartArt.textVerticalProcess": "Vertikaler Prozess",
"Common.Translation.textMoreButton": "Mehr",
"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",
@@ -318,6 +477,7 @@
"Common.Views.Plugins.textStart": "Starten",
"Common.Views.Plugins.textStop": "Beenden",
"Common.Views.Protection.hintAddPwd": "Mit Kennwort verschlüsseln",
+ "Common.Views.Protection.hintDelPwd": "Kennwort löschen",
"Common.Views.Protection.hintPwd": "Das Kennwort ändern oder löschen",
"Common.Views.Protection.hintSignature": "Fügen Sie eine digitale Signatur oder Unterschriftenzeile hinzu",
"Common.Views.Protection.txtAddPwd": "Kennwort hinzufügen",
@@ -451,6 +611,7 @@
"Common.Views.SignDialog.tipFontName": "Schriftart",
"Common.Views.SignDialog.tipFontSize": "Schriftgrad",
"Common.Views.SignSettingsDialog.textAllowComment": "Signaturgeber verfügt über die Möglichkeit, einen Kommentar im Signaturdialog hinzuzufügen",
+ "Common.Views.SignSettingsDialog.textDefInstruction": "Überprüfen Sie, ob der signierte Inhalt stimmt, bevor Sie dieses Dokument signieren.",
"Common.Views.SignSettingsDialog.textInfoEmail": "Email Adresse",
"Common.Views.SignSettingsDialog.textInfoName": "Name",
"Common.Views.SignSettingsDialog.textInfoTitle": "Titel des Signatureingebers",
@@ -691,6 +852,9 @@
"SSE.Controllers.LeftMenu.textWorkbook": "Arbeitsmappe",
"SSE.Controllers.LeftMenu.txtUntitled": "Unbenannt",
"SSE.Controllers.LeftMenu.warnDownloadAs": "Wenn Sie mit dem Speichern in diesem Format fortsetzen, werden alle Objekte außer Text verloren gehen. Möchten Sie wirklich fortsetzen?",
+ "SSE.Controllers.Main.confirmAddCellWatches": "Diese Aktion wird {0} Zell-Überwachungen hinzufügen. Wollen Sie fortsetzen ?",
+ "SSE.Controllers.Main.confirmAddCellWatchesMax": "Diese Aktion fügt nur {0} Zellüberwachungen hinzu, um den Speicher zu sparen. Möchten Sie fortsetzen?",
+ "SSE.Controllers.Main.confirmMaxChangesSize": "Die Anzahl der Aktionen überschreitet die für Ihren Server festgelegte Grenze. Drücken Sie \"Rückgängig\", um Ihre letzte Aktion abzubrechen, oder drücken Sie \"Weiter\", um die Aktion lokal fortzusetzen (Sie müssen die Datei herunterladen oder ihren Inhalt kopieren, um sicherzustellen, dass nichts verloren geht).",
"SSE.Controllers.Main.confirmMoveCellRange": "Der Zielzellenbereich kann Daten enthalten. Die Operation fortsetzen?",
"SSE.Controllers.Main.confirmPutMergeRange": "Die Quelldaten enthielten verbundene Zellen. Vor dem Einfügen dieser Zellen in die Tabelle, wurde die Zusammenführung aufgehoben. ",
"SSE.Controllers.Main.confirmReplaceFormulaInTable": "Formeln in der Kopfzeile werden entfernt und in statischen Text konvertiert. Möchten Sie den Vorgang fortsetzen?",
@@ -726,6 +890,7 @@
"SSE.Controllers.Main.errorDefaultMessage": "Fehlercode: %1",
"SSE.Controllers.Main.errorDeleteColumnContainsLockedCell": "Sie versuchen, eine Spalte mit einer gesperrten Zelle zu löschen. Gesperrte Zellen können in geschützten Listen nicht gelöscht werden. Um eine gesperrte Zelle zu löschen, entschützen Sie die Liste. Das Passwort kann erforderlich sein.",
"SSE.Controllers.Main.errorDeleteRowContainsLockedCell": "Sie versuchen, eine Zeile mit einer gesperrten Zelle zu löschen. Gesperrte Zellen können in geschützten Listen nicht gelöscht werden. Um eine gesperrte Zelle zu löschen, entschützen Sie die Liste. Das Passwort kann erforderlich sein.",
+ "SSE.Controllers.Main.errorDirectUrl": "Bitte überprüfen Sie den Link zum Dokument. Dieser Link muss ein direkter Link zu der Datei zum Herunterladen sein.",
"SSE.Controllers.Main.errorEditingDownloadas": "Bei der Arbeit mit dem Dokument ist ein Fehler aufgetreten. Verwenden Sie die Option 'Herunterladen als', um die Sicherungskopie der Datei auf der Festplatte Ihres Computers zu speichern.",
"SSE.Controllers.Main.errorEditingSaveas": "Bei der Arbeit mit dem Dokument ist ein Fehler aufgetreten. Verwenden Sie die Option \"Speichern als ...\", um die Sicherungskopie der Datei auf der Festplatte Ihres Computers zu speichern.",
"SSE.Controllers.Main.errorEditView": "Die aktuelle Tabellenansicht sind schreibgeschützt und die neuen können nicht erstellt werden, weil manche Ansichten bearbeitet werden.",
@@ -744,6 +909,11 @@
"SSE.Controllers.Main.errorFrmlWrongReferences": "Die Funktion bezieht sich auf ein Blatt, das nicht existiert. Bitte überprüfen Sie die Daten und versuchen Sie es erneut.",
"SSE.Controllers.Main.errorFTChangeTableRangeError": "Die Operation konnte nicht",
"SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "Die Operation konnte nicht",
+ "SSE.Controllers.Main.errorInconsistentExt": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei stimmt nicht mit der Dateierweiterung überein.",
+ "SSE.Controllers.Main.errorInconsistentExtDocx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Textdokumenten (z.B. docx), aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "SSE.Controllers.Main.errorInconsistentExtPdf": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht einem der folgenden Formate: pdf/djvu/xps/oxps, aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "SSE.Controllers.Main.errorInconsistentExtPptx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Präsentationen (z.B. pptx), aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "SSE.Controllers.Main.errorInconsistentExtXlsx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Tabellenkalkulationen (z.B. xlsx), aber die Datei hat die inkonsistente Erweiterung: %1.",
"SSE.Controllers.Main.errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.",
"SSE.Controllers.Main.errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor",
"SSE.Controllers.Main.errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen",
@@ -822,6 +992,7 @@
"SSE.Controllers.Main.textCloseTip": "Klicken Sie, um den Tipp zu schließen",
"SSE.Controllers.Main.textConfirm": "Bestätigung",
"SSE.Controllers.Main.textContactUs": "Verkaufsteam kontaktieren",
+ "SSE.Controllers.Main.textContinue": "Fortsetzen",
"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",
@@ -850,6 +1021,7 @@
"SSE.Controllers.Main.textStrict": "Formaler Modus",
"SSE.Controllers.Main.textTryUndoRedo": "Undo/Redo Optionen sind für den halbformalen Zusammenbearbeitungsmodus deaktiviert. Klicken Sie auf den Button \"Formaler Modus\", um den formalen Zusammenbearbeitungsmodus zu aktivieren, um die Datei, ohne Störungen anderer Benutzer zu bearbeiten und die Änderungen erst nachdem Sie sie gespeichert haben, zu senden. Sie können zwischen den Zusammenbearbeitungsmodi mit der Hilfe der erweiterten Einstellungen von Editor umschalten.",
"SSE.Controllers.Main.textTryUndoRedoWarn": "Die Optionen Rückgängig/Wiederholen sind für den halbformalen Zusammenbearbeitungsmodus deaktiviert.",
+ "SSE.Controllers.Main.textUndo": "Rückgängig machen",
"SSE.Controllers.Main.textYes": "Ja",
"SSE.Controllers.Main.titleLicenseExp": "Lizenz ist abgelaufen",
"SSE.Controllers.Main.titleServerVersion": "Editor wurde aktualisiert",
@@ -1276,6 +1448,17 @@
"SSE.Controllers.Toolbar.txtFunction_Sinh": "Hyperbolische Sinus-Funktion",
"SSE.Controllers.Toolbar.txtFunction_Tan": "Tangensformel",
"SSE.Controllers.Toolbar.txtFunction_Tanh": "Hyperbolische Tangens-Funktion",
+ "SSE.Controllers.Toolbar.txtGroupCell_Custom": "Einstellbar",
+ "SSE.Controllers.Toolbar.txtGroupCell_DataAndModel": "Daten und Modell",
+ "SSE.Controllers.Toolbar.txtGroupCell_GoodBadAndNeutral": "Gut, Schlecht und Neutral",
+ "SSE.Controllers.Toolbar.txtGroupCell_NoName": "Ohne Namen",
+ "SSE.Controllers.Toolbar.txtGroupCell_NumberFormat": "Zahlenformat",
+ "SSE.Controllers.Toolbar.txtGroupCell_ThemedCallStyles": "Zellenformate mit Designs",
+ "SSE.Controllers.Toolbar.txtGroupCell_TitlesAndHeadings": "Titel und Überschriften",
+ "SSE.Controllers.Toolbar.txtGroupTable_Custom": "Einstellbar",
+ "SSE.Controllers.Toolbar.txtGroupTable_Dark": "Dunkel",
+ "SSE.Controllers.Toolbar.txtGroupTable_Light": "Hell",
+ "SSE.Controllers.Toolbar.txtGroupTable_Medium": "Mittelhoch",
"SSE.Controllers.Toolbar.txtInsertCells": "Zellen einfügen",
"SSE.Controllers.Toolbar.txtIntegral": "Integral",
"SSE.Controllers.Toolbar.txtIntegral_dtheta": "Differenzial Theta",
@@ -1645,27 +1828,42 @@
"SSE.Views.ChartSettings.strLineWeight": "Linienbreite",
"SSE.Views.ChartSettings.strSparkColor": "Farbe",
"SSE.Views.ChartSettings.strTemplate": "Vorlage",
+ "SSE.Views.ChartSettings.text3dDepth": "Tiefe (% der Basis)",
+ "SSE.Views.ChartSettings.text3dHeight": "Höhe (% der Basis)",
+ "SSE.Views.ChartSettings.text3dRotation": "3D-Drehung",
"SSE.Views.ChartSettings.textAdvanced": "Erweiterte Einstellungen anzeigen",
+ "SSE.Views.ChartSettings.textAutoscale": "Autoskalierung",
"SSE.Views.ChartSettings.textBorderSizeErr": "Der eingegebene Wert ist falsch. Bitte geben Sie einen Wert zwischen 0 pt und 1584 pt ein.",
"SSE.Views.ChartSettings.textChangeType": "Typ ändern",
"SSE.Views.ChartSettings.textChartType": "Diagrammtyp ändern",
+ "SSE.Views.ChartSettings.textDefault": "Standardmäßige Drehung",
+ "SSE.Views.ChartSettings.textDown": "Unten",
"SSE.Views.ChartSettings.textEditData": "Daten und Standort ändern",
"SSE.Views.ChartSettings.textFirstPoint": "Erster Punkt",
"SSE.Views.ChartSettings.textHeight": "Höhe",
"SSE.Views.ChartSettings.textHighPoint": "Höchstpunkt",
"SSE.Views.ChartSettings.textKeepRatio": "Seitenverhältnis beibehalten",
"SSE.Views.ChartSettings.textLastPoint": "Letzter Punkt",
+ "SSE.Views.ChartSettings.textLeft": "Links",
"SSE.Views.ChartSettings.textLowPoint": "Tiefpunkt",
"SSE.Views.ChartSettings.textMarkers": "Markierungen",
+ "SSE.Views.ChartSettings.textNarrow": "Blickfeld verengen",
"SSE.Views.ChartSettings.textNegativePoint": "Negativpunkt",
+ "SSE.Views.ChartSettings.textPerspective": "Perspektive",
"SSE.Views.ChartSettings.textRanges": "Datenbereich",
+ "SSE.Views.ChartSettings.textRight": "Rechts",
+ "SSE.Views.ChartSettings.textRightAngle": "Rechtwinklige Achsen",
"SSE.Views.ChartSettings.textSelectData": "Daten auswählen",
"SSE.Views.ChartSettings.textShow": "Anzeigen",
"SSE.Views.ChartSettings.textSize": "Größe",
"SSE.Views.ChartSettings.textStyle": "Stil",
"SSE.Views.ChartSettings.textSwitch": "Zeile/Spalte ändern",
"SSE.Views.ChartSettings.textType": "Typ",
+ "SSE.Views.ChartSettings.textUp": "Nach oben",
+ "SSE.Views.ChartSettings.textWiden": "Blickfeld verbreitern",
"SSE.Views.ChartSettings.textWidth": "Breite",
+ "SSE.Views.ChartSettings.textX": "X-Rotation",
+ "SSE.Views.ChartSettings.textY": "Y-Rotation",
"SSE.Views.ChartSettingsDlg.errorMaxPoints": "FEHLER! Die maximale Punktzahl pro eine Tabelle beträgt 4096 Punkte.",
"SSE.Views.ChartSettingsDlg.errorMaxRows": "FEHLER! Die maximale Anzahl der Datenreihen per Diagramm ist 255",
"SSE.Views.ChartSettingsDlg.errorStockChart": "Falsche Reihenfolge der Zeilen. Um ein Kursdiagramm zu erstellen, ordnen Sie die Daten auf dem Blatt folgendermaßen an: Eröffnungspreis, Höchstpreis, Tiefstpreis, Schlusskurs.",
@@ -1818,6 +2016,7 @@
"SSE.Views.DataTab.capBtnTextRemDuplicates": "Entferne Duplikate",
"SSE.Views.DataTab.capBtnTextToCol": "Text in Spalten",
"SSE.Views.DataTab.capBtnUngroup": "Gruppierung aufheben",
+ "SSE.Views.DataTab.capDataExternalLinks": "Externe Links",
"SSE.Views.DataTab.capDataFromText": "Aus Text/CSV",
"SSE.Views.DataTab.mniFromFile": "Daten aus einer Datei erhalten",
"SSE.Views.DataTab.mniFromUrl": "Daten aus einer URL erhalten",
@@ -1831,6 +2030,7 @@
"SSE.Views.DataTab.tipCustomSort": "Benutzerdefinierte Sortierung",
"SSE.Views.DataTab.tipDataFromText": "Daten aus einer Text-/CSV-Datei erhalten",
"SSE.Views.DataTab.tipDataValidation": "Datenüberprüfung",
+ "SSE.Views.DataTab.tipExternalLinks": "Andere Dateien anzeigen, mit denen diese Tabellenkalkulation verknüpft ist",
"SSE.Views.DataTab.tipGroup": "Zellenbereich gruppieren",
"SSE.Views.DataTab.tipRemDuplicates": "Duplikate von Reihen aus Tabellenkalkulation entfernen",
"SSE.Views.DataTab.tipToColumns": "Zelltext in Spalten aufteilen",
@@ -1916,15 +2116,20 @@
"SSE.Views.DigitalFilterDialog.textUse1": "Nutzen Sie das Symbol ?, um ein einziges Zeichen darzustellen",
"SSE.Views.DigitalFilterDialog.textUse2": "Nutzen Sie das Symbol *, um eine Reihe von Zeichen darzustellen",
"SSE.Views.DigitalFilterDialog.txtTitle": "Benutzerdefinierter Filter",
+ "SSE.Views.DocumentHolder.advancedEquationText": "Einstellungen der Gleichung",
"SSE.Views.DocumentHolder.advancedImgText": "Erweiterte Einstellungen des Bildes",
"SSE.Views.DocumentHolder.advancedShapeText": "Erweiterte Einstellungen der Form",
"SSE.Views.DocumentHolder.advancedSlicerText": "Erweiterte Einstellungen vom Datenschnitt",
+ "SSE.Views.DocumentHolder.allLinearText": "Alle – Linear",
+ "SSE.Views.DocumentHolder.allProfText": "Alle – Professionelle",
"SSE.Views.DocumentHolder.bottomCellText": "Unten ausrichten",
"SSE.Views.DocumentHolder.bulletsText": "Nummerierung und Aufzählungszeichen",
"SSE.Views.DocumentHolder.centerCellText": "Mitte ausrichten",
"SSE.Views.DocumentHolder.chartDataText": "Diagrammdaten auswählen",
"SSE.Views.DocumentHolder.chartText": "Erweiterte Einstellungen des Diagramms",
"SSE.Views.DocumentHolder.chartTypeText": "Diagrammtyp ändern",
+ "SSE.Views.DocumentHolder.currLinearText": "Aktuell – Linear",
+ "SSE.Views.DocumentHolder.currProfText": "Aktuell – Professionell",
"SSE.Views.DocumentHolder.deleteColumnText": "Spalte",
"SSE.Views.DocumentHolder.deleteRowText": "Zeile",
"SSE.Views.DocumentHolder.deleteTableText": "Tabelle",
@@ -1938,6 +2143,7 @@
"SSE.Views.DocumentHolder.insertColumnRightText": "Spalte nach rechts",
"SSE.Views.DocumentHolder.insertRowAboveText": "Zeile oberhalb",
"SSE.Views.DocumentHolder.insertRowBelowText": "Zeile unterhalb",
+ "SSE.Views.DocumentHolder.latexText": "LaTeX",
"SSE.Views.DocumentHolder.originalSizeText": "Tatsächliche Größe",
"SSE.Views.DocumentHolder.removeHyperlinkText": "Hyperlink entfernen",
"SSE.Views.DocumentHolder.selectColumnText": "Ganze Spalte",
@@ -2047,6 +2253,7 @@
"SSE.Views.DocumentHolder.txtPaste": "Einfügen",
"SSE.Views.DocumentHolder.txtPercentage": "Prozentsatz",
"SSE.Views.DocumentHolder.txtReapply": "Erneut übernehmen",
+ "SSE.Views.DocumentHolder.txtRefresh": "Aktualisieren",
"SSE.Views.DocumentHolder.txtRow": "Ganze Zeile",
"SSE.Views.DocumentHolder.txtRowHeight": "Zeilenhöhe einstellen",
"SSE.Views.DocumentHolder.txtScientific": "Wissenschaftlich",
@@ -2066,7 +2273,15 @@
"SSE.Views.DocumentHolder.txtTime": "Zeit",
"SSE.Views.DocumentHolder.txtUngroup": "Gruppierung aufheben",
"SSE.Views.DocumentHolder.txtWidth": "Breite",
+ "SSE.Views.DocumentHolder.unicodeText": "Unicode",
"SSE.Views.DocumentHolder.vertAlignText": "Vertikale Ausrichtung",
+ "SSE.Views.ExternalLinksDlg.closeButtonText": "Schließen",
+ "SSE.Views.ExternalLinksDlg.textDelete": "Verknüpfungen löschen",
+ "SSE.Views.ExternalLinksDlg.textDeleteAll": "Alle Verknüpfungen aufheben",
+ "SSE.Views.ExternalLinksDlg.textSource": "Quelle",
+ "SSE.Views.ExternalLinksDlg.textUpdate": "Werte aktualisieren",
+ "SSE.Views.ExternalLinksDlg.textUpdateAll": "Alles aktualisieren",
+ "SSE.Views.ExternalLinksDlg.txtTitle": "Externe Links",
"SSE.Views.FieldSettingsDialog.strLayout": "Layout",
"SSE.Views.FieldSettingsDialog.strSubtotals": "Zwischensumme",
"SSE.Views.FieldSettingsDialog.textReport": "Berichtsformular",
@@ -2130,6 +2345,7 @@
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Speicherort",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personen mit Berechtigungen",
"SSE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Thema",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tags",
"SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titel",
"SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Hochgeladen",
"SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Zugriffsrechte ändern",
@@ -2422,6 +2638,7 @@
"SSE.Views.FormulaTab.textManual": "Manuell",
"SSE.Views.FormulaTab.tipCalculate": "Berechnen",
"SSE.Views.FormulaTab.tipCalculateTheEntireWorkbook": "Gesamte Arbeitsmappe berechnen",
+ "SSE.Views.FormulaTab.tipWatch": "Zellen zur Liste \"Überwachungsfenster\" hinzufügen",
"SSE.Views.FormulaTab.txtAdditional": "Zusätzlich",
"SSE.Views.FormulaTab.txtAutosum": "AutoSumme",
"SSE.Views.FormulaTab.txtAutosumTip": "Summenbildung",
@@ -2430,6 +2647,7 @@
"SSE.Views.FormulaTab.txtFormulaTip": "Funktion einfügen",
"SSE.Views.FormulaTab.txtMore": "Weitere Funktionen",
"SSE.Views.FormulaTab.txtRecent": "Zuletzt verwendet",
+ "SSE.Views.FormulaTab.txtWatch": "Überwachungsfenster",
"SSE.Views.FormulaWizard.textAny": "Alle",
"SSE.Views.FormulaWizard.textArgument": "Argument",
"SSE.Views.FormulaWizard.textFunction": "Funktion",
@@ -2770,12 +2988,21 @@
"SSE.Views.PivotTable.tipCreatePivot": "Pivot-Tabelle einfügen",
"SSE.Views.PivotTable.tipGrandTotals": "Gesamtergebnisse ein- oder ausblenden",
"SSE.Views.PivotTable.tipRefresh": "Die Informationen aus der Datenquelle aktualisieren",
+ "SSE.Views.PivotTable.tipRefreshCurrent": "Aktualisierung der Informationen aus der Datenquelle für die aktuelle Tabelle",
"SSE.Views.PivotTable.tipSelect": "Die gesamte Pivot-Tabelle wählen",
"SSE.Views.PivotTable.tipSubtotals": "Teilergebnisse ein- oder ausblenden",
"SSE.Views.PivotTable.txtCreate": "Tabelle einfügen",
+ "SSE.Views.PivotTable.txtGroupPivot_Custom": "Einstellbar",
+ "SSE.Views.PivotTable.txtGroupPivot_Dark": "Dunkel",
+ "SSE.Views.PivotTable.txtGroupPivot_Light": "Hell",
+ "SSE.Views.PivotTable.txtGroupPivot_Medium": "Mittelhoch",
"SSE.Views.PivotTable.txtPivotTable": "Pivot-Tabelle",
"SSE.Views.PivotTable.txtRefresh": "Aktualisieren",
+ "SSE.Views.PivotTable.txtRefreshAll": "Alles aktualisieren",
"SSE.Views.PivotTable.txtSelect": "Auswählen",
+ "SSE.Views.PivotTable.txtTable_PivotStyleDark": "Pivot-Tabelle Stil Dunkel",
+ "SSE.Views.PivotTable.txtTable_PivotStyleLight": "Pivot-Tabelle Stil Hell",
+ "SSE.Views.PivotTable.txtTable_PivotStyleMedium": "Pivot-Tabelle Stil Standard",
"SSE.Views.PrintSettings.btnDownload": "Speichern & Herunterladen",
"SSE.Views.PrintSettings.btnPrint": "Speichern & drucken",
"SSE.Views.PrintSettings.strBottom": "Unten",
@@ -3302,6 +3529,13 @@
"SSE.Views.TableSettingsAdvanced.textAltTip": "Die alternative textbasierte Darstellung der visuellen Objektinformation, die den Menschen mit geistigen Behinderungen oder Sehbehinderungen vorgelesen wird, um besser verstehen zu können, was genau auf dem Bild, AutoForm, Diagramm oder der Tabelle dargestellt wurde.",
"SSE.Views.TableSettingsAdvanced.textAltTitle": "Titel",
"SSE.Views.TableSettingsAdvanced.textTitle": "Tabelle - Erweiterte Einstellungen",
+ "SSE.Views.TableSettingsAdvanced.txtGroupTable_Custom": "Einstellbar",
+ "SSE.Views.TableSettingsAdvanced.txtGroupTable_Dark": "Dunkel",
+ "SSE.Views.TableSettingsAdvanced.txtGroupTable_Light": "Hell",
+ "SSE.Views.TableSettingsAdvanced.txtGroupTable_Medium": "Mittelhoch",
+ "SSE.Views.TableSettingsAdvanced.txtTable_TableStyleDark": "Tabellenformat - Dunkel",
+ "SSE.Views.TableSettingsAdvanced.txtTable_TableStyleLight": "Tabellenformat - Hell ",
+ "SSE.Views.TableSettingsAdvanced.txtTable_TableStyleMedium": "Tabellenformat - Mittel",
"SSE.Views.TextArtSettings.strBackground": "Hintergrundfarbe",
"SSE.Views.TextArtSettings.strColor": "Farbe",
"SSE.Views.TextArtSettings.strFill": "Füllung",
@@ -3347,11 +3581,12 @@
"SSE.Views.TextArtSettings.txtNoBorders": "Keine Linie",
"SSE.Views.TextArtSettings.txtPapyrus": "Papyrus",
"SSE.Views.TextArtSettings.txtWood": "Holz",
- "SSE.Views.Toolbar.capBtnAddComment": "Kommentar hinzufügen",
+ "SSE.Views.Toolbar.capBtnAddComment": "Kommentar Hinzufügen",
"SSE.Views.Toolbar.capBtnColorSchemas": "Farbschema",
"SSE.Views.Toolbar.capBtnComment": "Kommentar",
"SSE.Views.Toolbar.capBtnInsHeader": "Kopf- und Fußzeile",
"SSE.Views.Toolbar.capBtnInsSlicer": "Datenschnitt",
+ "SSE.Views.Toolbar.capBtnInsSmartArt": "SmartArt",
"SSE.Views.Toolbar.capBtnInsSymbol": "Symbol",
"SSE.Views.Toolbar.capBtnMargins": "Ränder",
"SSE.Views.Toolbar.capBtnPageOrient": "Orientierung",
@@ -3397,6 +3632,7 @@
"SSE.Views.Toolbar.textClockwise": "Im Uhrzeigersinn drehen",
"SSE.Views.Toolbar.textColorScales": "Farbskalen",
"SSE.Views.Toolbar.textCounterCw": "Gegen den Uhrzeigersinn drehen",
+ "SSE.Views.Toolbar.textCustom": "Einstellbar",
"SSE.Views.Toolbar.textDataBars": "Datenbalken",
"SSE.Views.Toolbar.textDelLeft": "Zellen nach links verschieben",
"SSE.Views.Toolbar.textDelUp": "Zellen nach oben verschieben",
@@ -3508,16 +3744,19 @@
"SSE.Views.Toolbar.tipInsertChart": "Diagramm einfügen",
"SSE.Views.Toolbar.tipInsertChartSpark": "Diagramm einfügen",
"SSE.Views.Toolbar.tipInsertEquation": "Formel einfügen",
+ "SSE.Views.Toolbar.tipInsertHorizontalText": "Horizontales Textfeld einfügen",
"SSE.Views.Toolbar.tipInsertHyperlink": "Hyperlink hinzufügen",
"SSE.Views.Toolbar.tipInsertImage": "Bild einfügen",
"SSE.Views.Toolbar.tipInsertOpt": "Zellen einfügen",
"SSE.Views.Toolbar.tipInsertShape": "AutoForm einfügen",
"SSE.Views.Toolbar.tipInsertSlicer": "Datenschnitt einfügen",
+ "SSE.Views.Toolbar.tipInsertSmartArt": "SmartArt einfügen",
"SSE.Views.Toolbar.tipInsertSpark": "Sparkline einfügen",
"SSE.Views.Toolbar.tipInsertSymbol": "Symbol einfügen",
"SSE.Views.Toolbar.tipInsertTable": "Tabelle einfügen",
"SSE.Views.Toolbar.tipInsertText": "Textfeld einfügen",
"SSE.Views.Toolbar.tipInsertTextart": "TextArt einfügen",
+ "SSE.Views.Toolbar.tipInsertVerticalText": "Vertikales Textfeld einfügen",
"SSE.Views.Toolbar.tipMerge": "Verbinden und zentrieren",
"SSE.Views.Toolbar.tipNone": "Keine",
"SSE.Views.Toolbar.tipNumFormat": "Zahlenformat",
@@ -3547,6 +3786,7 @@
"SSE.Views.Toolbar.txtAdditional": "Zusätzlich",
"SSE.Views.Toolbar.txtAscending": "Aufsteigend",
"SSE.Views.Toolbar.txtAutosumTip": "Summenbildung",
+ "SSE.Views.Toolbar.txtCellStyle": "Zellenformatvorlage",
"SSE.Views.Toolbar.txtClearAll": "Alle",
"SSE.Views.Toolbar.txtClearComments": "Kommentare",
"SSE.Views.Toolbar.txtClearFilter": "Filter leeren",
@@ -3679,7 +3919,9 @@
"SSE.Views.ViewTab.textGridlines": "Gitternetzlinien ",
"SSE.Views.ViewTab.textHeadings": "Überschriften",
"SSE.Views.ViewTab.textInterfaceTheme": "Thema der Benutzeroberfläche",
+ "SSE.Views.ViewTab.textLeftMenu": "Linkes Bedienfeld",
"SSE.Views.ViewTab.textManager": "Ansichten-Manager",
+ "SSE.Views.ViewTab.textRightMenu": "Rechtes Bedienungsfeld ",
"SSE.Views.ViewTab.textShowFrozenPanesShadow": "Schatten für fixierte Bereiche anzeigen",
"SSE.Views.ViewTab.textUnFreeze": "Fixierung aufheben",
"SSE.Views.ViewTab.textZeros": "Nullen anzeigen",
@@ -3689,6 +3931,17 @@
"SSE.Views.ViewTab.tipFreeze": "Fensterausschnitt fixieren",
"SSE.Views.ViewTab.tipInterfaceTheme": "Thema der Benutzeroberfläche",
"SSE.Views.ViewTab.tipSheetView": "Tabellenansicht",
+ "SSE.Views.WatchDialog.closeButtonText": "Schließen",
+ "SSE.Views.WatchDialog.textAdd": "Überwachung hinzufügen",
+ "SSE.Views.WatchDialog.textBook": "Buch",
+ "SSE.Views.WatchDialog.textCell": "Zelle",
+ "SSE.Views.WatchDialog.textDelete": "Überwachung löschen",
+ "SSE.Views.WatchDialog.textDeleteAll": "Alle löschen",
+ "SSE.Views.WatchDialog.textFormula": "Formula",
+ "SSE.Views.WatchDialog.textName": "Name",
+ "SSE.Views.WatchDialog.textSheet": "Blatt",
+ "SSE.Views.WatchDialog.textValue": "Wert",
+ "SSE.Views.WatchDialog.txtTitle": "Überwachungsfenster",
"SSE.Views.WBProtection.hintAllowRanges": "Bearbeitung der Bereiche erlauben",
"SSE.Views.WBProtection.hintProtectSheet": "Blatt schützen",
"SSE.Views.WBProtection.hintProtectWB": "Arbeitsmappe schützen",
diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json
index 3e8ee1e04..bb419af66 100644
--- a/apps/spreadsheeteditor/main/locale/en.json
+++ b/apps/spreadsheeteditor/main/locale/en.json
@@ -285,12 +285,12 @@
"Common.UI.SearchDialog.textMatchCase": "Case sensitive",
"Common.UI.SearchDialog.textReplaceDef": "Enter the replacement text",
"Common.UI.SearchDialog.textSearchStart": "Enter your text here",
- "Common.UI.SearchDialog.textTitle": "Find and Replace",
+ "Common.UI.SearchDialog.textTitle": "Find and replace",
"Common.UI.SearchDialog.textTitle2": "Find",
"Common.UI.SearchDialog.textWholeWords": "Whole words only",
"Common.UI.SearchDialog.txtBtnHideReplace": "Hide Replace",
"Common.UI.SearchDialog.txtBtnReplace": "Replace",
- "Common.UI.SearchDialog.txtBtnReplaceAll": "Replace All",
+ "Common.UI.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.textRecentColors": "Recent Colors",
@@ -326,16 +326,16 @@
"Common.Views.AutoCorrectDialog.textAdd": "Add",
"Common.Views.AutoCorrectDialog.textApplyAsWork": "Apply as you work",
"Common.Views.AutoCorrectDialog.textAutoCorrect": "AutoCorrect",
- "Common.Views.AutoCorrectDialog.textAutoFormat": "AutoFormat As You Type",
+ "Common.Views.AutoCorrectDialog.textAutoFormat": "AutoFormat as you type",
"Common.Views.AutoCorrectDialog.textBy": "By",
"Common.Views.AutoCorrectDialog.textDelete": "Delete",
"Common.Views.AutoCorrectDialog.textHyperlink": "Internet and network paths with hyperlinks",
"Common.Views.AutoCorrectDialog.textMathCorrect": "Math AutoCorrect",
"Common.Views.AutoCorrectDialog.textNewRowCol": "Include new rows and columns in table",
- "Common.Views.AutoCorrectDialog.textRecognized": "Recognized Functions",
+ "Common.Views.AutoCorrectDialog.textRecognized": "Recognized functions",
"Common.Views.AutoCorrectDialog.textRecognizedDesc": "The following expressions are recognized math expressions. They will not be automatically italicized.",
"Common.Views.AutoCorrectDialog.textReplace": "Replace",
- "Common.Views.AutoCorrectDialog.textReplaceText": "Replace As You Type",
+ "Common.Views.AutoCorrectDialog.textReplaceText": "Replace as you type",
"Common.Views.AutoCorrectDialog.textReplaceType": "Replace text as you type",
"Common.Views.AutoCorrectDialog.textReset": "Reset",
"Common.Views.AutoCorrectDialog.textResetAll": "Reset to default",
@@ -376,12 +376,12 @@
"Common.Views.Comments.txtEmpty": "There are no comments in the sheet.",
"Common.Views.CopyWarningDialog.textDontShow": "Don't show this message again",
"Common.Views.CopyWarningDialog.textMsg": "Copy, cut and paste actions using the editor toolbar buttons and context menu actions will be performed within this editor tab only.
To copy or paste to or from applications outside the editor tab use the following keyboard combinations:",
- "Common.Views.CopyWarningDialog.textTitle": "Copy, Cut and Paste Actions",
+ "Common.Views.CopyWarningDialog.textTitle": "Copy, Cut and Paste actions",
"Common.Views.CopyWarningDialog.textToCopy": "for Copy",
"Common.Views.CopyWarningDialog.textToCut": "for Cut",
"Common.Views.CopyWarningDialog.textToPaste": "for Paste",
"Common.Views.DocumentAccessDialog.textLoading": "Loading...",
- "Common.Views.DocumentAccessDialog.textTitle": "Sharing Settings",
+ "Common.Views.DocumentAccessDialog.textTitle": "Sharing settings",
"Common.Views.EditNameDialog.textLabel": "Label:",
"Common.Views.EditNameDialog.textLabelError": "Label must not be empty.",
"Common.Views.Header.labelCoUsersDescr": "Users who are editing the file:",
@@ -423,11 +423,11 @@
"Common.Views.ImageFromUrlDialog.txtEmpty": "This field is required",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format",
"Common.Views.ListSettingsDialog.textBulleted": "Bulleted",
- "Common.Views.ListSettingsDialog.textFromFile": "From File",
- "Common.Views.ListSettingsDialog.textFromStorage": "From Storage",
+ "Common.Views.ListSettingsDialog.textFromFile": "From file",
+ "Common.Views.ListSettingsDialog.textFromStorage": "From storage",
"Common.Views.ListSettingsDialog.textFromUrl": "From URL",
"Common.Views.ListSettingsDialog.textNumbering": "Numbered",
- "Common.Views.ListSettingsDialog.textSelect": "Select From",
+ "Common.Views.ListSettingsDialog.textSelect": "Select from",
"Common.Views.ListSettingsDialog.tipChange": "Change bullet",
"Common.Views.ListSettingsDialog.txtBullet": "Bullet",
"Common.Views.ListSettingsDialog.txtColor": "Color",
@@ -440,9 +440,9 @@
"Common.Views.ListSettingsDialog.txtSize": "Size",
"Common.Views.ListSettingsDialog.txtStart": "Start at",
"Common.Views.ListSettingsDialog.txtSymbol": "Symbol",
- "Common.Views.ListSettingsDialog.txtTitle": "List Settings",
+ "Common.Views.ListSettingsDialog.txtTitle": "List settings",
"Common.Views.ListSettingsDialog.txtType": "Type",
- "Common.Views.OpenDialog.closeButtonText": "Close File",
+ "Common.Views.OpenDialog.closeButtonText": "Close file",
"Common.Views.OpenDialog.textInvalidRange": "Invalid cells range",
"Common.Views.OpenDialog.textSelectData": "Select data",
"Common.Views.OpenDialog.txtAdvanced": "Advanced",
@@ -462,12 +462,12 @@
"Common.Views.OpenDialog.txtSpace": "Space",
"Common.Views.OpenDialog.txtTab": "Tab",
"Common.Views.OpenDialog.txtTitle": "Choose %1 options",
- "Common.Views.OpenDialog.txtTitleProtected": "Protected File",
+ "Common.Views.OpenDialog.txtTitleProtected": "Protected file",
"Common.Views.PasswordDialog.txtDescription": "Set a password to protect this document",
"Common.Views.PasswordDialog.txtIncorrectPwd": "Confirmation password is not identical",
"Common.Views.PasswordDialog.txtPassword": "Password",
"Common.Views.PasswordDialog.txtRepeat": "Repeat password",
- "Common.Views.PasswordDialog.txtTitle": "Set Password",
+ "Common.Views.PasswordDialog.txtTitle": "Set password",
"Common.Views.PasswordDialog.txtWarning": "Warning: If you lose or forget the password, it cannot be recovered. Please keep it in a safe place.",
"Common.Views.PluginDlg.textLoading": "Loading",
"Common.Views.Plugins.groupCaption": "Plugins",
@@ -548,6 +548,7 @@
"Common.Views.ReviewPopover.textCancel": "Cancel",
"Common.Views.ReviewPopover.textClose": "Close",
"Common.Views.ReviewPopover.textEdit": "OK",
+ "Common.Views.ReviewPopover.textEnterComment": "Enter your comment here",
"Common.Views.ReviewPopover.textMention": "+mention will provide access to the document and send an email",
"Common.Views.ReviewPopover.textMentionNotify": "+mention will notify the user via email",
"Common.Views.ReviewPopover.textOpenAgain": "Open Again",
@@ -594,7 +595,7 @@
"Common.Views.SearchPanel.tipNextResult": "Next result",
"Common.Views.SearchPanel.tipPreviousResult": "Previous result",
"Common.Views.SelectFileDlg.textLoading": "Loading",
- "Common.Views.SelectFileDlg.textTitle": "Select Data Source",
+ "Common.Views.SelectFileDlg.textTitle": "Select data source",
"Common.Views.SignDialog.textBold": "Bold",
"Common.Views.SignDialog.textCertificate": "Certificate",
"Common.Views.SignDialog.textChange": "Change",
@@ -603,13 +604,13 @@
"Common.Views.SignDialog.textNameError": "Signer name must not be empty.",
"Common.Views.SignDialog.textPurpose": "Purpose for signing this document",
"Common.Views.SignDialog.textSelect": "Select",
- "Common.Views.SignDialog.textSelectImage": "Select Image",
+ "Common.Views.SignDialog.textSelectImage": "Select image",
"Common.Views.SignDialog.textSignature": "Signature looks as",
- "Common.Views.SignDialog.textTitle": "Sign Document",
+ "Common.Views.SignDialog.textTitle": "Sign document",
"Common.Views.SignDialog.textUseImage": "or click 'Select Image' to use a picture as signature",
"Common.Views.SignDialog.textValid": "Valid from %1 to %2",
- "Common.Views.SignDialog.tipFontName": "Font Name",
- "Common.Views.SignDialog.tipFontSize": "Font Size",
+ "Common.Views.SignDialog.tipFontName": "Font name",
+ "Common.Views.SignDialog.tipFontSize": "Font size",
"Common.Views.SignSettingsDialog.textAllowComment": "Allow signer to add comment in the signature dialog",
"Common.Views.SignSettingsDialog.textDefInstruction": "Before signing this document, verify that the content you are signing is correct.",
"Common.Views.SignSettingsDialog.textInfoEmail": "Suggested signer's e-mail",
@@ -617,35 +618,35 @@
"Common.Views.SignSettingsDialog.textInfoTitle": "Suggested signer's title",
"Common.Views.SignSettingsDialog.textInstructions": "Instructions for signer",
"Common.Views.SignSettingsDialog.textShowDate": "Show sign date in signature line",
- "Common.Views.SignSettingsDialog.textTitle": "Signature Setup",
+ "Common.Views.SignSettingsDialog.textTitle": "Signature setup",
"Common.Views.SignSettingsDialog.txtEmpty": "This field is required",
"Common.Views.SymbolTableDialog.textCharacter": "Character",
"Common.Views.SymbolTableDialog.textCode": "Unicode HEX value",
- "Common.Views.SymbolTableDialog.textCopyright": "Copyright Sign",
- "Common.Views.SymbolTableDialog.textDCQuote": "Closing Double Quote",
- "Common.Views.SymbolTableDialog.textDOQuote": "Opening Double Quote",
- "Common.Views.SymbolTableDialog.textEllipsis": "Horizontal Ellipsis",
- "Common.Views.SymbolTableDialog.textEmDash": "Em Dash",
- "Common.Views.SymbolTableDialog.textEmSpace": "Em Space",
- "Common.Views.SymbolTableDialog.textEnDash": "En Dash",
- "Common.Views.SymbolTableDialog.textEnSpace": "En Space",
+ "Common.Views.SymbolTableDialog.textCopyright": "Copyright sign",
+ "Common.Views.SymbolTableDialog.textDCQuote": "Closing double quote",
+ "Common.Views.SymbolTableDialog.textDOQuote": "Opening double quote",
+ "Common.Views.SymbolTableDialog.textEllipsis": "Horizontal ellipsis",
+ "Common.Views.SymbolTableDialog.textEmDash": "Em dash",
+ "Common.Views.SymbolTableDialog.textEmSpace": "Em space",
+ "Common.Views.SymbolTableDialog.textEnDash": "En dash",
+ "Common.Views.SymbolTableDialog.textEnSpace": "En space",
"Common.Views.SymbolTableDialog.textFont": "Font",
- "Common.Views.SymbolTableDialog.textNBHyphen": "Non-breaking Hyphen",
- "Common.Views.SymbolTableDialog.textNBSpace": "No-break Space",
- "Common.Views.SymbolTableDialog.textPilcrow": "Pilcrow Sign",
- "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Em Space",
+ "Common.Views.SymbolTableDialog.textNBHyphen": "Non-breaking hyphen",
+ "Common.Views.SymbolTableDialog.textNBSpace": "No-break space",
+ "Common.Views.SymbolTableDialog.textPilcrow": "Pilcrow sign",
+ "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Em space",
"Common.Views.SymbolTableDialog.textRange": "Range",
"Common.Views.SymbolTableDialog.textRecent": "Recently used symbols",
- "Common.Views.SymbolTableDialog.textRegistered": "Registered Sign",
- "Common.Views.SymbolTableDialog.textSCQuote": "Closing Single Quote",
- "Common.Views.SymbolTableDialog.textSection": "Section Sign",
+ "Common.Views.SymbolTableDialog.textRegistered": "Registered sign",
+ "Common.Views.SymbolTableDialog.textSCQuote": "Closing single quote",
+ "Common.Views.SymbolTableDialog.textSection": "Section sign",
"Common.Views.SymbolTableDialog.textShortcut": "Shortcut key",
- "Common.Views.SymbolTableDialog.textSHyphen": "Soft Hyphen",
- "Common.Views.SymbolTableDialog.textSOQuote": "Opening Single Quote",
+ "Common.Views.SymbolTableDialog.textSHyphen": "Soft hyphen",
+ "Common.Views.SymbolTableDialog.textSOQuote": "Opening single quote",
"Common.Views.SymbolTableDialog.textSpecial": "Special characters",
"Common.Views.SymbolTableDialog.textSymbols": "Symbols",
"Common.Views.SymbolTableDialog.textTitle": "Symbol",
- "Common.Views.SymbolTableDialog.textTradeMark": "Trademark Symbol",
+ "Common.Views.SymbolTableDialog.textTradeMark": "Trademark symbol",
"Common.Views.UserNameDialog.textDontShow": "Don't ask me again",
"Common.Views.UserNameDialog.textLabel": "Label:",
"Common.Views.UserNameDialog.textLabelError": "Label must not be empty.",
@@ -654,6 +655,7 @@
"SSE.Controllers.DataTab.textRows": "Rows",
"SSE.Controllers.DataTab.textWizard": "Text to Columns",
"SSE.Controllers.DataTab.txtDataValidation": "Data Validation",
+ "SSE.Controllers.DataTab.txtErrorExternalLink": "Error: updating is failed",
"SSE.Controllers.DataTab.txtExpand": "Expand",
"SSE.Controllers.DataTab.txtExpandRemDuplicates": "The data next to the selection will not be removed. Do you want to expand the selection to include the adjacent data or continue with the currently selected cells only?",
"SSE.Controllers.DataTab.txtExtendDataValidation": "The selection contains some cells without Data Validation settings. Do you want to extend Data Validation to these cells?",
@@ -801,7 +803,7 @@
"SSE.Controllers.DocumentHolder.txtRemScripts": "Remove scripts",
"SSE.Controllers.DocumentHolder.txtRemSubscript": "Remove subscript",
"SSE.Controllers.DocumentHolder.txtRemSuperscript": "Remove superscript",
- "SSE.Controllers.DocumentHolder.txtRowHeight": "Row Height",
+ "SSE.Controllers.DocumentHolder.txtRowHeight": "Row height",
"SSE.Controllers.DocumentHolder.txtScriptsAfter": "Scripts after text",
"SSE.Controllers.DocumentHolder.txtScriptsBefore": "Scripts before text",
"SSE.Controllers.DocumentHolder.txtShowBottomLimit": "Show bottom limit",
@@ -909,6 +911,11 @@
"SSE.Controllers.Main.errorFrmlWrongReferences": "The function refers to a sheet that does not exist. Please check the data and try again.",
"SSE.Controllers.Main.errorFTChangeTableRangeError": "Operation could not be completed for the selected cell range. Select a range so that the first table row was on the same row and the resulting table overlapped the current one.",
"SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "Operation could not be completed for the selected cell range. Select a range which does not include other tables.",
+ "SSE.Controllers.Main.errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "SSE.Controllers.Main.errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "SSE.Controllers.Main.errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "SSE.Controllers.Main.errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "SSE.Controllers.Main.errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
"SSE.Controllers.Main.errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.",
"SSE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor",
"SSE.Controllers.Main.errorKeyExpire": "Key descriptor expired",
@@ -1325,7 +1332,7 @@
"SSE.Controllers.Toolbar.textIntegral": "Integrals",
"SSE.Controllers.Toolbar.textLargeOperator": "Large Operators",
"SSE.Controllers.Toolbar.textLimitAndLog": "Limits And Logarithms",
- "SSE.Controllers.Toolbar.textLongOperation": "Long operation",
+ "SSE.Controllers.Toolbar.textLongOperation": "Long Operation",
"SSE.Controllers.Toolbar.textMatrix": "Matrices",
"SSE.Controllers.Toolbar.textOperator": "Operators",
"SSE.Controllers.Toolbar.textPivot": "Pivot Table",
@@ -1404,7 +1411,7 @@
"SSE.Controllers.Toolbar.txtBracket_UppLim": "Brackets",
"SSE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Single bracket",
"SSE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Single bracket",
- "SSE.Controllers.Toolbar.txtDeleteCells": "Delete Cells",
+ "SSE.Controllers.Toolbar.txtDeleteCells": "Delete cells",
"SSE.Controllers.Toolbar.txtExpand": "Expand and sort",
"SSE.Controllers.Toolbar.txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?",
"SSE.Controllers.Toolbar.txtFractionDiagonal": "Skewed fraction",
@@ -1444,17 +1451,17 @@
"SSE.Controllers.Toolbar.txtFunction_Tan": "Tangent function",
"SSE.Controllers.Toolbar.txtFunction_Tanh": "Hyperbolic tangent function",
"SSE.Controllers.Toolbar.txtGroupCell_Custom": "Custom",
- "SSE.Controllers.Toolbar.txtGroupCell_DataAndModel": "Data and Model",
- "SSE.Controllers.Toolbar.txtGroupCell_GoodBadAndNeutral": "Good, Bad and Neutral",
- "SSE.Controllers.Toolbar.txtGroupCell_NoName": "No Name",
- "SSE.Controllers.Toolbar.txtGroupCell_NumberFormat": "Number Format",
- "SSE.Controllers.Toolbar.txtGroupCell_ThemedCallStyles": "Themed Cell Styles",
- "SSE.Controllers.Toolbar.txtGroupCell_TitlesAndHeadings": "Titles and Headings",
+ "SSE.Controllers.Toolbar.txtGroupCell_DataAndModel": "Data and model",
+ "SSE.Controllers.Toolbar.txtGroupCell_GoodBadAndNeutral": "Good, bad and neutral",
+ "SSE.Controllers.Toolbar.txtGroupCell_NoName": "No name",
+ "SSE.Controllers.Toolbar.txtGroupCell_NumberFormat": "Number format",
+ "SSE.Controllers.Toolbar.txtGroupCell_ThemedCallStyles": "Themed cell styles",
+ "SSE.Controllers.Toolbar.txtGroupCell_TitlesAndHeadings": "Titles and headings",
"SSE.Controllers.Toolbar.txtGroupTable_Custom": "Custom",
"SSE.Controllers.Toolbar.txtGroupTable_Dark": "Dark",
"SSE.Controllers.Toolbar.txtGroupTable_Light": "Light",
"SSE.Controllers.Toolbar.txtGroupTable_Medium": "Medium",
- "SSE.Controllers.Toolbar.txtInsertCells": "Insert Cells",
+ "SSE.Controllers.Toolbar.txtInsertCells": "Insert cells",
"SSE.Controllers.Toolbar.txtIntegral": "Integral",
"SSE.Controllers.Toolbar.txtIntegral_dtheta": "Differential theta",
"SSE.Controllers.Toolbar.txtIntegral_dx": "Differential x",
@@ -1671,9 +1678,9 @@
"SSE.Controllers.Toolbar.txtSymbol_vdots": "Vertical ellipsis",
"SSE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
"SSE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
- "SSE.Controllers.Toolbar.txtTable_TableStyleDark": "Table Style Dark",
- "SSE.Controllers.Toolbar.txtTable_TableStyleLight": "Table Style Light",
- "SSE.Controllers.Toolbar.txtTable_TableStyleMedium": "Table Style Medium",
+ "SSE.Controllers.Toolbar.txtTable_TableStyleDark": "Table style Dark",
+ "SSE.Controllers.Toolbar.txtTable_TableStyleLight": "Table style Light",
+ "SSE.Controllers.Toolbar.txtTable_TableStyleMedium": "Table style Medium",
"SSE.Controllers.Toolbar.warnLongOperation": "The operation you are about to perform might take rather much time to complete. Are you sure you want to continue?",
"SSE.Controllers.Toolbar.warnMergeLostData": "Only the data from the upper-left cell will remain in the merged cell. Are you sure you want to continue?",
"SSE.Controllers.Viewport.textFreezePanes": "Freeze Panes",
@@ -1685,13 +1692,13 @@
"SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Thousands separator",
"SSE.Views.AdvancedSeparatorDialog.textLabel": "Settings used to recognize numeric data",
"SSE.Views.AdvancedSeparatorDialog.textQualifier": "Text qualifier",
- "SSE.Views.AdvancedSeparatorDialog.textTitle": "Advanced Settings",
+ "SSE.Views.AdvancedSeparatorDialog.textTitle": "Advanced settings",
"SSE.Views.AdvancedSeparatorDialog.txtNone": "(none)",
- "SSE.Views.AutoFilterDialog.btnCustomFilter": "Custom Filter",
+ "SSE.Views.AutoFilterDialog.btnCustomFilter": "Custom filter",
"SSE.Views.AutoFilterDialog.textAddSelection": "Add current selection to filter",
"SSE.Views.AutoFilterDialog.textEmptyItem": "{Blanks}",
- "SSE.Views.AutoFilterDialog.textSelectAll": "Select All",
- "SSE.Views.AutoFilterDialog.textSelectAllResults": "Select All Search Results",
+ "SSE.Views.AutoFilterDialog.textSelectAll": "Select all",
+ "SSE.Views.AutoFilterDialog.textSelectAllResults": "Select all search results",
"SSE.Views.AutoFilterDialog.textWarning": "Warning",
"SSE.Views.AutoFilterDialog.txtAboveAve": "Above average",
"SSE.Views.AutoFilterDialog.txtBegins": "Begins with...",
@@ -1718,8 +1725,8 @@
"SSE.Views.AutoFilterDialog.txtReapply": "Reapply",
"SSE.Views.AutoFilterDialog.txtSortCellColor": "Sort by cells color",
"SSE.Views.AutoFilterDialog.txtSortFontColor": "Sort by font color",
- "SSE.Views.AutoFilterDialog.txtSortHigh2Low": "Sort Highest to Lowest",
- "SSE.Views.AutoFilterDialog.txtSortLow2High": "Sort Lowest to Highest",
+ "SSE.Views.AutoFilterDialog.txtSortHigh2Low": "Sort highest to lowest",
+ "SSE.Views.AutoFilterDialog.txtSortLow2High": "Sort lowest to highest",
"SSE.Views.AutoFilterDialog.txtSortOption": "More sort options...",
"SSE.Views.AutoFilterDialog.txtTextFilter": "Text filter",
"SSE.Views.AutoFilterDialog.txtTitle": "Filter",
@@ -1733,7 +1740,7 @@
"SSE.Views.CellRangeDialog.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order: opening price, max price, min price, closing price.",
"SSE.Views.CellRangeDialog.txtEmpty": "This field is required",
"SSE.Views.CellRangeDialog.txtInvalidRange": "ERROR! Invalid cells range",
- "SSE.Views.CellRangeDialog.txtTitle": "Select Data Range",
+ "SSE.Views.CellRangeDialog.txtTitle": "Select data range",
"SSE.Views.CellSettings.strShrink": "Shrink to fit",
"SSE.Views.CellSettings.strWrap": "Wrap text",
"SSE.Views.CellSettings.textAngle": "Angle",
@@ -1791,16 +1798,16 @@
"SSE.Views.ChartDataDialog.errorNoValues": "To create a chart, the series must contain at least one value.",
"SSE.Views.ChartDataDialog.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order: opening price, max price, min price, closing price.",
"SSE.Views.ChartDataDialog.textAdd": "Add",
- "SSE.Views.ChartDataDialog.textCategory": "Horizontal (Category) Axis Labels",
+ "SSE.Views.ChartDataDialog.textCategory": "Horizontal (category) axis labels",
"SSE.Views.ChartDataDialog.textData": "Chart data range",
"SSE.Views.ChartDataDialog.textDelete": "Remove",
"SSE.Views.ChartDataDialog.textDown": "Down",
"SSE.Views.ChartDataDialog.textEdit": "Edit",
"SSE.Views.ChartDataDialog.textInvalidRange": "Invalid cells range",
"SSE.Views.ChartDataDialog.textSelectData": "Select data",
- "SSE.Views.ChartDataDialog.textSeries": "Legend Entries (Series)",
- "SSE.Views.ChartDataDialog.textSwitch": "Switch Row/Column",
- "SSE.Views.ChartDataDialog.textTitle": "Chart Data",
+ "SSE.Views.ChartDataDialog.textSeries": "Legend entries (series)",
+ "SSE.Views.ChartDataDialog.textSwitch": "Switch row/column",
+ "SSE.Views.ChartDataDialog.textTitle": "Chart data",
"SSE.Views.ChartDataDialog.textUp": "Up",
"SSE.Views.ChartDataRangeDialog.errorInFormula": "There's an error in formula you entered.",
"SSE.Views.ChartDataRangeDialog.errorInvalidReference": "The reference is not valid. Reference must be to an open worksheet.",
@@ -1814,11 +1821,11 @@
"SSE.Views.ChartDataRangeDialog.txtAxisLabel": "Axis label range",
"SSE.Views.ChartDataRangeDialog.txtChoose": "Choose range",
"SSE.Views.ChartDataRangeDialog.txtSeriesName": "Series name",
- "SSE.Views.ChartDataRangeDialog.txtTitleCategory": "Axis Labels",
- "SSE.Views.ChartDataRangeDialog.txtTitleSeries": "Edit Series",
+ "SSE.Views.ChartDataRangeDialog.txtTitleCategory": "Axis labels",
+ "SSE.Views.ChartDataRangeDialog.txtTitleSeries": "Edit series",
"SSE.Views.ChartDataRangeDialog.txtValues": "Values",
- "SSE.Views.ChartDataRangeDialog.txtXValues": "X Values",
- "SSE.Views.ChartDataRangeDialog.txtYValues": "Y Values",
+ "SSE.Views.ChartDataRangeDialog.txtXValues": "X values",
+ "SSE.Views.ChartDataRangeDialog.txtYValues": "Y values",
"SSE.Views.ChartSettings.errorMaxRows": "The maximum number of data series per chart is 255.",
"SSE.Views.ChartSettings.strLineWeight": "Line Weight",
"SSE.Views.ChartSettings.strSparkColor": "Color",
@@ -1863,133 +1870,133 @@
"SSE.Views.ChartSettingsDlg.errorMaxRows": "ERROR! The maximum number of data series per chart is 255",
"SSE.Views.ChartSettingsDlg.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order: opening price, max price, min price, closing price.",
"SSE.Views.ChartSettingsDlg.textAbsolute": "Don't move or size with cells",
- "SSE.Views.ChartSettingsDlg.textAlt": "Alternative Text",
+ "SSE.Views.ChartSettingsDlg.textAlt": "Alternative text",
"SSE.Views.ChartSettingsDlg.textAltDescription": "Description",
"SSE.Views.ChartSettingsDlg.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart, or table.",
"SSE.Views.ChartSettingsDlg.textAltTitle": "Title",
"SSE.Views.ChartSettingsDlg.textAuto": "Auto",
- "SSE.Views.ChartSettingsDlg.textAutoEach": "Auto for Each",
- "SSE.Views.ChartSettingsDlg.textAxisCrosses": "Axis Crosses",
- "SSE.Views.ChartSettingsDlg.textAxisOptions": "Axis Options",
- "SSE.Views.ChartSettingsDlg.textAxisPos": "Axis Position",
- "SSE.Views.ChartSettingsDlg.textAxisSettings": "Axis Settings",
+ "SSE.Views.ChartSettingsDlg.textAutoEach": "Auto for each",
+ "SSE.Views.ChartSettingsDlg.textAxisCrosses": "Axis crosses",
+ "SSE.Views.ChartSettingsDlg.textAxisOptions": "Axis options",
+ "SSE.Views.ChartSettingsDlg.textAxisPos": "Axis position",
+ "SSE.Views.ChartSettingsDlg.textAxisSettings": "Axis settings",
"SSE.Views.ChartSettingsDlg.textAxisTitle": "Title",
"SSE.Views.ChartSettingsDlg.textBase": "Base",
- "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Between Tick Marks",
+ "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Between tick marks",
"SSE.Views.ChartSettingsDlg.textBillions": "Billions",
"SSE.Views.ChartSettingsDlg.textBottom": "Bottom",
- "SSE.Views.ChartSettingsDlg.textCategoryName": "Category Name",
+ "SSE.Views.ChartSettingsDlg.textCategoryName": "Category name",
"SSE.Views.ChartSettingsDlg.textCenter": "Center",
- "SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Chart Elements & Chart Legend",
- "SSE.Views.ChartSettingsDlg.textChartTitle": "Chart Title",
+ "SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Chart elements & Chart legend",
+ "SSE.Views.ChartSettingsDlg.textChartTitle": "Chart title",
"SSE.Views.ChartSettingsDlg.textCross": "Cross",
"SSE.Views.ChartSettingsDlg.textCustom": "Custom",
"SSE.Views.ChartSettingsDlg.textDataColumns": "in columns",
- "SSE.Views.ChartSettingsDlg.textDataLabels": "Data Labels",
+ "SSE.Views.ChartSettingsDlg.textDataLabels": "Data labels",
"SSE.Views.ChartSettingsDlg.textDataRows": "in rows",
- "SSE.Views.ChartSettingsDlg.textDisplayLegend": "Display Legend",
- "SSE.Views.ChartSettingsDlg.textEmptyCells": "Hidden and Empty cells",
+ "SSE.Views.ChartSettingsDlg.textDisplayLegend": "Display legend",
+ "SSE.Views.ChartSettingsDlg.textEmptyCells": "Hidden and empty cells",
"SSE.Views.ChartSettingsDlg.textEmptyLine": "Connect data points with line",
- "SSE.Views.ChartSettingsDlg.textFit": "Fit to Width",
+ "SSE.Views.ChartSettingsDlg.textFit": "Fit to width",
"SSE.Views.ChartSettingsDlg.textFixed": "Fixed",
"SSE.Views.ChartSettingsDlg.textFormat": "Label format",
"SSE.Views.ChartSettingsDlg.textGaps": "Gaps",
"SSE.Views.ChartSettingsDlg.textGridLines": "Gridlines",
- "SSE.Views.ChartSettingsDlg.textGroup": "Group Sparkline",
+ "SSE.Views.ChartSettingsDlg.textGroup": "Group sparkline",
"SSE.Views.ChartSettingsDlg.textHide": "Hide",
"SSE.Views.ChartSettingsDlg.textHideAxis": "Hide axis",
"SSE.Views.ChartSettingsDlg.textHigh": "High",
- "SSE.Views.ChartSettingsDlg.textHorAxis": "Horizontal Axis",
- "SSE.Views.ChartSettingsDlg.textHorAxisSec": "Secondary Horizontal Axis",
+ "SSE.Views.ChartSettingsDlg.textHorAxis": "Horizontal axis",
+ "SSE.Views.ChartSettingsDlg.textHorAxisSec": "Secondary horizontal axis",
"SSE.Views.ChartSettingsDlg.textHorizontal": "Horizontal",
"SSE.Views.ChartSettingsDlg.textHundredMil": "100 000 000",
"SSE.Views.ChartSettingsDlg.textHundreds": "Hundreds",
"SSE.Views.ChartSettingsDlg.textHundredThousands": "100 000",
"SSE.Views.ChartSettingsDlg.textIn": "In",
- "SSE.Views.ChartSettingsDlg.textInnerBottom": "Inner Bottom",
- "SSE.Views.ChartSettingsDlg.textInnerTop": "Inner Top",
+ "SSE.Views.ChartSettingsDlg.textInnerBottom": "Inner bottom",
+ "SSE.Views.ChartSettingsDlg.textInnerTop": "Inner top",
"SSE.Views.ChartSettingsDlg.textInvalidRange": "ERROR! Invalid cells range",
- "SSE.Views.ChartSettingsDlg.textLabelDist": "Axis Label Distance",
- "SSE.Views.ChartSettingsDlg.textLabelInterval": "Interval between Labels ",
- "SSE.Views.ChartSettingsDlg.textLabelOptions": "Label Options",
- "SSE.Views.ChartSettingsDlg.textLabelPos": "Label Position",
+ "SSE.Views.ChartSettingsDlg.textLabelDist": "Axis label distance",
+ "SSE.Views.ChartSettingsDlg.textLabelInterval": "Interval between labels ",
+ "SSE.Views.ChartSettingsDlg.textLabelOptions": "Label options",
+ "SSE.Views.ChartSettingsDlg.textLabelPos": "Label position",
"SSE.Views.ChartSettingsDlg.textLayout": "Layout",
"SSE.Views.ChartSettingsDlg.textLeft": "Left",
- "SSE.Views.ChartSettingsDlg.textLeftOverlay": "Left Overlay",
+ "SSE.Views.ChartSettingsDlg.textLeftOverlay": "Left overlay",
"SSE.Views.ChartSettingsDlg.textLegendBottom": "Bottom",
"SSE.Views.ChartSettingsDlg.textLegendLeft": "Left",
"SSE.Views.ChartSettingsDlg.textLegendPos": "Legend",
"SSE.Views.ChartSettingsDlg.textLegendRight": "Right",
"SSE.Views.ChartSettingsDlg.textLegendTop": "Top",
"SSE.Views.ChartSettingsDlg.textLines": "Lines ",
- "SSE.Views.ChartSettingsDlg.textLocationRange": "Location Range",
- "SSE.Views.ChartSettingsDlg.textLogScale": "Logarithmic Scale",
+ "SSE.Views.ChartSettingsDlg.textLocationRange": "Location range",
+ "SSE.Views.ChartSettingsDlg.textLogScale": "Logarithmic scale",
"SSE.Views.ChartSettingsDlg.textLow": "Low",
"SSE.Views.ChartSettingsDlg.textMajor": "Major",
- "SSE.Views.ChartSettingsDlg.textMajorMinor": "Major and Minor",
- "SSE.Views.ChartSettingsDlg.textMajorType": "Major Type",
+ "SSE.Views.ChartSettingsDlg.textMajorMinor": "Major and minor",
+ "SSE.Views.ChartSettingsDlg.textMajorType": "Major type",
"SSE.Views.ChartSettingsDlg.textManual": "Manual",
"SSE.Views.ChartSettingsDlg.textMarkers": "Markers",
- "SSE.Views.ChartSettingsDlg.textMarksInterval": "Interval between Marks",
- "SSE.Views.ChartSettingsDlg.textMaxValue": "Maximum Value",
+ "SSE.Views.ChartSettingsDlg.textMarksInterval": "Interval between marks",
+ "SSE.Views.ChartSettingsDlg.textMaxValue": "Maximum value",
"SSE.Views.ChartSettingsDlg.textMillions": "Millions",
"SSE.Views.ChartSettingsDlg.textMinor": "Minor",
- "SSE.Views.ChartSettingsDlg.textMinorType": "Minor Type",
- "SSE.Views.ChartSettingsDlg.textMinValue": "Minimum Value",
+ "SSE.Views.ChartSettingsDlg.textMinorType": "Minor type",
+ "SSE.Views.ChartSettingsDlg.textMinValue": "Minimum value",
"SSE.Views.ChartSettingsDlg.textNextToAxis": "Next to axis",
"SSE.Views.ChartSettingsDlg.textNone": "None",
- "SSE.Views.ChartSettingsDlg.textNoOverlay": "No Overlay",
+ "SSE.Views.ChartSettingsDlg.textNoOverlay": "No overlay",
"SSE.Views.ChartSettingsDlg.textOneCell": "Move but don't size with cells",
- "SSE.Views.ChartSettingsDlg.textOnTickMarks": "On Tick Marks",
+ "SSE.Views.ChartSettingsDlg.textOnTickMarks": "On tick marks",
"SSE.Views.ChartSettingsDlg.textOut": "Out",
- "SSE.Views.ChartSettingsDlg.textOuterTop": "Outer Top",
+ "SSE.Views.ChartSettingsDlg.textOuterTop": "Outer top",
"SSE.Views.ChartSettingsDlg.textOverlay": "Overlay",
"SSE.Views.ChartSettingsDlg.textReverse": "Values in reverse order",
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Reverse order",
"SSE.Views.ChartSettingsDlg.textRight": "Right",
- "SSE.Views.ChartSettingsDlg.textRightOverlay": "Right Overlay",
+ "SSE.Views.ChartSettingsDlg.textRightOverlay": "Right overlay",
"SSE.Views.ChartSettingsDlg.textRotated": "Rotated",
- "SSE.Views.ChartSettingsDlg.textSameAll": "Same for All",
- "SSE.Views.ChartSettingsDlg.textSelectData": "Select Data",
- "SSE.Views.ChartSettingsDlg.textSeparator": "Data Labels Separator",
- "SSE.Views.ChartSettingsDlg.textSeriesName": "Series Name",
+ "SSE.Views.ChartSettingsDlg.textSameAll": "Same for all",
+ "SSE.Views.ChartSettingsDlg.textSelectData": "Select data",
+ "SSE.Views.ChartSettingsDlg.textSeparator": "Data labels separator",
+ "SSE.Views.ChartSettingsDlg.textSeriesName": "Series name",
"SSE.Views.ChartSettingsDlg.textShow": "Show",
"SSE.Views.ChartSettingsDlg.textShowBorders": "Display chart borders",
"SSE.Views.ChartSettingsDlg.textShowData": "Show data in hidden rows and columns",
"SSE.Views.ChartSettingsDlg.textShowEmptyCells": "Show empty cells as",
- "SSE.Views.ChartSettingsDlg.textShowSparkAxis": "Show Axis",
+ "SSE.Views.ChartSettingsDlg.textShowSparkAxis": "Show axis",
"SSE.Views.ChartSettingsDlg.textShowValues": "Display chart values",
- "SSE.Views.ChartSettingsDlg.textSingle": "Single Sparkline",
+ "SSE.Views.ChartSettingsDlg.textSingle": "Single sparkline",
"SSE.Views.ChartSettingsDlg.textSmooth": "Smooth",
- "SSE.Views.ChartSettingsDlg.textSnap": "Cell Snapping",
- "SSE.Views.ChartSettingsDlg.textSparkRanges": "Sparkline Ranges",
+ "SSE.Views.ChartSettingsDlg.textSnap": "Cell snapping",
+ "SSE.Views.ChartSettingsDlg.textSparkRanges": "Sparkline ranges",
"SSE.Views.ChartSettingsDlg.textStraight": "Straight",
"SSE.Views.ChartSettingsDlg.textStyle": "Style",
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
"SSE.Views.ChartSettingsDlg.textThousands": "Thousands",
"SSE.Views.ChartSettingsDlg.textTickOptions": "Tick Options",
- "SSE.Views.ChartSettingsDlg.textTitle": "Chart - Advanced Settings",
- "SSE.Views.ChartSettingsDlg.textTitleSparkline": "Sparkline - Advanced Settings",
+ "SSE.Views.ChartSettingsDlg.textTitle": "Chart - Advanced settings",
+ "SSE.Views.ChartSettingsDlg.textTitleSparkline": "Sparkline - Advanced settings",
"SSE.Views.ChartSettingsDlg.textTop": "Top",
"SSE.Views.ChartSettingsDlg.textTrillions": "Trillions",
"SSE.Views.ChartSettingsDlg.textTwoCell": "Move and size with cells",
"SSE.Views.ChartSettingsDlg.textType": "Type",
"SSE.Views.ChartSettingsDlg.textTypeData": "Type & Data",
- "SSE.Views.ChartSettingsDlg.textUnits": "Display Units",
+ "SSE.Views.ChartSettingsDlg.textUnits": "Display units",
"SSE.Views.ChartSettingsDlg.textValue": "Value",
- "SSE.Views.ChartSettingsDlg.textVertAxis": "Vertical Axis",
- "SSE.Views.ChartSettingsDlg.textVertAxisSec": "Secondary Vertical Axis",
- "SSE.Views.ChartSettingsDlg.textXAxisTitle": "X Axis Title",
- "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y Axis Title",
+ "SSE.Views.ChartSettingsDlg.textVertAxis": "Vertical axis",
+ "SSE.Views.ChartSettingsDlg.textVertAxisSec": "Secondary vertical axis",
+ "SSE.Views.ChartSettingsDlg.textXAxisTitle": "X axis title",
+ "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y axis title",
"SSE.Views.ChartSettingsDlg.textZero": "Zero",
"SSE.Views.ChartSettingsDlg.txtEmpty": "This field is required",
"SSE.Views.ChartTypeDialog.errorComboSeries": "To create a combination chart, select at least two series of data.",
"SSE.Views.ChartTypeDialog.errorSecondaryAxis": "The selected chart type requires the secondary axis that an existing chart is using. Select another chart type.",
- "SSE.Views.ChartTypeDialog.textSecondary": "Secondary Axis",
+ "SSE.Views.ChartTypeDialog.textSecondary": "Secondary axis",
"SSE.Views.ChartTypeDialog.textSeries": "Series",
"SSE.Views.ChartTypeDialog.textStyle": "Style",
- "SSE.Views.ChartTypeDialog.textTitle": "Chart Type",
+ "SSE.Views.ChartTypeDialog.textTitle": "Chart type",
"SSE.Views.ChartTypeDialog.textType": "Type",
"SSE.Views.CreatePivotDialog.textDataRange": "Source data range",
"SSE.Views.CreatePivotDialog.textDestination": "Choose where to place the table",
@@ -1997,13 +2004,13 @@
"SSE.Views.CreatePivotDialog.textInvalidRange": "Invalid cells range",
"SSE.Views.CreatePivotDialog.textNew": "New worksheet",
"SSE.Views.CreatePivotDialog.textSelectData": "Select data",
- "SSE.Views.CreatePivotDialog.textTitle": "Create Pivot Table",
+ "SSE.Views.CreatePivotDialog.textTitle": "Create pivot table",
"SSE.Views.CreatePivotDialog.txtEmpty": "This field is required",
"SSE.Views.CreateSparklineDialog.textDataRange": "Source data range",
"SSE.Views.CreateSparklineDialog.textDestination": "Choose, where to place the sparklines",
"SSE.Views.CreateSparklineDialog.textInvalidRange": "Invalid cells range",
"SSE.Views.CreateSparklineDialog.textSelectData": "Select data",
- "SSE.Views.CreateSparklineDialog.textTitle": "Create Sparklines",
+ "SSE.Views.CreateSparklineDialog.textTitle": "Create sparklines",
"SSE.Views.CreateSparklineDialog.txtEmpty": "This field is required",
"SSE.Views.DataTab.capBtnGroup": "Group",
"SSE.Views.DataTab.capBtnTextCustomSort": "Custom Sort",
@@ -2012,16 +2019,16 @@
"SSE.Views.DataTab.capBtnTextToCol": "Text to Columns",
"SSE.Views.DataTab.capBtnUngroup": "Ungroup",
"SSE.Views.DataTab.capDataExternalLinks": "External Links",
- "SSE.Views.DataTab.capDataFromText": "Get data",
- "SSE.Views.DataTab.mniFromFile": "From local TXT/CSV",
- "SSE.Views.DataTab.mniFromUrl": "From TXT/CSV web address",
- "SSE.Views.DataTab.textBelow": "Summary rows below detail",
- "SSE.Views.DataTab.textClear": "Clear outline",
- "SSE.Views.DataTab.textColumns": "Ungroup columns",
- "SSE.Views.DataTab.textGroupColumns": "Group columns",
- "SSE.Views.DataTab.textGroupRows": "Group rows",
- "SSE.Views.DataTab.textRightOf": "Summary columns to right of detail",
- "SSE.Views.DataTab.textRows": "Ungroup rows",
+ "SSE.Views.DataTab.capDataFromText": "Get Data",
+ "SSE.Views.DataTab.mniFromFile": "From Local TXT/CSV",
+ "SSE.Views.DataTab.mniFromUrl": "From TXT/CSV Web Address",
+ "SSE.Views.DataTab.textBelow": "Summary Rows Below Detail",
+ "SSE.Views.DataTab.textClear": "Clear Outline",
+ "SSE.Views.DataTab.textColumns": "Ungroup Columns",
+ "SSE.Views.DataTab.textGroupColumns": "Group Columns",
+ "SSE.Views.DataTab.textGroupRows": "Group Rows",
+ "SSE.Views.DataTab.textRightOf": "Summary Columns To Right Of Detail",
+ "SSE.Views.DataTab.textRows": "Ungroup Rows",
"SSE.Views.DataTab.tipCustomSort": "Custom sort",
"SSE.Views.DataTab.tipDataFromText": "Get data from Text/CSV file",
"SSE.Views.DataTab.tipDataValidation": "Data validation",
@@ -2041,8 +2048,8 @@
"SSE.Views.DataValidationDialog.errorNamedRange": "A named range you specified cannot be found.",
"SSE.Views.DataValidationDialog.errorNegativeTextLength": "Negative values cannot be used in conditions \"{0}\".",
"SSE.Views.DataValidationDialog.errorNotNumeric": "The field \"{0}\" must be a numeric value, numeric expression, or refer to a cell containing a numeric value.",
- "SSE.Views.DataValidationDialog.strError": "Error Alert",
- "SSE.Views.DataValidationDialog.strInput": "Input Message",
+ "SSE.Views.DataValidationDialog.strError": "Error alert",
+ "SSE.Views.DataValidationDialog.strInput": "Input message",
"SSE.Views.DataValidationDialog.strSettings": "Settings",
"SSE.Views.DataValidationDialog.textAlert": "Alert",
"SSE.Views.DataValidationDialog.textAllow": "Allow",
@@ -2050,12 +2057,12 @@
"SSE.Views.DataValidationDialog.textCellSelected": "When cell is selected, show this input message",
"SSE.Views.DataValidationDialog.textCompare": "Compare to",
"SSE.Views.DataValidationDialog.textData": "Data",
- "SSE.Views.DataValidationDialog.textEndDate": "End Date",
- "SSE.Views.DataValidationDialog.textEndTime": "End Time",
- "SSE.Views.DataValidationDialog.textError": "Error Message",
+ "SSE.Views.DataValidationDialog.textEndDate": "End date",
+ "SSE.Views.DataValidationDialog.textEndTime": "End time",
+ "SSE.Views.DataValidationDialog.textError": "Error message",
"SSE.Views.DataValidationDialog.textFormula": "Formula",
"SSE.Views.DataValidationDialog.textIgnore": "Ignore blank",
- "SSE.Views.DataValidationDialog.textInput": "Input Message",
+ "SSE.Views.DataValidationDialog.textInput": "Input message",
"SSE.Views.DataValidationDialog.textMax": "Maximum",
"SSE.Views.DataValidationDialog.textMessage": "Message",
"SSE.Views.DataValidationDialog.textMin": "Minimum",
@@ -2064,8 +2071,8 @@
"SSE.Views.DataValidationDialog.textShowError": "Show error alert after invalid data is entered",
"SSE.Views.DataValidationDialog.textShowInput": "Show input message when cell is selected",
"SSE.Views.DataValidationDialog.textSource": "Source",
- "SSE.Views.DataValidationDialog.textStartDate": "Start Date",
- "SSE.Views.DataValidationDialog.textStartTime": "Start Time",
+ "SSE.Views.DataValidationDialog.textStartDate": "Start date",
+ "SSE.Views.DataValidationDialog.textStartTime": "Start time",
"SSE.Views.DataValidationDialog.textStop": "Stop",
"SSE.Views.DataValidationDialog.textStyle": "Style",
"SSE.Views.DataValidationDialog.textTitle": "Title",
@@ -2110,30 +2117,36 @@
"SSE.Views.DigitalFilterDialog.textShowRows": "Show rows where",
"SSE.Views.DigitalFilterDialog.textUse1": "Use ? to present any single character",
"SSE.Views.DigitalFilterDialog.textUse2": "Use * to present any series of character",
- "SSE.Views.DigitalFilterDialog.txtTitle": "Custom Filter",
- "SSE.Views.DocumentHolder.advancedImgText": "Image Advanced Settings",
- "SSE.Views.DocumentHolder.advancedShapeText": "Shape Advanced Settings",
- "SSE.Views.DocumentHolder.advancedSlicerText": "Slicer Advanced Settings",
+ "SSE.Views.DigitalFilterDialog.txtTitle": "Custom filter",
+ "SSE.Views.DocumentHolder.advancedEquationText": "Equation Settings",
+ "SSE.Views.DocumentHolder.advancedImgText": "Image advanced settings",
+ "SSE.Views.DocumentHolder.advancedShapeText": "Shape advanced settings",
+ "SSE.Views.DocumentHolder.advancedSlicerText": "Slicer advanced settings",
+ "SSE.Views.DocumentHolder.allLinearText": "All - Linear",
+ "SSE.Views.DocumentHolder.allProfText": "All - Professional",
"SSE.Views.DocumentHolder.bottomCellText": "Align Bottom",
"SSE.Views.DocumentHolder.bulletsText": "Bullets and Numbering",
"SSE.Views.DocumentHolder.centerCellText": "Align Middle",
"SSE.Views.DocumentHolder.chartDataText": "Select Chart Data",
- "SSE.Views.DocumentHolder.chartText": "Chart Advanced Settings",
+ "SSE.Views.DocumentHolder.chartText": "Chart advanced settings",
"SSE.Views.DocumentHolder.chartTypeText": "Change Chart Type",
+ "SSE.Views.DocumentHolder.currLinearText": "Current - Linear",
+ "SSE.Views.DocumentHolder.currProfText": "Current - Professional",
"SSE.Views.DocumentHolder.deleteColumnText": "Column",
"SSE.Views.DocumentHolder.deleteRowText": "Row",
"SSE.Views.DocumentHolder.deleteTableText": "Table",
"SSE.Views.DocumentHolder.direct270Text": "Rotate Text Up",
"SSE.Views.DocumentHolder.direct90Text": "Rotate Text Down",
"SSE.Views.DocumentHolder.directHText": "Horizontal",
- "SSE.Views.DocumentHolder.directionText": "Text Direction",
+ "SSE.Views.DocumentHolder.directionText": "Text direction",
"SSE.Views.DocumentHolder.editChartText": "Edit Data",
"SSE.Views.DocumentHolder.editHyperlinkText": "Edit Hyperlink",
"SSE.Views.DocumentHolder.insertColumnLeftText": "Column Left",
"SSE.Views.DocumentHolder.insertColumnRightText": "Column Right",
"SSE.Views.DocumentHolder.insertRowAboveText": "Row Above",
"SSE.Views.DocumentHolder.insertRowBelowText": "Row Below",
- "SSE.Views.DocumentHolder.originalSizeText": "Actual Size",
+ "SSE.Views.DocumentHolder.latexText": "LaTeX",
+ "SSE.Views.DocumentHolder.originalSizeText": "Actual size",
"SSE.Views.DocumentHolder.removeHyperlinkText": "Remove Hyperlink",
"SSE.Views.DocumentHolder.selectColumnText": "Entire Column",
"SSE.Views.DocumentHolder.selectDataText": "Column Data",
@@ -2159,7 +2172,7 @@
"SSE.Views.DocumentHolder.textEntriesList": "Select from drop-down list",
"SSE.Views.DocumentHolder.textFlipH": "Flip Horizontally",
"SSE.Views.DocumentHolder.textFlipV": "Flip Vertically",
- "SSE.Views.DocumentHolder.textFreezePanes": "Freeze Panes",
+ "SSE.Views.DocumentHolder.textFreezePanes": "Freeze panes",
"SSE.Views.DocumentHolder.textFromFile": "From File",
"SSE.Views.DocumentHolder.textFromStorage": "From Storage",
"SSE.Views.DocumentHolder.textFromUrl": "From URL",
@@ -2184,7 +2197,7 @@
"SSE.Views.DocumentHolder.textStdDev": "StdDev",
"SSE.Views.DocumentHolder.textSum": "Sum",
"SSE.Views.DocumentHolder.textUndo": "Undo",
- "SSE.Views.DocumentHolder.textUnFreezePanes": "Unfreeze Panes",
+ "SSE.Views.DocumentHolder.textUnFreezePanes": "Unfreeze panes",
"SSE.Views.DocumentHolder.textVar": "Var",
"SSE.Views.DocumentHolder.tipMarkersArrow": "Arrow bullets",
"SSE.Views.DocumentHolder.tipMarkersCheckmark": "Checkmark bullets",
@@ -2196,40 +2209,40 @@
"SSE.Views.DocumentHolder.tipMarkersStar": "Star bullets",
"SSE.Views.DocumentHolder.topCellText": "Align Top",
"SSE.Views.DocumentHolder.txtAccounting": "Accounting",
- "SSE.Views.DocumentHolder.txtAddComment": "Add Comment",
- "SSE.Views.DocumentHolder.txtAddNamedRange": "Define Name",
+ "SSE.Views.DocumentHolder.txtAddComment": "Add comment",
+ "SSE.Views.DocumentHolder.txtAddNamedRange": "Define name",
"SSE.Views.DocumentHolder.txtArrange": "Arrange",
"SSE.Views.DocumentHolder.txtAscending": "Ascending",
- "SSE.Views.DocumentHolder.txtAutoColumnWidth": "Auto Fit Column Width",
- "SSE.Views.DocumentHolder.txtAutoRowHeight": "Auto Fit Row Height",
+ "SSE.Views.DocumentHolder.txtAutoColumnWidth": "Auto fit column width",
+ "SSE.Views.DocumentHolder.txtAutoRowHeight": "Auto fit row height",
"SSE.Views.DocumentHolder.txtClear": "Clear",
"SSE.Views.DocumentHolder.txtClearAll": "All",
"SSE.Views.DocumentHolder.txtClearComments": "Comments",
"SSE.Views.DocumentHolder.txtClearFormat": "Format",
"SSE.Views.DocumentHolder.txtClearHyper": "Hyperlinks",
- "SSE.Views.DocumentHolder.txtClearSparklineGroups": "Clear Selected Sparkline Groups",
- "SSE.Views.DocumentHolder.txtClearSparklines": "Clear Selected Sparklines",
+ "SSE.Views.DocumentHolder.txtClearSparklineGroups": "Clear selected sparkline groups",
+ "SSE.Views.DocumentHolder.txtClearSparklines": "Clear selected sparklines",
"SSE.Views.DocumentHolder.txtClearText": "Text",
"SSE.Views.DocumentHolder.txtColumn": "Entire column",
- "SSE.Views.DocumentHolder.txtColumnWidth": "Set Column Width",
- "SSE.Views.DocumentHolder.txtCondFormat": "Conditional Formatting",
+ "SSE.Views.DocumentHolder.txtColumnWidth": "Set column width",
+ "SSE.Views.DocumentHolder.txtCondFormat": "Conditional formatting",
"SSE.Views.DocumentHolder.txtCopy": "Copy",
"SSE.Views.DocumentHolder.txtCurrency": "Currency",
- "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Custom Column Width",
- "SSE.Views.DocumentHolder.txtCustomRowHeight": "Custom Row Height",
+ "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Custom column width",
+ "SSE.Views.DocumentHolder.txtCustomRowHeight": "Custom row height",
"SSE.Views.DocumentHolder.txtCustomSort": "Custom sort",
"SSE.Views.DocumentHolder.txtCut": "Cut",
"SSE.Views.DocumentHolder.txtDate": "Date",
"SSE.Views.DocumentHolder.txtDelete": "Delete",
"SSE.Views.DocumentHolder.txtDescending": "Descending",
- "SSE.Views.DocumentHolder.txtDistribHor": "Distribute Horizontally",
- "SSE.Views.DocumentHolder.txtDistribVert": "Distribute Vertically",
- "SSE.Views.DocumentHolder.txtEditComment": "Edit Comment",
+ "SSE.Views.DocumentHolder.txtDistribHor": "Distribute horizontally",
+ "SSE.Views.DocumentHolder.txtDistribVert": "Distribute vertically",
+ "SSE.Views.DocumentHolder.txtEditComment": "Edit comment",
"SSE.Views.DocumentHolder.txtFilter": "Filter",
"SSE.Views.DocumentHolder.txtFilterCellColor": "Filter by cell's color",
"SSE.Views.DocumentHolder.txtFilterFontColor": "Filter by font color",
- "SSE.Views.DocumentHolder.txtFilterValue": "Filter by Selected cell's value",
- "SSE.Views.DocumentHolder.txtFormula": "Insert Function",
+ "SSE.Views.DocumentHolder.txtFilterValue": "Filter by selected cell's value",
+ "SSE.Views.DocumentHolder.txtFormula": "Insert function",
"SSE.Views.DocumentHolder.txtFraction": "Fraction",
"SSE.Views.DocumentHolder.txtGeneral": "General",
"SSE.Views.DocumentHolder.txtGetLink": "Get link to this range",
@@ -2244,7 +2257,7 @@
"SSE.Views.DocumentHolder.txtReapply": "Reapply",
"SSE.Views.DocumentHolder.txtRefresh": "Refresh",
"SSE.Views.DocumentHolder.txtRow": "Entire row",
- "SSE.Views.DocumentHolder.txtRowHeight": "Set Row Height",
+ "SSE.Views.DocumentHolder.txtRowHeight": "Set row height",
"SSE.Views.DocumentHolder.txtScientific": "Scientific",
"SSE.Views.DocumentHolder.txtSelect": "Select",
"SSE.Views.DocumentHolder.txtShiftDown": "Shift cells down",
@@ -2252,41 +2265,39 @@
"SSE.Views.DocumentHolder.txtShiftRight": "Shift cells right",
"SSE.Views.DocumentHolder.txtShiftUp": "Shift cells up",
"SSE.Views.DocumentHolder.txtShow": "Show",
- "SSE.Views.DocumentHolder.txtShowComment": "Show Comment",
+ "SSE.Views.DocumentHolder.txtShowComment": "Show comment",
"SSE.Views.DocumentHolder.txtSort": "Sort",
- "SSE.Views.DocumentHolder.txtSortCellColor": "Selected Cell Color on top",
- "SSE.Views.DocumentHolder.txtSortFontColor": "Selected Font Color on top",
+ "SSE.Views.DocumentHolder.txtSortCellColor": "Selected cell color on top",
+ "SSE.Views.DocumentHolder.txtSortFontColor": "Selected font color on top",
"SSE.Views.DocumentHolder.txtSparklines": "Sparklines",
"SSE.Views.DocumentHolder.txtText": "Text",
- "SSE.Views.DocumentHolder.txtTextAdvanced": "Paragraph Advanced Settings",
+ "SSE.Views.DocumentHolder.txtTextAdvanced": "Paragraph advanced settings",
"SSE.Views.DocumentHolder.txtTime": "Time",
"SSE.Views.DocumentHolder.txtUngroup": "Ungroup",
"SSE.Views.DocumentHolder.txtWidth": "Width",
- "SSE.Views.DocumentHolder.vertAlignText": "Vertical Alignment",
- "SSE.Views.DocumentHolder.advancedEquationText": "Equation Settings",
"SSE.Views.DocumentHolder.unicodeText": "Unicode",
- "SSE.Views.DocumentHolder.latexText": "LaTeX",
- "SSE.Views.DocumentHolder.currProfText": "Current - Professional",
- "SSE.Views.DocumentHolder.currLinearText": "Current - Linear",
- "SSE.Views.DocumentHolder.allProfText": "All - Professional",
- "SSE.Views.DocumentHolder.allLinearText": "All - Linear",
+ "SSE.Views.DocumentHolder.vertAlignText": "Vertical alignment",
"SSE.Views.ExternalLinksDlg.closeButtonText": "Close",
- "SSE.Views.ExternalLinksDlg.textDelete": "Break Links",
- "SSE.Views.ExternalLinksDlg.textDeleteAll": "Break All Links",
+ "SSE.Views.ExternalLinksDlg.textDelete": "Break links",
+ "SSE.Views.ExternalLinksDlg.textDeleteAll": "Break all links",
+ "SSE.Views.ExternalLinksDlg.textOk": "OK",
"SSE.Views.ExternalLinksDlg.textSource": "Source",
- "SSE.Views.ExternalLinksDlg.textUpdate": "Update Values",
- "SSE.Views.ExternalLinksDlg.textUpdateAll": "Update All",
- "SSE.Views.ExternalLinksDlg.txtTitle": "External Links",
+ "SSE.Views.ExternalLinksDlg.textStatus": "Status",
+ "SSE.Views.ExternalLinksDlg.textUnknown": "Unknown",
+ "SSE.Views.ExternalLinksDlg.textUpdate": "Update values",
+ "SSE.Views.ExternalLinksDlg.textUpdateAll": "Update all",
+ "SSE.Views.ExternalLinksDlg.textUpdating": "Updating...",
+ "SSE.Views.ExternalLinksDlg.txtTitle": "External links",
"SSE.Views.FieldSettingsDialog.strLayout": "Layout",
"SSE.Views.FieldSettingsDialog.strSubtotals": "Subtotals",
- "SSE.Views.FieldSettingsDialog.textReport": "Report Form",
- "SSE.Views.FieldSettingsDialog.textTitle": "Field Settings",
+ "SSE.Views.FieldSettingsDialog.textReport": "Report form",
+ "SSE.Views.FieldSettingsDialog.textTitle": "Field settings",
"SSE.Views.FieldSettingsDialog.txtAverage": "Average",
"SSE.Views.FieldSettingsDialog.txtBlank": "Insert blank rows after each item",
"SSE.Views.FieldSettingsDialog.txtBottom": "Show at bottom of group",
"SSE.Views.FieldSettingsDialog.txtCompact": "Compact",
"SSE.Views.FieldSettingsDialog.txtCount": "Count",
- "SSE.Views.FieldSettingsDialog.txtCountNums": "Count Numbers",
+ "SSE.Views.FieldSettingsDialog.txtCountNums": "Count numbers",
"SSE.Views.FieldSettingsDialog.txtCustomName": "Custom name",
"SSE.Views.FieldSettingsDialog.txtEmpty": "Show items with no data",
"SSE.Views.FieldSettingsDialog.txtMax": "Max",
@@ -2299,7 +2310,7 @@
"SSE.Views.FieldSettingsDialog.txtStdDev": "StdDev",
"SSE.Views.FieldSettingsDialog.txtStdDevp": "StdDevp",
"SSE.Views.FieldSettingsDialog.txtSum": "Sum",
- "SSE.Views.FieldSettingsDialog.txtSummarize": "Functions for Subtotals",
+ "SSE.Views.FieldSettingsDialog.txtSummarize": "Functions for subtotals",
"SSE.Views.FieldSettingsDialog.txtTabular": "Tabular",
"SSE.Views.FieldSettingsDialog.txtTop": "Show at top of group",
"SSE.Views.FieldSettingsDialog.txtVar": "Var",
@@ -2449,28 +2460,28 @@
"SSE.Views.FileMenuPanels.ProtectDoc.txtView": "View signatures",
"SSE.Views.FormatRulesEditDlg.fillColor": "Fill color",
"SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Warning",
- "SSE.Views.FormatRulesEditDlg.text2Scales": "2 Color scale",
- "SSE.Views.FormatRulesEditDlg.text3Scales": "3 Color scale",
- "SSE.Views.FormatRulesEditDlg.textAllBorders": "All Borders",
- "SSE.Views.FormatRulesEditDlg.textAppearance": "Bar Appearance",
- "SSE.Views.FormatRulesEditDlg.textApply": "Apply to Range",
+ "SSE.Views.FormatRulesEditDlg.text2Scales": "2 color scale",
+ "SSE.Views.FormatRulesEditDlg.text3Scales": "3 color scale",
+ "SSE.Views.FormatRulesEditDlg.textAllBorders": "All borders",
+ "SSE.Views.FormatRulesEditDlg.textAppearance": "Bar appearance",
+ "SSE.Views.FormatRulesEditDlg.textApply": "Apply to range",
"SSE.Views.FormatRulesEditDlg.textAutomatic": "Automatic",
"SSE.Views.FormatRulesEditDlg.textAxis": "Axis",
- "SSE.Views.FormatRulesEditDlg.textBarDirection": "Bar Direction",
+ "SSE.Views.FormatRulesEditDlg.textBarDirection": "Bar direction",
"SSE.Views.FormatRulesEditDlg.textBold": "Bold",
"SSE.Views.FormatRulesEditDlg.textBorder": "Border",
- "SSE.Views.FormatRulesEditDlg.textBordersColor": "Borders Color",
- "SSE.Views.FormatRulesEditDlg.textBordersStyle": "Border Style",
- "SSE.Views.FormatRulesEditDlg.textBottomBorders": "Bottom Borders",
+ "SSE.Views.FormatRulesEditDlg.textBordersColor": "Borders color",
+ "SSE.Views.FormatRulesEditDlg.textBordersStyle": "Border style",
+ "SSE.Views.FormatRulesEditDlg.textBottomBorders": "Bottom borders",
"SSE.Views.FormatRulesEditDlg.textCannotAddCF": "Cannot add the conditional formatting.",
"SSE.Views.FormatRulesEditDlg.textCellMidpoint": "Cell midpoint",
- "SSE.Views.FormatRulesEditDlg.textCenterBorders": "Inside Vertical Borders",
+ "SSE.Views.FormatRulesEditDlg.textCenterBorders": "Inside vertical borders",
"SSE.Views.FormatRulesEditDlg.textClear": "Clear",
"SSE.Views.FormatRulesEditDlg.textColor": "Text color",
"SSE.Views.FormatRulesEditDlg.textContext": "Context",
"SSE.Views.FormatRulesEditDlg.textCustom": "Custom",
- "SSE.Views.FormatRulesEditDlg.textDiagDownBorder": "Diagonal Down Border",
- "SSE.Views.FormatRulesEditDlg.textDiagUpBorder": "Diagonal Up Border",
+ "SSE.Views.FormatRulesEditDlg.textDiagDownBorder": "Diagonal down border",
+ "SSE.Views.FormatRulesEditDlg.textDiagUpBorder": "Diagonal up border",
"SSE.Views.FormatRulesEditDlg.textEmptyFormula": "Enter a valid formula.",
"SSE.Views.FormatRulesEditDlg.textEmptyFormulaExt": "The formula you entered does not evaluate to a number, date, time or string.",
"SSE.Views.FormatRulesEditDlg.textEmptyText": "Enter a value.",
@@ -2485,30 +2496,30 @@
"SSE.Views.FormatRulesEditDlg.textIconLabelFirst": "when {0} {1}",
"SSE.Views.FormatRulesEditDlg.textIconLabelLast": "when value is",
"SSE.Views.FormatRulesEditDlg.textIconsOverlap": "One or more icon data ranges overlap. Adjust icon data range values so that the ranges do not overlap.",
- "SSE.Views.FormatRulesEditDlg.textIconStyle": "Icon Style",
- "SSE.Views.FormatRulesEditDlg.textInsideBorders": "Inside Borders",
+ "SSE.Views.FormatRulesEditDlg.textIconStyle": "Icon style",
+ "SSE.Views.FormatRulesEditDlg.textInsideBorders": "Inside borders",
"SSE.Views.FormatRulesEditDlg.textInvalid": "Invalid data range.",
"SSE.Views.FormatRulesEditDlg.textInvalidRange": "ERROR! Invalid cells range",
"SSE.Views.FormatRulesEditDlg.textItalic": "Italic",
"SSE.Views.FormatRulesEditDlg.textItem": "Item",
"SSE.Views.FormatRulesEditDlg.textLeft2Right": "Left to right",
- "SSE.Views.FormatRulesEditDlg.textLeftBorders": "Left Borders",
+ "SSE.Views.FormatRulesEditDlg.textLeftBorders": "Left borders",
"SSE.Views.FormatRulesEditDlg.textLongBar": "longest bar",
"SSE.Views.FormatRulesEditDlg.textMaximum": "Maximum",
"SSE.Views.FormatRulesEditDlg.textMaxpoint": "Maxpoint",
- "SSE.Views.FormatRulesEditDlg.textMiddleBorders": "Inside Horizontal Borders",
+ "SSE.Views.FormatRulesEditDlg.textMiddleBorders": "Inside horizontal borders",
"SSE.Views.FormatRulesEditDlg.textMidpoint": "Midpoint",
"SSE.Views.FormatRulesEditDlg.textMinimum": "Minimum",
"SSE.Views.FormatRulesEditDlg.textMinpoint": "Minpoint",
"SSE.Views.FormatRulesEditDlg.textNegative": "Negative",
- "SSE.Views.FormatRulesEditDlg.textNewColor": "Add New Custom Color",
- "SSE.Views.FormatRulesEditDlg.textNoBorders": "No Borders",
+ "SSE.Views.FormatRulesEditDlg.textNewColor": "Add new custom color",
+ "SSE.Views.FormatRulesEditDlg.textNoBorders": "No borders",
"SSE.Views.FormatRulesEditDlg.textNone": "None",
"SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "One or more of the specified values is not a valid percentage.",
"SSE.Views.FormatRulesEditDlg.textNotValidPercentageExt": "The specified {0} value is not a valid percentage.",
"SSE.Views.FormatRulesEditDlg.textNotValidPercentile": "One or more of the specified values is not a valid percentile.",
"SSE.Views.FormatRulesEditDlg.textNotValidPercentileExt": "The specified {0} value is not a valid percentile.",
- "SSE.Views.FormatRulesEditDlg.textOutBorders": "Outside Borders",
+ "SSE.Views.FormatRulesEditDlg.textOutBorders": "Outside borders",
"SSE.Views.FormatRulesEditDlg.textPercent": "Percent",
"SSE.Views.FormatRulesEditDlg.textPercentile": "Percentile",
"SSE.Views.FormatRulesEditDlg.textPosition": "Position",
@@ -2516,12 +2527,12 @@
"SSE.Views.FormatRulesEditDlg.textPresets": "Presets",
"SSE.Views.FormatRulesEditDlg.textPreview": "Preview",
"SSE.Views.FormatRulesEditDlg.textRelativeRef": "You cannot use relative references in conditional formatting criteria for color scales, data bars, and icon sets.",
- "SSE.Views.FormatRulesEditDlg.textReverse": "Reverse Icons Order",
+ "SSE.Views.FormatRulesEditDlg.textReverse": "Reverse icons order",
"SSE.Views.FormatRulesEditDlg.textRight2Left": "Right to left",
- "SSE.Views.FormatRulesEditDlg.textRightBorders": "Right Borders",
+ "SSE.Views.FormatRulesEditDlg.textRightBorders": "Right borders",
"SSE.Views.FormatRulesEditDlg.textRule": "Rule",
"SSE.Views.FormatRulesEditDlg.textSameAs": "Same as positive",
- "SSE.Views.FormatRulesEditDlg.textSelectData": "Select Data",
+ "SSE.Views.FormatRulesEditDlg.textSelectData": "Select data",
"SSE.Views.FormatRulesEditDlg.textShortBar": "shortest bar",
"SSE.Views.FormatRulesEditDlg.textShowBar": "Show bar only",
"SSE.Views.FormatRulesEditDlg.textShowIcon": "Show icon only",
@@ -2530,24 +2541,24 @@
"SSE.Views.FormatRulesEditDlg.textStrikeout": "Strikeout",
"SSE.Views.FormatRulesEditDlg.textSubscript": "Subscript",
"SSE.Views.FormatRulesEditDlg.textSuperscript": "Superscript",
- "SSE.Views.FormatRulesEditDlg.textTopBorders": "Top Borders",
+ "SSE.Views.FormatRulesEditDlg.textTopBorders": "Top borders",
"SSE.Views.FormatRulesEditDlg.textUnderline": "Underline",
"SSE.Views.FormatRulesEditDlg.tipBorders": "Borders",
- "SSE.Views.FormatRulesEditDlg.tipNumFormat": "Number Format",
+ "SSE.Views.FormatRulesEditDlg.tipNumFormat": "Number format",
"SSE.Views.FormatRulesEditDlg.txtAccounting": "Accounting",
"SSE.Views.FormatRulesEditDlg.txtCurrency": "Currency",
"SSE.Views.FormatRulesEditDlg.txtDate": "Date",
"SSE.Views.FormatRulesEditDlg.txtEmpty": "This field is required",
"SSE.Views.FormatRulesEditDlg.txtFraction": "Fraction",
"SSE.Views.FormatRulesEditDlg.txtGeneral": "General",
- "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "No Icon",
+ "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "No icon",
"SSE.Views.FormatRulesEditDlg.txtNumber": "Number",
"SSE.Views.FormatRulesEditDlg.txtPercentage": "Percentage",
"SSE.Views.FormatRulesEditDlg.txtScientific": "Scientific",
"SSE.Views.FormatRulesEditDlg.txtText": "Text",
"SSE.Views.FormatRulesEditDlg.txtTime": "Time",
- "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Edit Formatting Rule",
- "SSE.Views.FormatRulesEditDlg.txtTitleNew": "New Formatting Rule",
+ "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Edit formatting rule",
+ "SSE.Views.FormatRulesEditDlg.txtTitleNew": "New formatting rule",
"SSE.Views.FormatRulesManagerDlg.guestText": "Guest",
"SSE.Views.FormatRulesManagerDlg.lockText": "Locked",
"SSE.Views.FormatRulesManagerDlg.text1Above": "1 std dev above average",
@@ -2590,14 +2601,14 @@
"SSE.Views.FormatRulesManagerDlg.textUnique": "Unique values",
"SSE.Views.FormatRulesManagerDlg.textUp": "Move rule up",
"SSE.Views.FormatRulesManagerDlg.tipIsLocked": "This element is being edited by another user.",
- "SSE.Views.FormatRulesManagerDlg.txtTitle": "Conditional Formatting",
+ "SSE.Views.FormatRulesManagerDlg.txtTitle": "Conditional formatting",
"SSE.Views.FormatSettingsDialog.textCategory": "Category",
"SSE.Views.FormatSettingsDialog.textDecimal": "Decimal",
"SSE.Views.FormatSettingsDialog.textFormat": "Format",
"SSE.Views.FormatSettingsDialog.textLinked": "Linked to source",
"SSE.Views.FormatSettingsDialog.textSeparator": "Use 1000 separator",
"SSE.Views.FormatSettingsDialog.textSymbols": "Symbols",
- "SSE.Views.FormatSettingsDialog.textTitle": "Number Format",
+ "SSE.Views.FormatSettingsDialog.textTitle": "Number format",
"SSE.Views.FormatSettingsDialog.txtAccounting": "Accounting",
"SSE.Views.FormatSettingsDialog.txtAs10": "As tenths (5/10)",
"SSE.Views.FormatSettingsDialog.txtAs100": "As hundredths (50/100)",
@@ -2622,11 +2633,11 @@
"SSE.Views.FormatSettingsDialog.txtUpto2": "Up to two digits (12/25)",
"SSE.Views.FormatSettingsDialog.txtUpto3": "Up to three digits (131/135)",
"SSE.Views.FormulaDialog.sDescription": "Description",
- "SSE.Views.FormulaDialog.textGroupDescription": "Select Function Group",
- "SSE.Views.FormulaDialog.textListDescription": "Select Function",
+ "SSE.Views.FormulaDialog.textGroupDescription": "Select function group",
+ "SSE.Views.FormulaDialog.textListDescription": "Select function",
"SSE.Views.FormulaDialog.txtRecommended": "Recommended",
"SSE.Views.FormulaDialog.txtSearch": "Search",
- "SSE.Views.FormulaDialog.txtTitle": "Insert Function",
+ "SSE.Views.FormulaDialog.txtTitle": "Insert function",
"SSE.Views.FormulaTab.textAutomatic": "Automatic",
"SSE.Views.FormulaTab.textCalculateCurrentSheet": "Calculate current sheet",
"SSE.Views.FormulaTab.textCalculateWorkbook": "Calculate workbook",
@@ -2641,7 +2652,7 @@
"SSE.Views.FormulaTab.txtFormula": "Function",
"SSE.Views.FormulaTab.txtFormulaTip": "Insert function",
"SSE.Views.FormulaTab.txtMore": "More functions",
- "SSE.Views.FormulaTab.txtRecent": "Recently used",
+ "SSE.Views.FormulaTab.txtRecent": "Recently Used",
"SSE.Views.FormulaTab.txtWatch": "Watch Window",
"SSE.Views.FormulaWizard.textAny": "any",
"SSE.Views.FormulaWizard.textArgument": "Argument",
@@ -2653,7 +2664,7 @@
"SSE.Views.FormulaWizard.textNumber": "number",
"SSE.Views.FormulaWizard.textRef": "reference",
"SSE.Views.FormulaWizard.textText": "text",
- "SSE.Views.FormulaWizard.textTitle": "Function Arguments",
+ "SSE.Views.FormulaWizard.textTitle": "Function arguments",
"SSE.Views.FormulaWizard.textValue": "Formula result",
"SSE.Views.HeaderFooterDialog.textAlign": "Align with page margins",
"SSE.Views.HeaderFooterDialog.textAll": "All pages",
@@ -2672,7 +2683,7 @@
"SSE.Views.HeaderFooterDialog.textItalic": "Italic",
"SSE.Views.HeaderFooterDialog.textLeft": "Left",
"SSE.Views.HeaderFooterDialog.textMaxError": "The text string you entered is too long. Reduce the number of characters used.",
- "SSE.Views.HeaderFooterDialog.textNewColor": "Add New Custom Color",
+ "SSE.Views.HeaderFooterDialog.textNewColor": "Add new custom color",
"SSE.Views.HeaderFooterDialog.textOdd": "Odd page",
"SSE.Views.HeaderFooterDialog.textPageCount": "Page count",
"SSE.Views.HeaderFooterDialog.textPageNum": "Page number",
@@ -2684,7 +2695,7 @@
"SSE.Views.HeaderFooterDialog.textSubscript": "Subscript",
"SSE.Views.HeaderFooterDialog.textSuperscript": "Superscript",
"SSE.Views.HeaderFooterDialog.textTime": "Time",
- "SSE.Views.HeaderFooterDialog.textTitle": "Header/Footer Settings",
+ "SSE.Views.HeaderFooterDialog.textTitle": "Header/Footer settings",
"SSE.Views.HeaderFooterDialog.textUnderline": "Underline",
"SSE.Views.HeaderFooterDialog.tipFontName": "Font",
"SSE.Views.HeaderFooterDialog.tipFontSize": "Font size",
@@ -2697,15 +2708,15 @@
"SSE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Enter caption here",
"SSE.Views.HyperlinkSettingsDialog.textEmptyLink": "Enter link here",
"SSE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Enter tooltip here",
- "SSE.Views.HyperlinkSettingsDialog.textExternalLink": "External Link",
- "SSE.Views.HyperlinkSettingsDialog.textGetLink": "Get Link",
- "SSE.Views.HyperlinkSettingsDialog.textInternalLink": "Internal Data Range",
+ "SSE.Views.HyperlinkSettingsDialog.textExternalLink": "External link",
+ "SSE.Views.HyperlinkSettingsDialog.textGetLink": "Get link",
+ "SSE.Views.HyperlinkSettingsDialog.textInternalLink": "Internal data range",
"SSE.Views.HyperlinkSettingsDialog.textInvalidRange": "ERROR! Invalid cells range",
"SSE.Views.HyperlinkSettingsDialog.textNames": "Defined names",
"SSE.Views.HyperlinkSettingsDialog.textSelectData": "Select data",
"SSE.Views.HyperlinkSettingsDialog.textSheets": "Sheets",
- "SSE.Views.HyperlinkSettingsDialog.textTipText": "ScreenTip Text",
- "SSE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink Settings",
+ "SSE.Views.HyperlinkSettingsDialog.textTipText": "ScreenTip text",
+ "SSE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink settings",
"SSE.Views.HyperlinkSettingsDialog.txtEmpty": "This field is required",
"SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format",
"SSE.Views.HyperlinkSettingsDialog.txtSizeLimit": "This field is limited to 2083 characters",
@@ -2734,7 +2745,7 @@
"SSE.Views.ImageSettings.textSize": "Size",
"SSE.Views.ImageSettings.textWidth": "Width",
"SSE.Views.ImageSettingsAdvanced.textAbsolute": "Don't move or size with cells",
- "SSE.Views.ImageSettingsAdvanced.textAlt": "Alternative Text",
+ "SSE.Views.ImageSettingsAdvanced.textAlt": "Alternative text",
"SSE.Views.ImageSettingsAdvanced.textAltDescription": "Description",
"SSE.Views.ImageSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart, or table.",
"SSE.Views.ImageSettingsAdvanced.textAltTitle": "Title",
@@ -2743,8 +2754,8 @@
"SSE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontally",
"SSE.Views.ImageSettingsAdvanced.textOneCell": "Move but don't size with cells",
"SSE.Views.ImageSettingsAdvanced.textRotation": "Rotation",
- "SSE.Views.ImageSettingsAdvanced.textSnap": "Cell Snapping",
- "SSE.Views.ImageSettingsAdvanced.textTitle": "Image - Advanced Settings",
+ "SSE.Views.ImageSettingsAdvanced.textSnap": "Cell snapping",
+ "SSE.Views.ImageSettingsAdvanced.textTitle": "Image - Advanced settings",
"SSE.Views.ImageSettingsAdvanced.textTwoCell": "Move and size with cells",
"SSE.Views.ImageSettingsAdvanced.textVertically": "Vertically",
"SSE.Views.LeftMenu.tipAbout": "About",
@@ -2761,7 +2772,7 @@
"SSE.Views.LeftMenu.txtTrial": "TRIAL MODE",
"SSE.Views.LeftMenu.txtTrialDev": "Trial Developer Mode",
"SSE.Views.MacroDialog.textMacro": "Macro name",
- "SSE.Views.MacroDialog.textTitle": "Assign Macro",
+ "SSE.Views.MacroDialog.textTitle": "Assign macro",
"SSE.Views.MainSettingsPrint.okButtonText": "Save",
"SSE.Views.MainSettingsPrint.strBottom": "Bottom",
"SSE.Views.MainSettingsPrint.strLandscape": "Landscape",
@@ -2791,7 +2802,7 @@
"SSE.Views.NamedRangeEditDlg.namePlaceholder": "Defined name",
"SSE.Views.NamedRangeEditDlg.notcriticalErrorTitle": "Warning",
"SSE.Views.NamedRangeEditDlg.strWorkbook": "Workbook",
- "SSE.Views.NamedRangeEditDlg.textDataRange": "Data Range",
+ "SSE.Views.NamedRangeEditDlg.textDataRange": "Data range",
"SSE.Views.NamedRangeEditDlg.textExistName": "ERROR! Range with such a name already exists",
"SSE.Views.NamedRangeEditDlg.textInvalidName": "The name must begin with a letter or an underscore and must not contain invalid characters.",
"SSE.Views.NamedRangeEditDlg.textInvalidRange": "ERROR! Invalid cell range",
@@ -2799,32 +2810,32 @@
"SSE.Views.NamedRangeEditDlg.textName": "Name",
"SSE.Views.NamedRangeEditDlg.textReservedName": "The name you are trying to use is already referenced in cell formulas. Please use some other name.",
"SSE.Views.NamedRangeEditDlg.textScope": "Scope",
- "SSE.Views.NamedRangeEditDlg.textSelectData": "Select Data",
+ "SSE.Views.NamedRangeEditDlg.textSelectData": "Select data",
"SSE.Views.NamedRangeEditDlg.txtEmpty": "This field is required",
- "SSE.Views.NamedRangeEditDlg.txtTitleEdit": "Edit Name",
- "SSE.Views.NamedRangeEditDlg.txtTitleNew": "New Name",
- "SSE.Views.NamedRangePasteDlg.textNames": "Named Ranges",
- "SSE.Views.NamedRangePasteDlg.txtTitle": "Paste Name",
+ "SSE.Views.NamedRangeEditDlg.txtTitleEdit": "Edit name",
+ "SSE.Views.NamedRangeEditDlg.txtTitleNew": "New name",
+ "SSE.Views.NamedRangePasteDlg.textNames": "Named ranges",
+ "SSE.Views.NamedRangePasteDlg.txtTitle": "Paste name",
"SSE.Views.NameManagerDlg.closeButtonText": "Close",
"SSE.Views.NameManagerDlg.guestText": "Guest",
"SSE.Views.NameManagerDlg.lockText": "Locked",
- "SSE.Views.NameManagerDlg.textDataRange": "Data Range",
+ "SSE.Views.NameManagerDlg.textDataRange": "Data range",
"SSE.Views.NameManagerDlg.textDelete": "Delete",
"SSE.Views.NameManagerDlg.textEdit": "Edit",
"SSE.Views.NameManagerDlg.textEmpty": "No named ranges have been created yet. Create at least one named range and it will appear in this field.",
"SSE.Views.NameManagerDlg.textFilter": "Filter",
"SSE.Views.NameManagerDlg.textFilterAll": "All",
"SSE.Views.NameManagerDlg.textFilterDefNames": "Defined names",
- "SSE.Views.NameManagerDlg.textFilterSheet": "Names Scoped to Sheet",
+ "SSE.Views.NameManagerDlg.textFilterSheet": "Names scoped to sheet",
"SSE.Views.NameManagerDlg.textFilterTableNames": "Table names",
- "SSE.Views.NameManagerDlg.textFilterWorkbook": "Names Scoped to Workbook",
+ "SSE.Views.NameManagerDlg.textFilterWorkbook": "Names scoped to workbook",
"SSE.Views.NameManagerDlg.textNew": "New",
"SSE.Views.NameManagerDlg.textnoNames": "No named ranges matching your filter could be found.",
- "SSE.Views.NameManagerDlg.textRanges": "Named Ranges",
+ "SSE.Views.NameManagerDlg.textRanges": "Named ranges",
"SSE.Views.NameManagerDlg.textScope": "Scope",
"SSE.Views.NameManagerDlg.textWorkbook": "Workbook",
"SSE.Views.NameManagerDlg.tipIsLocked": "This element is being edited by another user.",
- "SSE.Views.NameManagerDlg.txtTitle": "Name Manager",
+ "SSE.Views.NameManagerDlg.txtTitle": "Name manager",
"SSE.Views.NameManagerDlg.warnDelete": "Are you sure you want to delete the name {0}?",
"SSE.Views.PageMarginsDialog.textBottom": "Bottom",
"SSE.Views.PageMarginsDialog.textLeft": "Left",
@@ -2846,7 +2857,7 @@
"SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double strikethrough",
"SSE.Views.ParagraphSettingsAdvanced.strIndent": "Indents",
"SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Left",
- "SSE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Line Spacing",
+ "SSE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Line spacing",
"SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Right",
"SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "After",
"SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Before",
@@ -2862,8 +2873,8 @@
"SSE.Views.ParagraphSettingsAdvanced.strTabs": "Tabs",
"SSE.Views.ParagraphSettingsAdvanced.textAlign": "Alignment",
"SSE.Views.ParagraphSettingsAdvanced.textAuto": "Multiple",
- "SSE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Character Spacing",
- "SSE.Views.ParagraphSettingsAdvanced.textDefault": "Default Tab",
+ "SSE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Character spacing",
+ "SSE.Views.ParagraphSettingsAdvanced.textDefault": "Default tab",
"SSE.Views.ParagraphSettingsAdvanced.textEffects": "Effects",
"SSE.Views.ParagraphSettingsAdvanced.textExact": "Exactly",
"SSE.Views.ParagraphSettingsAdvanced.textFirstLine": "First line",
@@ -2871,13 +2882,13 @@
"SSE.Views.ParagraphSettingsAdvanced.textJustified": "Justified",
"SSE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(none)",
"SSE.Views.ParagraphSettingsAdvanced.textRemove": "Remove",
- "SSE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Remove All",
+ "SSE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Remove all",
"SSE.Views.ParagraphSettingsAdvanced.textSet": "Specify",
"SSE.Views.ParagraphSettingsAdvanced.textTabCenter": "Center",
"SSE.Views.ParagraphSettingsAdvanced.textTabLeft": "Left",
- "SSE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tab Position",
+ "SSE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tab position",
"SSE.Views.ParagraphSettingsAdvanced.textTabRight": "Right",
- "SSE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraph - Advanced Settings",
+ "SSE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraph - Advanced settings",
"SSE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto",
"SSE.Views.PivotDigitalFilterDialog.capCondition1": "equals",
"SSE.Views.PivotDigitalFilterDialog.capCondition10": "does not end with",
@@ -2898,8 +2909,8 @@
"SSE.Views.PivotDigitalFilterDialog.textUse1": "Use ? to present any single character",
"SSE.Views.PivotDigitalFilterDialog.textUse2": "Use * to present any series of character",
"SSE.Views.PivotDigitalFilterDialog.txtAnd": "and",
- "SSE.Views.PivotDigitalFilterDialog.txtTitleLabel": "Label Filter",
- "SSE.Views.PivotDigitalFilterDialog.txtTitleValue": "Value Filter",
+ "SSE.Views.PivotDigitalFilterDialog.txtTitleLabel": "Label filter",
+ "SSE.Views.PivotDigitalFilterDialog.txtTitleValue": "Value filter",
"SSE.Views.PivotGroupDialog.textAuto": "Auto",
"SSE.Views.PivotGroupDialog.textBy": "By",
"SSE.Views.PivotGroupDialog.textDays": "Days",
@@ -2935,25 +2946,25 @@
"SSE.Views.PivotSettings.txtMoveUp": "Move Up",
"SSE.Views.PivotSettings.txtMoveValues": "Move to Values",
"SSE.Views.PivotSettings.txtRemove": "Remove Field",
- "SSE.Views.PivotSettingsAdvanced.strLayout": "Name and Layout",
- "SSE.Views.PivotSettingsAdvanced.textAlt": "Alternative Text",
+ "SSE.Views.PivotSettingsAdvanced.strLayout": "Name and layout",
+ "SSE.Views.PivotSettingsAdvanced.textAlt": "Alternative text",
"SSE.Views.PivotSettingsAdvanced.textAltDescription": "Description",
"SSE.Views.PivotSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.",
"SSE.Views.PivotSettingsAdvanced.textAltTitle": "Title",
"SSE.Views.PivotSettingsAdvanced.textAutofitColWidth": "Autofit column widths on update",
- "SSE.Views.PivotSettingsAdvanced.textDataRange": "Data Range",
- "SSE.Views.PivotSettingsAdvanced.textDataSource": "Data Source",
+ "SSE.Views.PivotSettingsAdvanced.textDataRange": "Data range",
+ "SSE.Views.PivotSettingsAdvanced.textDataSource": "Data source",
"SSE.Views.PivotSettingsAdvanced.textDisplayFields": "Display fields in report filter area",
"SSE.Views.PivotSettingsAdvanced.textDown": "Down, then over",
- "SSE.Views.PivotSettingsAdvanced.textGrandTotals": "Grand Totals",
- "SSE.Views.PivotSettingsAdvanced.textHeaders": "Field Headers",
+ "SSE.Views.PivotSettingsAdvanced.textGrandTotals": "Grand totals",
+ "SSE.Views.PivotSettingsAdvanced.textHeaders": "Field headers",
"SSE.Views.PivotSettingsAdvanced.textInvalidRange": "ERROR! Invalid cells range",
"SSE.Views.PivotSettingsAdvanced.textOver": "Over, then down",
"SSE.Views.PivotSettingsAdvanced.textSelectData": "Select data",
"SSE.Views.PivotSettingsAdvanced.textShowCols": "Show for columns",
"SSE.Views.PivotSettingsAdvanced.textShowHeaders": "Show field headers for rows and columns",
"SSE.Views.PivotSettingsAdvanced.textShowRows": "Show for rows",
- "SSE.Views.PivotSettingsAdvanced.textTitle": "Pivot Table - Advanced Settings",
+ "SSE.Views.PivotSettingsAdvanced.textTitle": "Pivot Table - Advanced settings",
"SSE.Views.PivotSettingsAdvanced.textWrapCol": "Report filter fields per column",
"SSE.Views.PivotSettingsAdvanced.textWrapRow": "Report filter fields per row",
"SSE.Views.PivotSettingsAdvanced.txtEmpty": "This field is required",
@@ -3006,38 +3017,38 @@
"SSE.Views.PrintSettings.strMargins": "Margins",
"SSE.Views.PrintSettings.strPortrait": "Portrait",
"SSE.Views.PrintSettings.strPrint": "Print",
- "SSE.Views.PrintSettings.strPrintTitles": "Print Titles",
+ "SSE.Views.PrintSettings.strPrintTitles": "Print titles",
"SSE.Views.PrintSettings.strRight": "Right",
"SSE.Views.PrintSettings.strShow": "Show",
"SSE.Views.PrintSettings.strTop": "Top",
- "SSE.Views.PrintSettings.textActualSize": "Actual Size",
- "SSE.Views.PrintSettings.textAllSheets": "All Sheets",
- "SSE.Views.PrintSettings.textCurrentSheet": "Current Sheet",
+ "SSE.Views.PrintSettings.textActualSize": "Actual size",
+ "SSE.Views.PrintSettings.textAllSheets": "All sheets",
+ "SSE.Views.PrintSettings.textCurrentSheet": "Current sheet",
"SSE.Views.PrintSettings.textCustom": "Custom",
- "SSE.Views.PrintSettings.textCustomOptions": "Custom Options",
- "SSE.Views.PrintSettings.textFitCols": "Fit All Columns on One Page",
- "SSE.Views.PrintSettings.textFitPage": "Fit Sheet on One Page",
- "SSE.Views.PrintSettings.textFitRows": "Fit All Rows on One Page",
- "SSE.Views.PrintSettings.textHideDetails": "Hide Details",
- "SSE.Views.PrintSettings.textIgnore": "Ignore Print Area",
+ "SSE.Views.PrintSettings.textCustomOptions": "Custom options",
+ "SSE.Views.PrintSettings.textFitCols": "Fit all columns on one page",
+ "SSE.Views.PrintSettings.textFitPage": "Fit sheet on one page",
+ "SSE.Views.PrintSettings.textFitRows": "Fit all rows on one page",
+ "SSE.Views.PrintSettings.textHideDetails": "Hide details",
+ "SSE.Views.PrintSettings.textIgnore": "Ignore print area",
"SSE.Views.PrintSettings.textLayout": "Layout",
- "SSE.Views.PrintSettings.textPageOrientation": "Page Orientation",
+ "SSE.Views.PrintSettings.textPageOrientation": "Page orientation",
"SSE.Views.PrintSettings.textPageScaling": "Scaling",
- "SSE.Views.PrintSettings.textPageSize": "Page Size",
- "SSE.Views.PrintSettings.textPrintGrid": "Print Gridlines",
- "SSE.Views.PrintSettings.textPrintHeadings": "Print Row and Column Headings",
- "SSE.Views.PrintSettings.textPrintRange": "Print Range",
+ "SSE.Views.PrintSettings.textPageSize": "Page size",
+ "SSE.Views.PrintSettings.textPrintGrid": "Print gridlines",
+ "SSE.Views.PrintSettings.textPrintHeadings": "Print row and column headings",
+ "SSE.Views.PrintSettings.textPrintRange": "Print range",
"SSE.Views.PrintSettings.textRange": "Range",
"SSE.Views.PrintSettings.textRepeat": "Repeat...",
"SSE.Views.PrintSettings.textRepeatLeft": "Repeat columns at left",
"SSE.Views.PrintSettings.textRepeatTop": "Repeat rows at top",
"SSE.Views.PrintSettings.textSelection": "Selection",
- "SSE.Views.PrintSettings.textSettings": "Sheet Settings",
- "SSE.Views.PrintSettings.textShowDetails": "Show Details",
- "SSE.Views.PrintSettings.textShowGrid": "Show Gridlines",
- "SSE.Views.PrintSettings.textShowHeadings": "Show Rows and Columns Headings",
- "SSE.Views.PrintSettings.textTitle": "Print Settings",
- "SSE.Views.PrintSettings.textTitlePDF": "PDF Settings",
+ "SSE.Views.PrintSettings.textSettings": "Sheet settings",
+ "SSE.Views.PrintSettings.textShowDetails": "Show details",
+ "SSE.Views.PrintSettings.textShowGrid": "Show gridlines",
+ "SSE.Views.PrintSettings.textShowHeadings": "Show rows and columns headings",
+ "SSE.Views.PrintSettings.textTitle": "Print settings",
+ "SSE.Views.PrintSettings.textTitlePDF": "PDF settings",
"SSE.Views.PrintTitlesDialog.textFirstCol": "First column",
"SSE.Views.PrintTitlesDialog.textFirstRow": "First row",
"SSE.Views.PrintTitlesDialog.textFrozenCols": "Frozen columns",
@@ -3047,7 +3058,7 @@
"SSE.Views.PrintTitlesDialog.textNoRepeat": "Don't repeat",
"SSE.Views.PrintTitlesDialog.textRepeat": "Repeat...",
"SSE.Views.PrintTitlesDialog.textSelectRange": "Select range",
- "SSE.Views.PrintTitlesDialog.textTitle": "Print Titles",
+ "SSE.Views.PrintTitlesDialog.textTitle": "Print titles",
"SSE.Views.PrintTitlesDialog.textTop": "Repeat rows at top",
"SSE.Views.PrintWithPreview.txtActualSize": "Actual Size",
"SSE.Views.PrintWithPreview.txtAllSheets": "All sheets",
@@ -3090,7 +3101,7 @@
"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",
- "SSE.Views.ProtectDialog.textSelectData": "Select Data",
+ "SSE.Views.ProtectDialog.textSelectData": "Select data",
"SSE.Views.ProtectDialog.txtAllow": "Allow all users of this sheet to",
"SSE.Views.ProtectDialog.txtAutofilter": "Use AutoFilter",
"SSE.Views.ProtectDialog.txtDelCols": "Delete columns",
@@ -3115,34 +3126,34 @@
"SSE.Views.ProtectDialog.txtSelLocked": "Select locked cells",
"SSE.Views.ProtectDialog.txtSelUnLocked": "Select unlocked cells",
"SSE.Views.ProtectDialog.txtSheetDescription": "Prevent unwanted changes from others by limiting their ability to edit.",
- "SSE.Views.ProtectDialog.txtSheetTitle": "Protect Sheet",
+ "SSE.Views.ProtectDialog.txtSheetTitle": "Protect sheet",
"SSE.Views.ProtectDialog.txtSort": "Sort",
"SSE.Views.ProtectDialog.txtWarning": "Warning: If you lose or forget the password, it cannot be recovered. Please keep it in a safe place.",
"SSE.Views.ProtectDialog.txtWBDescription": "To prevent other users from viewing hidden worksheets, adding, moving, deleting, or hiding worksheets and renaming worksheets, you can protect the structure of your workbook with a password.",
- "SSE.Views.ProtectDialog.txtWBTitle": "Protect Workbook structure",
+ "SSE.Views.ProtectDialog.txtWBTitle": "Protect workbook structure",
"SSE.Views.ProtectRangesDlg.guestText": "Guest",
"SSE.Views.ProtectRangesDlg.lockText": "Locked",
"SSE.Views.ProtectRangesDlg.textDelete": "Delete",
"SSE.Views.ProtectRangesDlg.textEdit": "Edit",
"SSE.Views.ProtectRangesDlg.textEmpty": "No ranges allowed for edit.",
"SSE.Views.ProtectRangesDlg.textNew": "New",
- "SSE.Views.ProtectRangesDlg.textProtect": "Protect Sheet",
+ "SSE.Views.ProtectRangesDlg.textProtect": "Protect sheet",
"SSE.Views.ProtectRangesDlg.textPwd": "Password",
"SSE.Views.ProtectRangesDlg.textRange": "Range",
"SSE.Views.ProtectRangesDlg.textRangesDesc": "Ranges unlocked by a password when sheet is protected (this works only for locked cells)",
"SSE.Views.ProtectRangesDlg.textTitle": "Title",
"SSE.Views.ProtectRangesDlg.tipIsLocked": "This element is being edited by another user.",
- "SSE.Views.ProtectRangesDlg.txtEditRange": "Edit Range",
- "SSE.Views.ProtectRangesDlg.txtNewRange": "New Range",
+ "SSE.Views.ProtectRangesDlg.txtEditRange": "Edit range",
+ "SSE.Views.ProtectRangesDlg.txtNewRange": "New range",
"SSE.Views.ProtectRangesDlg.txtNo": "No",
- "SSE.Views.ProtectRangesDlg.txtTitle": "Allow Users to Edit Ranges",
+ "SSE.Views.ProtectRangesDlg.txtTitle": "Allow users to edit ranges",
"SSE.Views.ProtectRangesDlg.txtYes": "Yes",
"SSE.Views.ProtectRangesDlg.warnDelete": "Are you sure you want to delete the name {0}?",
"SSE.Views.RemoveDuplicatesDialog.textColumns": "Columns",
"SSE.Views.RemoveDuplicatesDialog.textDescription": "To delete duplicate values, select one or more columns that contain duplicates.",
"SSE.Views.RemoveDuplicatesDialog.textHeaders": "My data has headers",
- "SSE.Views.RemoveDuplicatesDialog.textSelectAll": "Select All",
- "SSE.Views.RemoveDuplicatesDialog.txtTitle": "Remove Duplicates",
+ "SSE.Views.RemoveDuplicatesDialog.textSelectAll": "Select all",
+ "SSE.Views.RemoveDuplicatesDialog.txtTitle": "Remove duplicates",
"SSE.Views.RightMenu.txtCellSettings": "Cell settings",
"SSE.Views.RightMenu.txtChartSettings": "Chart settings",
"SSE.Views.RightMenu.txtImageSettings": "Image settings",
@@ -3158,12 +3169,12 @@
"SSE.Views.ScaleDialog.textAuto": "Auto",
"SSE.Views.ScaleDialog.textError": "The entered value is incorrect.",
"SSE.Views.ScaleDialog.textFewPages": "pages",
- "SSE.Views.ScaleDialog.textFitTo": "Fit To",
+ "SSE.Views.ScaleDialog.textFitTo": "Fit to",
"SSE.Views.ScaleDialog.textHeight": "Height",
"SSE.Views.ScaleDialog.textManyPages": "pages",
"SSE.Views.ScaleDialog.textOnePage": "page",
- "SSE.Views.ScaleDialog.textScaleTo": "Scale To",
- "SSE.Views.ScaleDialog.textTitle": "Scale Settings",
+ "SSE.Views.ScaleDialog.textScaleTo": "Scale to",
+ "SSE.Views.ScaleDialog.textTitle": "Scale settings",
"SSE.Views.ScaleDialog.textWidth": "Width",
"SSE.Views.SetValueDialog.txtMaxText": "The maximum value for this field is {0}",
"SSE.Views.SetValueDialog.txtMinText": "The minimum value for this field is {0}",
@@ -3225,31 +3236,31 @@
"SSE.Views.ShapeSettings.txtPapyrus": "Papyrus",
"SSE.Views.ShapeSettings.txtWood": "Wood",
"SSE.Views.ShapeSettingsAdvanced.strColumns": "Columns",
- "SSE.Views.ShapeSettingsAdvanced.strMargins": "Text Padding",
+ "SSE.Views.ShapeSettingsAdvanced.strMargins": "Text padding",
"SSE.Views.ShapeSettingsAdvanced.textAbsolute": "Don't move or size with cells",
- "SSE.Views.ShapeSettingsAdvanced.textAlt": "Alternative Text",
+ "SSE.Views.ShapeSettingsAdvanced.textAlt": "Alternative text",
"SSE.Views.ShapeSettingsAdvanced.textAltDescription": "Description",
"SSE.Views.ShapeSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart, or table.",
"SSE.Views.ShapeSettingsAdvanced.textAltTitle": "Title",
"SSE.Views.ShapeSettingsAdvanced.textAngle": "Angle",
"SSE.Views.ShapeSettingsAdvanced.textArrows": "Arrows",
"SSE.Views.ShapeSettingsAdvanced.textAutofit": "AutoFit",
- "SSE.Views.ShapeSettingsAdvanced.textBeginSize": "Begin Size",
- "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Begin Style",
+ "SSE.Views.ShapeSettingsAdvanced.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.textCapType": "Cap type",
"SSE.Views.ShapeSettingsAdvanced.textColNumber": "Number of columns",
- "SSE.Views.ShapeSettingsAdvanced.textEndSize": "End Size",
- "SSE.Views.ShapeSettingsAdvanced.textEndStyle": "End Style",
+ "SSE.Views.ShapeSettingsAdvanced.textEndSize": "End size",
+ "SSE.Views.ShapeSettingsAdvanced.textEndStyle": "End style",
"SSE.Views.ShapeSettingsAdvanced.textFlat": "Flat",
"SSE.Views.ShapeSettingsAdvanced.textFlipped": "Flipped",
"SSE.Views.ShapeSettingsAdvanced.textHeight": "Height",
"SSE.Views.ShapeSettingsAdvanced.textHorizontally": "Horizontally",
- "SSE.Views.ShapeSettingsAdvanced.textJoinType": "Join Type",
+ "SSE.Views.ShapeSettingsAdvanced.textJoinType": "Join type",
"SSE.Views.ShapeSettingsAdvanced.textKeepRatio": "Constant proportions",
"SSE.Views.ShapeSettingsAdvanced.textLeft": "Left",
- "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Line Style",
+ "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Line style",
"SSE.Views.ShapeSettingsAdvanced.textMiter": "Miter",
"SSE.Views.ShapeSettingsAdvanced.textOneCell": "Move but don't size with cells",
"SSE.Views.ShapeSettingsAdvanced.textOverflow": "Allow text to overflow shape",
@@ -3258,11 +3269,11 @@
"SSE.Views.ShapeSettingsAdvanced.textRotation": "Rotation",
"SSE.Views.ShapeSettingsAdvanced.textRound": "Round",
"SSE.Views.ShapeSettingsAdvanced.textSize": "Size",
- "SSE.Views.ShapeSettingsAdvanced.textSnap": "Cell Snapping",
+ "SSE.Views.ShapeSettingsAdvanced.textSnap": "Cell snapping",
"SSE.Views.ShapeSettingsAdvanced.textSpacing": "Spacing between columns",
"SSE.Views.ShapeSettingsAdvanced.textSquare": "Square",
- "SSE.Views.ShapeSettingsAdvanced.textTextBox": "Text Box",
- "SSE.Views.ShapeSettingsAdvanced.textTitle": "Shape - Advanced Settings",
+ "SSE.Views.ShapeSettingsAdvanced.textTextBox": "Text box",
+ "SSE.Views.ShapeSettingsAdvanced.textTitle": "Shape - Advanced settings",
"SSE.Views.ShapeSettingsAdvanced.textTop": "Top",
"SSE.Views.ShapeSettingsAdvanced.textTwoCell": "Move and size with cells",
"SSE.Views.ShapeSettingsAdvanced.textVertically": "Vertically",
@@ -3285,7 +3296,7 @@
"SSE.Views.SignatureSettings.txtSigned": "Valid signatures have been added to the spreadsheet. The spreadsheet is protected from editing.",
"SSE.Views.SignatureSettings.txtSignedInvalid": "Some of the digital signatures in spreadsheet are invalid or could not be verified. The spreadsheet is protected from editing.",
"SSE.Views.SlicerAddDialog.textColumns": "Columns",
- "SSE.Views.SlicerAddDialog.txtTitle": "Insert Slicers",
+ "SSE.Views.SlicerAddDialog.txtTitle": "Insert slicers",
"SSE.Views.SlicerSettings.strHideNoData": "Hide items with no data",
"SSE.Views.SlicerSettings.strIndNoData": "Visually indicate items with no data",
"SSE.Views.SlicerSettings.strShowDel": "Show items deleted from the data source",
@@ -3326,7 +3337,7 @@
"SSE.Views.SlicerSettingsAdvanced.strStyleSize": "Style & Size",
"SSE.Views.SlicerSettingsAdvanced.strWidth": "Width",
"SSE.Views.SlicerSettingsAdvanced.textAbsolute": "Don't move or size with cells",
- "SSE.Views.SlicerSettingsAdvanced.textAlt": "Alternative Text",
+ "SSE.Views.SlicerSettingsAdvanced.textAlt": "Alternative text",
"SSE.Views.SlicerSettingsAdvanced.textAltDescription": "Description",
"SSE.Views.SlicerSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.",
"SSE.Views.SlicerSettingsAdvanced.textAltTitle": "Title",
@@ -3335,17 +3346,17 @@
"SSE.Views.SlicerSettingsAdvanced.textDesc": "Descending",
"SSE.Views.SlicerSettingsAdvanced.textFormulaName": "Name to use in formulas",
"SSE.Views.SlicerSettingsAdvanced.textHeader": "Header",
- "SSE.Views.SlicerSettingsAdvanced.textKeepRatio": "Constant Proportions",
+ "SSE.Views.SlicerSettingsAdvanced.textKeepRatio": "Constant proportions",
"SSE.Views.SlicerSettingsAdvanced.textLargeSmall": "largest to smallest",
"SSE.Views.SlicerSettingsAdvanced.textName": "Name",
"SSE.Views.SlicerSettingsAdvanced.textNewOld": "newest to oldest",
"SSE.Views.SlicerSettingsAdvanced.textOldNew": "oldest to newest",
"SSE.Views.SlicerSettingsAdvanced.textOneCell": "Move but don't size with cells",
"SSE.Views.SlicerSettingsAdvanced.textSmallLarge": "smallest to largest",
- "SSE.Views.SlicerSettingsAdvanced.textSnap": "Cell Snapping",
+ "SSE.Views.SlicerSettingsAdvanced.textSnap": "Cell snapping",
"SSE.Views.SlicerSettingsAdvanced.textSort": "Sort",
"SSE.Views.SlicerSettingsAdvanced.textSourceName": "Source name",
- "SSE.Views.SlicerSettingsAdvanced.textTitle": "Slicer - Advanced Settings",
+ "SSE.Views.SlicerSettingsAdvanced.textTitle": "Slicer - Advanced settings",
"SSE.Views.SlicerSettingsAdvanced.textTwoCell": "Move and size with cells",
"SSE.Views.SlicerSettingsAdvanced.textZA": "Z to A",
"SSE.Views.SlicerSettingsAdvanced.txtEmpty": "This field is required",
@@ -3392,7 +3403,7 @@
"SSE.Views.SortOptionsDialog.textHeaders": "My data has headers",
"SSE.Views.SortOptionsDialog.textLeftRight": "Sort left to right",
"SSE.Views.SortOptionsDialog.textOrientation": "Orientation",
- "SSE.Views.SortOptionsDialog.textTitle": "Sort Options",
+ "SSE.Views.SortOptionsDialog.textTitle": "Sort options",
"SSE.Views.SortOptionsDialog.textTopBottom": "Sort top to bottom",
"SSE.Views.SpecialPasteDialog.textAdd": "Add",
"SSE.Views.SpecialPasteDialog.textAll": "All",
@@ -3410,11 +3421,11 @@
"SSE.Views.SpecialPasteDialog.textOperation": "Operation",
"SSE.Views.SpecialPasteDialog.textPaste": "Paste",
"SSE.Views.SpecialPasteDialog.textSub": "Subtract",
- "SSE.Views.SpecialPasteDialog.textTitle": "Paste Special",
+ "SSE.Views.SpecialPasteDialog.textTitle": "Paste special",
"SSE.Views.SpecialPasteDialog.textTranspose": "Transpose",
"SSE.Views.SpecialPasteDialog.textValues": "Values",
- "SSE.Views.SpecialPasteDialog.textVFormat": "Values & formatting",
- "SSE.Views.SpecialPasteDialog.textVNFormat": "Values & number formats",
+ "SSE.Views.SpecialPasteDialog.textVFormat": "Values & Formatting",
+ "SSE.Views.SpecialPasteDialog.textVNFormat": "Values & Number formats",
"SSE.Views.SpecialPasteDialog.textWBorders": "All except borders",
"SSE.Views.Spellcheck.noSuggestions": "No spelling suggestions",
"SSE.Views.Spellcheck.textChange": "Change",
@@ -3451,7 +3462,7 @@
"SSE.Views.Statusbar.itemUnProtect": "Unprotect",
"SSE.Views.Statusbar.RenameDialog.errNameExists": "Worksheet with such a name already exists.",
"SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "A sheet name cannot contain the following characters: \\/*?[]:",
- "SSE.Views.Statusbar.RenameDialog.labelSheetName": "Sheet Name",
+ "SSE.Views.Statusbar.RenameDialog.labelSheetName": "Sheet name",
"SSE.Views.Statusbar.selectAllSheets": "Select All Sheets",
"SSE.Views.Statusbar.sheetIndexText": "Sheet {0} of {1}",
"SSE.Views.Statusbar.textAverage": "Average",
@@ -3477,7 +3488,7 @@
"SSE.Views.TableOptionsDialog.errorFTRangeIncludedOtherTables": "Operation could not be completed for the selected cell range. Select a range which does not include other tables.",
"SSE.Views.TableOptionsDialog.errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.",
"SSE.Views.TableOptionsDialog.txtEmpty": "This field is required",
- "SSE.Views.TableOptionsDialog.txtFormat": "Create Table",
+ "SSE.Views.TableOptionsDialog.txtFormat": "Create table",
"SSE.Views.TableOptionsDialog.txtInvalidRange": "ERROR! Invalid cells range",
"SSE.Views.TableOptionsDialog.txtNote": "The headers must remain in the same row, and the resulting table range must overlap the original table range.",
"SSE.Views.TableOptionsDialog.txtTitle": "Title",
@@ -3519,18 +3530,18 @@
"SSE.Views.TableSettings.textTemplate": "Select From Template",
"SSE.Views.TableSettings.textTotal": "Total",
"SSE.Views.TableSettings.warnLongOperation": "The operation you are about to perform might take rather much time to complete. Are you sure you want to continue?",
- "SSE.Views.TableSettingsAdvanced.textAlt": "Alternative Text",
+ "SSE.Views.TableSettingsAdvanced.textAlt": "Alternative text",
"SSE.Views.TableSettingsAdvanced.textAltDescription": "Description",
"SSE.Views.TableSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.",
"SSE.Views.TableSettingsAdvanced.textAltTitle": "Title",
- "SSE.Views.TableSettingsAdvanced.textTitle": "Table - Advanced Settings",
+ "SSE.Views.TableSettingsAdvanced.textTitle": "Table - Advanced settings",
"SSE.Views.TableSettingsAdvanced.txtGroupTable_Custom": "Custom",
"SSE.Views.TableSettingsAdvanced.txtGroupTable_Dark": "Dark",
"SSE.Views.TableSettingsAdvanced.txtGroupTable_Light": "Light",
"SSE.Views.TableSettingsAdvanced.txtGroupTable_Medium": "Medium",
- "SSE.Views.TableSettingsAdvanced.txtTable_TableStyleDark": "Table Style Dark",
- "SSE.Views.TableSettingsAdvanced.txtTable_TableStyleLight": "Table Style Light",
- "SSE.Views.TableSettingsAdvanced.txtTable_TableStyleMedium": "Table Style Medium",
+ "SSE.Views.TableSettingsAdvanced.txtTable_TableStyleDark": "Table style dark",
+ "SSE.Views.TableSettingsAdvanced.txtTable_TableStyleLight": "Table style light",
+ "SSE.Views.TableSettingsAdvanced.txtTable_TableStyleMedium": "Table style medium",
"SSE.Views.TextArtSettings.strBackground": "Background color",
"SSE.Views.TextArtSettings.strColor": "Color",
"SSE.Views.TextArtSettings.strFill": "Fill",
@@ -3588,7 +3599,7 @@
"SSE.Views.Toolbar.capBtnPageSize": "Size",
"SSE.Views.Toolbar.capBtnPrintArea": "Print Area",
"SSE.Views.Toolbar.capBtnPrintTitles": "Print Titles",
- "SSE.Views.Toolbar.capBtnScale": "Scale to Fit",
+ "SSE.Views.Toolbar.capBtnScale": "Scale To Fit",
"SSE.Views.Toolbar.capImgAlign": "Align",
"SSE.Views.Toolbar.capImgBackward": "Send Backward",
"SSE.Views.Toolbar.capImgForward": "Bring Forward",
@@ -3667,7 +3678,7 @@
"SSE.Views.Toolbar.textPortrait": "Portrait",
"SSE.Views.Toolbar.textPrint": "Print",
"SSE.Views.Toolbar.textPrintGridlines": "Print gridlines",
- "SSE.Views.Toolbar.textPrintHeadings": "Print headings",
+ "SSE.Views.Toolbar.textPrintHeadings": "Print Headings",
"SSE.Views.Toolbar.textPrintOptions": "Print Settings",
"SSE.Views.Toolbar.textRight": "Right: ",
"SSE.Views.Toolbar.textRightBorders": "Right Borders",
@@ -3856,27 +3867,27 @@
"SSE.Views.Top10FilterDialog.txtSum": "Sum",
"SSE.Views.Top10FilterDialog.txtTitle": "Top 10 AutoFilter",
"SSE.Views.Top10FilterDialog.txtTop": "Top",
- "SSE.Views.Top10FilterDialog.txtValueTitle": "Top 10 Filter",
- "SSE.Views.ValueFieldSettingsDialog.textTitle": "Value Field Settings",
+ "SSE.Views.Top10FilterDialog.txtValueTitle": "Top 10 filter",
+ "SSE.Views.ValueFieldSettingsDialog.textTitle": "Value field settings",
"SSE.Views.ValueFieldSettingsDialog.txtAverage": "Average",
"SSE.Views.ValueFieldSettingsDialog.txtBaseField": "Base field",
"SSE.Views.ValueFieldSettingsDialog.txtBaseItem": "Base item",
"SSE.Views.ValueFieldSettingsDialog.txtByField": "%1 of %2",
"SSE.Views.ValueFieldSettingsDialog.txtCount": "Count",
- "SSE.Views.ValueFieldSettingsDialog.txtCountNums": "Count Numbers",
+ "SSE.Views.ValueFieldSettingsDialog.txtCountNums": "Count numbers",
"SSE.Views.ValueFieldSettingsDialog.txtCustomName": "Custom name",
- "SSE.Views.ValueFieldSettingsDialog.txtDifference": "The Difference From",
+ "SSE.Views.ValueFieldSettingsDialog.txtDifference": "The difference from",
"SSE.Views.ValueFieldSettingsDialog.txtIndex": "Index",
"SSE.Views.ValueFieldSettingsDialog.txtMax": "Max",
"SSE.Views.ValueFieldSettingsDialog.txtMin": "Min",
- "SSE.Views.ValueFieldSettingsDialog.txtNormal": "No Calculation",
+ "SSE.Views.ValueFieldSettingsDialog.txtNormal": "No calculation",
"SSE.Views.ValueFieldSettingsDialog.txtPercent": "Percent of",
- "SSE.Views.ValueFieldSettingsDialog.txtPercentDiff": "Percent Difference From",
- "SSE.Views.ValueFieldSettingsDialog.txtPercentOfCol": "Percent of Column",
- "SSE.Views.ValueFieldSettingsDialog.txtPercentOfRow": "Percent of Total",
- "SSE.Views.ValueFieldSettingsDialog.txtPercentOfTotal": "Percent of Row",
+ "SSE.Views.ValueFieldSettingsDialog.txtPercentDiff": "Percent difference from",
+ "SSE.Views.ValueFieldSettingsDialog.txtPercentOfCol": "Percent of column",
+ "SSE.Views.ValueFieldSettingsDialog.txtPercentOfRow": "Percent of total",
+ "SSE.Views.ValueFieldSettingsDialog.txtPercentOfTotal": "Percent of row",
"SSE.Views.ValueFieldSettingsDialog.txtProduct": "Product",
- "SSE.Views.ValueFieldSettingsDialog.txtRunTotal": "Running Total In",
+ "SSE.Views.ValueFieldSettingsDialog.txtRunTotal": "Running total in",
"SSE.Views.ValueFieldSettingsDialog.txtShowAs": "Show values as",
"SSE.Views.ValueFieldSettingsDialog.txtSourceName": "Source name:",
"SSE.Views.ValueFieldSettingsDialog.txtStdDev": "StdDev",
@@ -3899,33 +3910,33 @@
"SSE.Views.ViewManagerDlg.textRenameLabel": "Rename view",
"SSE.Views.ViewManagerDlg.textViews": "Sheet views",
"SSE.Views.ViewManagerDlg.tipIsLocked": "This element is being edited by another user.",
- "SSE.Views.ViewManagerDlg.txtTitle": "Sheet View Manager",
+ "SSE.Views.ViewManagerDlg.txtTitle": "Sheet view manager",
"SSE.Views.ViewManagerDlg.warnDeleteView": "You are trying to delete the currently enabled view '%1'. Close this view and delete it?",
"SSE.Views.ViewTab.capBtnFreeze": "Freeze Panes",
"SSE.Views.ViewTab.capBtnSheetView": "Sheet View",
- "SSE.Views.ViewTab.textAlwaysShowToolbar": "Always show toolbar",
+ "SSE.Views.ViewTab.textAlwaysShowToolbar": "Always Show Toolbar",
"SSE.Views.ViewTab.textClose": "Close",
- "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "Combine sheet and status bars",
+ "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "Combine Sheet and Status Bars",
"SSE.Views.ViewTab.textCreate": "New",
"SSE.Views.ViewTab.textDefault": "Default",
- "SSE.Views.ViewTab.textFormula": "Formula bar",
+ "SSE.Views.ViewTab.textFormula": "Formula Bar",
"SSE.Views.ViewTab.textFreezeCol": "Freeze First Column",
"SSE.Views.ViewTab.textFreezeRow": "Freeze Top Row",
"SSE.Views.ViewTab.textGridlines": "Gridlines",
"SSE.Views.ViewTab.textHeadings": "Headings",
- "SSE.Views.ViewTab.textInterfaceTheme": "Interface theme",
+ "SSE.Views.ViewTab.textInterfaceTheme": "Interface Theme",
+ "SSE.Views.ViewTab.textLeftMenu": "Left Panel",
"SSE.Views.ViewTab.textManager": "View manager",
- "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Show frozen panes shadow",
+ "SSE.Views.ViewTab.textRightMenu": "Right Panel",
+ "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Show Frozen Panes Shadow",
"SSE.Views.ViewTab.textUnFreeze": "Unfreeze Panes",
- "SSE.Views.ViewTab.textZeros": "Show zeros",
+ "SSE.Views.ViewTab.textZeros": "Show Zeros",
"SSE.Views.ViewTab.textZoom": "Zoom",
"SSE.Views.ViewTab.tipClose": "Close sheet view",
"SSE.Views.ViewTab.tipCreate": "Create sheet view",
"SSE.Views.ViewTab.tipFreeze": "Freeze panes",
"SSE.Views.ViewTab.tipInterfaceTheme": "Interface theme",
"SSE.Views.ViewTab.tipSheetView": "Sheet view",
- "SSE.Views.ViewTab.textLeftMenu": "Left panel",
- "SSE.Views.ViewTab.textRightMenu": "Right panel",
"SSE.Views.WatchDialog.closeButtonText": "Close",
"SSE.Views.WatchDialog.textAdd": "Add watch",
"SSE.Views.WatchDialog.textBook": "Book",
@@ -3936,7 +3947,7 @@
"SSE.Views.WatchDialog.textName": "Name",
"SSE.Views.WatchDialog.textSheet": "Sheet",
"SSE.Views.WatchDialog.textValue": "Value",
- "SSE.Views.WatchDialog.txtTitle": "Watch Window",
+ "SSE.Views.WatchDialog.txtTitle": "Watch window",
"SSE.Views.WBProtection.hintAllowRanges": "Allow edit ranges",
"SSE.Views.WBProtection.hintProtectSheet": "Protect sheet",
"SSE.Views.WBProtection.hintProtectWB": "Protect workbook",
diff --git a/apps/spreadsheeteditor/main/locale/es.json b/apps/spreadsheeteditor/main/locale/es.json
index dc96ec910..8f601c294 100644
--- a/apps/spreadsheeteditor/main/locale/es.json
+++ b/apps/spreadsheeteditor/main/locale/es.json
@@ -100,6 +100,12 @@
"Common.define.conditionalData.textUnique": "Único",
"Common.define.conditionalData.textValue": "El valor es",
"Common.define.conditionalData.textYesterday": "Ayer",
+ "Common.define.smartArt.textBalance": "Saldo",
+ "Common.define.smartArt.textEquation": "Ecuación",
+ "Common.define.smartArt.textFunnel": "Embudo",
+ "Common.define.smartArt.textList": "Lista",
+ "Common.define.smartArt.textOther": "Otro",
+ "Common.define.smartArt.textPicture": "Imagen",
"Common.Translation.textMoreButton": "Más",
"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",
@@ -318,6 +324,7 @@
"Common.Views.Plugins.textStart": "Iniciar",
"Common.Views.Plugins.textStop": "Detener",
"Common.Views.Protection.hintAddPwd": "Encriptar con contraseña",
+ "Common.Views.Protection.hintDelPwd": "Eliminar contraseña",
"Common.Views.Protection.hintPwd": "Cambie o elimine la contraseña",
"Common.Views.Protection.hintSignature": "Agregar firma digital o línea de firma",
"Common.Views.Protection.txtAddPwd": "Agregar contraseña",
@@ -669,7 +676,7 @@
"SSE.Controllers.FormulaDialog.sCategoryInformation": "Información",
"SSE.Controllers.FormulaDialog.sCategoryLast10": "10 usados por última vez",
"SSE.Controllers.FormulaDialog.sCategoryLogical": "Lógico",
- "SSE.Controllers.FormulaDialog.sCategoryLookupAndReference": "Búsqueda y Referencia",
+ "SSE.Controllers.FormulaDialog.sCategoryLookupAndReference": "Búsqueda y referencia",
"SSE.Controllers.FormulaDialog.sCategoryMathematic": "Matemáticas y trigonometría",
"SSE.Controllers.FormulaDialog.sCategoryStatistical": "Estadístico",
"SSE.Controllers.FormulaDialog.sCategoryTextAndData": "Texto y datos",
@@ -726,6 +733,7 @@
"SSE.Controllers.Main.errorDefaultMessage": "Código de error: %1",
"SSE.Controllers.Main.errorDeleteColumnContainsLockedCell": "Está intentando eliminar una columna que contiene una celda bloqueada. Las celdas bloqueadas no pueden borrarse mientras la hoja de cálculo esté protegida. Para borrar una celda bloqueada, desproteja la hoja. Es posible que se le pida que introduzca una contraseña.",
"SSE.Controllers.Main.errorDeleteRowContainsLockedCell": "Está intentando eliminar una fila que contiene una celda bloqueada. Las celdas bloqueadas no se pueden eliminar mientras la hoja de cálculo esté protegida. Para eliminar una celda bloqueada, desproteja la hoja. Es posible que se le pida que introduzca una contraseña.",
+ "SSE.Controllers.Main.errorDirectUrl": "Por favor, verifique el vínculo al documento. Este vínculo debe ser un vínculo directo al archivo para descargar.",
"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.",
"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.",
"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.",
@@ -822,6 +830,7 @@
"SSE.Controllers.Main.textCloseTip": "Pulse para cerrar el consejo",
"SSE.Controllers.Main.textConfirm": "Confirmación",
"SSE.Controllers.Main.textContactUs": "Contactar con equipo de ventas",
+ "SSE.Controllers.Main.textContinue": "Continuar",
"SSE.Controllers.Main.textConvertEquation": "Esta ecuación fue creada con una versión antigua del editor de ecuaciones que ya no es compatible. Para editarla, convierta la ecuación al formato ML de Office Math. ¿Convertir ahora?",
"SSE.Controllers.Main.textCustomLoader": "Note, por favor, que según los términos de la licencia Usted no tiene derecho a cambiar el cargador. Por favor, póngase en contacto con nuestro Departamento de Ventas para obtener una cotización.",
"SSE.Controllers.Main.textDisconnect": "Se ha perdido la conexión",
@@ -850,6 +859,7 @@
"SSE.Controllers.Main.textStrict": "Modo estricto",
"SSE.Controllers.Main.textTryUndoRedo": "Las funciones Deshacer/Rehacer están desactivadas para el modo co-edición rápido. Haga Clic en el botón \"modo estricto\" para cambiar al modo de co-edición estricta para editar el archivo sin la interferencia de otros usuarios y enviar sus cambios sólo después de guardarlos. Se puede cambiar entre los modos de co-edición usando los ajustes avanzados de edición.",
"SSE.Controllers.Main.textTryUndoRedoWarn": "Las funciones Deshacer/Rehacer están desactivadas en el modo de co-edición rápido.",
+ "SSE.Controllers.Main.textUndo": "Deshacer",
"SSE.Controllers.Main.textYes": "Sí",
"SSE.Controllers.Main.titleLicenseExp": "Licencia ha expirado",
"SSE.Controllers.Main.titleServerVersion": "Editor ha sido actualizado",
@@ -1276,6 +1286,12 @@
"SSE.Controllers.Toolbar.txtFunction_Sinh": "Función de seno hiperbólica",
"SSE.Controllers.Toolbar.txtFunction_Tan": "Función de tangente",
"SSE.Controllers.Toolbar.txtFunction_Tanh": "Función de tangente hiperbólica",
+ "SSE.Controllers.Toolbar.txtGroupCell_Custom": "Personalizado",
+ "SSE.Controllers.Toolbar.txtGroupCell_NumberFormat": "Formato de número",
+ "SSE.Controllers.Toolbar.txtGroupTable_Custom": "Personalizado",
+ "SSE.Controllers.Toolbar.txtGroupTable_Dark": "Oscuro",
+ "SSE.Controllers.Toolbar.txtGroupTable_Light": "Claro",
+ "SSE.Controllers.Toolbar.txtGroupTable_Medium": "Medio",
"SSE.Controllers.Toolbar.txtInsertCells": "Insertar celdas",
"SSE.Controllers.Toolbar.txtIntegral": "Integral",
"SSE.Controllers.Toolbar.txtIntegral_dtheta": "Diferencial zeta",
@@ -1649,22 +1665,26 @@
"SSE.Views.ChartSettings.textBorderSizeErr": "El valor numérico es incorrecto. Por favor, introduzca un valor de 0 a 1584 puntos.",
"SSE.Views.ChartSettings.textChangeType": "Cambiar tipo",
"SSE.Views.ChartSettings.textChartType": "Cambiar tipo de gráfico",
+ "SSE.Views.ChartSettings.textDown": "Abajo",
"SSE.Views.ChartSettings.textEditData": "Editar datos y ubicación",
"SSE.Views.ChartSettings.textFirstPoint": "Primer punto",
"SSE.Views.ChartSettings.textHeight": "Altura",
"SSE.Views.ChartSettings.textHighPoint": "Punto alto",
"SSE.Views.ChartSettings.textKeepRatio": "Proporciones constantes",
"SSE.Views.ChartSettings.textLastPoint": "Último punto",
+ "SSE.Views.ChartSettings.textLeft": "Izquierda",
"SSE.Views.ChartSettings.textLowPoint": "Punto bajo",
"SSE.Views.ChartSettings.textMarkers": "Marcadores",
"SSE.Views.ChartSettings.textNegativePoint": "Punto negativo",
"SSE.Views.ChartSettings.textRanges": "Rango de datos",
+ "SSE.Views.ChartSettings.textRight": "Derecha",
"SSE.Views.ChartSettings.textSelectData": "Seleccionar datos",
"SSE.Views.ChartSettings.textShow": "Mostrar",
"SSE.Views.ChartSettings.textSize": "Tamaño",
"SSE.Views.ChartSettings.textStyle": "Estilo",
"SSE.Views.ChartSettings.textSwitch": "Cambiar Fila/Columna",
"SSE.Views.ChartSettings.textType": "Tipo",
+ "SSE.Views.ChartSettings.textUp": "Arriba",
"SSE.Views.ChartSettings.textWidth": "Ancho",
"SSE.Views.ChartSettingsDlg.errorMaxPoints": "¡ERROR! El máximo",
"SSE.Views.ChartSettingsDlg.errorMaxRows": "¡ERROR! El número máximo de series de datos por gráfico es 225",
@@ -1818,6 +1838,7 @@
"SSE.Views.DataTab.capBtnTextRemDuplicates": "Eliminar duplicados",
"SSE.Views.DataTab.capBtnTextToCol": "Texto en columnas",
"SSE.Views.DataTab.capBtnUngroup": "Desagrupar",
+ "SSE.Views.DataTab.capDataExternalLinks": "Enlaces externos",
"SSE.Views.DataTab.capDataFromText": "Obtener los datos",
"SSE.Views.DataTab.mniFromFile": "Desde el archivo TXT/CSV local",
"SSE.Views.DataTab.mniFromUrl": "Desde la dirección web del archivo TXT/CSV",
@@ -2047,6 +2068,7 @@
"SSE.Views.DocumentHolder.txtPaste": "Pegar",
"SSE.Views.DocumentHolder.txtPercentage": "Porcentaje",
"SSE.Views.DocumentHolder.txtReapply": "Reaplicar",
+ "SSE.Views.DocumentHolder.txtRefresh": "Actualizar",
"SSE.Views.DocumentHolder.txtRow": "Toda la fila",
"SSE.Views.DocumentHolder.txtRowHeight": "Ajustar altura de fila",
"SSE.Views.DocumentHolder.txtScientific": "Scientífico",
@@ -2067,6 +2089,8 @@
"SSE.Views.DocumentHolder.txtUngroup": "Desagrupar",
"SSE.Views.DocumentHolder.txtWidth": "Ancho",
"SSE.Views.DocumentHolder.vertAlignText": "Alineación vertical",
+ "SSE.Views.ExternalLinksDlg.closeButtonText": "Cerrar",
+ "SSE.Views.ExternalLinksDlg.txtTitle": "Enlaces externos",
"SSE.Views.FieldSettingsDialog.strLayout": "Diseño",
"SSE.Views.FieldSettingsDialog.strSubtotals": "Subtotales",
"SSE.Views.FieldSettingsDialog.textReport": "Formulario de informe",
@@ -2130,6 +2154,7 @@
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Ubicación",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personas que tienen derechos",
"SSE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Asunto",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtTags": "Etiquetas",
"SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título",
"SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Subido",
"SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Cambiar derechos de acceso",
@@ -2430,6 +2455,7 @@
"SSE.Views.FormulaTab.txtFormulaTip": "Insertar función",
"SSE.Views.FormulaTab.txtMore": "Más funciones",
"SSE.Views.FormulaTab.txtRecent": "Usados recientemente",
+ "SSE.Views.FormulaTab.txtWatch": "Ventana Inspección",
"SSE.Views.FormulaWizard.textAny": "cualquier",
"SSE.Views.FormulaWizard.textArgument": "Argumento",
"SSE.Views.FormulaWizard.textFunction": "Función",
@@ -2773,6 +2799,10 @@
"SSE.Views.PivotTable.tipSelect": "Seleccione toda la tabla de pivote",
"SSE.Views.PivotTable.tipSubtotals": "Mostrar u ocultar subtotales",
"SSE.Views.PivotTable.txtCreate": "Insertar tabla",
+ "SSE.Views.PivotTable.txtGroupPivot_Custom": "Personalizado",
+ "SSE.Views.PivotTable.txtGroupPivot_Dark": "Oscuro",
+ "SSE.Views.PivotTable.txtGroupPivot_Light": "Claro",
+ "SSE.Views.PivotTable.txtGroupPivot_Medium": "Medio",
"SSE.Views.PivotTable.txtPivotTable": "Tabla Dinámica",
"SSE.Views.PivotTable.txtRefresh": "Actualizar",
"SSE.Views.PivotTable.txtSelect": "Seleccionar",
@@ -3302,6 +3332,13 @@
"SSE.Views.TableSettingsAdvanced.textAltTip": "Representación de texto alternativa de la información sobre el objeto visual, que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarles a entender mejor, que información contiene la imagen, autoforma, gráfico o tabla.",
"SSE.Views.TableSettingsAdvanced.textAltTitle": "Título",
"SSE.Views.TableSettingsAdvanced.textTitle": "Tabla - Ajustes avanzados",
+ "SSE.Views.TableSettingsAdvanced.txtGroupTable_Custom": "Personalizado",
+ "SSE.Views.TableSettingsAdvanced.txtGroupTable_Dark": "Oscuro",
+ "SSE.Views.TableSettingsAdvanced.txtGroupTable_Light": "Claro",
+ "SSE.Views.TableSettingsAdvanced.txtGroupTable_Medium": "Medio",
+ "SSE.Views.TableSettingsAdvanced.txtTable_TableStyleDark": "Estilo de tabla oscuro",
+ "SSE.Views.TableSettingsAdvanced.txtTable_TableStyleLight": "Estilo de tabla claro",
+ "SSE.Views.TableSettingsAdvanced.txtTable_TableStyleMedium": "Estilo de tabla medio",
"SSE.Views.TextArtSettings.strBackground": "Color de fondo",
"SSE.Views.TextArtSettings.strColor": "Color",
"SSE.Views.TextArtSettings.strFill": "Relleno",
@@ -3352,12 +3389,13 @@
"SSE.Views.Toolbar.capBtnComment": "Comentario",
"SSE.Views.Toolbar.capBtnInsHeader": "Encabezado/Pie de página",
"SSE.Views.Toolbar.capBtnInsSlicer": "Segmentación de datos",
+ "SSE.Views.Toolbar.capBtnInsSmartArt": "SmartArt",
"SSE.Views.Toolbar.capBtnInsSymbol": "Símbolo",
"SSE.Views.Toolbar.capBtnMargins": "Márgenes",
"SSE.Views.Toolbar.capBtnPageOrient": "Orientación ",
"SSE.Views.Toolbar.capBtnPageSize": "Tamaño",
"SSE.Views.Toolbar.capBtnPrintArea": "Área de impresión",
- "SSE.Views.Toolbar.capBtnPrintTitles": "Imprimir Títulos",
+ "SSE.Views.Toolbar.capBtnPrintTitles": "Imprimir títulos",
"SSE.Views.Toolbar.capBtnScale": "Ajustar área de impresión",
"SSE.Views.Toolbar.capImgAlign": "Alineación",
"SSE.Views.Toolbar.capImgBackward": "Enviar hacia atrás",
@@ -3371,7 +3409,7 @@
"SSE.Views.Toolbar.capInsertSpark": "Minigráfico",
"SSE.Views.Toolbar.capInsertTable": "Tabla",
"SSE.Views.Toolbar.capInsertText": "Cuadro de texto",
- "SSE.Views.Toolbar.capInsertTextart": "Galería de Texto",
+ "SSE.Views.Toolbar.capInsertTextart": "Galería de texto",
"SSE.Views.Toolbar.mniImageFromFile": "Imagen desde archivo",
"SSE.Views.Toolbar.mniImageFromStorage": "Imagen de Almacenamiento",
"SSE.Views.Toolbar.mniImageFromUrl": "Imagen desde url",
@@ -3397,6 +3435,7 @@
"SSE.Views.Toolbar.textClockwise": "En la dirección de manecillas de reloj",
"SSE.Views.Toolbar.textColorScales": "Escalas de color",
"SSE.Views.Toolbar.textCounterCw": "En el sentido antihorario",
+ "SSE.Views.Toolbar.textCustom": "Personalizado",
"SSE.Views.Toolbar.textDataBars": "Barras de datos",
"SSE.Views.Toolbar.textDelLeft": "Desplazar celdas a la izquierda",
"SSE.Views.Toolbar.textDelUp": "Desplazar celdas hacia arriba",
@@ -3547,6 +3586,7 @@
"SSE.Views.Toolbar.txtAdditional": "Adicional",
"SSE.Views.Toolbar.txtAscending": "Ascendente",
"SSE.Views.Toolbar.txtAutosumTip": "Sumatoria",
+ "SSE.Views.Toolbar.txtCellStyle": "Estilo de celda",
"SSE.Views.Toolbar.txtClearAll": "Todo",
"SSE.Views.Toolbar.txtClearComments": "Comentarios",
"SSE.Views.Toolbar.txtClearFilter": "Limpiar filtro",
@@ -3689,6 +3729,14 @@
"SSE.Views.ViewTab.tipFreeze": "Congelar paneles",
"SSE.Views.ViewTab.tipInterfaceTheme": "Tema de la interfaz",
"SSE.Views.ViewTab.tipSheetView": "Vista de hoja",
+ "SSE.Views.WatchDialog.closeButtonText": "Cerrar",
+ "SSE.Views.WatchDialog.textCell": "Celda",
+ "SSE.Views.WatchDialog.textDeleteAll": "Borrar todo",
+ "SSE.Views.WatchDialog.textFormula": "Fórmula",
+ "SSE.Views.WatchDialog.textName": "Nombre",
+ "SSE.Views.WatchDialog.textSheet": "Hoja",
+ "SSE.Views.WatchDialog.textValue": "Valor",
+ "SSE.Views.WatchDialog.txtTitle": "Ventana Inspección",
"SSE.Views.WBProtection.hintAllowRanges": "Permitir editar rangos",
"SSE.Views.WBProtection.hintProtectSheet": "Proteger hoja",
"SSE.Views.WBProtection.hintProtectWB": "Proteger libro",
diff --git a/apps/spreadsheeteditor/main/locale/fr.json b/apps/spreadsheeteditor/main/locale/fr.json
index eadab2659..9753386ba 100644
--- a/apps/spreadsheeteditor/main/locale/fr.json
+++ b/apps/spreadsheeteditor/main/locale/fr.json
@@ -335,7 +335,7 @@
"Common.Views.AutoCorrectDialog.textRecognized": "Fonctions reconnues",
"Common.Views.AutoCorrectDialog.textRecognizedDesc": "Les expressions suivantes sont les expressions mathématiques reconnues. Elles ne seront pas mises en italique automatiquement.",
"Common.Views.AutoCorrectDialog.textReplace": "Remplacer",
- "Common.Views.AutoCorrectDialog.textReplaceText": "Remplacer au cours de la frappe",
+ "Common.Views.AutoCorrectDialog.textReplaceText": "Remplacer pendant la frappe",
"Common.Views.AutoCorrectDialog.textReplaceType": "Remplacer le texte au cours de la frappe",
"Common.Views.AutoCorrectDialog.textReset": "Réinitialiser",
"Common.Views.AutoCorrectDialog.textResetAll": "Rétablir paramètres par défaut",
@@ -376,7 +376,7 @@
"Common.Views.Comments.txtEmpty": "Il n'y a pas de commentaires dans la feuille.",
"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",
+ "Common.Views.CopyWarningDialog.textTitle": "Actions copier, couper et coller",
"Common.Views.CopyWarningDialog.textToCopy": "pour Copier",
"Common.Views.CopyWarningDialog.textToCut": "pour Couper",
"Common.Views.CopyWarningDialog.textToPaste": "pour Coller",
@@ -423,8 +423,8 @@
"Common.Views.ImageFromUrlDialog.txtEmpty": "Ce champ est obligatoire",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"",
"Common.Views.ListSettingsDialog.textBulleted": "à puces",
- "Common.Views.ListSettingsDialog.textFromFile": "D'un fichier",
- "Common.Views.ListSettingsDialog.textFromStorage": "A partir de l'espace de stockage",
+ "Common.Views.ListSettingsDialog.textFromFile": "Depuis un fichier",
+ "Common.Views.ListSettingsDialog.textFromStorage": "Depuis l'espace de stockage",
"Common.Views.ListSettingsDialog.textFromUrl": "D'une URL",
"Common.Views.ListSettingsDialog.textNumbering": "Numéroté",
"Common.Views.ListSettingsDialog.textSelect": "Sélectionner à partir de",
@@ -594,7 +594,7 @@
"Common.Views.SearchPanel.tipNextResult": "Résultat suivant",
"Common.Views.SearchPanel.tipPreviousResult": "Résultat précédent",
"Common.Views.SelectFileDlg.textLoading": "Chargement",
- "Common.Views.SelectFileDlg.textTitle": "Sélectionnez la source de données",
+ "Common.Views.SelectFileDlg.textTitle": "Sélectionner la source de données",
"Common.Views.SignDialog.textBold": "Gras",
"Common.Views.SignDialog.textCertificate": "Certificat",
"Common.Views.SignDialog.textChange": "Modifier",
@@ -608,44 +608,44 @@
"Common.Views.SignDialog.textTitle": "Signer le document",
"Common.Views.SignDialog.textUseImage": "ou cliquer sur \"Sélectionner une image\" afin d'utiliser une image en tant que signature",
"Common.Views.SignDialog.textValid": "Valide de %1 à %2",
- "Common.Views.SignDialog.tipFontName": "Nom de la police",
- "Common.Views.SignDialog.tipFontSize": "Taille de la police",
+ "Common.Views.SignDialog.tipFontName": "Nom de police",
+ "Common.Views.SignDialog.tipFontSize": "Taille de police",
"Common.Views.SignSettingsDialog.textAllowComment": "Autoriser le signataire à ajouter un commentaire dans la boîte de dialogue de la signature",
"Common.Views.SignSettingsDialog.textDefInstruction": "Avant de signer un document, vérifiez que le contenu que vous signez est correct.",
"Common.Views.SignSettingsDialog.textInfoEmail": "E-mail du signataire suggéré",
"Common.Views.SignSettingsDialog.textInfoName": "Signataire suggéré",
- "Common.Views.SignSettingsDialog.textInfoTitle": "Titre du signataire",
+ "Common.Views.SignSettingsDialog.textInfoTitle": "Titre du signataire suggéré",
"Common.Views.SignSettingsDialog.textInstructions": "Instructions pour les signataires",
"Common.Views.SignSettingsDialog.textShowDate": "Afficher la date de signature à côté de la signature",
- "Common.Views.SignSettingsDialog.textTitle": "Mise en place de la signature",
+ "Common.Views.SignSettingsDialog.textTitle": "Configuration de signature",
"Common.Views.SignSettingsDialog.txtEmpty": "Ce champ est obligatoire",
"Common.Views.SymbolTableDialog.textCharacter": "Caractère",
"Common.Views.SymbolTableDialog.textCode": "Valeur hexadécimale Unicode",
- "Common.Views.SymbolTableDialog.textCopyright": "Signe Copyright",
+ "Common.Views.SymbolTableDialog.textCopyright": "Symbole de copyright",
"Common.Views.SymbolTableDialog.textDCQuote": "Fermer les guillemets",
- "Common.Views.SymbolTableDialog.textDOQuote": "Ouvrir les guillemets",
+ "Common.Views.SymbolTableDialog.textDOQuote": "Double guillemet ouvrant",
"Common.Views.SymbolTableDialog.textEllipsis": "Points de suspension",
"Common.Views.SymbolTableDialog.textEmDash": "Tiret cadratin",
"Common.Views.SymbolTableDialog.textEmSpace": "Espace cadratin",
"Common.Views.SymbolTableDialog.textEnDash": "Tiret demi-cadratin",
"Common.Views.SymbolTableDialog.textEnSpace": "Espace demi-cadratin",
"Common.Views.SymbolTableDialog.textFont": "Police",
- "Common.Views.SymbolTableDialog.textNBHyphen": "tiret insécable",
+ "Common.Views.SymbolTableDialog.textNBHyphen": "Trait d’union insécable",
"Common.Views.SymbolTableDialog.textNBSpace": "Espace insécable",
- "Common.Views.SymbolTableDialog.textPilcrow": "Symbole de Paragraphe",
+ "Common.Views.SymbolTableDialog.textPilcrow": "Pied-de-mouche",
"Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Espace cadratin",
"Common.Views.SymbolTableDialog.textRange": "Plage",
"Common.Views.SymbolTableDialog.textRecent": "Caractères spéciaux récemment utilisés",
- "Common.Views.SymbolTableDialog.textRegistered": "Signe 'Enregistré'",
- "Common.Views.SymbolTableDialog.textSCQuote": "Fermer l'apostrophe",
- "Common.Views.SymbolTableDialog.textSection": "Signe de Section ",
+ "Common.Views.SymbolTableDialog.textRegistered": "Symbole de marque déposée",
+ "Common.Views.SymbolTableDialog.textSCQuote": "Guillemet simple fermant",
+ "Common.Views.SymbolTableDialog.textSection": "Paragraphe",
"Common.Views.SymbolTableDialog.textShortcut": "Touche de raccourci",
"Common.Views.SymbolTableDialog.textSHyphen": "Trait d'union conditionnel",
- "Common.Views.SymbolTableDialog.textSOQuote": "Ouvrir l'apostrophe",
+ "Common.Views.SymbolTableDialog.textSOQuote": "Guillemet simple ouvrant",
"Common.Views.SymbolTableDialog.textSpecial": "symboles spéciaux",
"Common.Views.SymbolTableDialog.textSymbols": "Symboles",
"Common.Views.SymbolTableDialog.textTitle": "Symbole",
- "Common.Views.SymbolTableDialog.textTradeMark": "Logo",
+ "Common.Views.SymbolTableDialog.textTradeMark": "Symbole de marque",
"Common.Views.UserNameDialog.textDontShow": "Ne plus me demander",
"Common.Views.UserNameDialog.textLabel": "Étiquette :",
"Common.Views.UserNameDialog.textLabelError": "L'étiquette ne peut pas être vide.",
@@ -681,8 +681,8 @@
"SSE.Controllers.DocumentHolder.textChangeColumnWidth": "Largeur de colonne {0} symboles ({1} pixels)",
"SSE.Controllers.DocumentHolder.textChangeRowHeight": "Hauteur de ligne {0} points ({1} pixels)",
"SSE.Controllers.DocumentHolder.textCtrlClick": "Cliquez sur le lien pour l'ouvrir ou cliquez et maintenez votre souris pour choisir une cellule.",
- "SSE.Controllers.DocumentHolder.textInsertLeft": "Insérer à gauche",
- "SSE.Controllers.DocumentHolder.textInsertTop": "Insérer haut",
+ "SSE.Controllers.DocumentHolder.textInsertLeft": "Insérer une colonne à gauche",
+ "SSE.Controllers.DocumentHolder.textInsertTop": "Insérer une ligne au-dessus",
"SSE.Controllers.DocumentHolder.textPasteSpecial": "Collage spécial",
"SSE.Controllers.DocumentHolder.textStopExpand": "Arrêter automatiquement ",
"SSE.Controllers.DocumentHolder.textSym": "sym",
@@ -909,6 +909,11 @@
"SSE.Controllers.Main.errorFrmlWrongReferences": "La fonction fait référence à une feuille qui n'existe pas. Veuillez vérifier les données et réessayer.",
"SSE.Controllers.Main.errorFTChangeTableRangeError": "L'opération n'a pas pu être achevée pour la plage de cellules sélectionnée. Sélectionnez une plage de telle sorte que la première ligne de la table était sur la même ligne et la table résultant chevauché l'actuel.",
"SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "L'opération n'a pas pu être achevée pour la plage de cellules sélectionnée. Sélectionnez une plage qui ne comprend pas d'autres tables.",
+ "SSE.Controllers.Main.errorInconsistentExt": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier ne correspond pas à l'extension du fichier.",
+ "SSE.Controllers.Main.errorInconsistentExtDocx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des documents texte (par exemple docx), mais le fichier a une extension incohérente : %1.",
+ "SSE.Controllers.Main.errorInconsistentExtPdf": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à l'un des formats suivants : pdf/djvu/xps/oxps, mais le fichier a l'extension incohérente : %1.",
+ "SSE.Controllers.Main.errorInconsistentExtPptx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des présentations (par exemple pptx), mais le fichier a une extension incohérente : %1.",
+ "SSE.Controllers.Main.errorInconsistentExtXlsx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des feuilles de calcul (par exemple xlsx), mais le fichier a une extension incohérente : %1.",
"SSE.Controllers.Main.errorInvalidRef": "Entrez un nom correct pour la sélection ou une référence valable à laquelle aller.",
"SSE.Controllers.Main.errorKeyEncrypt": "Descripteur de clés inconnu",
"SSE.Controllers.Main.errorKeyExpire": "Descripteur de clés expiré",
@@ -1364,12 +1369,12 @@
"SSE.Controllers.Toolbar.txtAccent_Smile": "Brève",
"SSE.Controllers.Toolbar.txtAccent_Tilde": "Tilde",
"SSE.Controllers.Toolbar.txtBracket_Angle": "Parenthèses",
- "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Parenthèses avec séparateurs",
+ "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Crochets avec séparateurs",
"SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Parenthèses avec séparateurs",
"SSE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Crochet unique",
"SSE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Crochet unique",
"SSE.Controllers.Toolbar.txtBracket_Curve": "Parenthèses",
- "SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Parenthèses avec séparateurs",
+ "SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Crochets avec séparateurs",
"SSE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Crochet unique",
"SSE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Crochet unique",
"SSE.Controllers.Toolbar.txtBracket_Custom_1": "Cas (deux conditions)",
@@ -1389,7 +1394,7 @@
"SSE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Crochet unique",
"SSE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Crochet unique",
"SSE.Controllers.Toolbar.txtBracket_Round": "Parenthèses",
- "SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Parenthèses avec séparateurs",
+ "SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Crochets avec séparateurs",
"SSE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Crochet unique",
"SSE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Crochet unique",
"SSE.Controllers.Toolbar.txtBracket_Square": "Parenthèses",
@@ -1445,6 +1450,7 @@
"SSE.Controllers.Toolbar.txtFunction_Tanh": "Fonction tangente hyperbolique",
"SSE.Controllers.Toolbar.txtGroupCell_Custom": "Personnalisé",
"SSE.Controllers.Toolbar.txtGroupCell_DataAndModel": "Données et modèle",
+ "SSE.Controllers.Toolbar.txtGroupCell_GoodBadAndNeutral": "Satisfaisant, insatisfaisant et neutre",
"SSE.Controllers.Toolbar.txtGroupCell_NoName": "Sans nom",
"SSE.Controllers.Toolbar.txtGroupCell_NumberFormat": "Format de nombre",
"SSE.Controllers.Toolbar.txtGroupCell_ThemedCallStyles": "Styles de cellule à thème",
@@ -1670,7 +1676,7 @@
"SSE.Controllers.Toolbar.txtSymbol_vdots": "Ellipse verticale",
"SSE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
"SSE.Controllers.Toolbar.txtSymbol_zeta": "Zêta",
- "SSE.Controllers.Toolbar.txtTable_TableStyleDark": "Style de tableau foncé",
+ "SSE.Controllers.Toolbar.txtTable_TableStyleDark": "Style de tableau sombre",
"SSE.Controllers.Toolbar.txtTable_TableStyleLight": "Style de tableau clair",
"SSE.Controllers.Toolbar.txtTable_TableStyleMedium": "Style de tableau moyen",
"SSE.Controllers.Toolbar.warnLongOperation": "L'opération que vous êtes sur le point d'effectuer peut prendre beaucoup de temps. Êtes-vous sûr de vouloir continuer ?",
@@ -1690,7 +1696,7 @@
"SSE.Views.AutoFilterDialog.textAddSelection": "Ajouter la sélection actuelle pour filtrer",
"SSE.Views.AutoFilterDialog.textEmptyItem": "{Vides}",
"SSE.Views.AutoFilterDialog.textSelectAll": "Sélectionner tout",
- "SSE.Views.AutoFilterDialog.textSelectAllResults": "Sélectionnez tous les résultats de la recherche",
+ "SSE.Views.AutoFilterDialog.textSelectAllResults": "Sélectionner tous les résultats de la recherche",
"SSE.Views.AutoFilterDialog.textWarning": "Avertissement",
"SSE.Views.AutoFilterDialog.txtAboveAve": "Au dessus de la moyenne",
"SSE.Views.AutoFilterDialog.txtBegins": "Commence par...",
@@ -1790,15 +1796,15 @@
"SSE.Views.ChartDataDialog.errorNoValues": "Pour créer un graphique, les séries doivent contenir une valeur au minimum.",
"SSE.Views.ChartDataDialog.errorStockChart": "Ordre des lignes est incorrect. Pour créer un graphique boursier organisez vos données sur la feuille de calcul dans l'ordre suivant: cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.",
"SSE.Views.ChartDataDialog.textAdd": "Ajouter",
- "SSE.Views.ChartDataDialog.textCategory": "Nom de l'axe horizontal ",
+ "SSE.Views.ChartDataDialog.textCategory": "Étiquettes de l'axe horizontal (abscisse)",
"SSE.Views.ChartDataDialog.textData": "Plage de données du graphique",
"SSE.Views.ChartDataDialog.textDelete": "Supprimer",
"SSE.Views.ChartDataDialog.textDown": "Bas",
"SSE.Views.ChartDataDialog.textEdit": "Modifier",
"SSE.Views.ChartDataDialog.textInvalidRange": "Plage de cellules non valide",
"SSE.Views.ChartDataDialog.textSelectData": "Sélectionner des données",
- "SSE.Views.ChartDataDialog.textSeries": "Série de la légende",
- "SSE.Views.ChartDataDialog.textSwitch": "Changer de ligne ou de colonne",
+ "SSE.Views.ChartDataDialog.textSeries": "Entrées de légende (série)",
+ "SSE.Views.ChartDataDialog.textSwitch": "Intervertir ligne/colonne",
"SSE.Views.ChartDataDialog.textTitle": "Données du graphique",
"SSE.Views.ChartDataDialog.textUp": "En haut",
"SSE.Views.ChartDataRangeDialog.errorInFormula": "La formule que vous avez saisi contient une erreure.",
@@ -1813,7 +1819,7 @@
"SSE.Views.ChartDataRangeDialog.txtAxisLabel": "Plage de données de l'étiquette de l'axe",
"SSE.Views.ChartDataRangeDialog.txtChoose": "Choisir la plage de données",
"SSE.Views.ChartDataRangeDialog.txtSeriesName": "Nom de la série",
- "SSE.Views.ChartDataRangeDialog.txtTitleCategory": "Etiquettes de l'axe",
+ "SSE.Views.ChartDataRangeDialog.txtTitleCategory": "Étiquettes de l'axe",
"SSE.Views.ChartDataRangeDialog.txtTitleSeries": "Modifier la série",
"SSE.Views.ChartDataRangeDialog.txtValues": "Valeurs",
"SSE.Views.ChartDataRangeDialog.txtXValues": "Valeurs X",
@@ -1867,27 +1873,27 @@
"SSE.Views.ChartSettingsDlg.textAltTip": "La représentation textuelle des informations sur l’objet visuel, qui sera lue aux personnes avec des déficiences cognitives ou visuelles pour les aider à mieux comprendre le contenu de l’image, de la forme automatique, du graphique ou du tableau.",
"SSE.Views.ChartSettingsDlg.textAltTitle": "Titre",
"SSE.Views.ChartSettingsDlg.textAuto": "Auto",
- "SSE.Views.ChartSettingsDlg.textAutoEach": "Automatique pour chaque",
- "SSE.Views.ChartSettingsDlg.textAxisCrosses": "Intersection de l'axe",
- "SSE.Views.ChartSettingsDlg.textAxisOptions": "Options d'axe",
+ "SSE.Views.ChartSettingsDlg.textAutoEach": "Automatique pour chacune",
+ "SSE.Views.ChartSettingsDlg.textAxisCrosses": "Croisement de l'axe",
+ "SSE.Views.ChartSettingsDlg.textAxisOptions": "Options de l'axe",
"SSE.Views.ChartSettingsDlg.textAxisPos": "Position de l'axe",
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Paramètres de l’axe",
"SSE.Views.ChartSettingsDlg.textAxisTitle": "Titre",
"SSE.Views.ChartSettingsDlg.textBase": "Base",
- "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Entre graduations",
+ "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Entre les divisions",
"SSE.Views.ChartSettingsDlg.textBillions": "Milliards",
"SSE.Views.ChartSettingsDlg.textBottom": "En bas",
- "SSE.Views.ChartSettingsDlg.textCategoryName": "Nom de la catégorie",
+ "SSE.Views.ChartSettingsDlg.textCategoryName": "Nom de catégorie",
"SSE.Views.ChartSettingsDlg.textCenter": "Au centre",
- "SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Éléments de graphique, légende de graphique",
+ "SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Éléments du graphique & Légende du graphique",
"SSE.Views.ChartSettingsDlg.textChartTitle": "Titre du graphique",
"SSE.Views.ChartSettingsDlg.textCross": "Sur l'axe",
"SSE.Views.ChartSettingsDlg.textCustom": "Personnalisé",
"SSE.Views.ChartSettingsDlg.textDataColumns": "en colonnes",
"SSE.Views.ChartSettingsDlg.textDataLabels": "Étiquettes de données",
"SSE.Views.ChartSettingsDlg.textDataRows": "en lignes",
- "SSE.Views.ChartSettingsDlg.textDisplayLegend": "Afficher une légende",
- "SSE.Views.ChartSettingsDlg.textEmptyCells": "Cellules masquées et cellules vides",
+ "SSE.Views.ChartSettingsDlg.textDisplayLegend": "Afficher la légende",
+ "SSE.Views.ChartSettingsDlg.textEmptyCells": "Cellules masquées et vides",
"SSE.Views.ChartSettingsDlg.textEmptyLine": "Relier les points de données par une courbe",
"SSE.Views.ChartSettingsDlg.textFit": "Ajuster à la largeur",
"SSE.Views.ChartSettingsDlg.textFixed": "Fixé",
@@ -1899,22 +1905,22 @@
"SSE.Views.ChartSettingsDlg.textHideAxis": "Masquer l'axe",
"SSE.Views.ChartSettingsDlg.textHigh": "Haut",
"SSE.Views.ChartSettingsDlg.textHorAxis": "Axe horizontal",
- "SSE.Views.ChartSettingsDlg.textHorAxisSec": "Second axe horizontal",
+ "SSE.Views.ChartSettingsDlg.textHorAxisSec": "Axe horizontal secondaire",
"SSE.Views.ChartSettingsDlg.textHorizontal": "Horizontal",
"SSE.Views.ChartSettingsDlg.textHundredMil": "100 000 000",
"SSE.Views.ChartSettingsDlg.textHundreds": "Centaines",
"SSE.Views.ChartSettingsDlg.textHundredThousands": "100 000",
"SSE.Views.ChartSettingsDlg.textIn": "Dans",
"SSE.Views.ChartSettingsDlg.textInnerBottom": "En bas à l'intérieur",
- "SSE.Views.ChartSettingsDlg.textInnerTop": "En haut à l'intérieur",
+ "SSE.Views.ChartSettingsDlg.textInnerTop": "À l'intérieur du haut",
"SSE.Views.ChartSettingsDlg.textInvalidRange": "ERREUR! Plage de cellules non valide",
"SSE.Views.ChartSettingsDlg.textLabelDist": "Distance de l'étiquette de l'axe",
"SSE.Views.ChartSettingsDlg.textLabelInterval": "Intervalle entre les étiquettes",
- "SSE.Views.ChartSettingsDlg.textLabelOptions": "Options d'étiquettes",
- "SSE.Views.ChartSettingsDlg.textLabelPos": "Position de l'étiquette",
+ "SSE.Views.ChartSettingsDlg.textLabelOptions": "Options d'étiquette",
+ "SSE.Views.ChartSettingsDlg.textLabelPos": "Position d'étiquette",
"SSE.Views.ChartSettingsDlg.textLayout": "Mise en page",
"SSE.Views.ChartSettingsDlg.textLeft": "À gauche",
- "SSE.Views.ChartSettingsDlg.textLeftOverlay": "Superposition à gauche",
+ "SSE.Views.ChartSettingsDlg.textLeftOverlay": "Superposition gauche",
"SSE.Views.ChartSettingsDlg.textLegendBottom": "En bas",
"SSE.Views.ChartSettingsDlg.textLegendLeft": "À gauche",
"SSE.Views.ChartSettingsDlg.textLegendPos": "Légende",
@@ -1925,7 +1931,7 @@
"SSE.Views.ChartSettingsDlg.textLogScale": "Échelle logarithmique",
"SSE.Views.ChartSettingsDlg.textLow": "En bas",
"SSE.Views.ChartSettingsDlg.textMajor": "Principaux",
- "SSE.Views.ChartSettingsDlg.textMajorMinor": "Principaux et secondaires ",
+ "SSE.Views.ChartSettingsDlg.textMajorMinor": "Principales et secondaires ",
"SSE.Views.ChartSettingsDlg.textMajorType": "Type principal",
"SSE.Views.ChartSettingsDlg.textManual": "Manuellement",
"SSE.Views.ChartSettingsDlg.textMarkers": "Marqueurs",
@@ -1933,22 +1939,22 @@
"SSE.Views.ChartSettingsDlg.textMaxValue": "Valeur maximale",
"SSE.Views.ChartSettingsDlg.textMillions": "Millions",
"SSE.Views.ChartSettingsDlg.textMinor": "Secondaires",
- "SSE.Views.ChartSettingsDlg.textMinorType": "Type secondaire",
+ "SSE.Views.ChartSettingsDlg.textMinorType": "Type mineur",
"SSE.Views.ChartSettingsDlg.textMinValue": "Valeur minimale",
"SSE.Views.ChartSettingsDlg.textNextToAxis": "À côté de l'axe",
"SSE.Views.ChartSettingsDlg.textNone": "Rien",
- "SSE.Views.ChartSettingsDlg.textNoOverlay": "Sans superposition",
+ "SSE.Views.ChartSettingsDlg.textNoOverlay": "Pas de superposition",
"SSE.Views.ChartSettingsDlg.textOneCell": "Déplacer sans dimensionner avec les cellules",
"SSE.Views.ChartSettingsDlg.textOnTickMarks": "Graduations",
"SSE.Views.ChartSettingsDlg.textOut": "A l'extérieur",
- "SSE.Views.ChartSettingsDlg.textOuterTop": "En haut à l'extérieur",
+ "SSE.Views.ChartSettingsDlg.textOuterTop": "En dehors du haut",
"SSE.Views.ChartSettingsDlg.textOverlay": "Superposition",
"SSE.Views.ChartSettingsDlg.textReverse": "Valeurs en ordre inverse",
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Inverser l’ordre",
"SSE.Views.ChartSettingsDlg.textRight": "À droite",
- "SSE.Views.ChartSettingsDlg.textRightOverlay": "Superposition à droite",
+ "SSE.Views.ChartSettingsDlg.textRightOverlay": "Superposition droite",
"SSE.Views.ChartSettingsDlg.textRotated": "Incliné",
- "SSE.Views.ChartSettingsDlg.textSameAll": "La même pour tous",
+ "SSE.Views.ChartSettingsDlg.textSameAll": "Identique pour tout",
"SSE.Views.ChartSettingsDlg.textSelectData": "Sélectionner des données",
"SSE.Views.ChartSettingsDlg.textSeparator": "Séparateur des étiquettes de données",
"SSE.Views.ChartSettingsDlg.textSeriesName": "Nom de série",
@@ -1960,7 +1966,7 @@
"SSE.Views.ChartSettingsDlg.textShowValues": "Afficher les valeurs du graphique",
"SSE.Views.ChartSettingsDlg.textSingle": "Sparkline unique",
"SSE.Views.ChartSettingsDlg.textSmooth": "Lisse",
- "SSE.Views.ChartSettingsDlg.textSnap": "Alignement dans une cellule",
+ "SSE.Views.ChartSettingsDlg.textSnap": "Claquage des cellules",
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Plage de graphiques sparklines",
"SSE.Views.ChartSettingsDlg.textStraight": "Droit",
"SSE.Views.ChartSettingsDlg.textStyle": "Style",
@@ -1969,7 +1975,7 @@
"SSE.Views.ChartSettingsDlg.textThousands": "Milliers",
"SSE.Views.ChartSettingsDlg.textTickOptions": "Options de graduations",
"SSE.Views.ChartSettingsDlg.textTitle": "Graphique - Paramètres avancés",
- "SSE.Views.ChartSettingsDlg.textTitleSparkline": "Graphique sparkline-Paramètres avancés",
+ "SSE.Views.ChartSettingsDlg.textTitleSparkline": "Graphique sparkline - Paramètres avancés",
"SSE.Views.ChartSettingsDlg.textTop": "En haut",
"SSE.Views.ChartSettingsDlg.textTrillions": "Trillions",
"SSE.Views.ChartSettingsDlg.textTwoCell": "Déplacer et dimensionner avec des cellules",
@@ -1978,9 +1984,9 @@
"SSE.Views.ChartSettingsDlg.textUnits": "Unités d'affichage",
"SSE.Views.ChartSettingsDlg.textValue": "Valeur",
"SSE.Views.ChartSettingsDlg.textVertAxis": "Axe vertical",
- "SSE.Views.ChartSettingsDlg.textVertAxisSec": "Second axe vertical",
- "SSE.Views.ChartSettingsDlg.textXAxisTitle": "Titre de l'axe X",
- "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Titre de l'axe Y",
+ "SSE.Views.ChartSettingsDlg.textVertAxisSec": "Axe vertical secondaire",
+ "SSE.Views.ChartSettingsDlg.textXAxisTitle": "Titre axe X",
+ "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Titre axe Y",
"SSE.Views.ChartSettingsDlg.textZero": "Valeur nulle",
"SSE.Views.ChartSettingsDlg.txtEmpty": "Ce champ est obligatoire",
"SSE.Views.ChartTypeDialog.errorComboSeries": "Pour créer un graphique combiné, sélectionnez au moins deux séries de données. ",
@@ -2012,14 +2018,14 @@
"SSE.Views.DataTab.capBtnUngroup": "Dissocier",
"SSE.Views.DataTab.capDataExternalLinks": "Liens externes",
"SSE.Views.DataTab.capDataFromText": "Obtenir les données",
- "SSE.Views.DataTab.mniFromFile": "A partir du fuchier local TXT/CSV",
- "SSE.Views.DataTab.mniFromUrl": "A partir de l'URL du fichier TXT/CSV",
+ "SSE.Views.DataTab.mniFromFile": "À partir du fichier local TXT/CSV",
+ "SSE.Views.DataTab.mniFromUrl": "À partir de l'URL du fichier TXT/CSV",
"SSE.Views.DataTab.textBelow": "Lignes de synthèse sous les lignes de détail",
"SSE.Views.DataTab.textClear": "Effacer le plan",
"SSE.Views.DataTab.textColumns": "Dissocier les colonnes",
"SSE.Views.DataTab.textGroupColumns": "Grouper les colonnes",
"SSE.Views.DataTab.textGroupRows": "Grouper les lignes",
- "SSE.Views.DataTab.textRightOf": "Colonnes de synthèse à droite des colonnes de détail",
+ "SSE.Views.DataTab.textRightOf": "Colonnes de synthèse à droite du détail",
"SSE.Views.DataTab.textRows": "Dissocier les lignes",
"SSE.Views.DataTab.tipCustomSort": "Tri personnalisé",
"SSE.Views.DataTab.tipDataFromText": "Récupérer les données à partir d’un fichier texte/CSV",
@@ -2040,8 +2046,8 @@
"SSE.Views.DataValidationDialog.errorNamedRange": "La plage nommée que vous avez spécifiée est introuvable.",
"SSE.Views.DataValidationDialog.errorNegativeTextLength": "Les valeurs négatives ne peuvent pas être utilisées dans les conditions \"{0}\".",
"SSE.Views.DataValidationDialog.errorNotNumeric": "Le champ \"{0}\" doit contenir une valeur numérique, une expression numérique, ou se référer à une cellule contenant une valeur numérique.",
- "SSE.Views.DataValidationDialog.strError": "Avertissement d'erreur",
- "SSE.Views.DataValidationDialog.strInput": "Entrer le message",
+ "SSE.Views.DataValidationDialog.strError": "Alerte d'erreur",
+ "SSE.Views.DataValidationDialog.strInput": "Message de saisie",
"SSE.Views.DataValidationDialog.strSettings": "Paramètres",
"SSE.Views.DataValidationDialog.textAlert": "Alerte",
"SSE.Views.DataValidationDialog.textAllow": "Autoriser",
@@ -2051,10 +2057,10 @@
"SSE.Views.DataValidationDialog.textData": "Données",
"SSE.Views.DataValidationDialog.textEndDate": "Date limite",
"SSE.Views.DataValidationDialog.textEndTime": "Heure de fin",
- "SSE.Views.DataValidationDialog.textError": "Message d’erreur",
+ "SSE.Views.DataValidationDialog.textError": "Message d'erreur",
"SSE.Views.DataValidationDialog.textFormula": "Formule",
"SSE.Views.DataValidationDialog.textIgnore": "Ignorer les espaces vides",
- "SSE.Views.DataValidationDialog.textInput": "Entrer le message",
+ "SSE.Views.DataValidationDialog.textInput": "Message de saisie",
"SSE.Views.DataValidationDialog.textMax": "Maximum",
"SSE.Views.DataValidationDialog.textMessage": "Message",
"SSE.Views.DataValidationDialog.textMin": "Minimum",
@@ -2110,15 +2116,20 @@
"SSE.Views.DigitalFilterDialog.textUse1": "Utilisez ? pour représenter un seul caractère",
"SSE.Views.DigitalFilterDialog.textUse2": "Utilisez * pour présenter une série de caractères",
"SSE.Views.DigitalFilterDialog.txtTitle": "Filtre personnalisé",
+ "SSE.Views.DocumentHolder.advancedEquationText": "Paramètres d'équations",
"SSE.Views.DocumentHolder.advancedImgText": "Paramètres avancés de l'image",
"SSE.Views.DocumentHolder.advancedShapeText": "Paramètres avancés de la forme",
"SSE.Views.DocumentHolder.advancedSlicerText": "Paramètres avancés du segment",
+ "SSE.Views.DocumentHolder.allLinearText": "Toutes - Linéaire",
+ "SSE.Views.DocumentHolder.allProfText": "Toutes - Professionnel",
"SSE.Views.DocumentHolder.bottomCellText": "Aligner en bas",
"SSE.Views.DocumentHolder.bulletsText": "Puces et Numéros",
"SSE.Views.DocumentHolder.centerCellText": "Aligner au centre",
"SSE.Views.DocumentHolder.chartDataText": "Sélectionner les données du graphique",
"SSE.Views.DocumentHolder.chartText": "Paramètres du graphique avancés",
"SSE.Views.DocumentHolder.chartTypeText": "Modifier le type de graphique",
+ "SSE.Views.DocumentHolder.currLinearText": "Actuelles - Linéaire",
+ "SSE.Views.DocumentHolder.currProfText": "Actuelles - Professionnel",
"SSE.Views.DocumentHolder.deleteColumnText": "Colonne",
"SSE.Views.DocumentHolder.deleteRowText": "Ligne",
"SSE.Views.DocumentHolder.deleteTableText": "Tableau",
@@ -2132,6 +2143,7 @@
"SSE.Views.DocumentHolder.insertColumnRightText": "Colonne à droite",
"SSE.Views.DocumentHolder.insertRowAboveText": "Ligne au-dessus",
"SSE.Views.DocumentHolder.insertRowBelowText": "Ligne en dessous",
+ "SSE.Views.DocumentHolder.latexText": "LaTeX",
"SSE.Views.DocumentHolder.originalSizeText": "Taille actuelle",
"SSE.Views.DocumentHolder.removeHyperlinkText": "Supprimer le lien hypertexte",
"SSE.Views.DocumentHolder.selectColumnText": "Colonne entière",
@@ -2196,21 +2208,21 @@
"SSE.Views.DocumentHolder.topCellText": "Aligner en haut",
"SSE.Views.DocumentHolder.txtAccounting": "Comptabilité",
"SSE.Views.DocumentHolder.txtAddComment": "Ajouter un commentaire",
- "SSE.Views.DocumentHolder.txtAddNamedRange": "Définir un nom",
+ "SSE.Views.DocumentHolder.txtAddNamedRange": "Définir le nom",
"SSE.Views.DocumentHolder.txtArrange": "Organiser",
"SSE.Views.DocumentHolder.txtAscending": "Croissant",
- "SSE.Views.DocumentHolder.txtAutoColumnWidth": "Ajustement automatique de largeur de colonne",
- "SSE.Views.DocumentHolder.txtAutoRowHeight": "Ajustement automatique de hauteur de ligne",
+ "SSE.Views.DocumentHolder.txtAutoColumnWidth": "Ajuster automatiquement la largeur des colonnes",
+ "SSE.Views.DocumentHolder.txtAutoRowHeight": "Ajuster automatiquement la hauteur des lignes",
"SSE.Views.DocumentHolder.txtClear": "Effacer",
"SSE.Views.DocumentHolder.txtClearAll": "Tout",
"SSE.Views.DocumentHolder.txtClearComments": "Commentaires",
"SSE.Views.DocumentHolder.txtClearFormat": "Format",
"SSE.Views.DocumentHolder.txtClearHyper": "Liens hypertextes",
- "SSE.Views.DocumentHolder.txtClearSparklineGroups": "Supprimer les groupes de graphiques sparkline sélectionnés",
- "SSE.Views.DocumentHolder.txtClearSparklines": "Supprimer les graphiques sparkline sélectionnés",
+ "SSE.Views.DocumentHolder.txtClearSparklineGroups": "Effacer les groupes de sparklines sélectionnés",
+ "SSE.Views.DocumentHolder.txtClearSparklines": "Supprimer les graphiques sparklines sélectionnés",
"SSE.Views.DocumentHolder.txtClearText": "Texte",
"SSE.Views.DocumentHolder.txtColumn": "Colonne entière",
- "SSE.Views.DocumentHolder.txtColumnWidth": "Définir la largeur de colonne",
+ "SSE.Views.DocumentHolder.txtColumnWidth": "Définir la largeur de la colonne",
"SSE.Views.DocumentHolder.txtCondFormat": "Mise en forme conditionnelle",
"SSE.Views.DocumentHolder.txtCopy": "Copier",
"SSE.Views.DocumentHolder.txtCurrency": "Monétaire",
@@ -2223,7 +2235,7 @@
"SSE.Views.DocumentHolder.txtDescending": "Décroissant",
"SSE.Views.DocumentHolder.txtDistribHor": "Distribuer horizontalement",
"SSE.Views.DocumentHolder.txtDistribVert": "Distribuer verticalement",
- "SSE.Views.DocumentHolder.txtEditComment": "Modifier commentaire",
+ "SSE.Views.DocumentHolder.txtEditComment": "Modifier le commentaire",
"SSE.Views.DocumentHolder.txtFilter": "Filtre",
"SSE.Views.DocumentHolder.txtFilterCellColor": "Filtrer par couleur des cellules",
"SSE.Views.DocumentHolder.txtFilterFontColor": "Filtrer par couleur de police",
@@ -2241,6 +2253,7 @@
"SSE.Views.DocumentHolder.txtPaste": "Coller",
"SSE.Views.DocumentHolder.txtPercentage": "Pourcentage",
"SSE.Views.DocumentHolder.txtReapply": "Appliquer à nouveau",
+ "SSE.Views.DocumentHolder.txtRefresh": "Actualiser",
"SSE.Views.DocumentHolder.txtRow": "Ligne entière",
"SSE.Views.DocumentHolder.txtRowHeight": "Définir la hauteur de ligne",
"SSE.Views.DocumentHolder.txtScientific": "Scientifique",
@@ -2253,13 +2266,14 @@
"SSE.Views.DocumentHolder.txtShowComment": "Afficher le commentaire",
"SSE.Views.DocumentHolder.txtSort": "Trier",
"SSE.Views.DocumentHolder.txtSortCellColor": "Couleur sélectionnée de cellules sur le dessus",
- "SSE.Views.DocumentHolder.txtSortFontColor": "Couleur sélectionné de la police sur le dessus",
+ "SSE.Views.DocumentHolder.txtSortFontColor": "Couleur de police sélectionnée sur le dessus",
"SSE.Views.DocumentHolder.txtSparklines": "Graphiques sparkline",
"SSE.Views.DocumentHolder.txtText": "Texte",
- "SSE.Views.DocumentHolder.txtTextAdvanced": "Paramètres avancés du paragraphe",
+ "SSE.Views.DocumentHolder.txtTextAdvanced": "Paramètres avancés de paragraphe",
"SSE.Views.DocumentHolder.txtTime": "Heure",
"SSE.Views.DocumentHolder.txtUngroup": "Dissocier",
"SSE.Views.DocumentHolder.txtWidth": "Largeur",
+ "SSE.Views.DocumentHolder.unicodeText": "Unicode",
"SSE.Views.DocumentHolder.vertAlignText": "Alignement vertical",
"SSE.Views.ExternalLinksDlg.closeButtonText": "Fermer",
"SSE.Views.ExternalLinksDlg.textDelete": "Rompre les liaisons",
@@ -2271,7 +2285,7 @@
"SSE.Views.FieldSettingsDialog.strLayout": "Mise en page",
"SSE.Views.FieldSettingsDialog.strSubtotals": "Sous-totaux",
"SSE.Views.FieldSettingsDialog.textReport": "Formulaire de rapport ",
- "SSE.Views.FieldSettingsDialog.textTitle": "Paramètres de champ",
+ "SSE.Views.FieldSettingsDialog.textTitle": "Paramètres de champs",
"SSE.Views.FieldSettingsDialog.txtAverage": "Moyenne",
"SSE.Views.FieldSettingsDialog.txtBlank": "Insérer une ligne vide après chaque élément",
"SSE.Views.FieldSettingsDialog.txtBottom": "Afficher en bas du groupe",
@@ -2290,7 +2304,7 @@
"SSE.Views.FieldSettingsDialog.txtStdDev": "Écartype",
"SSE.Views.FieldSettingsDialog.txtStdDevp": "StdDevp",
"SSE.Views.FieldSettingsDialog.txtSum": "Somme",
- "SSE.Views.FieldSettingsDialog.txtSummarize": "Fonctions pour sous-totaux",
+ "SSE.Views.FieldSettingsDialog.txtSummarize": "Fonctions pour les sous-totaux",
"SSE.Views.FieldSettingsDialog.txtTabular": "Tabulaire",
"SSE.Views.FieldSettingsDialog.txtTop": "Afficher en haut du groupe",
"SSE.Views.FieldSettingsDialog.txtVar": "Var",
@@ -2441,17 +2455,17 @@
"SSE.Views.FormatRulesEditDlg.fillColor": "Couleur de remplissage",
"SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Avertissement",
"SSE.Views.FormatRulesEditDlg.text2Scales": "Échelle à deux couleurs",
- "SSE.Views.FormatRulesEditDlg.text3Scales": "Echelle à trois couleurs",
+ "SSE.Views.FormatRulesEditDlg.text3Scales": "Échelle à trois couleurs",
"SSE.Views.FormatRulesEditDlg.textAllBorders": "Toutes les bordures",
"SSE.Views.FormatRulesEditDlg.textAppearance": "Apparence de la barre",
- "SSE.Views.FormatRulesEditDlg.textApply": "Appliquer à une plage",
+ "SSE.Views.FormatRulesEditDlg.textApply": "Appliquer à la plage",
"SSE.Views.FormatRulesEditDlg.textAutomatic": "Automatique",
"SSE.Views.FormatRulesEditDlg.textAxis": "Axe",
"SSE.Views.FormatRulesEditDlg.textBarDirection": "Direction de la barre",
"SSE.Views.FormatRulesEditDlg.textBold": "Gras",
"SSE.Views.FormatRulesEditDlg.textBorder": "Bordure",
- "SSE.Views.FormatRulesEditDlg.textBordersColor": "Couleur de la bordure",
- "SSE.Views.FormatRulesEditDlg.textBordersStyle": "Style de la bordure",
+ "SSE.Views.FormatRulesEditDlg.textBordersColor": "Couleur des bordures",
+ "SSE.Views.FormatRulesEditDlg.textBordersStyle": "Style de bordure",
"SSE.Views.FormatRulesEditDlg.textBottomBorders": "Bordures inférieures",
"SSE.Views.FormatRulesEditDlg.textCannotAddCF": "Impossible d'ajouter la mise en forme conditionnelle",
"SSE.Views.FormatRulesEditDlg.textCellMidpoint": "Milieu de cellule",
@@ -2460,8 +2474,8 @@
"SSE.Views.FormatRulesEditDlg.textColor": "Couleur du texte",
"SSE.Views.FormatRulesEditDlg.textContext": "Contexte",
"SSE.Views.FormatRulesEditDlg.textCustom": "Personnalisé",
- "SSE.Views.FormatRulesEditDlg.textDiagDownBorder": "Bordure diagonale vers le bas",
- "SSE.Views.FormatRulesEditDlg.textDiagUpBorder": "Bordure diagonale vers le haut",
+ "SSE.Views.FormatRulesEditDlg.textDiagDownBorder": "Bordure diagonale bas",
+ "SSE.Views.FormatRulesEditDlg.textDiagUpBorder": "Bordure diagonale haut",
"SSE.Views.FormatRulesEditDlg.textEmptyFormula": "Saissiez la fonction valide.",
"SSE.Views.FormatRulesEditDlg.textEmptyFormulaExt": "La formule entrée ne donne pas un nombre, une date, une heure ou une chaîne.",
"SSE.Views.FormatRulesEditDlg.textEmptyText": "Sasissez une valeur.",
@@ -2492,8 +2506,8 @@
"SSE.Views.FormatRulesEditDlg.textMinimum": "Minimum",
"SSE.Views.FormatRulesEditDlg.textMinpoint": "Valeur minimum",
"SSE.Views.FormatRulesEditDlg.textNegative": "Négatif",
- "SSE.Views.FormatRulesEditDlg.textNewColor": "Couleur personnalisée",
- "SSE.Views.FormatRulesEditDlg.textNoBorders": "Pas de bordures",
+ "SSE.Views.FormatRulesEditDlg.textNewColor": "Ajouter une nouvelle couleur personnalisée",
+ "SSE.Views.FormatRulesEditDlg.textNoBorders": "Aucune bordure",
"SSE.Views.FormatRulesEditDlg.textNone": "Rien",
"SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "Une ou plusieurs valeurs spécifiées ne correspondent pas à un pourcentage valide.",
"SSE.Views.FormatRulesEditDlg.textNotValidPercentageExt": "La valeur spécifiée {0} n'est pas un pourcentage valide.",
@@ -2537,7 +2551,7 @@
"SSE.Views.FormatRulesEditDlg.txtScientific": "Scientifique",
"SSE.Views.FormatRulesEditDlg.txtText": "Texte",
"SSE.Views.FormatRulesEditDlg.txtTime": "Heure",
- "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Modifier les règles de la mise en forme",
+ "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Modifier la règle de mise en forme",
"SSE.Views.FormatRulesEditDlg.txtTitleNew": "Nouvelle règle de mise en forme",
"SSE.Views.FormatRulesManagerDlg.guestText": "Invité",
"SSE.Views.FormatRulesManagerDlg.lockText": "Verrouillé",
@@ -2632,7 +2646,7 @@
"SSE.Views.FormulaTab.txtFormula": "Fonction",
"SSE.Views.FormulaTab.txtFormulaTip": "Insérer une fonction",
"SSE.Views.FormulaTab.txtMore": "Plus de fonctions",
- "SSE.Views.FormulaTab.txtRecent": "Récemment utilisé",
+ "SSE.Views.FormulaTab.txtRecent": "Récemment utilisés",
"SSE.Views.FormulaTab.txtWatch": "Fenêtre Espions",
"SSE.Views.FormulaWizard.textAny": "N'importe quel",
"SSE.Views.FormulaWizard.textArgument": "Argument",
@@ -2644,7 +2658,7 @@
"SSE.Views.FormulaWizard.textNumber": "Numéro",
"SSE.Views.FormulaWizard.textRef": "Référence",
"SSE.Views.FormulaWizard.textText": "Texte",
- "SSE.Views.FormulaWizard.textTitle": "Argument de formule",
+ "SSE.Views.FormulaWizard.textTitle": "Arguments de la fonction",
"SSE.Views.FormulaWizard.textValue": "Résultat d'une formule ",
"SSE.Views.HeaderFooterDialog.textAlign": "Aligner sur les marges de page",
"SSE.Views.HeaderFooterDialog.textAll": "Toutes les pages",
@@ -2663,7 +2677,7 @@
"SSE.Views.HeaderFooterDialog.textItalic": "Italique",
"SSE.Views.HeaderFooterDialog.textLeft": "À gauche",
"SSE.Views.HeaderFooterDialog.textMaxError": "La chaîne de texte que vous avez saisie est trop longue. Réduisez le nombre de caractères.",
- "SSE.Views.HeaderFooterDialog.textNewColor": "Couleur personnalisée",
+ "SSE.Views.HeaderFooterDialog.textNewColor": "Ajouter une nouvelle couleur personnalisée",
"SSE.Views.HeaderFooterDialog.textOdd": "Page impaire",
"SSE.Views.HeaderFooterDialog.textPageCount": "Compteur de page",
"SSE.Views.HeaderFooterDialog.textPageNum": "Numéro de page",
@@ -2675,7 +2689,7 @@
"SSE.Views.HeaderFooterDialog.textSubscript": "Indice",
"SSE.Views.HeaderFooterDialog.textSuperscript": "Exposant",
"SSE.Views.HeaderFooterDialog.textTime": "Heure",
- "SSE.Views.HeaderFooterDialog.textTitle": "Paramètres des en-têtes/pieds de page",
+ "SSE.Views.HeaderFooterDialog.textTitle": "Paramètres de l'en-tête/du pied de page",
"SSE.Views.HeaderFooterDialog.textUnderline": "Souligné",
"SSE.Views.HeaderFooterDialog.tipFontName": "Police",
"SSE.Views.HeaderFooterDialog.tipFontSize": "Taille de la police",
@@ -2690,13 +2704,13 @@
"SSE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Entrez une info-bulle ici",
"SSE.Views.HyperlinkSettingsDialog.textExternalLink": "Lien externe",
"SSE.Views.HyperlinkSettingsDialog.textGetLink": "Obtenir le lien",
- "SSE.Views.HyperlinkSettingsDialog.textInternalLink": "Plage de données interne",
+ "SSE.Views.HyperlinkSettingsDialog.textInternalLink": "Plage de données internes",
"SSE.Views.HyperlinkSettingsDialog.textInvalidRange": "ERREUR! La plage de cellules non valide",
"SSE.Views.HyperlinkSettingsDialog.textNames": "Les noms définis",
"SSE.Views.HyperlinkSettingsDialog.textSelectData": "Sélectionner des données",
"SSE.Views.HyperlinkSettingsDialog.textSheets": "Feuilles de calcul",
- "SSE.Views.HyperlinkSettingsDialog.textTipText": "Texte de l'info-bulle ",
- "SSE.Views.HyperlinkSettingsDialog.textTitle": "Paramètres du lien hypertexte",
+ "SSE.Views.HyperlinkSettingsDialog.textTipText": "Texte de l'info-bulle",
+ "SSE.Views.HyperlinkSettingsDialog.textTitle": "Paramètres des liens hypertextes",
"SSE.Views.HyperlinkSettingsDialog.txtEmpty": "Ce champ est obligatoire",
"SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"",
"SSE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Ce champ est limité à 2083 caractères.",
@@ -2734,7 +2748,7 @@
"SSE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontalement",
"SSE.Views.ImageSettingsAdvanced.textOneCell": "Déplacer sans dimensionner avec les cellules",
"SSE.Views.ImageSettingsAdvanced.textRotation": "Rotation",
- "SSE.Views.ImageSettingsAdvanced.textSnap": "Alignement dans une cellule",
+ "SSE.Views.ImageSettingsAdvanced.textSnap": "Claquage des cellules",
"SSE.Views.ImageSettingsAdvanced.textTitle": "Image - Paramètres avancés",
"SSE.Views.ImageSettingsAdvanced.textTwoCell": "Déplacer et dimensionner avec des cellules",
"SSE.Views.ImageSettingsAdvanced.textVertically": "Verticalement",
@@ -2795,7 +2809,7 @@
"SSE.Views.NamedRangeEditDlg.txtTitleEdit": "Modifier le nom",
"SSE.Views.NamedRangeEditDlg.txtTitleNew": "Nouveau nom",
"SSE.Views.NamedRangePasteDlg.textNames": "Plages nommées",
- "SSE.Views.NamedRangePasteDlg.txtTitle": "Coller un nom ",
+ "SSE.Views.NamedRangePasteDlg.txtTitle": "Coller un nom",
"SSE.Views.NameManagerDlg.closeButtonText": "Fermer",
"SSE.Views.NameManagerDlg.guestText": "Invité",
"SSE.Views.NameManagerDlg.lockText": "Verrouillé",
@@ -2806,16 +2820,16 @@
"SSE.Views.NameManagerDlg.textFilter": "Filtre",
"SSE.Views.NameManagerDlg.textFilterAll": "Tous",
"SSE.Views.NameManagerDlg.textFilterDefNames": "Les noms définis",
- "SSE.Views.NameManagerDlg.textFilterSheet": "Noms inclus dans l'étendue de la feuille",
+ "SSE.Views.NameManagerDlg.textFilterSheet": "Noms liés à la feuille",
"SSE.Views.NameManagerDlg.textFilterTableNames": "Titres de tableaux",
- "SSE.Views.NameManagerDlg.textFilterWorkbook": "Noms inclus dans l'étendue du classeur",
+ "SSE.Views.NameManagerDlg.textFilterWorkbook": "Noms liés au classeur",
"SSE.Views.NameManagerDlg.textNew": "Nouveau",
"SSE.Views.NameManagerDlg.textnoNames": "Pas de plages nommées correspondant à votre filtre n'a pu être trouvée.",
"SSE.Views.NameManagerDlg.textRanges": "Plages nommées",
"SSE.Views.NameManagerDlg.textScope": "Étendue",
"SSE.Views.NameManagerDlg.textWorkbook": "Classeur",
"SSE.Views.NameManagerDlg.tipIsLocked": "Cet élément est en cours de modification par un autre utilisateur.",
- "SSE.Views.NameManagerDlg.txtTitle": "Gestionnaire de Noms ",
+ "SSE.Views.NameManagerDlg.txtTitle": "Gestionnaire de noms",
"SSE.Views.NameManagerDlg.warnDelete": "Etes-vous certain de vouloir supprimer le nom {0}?",
"SSE.Views.PageMarginsDialog.textBottom": "Bas",
"SSE.Views.PageMarginsDialog.textLeft": "Gauche",
@@ -2854,7 +2868,7 @@
"SSE.Views.ParagraphSettingsAdvanced.textAlign": "Alignement",
"SSE.Views.ParagraphSettingsAdvanced.textAuto": "Multiple ",
"SSE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espacement des caractères",
- "SSE.Views.ParagraphSettingsAdvanced.textDefault": "Par défaut",
+ "SSE.Views.ParagraphSettingsAdvanced.textDefault": "Onglet par défaut",
"SSE.Views.ParagraphSettingsAdvanced.textEffects": "Effets",
"SSE.Views.ParagraphSettingsAdvanced.textExact": "Exactement",
"SSE.Views.ParagraphSettingsAdvanced.textFirstLine": "Première ligne",
@@ -2866,7 +2880,7 @@
"SSE.Views.ParagraphSettingsAdvanced.textSet": "Spécifier",
"SSE.Views.ParagraphSettingsAdvanced.textTabCenter": "Au centre",
"SSE.Views.ParagraphSettingsAdvanced.textTabLeft": "À gauche",
- "SSE.Views.ParagraphSettingsAdvanced.textTabPosition": "Position",
+ "SSE.Views.ParagraphSettingsAdvanced.textTabPosition": "Position de l'onglet",
"SSE.Views.ParagraphSettingsAdvanced.textTabRight": "A droite",
"SSE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraphe - Paramètres avancés",
"SSE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto",
@@ -2889,8 +2903,8 @@
"SSE.Views.PivotDigitalFilterDialog.textUse1": "Utilisez ? pour présenter un caractère unique",
"SSE.Views.PivotDigitalFilterDialog.textUse2": "Utilisez * pour présenter une série de caractères",
"SSE.Views.PivotDigitalFilterDialog.txtAnd": "et",
- "SSE.Views.PivotDigitalFilterDialog.txtTitleLabel": "Filtre étiquette",
- "SSE.Views.PivotDigitalFilterDialog.txtTitleValue": "Filtre de valeur",
+ "SSE.Views.PivotDigitalFilterDialog.txtTitleLabel": "Filtre des étiquettes",
+ "SSE.Views.PivotDigitalFilterDialog.txtTitleValue": "Filtre de valeurs",
"SSE.Views.PivotGroupDialog.textAuto": "Auto",
"SSE.Views.PivotGroupDialog.textBy": "par",
"SSE.Views.PivotGroupDialog.textDays": "jours",
@@ -2933,10 +2947,10 @@
"SSE.Views.PivotSettingsAdvanced.textAltTitle": "Titre",
"SSE.Views.PivotSettingsAdvanced.textAutofitColWidth": "Ajuster automatiquement la largeur de colonne lors de la mise à jour",
"SSE.Views.PivotSettingsAdvanced.textDataRange": "Plage de données",
- "SSE.Views.PivotSettingsAdvanced.textDataSource": "La source de données",
+ "SSE.Views.PivotSettingsAdvanced.textDataSource": "Source de données",
"SSE.Views.PivotSettingsAdvanced.textDisplayFields": "Afficher les champs dans la zone de filtre du report",
"SSE.Views.PivotSettingsAdvanced.textDown": "Vers le bas, puis à droite ",
- "SSE.Views.PivotSettingsAdvanced.textGrandTotals": "Grands Totaux",
+ "SSE.Views.PivotSettingsAdvanced.textGrandTotals": "Totaux généraux",
"SSE.Views.PivotSettingsAdvanced.textHeaders": "En-têtes des champs",
"SSE.Views.PivotSettingsAdvanced.textInvalidRange": "ERREUR ! La plage de cellules n'est pas valide",
"SSE.Views.PivotSettingsAdvanced.textOver": "A droite, puis vers le bas",
@@ -2997,38 +3011,38 @@
"SSE.Views.PrintSettings.strMargins": "Marges",
"SSE.Views.PrintSettings.strPortrait": "Portrait",
"SSE.Views.PrintSettings.strPrint": "Imprimer",
- "SSE.Views.PrintSettings.strPrintTitles": "Titres à imprimer",
+ "SSE.Views.PrintSettings.strPrintTitles": "Imprimer des en-têtes",
"SSE.Views.PrintSettings.strRight": "A droite",
"SSE.Views.PrintSettings.strShow": "Afficher",
"SSE.Views.PrintSettings.strTop": "En haut",
"SSE.Views.PrintSettings.textActualSize": "Taille réelle",
"SSE.Views.PrintSettings.textAllSheets": "Toutes les feuilles",
- "SSE.Views.PrintSettings.textCurrentSheet": "Feuille actuel",
+ "SSE.Views.PrintSettings.textCurrentSheet": "Feuille actuelle",
"SSE.Views.PrintSettings.textCustom": "Personnalisé",
"SSE.Views.PrintSettings.textCustomOptions": "Options personnalisées",
"SSE.Views.PrintSettings.textFitCols": "Ajuster toutes les colonnes à une page",
"SSE.Views.PrintSettings.textFitPage": "Ajuster la feuille à une page",
"SSE.Views.PrintSettings.textFitRows": "Ajuster toutes les lignes à une page",
- "SSE.Views.PrintSettings.textHideDetails": "Masquer détails",
- "SSE.Views.PrintSettings.textIgnore": "Ignorer la zone d'impression",
+ "SSE.Views.PrintSettings.textHideDetails": "Masquer les détails",
+ "SSE.Views.PrintSettings.textIgnore": "Ignorer la zone d’impression",
"SSE.Views.PrintSettings.textLayout": "Mise en page",
- "SSE.Views.PrintSettings.textPageOrientation": "Orientation de la page",
+ "SSE.Views.PrintSettings.textPageOrientation": "Orientation de page",
"SSE.Views.PrintSettings.textPageScaling": "Mise à l'échelle",
"SSE.Views.PrintSettings.textPageSize": "Taille de la page",
"SSE.Views.PrintSettings.textPrintGrid": "Imprimer le quadrillage",
- "SSE.Views.PrintSettings.textPrintHeadings": "Imprimer les titres de lignes et de colonnes ",
- "SSE.Views.PrintSettings.textPrintRange": "Imprimer la plage",
+ "SSE.Views.PrintSettings.textPrintHeadings": "Imprimer les en-têtes de lignes et de colonne",
+ "SSE.Views.PrintSettings.textPrintRange": "Plage d'impression",
"SSE.Views.PrintSettings.textRange": "Plage",
"SSE.Views.PrintSettings.textRepeat": "Répéter...",
"SSE.Views.PrintSettings.textRepeatLeft": "Colonnes à répéter à gauche",
"SSE.Views.PrintSettings.textRepeatTop": "Répéter les lignes en haut",
"SSE.Views.PrintSettings.textSelection": "Sélection",
"SSE.Views.PrintSettings.textSettings": "Paramètres de la feuille",
- "SSE.Views.PrintSettings.textShowDetails": "Afficher détails",
- "SSE.Views.PrintSettings.textShowGrid": "Montrer les lignes de grille",
- "SSE.Views.PrintSettings.textShowHeadings": "Montrer les en-têtes des lignes et des colonnes",
+ "SSE.Views.PrintSettings.textShowDetails": "Afficher les détails",
+ "SSE.Views.PrintSettings.textShowGrid": "Afficher le quadrillage",
+ "SSE.Views.PrintSettings.textShowHeadings": "Afficher les en-têtes des lignes et des colonnes",
"SSE.Views.PrintSettings.textTitle": "Paramètres d'impression",
- "SSE.Views.PrintSettings.textTitlePDF": "Paramètres du fichier PDF",
+ "SSE.Views.PrintSettings.textTitlePDF": "Paramètres PDF",
"SSE.Views.PrintTitlesDialog.textFirstCol": "Première colonne",
"SSE.Views.PrintTitlesDialog.textFirstRow": "Première ligne",
"SSE.Views.PrintTitlesDialog.textFrozenCols": "Colonnes verrouillées",
@@ -3038,7 +3052,7 @@
"SSE.Views.PrintTitlesDialog.textNoRepeat": "Ne pas répéter",
"SSE.Views.PrintTitlesDialog.textRepeat": "Répéter...",
"SSE.Views.PrintTitlesDialog.textSelectRange": "Sélectionner la ligne",
- "SSE.Views.PrintTitlesDialog.textTitle": "Titres à imprimer",
+ "SSE.Views.PrintTitlesDialog.textTitle": "Imprimer des en-têtes",
"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",
@@ -3106,18 +3120,18 @@
"SSE.Views.ProtectDialog.txtSelLocked": "Sélectionner les cellules verrouillées",
"SSE.Views.ProtectDialog.txtSelUnLocked": "Sélectionner les cellules non verrouillées",
"SSE.Views.ProtectDialog.txtSheetDescription": "Empêchez les modifications non souhaitées par d'autres personnes en limitant leur capacité de modification.",
- "SSE.Views.ProtectDialog.txtSheetTitle": "Protéger la feuille de calcul",
+ "SSE.Views.ProtectDialog.txtSheetTitle": "Protéger la feuille",
"SSE.Views.ProtectDialog.txtSort": "Trier",
"SSE.Views.ProtectDialog.txtWarning": "Attention : si vous oubliez ou perdez votre mot de passe, il sera impossible de le récupérer. Conservez-le en lieu sûr.",
"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.ProtectDialog.txtWBTitle": "Protéger la structure du classeur",
"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.",
"SSE.Views.ProtectRangesDlg.textNew": "Nouveau",
- "SSE.Views.ProtectRangesDlg.textProtect": "Protéger la feuille de calcul",
+ "SSE.Views.ProtectRangesDlg.textProtect": "Protéger la feuille",
"SSE.Views.ProtectRangesDlg.textPwd": "Mot de passe",
"SSE.Views.ProtectRangesDlg.textRange": "Plage",
"SSE.Views.ProtectRangesDlg.textRangesDesc": "Plages déverrouillées par un mot de passe lorsque la feuille est protégée (cela ne fonctionne que pour les cellules verrouillées).",
@@ -3126,14 +3140,14 @@
"SSE.Views.ProtectRangesDlg.txtEditRange": "Modifier la plage",
"SSE.Views.ProtectRangesDlg.txtNewRange": "Nouvelle plage",
"SSE.Views.ProtectRangesDlg.txtNo": "Non",
- "SSE.Views.ProtectRangesDlg.txtTitle": "Autoriser les utilisateurs à modifier les plages",
+ "SSE.Views.ProtectRangesDlg.txtTitle": "Permettre aux utilisateurs de modifier des plages",
"SSE.Views.ProtectRangesDlg.txtYes": "Oui",
"SSE.Views.ProtectRangesDlg.warnDelete": "Etes-vous sûr de vouloir supprimer le nom {0} ?",
"SSE.Views.RemoveDuplicatesDialog.textColumns": "Colonnes",
"SSE.Views.RemoveDuplicatesDialog.textDescription": "Pour supprimer des valeurs dupliquées, selectionnez une ou plusieurs colonnes contenant les valeurs dupliquées.",
"SSE.Views.RemoveDuplicatesDialog.textHeaders": "Mes données ont des en-têtes",
"SSE.Views.RemoveDuplicatesDialog.textSelectAll": "Sélectionner tout",
- "SSE.Views.RemoveDuplicatesDialog.txtTitle": "Supprimer les valeurs dupliquées",
+ "SSE.Views.RemoveDuplicatesDialog.txtTitle": "Supprimer les doublons",
"SSE.Views.RightMenu.txtCellSettings": "Paramètres de cellule",
"SSE.Views.RightMenu.txtChartSettings": "Paramètres du graphique",
"SSE.Views.RightMenu.txtImageSettings": "Paramètres de l'image",
@@ -3153,7 +3167,7 @@
"SSE.Views.ScaleDialog.textHeight": "Hauteur",
"SSE.Views.ScaleDialog.textManyPages": "pages",
"SSE.Views.ScaleDialog.textOnePage": "Page",
- "SSE.Views.ScaleDialog.textScaleTo": "Échelle",
+ "SSE.Views.ScaleDialog.textScaleTo": "Ajuster à",
"SSE.Views.ScaleDialog.textTitle": "Paramètres de mise à l'échelle",
"SSE.Views.ScaleDialog.textWidth": "Largeur",
"SSE.Views.SetValueDialog.txtMaxText": "La valeur maximale pour ce champ est {0}",
@@ -3216,7 +3230,7 @@
"SSE.Views.ShapeSettings.txtPapyrus": "Papyrus",
"SSE.Views.ShapeSettings.txtWood": "Bois",
"SSE.Views.ShapeSettingsAdvanced.strColumns": "Colonnes",
- "SSE.Views.ShapeSettingsAdvanced.strMargins": "Rembourrage texte",
+ "SSE.Views.ShapeSettingsAdvanced.strMargins": "Marges intérieures",
"SSE.Views.ShapeSettingsAdvanced.textAbsolute": "Ne pas déplacer ou dimensionner avec les cellules",
"SSE.Views.ShapeSettingsAdvanced.textAlt": "Texte de remplacement",
"SSE.Views.ShapeSettingsAdvanced.textAltDescription": "Description",
@@ -3232,7 +3246,7 @@
"SSE.Views.ShapeSettingsAdvanced.textCapType": "Type de lettrine",
"SSE.Views.ShapeSettingsAdvanced.textColNumber": "Nombre de colonnes",
"SSE.Views.ShapeSettingsAdvanced.textEndSize": "Taille de fin",
- "SSE.Views.ShapeSettingsAdvanced.textEndStyle": "Style de fin",
+ "SSE.Views.ShapeSettingsAdvanced.textEndStyle": "Style final",
"SSE.Views.ShapeSettingsAdvanced.textFlat": "Plat",
"SSE.Views.ShapeSettingsAdvanced.textFlipped": "Retourné",
"SSE.Views.ShapeSettingsAdvanced.textHeight": "Hauteur",
@@ -3240,7 +3254,7 @@
"SSE.Views.ShapeSettingsAdvanced.textJoinType": "Type de jointure",
"SSE.Views.ShapeSettingsAdvanced.textKeepRatio": "Proportions constantes",
"SSE.Views.ShapeSettingsAdvanced.textLeft": "À gauche",
- "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Style de ligne",
+ "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Style de la ligne",
"SSE.Views.ShapeSettingsAdvanced.textMiter": "Onglet",
"SSE.Views.ShapeSettingsAdvanced.textOneCell": "Déplacer sans dimensionner avec les cellules",
"SSE.Views.ShapeSettingsAdvanced.textOverflow": "Autoriser le texte à sortir de la forme",
@@ -3249,7 +3263,7 @@
"SSE.Views.ShapeSettingsAdvanced.textRotation": "Rotation",
"SSE.Views.ShapeSettingsAdvanced.textRound": "Arrondi",
"SSE.Views.ShapeSettingsAdvanced.textSize": "Taille",
- "SSE.Views.ShapeSettingsAdvanced.textSnap": "Alignement dans une cellule",
+ "SSE.Views.ShapeSettingsAdvanced.textSnap": "Claquage des cellules",
"SSE.Views.ShapeSettingsAdvanced.textSpacing": "Espacement entre les colonnes",
"SSE.Views.ShapeSettingsAdvanced.textSquare": "Carré",
"SSE.Views.ShapeSettingsAdvanced.textTextBox": "Zone de texte",
@@ -3276,7 +3290,7 @@
"SSE.Views.SignatureSettings.txtSigned": "Des signatures valides ont été ajoutées au classeur. Le classeur est protégé des modifications.",
"SSE.Views.SignatureSettings.txtSignedInvalid": "Certaines signatures électriques sont invalides ou n'ont pu être vérifiées. Le classeur est protégé contre la modification. ",
"SSE.Views.SlicerAddDialog.textColumns": "Colonnes",
- "SSE.Views.SlicerAddDialog.txtTitle": "Insérer segments",
+ "SSE.Views.SlicerAddDialog.txtTitle": "Insérer des segments",
"SSE.Views.SlicerSettings.strHideNoData": "Masquer les éléments vides",
"SSE.Views.SlicerSettings.strIndNoData": "Indiquer visuellement les éléments sans données",
"SSE.Views.SlicerSettings.strShowDel": "Afficher les éléments supprimés de la source de données",
@@ -3333,7 +3347,7 @@
"SSE.Views.SlicerSettingsAdvanced.textOldNew": "Du plus ancien au plus récent",
"SSE.Views.SlicerSettingsAdvanced.textOneCell": "Déplacer sans dimensionner avec les cellules",
"SSE.Views.SlicerSettingsAdvanced.textSmallLarge": "Du plus petit au plus grand",
- "SSE.Views.SlicerSettingsAdvanced.textSnap": "Alignement dans une cellule",
+ "SSE.Views.SlicerSettingsAdvanced.textSnap": "Claquage des cellules",
"SSE.Views.SlicerSettingsAdvanced.textSort": "Trier",
"SSE.Views.SlicerSettingsAdvanced.textSourceName": "Nom de source",
"SSE.Views.SlicerSettingsAdvanced.textTitle": "Segment - Paramètres avancés",
@@ -3405,7 +3419,7 @@
"SSE.Views.SpecialPasteDialog.textTranspose": "Transposer",
"SSE.Views.SpecialPasteDialog.textValues": "Valeurs",
"SSE.Views.SpecialPasteDialog.textVFormat": "Valeurs et mise en forme",
- "SSE.Views.SpecialPasteDialog.textVNFormat": "Valeurs et formats des chiffres",
+ "SSE.Views.SpecialPasteDialog.textVNFormat": "Valeurs et formats des nombres",
"SSE.Views.SpecialPasteDialog.textWBorders": "Tout sauf la bordure",
"SSE.Views.Spellcheck.noSuggestions": "Aucune suggestion orthographique",
"SSE.Views.Spellcheck.textChange": "Modification",
@@ -3442,7 +3456,7 @@
"SSE.Views.Statusbar.itemUnProtect": "Déprotéger",
"SSE.Views.Statusbar.RenameDialog.errNameExists": "Une feuille de calcul avec le même nom existe déjà.",
"SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "Le nom de feuille ne peut pas contenir les caractères suivants : \\/*?[]:",
- "SSE.Views.Statusbar.RenameDialog.labelSheetName": "Nom de feuille",
+ "SSE.Views.Statusbar.RenameDialog.labelSheetName": "Nom de la feuille",
"SSE.Views.Statusbar.selectAllSheets": "Sélectionner toutes les feuilles",
"SSE.Views.Statusbar.sheetIndexText": "Feuille {0} de {1}",
"SSE.Views.Statusbar.textAverage": "Moyenne",
@@ -3468,7 +3482,7 @@
"SSE.Views.TableOptionsDialog.errorFTRangeIncludedOtherTables": "L'opération n'a pas pu être achevée pour la plage de cellules sélectionnée. Sélectionnez une plage qui ne comprend pas d'autres tables.",
"SSE.Views.TableOptionsDialog.errorMultiCellFormula": "Formules de tableau plusieurs cellules ne sont pas autorisées dans les classeurs.",
"SSE.Views.TableOptionsDialog.txtEmpty": "Ce champ est obligatoire",
- "SSE.Views.TableOptionsDialog.txtFormat": "Nouveau tableau",
+ "SSE.Views.TableOptionsDialog.txtFormat": "Créer un tableau",
"SSE.Views.TableOptionsDialog.txtInvalidRange": "ERREUR! La plage de cellules non valide",
"SSE.Views.TableOptionsDialog.txtNote": "Les en-têtes doivent rester dans la même ligne, la ligne résultant de la table doit se chevaucher avec une ligne de table originale.",
"SSE.Views.TableOptionsDialog.txtTitle": "Titre",
@@ -3658,7 +3672,7 @@
"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.textPrintHeadings": "Imprimer les en-têtes",
"SSE.Views.Toolbar.textPrintOptions": "Paramètres d'impression",
"SSE.Views.Toolbar.textRight": "A droite: ",
"SSE.Views.Toolbar.textRightBorders": "Bordures droites",
@@ -3847,8 +3861,8 @@
"SSE.Views.Top10FilterDialog.txtSum": "Somme",
"SSE.Views.Top10FilterDialog.txtTitle": "Les 10 premiers de filtre automatique",
"SSE.Views.Top10FilterDialog.txtTop": "En haut",
- "SSE.Views.Top10FilterDialog.txtValueTitle": "Le top 10 filtre",
- "SSE.Views.ValueFieldSettingsDialog.textTitle": "Paramètres du champ de valeur",
+ "SSE.Views.Top10FilterDialog.txtValueTitle": "Le top 10 filtres",
+ "SSE.Views.ValueFieldSettingsDialog.textTitle": "Paramètres des champs de valeurs",
"SSE.Views.ValueFieldSettingsDialog.txtAverage": "Moyenne",
"SSE.Views.ValueFieldSettingsDialog.txtBaseField": "Champ de base",
"SSE.Views.ValueFieldSettingsDialog.txtBaseItem": "élément de base",
@@ -3856,16 +3870,16 @@
"SSE.Views.ValueFieldSettingsDialog.txtCount": "Total",
"SSE.Views.ValueFieldSettingsDialog.txtCountNums": "Chiffres",
"SSE.Views.ValueFieldSettingsDialog.txtCustomName": "Nom",
- "SSE.Views.ValueFieldSettingsDialog.txtDifference": "Différence par rapport",
+ "SSE.Views.ValueFieldSettingsDialog.txtDifference": "Différence par rapport à",
"SSE.Views.ValueFieldSettingsDialog.txtIndex": "Index",
"SSE.Views.ValueFieldSettingsDialog.txtMax": "Max",
"SSE.Views.ValueFieldSettingsDialog.txtMin": "Min",
- "SSE.Views.ValueFieldSettingsDialog.txtNormal": "Pas de calculs",
+ "SSE.Views.ValueFieldSettingsDialog.txtNormal": "Aucun calcul",
"SSE.Views.ValueFieldSettingsDialog.txtPercent": "Pourcentage de",
"SSE.Views.ValueFieldSettingsDialog.txtPercentDiff": "Différence de pourcentage par rapport à",
- "SSE.Views.ValueFieldSettingsDialog.txtPercentOfCol": "Pourcentage de colonnes",
+ "SSE.Views.ValueFieldSettingsDialog.txtPercentOfCol": "Pourcentage de la colonne",
"SSE.Views.ValueFieldSettingsDialog.txtPercentOfRow": "Pourcentage du total",
- "SSE.Views.ValueFieldSettingsDialog.txtPercentOfTotal": "Pourcentage de ligne",
+ "SSE.Views.ValueFieldSettingsDialog.txtPercentOfTotal": "Pourcentage de la ligne",
"SSE.Views.ValueFieldSettingsDialog.txtProduct": "Produit",
"SSE.Views.ValueFieldSettingsDialog.txtRunTotal": "Résultat cumulé par",
"SSE.Views.ValueFieldSettingsDialog.txtShowAs": "Afficher les valeurs comme",
@@ -3890,7 +3904,7 @@
"SSE.Views.ViewManagerDlg.textRenameLabel": "Renommer l'aperçu",
"SSE.Views.ViewManagerDlg.textViews": "Affichages des feuilles",
"SSE.Views.ViewManagerDlg.tipIsLocked": "Cet élément est en cours de modification par un autre utilisateur.",
- "SSE.Views.ViewManagerDlg.txtTitle": "Gestionnaire d'affichage des feuilles",
+ "SSE.Views.ViewManagerDlg.txtTitle": "Gestionnaire d'affichages de feuille",
"SSE.Views.ViewManagerDlg.warnDeleteView": "Vous essayez de supprimer l'affichage '%1' qui est maintenant actif. Fermer et supprimer cet affichage ?",
"SSE.Views.ViewTab.capBtnFreeze": "Figer les volets",
"SSE.Views.ViewTab.capBtnSheetView": "Afficher une feuille",
@@ -3904,11 +3918,13 @@
"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.textInterfaceTheme": "Thème d'interface",
+ "SSE.Views.ViewTab.textLeftMenu": "Panneau gauche",
"SSE.Views.ViewTab.textManager": "Gestionnaire d'affichage",
- "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Afficher l'ombre des zones figées",
+ "SSE.Views.ViewTab.textRightMenu": "Panneau droit",
+ "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Afficher les ombres des volets verrouillés",
"SSE.Views.ViewTab.textUnFreeze": "Libérer les volets",
- "SSE.Views.ViewTab.textZeros": "Afficher des zéros",
+ "SSE.Views.ViewTab.textZeros": "Afficher les zéros",
"SSE.Views.ViewTab.textZoom": "Changer l'échelle",
"SSE.Views.ViewTab.tipClose": "Fermer l'aperçu d'une feuille",
"SSE.Views.ViewTab.tipCreate": "Créer l'aperçu d'une feuille",
diff --git a/apps/spreadsheeteditor/main/locale/hy.json b/apps/spreadsheeteditor/main/locale/hy.json
index 67b928577..900ddbcb0 100644
--- a/apps/spreadsheeteditor/main/locale/hy.json
+++ b/apps/spreadsheeteditor/main/locale/hy.json
@@ -100,12 +100,165 @@
"Common.define.conditionalData.textUnique": "Յուրահատուկ",
"Common.define.conditionalData.textValue": "Արժեքն է",
"Common.define.conditionalData.textYesterday": "Երեկ",
+ "Common.define.smartArt.textAccentedPicture": "Շեշտված նկար",
+ "Common.define.smartArt.textAccentProcess": "Շեշտման ընթացք",
+ "Common.define.smartArt.textAlternatingFlow": "Այլընտրական հոսք",
+ "Common.define.smartArt.textAlternatingHexagons": "Այլընտրական վեցանկյունիներ",
+ "Common.define.smartArt.textAlternatingPictureBlocks": "Այլընտրական նկարների կազմեր",
+ "Common.define.smartArt.textAlternatingPictureCircles": "Այլընտրական նկարների շրջանակներ",
+ "Common.define.smartArt.textArchitectureLayout": "Ճարտարապետական դասավորություն",
+ "Common.define.smartArt.textArrowRibbon": "Սլաքի երիզ",
+ "Common.define.smartArt.textAscendingPictureAccentProcess": "Աճող նկարների շեշտման ընթացք",
"Common.define.smartArt.textBalance": "Հաշվեկշիռ",
+ "Common.define.smartArt.textBasicBendingProcess": "Հիմնական ծռման ընթացք",
+ "Common.define.smartArt.textBasicBlockList": "Հիմնական բաժնի ցուցակ",
+ "Common.define.smartArt.textBasicChevronProcess": "Հիմնական ծպեղների ընթացք",
+ "Common.define.smartArt.textBasicCycle": "Հիմնական շրջան",
+ "Common.define.smartArt.textBasicMatrix": "Հիմնական մատրիցա",
+ "Common.define.smartArt.textBasicPie": "Հիմնական բլիթ",
+ "Common.define.smartArt.textBasicProcess": "Հիմնական ընթացք",
+ "Common.define.smartArt.textBasicPyramid": "Հիմնական բուրգ",
+ "Common.define.smartArt.textBasicRadial": "Հիմնական շառավիղ",
+ "Common.define.smartArt.textBasicTarget": "Հիմնական նպատակ",
+ "Common.define.smartArt.textBasicTimeline": "Հիմնական ժամագիծ",
+ "Common.define.smartArt.textBasicVenn": "Հիմնական վրածածք",
+ "Common.define.smartArt.textBendingPictureAccentList": "Ծռված նկարի շեշտման ցուցակ",
+ "Common.define.smartArt.textBendingPictureBlocks": "Ծռված նկարների կազմեր",
+ "Common.define.smartArt.textBendingPictureCaption": "Ծռված նկարի խորագիր",
+ "Common.define.smartArt.textBendingPictureCaptionList": "Ծռված նկարի խորագրերի ցուցակ",
+ "Common.define.smartArt.textBendingPictureSemiTranparentText": "Ծռված նկարի կիսաթափանցիկ գրվածք",
+ "Common.define.smartArt.textBlockCycle": "Բաժնի շրջան",
+ "Common.define.smartArt.textBubblePictureList": "Դրսագրով նկարների ցուցակ",
+ "Common.define.smartArt.textCaptionedPictures": "Խորագրով նկարներ",
+ "Common.define.smartArt.textChevronAccentProcess": "Ծպեղների շեշտման ընթաց",
+ "Common.define.smartArt.textChevronList": "Ծպեղների ցուցակ",
+ "Common.define.smartArt.textCircleAccentTimeline": "Շրջանաձև շեշտման ժամագիծ",
+ "Common.define.smartArt.textCircleArrowProcess": "Շրջանաձև սլաքի ընթացք",
+ "Common.define.smartArt.textCirclePictureHierarchy": "Շրջանաձև նկարների աստիճանակարգություն",
+ "Common.define.smartArt.textCircleProcess": "Շրջանաձև ընթացք",
+ "Common.define.smartArt.textCircleRelationship": "Շրջանների հարաբերություն",
+ "Common.define.smartArt.textCircularBendingProcess": "Շրջանային ծռման ընթացք",
+ "Common.define.smartArt.textCircularPictureCallout": "Շրջանաձև նկարի դրսագիր",
+ "Common.define.smartArt.textClosedChevronProcess": "Փակ ծպեղների ընթացք",
+ "Common.define.smartArt.textContinuousArrowProcess": "Շարունակական սլաքի ընթացք",
+ "Common.define.smartArt.textContinuousBlockProcess": "Շարունակական բաժնի ընթացք",
+ "Common.define.smartArt.textContinuousCycle": "Շարունակական շրջան",
+ "Common.define.smartArt.textContinuousPictureList": "Շարունակական նկարի ցուցակ",
+ "Common.define.smartArt.textConvergingArrows": "Միակցող սլաքներ",
+ "Common.define.smartArt.textConvergingRadial": "Զուգահեռ շառավիղ",
+ "Common.define.smartArt.textConvergingText": "Զուգամետ գրվածք",
+ "Common.define.smartArt.textCounterbalanceArrows": "Հակակշիռ սլաքներ",
+ "Common.define.smartArt.textCycle": "Շրջան",
+ "Common.define.smartArt.textCycleMatrix": "Շրջանային մատրիցա",
+ "Common.define.smartArt.textDescendingBlockList": "Նվազող կազմերի ցուցակ",
+ "Common.define.smartArt.textDescendingProcess": "Նվազող ընթացք",
+ "Common.define.smartArt.textDetailedProcess": "Մանրամասն ընթացք",
+ "Common.define.smartArt.textDivergingArrows": "Հակադիր սլաքներ",
+ "Common.define.smartArt.textDivergingRadial": "Ցրված շառավիղ",
"Common.define.smartArt.textEquation": "Հավասարում",
+ "Common.define.smartArt.textFramedTextPicture": "Շրջանակված գրվածքով նկար",
"Common.define.smartArt.textFunnel": "Ձագարաձև",
+ "Common.define.smartArt.textGear": "Ատամնանիվ",
+ "Common.define.smartArt.textGridMatrix": "Ցանցավոր մատրիցա",
+ "Common.define.smartArt.textGroupedList": "Խմբավորված ցուցակ",
+ "Common.define.smartArt.textHalfCircleOrganizationChart": "Կիսաշրջանաձև կազմակերպության գծապատկեր",
+ "Common.define.smartArt.textHexagonCluster": "Վեցանկյունիների բույլ",
+ "Common.define.smartArt.textHexagonRadial": "Վեցանկյունիների շառավիղ",
+ "Common.define.smartArt.textHierarchy": "Ստորակարգ",
+ "Common.define.smartArt.textHierarchyList": "Ստորակարգի ցուցակ",
+ "Common.define.smartArt.textHorizontalBulletList": "Հորիզոնական պարբերակի ցուցակ",
+ "Common.define.smartArt.textHorizontalHierarchy": "Հորիզոնական ստորակարգ",
+ "Common.define.smartArt.textHorizontalLabeledHierarchy": "Հորիզոնական պիտակված ստորակարգ",
+ "Common.define.smartArt.textHorizontalMultiLevelHierarchy": "Հորիզոնական բազմակակարդակ աստիճանակարգություն",
+ "Common.define.smartArt.textHorizontalOrganizationChart": "Հորիզոնական կազմակերպության գծապատկեր",
+ "Common.define.smartArt.textHorizontalPictureList": "Հորիզոնական նկարների ցուցակ",
+ "Common.define.smartArt.textIncreasingArrowProcess": "Աճող սլաքի ընթացք",
+ "Common.define.smartArt.textIncreasingCircleProcess": "Աճող շրջանաձև ընթացք",
+ "Common.define.smartArt.textInterconnectedBlockProcess": "Փոխկապակցված կազմերի ընթացք",
+ "Common.define.smartArt.textInterconnectedRings": "Փոխկապակցված օղակներ",
+ "Common.define.smartArt.textInvertedPyramid": "Հակադարձված բուրգ",
+ "Common.define.smartArt.textLabeledHierarchy": "Պիտակված ստորակարգ",
+ "Common.define.smartArt.textLinearVenn": "Գծային վրածածք",
+ "Common.define.smartArt.textLinedList": "Գծված ցուցակ",
"Common.define.smartArt.textList": "Ցուցակ",
+ "Common.define.smartArt.textMatrix": "Մատրիցա",
+ "Common.define.smartArt.textMultidirectionalCycle": "Բազմուղի շրջան",
+ "Common.define.smartArt.textNameAndTitleOrganizationChart": "Անուններով և պաշտոններով կազմակերպության գծապատկեր",
+ "Common.define.smartArt.textNestedTarget": "Ներդրված թիրախ",
+ "Common.define.smartArt.textNondirectionalCycle": "Ոչ ուղղորդված շրջան",
+ "Common.define.smartArt.textOpposingArrows": "Հակադրող սլաքներ",
+ "Common.define.smartArt.textOpposingIdeas": "Հակադրող առաջարկներ",
+ "Common.define.smartArt.textOrganizationChart": "Կազմակերպության գծապատկեր",
"Common.define.smartArt.textOther": "Այլ",
+ "Common.define.smartArt.textPhasedProcess": "Փուլային ընթացք",
"Common.define.smartArt.textPicture": "Նկար",
+ "Common.define.smartArt.textPictureAccentBlocks": "Նկարների շեշտման կազմեր",
+ "Common.define.smartArt.textPictureAccentList": "Նկարի շեշտման ցուցակ",
+ "Common.define.smartArt.textPictureAccentProcess": "Նկարի շեշտման ընթացք",
+ "Common.define.smartArt.textPictureCaptionList": "Նկարի խորագրերի ցուցակ",
+ "Common.define.smartArt.textPictureFrame": "ՆկարիՇրջանակ",
+ "Common.define.smartArt.textPictureGrid": "Նկարների ցանց",
+ "Common.define.smartArt.textPictureLineup": "Նկարների շարան",
+ "Common.define.smartArt.textPictureOrganizationChart": "Նկարի կազմակերպության գծապատկեր",
+ "Common.define.smartArt.textPictureStrips": "Նկարների գծեր",
+ "Common.define.smartArt.textPieProcess": "Բլիթային գծապատկերով ընթացք",
+ "Common.define.smartArt.textPlusAndMinus": "Գումարած և հանած",
+ "Common.define.smartArt.textProcess": "Ընթացք",
+ "Common.define.smartArt.textProcessArrows": "Ընթացքի սլաքներ",
+ "Common.define.smartArt.textProcessList": "Ընթացքների ցուցակ",
+ "Common.define.smartArt.textPyramid": "Բուրգ",
+ "Common.define.smartArt.textPyramidList": "Բուրգի ցուցակ",
+ "Common.define.smartArt.textRadialCluster": "Շառավիղների բույլ",
+ "Common.define.smartArt.textRadialCycle": "Շառավղային շրջան",
+ "Common.define.smartArt.textRadialList": "Շառավղի ցուցակ",
+ "Common.define.smartArt.textRadialPictureList": "Շառավղային նկարների ցուցակ",
+ "Common.define.smartArt.textRadialVenn": "Շառավղային վրածածք",
+ "Common.define.smartArt.textRandomToResultProcess": "Պատահականից դեպի արդյունք ընթացք",
+ "Common.define.smartArt.textRelationship": "Հարաբերություն",
+ "Common.define.smartArt.textRepeatingBendingProcess": "Կրկնվող ծռման ընթացք",
+ "Common.define.smartArt.textReverseList": "Հետադարձ ցուցակ",
+ "Common.define.smartArt.textSegmentedCycle": "Մասնատված շրջան",
+ "Common.define.smartArt.textSegmentedProcess": "Մասնատված ընթացք",
+ "Common.define.smartArt.textSegmentedPyramid": "Մասնատված բուրգ",
+ "Common.define.smartArt.textSnapshotPictureList": "Ճեպապատկերների ցուցակ",
+ "Common.define.smartArt.textSpiralPicture": "Պարուրաձև նկար",
+ "Common.define.smartArt.textSquareAccentList": "Քառակուսի շեշտման ցուցակ",
+ "Common.define.smartArt.textStackedList": "Շեղջված ցուցակ",
+ "Common.define.smartArt.textStackedVenn": "Շեղջված վրածածք",
+ "Common.define.smartArt.textStaggeredProcess": "Աստիճանայաին ընթացք",
+ "Common.define.smartArt.textStepDownProcess": "Իջնող ընթացք",
+ "Common.define.smartArt.textStepUpProcess": "Բարձրացող ընթացք",
+ "Common.define.smartArt.textSubStepProcess": "Ենթաքայլերով ընթացք",
+ "Common.define.smartArt.textTabbedArc": "Ներդիրավոր աղեղ",
+ "Common.define.smartArt.textTableHierarchy": "Աղյուսակի ստորակարգ",
+ "Common.define.smartArt.textTableList": "Աղյուսակային ցուցակ",
+ "Common.define.smartArt.textTabList": "Ներդիրների ցուցակ",
+ "Common.define.smartArt.textTargetList": "Նպատակակետի ցուցակ",
+ "Common.define.smartArt.textTextCycle": "Գրվածքի շրջան",
+ "Common.define.smartArt.textThemePictureAccent": "Ոճի նկարի շեշտում",
+ "Common.define.smartArt.textThemePictureAlternatingAccent": "Ոճի նկարի այլընտրական շեշտում",
+ "Common.define.smartArt.textThemePictureGrid": "Ոճի նկարի ցանց",
+ "Common.define.smartArt.textTitledMatrix": "Անվանված մատրիցա",
+ "Common.define.smartArt.textTitledPictureAccentList": "Անվանված նկարների շեշտման ցուցակ",
+ "Common.define.smartArt.textTitledPictureBlocks": "Անվանված նկարների կազմեր",
+ "Common.define.smartArt.textTitlePictureLineup": "Ոճի նկարների շարան",
+ "Common.define.smartArt.textTrapezoidList": "Սեղանի ցուցակ",
+ "Common.define.smartArt.textUpwardArrow": "Վեր սլացող սլաք",
+ "Common.define.smartArt.textVaryingWidthList": "Փոփոխվող լայնությունների ցուցակ",
+ "Common.define.smartArt.textVerticalAccentList": "Ուղղաձիգ շեշտման ցուցակ",
+ "Common.define.smartArt.textVerticalArrowList": "Ուղղաձիգ սլաքի ցուցակ",
+ "Common.define.smartArt.textVerticalBendingProcess": "Ուղղաձիգ ծռման ընթացք",
+ "Common.define.smartArt.textVerticalBlockList": "Ուղղաձիգ կապանի ցուցակ",
+ "Common.define.smartArt.textVerticalBoxList": "Ուղղաձիգ ցուցակատուփ",
+ "Common.define.smartArt.textVerticalBracketList": "Ուղղաձիգ ուղղանկյուն փակագծերի ցուցակ",
+ "Common.define.smartArt.textVerticalBulletList": "Ուղղաձիգ պարբերակների ցուցակ",
+ "Common.define.smartArt.textVerticalChevronList": "Ուղղաձիգ ծպեղների ցուցակ",
+ "Common.define.smartArt.textVerticalCircleList": "Ուղղաձիգ շրջանով ցուցակ",
+ "Common.define.smartArt.textVerticalCurvedList": "Ուղղաձիգ կորով ցուցակ",
+ "Common.define.smartArt.textVerticalEquation": "Ուղղաձիգ հավասարում",
+ "Common.define.smartArt.textVerticalPictureAccentList": "Ուղղաձիգ նկարի շեշտման ցուցակ",
+ "Common.define.smartArt.textVerticalPictureList": "Ուղղաձիգ նկարի ցուցակ",
+ "Common.define.smartArt.textVerticalProcess": "Ուղղաձիգ ընթացք",
"Common.Translation.textMoreButton": "Ավելին",
"Common.Translation.warnFileLocked": "Ֆայլը խմբագրվում է մեկ այլ հավելվածում:Դուք կարող եք շարունակել խմբագրումը և պահպանել այն որպես պատճեն:",
"Common.Translation.warnFileLockedBtnEdit": "Ստեղծել պատճեն",
@@ -309,7 +462,7 @@
"Common.Views.OpenDialog.txtSpace": "Բացատ",
"Common.Views.OpenDialog.txtTab": "Սյունատ",
"Common.Views.OpenDialog.txtTitle": "Ընտրել %1 ընտրանքներ",
- "Common.Views.OpenDialog.txtTitleProtected": "Պաշտպանված նիշք",
+ "Common.Views.OpenDialog.txtTitleProtected": "Պաշտպանված ֆայլ",
"Common.Views.PasswordDialog.txtDescription": "Դնել գաղտնաբառ՝ փաստաթուղթը պաշտպանելու համար։",
"Common.Views.PasswordDialog.txtIncorrectPwd": "Հաստատման գաղտնաբառը նույնը չէ",
"Common.Views.PasswordDialog.txtPassword": "Գաղտնաբառ",
@@ -415,7 +568,7 @@
"Common.Views.SearchPanel.textFindAndReplace": "Գտնել և փոխարինել",
"Common.Views.SearchPanel.textFormula": "Բանաձև ",
"Common.Views.SearchPanel.textFormulas": "Բանաձևեր",
- "Common.Views.SearchPanel.textItemEntireCell": "Բջիջների ամբողջ պարունակությունը",
+ "Common.Views.SearchPanel.textItemEntireCell": "Վանդակների ամբողջ պարունակությունը",
"Common.Views.SearchPanel.textLookIn": "Որոնման տարածք",
"Common.Views.SearchPanel.textMatchUsingRegExp": "Համեմատել՝ օգտագործելով կանոնավոր արտահայտություններ",
"Common.Views.SearchPanel.textName": "Անուն",
@@ -458,6 +611,7 @@
"Common.Views.SignDialog.tipFontName": "Տառատեսակի անուն",
"Common.Views.SignDialog.tipFontSize": "Տառատեսակի չափ",
"Common.Views.SignSettingsDialog.textAllowComment": "Թույլ տալ ստորագրողին հավելել մեկնաբանություն ստորագրության պատուհանում",
+ "Common.Views.SignSettingsDialog.textDefInstruction": "Նախքան այս փաստաթուղթը ստորագրելը, ստուգեք, որ Ձեր ստորագրած բովանդակությունը ճիշտ է:",
"Common.Views.SignSettingsDialog.textInfoEmail": "Էլ․ հասցե",
"Common.Views.SignSettingsDialog.textInfoName": "Անուն",
"Common.Views.SignSettingsDialog.textInfoTitle": "Ստորագրողի անվանումը",
@@ -526,7 +680,7 @@
"SSE.Controllers.DocumentHolder.textAutoCorrectSettings": "Ինքնաշտկման ընտրանքներ",
"SSE.Controllers.DocumentHolder.textChangeColumnWidth": "Սյունակի լայնությունը {0} խորհրդանիշ ({1} պիքսել)",
"SSE.Controllers.DocumentHolder.textChangeRowHeight": "Տողի բարձրությունը {0} միավոր ({1} պիքսել)",
- "SSE.Controllers.DocumentHolder.textCtrlClick": "Սեղմեք հղման վրա՝ այն բացելու համար կամ սեղմեք և պահեք մկնիկի կոճակը՝ բջիջն ընտրելու համար:",
+ "SSE.Controllers.DocumentHolder.textCtrlClick": "Սեղմեք հղման վրա՝ այն բացելու համար կամ սեղմեք և պահեք մկնիկի կոճակը՝ վանդակն ընտրելու համար:",
"SSE.Controllers.DocumentHolder.textInsertLeft": "Տեղադրել ձախ",
"SSE.Controllers.DocumentHolder.textInsertTop": "Տեղադրել վերևը",
"SSE.Controllers.DocumentHolder.textPasteSpecial": "Կպցնել հատուկ",
@@ -567,7 +721,7 @@
"SSE.Controllers.DocumentHolder.txtDeleteRadical": "Ջնջել արմատը",
"SSE.Controllers.DocumentHolder.txtEnds": "Ավարտվում է ",
"SSE.Controllers.DocumentHolder.txtEquals": "Հավասար է",
- "SSE.Controllers.DocumentHolder.txtEqualsToCellColor": "Հավասար է բջիջների գույնին",
+ "SSE.Controllers.DocumentHolder.txtEqualsToCellColor": "Հավասար է վանդակների գույնին",
"SSE.Controllers.DocumentHolder.txtEqualsToFontColor": "Հավասար է տառատեսակի գույնին",
"SSE.Controllers.DocumentHolder.txtExpand": "Ընդարձակել և տեսակավորել",
"SSE.Controllers.DocumentHolder.txtExpandSort": "Ընտրության կողքին գտնվող տվյալները չեն տեսակավորվի:Ցանկանու՞մ եք ընդլայնել ընտրությունը՝ ներառելով հարակից տվյալները, թե՞ շարունակել տեսակավորել միայն ներկայումս ընտրված վանդակները:",
@@ -610,7 +764,7 @@
"SSE.Controllers.DocumentHolder.txtLimitChange": "Փոխել սահմանների տեղադրությունը",
"SSE.Controllers.DocumentHolder.txtLimitOver": "Տեքստի սահմանափակում",
"SSE.Controllers.DocumentHolder.txtLimitUnder": "Սահմանափակում տեքստի տակ",
- "SSE.Controllers.DocumentHolder.txtLockSort": "Տվյալները գտնվել են ձեր ընտրության կողքին, բայց դուք չունեք բավարար թույլտվություններ այդ բջիջները փոխելու համար: Ցանկանու՞մ եք շարունակել ընթացիկ ընտրությունը:",
+ "SSE.Controllers.DocumentHolder.txtLockSort": "Տվյալները գտնվել են ձեր ընտրության կողքին, բայց դուք չունեք բավարար թույլտվություններ այդ վանդակները փոխելու համար: Ցանկանու՞մ եք շարունակել ընթացիկ ընտրությունը:",
"SSE.Controllers.DocumentHolder.txtMatchBrackets": "Փոփոխել փակագծերի չափը՝ ըստ արգումենտի բարձրության",
"SSE.Controllers.DocumentHolder.txtMatrixAlign": "Մատրիցային հավասարեցում",
"SSE.Controllers.DocumentHolder.txtNoChoices": "Վանդակը լցնելու համար ընտրություն չկա: Փոխարինման համար կարող են ընտրվել միայն սյունակից տեքստային արժեքները:",
@@ -684,7 +838,7 @@
"SSE.Controllers.LeftMenu.textByColumns": "Սյունակներով",
"SSE.Controllers.LeftMenu.textByRows": "Տողերով",
"SSE.Controllers.LeftMenu.textFormulas": "Բանաձևեր",
- "SSE.Controllers.LeftMenu.textItemEntireCell": "Բջիջների ամբողջ պարունակությունը",
+ "SSE.Controllers.LeftMenu.textItemEntireCell": "Վանդակների ամբողջ պարունակությունը",
"SSE.Controllers.LeftMenu.textLoadHistory": "Տարբերակների պատմության բեռնում...",
"SSE.Controllers.LeftMenu.textLookin": "Որոնման տարածք",
"SSE.Controllers.LeftMenu.textNoTextFound": "Ձեր փնտրած տվյալները չեն գտնվել:Խնդրում ենք կարգաբերել Ձեր որոնման ընտրանքները:",
@@ -698,6 +852,9 @@
"SSE.Controllers.LeftMenu.textWorkbook": "Աշխատագիրք",
"SSE.Controllers.LeftMenu.txtUntitled": "Անանուն",
"SSE.Controllers.LeftMenu.warnDownloadAs": "Եթե շարունակեք պահպանումն այս ձևաչափով, բոլոր հատկությունները՝ տեքստից բացի, կկորչեն։ Վստա՞հ եք, որ ցանկանում եք շարունակել:",
+ "SSE.Controllers.Main.confirmAddCellWatches": "Այս գործողությամբ կավելացվեն {0} բջջային ժամացույցներ: Ցանկանու՞մ եք շարունակել։",
+ "SSE.Controllers.Main.confirmAddCellWatchesMax": "Այս գործողությամբ կավելացվեն միայն {0} բջջային ժամացույցներ՝ ըստ հիշողության պահպանման պատճառի: Ցանկանու՞մ եք շարունակել։",
+ "SSE.Controllers.Main.confirmMaxChangesSize": "Գործողությունների չափը գերազանցում է Ձեր սերվերի համար սահմանված սահմանափակումը: Սեղմեք «Հետարկել»՝ Ձեր վերջին գործողությունը չեղարկելու համար կամ սեղմեք «Շարունակել»՝ գործողությունը տեղում պահելու համար (Դուք պետք է ներբեռնեք ֆայլը կամ պատճենեք դրա բովանդակությունը՝ համոզվելու համար, որ ոչինչ կորած չէ):",
"SSE.Controllers.Main.confirmMoveCellRange": "Նպատակային բջիջների տիրույթը կարող է պարունակել տվյալներ: Շարունակե՞լ գործողությունը:",
"SSE.Controllers.Main.confirmPutMergeRange": "Աղբյուրի տվյալները պարունակում էին միավորված բջիջներ: Դրանք ապամիաձուլվել էին նախքան աղյուսակում տեղադրվելը:",
"SSE.Controllers.Main.confirmReplaceFormulaInTable": "Վերնագրի տողի բանաձևերը կհեռացվեն և կվերածվեն ստատիկ տեքստի: Ցանկանու՞մ եք շարունակել։",
@@ -733,6 +890,7 @@
"SSE.Controllers.Main.errorDefaultMessage": "Սխալի կոդ՝ %1",
"SSE.Controllers.Main.errorDeleteColumnContainsLockedCell": "Դուք փորձում եք ջնջել մի սյունակ, որը պարունակում է կողպված բջիջ: Կողպված բջիջները չեն կարող ջնջվել, քանի դեռ աշխատանքային թերթը պաշտպանված է: Կողպված բջիջը ջնջելու համար չպաշտպանեք թերթը: Ձեզանից կարող է պահանջվել մուտքագրել գաղտնաբառ:",
"SSE.Controllers.Main.errorDeleteRowContainsLockedCell": "Դուք փորձում եք ջնջել մի տող, որը պարունակում է կողպված բջիջ: Կողպված բջիջները չեն կարող ջնջվել, քանի դեռ աշխատանքային թերթը պաշտպանված է: Կողպված բջիջը ջնջելու համար չպաշտպանեք թերթը: Ձեզանից կարող է պահանջվել մուտքագրել գաղտնաբառ:",
+ "SSE.Controllers.Main.errorDirectUrl": "Խնդրում ենք ստուգել փաստաթղթի հղումը: Այս հղումը պետք է լինի ուղիղ հղում դեպի ներբեռնելու ֆայլը:",
"SSE.Controllers.Main.errorEditingDownloadas": "Փաստաթղթի հետ աշխատանքի ընթացքում տեղի ունեցավ սխալ։ «Ներբեռնել որպես» հրամանով պահպանեք նիշքի պահուստային պատճենը Ձեր համակարգչի կոշտ սկավառակում։",
"SSE.Controllers.Main.errorEditingSaveas": "Փաստաթղթի հետ աշխատանքի ընթացքում տեղի ունեցավ սխալ։ «Պահպանել որպես...» հրամանով պահպանեք նիշքի պահուստային պատճենը Ձեր համակարգչի կոշտ սկավառակում։",
"SSE.Controllers.Main.errorEditView": "Գոյություն ունեցող թերթերի տեսքը հնարավոր չէ խմբագրել, իսկ նորերը չեն կարող ստեղծվել այս պահին, քանի որ դրանցից մի քանիսը խմբագրվում են:",
@@ -751,6 +909,11 @@
"SSE.Controllers.Main.errorFrmlWrongReferences": "Ֆունկցիան հղում է գոյություն չունեցող աղյուսակաթերթի։ Ստուգեք տվյալներն ու նորից փորձեք։",
"SSE.Controllers.Main.errorFTChangeTableRangeError": "Գործողությունը չի կարող ավարտվել ընտրված բջիջների տիրույթի համար: Ընտրեք ընդգրկույթ, որպեսզի աղյուսակի առաջին տողը լինի նույն տողում և արդյունքում աղյուսակը համընկնի ընթացիկի հետ:",
"SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "Գործողությունը չի կարող ավարտվել ընտրված բջիջների տիրույթի համար: Ընտրեք ընդգրկույթ, որը չի ներառում այլ աղյուսակներ:",
+ "SSE.Controllers.Main.errorInconsistentExt": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը չի համապատասխանում ֆայլի ընդլայնմանը:",
+ "SSE.Controllers.Main.errorInconsistentExtDocx": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը համապատասխանում է տեքստային փաստաթղթերին (օրինակ՝ docx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում՝ %1:",
+ "SSE.Controllers.Main.errorInconsistentExtPdf": "Ֆայլը բացելիս սխալ է տեղի ունեցել:Ֆայլի բովանդակությունը համապատասխանում է հետևյալ ձևաչափերից մեկին՝pdf/djvu/xps/oxps,բայց ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
+ "SSE.Controllers.Main.errorInconsistentExtPptx": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը համապատասխանում է ներկայացումներին (օրինակ՝ pptx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
+ "SSE.Controllers.Main.errorInconsistentExtXlsx": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը համապատասխանում է աղյուսակներին (օր. xlsx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
"SSE.Controllers.Main.errorInvalidRef": "Մուտքագրեք ընտրվածքի համար ճիշտ անուն կամ անցման համար թույլատրելի հղում։",
"SSE.Controllers.Main.errorKeyEncrypt": "Բանալու անհայտ նկարագրիչ",
"SSE.Controllers.Main.errorKeyExpire": "Բանալու նկարագրիչի ժամկետը սպառվել է",
@@ -781,7 +944,7 @@
"SSE.Controllers.Main.errorSessionIdle": "Փաստաթուղթը երկար ժամանակ չի խմբագրվել։ Նորի՛ց բեռնեք էջը։",
"SSE.Controllers.Main.errorSessionToken": "Սպասարկիչի հետ կապն ընդհատվել է։ Խնդրում ենք էջը թարմացնել։",
"SSE.Controllers.Main.errorSetPassword": "Գաղտնաբառը չհաջողվեց սահմանել:",
- "SSE.Controllers.Main.errorSingleColumnOrRowError": "Տեղադրության հղումը վավեր չէ, քանի որ բջիջները բոլորը նույն սյունակում կամ տողում չեն: Ընտրեք բջիջները, որոնք բոլորը մեկ սյունակում կամ տողում են:",
+ "SSE.Controllers.Main.errorSingleColumnOrRowError": "Տեղադրության հղումը վավեր չէ, քանի որ բջիջները բոլորը նույն սյունակում կամ տողում չեն: Ընտրեք վանդակները, որոնք բոլորը մեկ սյունակում կամ տողում են:",
"SSE.Controllers.Main.errorStockChart": "Տողերի սխալ կարգ։ Բորսայի գծապատկեր ստանալու համար տվյալները թերթի վրա դասավորեք հետևյալ կերպ՝ բացման գին, առավելագույն գին, նվազագույն գին, փակման գին։ ",
"SSE.Controllers.Main.errorToken": "Փաստաթղթի անվտանգության կտրոնը ճիշտ չի ձևակերպված։ Դիմեք փաստաթղթերի սպասարկիչի ձեր վարիչին։",
"SSE.Controllers.Main.errorTokenExpire": "Փաստաթղթի անվտանգության կտրոնի ժամկետն անցել է։ Դիմեք փաստաթղթերի սպասարկիչի ձեր վարիչին։",
@@ -1286,11 +1449,17 @@
"SSE.Controllers.Toolbar.txtFunction_Tan": "Տանգենս ֆունկցիա",
"SSE.Controllers.Toolbar.txtFunction_Tanh": "Հիպերբոլիկ տանգես ֆունկցիա",
"SSE.Controllers.Toolbar.txtGroupCell_Custom": "Հարմարեցված",
+ "SSE.Controllers.Toolbar.txtGroupCell_DataAndModel": "Տվյալներ և մոդել",
+ "SSE.Controllers.Toolbar.txtGroupCell_GoodBadAndNeutral": "Լավ, վատ և միջին",
+ "SSE.Controllers.Toolbar.txtGroupCell_NoName": "Անանուն",
+ "SSE.Controllers.Toolbar.txtGroupCell_NumberFormat": "Թվերի ձևաչափ",
+ "SSE.Controllers.Toolbar.txtGroupCell_ThemedCallStyles": "Ոճավորված վանդակների ոճեր",
+ "SSE.Controllers.Toolbar.txtGroupCell_TitlesAndHeadings": "Անվանումներ և էջագլուխներ",
"SSE.Controllers.Toolbar.txtGroupTable_Custom": "Հարմարեցված",
"SSE.Controllers.Toolbar.txtGroupTable_Dark": "Մութ",
"SSE.Controllers.Toolbar.txtGroupTable_Light": "Լույս",
"SSE.Controllers.Toolbar.txtGroupTable_Medium": "Միջին",
- "SSE.Controllers.Toolbar.txtInsertCells": "Տեղադրեք բջիջներ",
+ "SSE.Controllers.Toolbar.txtInsertCells": "Զետեղել վանդակներ",
"SSE.Controllers.Toolbar.txtIntegral": "Ինտեգրալ ",
"SSE.Controllers.Toolbar.txtIntegral_dtheta": "Դիֆերենցիալ թետա",
"SSE.Controllers.Toolbar.txtIntegral_dx": "Դիֆերենցիալ x",
@@ -1312,7 +1481,7 @@
"SSE.Controllers.Toolbar.txtIntegralTriple": "Եռակի ինտեգրալ",
"SSE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Եռակի ինտեգրալ",
"SSE.Controllers.Toolbar.txtIntegralTripleSubSup": "Եռակի ինտեգրալ",
- "SSE.Controllers.Toolbar.txtInvalidRange": "ՍԽԱԼ! Անվավեր բջիջների տիրույթ",
+ "SSE.Controllers.Toolbar.txtInvalidRange": "ՍԽԱԼ! Անվավեր վանդակների տիրույթ",
"SSE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Սեպանցում",
"SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Սեպանցում",
"SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Սեպանցում",
@@ -1361,29 +1530,29 @@
"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 թվացանց",
- "SSE.Controllers.Toolbar.txtMatrix_2_2": "Դատարկ 2x2 թվացանց",
+ "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 դատարկ մատրիցա",
+ "SSE.Controllers.Toolbar.txtMatrix_2_2": "2x2 դատարկ մատրիցա",
"SSE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Դատարկ թվացանց՝ փակագծերով",
"SSE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Դատարկ թվացանց՝ փակագծերով",
"SSE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Դատարկ թվացանց՝ փակագծերով",
"SSE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Դատարկ թվացանց՝ փակագծերով",
- "SSE.Controllers.Toolbar.txtMatrix_2_3": "Դատարկ 2x3 թվացանց",
- "SSE.Controllers.Toolbar.txtMatrix_3_1": "Դատարկ 3x1 թվացանց",
- "SSE.Controllers.Toolbar.txtMatrix_3_2": "Դատարկ 3x2 թվացանց",
- "SSE.Controllers.Toolbar.txtMatrix_3_3": "Դատարկ 3x3 թվացանց",
+ "SSE.Controllers.Toolbar.txtMatrix_2_3": "2x3 դատարկ մատրիցա",
+ "SSE.Controllers.Toolbar.txtMatrix_3_1": "3x1 դատարկ մատրիցա",
+ "SSE.Controllers.Toolbar.txtMatrix_3_2": "3x2 դատարկ մատրիցա",
+ "SSE.Controllers.Toolbar.txtMatrix_3_3": "3x3 դատարկ մատրիցա",
"SSE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Հիմնագծի վրա կետեր",
"SSE.Controllers.Toolbar.txtMatrix_Dots_Center": "Միջնագծի կետեր",
"SSE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Անկյունագծի կետեր",
"SSE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Ուղղաձիգ կետեր",
"SSE.Controllers.Toolbar.txtMatrix_Flat_Round": "Նոսրացված մատրիցա",
"SSE.Controllers.Toolbar.txtMatrix_Flat_Square": "Նոսրացված մատրիցա",
- "SSE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 միավոր թվացանց ",
- "SSE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 միավոր թվացանց",
- "SSE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 միավոր թվացանց",
- "SSE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 միավոր թվացանց",
+ "SSE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 ինքնության մատրիցա ",
+ "SSE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 ինքնության մատրիցա",
+ "SSE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 ինքնության մատրիցա",
+ "SSE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 ինքնության մատրիցա",
"SSE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Աջ-ձախ սլաք ներքևում",
"SSE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Աջ-ձախ սլաք վերևում",
"SSE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Ներքևի ձախ սլաք",
@@ -1535,10 +1704,10 @@
"SSE.Views.AutoFilterDialog.txtBetween": "միջև․․․",
"SSE.Views.AutoFilterDialog.txtClear": "Մաքրել",
"SSE.Views.AutoFilterDialog.txtContains": "Պարունակում է...",
- "SSE.Views.AutoFilterDialog.txtEmpty": "Մուտքագրեք բջջային ֆիլտրը",
+ "SSE.Views.AutoFilterDialog.txtEmpty": "Մուտքագրեք վանդակի ֆիլտրը",
"SSE.Views.AutoFilterDialog.txtEnds": "Ավարտվում է...",
"SSE.Views.AutoFilterDialog.txtEquals": "հավասար է․․․",
- "SSE.Views.AutoFilterDialog.txtFilterCellColor": "Զտել ըստ բջիջների գույնի",
+ "SSE.Views.AutoFilterDialog.txtFilterCellColor": "Զտել ըստ վանդակների գույնի",
"SSE.Views.AutoFilterDialog.txtFilterFontColor": "Զտել ըստ տառատեսակի գույնի",
"SSE.Views.AutoFilterDialog.txtGreater": "Մեծ է քան․․․",
"SSE.Views.AutoFilterDialog.txtGreaterEquals": "Մեծ է կամ հավասար․․․",
@@ -1659,10 +1828,15 @@
"SSE.Views.ChartSettings.strLineWeight": "Գծի լայնություն",
"SSE.Views.ChartSettings.strSparkColor": "Գույն",
"SSE.Views.ChartSettings.strTemplate": "Ձևանմուշ",
+ "SSE.Views.ChartSettings.text3dDepth": "Խորությունը (բազայի %)",
+ "SSE.Views.ChartSettings.text3dHeight": "Բարձրություն (բազայի %)",
+ "SSE.Views.ChartSettings.text3dRotation": "3D Պտտում",
"SSE.Views.ChartSettings.textAdvanced": "Ցուցադրել լրացուցիչ կարգավորումները",
+ "SSE.Views.ChartSettings.textAutoscale": "Ինքնասանդղակ",
"SSE.Views.ChartSettings.textBorderSizeErr": " Մուտքագրված արժեքը սխալ է: Խնդրում ենք մուտքագրել 0կտ-ից 255կտ թվային արժեք:",
"SSE.Views.ChartSettings.textChangeType": "Փոխել տեսակը",
"SSE.Views.ChartSettings.textChartType": "Փոխել գծապատկերի տեսակը",
+ "SSE.Views.ChartSettings.textDefault": "Սկզբնադիր շրջում",
"SSE.Views.ChartSettings.textDown": "Ներքև",
"SSE.Views.ChartSettings.textEditData": "Խմբագրել տվյալները և գտնվելու վայրը",
"SSE.Views.ChartSettings.textFirstPoint": "Առաջին կետ",
@@ -1673,9 +1847,12 @@
"SSE.Views.ChartSettings.textLeft": "Ձախ",
"SSE.Views.ChartSettings.textLowPoint": "Ցածր կետ",
"SSE.Views.ChartSettings.textMarkers": "Մարկերներ",
+ "SSE.Views.ChartSettings.textNarrow": "Նեղ տեսադաշտ",
"SSE.Views.ChartSettings.textNegativePoint": "Բացասական կետ",
+ "SSE.Views.ChartSettings.textPerspective": "Հեռանկար",
"SSE.Views.ChartSettings.textRanges": "Տվյալների տիրույթ",
"SSE.Views.ChartSettings.textRight": "Աջ",
+ "SSE.Views.ChartSettings.textRightAngle": "Աջ անկյան առանցքներ",
"SSE.Views.ChartSettings.textSelectData": "Ընտրեք տվյալներ",
"SSE.Views.ChartSettings.textShow": "Ցույց տալ",
"SSE.Views.ChartSettings.textSize": "Չափ",
@@ -1683,12 +1860,15 @@
"SSE.Views.ChartSettings.textSwitch": "Փոխարկել տող/սյունակ",
"SSE.Views.ChartSettings.textType": "Տեսակ",
"SSE.Views.ChartSettings.textUp": "Վեր",
+ "SSE.Views.ChartSettings.textWiden": "Լայն տեսադաշտ",
"SSE.Views.ChartSettings.textWidth": "Լայնք",
+ "SSE.Views.ChartSettings.textX": "X պտտում",
+ "SSE.Views.ChartSettings.textY": "Y պտտում",
"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.textAbsolute": "Մի շարժվեք կամ չափեք վանդակներով",
+ "SSE.Views.ChartSettingsDlg.textAlt": "Այլընտրանքային տեքստ",
"SSE.Views.ChartSettingsDlg.textAltDescription": "Նկարագրություն",
"SSE.Views.ChartSettingsDlg.textAltTip": "Տեսողական առարկաների այլընտրական տեքստային ներկայացում, որը ընթերցվելու է տեսողության կամ մտավոր խանգարումներով մարդկանց համար՝ օգնելու նրանց ավելի լավ հասկանալ, թե ինչ տեղեկատվություն կա նկարի, պատկերի, գծապատկերի կամ աղյուսակի վրա։",
"SSE.Views.ChartSettingsDlg.textAltTitle": "Վերնագիր",
@@ -1713,7 +1893,7 @@
"SSE.Views.ChartSettingsDlg.textDataLabels": "Տվյալների մեկնագրեր",
"SSE.Views.ChartSettingsDlg.textDataRows": "շարքերում",
"SSE.Views.ChartSettingsDlg.textDisplayLegend": "Ցուցադրել լեգենդը",
- "SSE.Views.ChartSettingsDlg.textEmptyCells": "Թաքնված և դատարկ բջիջներ",
+ "SSE.Views.ChartSettingsDlg.textEmptyCells": "Թաքնված և դատարկ վանդակներ",
"SSE.Views.ChartSettingsDlg.textEmptyLine": "Միացրեք տվյալների կետերը գծի հետ",
"SSE.Views.ChartSettingsDlg.textFit": "Հարմարեցնել լայնությանը",
"SSE.Views.ChartSettingsDlg.textFixed": "Հաստատուն",
@@ -1764,7 +1944,7 @@
"SSE.Views.ChartSettingsDlg.textNextToAxis": "Առանցքի կողքին",
"SSE.Views.ChartSettingsDlg.textNone": "Ոչ մեկը",
"SSE.Views.ChartSettingsDlg.textNoOverlay": "Առանց վերածածկման",
- "SSE.Views.ChartSettingsDlg.textOneCell": "Տեղափոխել, բայց չչափել բջիջներով",
+ "SSE.Views.ChartSettingsDlg.textOneCell": "Տեղափոխել, բայց չչափել վանդակներով",
"SSE.Views.ChartSettingsDlg.textOnTickMarks": "Մանրանիշերի վրա",
"SSE.Views.ChartSettingsDlg.textOut": "Դրսից",
"SSE.Views.ChartSettingsDlg.textOuterTop": "Դրսից վերևից",
@@ -1786,7 +1966,7 @@
"SSE.Views.ChartSettingsDlg.textShowValues": "Ցուցադրել գծապատկերների արժեքները",
"SSE.Views.ChartSettingsDlg.textSingle": "միայնակ կայծգիծ",
"SSE.Views.ChartSettingsDlg.textSmooth": "Հարթ",
- "SSE.Views.ChartSettingsDlg.textSnap": "Բջիջների խզում",
+ "SSE.Views.ChartSettingsDlg.textSnap": "Վանդակի խզում",
"SSE.Views.ChartSettingsDlg.textSparkRanges": "կայծգծի շրջանակներ",
"SSE.Views.ChartSettingsDlg.textStraight": "Ուղիղ",
"SSE.Views.ChartSettingsDlg.textStyle": "Ոճ",
@@ -1798,7 +1978,7 @@
"SSE.Views.ChartSettingsDlg.textTitleSparkline": "կայծգիծ- ընդլայնված կարգավորումներ",
"SSE.Views.ChartSettingsDlg.textTop": "Վերև",
"SSE.Views.ChartSettingsDlg.textTrillions": "Տրիլիոններ",
- "SSE.Views.ChartSettingsDlg.textTwoCell": "Տեղափոխել և չափել բջիջներով",
+ "SSE.Views.ChartSettingsDlg.textTwoCell": "Տեղափոխել և չափել վանդակներով",
"SSE.Views.ChartSettingsDlg.textType": "Տեսակ",
"SSE.Views.ChartSettingsDlg.textTypeData": "Տեսակ և տվյալներ",
"SSE.Views.ChartSettingsDlg.textUnits": "Ցուցադրման միավորներ",
@@ -1836,6 +2016,7 @@
"SSE.Views.DataTab.capBtnTextRemDuplicates": "Հեռացրեք կրկնօրինակները",
"SSE.Views.DataTab.capBtnTextToCol": "Տեքստ սյունակներ",
"SSE.Views.DataTab.capBtnUngroup": "Ապախմբավորել",
+ "SSE.Views.DataTab.capDataExternalLinks": "Արտաքին հղումներ",
"SSE.Views.DataTab.capDataFromText": "Ստանալ տվյալներ",
"SSE.Views.DataTab.mniFromFile": "Տեղական TXT/CSV-ից",
"SSE.Views.DataTab.mniFromUrl": "TXT/CSV վեբ հասցեից",
@@ -1849,7 +2030,8 @@
"SSE.Views.DataTab.tipCustomSort": "Հարմարեցրած տեսակավորում",
"SSE.Views.DataTab.tipDataFromText": "Ստանալ տվյալներ Text/CSV ֆայլից",
"SSE.Views.DataTab.tipDataValidation": "Տվյալների վավերացում",
- "SSE.Views.DataTab.tipGroup": "Բջիջների խմբային տիրույթ",
+ "SSE.Views.DataTab.tipExternalLinks": "Դիտել այլ ֆայլեր, որոնց այս աղյուսակը կապված է",
+ "SSE.Views.DataTab.tipGroup": "Վանդակների խմբային տիրույթ",
"SSE.Views.DataTab.tipRemDuplicates": "Հեռացրեք կրկնօրինակ տողերը թերթիկից",
"SSE.Views.DataTab.tipToColumns": "Բջջային տեքստը բաժանեք սյունակների",
"SSE.Views.DataTab.tipUngroup": "Ապախմբավորել բջիջների տիրույթը",
@@ -1869,7 +2051,7 @@
"SSE.Views.DataValidationDialog.strSettings": "Կարգավորումներ",
"SSE.Views.DataValidationDialog.textAlert": "Զգուշացում",
"SSE.Views.DataValidationDialog.textAllow": "Թույլատրել",
- "SSE.Views.DataValidationDialog.textApply": "Կիրառեք այս փոփոխությունները նույն կարգավորումներով մնացած բոլոր բջիջներում",
+ "SSE.Views.DataValidationDialog.textApply": "Կիրառեք այս փոփոխությունները նույն կարգավորումներով մնացած բոլոր վանդակներում",
"SSE.Views.DataValidationDialog.textCellSelected": "Երբ բջիջն ընտրված է, ցույց տվեք այս մուտքային հաղորդագրությունը",
"SSE.Views.DataValidationDialog.textCompare": "Համեմատել",
"SSE.Views.DataValidationDialog.textData": "Տվյալներ",
@@ -1934,15 +2116,20 @@
"SSE.Views.DigitalFilterDialog.textUse1": "Օգտագործե՞լ ներկայացնել ցանկացած առանձին կերպար",
"SSE.Views.DigitalFilterDialog.textUse2": "Օգտագործեք *՝ կերպարների ցանկացած շարք ներկայացնելու համար",
"SSE.Views.DigitalFilterDialog.txtTitle": "Պատվերով զտիչ",
+ "SSE.Views.DocumentHolder.advancedEquationText": "Հավասարման կարգավորումներ",
"SSE.Views.DocumentHolder.advancedImgText": "Պատկերի ընդլայնված կարգավորումներ ",
"SSE.Views.DocumentHolder.advancedShapeText": "Ձևավորել լրացուցիչ կարգավորումներ",
"SSE.Views.DocumentHolder.advancedSlicerText": "Շերտազտիչ Ընդլայնված կարգավորումներ",
+ "SSE.Views.DocumentHolder.allLinearText": "Ամբողջական գծային",
+ "SSE.Views.DocumentHolder.allProfText": "Ամբողջական պրոֆեսիոնալ",
"SSE.Views.DocumentHolder.bottomCellText": "Հավասարեցնել ներքևից",
"SSE.Views.DocumentHolder.bulletsText": "Պարբերակներ և համարակալում",
"SSE.Views.DocumentHolder.centerCellText": "Հավասարեցնել մեջտեղով",
"SSE.Views.DocumentHolder.chartDataText": "Ընտրեք գծապատկերի տվյալները",
"SSE.Views.DocumentHolder.chartText": "Գծապատկերի լրացուցիչ կարգավորումներ",
"SSE.Views.DocumentHolder.chartTypeText": "Փոխել գծապատկերի տեսակը",
+ "SSE.Views.DocumentHolder.currLinearText": "Ընթացիկ - Գծային",
+ "SSE.Views.DocumentHolder.currProfText": "Ընթացիկ-Պրոֆեսիոնալ",
"SSE.Views.DocumentHolder.deleteColumnText": "Սյունակ",
"SSE.Views.DocumentHolder.deleteRowText": "Տող",
"SSE.Views.DocumentHolder.deleteTableText": "Աղյուսակ",
@@ -1956,6 +2143,7 @@
"SSE.Views.DocumentHolder.insertColumnRightText": "Սյունակ աջից",
"SSE.Views.DocumentHolder.insertRowAboveText": "Տող վերևում",
"SSE.Views.DocumentHolder.insertRowBelowText": "Ներքևի տող",
+ "SSE.Views.DocumentHolder.latexText": "LaTeX",
"SSE.Views.DocumentHolder.originalSizeText": "Իրական չափ",
"SSE.Views.DocumentHolder.removeHyperlinkText": "Հանել գերհղումը",
"SSE.Views.DocumentHolder.selectColumnText": "Ամբողջ սյունակը",
@@ -2019,7 +2207,7 @@
"SSE.Views.DocumentHolder.tipMarkersStar": "Աստղաձև պարբերակներ",
"SSE.Views.DocumentHolder.topCellText": "Հավասարեցնել վերևից",
"SSE.Views.DocumentHolder.txtAccounting": "Հաշվապահություն",
- "SSE.Views.DocumentHolder.txtAddComment": "Կցել մեկնաբանություն",
+ "SSE.Views.DocumentHolder.txtAddComment": "Ավելացնել մեկնաբանություն",
"SSE.Views.DocumentHolder.txtAddNamedRange": "Սահմանել անունը",
"SSE.Views.DocumentHolder.txtArrange": "Դասավորել",
"SSE.Views.DocumentHolder.txtAscending": "Աճման կարգով",
@@ -2049,9 +2237,9 @@
"SSE.Views.DocumentHolder.txtDistribVert": "Ուղղահայաց բաշխում",
"SSE.Views.DocumentHolder.txtEditComment": "Խմբագրել մեկնաբանությունը",
"SSE.Views.DocumentHolder.txtFilter": "Զտիչ",
- "SSE.Views.DocumentHolder.txtFilterCellColor": "Զտել ըստ բջիջի գույնի",
+ "SSE.Views.DocumentHolder.txtFilterCellColor": "Զտել ըստ վանդակի գույնի",
"SSE.Views.DocumentHolder.txtFilterFontColor": "Զտել ըստ տառատեսակի գույնի",
- "SSE.Views.DocumentHolder.txtFilterValue": "Զտել ըստ ընտրված բջիջի արժեքի",
+ "SSE.Views.DocumentHolder.txtFilterValue": "Զտել ըստ ընտրված վանդակի արժեքի",
"SSE.Views.DocumentHolder.txtFormula": "Տեղադրել գործառույթը",
"SSE.Views.DocumentHolder.txtFraction": "Կոտորակ",
"SSE.Views.DocumentHolder.txtGeneral": "Ընդհանուր",
@@ -2065,6 +2253,7 @@
"SSE.Views.DocumentHolder.txtPaste": "Փակցնել",
"SSE.Views.DocumentHolder.txtPercentage": "Տոկոսային",
"SSE.Views.DocumentHolder.txtReapply": "Կրկին դիմել",
+ "SSE.Views.DocumentHolder.txtRefresh": "Թարմացնել",
"SSE.Views.DocumentHolder.txtRow": "Ամբողջ շարքը",
"SSE.Views.DocumentHolder.txtRowHeight": "Սահմանեք տողի բարձրությունը",
"SSE.Views.DocumentHolder.txtScientific": "Գիտական",
@@ -2084,9 +2273,15 @@
"SSE.Views.DocumentHolder.txtTime": "Ժամանակ",
"SSE.Views.DocumentHolder.txtUngroup": "Ապախմբավորել",
"SSE.Views.DocumentHolder.txtWidth": "Լայնք",
+ "SSE.Views.DocumentHolder.unicodeText": "Յունիկոդ",
"SSE.Views.DocumentHolder.vertAlignText": "Ուղղաձիգ հավասարեցում",
"SSE.Views.ExternalLinksDlg.closeButtonText": "Փակել",
+ "SSE.Views.ExternalLinksDlg.textDelete": "Ընդհատել հղումները",
+ "SSE.Views.ExternalLinksDlg.textDeleteAll": "Ընդհատել բոլոր հղումները",
"SSE.Views.ExternalLinksDlg.textSource": "Աղբյուր",
+ "SSE.Views.ExternalLinksDlg.textUpdate": "Արդիացնել արժեքները",
+ "SSE.Views.ExternalLinksDlg.textUpdateAll": "Արդիացնել բոլորը",
+ "SSE.Views.ExternalLinksDlg.txtTitle": "Արտաքին հղումներ",
"SSE.Views.FieldSettingsDialog.strLayout": "Դասավորություն ",
"SSE.Views.FieldSettingsDialog.strSubtotals": "Ենթագումարներ",
"SSE.Views.FieldSettingsDialog.textReport": "Հաշվետվության ձև",
@@ -2150,6 +2345,7 @@
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Տեղ",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Իրավունքներ ունեցող անձինք",
"SSE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Նյութ",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtTags": "Պիտակներ",
"SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Վերնագիր",
"SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Վերբեռնվել է",
"SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Փոխել մատչման իրավունքները",
@@ -2367,26 +2563,26 @@
"SSE.Views.FormatRulesManagerDlg.text3Below": "3 սով. շեղ. Միջինից ներքև",
"SSE.Views.FormatRulesManagerDlg.textAbove": "Միջինից բարձր",
"SSE.Views.FormatRulesManagerDlg.textApply": "Դիմել",
- "SSE.Views.FormatRulesManagerDlg.textBeginsWith": "Բջջի արժեքը սկսվում է",
+ "SSE.Views.FormatRulesManagerDlg.textBeginsWith": "Վանդակի արժեքը սկսվում է",
"SSE.Views.FormatRulesManagerDlg.textBelow": "Միջինից ցածր",
"SSE.Views.FormatRulesManagerDlg.textBetween": "գտնվում է {0}-ի և {1}-ի միջև",
- "SSE.Views.FormatRulesManagerDlg.textCellValue": "Բջջի արժեքը",
+ "SSE.Views.FormatRulesManagerDlg.textCellValue": "Վանդակի արժեքը",
"SSE.Views.FormatRulesManagerDlg.textColorScale": "Գնահատված գունային սանդղակ",
- "SSE.Views.FormatRulesManagerDlg.textContains": "Բջջի արժեքը պարունակում է",
+ "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.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.textNotContains": "Վանդակի արժեքը չի պարունակում",
"SSE.Views.FormatRulesManagerDlg.textNotContainsBlank": "Վանդակը չի պարունակում դատարկ արժեք",
"SSE.Views.FormatRulesManagerDlg.textNotContainsError": "Վանդակը չի պարունակում սխալ",
"SSE.Views.FormatRulesManagerDlg.textRules": "Կանոններ",
@@ -2442,6 +2638,7 @@
"SSE.Views.FormulaTab.textManual": "Ձեռնադիր",
"SSE.Views.FormulaTab.tipCalculate": "Հաշվարկել",
"SSE.Views.FormulaTab.tipCalculateTheEntireWorkbook": "Հաշվեք ամբողջ աշխատանքային գրքույկը",
+ "SSE.Views.FormulaTab.tipWatch": "Ավելացնել վանդակներ Հետևման պատուհան ցանկում",
"SSE.Views.FormulaTab.txtAdditional": "Հավելյալ",
"SSE.Views.FormulaTab.txtAutosum": "Ինքնագումարում",
"SSE.Views.FormulaTab.txtAutosumTip": "Ամփոփում",
@@ -2450,6 +2647,7 @@
"SSE.Views.FormulaTab.txtFormulaTip": "Տեղադրել գործառույթը",
"SSE.Views.FormulaTab.txtMore": "Ավելի շատ գործառույթներ",
"SSE.Views.FormulaTab.txtRecent": "Վերջերս օգտագործված",
+ "SSE.Views.FormulaTab.txtWatch": "Հետևման պատուհան",
"SSE.Views.FormulaWizard.textAny": "ցանկացած",
"SSE.Views.FormulaWizard.textArgument": "Արգումենտ",
"SSE.Views.FormulaWizard.textFunction": "Ֆունկցիա",
@@ -2540,19 +2738,19 @@
"SSE.Views.ImageSettings.textRotation": "Շրջում ",
"SSE.Views.ImageSettings.textSize": "Չափ",
"SSE.Views.ImageSettings.textWidth": "Լայնք",
- "SSE.Views.ImageSettingsAdvanced.textAbsolute": "Մի շարժվեք կամ չափեք բջիջներով",
- "SSE.Views.ImageSettingsAdvanced.textAlt": "Այլընտրական տեքստ",
+ "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.textOneCell": "Տեղափոխել, բայց չչափել վանդակներով",
"SSE.Views.ImageSettingsAdvanced.textRotation": "Շրջում ",
- "SSE.Views.ImageSettingsAdvanced.textSnap": "Բջիջների խզում",
+ "SSE.Views.ImageSettingsAdvanced.textSnap": "Վանդակի խզում",
"SSE.Views.ImageSettingsAdvanced.textTitle": "Պատկեր - ընդլայնված կարգավորումներ",
- "SSE.Views.ImageSettingsAdvanced.textTwoCell": "Տեղափոխել և չափել բջիջներով",
+ "SSE.Views.ImageSettingsAdvanced.textTwoCell": "Տեղափոխել և չափել վանդակներով",
"SSE.Views.ImageSettingsAdvanced.textVertically": "Ուղղահայաց",
"SSE.Views.LeftMenu.tipAbout": "Ծրագրի մասին",
"SSE.Views.LeftMenu.tipChat": "Զրույց",
@@ -2601,7 +2799,7 @@
"SSE.Views.NamedRangeEditDlg.textDataRange": "Տվյալների տիրույթ",
"SSE.Views.NamedRangeEditDlg.textExistName": "ՍԽԱԼ. Նման անունով միջակայք արդեն գոյություն ունի",
"SSE.Views.NamedRangeEditDlg.textInvalidName": "Անունը պիտի սկսվի տառով կամ ստորագծով և պիտի չունենա անթույլատրելի գրանշաններ։",
- "SSE.Views.NamedRangeEditDlg.textInvalidRange": "ՍԽԱԼ! Անվավեր բջիջների տիրույթ",
+ "SSE.Views.NamedRangeEditDlg.textInvalidRange": "ՍԽԱԼ! Անվավեր վանդակների տիրույթ",
"SSE.Views.NamedRangeEditDlg.textIsLocked": "ՍԽԱԼ. Այս տարրը խմբագրվում է մեկ այլ օգտվողի կողմից:",
"SSE.Views.NamedRangeEditDlg.textName": "Անուն",
"SSE.Views.NamedRangeEditDlg.textReservedName": "Անունը, որը դուք փորձում եք օգտագործել, արդեն նշված է բջջային բանաձևերում: Խնդրում ենք օգտագործել այլ անուն:",
@@ -2790,6 +2988,7 @@
"SSE.Views.PivotTable.tipCreatePivot": "Տեղադրել առանցքային աղյուսակը",
"SSE.Views.PivotTable.tipGrandTotals": "Ցույց տալ կամ թաքցնել ընդհանուր գումարները",
"SSE.Views.PivotTable.tipRefresh": "Թարմացրեք տեղեկատվությունը տվյալների աղբյուրից",
+ "SSE.Views.PivotTable.tipRefreshCurrent": "Արդիացնել տեղեկատվությունը ընթացիկ աղյուսակի տվյալների աղբյուրից",
"SSE.Views.PivotTable.tipSelect": "Ընտրեք ամբողջ առանցքային աղյուսակը",
"SSE.Views.PivotTable.tipSubtotals": "Ցույց տալ կամ թաքցնել ենթագումարները",
"SSE.Views.PivotTable.txtCreate": "Զետեղել աղյուսակ",
@@ -2799,7 +2998,11 @@
"SSE.Views.PivotTable.txtGroupPivot_Medium": "Միջին",
"SSE.Views.PivotTable.txtPivotTable": "Առանցքային աղյուսակ",
"SSE.Views.PivotTable.txtRefresh": "Թարմացնել",
+ "SSE.Views.PivotTable.txtRefreshAll": "Թարմացնել բոլորը",
"SSE.Views.PivotTable.txtSelect": "Ընտրել",
+ "SSE.Views.PivotTable.txtTable_PivotStyleDark": "Առանցքաղյուսակի ոճը մուգ",
+ "SSE.Views.PivotTable.txtTable_PivotStyleLight": "Առանցքաղյուսակի ոճը բաց",
+ "SSE.Views.PivotTable.txtTable_PivotStyleMedium": "Առանցքաղյուսակի ոճը միջին",
"SSE.Views.PrintSettings.btnDownload": "Պահպանել և ներբեռնել",
"SSE.Views.PrintSettings.btnPrint": "Պահպանել և տպել",
"SSE.Views.PrintSettings.strBottom": "Ներքև",
@@ -2898,7 +3101,7 @@
"SSE.Views.ProtectDialog.txtDelCols": "Ջնջել սյունակները",
"SSE.Views.ProtectDialog.txtDelRows": "Ջնջել տողերը",
"SSE.Views.ProtectDialog.txtEmpty": "Պահանջվում է լրացնել այս դաշտը:",
- "SSE.Views.ProtectDialog.txtFormatCells": "Ձևաչափեք բջիջները",
+ "SSE.Views.ProtectDialog.txtFormatCells": "Ձևաչափեք վանդակները",
"SSE.Views.ProtectDialog.txtFormatCols": "Ձևաչափեք սյունակները",
"SSE.Views.ProtectDialog.txtFormatRows": "Ձևաչափեք տողերը",
"SSE.Views.ProtectDialog.txtIncorrectPwd": "Հաստատման գաղտնաբառը նույնը չէ",
@@ -2945,7 +3148,7 @@
"SSE.Views.RemoveDuplicatesDialog.textHeaders": "Իմ տվյալները վերնագրեր ունեն",
"SSE.Views.RemoveDuplicatesDialog.textSelectAll": "Ընտրել բոլորը",
"SSE.Views.RemoveDuplicatesDialog.txtTitle": "Հեռացրեք կրկնօրինակները",
- "SSE.Views.RightMenu.txtCellSettings": "Բջջային կարգավորումներ",
+ "SSE.Views.RightMenu.txtCellSettings": "Վանդակի կարգավորումներ",
"SSE.Views.RightMenu.txtChartSettings": "Գծապատկերի կարգավորումներ",
"SSE.Views.RightMenu.txtImageSettings": "Նկարի կարգավորումներ",
"SSE.Views.RightMenu.txtParagraphSettings": "Պարբերության կարգավորումներ",
@@ -3028,8 +3231,8 @@
"SSE.Views.ShapeSettings.txtWood": "Փայտ",
"SSE.Views.ShapeSettingsAdvanced.strColumns": "Սյունակներ",
"SSE.Views.ShapeSettingsAdvanced.strMargins": "Տեքստի գունալցում",
- "SSE.Views.ShapeSettingsAdvanced.textAbsolute": "Մի շարժվեք կամ չափեք բջիջներով",
- "SSE.Views.ShapeSettingsAdvanced.textAlt": "Այլընտրական տեքստ",
+ "SSE.Views.ShapeSettingsAdvanced.textAbsolute": "Մի շարժվեք կամ չափեք վանդակներով",
+ "SSE.Views.ShapeSettingsAdvanced.textAlt": "Այլընտրանքային տեքստ",
"SSE.Views.ShapeSettingsAdvanced.textAltDescription": "Նկարագրություն",
"SSE.Views.ShapeSettingsAdvanced.textAltTip": "Տեսողական առարկաների այլընտրական տեքստային ներկայացում, որը ընթերցվելու է տեսողության կամ մտավոր խանգարումներով մարդկանց համար՝ օգնելու նրանց ավելի լավ հասկանալ, թե ինչ տեղեկատվություն կա նկարի, պատկերի, գծապատկերի կամ աղյուսակի վրա։",
"SSE.Views.ShapeSettingsAdvanced.textAltTitle": "Վերնագիր",
@@ -3053,20 +3256,20 @@
"SSE.Views.ShapeSettingsAdvanced.textLeft": "Ձախ",
"SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Տողի ոճ",
"SSE.Views.ShapeSettingsAdvanced.textMiter": "Բաղադրյալ",
- "SSE.Views.ShapeSettingsAdvanced.textOneCell": "Տեղափոխել, բայց չչափել բջիջներով",
+ "SSE.Views.ShapeSettingsAdvanced.textOneCell": "Տեղափոխել, բայց չչափել վանդակներով",
"SSE.Views.ShapeSettingsAdvanced.textOverflow": "Թույլ տալ, որ տեքստը լցվի",
"SSE.Views.ShapeSettingsAdvanced.textResizeFit": "Չափափոխել ձևը՝ տեքստին համապատասխանելու համար",
"SSE.Views.ShapeSettingsAdvanced.textRight": "Աջ",
"SSE.Views.ShapeSettingsAdvanced.textRotation": "Շրջում ",
"SSE.Views.ShapeSettingsAdvanced.textRound": "Կլոր",
"SSE.Views.ShapeSettingsAdvanced.textSize": "Չափ",
- "SSE.Views.ShapeSettingsAdvanced.textSnap": "Բջիջների խզում",
+ "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.textTwoCell": "Տեղափոխել և չափել վանդակներով",
"SSE.Views.ShapeSettingsAdvanced.textVertically": "Ուղղահայաց",
"SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "Գծեր և սլաքներ",
"SSE.Views.ShapeSettingsAdvanced.textWidth": "Լայնք",
@@ -3127,7 +3330,7 @@
"SSE.Views.SlicerSettingsAdvanced.strStyle": "Ոճ",
"SSE.Views.SlicerSettingsAdvanced.strStyleSize": "Ոճ և չափս",
"SSE.Views.SlicerSettingsAdvanced.strWidth": "Լայնք",
- "SSE.Views.SlicerSettingsAdvanced.textAbsolute": "Մի շարժվեք կամ չափեք բջիջներով",
+ "SSE.Views.SlicerSettingsAdvanced.textAbsolute": "Մի շարժվեք կամ չափեք վանդակներով",
"SSE.Views.SlicerSettingsAdvanced.textAlt": "Այլընտրանքային տեքստ",
"SSE.Views.SlicerSettingsAdvanced.textAltDescription": "Նկարագրություն",
"SSE.Views.SlicerSettingsAdvanced.textAltTip": "Տեսողական օբյեկտի տեղեկատվության այլընտրանքային տեքստի վրա հիմնված ներկայացում, որը կկարդացվի տեսողության կամ ճանաչողական խանգարումներ ունեցող մարդկանց՝ օգնելու նրանց ավելի լավ հասկանալ, թե ինչ տեղեկատվություն կա պատկերի, ինքնաձևի, գծապատկերի կամ աղյուսակի վրա:",
@@ -3142,13 +3345,13 @@
"SSE.Views.SlicerSettingsAdvanced.textName": "Անուն",
"SSE.Views.SlicerSettingsAdvanced.textNewOld": "ամենանորից ամենահին",
"SSE.Views.SlicerSettingsAdvanced.textOldNew": "ամենահինը նորագույնից",
- "SSE.Views.SlicerSettingsAdvanced.textOneCell": "Տեղափոխել, բայց չչափել բջիջներով",
+ "SSE.Views.SlicerSettingsAdvanced.textOneCell": "Տեղափոխել, բայց չչափել վանդակներով",
"SSE.Views.SlicerSettingsAdvanced.textSmallLarge": "ամենափոքրից ամենամեծը",
- "SSE.Views.SlicerSettingsAdvanced.textSnap": "Բջիջների խզում",
+ "SSE.Views.SlicerSettingsAdvanced.textSnap": "Վանդակի խզում",
"SSE.Views.SlicerSettingsAdvanced.textSort": "Տեսակավորել",
"SSE.Views.SlicerSettingsAdvanced.textSourceName": "Աղբյուրի անվանումը",
"SSE.Views.SlicerSettingsAdvanced.textTitle": "Շերտազտիչ- Ընդլայնված կարգավորումներ",
- "SSE.Views.SlicerSettingsAdvanced.textTwoCell": "Տեղափոխել և չափել բջիջներով",
+ "SSE.Views.SlicerSettingsAdvanced.textTwoCell": "Տեղափոխել և չափել վանդակներով",
"SSE.Views.SlicerSettingsAdvanced.textZA": "Ֆ-ից Ա",
"SSE.Views.SlicerSettingsAdvanced.txtEmpty": "Պահանջվում է լրացնել այս դաշտը:",
"SSE.Views.SortDialog.errorEmpty": "Տեսակավորման բոլոր չափանիշերը պետք է պարունակեն հատկորոշված մեկ տող կամ սյունակ: Ստուգեք ընտրված չափանիշը և կրկին փորձեք:",
@@ -3163,7 +3366,7 @@
"SSE.Views.SortDialog.textAuto": "Ինքնաշխատ",
"SSE.Views.SortDialog.textAZ": "Ա-ից Ֆ",
"SSE.Views.SortDialog.textBelow": "ներքևում",
- "SSE.Views.SortDialog.textCellColor": "Բջջի գույնը",
+ "SSE.Views.SortDialog.textCellColor": "Վանդակի գույնը",
"SSE.Views.SortDialog.textColumn": "Սյունակ",
"SSE.Views.SortDialog.textCopy": "Պատճենման մակարդակ",
"SSE.Views.SortDialog.textDelete": "Ջնջել մակարդակը",
@@ -3321,7 +3524,7 @@
"SSE.Views.TableSettings.textTemplate": "Ընտրել ձևանմուշից",
"SSE.Views.TableSettings.textTotal": "Ընդամենը",
"SSE.Views.TableSettings.warnLongOperation": "Գործողությունը, որը պատրաստվում եք կատարել, կարող է բավականին շատ ժամանակ պահանջել ավարտելու համար: Իսկապե՞ս ուզում եք շարունակել:",
- "SSE.Views.TableSettingsAdvanced.textAlt": "Այլընտրական տեքստ",
+ "SSE.Views.TableSettingsAdvanced.textAlt": "Այլընտրանքային տեքստ",
"SSE.Views.TableSettingsAdvanced.textAltDescription": "Նկարագրություն",
"SSE.Views.TableSettingsAdvanced.textAltTip": "Տեսողական օբյեկտի տեղեկատվության այլընտրանքային տեքստի վրա հիմնված ներկայացում, որը կկարդացվի տեսողության կամ ճանաչողական խանգարումներ ունեցող մարդկանց՝ օգնելու նրանց ավելի լավ հասկանալ, թե ինչ տեղեկատվություն կա պատկերի, ինքնաձևի, գծապատկերի կամ աղյուսակի վրա:",
"SSE.Views.TableSettingsAdvanced.textAltTitle": "Վերնագիր",
@@ -3330,6 +3533,9 @@
"SSE.Views.TableSettingsAdvanced.txtGroupTable_Dark": "Մութ",
"SSE.Views.TableSettingsAdvanced.txtGroupTable_Light": "Լույս",
"SSE.Views.TableSettingsAdvanced.txtGroupTable_Medium": "Միջին",
+ "SSE.Views.TableSettingsAdvanced.txtTable_TableStyleDark": "Սեղանի ոճը մուգ",
+ "SSE.Views.TableSettingsAdvanced.txtTable_TableStyleLight": "Սեղանի ոճի լույս",
+ "SSE.Views.TableSettingsAdvanced.txtTable_TableStyleMedium": "Սեղանի ոճը միջին",
"SSE.Views.TextArtSettings.strBackground": "Ֆոնի գույն",
"SSE.Views.TextArtSettings.strColor": "Գույն",
"SSE.Views.TextArtSettings.strFill": "Լցնել",
@@ -3538,16 +3744,19 @@
"SSE.Views.Toolbar.tipInsertChart": "Զետեղել գծապատկեր",
"SSE.Views.Toolbar.tipInsertChartSpark": "Զետեղել գծապատկեր",
"SSE.Views.Toolbar.tipInsertEquation": "Դնել հավասարում",
+ "SSE.Views.Toolbar.tipInsertHorizontalText": "Զետեղել հորիզոնական գրվածքի տուփ",
"SSE.Views.Toolbar.tipInsertHyperlink": "Դնել գերհղում",
"SSE.Views.Toolbar.tipInsertImage": "Զետեղել նկար",
- "SSE.Views.Toolbar.tipInsertOpt": "Տեղադրեք բջիջներ",
+ "SSE.Views.Toolbar.tipInsertOpt": "Զետեղել վանդակներ",
"SSE.Views.Toolbar.tipInsertShape": "Զետեղել ինքնաձև",
"SSE.Views.Toolbar.tipInsertSlicer": "Տեղադրել կտրիչ",
+ "SSE.Views.Toolbar.tipInsertSmartArt": "Զետեղել SmartArt",
"SSE.Views.Toolbar.tipInsertSpark": "Զետեղել կայծագիծը",
"SSE.Views.Toolbar.tipInsertSymbol": "Զետեղել նշան",
"SSE.Views.Toolbar.tipInsertTable": "Զետեղել աղյուսակ",
"SSE.Views.Toolbar.tipInsertText": "Դնել տեքստատուփ",
"SSE.Views.Toolbar.tipInsertTextart": "Դնել տեքստարվեստից",
+ "SSE.Views.Toolbar.tipInsertVerticalText": "Զետեղել ուղղահայաց գրվածքի տուփ",
"SSE.Views.Toolbar.tipMerge": "Միաձուլել և կենտրոնացնել",
"SSE.Views.Toolbar.tipNone": "Ոչ մեկը",
"SSE.Views.Toolbar.tipNumFormat": "Թվերի ձևաչափ",
@@ -3710,7 +3919,9 @@
"SSE.Views.ViewTab.textGridlines": "Ցանցագծեր",
"SSE.Views.ViewTab.textHeadings": "Վերնագրեր",
"SSE.Views.ViewTab.textInterfaceTheme": "Ինտերֆեյսի թեմա",
+ "SSE.Views.ViewTab.textLeftMenu": "Ձախ վահանակ",
"SSE.Views.ViewTab.textManager": "Դիտել կառավարիչը",
+ "SSE.Views.ViewTab.textRightMenu": "Աջ վահանակ",
"SSE.Views.ViewTab.textShowFrozenPanesShadow": "Ցույց տալ սառեցված ապակիների ստվերը",
"SSE.Views.ViewTab.textUnFreeze": "Ապասառեցնել փեղկերը",
"SSE.Views.ViewTab.textZeros": "Ցույց տալ զրոները",
@@ -3721,17 +3932,22 @@
"SSE.Views.ViewTab.tipInterfaceTheme": "Ինտերֆեյսի ոճ",
"SSE.Views.ViewTab.tipSheetView": "Թերթի տեսք",
"SSE.Views.WatchDialog.closeButtonText": "Փակել",
+ "SSE.Views.WatchDialog.textAdd": "Հավելել ժամացույց",
+ "SSE.Views.WatchDialog.textBook": "Գիրք",
"SSE.Views.WatchDialog.textCell": "Վանդակ",
+ "SSE.Views.WatchDialog.textDelete": "Ջնջել ժամացույցը",
+ "SSE.Views.WatchDialog.textDeleteAll": "Ջնջել բոլորը",
"SSE.Views.WatchDialog.textFormula": "Բանաձև ",
"SSE.Views.WatchDialog.textName": "Անուն",
"SSE.Views.WatchDialog.textSheet": "Թերթ",
"SSE.Views.WatchDialog.textValue": "Արժեք",
+ "SSE.Views.WatchDialog.txtTitle": "Հետևման պատուհան",
"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.txtLockedCell": "Կողպված վանդակ",
"SSE.Views.WBProtection.txtLockedShape": "Ձևը կողպված է",
"SSE.Views.WBProtection.txtLockedText": "Կողպեք տեքստը",
"SSE.Views.WBProtection.txtProtectSheet": "Պաշտպանել թերթը",
diff --git a/apps/spreadsheeteditor/main/locale/id.json b/apps/spreadsheeteditor/main/locale/id.json
index 890728308..75a01d6e5 100644
--- a/apps/spreadsheeteditor/main/locale/id.json
+++ b/apps/spreadsheeteditor/main/locale/id.json
@@ -100,6 +100,165 @@
"Common.define.conditionalData.textUnique": "Unik",
"Common.define.conditionalData.textValue": "Nilai adalah",
"Common.define.conditionalData.textYesterday": "Kemarin",
+ "Common.define.smartArt.textAccentedPicture": "Gambar Beraksen",
+ "Common.define.smartArt.textAccentProcess": "Proses Aksen",
+ "Common.define.smartArt.textAlternatingFlow": "Alur Bolak-Balik",
+ "Common.define.smartArt.textAlternatingHexagons": "Segi Enam Bolak-Balik",
+ "Common.define.smartArt.textAlternatingPictureBlocks": "Blok Gambar Bolak-Balik",
+ "Common.define.smartArt.textAlternatingPictureCircles": "Lingkaran Gambar Bolak-Balik",
+ "Common.define.smartArt.textArchitectureLayout": "Tata Letak Arsitektur",
+ "Common.define.smartArt.textArrowRibbon": "Pita Anak Panah",
+ "Common.define.smartArt.textAscendingPictureAccentProcess": "Proses Akses Gambar Naik",
+ "Common.define.smartArt.textBalance": "Seimbang",
+ "Common.define.smartArt.textBasicBendingProcess": "Proses Meliuk Dasar",
+ "Common.define.smartArt.textBasicBlockList": "Daftar Blok Dasar",
+ "Common.define.smartArt.textBasicChevronProcess": "Proses Chevron Dasar",
+ "Common.define.smartArt.textBasicCycle": "Lingkaran Dasar",
+ "Common.define.smartArt.textBasicMatrix": "Matriks Dasar",
+ "Common.define.smartArt.textBasicPie": "Pai Dasar",
+ "Common.define.smartArt.textBasicProcess": "Proses Dasar",
+ "Common.define.smartArt.textBasicPyramid": "Piramida Dasar",
+ "Common.define.smartArt.textBasicRadial": "Radial Dasar",
+ "Common.define.smartArt.textBasicTarget": "Target Dasar",
+ "Common.define.smartArt.textBasicTimeline": "Garis Waktu Dasar",
+ "Common.define.smartArt.textBasicVenn": "Venn Dasar",
+ "Common.define.smartArt.textBendingPictureAccentList": "Daftar Akses Gambar Meliuk",
+ "Common.define.smartArt.textBendingPictureBlocks": "Blok Gambar Meliuk",
+ "Common.define.smartArt.textBendingPictureCaption": "Keterangan Gambar Meliuk",
+ "Common.define.smartArt.textBendingPictureCaptionList": "Daftar Keterangan Gambar Meliuk",
+ "Common.define.smartArt.textBendingPictureSemiTranparentText": "Teks Semi-Transparan Gambar Meliuk",
+ "Common.define.smartArt.textBlockCycle": "Lingkaran Blok",
+ "Common.define.smartArt.textBubblePictureList": "Daftar Gambar Gelembung",
+ "Common.define.smartArt.textCaptionedPictures": "Gambar Dengan Keterangan",
+ "Common.define.smartArt.textChevronAccentProcess": "Proses Aksen Chevron",
+ "Common.define.smartArt.textChevronList": "Daftar Chevron",
+ "Common.define.smartArt.textCircleAccentTimeline": "Garis Waktu Aksen Lingkaran",
+ "Common.define.smartArt.textCircleArrowProcess": "Proses Panah Lingkaran",
+ "Common.define.smartArt.textCirclePictureHierarchy": "Hierarki Gambar Lingkaran",
+ "Common.define.smartArt.textCircleProcess": "Proses Lingkaran",
+ "Common.define.smartArt.textCircleRelationship": "Hubungan Lingkaran",
+ "Common.define.smartArt.textCircularBendingProcess": "Proses Melingkar",
+ "Common.define.smartArt.textCircularPictureCallout": "Panggilan Gambar Melingkar",
+ "Common.define.smartArt.textClosedChevronProcess": "Proses Chevron Tertutup",
+ "Common.define.smartArt.textContinuousArrowProcess": "Proses Panah Berkelanjutan",
+ "Common.define.smartArt.textContinuousBlockProcess": "Proses Blok Berkelanjutan",
+ "Common.define.smartArt.textContinuousCycle": "Siklus Berkelanjutan",
+ "Common.define.smartArt.textContinuousPictureList": "Daftar Gambar Berkelanjutan",
+ "Common.define.smartArt.textConvergingArrows": "Panah Memusat",
+ "Common.define.smartArt.textConvergingRadial": "Radial Memusat",
+ "Common.define.smartArt.textConvergingText": "Teks Memusat",
+ "Common.define.smartArt.textCounterbalanceArrows": "Panah Pengimbang",
+ "Common.define.smartArt.textCycle": "Siklus",
+ "Common.define.smartArt.textCycleMatrix": "Matriks Siklus",
+ "Common.define.smartArt.textDescendingBlockList": "Daftar Blok Turun",
+ "Common.define.smartArt.textDescendingProcess": "Proses Menurun",
+ "Common.define.smartArt.textDetailedProcess": "Proses Terperinci",
+ "Common.define.smartArt.textDivergingArrows": "Panah Menyebar",
+ "Common.define.smartArt.textDivergingRadial": "Radial Menyebar",
+ "Common.define.smartArt.textEquation": "Persamaan",
+ "Common.define.smartArt.textFramedTextPicture": "Gambar Teks Terbingkai",
+ "Common.define.smartArt.textFunnel": "Corong",
+ "Common.define.smartArt.textGear": "Gerigi",
+ "Common.define.smartArt.textGridMatrix": "Matriks Kisi",
+ "Common.define.smartArt.textGroupedList": "Daftar yang Dikelompokkan",
+ "Common.define.smartArt.textHalfCircleOrganizationChart": "Bagan Organisasi Setengah Lingkaran",
+ "Common.define.smartArt.textHexagonCluster": "Kluster Segi Enam",
+ "Common.define.smartArt.textHexagonRadial": "Radial Segi Enam",
+ "Common.define.smartArt.textHierarchy": "Hierarki",
+ "Common.define.smartArt.textHierarchyList": "Daftar Hierarki",
+ "Common.define.smartArt.textHorizontalBulletList": "Daftar Poin Horizontal",
+ "Common.define.smartArt.textHorizontalHierarchy": "Hierarki Horizontal",
+ "Common.define.smartArt.textHorizontalLabeledHierarchy": "Hierarki Berlabel Horizontal",
+ "Common.define.smartArt.textHorizontalMultiLevelHierarchy": "Hierarki Multi-Level Horizontal",
+ "Common.define.smartArt.textHorizontalOrganizationChart": "Bagan Organisasi Horizontal",
+ "Common.define.smartArt.textHorizontalPictureList": "Daftar Gambar Horizontal",
+ "Common.define.smartArt.textIncreasingArrowProcess": "Proses Panah Meningkat",
+ "Common.define.smartArt.textIncreasingCircleProcess": "Proses Lingkaran Meningkat",
+ "Common.define.smartArt.textInterconnectedBlockProcess": "Proses Blok yang Saling Terhubung",
+ "Common.define.smartArt.textInterconnectedRings": "Cincin yang Saling Terhubung",
+ "Common.define.smartArt.textInvertedPyramid": "Piramida Terbalik",
+ "Common.define.smartArt.textLabeledHierarchy": "Hierarki Berlabel",
+ "Common.define.smartArt.textLinearVenn": "Venn Linear",
+ "Common.define.smartArt.textLinedList": "Daftar Bergaris",
+ "Common.define.smartArt.textList": "Daftar",
+ "Common.define.smartArt.textMatrix": "Matriks",
+ "Common.define.smartArt.textMultidirectionalCycle": "Siklus Multiarah",
+ "Common.define.smartArt.textNameAndTitleOrganizationChart": "Bagan Organisasi Nama dan Jabatan",
+ "Common.define.smartArt.textNestedTarget": "Target Bertumpuk",
+ "Common.define.smartArt.textNondirectionalCycle": "Siklus Tanpa Arah",
+ "Common.define.smartArt.textOpposingArrows": "Panah Berlawanan",
+ "Common.define.smartArt.textOpposingIdeas": "Ide Berlawanan",
+ "Common.define.smartArt.textOrganizationChart": "Bagan Organisasi",
+ "Common.define.smartArt.textOther": "Lainnya",
+ "Common.define.smartArt.textPhasedProcess": "Proses Berfase",
+ "Common.define.smartArt.textPicture": "Gambar",
+ "Common.define.smartArt.textPictureAccentBlocks": "Blok Aksen Gambar",
+ "Common.define.smartArt.textPictureAccentList": "Daftar Aksen Gambar",
+ "Common.define.smartArt.textPictureAccentProcess": "Proses Aksen Gambar",
+ "Common.define.smartArt.textPictureCaptionList": "Daftar Keterangan Gambar",
+ "Common.define.smartArt.textPictureFrame": "PictureFrame",
+ "Common.define.smartArt.textPictureGrid": "Kisi Gambar",
+ "Common.define.smartArt.textPictureLineup": "Deretan Gambar",
+ "Common.define.smartArt.textPictureOrganizationChart": "Bagan Organisasi Gambar",
+ "Common.define.smartArt.textPictureStrips": "Jalur Gambar",
+ "Common.define.smartArt.textPieProcess": "Proses Pai",
+ "Common.define.smartArt.textPlusAndMinus": "Plus dan Minus",
+ "Common.define.smartArt.textProcess": "Proses",
+ "Common.define.smartArt.textProcessArrows": "Panah Proses",
+ "Common.define.smartArt.textProcessList": "Daftar Proses",
+ "Common.define.smartArt.textPyramid": "Piramida",
+ "Common.define.smartArt.textPyramidList": "Daftar Piramida",
+ "Common.define.smartArt.textRadialCluster": "Kluster Radial",
+ "Common.define.smartArt.textRadialCycle": "Siklus Radial",
+ "Common.define.smartArt.textRadialList": "Daftar Radial",
+ "Common.define.smartArt.textRadialPictureList": "Daftar Gambar Radial",
+ "Common.define.smartArt.textRadialVenn": "Venn Radial",
+ "Common.define.smartArt.textRandomToResultProcess": "Proses Acak ke Hasil",
+ "Common.define.smartArt.textRelationship": "Hubungan",
+ "Common.define.smartArt.textRepeatingBendingProcess": "Proses Pengarahan Berulang",
+ "Common.define.smartArt.textReverseList": "Daftar Terbalik",
+ "Common.define.smartArt.textSegmentedCycle": "Siklus Bersegmen",
+ "Common.define.smartArt.textSegmentedProcess": "Proses Bersegmen",
+ "Common.define.smartArt.textSegmentedPyramid": "Piramida Bersegmen",
+ "Common.define.smartArt.textSnapshotPictureList": "Daftar Gambar Snapshot",
+ "Common.define.smartArt.textSpiralPicture": "Gambar Spiral",
+ "Common.define.smartArt.textSquareAccentList": "Daftar Aksen Persegi",
+ "Common.define.smartArt.textStackedList": "Daftar Bertumpuk",
+ "Common.define.smartArt.textStackedVenn": "Venn Bertumpuk",
+ "Common.define.smartArt.textStaggeredProcess": "Proses Pengaturan",
+ "Common.define.smartArt.textStepDownProcess": "Proses Mundur",
+ "Common.define.smartArt.textStepUpProcess": "Proses Meningkat",
+ "Common.define.smartArt.textSubStepProcess": "Proses Sub-Langkah",
+ "Common.define.smartArt.textTabbedArc": "Busur Bertab",
+ "Common.define.smartArt.textTableHierarchy": "Hierarki Tabel",
+ "Common.define.smartArt.textTableList": "Daftar Tabel",
+ "Common.define.smartArt.textTabList": "Daftar Tab",
+ "Common.define.smartArt.textTargetList": "Daftar Target",
+ "Common.define.smartArt.textTextCycle": "Siklus Teks",
+ "Common.define.smartArt.textThemePictureAccent": "Aksen Gambar Tema",
+ "Common.define.smartArt.textThemePictureAlternatingAccent": "Aksen Bolak-Balik Gambar Tema",
+ "Common.define.smartArt.textThemePictureGrid": "Kisi Gambar Tema",
+ "Common.define.smartArt.textTitledMatrix": "Matriks Berjudul",
+ "Common.define.smartArt.textTitledPictureAccentList": "Daftar Aksen Gambar Berjudul",
+ "Common.define.smartArt.textTitledPictureBlocks": "Blok Gambar Berjudul",
+ "Common.define.smartArt.textTitlePictureLineup": "Deretan Gambar Judul",
+ "Common.define.smartArt.textTrapezoidList": "Daftar Trapesium",
+ "Common.define.smartArt.textUpwardArrow": "Panah ke Atas",
+ "Common.define.smartArt.textVaryingWidthList": "Daftar dengan Lebar Bervariasi",
+ "Common.define.smartArt.textVerticalAccentList": "Daftar Aksen Vertikal",
+ "Common.define.smartArt.textVerticalArrowList": "Daftar Panah Vertikal",
+ "Common.define.smartArt.textVerticalBendingProcess": "Arah Proses Vertikal",
+ "Common.define.smartArt.textVerticalBlockList": "Daftar Blok Vertikal",
+ "Common.define.smartArt.textVerticalBoxList": "Daftar Kotak Vertikal",
+ "Common.define.smartArt.textVerticalBracketList": "Daftar Tanda Kurung Vertikal",
+ "Common.define.smartArt.textVerticalBulletList": "Daftar Poin Vertikal",
+ "Common.define.smartArt.textVerticalChevronList": "Daftar Chevron Vertikal",
+ "Common.define.smartArt.textVerticalCircleList": "Daftar Lingkaran Vertikal",
+ "Common.define.smartArt.textVerticalCurvedList": "Daftar Kurva Vertikal",
+ "Common.define.smartArt.textVerticalEquation": "Persamaan Vertikal",
+ "Common.define.smartArt.textVerticalPictureAccentList": "Daftar Aksen Gambar Vertikal",
+ "Common.define.smartArt.textVerticalPictureList": "Daftar Gambar Vertikal",
+ "Common.define.smartArt.textVerticalProcess": "Proses Vertikal",
"Common.Translation.textMoreButton": "Lainnya",
"Common.Translation.warnFileLocked": "File sedang diedit di aplikasi lain. Anda bisa melanjutkan edit dan menyimpannya sebagai salinan.",
"Common.Translation.warnFileLockedBtnEdit": "Buat salinan",
@@ -167,7 +326,7 @@
"Common.Views.AutoCorrectDialog.textAdd": "Tambahkan",
"Common.Views.AutoCorrectDialog.textApplyAsWork": "Terapkan saat anda bekerja",
"Common.Views.AutoCorrectDialog.textAutoCorrect": "AutoCorrect",
- "Common.Views.AutoCorrectDialog.textAutoFormat": "AutoFormat Sesuai yang Anda Mau",
+ "Common.Views.AutoCorrectDialog.textAutoFormat": "AutoFormat sambil Anda mengetik",
"Common.Views.AutoCorrectDialog.textBy": "oleh",
"Common.Views.AutoCorrectDialog.textDelete": "Hapus",
"Common.Views.AutoCorrectDialog.textHyperlink": "Internet dan jalur jaringan dengan hyperlink.",
@@ -197,7 +356,7 @@
"Common.Views.Comments.mniPositionDesc": "Dari bawah",
"Common.Views.Comments.textAdd": "Tambahkan",
"Common.Views.Comments.textAddComment": "Tambahkan Komentar",
- "Common.Views.Comments.textAddCommentToDoc": "Tambahkan Komentar untuk Dokumen",
+ "Common.Views.Comments.textAddCommentToDoc": "Tambahkan komentar untuk dokumen",
"Common.Views.Comments.textAddReply": "Tambahkan Balasan",
"Common.Views.Comments.textAll": "Semua",
"Common.Views.Comments.textAnonym": "Tamu",
@@ -356,20 +515,20 @@
"Common.Views.ReviewChanges.txtChat": "Chat",
"Common.Views.ReviewChanges.txtClose": "Tutup",
"Common.Views.ReviewChanges.txtCoAuthMode": "Mode Edit Bersama",
- "Common.Views.ReviewChanges.txtCommentRemAll": "Hilangkan Semua Komentar",
- "Common.Views.ReviewChanges.txtCommentRemCurrent": "Hilangkan Komentar Saat Ini",
- "Common.Views.ReviewChanges.txtCommentRemMy": "Hilangkan Komentar Saya",
- "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Hilangkan Komentar Saya Saat Ini",
+ "Common.Views.ReviewChanges.txtCommentRemAll": "Hilangkan semua komentar",
+ "Common.Views.ReviewChanges.txtCommentRemCurrent": "Hilangkan komentar saat ini",
+ "Common.Views.ReviewChanges.txtCommentRemMy": "Hilangkan komentar saya",
+ "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Hilangkan komentar saya saat ini",
"Common.Views.ReviewChanges.txtCommentRemove": "Hapus",
"Common.Views.ReviewChanges.txtCommentResolve": "Selesaikan",
- "Common.Views.ReviewChanges.txtCommentResolveAll": "Selesaikan Semua Komentar",
- "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Selesaikan Komentar Saat Ini",
- "Common.Views.ReviewChanges.txtCommentResolveMy": "Selesaikan Komentar Saya",
- "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Selesaikan Komentar Saya Saat Ini",
+ "Common.Views.ReviewChanges.txtCommentResolveAll": "Selesaikan semua komentar",
+ "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Selesaikan komentar saat ini",
+ "Common.Views.ReviewChanges.txtCommentResolveMy": "Selesaikan komentar saya",
+ "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Selesaikan komentar saya saat ini",
"Common.Views.ReviewChanges.txtDocLang": "Bahasa",
"Common.Views.ReviewChanges.txtFinal": "Semua perubahan diterima (Preview)",
"Common.Views.ReviewChanges.txtFinalCap": "Final",
- "Common.Views.ReviewChanges.txtHistory": "Riwayat Versi",
+ "Common.Views.ReviewChanges.txtHistory": "Riwayat versi",
"Common.Views.ReviewChanges.txtMarkup": "Semua perubahan (Editing)",
"Common.Views.ReviewChanges.txtMarkupCap": "Markup",
"Common.Views.ReviewChanges.txtNext": "Selanjutnya",
@@ -389,6 +548,7 @@
"Common.Views.ReviewPopover.textCancel": "Batalkan",
"Common.Views.ReviewPopover.textClose": "Tutup",
"Common.Views.ReviewPopover.textEdit": "OK",
+ "Common.Views.ReviewPopover.textEnterComment": "Tuliskan komentar Anda di sini",
"Common.Views.ReviewPopover.textMention": "+mention akan memberikan akses ke dokumen dan mengirimkan email",
"Common.Views.ReviewPopover.textMentionNotify": "+mention akan mengingatkan user lewat email",
"Common.Views.ReviewPopover.textOpenAgain": "Buka Lagi",
@@ -493,8 +653,9 @@
"SSE.Controllers.DataTab.textColumns": "Kolom",
"SSE.Controllers.DataTab.textEmptyUrl": "Anda perlu melengkapkan URL.",
"SSE.Controllers.DataTab.textRows": "Baris",
- "SSE.Controllers.DataTab.textWizard": "Teks ke Kolom",
+ "SSE.Controllers.DataTab.textWizard": "Teks ke kolom",
"SSE.Controllers.DataTab.txtDataValidation": "Validasi data",
+ "SSE.Controllers.DataTab.txtErrorExternalLink": "Kesalahan: pemutakhiran gagal",
"SSE.Controllers.DataTab.txtExpand": "Perluas",
"SSE.Controllers.DataTab.txtExpandRemDuplicates": "Data di sebelah pilihan tidak akan dihilangkan. Apakah Anda ingin memperluas pilihan untuk menyertakan data yang berdekatan atau lanjut sortasi dengan hanya sel yang dipilih?",
"SSE.Controllers.DataTab.txtExtendDataValidation": "Pilihan berisi beberapa sel tanpa pengaturan Validasi Data. Apakah Anda ingin memperluas Validasi Data ke sel ini?",
@@ -522,8 +683,8 @@
"SSE.Controllers.DocumentHolder.textChangeColumnWidth": "Lebar Kolom {0} simbol ({1} piksel)",
"SSE.Controllers.DocumentHolder.textChangeRowHeight": "Tinggi Baris {0} points ({1} pixels)",
"SSE.Controllers.DocumentHolder.textCtrlClick": "Klik link untuk membuka atau klik dan tahan tombol mouse untuk memilih sel.",
- "SSE.Controllers.DocumentHolder.textInsertLeft": "Sisipkan Kiri",
- "SSE.Controllers.DocumentHolder.textInsertTop": "Sisipkan Atas",
+ "SSE.Controllers.DocumentHolder.textInsertLeft": "Sisipkan kolom ke sisi kiri",
+ "SSE.Controllers.DocumentHolder.textInsertTop": "Sisipkan baris di atas",
"SSE.Controllers.DocumentHolder.textPasteSpecial": "Paste khusus",
"SSE.Controllers.DocumentHolder.textStopExpand": "Stop memperluas tabel otomatis",
"SSE.Controllers.DocumentHolder.textSym": "sym",
@@ -695,6 +856,7 @@
"SSE.Controllers.LeftMenu.warnDownloadAs": "Jika Anda lanjut simpan dengan format ini, semua fitur kecuali teks akan hilang. Apakah Anda ingin melanjutkan?",
"SSE.Controllers.Main.confirmAddCellWatches": "Tindakan ini akan menambahkan {0} pengawas sel. Apakah Anda ingin melanjutkan?",
"SSE.Controllers.Main.confirmAddCellWatchesMax": "Tindakan ini hanya akan menambahkan {0} pengawas sel atas alasan penghematan memori. Apakah Anda akan melanjutkan?",
+ "SSE.Controllers.Main.confirmMaxChangesSize": "Ukuran tindakan melebihi batas yang ditetapkan untuk server Anda. Tekan \"Batalkan\" untuk membatalkan tindakan terakhir Anda atau tekan \"Lanjutkan\" untuk menyimpan tindakan secara lokal (Anda perlu mengunduh file atau menyalin isinya untuk memastikan tidak ada yang hilang).",
"SSE.Controllers.Main.confirmMoveCellRange": "Rentang sel yang dituju bisa berisi data. Lanjutkan operasi?",
"SSE.Controllers.Main.confirmPutMergeRange": "Sumber data berisi sel yang digabungkan. Telah dipisahkan sebelum ditempelkan ke tabel.",
"SSE.Controllers.Main.confirmReplaceFormulaInTable": "Formula di baris header akan dihilangkan dan dikonversi menjadi teks statis. Apakah Anda ingin melanjutkan?",
@@ -749,6 +911,11 @@
"SSE.Controllers.Main.errorFrmlWrongReferences": "Fungsi yang menuju sheet tidak ada. Silakan periksa data kembali.",
"SSE.Controllers.Main.errorFTChangeTableRangeError": "Operasi tidak bisa diselesaikan untuk rentang sel yang dipilih. Pilih rentang agar baris pertama tabel berada di baris yang samadan menghasilkan tabel yang overlap dengan tabel saat ini.",
"SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "Operasi tidak bisa diselesaikan untuk rentang sel yang dipilih. Pilih rentang yang tidak termasuk di tabel lain.",
+ "SSE.Controllers.Main.errorInconsistentExt": "Terjadi kesalahan saat membuka file. Isi file tidak cocok dengan ekstensi file.",
+ "SSE.Controllers.Main.errorInconsistentExtDocx": "Terjadi kesalahan saat membuka file. Isi file berhubungan dengan dokumen teks (mis. docx), tapi file memiliki ekstensi yang tidak konsisten: %1.",
+ "SSE.Controllers.Main.errorInconsistentExtPdf": "Sebuah kesalahan terjadi ketika membuka file. Isi file berhubungan dengan satu dari format berikut: pdf/djvu/xps/oxps, tapi file memiliki ekstensi yang tidak konsisten: %1.",
+ "SSE.Controllers.Main.errorInconsistentExtPptx": "Terjadi kesalahan saat membuka file. Isi file berhubungan dengan presentasi (mis. pptx), tapi file memiliki ekstensi yang tidak konsisten: %1.",
+ "SSE.Controllers.Main.errorInconsistentExtXlsx": "Terjadi kesalahan saat membuka file. Isi file berhubungan dengan spreadsheet (mis. xlsx), tapi file memiliki ekstensi yang tidak konsisten: %1.",
"SSE.Controllers.Main.errorInvalidRef": "Masukkan nama yang tepat untuk pilihan atau referensi valid sebagai tujuan.",
"SSE.Controllers.Main.errorKeyEncrypt": "Deskriptor kunci tidak dikenal",
"SSE.Controllers.Main.errorKeyExpire": "Deskriptor kunci tidak berfungsi",
@@ -827,6 +994,7 @@
"SSE.Controllers.Main.textCloseTip": "Klik untuk menutup tips",
"SSE.Controllers.Main.textConfirm": "Konfirmasi",
"SSE.Controllers.Main.textContactUs": "Hubungi sales",
+ "SSE.Controllers.Main.textContinue": "Lanjutkan",
"SSE.Controllers.Main.textConvertEquation": "Persamaan ini dibuat dengan editor persamaan versi lama yang sudah tidak didukung. Untuk edit, konversikan persamaan ke format Office Math ML. Konversi sekarang?",
"SSE.Controllers.Main.textCustomLoader": "Perlu diketahui bahwa berdasarkan syarat dari lisensi, Anda tidak bisa untuk mengganti loader. Silakan hubungi Departemen Penjualan kami untuk mendapatkan harga.",
"SSE.Controllers.Main.textDisconnect": "Koneksi terputus",
@@ -855,6 +1023,7 @@
"SSE.Controllers.Main.textStrict": "Mode strict",
"SSE.Controllers.Main.textTryUndoRedo": "Fungsi Undo/Redo dinonaktifkan untuk mode Co-editing Cepat. Klik tombol 'Mode strict' untuk mengganti ke Mode Strict Co-editing untuk edit file tanpa gangguan dari user lain dan kirim perubahan Anda hanya setelah Anda menyimpannya. Anda bisa mengganti mode co-editing menggunakan editor di pengaturan lanjut.",
"SSE.Controllers.Main.textTryUndoRedoWarn": "Fungsi Undo/Redo dinonaktifkan untuk mode Co-editing Cepat.",
+ "SSE.Controllers.Main.textUndo": "Batalkan",
"SSE.Controllers.Main.textYes": "Ya",
"SSE.Controllers.Main.titleLicenseExp": "Lisensi kadaluwarsa",
"SSE.Controllers.Main.titleServerVersion": "Editor mengupdate",
@@ -1073,7 +1242,7 @@
"SSE.Controllers.Main.txtStarsRibbons": "Bintang & Pita",
"SSE.Controllers.Main.txtStyle_Bad": "Buruk",
"SSE.Controllers.Main.txtStyle_Calculation": "Kalkulasi",
- "SSE.Controllers.Main.txtStyle_Check_Cell": "Periksa Sel",
+ "SSE.Controllers.Main.txtStyle_Check_Cell": "Periksa sel",
"SSE.Controllers.Main.txtStyle_Comma": "Koma",
"SSE.Controllers.Main.txtStyle_Currency": "Mata uang",
"SSE.Controllers.Main.txtStyle_Explanatory_Text": "Teks Penjelasan",
@@ -1285,7 +1454,7 @@
"SSE.Controllers.Toolbar.txtGroupCell_DataAndModel": "Data dan Model",
"SSE.Controllers.Toolbar.txtGroupCell_GoodBadAndNeutral": "Bagus, Buruk, dan Netral",
"SSE.Controllers.Toolbar.txtGroupCell_NoName": "Tidak Ada Nama",
- "SSE.Controllers.Toolbar.txtGroupCell_NumberFormat": "Format Nomor",
+ "SSE.Controllers.Toolbar.txtGroupCell_NumberFormat": "Format nomor",
"SSE.Controllers.Toolbar.txtGroupCell_ThemedCallStyles": "Gaya Sel Bertema",
"SSE.Controllers.Toolbar.txtGroupCell_TitlesAndHeadings": "Judul dan Tajuk",
"SSE.Controllers.Toolbar.txtGroupTable_Custom": "Kustom",
@@ -1364,28 +1533,28 @@
"SSE.Controllers.Toolbar.txtLimitLog_Max": "Maksimal",
"SSE.Controllers.Toolbar.txtLimitLog_Min": "Minimum",
"SSE.Controllers.Toolbar.txtLockSort": "Ditemukan data di sebelah pilihan Anda, tapi, Anda tidak memiliki izin untuk mengubah sel tersebut. Apakah Anda ingin tetap lanjut dengan pilihan saat ini?",
- "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_1_2": "matriks kosong 1x2",
+ "SSE.Controllers.Toolbar.txtMatrix_1_3": "matriks kosong 1x3",
+ "SSE.Controllers.Toolbar.txtMatrix_2_1": "matriks kosong 2x1",
+ "SSE.Controllers.Toolbar.txtMatrix_2_2": "matriks kosong 2x2",
"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_Baseline": "Titik Bawah",
+ "SSE.Controllers.Toolbar.txtMatrix_2_3": "matriks kosong 2x3",
+ "SSE.Controllers.Toolbar.txtMatrix_3_1": "matriks kosong 3x1",
+ "SSE.Controllers.Toolbar.txtMatrix_3_2": "matriks kosong 3x2",
+ "SSE.Controllers.Toolbar.txtMatrix_3_3": "matriks kosong 3x3",
+ "SSE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Titik garis dasar",
"SSE.Controllers.Toolbar.txtMatrix_Dots_Center": "Titik Tengah",
"SSE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Titik Diagonal",
"SSE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Titik Vertikal",
"SSE.Controllers.Toolbar.txtMatrix_Flat_Round": "Sparse Matrix",
"SSE.Controllers.Toolbar.txtMatrix_Flat_Square": "Sparse Matrix",
- "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.txtMatrix_Identity_2": "matriks identitas 2x2",
+ "SSE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "matriks identitas 3x3",
+ "SSE.Controllers.Toolbar.txtMatrix_Identity_3": "matriks identitas 3x3",
+ "SSE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "matriks identitas 3x3",
"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",
@@ -1428,7 +1597,7 @@
"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_ast": "Operator tanda bintang",
"SSE.Controllers.Toolbar.txtSymbol_beta": "Beta",
"SSE.Controllers.Toolbar.txtSymbol_beth": "Taruhan",
"SSE.Controllers.Toolbar.txtSymbol_bullet": "Operator Butir",
@@ -1516,14 +1685,14 @@
"SSE.Controllers.Toolbar.warnMergeLostData": "Hanya data dari sel atas-kiri akan tetap berada di sel merging. Apakah Anda ingin melanjutkan?",
"SSE.Controllers.Viewport.textFreezePanes": "Freeze Panes",
"SSE.Controllers.Viewport.textFreezePanesShadow": "Tampillkan bayangan panel beku",
- "SSE.Controllers.Viewport.textHideFBar": "Sembuntikan Bar Formula",
+ "SSE.Controllers.Viewport.textHideFBar": "Sembuntikan bar formula",
"SSE.Controllers.Viewport.textHideGridlines": "Sembunyikan Gridlines",
"SSE.Controllers.Viewport.textHideHeadings": "Sembunyikan Heading",
"SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Separator desimal",
"SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Separator ribuan",
"SSE.Views.AdvancedSeparatorDialog.textLabel": "Pengaturan digunakan untuk mengetahui data numerik",
"SSE.Views.AdvancedSeparatorDialog.textQualifier": "Text qualifier",
- "SSE.Views.AdvancedSeparatorDialog.textTitle": "Pengaturan Lanjut",
+ "SSE.Views.AdvancedSeparatorDialog.textTitle": "Pengaturan lanjut",
"SSE.Views.AdvancedSeparatorDialog.txtNone": "(tidak ada)",
"SSE.Views.AutoFilterDialog.btnCustomFilter": "Atur Filter",
"SSE.Views.AutoFilterDialog.textAddSelection": "Tambah pilihan saat ini ke filter",
@@ -1581,7 +1750,7 @@
"SSE.Views.CellSettings.textBorders": "Gaya Pembatas",
"SSE.Views.CellSettings.textClearRule": "Bersihkan Aturan",
"SSE.Views.CellSettings.textColor": "Warna Isi",
- "SSE.Views.CellSettings.textColorScales": "Skala Warna",
+ "SSE.Views.CellSettings.textColorScales": "Skala warna",
"SSE.Views.CellSettings.textCondFormat": "Format bersyarat",
"SSE.Views.CellSettings.textControl": "Kontrol Teks",
"SSE.Views.CellSettings.textDataBars": "Bar Data",
@@ -1652,7 +1821,7 @@
"SSE.Views.ChartDataRangeDialog.txtAxisLabel": "Rentang label sumbu",
"SSE.Views.ChartDataRangeDialog.txtChoose": "Pilih rentang",
"SSE.Views.ChartDataRangeDialog.txtSeriesName": "Nama Seri",
- "SSE.Views.ChartDataRangeDialog.txtTitleCategory": "Label Sumbu",
+ "SSE.Views.ChartDataRangeDialog.txtTitleCategory": "Label sumbu",
"SSE.Views.ChartDataRangeDialog.txtTitleSeries": "Edit Seri",
"SSE.Views.ChartDataRangeDialog.txtValues": "Nilai",
"SSE.Views.ChartDataRangeDialog.txtXValues": "Nilai X",
@@ -1701,16 +1870,16 @@
"SSE.Views.ChartSettingsDlg.errorMaxRows": "KESALAHAN! Jumlah seri data maksimum per grafik adalah 255.",
"SSE.Views.ChartSettingsDlg.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.ChartSettingsDlg.textAbsolute": "Jangan pindah atau ubah dengan sel",
- "SSE.Views.ChartSettingsDlg.textAlt": "Teks Alternatif",
+ "SSE.Views.ChartSettingsDlg.textAlt": "Teks alternatif",
"SSE.Views.ChartSettingsDlg.textAltDescription": "Deskripsi",
"SSE.Views.ChartSettingsDlg.textAltTip": "Representasi alternatif berbasis teks dari informasi objek visual, yang akan dibaca kepada orang dengan gangguan penglihatan atau kognitif untuk membantu mereka lebih memahami informasi yang ada dalam gambar, autoshape, grafik, atau tabel.",
"SSE.Views.ChartSettingsDlg.textAltTitle": "Judul",
"SSE.Views.ChartSettingsDlg.textAuto": "Otomatis",
"SSE.Views.ChartSettingsDlg.textAutoEach": "Auto untuk Masing-masing",
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Sumbu Berpotongan",
- "SSE.Views.ChartSettingsDlg.textAxisOptions": "Opsi Sumbu",
- "SSE.Views.ChartSettingsDlg.textAxisPos": "Posisi Sumbu",
- "SSE.Views.ChartSettingsDlg.textAxisSettings": "Pengaturan Sumbu",
+ "SSE.Views.ChartSettingsDlg.textAxisOptions": "Opsi sumbu",
+ "SSE.Views.ChartSettingsDlg.textAxisPos": "Posisi sumbu",
+ "SSE.Views.ChartSettingsDlg.textAxisSettings": "Pengaturan sumbu",
"SSE.Views.ChartSettingsDlg.textAxisTitle": "Judul",
"SSE.Views.ChartSettingsDlg.textBase": "Dasar",
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Di Antara Tanda Centang",
@@ -1747,7 +1916,7 @@
"SSE.Views.ChartSettingsDlg.textInnerBottom": "Dalam Bawah",
"SSE.Views.ChartSettingsDlg.textInnerTop": "Dalam Atas",
"SSE.Views.ChartSettingsDlg.textInvalidRange": "KESALAHAN! Rentang sel tidak valid",
- "SSE.Views.ChartSettingsDlg.textLabelDist": "Jarak Label Sumbu",
+ "SSE.Views.ChartSettingsDlg.textLabelDist": "Jarak label sumbu",
"SSE.Views.ChartSettingsDlg.textLabelInterval": "Interval antar Label ",
"SSE.Views.ChartSettingsDlg.textLabelOptions": "Opsi Label",
"SSE.Views.ChartSettingsDlg.textLabelPos": "Posisi Label",
@@ -1847,9 +2016,9 @@
"SSE.Views.DataTab.capBtnTextCustomSort": "Atur sortasi",
"SSE.Views.DataTab.capBtnTextDataValidation": "Validasi data",
"SSE.Views.DataTab.capBtnTextRemDuplicates": "Hapus duplikat",
- "SSE.Views.DataTab.capBtnTextToCol": "Teks ke Kolom",
+ "SSE.Views.DataTab.capBtnTextToCol": "Teks ke kolom",
"SSE.Views.DataTab.capBtnUngroup": "Pisahkan dari grup",
- "SSE.Views.DataTab.capDataExternalLinks": "Tautan Eksternal",
+ "SSE.Views.DataTab.capDataExternalLinks": "Tautan eksternal",
"SSE.Views.DataTab.capDataFromText": "Dapatkan data",
"SSE.Views.DataTab.mniFromFile": "Dari TXT/CSV lokal",
"SSE.Views.DataTab.mniFromUrl": "Dari alamat web TXT/CSV",
@@ -1949,15 +2118,20 @@
"SSE.Views.DigitalFilterDialog.textUse1": "Gunakan ? untuk menampilkan semua karakter tunggal",
"SSE.Views.DigitalFilterDialog.textUse2": "Gunakan * untuk menampilkan semua rangkaian karakter",
"SSE.Views.DigitalFilterDialog.txtTitle": "Atur Filter",
+ "SSE.Views.DocumentHolder.advancedEquationText": "Pengaturan Persamaan",
"SSE.Views.DocumentHolder.advancedImgText": "Pengaturan Lanjut untuk Gambar",
"SSE.Views.DocumentHolder.advancedShapeText": "Pengaturan Lanjut untuk Bentuk",
"SSE.Views.DocumentHolder.advancedSlicerText": "Pengaturan Lanjut Slicer",
+ "SSE.Views.DocumentHolder.allLinearText": "Semua - Linear",
+ "SSE.Views.DocumentHolder.allProfText": "Semua - Profesional",
"SSE.Views.DocumentHolder.bottomCellText": "Rata Bawah",
"SSE.Views.DocumentHolder.bulletsText": "Butir & Penomoran",
"SSE.Views.DocumentHolder.centerCellText": "Rata di Tengah",
"SSE.Views.DocumentHolder.chartDataText": "Pilih Data Bagan",
"SSE.Views.DocumentHolder.chartText": "Pengaturan Lanjut untuk Bagan",
"SSE.Views.DocumentHolder.chartTypeText": "Ubah Tipe Bagan",
+ "SSE.Views.DocumentHolder.currLinearText": "Saat Ini - Linear",
+ "SSE.Views.DocumentHolder.currProfText": "Saat Ini - Profesional",
"SSE.Views.DocumentHolder.deleteColumnText": "Kolom",
"SSE.Views.DocumentHolder.deleteRowText": "Baris",
"SSE.Views.DocumentHolder.deleteTableText": "Tabel",
@@ -1971,6 +2145,7 @@
"SSE.Views.DocumentHolder.insertColumnRightText": "Kolom Kanan",
"SSE.Views.DocumentHolder.insertRowAboveText": "Baris di Atas",
"SSE.Views.DocumentHolder.insertRowBelowText": "Baris di Bawah",
+ "SSE.Views.DocumentHolder.latexText": "LaTex",
"SSE.Views.DocumentHolder.originalSizeText": "Ukuran Sebenarnya",
"SSE.Views.DocumentHolder.removeHyperlinkText": "Hapus Hyperlink",
"SSE.Views.DocumentHolder.selectColumnText": "Seluruh Kolom",
@@ -2034,7 +2209,7 @@
"SSE.Views.DocumentHolder.tipMarkersStar": "Butir bintang",
"SSE.Views.DocumentHolder.topCellText": "Rata Atas",
"SSE.Views.DocumentHolder.txtAccounting": "Akutansi",
- "SSE.Views.DocumentHolder.txtAddComment": "Tambahkan Komentar",
+ "SSE.Views.DocumentHolder.txtAddComment": "Tambahkan komentar",
"SSE.Views.DocumentHolder.txtAddNamedRange": "Tentukan Nama",
"SSE.Views.DocumentHolder.txtArrange": "Susun",
"SSE.Views.DocumentHolder.txtAscending": "Sortasi Naik",
@@ -2062,7 +2237,7 @@
"SSE.Views.DocumentHolder.txtDescending": "Sortasi Turun",
"SSE.Views.DocumentHolder.txtDistribHor": "Distribusikan Horizontal",
"SSE.Views.DocumentHolder.txtDistribVert": "Distribusikan Vertikal",
- "SSE.Views.DocumentHolder.txtEditComment": "Edit Komentar",
+ "SSE.Views.DocumentHolder.txtEditComment": "Edit komentar",
"SSE.Views.DocumentHolder.txtFilter": "Filter",
"SSE.Views.DocumentHolder.txtFilterCellColor": "Filter dari warna sel",
"SSE.Views.DocumentHolder.txtFilterFontColor": "Filter dari warna font",
@@ -2076,10 +2251,11 @@
"SSE.Views.DocumentHolder.txtInsert": "Sisipkan",
"SSE.Views.DocumentHolder.txtInsHyperlink": "Hyperlink",
"SSE.Views.DocumentHolder.txtNumber": "Angka",
- "SSE.Views.DocumentHolder.txtNumFormat": "Format Nomor",
+ "SSE.Views.DocumentHolder.txtNumFormat": "Format nomor",
"SSE.Views.DocumentHolder.txtPaste": "Tempel",
"SSE.Views.DocumentHolder.txtPercentage": "Persentase",
"SSE.Views.DocumentHolder.txtReapply": "Terapkan Ulang",
+ "SSE.Views.DocumentHolder.txtRefresh": "Segarkan",
"SSE.Views.DocumentHolder.txtRow": "Seluruh baris",
"SSE.Views.DocumentHolder.txtRowHeight": "Atur Tinggi Baris",
"SSE.Views.DocumentHolder.txtScientific": "Saintifik",
@@ -2089,7 +2265,7 @@
"SSE.Views.DocumentHolder.txtShiftRight": "Geser sel ke kanan",
"SSE.Views.DocumentHolder.txtShiftUp": "Geser sel ke atas",
"SSE.Views.DocumentHolder.txtShow": "Tampilkan",
- "SSE.Views.DocumentHolder.txtShowComment": "Tampilkan Komentar",
+ "SSE.Views.DocumentHolder.txtShowComment": "Tampilkan komentar",
"SSE.Views.DocumentHolder.txtSort": "Sortasi",
"SSE.Views.DocumentHolder.txtSortCellColor": "Pilih Warna Sel di atas",
"SSE.Views.DocumentHolder.txtSortFontColor": "Pilih Warna font di atas",
@@ -2099,14 +2275,19 @@
"SSE.Views.DocumentHolder.txtTime": "Waktu",
"SSE.Views.DocumentHolder.txtUngroup": "Pisahkan dari grup",
"SSE.Views.DocumentHolder.txtWidth": "Lebar",
+ "SSE.Views.DocumentHolder.unicodeText": "Unicode",
"SSE.Views.DocumentHolder.vertAlignText": "Perataan Vertikal",
"SSE.Views.ExternalLinksDlg.closeButtonText": "Tutup",
"SSE.Views.ExternalLinksDlg.textDelete": "Putuskan Tautan",
"SSE.Views.ExternalLinksDlg.textDeleteAll": "Putuskan Semua Tautan",
+ "SSE.Views.ExternalLinksDlg.textOk": "OK",
"SSE.Views.ExternalLinksDlg.textSource": "Sumber",
+ "SSE.Views.ExternalLinksDlg.textStatus": "Status",
+ "SSE.Views.ExternalLinksDlg.textUnknown": "Tak dikenal",
"SSE.Views.ExternalLinksDlg.textUpdate": "Perbarui Nilai",
"SSE.Views.ExternalLinksDlg.textUpdateAll": "Perbarui Semua",
- "SSE.Views.ExternalLinksDlg.txtTitle": "Tautan Eksternal",
+ "SSE.Views.ExternalLinksDlg.textUpdating": "Memperbarui...",
+ "SSE.Views.ExternalLinksDlg.txtTitle": "Tautan eksternal",
"SSE.Views.FieldSettingsDialog.strLayout": "Layout",
"SSE.Views.FieldSettingsDialog.strSubtotals": "Subtotals",
"SSE.Views.FieldSettingsDialog.textReport": "Form Laporan",
@@ -2116,7 +2297,7 @@
"SSE.Views.FieldSettingsDialog.txtBottom": "Tampilkan di bawah grup",
"SSE.Views.FieldSettingsDialog.txtCompact": "Kompak",
"SSE.Views.FieldSettingsDialog.txtCount": "Dihitung",
- "SSE.Views.FieldSettingsDialog.txtCountNums": "Hitung Angka",
+ "SSE.Views.FieldSettingsDialog.txtCountNums": "Hitung angka",
"SSE.Views.FieldSettingsDialog.txtCustomName": "Atur nama",
"SSE.Views.FieldSettingsDialog.txtEmpty": "Tampilkan item tanpa data",
"SSE.Views.FieldSettingsDialog.txtMax": "Maks",
@@ -2141,7 +2322,7 @@
"SSE.Views.FileMenu.btnExitCaption": "Tutup",
"SSE.Views.FileMenu.btnFileOpenCaption": "Buka",
"SSE.Views.FileMenu.btnHelpCaption": "Bantuan",
- "SSE.Views.FileMenu.btnHistoryCaption": "Riwayat Versi",
+ "SSE.Views.FileMenu.btnHistoryCaption": "Riwayat versi",
"SSE.Views.FileMenu.btnInfoCaption": "Info Spreadsheet",
"SSE.Views.FileMenu.btnPrintCaption": "Cetak",
"SSE.Views.FileMenu.btnProtectCaption": "Proteksi",
@@ -2170,6 +2351,7 @@
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokasi",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Orang yang memiliki hak",
"SSE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subyek",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tag",
"SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Judul",
"SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Diunggah",
"SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Ubah hak akses",
@@ -2181,7 +2363,7 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strDictionaryLanguage": "Kamus bahasa",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Cepat",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Contoh Huruf",
- "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Bahasa Formula",
+ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Bahasa formula",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Contoh: SUM; MIN; MAX; COUNT",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsInUPPERCASE": "Abaikan kata dalam HURUF BESAR",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsWithNumbers": "Abaikan kata dengan angka",
@@ -2267,7 +2449,7 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "China",
"SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Peringatan",
"SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Dengan password",
- "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteksi Spreadsheet",
+ "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteksi spreadsheet",
"SSE.Views.FileMenuPanels.ProtectDoc.strSignature": "Dengan tanda tangan",
"SSE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Edit spreadsheet",
"SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Perubahan akan menghilangkan tanda tangan dari spreadsheet. Lanjutkan?",
@@ -2278,14 +2460,14 @@
"SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Tampilkan tanda tangan",
"SSE.Views.FormatRulesEditDlg.fillColor": "Isi warna",
"SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Peringatan",
- "SSE.Views.FormatRulesEditDlg.text2Scales": "2 Skala warna",
- "SSE.Views.FormatRulesEditDlg.text3Scales": "3 Skala warna",
- "SSE.Views.FormatRulesEditDlg.textAllBorders": "Semua Pembatas",
- "SSE.Views.FormatRulesEditDlg.textAppearance": "Tampilan Bar",
- "SSE.Views.FormatRulesEditDlg.textApply": "Terapkan ke Rentang",
+ "SSE.Views.FormatRulesEditDlg.text2Scales": "2 skala warna",
+ "SSE.Views.FormatRulesEditDlg.text3Scales": "3 skala warna",
+ "SSE.Views.FormatRulesEditDlg.textAllBorders": "Semua tepi",
+ "SSE.Views.FormatRulesEditDlg.textAppearance": "Penampilan batang",
+ "SSE.Views.FormatRulesEditDlg.textApply": "Terapkan ke rentang",
"SSE.Views.FormatRulesEditDlg.textAutomatic": "Otomatis",
"SSE.Views.FormatRulesEditDlg.textAxis": "Sumbu",
- "SSE.Views.FormatRulesEditDlg.textBarDirection": "Arah Bar",
+ "SSE.Views.FormatRulesEditDlg.textBarDirection": "Arah batang",
"SSE.Views.FormatRulesEditDlg.textBold": "Tebal",
"SSE.Views.FormatRulesEditDlg.textBorder": "Pembatas",
"SSE.Views.FormatRulesEditDlg.textBordersColor": "Warna Pembatas",
@@ -2359,10 +2541,10 @@
"SSE.Views.FormatRulesEditDlg.textStrikeout": "Strikeout",
"SSE.Views.FormatRulesEditDlg.textSubscript": "Subskrip",
"SSE.Views.FormatRulesEditDlg.textSuperscript": "Superskrip",
- "SSE.Views.FormatRulesEditDlg.textTopBorders": "Batas Atas",
+ "SSE.Views.FormatRulesEditDlg.textTopBorders": "Tepi atas",
"SSE.Views.FormatRulesEditDlg.textUnderline": "Garis bawah",
"SSE.Views.FormatRulesEditDlg.tipBorders": "Pembatas",
- "SSE.Views.FormatRulesEditDlg.tipNumFormat": "Format Nomor",
+ "SSE.Views.FormatRulesEditDlg.tipNumFormat": "Format nomor",
"SSE.Views.FormatRulesEditDlg.txtAccounting": "Akutansi",
"SSE.Views.FormatRulesEditDlg.txtCurrency": "Mata uang",
"SSE.Views.FormatRulesEditDlg.txtDate": "Tanggal",
@@ -2426,7 +2608,7 @@
"SSE.Views.FormatSettingsDialog.textLinked": "Terhubung ke sumber",
"SSE.Views.FormatSettingsDialog.textSeparator": "Gunakan separator 1000",
"SSE.Views.FormatSettingsDialog.textSymbols": "Simbol",
- "SSE.Views.FormatSettingsDialog.textTitle": "Format Nomor",
+ "SSE.Views.FormatSettingsDialog.textTitle": "Format nomor",
"SSE.Views.FormatSettingsDialog.txtAccounting": "Akutansi",
"SSE.Views.FormatSettingsDialog.txtAs10": "Persepuluh (5/10)",
"SSE.Views.FormatSettingsDialog.txtAs100": "Perseratus (50/100)",
@@ -2563,7 +2745,7 @@
"SSE.Views.ImageSettings.textSize": "Ukuran",
"SSE.Views.ImageSettings.textWidth": "Lebar",
"SSE.Views.ImageSettingsAdvanced.textAbsolute": "Jangan pindah atau ubah dengan sel",
- "SSE.Views.ImageSettingsAdvanced.textAlt": "Teks Alternatif",
+ "SSE.Views.ImageSettingsAdvanced.textAlt": "Teks alternatif",
"SSE.Views.ImageSettingsAdvanced.textAltDescription": "Deskripsi",
"SSE.Views.ImageSettingsAdvanced.textAltTip": "Representasi alternatif berbasis teks dari informasi objek visual, yang akan dibaca kepada orang dengan gangguan penglihatan atau kognitif untuk membantu mereka lebih memahami informasi yang ada dalam gambar, autoshape, grafik, atau tabel.",
"SSE.Views.ImageSettingsAdvanced.textAltTitle": "Judul",
@@ -2590,7 +2772,7 @@
"SSE.Views.LeftMenu.txtTrial": "MODE TRIAL",
"SSE.Views.LeftMenu.txtTrialDev": "Mode Trial Developer",
"SSE.Views.MacroDialog.textMacro": "Nama macro",
- "SSE.Views.MacroDialog.textTitle": "Tetapkan Makro",
+ "SSE.Views.MacroDialog.textTitle": "Tetapkan makro",
"SSE.Views.MainSettingsPrint.okButtonText": "Simpan",
"SSE.Views.MainSettingsPrint.strBottom": "Bawah",
"SSE.Views.MainSettingsPrint.strLandscape": "Landscape",
@@ -2598,7 +2780,7 @@
"SSE.Views.MainSettingsPrint.strMargins": "Margin",
"SSE.Views.MainSettingsPrint.strPortrait": "Portrait",
"SSE.Views.MainSettingsPrint.strPrint": "Cetak",
- "SSE.Views.MainSettingsPrint.strPrintTitles": "Print Judul",
+ "SSE.Views.MainSettingsPrint.strPrintTitles": "Print judul",
"SSE.Views.MainSettingsPrint.strRight": "Kanan",
"SSE.Views.MainSettingsPrint.strTop": "Atas",
"SSE.Views.MainSettingsPrint.textActualSize": "Ukuran Sebenarnya",
@@ -2839,8 +3021,8 @@
"SSE.Views.PrintSettings.strRight": "Kanan",
"SSE.Views.PrintSettings.strShow": "Tampilkan",
"SSE.Views.PrintSettings.strTop": "Atas",
- "SSE.Views.PrintSettings.textActualSize": "Ukuran Sebenarnya",
- "SSE.Views.PrintSettings.textAllSheets": "Semua Sheet",
+ "SSE.Views.PrintSettings.textActualSize": "Ukuran sebenarnya",
+ "SSE.Views.PrintSettings.textAllSheets": "Semua sheet",
"SSE.Views.PrintSettings.textCurrentSheet": "Sheet saat ini",
"SSE.Views.PrintSettings.textCustom": "Khusus",
"SSE.Views.PrintSettings.textCustomOptions": "Atur Opsi",
@@ -2905,7 +3087,7 @@
"SSE.Views.PrintWithPreview.txtPrintGrid": "Print Garis Grid",
"SSE.Views.PrintWithPreview.txtPrintHeadings": "Print Heading Baris dan Kolom",
"SSE.Views.PrintWithPreview.txtPrintRange": "Rentang Print",
- "SSE.Views.PrintWithPreview.txtPrintTitles": "Print Judul",
+ "SSE.Views.PrintWithPreview.txtPrintTitles": "Print judul",
"SSE.Views.PrintWithPreview.txtRepeat": "Ulangi...",
"SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft": "Ulangi kolom di kiri",
"SSE.Views.PrintWithPreview.txtRepeatRowsAtTop": "Ulangi baris di atas",
@@ -2964,7 +3146,7 @@
"SSE.Views.ProtectRangesDlg.txtEditRange": "Edit Rentang",
"SSE.Views.ProtectRangesDlg.txtNewRange": "Rentang Baru",
"SSE.Views.ProtectRangesDlg.txtNo": "Tidak",
- "SSE.Views.ProtectRangesDlg.txtTitle": "Izinkan Pengguna Mengedit Rentang",
+ "SSE.Views.ProtectRangesDlg.txtTitle": "Izinkan pengguna mengedit rentang",
"SSE.Views.ProtectRangesDlg.txtYes": "Ya",
"SSE.Views.ProtectRangesDlg.warnDelete": "Apakah Anda yakin ingin menghapus nama {0}?",
"SSE.Views.RemoveDuplicatesDialog.textColumns": "Kolom",
@@ -3054,21 +3236,21 @@
"SSE.Views.ShapeSettings.txtPapyrus": "Papirus",
"SSE.Views.ShapeSettings.txtWood": "Kayu",
"SSE.Views.ShapeSettingsAdvanced.strColumns": "Kolom",
- "SSE.Views.ShapeSettingsAdvanced.strMargins": "Lapisan Teks",
+ "SSE.Views.ShapeSettingsAdvanced.strMargins": "Pengganjal teks",
"SSE.Views.ShapeSettingsAdvanced.textAbsolute": "Jangan pindah atau ubah dengan sel",
- "SSE.Views.ShapeSettingsAdvanced.textAlt": "Teks Alternatif",
+ "SSE.Views.ShapeSettingsAdvanced.textAlt": "Teks alternatif",
"SSE.Views.ShapeSettingsAdvanced.textAltDescription": "Deskripsi",
"SSE.Views.ShapeSettingsAdvanced.textAltTip": "Representasi alternatif berbasis teks dari informasi objek visual, yang akan dibaca kepada orang dengan gangguan penglihatan atau kognitif untuk membantu mereka lebih memahami informasi yang ada dalam gambar, autoshape, grafik, atau tabel.",
"SSE.Views.ShapeSettingsAdvanced.textAltTitle": "Judul",
"SSE.Views.ShapeSettingsAdvanced.textAngle": "Sudut",
"SSE.Views.ShapeSettingsAdvanced.textArrows": "Tanda panah",
"SSE.Views.ShapeSettingsAdvanced.textAutofit": "AutoFit",
- "SSE.Views.ShapeSettingsAdvanced.textBeginSize": "Ukuran Mulai",
- "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Gaya Mulai",
+ "SSE.Views.ShapeSettingsAdvanced.textBeginSize": "Ukuran mulai",
+ "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Gaya mulai",
"SSE.Views.ShapeSettingsAdvanced.textBevel": "Miring",
"SSE.Views.ShapeSettingsAdvanced.textBottom": "Bawah",
"SSE.Views.ShapeSettingsAdvanced.textCapType": "Tipe Cap",
- "SSE.Views.ShapeSettingsAdvanced.textColNumber": "Jumlah Kolom",
+ "SSE.Views.ShapeSettingsAdvanced.textColNumber": "Jumlah kolom",
"SSE.Views.ShapeSettingsAdvanced.textEndSize": "Ukuran Akhir",
"SSE.Views.ShapeSettingsAdvanced.textEndStyle": "Model Akhir",
"SSE.Views.ShapeSettingsAdvanced.textFlat": "Datar",
@@ -3090,7 +3272,7 @@
"SSE.Views.ShapeSettingsAdvanced.textSnap": "Snapping Sel",
"SSE.Views.ShapeSettingsAdvanced.textSpacing": "Spacing di antara kolom",
"SSE.Views.ShapeSettingsAdvanced.textSquare": "Persegi",
- "SSE.Views.ShapeSettingsAdvanced.textTextBox": "Kotak Teks",
+ "SSE.Views.ShapeSettingsAdvanced.textTextBox": "Kotak teks",
"SSE.Views.ShapeSettingsAdvanced.textTitle": "Bentuk - Pengaturan Lanjut",
"SSE.Views.ShapeSettingsAdvanced.textTop": "Atas",
"SSE.Views.ShapeSettingsAdvanced.textTwoCell": "Pindahkan dan gabungkan dengan sel",
@@ -3155,7 +3337,7 @@
"SSE.Views.SlicerSettingsAdvanced.strStyleSize": "Gaya & Ukuran",
"SSE.Views.SlicerSettingsAdvanced.strWidth": "Lebar",
"SSE.Views.SlicerSettingsAdvanced.textAbsolute": "Jangan pindah atau ubah dengan sel",
- "SSE.Views.SlicerSettingsAdvanced.textAlt": "Teks Alternatif",
+ "SSE.Views.SlicerSettingsAdvanced.textAlt": "Teks alternatif",
"SSE.Views.SlicerSettingsAdvanced.textAltDescription": "Deskripsi",
"SSE.Views.SlicerSettingsAdvanced.textAltTip": "Representasi alternatif berbasis teks dari informasi objek visual, yang akan dibaca kepada orang dengan gangguan penglihatan atau kognitif untuk membantu mereka lebih memahami informasi yang ada dalam gambar, autoshape, grafik atau tabel.",
"SSE.Views.SlicerSettingsAdvanced.textAltTitle": "Judul",
@@ -3348,7 +3530,7 @@
"SSE.Views.TableSettings.textTemplate": "Pilih Dari Template",
"SSE.Views.TableSettings.textTotal": "Total",
"SSE.Views.TableSettings.warnLongOperation": "Operasi yang akan Anda lakukan mungkin membutukan waktu yang cukup lama untuk selesai. Apakah anda yakin untuk lanjut?",
- "SSE.Views.TableSettingsAdvanced.textAlt": "Teks Alternatif",
+ "SSE.Views.TableSettingsAdvanced.textAlt": "Teks alternatif",
"SSE.Views.TableSettingsAdvanced.textAltDescription": "Deskripsi",
"SSE.Views.TableSettingsAdvanced.textAltTip": "Representasi alternatif berbasis teks dari informasi objek visual, yang akan dibaca kepada orang dengan gangguan penglihatan atau kognitif untuk membantu mereka lebih memahami informasi yang ada dalam gambar, autoshape, grafik atau tabel.",
"SSE.Views.TableSettingsAdvanced.textAltTitle": "Judul",
@@ -3405,17 +3587,18 @@
"SSE.Views.TextArtSettings.txtNoBorders": "Tidak ada Garis",
"SSE.Views.TextArtSettings.txtPapyrus": "Papirus",
"SSE.Views.TextArtSettings.txtWood": "Kayu",
- "SSE.Views.Toolbar.capBtnAddComment": "Tambahkan Komentar",
+ "SSE.Views.Toolbar.capBtnAddComment": "Tambahkan komentar",
"SSE.Views.Toolbar.capBtnColorSchemas": "Skema Warna",
"SSE.Views.Toolbar.capBtnComment": "Komentar",
"SSE.Views.Toolbar.capBtnInsHeader": "Header & Footer",
"SSE.Views.Toolbar.capBtnInsSlicer": "Slicer",
+ "SSE.Views.Toolbar.capBtnInsSmartArt": "SmartArt",
"SSE.Views.Toolbar.capBtnInsSymbol": "Simbol",
"SSE.Views.Toolbar.capBtnMargins": "Margin",
"SSE.Views.Toolbar.capBtnPageOrient": "Orientasi",
"SSE.Views.Toolbar.capBtnPageSize": "Ukuran",
"SSE.Views.Toolbar.capBtnPrintArea": "Print Area",
- "SSE.Views.Toolbar.capBtnPrintTitles": "Print Judul",
+ "SSE.Views.Toolbar.capBtnPrintTitles": "Print judul",
"SSE.Views.Toolbar.capBtnScale": "Skala ke Fit",
"SSE.Views.Toolbar.capImgAlign": "Ratakan",
"SSE.Views.Toolbar.capImgBackward": "Mundurkan",
@@ -3453,7 +3636,7 @@
"SSE.Views.Toolbar.textClearPrintArea": "Bersihkan Area Print",
"SSE.Views.Toolbar.textClearRule": "Bersihkan Aturan",
"SSE.Views.Toolbar.textClockwise": "Sudut Searah Jarum Jam",
- "SSE.Views.Toolbar.textColorScales": "Skala Warna",
+ "SSE.Views.Toolbar.textColorScales": "Skala warna",
"SSE.Views.Toolbar.textCounterCw": "Sudut Berlawanan Jarum Jam",
"SSE.Views.Toolbar.textCustom": "Kustom",
"SSE.Views.Toolbar.textDataBars": "Bar Data",
@@ -3573,6 +3756,7 @@
"SSE.Views.Toolbar.tipInsertOpt": "Sisipkan sel",
"SSE.Views.Toolbar.tipInsertShape": "Sisipkan Bentuk Otomatis",
"SSE.Views.Toolbar.tipInsertSlicer": "Sisipkan slicer",
+ "SSE.Views.Toolbar.tipInsertSmartArt": "Sisipkan SmartArt",
"SSE.Views.Toolbar.tipInsertSpark": "Sisipkan sparkline",
"SSE.Views.Toolbar.tipInsertSymbol": "Sisipkan simbol",
"SSE.Views.Toolbar.tipInsertTable": "Sisipkan Tabel",
@@ -3589,11 +3773,11 @@
"SSE.Views.Toolbar.tipPrColor": "Isi warna",
"SSE.Views.Toolbar.tipPrint": "Cetak",
"SSE.Views.Toolbar.tipPrintArea": "Print Area",
- "SSE.Views.Toolbar.tipPrintTitles": "Print Judul",
+ "SSE.Views.Toolbar.tipPrintTitles": "Print judul",
"SSE.Views.Toolbar.tipRedo": "Ulangi",
"SSE.Views.Toolbar.tipSave": "Simpan",
"SSE.Views.Toolbar.tipSaveCoauth": "Simpan perubahan yang Anda buat agar dapat dilihat oleh pengguna lain",
- "SSE.Views.Toolbar.tipScale": "Skala ke Fit",
+ "SSE.Views.Toolbar.tipScale": "Skala ke fit",
"SSE.Views.Toolbar.tipSelectAll": "Pilih semua",
"SSE.Views.Toolbar.tipSendBackward": "Mundurkan",
"SSE.Views.Toolbar.tipSendForward": "Majukan",
@@ -3690,7 +3874,7 @@
"SSE.Views.ValueFieldSettingsDialog.txtBaseItem": "Item Dasar",
"SSE.Views.ValueFieldSettingsDialog.txtByField": "%1 dari %2",
"SSE.Views.ValueFieldSettingsDialog.txtCount": "Dihitung",
- "SSE.Views.ValueFieldSettingsDialog.txtCountNums": "Hitung Angka",
+ "SSE.Views.ValueFieldSettingsDialog.txtCountNums": "Hitung angka",
"SSE.Views.ValueFieldSettingsDialog.txtCustomName": "Atur nama",
"SSE.Views.ValueFieldSettingsDialog.txtDifference": "Perbedaan Dari",
"SSE.Views.ValueFieldSettingsDialog.txtIndex": "Indeks",
@@ -3730,18 +3914,20 @@
"SSE.Views.ViewManagerDlg.warnDeleteView": "Anda mencoba menghapus tampilan '%1''. Tutup tampilan ini dan hapus?",
"SSE.Views.ViewTab.capBtnFreeze": "Freeze Panes",
"SSE.Views.ViewTab.capBtnSheetView": "Tampilan sheet",
- "SSE.Views.ViewTab.textAlwaysShowToolbar": "Selalu tampilkan toolbar",
+ "SSE.Views.ViewTab.textAlwaysShowToolbar": "Selalu Tampilkan Bilah Alat",
"SSE.Views.ViewTab.textClose": "Tutup",
"SSE.Views.ViewTab.textCombineSheetAndStatusBars": "Gabungkan sheet dan bar status",
"SSE.Views.ViewTab.textCreate": "Baru",
"SSE.Views.ViewTab.textDefault": "standar",
- "SSE.Views.ViewTab.textFormula": "bar formula",
+ "SSE.Views.ViewTab.textFormula": "Bar formula",
"SSE.Views.ViewTab.textFreezeCol": "Bekukan Kolom Pertama",
"SSE.Views.ViewTab.textFreezeRow": "Bekukan Baris Teratas",
"SSE.Views.ViewTab.textGridlines": "Garis Grid",
"SSE.Views.ViewTab.textHeadings": "Headings",
"SSE.Views.ViewTab.textInterfaceTheme": "Tema interface",
+ "SSE.Views.ViewTab.textLeftMenu": "Panel kiri",
"SSE.Views.ViewTab.textManager": "View manager",
+ "SSE.Views.ViewTab.textRightMenu": "Panel kanan",
"SSE.Views.ViewTab.textShowFrozenPanesShadow": "Tampillkan bayangan panel beku",
"SSE.Views.ViewTab.textUnFreeze": "Batal Bekukan Panel",
"SSE.Views.ViewTab.textZeros": "Tampilkan zeros",
@@ -3763,17 +3949,17 @@
"SSE.Views.WatchDialog.textValue": "Nilai",
"SSE.Views.WatchDialog.txtTitle": "Jendela Pengawas",
"SSE.Views.WBProtection.hintAllowRanges": "Izinkan edit rentang",
- "SSE.Views.WBProtection.hintProtectSheet": "Proteksi Sheet",
- "SSE.Views.WBProtection.hintProtectWB": "Proteksi Workbook",
+ "SSE.Views.WBProtection.hintProtectSheet": "Proteksi sheet",
+ "SSE.Views.WBProtection.hintProtectWB": "Proteksi workbook",
"SSE.Views.WBProtection.txtAllowRanges": "Izinkan edit rentang",
- "SSE.Views.WBProtection.txtHiddenFormula": "Formula Tersembunyi",
- "SSE.Views.WBProtection.txtLockedCell": "Sel Terkunci",
+ "SSE.Views.WBProtection.txtHiddenFormula": "Formula tersembunyi",
+ "SSE.Views.WBProtection.txtLockedCell": "Sel terkunci",
"SSE.Views.WBProtection.txtLockedShape": "Bentuk Dikunci",
"SSE.Views.WBProtection.txtLockedText": "Kunci Teks",
- "SSE.Views.WBProtection.txtProtectSheet": "Proteksi Sheet",
- "SSE.Views.WBProtection.txtProtectWB": "Proteksi Workbook",
+ "SSE.Views.WBProtection.txtProtectSheet": "Proteksi sheet",
+ "SSE.Views.WBProtection.txtProtectWB": "Proteksi workbook",
"SSE.Views.WBProtection.txtSheetUnlockDescription": "Masukkan password untuk membuka proteksi sheet",
- "SSE.Views.WBProtection.txtSheetUnlockTitle": "Buka Proteksi Sheet",
+ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Buka proteksi sheet",
"SSE.Views.WBProtection.txtWBUnlockDescription": "Masukkan password untuk membuka proteksi workbook",
- "SSE.Views.WBProtection.txtWBUnlockTitle": "Buka Proteksi Workbook"
+ "SSE.Views.WBProtection.txtWBUnlockTitle": "Buka proteksi workbook"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/it.json b/apps/spreadsheeteditor/main/locale/it.json
index 94bb9c975..0edcdc51b 100644
--- a/apps/spreadsheeteditor/main/locale/it.json
+++ b/apps/spreadsheeteditor/main/locale/it.json
@@ -100,6 +100,13 @@
"Common.define.conditionalData.textUnique": "Unico",
"Common.define.conditionalData.textValue": "Valore è",
"Common.define.conditionalData.textYesterday": "Ieri",
+ "Common.define.smartArt.textBalance": "Equilibri",
+ "Common.define.smartArt.textEquation": "Equazione",
+ "Common.define.smartArt.textFunnel": "Imbuto",
+ "Common.define.smartArt.textList": "Elenco",
+ "Common.define.smartArt.textMatrix": "Matrice",
+ "Common.define.smartArt.textOther": "Altro",
+ "Common.define.smartArt.textPicture": "Immagine",
"Common.Translation.textMoreButton": "più",
"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",
@@ -264,10 +271,14 @@
"Common.Views.ImageFromUrlDialog.txtEmpty": "Campo obbligatorio",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Il formato URL richiesto è \"http://www.example.com\"",
"Common.Views.ListSettingsDialog.textBulleted": "Elenco puntato",
+ "Common.Views.ListSettingsDialog.textFromStorage": "Da spazio di archiviazione",
+ "Common.Views.ListSettingsDialog.textFromUrl": "Da URL",
"Common.Views.ListSettingsDialog.textNumbering": "Numerato",
"Common.Views.ListSettingsDialog.tipChange": "Modifica elenco puntato",
"Common.Views.ListSettingsDialog.txtBullet": "Elenco puntato",
"Common.Views.ListSettingsDialog.txtColor": "Colore",
+ "Common.Views.ListSettingsDialog.txtImage": "Immagine",
+ "Common.Views.ListSettingsDialog.txtImport": "Importa",
"Common.Views.ListSettingsDialog.txtNewBullet": "Nuovo elenco puntato",
"Common.Views.ListSettingsDialog.txtNone": "Nessuno",
"Common.Views.ListSettingsDialog.txtOfText": "% del testo",
@@ -311,6 +322,7 @@
"Common.Views.Plugins.textStart": "Avvio",
"Common.Views.Plugins.textStop": "Termina",
"Common.Views.Protection.hintAddPwd": "Crittografa con password",
+ "Common.Views.Protection.hintDelPwd": "Elimina password",
"Common.Views.Protection.hintPwd": "Modifica o rimuovi password",
"Common.Views.Protection.hintSignature": "Aggiungi firma digitale o riga di firma",
"Common.Views.Protection.txtAddPwd": "Aggiungi password",
@@ -375,7 +387,7 @@
"Common.Views.ReviewChanges.txtSharing": "Condivisione",
"Common.Views.ReviewChanges.txtSpelling": "Controllo ortografico",
"Common.Views.ReviewChanges.txtTurnon": "Traccia cambiamenti",
- "Common.Views.ReviewChanges.txtView": "Modalità Visualizzazione",
+ "Common.Views.ReviewChanges.txtView": "Modalità visualizzazione",
"Common.Views.ReviewPopover.textAdd": "Aggiungi",
"Common.Views.ReviewPopover.textAddReply": "Aggiungi risposta",
"Common.Views.ReviewPopover.textCancel": "Annulla",
@@ -410,6 +422,7 @@
"Common.Views.SearchPanel.textReplaceAll": "Sostituire tutto",
"Common.Views.SearchPanel.textReplaceWith": "Sostituire con",
"Common.Views.SearchPanel.textSearch": "Ricerca",
+ "Common.Views.SearchPanel.textSearchAgain": "{0}Esegui una nuova ricerca{1} per ottenere risultati accurati.",
"Common.Views.SearchPanel.textSearchHasStopped": "La ricerca è stata interrotta",
"Common.Views.SearchPanel.textSearchOptions": "Opzioni di ricerca",
"Common.Views.SearchPanel.textSearchResults": "Risultati della ricerca: {0}/{1}",
@@ -717,6 +730,7 @@
"SSE.Controllers.Main.errorDefaultMessage": "Codice errore: %1",
"SSE.Controllers.Main.errorDeleteColumnContainsLockedCell": "Stai tentando di eliminare una colonna che contiene una cella bloccata. Le celle bloccate non possono essere eliminate se il foglio di calcolo è protetto. Per eliminare una cella bloccata, devi rimuovere la protezione del foglio. Potrebbe esserti richiesto di inserire una password.",
"SSE.Controllers.Main.errorDeleteRowContainsLockedCell": "Stai tentando di eliminare una riga che contiene una cella bloccata. Le celle bloccate non possono essere eliminate se il foglio di calcolo è protetto. Per eliminare una cella bloccata, devi rimuovere la protezione del foglio. Potrebbe esserti richiesto di inserire una password.",
+ "SSE.Controllers.Main.errorDirectUrl": "Si prega di verificare il link al documento. Questo collegamento deve essere un collegamento diretto al file da scaricare.",
"SSE.Controllers.Main.errorEditingDownloadas": "Si è verificato un errore durante il lavoro con il documento. Utilizza l'opzione 'Scaricare come' per salvare la copia di backup del file sul disco rigido del computer.",
"SSE.Controllers.Main.errorEditingSaveas": "Si è verificato un errore durante il lavoro con il documento. Utilizza l'opzione 'Salvare come ...' per salvare la copia di backup del file sul disco rigido del computer.",
"SSE.Controllers.Main.errorEditView": "La vista del foglio esistente non possono essere modificati, e quelli nuovi non possono essere creati al momento poiché alcuni di essi sono in fase di modifica.",
@@ -813,6 +827,7 @@
"SSE.Controllers.Main.textCloseTip": "Fai clic per chiudere il consiglio",
"SSE.Controllers.Main.textConfirm": "Conferma",
"SSE.Controllers.Main.textContactUs": "Contatta il reparto vendite.",
+ "SSE.Controllers.Main.textContinue": "Continua",
"SSE.Controllers.Main.textConvertEquation": "Questa equazione è stata creata in una vecchia versione dell'editor di equazioni che non è più supportata. Per modificarla, devi convertire l'equazione nel formato ML di Office Math. Convertire ora?",
"SSE.Controllers.Main.textCustomLoader": "Si prega di notare che, in base ai termini della licenza, non si ha il diritto di modificare il caricatore. Si prega di contattare il nostro reparto vendite per ottenere un preventivo.",
"SSE.Controllers.Main.textDisconnect": "La connessione è stata persa",
@@ -841,6 +856,7 @@
"SSE.Controllers.Main.textStrict": "Modalità Rigorosa",
"SSE.Controllers.Main.textTryUndoRedo": "Le funzioni Annulla/Ripristina sono disabilitate per la Modalità di Co-editing Veloce. Clicca il pulsante 'Modalità Rigorosa' per passare alla Modalità di Co-editing Rigorosa per poter modificare il file senza l'interferenza di altri utenti e inviare le modifiche solamente dopo averle salvate. Puoi passare da una modalità all'altra di co-editing utilizzando le Impostazioni avanzate dell'editor.",
"SSE.Controllers.Main.textTryUndoRedoWarn": "Le funzioni Annulla/Ripeti sono disattivate nella modalità rapida di co-editing",
+ "SSE.Controllers.Main.textUndo": "Annulla",
"SSE.Controllers.Main.textYes": "Sì",
"SSE.Controllers.Main.titleLicenseExp": "La licenza è scaduta",
"SSE.Controllers.Main.titleServerVersion": "L'editor è stato aggiornato",
@@ -1267,6 +1283,12 @@
"SSE.Controllers.Toolbar.txtFunction_Sinh": "Funzione seno iperbolica",
"SSE.Controllers.Toolbar.txtFunction_Tan": "Funzione tangente",
"SSE.Controllers.Toolbar.txtFunction_Tanh": "Funzione tangente iperbolica",
+ "SSE.Controllers.Toolbar.txtGroupCell_Custom": "Personalizzato",
+ "SSE.Controllers.Toolbar.txtGroupCell_NumberFormat": "Formato del numero",
+ "SSE.Controllers.Toolbar.txtGroupTable_Custom": "Personalizzato",
+ "SSE.Controllers.Toolbar.txtGroupTable_Dark": "Scuro",
+ "SSE.Controllers.Toolbar.txtGroupTable_Light": "Chiaro",
+ "SSE.Controllers.Toolbar.txtGroupTable_Medium": "Medio",
"SSE.Controllers.Toolbar.txtInsertCells": "Inserisci celle",
"SSE.Controllers.Toolbar.txtIntegral": "Integrale",
"SSE.Controllers.Toolbar.txtIntegral_dtheta": "Differenziale theta",
@@ -1640,22 +1662,27 @@
"SSE.Views.ChartSettings.textBorderSizeErr": "Il valore inserito non è corretto. Inserisci un valore tra 0 pt e 1584 pt.",
"SSE.Views.ChartSettings.textChangeType": "Cambia tipo",
"SSE.Views.ChartSettings.textChartType": "Cambia tipo di grafico",
+ "SSE.Views.ChartSettings.textDown": "Giù",
"SSE.Views.ChartSettings.textEditData": "Modifica Dati e Posizione",
"SSE.Views.ChartSettings.textFirstPoint": "Primo punto",
"SSE.Views.ChartSettings.textHeight": "Altezza",
"SSE.Views.ChartSettings.textHighPoint": "Punto alto",
"SSE.Views.ChartSettings.textKeepRatio": "Proporzioni costanti",
"SSE.Views.ChartSettings.textLastPoint": "Ultimo punto",
+ "SSE.Views.ChartSettings.textLeft": "A sinistra",
"SSE.Views.ChartSettings.textLowPoint": "Punto basso",
"SSE.Views.ChartSettings.textMarkers": "Indicatori",
"SSE.Views.ChartSettings.textNegativePoint": "Punto negativo",
+ "SSE.Views.ChartSettings.textPerspective": "Prospettiva",
"SSE.Views.ChartSettings.textRanges": "Intervallo dati",
+ "SSE.Views.ChartSettings.textRight": "A destra",
"SSE.Views.ChartSettings.textSelectData": "Seleziona dati",
"SSE.Views.ChartSettings.textShow": "Visualizza",
"SSE.Views.ChartSettings.textSize": "Dimensione",
"SSE.Views.ChartSettings.textStyle": "Stile",
"SSE.Views.ChartSettings.textSwitch": "Cambiare riga/colonna",
"SSE.Views.ChartSettings.textType": "Tipo",
+ "SSE.Views.ChartSettings.textUp": "Verso l'alto",
"SSE.Views.ChartSettings.textWidth": "Larghezza",
"SSE.Views.ChartSettingsDlg.errorMaxPoints": "ERRORE! Il numero massimo di punti in serie per grafico è 4096.",
"SSE.Views.ChartSettingsDlg.errorMaxRows": "ERRORE! Il numero massimo di serie di dati per grafico è 255.",
@@ -2058,6 +2085,8 @@
"SSE.Views.DocumentHolder.txtUngroup": "Separa",
"SSE.Views.DocumentHolder.txtWidth": "Larghezza",
"SSE.Views.DocumentHolder.vertAlignText": "Allineamento verticale",
+ "SSE.Views.ExternalLinksDlg.closeButtonText": "Chiudi",
+ "SSE.Views.ExternalLinksDlg.textSource": "Origine",
"SSE.Views.FieldSettingsDialog.strLayout": "Layout di Pagina",
"SSE.Views.FieldSettingsDialog.strSubtotals": "Totali Parziali",
"SSE.Views.FieldSettingsDialog.textReport": "Modulo di rapporto",
@@ -2121,6 +2150,7 @@
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Percorso",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persone che hanno diritti",
"SSE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Oggetto",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtTags": "Etichette",
"SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titolo",
"SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Caricato",
"SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Modifica diritti di accesso",
@@ -2763,6 +2793,10 @@
"SSE.Views.PivotTable.tipSelect": "Seleziona tutta la tabella pivot",
"SSE.Views.PivotTable.tipSubtotals": "Mostra o nascondi i totali parziali",
"SSE.Views.PivotTable.txtCreate": "Inserisci tabella",
+ "SSE.Views.PivotTable.txtGroupPivot_Custom": "Personalizzato",
+ "SSE.Views.PivotTable.txtGroupPivot_Dark": "Scuro",
+ "SSE.Views.PivotTable.txtGroupPivot_Light": "Chiaro",
+ "SSE.Views.PivotTable.txtGroupPivot_Medium": "Medio",
"SSE.Views.PivotTable.txtPivotTable": "Tabella pivot",
"SSE.Views.PivotTable.txtRefresh": "Aggiorna",
"SSE.Views.PivotTable.txtSelect": "Seleziona",
@@ -3292,6 +3326,13 @@
"SSE.Views.TableSettingsAdvanced.textAltTip": "La rappresentazione alternativa del testo delle informazioni riguardanti gli oggetti visivi, che verrà letta alle persone con deficit visivi o cognitivi per aiutarli a comprendere meglio quali informazioni sono contenute nell'immagine, nella forma, nel grafico o nella tabella.",
"SSE.Views.TableSettingsAdvanced.textAltTitle": "Titolo",
"SSE.Views.TableSettingsAdvanced.textTitle": "Tabella - Impostazioni avanzate",
+ "SSE.Views.TableSettingsAdvanced.txtGroupTable_Custom": "Personalizzato",
+ "SSE.Views.TableSettingsAdvanced.txtGroupTable_Dark": "Scuro",
+ "SSE.Views.TableSettingsAdvanced.txtGroupTable_Light": "Chiaro",
+ "SSE.Views.TableSettingsAdvanced.txtGroupTable_Medium": "Medio",
+ "SSE.Views.TableSettingsAdvanced.txtTable_TableStyleDark": "Stile tabella scuro",
+ "SSE.Views.TableSettingsAdvanced.txtTable_TableStyleLight": "Stile tabella chiaro",
+ "SSE.Views.TableSettingsAdvanced.txtTable_TableStyleMedium": "Stile tabella medio",
"SSE.Views.TextArtSettings.strBackground": "Colore sfondo",
"SSE.Views.TextArtSettings.strColor": "Colore",
"SSE.Views.TextArtSettings.strFill": "Riempimento",
@@ -3342,6 +3383,7 @@
"SSE.Views.Toolbar.capBtnComment": "Commento",
"SSE.Views.Toolbar.capBtnInsHeader": "Intestazione/Piè di pagina",
"SSE.Views.Toolbar.capBtnInsSlicer": "Filtro dati",
+ "SSE.Views.Toolbar.capBtnInsSmartArt": "SmartArt",
"SSE.Views.Toolbar.capBtnInsSymbol": "Simbolo",
"SSE.Views.Toolbar.capBtnMargins": "Margini",
"SSE.Views.Toolbar.capBtnPageOrient": "Orientamento",
@@ -3386,6 +3428,7 @@
"SSE.Views.Toolbar.textClockwise": "Angolo in senso orario",
"SSE.Views.Toolbar.textColorScales": "Scale cromatiche",
"SSE.Views.Toolbar.textCounterCw": "Angolo in senso antiorario",
+ "SSE.Views.Toolbar.textCustom": "Personalizzato",
"SSE.Views.Toolbar.textDataBars": "Barre di dati",
"SSE.Views.Toolbar.textDelLeft": "Sposta celle a sinistra",
"SSE.Views.Toolbar.textDelUp": "Sposta celle in alto",
@@ -3536,6 +3579,7 @@
"SSE.Views.Toolbar.txtAdditional": "Ulteriori",
"SSE.Views.Toolbar.txtAscending": "Crescente",
"SSE.Views.Toolbar.txtAutosumTip": "Somma",
+ "SSE.Views.Toolbar.txtCellStyle": "Stile cella",
"SSE.Views.Toolbar.txtClearAll": "Tutto",
"SSE.Views.Toolbar.txtClearComments": "Commenti",
"SSE.Views.Toolbar.txtClearFilter": "Svuota filtro",
@@ -3676,7 +3720,15 @@
"SSE.Views.ViewTab.tipClose": "Chiudi visualizzazione foglio",
"SSE.Views.ViewTab.tipCreate": "Crea vista del foglio",
"SSE.Views.ViewTab.tipFreeze": "Blocca riquadri",
+ "SSE.Views.ViewTab.tipInterfaceTheme": "Tema dell'interfaccia",
"SSE.Views.ViewTab.tipSheetView": "Visualizzazione foglio",
+ "SSE.Views.WatchDialog.closeButtonText": "Chiudi",
+ "SSE.Views.WatchDialog.textCell": "Cella",
+ "SSE.Views.WatchDialog.textDeleteAll": "Elimina tutto",
+ "SSE.Views.WatchDialog.textFormula": "Formula",
+ "SSE.Views.WatchDialog.textName": "Nome",
+ "SSE.Views.WatchDialog.textSheet": "Foglio",
+ "SSE.Views.WatchDialog.textValue": "Valore",
"SSE.Views.WBProtection.hintAllowRanges": "Permettere di cambiare gli intervalli",
"SSE.Views.WBProtection.hintProtectSheet": "Proteggere foglio",
"SSE.Views.WBProtection.hintProtectWB": "Proteggere libro di lavoro",
diff --git a/apps/spreadsheeteditor/main/locale/ja.json b/apps/spreadsheeteditor/main/locale/ja.json
index e05341bef..99161981f 100644
--- a/apps/spreadsheeteditor/main/locale/ja.json
+++ b/apps/spreadsheeteditor/main/locale/ja.json
@@ -2111,15 +2111,20 @@
"SSE.Views.DigitalFilterDialog.textUse1": "?を使って、任意の1文字を表すことができます。",
"SSE.Views.DigitalFilterDialog.textUse2": "* を使って、任意の文字列を表すことができます。",
"SSE.Views.DigitalFilterDialog.txtTitle": "ユーザー設定フィルター",
+ "SSE.Views.DocumentHolder.advancedEquationText": "数式設定",
"SSE.Views.DocumentHolder.advancedImgText": "画像の詳細設定",
"SSE.Views.DocumentHolder.advancedShapeText": "図形の詳細設定",
"SSE.Views.DocumentHolder.advancedSlicerText": "スライサーの高度な設定",
+ "SSE.Views.DocumentHolder.allLinearText": "すべて - 線形",
+ "SSE.Views.DocumentHolder.allProfText": "すべて - プロフェッショナル",
"SSE.Views.DocumentHolder.bottomCellText": "下揃え",
"SSE.Views.DocumentHolder.bulletsText": "箇条書きと段落番号",
"SSE.Views.DocumentHolder.centerCellText": "中央揃え",
"SSE.Views.DocumentHolder.chartDataText": "グラフデータを選択する",
"SSE.Views.DocumentHolder.chartText": "グラフの詳細設定",
"SSE.Views.DocumentHolder.chartTypeText": "グラフの種類を変更する",
+ "SSE.Views.DocumentHolder.currLinearText": "現在 - 線形",
+ "SSE.Views.DocumentHolder.currProfText": "現在 - プロフェッショナル",
"SSE.Views.DocumentHolder.deleteColumnText": "列",
"SSE.Views.DocumentHolder.deleteRowText": "行の削除",
"SSE.Views.DocumentHolder.deleteTableText": "表",
@@ -2133,6 +2138,7 @@
"SSE.Views.DocumentHolder.insertColumnRightText": "右に列の挿入",
"SSE.Views.DocumentHolder.insertRowAboveText": "上に行の挿入",
"SSE.Views.DocumentHolder.insertRowBelowText": "下に行の挿入",
+ "SSE.Views.DocumentHolder.latexText": "LaTeX",
"SSE.Views.DocumentHolder.originalSizeText": "実際のサイズ",
"SSE.Views.DocumentHolder.removeHyperlinkText": "ハイパーリンクの削除",
"SSE.Views.DocumentHolder.selectColumnText": "列全体",
@@ -2242,6 +2248,7 @@
"SSE.Views.DocumentHolder.txtPaste": "貼り付け",
"SSE.Views.DocumentHolder.txtPercentage": "パーセンテージ",
"SSE.Views.DocumentHolder.txtReapply": "再適用",
+ "SSE.Views.DocumentHolder.txtRefresh": "更新する",
"SSE.Views.DocumentHolder.txtRow": "行全体",
"SSE.Views.DocumentHolder.txtRowHeight": "行の高さ",
"SSE.Views.DocumentHolder.txtScientific": "指数",
@@ -2261,6 +2268,7 @@
"SSE.Views.DocumentHolder.txtTime": "時刻",
"SSE.Views.DocumentHolder.txtUngroup": "グループ解除",
"SSE.Views.DocumentHolder.txtWidth": "幅",
+ "SSE.Views.DocumentHolder.unicodeText": "Unicode",
"SSE.Views.DocumentHolder.vertAlignText": "垂直方向の配置",
"SSE.Views.ExternalLinksDlg.closeButtonText": "閉じる",
"SSE.Views.ExternalLinksDlg.textDelete": "リンクの解除",
diff --git a/apps/spreadsheeteditor/main/locale/ko.json b/apps/spreadsheeteditor/main/locale/ko.json
index 5d921bc44..3ffa1ed33 100644
--- a/apps/spreadsheeteditor/main/locale/ko.json
+++ b/apps/spreadsheeteditor/main/locale/ko.json
@@ -2045,7 +2045,7 @@
"SSE.Views.FileMenuPanels.CreateNew.txtCreateNew": "새로 만들기",
"SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "적용",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "저자 추가",
- "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "문장 추가",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "텍스트추가",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "어플리케이션",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "작성자",
"SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "액세스 권한 변경",
diff --git a/apps/spreadsheeteditor/main/locale/pl.json b/apps/spreadsheeteditor/main/locale/pl.json
index d2e5fcf10..0ab79ea71 100644
--- a/apps/spreadsheeteditor/main/locale/pl.json
+++ b/apps/spreadsheeteditor/main/locale/pl.json
@@ -3310,7 +3310,7 @@
"SSE.Views.Toolbar.capInsertShape": "Kształt",
"SSE.Views.Toolbar.capInsertSpark": "Sparkline",
"SSE.Views.Toolbar.capInsertTable": "Tabela",
- "SSE.Views.Toolbar.capInsertText": "Text Box",
+ "SSE.Views.Toolbar.capInsertText": "Pole tekstowe",
"SSE.Views.Toolbar.mniImageFromFile": "Obraz z pliku",
"SSE.Views.Toolbar.mniImageFromStorage": "Obraz z magazynu",
"SSE.Views.Toolbar.mniImageFromUrl": "Obraz z URL",
diff --git a/apps/spreadsheeteditor/main/locale/pt-pt.json b/apps/spreadsheeteditor/main/locale/pt-pt.json
index 5276849c4..02261c287 100644
--- a/apps/spreadsheeteditor/main/locale/pt-pt.json
+++ b/apps/spreadsheeteditor/main/locale/pt-pt.json
@@ -493,7 +493,7 @@
"SSE.Controllers.DataTab.textColumns": "Colunas",
"SSE.Controllers.DataTab.textEmptyUrl": "Precisa de especificar o URL.",
"SSE.Controllers.DataTab.textRows": "Linhas",
- "SSE.Controllers.DataTab.textWizard": "Texto para Colunas",
+ "SSE.Controllers.DataTab.textWizard": "Texto para colunas",
"SSE.Controllers.DataTab.txtDataValidation": "Validação dos dados",
"SSE.Controllers.DataTab.txtExpand": "Expandir",
"SSE.Controllers.DataTab.txtExpandRemDuplicates": "Os dados adjacentes à seleção não serão removidos. Deseja expandir a seleção para incluir os dados adjacentes ou continuar com a ordenação apenas das células atualmente selecionadas?",
@@ -665,7 +665,7 @@
"SSE.Controllers.FormulaDialog.sCategoryAll": "Todas",
"SSE.Controllers.FormulaDialog.sCategoryCube": "Cubo",
"SSE.Controllers.FormulaDialog.sCategoryDatabase": "Base de dados",
- "SSE.Controllers.FormulaDialog.sCategoryDateAndTime": "Data e Hora",
+ "SSE.Controllers.FormulaDialog.sCategoryDateAndTime": "Data e hora",
"SSE.Controllers.FormulaDialog.sCategoryEngineering": "Engenharia",
"SSE.Controllers.FormulaDialog.sCategoryFinancial": "Financeiras",
"SSE.Controllers.FormulaDialog.sCategoryInformation": "Informação",
@@ -809,8 +809,8 @@
"SSE.Controllers.Main.openTextText": "A abrir Folha de Cálculo...",
"SSE.Controllers.Main.openTitleText": "A abrir Folha de Cálculo",
"SSE.Controllers.Main.pastInMergeAreaError": "Não é possível alterar parte de uma célula mesclada",
- "SSE.Controllers.Main.printTextText": "A imprimir Folha de Cálculo...",
- "SSE.Controllers.Main.printTitleText": "A imprimir Folha de Cálculo",
+ "SSE.Controllers.Main.printTextText": "A imprimir folha de cálculo...",
+ "SSE.Controllers.Main.printTitleText": "A imprimir folha de cálculo",
"SSE.Controllers.Main.reloadButtonText": "Recarregar página",
"SSE.Controllers.Main.requestEditFailedMessageText": "Alguém está editando este documento neste momento. Tente novamente mais tarde.",
"SSE.Controllers.Main.requestEditFailedTitleText": "Acesso negado",
@@ -1583,7 +1583,7 @@
"SSE.Views.CellSettings.textColor": "Cor de preenchimento",
"SSE.Views.CellSettings.textColorScales": "Escalas de cores",
"SSE.Views.CellSettings.textCondFormat": "Formatação condicional",
- "SSE.Views.CellSettings.textControl": "Controlo de Texto",
+ "SSE.Views.CellSettings.textControl": "Controlo de texto",
"SSE.Views.CellSettings.textDataBars": "Barras de dados",
"SSE.Views.CellSettings.textDirection": "Direção",
"SSE.Views.CellSettings.textFill": "Preencher",
@@ -1847,7 +1847,7 @@
"SSE.Views.DataTab.capBtnTextCustomSort": "Ordenação personalizada",
"SSE.Views.DataTab.capBtnTextDataValidation": "Validação dos dados",
"SSE.Views.DataTab.capBtnTextRemDuplicates": "Remover duplicados",
- "SSE.Views.DataTab.capBtnTextToCol": "Texto para Colunas",
+ "SSE.Views.DataTab.capBtnTextToCol": "Texto para colunas",
"SSE.Views.DataTab.capBtnUngroup": "Desagrupar",
"SSE.Views.DataTab.capDataExternalLinks": "Ligações externas",
"SSE.Views.DataTab.capDataFromText": "Obter dados",
@@ -2267,7 +2267,7 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Chinês",
"SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Aviso",
"SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Com palavra-passe",
- "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteger Folha de Cálculo",
+ "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteger folha de cálculo",
"SSE.Views.FileMenuPanels.ProtectDoc.strSignature": "Com assinatura",
"SSE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Editar Folha de Cálculo",
"SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "A edição irá remover as assinaturas da folha de cálculo. Continuar?",
@@ -2632,7 +2632,7 @@
"SSE.Views.NamedRangeEditDlg.txtEmpty": "Este campo é obrigatório",
"SSE.Views.NamedRangeEditDlg.txtTitleEdit": "Edit Name",
"SSE.Views.NamedRangeEditDlg.txtTitleNew": "Novo nome",
- "SSE.Views.NamedRangePasteDlg.textNames": "Named Ranges",
+ "SSE.Views.NamedRangePasteDlg.textNames": "Intervalos nomeados",
"SSE.Views.NamedRangePasteDlg.txtTitle": "Paste Name",
"SSE.Views.NameManagerDlg.closeButtonText": "Fechar",
"SSE.Views.NameManagerDlg.guestText": "Visitante",
@@ -2649,7 +2649,7 @@
"SSE.Views.NameManagerDlg.textFilterWorkbook": "Names Scoped to Workbook",
"SSE.Views.NameManagerDlg.textNew": "Novo",
"SSE.Views.NameManagerDlg.textnoNames": "Nenhum intervalo nomeado correspondente ao seu filtro foi encontrado.",
- "SSE.Views.NameManagerDlg.textRanges": "Named Ranges",
+ "SSE.Views.NameManagerDlg.textRanges": "Intervalos nomeados",
"SSE.Views.NameManagerDlg.textScope": "Scope",
"SSE.Views.NameManagerDlg.textWorkbook": "Workbook",
"SSE.Views.NameManagerDlg.tipIsLocked": "Este elemento está a ser editado por outro utilizador.",
@@ -3414,7 +3414,7 @@
"SSE.Views.Toolbar.capBtnMargins": "Margens",
"SSE.Views.Toolbar.capBtnPageOrient": "Orientação",
"SSE.Views.Toolbar.capBtnPageSize": "Tamanho",
- "SSE.Views.Toolbar.capBtnPrintArea": "Área de Impressão",
+ "SSE.Views.Toolbar.capBtnPrintArea": "Área de impressão",
"SSE.Views.Toolbar.capBtnPrintTitles": "Imprimir títulos",
"SSE.Views.Toolbar.capBtnScale": "Ajustar Tamanho",
"SSE.Views.Toolbar.capImgAlign": "Alinhar",
@@ -3450,7 +3450,7 @@
"SSE.Views.Toolbar.textBottom": "Baixo:",
"SSE.Views.Toolbar.textBottomBorders": "Contornos inferiores",
"SSE.Views.Toolbar.textCenterBorders": "Bordas verticais interiores",
- "SSE.Views.Toolbar.textClearPrintArea": "Limpar Área de Impressão",
+ "SSE.Views.Toolbar.textClearPrintArea": "Limpar Área de impressão",
"SSE.Views.Toolbar.textClearRule": "Limpar regras",
"SSE.Views.Toolbar.textClockwise": "Ângulo para a direita",
"SSE.Views.Toolbar.textColorScales": "Escalas de cores",
@@ -3588,7 +3588,7 @@
"SSE.Views.Toolbar.tipPaste": "Colar",
"SSE.Views.Toolbar.tipPrColor": "Cor de preenchimento",
"SSE.Views.Toolbar.tipPrint": "Imprimir",
- "SSE.Views.Toolbar.tipPrintArea": "Área de Impressão",
+ "SSE.Views.Toolbar.tipPrintArea": "Área de impressão",
"SSE.Views.Toolbar.tipPrintTitles": "Imprimir títulos",
"SSE.Views.Toolbar.tipRedo": "Refazer",
"SSE.Views.Toolbar.tipSave": "Salvar",
@@ -3619,7 +3619,7 @@
"SSE.Views.Toolbar.txtCurrency": "Moeda",
"SSE.Views.Toolbar.txtCustom": "Personalizar",
"SSE.Views.Toolbar.txtDate": "Data",
- "SSE.Views.Toolbar.txtDateTime": "Data e Hora",
+ "SSE.Views.Toolbar.txtDateTime": "Data e hora",
"SSE.Views.Toolbar.txtDescending": "Decrescente",
"SSE.Views.Toolbar.txtDollar": "$ Dólar",
"SSE.Views.Toolbar.txtEuro": "€ Euro",
@@ -3634,7 +3634,7 @@
"SSE.Views.Toolbar.txtMergeAcross": "Mesclar através",
"SSE.Views.Toolbar.txtMergeCells": "Mesclar células",
"SSE.Views.Toolbar.txtMergeCenter": "Mesclar e Centrar",
- "SSE.Views.Toolbar.txtNamedRange": "Named Ranges",
+ "SSE.Views.Toolbar.txtNamedRange": "Intervalos nomeados",
"SSE.Views.Toolbar.txtNewRange": "Definir nome",
"SSE.Views.Toolbar.txtNoBorders": "Sem bordas",
"SSE.Views.Toolbar.txtNumber": "Número",
@@ -3735,7 +3735,7 @@
"SSE.Views.ViewTab.textCombineSheetAndStatusBars": "Combinar as barras da folha e de estado",
"SSE.Views.ViewTab.textCreate": "Novo",
"SSE.Views.ViewTab.textDefault": "Padrão",
- "SSE.Views.ViewTab.textFormula": "Barra de Fórmulas",
+ "SSE.Views.ViewTab.textFormula": "Barra de fórmulas",
"SSE.Views.ViewTab.textFreezeCol": "Fixar a Primeira Coluna",
"SSE.Views.ViewTab.textFreezeRow": "Fixar primeira linha",
"SSE.Views.ViewTab.textGridlines": "Linhas da grelha",
@@ -3766,14 +3766,14 @@
"SSE.Views.WBProtection.hintProtectSheet": "Proteger folha",
"SSE.Views.WBProtection.hintProtectWB": "Proteger livro",
"SSE.Views.WBProtection.txtAllowRanges": "Permitir editar intervalos",
- "SSE.Views.WBProtection.txtHiddenFormula": "Fórmulas Ocultas",
- "SSE.Views.WBProtection.txtLockedCell": "Célula Bloqueada",
+ "SSE.Views.WBProtection.txtHiddenFormula": "Fórmulas ocultas",
+ "SSE.Views.WBProtection.txtLockedCell": "Célula bloqueada",
"SSE.Views.WBProtection.txtLockedShape": "Forma bloqueada",
"SSE.Views.WBProtection.txtLockedText": "Bloquear Texto",
"SSE.Views.WBProtection.txtProtectSheet": "Proteger folha",
"SSE.Views.WBProtection.txtProtectWB": "Proteger livro",
"SSE.Views.WBProtection.txtSheetUnlockDescription": "Introduza uma palavra-passe para desbloquear a folha",
- "SSE.Views.WBProtection.txtSheetUnlockTitle": "Desproteger Folha",
+ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Desproteger folha",
"SSE.Views.WBProtection.txtWBUnlockDescription": "Introduza uma palavra-passe para desbloquear o livro",
"SSE.Views.WBProtection.txtWBUnlockTitle": "Desproteger Livro"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/pt.json b/apps/spreadsheeteditor/main/locale/pt.json
index 8030cf760..cf50164a7 100644
--- a/apps/spreadsheeteditor/main/locale/pt.json
+++ b/apps/spreadsheeteditor/main/locale/pt.json
@@ -100,6 +100,165 @@
"Common.define.conditionalData.textUnique": "Único",
"Common.define.conditionalData.textValue": "O valor é",
"Common.define.conditionalData.textYesterday": "Ontem",
+ "Common.define.smartArt.textAccentedPicture": "Imagem com Ênfase",
+ "Common.define.smartArt.textAccentProcess": "Processo em Destaque",
+ "Common.define.smartArt.textAlternatingFlow": "Fluxo alternado",
+ "Common.define.smartArt.textAlternatingHexagons": "Hexágonos alternados",
+ "Common.define.smartArt.textAlternatingPictureBlocks": "Blocos de imagem alternados",
+ "Common.define.smartArt.textAlternatingPictureCircles": "Círculos de imagens alternadas",
+ "Common.define.smartArt.textArchitectureLayout": "Layout de arquitetura",
+ "Common.define.smartArt.textArrowRibbon": "Seta em Forma de Fita",
+ "Common.define.smartArt.textAscendingPictureAccentProcess": "Processo de acentuação da imagem ascendente",
+ "Common.define.smartArt.textBalance": "Saldo",
+ "Common.define.smartArt.textBasicBendingProcess": "Processo Básico de Dobragem",
+ "Common.define.smartArt.textBasicBlockList": "Lista básica de blocos",
+ "Common.define.smartArt.textBasicChevronProcess": "Processo Básico em Divisas",
+ "Common.define.smartArt.textBasicCycle": "Ciclo Básico",
+ "Common.define.smartArt.textBasicMatrix": "Matriz Básica",
+ "Common.define.smartArt.textBasicPie": "Torta Básica",
+ "Common.define.smartArt.textBasicProcess": "Processo Básico",
+ "Common.define.smartArt.textBasicPyramid": "Pirâmide Básica",
+ "Common.define.smartArt.textBasicRadial": "Radial Básico",
+ "Common.define.smartArt.textBasicTarget": "Alvo Básico",
+ "Common.define.smartArt.textBasicTimeline": "Linha do tempo básica",
+ "Common.define.smartArt.textBasicVenn": "Venn básico",
+ "Common.define.smartArt.textBendingPictureAccentList": "Lista de Acentos de Imagem Dobrada",
+ "Common.define.smartArt.textBendingPictureBlocks": "Dobrar Blocos de Imagem",
+ "Common.define.smartArt.textBendingPictureCaption": "Dobrando a legenda da imagem",
+ "Common.define.smartArt.textBendingPictureCaptionList": "Lista de legendas de imagens dobradas",
+ "Common.define.smartArt.textBendingPictureSemiTranparentText": "Dobrando o Texto Semitransparente da Imagem",
+ "Common.define.smartArt.textBlockCycle": "Ciclo de bloco",
+ "Common.define.smartArt.textBubblePictureList": "Lista de imagens de bolhas",
+ "Common.define.smartArt.textCaptionedPictures": "Imagens legendadas",
+ "Common.define.smartArt.textChevronAccentProcess": "Processo de Ênfase em Divisas",
+ "Common.define.smartArt.textChevronList": "Lista de Divisas",
+ "Common.define.smartArt.textCircleAccentTimeline": "Linha do tempo de destaque do círculo",
+ "Common.define.smartArt.textCircleArrowProcess": "Processo de seta circular",
+ "Common.define.smartArt.textCirclePictureHierarchy": "Hierarquia de imagem do círculo",
+ "Common.define.smartArt.textCircleProcess": "Processo Círculo",
+ "Common.define.smartArt.textCircleRelationship": "Relacionamento do Círculo",
+ "Common.define.smartArt.textCircularBendingProcess": "Processo de dobra circular",
+ "Common.define.smartArt.textCircularPictureCallout": "Texto explicativo de imagem circular",
+ "Common.define.smartArt.textClosedChevronProcess": "Processo Fechado em Divisas",
+ "Common.define.smartArt.textContinuousArrowProcess": "Processo de Seta Contínua",
+ "Common.define.smartArt.textContinuousBlockProcess": "Processo de Bloco Contínuo",
+ "Common.define.smartArt.textContinuousCycle": "Ciclo Contínuo",
+ "Common.define.smartArt.textContinuousPictureList": "Lista de Imagens Contínua",
+ "Common.define.smartArt.textConvergingArrows": "Setas convergentes",
+ "Common.define.smartArt.textConvergingRadial": "Radial convergente",
+ "Common.define.smartArt.textConvergingText": "Texto convergente",
+ "Common.define.smartArt.textCounterbalanceArrows": "Setas de contrapeso",
+ "Common.define.smartArt.textCycle": "Ciclo",
+ "Common.define.smartArt.textCycleMatrix": "Matriz de Ciclo",
+ "Common.define.smartArt.textDescendingBlockList": "Lista de Bloqueios Descendentes",
+ "Common.define.smartArt.textDescendingProcess": "Processo descendente",
+ "Common.define.smartArt.textDetailedProcess": "Processo Detalhado",
+ "Common.define.smartArt.textDivergingArrows": "Flechas divergentes",
+ "Common.define.smartArt.textDivergingRadial": "Radial divergente",
+ "Common.define.smartArt.textEquation": "Equação",
+ "Common.define.smartArt.textFramedTextPicture": "Imagem de texto emoldurada",
+ "Common.define.smartArt.textFunnel": "Funil",
+ "Common.define.smartArt.textGear": "Engrenagem",
+ "Common.define.smartArt.textGridMatrix": "Matriz de grade",
+ "Common.define.smartArt.textGroupedList": "Lista Agrupada",
+ "Common.define.smartArt.textHalfCircleOrganizationChart": "Organograma de meio círculo",
+ "Common.define.smartArt.textHexagonCluster": "Conjunto Hexagonal",
+ "Common.define.smartArt.textHexagonRadial": "Radial Hexágono",
+ "Common.define.smartArt.textHierarchy": "Hierarquia",
+ "Common.define.smartArt.textHierarchyList": "Lista de hierarquia",
+ "Common.define.smartArt.textHorizontalBulletList": "Lista de marcadores horizontais",
+ "Common.define.smartArt.textHorizontalHierarchy": "Hierarquia Horizontal",
+ "Common.define.smartArt.textHorizontalLabeledHierarchy": "Hierarquia Horizontal Rotulada",
+ "Common.define.smartArt.textHorizontalMultiLevelHierarchy": "Hierarquia horizontal multinível",
+ "Common.define.smartArt.textHorizontalOrganizationChart": "Organograma Horizontal",
+ "Common.define.smartArt.textHorizontalPictureList": "Lista de imagens horizontais",
+ "Common.define.smartArt.textIncreasingArrowProcess": "Processo de seta crescente",
+ "Common.define.smartArt.textIncreasingCircleProcess": "Aumentando o Processo do Círculo",
+ "Common.define.smartArt.textInterconnectedBlockProcess": "Processo de bloco interconectado",
+ "Common.define.smartArt.textInterconnectedRings": "Anéis Interconectados",
+ "Common.define.smartArt.textInvertedPyramid": "Pirâmide invertida",
+ "Common.define.smartArt.textLabeledHierarchy": "Hierarquia rotulada",
+ "Common.define.smartArt.textLinearVenn": "Venn Linear",
+ "Common.define.smartArt.textLinedList": "Lista alinhada",
+ "Common.define.smartArt.textList": "Lista",
+ "Common.define.smartArt.textMatrix": "Matriz",
+ "Common.define.smartArt.textMultidirectionalCycle": "Ciclo multidirecional",
+ "Common.define.smartArt.textNameAndTitleOrganizationChart": "Organograma de Nome e Título",
+ "Common.define.smartArt.textNestedTarget": "Alvo Aninhado",
+ "Common.define.smartArt.textNondirectionalCycle": "Ciclo Não Direcional",
+ "Common.define.smartArt.textOpposingArrows": "Setas Opostas",
+ "Common.define.smartArt.textOpposingIdeas": "Ideias opostas",
+ "Common.define.smartArt.textOrganizationChart": "Organograma",
+ "Common.define.smartArt.textOther": "Outro",
+ "Common.define.smartArt.textPhasedProcess": "Processo em fases",
+ "Common.define.smartArt.textPicture": "Imagem",
+ "Common.define.smartArt.textPictureAccentBlocks": "Blocos de destaque de imagem",
+ "Common.define.smartArt.textPictureAccentList": "Lista de destaques da imagem",
+ "Common.define.smartArt.textPictureAccentProcess": "Processo de destaque da imagem",
+ "Common.define.smartArt.textPictureCaptionList": "Lista de legendas de imagens",
+ "Common.define.smartArt.textPictureFrame": "Porta-retrato",
+ "Common.define.smartArt.textPictureGrid": "Grade de imagens",
+ "Common.define.smartArt.textPictureLineup": "Alinhamento de imagens",
+ "Common.define.smartArt.textPictureOrganizationChart": "Organograma de imagens",
+ "Common.define.smartArt.textPictureStrips": "Tiras de imagem",
+ "Common.define.smartArt.textPieProcess": "Processo em Pizza",
+ "Common.define.smartArt.textPlusAndMinus": "Mais e menos",
+ "Common.define.smartArt.textProcess": "Processo",
+ "Common.define.smartArt.textProcessArrows": "Setas de processo",
+ "Common.define.smartArt.textProcessList": "Lista de processos",
+ "Common.define.smartArt.textPyramid": "Pirâmide",
+ "Common.define.smartArt.textPyramidList": "Lista de pirâmides",
+ "Common.define.smartArt.textRadialCluster": "Aglomerado Radial",
+ "Common.define.smartArt.textRadialCycle": "Ciclo radial",
+ "Common.define.smartArt.textRadialList": "Lista radial",
+ "Common.define.smartArt.textRadialPictureList": "Lista de imagens radiais",
+ "Common.define.smartArt.textRadialVenn": "Venn Radial",
+ "Common.define.smartArt.textRandomToResultProcess": "Processo aleatório para resultado",
+ "Common.define.smartArt.textRelationship": "Relação",
+ "Common.define.smartArt.textRepeatingBendingProcess": "Repetindo o processo de dobra",
+ "Common.define.smartArt.textReverseList": "Lista reversa",
+ "Common.define.smartArt.textSegmentedCycle": "Ciclo Segmentado",
+ "Common.define.smartArt.textSegmentedProcess": "Processo segmentado",
+ "Common.define.smartArt.textSegmentedPyramid": "Pirâmide segmentada",
+ "Common.define.smartArt.textSnapshotPictureList": "Lista de fotos instantâneas",
+ "Common.define.smartArt.textSpiralPicture": "Imagem em espiral",
+ "Common.define.smartArt.textSquareAccentList": "Lista de Acentos Quadrados",
+ "Common.define.smartArt.textStackedList": "Lista empilhada",
+ "Common.define.smartArt.textStackedVenn": "Venn Empilhado",
+ "Common.define.smartArt.textStaggeredProcess": "Processo escalonado",
+ "Common.define.smartArt.textStepDownProcess": "Processo de redução",
+ "Common.define.smartArt.textStepUpProcess": "Processo de intensificação",
+ "Common.define.smartArt.textSubStepProcess": "Processo de subetapas",
+ "Common.define.smartArt.textTabbedArc": "Arco com abas",
+ "Common.define.smartArt.textTableHierarchy": "Hierarquia da Tabela",
+ "Common.define.smartArt.textTableList": "Lista de Tabelas",
+ "Common.define.smartArt.textTabList": "Lista de guias",
+ "Common.define.smartArt.textTargetList": "Lista de alvos",
+ "Common.define.smartArt.textTextCycle": "Ciclo de texto",
+ "Common.define.smartArt.textThemePictureAccent": "Destaque da Imagem do Tema",
+ "Common.define.smartArt.textThemePictureAlternatingAccent": "Acento Alternado da Imagem do Tema",
+ "Common.define.smartArt.textThemePictureGrid": "Grade de imagens do tema",
+ "Common.define.smartArt.textTitledMatrix": "Matriz intitulada",
+ "Common.define.smartArt.textTitledPictureAccentList": "Lista de Acentos de Imagem Intitulada",
+ "Common.define.smartArt.textTitledPictureBlocks": "Blocos de imagens intitulados",
+ "Common.define.smartArt.textTitlePictureLineup": "Título Imagem Alinhamento",
+ "Common.define.smartArt.textTrapezoidList": "Lista de trapézios",
+ "Common.define.smartArt.textUpwardArrow": "Seta para cima",
+ "Common.define.smartArt.textVaryingWidthList": "Lista de largura variável",
+ "Common.define.smartArt.textVerticalAccentList": "Lista de acentos verticais",
+ "Common.define.smartArt.textVerticalArrowList": "Lista de setas verticais",
+ "Common.define.smartArt.textVerticalBendingProcess": "Processo de dobra vertical",
+ "Common.define.smartArt.textVerticalBlockList": "Lista de Bloqueios Verticais",
+ "Common.define.smartArt.textVerticalBoxList": "Lista de caixas verticais",
+ "Common.define.smartArt.textVerticalBracketList": "Lista de colchetes verticais",
+ "Common.define.smartArt.textVerticalBulletList": "Lista de marcadores verticais",
+ "Common.define.smartArt.textVerticalChevronList": "Lista Vertical em Divisas",
+ "Common.define.smartArt.textVerticalCircleList": "Lista de círculos verticais",
+ "Common.define.smartArt.textVerticalCurvedList": "Lista Curva Vertical",
+ "Common.define.smartArt.textVerticalEquation": "Equação Vertical",
+ "Common.define.smartArt.textVerticalPictureAccentList": "Lista Vertical de Acentos de Imagem",
+ "Common.define.smartArt.textVerticalPictureList": "Lista de imagens verticais",
+ "Common.define.smartArt.textVerticalProcess": "Processo Vertical",
"Common.Translation.textMoreButton": "Mais",
"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",
@@ -217,7 +376,7 @@
"Common.Views.Comments.txtEmpty": "Não há comentários na planilha.",
"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",
+ "Common.Views.CopyWarningDialog.textTitle": "Copiar, Cortar e Colar",
"Common.Views.CopyWarningDialog.textToCopy": "para Copiar",
"Common.Views.CopyWarningDialog.textToCut": "para Cortar",
"Common.Views.CopyWarningDialog.textToPaste": "para Colar",
@@ -355,7 +514,7 @@
"Common.Views.ReviewChanges.txtAcceptCurrent": "Aceitar alteração atual",
"Common.Views.ReviewChanges.txtChat": "Chat",
"Common.Views.ReviewChanges.txtClose": "Fechar",
- "Common.Views.ReviewChanges.txtCoAuthMode": "Modo de co-edição",
+ "Common.Views.ReviewChanges.txtCoAuthMode": "Modo de coedição",
"Common.Views.ReviewChanges.txtCommentRemAll": "Remover todos os comentários",
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Remover comentários atuais",
"Common.Views.ReviewChanges.txtCommentRemMy": "Remover meus comentários",
@@ -369,7 +528,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 da 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",
@@ -389,6 +548,7 @@
"Common.Views.ReviewPopover.textCancel": "Cancelar",
"Common.Views.ReviewPopover.textClose": "Fechar",
"Common.Views.ReviewPopover.textEdit": "OK",
+ "Common.Views.ReviewPopover.textEnterComment": "Insira seu comentário aqui",
"Common.Views.ReviewPopover.textMention": "+menção fornecerá acesso ao documento e enviará um e-mail",
"Common.Views.ReviewPopover.textMentionNotify": "+menção notificará o usuário por e-mail",
"Common.Views.ReviewPopover.textOpenAgain": "Abra novamente",
@@ -466,14 +626,14 @@
"Common.Views.SymbolTableDialog.textDCQuote": "Fechar aspas duplas",
"Common.Views.SymbolTableDialog.textDOQuote": "Abertura de aspas duplas",
"Common.Views.SymbolTableDialog.textEllipsis": "Elipse horizontal",
- "Common.Views.SymbolTableDialog.textEmDash": "Em Hífen",
- "Common.Views.SymbolTableDialog.textEmSpace": "Em Espaço",
+ "Common.Views.SymbolTableDialog.textEmDash": "Travessão",
+ "Common.Views.SymbolTableDialog.textEmSpace": "Espaço",
"Common.Views.SymbolTableDialog.textEnDash": "Travessão",
"Common.Views.SymbolTableDialog.textEnSpace": "Espaço",
"Common.Views.SymbolTableDialog.textFont": "Fonte",
"Common.Views.SymbolTableDialog.textNBHyphen": "Hífen sem quebra",
"Common.Views.SymbolTableDialog.textNBSpace": "Espaço sem interrupção",
- "Common.Views.SymbolTableDialog.textPilcrow": "Sinal de antígrafo",
+ "Common.Views.SymbolTableDialog.textPilcrow": "Indicador de parágrafo",
"Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Em espaço",
"Common.Views.SymbolTableDialog.textRange": "Intervalo",
"Common.Views.SymbolTableDialog.textRecent": "Símbolos usados recentemente",
@@ -495,6 +655,7 @@
"SSE.Controllers.DataTab.textRows": "Linhas",
"SSE.Controllers.DataTab.textWizard": "Texto para colunas",
"SSE.Controllers.DataTab.txtDataValidation": "Validação de dados",
+ "SSE.Controllers.DataTab.txtErrorExternalLink": "Erro: falha na atualização",
"SSE.Controllers.DataTab.txtExpand": "Expandir",
"SSE.Controllers.DataTab.txtExpandRemDuplicates": "Os dados próximos à seleção não serão removidos. Deseja expandir a seleção para incluir os dados adjacentes ou continuar apenas com as células atualmente selecionadas?",
"SSE.Controllers.DataTab.txtExtendDataValidation": "A seleção contém algumas células sem configurações de validação de dados. Você deseja estender a validação de dados a essas células?",
@@ -695,6 +856,7 @@
"SSE.Controllers.LeftMenu.warnDownloadAs": "Se você continuar salvando neste formato, todos os recursos exceto o texto serão perdidos. Você tem certeza que quer continuar?",
"SSE.Controllers.Main.confirmAddCellWatches": "Esta ação adicionará {0} células de observação. Quer continuar?",
"SSE.Controllers.Main.confirmAddCellWatchesMax": "Esta ação adicionará apenas {0} células de observação por motivo de poupança da memória. Quer continuar?",
+ "SSE.Controllers.Main.confirmMaxChangesSize": "O tamanho das ações excede a limitação definida para seu servidor. Pressione \"Desfazer\" para cancelar sua última ação ou pressione \"Continue\" para manter a ação localmente (você precisa baixar o arquivo ou copiar seu conteúdo para garantir que nada seja perdido).",
"SSE.Controllers.Main.confirmMoveCellRange": "O intervalo de célula de destino pode conter dados. Continuar a operação?",
"SSE.Controllers.Main.confirmPutMergeRange": "Os dados fontes contêm células mescladas. Elas foram desmescladas antes de serem coladas na tabela.",
"SSE.Controllers.Main.confirmReplaceFormulaInTable": "As fórmulas na linha do cabeçalho serão removidas e convertidas em texto estático. Deseja continuar?",
@@ -749,6 +911,11 @@
"SSE.Controllers.Main.errorFrmlWrongReferences": "A função se refere a uma folha que não existe. Verifique os dados e tente novamente.",
"SSE.Controllers.Main.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.errorInconsistentExt": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo não corresponde à extensão do arquivo.",
+ "SSE.Controllers.Main.errorInconsistentExtDocx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a documentos de texto (por exemplo, docx), mas o arquivo tem a extensão inconsistente: %1.",
+ "SSE.Controllers.Main.errorInconsistentExtPdf": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a um dos seguintes formatos: pdf/djvu/xps/oxps, mas o arquivo tem a extensão inconsistente: %1.",
+ "SSE.Controllers.Main.errorInconsistentExtPptx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a apresentações (por exemplo, pptx), mas o arquivo tem a extensão inconsistente: %1.",
+ "SSE.Controllers.Main.errorInconsistentExtXlsx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a planilhas (por exemplo, xlsx), mas o arquivo tem a extensão inconsistente: %1.",
"SSE.Controllers.Main.errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.",
"SSE.Controllers.Main.errorKeyEncrypt": "Descrição de chave desconhecida",
"SSE.Controllers.Main.errorKeyExpire": "Descritor de chave expirado",
@@ -827,6 +994,7 @@
"SSE.Controllers.Main.textCloseTip": "Clique para fechar a dica",
"SSE.Controllers.Main.textConfirm": "Confirmação",
"SSE.Controllers.Main.textContactUs": "Contate as vendas",
+ "SSE.Controllers.Main.textContinue": "Continuar",
"SSE.Controllers.Main.textConvertEquation": "Esta equação foi criada com uma versão antiga do editor de equação que não é mais compatível. Para editá-lo, converta a equação para o formato Office Math ML. Converter agora?",
"SSE.Controllers.Main.textCustomLoader": "Observe que, de acordo com os termos da licença, você não tem permissão para alterar o carregador. Entre em contato com nosso departamento de vendas para obter uma cotação.",
"SSE.Controllers.Main.textDisconnect": "A conexão está perdida",
@@ -855,6 +1023,7 @@
"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": "As funções Desfazer/Refazer estão desabilitadas para o modo de coedição rápido",
+ "SSE.Controllers.Main.textUndo": "Desfazer",
"SSE.Controllers.Main.textYes": "Sim",
"SSE.Controllers.Main.titleLicenseExp": "Licença expirada",
"SSE.Controllers.Main.titleServerVersion": "Editor atualizado",
@@ -1181,7 +1350,7 @@
"SSE.Controllers.Toolbar.txtAccent_Bar": "Barra",
"SSE.Controllers.Toolbar.txtAccent_BarBot": "Barra inferior",
"SSE.Controllers.Toolbar.txtAccent_BarTop": "Barra superior",
- "SSE.Controllers.Toolbar.txtAccent_BorderBox": "Fórmula embalada (com Placeholder)",
+ "SSE.Controllers.Toolbar.txtAccent_BorderBox": "Fórmula Emoldurada (com Espaço Reservado)",
"SSE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Fórmula embalada(Exemplo)",
"SSE.Controllers.Toolbar.txtAccent_Check": "Verificar",
"SSE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Chave Inferior",
@@ -1525,7 +1694,7 @@
"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.btnCustomFilter": "Filtro personalizado",
"SSE.Views.AutoFilterDialog.textAddSelection": "Adicionar seleção atual para filtrar",
"SSE.Views.AutoFilterDialog.textEmptyItem": "{Brancos}",
"SSE.Views.AutoFilterDialog.textSelectAll": "Selecionar todos",
@@ -1799,7 +1968,7 @@
"SSE.Views.ChartSettingsDlg.textShowValues": "Exibir valores do gráfico",
"SSE.Views.ChartSettingsDlg.textSingle": "Minigráfico único",
"SSE.Views.ChartSettingsDlg.textSmooth": "Suave",
- "SSE.Views.ChartSettingsDlg.textSnap": "Cell Snapping",
+ "SSE.Views.ChartSettingsDlg.textSnap": "Captura de células",
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Intervalos de brilhos",
"SSE.Views.ChartSettingsDlg.textStraight": "Reto",
"SSE.Views.ChartSettingsDlg.textStyle": "Estilo",
@@ -1841,7 +2010,7 @@
"SSE.Views.CreateSparklineDialog.textDestination": "Escolha, onde colocar os sparklines",
"SSE.Views.CreateSparklineDialog.textInvalidRange": "Intervalo de células inválido",
"SSE.Views.CreateSparklineDialog.textSelectData": "Selecionar dados",
- "SSE.Views.CreateSparklineDialog.textTitle": "Criar Sparklines",
+ "SSE.Views.CreateSparklineDialog.textTitle": "Criar Minigráficos",
"SSE.Views.CreateSparklineDialog.txtEmpty": "Este campo é obrigatório",
"SSE.Views.DataTab.capBtnGroup": "Grupo",
"SSE.Views.DataTab.capBtnTextCustomSort": "Classificação personalizada",
@@ -1854,7 +2023,7 @@
"SSE.Views.DataTab.mniFromFile": "De TXT / CSV local",
"SSE.Views.DataTab.mniFromUrl": "Do endereço da web TXT/CSV",
"SSE.Views.DataTab.textBelow": "Resumo das linhas abaixo dos detalhes",
- "SSE.Views.DataTab.textClear": "Esboço claro",
+ "SSE.Views.DataTab.textClear": "Limpar Estrutura de Tópicos",
"SSE.Views.DataTab.textColumns": "Desagrupar colunas",
"SSE.Views.DataTab.textGroupColumns": "Agrupar colunas",
"SSE.Views.DataTab.textGroupRows": "Agrupar linhas",
@@ -1948,16 +2117,21 @@
"SSE.Views.DigitalFilterDialog.textShowRows": "Exibir células onde",
"SSE.Views.DigitalFilterDialog.textUse1": "Usar ? para apresentar qualquer caractere único",
"SSE.Views.DigitalFilterDialog.textUse2": "Usar * para apresentar qualquer série de caracteres",
- "SSE.Views.DigitalFilterDialog.txtTitle": "Personalizar filtro",
+ "SSE.Views.DigitalFilterDialog.txtTitle": "Filtro personalizado",
+ "SSE.Views.DocumentHolder.advancedEquationText": "Definições de equações",
"SSE.Views.DocumentHolder.advancedImgText": "Configurações avançadas de imagem",
"SSE.Views.DocumentHolder.advancedShapeText": "Configurações avançadas de forma",
"SSE.Views.DocumentHolder.advancedSlicerText": "Segmentação de Dados- Config. avançadas",
+ "SSE.Views.DocumentHolder.allLinearText": "Tudo - Linear",
+ "SSE.Views.DocumentHolder.allProfText": "Tudo - Profissional",
"SSE.Views.DocumentHolder.bottomCellText": "Alinhar à parte inferior",
"SSE.Views.DocumentHolder.bulletsText": "Marcadores e numeração",
"SSE.Views.DocumentHolder.centerCellText": "Alinhar ao centro",
"SSE.Views.DocumentHolder.chartDataText": "Selecionar dados do gráfico",
"SSE.Views.DocumentHolder.chartText": "Configurações avançadas de gráfico",
"SSE.Views.DocumentHolder.chartTypeText": "Alterar tipo de gráfico",
+ "SSE.Views.DocumentHolder.currLinearText": "Atual - Linear",
+ "SSE.Views.DocumentHolder.currProfText": "Atual - Profissional",
"SSE.Views.DocumentHolder.deleteColumnText": "Coluna",
"SSE.Views.DocumentHolder.deleteRowText": "Linha",
"SSE.Views.DocumentHolder.deleteTableText": "Tabela",
@@ -1971,6 +2145,7 @@
"SSE.Views.DocumentHolder.insertColumnRightText": "Coluna direita",
"SSE.Views.DocumentHolder.insertRowAboveText": "Linha acima",
"SSE.Views.DocumentHolder.insertRowBelowText": "Linha abaixo",
+ "SSE.Views.DocumentHolder.latexText": "LaTex",
"SSE.Views.DocumentHolder.originalSizeText": "Tamanho padrão",
"SSE.Views.DocumentHolder.removeHyperlinkText": "Remover hiperlink",
"SSE.Views.DocumentHolder.selectColumnText": "Coluna inteira",
@@ -2061,7 +2236,7 @@
"SSE.Views.DocumentHolder.txtDelete": "Excluir",
"SSE.Views.DocumentHolder.txtDescending": "Decrescente",
"SSE.Views.DocumentHolder.txtDistribHor": "Distribuir horizontalmente",
- "SSE.Views.DocumentHolder.txtDistribVert": "Distribuir Verticalmente",
+ "SSE.Views.DocumentHolder.txtDistribVert": "Distribuir verticalmente",
"SSE.Views.DocumentHolder.txtEditComment": "Editar comentário",
"SSE.Views.DocumentHolder.txtFilter": "Filtro",
"SSE.Views.DocumentHolder.txtFilterCellColor": "Filtrar por cor da célula",
@@ -2080,6 +2255,7 @@
"SSE.Views.DocumentHolder.txtPaste": "Colar",
"SSE.Views.DocumentHolder.txtPercentage": "Percentagem",
"SSE.Views.DocumentHolder.txtReapply": "Reaplicar",
+ "SSE.Views.DocumentHolder.txtRefresh": "Atualizar",
"SSE.Views.DocumentHolder.txtRow": "Linha inteira",
"SSE.Views.DocumentHolder.txtRowHeight": "Altura da linha",
"SSE.Views.DocumentHolder.txtScientific": "Científico",
@@ -2099,13 +2275,18 @@
"SSE.Views.DocumentHolder.txtTime": "Tempo",
"SSE.Views.DocumentHolder.txtUngroup": "Desagrupar",
"SSE.Views.DocumentHolder.txtWidth": "Largura",
+ "SSE.Views.DocumentHolder.unicodeText": "Unicode",
"SSE.Views.DocumentHolder.vertAlignText": "Alinhamento vertical",
"SSE.Views.ExternalLinksDlg.closeButtonText": "Encerrar",
"SSE.Views.ExternalLinksDlg.textDelete": "Quebrar links",
"SSE.Views.ExternalLinksDlg.textDeleteAll": "Quebrar todos os links",
+ "SSE.Views.ExternalLinksDlg.textOk": "OK",
"SSE.Views.ExternalLinksDlg.textSource": "Fonte",
+ "SSE.Views.ExternalLinksDlg.textStatus": "Status",
+ "SSE.Views.ExternalLinksDlg.textUnknown": "Desconhecido",
"SSE.Views.ExternalLinksDlg.textUpdate": "Atualizar valores",
"SSE.Views.ExternalLinksDlg.textUpdateAll": "Atualize tudo",
+ "SSE.Views.ExternalLinksDlg.textUpdating": "Atualizando...",
"SSE.Views.ExternalLinksDlg.txtTitle": "Links externos",
"SSE.Views.FieldSettingsDialog.strLayout": "Layout",
"SSE.Views.FieldSettingsDialog.strSubtotals": "Subtotais",
@@ -2170,6 +2351,7 @@
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Localização",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Pessoas que têm direitos",
"SSE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Assunto",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtTags": "Etiquetas",
"SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título da planilha",
"SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Carregado",
"SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Alterar direitos de acesso",
@@ -2620,7 +2802,7 @@
"SSE.Views.NamedRangeEditDlg.namePlaceholder": "Defined name",
"SSE.Views.NamedRangeEditDlg.notcriticalErrorTitle": "Warning",
"SSE.Views.NamedRangeEditDlg.strWorkbook": "Manual",
- "SSE.Views.NamedRangeEditDlg.textDataRange": "Data Range",
+ "SSE.Views.NamedRangeEditDlg.textDataRange": "Intervalo de dados",
"SSE.Views.NamedRangeEditDlg.textExistName": "ERROR! Range with such a name already exists",
"SSE.Views.NamedRangeEditDlg.textInvalidName": "ERROR! Invalid range name",
"SSE.Views.NamedRangeEditDlg.textInvalidRange": "ERROR! Invalid cell range",
@@ -2628,32 +2810,32 @@
"SSE.Views.NamedRangeEditDlg.textName": "Name",
"SSE.Views.NamedRangeEditDlg.textReservedName": "The name you are trying to use is already referenced in cell formulas. Please use some other name.",
"SSE.Views.NamedRangeEditDlg.textScope": "Scope",
- "SSE.Views.NamedRangeEditDlg.textSelectData": "Select Data",
+ "SSE.Views.NamedRangeEditDlg.textSelectData": "Selecionar dados",
"SSE.Views.NamedRangeEditDlg.txtEmpty": "This field is required",
- "SSE.Views.NamedRangeEditDlg.txtTitleEdit": "Edit Name",
- "SSE.Views.NamedRangeEditDlg.txtTitleNew": "New Name",
- "SSE.Views.NamedRangePasteDlg.textNames": "Intervalos Nomeadas",
- "SSE.Views.NamedRangePasteDlg.txtTitle": "Paste Name",
+ "SSE.Views.NamedRangeEditDlg.txtTitleEdit": "Editar nome",
+ "SSE.Views.NamedRangeEditDlg.txtTitleNew": "Novo nome",
+ "SSE.Views.NamedRangePasteDlg.textNames": "Intervalos nomeados",
+ "SSE.Views.NamedRangePasteDlg.txtTitle": "Nome da pasta",
"SSE.Views.NameManagerDlg.closeButtonText": "Close",
"SSE.Views.NameManagerDlg.guestText": "Guest",
"SSE.Views.NameManagerDlg.lockText": "Bloqueado",
- "SSE.Views.NameManagerDlg.textDataRange": "Data Range",
+ "SSE.Views.NameManagerDlg.textDataRange": "Intervalo de dados",
"SSE.Views.NameManagerDlg.textDelete": "Delete",
"SSE.Views.NameManagerDlg.textEdit": "Edit",
"SSE.Views.NameManagerDlg.textEmpty": "Nenhum intervalo nomeado foi criado ainda. Crie pelo menos um intervalo nomeado e ele aparecerá neste campo.",
"SSE.Views.NameManagerDlg.textFilter": "Filter",
"SSE.Views.NameManagerDlg.textFilterAll": "All",
"SSE.Views.NameManagerDlg.textFilterDefNames": "Defined names",
- "SSE.Views.NameManagerDlg.textFilterSheet": "Names Scoped to Sheet",
+ "SSE.Views.NameManagerDlg.textFilterSheet": "Nomes com escopo para planilha",
"SSE.Views.NameManagerDlg.textFilterTableNames": "Table names",
- "SSE.Views.NameManagerDlg.textFilterWorkbook": "Names Scoped to Workbook",
+ "SSE.Views.NameManagerDlg.textFilterWorkbook": "Nomes com escopo para pasta de trabalho",
"SSE.Views.NameManagerDlg.textNew": "New",
"SSE.Views.NameManagerDlg.textnoNames": "Nenhum intervalo nomeado correspondente ao seu filtro foi encontrado.",
"SSE.Views.NameManagerDlg.textRanges": "Intervalos Nomeadas",
"SSE.Views.NameManagerDlg.textScope": "Scope",
"SSE.Views.NameManagerDlg.textWorkbook": "Manual",
"SSE.Views.NameManagerDlg.tipIsLocked": "This element is being edited by another user.",
- "SSE.Views.NameManagerDlg.txtTitle": "Name Manager",
+ "SSE.Views.NameManagerDlg.txtTitle": "Gerenciador de nomes",
"SSE.Views.NameManagerDlg.warnDelete": "Tem certeza de que deseja excluir o nome {0}?",
"SSE.Views.PageMarginsDialog.textBottom": "Inferior",
"SSE.Views.PageMarginsDialog.textLeft": "Esquerdo",
@@ -2700,7 +2882,7 @@
"SSE.Views.ParagraphSettingsAdvanced.textJustified": "Justificado",
"SSE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(Nenhum)",
"SSE.Views.ParagraphSettingsAdvanced.textRemove": "Remover",
- "SSE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Remover todos",
+ "SSE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Excluir todos",
"SSE.Views.ParagraphSettingsAdvanced.textSet": "Especificar",
"SSE.Views.ParagraphSettingsAdvanced.textTabCenter": "Centro",
"SSE.Views.ParagraphSettingsAdvanced.textTabLeft": "Esquerda",
@@ -2840,7 +3022,7 @@
"SSE.Views.PrintSettings.strShow": "Mostrar",
"SSE.Views.PrintSettings.strTop": "Parte superior",
"SSE.Views.PrintSettings.textActualSize": "Tamanho padrão",
- "SSE.Views.PrintSettings.textAllSheets": "Todas as folhas",
+ "SSE.Views.PrintSettings.textAllSheets": "Todas as planilhas",
"SSE.Views.PrintSettings.textCurrentSheet": "Folha atual",
"SSE.Views.PrintSettings.textCustom": "Personalizado",
"SSE.Views.PrintSettings.textCustomOptions": "Opções personalizadas",
@@ -3410,6 +3592,7 @@
"SSE.Views.Toolbar.capBtnComment": "Comentário",
"SSE.Views.Toolbar.capBtnInsHeader": "Cabeçalho/Rodapé",
"SSE.Views.Toolbar.capBtnInsSlicer": "Segmentação de Dados",
+ "SSE.Views.Toolbar.capBtnInsSmartArt": "SmartArt",
"SSE.Views.Toolbar.capBtnInsSymbol": "Símbolo",
"SSE.Views.Toolbar.capBtnMargins": "Margens",
"SSE.Views.Toolbar.capBtnPageOrient": "Orientação",
@@ -3573,6 +3756,7 @@
"SSE.Views.Toolbar.tipInsertOpt": "Inserir células",
"SSE.Views.Toolbar.tipInsertShape": "Inserir Forma Automática",
"SSE.Views.Toolbar.tipInsertSlicer": "Inserir Segmentação de Dados",
+ "SSE.Views.Toolbar.tipInsertSmartArt": "Inserir SmartArt",
"SSE.Views.Toolbar.tipInsertSpark": "Inserir sparkline",
"SSE.Views.Toolbar.tipInsertSymbol": "Inserir símbolo",
"SSE.Views.Toolbar.tipInsertTable": "Inserir tabela",
@@ -3741,7 +3925,9 @@
"SSE.Views.ViewTab.textGridlines": "Linhas de grade",
"SSE.Views.ViewTab.textHeadings": "Títulos",
"SSE.Views.ViewTab.textInterfaceTheme": "Tema de interface",
+ "SSE.Views.ViewTab.textLeftMenu": "Painel esquerdo",
"SSE.Views.ViewTab.textManager": "Gerenciamento de visualização",
+ "SSE.Views.ViewTab.textRightMenu": "Painel direito",
"SSE.Views.ViewTab.textShowFrozenPanesShadow": "Mostrar sombra dos painéis congelados",
"SSE.Views.ViewTab.textUnFreeze": "Descongelar Painéis",
"SSE.Views.ViewTab.textZeros": "Mostrar zeros",
diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json
index 37bba9907..5a9af5ac2 100644
--- a/apps/spreadsheeteditor/main/locale/ru.json
+++ b/apps/spreadsheeteditor/main/locale/ru.json
@@ -548,6 +548,7 @@
"Common.Views.ReviewPopover.textCancel": "Отмена",
"Common.Views.ReviewPopover.textClose": "Закрыть",
"Common.Views.ReviewPopover.textEdit": "OK",
+ "Common.Views.ReviewPopover.textEnterComment": "Введите здесь свой комментарий",
"Common.Views.ReviewPopover.textMention": "+упоминание предоставит доступ к документу и отправит оповещение по почте",
"Common.Views.ReviewPopover.textMentionNotify": "+упоминание отправит пользователю оповещение по почте",
"Common.Views.ReviewPopover.textOpenAgain": "Открыть снова",
@@ -654,6 +655,7 @@
"SSE.Controllers.DataTab.textRows": "Строки",
"SSE.Controllers.DataTab.textWizard": "Текст по столбцам",
"SSE.Controllers.DataTab.txtDataValidation": "Проверка данных",
+ "SSE.Controllers.DataTab.txtErrorExternalLink": "Ошибка: не удалось выполнить обновление",
"SSE.Controllers.DataTab.txtExpand": "Развернуть",
"SSE.Controllers.DataTab.txtExpandRemDuplicates": "Данные рядом с выделенным диапазоном не будут удалены. Вы хотите расширить выделенный диапазон, чтобы включить данные из смежных ячеек, или продолжить только с выделенным диапазоном?",
"SSE.Controllers.DataTab.txtExtendDataValidation": "Выделенная область содержит ячейки без условий на значения. Вы хотите распространить условия на эти ячейки?",
@@ -909,6 +911,11 @@
"SSE.Controllers.Main.errorFrmlWrongReferences": "Функция ссылается на лист, который не существует. Проверьте данные и повторите попытку.",
"SSE.Controllers.Main.errorFTChangeTableRangeError": "Не удалось выполнить операцию для выбранного диапазона ячеек. Выделите диапазон так, чтобы первая строка таблицы находилась на той же самой строке, а итоговая таблица перекрывала текущую.",
"SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "Не удалось выполнить операцию для выбранного диапазона ячеек. Выберите диапазон, который не содержит других таблиц.",
+ "SSE.Controllers.Main.errorInconsistentExt": "При открытии файла произошла ошибка. Содержимое файла не соответствует расширению файла.",
+ "SSE.Controllers.Main.errorInconsistentExtDocx": "При открытии файла произошла ошибка. Содержимое файла соответствует документам (например, docx), но файл имеет несоответствующее расширение: %1.",
+ "SSE.Controllers.Main.errorInconsistentExtPdf": "При открытии файла произошла ошибка. Содержимое файла соответствует одному из следующих форматов: pdf/djvu/xps/oxps, но файл имеет несоответствующее расширение: %1.",
+ "SSE.Controllers.Main.errorInconsistentExtPptx": "При открытии файла произошла ошибка. Содержимое файла соответствует презентациям (например, pptx), но файл имеет несоответствующее расширение: %1.",
+ "SSE.Controllers.Main.errorInconsistentExtXlsx": "При открытии файла произошла ошибка. Содержимое файла соответствует электронным таблицам (например, xlsx), но файл имеет несоответствующее расширение: %1.",
"SSE.Controllers.Main.errorInvalidRef": "Введите корректное имя для выделенного диапазона или допустимую ссылку для перехода.",
"SSE.Controllers.Main.errorKeyEncrypt": "Неизвестный дескриптор ключа",
"SSE.Controllers.Main.errorKeyExpire": "Срок действия дескриптора ключа истек",
@@ -2111,15 +2118,20 @@
"SSE.Views.DigitalFilterDialog.textUse1": "Используйте знак ? вместо любого отдельного символа",
"SSE.Views.DigitalFilterDialog.textUse2": "Используйте знак * вместо любой последовательности символов",
"SSE.Views.DigitalFilterDialog.txtTitle": "Пользовательский фильтр",
+ "SSE.Views.DocumentHolder.advancedEquationText": "Параметры уравнений",
"SSE.Views.DocumentHolder.advancedImgText": "Дополнительные параметры изображения",
"SSE.Views.DocumentHolder.advancedShapeText": "Дополнительные параметры фигуры",
"SSE.Views.DocumentHolder.advancedSlicerText": "Дополнительные параметры среза",
+ "SSE.Views.DocumentHolder.allLinearText": "Все - линейный",
+ "SSE.Views.DocumentHolder.allProfText": "Все - профессиональный",
"SSE.Views.DocumentHolder.bottomCellText": "По нижнему краю",
"SSE.Views.DocumentHolder.bulletsText": "Маркеры и нумерация",
"SSE.Views.DocumentHolder.centerCellText": "По середине",
"SSE.Views.DocumentHolder.chartDataText": "Выбор данных для построения диаграммы",
"SSE.Views.DocumentHolder.chartText": "Дополнительные параметры диаграммы",
"SSE.Views.DocumentHolder.chartTypeText": "Изменить тип диаграммы",
+ "SSE.Views.DocumentHolder.currLinearText": "Текущее - линейный",
+ "SSE.Views.DocumentHolder.currProfText": "Текущее - Профессиональный",
"SSE.Views.DocumentHolder.deleteColumnText": "Столбец",
"SSE.Views.DocumentHolder.deleteRowText": "Строку",
"SSE.Views.DocumentHolder.deleteTableText": "Таблицу",
@@ -2133,6 +2145,7 @@
"SSE.Views.DocumentHolder.insertColumnRightText": "Столбец справа",
"SSE.Views.DocumentHolder.insertRowAboveText": "Строку выше",
"SSE.Views.DocumentHolder.insertRowBelowText": "Строку ниже",
+ "SSE.Views.DocumentHolder.latexText": "LaTeX",
"SSE.Views.DocumentHolder.originalSizeText": "Реальный размер",
"SSE.Views.DocumentHolder.removeHyperlinkText": "Удалить гиперссылку",
"SSE.Views.DocumentHolder.selectColumnText": "Весь столбец",
@@ -2262,13 +2275,18 @@
"SSE.Views.DocumentHolder.txtTime": "Время",
"SSE.Views.DocumentHolder.txtUngroup": "Разгруппировать",
"SSE.Views.DocumentHolder.txtWidth": "Ширина",
+ "SSE.Views.DocumentHolder.unicodeText": "Юникод",
"SSE.Views.DocumentHolder.vertAlignText": "Вертикальное выравнивание",
"SSE.Views.ExternalLinksDlg.closeButtonText": "Закрыть",
"SSE.Views.ExternalLinksDlg.textDelete": "Разорвать связи",
"SSE.Views.ExternalLinksDlg.textDeleteAll": "Разорвать все связи",
+ "SSE.Views.ExternalLinksDlg.textOk": "OK",
"SSE.Views.ExternalLinksDlg.textSource": "Источник",
+ "SSE.Views.ExternalLinksDlg.textStatus": "Статус",
+ "SSE.Views.ExternalLinksDlg.textUnknown": "Неизвестно",
"SSE.Views.ExternalLinksDlg.textUpdate": "Обновить значения",
"SSE.Views.ExternalLinksDlg.textUpdateAll": "Обновить все",
+ "SSE.Views.ExternalLinksDlg.textUpdating": "Обновление...",
"SSE.Views.ExternalLinksDlg.txtTitle": "Внешние ссылки",
"SSE.Views.FieldSettingsDialog.strLayout": "Макет",
"SSE.Views.FieldSettingsDialog.strSubtotals": "Промежуточные итоги",
@@ -3907,7 +3925,9 @@
"SSE.Views.ViewTab.textGridlines": "Линии сетки",
"SSE.Views.ViewTab.textHeadings": "Заголовки",
"SSE.Views.ViewTab.textInterfaceTheme": "Тема интерфейса",
+ "SSE.Views.ViewTab.textLeftMenu": "Левая панель",
"SSE.Views.ViewTab.textManager": "Диспетчер представлений",
+ "SSE.Views.ViewTab.textRightMenu": "Правая панель",
"SSE.Views.ViewTab.textShowFrozenPanesShadow": "Показывать тень для закрепленных областей",
"SSE.Views.ViewTab.textUnFreeze": "Снять закрепление областей",
"SSE.Views.ViewTab.textZeros": "Отображать нули",
diff --git a/apps/spreadsheeteditor/main/locale/sl.json b/apps/spreadsheeteditor/main/locale/sl.json
index 9581762f8..1ec0820f2 100644
--- a/apps/spreadsheeteditor/main/locale/sl.json
+++ b/apps/spreadsheeteditor/main/locale/sl.json
@@ -98,6 +98,7 @@
"Common.Views.EditNameDialog.textLabelError": "Oznaka ne more biti prazna",
"Common.Views.Header.textAdvSettings": "Napredne nastavitve",
"Common.Views.Header.textBack": "Pojdi v dokumente",
+ "Common.Views.Header.textHideLines": "Skrij ravnila",
"Common.Views.Header.textSaveEnd": "Vse spremembe shranjene",
"Common.Views.Header.textSaveExpander": "Vse spremembe shranjene",
"Common.Views.Header.textZoom": "Povečaj",
@@ -141,6 +142,8 @@
"Common.Views.ReviewChanges.txtAcceptChanges": "Sprejmi spremembe",
"Common.Views.ReviewChanges.txtChat": "Pogovor",
"Common.Views.ReviewChanges.txtClose": "Zapri",
+ "Common.Views.ReviewChanges.txtCommentRemove": "Odstrani",
+ "Common.Views.ReviewChanges.txtCommentResolve": "Razreši",
"Common.Views.ReviewChanges.txtFinal": "Vse spremembe so sprejete (Predogled)",
"Common.Views.ReviewChanges.txtFinalCap": "Končno",
"Common.Views.ReviewChanges.txtOriginal": "Vse spremembe zavrnjene (Predogled)",
@@ -151,6 +154,7 @@
"Common.Views.ReviewPopover.textClose": "Zapri",
"Common.Views.ReviewPopover.textMention": "+omemba bo dodelila uporabniku dostop do datoteke in poslano bo e-poštno sporočilo",
"Common.Views.ReviewPopover.textMentionNotify": "+omemba bo obvestila uporabnika preko e-pošte",
+ "Common.Views.ReviewPopover.textResolve": "Razreši",
"Common.Views.SignDialog.textBold": "Krepko",
"Common.Views.SignDialog.textCertificate": "Certifikat",
"Common.Views.SignDialog.textChange": "Spremeni",
@@ -210,6 +214,7 @@
"SSE.Controllers.FormulaDialog.sCategoryEngineering": "Inžinirstvo",
"SSE.Controllers.FormulaDialog.sCategoryFinancial": "Finance",
"SSE.Controllers.FormulaDialog.sCategoryInformation": "Informacije",
+ "SSE.Controllers.FormulaDialog.sCategoryTextAndData": "Besedilo in podatki",
"SSE.Controllers.LeftMenu.newDocumentTitle": "Neimenovana razpredelnica",
"SSE.Controllers.LeftMenu.textByColumns": "Po stolpcih",
"SSE.Controllers.LeftMenu.textByRows": "Po vrsticah",
@@ -391,6 +396,7 @@
"SSE.Controllers.Toolbar.textFraction": "Frakcije",
"SSE.Controllers.Toolbar.textInsert": "Vstavi",
"SSE.Controllers.Toolbar.textIntegral": "Integrali",
+ "SSE.Controllers.Toolbar.textShapes": "Oblike",
"SSE.Controllers.Toolbar.textWarning": "Opozorilo",
"SSE.Controllers.Toolbar.txtAccent_Accent": "Akuten",
"SSE.Controllers.Toolbar.txtAccent_Bar": "Stolpični grafikon",
@@ -486,6 +492,7 @@
"SSE.Views.CellSettings.textForeground": "Barva ospredja",
"SSE.Views.CellSettings.textGradientColor": "Barva",
"SSE.Views.ChartDataDialog.textAdd": "Dodaj",
+ "SSE.Views.ChartDataDialog.textDelete": "Odstrani",
"SSE.Views.ChartDataDialog.textEdit": "Uredi",
"SSE.Views.ChartDataDialog.textTitle": "Podatki diagrama",
"SSE.Views.ChartSettings.strSparkColor": "Barva",
@@ -721,6 +728,7 @@
"SSE.Views.FileMenu.btnHelpCaption": "Pomoč",
"SSE.Views.FileMenu.btnInfoCaption": "Informacije razpredelnice",
"SSE.Views.FileMenu.btnPrintCaption": "Natisni",
+ "SSE.Views.FileMenu.btnProtectCaption": "Zaščiti",
"SSE.Views.FileMenu.btnRecentFilesCaption": "Odpri nedavno",
"SSE.Views.FileMenu.btnReturnCaption": "Nazaj na preglednico",
"SSE.Views.FileMenu.btnRightsCaption": "Access Rights",
@@ -1015,6 +1023,7 @@
"SSE.Views.PrintSettings.textTitlePDF": "Nastavitev PDF dokumenta",
"SSE.Views.PrintTitlesDialog.textFirstCol": "Prvi stolpec",
"SSE.Views.PrintTitlesDialog.textFirstRow": "Prva vrstica",
+ "SSE.Views.ProtectDialog.txtProtect": "Zaščiti",
"SSE.Views.RemoveDuplicatesDialog.textColumns": "Stolpci",
"SSE.Views.RightMenu.txtCellSettings": "Nastavitve celice",
"SSE.Views.RightMenu.txtChartSettings": "Nastavitve grafa",
@@ -1162,6 +1171,7 @@
"SSE.Views.Statusbar.itemMaximum": "Največ",
"SSE.Views.Statusbar.itemMinimum": "Minimalno",
"SSE.Views.Statusbar.itemMove": "Premakni",
+ "SSE.Views.Statusbar.itemProtect": "Zaščiti",
"SSE.Views.Statusbar.itemRename": "Preimenuj",
"SSE.Views.Statusbar.itemTabColor": "Barva zavihka",
"SSE.Views.Statusbar.RenameDialog.errNameExists": "Delovni zvezek s tem imenom že obstaja.",
@@ -1244,6 +1254,7 @@
"SSE.Views.Toolbar.capInsertChart": "Graf",
"SSE.Views.Toolbar.capInsertEquation": "Enačba",
"SSE.Views.Toolbar.capInsertImage": "Slika",
+ "SSE.Views.Toolbar.capInsertShape": "Oblika",
"SSE.Views.Toolbar.mniImageFromFile": "Slika z datoteke",
"SSE.Views.Toolbar.mniImageFromStorage": "Slika iz oblaka",
"SSE.Views.Toolbar.mniImageFromUrl": "Slika z URL",
@@ -1293,6 +1304,7 @@
"SSE.Views.Toolbar.textTabFile": "Datoteka",
"SSE.Views.Toolbar.textTabFormula": "Formula",
"SSE.Views.Toolbar.textTabInsert": "Vstavi",
+ "SSE.Views.Toolbar.textTabView": "Pogled",
"SSE.Views.Toolbar.textTopBorders": "Vrhnje meje",
"SSE.Views.Toolbar.textUnderline": "Podčrtaj",
"SSE.Views.Toolbar.textZoom": "Povečava",
diff --git a/apps/spreadsheeteditor/main/locale/zh.json b/apps/spreadsheeteditor/main/locale/zh.json
index d43f092fd..7962cc811 100644
--- a/apps/spreadsheeteditor/main/locale/zh.json
+++ b/apps/spreadsheeteditor/main/locale/zh.json
@@ -100,6 +100,165 @@
"Common.define.conditionalData.textUnique": "唯一",
"Common.define.conditionalData.textValue": "值为",
"Common.define.conditionalData.textYesterday": "昨天",
+ "Common.define.smartArt.textAccentedPicture": "重音图片",
+ "Common.define.smartArt.textAccentProcess": "重点流程",
+ "Common.define.smartArt.textAlternatingFlow": "交替流",
+ "Common.define.smartArt.textAlternatingHexagons": "交替六边形",
+ "Common.define.smartArt.textAlternatingPictureBlocks": "交替图片块",
+ "Common.define.smartArt.textAlternatingPictureCircles": "交替图片圆形",
+ "Common.define.smartArt.textArchitectureLayout": "结构布局",
+ "Common.define.smartArt.textArrowRibbon": "带形箭头",
+ "Common.define.smartArt.textAscendingPictureAccentProcess": "升序图片重点流程",
+ "Common.define.smartArt.textBalance": "平衡",
+ "Common.define.smartArt.textBasicBendingProcess": "基本蛇形流程",
+ "Common.define.smartArt.textBasicBlockList": "基本列表",
+ "Common.define.smartArt.textBasicChevronProcess": "基本 V 形流程",
+ "Common.define.smartArt.textBasicCycle": "基本循环",
+ "Common.define.smartArt.textBasicMatrix": "基本矩阵",
+ "Common.define.smartArt.textBasicPie": "基本饼图",
+ "Common.define.smartArt.textBasicProcess": "基本流程",
+ "Common.define.smartArt.textBasicPyramid": "基本棱锥图",
+ "Common.define.smartArt.textBasicRadial": "基本射线图",
+ "Common.define.smartArt.textBasicTarget": "基本目标图",
+ "Common.define.smartArt.textBasicTimeline": "基本时间线",
+ "Common.define.smartArt.textBasicVenn": "基本维恩图",
+ "Common.define.smartArt.textBendingPictureAccentList": "蛇形图片重点列表",
+ "Common.define.smartArt.textBendingPictureBlocks": "蛇形图片块",
+ "Common.define.smartArt.textBendingPictureCaption": "蛇形图片题注",
+ "Common.define.smartArt.textBendingPictureCaptionList": "蛇形图片题注列表",
+ "Common.define.smartArt.textBendingPictureSemiTranparentText": "蛇形图片半透明文本",
+ "Common.define.smartArt.textBlockCycle": "块循环",
+ "Common.define.smartArt.textBubblePictureList": "气泡图片列表",
+ "Common.define.smartArt.textCaptionedPictures": "题注图片",
+ "Common.define.smartArt.textChevronAccentProcess": "V 形重点流程",
+ "Common.define.smartArt.textChevronList": "V 型列表",
+ "Common.define.smartArt.textCircleAccentTimeline": "圆形重点日程表",
+ "Common.define.smartArt.textCircleArrowProcess": "圆箭头流程",
+ "Common.define.smartArt.textCirclePictureHierarchy": "圆形图片层次结构",
+ "Common.define.smartArt.textCircleProcess": "循环流程",
+ "Common.define.smartArt.textCircleRelationship": "循环关系",
+ "Common.define.smartArt.textCircularBendingProcess": "环状蛇形流程",
+ "Common.define.smartArt.textCircularPictureCallout": "圆形图片标注",
+ "Common.define.smartArt.textClosedChevronProcess": "闭合 V 形流程",
+ "Common.define.smartArt.textContinuousArrowProcess": "连续箭头流程",
+ "Common.define.smartArt.textContinuousBlockProcess": "连续块状流程",
+ "Common.define.smartArt.textContinuousCycle": "连续循环",
+ "Common.define.smartArt.textContinuousPictureList": "连续图片列表",
+ "Common.define.smartArt.textConvergingArrows": "汇聚箭头",
+ "Common.define.smartArt.textConvergingRadial": "聚合射线",
+ "Common.define.smartArt.textConvergingText": "聚合文本",
+ "Common.define.smartArt.textCounterbalanceArrows": "平衡箭头",
+ "Common.define.smartArt.textCycle": "循环",
+ "Common.define.smartArt.textCycleMatrix": "循环矩阵",
+ "Common.define.smartArt.textDescendingBlockList": "降序块列表",
+ "Common.define.smartArt.textDescendingProcess": "降序流程",
+ "Common.define.smartArt.textDetailedProcess": "详细流程",
+ "Common.define.smartArt.textDivergingArrows": "分叉箭头",
+ "Common.define.smartArt.textDivergingRadial": "分离射线",
+ "Common.define.smartArt.textEquation": "方程",
+ "Common.define.smartArt.textFramedTextPicture": "带框架的文本图片",
+ "Common.define.smartArt.textFunnel": "漏斗",
+ "Common.define.smartArt.textGear": "齿轮",
+ "Common.define.smartArt.textGridMatrix": "网格矩阵",
+ "Common.define.smartArt.textGroupedList": "分组列表",
+ "Common.define.smartArt.textHalfCircleOrganizationChart": "半圆组织结构图",
+ "Common.define.smartArt.textHexagonCluster": "六边形群集",
+ "Common.define.smartArt.textHexagonRadial": "放射状六边形",
+ "Common.define.smartArt.textHierarchy": "层次结构",
+ "Common.define.smartArt.textHierarchyList": "层次结构列表",
+ "Common.define.smartArt.textHorizontalBulletList": "水平项目符号列表",
+ "Common.define.smartArt.textHorizontalHierarchy": "水平层次结构",
+ "Common.define.smartArt.textHorizontalLabeledHierarchy": "水平标记的层次结构",
+ "Common.define.smartArt.textHorizontalMultiLevelHierarchy": "水平多层层次结构",
+ "Common.define.smartArt.textHorizontalOrganizationChart": "水平组织结构图",
+ "Common.define.smartArt.textHorizontalPictureList": "水平图片列表",
+ "Common.define.smartArt.textIncreasingArrowProcess": "递增箭头流程",
+ "Common.define.smartArt.textIncreasingCircleProcess": "递增循环流程",
+ "Common.define.smartArt.textInterconnectedBlockProcess": "互联块流程",
+ "Common.define.smartArt.textInterconnectedRings": "互联环",
+ "Common.define.smartArt.textInvertedPyramid": "倒棱锥图",
+ "Common.define.smartArt.textLabeledHierarchy": "标记的层次结构",
+ "Common.define.smartArt.textLinearVenn": "线性维恩图",
+ "Common.define.smartArt.textLinedList": "线型列表",
+ "Common.define.smartArt.textList": "列表",
+ "Common.define.smartArt.textMatrix": "矩阵",
+ "Common.define.smartArt.textMultidirectionalCycle": "多向循环",
+ "Common.define.smartArt.textNameAndTitleOrganizationChart": "姓名和职务组织结构图",
+ "Common.define.smartArt.textNestedTarget": "嵌套目标图",
+ "Common.define.smartArt.textNondirectionalCycle": "不定向循环",
+ "Common.define.smartArt.textOpposingArrows": "反向箭头",
+ "Common.define.smartArt.textOpposingIdeas": "对立观点",
+ "Common.define.smartArt.textOrganizationChart": "组织结构图",
+ "Common.define.smartArt.textOther": "其他",
+ "Common.define.smartArt.textPhasedProcess": "分阶段流程",
+ "Common.define.smartArt.textPicture": "图片",
+ "Common.define.smartArt.textPictureAccentBlocks": "图片重点块",
+ "Common.define.smartArt.textPictureAccentList": "图片重点列表",
+ "Common.define.smartArt.textPictureAccentProcess": "图片重点流程",
+ "Common.define.smartArt.textPictureCaptionList": "图片题注列表",
+ "Common.define.smartArt.textPictureFrame": "图片框",
+ "Common.define.smartArt.textPictureGrid": "图片网格",
+ "Common.define.smartArt.textPictureLineup": "图片排列",
+ "Common.define.smartArt.textPictureOrganizationChart": "图片组织结构图",
+ "Common.define.smartArt.textPictureStrips": "图片条纹",
+ "Common.define.smartArt.textPieProcess": "饼图流程",
+ "Common.define.smartArt.textPlusAndMinus": "加号和减号",
+ "Common.define.smartArt.textProcess": "流程",
+ "Common.define.smartArt.textProcessArrows": "流程箭头",
+ "Common.define.smartArt.textProcessList": "流程列表",
+ "Common.define.smartArt.textPyramid": "棱锥型",
+ "Common.define.smartArt.textPyramidList": "棱锥型列表",
+ "Common.define.smartArt.textRadialCluster": "射线群集",
+ "Common.define.smartArt.textRadialCycle": "射线循环",
+ "Common.define.smartArt.textRadialList": "射线列表",
+ "Common.define.smartArt.textRadialPictureList": "放射状图片列表",
+ "Common.define.smartArt.textRadialVenn": "射线维恩图",
+ "Common.define.smartArt.textRandomToResultProcess": "随机至结果流程",
+ "Common.define.smartArt.textRelationship": "关系",
+ "Common.define.smartArt.textRepeatingBendingProcess": "重复蛇形流程",
+ "Common.define.smartArt.textReverseList": "反转列表",
+ "Common.define.smartArt.textSegmentedCycle": "分段循环",
+ "Common.define.smartArt.textSegmentedProcess": "分段流程",
+ "Common.define.smartArt.textSegmentedPyramid": "分段棱锥图",
+ "Common.define.smartArt.textSnapshotPictureList": "快照图片列表",
+ "Common.define.smartArt.textSpiralPicture": "螺旋图",
+ "Common.define.smartArt.textSquareAccentList": "方形重点列表",
+ "Common.define.smartArt.textStackedList": "堆叠列表",
+ "Common.define.smartArt.textStackedVenn": "堆叠维恩图",
+ "Common.define.smartArt.textStaggeredProcess": "交错流程",
+ "Common.define.smartArt.textStepDownProcess": "步骤下移流程",
+ "Common.define.smartArt.textStepUpProcess": "升级流程",
+ "Common.define.smartArt.textSubStepProcess": "子步骤流程",
+ "Common.define.smartArt.textTabbedArc": "拱状",
+ "Common.define.smartArt.textTableHierarchy": "表层次结构",
+ "Common.define.smartArt.textTableList": "表格列表",
+ "Common.define.smartArt.textTabList": "选项卡列表",
+ "Common.define.smartArt.textTargetList": "目标图列表",
+ "Common.define.smartArt.textTextCycle": "文本循环",
+ "Common.define.smartArt.textThemePictureAccent": "主题图片重点",
+ "Common.define.smartArt.textThemePictureAlternatingAccent": "主题图片交替重点",
+ "Common.define.smartArt.textThemePictureGrid": "主题图片网格",
+ "Common.define.smartArt.textTitledMatrix": "带标题的矩阵",
+ "Common.define.smartArt.textTitledPictureAccentList": "标题图片重点列表",
+ "Common.define.smartArt.textTitledPictureBlocks": "标题图片块",
+ "Common.define.smartArt.textTitlePictureLineup": "标题图片排列",
+ "Common.define.smartArt.textTrapezoidList": "梯形列表",
+ "Common.define.smartArt.textUpwardArrow": "向上箭头",
+ "Common.define.smartArt.textVaryingWidthList": "不同宽度列表",
+ "Common.define.smartArt.textVerticalAccentList": "垂直重点列表",
+ "Common.define.smartArt.textVerticalArrowList": "垂直箭头列表",
+ "Common.define.smartArt.textVerticalBendingProcess": "垂直蛇形流程",
+ "Common.define.smartArt.textVerticalBlockList": "垂直块列表",
+ "Common.define.smartArt.textVerticalBoxList": "垂直框列表",
+ "Common.define.smartArt.textVerticalBracketList": "垂直括弧列表",
+ "Common.define.smartArt.textVerticalBulletList": "垂直项目符号列表",
+ "Common.define.smartArt.textVerticalChevronList": "垂直 V 形列表",
+ "Common.define.smartArt.textVerticalCircleList": "垂直圆形列表",
+ "Common.define.smartArt.textVerticalCurvedList": "垂直曲形列表",
+ "Common.define.smartArt.textVerticalEquation": "垂直公式",
+ "Common.define.smartArt.textVerticalPictureAccentList": "垂直图片重点列表",
+ "Common.define.smartArt.textVerticalPictureList": "垂直图片列表",
+ "Common.define.smartArt.textVerticalProcess": "垂直流程",
"Common.Translation.textMoreButton": "更多",
"Common.Translation.warnFileLocked": "另一个应用程序正在编辑本文件。你可以继续编辑,并另存为副本。",
"Common.Translation.warnFileLockedBtnEdit": "创建副本",
@@ -695,6 +854,7 @@
"SSE.Controllers.LeftMenu.warnDownloadAs": "如果您继续以此格式保存,除文本之外的所有功能将丢失。 您确定要继续吗?",
"SSE.Controllers.Main.confirmAddCellWatches": "此操作将会添加 {0} 个单元格监视。 是否继续?",
"SSE.Controllers.Main.confirmAddCellWatchesMax": "此操作将只会添加 {0} 个单元格监视以节省内存。 是否继续?",
+ "SSE.Controllers.Main.confirmMaxChangesSize": "行动的大小超过了对您服务器设置的限制。 按 \"撤消\"取消您的最后一次行动,或按\"继续\"在本地保留该行动(您需要下载文件或复制其内容以确保没有任何损失)。",
"SSE.Controllers.Main.confirmMoveCellRange": "目的地小区范围可以包含数据。继续操作?",
"SSE.Controllers.Main.confirmPutMergeRange": "源数据包含合并的单元格。 它们在粘贴到表格之前已经被取消了。",
"SSE.Controllers.Main.confirmReplaceFormulaInTable": "表头里的公式将会被删除,并转换成普通文本。 要继续吗?",
@@ -827,6 +987,7 @@
"SSE.Controllers.Main.textCloseTip": "点击关闭提示",
"SSE.Controllers.Main.textConfirm": "确认",
"SSE.Controllers.Main.textContactUs": "联系销售",
+ "SSE.Controllers.Main.textContinue": "发送",
"SSE.Controllers.Main.textConvertEquation": "该公式是使用不再受支持的方程式编辑器的旧版本创建的。要对其进行编辑,请将公式转换为Office Math ML格式。 立即转换?",
"SSE.Controllers.Main.textCustomLoader": "请注意,根据许可条款您无权更改加载程序。 请联系我们的销售部门获取报价。",
"SSE.Controllers.Main.textDisconnect": "网络连接已断开。",
@@ -855,6 +1016,7 @@
"SSE.Controllers.Main.textStrict": "手动模式",
"SSE.Controllers.Main.textTryUndoRedo": "对于自动的协同编辑模式,取消/重做功能是禁用的。< br >单击“手动模式”按钮切换到手动协同编辑模式,这样,编辑该文件时只有您保存修改之后,其他用户才能访问这些修改。您可以使用编辑器高级设置易于切换编辑模式。",
"SSE.Controllers.Main.textTryUndoRedoWarn": "自动共同编辑模式下,撤销/重做功能被禁用。",
+ "SSE.Controllers.Main.textUndo": "撤消",
"SSE.Controllers.Main.textYes": "是",
"SSE.Controllers.Main.titleLicenseExp": "许可证过期",
"SSE.Controllers.Main.titleServerVersion": "编辑器已更新",
@@ -1947,15 +2109,20 @@
"SSE.Views.DigitalFilterDialog.textUse1": "使用 ?呈现任何单个字符",
"SSE.Views.DigitalFilterDialog.textUse2": "使用*来呈现任何一系列的角色",
"SSE.Views.DigitalFilterDialog.txtTitle": "自定义筛选器",
+ "SSE.Views.DocumentHolder.advancedEquationText": "方程式设置",
"SSE.Views.DocumentHolder.advancedImgText": "高级图像设置",
"SSE.Views.DocumentHolder.advancedShapeText": "形状高级设置",
"SSE.Views.DocumentHolder.advancedSlicerText": "切片器高级设置",
+ "SSE.Views.DocumentHolder.allLinearText": "全部 - 线性",
+ "SSE.Views.DocumentHolder.allProfText": "全部 - 专业",
"SSE.Views.DocumentHolder.bottomCellText": "靠下对齐",
"SSE.Views.DocumentHolder.bulletsText": "符号和编号",
"SSE.Views.DocumentHolder.centerCellText": "垂直居中",
"SSE.Views.DocumentHolder.chartDataText": "选择图标数据",
"SSE.Views.DocumentHolder.chartText": "图表高级设置",
"SSE.Views.DocumentHolder.chartTypeText": "更改图表类型",
+ "SSE.Views.DocumentHolder.currLinearText": "当前 - 线性",
+ "SSE.Views.DocumentHolder.currProfText": "当前 - 专业",
"SSE.Views.DocumentHolder.deleteColumnText": "列",
"SSE.Views.DocumentHolder.deleteRowText": "行",
"SSE.Views.DocumentHolder.deleteTableText": "表格",
@@ -1969,6 +2136,7 @@
"SSE.Views.DocumentHolder.insertColumnRightText": "右列",
"SSE.Views.DocumentHolder.insertRowAboveText": "上面的行",
"SSE.Views.DocumentHolder.insertRowBelowText": "下面的行",
+ "SSE.Views.DocumentHolder.latexText": "LaTeX",
"SSE.Views.DocumentHolder.originalSizeText": "实际大小",
"SSE.Views.DocumentHolder.removeHyperlinkText": "删除超链接",
"SSE.Views.DocumentHolder.selectColumnText": "整列",
@@ -2078,6 +2246,7 @@
"SSE.Views.DocumentHolder.txtPaste": "粘贴",
"SSE.Views.DocumentHolder.txtPercentage": "百分比",
"SSE.Views.DocumentHolder.txtReapply": "Reapply",
+ "SSE.Views.DocumentHolder.txtRefresh": "刷新",
"SSE.Views.DocumentHolder.txtRow": "整行",
"SSE.Views.DocumentHolder.txtRowHeight": "设置行高",
"SSE.Views.DocumentHolder.txtScientific": "科学",
@@ -2097,7 +2266,10 @@
"SSE.Views.DocumentHolder.txtTime": "时间",
"SSE.Views.DocumentHolder.txtUngroup": "取消组合",
"SSE.Views.DocumentHolder.txtWidth": "宽度",
+ "SSE.Views.DocumentHolder.unicodeText": "Unicode",
"SSE.Views.DocumentHolder.vertAlignText": "垂直对齐",
+ "SSE.Views.ExternalLinksDlg.closeButtonText": "关闭",
+ "SSE.Views.ExternalLinksDlg.textSource": "来源",
"SSE.Views.FieldSettingsDialog.strLayout": "布局",
"SSE.Views.FieldSettingsDialog.strSubtotals": "分类汇总",
"SSE.Views.FieldSettingsDialog.textReport": "报告",
@@ -2161,6 +2333,7 @@
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "位置",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "有权利的人",
"SSE.Views.FileMenuPanels.DocumentInfo.txtSubject": "主题",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtTags": "标签",
"SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "标题",
"SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "上载",
"SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "更改访问权限",
@@ -3399,6 +3572,7 @@
"SSE.Views.Toolbar.capBtnComment": "批注",
"SSE.Views.Toolbar.capBtnInsHeader": "页眉/页脚",
"SSE.Views.Toolbar.capBtnInsSlicer": "切片器",
+ "SSE.Views.Toolbar.capBtnInsSmartArt": "SmartArt",
"SSE.Views.Toolbar.capBtnInsSymbol": "符号",
"SSE.Views.Toolbar.capBtnMargins": "边距",
"SSE.Views.Toolbar.capBtnPageOrient": "方向",
@@ -3556,16 +3730,19 @@
"SSE.Views.Toolbar.tipInsertChart": "插入图表",
"SSE.Views.Toolbar.tipInsertChartSpark": "插入图表",
"SSE.Views.Toolbar.tipInsertEquation": "插入方程",
+ "SSE.Views.Toolbar.tipInsertHorizontalText": "插入横排文本框",
"SSE.Views.Toolbar.tipInsertHyperlink": "添加超链接",
"SSE.Views.Toolbar.tipInsertImage": "插入图片",
"SSE.Views.Toolbar.tipInsertOpt": "插入单元格",
"SSE.Views.Toolbar.tipInsertShape": "自动插入形状",
"SSE.Views.Toolbar.tipInsertSlicer": "插入分法",
+ "SSE.Views.Toolbar.tipInsertSmartArt": "插入 SmartArt",
"SSE.Views.Toolbar.tipInsertSpark": "插入迷你图",
"SSE.Views.Toolbar.tipInsertSymbol": "插入符号",
"SSE.Views.Toolbar.tipInsertTable": "插入表",
"SSE.Views.Toolbar.tipInsertText": "插入文字",
"SSE.Views.Toolbar.tipInsertTextart": "插入艺术字",
+ "SSE.Views.Toolbar.tipInsertVerticalText": "插入竖排文本框",
"SSE.Views.Toolbar.tipMerge": "合并且居中",
"SSE.Views.Toolbar.tipNone": "无",
"SSE.Views.Toolbar.tipNumFormat": "数字格式",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/be.json b/apps/spreadsheeteditor/main/resources/formula-lang/be.json
index dc5634b09..d8fc5d467 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/be.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/be.json
@@ -459,6 +459,19 @@
"SWITCH": "ПЕРЕКЛЮЧ",
"TRUE": "ИСТИНА",
"XOR": "ИСКЛИЛИ",
+ "TEXTBEFORE": "ТЕКСТДО",
+ "TEXTAFTER": "ТЕКСТПОСЛЕ",
+ "TEXTSPLIT": "ТЕКСТРАЗД",
+ "WRAPROWS": "СВЕРНСТРОК",
+ "VSTACK": "ВСТОЛБИК",
+ "HSTACK": "ГСТОЛБИК",
+ "CHOOSEROWS": "ВЫБОРСТРОК",
+ "CHOOSECOLS": "ВЫБОРСТОЛБЦ",
+ "TOCOL": "ПОСТОЛБЦ",
+ "TOROW": "ПОСТРОК",
+ "WRAPCOLS": "СВЕРНСТОЛБЦ",
+ "TAKE": "ВЗЯТЬ",
+ "DROP": "СБРОСИТЬ",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Заголовки",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/be_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/be_desc.json
index 8ab671d46..5b7289df6 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/be_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/be_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(логическое_значение1;[логическое значение2]; ... )",
"d": "Логическая функция, возвращает логическое исключающее ИЛИ всех аргументов"
+ },
+ "TEXTBEFORE": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Возвращает текст перед символами-разделителями."
+ },
+ "TEXTAFTER": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Возвращает текст после символов-разделителей."
+ },
+ "TEXTSPLIT": {
+ "a": "(text, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
+ "d": "Разбивает текст на строки или столбцы с помощью разделителей."
+ },
+ "WRAPROWS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "Переносит вектор строки или столбца после указанного числа значений."
+ },
+ "VSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "Вертикально собирает массивы в один массив."
+ },
+ "HSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "Горизонтально собирает массивы в один массив."
+ },
+ "CHOOSEROWS": {
+ "a": "(array, row_num1, [row_num2], ...)",
+ "d": "Возвращает строки из массива или ссылки."
+ },
+ "CHOOSECOLS": {
+ "a": "(array, col_num1, [col_num2], ...)",
+ "d": "Возвращает столбцы из массива или ссылки."
+ },
+ "TOCOL": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "Возвращает массив в виде одного столбца."
+ },
+ "TOROW": {
+ "a": "(массив, [игнорировать], [сканировать_по_столбцам])",
+ "d": "Возвращает массив в виде одной строки."
+ },
+ "WRAPCOLS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "Переносит вектор строки или столбца после указанного числа значений."
+ },
+ "TAKE": {
+ "a": "(array, rows, [columns])",
+ "d": "Возвращает строки или столбцы из начала или конца массива."
+ },
+ "DROP": {
+ "a": "(array, rows, [columns])",
+ "d": "Удаляет строки или столбцы из начала или конца массива."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/bg.json b/apps/spreadsheeteditor/main/resources/formula-lang/bg.json
index 6fb0da65c..f7e7458d2 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/bg.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/bg.json
@@ -459,6 +459,19 @@
"SWITCH": "SWITCH",
"TRUE": "TRUE",
"XOR": "XOR",
+ "TEXTBEFORE": "TEXTBEFORE",
+ "TEXTAFTER": "TEXTAFTER",
+ "TEXTSPLIT": "TEXTSPLIT",
+ "WRAPROWS": "WRAPROWS",
+ "VSTACK": "VSTACK",
+ "HSTACK": "HSTACK",
+ "CHOOSEROWS": "CHOOSEROWS",
+ "CHOOSECOLS": "CHOOSECOLS",
+ "TOCOL": "TOCOL",
+ "TOROW": "TOROW",
+ "WRAPCOLS": "WRAPCOLS",
+ "TAKE": "TAKE",
+ "DROP": "DROP",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Headers",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/bg_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/bg_desc.json
index dbc5e7b52..7aff26662 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/bg_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/bg_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(логическо1; [логическо2]; ...)",
"d": "Връща логическо \"Изключващо или\" на всички аргументи"
+ },
+ "TEXTBEFORE": {
+ "a": "(текст, разделител, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": " Връща текст, който е преди разделяне на знаци."
+ },
+ "TEXTAFTER": {
+ "a": "(текст, разделител, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": " Връща текст, който е след разделяне на знаци."
+ },
+ "TEXTSPLIT": {
+ "a": "(текст, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
+ "d": " Разделя текста на редове или колони с помощта на разделители."
+ },
+ "WRAPROWS": {
+ "a": "(вектор, wrap_count, [pad_with])",
+ "d": " Пренася вектор на ред или колона след указан брой стойности."
+ },
+ "VSTACK": {
+ "a": "(масив1, [масив2], ...)",
+ "d": " Вертикално наслагва масиви в един масив."
+ },
+ "HSTACK": {
+ "a": "(масив1, [масив2], ...)",
+ "d": " Хоризонтално наслагва масиви в един масив."
+ },
+ "CHOOSEROWS": {
+ "a": "(масив, row_num1, [row_num2], ...)",
+ "d": " Връща редове от масив или препратка."
+ },
+ "CHOOSECOLS": {
+ "a": "(масив, col_num1, [col_num2], ...)",
+ "d": " Връща колони от масив или препратка."
+ },
+ "TOCOL": {
+ "a": "(масив, [игнорирай], [scan_by_column])",
+ "d": " Връща масива като една колона."
+ },
+ "TOROW": {
+ "a": "(масив, [игнорирай], [сканиране_по_колона])",
+ "d": " Връща масива като един ред."
+ },
+ "WRAPCOLS": {
+ "a": "(вектор, wrap_count, [pad_with])",
+ "d": " Пренася вектор на ред или колона след указан брой стойности."
+ },
+ "TAKE": {
+ "a": "(масив, редове, [колони])",
+ "d": " Връща редове или колони от началото или края на масива."
+ },
+ "DROP": {
+ "a": "(масив, редове, [колони])",
+ "d": " Пада редове или колони от началото или края на масива."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/ca.json b/apps/spreadsheeteditor/main/resources/formula-lang/ca.json
index 36dc4957a..26331bc74 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/ca.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/ca.json
@@ -459,6 +459,19 @@
"SWITCH": "CANVIA",
"TRUE": "CERT",
"XOR": "OEXC",
+ "TEXTBEFORE": "TEXTABANS",
+ "TEXTAFTER": "TEXTDESPRES",
+ "TEXTSPLIT": "DIVIDEIXTEXT",
+ "WRAPROWS": "AJUSTAFILES",
+ "VSTACK": "APILAV",
+ "HSTACK": "APILAH",
+ "CHOOSEROWS": "TRIAFILES",
+ "CHOOSECOLS": "TRIACOL",
+ "TOCOL": "ACOL",
+ "TOROW": "AFILA",
+ "WRAPCOLS": "AJUSTACOL",
+ "TAKE": "PREN",
+ "DROP": "EXCLOU",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Headers",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/ca_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/ca_desc.json
index 443c945e7..938163bbd 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/ca_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/ca_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(lògica1; [lògica2]; ...)",
"d": "Torna una lògica \"Exclusiu o\" de tots els arguments"
+ },
+ "TEXTBEFORE": {
+ "a": "(text, delimitador, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Retorna text que és abans de delimitar caràcters."
+ },
+ "TEXTAFTER": {
+ "a": "(text, delimitador, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Retorna text que és després de delimitar caràcters."
+ },
+ "TEXTSPLIT": {
+ "a": "(text, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
+ "d": " Divideix el text en files o columnes utilitzant delimitadors."
+ },
+ "WRAPROWS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "Ajusta un vector de fila o columna després d’un nombre de valors especificat."
+ },
+ "VSTACK": {
+ "a": "(array1, [matriu2], ...)",
+ "d": "Apila les matrius verticalment en una sola matriu."
+ },
+ "HSTACK": {
+ "a": "(array1, [matriu2], ...)",
+ "d": "Apila les matrius horitzontalment en una sola matriu."
+ },
+ "CHOOSEROWS": {
+ "a": "(array, row_num1, [row_num2], ...)",
+ "d": "Retorna files d'una matriu o una referència."
+ },
+ "CHOOSECOLS": {
+ "a": "(array, col_num1, [col_num2], ...)",
+ "d": "Retorna columnes d'una matriu o una referència."
+ },
+ "TOCOL": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "Retorna la matriu com una columna."
+ },
+ "TOROW": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "Retorna la matriu com una fila."
+ },
+ "WRAPCOLS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "Ajusta un vector de fila o columna després d’un nombre de valors especificat."
+ },
+ "TAKE": {
+ "a": "(array, files, [columnes])",
+ "d": "Retorna files o columnes des de l'inici o el final de la matriu."
+ },
+ "DROP": {
+ "a": "(array, rows, [columns])",
+ "d": "Deixa anar files o columnes de l'inici o el final de la matriu."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/cs.json b/apps/spreadsheeteditor/main/resources/formula-lang/cs.json
index 6800f8563..fd09d7d58 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/cs.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/cs.json
@@ -459,6 +459,19 @@
"SWITCH": "SWITCH",
"TRUE": "PRAVDA",
"XOR": "XOR",
+ "TEXTBEFORE": "TEXTPŘED",
+ "TEXTAFTER": "TEXTZA",
+ "TEXTSPLIT": "ROZDĚLIT.TEXT",
+ "WRAPROWS": "ZABALŘÁDKY",
+ "VSTACK": "SROVNAT.SVISLE",
+ "HSTACK": "SROVNAT.VODOROVNĚ",
+ "CHOOSEROWS": "ZVOLITŘÁDKY",
+ "CHOOSECOLS": "ZVOLITSLOUPCE",
+ "TOCOL": "DO.SLOUPCE",
+ "TOROW": "DO.ŘÁDKU",
+ "WRAPCOLS": "ZABALSLOUPCE",
+ "TAKE": "VZÍT",
+ "DROP": "ZAHODIT",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Headers",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/cs_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/cs_desc.json
index 296b2a2c9..0232e4f37 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/cs_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/cs_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(logická1; [logická2]; ...)",
"d": "Vrátí logickou hodnotu Výhradní nebo všech argumentů"
+ },
+ "TEXTBEFORE": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Vrátí text, který je před oddělovači znaků."
+ },
+ "TEXTAFTER": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Vrátí text, který je po oddělovači znaků."
+ },
+ "TEXTSPLIT": {
+ "a": "(text, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
+ "d": "Rozdělí text na řádky nebo sloupce pomocí oddělovačů."
+ },
+ "WRAPROWS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "Zalomí vektor řádku nebo sloupce po zadaném počtu hodnot."
+ },
+ "VSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": " Svisle skládá pole do jednoho pole."
+ },
+ "HSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": " Vodorovně skládá pole do jednoho pole."
+ },
+ "CHOOSEROWS": {
+ "a": "(array, row_num1, [row_num2], ...)",
+ "d": "Vrátí řádky z pole nebo odkazu."
+ },
+ "CHOOSECOLS": {
+ "a": "(array, col_num1, [col_num2], ...)",
+ "d": "Vrátí sloupce z pole nebo odkazu."
+ },
+ "TOCOL": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "Vrátí pole jako jeden sloupec."
+ },
+ "TOROW": {
+ "a": "(pole, [ignorovat], [prohledávat_podle_sloupce])",
+ "d": "Vrátí pole jako jeden řádek. "
+ },
+ "WRAPCOLS": {
+ "a": "(vektor, wrap_count, [pad_with])",
+ "d": " Zabalí vektor řádku nebo sloupce po zadaném počtu hodnot."
+ },
+ "TAKE": {
+ "a": "(array, rows, [columns])",
+ "d": "Vrátí řádky nebo sloupce ze začátku nebo konce pole."
+ },
+ "DROP": {
+ "a": "(array, rows, [columns])",
+ "d": "Přemístí řádky nebo sloupce ze začátku nebo konce pole."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/da.json b/apps/spreadsheeteditor/main/resources/formula-lang/da.json
index b6b5958a9..b9de18265 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/da.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/da.json
@@ -459,6 +459,19 @@
"SWITCH": "SKIFT",
"TRUE": "SAND",
"XOR": "XELLER",
+ "TEXTBEFORE": "TEKSTFØR",
+ "TEXTAFTER": "TEKSTEFTER",
+ "TEXTSPLIT": "TEKSTSPLIT",
+ "WRAPROWS": "FOLDRÆKKER",
+ "VSTACK": "VSTAK",
+ "HSTACK": "HSTAK",
+ "CHOOSEROWS": "VÆLGRÆKKER",
+ "CHOOSECOLS": "VÆLGKOL",
+ "TOCOL": "TILKOLONNE",
+ "TOROW": "TILRÆKKE",
+ "WRAPCOLS": "FOLDKOLONNER",
+ "TAKE": "TAG",
+ "DROP": "UDELAD",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Headers",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/da_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/da_desc.json
index c67916d70..1a2b0f8d0 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/da_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/da_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(logisk1; [logisk2]; ...)",
"d": "Returnerer et logisk 'Eksklusivt eller' for alle argumenterne"
+ },
+ "TEXTBEFORE": {
+ "a": "(tekst, afgrænser, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": " Returnerer tekst, der er før afgrænsende tegn."
+ },
+ "TEXTAFTER": {
+ "a": "(tekst, afgrænser, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": " Returnerer tekst, der er efter afgrænsende tegn."
+ },
+ "TEXTSPLIT": {
+ "a": "(tekst, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
+ "d": " Opdeler tekst i rækker eller kolonner ved hjælp af afgrænsere."
+ },
+ "WRAPROWS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "Ombryd en række- eller kolonnevektor efter et angivet antal værdier."
+ },
+ "VSTACK": {
+ "a": "(matrix1, [matrix2], ...)",
+ "d": "Stabler matrixer lodret i én matrix."
+ },
+ "HSTACK": {
+ "a": "(matrix1, [matrix2], ...)",
+ "d": "Stabler matrixer vandret i én matrix."
+ },
+ "CHOOSEROWS": {
+ "a": "(matrix, row_num1, [row_num2], ...)",
+ "d": " Returnerer rækker fra en matrix eller reference."
+ },
+ "CHOOSECOLS": {
+ "a": "(matrix, col_num1, [col_num2], ...)",
+ "d": " Returnerer kolonner fra en matrix eller en reference."
+ },
+ "TOCOL": {
+ "a": "(matrix, [ignorer], [scan_by_column])",
+ "d": "Returnerer matrixen som én kolonne."
+ },
+ "TOROW": {
+ "a": "(matrix, [ignorer], [scan_by_column])",
+ "d": "Returnerer matrixen som én række."
+ },
+ "WRAPCOLS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "Ombryd en række- eller kolonnevektor efter et angivet antal værdier."
+ },
+ "TAKE": {
+ "a": "(matrix, rækker, [kolonne])",
+ "d": "Returnerer rækker eller kolonner fra matrixens start eller slutning."
+ },
+ "DROP": {
+ "a": "(matrix, rækker, [kolonner])",
+ "d": "Sletter rækker eller kolonner fra matrixens start eller slutning."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/de.json b/apps/spreadsheeteditor/main/resources/formula-lang/de.json
index 597d0bdbe..e09eb9978 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/de.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/de.json
@@ -459,6 +459,19 @@
"SWITCH": "ERSTERWERT",
"TRUE": "WAHR",
"XOR": "XODER",
+ "TEXTBEFORE": "TEXTVOR",
+ "TEXTAFTER": "TEXTNACH",
+ "TEXTSPLIT": "TEXTTEILEN",
+ "WRAPROWS": "ZEILENUMBRUCH",
+ "VSTACK": "VSTAPELN",
+ "HSTACK": "HSTAPELN",
+ "CHOOSEROWS": "ZEILENWAHL",
+ "CHOOSECOLS": "SPALTENWAHL",
+ "TOCOL": "ZUSPALTE",
+ "TOROW": "ZUZEILE",
+ "WRAPCOLS": "SPALTENUMBRUCH",
+ "TAKE": "ÜBERNEHMEN",
+ "DROP": "WEGLASSEN",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Kopfzeilen",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/de_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/de_desc.json
index 9e35b25f4..23212f3c1 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/de_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/de_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(Wahrheitswert1; [Wahrheitswert2]; ...)",
"d": "Gibt ein logisches \"Ausschließliches Oder\" aller Argumente zurück"
+ },
+ "TEXTBEFORE": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Gibt Text zurück, der vor Trennzeichen steht."
+ },
+ "TEXTAFTER": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Gibt Text zurück, der nach Trennzeichen steht."
+ },
+ "TEXTSPLIT": {
+ "a": "(text, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
+ "d": "Teilt Text mithilfe von Trennzeichen in Zeilen oder Spalten auf."
+ },
+ "WRAPROWS": {
+ "a": "(Vektor, wrap_count, [pad_with])",
+ "d": " Umschließt einen Zeilen- oder Spaltenvektor nach einer angegebenen Anzahl von Werten."
+ },
+ "VSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "Stapelt Matrizes vertikal in eine Matrix."
+ },
+ "HSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "Stapelt Matrizes horizontal in eine Matrix."
+ },
+ "CHOOSEROWS": {
+ "a": "(array, row_num1, [row_num2], ...)",
+ "d": "Gibt Zeilen aus einer Matrix oder einem Verweis zurück."
+ },
+ "CHOOSECOLS": {
+ "a": "(array, row_num1, [row_num2], ...)",
+ "d": "Gibt Spalten aus einer Matrix oder einem Verweis zurück."
+ },
+ "TOCOL": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "Gibt die Matrix als eine Spalte zurück."
+ },
+ "TOROW": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "Gibt das Array als eine Zeile zurück."
+ },
+ "WRAPCOLS": {
+ "a": "(Vektor, wrap_count, [pad_with])",
+ "d": " Umschließt einen Zeilen- oder Spaltenvektor nach einer angegebenen Anzahl von Werten."
+ },
+ "TAKE": {
+ "a": "(array, rows, [columns])",
+ "d": "Gibt Zeilen oder Spalten vom Anfang oder Ende der Matrix zurück."
+ },
+ "DROP": {
+ "a": "(array, rows, [columns])",
+ "d": "Löscht Zeilen oder Spalten vom Anfang oder Ende der Matrix."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/el.json b/apps/spreadsheeteditor/main/resources/formula-lang/el.json
index 28b6e2f76..6886cca82 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/el.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/el.json
@@ -459,6 +459,19 @@
"SWITCH": "SWITCH",
"TRUE": "TRUE",
"XOR": "XOR",
+ "TEXTBEFORE": "TEXTBEFORE",
+ "TEXTAFTER": "TEXTAFTER",
+ "TEXTSPLIT": "TEXTSPLIT",
+ "WRAPROWS": "WRAPROWS",
+ "VSTACK": "VSTACK",
+ "HSTACK": "HSTACK",
+ "CHOOSEROWS": "CHOOSEROWS",
+ "CHOOSECOLS": "CHOOSECOLS",
+ "TOCOL": "TOCOL",
+ "TOROW": "TOROW",
+ "WRAPCOLS": "WRAPCOLS",
+ "TAKE": "TAKE",
+ "DROP": "DROP",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Headers",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/el_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/el_desc.json
index 5da3ea95e..342a14982 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/el_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/el_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(λογική1; [λογική2]; ...)",
"d": "Αποδίδει το λογικό 'αποκλειστικό ή' όλων των ορισμάτων"
+ },
+ "TEXTBEFORE": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Επιστρέφει κείμενο που είναι πριν από την οριοθέτηση χαρακτήρων."
+ },
+ "TEXTAFTER": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Επιστρέφει κείμενο που είναι μετά την οριοθέτηση χαρακτήρων."
+ },
+ "TEXTSPLIT": {
+ "a": "(text, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
+ "d": "Διαχωρίζει το κείμενο σε σειρές ή στήλες χρησιμοποιώντας οριοθέτες."
+ },
+ "WRAPROWS": {
+ "a": "(διάνυσμα, wrap_count, [pad_with])",
+ "d": " Αναδιπλώνει ένα διάνυσμα γραμμής ή στήλης μετά από έναν καθορισμένο αριθμό τιμών."
+ },
+ "VSTACK": {
+ "a": "(πίνακας1, [πίνακας2], ...)",
+ "d": " Στοιβάζει κατακόρυφα πίνακες σε έναν πίνακα."
+ },
+ "HSTACK": {
+ "a": "(πίνακας1, [πίνακας2], ...)",
+ "d": " Στοιχίζει οριζόντια πίνακες σε έναν πίνακα."
+ },
+ "CHOOSEROWS": {
+ "a": "(πίνακας, row_num1, [row_num2], ...)",
+ "d": " Επιστρέφει γραμμές από έναν πίνακα ή αναφορά."
+ },
+ "CHOOSECOLS": {
+ "a": "(πίνακας, col_num1, [col_num2], ...)",
+ "d": " Επιστρέφει στήλες από έναν πίνακα ή αναφορά."
+ },
+ "TOCOL": {
+ "a": "(πίνακας, [παράβλεψη], [scan_by_column])",
+ "d": " Επιστρέφει τον πίνακα ως μία στήλη."
+ },
+ "TOROW": {
+ "a": "(πίνακας, [παράβλεψη], [scan_by_column])",
+ "d": " Επιστρέφει τον πίνακα ως μία γραμμή."
+ },
+ "WRAPCOLS": {
+ "a": "(διάνυσμα, wrap_count, [pad_with])",
+ "d": " Αναδιπλώνει ένα διάνυσμα γραμμής ή στήλης μετά από έναν καθορισμένο αριθμό τιμών."
+ },
+ "TAKE": {
+ "a": "(πίνακας, γραμμές, [στήλες])",
+ "d": " Επιστρέφει γραμμές ή στήλες από την αρχή ή το τέλος του πίνακα."
+ },
+ "DROP": {
+ "a": "(πίνακας, γραμμές, [στήλες])",
+ "d": " Αποθέτει γραμμές ή στήλες από την αρχή ή το τέλος του πίνακα."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/en.json b/apps/spreadsheeteditor/main/resources/formula-lang/en.json
index 7f3ac9d87..d14748de1 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/en.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/en.json
@@ -459,6 +459,19 @@
"SWITCH": "SWITCH",
"TRUE": "TRUE",
"XOR": "XOR",
+ "TEXTBEFORE": "TEXTBEFORE",
+ "TEXTAFTER": "TEXTAFTER",
+ "TEXTSPLIT": "TEXTSPLIT",
+ "WRAPROWS": "WRAPROWS",
+ "VSTACK": "VSTACK",
+ "HSTACK": "HSTACK",
+ "CHOOSEROWS": "CHOOSEROWS",
+ "CHOOSECOLS": "CHOOSECOLS",
+ "TOCOL": "TOCOL",
+ "TOROW": "TOROW",
+ "WRAPCOLS": "WRAPCOLS",
+ "TAKE": "TAKE",
+ "DROP": "DROP",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Headers",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/en_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/en_desc.json
index 28268f328..dee3dacb5 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/en_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/en_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(logical1; [logical2]; ...)",
"d": "Returns a logical 'Exclusive Or' of all arguments"
+ },
+ "TEXTBEFORE": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Returns text that’s before delimiting characters."
+ },
+ "TEXTAFTER": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Returns text that’s after delimiting characters."
+ },
+ "TEXTSPLIT": {
+ "a": "(text, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
+ "d": "Splits text into rows or columns using delimiters."
+ },
+ "WRAPROWS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "Wraps a row or column vector after a specified number of values."
+ },
+ "VSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "Vertically stacks arrays into one array."
+ },
+ "HSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "Horizontally stacks arrays into one array."
+ },
+ "CHOOSEROWS": {
+ "a": "(array, row_num1, [row_num2], ...)",
+ "d": "Returns rows from an array or reference."
+ },
+ "CHOOSECOLS": {
+ "a": "(array, col_num1, [col_num2], ...)",
+ "d": "Returns columns from an array or reference."
+ },
+ "TOCOL": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "Returns the array as one column."
+ },
+ "TOROW": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "Returns the array as one row."
+ },
+ "WRAPCOLS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "Wraps a row or column vector after a specified number of values."
+ },
+ "TAKE": {
+ "a": "(array, rows, [columns])",
+ "d": "Returns rows or columns from array start or end."
+ },
+ "DROP": {
+ "a": "(array, rows, [columns])",
+ "d": "Drops rows or columns from array start or end."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/es.json b/apps/spreadsheeteditor/main/resources/formula-lang/es.json
index 48ef289a1..8635749bd 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/es.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/es.json
@@ -459,6 +459,19 @@
"SWITCH": "CAMBIAR",
"TRUE": "VERDADERO",
"XOR": "XO",
+ "TEXTBEFORE": "TEXTOANTES",
+ "TEXTAFTER": "TEXTODESPUES",
+ "TEXTSPLIT": "DIVIDIRTEXTO",
+ "WRAPROWS": "AJUSTARFILAS",
+ "VSTACK": "APILARV",
+ "HSTACK": "APILARH",
+ "CHOOSEROWS": "ELEGIRFILAS",
+ "CHOOSECOLS": "ELEGIRCOLS",
+ "TOCOL": "ENCOL",
+ "TOROW": "ENFILA",
+ "WRAPCOLS": "AJUSTARCOLS",
+ "TAKE": "TOMAR",
+ "DROP": "EXCLUIR",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Encabezados",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/es_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/es_desc.json
index d6d6f2dbb..1d26e0345 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/es_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/es_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(lógico1; [lógico2]; ...)",
"d": "Devuelve una 'Exclusive Or' lógica de todos los argumentos"
+ },
+ "TEXTBEFORE": {
+ "a": "(texto, delimitador, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Devuelve el texto que está antes de delimitar caracteres."
+ },
+ "TEXTAFTER": {
+ "a": "(texto, delimitador, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Devuelve el texto que está después de delimitar caracteres."
+ },
+ "TEXTSPLIT": {
+ "a": "(text, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
+ "d": "Divide el texto en filas o columnas con delimitadores."
+ },
+ "WRAPROWS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "Ajusta un vector de fila o columna después de un número especificado de valores."
+ },
+ "VSTACK": {
+ "a": "(matriz1, [matriz2], ...)",
+ "d": "Apilar verticalmente matrices en una matriz."
+ },
+ "HSTACK": {
+ "a": "(matriz1, [matriz2], ...)",
+ "d": "Apilar horizontalmente matrices en una matriz."
+ },
+ "CHOOSEROWS": {
+ "a": "(matriz, row_num1, [row_num2], ...)",
+ "d": "Devuelve filas de una matriz o referencia."
+ },
+ "CHOOSECOLS": {
+ "a": "(matriz, col_num1, [col_num2], ...)",
+ "d": "Devuelve columnas de una matriz o referencia."
+ },
+ "TOCOL": {
+ "a": "(matriz, [ignorar], [scan_by_column])",
+ "d": "Devuelve la matriz como una columna."
+ },
+ "TOROW": {
+ "a": "(matriz, [ignorar], [scan_by_column])",
+ "d": "Devuelve la matriz como una fila."
+ },
+ "WRAPCOLS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "Envuelve un vector de fila o columna después de un número especificado de valores."
+ },
+ "TAKE": {
+ "a": "(matriz, filas, [columnas])",
+ "d": "Devuelve filas o columnas desde el inicio o el final de la matriz."
+ },
+ "DROP": {
+ "a": "(matriz, filas, [columnas])",
+ "d": "Quita filas o columnas desde el inicio o el final de la matriz."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/fi.json b/apps/spreadsheeteditor/main/resources/formula-lang/fi.json
index e2864f0b3..d4dd36605 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/fi.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/fi.json
@@ -459,6 +459,19 @@
"SWITCH": "MUUTA",
"TRUE": "TOSI",
"XOR": "EHDOTON.TAI",
+ "TEXTBEFORE": "TEKSTI.ENNEN",
+ "TEXTAFTER": "TEKSTI.JÄLKEEN",
+ "TEXTSPLIT": "TEKSTIJAKO",
+ "WRAPROWS": "RIVITÄRIV",
+ "VSTACK": "VPINO",
+ "HSTACK": "HPINO",
+ "CHOOSEROWS": "VALITSERIVIT",
+ "CHOOSECOLS": "VALITSESARAKKEET",
+ "TOCOL": "SARAKKEESEEN",
+ "TOROW": "RIVIIN",
+ "WRAPCOLS": "RIVITÄSAR",
+ "TAKE": "OTA",
+ "DROP": "HYLKÄÄ",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Headers",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/fi_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/fi_desc.json
index 40234940a..45a5d051c 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/fi_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/fi_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(totuus1; [totuus2]; ...)",
"d": "Palauttaa argumenttien totuuden 'Poissulkeva Tai'"
+ },
+ "TEXTBEFORE": {
+ "a": "(teksti, erotin, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Palauttaa tekstin, joka on ennen erotinmerkkejä."
+ },
+ "TEXTAFTER": {
+ "a": "(teksti, erotin, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Palauttaa tekstin, joka on erotinmerkkien jälkeen."
+ },
+ "TEXTSPLIT": {
+ "a": "(text, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
+ "d": "Jakaa tekstin riveiksi tai sarakkeiksi erottimien avulla."
+ },
+ "WRAPROWS": {
+ "a": "(vektori, wrap_count, [pad_with])",
+ "d": " Rivittää rivi- tai sarakevektorin määritetyn arvomäärän jälkeen."
+ },
+ "VSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "Pinoaa taulukot pystysuunnassa yhteen matriisiin."
+ },
+ "HSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "Pinoaa taulukot vaakasuunnassa yhteen matriisiin."
+ },
+ "CHOOSEROWS": {
+ "a": "(array, row_num1, [row_num2], ...)",
+ "d": "Palauttaa matriisista tai viittauksesta vain määritetyt rivit"
+ },
+ "CHOOSECOLS": {
+ "a": "(array, col_num1, [col_num2], ...)",
+ "d": "Palauttaa matriisista tai viittauksesta vain määritetyt sarakkeet."
+ },
+ "TOCOL": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "Palauttaa matriisin yhtenä sarakkeena."
+ },
+ "TOROW": {
+ "a": "(matriisi, [ignore], [scan_by_column])",
+ "d": "Palauttaa matriisin yhtenä rivinä. "
+ },
+ "WRAPCOLS": {
+ "a": "(vektori, wrap_count, [pad_with])",
+ "d": " Rivittää rivi- tai sarakevektorin määritetyn arvomäärän jälkeen."
+ },
+ "TAKE": {
+ "a": "(array, rows, [columns])",
+ "d": "Palauttaa rivit tai sarakkeet matriisin alusta tai lopusta."
+ },
+ "DROP": {
+ "a": "(array, rows, [columns])",
+ "d": "Poistaa rivit tai sarakkeet matriisin alusta tai lopusta."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/fr.json b/apps/spreadsheeteditor/main/resources/formula-lang/fr.json
index 5e94494f5..93294a71e 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/fr.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/fr.json
@@ -458,6 +458,19 @@
"SWITCH": "SI.MULTIPLE",
"TRUE": "VRAI",
"XOR": "OUX",
+ "TEXTBEFORE": "TEXTE.AVANT",
+ "TEXTAFTER": "TEXTE.APRES",
+ "TEXTSPLIT": "FRACTIONNER.TEXTE",
+ "WRAPROWS": "ORGA.LIGNES",
+ "VSTACK": "ASSEMB.V",
+ "HSTACK": "ASSEMB.H",
+ "CHOOSEROWS": "CHOISIRLIGNES",
+ "CHOOSECOLS": "CHOISIRCOLS",
+ "TOCOL": "DANSCOL",
+ "TOROW": "DANSLIGNE",
+ "WRAPCOLS": "ORGA.COLS",
+ "TAKE": "PRENDRE",
+ "DROP": "EXCLURE",
"LocalFormulaOperands": {
"StructureTables": {
"h": "En-têtes",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/fr_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/fr_desc.json
index ccc08ed25..327de1b5e 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/fr_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/fr_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(valeur_logique1; [valeur_logique2]; ...)",
"d": "Renvoie une valeur logique « Ou exclusif » de tous les arguments"
+ },
+ "TEXTBEFORE": {
+ "a": "(texte, délimiteur, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Retourne le texte qui précède la délimitation des caractères."
+ },
+ "TEXTAFTER": {
+ "a": "(texte, délimiteur, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Retourne du texte qui succède à la délimitation des caractères."
+ },
+ "TEXTSPLIT": {
+ "a": "(texte, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
+ "d": "Fractionne le texte en lignes ou colonnes à l’aide de délimiteurs."
+ },
+ "WRAPROWS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "Enveloppe un vecteur de ligne ou de colonne après un nombre spécifié de valeurs."
+ },
+ "VSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "Empile verticalement les tableaux dans un tableau."
+ },
+ "HSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "Empile horizontalement les tableaux dans un tableau."
+ },
+ "CHOOSEROWS": {
+ "a": "(array, row_num1, [row_num2], ...)",
+ "d": "Renvoie les lignes d’un tableau ou d’une référence."
+ },
+ "CHOOSECOLS": {
+ "a": "(array, col_num1, [col_num2], ...)",
+ "d": "Renvoie les colonnes d’un tableau ou d’une référence."
+ },
+ "TOCOL": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "Renvoie le tableau sous la forme d’une colonne."
+ },
+ "TOROW": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "Retourne le tableau sous la forme d’une ligne."
+ },
+ "WRAPCOLS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "Enveloppe un vecteur de ligne ou de colonne après un nombre spécifié de valeurs."
+ },
+ "TAKE": {
+ "a": "(array, rows, [columns])",
+ "d": "Renvoie les lignes ou les colonnes du début ou de la fin du tableau."
+ },
+ "DROP": {
+ "a": "(array, rows, [columns])",
+ "d": "Supprime les lignes ou les colonnes du début ou de la fin du tableau."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/hu.json b/apps/spreadsheeteditor/main/resources/formula-lang/hu.json
index 3cb926b68..9531bbed5 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/hu.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/hu.json
@@ -459,6 +459,19 @@
"SWITCH": "ÁTVÁLT",
"TRUE": "IGAZ",
"XOR": "XVAGY",
+ "TEXTBEFORE": "SZÖVEGELŐTTE",
+ "TEXTAFTER": "SZÖVEGUTÁNA",
+ "TEXTSPLIT": "SZÖVEGFELOSZTÁS",
+ "WRAPROWS": "SORTÖRDELÉS",
+ "VSTACK": "FÜGG.HALMOZÁS",
+ "HSTACK": "VÍZSZ.HALMOZÁS",
+ "CHOOSEROWS": "SORVÁLASZTÁS",
+ "CHOOSECOLS": "OSZLOPVÁLASZTÁS",
+ "TOCOL": "OSZLOPHOZ",
+ "TOROW": "SORHOZ",
+ "WRAPCOLS": "OSZLOPTÖRDELÉS",
+ "TAKE": "ÁTHELYEZ",
+ "DROP": "ELTÁVOLÍT",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Headers",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/hu_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/hu_desc.json
index 0b3f5d86e..fd57bf40a 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/hu_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/hu_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(logikai1; [logikai2]; ...)",
"d": "Logikai „kizárólagos vagy” műveletet végez az összes argumentummal"
+ },
+ "TEXTBEFORE": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Karakterek elválasztását megelőző szöveget küld vissza."
+ },
+ "TEXTAFTER": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Karakterek elválasztását követő szöveget küld vissza."
+ },
+ "TEXTSPLIT": {
+ "a": "(text, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
+ "d": "A szöveget sorokra vagy oszlopokra osztja fel a határolókkal."
+ },
+ "WRAPROWS": {
+ "a": "(vektor, tördelés_száma, [kitöltés_ezzel])",
+ "d": "Egy sor- vagy oszlopvektor tördelése megadott számú érték után."
+ },
+ "VSTACK": {
+ "a": "(tömb1, [tömb2], ...)",
+ "d": " A tömböket függőlegesen egy tömbbe halmozza."
+ },
+ "HSTACK": {
+ "a": "(tömb1, [tömb2], ...)",
+ "d": " A tömböket vízszintesen egy tömbbe halmozza."
+ },
+ "CHOOSEROWS": {
+ "a": "(tömb, sor_száma1, [sor_száma2], ...)",
+ "d": "Sorokat ad vissza tömbből vagy hivatkozásból."
+ },
+ "CHOOSECOLS": {
+ "a": "(tömb, oszlop_száma1, [oszlop_száma2], ...)",
+ "d": "Csak a megadott oszlopokat adja vissza tömbből vagy hivatkozásból"
+ },
+ "TOCOL": {
+ "a": "(tömb, [mindenfajta], [vizsgálat_oszloponként])",
+ "d": " Egy oszlopként adja vissza a tömböt. "
+ },
+ "TOROW": {
+ "a": "(tömb, [mindenfajta], [vizsgálat_oszloponként])",
+ "d": "Egy sorként adja vissza a tömböt."
+ },
+ "WRAPCOLS": {
+ "a": "(vektor, tördelés_száma, [kitöltés_ezzel])",
+ "d": "Egy sor- vagy oszlopvektor tördelése megadott számú érték után."
+ },
+ "TAKE": {
+ "a": "(tömb, sorok, [oszlopok])",
+ "d": "Sorokat vagy oszlopokat ad vissza a tömb elejéről vagy végéről."
+ },
+ "DROP": {
+ "a": "(tömb, sorok, [oszlopok])",
+ "d": "Sorokat vagy oszlopokat távolít el a tömb elejéről vagy végéről."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/id.json b/apps/spreadsheeteditor/main/resources/formula-lang/id.json
index 28763096f..bb63bc743 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/id.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/id.json
@@ -459,6 +459,19 @@
"SWITCH": "SWITCH",
"TRUE": "TRUE",
"XOR": "XOR",
+ "TEXTBEFORE": "TEXTBEFORE",
+ "TEXTAFTER": "TEXTAFTER",
+ "TEXTSPLIT": "TEXTSPLIT",
+ "WRAPROWS": "WRAPROWS",
+ "VSTACK": "VSTACK",
+ "HSTACK": "HSTACK",
+ "CHOOSEROWS": "CHOOSEROWS",
+ "CHOOSECOLS": "CHOOSECOLS",
+ "TOCOL": "TOCOL",
+ "TOROW": "TOROW",
+ "WRAPCOLS": "WRAPCOLS",
+ "TAKE": "TAKE",
+ "DROP": "DROP",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Headers",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/id_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/id_desc.json
index 57ab504fb..301e0b005 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/id_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/id_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(logical1; [logical2]; ...)",
"d": "Menghasilkan 'Eksklusif Atau' logis dari semua argumen"
+ },
+ "TEXTBEFORE": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Mengembalikan teks sebelum karakter pemisah."
+ },
+ "TEXTAFTER": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Mengembalikan teks setelah karakter pemisah."
+ },
+ "TEXTSPLIT": {
+ "a": "(text, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
+ "d": "Membagi teks menjadi baris atau kolom menggunakan pemisah."
+ },
+ "WRAPROWS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "Membungkus vektor baris atau kolom setelah jumlah nilai yang ditentukan."
+ },
+ "VSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "Menumpuk array secara vertikal menjadi satu array."
+ },
+ "HSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "Menumpuk array secara horizontal menjadi satu array."
+ },
+ "CHOOSEROWS": {
+ "a": "(array, row_num1, [row_num2], ...)",
+ "d": "Mengembalikan baris dari array atau referensi."
+ },
+ "CHOOSECOLS": {
+ "a": "(array, col_num1, [col_num2], ...)",
+ "d": "Mengembalikan kolom dari array atau referensi."
+ },
+ "TOCOL": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "Mengembalikan array sebagai satu kolom."
+ },
+ "TOROW": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "Menghasilkan array sebagai satu baris."
+ },
+ "WRAPCOLS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "Membungkus vektor baris atau kolom setelah jumlah nilai yang ditentukan."
+ },
+ "TAKE": {
+ "a": "(array, rows, [columns])",
+ "d": "Mengembalikan baris atau kolom dari awal atau akhir array."
+ },
+ "DROP": {
+ "a": "(array, rows, [columns])",
+ "d": "Menghapus baris atau kolom dari awal atau akhir array."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/it.json b/apps/spreadsheeteditor/main/resources/formula-lang/it.json
index fc38b1f98..7ff807505 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/it.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/it.json
@@ -449,6 +449,19 @@
"SWITCH": "SWITCH",
"TRUE": "VERO",
"XOR": "XOR",
+ "TEXTBEFORE": "TESTO.PRECEDENTE",
+ "TEXTAFTER": "TESTO.SUCCESSIVO",
+ "TEXTSPLIT": "DIVIDI.TESTO",
+ "WRAPROWS": "A.CAPO.RIGA",
+ "VSTACK": "STACK.VERT",
+ "HSTACK": "STACK.ORIZ",
+ "CHOOSEROWS": "SCEGLI.RIGA",
+ "CHOOSECOLS": "SCEGLI.COL",
+ "TOCOL": "A.COL",
+ "TOROW": "A.RIGA",
+ "WRAPCOLS": "A.CAPO.COL",
+ "TAKE": "INCLUDI",
+ "DROP": "ESCLUDI",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Headers",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/it_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/it_desc.json
index 02fa82b04..c60e14e0d 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/it_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/it_desc.json
@@ -1798,5 +1798,57 @@
"XOR": {
"a": "(logico1; [logico2]; ...)",
"d": "Restituisce un 'OR esclusivo' logico di tutti gli argomenti"
+ },
+ "TEXTBEFORE": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Restituisce il testo che si trova prima dei caratteri di delimitazione."
+ },
+ "TEXTAFTER": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Restituisce il testo che si trova dopo i caratteri di delimitazione."
+ },
+ "TEXTSPLIT": {
+ "a": "(text, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
+ "d": "Divide il testo in righe o colonne tramite i delimitatori."
+ },
+ "WRAPROWS": {
+ "a": "(vettore, wrap_count, [pad_with])",
+ "d": "Esegue il wrapping di un vettore di riga o colonna dopo un numero specificato di valori."
+ },
+ "VSTACK": {
+ "a": "(matrice1, [matrice2], ...)",
+ "d": "Impila verticalmente le matrici in un'unica matrice."
+ },
+ "HSTACK": {
+ "a": "(matrice1, [matrice2], ...)",
+ "d": "Impila orizzontalmente le matrici in un'unica matrice."
+ },
+ "CHOOSEROWS": {
+ "a": "(matrice, row_num1, [row_num2], ...)",
+ "d": "Restituisce righe da una matrice o un riferimento."
+ },
+ "CHOOSECOLS": {
+ "a": "(matrice, col_num1, [col_num2], ...)",
+ "d": "Restituisce colonne specificate da una matrice o un riferimento."
+ },
+ "TOCOL": {
+ "a": "(matrice, [ignora], [scan_by_column])",
+ "d": "Restituisce la matrice come una colonna. "
+ },
+ "TOROW": {
+ "a": "(matrice, [ignora], [scan_by_column])",
+ "d": "Restituisce la matrice come una riga."
+ },
+ "WRAPCOLS": {
+ "a": "(vettore, wrap_count, [pad_with])",
+ "d": "Esegue il wrapping di un vettore di riga o colonna dopo un numero specificato di valori."
+ },
+ "TAKE": {
+ "a": "(matrice, righe, [colonne])",
+ "d": "Restituisce righe o colonne dall'inizio o dalla fine della matrice."
+ },
+ "DROP": {
+ "a": "(matrice, righe, [colonne])",
+ "d": "Elimina righe o colonne dall'inizio o dalla fine della matrice."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/ja.json b/apps/spreadsheeteditor/main/resources/formula-lang/ja.json
index fdf4c7c3c..533dc9494 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/ja.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/ja.json
@@ -459,6 +459,19 @@
"SWITCH": "SWITCH",
"TRUE": "TRUE",
"XOR": "XOR",
+ "TEXTBEFORE": "TEXTBEFORE",
+ "TEXTAFTER": "TEXTAFTER",
+ "TEXTSPLIT": "TEXTSPLIT",
+ "WRAPROWS": "WRAPROWS",
+ "VSTACK": "VSTACK",
+ "HSTACK": "HSTACK",
+ "CHOOSEROWS": "CHOOSEROWS",
+ "CHOOSECOLS": "CHOOSECOLS",
+ "TOCOL": "TOCOL",
+ "TOROW": "TOROW",
+ "WRAPCOLS": "WRAPCOLS",
+ "TAKE": "TAKE",
+ "DROP": "DROP",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Headers",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/ja_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/ja_desc.json
index 2676afb03..28f0a9004 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/ja_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/ja_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(論理式1; [論理式2]; ...)",
"d": "すべての引数の排他的論理和を返します。"
+ },
+ "TEXTBEFORE": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "文字を区切る前のテキストを返します。"
+ },
+ "TEXTAFTER": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "文字を区切った後のテキストを返します。"
+ },
+ "TEXTSPLIT": {
+ "a": "(text, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
+ "d": "区切り記号を使用してテキストを行または列に分割。"
+ },
+ "WRAPROWS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "指定した数の値の後に行または列ベクトルを折り返します。"
+ },
+ "VSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "垂直方向に配列を 1 つの配列にスタックします。"
+ },
+ "HSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "水平方向に配列を 1 つの配列に水にスタックします。"
+ },
+ "CHOOSEROWS": {
+ "a": "(array, row_num1, [row_num2], ...)",
+ "d": "配列または参照から行を返します。"
+ },
+ "CHOOSECOLS": {
+ "a": "(array, col_num1, [col_num2], ...)",
+ "d": "配列または参照から列を返します。"
+ },
+ "TOCOL": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "配列を 1 つの列として返します。"
+ },
+ "TOROW": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "配列を 1 行として返します。"
+ },
+ "WRAPCOLS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "指定した数の値の後に行または列のベクトルをラップする。"
+ },
+ "TAKE": {
+ "a": "(array, rows, [columns])",
+ "d": "配列の開始または終了から行または列を返します。"
+ },
+ "DROP": {
+ "a": "(array, rows, [columns])",
+ "d": "配列の先頭または末尾から行または列を削除します。"
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/ko.json b/apps/spreadsheeteditor/main/resources/formula-lang/ko.json
index 6fb0da65c..f7e7458d2 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/ko.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/ko.json
@@ -459,6 +459,19 @@
"SWITCH": "SWITCH",
"TRUE": "TRUE",
"XOR": "XOR",
+ "TEXTBEFORE": "TEXTBEFORE",
+ "TEXTAFTER": "TEXTAFTER",
+ "TEXTSPLIT": "TEXTSPLIT",
+ "WRAPROWS": "WRAPROWS",
+ "VSTACK": "VSTACK",
+ "HSTACK": "HSTACK",
+ "CHOOSEROWS": "CHOOSEROWS",
+ "CHOOSECOLS": "CHOOSECOLS",
+ "TOCOL": "TOCOL",
+ "TOROW": "TOROW",
+ "WRAPCOLS": "WRAPCOLS",
+ "TAKE": "TAKE",
+ "DROP": "DROP",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Headers",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/ko_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/ko_desc.json
index 3691c1e14..63fea882d 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/ko_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/ko_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(logical1; [logical2]; ...)",
"d": "모든 인수의 논리 '배타적 Or' 값을 구합니다."
+ },
+ "TEXTBEFORE": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": " 문자를 구분하기 전의 텍스트를 반환합니다."
+ },
+ "TEXTAFTER": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": " 문자를 구분한 후의 텍스트를 반환합니다."
+ },
+ "TEXTSPLIT": {
+ "a": "(text, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
+ "d": "구분 기호를 사용하여 텍스트를 행 또는 열로 분할합니다."
+ },
+ "WRAPROWS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "지정된 수의 값 뒤에 행 또는 열 벡터를 래핑합니다."
+ },
+ "VSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "수직으로 배열을 하나의 배열로 쌓습니다."
+ },
+ "HSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "수평으로 배열을 하나의 배열로 쌓습니다."
+ },
+ "CHOOSEROWS": {
+ "a": "(array, row_num1, [row_num2], ...)",
+ "d": "배열이나 참조에서 행을 반환합니다."
+ },
+ "CHOOSECOLS": {
+ "a": "(array, col_num1, [col_num2], ...)",
+ "d": "배열 또는 참조에서 열을 반환합니다."
+ },
+ "TOCOL": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "배열을 하나의 열로 반환합니다."
+ },
+ "TOROW": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "배열을 하나의 행으로 반환합니다."
+ },
+ "WRAPCOLS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "지정된 수의 값 뒤에 행 또는 열 벡터를 래핑합니다."
+ },
+ "TAKE": {
+ "a": "(array, rows, [columns])",
+ "d": "배열 시작 또는 끝에서 행 또는 열을 반환합니다."
+ },
+ "DROP": {
+ "a": "(array, rows, [columns])",
+ "d": "배열 시작 또는 끝에서 행 또는 열을 삭제합니다."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/lo.json b/apps/spreadsheeteditor/main/resources/formula-lang/lo.json
index 6fb0da65c..559921450 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/lo.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/lo.json
@@ -459,6 +459,19 @@
"SWITCH": "SWITCH",
"TRUE": "TRUE",
"XOR": "XOR",
+ "TEXTBEFORE": "TEXTBEFORE",
+ "TEXTAFTER": "TEXTAFTER",
+ "TEXTSPLIT": "TEXTSPLIT",
+ "WRAPROWS": "WRAPROWS",
+ "VSTACK": "VSTACK",
+ "HSTACK": "HSTACK",
+ "CHOOSEROWS": "CHOOSEROWS",
+ "CHOOSECOLS": "CHOOSECOLS",
+ "TOCOL": "TOCOL",
+ "TOROW": "TOROW",
+ "WRAPCOLS": "WRAPCOLS",
+ "TAKE": "ໃຊ້",
+ "DROP": "ວາງລົງ",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Headers",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/lo_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/lo_desc.json
index 761f47faf..65d983b2a 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/lo_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/lo_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(logical1; [logical2]; ...)",
"d": "ສົ່ງຄືນຜົນຄ່າຄວາມຈິງ 'Exclusive OR' ຂອງຂໍ້ພິສູດທັງໝົດ"
+ },
+ "TEXTBEFORE": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "ສົ່ງຄືນຂໍ້ຄວາມທີ່ຢູ່ກ່ອນການຈຳກັດຕົວອັກສອນ."
+ },
+ "TEXTAFTER": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "ສົ່ງຄືນຂໍ້ຄວາມທີ່ຢູ່ຫຼັງຈາກການຈຳກັດຕົວອັກສອນ."
+ },
+ "TEXTSPLIT": {
+ "a": "(text, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
+ "d": "ແຍກຂໍ້ຄວາມອອກເປັນແຖວ ຫຼື ຖັນໂດຍໃຊ້ຕົວຂັ້ນ."
+ },
+ "WRAPROWS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "ຕັດແຖວ ຫຼື ເວັກເຕີຖັນ ຫຼັງຈໍານວນທີ່ກໍານົດໄວ້ຂອງຄ່າທີ່ລະບຸ."
+ },
+ "VSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "ອະເຣແບບຊ້ອນກັນໃນແນວຕັ້ງເປັນອະເຣດຽວ."
+ },
+ "HSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "ອະເຣແບບຊ້ອນກັນໃນແນວນອນເປັນອະເຣດຽວ."
+ },
+ "CHOOSEROWS": {
+ "a": "(array, row_num1, [row_num2], ...)",
+ "d": "ສົ່ງຄືນແຖວຈາກອະເຣ ຫຼືການອ້າງອີງ."
+ },
+ "CHOOSECOLS": {
+ "a": "(array, col_num1, [col_num2], ...)",
+ "d": "ສົ່ງຄືນຖັນຈາກອະເຣ ຫຼືການອ້າງອີງ."
+ },
+ "TOCOL": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "ສົ່ງຄືນອະເຣເປັນຖັນດຽວ."
+ },
+ "TOROW": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "ສົ່ງຄືນອະເຣເປັນແຖວດຽວ."
+ },
+ "WRAPCOLS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "ຕັດແຖວ ຫຼື ເວັກເຕີຖັນ ຫຼັງຈໍານວນທີ່ກໍານົດໄວ້ຂອງຄ່າທີ່ລະບຸ."
+ },
+ "TAKE": {
+ "a": "(array, rows, [columns])",
+ "d": "ສົ່ງຄືນແຖວ ຫຼືຖັນຈາກອະເຣເລີ່ມຕົ້ນ ຫຼືສິ້ນສຸດ."
+ },
+ "DROP": {
+ "a": "(array, rows, [columns])",
+ "d": "ວາງແຖວ ຫຼືຖັນຈາກອະເຣເລີ່ມຕົ້ນ ຫຼືສິ້ນສຸດ."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/lv.json b/apps/spreadsheeteditor/main/resources/formula-lang/lv.json
index 6fb0da65c..f7e7458d2 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/lv.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/lv.json
@@ -459,6 +459,19 @@
"SWITCH": "SWITCH",
"TRUE": "TRUE",
"XOR": "XOR",
+ "TEXTBEFORE": "TEXTBEFORE",
+ "TEXTAFTER": "TEXTAFTER",
+ "TEXTSPLIT": "TEXTSPLIT",
+ "WRAPROWS": "WRAPROWS",
+ "VSTACK": "VSTACK",
+ "HSTACK": "HSTACK",
+ "CHOOSEROWS": "CHOOSEROWS",
+ "CHOOSECOLS": "CHOOSECOLS",
+ "TOCOL": "TOCOL",
+ "TOROW": "TOROW",
+ "WRAPCOLS": "WRAPCOLS",
+ "TAKE": "TAKE",
+ "DROP": "DROP",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Headers",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/lv_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/lv_desc.json
index ef5be68a9..6e0b59334 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/lv_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/lv_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(loģiskā_vērtība1; [loģiskā_vērtība2]; ...)",
"d": "No visiem argumentiem atgriež loģisko vērtību \"Izņemot/Vai\""
+ },
+ "TEXTBEFORE": {
+ "a": "(teksts, norobežotājs, [instances_num], [atbilstības_režīms], [atbilstības_beigas], [ja_nav_atrasts])",
+ "d": "Atgriež tekstu, kas ir pirms norobežošanas rakstzīmēm."
+ },
+ "TEXTAFTER": {
+ "a": "(teksts, norobežotājs, [instances_num], [atbilstības_režīms], [atbilstības_beigas], [ja_nav_atrasts])",
+ "d": "Atgriež tekstu, kas ir pēc norobežošanas rakstzīmēm."
+ },
+ "TEXTSPLIT": {
+ "a": "(teksts, kolonnu_norobežotājs, [rindu_norobežotājs], [ignorēt_tukšu], [atbilstības_režīms], [pilda_ar])",
+ "d": "Sadala tekstu rindās vai kolonnās, izmantojot norobežotājus."
+ },
+ "WRAPROWS": {
+ "a": "(vektors, wrap_count, [pad_with])",
+ "d": "Aplauzt rindas vai kolonnas vektoru pēc norādītā vērtību skaita."
+ },
+ "VSTACK": {
+ "a": "(masīvs1, [masīvs2], ...)",
+ "d": "Vertikāli sagrupē masīvus vienā masīvā."
+ },
+ "HSTACK": {
+ "a": "(masīvs1, [masīvs2], ...)",
+ "d": "Horizontāli sagrupē masīvus vienā masīvā."
+ },
+ "CHOOSEROWS": {
+ "a": "(masīvs, row_num1, [row_num2], ...)",
+ "d": "Atgriež rindas no masīva vai atsauces."
+ },
+ "CHOOSECOLS": {
+ "a": "(masīvs, col_num1, [col_num2], ...)",
+ "d": "Atgriež kolonnas no masīva vai atsauces."
+ },
+ "TOCOL": {
+ "a": "(masīvs, [ignorēt], [scan_by_column])",
+ "d": "Atgriež masīvu kā vienu kolonnu."
+ },
+ "TOROW": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "Atgriež masīvu kā vienu rindu."
+ },
+ "WRAPCOLS": {
+ "a": "(vektors, wrap_count, [pad_with])",
+ "d": " Aplauzt rindas vai kolonnas vektoru pēc norādītā vērtību skaita."
+ },
+ "TAKE": {
+ "a": "(masīvs, rindas, [kolonnas])",
+ "d": "Atgriež rindas vai kolonnas no masīva sākuma vai beigām."
+ },
+ "DROP": {
+ "a": "(masīvs, rindas, [kolonnas])",
+ "d": "Nomet rindas vai kolonnas no masīva sākuma vai beigām."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/nb.json b/apps/spreadsheeteditor/main/resources/formula-lang/nb.json
index d7ae5eb71..b53dba84c 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/nb.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/nb.json
@@ -459,6 +459,19 @@
"SWITCH": "BRYTER",
"TRUE": "SANN",
"XOR": "EKSKLUSIVELLER",
+ "TEXTBEFORE": "TEKSTFØR",
+ "TEXTAFTER": "TEKSTETTER",
+ "TEXTSPLIT": "TEKSTDELING",
+ "WRAPROWS": "BRYTRADER",
+ "VSTACK": "VSTAKK",
+ "HSTACK": "HSTAKK",
+ "CHOOSEROWS": "VELGRADER",
+ "CHOOSECOLS": "VELGKOL",
+ "TOCOL": "TILKOL",
+ "TOROW": "TILRAD",
+ "WRAPCOLS": "BRYTKOL",
+ "TAKE": "TA",
+ "DROP": "UTELAT",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Headers",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/nb_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/nb_desc.json
index 39ab34eb7..8123491f0 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/nb_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/nb_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(logisk1; [logisk2]; ...)",
"d": "Returnerer et \"Utelukkende eller\" av alle argumenter"
+ },
+ "TEXTBEFORE": {
+ "a": "(tekst, skilletegn, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": " Returnerer tekst som er før tegnskilletegn."
+ },
+ "TEXTAFTER": {
+ "a": "(tekst, skilletegn, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": " Returnerer tekst som er etter skilletegn."
+ },
+ "TEXTSPLIT": {
+ "a": "(text, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
+ "d": "Deler tekst inn i rader eller kolonner ved hjelp av skilletegn."
+ },
+ "WRAPROWS": {
+ "a": "(vektor, wrap_count, [pad_with])",
+ "d": "Bryter en rad- eller kolonnevektor etter et bestemt antall verdier."
+ },
+ "VSTACK": {
+ "a": "(matrise1, [matrise2], ...)",
+ "d": "Stabler matriser loddrett i én matrise."
+ },
+ "HSTACK": {
+ "a": "(matrise1, [matrise2], ...)",
+ "d": "Stabler matriser vannrett i én matrise."
+ },
+ "CHOOSEROWS": {
+ "a": "(matrise, row_num1, [row_num2], ...)",
+ "d": "Returnerer rader fra en matrise eller referanse."
+ },
+ "CHOOSECOLS": {
+ "a": "(matrise, col_num1, [col_num2], ...)",
+ "d": "Returnerer kolonner fra en matrise eller referanse."
+ },
+ "TOCOL": {
+ "a": "(matrise, [ignorer], [scan_by_column])",
+ "d": " Returnerer matrisen som én kolonne."
+ },
+ "TOROW": {
+ "a": "(matrise, [ignorer], [skann_etter_kolonne])",
+ "d": "Returnerer matrisen som én rad."
+ },
+ "WRAPCOLS": {
+ "a": "(vektor, wrap_count, [pad_with])",
+ "d": "Bryter en rad- eller kolonnevektor etter et bestemt antall verdier."
+ },
+ "TAKE": {
+ "a": "(matrise, rader, [kolonner])",
+ "d": "Returnerer rader eller kolonner fra matrisestart eller -slutt."
+ },
+ "DROP": {
+ "a": "(matrise, rader, [kolonner])",
+ "d": "Sletter rader eller kolonner fra matrisestart eller -slutt."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/nl.json b/apps/spreadsheeteditor/main/resources/formula-lang/nl.json
index 65ab93717..7907948c9 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/nl.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/nl.json
@@ -459,6 +459,19 @@
"SWITCH": "SCHAKELEN",
"TRUE": "WAAR",
"XOR": "EX.OF",
+ "TEXTBEFORE": "TEKST.VOOR",
+ "TEXTAFTER": "TEKST.NA",
+ "TEXTSPLIT": "TEKST.SPLITSEN",
+ "WRAPROWS": "OMLOOP.RIJEN",
+ "VSTACK": "VERT.STAPELEN",
+ "HSTACK": "HOR.STAPELEN",
+ "CHOOSEROWS": "KIES.RIJEN",
+ "CHOOSECOLS": "KIES.KOLOMMEN",
+ "TOCOL": "NAAR.KOLOM",
+ "TOROW": "NAAR.RIJ",
+ "WRAPCOLS": "OMLOOP.KOLOMMEN",
+ "TAKE": "NEMEN",
+ "DROP": "WEGLATEN",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Headers",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/nl_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/nl_desc.json
index 785294898..bb22c38e2 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/nl_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/nl_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(logisch1; [logisch2]; ...)",
"d": "Geeft als resultaat een logische 'Exclusieve of' van alle argumenten"
+ },
+ "TEXTBEFORE": {
+ "a": "(tekst, scheidingsteken, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Retourneert tekst voor scheidingstekens."
+ },
+ "TEXTAFTER": {
+ "a": "(tekst, scheidingsteken, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Retourneert tekst na scheidingstekens."
+ },
+ "TEXTSPLIT": {
+ "a": "(tekst, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
+ "d": "Hiermee wordt tekst gesplitst in rijen of kolommen met scheidingstekens."
+ },
+ "WRAPROWS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": " Hiermee wordt een rij- of kolomvector achter een opgegeven aantal waarden verpakt."
+ },
+ "VSTACK": {
+ "a": "(matrix1, [matrix2], ...)",
+ "d": "Stapelt matrices verticaal in één matrix."
+ },
+ "HSTACK": {
+ "a": "(matrix1, [matrix2], ...)",
+ "d": "Stapelt matrices horizontaal in één matrix."
+ },
+ "CHOOSEROWS": {
+ "a": "(matrix, row_num1, [row_num2], ...)",
+ "d": "Retourneert rijen uit een matrix of verwijzing."
+ },
+ "CHOOSECOLS": {
+ "a": "(matrix, col_num1, [col_num2], ...)",
+ "d": "Retourneert kolommen uit een matrix of verwijzing."
+ },
+ "TOCOL": {
+ "a": "(matrix, [negeren], [scan_by_column])",
+ "d": "Retourneert de matrix als één kolom."
+ },
+ "TOROW": {
+ "a": "(matrix, [negeren], [scan_by_column])",
+ "d": "Retourneert de matrix als één rij."
+ },
+ "WRAPCOLS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": " Hiermee wordt een rij- of kolomvector achter een opgegeven aantal waarden verpakt."
+ },
+ "TAKE": {
+ "a": "(matrix, rijen, [kolommen])",
+ "d": "Hiermee worden rijen of kolommen geretourneerd vanaf het begin of einde van de matrix."
+ },
+ "DROP": {
+ "a": "(matrix, rijen, [kolommen])",
+ "d": "Rijen of kolommen worden verwijderd uit het begin of einde van de matrix."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/pl.json b/apps/spreadsheeteditor/main/resources/formula-lang/pl.json
index cd82f4fb9..95d0728c7 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/pl.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/pl.json
@@ -459,6 +459,19 @@
"SWITCH": "SWITCH",
"TRUE": "PRAWDA",
"XOR": "XOR",
+ "TEXTBEFORE": "TEKST.PRZED",
+ "TEXTAFTER": "TEKST.PO",
+ "TEXTSPLIT": "PODZIEL.TEKST",
+ "WRAPROWS": "ZAWIŃ.WIERSZE",
+ "VSTACK": "STOS.PION",
+ "HSTACK": "STOS.POZ",
+ "CHOOSEROWS": "WYBIERZ.WIERSZE",
+ "CHOOSECOLS": "WYBIERZ.KOLUMNY",
+ "TOCOL": "DO.KOLUMNY",
+ "TOROW": "DO.WIERSZA",
+ "WRAPCOLS": "ZAWIŃ.KOLUMNY",
+ "TAKE": "WYCINEK",
+ "DROP": "POMIŃ",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Wszystkie",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/pl_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/pl_desc.json
index 4de807c10..0387b438e 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/pl_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/pl_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(logiczna1; [logiczna2]; ...)",
"d": "Zwraca wartość logiczną XOR (wyłączne LUB) wszystkich argumentów."
+ },
+ "TEXTBEFORE": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Zwraca tekst, który znajduje się przed znakami ograniczającymi."
+ },
+ "TEXTAFTER": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Zwraca tekst, który znajduje się po znakach ograniczających."
+ },
+ "TEXTSPLIT": {
+ "a": "(text, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
+ "d": "Dzieli tekst na wiersze lub kolumny przy użyciu ograniczników."
+ },
+ "WRAPROWS": {
+ "a": "(wektor, wrap_count, [pad_with])",
+ "d": " Zawija wektor wiersza lub kolumny po określonej liczbie wartości. Wektor lub odwołanie do zawijania."
+ },
+ "VSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": " Układa tablice w pionie tworząc jedną tablicę."
+ },
+ "HSTACK": {
+ "a": "(tablica1, [tablica2], ...)",
+ "d": " Układa tablice w poziomie w jedną tablicę."
+ },
+ "CHOOSEROWS": {
+ "a": "(tablica, row_num1, [row_num2], ...)",
+ "d": " Zwraca wiersze z tablicy lub odwołania."
+ },
+ "CHOOSECOLS": {
+ "a": "(tablica, col_num1, [col_num2], ...)",
+ "d": " Zwraca kolumny z tablicy lub odwołania."
+ },
+ "TOCOL": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": " Zwraca tablicę jako jedną kolumnę."
+ },
+ "TOROW": {
+ "a": "(tablica, [ignoruj], [skanuj_według_kolumn])",
+ "d": "Zwraca tablicę jako jeden wiersz."
+ },
+ "WRAPCOLS": {
+ "a": "(wektor, wrap_count, [pad_with])",
+ "d": " Zawija wektor wiersza lub kolumny po określonej liczbie wartości."
+ },
+ "TAKE": {
+ "a": "(array, rows, [columns])",
+ "d": " Zwraca wiersze lub kolumny z początku lub końca tablicy."
+ },
+ "DROP": {
+ "a": "(array, rows, [columns])",
+ "d": " Porzuca wiersze lub kolumny z początku lub końca tablicy."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/pt-br.json b/apps/spreadsheeteditor/main/resources/formula-lang/pt-br.json
index 418202405..30bb20e30 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/pt-br.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/pt-br.json
@@ -459,6 +459,19 @@
"SWITCH": "PARÂMETRO",
"TRUE": "VERDADEIRO",
"XOR": "XOR",
+ "TEXTBEFORE": "TEXTOANTES",
+ "TEXTAFTER": "TEXTODEPOIS",
+ "TEXTSPLIT": "DIVIDIRTEXTO",
+ "WRAPROWS": "QUEBRARLINS",
+ "VSTACK": "EMPILHARV",
+ "HSTACK": "HSTACK",
+ "CHOOSEROWS": "ESCOLHERLINS",
+ "CHOOSECOLS": "ESCOLHERCOLS",
+ "TOCOL": "PARACOL",
+ "TOROW": "PARALIN",
+ "WRAPCOLS": "QUEBRARCOLS",
+ "TAKE": "PEGAR",
+ "DROP": "DESCARTAR",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Headers",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/pt-br_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/pt-br_desc.json
index 954a85156..8a81794d0 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/pt-br_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/pt-br_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(lógico1; [lógico2]; ...)",
"d": "Retorna uma lógica 'Exclusivo Ou' de todos os argumentos"
+ },
+ "TEXTBEFORE": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Retorna o texto que está antes dos caracteres delimitadores."
+ },
+ "TEXTAFTER": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Retorna o texto que está depois dos caracteres delimitadores."
+ },
+ "TEXTSPLIT": {
+ "a": "(text, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
+ "d": "Divide o texto em linhas ou colunas usando delimitadores."
+ },
+ "WRAPROWS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": " Encapsula um vetor de linha ou coluna após um número especificado de valores."
+ },
+ "VSTACK": {
+ "a": "(matriz1, [matriz2], ...)",
+ "d": "Empilha verticalmente matrizes em uma matriz."
+ },
+ "HSTACK": {
+ "a": "(matriz1, [matriz2], ...)",
+ "d": "Empilha horizontalmente matrizes em uma matriz."
+ },
+ "CHOOSEROWS": {
+ "a": "(matriz, row_num1, [row_num2], ...)",
+ "d": "Retorna linhas de uma matriz ou referência."
+ },
+ "CHOOSECOLS": {
+ "a": "(matriz, col_num1, [col_num2], ...)",
+ "d": "Retorna as colunas de uma matriz ou referência"
+ },
+ "TOCOL": {
+ "a": "(matriz, [ignorar], [scan_by_column])",
+ "d": "Retorna a matriz como uma coluna."
+ },
+ "TOROW": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "Retorna a matriz como uma linha."
+ },
+ "WRAPCOLS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": " Encapsula um vetor de linha ou coluna após um número especificado de valores."
+ },
+ "TAKE": {
+ "a": "(matriz, linhas, [colunas])",
+ "d": "Retorna linhas ou colunas de início ou término da matriz."
+ },
+ "DROP": {
+ "a": "(matriz, linhas, [colunas])",
+ "d": "Remove linhas ou colunas de início ou término da matriz."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/pt.json b/apps/spreadsheeteditor/main/resources/formula-lang/pt.json
index 73b92421f..a3f87bd4a 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/pt.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/pt.json
@@ -459,6 +459,19 @@
"SWITCH": "PARÂMETRO",
"TRUE": "VERDADEIRO",
"XOR": "XOU",
+ "TEXTBEFORE": "TEXTOANTES",
+ "TEXTAFTER": "TEXTODEPOIS",
+ "TEXTSPLIT": "DIVIDIRTEXTO",
+ "WRAPROWS": "MOLDARLINS",
+ "VSTACK": "JUNTARV",
+ "HSTACK": "JUNTARH",
+ "CHOOSEROWS": "ESCOLHERLINS",
+ "CHOOSECOLS": "ESCOLHERCOLS",
+ "TOCOL": "PARACOL",
+ "TOROW": "PARALIN",
+ "WRAPCOLS": "MOLDARCOLS",
+ "TAKE": "INCLUIR",
+ "DROP": "EXCLUIR",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Headers",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/pt_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/pt_desc.json
index 14d1ddc7f..e80c20452 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/pt_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/pt_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(lógica1; [lógica2]; ...)",
"d": "Devolve um \"Ou Exclusivo\" lógico de todos os argumentos"
+ },
+ "TEXTBEFORE": {
+ "a": "(texto, delimitador, [núm_instância], [corresp_mod], [corresp_final], [se_não_for_encontrado])",
+ "d": "Devolve texto que está antes dos carateres delimitadores."
+ },
+ "TEXTAFTER": {
+ "a": "(texto, delimitador, [núm_instância], [corresp_mod], [corresp_final], [se_não_for_encontrado])",
+ "d": "Devolve texto que está depois dos carateres delimitadores."
+ },
+ "TEXTSPLIT": {
+ "a": "(texto, delimitador_de_coluna, [delimitador_de_linha], [corresp], [modo], [preencher_com])",
+ "d": "Divide o texto em linhas ou colunas usando delimitadores."
+ },
+ "WRAPROWS": {
+ "a": "(vetor, contagem_de_moldagens, [preencher_com])",
+ "d": "Molda um vetor de linha ou coluna após um número especificado de valores."
+ },
+ "VSTACK": {
+ "a": "(matriz1, [matriz2], ...)",
+ "d": "Empilha verticalmente várias matrizes numa única matriz."
+ },
+ "HSTACK": {
+ "a": "(matriz1, [matriz2], ...)",
+ "d": "Empilha horizontalmente várias matrizes numa única matriz."
+ },
+ "CHOOSEROWS": {
+ "a": "(matriz, núm_linha1, [núm_linha2], ...)",
+ "d": "Devolve linhas a partir de uma matriz ou referência."
+ },
+ "CHOOSECOLS": {
+ "a": "(matriz, núm_coluna1, [núm_coluna2], ...)",
+ "d": "Devolve colunas a partir de uma matriz ou referência."
+ },
+ "TOCOL": {
+ "a": "(matriz, [ignorar], [analisar_por_coluna])",
+ "d": "Devolve a matriz como uma coluna."
+ },
+ "TOROW": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "Devolve a matriz como uma linha."
+ },
+ "WRAPCOLS": {
+ "a": "(vetor, contagem_de_moldagens, [preencher_com])",
+ "d": "Molda um vetor de linha ou coluna após um número especificado de valores."
+ },
+ "TAKE": {
+ "a": "(matriz, linhas, [colunas])",
+ "d": "Devolve linhas ou colunas a partir do início ou fim da matriz."
+ },
+ "DROP": {
+ "a": "(matriz, linhas, [colunas])",
+ "d": "Remove linhas ou colunas a partir do início ou fim da matriz."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/ro.json b/apps/spreadsheeteditor/main/resources/formula-lang/ro.json
index 6fb0da65c..f7e7458d2 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/ro.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/ro.json
@@ -459,6 +459,19 @@
"SWITCH": "SWITCH",
"TRUE": "TRUE",
"XOR": "XOR",
+ "TEXTBEFORE": "TEXTBEFORE",
+ "TEXTAFTER": "TEXTAFTER",
+ "TEXTSPLIT": "TEXTSPLIT",
+ "WRAPROWS": "WRAPROWS",
+ "VSTACK": "VSTACK",
+ "HSTACK": "HSTACK",
+ "CHOOSEROWS": "CHOOSEROWS",
+ "CHOOSECOLS": "CHOOSECOLS",
+ "TOCOL": "TOCOL",
+ "TOROW": "TOROW",
+ "WRAPCOLS": "WRAPCOLS",
+ "TAKE": "TAKE",
+ "DROP": "DROP",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Headers",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/ro_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/ro_desc.json
index bd944120b..20d03b8fb 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/ro_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/ro_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(logic1; [logic2]; ...)",
"d": "Returnează un „Sau exclusiv” logic al tuturor argumentelor"
+ },
+ "TEXTBEFORE": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": " Returnează textul care este înainte de caracterele de delimitare."
+ },
+ "TEXTAFTER": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": " Returnează textul care este după caracterele de delimitare."
+ },
+ "TEXTSPLIT": {
+ "a": "(text, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
+ "d": "Scindează textul în rânduri sau coloane utilizând delimitatori."
+ },
+ "WRAPROWS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": " Încadrează un vector de rând sau de coloană după un număr specificat de valori."
+ },
+ "VSTACK": {
+ "a": "(matrice1, [matrice2], ...)",
+ "d": " Stivuiește pe verticală matricele într-o singură matrice."
+ },
+ "HSTACK": {
+ "a": "(matrice1, [matrice2], ...)",
+ "d": " Stivuiește pe orizontală matricele într-o singură matrice."
+ },
+ "CHOOSEROWS": {
+ "a": "(matrice, row_num1, [row_num2], ...)",
+ "d": " Returnează rânduri dintr-o matrice sau referință."
+ },
+ "CHOOSECOLS": {
+ "a": "(matrice, col_num1, [col_num2], ...)",
+ "d": " Returnează coloane dintr-o matrice sau referință."
+ },
+ "TOCOL": {
+ "a": "(matrice, [ignorare], [scan_by_column])",
+ "d": " Returnează matricea ca o singură coloană."
+ },
+ "TOROW": {
+ "a": "(matrice, [ignorare], [scanare_după_coloană])",
+ "d": " Returnează matricea ca un singur rând."
+ },
+ "WRAPCOLS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": " Încadrează un vector de rând sau de coloană după un număr specificat de valori."
+ },
+ "TAKE": {
+ "a": "(matrice, rânduri, [coloane])",
+ "d": " Returnează rânduri sau coloane de la începutul sau sfârșitul matricei."
+ },
+ "DROP": {
+ "a": "(matrice, rânduri, [coloane])",
+ "d": " Elimină rânduri sau coloane de la începutul sau sfârșitul matricei."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/ru.json b/apps/spreadsheeteditor/main/resources/formula-lang/ru.json
index dc5634b09..d8fc5d467 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/ru.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/ru.json
@@ -459,6 +459,19 @@
"SWITCH": "ПЕРЕКЛЮЧ",
"TRUE": "ИСТИНА",
"XOR": "ИСКЛИЛИ",
+ "TEXTBEFORE": "ТЕКСТДО",
+ "TEXTAFTER": "ТЕКСТПОСЛЕ",
+ "TEXTSPLIT": "ТЕКСТРАЗД",
+ "WRAPROWS": "СВЕРНСТРОК",
+ "VSTACK": "ВСТОЛБИК",
+ "HSTACK": "ГСТОЛБИК",
+ "CHOOSEROWS": "ВЫБОРСТРОК",
+ "CHOOSECOLS": "ВЫБОРСТОЛБЦ",
+ "TOCOL": "ПОСТОЛБЦ",
+ "TOROW": "ПОСТРОК",
+ "WRAPCOLS": "СВЕРНСТОЛБЦ",
+ "TAKE": "ВЗЯТЬ",
+ "DROP": "СБРОСИТЬ",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Заголовки",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/ru_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/ru_desc.json
index 0f0962dd3..2dd085ce8 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/ru_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/ru_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(логическое_значение1; [логическое_значение2]; ...)",
"d": "Возвращает логическое \"исключающее или\" всех аргументов"
+ },
+ "TEXTBEFORE": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Возвращает текст перед символами-разделителями."
+ },
+ "TEXTAFTER": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Возвращает текст после символов-разделителей."
+ },
+ "TEXTSPLIT": {
+ "a": "(text, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
+ "d": "Разбивает текст на строки или столбцы с помощью разделителей."
+ },
+ "WRAPROWS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "Переносит вектор строки или столбца после указанного числа значений."
+ },
+ "VSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "Вертикально собирает массивы в один массив."
+ },
+ "HSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "Горизонтально собирает массивы в один массив."
+ },
+ "CHOOSEROWS": {
+ "a": "(array, row_num1, [row_num2], ...)",
+ "d": "Возвращает строки из массива или ссылки."
+ },
+ "CHOOSECOLS": {
+ "a": "(array, col_num1, [col_num2], ...)",
+ "d": "Возвращает столбцы из массива или ссылки."
+ },
+ "TOCOL": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "Возвращает массив в виде одного столбца."
+ },
+ "TOROW": {
+ "a": "(массив, [игнорировать], [сканировать_по_столбцам])",
+ "d": "Возвращает массив в виде одной строки."
+ },
+ "WRAPCOLS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "Переносит вектор строки или столбца после указанного числа значений."
+ },
+ "TAKE": {
+ "a": "(array, rows, [columns])",
+ "d": "Возвращает строки или столбцы из начала или конца массива."
+ },
+ "DROP": {
+ "a": "(array, rows, [columns])",
+ "d": "Удаляет строки или столбцы из начала или конца массива."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/sk.json b/apps/spreadsheeteditor/main/resources/formula-lang/sk.json
index 6fb0da65c..f7e7458d2 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/sk.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/sk.json
@@ -459,6 +459,19 @@
"SWITCH": "SWITCH",
"TRUE": "TRUE",
"XOR": "XOR",
+ "TEXTBEFORE": "TEXTBEFORE",
+ "TEXTAFTER": "TEXTAFTER",
+ "TEXTSPLIT": "TEXTSPLIT",
+ "WRAPROWS": "WRAPROWS",
+ "VSTACK": "VSTACK",
+ "HSTACK": "HSTACK",
+ "CHOOSEROWS": "CHOOSEROWS",
+ "CHOOSECOLS": "CHOOSECOLS",
+ "TOCOL": "TOCOL",
+ "TOROW": "TOROW",
+ "WRAPCOLS": "WRAPCOLS",
+ "TAKE": "TAKE",
+ "DROP": "DROP",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Headers",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/sk_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/sk_desc.json
index 2c1d8a066..2647f4aa7 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/sk_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/sk_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(logická_hodnota1; [logická_hodnota2]; ...)",
"d": "Vráti logický operátor Exclusive Or všetkých argumentov"
+ },
+ "TEXTBEFORE": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Vráti text, ktorý sa nachádza pred oddeľovacími znakmi."
+ },
+ "TEXTAFTER": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Vráti text, ktorý sa nachádza za oddeľovacími znakmi."
+ },
+ "TEXTSPLIT": {
+ "a": "(text, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
+ "d": "Rozdelí text do riadkov alebo stĺpcov pomocou oddeľovačov."
+ },
+ "WRAPROWS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "Zalomí vektor riadka alebo stĺpca za zadaný počet hodnôt."
+ },
+ "VSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "Zvislo navrství polia do jedného poľa."
+ },
+ "HSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "Vodorovne navrství polia do jedného poľa."
+ },
+ "CHOOSEROWS": {
+ "a": "(array, row_num1, [row_num2], ...)",
+ "d": "Vráti riadky z poľa alebo odkazu."
+ },
+ "CHOOSECOLS": {
+ "a": "(array, col_num1, [col_num2], ...)",
+ "d": "Vráti stĺpce z poľa alebo odkazu."
+ },
+ "TOCOL": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "Vráti pole ako jeden stĺpec."
+ },
+ "TOROW": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "Vráti pole ako jeden riadok. "
+ },
+ "WRAPCOLS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "Zalomí vektor riadka alebo stĺpca za zadaný počet hodnôt."
+ },
+ "TAKE": {
+ "a": "(array, rows, [columns])",
+ "d": "Vráti riadky alebo stĺpce zo začiatku alebo konca poľa."
+ },
+ "DROP": {
+ "a": "(array, rows, [columns])",
+ "d": "Vypustí riadky alebo stĺpce zo začiatku alebo konca poľa."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/sl.json b/apps/spreadsheeteditor/main/resources/formula-lang/sl.json
index b9ae47bc6..f437c1145 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/sl.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/sl.json
@@ -459,6 +459,19 @@
"SWITCH": "SWITCH",
"TRUE": "TRUE",
"XOR": "XOR",
+ "TEXTBEFORE": "TEXTBEFORE",
+ "TEXTAFTER": "TEXTAFTER",
+ "TEXTSPLIT": "TEXTSPLIT",
+ "WRAPROWS": "WRAPROWS",
+ "VSTACK": "VSTACK",
+ "HSTACK": "HSTACK",
+ "CHOOSEROWS": "CHOOSEROWS",
+ "CHOOSECOLS": "CHOOSECOLS",
+ "TOCOL": "TOCOL",
+ "TOROW": "TOROW",
+ "WRAPCOLS": "WRAPCOLS",
+ "TAKE": "TAKE",
+ "DROP": "DROP",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Headers",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/sl_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/sl_desc.json
index ce8780223..2c550dd1a 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/sl_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/sl_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(logical1; [logical2]; ...)",
"d": "Vrne logični »Exclusive Or« vseh argumentov"
+ },
+ "TEXTBEFORE": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Vrne besedilo, ki je pred ločilom znakov."
+ },
+ "TEXTAFTER": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Vrne besedilo, ki je za ločilom znakov."
+ },
+ "TEXTSPLIT": {
+ "a": "(text, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
+ "d": "Razdeli besedilo v vrstice ali stolpce z ločili."
+ },
+ "WRAPROWS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": " Prelomi vektor vrstice ali stolpca za določenim številom vrednosti."
+ },
+ "VSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "Navpično zloži matrike v eno polje."
+ },
+ "HSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "Vodoravno zloži matrike v eno polje."
+ },
+ "CHOOSEROWS": {
+ "a": "(array, row_num1, [row_num2], ...)",
+ "d": "Vrne vrstice iz matrike ali sklica."
+ },
+ "CHOOSECOLS": {
+ "a": "(array, col_num1, [col_num2], ...)",
+ "d": "Vrne stolpce iz matrike ali sklica."
+ },
+ "TOCOL": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "Vrne matriko kot en stolpec."
+ },
+ "TOROW": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "Vrne matriko kot eno vrstico."
+ },
+ "WRAPCOLS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": " Prelomi vektor vrstice ali stolpca za določenim številom vrednosti."
+ },
+ "TAKE": {
+ "a": "(array, rows, [columns])",
+ "d": "Vrne vrstice ali stolpce z začetka ali konca matrike."
+ },
+ "DROP": {
+ "a": "(array, rows, [columns])",
+ "d": "Spusti vrstice ali stolpce z začetka ali konca matrike."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/sv.json b/apps/spreadsheeteditor/main/resources/formula-lang/sv.json
index be205a4a3..8b245aad6 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/sv.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/sv.json
@@ -459,6 +459,19 @@
"SWITCH": "VÄXLA",
"TRUE": "SANT",
"XOR": "XELLER",
+ "TEXTBEFORE": "TEXTFÖRE",
+ "TEXTAFTER": "TEXTEFTER",
+ "TEXTSPLIT": "DELATEXT",
+ "WRAPROWS": "BRYTRAD",
+ "VSTACK": "VSTACK",
+ "HSTACK": "HSTACK",
+ "CHOOSEROWS": "VÄLJRADER",
+ "CHOOSECOLS": "VÄLJKOL",
+ "TOCOL": "TILLKOL",
+ "TOROW": "TILLRAD",
+ "WRAPCOLS": "BRYTKOLUMN",
+ "TAKE": "TA",
+ "DROP": "UTESLUT",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Headers",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/sv_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/sv_desc.json
index 0bff1c959..63c3c1124 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/sv_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/sv_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(logisk1; [logisk2]; ...)",
"d": "Returnerar ett logiskt 'Exklusivt eller' för alla argument."
+ },
+ "TEXTBEFORE": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Returnerar text som är före avgränsande tecken."
+ },
+ "TEXTAFTER": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Returnerar text som är efter avgränsande tecken."
+ },
+ "TEXTSPLIT": {
+ "a": "(text, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
+ "d": "Delar upp text i rader eller kolumner med avgränsare."
+ },
+ "WRAPROWS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "Radbryter en rad- eller kolumnvektor efter angivet antal värden."
+ },
+ "VSTACK": {
+ "a": "(matris1, [matris2], ...)",
+ "d": "Staplar matriser lodrätt i en matris."
+ },
+ "HSTACK": {
+ "a": "(matris1, [matris2], ...)",
+ "d": "Staplar matriser vågrätt i en matris."
+ },
+ "CHOOSEROWS": {
+ "a": "(matris, rad1, [rad2], ...)",
+ "d": "Returnerar raderna i en matris eller referens."
+ },
+ "CHOOSECOLS": {
+ "a": "(matris, kolumn1, [kolumn2], ...)",
+ "d": "Returnerar kolumnerna i en matris eller referens."
+ },
+ "TOCOL": {
+ "a": "(matris, [ignorera], [scan_by_column])",
+ "d": "Returnerar matrisen som en kolumn."
+ },
+ "TOROW": {
+ "a": "(matris, [ignorera], [scan_by_column])",
+ "d": " Returnerar matrisen som en rad."
+ },
+ "WRAPCOLS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "Radbryter en rad- eller kolumnvektor efter angivet antal värden."
+ },
+ "TAKE": {
+ "a": "(matris, rader, [kolumner])",
+ "d": "Returnerar rader eller kolumner från matrisens start eller slut."
+ },
+ "DROP": {
+ "a": "(matris, rader, [kolumner])",
+ "d": "Tar bort rader eller kolumner från matrisens start eller slut."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/tr.json b/apps/spreadsheeteditor/main/resources/formula-lang/tr.json
index efd3fda64..37d7bf55e 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/tr.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/tr.json
@@ -459,6 +459,19 @@
"SWITCH": "İLKEŞLEŞEN",
"TRUE": "DOĞRU",
"XOR": "ÖZELVEYA",
+ "TEXTBEFORE": "ÖNCEKİMETİN",
+ "TEXTAFTER": "SONRAKİMETİN",
+ "TEXTSPLIT": "METİNBÖL",
+ "WRAPROWS": "SATIRSAR",
+ "VSTACK": "DÜŞEYYIĞ",
+ "HSTACK": "YATAYYIĞ",
+ "CHOOSEROWS": "SATIRSEÇ",
+ "CHOOSECOLS": "SÜTUNSEÇ",
+ "TOCOL": "SÜTUNA",
+ "TOROW": "SATIRA",
+ "WRAPCOLS": "SÜTUNSAR",
+ "TAKE": "AL",
+ "DROP": "BIRAK",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Headers",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/tr_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/tr_desc.json
index 20535df5d..aa7d5c6c0 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/tr_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/tr_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(mantıksal1; [mantıksal2]; ...)",
"d": "Tüm bağımsız değişkenlere mantıksal 'Dışlayıcı Veya' işlecini uygular ve sonucu döndürür"
+ },
+ "TEXTBEFORE": {
+ "a": "(metin, sınırlayıcı, [örnek_sayısı], [eşleştirme_modu], [eşleştirme_sonu], [bulunamıyorsa])",
+ "d": "Karakterleri sınırlandırmadan önceki metni döndürür."
+ },
+ "TEXTAFTER": {
+ "a": "(metin, sınırlayıcı, [örnek_sayısı], [eşleştirme_modu], [eşleştirme_sonu], [bulunamıyorsa])",
+ "d": "Karakterleri sınırlandırmadan sonraki metni döndürür."
+ },
+ "TEXTSPLIT": {
+ "a": "(metin, sütun_sınırlayıcı, [satır_sınırlayıcı], [boşları_yoksay], [eşleştirme_modu], [şununla_doldur])",
+ "d": "Sınırlayıcıları kullanarak metni satırlara veya sütunlara böler."
+ },
+ "WRAPROWS": {
+ "a": "(vektör, sarma_sayısı, [şununla_doldur])",
+ "d": "Belirtilen sayıda değerden sonra bir satır veya sütun vektörünü sarar."
+ },
+ "VSTACK": {
+ "a": "(dizi1, [dizi2], ...)",
+ "d": "Dizileri tek bir dizide dikey olarak yığınlar."
+ },
+ "HSTACK": {
+ "a": "(dizi1, [dizi2], ...)",
+ "d": "Dizileri tek bir dizide yatay olarak yığınlar."
+ },
+ "CHOOSEROWS": {
+ "a": "(dizi, row_num1, [row_num2], ...)",
+ "d": "Bir diziden veya başvurudan satırları döndürür."
+ },
+ "CHOOSECOLS": {
+ "a": "(dizi, col_num1, [col_num2], ...)",
+ "d": "Bir diziden veya başvurudan sütunları döndürür."
+ },
+ "TOCOL": {
+ "a": "(dizi, [yoksay], [scan_by_column])",
+ "d": "Diziyi bir sütun olarak döndürür."
+ },
+ "TOROW": {
+ "a": "(dizi, [yoksay], [scan_by_column])",
+ "d": "Diziyi bir satır olarak döndürür."
+ },
+ "WRAPCOLS": {
+ "a": "(vektör, sarma_sayısı, [şununla_doldur])",
+ "d": "Belirtilen sayıda değerden sonra bir satır veya sütun vektörünü sarar."
+ },
+ "TAKE": {
+ "a": "(dizi, satırlar, [sütunlar])",
+ "d": "Dizinin başlangıcından veya sonundan satırları veya sütunları döndürür."
+ },
+ "DROP": {
+ "a": "(dizi, satırlar, [sütunlar])",
+ "d": "Dizinin başlangıcından veya sonundan satırları veya sütunları bırakır."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/uk.json b/apps/spreadsheeteditor/main/resources/formula-lang/uk.json
index a46fe46be..9dea69c77 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/uk.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/uk.json
@@ -459,6 +459,19 @@
"SWITCH": "SWITCH",
"TRUE": "TRUE",
"XOR": "XOR",
+ "TEXTBEFORE": "TEXTBEFORE",
+ "TEXTAFTER": "TEXTAFTER",
+ "TEXTSPLIT": "TEXTSPLIT",
+ "WRAPROWS": "WRAPROWS",
+ "VSTACK": "VSTACK",
+ "HSTACK": "HSTACK",
+ "CHOOSEROWS": "CHOOSEROWS",
+ "CHOOSECOLS": "CHOOSECOLS",
+ "TOCOL": "TOCOL",
+ "TOROW": "TOROW",
+ "WRAPCOLS": "WRAPCOLS",
+ "TAKE": "TAKE",
+ "DROP": "DROP",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Headers",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/uk_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/uk_desc.json
index ae4c4c0a7..aaa558ca1 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/uk_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/uk_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(лог_значення1; [лог_значення2]; ...)",
"d": "Повертає логічний об’єкт \"виключне АБО\" для всіх аргументів"
+ },
+ "TEXTBEFORE": {
+ "a": "(текст, роздільник, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Повертає текст, який перед розділенням символів."
+ },
+ "TEXTAFTER": {
+ "a": "(текст, роздільник, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": " Повертає текст після розділення символів."
+ },
+ "TEXTSPLIT": {
+ "a": "(text, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
+ "d": "Розділяє текст на рядки або стовпці за допомогою роздільників."
+ },
+ "WRAPROWS": {
+ "a": "(вектор, wrap_count, [pad_with])",
+ "d": "Переносить вектор рядка або стовпця після вказаної кількості значень."
+ },
+ "VSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "Вертикально укладає масиви в один масив."
+ },
+ "HSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "Горизонтально укладає масиви в один масив."
+ },
+ "CHOOSEROWS": {
+ "a": "(array, row_num1, [row_num2], ...)",
+ "d": "Повертає рядки з масиву або посилання."
+ },
+ "CHOOSECOLS": {
+ "a": "(array, col_num1, [col_num2], ...)",
+ "d": "Повертає стовпці з масиву або посилання."
+ },
+ "TOCOL": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "Повертає масив як один стовпець."
+ },
+ "TOROW": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "Повертає масив як один рядок. "
+ },
+ "WRAPCOLS": {
+ "a": "(вектор, wrap_count, [pad_with])",
+ "d": "Переносить вектор рядка або стовпця після вказаної кількості значень."
+ },
+ "TAKE": {
+ "a": "(array, rows, [columns])",
+ "d": "Повертає рядки або стовпці з початку або кінця масиву."
+ },
+ "DROP": {
+ "a": "(array, rows, [columns])",
+ "d": "Видаляє рядки або стовпці з початку або кінця масиву."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/vi.json b/apps/spreadsheeteditor/main/resources/formula-lang/vi.json
index 6fb0da65c..f7e7458d2 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/vi.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/vi.json
@@ -459,6 +459,19 @@
"SWITCH": "SWITCH",
"TRUE": "TRUE",
"XOR": "XOR",
+ "TEXTBEFORE": "TEXTBEFORE",
+ "TEXTAFTER": "TEXTAFTER",
+ "TEXTSPLIT": "TEXTSPLIT",
+ "WRAPROWS": "WRAPROWS",
+ "VSTACK": "VSTACK",
+ "HSTACK": "HSTACK",
+ "CHOOSEROWS": "CHOOSEROWS",
+ "CHOOSECOLS": "CHOOSECOLS",
+ "TOCOL": "TOCOL",
+ "TOROW": "TOROW",
+ "WRAPCOLS": "WRAPCOLS",
+ "TAKE": "TAKE",
+ "DROP": "DROP",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Headers",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/vi_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/vi_desc.json
index e2eaf4d16..e7a434432 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/vi_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/vi_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(logical1; [logical2]; ...)",
"d": "Trả về hàm \"Exclusive Or\" lô-gic của tất cả tham đối"
+ },
+ "TEXTBEFORE": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Trả về văn bản trước khi phân tách ký tự."
+ },
+ "TEXTAFTER": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": "Trả về văn bản sau khi phân tách các ký tự."
+ },
+ "TEXTSPLIT": {
+ "a": "(text, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
+ "d": "Tách văn bản thành các hàng hoặc cột bằng dấu phân tách."
+ },
+ "WRAPROWS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": " Bao bọc một véc-tơ hàng hoặc cột sau một số giá trị được chỉ định."
+ },
+ "VSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "Xếp chồng theo chiều dọc các mảng thành một mảng."
+ },
+ "HSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "Xếp chồng theo chiều ngang các mảng thành một mảng."
+ },
+ "CHOOSEROWS": {
+ "a": "(array, row_num1, [row_num2], ...)",
+ "d": "Trả về các hàng từ mảng hoặc tham chiếu."
+ },
+ "CHOOSECOLS": {
+ "a": "(array, col_num1, [col_num2], ...)",
+ "d": "Trả về các cột từ mảng hoặc tham chiếu."
+ },
+ "TOCOL": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "Trả về mảng dưới dạng một cột."
+ },
+ "TOROW": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "Trả về mảng dưới dạng một hàng."
+ },
+ "WRAPCOLS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "Bao bọc một véc-tơ hàng hoặc cột sau một số Giá trị được chỉ định."
+ },
+ "TAKE": {
+ "a": "(array, rows, [columns])",
+ "d": "Trả về hàng hoặc cột từ đầu hoặc cuối mảng."
+ },
+ "DROP": {
+ "a": "(array, rows, [columns])",
+ "d": "Thả hàng hoặc cột từ đầu hoặc cuối mảng."
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/zh.json b/apps/spreadsheeteditor/main/resources/formula-lang/zh.json
index 6fb0da65c..f7e7458d2 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/zh.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/zh.json
@@ -459,6 +459,19 @@
"SWITCH": "SWITCH",
"TRUE": "TRUE",
"XOR": "XOR",
+ "TEXTBEFORE": "TEXTBEFORE",
+ "TEXTAFTER": "TEXTAFTER",
+ "TEXTSPLIT": "TEXTSPLIT",
+ "WRAPROWS": "WRAPROWS",
+ "VSTACK": "VSTACK",
+ "HSTACK": "HSTACK",
+ "CHOOSEROWS": "CHOOSEROWS",
+ "CHOOSECOLS": "CHOOSECOLS",
+ "TOCOL": "TOCOL",
+ "TOROW": "TOROW",
+ "WRAPCOLS": "WRAPCOLS",
+ "TAKE": "TAKE",
+ "DROP": "DROP",
"LocalFormulaOperands": {
"StructureTables": {
"h": "Headers",
diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/zh_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/zh_desc.json
index cb020cb71..ee1b9135b 100644
--- a/apps/spreadsheeteditor/main/resources/formula-lang/zh_desc.json
+++ b/apps/spreadsheeteditor/main/resources/formula-lang/zh_desc.json
@@ -1838,5 +1838,57 @@
"XOR": {
"a": "(logical1; [logical2]; ...)",
"d": "返回所有参数的逻辑“异或”值"
+ },
+ "TEXTBEFORE": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": " 返回分隔字符之前的文本。"
+ },
+ "TEXTAFTER": {
+ "a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
+ "d": " 返回分隔字符之后的文本。"
+ },
+ "TEXTSPLIT": {
+ "a": "(text, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
+ "d": " 使用分隔符将文本拆分为行或列。"
+ },
+ "WRAPROWS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "在指定数目的值后将行或列向量换行。"
+ },
+ "VSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "将数组垂直堆叠到一个数组中。"
+ },
+ "HSTACK": {
+ "a": "(array1, [array2], ...)",
+ "d": "将数组水平堆叠到一个数组中。"
+ },
+ "CHOOSEROWS": {
+ "a": "(array, row_num1, [row_num2], ...)",
+ "d": "返回数组或引用中的行。"
+ },
+ "CHOOSECOLS": {
+ "a": "(array, col_num1, [col_num2], ...)",
+ "d": "返回数组或引用中的列。"
+ },
+ "TOCOL": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "以一列形式返回数组。"
+ },
+ "TOROW": {
+ "a": "(array, [ignore], [scan_by_column])",
+ "d": "以一行形式返回数组。"
+ },
+ "WRAPCOLS": {
+ "a": "(vector, wrap_count, [pad_with])",
+ "d": "在指定数目的值后将行或列向量换行。"
+ },
+ "TAKE": {
+ "a": "(array, rows, [columns])",
+ "d": "从数组开头或结尾返回行或列。"
+ },
+ "DROP": {
+ "a": "(array, rows, [columns])",
+ "d": "从数组开头或结尾删除行或列。"
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/resources/less/toolbar.less b/apps/spreadsheeteditor/main/resources/less/toolbar.less
index 62385c1fd..f9eb5429a 100644
--- a/apps/spreadsheeteditor/main/resources/less/toolbar.less
+++ b/apps/spreadsheeteditor/main/resources/less/toolbar.less
@@ -68,7 +68,7 @@
border-radius: 0;
padding: 3px 10px;
color: #ffffff;
- font: 11px arial;
+ .font-size-normal();
pointer-events: none;
white-space: nowrap;
letter-spacing: 1px;
@@ -123,6 +123,9 @@
.separator {
height: 20px;
}
+ &.has-open-menu {
+ z-index: @zindex-navbar + 1;
+ }
}
#slot-field-fontsize {
diff --git a/apps/spreadsheeteditor/mobile/locale/az.json b/apps/spreadsheeteditor/mobile/locale/az.json
index 839a6d5aa..38c060243 100644
--- a/apps/spreadsheeteditor/mobile/locale/az.json
+++ b/apps/spreadsheeteditor/mobile/locale/az.json
@@ -243,7 +243,16 @@
"uploadImageFileCountMessage": "Heç bir təsvir yüklənməyib.",
"uploadImageSizeMessage": "Təsvir çox böyükdür. Maksimum ölçü 25 MB-dır.",
"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.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
+ "textCancel": "Cancel",
+ "textOk": "Ok"
},
"LongActions": {
"advDRMPassword": "Parol",
diff --git a/apps/spreadsheeteditor/mobile/locale/be.json b/apps/spreadsheeteditor/mobile/locale/be.json
index 849c4626e..f4f575759 100644
--- a/apps/spreadsheeteditor/mobile/locale/be.json
+++ b/apps/spreadsheeteditor/mobile/locale/be.json
@@ -210,6 +210,11 @@
"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.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
"errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.",
"errorKeyEncrypt": "Unknown key descriptor",
"errorKeyExpire": "Key descriptor expired",
@@ -228,6 +233,8 @@
"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.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
"errorUnexpectedGuid": "External error. Unexpected Guid. Please, contact support.",
"errorUpdateVersionOnDisconnect": "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.",
@@ -239,7 +246,9 @@
"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.",
+ "textCancel": "Cancel",
"textErrorPasswordIsNotCorrect": "The password you supplied is not correct. Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.",
+ "textOk": "Ok",
"unknownErrorText": "Unknown error.",
"uploadImageExtMessage": "Unknown image format.",
"uploadImageFileCountMessage": "No images uploaded.",
diff --git a/apps/spreadsheeteditor/mobile/locale/bg.json b/apps/spreadsheeteditor/mobile/locale/bg.json
index 743de89fb..d4c610b16 100644
--- a/apps/spreadsheeteditor/mobile/locale/bg.json
+++ b/apps/spreadsheeteditor/mobile/locale/bg.json
@@ -243,7 +243,16 @@
"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.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "textCancel": "Cancel",
+ "textOk": "Ok",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Loading data...",
diff --git a/apps/spreadsheeteditor/mobile/locale/ca.json b/apps/spreadsheeteditor/mobile/locale/ca.json
index b6758f430..29d2f6e0f 100644
--- a/apps/spreadsheeteditor/mobile/locale/ca.json
+++ b/apps/spreadsheeteditor/mobile/locale/ca.json
@@ -31,9 +31,9 @@
"textOk": "D'acord",
"textReopen": "Torna a obrir",
"textResolve": "Resol",
+ "textSharingSettings": "Compartir Configuració",
"textTryUndoRedo": "S'han desactivat les funcions desfés/refés per al mode de coedició ràpida.",
- "textUsers": "Usuaris",
- "textSharingSettings": "Sharing Settings"
+ "textUsers": "Usuaris"
},
"ThemeColorPalette": {
"textCustomColors": "Colors personalitzats",
@@ -50,6 +50,7 @@
"menuCell": "Cel·la",
"menuDelete": "Suprimeix",
"menuEdit": "Edita",
+ "menuEditLink": "Editar Enllaç",
"menuFreezePanes": "Immobilitza les subfinestres",
"menuHide": "Amaga",
"menuMerge": "Combina",
@@ -66,8 +67,7 @@
"textDoNotShowAgain": "No ho mostris més",
"textOk": "D'acord",
"txtWarnUrl": "Fer clic en aquest enllaç pot ser perjudicial per al dispositiu i les dades. Esteu segur que voleu continuar?",
- "warnMergeLostData": "Només les dades de la cel·la superior esquerra romandran a la cel·la combinada. Voleu continuar?",
- "menuEditLink": "Edit Link"
+ "warnMergeLostData": "Només les dades de la cel·la superior esquerra romandran a la cel·la combinada. Voleu continuar?"
},
"Controller": {
"Main": {
@@ -158,17 +158,17 @@
"textReplaceSuccess": "S'ha fet la cerca. S'han substituït les coincidències: {0}",
"textRequestMacros": "Una macro fa una sol·licitud a l'URL. Voleu permetre la sol·licitud al %1?",
"textYes": "Sí",
+ "titleLicenseExp": "Llicència Caducada",
"titleServerVersion": "S'ha actualitzat l'editor",
"titleUpdateVersion": "S'ha canviat la versió",
"warnLicenseExceeded": "Heu arribat al límit de connexions simultànies a %1 editors. Aquest document només s'obrirà en mode lectura. Contacteu amb l'administrador per a més informació.",
+ "warnLicenseExp": "La vostra llicència ha caducat. Actualitzeu la llicència i la pàgina.",
"warnLicenseLimitedNoAccess": "La llicència ha caducat. No teniu accés a la funció d'edició de documents. Contacteu amb l'administrador.",
"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",
"warnLicenseUsersExceeded": "Heu arribat al límit d'usuaris per a %1 editors. Contacteu amb el vostre administrador per a més informació.",
"warnNoLicense": "Heu arribat al límit de connexions simultànies a %1 editors. Aquest document només s'obrirà en mode lectura. Contacteu amb l'equip de vendes %1 per a les condicions d'una actualització personal.",
"warnNoLicenseUsers": "Heu arribat al límit d'usuaris per a %1 editors. Contacteu amb l'equip de vendes de %1 per obtenir les condicions de millora personals dels vostres serveis.",
- "warnProcessRightsChange": "No teniu permís per editar el fitxer.",
- "titleLicenseExp": "License expired",
- "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page."
+ "warnProcessRightsChange": "No teniu permís per editar el fitxer."
}
},
"Error": {
@@ -196,6 +196,7 @@
"errorDataRange": "L'interval de dades no és correcte.",
"errorDataValidate": "El valor que heu introduït no és vàlid. Un usuari ha restringit els valors que es poden introduir en aquesta cel·la.",
"errorDefaultMessage": "Codi d'error:%1",
+ "errorDirectUrl": "Verifiqueu l'enllaç al document. Aquest enllaç ha de ser un enllaç directe al fitxer per baixar-lo.",
"errorEditingDownloadas": "S'ha produït un error mentre es treballava amb el document. Utilitzeu l'opció \"Descarregar\" per desar la còpia de seguretat del fitxer en un disc local.",
"errorFilePassProtect": "El fitxer està protegit amb contrasenya i no s'ha pogut obrir.",
"errorFileRequest": "Error extern. Sol·licitud de fitxer. Contacteu amb el servei d'assistència tècnica.",
@@ -243,12 +244,21 @@
"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.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
+ "textCancel": "Cancel",
+ "textOk": "Ok"
},
"LongActions": {
"advDRMPassword": "Contrasenya",
"applyChangesTextText": "S'estant carregant les dades...",
"applyChangesTitleText": "S'estan carregant les dades",
+ "confirmMaxChangesSize": "La mida de les accions excedeix la limitació establerta pel vostre servidor. Premeu «Desfés» per a cancel·lar la vostra última acció o premeu «Continua» per a mantenir l'acció localment (cal baixar el fitxer o copiar el seu contingut per a assegurar-vos que no es perd res).",
"confirmMoveCellRange": "L'interval de cel·les de destinació pot contenir dades. Voleu continuar amb l'operació?",
"confirmPutMergeRange": "Les dades d'origen contenen cel·les combinades. La combinació es desfarà abans que s'enganxin a la taula.",
"confirmReplaceFormulaInTable": "Les fórmules de la fila de capçalera s'eliminaran i es convertiran en text estàtic. Voleu continuar?",
@@ -274,20 +284,19 @@
"saveTextText": "S'està desant el document...",
"saveTitleText": "S'està desant el document",
"textCancel": "Cancel·la",
+ "textContinue": "Continuar",
"textErrorWrongPassword": "La contrasenya que heu introduït no és correcta.",
"textLoadingDocument": "S'està carregant el document",
"textNo": "No",
"textOk": "D'acord",
+ "textUndo": "Desfés",
"textUnlockRange": "Desbloca l'interval",
"textUnlockRangeWarning": "Un interval que intenteu canviar està protegit amb contrasenya.",
"textYes": "Sí",
"txtEditingMode": "Estableix el mode d'edició ...",
"uploadImageTextText": "S'està carregant la imatge...",
"uploadImageTitleText": "S'està carregant la imatge",
- "waitText": "Espereu...",
- "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server. Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
- "textContinue": "Continue",
- "textUndo": "Undo"
+ "waitText": "Espereu..."
},
"Statusbar": {
"notcriticalErrorTitle": "Advertiment",
@@ -343,6 +352,7 @@
"textComment": "Comentari",
"textDataTableHint": "Retorna les cel·les de dades de la taula o les columnes de la taula especificades",
"textDisplay": "Visualització",
+ "textDone": "Fet",
"textEmptyImgUrl": "Cal especificar l'URL de la imatge.",
"textExternalLink": "Enllaç extern",
"textFilter": "Filtre",
@@ -363,6 +373,7 @@
"textPictureFromLibrary": "Imatge de la biblioteca",
"textPictureFromURL": "Imatge de l'URL",
"textRange": "Interval",
+ "textRecommended": "Recomanat",
"textRequired": "Necessari",
"textScreenTip": "Consell de pantalla",
"textSelectedRange": "Interval Seleccionat",
@@ -378,9 +389,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í",
- "textDone": "Done",
- "textRecommended": "Recommended"
+ "txtYes": "Sí"
},
"Edit": {
"notcriticalErrorTitle": "Advertiment",
@@ -413,9 +422,11 @@
"textBottom": "Part inferior",
"textBottomBorder": "Vora inferior",
"textBringToForeground": "Porta al primer pla",
+ "textCancel": "Cancel·lar",
"textCell": "Cel·la",
"textCellStyle": "Estil de cel·la",
"textCenter": "Centra",
+ "textChangeShape": "Canvia la forma",
"textChart": "Gràfic",
"textChartTitle": "Títol del gràfic",
"textClearFilter": "Suprimeix el filtre",
@@ -428,12 +439,15 @@
"textDate": "Data",
"textDefault": "Interval seleccionat",
"textDeleteFilter": "Suprimeix el filtre",
+ "textDeleteImage": "Esborrar imatge",
+ "textDeleteLink": "Esborrar enllaç",
"textDesign": "Disseny",
"textDiagonalDownBorder": "Vora diagonal inferior",
"textDiagonalUpBorder": "Vora diagonal superior",
"textDisplay": "Visualització",
"textDisplayUnits": "Unitats de visualització",
"textDollar": "Dòlar",
+ "textDone": "Fet",
"textEditLink": "Edita l'enllaç",
"textEffects": "Efectes",
"textEmptyImgUrl": "Cal especificar l'URL de la imatge.",
@@ -514,6 +528,7 @@
"textPound": "Lliura",
"textPt": "pt",
"textRange": "Interval",
+ "textRecommended": "Recomanat",
"textRemoveChart": "Suprimeix el gràfic",
"textRemoveShape": "Suprimeix la forma",
"textReplace": "Substitueix",
@@ -560,13 +575,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",
- "textCancel": "Cancel",
- "textChangeShape": "Change Shape",
- "textDeleteImage": "Delete Image",
- "textDeleteLink": "Delete Link",
- "textDone": "Done",
- "textRecommended": "Recommended"
+ "txtSortLow2High": "Ordena de menor a major"
},
"Settings": {
"advCSVOptions": "Trieu les opcions CSV",
diff --git a/apps/spreadsheeteditor/mobile/locale/cs.json b/apps/spreadsheeteditor/mobile/locale/cs.json
index 29ff445e2..38967ff72 100644
--- a/apps/spreadsheeteditor/mobile/locale/cs.json
+++ b/apps/spreadsheeteditor/mobile/locale/cs.json
@@ -243,7 +243,16 @@
"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.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
+ "textCancel": "Cancel",
+ "textOk": "Ok"
},
"LongActions": {
"advDRMPassword": "Heslo",
diff --git a/apps/spreadsheeteditor/mobile/locale/da.json b/apps/spreadsheeteditor/mobile/locale/da.json
index b9df245d0..2e7e5bba8 100644
--- a/apps/spreadsheeteditor/mobile/locale/da.json
+++ b/apps/spreadsheeteditor/mobile/locale/da.json
@@ -224,6 +224,11 @@
"errorFrmlMaxLength": "You cannot add this formula as its length exceeds the allowed number of characters. Please, edit it and try again.",
"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.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
"errorKeyEncrypt": "Unknown key descriptor",
"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.",
@@ -236,11 +241,15 @@
"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.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
"errorUserDrop": "The file cannot 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.",
+ "textCancel": "Cancel",
"textErrorPasswordIsNotCorrect": "The password you supplied is not correct. Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.",
+ "textOk": "Ok",
"unknownErrorText": "Unknown error.",
"uploadImageExtMessage": "Unknown image format.",
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
diff --git a/apps/spreadsheeteditor/mobile/locale/de.json b/apps/spreadsheeteditor/mobile/locale/de.json
index 2de351e4d..6268c2010 100644
--- a/apps/spreadsheeteditor/mobile/locale/de.json
+++ b/apps/spreadsheeteditor/mobile/locale/de.json
@@ -31,9 +31,9 @@
"textOk": "OK",
"textReopen": "Wiederöffnen",
"textResolve": "Lösen",
+ "textSharingSettings": "Freigabeeinstellungen",
"textTryUndoRedo": "Die Optionen Rückgängig machen/Wiederholen sind für den Schnellmodus deaktiviert.",
- "textUsers": "Benutzer",
- "textSharingSettings": "Sharing Settings"
+ "textUsers": "Benutzer"
},
"ThemeColorPalette": {
"textCustomColors": "Benutzerdefinierte Farben",
@@ -50,6 +50,7 @@
"menuCell": "Zelle",
"menuDelete": "Löschen",
"menuEdit": "Bearbeiten",
+ "menuEditLink": "Link bearbeiten",
"menuFreezePanes": "Fensterausschnitte fixieren",
"menuHide": "Ausblenden",
"menuMerge": "Verbinden",
@@ -66,8 +67,7 @@
"textDoNotShowAgain": "Nicht mehr anzeigen",
"textOk": "OK",
"txtWarnUrl": "Dieser Link kann für Ihr Gerät und Daten gefährlich sein. Möchten Sie wirklich fortsetzen?",
- "warnMergeLostData": "Nur die Daten aus der oberen linken Zelle bleiben nach der Vereinigung. Möchten Sie wirklich fortsetzen?",
- "menuEditLink": "Edit Link"
+ "warnMergeLostData": "Nur die Daten aus der oberen linken Zelle bleiben nach der Vereinigung. Möchten Sie wirklich fortsetzen?"
},
"Controller": {
"Main": {
@@ -158,17 +158,17 @@
"textReplaceSuccess": "Der Suchvorgang wurde durchgeführt. Vorkommen wurden ersetzt:{0}",
"textRequestMacros": "Ein Makro stellt eine Anfrage an die URL. Möchten Sie die Anfrage an die %1 zulassen?",
"textYes": "Ja",
+ "titleLicenseExp": "Lizenz ist abgelaufen",
"titleServerVersion": "Editor wurde aktualisiert",
"titleUpdateVersion": "Version wurde geändert",
"warnLicenseExceeded": "Sie haben die maximale Anzahl von gleichzeitigen Verbindungen in %1-Editoren erreicht. Die Bearbeitung ist jetzt in diesem Dokument nicht verfügbar. Wenden Sie sich an Administratoren für weitere Informationen.",
+ "warnLicenseExp": "Ihre Lizenz ist abgelaufen. Bitte erneuern Sie die Lizenz und laden Sie die Seite neu.",
"warnLicenseLimitedNoAccess": "Lizenz abgelaufen. Keine Bearbeitung möglich. Bitte wenden Sie sich an Administratoren.",
"warnLicenseLimitedRenewed": "Die Lizenz soll aktualisiert werden. Die Bearbeitungsfunktionen sind eingeschränkt. Bitte wenden Sie sich an Ihrem Administrator für vollen Zugriff",
"warnLicenseUsersExceeded": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.",
"warnNoLicense": "Sie haben die maximale Anzahl von gleichzeitigen Verbindungen in %1-Editoren erreicht. Die Bearbeitung ist jetzt in diesem Dokument nicht verfügbar. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.",
"warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.",
- "warnProcessRightsChange": "Sie können diese Datei nicht bearbeiten.",
- "titleLicenseExp": "License expired",
- "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page."
+ "warnProcessRightsChange": "Sie können diese Datei nicht bearbeiten."
}
},
"Error": {
@@ -196,6 +196,7 @@
"errorDataRange": "Falscher Datenbereich.",
"errorDataValidate": "Der eingegebene Wert ist ungültig. Die Werte, die in diese Zelle eingegeben werden können, sind begrenzt.",
"errorDefaultMessage": "Fehlercode: %1",
+ "errorDirectUrl": "Bitte überprüfen Sie den Link zum Dokument. Dieser Link muss ein direkter Link zu der Datei zum Herunterladen sein.",
"errorEditingDownloadas": "Fehler bei der Arbeit an diesem Dokument. Laden Sie die Datei herunter, um sie lokal zu speichern.",
"errorFilePassProtect": "Die Datei ist mit Passwort geschützt und kann nicht geöffnet werden.",
"errorFileRequest": "Externer Fehler. Fehler bei der Dateianfrage. Bitte wenden Sie sich an den Support.",
@@ -208,6 +209,11 @@
"errorFrmlMaxReference": "Sie können solche Formel nicht eingeben, denn Sie zu viele Werte, Zellbezüge und/oder Namen beinhaltet.",
"errorFrmlMaxTextLength": "Textwerte in Formeln sind auf 255 Zeichen begrenzt. Verwenden Sie die Funktion VERKETTEN oder den Verkettungsoperator (&).",
"errorFrmlWrongReferences": "Die Funktion bezieht sich auf ein Blatt, das nicht existiert. Bitte überprüfen Sie die Daten und versuchen Sie es erneut.",
+ "errorInconsistentExt": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei stimmt nicht mit der Dateierweiterung überein.",
+ "errorInconsistentExtDocx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Textdokumenten (z.B. docx), aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "errorInconsistentExtPdf": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht einem der folgenden Formate: pdf/djvu/xps/oxps, aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "errorInconsistentExtPptx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Präsentationen (z.B. pptx), aber die Datei hat die inkonsistente Erweiterung: %1.",
+ "errorInconsistentExtXlsx": "Beim Öffnen der Datei ist ein Fehler aufgetreten. Der Inhalt der Datei entspricht Tabellenkalkulationen (z.B. xlsx), aber die Datei hat die inkonsistente Erweiterung: %1.",
"errorInvalidRef": "Geben Sie einen korrekten Namen oder einen gültigen Webverweis ein.",
"errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor",
"errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen",
@@ -238,17 +244,21 @@
"pastInMergeAreaError": "Teil einer verbundenen Zelle kann nicht geändert werden",
"saveErrorText": "Beim Speichern dieser Datei ist ein Fehler aufgetreten",
"scriptLoadError": "Die Verbindung ist zu langsam, manche Elemente wurden nicht geladen. Bitte die Seite neu laden.",
+ "textCancel": "Abbrechen",
"textErrorPasswordIsNotCorrect": "Das eingegebene Kennwort ist ungültig. Stellen Sie sicher, dass die FESTSTELLTASTE nicht aktiviert ist und dass Sie die korrekte Groß-/Kleinschreibung verwenden.",
+ "textOk": "OK",
"unknownErrorText": "Unbekannter Fehler.",
"uploadImageExtMessage": "Unbekanntes Bildformat.",
"uploadImageFileCountMessage": "Keine Bilder hochgeladen.",
"uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"advDRMPassword": "Passwort",
"applyChangesTextText": "Daten werden geladen...",
"applyChangesTitleText": "Daten werden geladen",
+ "confirmMaxChangesSize": "Die Anzahl der Aktionen überschreitet die für Ihren Server festgelegte Grenze. Drücken Sie \"Rückgängig\", um Ihre letzte Aktion abzubrechen, oder drücken Sie \"Weiter\", um die Aktion lokal fortzusetzen (Sie müssen die Datei herunterladen oder ihren Inhalt kopieren, um sicherzustellen, dass nichts verloren geht).",
"confirmMoveCellRange": "Der Zielzellenbereich kann Daten enthalten. Möchten Sie fortsetzen?",
"confirmPutMergeRange": "Die Quelldaten enthalten verbundene Zellen. Vor dem Einfügen dieser Zellen in die Tabelle, wird die Zusammenführung aufgehoben. ",
"confirmReplaceFormulaInTable": "Formeln in der Kopfzeile werden entfernt und in statischen Text konvertiert. Möchten Sie den Vorgang fortsetzen?",
@@ -274,20 +284,19 @@
"saveTextText": "Dokument wird gespeichert...",
"saveTitleText": "Dokument wird gespeichert...",
"textCancel": "Abbrechen",
+ "textContinue": "Fortsetzen",
"textErrorWrongPassword": "Inkorrektes Passwort.",
"textLoadingDocument": "Dokument wird geladen...",
"textNo": "Nein",
"textOk": "OK",
+ "textUndo": "Rückgängig",
"textUnlockRange": "Bereich aufsperren",
"textUnlockRangeWarning": "Ein Bereich, den Sie zu bearbeiten versuchen, ist durch ein Kennwort geschützt.",
"textYes": "Ja",
"txtEditingMode": "Bearbeitungsmodul wird festgelegt...",
"uploadImageTextText": "Das Bild wird hochgeladen...",
"uploadImageTitleText": "Bild wird hochgeladen",
- "waitText": "Bitte warten...",
- "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server. Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
- "textContinue": "Continue",
- "textUndo": "Undo"
+ "waitText": "Bitte warten..."
},
"Statusbar": {
"notcriticalErrorTitle": "Warnung",
@@ -343,6 +352,7 @@
"textComment": "Kommentar",
"textDataTableHint": "Gibt die Datenzellen der Tabelle oder der angegebenen Tabellenspalten zurück",
"textDisplay": "Anzeigen",
+ "textDone": "Fertig",
"textEmptyImgUrl": "Sie müssen die URL des Bildes angeben.",
"textExternalLink": "Externer Link",
"textFilter": "Filter",
@@ -363,6 +373,7 @@
"textPictureFromLibrary": "Bild aus dem Verzeichnis",
"textPictureFromURL": "Bild aus URL",
"textRange": "Bereich",
+ "textRecommended": "Empfohlen",
"textRequired": "Erforderlich",
"textScreenTip": "QuickInfo",
"textSelectedRange": "Ausgewählter Bereich",
@@ -378,9 +389,7 @@
"txtNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.",
"txtSorting": "Sortierung",
"txtSortSelected": "Ausgewählte sortieren",
- "txtYes": "Ja",
- "textDone": "Done",
- "textRecommended": "Recommended"
+ "txtYes": "Ja"
},
"Edit": {
"notcriticalErrorTitle": "Warnung",
@@ -398,6 +407,7 @@
"textAllBorders": "Alle Rahmenlinien",
"textAngleClockwise": "Im Uhrzeigersinn drehen",
"textAngleCounterclockwise": "Gegen den Uhrzeigersinn drehen",
+ "textArrange": "Anordnen",
"textAuto": "auto",
"textAutomatic": "Automatisch",
"textAxisCrosses": "Schnittpunkt mit der Achse",
@@ -412,9 +422,11 @@
"textBottom": "Unten",
"textBottomBorder": "Rahmenlinie unten",
"textBringToForeground": "In den Vordergrund bringen",
+ "textCancel": "Abbrechen",
"textCell": "Zelle",
"textCellStyle": "Zellenformatvorlage",
"textCenter": "Zentriert",
+ "textChangeShape": "Form ändern",
"textChart": "Diagramm",
"textChartTitle": "Diagrammtitel",
"textClearFilter": "Filter leeren",
@@ -427,12 +439,15 @@
"textDate": "Datum",
"textDefault": "Ausgewählter Bereich",
"textDeleteFilter": "Filter entfernen",
+ "textDeleteImage": "Bild löschen",
+ "textDeleteLink": "Link löschen",
"textDesign": "Design",
"textDiagonalDownBorder": "Rahmenlinien diagonal nach unten",
"textDiagonalUpBorder": "Rahmenlinien diagonal nach oben",
"textDisplay": "Anzeigen",
"textDisplayUnits": "Anzeigeeinheiten",
"textDollar": "Dollar",
+ "textDone": "Fertig",
"textEditLink": "Link bearbeiten",
"textEffects": "Effekte",
"textEmptyImgUrl": "Sie müssen die URL des Bildes angeben.",
@@ -513,6 +528,7 @@
"textPound": "Pfund",
"textPt": "pt",
"textRange": "Bereich",
+ "textRecommended": "Empfohlen",
"textRemoveChart": "Diagramm entfernen",
"textRemoveShape": "Form entfernen",
"textReplace": "Ersetzen",
@@ -559,14 +575,7 @@
"textYen": "Yen",
"txtNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.",
"txtSortHigh2Low": "Absteigend sortieren",
- "txtSortLow2High": "Aufsteigend sortieren",
- "textArrange": "Arrange",
- "textCancel": "Cancel",
- "textChangeShape": "Change Shape",
- "textDeleteImage": "Delete Image",
- "textDeleteLink": "Delete Link",
- "textDone": "Done",
- "textRecommended": "Recommended"
+ "txtSortLow2High": "Aufsteigend sortieren"
},
"Settings": {
"advCSVOptions": "CSV-Optionen auswählen",
diff --git a/apps/spreadsheeteditor/mobile/locale/el.json b/apps/spreadsheeteditor/mobile/locale/el.json
index 24a3db31d..ea635fc82 100644
--- a/apps/spreadsheeteditor/mobile/locale/el.json
+++ b/apps/spreadsheeteditor/mobile/locale/el.json
@@ -243,7 +243,16 @@
"uploadImageExtMessage": "Άγνωστη μορφή εικόνας.",
"uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.",
"uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
+ "textCancel": "Cancel",
+ "textOk": "Ok"
},
"LongActions": {
"advDRMPassword": "Συνθηματικό",
diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json
index bedcbb8a9..af1fb7b0a 100644
--- a/apps/spreadsheeteditor/mobile/locale/en.json
+++ b/apps/spreadsheeteditor/mobile/locale/en.json
@@ -209,6 +209,11 @@
"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.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
"errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.",
"errorKeyEncrypt": "Unknown key descriptor",
"errorKeyExpire": "Key descriptor expired",
@@ -227,6 +232,8 @@
"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.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
"errorUnexpectedGuid": "External error. Unexpected Guid. Please, contact support.",
"errorUpdateVersionOnDisconnect": "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.",
@@ -239,13 +246,13 @@
"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.",
+ "textCancel": "Cancel",
"textErrorPasswordIsNotCorrect": "The password you supplied is not correct. Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.",
+ "textOk": "Ok",
"unknownErrorText": "Unknown error.",
"uploadImageExtMessage": "Unknown image format.",
"uploadImageFileCountMessage": "No images uploaded.",
- "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
- "textCancel": "Cancel",
- "textOk": "Ok"
+ "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
},
"LongActions": {
"advDRMPassword": "Password",
diff --git a/apps/spreadsheeteditor/mobile/locale/es.json b/apps/spreadsheeteditor/mobile/locale/es.json
index 6f684299a..24deb9081 100644
--- a/apps/spreadsheeteditor/mobile/locale/es.json
+++ b/apps/spreadsheeteditor/mobile/locale/es.json
@@ -31,9 +31,9 @@
"textOk": "OK",
"textReopen": "Volver a abrir",
"textResolve": "Resolver",
+ "textSharingSettings": "Ajustes de uso compartido",
"textTryUndoRedo": "Las funciones Deshacer/Rehacer están desactivadas en el modo de co-edición rápido.",
- "textUsers": "Usuarios",
- "textSharingSettings": "Sharing Settings"
+ "textUsers": "Usuarios"
},
"ThemeColorPalette": {
"textCustomColors": "Colores personalizados",
@@ -50,6 +50,7 @@
"menuCell": "Celda",
"menuDelete": "Eliminar",
"menuEdit": "Editar",
+ "menuEditLink": "Editar enlace",
"menuFreezePanes": "Inmovilizar paneles",
"menuHide": "Ocultar",
"menuMerge": "Combinar",
@@ -66,8 +67,7 @@
"textDoNotShowAgain": "No mostrar de nuevo",
"textOk": "Aceptar",
"txtWarnUrl": "Hacer clic en este enlace puede ser perjudicial para su dispositivo y sus datos. ¿Está seguro de que quiere continuar?",
- "warnMergeLostData": "En la celda unida permanecerán sólo los datos de la celda de la esquina superior izquierda. Está seguro de que quiere continuar?",
- "menuEditLink": "Edit Link"
+ "warnMergeLostData": "En la celda unida permanecerán sólo los datos de la celda de la esquina superior izquierda. Está seguro de que quiere continuar?"
},
"Controller": {
"Main": {
@@ -158,17 +158,17 @@
"textReplaceSuccess": "Se ha realizado la búsqueda. Ocurrencias reemplazadas: {0}",
"textRequestMacros": "Una macro realiza una solicitud a la URL. ¿Quiere permitir la solicitud al %1?",
"textYes": "Sí",
+ "titleLicenseExp": "Licencia ha expirado",
"titleServerVersion": "Editor ha sido actualizado",
"titleUpdateVersion": "Versión ha cambiado",
"warnLicenseExceeded": "Ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización. Póngase en contacto con su administrador para obtener más información.",
+ "warnLicenseExp": "Su licencia ha expirado. Por favor, actualice su licencia y actualice la página.",
"warnLicenseLimitedNoAccess": "La licencia ha expirado. No tiene acceso a la funcionalidad de edición de documentos. Por favor, póngase en contacto con su administrador.",
"warnLicenseLimitedRenewed": "La licencia necesita renovación. Tiene acceso limitado a la funcionalidad de edición de documentos. Por favor, póngase en contacto con su administrador para obtener acceso completo",
"warnLicenseUsersExceeded": "Ha alcanzado el límite de usuarios para %1 editores. Póngase en contacto con su administrador para saber más.",
"warnNoLicense": "Ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización. Póngase en contacto con el equipo de ventas de %1 para conocer las condiciones de actualización personal.",
"warnNoLicenseUsers": "Ha alcanzado el límite de usuarios para %1 editores. Póngase en contacto con el equipo de ventas de %1 para conocer las condiciones de actualización personal.",
- "warnProcessRightsChange": "No tiene permiso para editar el archivo.",
- "titleLicenseExp": "License expired",
- "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page."
+ "warnProcessRightsChange": "No tiene permiso para editar el archivo."
}
},
"Error": {
@@ -196,6 +196,7 @@
"errorDataRange": "Rango de datos incorrecto.",
"errorDataValidate": "El valor que ha introducido no es válido. Un usuario ha restringido los valores que pueden ser introducidos en esta celda.",
"errorDefaultMessage": "Código de error: %1",
+ "errorDirectUrl": "Por favor, verifique el vínculo al documento. Este vínculo debe ser un vínculo directo al archivo para descargar.",
"errorEditingDownloadas": "Se ha producido un error al trabajar con el documento. Utilice la opción 'Descargar' para guardar la copia de seguridad del archivo localmente.",
"errorFilePassProtect": "El archivo está protegido por contraseña y no se puede abrir.",
"errorFileRequest": "Error externo. Solicitud de archivo. Por favor, contacte con el equipo de soporte.",
@@ -238,12 +239,20 @@
"pastInMergeAreaError": "No se puede modificar una parte de una celda combinada",
"saveErrorText": "Se ha producido un error al guardar el archivo ",
"scriptLoadError": "La conexión es demasiado lenta, algunos de los componentes no se han podido cargar. Por favor, vuelva a cargar la página.",
+ "textCancel": "Cancelar",
"textErrorPasswordIsNotCorrect": "La contraseña que ha proporcionado no es correcta. Verifique que la tecla Bloq Mayús está desactivada y asegúrese de utilizar las mayúsculas correctas.",
+ "textOk": "Aceptar",
"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.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"advDRMPassword": "Contraseña",
@@ -274,10 +283,12 @@
"saveTextText": "Guardando documento...",
"saveTitleText": "Guardando documento",
"textCancel": "Cancelar",
+ "textContinue": "Continuar",
"textErrorWrongPassword": "La contraseña que ha proporcionado no es correcta.",
"textLoadingDocument": "Cargando documento",
"textNo": "No",
"textOk": "OK",
+ "textUndo": "Deshacer",
"textUnlockRange": "Desbloquear rango",
"textUnlockRangeWarning": "Un rango que está tratando de cambiar está protegido por contraseña.",
"textYes": "Sí",
@@ -285,9 +296,7 @@
"uploadImageTextText": "Subiendo imagen...",
"uploadImageTitleText": "Subiendo imagen",
"waitText": "Por favor, espere...",
- "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server. Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
- "textContinue": "Continue",
- "textUndo": "Undo"
+ "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server. Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost)."
},
"Statusbar": {
"notcriticalErrorTitle": "Advertencia",
@@ -343,6 +352,7 @@
"textComment": "Comentario",
"textDataTableHint": "Devuelve las celdas de datos de la tabla o de las columnas de la tabla especificadas",
"textDisplay": "Mostrar",
+ "textDone": "Hecho",
"textEmptyImgUrl": "Necesita especificar la URL de la imagen.",
"textExternalLink": "Enlace externo",
"textFilter": "Filtro",
@@ -363,6 +373,7 @@
"textPictureFromLibrary": "Imagen desde biblioteca",
"textPictureFromURL": "Imagen desde URL",
"textRange": "Rango",
+ "textRecommended": "Recomendado",
"textRequired": "Requerido",
"textScreenTip": "Consejo de pantalla",
"textSelectedRange": "Rango seleccionado",
@@ -378,9 +389,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í",
- "textDone": "Done",
- "textRecommended": "Recommended"
+ "txtYes": "Sí"
},
"Edit": {
"notcriticalErrorTitle": "Advertencia",
@@ -398,6 +407,7 @@
"textAllBorders": "Todos los bordes",
"textAngleClockwise": "Ángulo descendente",
"textAngleCounterclockwise": "Ángulo ascendente",
+ "textArrange": "Organizar",
"textAuto": "Auto",
"textAutomatic": "Automático",
"textAxisCrosses": "Cruces de eje",
@@ -412,6 +422,7 @@
"textBottom": "Abajo ",
"textBottomBorder": "Borde inferior",
"textBringToForeground": "Traer al primer plano",
+ "textCancel": "Cancelar",
"textCell": "Celda",
"textCellStyle": "Estilo de celda",
"textCenter": "Centro",
@@ -427,12 +438,14 @@
"textDate": "Fecha",
"textDefault": "Rango seleccionado",
"textDeleteFilter": "Eliminar filtro",
+ "textDeleteLink": "Eliminar enlace",
"textDesign": "Diseño",
"textDiagonalDownBorder": "Borde diagonal descendente",
"textDiagonalUpBorder": "Borde diagonal ascendente",
"textDisplay": "Mostrar",
"textDisplayUnits": "Unidades de visualización",
"textDollar": "Dólar",
+ "textDone": "Hecho",
"textEditLink": "Editar enlace",
"textEffects": "Efectos",
"textEmptyImgUrl": "Necesita especificar la URL de la imagen.",
@@ -513,6 +526,7 @@
"textPound": "Libra",
"textPt": "pt",
"textRange": "Rango",
+ "textRecommended": "Recomendado",
"textRemoveChart": "Eliminar gráfico",
"textRemoveShape": "Eliminar forma",
"textReplace": "Reemplazar",
@@ -560,13 +574,8 @@
"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 ",
- "textArrange": "Arrange",
- "textCancel": "Cancel",
"textChangeShape": "Change Shape",
- "textDeleteImage": "Delete Image",
- "textDeleteLink": "Delete Link",
- "textDone": "Done",
- "textRecommended": "Recommended"
+ "textDeleteImage": "Delete Image"
},
"Settings": {
"advCSVOptions": "Elegir los parámetros de CSV",
diff --git a/apps/spreadsheeteditor/mobile/locale/eu.json b/apps/spreadsheeteditor/mobile/locale/eu.json
index f92c1786a..103bd0f41 100644
--- a/apps/spreadsheeteditor/mobile/locale/eu.json
+++ b/apps/spreadsheeteditor/mobile/locale/eu.json
@@ -243,7 +243,16 @@
"uploadImageExtMessage": "Irudi formatu ezezaguna.",
"uploadImageFileCountMessage": "Ez da irudirik kargatu.",
"uploadImageSizeMessage": "Irudia handiegia da. Gehienezko tamaina 25 MB da.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
+ "textCancel": "Cancel",
+ "textOk": "Ok"
},
"LongActions": {
"advDRMPassword": "Pasahitza",
diff --git a/apps/spreadsheeteditor/mobile/locale/fr.json b/apps/spreadsheeteditor/mobile/locale/fr.json
index 3a2235eb7..e1f576047 100644
--- a/apps/spreadsheeteditor/mobile/locale/fr.json
+++ b/apps/spreadsheeteditor/mobile/locale/fr.json
@@ -209,6 +209,11 @@
"errorFrmlMaxReference": "Vous ne pouvez pas saisir cette formule parce qu'elle est trop longues, ou contient références de cellules, et/ou noms. ",
"errorFrmlMaxTextLength": "Les valeurs de texte dans les formules sont limitées à 255 caractères. Utilisez la fonction CONCATENER ou l’opérateur de concaténation (&).",
"errorFrmlWrongReferences": "La fonction fait référence à une feuille qui n'existe pas. Veuillez vérifier les données et réessayer.",
+ "errorInconsistentExt": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier ne correspond pas à l'extension du fichier.",
+ "errorInconsistentExtDocx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des documents texte (par exemple docx), mais le fichier a une extension incohérente : %1.",
+ "errorInconsistentExtPdf": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à l'un des formats suivants : pdf/djvu/xps/oxps, mais le fichier a l'extension incohérente : %1.",
+ "errorInconsistentExtPptx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des présentations (par exemple pptx), mais le fichier a une extension incohérente : %1.",
+ "errorInconsistentExtXlsx": "Une erreur s'est produite lors de l'ouverture du fichier. Le contenu du fichier correspond à des feuilles de calcul (par exemple xlsx), mais le fichier a une extension incohérente : %1.",
"errorInvalidRef": "Entrez un nom correct pour la sélection ou une référence valable à laquelle aller.",
"errorKeyEncrypt": "Descripteur de clé inconnu",
"errorKeyExpire": "Descripteur de clés expiré",
@@ -227,6 +232,8 @@
"errorSessionIdle": "Le document n'a pas été modifié depuis trop longtemps. Veuillez recharger la page.",
"errorSessionToken": "La connexion au serveur a été interrompue. Veuillez recharger la page.",
"errorStockChart": "Ordre des lignes est incorrect. Pour créer un graphique boursier organisez vos données sur la feuille de calcul dans l'ordre suivant: cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.",
+ "errorToken": "Le jeton de sécurité du document n’était pas formé correctement. Veuillez contacter l'administrateur de Document Server.",
+ "errorTokenExpire": "Le jeton de sécurité du document a expiré. Veuillez contacter l'administrateur de Document Server.",
"errorUnexpectedGuid": "Erreur externe. GUID non prévue. Contactez l'assistance technique.",
"errorUpdateVersionOnDisconnect": "La connexion a été rétablie et la version du fichier a été modifiée. Avant de pouvoir continuer à travailler, vous devez télécharger le fichier ou copier son contenu pour vous assurer que rien n'est perdu, puis recharger cette page.",
"errorUserDrop": "Impossible d'accéder au fichier.",
@@ -239,7 +246,9 @@
"pastInMergeAreaError": "Impossible de modifier une partie d'une cellule fusionnée",
"saveErrorText": "Une erreur s'est produite lors de l'enregistrement du fichier",
"scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.",
+ "textCancel": "Annuler",
"textErrorPasswordIsNotCorrect": "Le mot de passe que vous avez fourni n'est pas correct. Veuillez vérifier que la touche CAPS LOCK est désactivée et assurez-vous d'utiliser la bonne majuscule.",
+ "textOk": "Accepter",
"unknownErrorText": "Erreur inconnue.",
"uploadImageExtMessage": "Format d'image inconnu.",
"uploadImageFileCountMessage": "Aucune image chargée.",
diff --git a/apps/spreadsheeteditor/mobile/locale/gl.json b/apps/spreadsheeteditor/mobile/locale/gl.json
index 9ea5e1dd8..2c734f18b 100644
--- a/apps/spreadsheeteditor/mobile/locale/gl.json
+++ b/apps/spreadsheeteditor/mobile/locale/gl.json
@@ -243,7 +243,16 @@
"uploadImageExtMessage": "Formato de imaxe descoñecido.",
"uploadImageFileCountMessage": "Non hai imaxes subidas.",
"uploadImageSizeMessage": "A imaxe é demasiado grande. O tamaño máximo é de 25 MB.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
+ "textCancel": "Cancel",
+ "textOk": "Ok"
},
"LongActions": {
"advDRMPassword": "Contrasinal",
diff --git a/apps/spreadsheeteditor/mobile/locale/hu.json b/apps/spreadsheeteditor/mobile/locale/hu.json
index 454a97ad7..7455177a1 100644
--- a/apps/spreadsheeteditor/mobile/locale/hu.json
+++ b/apps/spreadsheeteditor/mobile/locale/hu.json
@@ -243,7 +243,16 @@
"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."
+ "uploadImageSizeMessage": "A kép túl nagy. A maximális méret 25 MB.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
+ "textCancel": "Cancel",
+ "textOk": "Ok"
},
"LongActions": {
"advDRMPassword": "Jelszó",
diff --git a/apps/spreadsheeteditor/mobile/locale/hy.json b/apps/spreadsheeteditor/mobile/locale/hy.json
index 62ec698cf..215206664 100644
--- a/apps/spreadsheeteditor/mobile/locale/hy.json
+++ b/apps/spreadsheeteditor/mobile/locale/hy.json
@@ -209,6 +209,11 @@
"errorFrmlMaxReference": "Չեք կարող մտցնել այս բանաձևը, քանի որ այն ունի շատ արժեքներ, վանդակների հղումներ և/կամ անուններ։",
"errorFrmlMaxTextLength": "Բանաձևերում տեքստային արժեքները սահմանափակվում են 255 նիշով: Օգտագործեք Շղթայակցել ֆունկցիան կամ շղթայակցման օպերատորը(&)",
"errorFrmlWrongReferences": "Ֆունկցիան վերաբերում է թերթին, որը գոյություն չունի: Խնդրում ենք ստուգել տվյալները և նորից փորձել:",
+ "errorInconsistentExt": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը չի համապատասխանում ֆայլի ընդլայնմանը:",
+ "errorInconsistentExtDocx": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը համապատասխանում է տեքստային փաստաթղթերին (օրինակ՝ docx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում՝ %1:",
+ "errorInconsistentExtPdf": "Ֆայլը բացելիս սխալ է տեղի ունեցել:Ֆայլի բովանդակությունը համապատասխանում է հետևյալ ձևաչափերից մեկին՝pdf/djvu/xps/oxps,բայց ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
+ "errorInconsistentExtPptx": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը համապատասխանում է ներկայացումներին (օրինակ՝ pptx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
+ "errorInconsistentExtXlsx": "Ֆայլը բացելիս սխալ է տեղի ունեցել: Ֆայլի բովանդակությունը համապատասխանում է աղյուսակներին (օր. xlsx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
"errorInvalidRef": "Մուտքագրեք ընտրվածքի համար ճիշտ անուն կամ անցման համար թույլատրելի հղում։",
"errorKeyEncrypt": "Բանալու անհայտ նկարագրիչ",
"errorKeyExpire": "Բանալու նկարագրիչի ժամկետը սպառվել է",
@@ -239,16 +244,21 @@
"pastInMergeAreaError": "Հնարավոր չէ փոխել ձուլված վանդակի մի մասը",
"saveErrorText": "Ֆայլը պահելիս սխալ է տեղի ունեցել",
"scriptLoadError": "Կապը չափազանց դանդաղ է, որոշ բաղադրիչներ չհաջողվեց բեռնել:Խնդրում ենք վերաբեռնել էջը:",
+ "textCancel": "Չեղարկել",
"textErrorPasswordIsNotCorrect": "Ձեր տրամադրած գաղտնաբառը ճիշտ չէ: Ստուգեք, որ CAPS LOCK ստեղնը անջատված է և օգտագործեք ճիշտ գլխատառացումը:",
+ "textOk": "Լավ",
"unknownErrorText": "Անհայտ սխալ։",
"uploadImageExtMessage": "Նկարի անհայտ ձևաչափ։",
"uploadImageFileCountMessage": "Ոչ մի նկար չի բեռնվել։",
- "uploadImageSizeMessage": "Պատկերը չափազանց մեծ է:Առավելագույն չափը 25 ՄԲ է:"
+ "uploadImageSizeMessage": "Պատկերը չափազանց մեծ է:Առավելագույն չափը 25 ՄԲ է:",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"advDRMPassword": "Գաղտնաբառ",
"applyChangesTextText": "Տվյալների բեռնում...",
"applyChangesTitleText": "Տվյալների բեռնում",
+ "confirmMaxChangesSize": "Գործողությունների չափը գերազանցում է Ձեր սերվերի համար սահմանված սահմանափակումը: Սեղմեք «Հետարկել»՝ Ձեր վերջին գործողությունը չեղարկելու համար կամ սեղմեք «Շարունակել»՝ գործողությունը տեղում պահելու համար (Դուք պետք է ներբեռնեք ֆայլը կամ պատճենեք դրա բովանդակությունը՝ համոզվելու համար, որ ոչինչ կորած չէ):",
"confirmMoveCellRange": "Նպատակային վանդակների տիրույթը կարող է պարունակել տվյալներ:Շարունակե՞լ գործողությունը։",
"confirmPutMergeRange": "Աղբյուրի տվյալները պարունակում են ձուլված վանդակներ: Դրանք կապաձուլվեն մինչև աղյուսակում դրվելը:",
"confirmReplaceFormulaInTable": "Վերնագրի տողի բանաձևերը կհեռացվեն և կվերածվեն ստատիկ տեքստի: Ցանկանու՞մ եք շարունակել։",
@@ -286,8 +296,7 @@
"txtEditingMode": "Սահմանել ցուցակի խմբագրում․․․",
"uploadImageTextText": "Նկարի վերբեռնում...",
"uploadImageTitleText": "Նկարի վերբեռնում",
- "waitText": "Խնդրում ենք սպասել...",
- "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server. Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost)."
+ "waitText": "Խնդրում ենք սպասել..."
},
"Statusbar": {
"notcriticalErrorTitle": "Զգուշացում",
@@ -417,6 +426,7 @@
"textCell": "Վանդակ",
"textCellStyle": "Վանդակի ոճ",
"textCenter": "Կենտրոն",
+ "textChangeShape": "Փոխել ձևը",
"textChart": "Գծապատկեր",
"textChartTitle": "Գծապատկերի վերնագիր",
"textClearFilter": "Մաքրել զտիչը",
@@ -429,6 +439,8 @@
"textDate": "Ամիս-ամսաթիվ",
"textDefault": "Ընտրված ընդգրկույթ",
"textDeleteFilter": "Ջնջել զտիչը",
+ "textDeleteImage": "Ջնջել պատկերը",
+ "textDeleteLink": "Ջնջել հղումը",
"textDesign": "Ձևավորում",
"textDiagonalDownBorder": "Անկյունագծային իջնող եզրագիծ",
"textDiagonalUpBorder": "Անկյունագծային բարձրացող եզրագիծ",
@@ -563,10 +575,7 @@
"textYen": "Յուան",
"txtNotUrl": "Այս դաշտը պիտի լինի URL հասցե՝ \"http://www.example.com\" ձևաչափով։ ",
"txtSortHigh2Low": "Տեսակավորել բարձրից ցածր:",
- "txtSortLow2High": "Տեսակավորել ցածրից բարձր:",
- "textChangeShape": "Change Shape",
- "textDeleteImage": "Delete Image",
- "textDeleteLink": "Delete Link"
+ "txtSortLow2High": "Տեսակավորել ցածրից բարձր:"
},
"Settings": {
"advCSVOptions": "Ընտրել CSV-ի հարաչափերը",
diff --git a/apps/spreadsheeteditor/mobile/locale/id.json b/apps/spreadsheeteditor/mobile/locale/id.json
index 93168b541..26c0699b6 100644
--- a/apps/spreadsheeteditor/mobile/locale/id.json
+++ b/apps/spreadsheeteditor/mobile/locale/id.json
@@ -209,6 +209,11 @@
"errorFrmlMaxReference": "Anda tidak bisa memasukkan formula ini karena memiliki nilai terlalu banyak, referensi sel, dan/atau nama.",
"errorFrmlMaxTextLength": "Nilai teks dalam formula dibatasi 255 karakter. Gunakan fungsi PENGGABUNGAN atau operator penggabungan (&)",
"errorFrmlWrongReferences": "Fungsi yang menuju sheet tidak ada. Silakan periksa data kembali.",
+ "errorInconsistentExt": "Terjadi kesalahan saat membuka file. Isi file tidak cocok dengan ekstensi file.",
+ "errorInconsistentExtDocx": "Terjadi kesalahan saat membuka file. Isi file berhubungan dengan dokumen teks (mis. docx), tapi file memiliki ekstensi yang tidak konsisten: %1.",
+ "errorInconsistentExtPdf": "Sebuah kesalahan terjadi ketika membuka file. Isi file berhubungan dengan satu dari format berikut: pdf/djvu/xps/oxps, tapi file memiliki ekstensi yang tidak konsisten: %1.",
+ "errorInconsistentExtPptx": "Terjadi kesalahan saat membuka file. Isi file berhubungan dengan presentasi (mis. pptx), tapi file memiliki ekstensi yang tidak konsisten: %1.",
+ "errorInconsistentExtXlsx": "Terjadi kesalahan saat membuka file. Isi file berhubungan dengan spreadsheet (mis. xlsx), tapi file memiliki ekstensi yang tidak konsisten: %1.",
"errorInvalidRef": "Masukkan nama yang tepat untuk pilihan atau referensi valid sebagai tujuan.",
"errorKeyEncrypt": "Deskriptor kunci tidak dikenal",
"errorKeyExpire": "Deskriptor kunci tidak berfungsi",
@@ -227,8 +232,10 @@
"errorSessionIdle": "Dokumen sudah lama tidak diedit. Silakan muat ulang halaman.",
"errorSessionToken": "Koneksi ke server terganggu. Silakan muat ulang halaman.",
"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.",
+ "errorToken": "Token keamanan dokumen tidak dibentuk dengan benar. Silakan hubungi admin Server Dokumen Anda.",
+ "errorTokenExpire": "Token keamanan dokumen sudah kedaluwarsa. Silakan hubungi admin Server Dokumen Anda.",
"errorUnexpectedGuid": "Error eksternal. Unexpected Guid. Silakan hubungi support.",
- "errorUpdateVersionOnDisconnect": "Koneksi internet sudah kembali dan versi file sudah diganti. Sebelum Anda bisa melanjutkan kerja, Anda perlu download file atau copy konten untuk memastikan tidak ada yang hilang, dan muat ulang halaman ini.",
+ "errorUpdateVersionOnDisconnect": "Koneksi internet sudah kembali dan versi file sudah diganti. Sebelum Anda bisa melanjutkan kerja, Anda perlu mengunduh file atau salin konten untuk memastikan tidak ada yang hilang, lalu muat ulang halaman ini.",
"errorUserDrop": "File tidak bisa diakses sekarang.",
"errorUsersExceed": "Jumlah pengguna telah melebihi jumlah yang diijinkan dalam paket harga.",
"errorViewerDisconnect": "Koneksi terputus. Anda tetap bisa melihat dokumen, tapi tidak bisa download atau print sampai koneksi terhubung dan halaman dimuat ulang.",
@@ -239,7 +246,9 @@
"pastInMergeAreaError": "Tidak bisa mengganti bagian dari sel yang digabungkan",
"saveErrorText": "Eror ketika menyimpan file.",
"scriptLoadError": "Koneksi terlalu lambat dan beberapa komponen tidak bisa dibuka Silakan muat ulang halaman.",
+ "textCancel": "Batalkan",
"textErrorPasswordIsNotCorrect": "Password yang Anda sediakan tidak tepat. Pastikan bahwa CAPS LOCK sudah mati dan pastikan sudah menggunakan huruf besar dengan tepat.",
+ "textOk": "OK",
"unknownErrorText": "Kesalahan tidak diketahui.",
"uploadImageExtMessage": "Format gambar tidak dikenal.",
"uploadImageFileCountMessage": "Tidak ada gambar yang diunggah.",
diff --git a/apps/spreadsheeteditor/mobile/locale/it.json b/apps/spreadsheeteditor/mobile/locale/it.json
index 352fb9cec..ad161f12d 100644
--- a/apps/spreadsheeteditor/mobile/locale/it.json
+++ b/apps/spreadsheeteditor/mobile/locale/it.json
@@ -31,9 +31,9 @@
"textOk": "OK",
"textReopen": "Riaprire",
"textResolve": "Risolvere",
+ "textSharingSettings": "Impostazioni di condivisione",
"textTryUndoRedo": "Le funzioni Annulla/Ripeti sono disattivate nella modalità rapida di modifica collaborativa.",
- "textUsers": "Utenti",
- "textSharingSettings": "Sharing Settings"
+ "textUsers": "Utenti"
},
"ThemeColorPalette": {
"textCustomColors": "Colori personalizzati",
@@ -50,6 +50,7 @@
"menuCell": "Cella",
"menuDelete": "Eliminare",
"menuEdit": "Modificare",
+ "menuEditLink": "Modifica collegamento",
"menuFreezePanes": "Bloccare riquadri",
"menuHide": "Nascondere",
"menuMerge": "Unire",
@@ -66,8 +67,7 @@
"textDoNotShowAgain": "Non mostrare di nuovo",
"textOk": "Ok",
"txtWarnUrl": "Fare clic su questo collegamento può danneggiare il tuo dispositivo e i tuoi dati. Sei sicuro che vuoi continuare?",
- "warnMergeLostData": "Solo i dati dalla cella sinistra superiore rimangono nella cella unita. Sei sicuro di voler continuare?",
- "menuEditLink": "Edit Link"
+ "warnMergeLostData": "Solo i dati dalla cella sinistra superiore rimangono nella cella unita. Sei sicuro di voler continuare?"
},
"Controller": {
"Main": {
@@ -158,17 +158,17 @@
"textReplaceSuccess": "La ricerca è stata effettuata. Casi sostituiti: {0}",
"textRequestMacros": "Una macro effettua una richiesta all'URL. Vuoi consentire la richiesta al %1?",
"textYes": "Sì",
+ "titleLicenseExp": "La licenza è scaduta",
"titleServerVersion": "L'editor è stato aggiornato",
"titleUpdateVersion": "La versione è stata cambiata",
"warnLicenseExceeded": "Hai raggiunto il limite delle connessioni simultanee agli editor %1. Questo documento sarà aperto solo in modalità di visualizzazione. Ti preghiamo di contattare il tuo amministratore per maggior informazioni.",
+ "warnLicenseExp": "La tua licenza è scaduta. Ti preghiamo di aggiornare la tua licenza e ricaricare la pagina.",
"warnLicenseLimitedNoAccess": "La licenza è scaduta. Non hai più accesso alle funzionalità di modifiche di documenti. Ti preghiamo di contattare il tuo amministratore.",
"warnLicenseLimitedRenewed": "La licenza deve essere rinnovata. Hai accesso limitato alle funzionalità di modifica di documenti. Si prega di contattare il tuo amministratore per ottenere l'accesso completo",
"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.",
- "titleLicenseExp": "License expired",
- "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page."
+ "warnProcessRightsChange": "Non hai il permesso di modificare il file."
}
},
"Error": {
@@ -196,6 +196,7 @@
"errorDataRange": "Intervallo di dati non corretto.",
"errorDataValidate": "Il valore che hai inserito non è valido. Un utente ha limitato i valori che possono essere inseriti in questa cella.",
"errorDefaultMessage": "Codice errore: %1",
+ "errorDirectUrl": "Si prega di verificare il link al documento. Questo collegamento deve essere un collegamento diretto al file da scaricare.",
"errorEditingDownloadas": "Si è verificato un errore durante il lavoro con il documento. Usa l'opzione \"Scaricare\" per salvare la copia di backup del file localmente.",
"errorFilePassProtect": "Il file è protetto da password e non può essere aperto.",
"errorFileRequest": "Errore esterno. Errore di richiesta di file. Si prega di contattare il team di supporto.",
@@ -238,12 +239,20 @@
"pastInMergeAreaError": "Impossibile modificare una parte di una cella unita",
"saveErrorText": "Si è verificato un errore al salvataggio del file",
"scriptLoadError": "La connessione è troppo lenta, alcuni componenti non possono essere caricati. Ti preghiamo di ricaricare la pagina.",
+ "textCancel": "Annulla",
"textErrorPasswordIsNotCorrect": "La password che hai fornito non è corretta. Verifica che il tasto CAPS LOCK sia disattivato e assicurati di utilizzare maiuscole corrette.",
+ "textOk": "OK",
"unknownErrorText": "Errore sconosciuto.",
"uploadImageExtMessage": "Formato d'immagine sconosciuto.",
"uploadImageFileCountMessage": "Nessuna immagine caricata.",
"uploadImageSizeMessage": "L'immagine è troppo grande. La dimensione massima è 25 MB.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"advDRMPassword": "Password",
@@ -274,10 +283,12 @@
"saveTextText": "Salvataggio del documento...",
"saveTitleText": "Salvataggio del documento",
"textCancel": "Annullare",
+ "textContinue": "Continua",
"textErrorWrongPassword": "La password che hai fornito non è corretta.",
"textLoadingDocument": "Caricamento di documento",
"textNo": "No",
"textOk": "OK",
+ "textUndo": "Annulla",
"textUnlockRange": "Sbloccare intervallo",
"textUnlockRangeWarning": "L'intervallo che cerchi di cambiare è protetto con password.",
"textYes": "Sì",
@@ -285,9 +296,7 @@
"uploadImageTextText": "Caricamento immagine...",
"uploadImageTitleText": "Caricamento immagine",
"waitText": "Si prega di attendere",
- "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server. Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
- "textContinue": "Continue",
- "textUndo": "Undo"
+ "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server. Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost)."
},
"Statusbar": {
"notcriticalErrorTitle": "Avvertimento",
@@ -343,6 +352,7 @@
"textComment": "Commento",
"textDataTableHint": "Restituisce le celle di dati della tabella o le colonne della tabella specificate",
"textDisplay": "Visualizzare",
+ "textDone": "Fatto",
"textEmptyImgUrl": "Devi specificare l'URL dell'immagine.",
"textExternalLink": "Link esterno",
"textFilter": "Filtro",
@@ -363,6 +373,7 @@
"textPictureFromLibrary": "Immagine dalla libreria",
"textPictureFromURL": "Immagine dall'URL",
"textRange": "Intervallo",
+ "textRecommended": "Consigliato",
"textRequired": "Richiesto",
"textScreenTip": "Suggerimento su schermo",
"textSelectedRange": "Intervallo selezionato",
@@ -378,9 +389,7 @@
"txtNotUrl": "Questo campo deve essere un URL nel formato \"http://www.example.com\"",
"txtSorting": "Ordinamento",
"txtSortSelected": "Ordinare selezionato",
- "txtYes": "Sì",
- "textDone": "Done",
- "textRecommended": "Recommended"
+ "txtYes": "Sì"
},
"Edit": {
"notcriticalErrorTitle": "Avvertimento",
@@ -398,6 +407,7 @@
"textAllBorders": "Tutti i bordi",
"textAngleClockwise": "Angolo in senso orario",
"textAngleCounterclockwise": "Angolo in senso antiorario",
+ "textArrange": "Disponi",
"textAuto": "Auto",
"textAutomatic": "Automatico",
"textAxisCrosses": "Intersezione con l'asse",
@@ -412,6 +422,7 @@
"textBottom": "In basso",
"textBottomBorder": "Bordo inferiore",
"textBringToForeground": "Portare in primo piano",
+ "textCancel": "Annulla",
"textCell": "Cella",
"textCellStyle": "Stile cella",
"textCenter": "Al centro",
@@ -427,12 +438,14 @@
"textDate": "Data",
"textDefault": "Intervallo selezionato",
"textDeleteFilter": "Eliminare filtro",
+ "textDeleteLink": "Elimina collegamento",
"textDesign": "Design",
"textDiagonalDownBorder": "Bordo diagonale discendente",
"textDiagonalUpBorder": "Bordo diagonale ascendente",
"textDisplay": "Visualizzare",
"textDisplayUnits": "Unità di visualizzazione",
"textDollar": "Dollaro",
+ "textDone": "Fatto",
"textEditLink": "Modificare link",
"textEffects": "Effetti",
"textEmptyImgUrl": "Devi specificare l'URL dell'immagine.",
@@ -513,6 +526,7 @@
"textPound": "Sterlina",
"textPt": "pt",
"textRange": "Intervallo",
+ "textRecommended": "Consigliato",
"textRemoveChart": "Eliminare il grafico",
"textRemoveShape": "Eliminare la forma",
"textReplace": "Sostituire",
@@ -560,13 +574,8 @@
"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",
- "textArrange": "Arrange",
- "textCancel": "Cancel",
"textChangeShape": "Change Shape",
- "textDeleteImage": "Delete Image",
- "textDeleteLink": "Delete Link",
- "textDone": "Done",
- "textRecommended": "Recommended"
+ "textDeleteImage": "Delete Image"
},
"Settings": {
"advCSVOptions": "Scegliere le opzioni CSV",
diff --git a/apps/spreadsheeteditor/mobile/locale/ja.json b/apps/spreadsheeteditor/mobile/locale/ja.json
index 8f63526f7..223c492b9 100644
--- a/apps/spreadsheeteditor/mobile/locale/ja.json
+++ b/apps/spreadsheeteditor/mobile/locale/ja.json
@@ -243,7 +243,16 @@
"unknownErrorText": "不明なエラー",
"uploadImageExtMessage": "不明なイメージ形式",
"uploadImageFileCountMessage": "アップロードしたイメージがない",
- "uploadImageSizeMessage": "イメージのサイズの上限が超えさせました。サイズの上限が25MB。"
+ "uploadImageSizeMessage": "イメージのサイズの上限が超えさせました。サイズの上限が25MB。",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
+ "textCancel": "Cancel",
+ "textOk": "Ok"
},
"LongActions": {
"advDRMPassword": "パスワード",
diff --git a/apps/spreadsheeteditor/mobile/locale/ko.json b/apps/spreadsheeteditor/mobile/locale/ko.json
index 99f2a4061..a728bda2e 100644
--- a/apps/spreadsheeteditor/mobile/locale/ko.json
+++ b/apps/spreadsheeteditor/mobile/locale/ko.json
@@ -243,7 +243,16 @@
"uploadImageExtMessage": "알수 없는 이미지 형식입니다.",
"uploadImageFileCountMessage": "이미지가 업로드되지 않았습니다.",
"uploadImageSizeMessage": "이미지 크기 제한을 초과했습니다.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
+ "textCancel": "Cancel",
+ "textOk": "Ok"
},
"LongActions": {
"advDRMPassword": "암호",
diff --git a/apps/spreadsheeteditor/mobile/locale/lo.json b/apps/spreadsheeteditor/mobile/locale/lo.json
index 3253cfbaa..6d98ad24b 100644
--- a/apps/spreadsheeteditor/mobile/locale/lo.json
+++ b/apps/spreadsheeteditor/mobile/locale/lo.json
@@ -243,7 +243,16 @@
"uploadImageExtMessage": "ບໍ່ຮູ້ສາເຫດຂໍ້ຜິພາດຮູບແບບຂອງຮູບ",
"uploadImageFileCountMessage": "ບໍ່ມີຮູບພາບອັບໂຫລດ",
"uploadImageSizeMessage": "ຮູບພາບໃຫຍ່ເກີນໄປ. ຂະຫນາດສູງສຸດແມ່ນ 25 MB.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
+ "textCancel": "Cancel",
+ "textOk": "Ok"
},
"LongActions": {
"advDRMPassword": "ລະຫັດຜ່ານ",
diff --git a/apps/spreadsheeteditor/mobile/locale/lv.json b/apps/spreadsheeteditor/mobile/locale/lv.json
index a148799bd..024924001 100644
--- a/apps/spreadsheeteditor/mobile/locale/lv.json
+++ b/apps/spreadsheeteditor/mobile/locale/lv.json
@@ -243,7 +243,16 @@
"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.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "textCancel": "Cancel",
+ "textOk": "Ok",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Loading data...",
diff --git a/apps/spreadsheeteditor/mobile/locale/ms.json b/apps/spreadsheeteditor/mobile/locale/ms.json
index 78cf19104..dda3c61d2 100644
--- a/apps/spreadsheeteditor/mobile/locale/ms.json
+++ b/apps/spreadsheeteditor/mobile/locale/ms.json
@@ -243,7 +243,16 @@
"uploadImageExtMessage": "Format imej yang tidak diketahui.",
"uploadImageFileCountMessage": "Tiada Imej dimuat naik.",
"uploadImageSizeMessage": "Imej terlalu besar. Saiz maksimum adalah 25 MB.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
+ "textCancel": "Cancel",
+ "textOk": "Ok"
},
"LongActions": {
"advDRMPassword": "Kata laluan",
diff --git a/apps/spreadsheeteditor/mobile/locale/nb.json b/apps/spreadsheeteditor/mobile/locale/nb.json
index a148799bd..024924001 100644
--- a/apps/spreadsheeteditor/mobile/locale/nb.json
+++ b/apps/spreadsheeteditor/mobile/locale/nb.json
@@ -243,7 +243,16 @@
"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.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "textCancel": "Cancel",
+ "textOk": "Ok",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Loading data...",
diff --git a/apps/spreadsheeteditor/mobile/locale/nl.json b/apps/spreadsheeteditor/mobile/locale/nl.json
index 2139acd09..5010701ca 100644
--- a/apps/spreadsheeteditor/mobile/locale/nl.json
+++ b/apps/spreadsheeteditor/mobile/locale/nl.json
@@ -243,7 +243,16 @@
"uploadImageFileCountMessage": "Geen afbeeldingen geüpload.",
"uploadImageSizeMessage": "De afbeelding is te groot. De maximale grootte is 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.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
+ "textCancel": "Cancel",
+ "textOk": "Ok"
},
"LongActions": {
"advDRMPassword": "Wachtwoord",
diff --git a/apps/spreadsheeteditor/mobile/locale/pl.json b/apps/spreadsheeteditor/mobile/locale/pl.json
index a148799bd..024924001 100644
--- a/apps/spreadsheeteditor/mobile/locale/pl.json
+++ b/apps/spreadsheeteditor/mobile/locale/pl.json
@@ -243,7 +243,16 @@
"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.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "textCancel": "Cancel",
+ "textOk": "Ok",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Loading data...",
diff --git a/apps/spreadsheeteditor/mobile/locale/pt-pt.json b/apps/spreadsheeteditor/mobile/locale/pt-pt.json
index 16439a8fc..3e833be6f 100644
--- a/apps/spreadsheeteditor/mobile/locale/pt-pt.json
+++ b/apps/spreadsheeteditor/mobile/locale/pt-pt.json
@@ -243,7 +243,16 @@
"unknownErrorText": "Erro desconhecido.",
"uploadImageExtMessage": "Formato de imagem desconhecido.",
"uploadImageFileCountMessage": "Nenhuma imagem foi carregada.",
- "uploadImageSizeMessage": "A imagem é muito grande. O tamanho máximo é de 25 MB."
+ "uploadImageSizeMessage": "A imagem é muito grande. O tamanho máximo é de 25 MB.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
+ "textCancel": "Cancel",
+ "textOk": "Ok"
},
"LongActions": {
"advDRMPassword": "Palavra-passe",
diff --git a/apps/spreadsheeteditor/mobile/locale/pt.json b/apps/spreadsheeteditor/mobile/locale/pt.json
index e0bbebbf3..1ef3b6dc2 100644
--- a/apps/spreadsheeteditor/mobile/locale/pt.json
+++ b/apps/spreadsheeteditor/mobile/locale/pt.json
@@ -209,6 +209,11 @@
"errorFrmlMaxReference": "Você não pode inserir esta fórmula porque ela tem muitos valores, referências de células, e/ou nomes.",
"errorFrmlMaxTextLength": "Os valores de texto nas fórmulas são limitados a 255 caracteres. Use a função CONCATENAR ou o operador de concatenação (&)",
"errorFrmlWrongReferences": "A função refere-se a uma folha que não existe. Por favor, verifique os dados e tente novamente.",
+ "errorInconsistentExt": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo não corresponde à extensão do arquivo.",
+ "errorInconsistentExtDocx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a documentos de texto (por exemplo, docx), mas o arquivo tem a extensão inconsistente: %1.",
+ "errorInconsistentExtPdf": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a um dos seguintes formatos: pdf/djvu/xps/oxps, mas o arquivo tem a extensão inconsistente: %1.",
+ "errorInconsistentExtPptx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a apresentações (por exemplo, pptx), mas o arquivo tem a extensão inconsistente: %1.",
+ "errorInconsistentExtXlsx": "Ocorreu um erro ao abrir o arquivo. O conteúdo do arquivo corresponde a planilhas (por exemplo, xlsx), mas o arquivo tem a extensão inconsistente: %1.",
"errorInvalidRef": "Inserir um nome correto para a seleção ou referência válida para ir para.",
"errorKeyEncrypt": "Descritor de chave desconhecido",
"errorKeyExpire": "Descritor de chave expirado",
@@ -239,16 +244,21 @@
"pastInMergeAreaError": "Não é possível alterar uma parte de uma célula mesclada",
"saveErrorText": "Ocorreu um erro ao gravar o arquivo",
"scriptLoadError": "A conexão está muito lenta, alguns dos componentes não puderam ser carregados. Por favor recarregue a página.",
+ "textCancel": "Cancelar",
"textErrorPasswordIsNotCorrect": "A senha fornecida não está correta. Verifique se a tecla CAPS LOCK está desligada e use a capitalização correta.",
+ "textOk": "OK",
"unknownErrorText": "Erro desconhecido.",
"uploadImageExtMessage": "Formato de imagem desconhecido.",
"uploadImageFileCountMessage": "Sem imagens carregadas.",
- "uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB."
+ "uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"advDRMPassword": "Senha",
"applyChangesTextText": "Carregando dados...",
"applyChangesTitleText": "Carregando dados",
+ "confirmMaxChangesSize": "O tamanho das ações excede a limitação definida para seu servidor. Pressione \"Desfazer\" para cancelar sua última ação ou pressione \"Continue\" para manter a ação localmente (você precisa baixar o arquivo ou copiar seu conteúdo para garantir que nada seja perdido).",
"confirmMoveCellRange": "O intervalo de células de destino pode conter dados. Continuar a operação?",
"confirmPutMergeRange": "Os dados da fonte contêm células fundidas. Serão não fundidas antes de serem coladas na tabela.",
"confirmReplaceFormulaInTable": "As fórmulas na linha do cabeçalho serão removidas e convertidas em texto estático. Deseja continuar?",
@@ -274,20 +284,19 @@
"saveTextText": "Salvando documento...",
"saveTitleText": "Salvando documento",
"textCancel": "Cancelar",
+ "textContinue": "Continuar",
"textErrorWrongPassword": "A senha que você forneceu não está correta.",
"textLoadingDocument": "Carregando documento",
"textNo": "Não",
"textOk": "OK",
+ "textUndo": "Desfazer",
"textUnlockRange": "Desbloquear intervalo",
"textUnlockRangeWarning": "Um intervalo que você está tentando alterar está protegido por senha.",
"textYes": "Sim",
"txtEditingMode": "Definir modo de edição...",
"uploadImageTextText": "Carregando imagem...",
"uploadImageTitleText": "Carregando imagem",
- "waitText": "Por favor, aguarde...",
- "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server. Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
- "textContinue": "Continue",
- "textUndo": "Undo"
+ "waitText": "Por favor, aguarde..."
},
"Statusbar": {
"notcriticalErrorTitle": "Aviso",
@@ -304,7 +313,7 @@
"textMore": "Mais",
"textMove": "Mover",
"textMoveBefore": "Mover antes da folha",
- "textMoveToEnd": "(Mover para fim)",
+ "textMoveToEnd": "(Mover para o final)",
"textOk": "OK",
"textRename": "Renomear",
"textRenameSheet": "Renomear Folha",
diff --git a/apps/spreadsheeteditor/mobile/locale/ro.json b/apps/spreadsheeteditor/mobile/locale/ro.json
index 6412dc862..ce9123fd2 100644
--- a/apps/spreadsheeteditor/mobile/locale/ro.json
+++ b/apps/spreadsheeteditor/mobile/locale/ro.json
@@ -243,7 +243,16 @@
"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.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
+ "textCancel": "Cancel",
+ "textOk": "Ok"
},
"LongActions": {
"advDRMPassword": "Parola",
diff --git a/apps/spreadsheeteditor/mobile/locale/ru.json b/apps/spreadsheeteditor/mobile/locale/ru.json
index 27734a7e5..15d2e055b 100644
--- a/apps/spreadsheeteditor/mobile/locale/ru.json
+++ b/apps/spreadsheeteditor/mobile/locale/ru.json
@@ -209,6 +209,11 @@
"errorFrmlMaxReference": "Нельзя ввести эту формулу, так как она содержит слишком много значений, ссылок на ячейки и/или имен.",
"errorFrmlMaxTextLength": "Длина текстовых значений в формулах не может превышать 255 символов. Используйте функцию СЦЕПИТЬ или оператор сцепления (&)",
"errorFrmlWrongReferences": "Функция ссылается на лист, который не существует. Проверьте данные и повторите попытку.",
+ "errorInconsistentExt": "При открытии файла произошла ошибка. Содержимое файла не соответствует расширению файла.",
+ "errorInconsistentExtDocx": "При открытии файла произошла ошибка. Содержимое файла соответствует документам (например, docx), но файл имеет несоответствующее расширение: %1.",
+ "errorInconsistentExtPdf": "При открытии файла произошла ошибка. Содержимое файла соответствует одному из следующих форматов: pdf/djvu/xps/oxps, но файл имеет несоответствующее расширение: %1.",
+ "errorInconsistentExtPptx": "При открытии файла произошла ошибка. Содержимое файла соответствует презентациям (например, pptx), но файл имеет несоответствующее расширение: %1.",
+ "errorInconsistentExtXlsx": "При открытии файла произошла ошибка. Содержимое файла соответствует электронным таблицам (например, xlsx), но файл имеет несоответствующее расширение: %1.",
"errorInvalidRef": "Введите корректное имя для выделенного диапазона или допустимую ссылку для перехода.",
"errorKeyEncrypt": "Неизвестный дескриптор ключа",
"errorKeyExpire": "Срок действия дескриптора ключа истек",
@@ -227,6 +232,8 @@
"errorSessionIdle": "Документ долгое время не редактировался. Пожалуйста, обновите страницу.",
"errorSessionToken": "Подключение к серверу было прервано. Пожалуйста, обновите страницу.",
"errorStockChart": "Неверный порядок строк. Чтобы создать биржевую диаграмму, расположите данные на листе в следующем порядке: цена открытия, максимальная цена, минимальная цена, цена закрытия.",
+ "errorToken": "Токен безопасности документа имеет неправильный формат. Пожалуйста, обратитесь к администратору Сервера документов.",
+ "errorTokenExpire": "Истек срок действия токена безопасности документа. Пожалуйста, обратитесь к администратору Сервера документов.",
"errorUnexpectedGuid": "Внешняя ошибка. Непредвиденный идентификатор GUID. Пожалуйста, обратитесь в службу поддержки.",
"errorUpdateVersionOnDisconnect": "Соединение было восстановлено, и версия файла изменилась. Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.",
"errorUserDrop": "В настоящий момент файл недоступен.",
@@ -239,7 +246,9 @@
"pastInMergeAreaError": "Нельзя изменить часть объединенной ячейки",
"saveErrorText": "При сохранении файла произошла ошибка",
"scriptLoadError": "Слишком медленное подключение, некоторые компоненты не удалось загрузить. Пожалуйста, обновите страницу.",
+ "textCancel": "Отмена",
"textErrorPasswordIsNotCorrect": "Неверный пароль. Убедитесь, что отключена клавиша CAPS LOCK и используется правильный регистр.",
+ "textOk": "Ok",
"unknownErrorText": "Неизвестная ошибка.",
"uploadImageExtMessage": "Неизвестный формат рисунка.",
"uploadImageFileCountMessage": "Ни одного рисунка не загружено.",
diff --git a/apps/spreadsheeteditor/mobile/locale/sk.json b/apps/spreadsheeteditor/mobile/locale/sk.json
index ceaf7a402..5ea9fc8a0 100644
--- a/apps/spreadsheeteditor/mobile/locale/sk.json
+++ b/apps/spreadsheeteditor/mobile/locale/sk.json
@@ -243,7 +243,16 @@
"uploadImageExtMessage": "Neznámy formát obrázka.",
"uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.",
"uploadImageSizeMessage": "Obrázok je príliš veľký. Maximálna veľkosť je 25 MB.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
+ "textCancel": "Cancel",
+ "textOk": "Ok"
},
"LongActions": {
"advDRMPassword": "Heslo",
diff --git a/apps/spreadsheeteditor/mobile/locale/sl.json b/apps/spreadsheeteditor/mobile/locale/sl.json
index 7d4b037b4..8d1513a9d 100644
--- a/apps/spreadsheeteditor/mobile/locale/sl.json
+++ b/apps/spreadsheeteditor/mobile/locale/sl.json
@@ -101,227 +101,9 @@
"warnProcessRightsChange": "You don't have permission to edit the file."
}
},
- "About": {
- "textAbout": "About",
- "textAddress": "Address",
- "textBack": "Back",
- "textEditor": "Spreadsheet Editor",
- "textEmail": "Email",
- "textPoweredBy": "Powered By",
- "textTel": "Tel",
- "textVersion": "Version"
- },
- "Common": {
- "Collaboration": {
- "notcriticalErrorTitle": "Warning",
- "textAddComment": "Add Comment",
- "textAddReply": "Add Reply",
- "textBack": "Back",
- "textCancel": "Cancel",
- "textCollaboration": "Collaboration",
- "textComments": "Comments",
- "textDeleteComment": "Delete Comment",
- "textDeleteReply": "Delete Reply",
- "textDone": "Done",
- "textEdit": "Edit",
- "textEditComment": "Edit Comment",
- "textEditReply": "Edit Reply",
- "textEditUser": "Users who are editing the file:",
- "textMessageDeleteComment": "Do you really want to delete this comment?",
- "textMessageDeleteReply": "Do you really want to delete this reply?",
- "textNoComments": "This document doesn't contain comments",
- "textOk": "Ok",
- "textReopen": "Reopen",
- "textResolve": "Resolve",
- "textSharingSettings": "Sharing Settings",
- "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.",
- "textUsers": "Users"
- },
- "ThemeColorPalette": {
- "textCustomColors": "Custom Colors",
- "textStandartColors": "Standard Colors",
- "textThemeColors": "Theme Colors"
- }
- },
- "ContextMenu": {
- "errorCopyCutPaste": "Copy, cut, and paste actions using the context menu will be performed within the current file only.",
- "errorInvalidLink": "The link reference does not exist. Please correct the link or delete it.",
- "menuAddComment": "Add Comment",
- "menuAddLink": "Add Link",
- "menuCancel": "Cancel",
- "menuCell": "Cell",
- "menuDelete": "Delete",
- "menuEdit": "Edit",
- "menuEditLink": "Edit Link",
- "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",
- "textOk": "Ok",
- "txtWarnUrl": "Clicking this link can be harmful to your device and data. Are you sure you want to continue?",
- "warnMergeLostData": "Only the data from the upper-left cell will remain in the merged cell. Are you sure you want to continue?"
- },
- "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",
- "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.",
- "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",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
- "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",
- "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",
- "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": "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 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."
- },
- "LongActions": {
- "advDRMPassword": "Password",
- "applyChangesTextText": "Loading data...",
- "applyChangesTitleText": "Loading Data",
- "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server. Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
- "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",
- "textContinue": "Continue",
- "textErrorWrongPassword": "The password you supplied is not correct.",
- "textLoadingDocument": "Loading document",
- "textNo": "No",
- "textOk": "Ok",
- "textUndo": "Undo",
- "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..."
- },
- "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.",
- "textHidden": "Hidden",
- "textHide": "Hide",
- "textMore": "More",
- "textMove": "Move",
- "textMoveBefore": "Move before sheet",
- "textMoveToEnd": "(Move to end)",
- "textOk": "Ok",
- "textRename": "Rename",
- "textRenameSheet": "Rename Sheet",
- "textSheet": "Sheet",
- "textSheetName": "Sheet Name",
- "textTabColor": "Tab Color",
- "textUnhide": "Unhide",
- "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?"
- },
- "Toolbar": {
- "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
- "dlgLeaveTitleText": "You leave the application",
- "leaveButtonText": "Leave this Page",
- "stayButtonText": "Stay on this Page"
- },
"View": {
"Add": {
+ "sCatTextAndData": "Besedilo in podatki",
"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",
@@ -333,7 +115,6 @@
"sCatLookupAndReference": "Lookup and Reference",
"sCatMathematic": "Math and trigonometry",
"sCatStatistical": "Statistical",
- "sCatTextAndData": "Text and data",
"textAddLink": "Add Link",
"textAddress": "Address",
"textAllTableHint": "Returns the entire contents of the table or specified table columns including column headers, data and total rows",
@@ -704,5 +485,233 @@
"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?"
}
+ },
+ "About": {
+ "textAbout": "About",
+ "textAddress": "Address",
+ "textBack": "Back",
+ "textEditor": "Spreadsheet Editor",
+ "textEmail": "Email",
+ "textPoweredBy": "Powered By",
+ "textTel": "Tel",
+ "textVersion": "Version"
+ },
+ "Common": {
+ "Collaboration": {
+ "notcriticalErrorTitle": "Warning",
+ "textAddComment": "Add Comment",
+ "textAddReply": "Add Reply",
+ "textBack": "Back",
+ "textCancel": "Cancel",
+ "textCollaboration": "Collaboration",
+ "textComments": "Comments",
+ "textDeleteComment": "Delete Comment",
+ "textDeleteReply": "Delete Reply",
+ "textDone": "Done",
+ "textEdit": "Edit",
+ "textEditComment": "Edit Comment",
+ "textEditReply": "Edit Reply",
+ "textEditUser": "Users who are editing the file:",
+ "textMessageDeleteComment": "Do you really want to delete this comment?",
+ "textMessageDeleteReply": "Do you really want to delete this reply?",
+ "textNoComments": "This document doesn't contain comments",
+ "textOk": "Ok",
+ "textReopen": "Reopen",
+ "textResolve": "Resolve",
+ "textSharingSettings": "Sharing Settings",
+ "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.",
+ "textUsers": "Users"
+ },
+ "ThemeColorPalette": {
+ "textCustomColors": "Custom Colors",
+ "textStandartColors": "Standard Colors",
+ "textThemeColors": "Theme Colors"
+ }
+ },
+ "ContextMenu": {
+ "errorCopyCutPaste": "Copy, cut, and paste actions using the context menu will be performed within the current file only.",
+ "errorInvalidLink": "The link reference does not exist. Please correct the link or delete it.",
+ "menuAddComment": "Add Comment",
+ "menuAddLink": "Add Link",
+ "menuCancel": "Cancel",
+ "menuCell": "Cell",
+ "menuDelete": "Delete",
+ "menuEdit": "Edit",
+ "menuEditLink": "Edit Link",
+ "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",
+ "textOk": "Ok",
+ "txtWarnUrl": "Clicking this link can be harmful to your device and data. Are you sure you want to continue?",
+ "warnMergeLostData": "Only the data from the upper-left cell will remain in the merged cell. Are you sure you want to continue?"
+ },
+ "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",
+ "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.",
+ "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",
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "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.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "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",
+ "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.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
+ "errorUnexpectedGuid": "External error. Unexpected Guid. Please, contact support.",
+ "errorUpdateVersionOnDisconnect": "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 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.",
+ "textCancel": "Cancel",
+ "textErrorPasswordIsNotCorrect": "The password you supplied is not correct. Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.",
+ "textOk": "Ok",
+ "unknownErrorText": "Unknown error.",
+ "uploadImageExtMessage": "Unknown image format.",
+ "uploadImageFileCountMessage": "No images uploaded.",
+ "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
+ },
+ "LongActions": {
+ "advDRMPassword": "Password",
+ "applyChangesTextText": "Loading data...",
+ "applyChangesTitleText": "Loading Data",
+ "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server. Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
+ "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",
+ "textContinue": "Continue",
+ "textErrorWrongPassword": "The password you supplied is not correct.",
+ "textLoadingDocument": "Loading document",
+ "textNo": "No",
+ "textOk": "Ok",
+ "textUndo": "Undo",
+ "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..."
+ },
+ "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.",
+ "textHidden": "Hidden",
+ "textHide": "Hide",
+ "textMore": "More",
+ "textMove": "Move",
+ "textMoveBefore": "Move before sheet",
+ "textMoveToEnd": "(Move to end)",
+ "textOk": "Ok",
+ "textRename": "Rename",
+ "textRenameSheet": "Rename Sheet",
+ "textSheet": "Sheet",
+ "textSheetName": "Sheet Name",
+ "textTabColor": "Tab Color",
+ "textUnhide": "Unhide",
+ "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?"
+ },
+ "Toolbar": {
+ "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
+ "dlgLeaveTitleText": "You leave the application",
+ "leaveButtonText": "Leave this Page",
+ "stayButtonText": "Stay on this Page"
}
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/mobile/locale/tr.json b/apps/spreadsheeteditor/mobile/locale/tr.json
index bfcd4a065..55ca57b25 100644
--- a/apps/spreadsheeteditor/mobile/locale/tr.json
+++ b/apps/spreadsheeteditor/mobile/locale/tr.json
@@ -243,7 +243,16 @@
"uploadImageFileCountMessage": "Resim yüklenmedi.",
"uploadImageSizeMessage": "Görüntü çok büyük. Maksimum boyut 25 MB'dir.",
"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.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
+ "textCancel": "Cancel",
+ "textOk": "Ok"
},
"LongActions": {
"advDRMPassword": "Şifre",
diff --git a/apps/spreadsheeteditor/mobile/locale/uk.json b/apps/spreadsheeteditor/mobile/locale/uk.json
index 104e06819..0916c2fd2 100644
--- a/apps/spreadsheeteditor/mobile/locale/uk.json
+++ b/apps/spreadsheeteditor/mobile/locale/uk.json
@@ -209,6 +209,11 @@
"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.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
"errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.",
"errorKeyEncrypt": "Unknown key descriptor",
"errorKeyExpire": "Key descriptor expired",
@@ -227,6 +232,8 @@
"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.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
"errorUnexpectedGuid": "External error. Unexpected Guid. Please, contact support.",
"errorUpdateVersionOnDisconnect": "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.",
@@ -239,7 +246,9 @@
"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.",
+ "textCancel": "Cancel",
"textErrorPasswordIsNotCorrect": "The password you supplied is not correct. Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.",
+ "textOk": "Ok",
"unknownErrorText": "Unknown error.",
"uploadImageExtMessage": "Unknown image format.",
"uploadImageFileCountMessage": "No images uploaded.",
diff --git a/apps/spreadsheeteditor/mobile/locale/vi.json b/apps/spreadsheeteditor/mobile/locale/vi.json
index a148799bd..024924001 100644
--- a/apps/spreadsheeteditor/mobile/locale/vi.json
+++ b/apps/spreadsheeteditor/mobile/locale/vi.json
@@ -243,7 +243,16 @@
"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.",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "textCancel": "Cancel",
+ "textOk": "Ok",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator."
},
"LongActions": {
"applyChangesTextText": "Loading data...",
diff --git a/apps/spreadsheeteditor/mobile/locale/zh-tw.json b/apps/spreadsheeteditor/mobile/locale/zh-tw.json
index 91ccb6930..8a0379d16 100644
--- a/apps/spreadsheeteditor/mobile/locale/zh-tw.json
+++ b/apps/spreadsheeteditor/mobile/locale/zh-tw.json
@@ -243,7 +243,16 @@
"uploadImageExtMessage": "圖片格式未知。",
"uploadImageFileCountMessage": "沒有上傳圖片。",
"uploadImageSizeMessage": "圖像超出最大大小限制。最大大小為25MB。",
- "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading."
+ "errorDirectUrl": "Please verify the link to the document. This link must be a direct link to the file for downloading.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
+ "textCancel": "Cancel",
+ "textOk": "Ok"
},
"LongActions": {
"advDRMPassword": "密碼",
diff --git a/apps/spreadsheeteditor/mobile/locale/zh.json b/apps/spreadsheeteditor/mobile/locale/zh.json
index e20ebcf88..c24738d98 100644
--- a/apps/spreadsheeteditor/mobile/locale/zh.json
+++ b/apps/spreadsheeteditor/mobile/locale/zh.json
@@ -243,12 +243,22 @@
"unknownErrorText": "未知错误。",
"uploadImageExtMessage": "未知图像格式。",
"uploadImageFileCountMessage": "没有图片上传",
- "uploadImageSizeMessage": "图片太大了。最大允许的大小是 25 MB."
+ "uploadImageSizeMessage": "图片太大了。最大允许的大小是 25 MB.",
+ "errorInconsistentExt": "An error has occurred while opening the file. The file content does not match the file extension.",
+ "errorInconsistentExtDocx": "An error has occurred while opening the file. The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPdf": "An error has occurred while opening the file. The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtPptx": "An error has occurred while opening the file. The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
+ "errorInconsistentExtXlsx": "An error has occurred while opening the file. The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
+ "errorToken": "The document security token is not correctly formed. Please contact your Document Server administrator.",
+ "errorTokenExpire": "The document security token has expired. Please contact your Document Server administrator.",
+ "textCancel": "Cancel",
+ "textOk": "Ok"
},
"LongActions": {
"advDRMPassword": "密码",
"applyChangesTextText": "数据加载中…",
"applyChangesTitleText": "数据加载中",
+ "confirmMaxChangesSize": "行动的大小超过了对您服务器设置的限制。 按 \"撤消\"取消您的最后一次行动,或按\"继续\"在本地保留该行动(您需要下载文件或复制其内容以确保没有任何损失)。",
"confirmMoveCellRange": "目标单元格范围中存在一些数据。你还要继续吗?",
"confirmPutMergeRange": "源数据包含已合并的单元格。 在贴入本表格之前,这些单元格会被解除合并。",
"confirmReplaceFormulaInTable": "出现在页头行里的公式将会被删除,转换成静态文本。 要继续吗?",
@@ -274,20 +284,19 @@
"saveTextText": "正在保存文档...",
"saveTitleText": "保存文件",
"textCancel": "取消",
+ "textContinue": "发送",
"textErrorWrongPassword": "输入的密码不正确。",
"textLoadingDocument": "文件加载中…",
"textNo": "不",
"textOk": "好",
+ "textUndo": "撤消",
"textUnlockRange": "取消锁定区域",
"textUnlockRangeWarning": "您尝试更改的区域有密码保护。",
"textYes": "是",
"txtEditingMode": "设置编辑模式..",
"uploadImageTextText": "上传图片...",
"uploadImageTitleText": "图片上传中",
- "waitText": "请稍候...",
- "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server. Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
- "textContinue": "Continue",
- "textUndo": "Undo"
+ "waitText": "请稍候..."
},
"Statusbar": {
"notcriticalErrorTitle": "警告",
diff --git a/apps/spreadsheeteditor/mobile/src/controller/Error.jsx b/apps/spreadsheeteditor/mobile/src/controller/Error.jsx
index d6c2b29f5..aad11f176 100644
--- a/apps/spreadsheeteditor/mobile/src/controller/Error.jsx
+++ b/apps/spreadsheeteditor/mobile/src/controller/Error.jsx
@@ -3,7 +3,7 @@ import { inject } from 'mobx-react';
import { f7 } from 'framework7-react';
import { useTranslation } from 'react-i18next';
-const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocument}) => {
+const ErrorController = inject('storeAppOptions','storeSpreadsheetInfo')(({storeAppOptions, storeSpreadsheetInfo, LoadingDocument}) => {
const { t } = useTranslation();
const _t = t("Error", { returnObjects: true });
@@ -227,11 +227,11 @@ const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocu
break;
case Asc.c_oAscError.ID.VKeyEncrypt:
- config.msg = _t.errorKeyEncrypt;
+ config.msg = _t.errorToken;
break;
case Asc.c_oAscError.ID.KeyExpire:
- config.msg = _t.errorKeyExpire;
+ config.msg = _t.errorTokenExpire;
break;
case Asc.c_oAscError.ID.UserCountExceed:
@@ -328,6 +328,20 @@ const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocu
config.msg = _t.errorDirectUrl;
break;
+ case Asc.c_oAscError.ID.ConvertationOpenFormat:
+ let docExt = storeSpreadsheetInfo.dataDoc ? storeSpreadsheetInfo.dataDoc.fileType || '' : '';
+ if (errData === 'pdf')
+ config.msg = _t.errorInconsistentExtPdf.replace('%1', docExt);
+ else if (errData === 'docx')
+ config.msg = _t.errorInconsistentExtDocx.replace('%1', docExt);
+ else if (errData === 'xlsx')
+ config.msg = _t.errorInconsistentExtXlsx.replace('%1', docExt);
+ else if (errData === 'pptx')
+ config.msg = _t.errorInconsistentExtPptx.replace('%1', docExt);
+ else
+ config.msg = _t.errorInconsistentExt;
+ break;
+
default:
config.msg = _t.errorDefaultMessage.replace('%1', id);
break;
diff --git a/apps/spreadsheeteditor/mobile/src/index_dev.html b/apps/spreadsheeteditor/mobile/src/index_dev.html
index b9b13f4c9..3a7fab6c6 100644
--- a/apps/spreadsheeteditor/mobile/src/index_dev.html
+++ b/apps/spreadsheeteditor/mobile/src/index_dev.html
@@ -26,6 +26,7 @@
<% if ( htmlWebpackPlugin.options.skeleton.htmlscript ) { %>
<% } %>
diff --git a/build/package.json b/build/package.json
index d4ff44dbd..0a1e2c7b1 100644
--- a/build/package.json
+++ b/build/package.json
@@ -31,6 +31,6 @@
"devDependencies": {
"chai": "^4.3.6",
"grunt-mocha": "^1.2.0",
- "mocha": "^10.0.0"
+ "mocha": "^9.2.2"
}
}
diff --git a/vendor/framework7-react/package.json b/vendor/framework7-react/package.json
index 0d0d39ab3..b733ca927 100644
--- a/vendor/framework7-react/package.json
+++ b/vendor/framework7-react/package.json
@@ -33,7 +33,9 @@
"framework7-icons": "^3.0.1",
"framework7-react": "^7.0.8",
"i18next": "^21.8.9",
- "i18next-fetch-backend": "^5.0.0",
+ "i18next-fetch-backend": "^4.1.3",
+ "mobx": "^6.7.0",
+ "mobx-react": "^7.6.0",
"postcss": "^8.4.12",
"prop-types": "^15.7.2",
"react": "^18.1.0",
@@ -45,40 +47,38 @@
"url": "^0.11.0"
},
"devDependencies": {
- "@babel/core": "^7.12.10",
- "@babel/plugin-proposal-class-properties": "^7.12.1",
- "@babel/plugin-proposal-decorators": "^7.12.12",
+ "@babel/core": "^7.20.2",
+ "@babel/plugin-proposal-class-properties": "^7.18.6",
+ "@babel/plugin-proposal-decorators": "^7.20.2",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
- "@babel/plugin-transform-runtime": "^7.12.10",
- "@babel/preset-env": "^7.12.11",
- "@babel/preset-react": "^7.12.10",
- "@babel/runtime": "^7.12.5",
- "babel-loader": "^8.2.2",
- "chalk": "^5.0.1",
+ "@babel/plugin-transform-runtime": "^7.19.6",
+ "@babel/preset-env": "^7.20.2",
+ "@babel/preset-react": "^7.18.6",
+ "@babel/runtime": "^7.20.1",
+ "babel-loader": "^8.3.0",
+ "chalk": "^5.1.2",
"clean-webpack-plugin": "^4.0.0",
- "copy-webpack-plugin": "^11.0.0",
- "cpy-cli": "^4.1.0",
+ "copy-webpack-plugin": "^10.2.4",
+ "cpy-cli": "^4.2.0",
"cross-env": "^7.0.3",
- "css-loader": "^6.7.1",
- "css-minimizer-webpack-plugin": "^4.0.0",
+ "css-loader": "^6.7.2",
+ "css-minimizer-webpack-plugin": "^3.4.1",
"file-loader": "^6.2.0",
- "html-webpack-plugin": "^5.3.1",
+ "html-webpack-plugin": "^5.5.0",
"less": "^4.1.3",
- "less-loader": "^11.0.0",
- "mini-css-extract-plugin": "^2.6.0",
- "mobx": "^6.1.8",
- "mobx-react": "^7.1.0",
- "ora": "^6.1.0",
- "postcss-loader": "^7.0.0",
- "postcss-preset-env": "^7.7.1",
+ "less-loader": "^10.2.0",
+ "mini-css-extract-plugin": "^2.6.1",
+ "ora": "^6.1.2",
+ "postcss-loader": "^6.2.1",
+ "postcss-preset-env": "^7.6.0",
"rimraf": "^3.0.2",
"style-loader": "^3.3.1",
- "terser-webpack-plugin": "^5.1.3",
+ "terser-webpack-plugin": "^5.3.6",
"url-loader": "^4.1.1",
- "webpack": "^5.38.1",
- "webpack-cli": "^4.5.0",
- "webpack-dev-server": "^4.9.2",
- "workbox-webpack-plugin": "^6.1.2"
+ "webpack": "^5.75.0",
+ "webpack-cli": "^4.10.0",
+ "webpack-dev-server": "^4.11.1",
+ "workbox-webpack-plugin": "^6.5.4"
},
"optionalDependencies": {
"fsevents": "~2.3.2"