Merge branch 'release/v7.3.0' into feature/de-forms

This commit is contained in:
Julia Radzhabova 2022-11-18 18:56:37 +03:00
commit 288a7c2188
372 changed files with 10178 additions and 2332 deletions

View file

@ -193,6 +193,9 @@
change: false/true // hide/show feature in de/pe/sse change: false/true // hide/show feature in de/pe/sse
} / false / true // if false/true - use as init value in de/pe. use instead of customization.spellcheck parameter } / false / true // if false/true - use as init value in de/pe. use instead of customization.spellcheck parameter
}, },
font: {
name: "Arial",
},
chat: true, chat: true,
comments: true, comments: true,
zoom: 100, zoom: 100,

View file

@ -1368,6 +1368,23 @@ define([
props = {minScrollbarLength : this.minScrollbarLength}; props = {minScrollbarLength : this.minScrollbarLength};
this.scrollAlwaysVisible && (props.alwaysVisibleY = this.scrollAlwaysVisible); this.scrollAlwaysVisible && (props.alwaysVisibleY = this.scrollAlwaysVisible);
var menuUp = false;
if (this.parentMenu.menuAlign) {
var m = this.parentMenu.menuAlign.match(/^([a-z]+)-([a-z]+)/);
menuUp = (m[1]==='bl' || m[1]==='br');
}
if (menuUp) {
var bottom = top + menuH;
if (top<0) {
innerEl.css('max-height', (bottom - paddings - margins) + 'px');
menuRoot.css('top', 0);
this.scroller.update(props);
} else if (top>0 && innerEl.height() < this.options.restoreHeight) {
innerEl.css('max-height', (Math.min(bottom - paddings - margins, this.options.restoreHeight)) + 'px');
menuRoot.css('top', bottom - menuRoot.outerHeight());
this.scroller.update(props);
}
} else {
if (top + menuH > docH ) { if (top + menuH > docH ) {
innerEl.css('max-height', (docH - top - paddings - margins) + 'px'); innerEl.css('max-height', (docH - top - paddings - margins) + 'px');
this.scroller.update(props); this.scroller.update(props);
@ -1375,6 +1392,7 @@ define([
innerEl.css('max-height', (Math.min(docH - top - paddings - margins, this.options.restoreHeight)) + 'px'); innerEl.css('max-height', (Math.min(docH - top - paddings - margins, this.options.restoreHeight)) + 'px');
this.scroller.update(props); this.scroller.update(props);
} }
}
}, },
fillIndexesArray: function() { fillIndexesArray: function() {

View file

@ -145,7 +145,7 @@ define([
style : '', style : '',
itemTemplate: null, itemTemplate: null,
items : [], items : [],
menuAlign : 'tl-bl', menuAlign : 'tl-bl',//menu - parent
menuAlignEl : null, menuAlignEl : null,
offset : [0, 0], offset : [0, 0],
cyclic : true, cyclic : true,

View file

@ -74,6 +74,7 @@ define([
subEditStrings : {}, subEditStrings : {},
filter : undefined, filter : undefined,
hintmode : false, hintmode : false,
fullInfoHintMode: false,
viewmode: false, viewmode: false,
isSelectedComment : false, isSelectedComment : false,
uids : [], uids : [],
@ -186,6 +187,7 @@ define([
this.currentUserId = data.config.user.id; this.currentUserId = data.config.user.id;
this.sdkViewName = data['sdkviewname'] || this.sdkViewName; this.sdkViewName = data['sdkviewname'] || this.sdkViewName;
this.hintmode = data['hintmode'] || false; this.hintmode = data['hintmode'] || false;
this.fullInfoHintMode = data['fullInfoHintMode'] || false;
this.viewmode = data['viewmode'] || false; this.viewmode = data['viewmode'] || false;
} }
}, },
@ -966,11 +968,11 @@ define([
if (!comment) continue; if (!comment) continue;
if (this.subEditStrings[saveTxtId] && !hint) { if (this.subEditStrings[saveTxtId] && (comment.get('fullInfoInHint') || !hint)) {
comment.set('editTextInPopover', true); comment.set('editTextInPopover', true);
text = this.subEditStrings[saveTxtId]; text = this.subEditStrings[saveTxtId];
} }
else if (this.subEditStrings[saveTxtReplyId] && !hint) { else if (this.subEditStrings[saveTxtReplyId] && (comment.get('fullInfoInHint') || !hint)) {
comment.set('showReplyInPopover', true); comment.set('showReplyInPopover', true);
text = this.subEditStrings[saveTxtReplyId]; text = this.subEditStrings[saveTxtReplyId];
} }
@ -978,13 +980,16 @@ define([
comment.set('hint', !_.isUndefined(hint) ? hint : false); comment.set('hint', !_.isUndefined(hint) ? hint : false);
if (!hint && this.hintmode) { if (!hint && this.hintmode) {
if (same_uids && (this.uids.length === 0)) if (same_uids)
animate = false; animate = false;
if (this.oldUids.length && (0 === _.difference(this.oldUids, uids).length) && (0 === _.difference(uids, this.oldUids).length)) { if (this.oldUids.length && (0 === _.difference(this.oldUids, uids).length) && (0 === _.difference(uids, this.oldUids).length)) {
animate = false; animate = false;
this.oldUids = []; this.oldUids = [];
} }
if (same_uids && !apihint && !this.isModeChanged)
this.api.asc_selectComment(comment.get('uid'));
} }
if (this.animate) { if (this.animate) {
@ -1006,7 +1011,7 @@ define([
this.popoverComments.reset(comments); this.popoverComments.reset(comments);
if (this.popoverComments.findWhere({hide: false})) { if (this.popoverComments.findWhere({hide: false})) {
if (popover.isVisible()) { if (popover.isVisible() && (!same_uids || this.isModeChanged)) {
popover.hide(); popover.hide();
} }
@ -1355,6 +1360,7 @@ define([
removable : (this.mode.canDeleteComments || (data.asc_getUserId() == this.currentUserId)) && AscCommon.UserInfoParser.canDeleteComment(data.asc_getUserName()), removable : (this.mode.canDeleteComments || (data.asc_getUserId() == this.currentUserId)) && AscCommon.UserInfoParser.canDeleteComment(data.asc_getUserName()),
hide : !AscCommon.UserInfoParser.canViewComment(data.asc_getUserName()), hide : !AscCommon.UserInfoParser.canViewComment(data.asc_getUserName()),
hint : !this.mode.canComments, hint : !this.mode.canComments,
fullInfoInHint : this.fullInfoHintMode,
groupName : (groupname && groupname.length>1) ? groupname[1] : null groupName : (groupname && groupname.length>1) ? groupname[1] : null
}); });
if (comment) { if (comment) {

View file

@ -261,21 +261,21 @@ define([
})).render($('#box-document-title #slot-btn-dt-home')); })).render($('#box-document-title #slot-btn-dt-home'));
titlebuttons['home'] = {btn: header.btnHome}; titlebuttons['home'] = {btn: header.btnHome};
header.btnHome.on('click', event => { header.btnHome.on('click', function (e) {
native.execCommand('title:button', JSON.stringify({click: "home"})); native.execCommand('title:button', JSON.stringify({click: "home"}));
}); });
$('#id-box-doc-name').on({ $('#id-box-doc-name').on({
'dblclick': e => { 'dblclick': function (e) {
native.execCommand('title:dblclick', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY})) native.execCommand('title:dblclick', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY}))
}, },
'mousedown': e => { 'mousedown': function (e) {
native.execCommand('title:mousedown', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY})) native.execCommand('title:mousedown', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY}))
}, },
'mousemove': e => { 'mousemove': function (e) {
native.execCommand('title:mousemove', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY})) native.execCommand('title:mousemove', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY}))
}, },
'mouseup': e => { 'mouseup': function (e) {
native.execCommand('title:mouseup', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY})) native.execCommand('title:mouseup', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY}))
} }
}); });

View file

@ -401,7 +401,7 @@ define([
if (value.Get_SmallCaps() !== undefined) if (value.Get_SmallCaps() !== undefined)
proptext += ((value.Get_SmallCaps() ? '' : me.textNot) + me.textSmallCaps + ', '); proptext += ((value.Get_SmallCaps() ? '' : me.textNot) + me.textSmallCaps + ', ');
if (value.Get_VertAlign() !== undefined) if (value.Get_VertAlign() !== undefined)
proptext += (((value.Get_VertAlign()==1) ? me.textSuperScript : ((value.Get_VertAlign()==2) ? me.textSubScript : me.textBaseline)) + ', '); proptext += (((value.Get_VertAlign()===Asc.vertalign_SuperScript) ? me.textSuperScript : ((value.Get_VertAlign()===Asc.vertalign_SubScript) ? me.textSubScript : me.textBaseline)) + ', ');
if (value.Get_Color() !== undefined) if (value.Get_Color() !== undefined)
proptext += (me.textColor + ', '); proptext += (me.textColor + ', ');
if (value.Get_Highlight() !== undefined) if (value.Get_Highlight() !== undefined)

View file

@ -82,6 +82,7 @@ define([
hide : false, hide : false,
filtered : false, filtered : false,
hint : false, hint : false,
fullInfoInHint : false,
dummy : undefined, dummy : undefined,
editable : true, editable : true,
removable : true removable : true

View file

@ -7,11 +7,11 @@
<div class="color" style="display: inline-block; background-color: <% if (usercolor!==null) { %><%=usercolor%><% } else { %> #cfcfcf <% } %>; " ></div><%= scope.getEncodedName(parsedName) %> <div class="color" style="display: inline-block; background-color: <% if (usercolor!==null) { %><%=usercolor%><% } else { %> #cfcfcf <% } %>; " ></div><%= scope.getEncodedName(parsedName) %>
</div> </div>
<div class="user-date"><%=date%></div> <div class="user-date"><%=date%></div>
<% if (!editTextInPopover || hint || scope.viewmode) { %> <% if (!editTextInPopover || (hint && !fullInfoInHint) || scope.viewmode) { %>
<div oo_editor_input="true" tabindex="-1" class="user-message user-select"><%=scope.pickLink(comment)%></div> <div oo_editor_input="true" tabindex="-1" class="user-message user-select"><%=scope.pickLink(comment)%></div>
<% } else { %> <% } else { %>
<div class="inner-edit-ct"> <div class="inner-edit-ct">
<textarea class="msg-reply user-select" maxlength="maxCommLength" spellcheck="false" <% if (!!dummy) { %> placeholder="textMention"<% } %>><%=comment%></textarea> <textarea class="msg-reply user-select" maxlength="maxCommLength" spellcheck="false" <% if (!!dummy) { %> placeholder="textMentionComment"<% } %>><%=comment%></textarea>
<% if (hideAddReply) { %> <% if (hideAddReply) { %>
<button class="btn normal dlg-btn primary btn-inner-edit" id="id-comments-change-popover">textAdd</button> <button class="btn normal dlg-btn primary btn-inner-edit" id="id-comments-change-popover">textAdd</button>
<% } else { %> <% } else { %>
@ -37,7 +37,7 @@
<div class="user-date"><%=item.get("date")%></div> <div class="user-date"><%=item.get("date")%></div>
<% if (!item.get("editTextInPopover")) { %> <% if (!item.get("editTextInPopover")) { %>
<div oo_editor_input="true" tabindex="-1" class="user-message user-select"><%=scope.pickLink(item.get("reply"))%></div> <div oo_editor_input="true" tabindex="-1" class="user-message user-select"><%=scope.pickLink(item.get("reply"))%></div>
<% if (!hint && !scope.viewmode) { %> <% if ((fullInfoInHint || !hint) && !scope.viewmode) { %>
<div class="btns-reply-ct"> <div class="btns-reply-ct">
<% if (item.get("editable")) { %> <% if (item.get("editable")) { %>
<div class="btn-edit img-commonctrl" data-value="<%=item.get("id")%>"></div> <div class="btn-edit img-commonctrl" data-value="<%=item.get("id")%>"></div>
@ -61,7 +61,7 @@
<!-- add reply button --> <!-- add reply button -->
<% if (!showReplyInPopover && !hideAddReply && !hint && !scope.viewmode) { %> <% if (!showReplyInPopover && !hideAddReply && (fullInfoInHint || !hint) && !scope.viewmode) { %>
<% if (replys.length && !add_arrow) { %> <% if (replys.length && !add_arrow) { %>
<label class="user-reply" style="margin-left: 20px; margin-top: 5px;" role="presentation" tabindex="-1">textAddReply</label> <label class="user-reply" style="margin-left: 20px; margin-top: 5px;" role="presentation" tabindex="-1">textAddReply</label>
<% } else { %> <% } else { %>
@ -73,7 +73,7 @@
<% if (!editTextInPopover && !lock) { %> <% if (!editTextInPopover && !lock) { %>
<div class="edit-ct"> <div class="edit-ct">
<% if (!hint && !scope.viewmode) { %> <% if ((fullInfoInHint || !hint) && !scope.viewmode) { %>
<% if (editable) { %> <% if (editable) { %>
<div class="btn-edit img-commonctrl"></div> <div class="btn-edit img-commonctrl"></div>
<% } %> <% } %>
@ -81,9 +81,9 @@
<div class="btn-delete img-commonctrl"></div> <div class="btn-delete img-commonctrl"></div>
<% } %> <% } %>
<% } %> <% } %>
<% if (editable && !hint && !scope.viewmode) { %> <% if (editable && (fullInfoInHint || !hint) && !scope.viewmode) { %>
<div class="btn-resolve <% if (resolved) print('comment-resolved') %>" data-toggle="tooltip"></div> <div class="btn-resolve <% if (resolved) print('comment-resolved') %>" data-toggle="tooltip"></div>
<% } else if (!hint && (!editable || scope.viewmode) && resolved) { %> <% } else if ((fullInfoInHint || !hint) && (!editable || scope.viewmode) && resolved) { %>
<div class="icon-resolve i-comment-resolved" data-toggle="tooltip"></div> <div class="icon-resolve i-comment-resolved" data-toggle="tooltip"></div>
<% } %> <% } %>
</div> </div>
@ -93,7 +93,7 @@
<% if (showReplyInPopover) { %> <% if (showReplyInPopover) { %>
<div class="reply-ct"> <div class="reply-ct">
<textarea class="msg-reply user-select" placeholder="textAddReply" maxlength="maxCommLength" spellcheck="false"></textarea> <textarea class="msg-reply user-select" placeholder="textMentionReply" maxlength="maxCommLength" spellcheck="false"></textarea>
<button class="btn normal dlg-btn primary btn-reply" id="id-comments-change-popover">textReply</button> <button class="btn normal dlg-btn primary btn-reply" id="id-comments-change-popover">textReply</button>
<button class="btn normal dlg-btn btn-close">textClose</button> <button class="btn normal dlg-btn btn-close">textClose</button>
</div> </div>

View file

@ -68,6 +68,7 @@ if ( window.desktop ) {
delete params.uitheme; delete params.uitheme;
} else { } else {
localStorage.setItem("ui-theme-id", theme.id); localStorage.setItem("ui-theme-id", theme.id);
localStorage.removeItem("ui-theme-use-system");
} }
localStorage.removeItem("ui-theme"); localStorage.removeItem("ui-theme");

View file

@ -336,9 +336,24 @@ define([
// text box setup autosize input text // text box setup autosize input text
this.setupAutoSizingTextBox(); 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) { updateLayout: function (applyUsersAutoSizig) {
var me = this; var me = this;
var height = this.panelBox.height(); var height = this.panelBox.height();

View file

@ -98,6 +98,17 @@ define([
var text = $(this.el).find('textarea'); var text = $(this.el).find('textarea');
return (text && text.length) ? text.val().trim() : ''; 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 () { autoHeightTextBox: function () {
var view = this, var view = this,
textBox = $(this.el).find('textarea'), textBox = $(this.el).find('textarea'),
@ -127,13 +138,19 @@ define([
view.autoScrollToEditButtons(); view.autoScrollToEditButtons();
} }
function onTextareaInput(event) {
updateTextBoxHeight();
view.disableTextBoxButton($(event.target));
}
if (textBox && textBox.length) { if (textBox && textBox.length) {
domTextBox = textBox.get(0); domTextBox = textBox.get(0);
view.disableTextBoxButton(textBox);
if (domTextBox) { if (domTextBox) {
lineHeight = parseInt(textBox.css('lineHeight'), 10) * 0.25; lineHeight = parseInt(textBox.css('lineHeight'), 10) * 0.25;
updateTextBoxHeight(); updateTextBoxHeight();
textBox.bind('input propertychange', updateTextBoxHeight) textBox.bind('input propertychange', onTextareaInput)
} }
} }
@ -171,7 +188,7 @@ define([
addCommentHeight: 45, addCommentHeight: 45,
newCommentHeight: 110, newCommentHeight: 110,
textBoxAutoSizeLocked: undefined, // disable autosize textbox textBoxAutoSizeLocked: undefined, // disable autoHeightTextBoxsize textbox
viewmode: false, viewmode: false,
_commentsViewOnItemClick: function (picker, item, record, e) { _commentsViewOnItemClick: function (picker, item, record, e) {
@ -694,7 +711,17 @@ define([
this.layout.setResizeValue(0, container.height() - this.addCommentHeight); 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 () { autoHeightTextBox: function () {
var me = this, domTextBox = null, lineHeight = 0, minHeight = 44; var me = this, domTextBox = null, lineHeight = 0, minHeight = 44;
var textBox = $('#comment-msg-new', this.el); var textBox = $('#comment-msg-new', this.el);
@ -736,9 +763,15 @@ define([
Math.min(height - contentHeight - textBoxMinHeightIndent, height - me.newCommentHeight))); 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; lineHeight = parseInt(textBox.css('lineHeight'), 10) * 0.25;
updateTextBoxHeight(); updateTextBoxHeight();
textBox.bind('input propertychange', updateTextBoxHeight); textBox.bind('input propertychange', onTextareaInput);
this.textBox = textBox; this.textBox = textBox;
}, },

View file

@ -46,6 +46,7 @@ define([
initialize : function(options) { initialize : function(options) {
var _options = {}; var _options = {};
_.extend(_options, { _.extend(_options, {
id: 'id-external-diagram-editor',
title: this.textTitle, title: this.textTitle,
storageName: 'diagram-editor', storageName: 'diagram-editor',
sdkplaceholder: 'id-diagram-editor-placeholder', sdkplaceholder: 'id-diagram-editor-placeholder',

View file

@ -46,6 +46,7 @@ define([
initialize : function(options) { initialize : function(options) {
var _options = {}; var _options = {};
_.extend(_options, { _.extend(_options, {
id: 'id-external-merge-editor',
title: this.textTitle, title: this.textTitle,
storageName: 'merge-editor', storageName: 'merge-editor',
sdkplaceholder: 'id-merge-editor-placeholder', sdkplaceholder: 'id-merge-editor-placeholder',

View file

@ -46,6 +46,7 @@ define([
initialize : function(options) { initialize : function(options) {
var _options = {}; var _options = {};
_.extend(_options, { _.extend(_options, {
id: 'id-external-ole-editor',
title: this.textTitle, title: this.textTitle,
storageName: 'ole-editor', storageName: 'ole-editor',
sdkplaceholder: 'id-ole-editor-placeholder', sdkplaceholder: 'id-ole-editor-placeholder',

View file

@ -101,7 +101,10 @@ define([
this.checkedIndex = i; this.checkedIndex = i;
} }
} }
(this.checkedIndex>=0) && this.radio[this.checkedIndex].setValue(true); if (this.checkedIndex>=0) {
this.radio[this.checkedIndex].setValue(true);
this.currentCell = this.radio[this.checkedIndex].options.value;
}
} }
$window.find('.dlg-btn').on('click', _.bind(this.onBtnClick, this)); $window.find('.dlg-btn').on('click', _.bind(this.onBtnClick, this));
}, },

View file

@ -173,6 +173,17 @@ define([
var text = $(this.el).find('textarea'); var text = $(this.el).find('textarea');
return (text && text.length) ? text.val().trim() : ''; 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 () { autoHeightTextBox: function () {
var view = this, var view = this,
textBox = this.$el.find('textarea'), textBox = this.$el.find('textarea'),
@ -183,6 +194,7 @@ define([
oldHeight = 0, oldHeight = 0,
newHeight = 0; newHeight = 0;
function updateTextBoxHeight() { function updateTextBoxHeight() {
scrollPos = parentView.scroller.getScrollTop(); scrollPos = parentView.scroller.getScrollTop();
if (domTextBox.scrollHeight > domTextBox.clientHeight) { if (domTextBox.scrollHeight > domTextBox.clientHeight) {
@ -211,13 +223,20 @@ define([
parentView.autoScrollToEditButtons(); parentView.autoScrollToEditButtons();
} }
function onTextareaInput(event) {
updateTextBoxHeight();
view.disableTextBoxButton($(event.target));
}
if (textBox && textBox.length && parentView.scroller) { if (textBox && textBox.length && parentView.scroller) {
domTextBox = textBox.get(0); domTextBox = textBox.get(0);
view.disableTextBoxButton(textBox);
if (domTextBox) { if (domTextBox) {
lineHeight = parseInt(textBox.css('lineHeight'), 10) * 0.25; lineHeight = parseInt(textBox.css('lineHeight'), 10) * 0.25;
updateTextBoxHeight(); updateTextBoxHeight();
textBox.bind('input propertychange', updateTextBoxHeight) textBox.bind('input propertychange', onTextareaInput)
} }
} }
@ -240,13 +259,14 @@ define([
el: $('#id-comments-popover'), el: $('#id-comments-popover'),
itemTemplate: _.template(replaceWords(commentsTemplate, { itemTemplate: _.template(replaceWords(commentsTemplate, {
textAddReply: me.textAddReply, textAddReply: me.textAddReply,
textMentionReply: me.canRequestSendNotify ? (me.mentionShare ? me.textMention : me.textMentionNotify) : me.textAddReply,
textAdd: me.textAdd, textAdd: me.textAdd,
textCancel: me.textCancel, textCancel: me.textCancel,
textEdit: me.textEdit, textEdit: me.textEdit,
textReply: me.textReply, textReply: me.textReply,
textClose: me.textClose, textClose: me.textClose,
maxCommLength: Asc.c_oAscMaxCellOrCommentLength, 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,6 +341,8 @@ define([
if (record.get('hint')) { if (record.get('hint')) {
me.fireEvent('comment:disableHint', [record]); me.fireEvent('comment:disableHint', [record]);
if(!record.get('fullInfoInHint'))
return; return;
} }
@ -516,8 +538,10 @@ define([
}, },
'animate:before': function () { 'animate:before': function () {
var text = me.$window.find('textarea'); var text = me.$window.find('textarea');
if (text && text.length) if (text && text.length){
text.focus(); text.focus();
me.commentsView.disableTextBoxButton(text);
}
} }
}); });
} }
@ -1292,6 +1316,7 @@ define([
textFollowMove : 'Follow Move', textFollowMove : 'Follow Move',
textMention : '+mention will provide access to the document and send an email', textMention : '+mention will provide access to the document and send an email',
textMentionNotify : '+mention will notify the user via email', textMentionNotify : '+mention will notify the user via email',
textEnterComment : 'Enter your comment here',
textViewResolved : 'You have not permission for reopen comment', textViewResolved : 'You have not permission for reopen comment',
txtAccept: 'Accept', txtAccept: 'Accept',
txtReject: 'Reject', txtReject: 'Reject',

Binary file not shown.

Before

Width:  |  Height:  |  Size: 207 B

After

Width:  |  Height:  |  Size: 135 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 214 B

After

Width:  |  Height:  |  Size: 141 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 229 B

After

Width:  |  Height:  |  Size: 139 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 198 B

After

Width:  |  Height:  |  Size: 125 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 147 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 149 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 253 B

After

Width:  |  Height:  |  Size: 145 B

View file

@ -0,0 +1,41 @@
<svg aria-hidden="true" style="position: absolute; width: 0; height: 0; overflow: hidden;" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="svg-icon-accent" viewBox="0 0 20 20">
<path d="M8.459 15.146c-.435 0-.816-.105-1.143-.315-.327-.21-.58-.52-.761-.93-.181-.41-.271-.91-.271-1.501 0-.59.06-1.16.183-1.707A7.107 7.107 0 0 1 7 9.17c.23-.469.506-.879.828-1.23a3.676 3.676 0 0 1 1.099-.82 2.98 2.98 0 0 1 1.31-.294c.362 0 .674.069.938.205.269.137.49.318.667.542.18.22.322.454.424.703h.074l.468-1.303h.93L12.04 15h-.974l.22-1.553h-.059c-.22.293-.47.57-.754.828a3.81 3.81 0 0 1-.93.63 2.48 2.48 0 0 1-1.084.242zm.395-1.01c.376 0 .747-.137 1.114-.41a4.08 4.08 0 0 0 .996-1.121 5.731 5.731 0 0 0 .68-1.597 5.74 5.74 0 0 0 .198-1.472c0-.503-.134-.908-.402-1.216-.264-.312-.625-.468-1.084-.468-.327 0-.635.083-.923.249a2.69 2.69 0 0 0-.784.68 4.41 4.41 0 0 0-.593 1.011c-.166.381-.295.796-.388 1.246-.088.449-.132.91-.132 1.384 0 .561.115.989.344 1.282.23.288.554.432.974.432zm3.472-8.628a.606.606 0 0 1-.425-.154c-.112-.103-.168-.249-.168-.44 0-.214.063-.405.19-.57.132-.172.322-.257.572-.257.19 0 .332.051.424.154.093.102.14.239.14.41 0 .264-.076.474-.228.63a.7.7 0 0 1-.505.227zm-2.68 0a.626.626 0 0 1-.44-.154c-.108-.103-.161-.249-.161-.44 0-.214.063-.405.19-.57.127-.172.313-.257.557-.257a.63.63 0 0 1 .322.073c.083.044.144.11.183.198.044.083.066.18.066.293 0 .264-.073.474-.22.63a.677.677 0 0 1-.498.227z"></path>
</symbol>
<symbol id="svg-icon-bracket" viewBox="0 0 20 20">
<path d="m5.847 14 3.494-4.13-1.743-3.897h1.23l1.29 3.032 2.445-3.032h1.414L10.623 9.92l1.86 4.08h-1.245l-1.406-3.193L7.26 14H5.847zM14 18v-1.159c.382-.011.708-.076.977-.193.268-.112.473-.288.612-.53.145-.234.217-.542.217-.923V12.65c0-.588.137-1.058.411-1.41.28-.354.7-.583 1.264-.69v-.1c-.574-.112-.998-.345-1.272-.697-.268-.353-.403-.82-.403-1.403V5.797c0-.387-.07-.7-.21-.94a1.234 1.234 0 0 0-.611-.53c-.27-.118-.597-.18-.985-.185V3c.64.006 1.191.106 1.651.302.46.196.811.493 1.054.89.248.393.373.89.373 1.496V8.24c0 .403.072.728.217.974.144.24.359.417.643.53.29.111.643.167 1.062.167v1.16c-.419 0-.773.055-1.062.167a1.264 1.264 0 0 0-.643.53c-.145.24-.218.556-.218.948v2.604c0 .593-.129 1.089-.387 1.486a2.347 2.347 0 0 1-1.078.89c-.46.202-.997.303-1.612.303z"></path>
<path d="M6 18c-.64-.006-1.194-.11-1.659-.31a2.256 2.256 0 0 1-1.062-.891c-.243-.398-.364-.896-.364-1.495v-2.57c0-.398-.073-.717-.217-.957a1.252 1.252 0 0 0-.644-.538c-.284-.112-.635-.168-1.054-.168V9.912c.419-.006.77-.062 1.054-.168.284-.112.499-.288.644-.529.144-.24.217-.56.217-.957V5.67c0-.6.129-1.095.387-1.487a2.348 2.348 0 0 1 1.078-.89C4.845 3.098 5.385 3 6 3v1.142a2.69 2.69 0 0 0-.984.193 1.32 1.32 0 0 0-.62.538c-.14.24-.21.551-.21.932v2.528c0 .582-.137 1.05-.41 1.403-.275.352-.696.585-1.264.697v.1c.578.107 1.002.337 1.271.69.269.352.403.822.403 1.41v2.579c0 .38.07.688.21.924.139.24.343.417.612.529.274.112.604.17.992.176V18z"></path>
</symbol>
<symbol id="svg-icon-fraction" viewBox="0 0 20 20">
<path d="M3 17 17.142 2.858l-.707-.707L2.293 16.293 3 17zM2.566 9l2.795-3.316-1.37-3.141h1.206l.944 2.309 1.822-2.309h1.365L6.633 5.736 8.109 9H6.885L5.854 6.58 3.926 9h-1.36zM10.9 18.889c-.195 0-.353-.012-.474-.035a2.876 2.876 0 0 1-.352-.088v-.944c.106.024.22.045.346.065.121.023.254.035.398.035.332 0 .614-.104.844-.31.234-.208.457-.5.668-.88l.375-.673-.978-6.516h1.171l.417 3.234c.035.239.062.495.082.768.019.273.033.533.04.78.012.245.018.45.018.615h.035a49.4 49.4 0 0 1 .229-.528c.097-.227.2-.463.31-.709.114-.25.221-.469.323-.656l1.828-3.504h1.26l-4.085 7.523a5.194 5.194 0 0 1-.68 1.014 2.39 2.39 0 0 1-.79.604 2.251 2.251 0 0 1-.985.205z"></path>
</symbol>
<symbol id="svg-icon-function" viewBox="0 0 20 20">
<path d="M3.48 15.146c-.487 0-.917-.048-1.288-.146a4.472 4.472 0 0 1-.96-.366v-1.128c.26.156.586.303.982.44.4.136.81.204 1.23.204.415 0 .76-.056 1.033-.168.278-.112.486-.266.623-.461.141-.2.212-.433.212-.696 0-.21-.046-.39-.14-.542a1.47 1.47 0 0 0-.439-.454 8.426 8.426 0 0 0-.805-.506 6.3 6.3 0 0 1-.953-.637 2.4 2.4 0 0 1-.593-.703 1.959 1.959 0 0 1-.198-.901c0-.459.113-.857.337-1.194.225-.337.54-.598.945-.784.41-.185.889-.278 1.436-.278.483 0 .93.056 1.34.169.41.107.764.232 1.062.373l-.395.974a6.514 6.514 0 0 0-.872-.337 3.801 3.801 0 0 0-1.135-.153c-.46 0-.825.105-1.099.314-.268.21-.403.494-.403.85 0 .186.04.352.117.498.083.147.225.293.425.44.2.141.474.307.82.498.338.195.64.395.909.6.273.2.488.432.644.696.161.259.242.579.242.96 0 .522-.124.966-.373 1.332-.25.362-.606.638-1.07.828-.459.186-1.003.278-1.633.278zM7.444 15 9.15 6.973h1.223L8.668 15H7.444zm2.732-9.434a.73.73 0 0 1-.49-.168c-.128-.117-.191-.28-.191-.49 0-.162.031-.313.095-.455a.79.79 0 0 1 .747-.469c.215 0 .376.057.483.169.108.112.162.268.162.469 0 .288-.084.517-.25.688-.166.171-.351.256-.556.256zM10.586 15l1.722-8.064h1.076l-.19 1.545h.015c.185-.253.407-.51.666-.769.264-.263.569-.483.916-.659.351-.18.75-.27 1.194-.27.43 0 .798.08 1.105.24.308.157.545.387.71.69.167.297.25.659.25 1.083 0 .225-.017.452-.051.682a9.69 9.69 0 0 1-.11.615L16.819 15h-1.296l1.084-5.068c.044-.22.078-.408.103-.564a2.39 2.39 0 0 0 .043-.44c0-.342-.092-.6-.278-.776-.185-.176-.459-.264-.82-.264-.357 0-.732.122-1.128.366-.395.245-.762.63-1.099 1.158-.337.522-.598 1.206-.783 2.05L11.89 15h-1.304z"></path>
</symbol>
<symbol id="svg-icon-integral" viewBox="0 0 20 20">
<path d="M5.86 17a3.094 3.094 0 0 1-.86-.125v-1.018c.089.035.2.069.333.103.134.039.278.059.434.059.449 0 .769-.166.96-.498.19-.328.286-.743.286-1.246V4.717c0-.971.194-1.667.58-2.087.391-.42.911-.63 1.56-.63.151 0 .305.012.46.037.16.02.29.048.387.088v1.003c-.089-.04-.2-.073-.333-.103a1.742 1.742 0 0 0-.434-.05c-.297 0-.533.077-.706.233a1.295 1.295 0 0 0-.36.638 3.436 3.436 0 0 0-.107.893v9.514c0 .992-.204 1.697-.613 2.117-.41.42-.938.63-1.587.63zM9.4 14l3.029-3.58-1.511-3.377h1.066l1.118 2.628 2.12-2.628h1.225l-2.907 3.421L15.152 14h-1.08l-1.218-2.768L10.626 14H9.401z"></path>
</symbol>
<symbol id="svg-icon-largeOperator" viewBox="0 0 20 20">
<path d="M3 16v-1l3.457-4.888L3 6V5h7v1H4.5l3.349 4.098L4.5 15H10v1H3zM10.4 14l3.029-3.58-1.511-3.377h1.066l1.118 2.628 2.12-2.628h1.225l-2.907 3.421L16.152 14h-1.08l-1.218-2.768L11.626 14h-1.225z"></path>
</symbol>
<symbol id="svg-icon-limAndLog" viewBox="0 0 20 20">
<path d="m1.437 15 2.27-10.637h1.135L2.579 15H1.437zM4.292 15l1.593-7.492h1.141L5.434 15H4.292zm2.55-8.805a.682.682 0 0 1-.458-.157c-.119-.11-.178-.262-.178-.458 0-.15.03-.292.089-.424a.738.738 0 0 1 .697-.438c.2 0 .351.053.451.158.1.105.15.25.15.437 0 .27-.077.484-.232.643a.71.71 0 0 1-.52.24zM7.133 15l1.593-7.492h.93l-.178 1.449h.068c.164-.237.362-.476.595-.718.232-.246.501-.45.806-.615.31-.169.661-.253 1.053-.253.529 0 .93.153 1.203.458.274.305.433.722.479 1.251h.048c.182-.278.4-.547.656-.807.255-.264.545-.48.868-.649a2.328 2.328 0 0 1 1.08-.253c.579 0 1.026.157 1.34.472.314.314.472.77.472 1.367 0 .214-.014.417-.041.608-.023.192-.06.388-.11.588L17.025 15h-1.149l1.012-4.717c.04-.205.07-.383.089-.533.023-.15.034-.294.034-.43 0-.306-.082-.548-.246-.725-.164-.178-.417-.267-.759-.267-.242 0-.492.066-.752.198-.26.133-.513.333-.759.602-.241.264-.46.6-.656 1.005a6.403 6.403 0 0 0-.472 1.429L12.636 15H11.5l.998-4.696c.041-.21.07-.39.09-.54a2.79 2.79 0 0 0 .033-.397c0-.323-.075-.576-.225-.759-.15-.186-.397-.28-.739-.28-.241 0-.494.064-.758.192a2.56 2.56 0 0 0-.76.601 4.46 4.46 0 0 0-.676 1.046c-.205.424-.37.934-.492 1.531L8.275 15H7.133z"></path>
</symbol>
<symbol id="svg-icon-matrix" viewBox="0 0 20 20">
<path d="M2 1v18h4v-1H3V2h3V1H2zM18 1h-4v1h3v16h-3v1h4V1z"></path>
<path d="M14.053 10.713v5.567h-.857v-3.593c0-.152.002-.294.007-.425l.012-.393.026-.381c-.09.08-.189.165-.299.254-.11.089-.226.173-.349.254l-.692.488-.419-.596 1.695-1.175h.876zM8.053 3.713V9.28h-.857V5.688c0-.153.002-.295.007-.426l.012-.393.026-.381c-.09.08-.189.165-.299.254-.11.089-.226.173-.349.254l-.692.488-.419-.596 1.695-1.175h.876zM7.247 16.382c-.664 0-1.162-.246-1.492-.737-.33-.495-.495-1.214-.495-2.158 0-.927.159-1.637.476-2.133.318-.499.821-.748 1.511-.748.664 0 1.164.245 1.498.736.339.49.508 1.206.508 2.145 0 .923-.159 1.636-.476 2.14-.318.503-.827.755-1.53.755zm0-.762c.39 0 .675-.173.857-.52.182-.352.273-.89.273-1.613 0-.72-.091-1.252-.273-1.6-.182-.35-.468-.526-.857-.526-.38 0-.662.175-.844.527-.178.347-.267.884-.267 1.612 0 .715.09 1.248.267 1.6.178.347.459.52.844.52zM13.247 9.382c-.664 0-1.162-.246-1.492-.736-.33-.496-.495-1.215-.495-2.159 0-.926.159-1.637.476-2.133.318-.499.821-.749 1.511-.749.665 0 1.164.246 1.498.737.339.49.508 1.206.508 2.145 0 .923-.159 1.636-.476 2.14-.317.503-.827.755-1.53.755zm0-.762c.39 0 .675-.173.857-.52.182-.352.273-.89.273-1.613 0-.72-.091-1.252-.273-1.6-.182-.35-.468-.526-.857-.526-.38 0-.662.175-.844.527-.178.347-.267.884-.267 1.612 0 .715.09 1.248.267 1.6.178.347.459.52.844.52z"></path>
</symbol>
<symbol id="svg-icon-operator" viewBox="0 0 20 20">
<path d="M3 14h14v1H3v-1zM3 16h14v1H3v-1zM5.575 13l.154-.762 5.31-9.939h1.267l1.15 9.954-.154.747H5.575zm1.604-1.106h5.04l-.601-5.61c-.03-.25-.056-.493-.08-.733a47.61 47.61 0 0 1-.089-1.333c-.01-.21-.014-.407-.014-.593-.113.278-.232.557-.36.835-.126.278-.263.566-.41.864-.146.293-.307.606-.483.938L7.18 11.894z"></path>
</symbol>
<symbol id="svg-icon-radical" viewBox="0 0 20 20">
<path d="m9.4 14 3.029-3.58-1.511-3.377h1.066l1.118 2.628 2.12-2.628h1.225l-2.907 3.421L15.152 14h-1.08l-1.218-2.768L10.626 14H9.401z"></path>
<path d="M5.544 16.102 3.5 10.375H2.167v-.96h2.11l1.75 4.981L10.05 3H17v1h-6.34l-4.2 12.102h-.916z"></path>
</symbol>
<symbol id="svg-icon-script" viewBox="0 0 20 20">
<path d="M6.905 15.146c-.6 0-1.118-.12-1.553-.358a2.484 2.484 0 0 1-1.003-1.04c-.23-.454-.345-.996-.345-1.626 0-.65.093-1.287.279-1.912.19-.63.461-1.199.813-1.707A4.19 4.19 0 0 1 6.363 7.28a3.152 3.152 0 0 1 1.67-.454c.737 0 1.296.166 1.677.498.38.327.571.779.571 1.355 0 .405-.095.779-.285 1.12-.186.343-.474.64-.865.894-.385.25-.876.445-1.472.586-.59.137-1.291.205-2.102.205H5.28l-.03.293a6.65 6.65 0 0 0-.007.3c0 .645.156 1.15.469 1.517.312.361.781.542 1.406.542.386 0 .75-.054 1.092-.161a8.72 8.72 0 0 0 1.083-.44v1.047a8.019 8.019 0 0 1-1.09.41 4.842 4.842 0 0 1-1.297.154zm-1.45-4.658h.175c.625 0 1.2-.053 1.722-.16.522-.113.942-.294 1.26-.543a1.23 1.23 0 0 0 .475-1.01.887.887 0 0 0-.278-.674c-.185-.176-.469-.264-.85-.264-.336 0-.668.105-.996.315-.327.205-.625.505-.893.9-.264.396-.469.875-.615 1.436zM11.644 9l2.096-2.487-1.028-2.356h.905l.708 1.732 1.366-1.732h1.024l-2.021 2.395L15.8 9h-.918l-.774-1.815L12.664 9h-1.02z"></path>
</symbol>
<symbol id="svg-icon-symbols" viewBox="0 0 20 20">
<path d="M9.993 5.222c-.806 0-1.475.154-2.007.462a2.81 2.81 0 0 0-1.18 1.303c-.258.567-.388 1.243-.388 2.03 0 .692.086 1.335.257 1.925.176.586.454 1.133.835 1.641.38.503.881.977 1.501 1.42V15H4.72v-1.099h2.747a6.264 6.264 0 0 1-1.201-1.208 5.796 5.796 0 0 1-.85-1.64 6.503 6.503 0 0 1-.315-2.08c0-.987.193-1.842.579-2.564a4.025 4.025 0 0 1 1.67-1.685c.732-.4 1.613-.6 2.644-.6 1.05 0 1.94.197 2.673.593.732.39 1.29.947 1.67 1.67.38.722.571 1.58.571 2.57 0 .767-.105 1.463-.315 2.088a5.747 5.747 0 0 1-.842 1.655 5.833 5.833 0 0 1-1.201 1.201h2.74V15h-4.293v-.996c.63-.44 1.135-.913 1.516-1.421s.657-1.057.828-1.648a6.75 6.75 0 0 0 .264-1.919c0-.79-.132-1.47-.396-2.036a2.83 2.83 0 0 0-1.201-1.304c-.532-.302-1.204-.454-2.014-.454z"></path>
</symbol>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View file

@ -1016,6 +1016,7 @@
width: 52px; width: 52px;
padding: 5px; padding: 5px;
fill: @icon-normal-ie;
fill: @icon-normal; fill: @icon-normal;
.btn& { .btn& {

View file

@ -70,7 +70,7 @@
label { label {
color: @text-normal-ie; color: @text-normal-ie;
color: @text-normal; color: @text-normal;
font: 12px arial; font-size: 12px;
line-height: normal; line-height: normal;
border-bottom: @scaled-one-px-value-ie dotted @text-normal-ie; border-bottom: @scaled-one-px-value-ie dotted @text-normal-ie;
border-bottom: @scaled-one-px-value dotted @text-normal; border-bottom: @scaled-one-px-value dotted @text-normal;
@ -120,7 +120,7 @@
.dataview-ct { .dataview-ct {
width: 100%; width: 100%;
height: 100%; height: 100%;
font: 12px arial; font-size: 12px;
line-height: normal; line-height: normal;
position: relative; position: relative;
overflow: hidden; overflow: hidden;

View file

@ -298,4 +298,7 @@ body {
&.pixel-ratio__1_75 { &.pixel-ratio__1_75 {
image-rendering: crisp-edges; // FF only image-rendering: crisp-edges; // FF only
} }
font-family: @font-family-sans-serif;
font-family: @font-family-base;
} }

View file

@ -641,10 +641,13 @@
} }
.btn-toolbar { .btn-toolbar {
&:active { &:active,
&.active {
&:not(.disabled) {
svg.icon { svg.icon {
fill: @icon-toolbar-header-ie; fill: @icon-normal-pressed-ie;
fill: @icon-toolbar-header; fill: @icon-normal-pressed;
}
} }
} }

View file

@ -60,7 +60,7 @@
@font-family-serif: Georgia, "Times New Roman", Times, serif; @font-family-serif: Georgia, "Times New Roman", Times, serif;
@font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace; @font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace;
@font-family-tahoma: tahoma, arial, verdana, sans-serif; @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-base: 11px;
@font-size-large: 13px; @font-size-large: 13px;

View file

@ -277,7 +277,7 @@ class ReviewChange extends Component {
} }
if (value.Get_VertAlign() !== undefined) { if (value.Get_VertAlign() !== undefined) {
proptext.length > 0 && proptext.push(<label key={`${Asc.c_oAscRevisionsChangeType.TextPr}-08`}>, </label>); proptext.length > 0 && proptext.push(<label key={`${Asc.c_oAscRevisionsChangeType.TextPr}-08`}>, </label>);
proptext.push(<label key={`${Asc.c_oAscRevisionsChangeType.TextPr}-8`}>{((value.Get_VertAlign() == 1) ? _t.textSuperScript : ((value.Get_VertAlign() == 2) ? _t.textSubScript : _t.textBaseline))}</label>); proptext.push(<label key={`${Asc.c_oAscRevisionsChangeType.TextPr}-8`}>{((value.Get_VertAlign() === Asc.vertalign_SuperScript) ? _t.textSuperScript : ((value.Get_VertAlign() === Asc.vertalign_SubScript) ? _t.textSubScript : _t.textBaseline))}</label>);
} }
if (value.Get_Color() !== undefined) { if (value.Get_Color() !== undefined) {
proptext.length > 0 && proptext.push(<label key={`${Asc.c_oAscRevisionsChangeType.TextPr}-09`}>, </label>); proptext.length > 0 && proptext.push(<label key={`${Asc.c_oAscRevisionsChangeType.TextPr}-09`}>, </label>);

View file

@ -116,3 +116,31 @@ body.theme-type-dark {
50% { opacity:1; } 50% { opacity:1; }
100% { opacity:0.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);
}

View file

@ -25,12 +25,12 @@
} }
} }
.navbar { //.navbar {
.title { // .title {
text-overflow: initial; // text-overflow: initial;
white-space: normal; // white-space: normal;
} // }
} //}
.navbar-hidden { .navbar-hidden {
transform: translate3d(0, calc(-1 * (var(--f7-navbar-height) + var(--f7-subnavbar-height))), 0); transform: translate3d(0, calc(-1 * (var(--f7-navbar-height) + var(--f7-subnavbar-height))), 0);
@ -48,9 +48,12 @@
.subnavbar-inner { .subnavbar-inner {
padding: 0; padding: 0;
.title { .title {
white-space: nowrap; //white-space: nowrap;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: initial;
margin: 0;
padding: 0;
flex-shrink: initial;
} }
} }
.icon-back { .icon-back {

File diff suppressed because one or more lines are too long

View file

@ -32,7 +32,7 @@
&.icon-collaboration { &.icon-collaboration {
width: 24px; width: 24px;
height: 24px; height: 24px;
.encoded-svg-mask('<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M14.9912 6C14.9912 8.18203 14.4464 9.76912 13.7789 10.7492C13.101 11.7447 12.4042 12 11.9912 12C11.5782 12 10.8814 11.7447 10.2035 10.7492C9.53601 9.76912 8.99121 8.18203 8.99121 6C8.99121 4.23017 10.4571 3 11.9912 3C13.5254 3 14.9912 4.23017 14.9912 6ZM13.4917 13.6397C13.0059 13.8771 12.4989 14 11.9912 14C11.4861 14 10.9817 13.8784 10.4983 13.6434C8.53188 14.3681 6.94518 15.0737 5.78927 15.7768C4.10512 16.8011 4 17.4079 4 17.5C4 17.7664 4.1014 18.3077 5.27104 18.8939C6.50029 19.5099 8.64545 19.9999 12 20C15.3546 20 17.4997 19.5099 18.7289 18.8939C19.8986 18.3078 20 17.7664 20 17.5C20 17.4079 19.8949 16.8011 18.2107 15.7768C17.0529 15.0726 15.4627 14.3657 13.4917 13.6397ZM15.2272 12.1594C16.2765 10.7825 16.9912 8.67814 16.9912 6C16.9912 3 14.5 1 11.9912 1C9.48242 1 6.99121 3 6.99121 6C6.99121 8.68159 7.70777 10.7879 8.75931 12.1647C4.60309 13.7964 2 15.4951 2 17.5C2 19.9852 5 21.9999 12 22C19 22 22 19.9852 22 17.5C22 15.4929 19.3913 13.7927 15.2272 12.1594Z"/></svg>', @toolbar-icons); .encoded-svg-mask('<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><g clip-path="url(#clip0_4309_12598)"><path fill-rule="evenodd" clip-rule="evenodd" d="M7.49999 14C4.67677 14 2.51136 15.4069 1.40113 17.2572C0.840114 18.1923 1.00119 18.562 1.10243 18.6903C1.25554 18.8844 1.60969 19 1.97238 19H7.5V20H1.97238C1.50174 20 0.75589 19.8656 0.317329 19.3097C-0.173093 18.688 -0.0953502 17.8077 0.543635 16.7428C1.8334 14.5931 4.3232 13 7.49999 13V14ZM7.49999 13C10.6768 13 13.139 14.5931 14.4287 16.7428C15.0677 17.8077 15.1455 18.688 14.655 19.3097C14.2165 19.8656 13.4706 20 13 20H7.5V19H13C13.3627 19 13.7168 18.8844 13.8699 18.6903C13.9712 18.562 14.1323 18.1923 13.5712 17.2572C12.461 15.4069 10.3232 14 7.49999 14V13Z" fill="black"/><path fill-rule="evenodd" clip-rule="evenodd" d="M15 20H22.0007C22.4714 20 23.2172 19.8656 23.6558 19.3097C24.1462 18.688 24.0685 17.8077 23.4295 16.7428C22.1397 14.5931 19.6775 13 16.5007 13C15.2069 13 14.1778 13.164 13.1465 13.6225C13.5096 13.9033 13.7857 14.1169 14.1435 14.3553C14.8626 14.1272 15.6519 14 16.5007 14C19.3239 14 21.4617 15.4069 22.572 17.2572C23.133 18.1923 22.9719 18.562 22.8707 18.6903C22.7176 18.8844 22.3634 19 22.0007 19H16.5C16.4511 19.1093 16.3884 19.2127 16.3119 19.3097C16.2637 19.3708 16.2117 19.4268 16.1568 19.4782C15.7126 19.8935 15.4189 20 15 20Z" fill="black"/><path fill-rule="evenodd" clip-rule="evenodd" d="M7.50001 11C8.75947 11 10 9.78646 10 8C10 6.21354 8.75947 5 7.50001 5C6.24055 5 5.00001 6.21354 5.00001 8C5.00001 9.78646 6.24055 11 7.50001 11ZM7.50001 12C9.433 12 11 10.2091 11 8C11 5.79086 9.433 4 7.50001 4C5.56701 4 4.00001 5.79086 4.00001 8C4.00001 10.2091 5.56701 12 7.50001 12Z" fill="black"/><path fill-rule="evenodd" clip-rule="evenodd" d="M17 11C17.9655 11 19 10.0309 19 8.5C19 6.96911 17.9655 6 17 6C16.0345 6 15 6.96911 15 8.5C15 10.0309 16.0345 11 17 11ZM17 12C18.6569 12 20 10.433 20 8.5C20 6.567 18.6569 5 17 5C15.3432 5 14 6.567 14 8.5C14 10.433 15.3432 12 17 12Z" fill="black"/></g><defs><clipPath id="clip0_4309_12598"><rect width="24" height="24" fill="white"/></clipPath></defs></svg>', @toolbar-icons);
} }
&.icon-edit { &.icon-edit {
width: 22px; width: 22px;

View file

@ -15,11 +15,11 @@ if ( localStorage && localStorage.getItem('mobile-mode-direction') === 'rtl' ) {
load_stylesheet('./css/framework7.css') 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 ) { if ( !obj ) {
obj = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches ? obj = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches ?
{id: 'theme-dark', type: 'dark'} : {id: 'theme-light', type: 'light'}; {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`);

View file

@ -753,6 +753,19 @@ DE.ApplicationController = new(function(){
message = me.errorTokenExpire; message = me.errorTokenExpire;
break; 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: default:
message = me.errorDefaultMessage.replace('%1', id); message = me.errorDefaultMessage.replace('%1', id);
break; break;
@ -962,6 +975,11 @@ DE.ApplicationController = new(function(){
errorLoadingFont: 'Fonts are not loaded.<br>Please contact your Document Server administrator.', errorLoadingFont: 'Fonts are not loaded.<br>Please contact your Document Server administrator.',
errorTokenExpire: 'The document security token has expired.<br>Please contact your Document Server administrator.', errorTokenExpire: 'The document security token has expired.<br>Please contact your Document Server administrator.',
openErrorText: 'An error has occurred while opening the file', openErrorText: 'An error has occurred while opening the file',
textCtrl: 'Ctrl' textCtrl: 'Ctrl',
errorInconsistentExtDocx: 'An error has occurred while opening the file.<br>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.<br>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.<br>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.<br>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.<br>The file content does not match the file extension.'
} }
})(); })();

View file

@ -16,6 +16,11 @@
"DE.ApplicationController.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.", "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.<br>Weitere Informationen können Sie von Ihrem Document Server-Administrator erhalten.", "DE.ApplicationController.errorFileSizeExceed": "Die Dateigröße überschreitet die für Ihren Server festgelegte Einschränkung.<br>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.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.<br>Der Inhalt der Datei stimmt nicht mit der Dateierweiterung überein.",
"DE.ApplicationController.errorInconsistentExtDocx": "Beim Öffnen der Datei ist ein Fehler aufgetreten.<br>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.<br>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.<br>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.<br>Der Inhalt der Datei entspricht Tabellenkalkulationen (z.B. xlsx), aber die Datei hat die inkonsistente Erweiterung: %1.",
"DE.ApplicationController.errorLoadingFont": "Schriftarten nicht hochgeladen.<br>Bitte wenden Sie sich an Administratoren von Ihrem Document Server.", "DE.ApplicationController.errorLoadingFont": "Schriftarten nicht hochgeladen.<br>Bitte wenden Sie sich an Administratoren von Ihrem Document Server.",
"DE.ApplicationController.errorSubmit": "Fehler beim Senden.", "DE.ApplicationController.errorSubmit": "Fehler beim Senden.",
"DE.ApplicationController.errorTokenExpire": "Sicherheitstoken des Dokuments ist abgelaufen.<br>Wenden Sie sich an Ihren Serveradministrator.", "DE.ApplicationController.errorTokenExpire": "Sicherheitstoken des Dokuments ist abgelaufen.<br>Wenden Sie sich an Ihren Serveradministrator.",

View file

@ -26,6 +26,7 @@
"DE.ApplicationController.scriptLoadError": "Η σύνδεση είναι πολύ αργή, δεν ήταν δυνατή η φόρτωση ορισμένων στοιχείων. Φορτώστε ξανά τη σελίδα.", "DE.ApplicationController.scriptLoadError": "Η σύνδεση είναι πολύ αργή, δεν ήταν δυνατή η φόρτωση ορισμένων στοιχείων. Φορτώστε ξανά τη σελίδα.",
"DE.ApplicationController.textAnonymous": "Ανώνυμος", "DE.ApplicationController.textAnonymous": "Ανώνυμος",
"DE.ApplicationController.textClear": "Εκκαθάριση Όλων των Πεδίων", "DE.ApplicationController.textClear": "Εκκαθάριση Όλων των Πεδίων",
"DE.ApplicationController.textCtrl": "Ctrl",
"DE.ApplicationController.textGotIt": "Ελήφθη", "DE.ApplicationController.textGotIt": "Ελήφθη",
"DE.ApplicationController.textGuest": "Επισκέπτης", "DE.ApplicationController.textGuest": "Επισκέπτης",
"DE.ApplicationController.textLoadingDocument": "Φόρτωση εγγράφου", "DE.ApplicationController.textLoadingDocument": "Φόρτωση εγγράφου",

View file

@ -16,6 +16,11 @@
"DE.ApplicationController.errorFilePassProtect": "The file is password protected and cannot be opened.", "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.<br>Please contact your Document Server administrator for details.", "DE.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server.<br>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.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.<br>The file content does not match the file extension.",
"DE.ApplicationController.errorInconsistentExtDocx": "An error has occurred while opening the file.<br>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.<br>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.<br>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.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
"DE.ApplicationController.errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.", "DE.ApplicationController.errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
"DE.ApplicationController.errorSubmit": "Submit failed.", "DE.ApplicationController.errorSubmit": "Submit failed.",
"DE.ApplicationController.errorTokenExpire": "The document security token has expired.<br>Please contact your Document Server administrator.", "DE.ApplicationController.errorTokenExpire": "The document security token has expired.<br>Please contact your Document Server administrator.",

View file

@ -16,6 +16,11 @@
"DE.ApplicationController.errorFilePassProtect": "El archivo está protegido por una contraseña y no se puede abrir.", "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. <br>Contacte con el administrador del servidor de documentos para obtener más detalles.", "DE.ApplicationController.errorFileSizeExceed": "El tamaño del archivo supera el límiete establecido por su servidor. <br>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.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.<br>El contenido del archivo no coincide con la extensión del mismo.",
"DE.ApplicationController.errorInconsistentExtDocx": "Se ha producido un error al abrir el archivo.<br>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.<br>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.<br>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.<br>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. <br>Contacte con el administrador del servidor de documentos.", "DE.ApplicationController.errorLoadingFont": "Los tipos de letra no están cargados. <br>Contacte con el administrador del servidor de documentos.",
"DE.ApplicationController.errorSubmit": "Error al enviar.", "DE.ApplicationController.errorSubmit": "Error al enviar.",
"DE.ApplicationController.errorTokenExpire": "El token de seguridad del documento ha expirado. <br>Contacte con el administrador del servidor de documentos", "DE.ApplicationController.errorTokenExpire": "El token de seguridad del documento ha expirado. <br>Contacte con el administrador del servidor de documentos",

View file

@ -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.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.<br>Veuillez contacter votre administrateur de Document Server pour obtenir plus d'informations. ", "DE.ApplicationController.errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.<br>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.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.<br>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.<br>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.<br>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.<br>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.<br>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.<br>Veuillez contacter l'administrateur de Document Server.", "DE.ApplicationController.errorLoadingFont": "Les polices ne sont pas téléchargées.<br>Veuillez contacter l'administrateur de Document Server.",
"DE.ApplicationController.errorSubmit": "Échec de soumission", "DE.ApplicationController.errorSubmit": "Échec de soumission",
"DE.ApplicationController.errorTokenExpire": "Le jeton de sécurité du document a expiré.<br>Veuillez contactez l'administrateur de Document Server.", "DE.ApplicationController.errorTokenExpire": "Le jeton de sécurité du document a expiré.<br>Veuillez contactez l'administrateur de Document Server.",

View file

@ -16,6 +16,11 @@
"DE.ApplicationController.errorFilePassProtect": "Ֆայլն ունի գաղտնաբառ և չի կարող բացվել։", "DE.ApplicationController.errorFilePassProtect": "Ֆայլն ունի գաղտնաբառ և չի կարող բացվել։",
"DE.ApplicationController.errorFileSizeExceed": "Ֆայլի չափը գերազանցում է ձեր սերվերի համար սահմանված սահմանափակումը:<br> Մանրամասների համար խնդրում ենք կապվել Ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:", "DE.ApplicationController.errorFileSizeExceed": "Ֆայլի չափը գերազանցում է ձեր սերվերի համար սահմանված սահմանափակումը:<br> Մանրամասների համար խնդրում ենք կապվել Ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:",
"DE.ApplicationController.errorForceSave": "Սխալ է տեղի ունեցել ֆայլը պահելիս:Խնդրում ենք օգտագործել «Ներբեռնել որպես» տարբերակը՝ ֆայլը ձեր համակարգչի կոշտ սկավառակում պահելու համար կամ ավելի ուշ նորից փորձեք:", "DE.ApplicationController.errorForceSave": "Սխալ է տեղի ունեցել ֆայլը պահելիս:Խնդրում ենք օգտագործել «Ներբեռնել որպես» տարբերակը՝ ֆայլը ձեր համակարգչի կոշտ սկավառակում պահելու համար կամ ավելի ուշ նորից փորձեք:",
"DE.ApplicationController.errorInconsistentExt": "Ֆայլը բացելիս սխալ է տեղի ունեցել:<br>Ֆայլի բովանդակությունը չի համապատասխանում ֆայլի ընդլայնմանը:",
"DE.ApplicationController.errorInconsistentExtDocx": "Ֆայլը բացելիս սխալ է տեղի ունեցել:<br>Ֆայլի բովանդակությունը համապատասխանում է տեքստային փաստաթղթերին (օրինակ՝ docx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում՝ %1:",
"DE.ApplicationController.errorInconsistentExtPdf": "Ֆայլը բացելիս սխալ է տեղի ունեցել:Ֆայլի բովանդակությունը համապատասխանում է հետևյալ ձևաչափերից մեկին՝pdf/djvu/xps/oxps,բայց ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
"DE.ApplicationController.errorInconsistentExtPptx": "Ֆայլը բացելիս սխալ է տեղի ունեցել:<br>Ֆայլի բովանդակությունը համապատասխանում է ներկայացումներին (օրինակ՝ pptx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
"DE.ApplicationController.errorInconsistentExtXlsx": "Ֆայլը բացելիս սխալ է տեղի ունեցել:<br>Ֆայլի բովանդակությունը համապատասխանում է աղյուսակներին (օր. xlsx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
"DE.ApplicationController.errorLoadingFont": "Տառատեսակները բեռնված չեն:<br>Խնդրում ենք կապվել ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:", "DE.ApplicationController.errorLoadingFont": "Տառատեսակները բեռնված չեն:<br>Խնդրում ենք կապվել ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:",
"DE.ApplicationController.errorSubmit": "Չհաջողվեց հաստատել", "DE.ApplicationController.errorSubmit": "Չհաջողվեց հաստատել",
"DE.ApplicationController.errorTokenExpire": "Փաստաթղթի անվտանգության կտրոնի ժամկետն անցել է։<br>Դիմեք փաստաթղթերի սպասարկիչի ձեր վարիչին։", "DE.ApplicationController.errorTokenExpire": "Փաստաթղթի անվտանգության կտրոնի ժամկետն անցել է։<br>Դիմեք փաստաթղթերի սպասարկիչի ձեր վարիչին։",

View file

@ -16,6 +16,11 @@
"DE.ApplicationController.errorFilePassProtect": "O documento é protegido por senha e não pode ser aberto.", "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. <br> Por favor, contate seu administrador de Servidor de Documentos para detalhes.", "DE.ApplicationController.errorFileSizeExceed": "O tamanho do arquivo excede o limite de seu servidor. <br> 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.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.<br>O conteúdo do arquivo não corresponde à extensão do arquivo.",
"DE.ApplicationController.errorInconsistentExtDocx": "Ocorreu um erro ao abrir o arquivo.<br>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.<br>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.<br>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.<br>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. <br> Entre em contato com o administrador do Document Server.", "DE.ApplicationController.errorLoadingFont": "As fontes não foram carregadas. <br> Entre em contato com o administrador do Document Server.",
"DE.ApplicationController.errorSubmit": "Falha no envio.", "DE.ApplicationController.errorSubmit": "Falha no envio.",
"DE.ApplicationController.errorTokenExpire": "O token de segurança do documento expirou. <br> Entre em contato com o administrador do Document Server.", "DE.ApplicationController.errorTokenExpire": "O token de segurança do documento expirou. <br> Entre em contato com o administrador do Document Server.",

View file

@ -16,6 +16,11 @@
"DE.ApplicationController.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.", "DE.ApplicationController.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.",
"DE.ApplicationController.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.<br>Обратитесь к администратору Сервера документов для получения дополнительной информации.", "DE.ApplicationController.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.<br>Обратитесь к администратору Сервера документов для получения дополнительной информации.",
"DE.ApplicationController.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.", "DE.ApplicationController.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.",
"DE.ApplicationController.errorInconsistentExt": "При открытии файла произошла ошибка.<br>Содержимое файла не соответствует расширению файла.",
"DE.ApplicationController.errorInconsistentExtDocx": "При открытии файла произошла ошибка.<br>Содержимое файла соответствует документам (например, docx), но файл имеет несоответствующее расширение: %1.",
"DE.ApplicationController.errorInconsistentExtPdf": "При открытии файла произошла ошибка.<br>Содержимое файла соответствует одному из следующих форматов: pdf/djvu/xps/oxps, но файл имеет несоответствующее расширение: %1.",
"DE.ApplicationController.errorInconsistentExtPptx": "При открытии файла произошла ошибка.<br>Содержимое файла соответствует презентациям (например, pptx), но файл имеет несоответствующее расширение: %1.",
"DE.ApplicationController.errorInconsistentExtXlsx": "При открытии файла произошла ошибка.<br>Содержимое файла соответствует электронным таблицам (например, xlsx), но файл имеет несоответствующее расширение: %1.",
"DE.ApplicationController.errorLoadingFont": "Шрифты не загружены.<br>Пожалуйста, обратитесь к администратору Сервера документов.", "DE.ApplicationController.errorLoadingFont": "Шрифты не загружены.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
"DE.ApplicationController.errorSubmit": "Не удалось отправить.", "DE.ApplicationController.errorSubmit": "Не удалось отправить.",
"DE.ApplicationController.errorTokenExpire": "Истек срок действия токена безопасности документа.<br>Пожалуйста, обратитесь к администратору Сервера документов.", "DE.ApplicationController.errorTokenExpire": "Истек срок действия токена безопасности документа.<br>Пожалуйста, обратитесь к администратору Сервера документов.",

View file

@ -301,6 +301,20 @@ define([
config.msg = this.errorTextFormWrongFormat; config.msg = this.errorTextFormWrongFormat;
break; 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: default:
config.msg = (typeof id == 'string') ? id : this.errorDefaultMessage.replace('%1', id); config.msg = (typeof id == 'string') ? id : this.errorDefaultMessage.replace('%1', id);
break; break;
@ -1909,7 +1923,12 @@ define([
textSaveAsDesktop: 'Save as...', textSaveAsDesktop: 'Save as...',
warnLicenseExp: 'Your license has expired.<br>Please update your license and refresh the page.', warnLicenseExp: 'Your license has expired.<br>Please update your license and refresh the page.',
titleLicenseExp: 'License expired', 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.<br>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.<br>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.<br>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.<br>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.<br>The file content does not match the file extension.'
}, DE.Controllers.ApplicationController)); }, DE.Controllers.ApplicationController));

View file

@ -53,7 +53,7 @@
"Common.UI.Window.yesButtonText": "Sí", "Common.UI.Window.yesButtonText": "Sí",
"Common.Views.CopyWarningDialog.textDontShow": "No tornis a mostrar aquest missatge", "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. <br><br>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.textMsg": "Les accions de copia, retalla i enganxa utilitzant el menú contextual només es realitzaran dins d'aquesta pestanya de l'editor. <br><br>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.textToCopy": "Per copiar",
"Common.Views.CopyWarningDialog.textToCut": "Per tallar", "Common.Views.CopyWarningDialog.textToCut": "Per tallar",
"Common.Views.CopyWarningDialog.textToPaste": "Per enganxar", "Common.Views.CopyWarningDialog.textToPaste": "Per enganxar",
@ -65,7 +65,7 @@
"Common.Views.ImageFromUrlDialog.textUrl": "Enganxa un URL d'imatge:", "Common.Views.ImageFromUrlDialog.textUrl": "Enganxa un URL d'imatge:",
"Common.Views.ImageFromUrlDialog.txtEmpty": "Aquest camp és obligatori", "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.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.txtEncoding": "Codificació",
"Common.Views.OpenDialog.txtIncorrectPwd": "La contrasenya no és correcta.", "Common.Views.OpenDialog.txtIncorrectPwd": "La contrasenya no és correcta.",
"Common.Views.OpenDialog.txtOpenFile": "Introduïu una contrasenya per obrir el fitxer", "Common.Views.OpenDialog.txtOpenFile": "Introduïu una contrasenya per obrir el fitxer",
@ -73,11 +73,11 @@
"Common.Views.OpenDialog.txtPreview": "Visualització prèvia", "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.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.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.textLoading": "S'està carregant",
"Common.Views.SaveAsDlg.textTitle": "Carpeta per desar", "Common.Views.SaveAsDlg.textTitle": "Carpeta per desar",
"Common.Views.SelectFileDlg.textLoading": "S'està carregant", "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.textTitle": "Comparteix l'enllaç",
"Common.Views.ShareDialog.txtCopy": "Copia al porta-retalls", "Common.Views.ShareDialog.txtCopy": "Copia al porta-retalls",
"Common.Views.ShareDialog.warnCopy": "Error del navegador! Utilitzeu la drecera de teclat [Ctrl] + [C]", "Common.Views.ShareDialog.warnCopy": "Error del navegador! Utilitzeu la drecera de teclat [Ctrl] + [C]",

View file

@ -96,6 +96,11 @@
"DE.Controllers.ApplicationController.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.", "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.<br>Weitere Informationen können Sie von Ihrem Document Server-Administrator erhalten.", "DE.Controllers.ApplicationController.errorFileSizeExceed": "Die Dateigröße überschreitet die für Ihren Server festgelegte Einschränkung.<br>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.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.<br>Der Inhalt der Datei stimmt nicht mit der Dateierweiterung überein.",
"DE.Controllers.ApplicationController.errorInconsistentExtDocx": "Beim Öffnen der Datei ist ein Fehler aufgetreten.<br>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.<br>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.<br>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.<br>Der Inhalt der Datei entspricht Tabellenkalkulationen (z.B. xlsx), aber die Datei hat die inkonsistente Erweiterung: %1.",
"DE.Controllers.ApplicationController.errorLoadingFont": "Schriftarten nicht hochgeladen.<br>Bitte wenden Sie sich an Administratoren von Ihrem Document Server.", "DE.Controllers.ApplicationController.errorLoadingFont": "Schriftarten nicht hochgeladen.<br>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.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.", "DE.Controllers.ApplicationController.errorSessionAbsolute": "Die Bearbeitungssitzung des Dokumentes ist abgelaufen. Laden Sie die Seite neu.",

View file

@ -65,7 +65,7 @@
"Common.Views.ImageFromUrlDialog.textUrl": "Επικόλληση URL εικόνας:", "Common.Views.ImageFromUrlDialog.textUrl": "Επικόλληση URL εικόνας:",
"Common.Views.ImageFromUrlDialog.txtEmpty": "Αυτό το πεδίο είναι υποχρεωτικό", "Common.Views.ImageFromUrlDialog.txtEmpty": "Αυτό το πεδίο είναι υποχρεωτικό",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Αυτό το πεδίο πρέπει να είναι διεύθυνση URL με τη μορφή «http://www.example.com»", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Αυτό το πεδίο πρέπει να είναι διεύθυνση URL με τη μορφή «http://www.example.com»",
"Common.Views.OpenDialog.closeButtonText": "Κλείσιμο Αρχείου", "Common.Views.OpenDialog.closeButtonText": "Κλείσιμο αρχείου",
"Common.Views.OpenDialog.txtEncoding": "Κωδικοποίηση", "Common.Views.OpenDialog.txtEncoding": "Κωδικοποίηση",
"Common.Views.OpenDialog.txtIncorrectPwd": "Το συνθηματικό είναι εσφαλμένο.", "Common.Views.OpenDialog.txtIncorrectPwd": "Το συνθηματικό είναι εσφαλμένο.",
"Common.Views.OpenDialog.txtOpenFile": "Εισάγετε συνθηματικό για να ανοίξετε το αρχείο", "Common.Views.OpenDialog.txtOpenFile": "Εισάγετε συνθηματικό για να ανοίξετε το αρχείο",

View file

@ -53,7 +53,7 @@
"Common.UI.Window.yesButtonText": "Yes", "Common.UI.Window.yesButtonText": "Yes",
"Common.Views.CopyWarningDialog.textDontShow": "Don't show this message again", "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.<br><br>To copy or paste to or from applications outside the editor tab use the following keyboard combinations:", "Common.Views.CopyWarningDialog.textMsg": "Copy, cut and paste actions using context menu actions will be performed within this editor tab only.<br><br>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.textToCopy": "for Copy",
"Common.Views.CopyWarningDialog.textToCut": "for Cut", "Common.Views.CopyWarningDialog.textToCut": "for Cut",
"Common.Views.CopyWarningDialog.textToPaste": "for Paste", "Common.Views.CopyWarningDialog.textToPaste": "for Paste",
@ -65,7 +65,7 @@
"Common.Views.ImageFromUrlDialog.textUrl": "Paste an image URL:", "Common.Views.ImageFromUrlDialog.textUrl": "Paste an image URL:",
"Common.Views.ImageFromUrlDialog.txtEmpty": "This field is required", "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.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.txtEncoding": "Encoding ",
"Common.Views.OpenDialog.txtIncorrectPwd": "Password is incorrect.", "Common.Views.OpenDialog.txtIncorrectPwd": "Password is incorrect.",
"Common.Views.OpenDialog.txtOpenFile": "Enter a password to open the file", "Common.Views.OpenDialog.txtOpenFile": "Enter a password to open the file",
@ -73,12 +73,12 @@
"Common.Views.OpenDialog.txtPreview": "Preview", "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.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.txtTitle": "Choose %1 options",
"Common.Views.OpenDialog.txtTitleProtected": "Protected File", "Common.Views.OpenDialog.txtTitleProtected": "Protected file",
"Common.Views.SaveAsDlg.textLoading": "Loading", "Common.Views.SaveAsDlg.textLoading": "Loading",
"Common.Views.SaveAsDlg.textTitle": "Folder for save", "Common.Views.SaveAsDlg.textTitle": "Folder for save",
"Common.Views.SelectFileDlg.textLoading": "Loading", "Common.Views.SelectFileDlg.textLoading": "Loading",
"Common.Views.SelectFileDlg.textTitle": "Select Data Source", "Common.Views.SelectFileDlg.textTitle": "Select data source",
"Common.Views.ShareDialog.textTitle": "Share Link", "Common.Views.ShareDialog.textTitle": "Share link",
"Common.Views.ShareDialog.txtCopy": "Copy to clipboard", "Common.Views.ShareDialog.txtCopy": "Copy to clipboard",
"Common.Views.ShareDialog.warnCopy": "Browser's error! Use keyboard shortcut [Ctrl] + [C]", "Common.Views.ShareDialog.warnCopy": "Browser's error! Use keyboard shortcut [Ctrl] + [C]",
"DE.Controllers.ApplicationController.convertationErrorText": "Conversion failed.", "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.errorFilePassProtect": "The file is password protected and cannot be opened.",
"DE.Controllers.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server.<br>Please contact your Document Server administrator for details.", "DE.Controllers.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server.<br>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.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.<br>The file content does not match the file extension.",
"DE.Controllers.ApplicationController.errorInconsistentExtDocx": "An error has occurred while opening the file.<br>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.<br>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.<br>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.<br>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.<br>Please contact your Document Server administrator.", "DE.Controllers.ApplicationController.errorLoadingFont": "Fonts are not loaded.<br>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.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.", "DE.Controllers.ApplicationController.errorSessionAbsolute": "The document editing session has expired. Please reload the page.",

View file

@ -96,6 +96,11 @@
"DE.Controllers.ApplicationController.errorFilePassProtect": "El archivo está protegido por una contraseña y no puede ser abierto.", "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.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.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.<br>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.<br>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.<br>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.<br>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.<br>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.<br>Por favor, póngase en contacto con el administrador del Document Server.", "DE.Controllers.ApplicationController.errorLoadingFont": "Las fuentes no están cargadas.<br>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.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.", "DE.Controllers.ApplicationController.errorSessionAbsolute": "La sesión de editar el documento ha expirado. Por favor, recargue la página.",

View file

@ -53,7 +53,7 @@
"Common.UI.Window.yesButtonText": "Oui", "Common.UI.Window.yesButtonText": "Oui",
"Common.Views.CopyWarningDialog.textDontShow": "Ne plus afficher ce message", "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.<br><br>Pour copier ou coller vers ou depuis des applications en dehors de l'onglet d'éditeur, utilisez les raccourcis clavier suivants :", "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.<br><br>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.textToCopy": "pour Copier",
"Common.Views.CopyWarningDialog.textToCut": "pour Couper", "Common.Views.CopyWarningDialog.textToCut": "pour Couper",
"Common.Views.CopyWarningDialog.textToPaste": "pour Coller", "Common.Views.CopyWarningDialog.textToPaste": "pour Coller",
@ -65,7 +65,7 @@
"Common.Views.ImageFromUrlDialog.textUrl": "Collez l'URL de l'image :", "Common.Views.ImageFromUrlDialog.textUrl": "Collez l'URL de l'image :",
"Common.Views.ImageFromUrlDialog.txtEmpty": "Ce champ est obligatoire", "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.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.txtEncoding": "Codage",
"Common.Views.OpenDialog.txtIncorrectPwd": "Le mot de passe est incorrect.", "Common.Views.OpenDialog.txtIncorrectPwd": "Le mot de passe est incorrect.",
"Common.Views.OpenDialog.txtOpenFile": "Entrez le mot de passe pour ouvrir le fichier", "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.SaveAsDlg.textTitle": "Dossier pour enregistrement",
"Common.Views.SelectFileDlg.textLoading": "Chargement", "Common.Views.SelectFileDlg.textLoading": "Chargement",
"Common.Views.SelectFileDlg.textTitle": "Sélectionner la source de données", "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.txtCopy": "Copier dans le presse-papiers",
"Common.Views.ShareDialog.warnCopy": "Erreur du navigateur ! Utilisez le raccourci clavier [Ctrl] + [C]", "Common.Views.ShareDialog.warnCopy": "Erreur du navigateur ! Utilisez le raccourci clavier [Ctrl] + [C]",
"DE.Controllers.ApplicationController.convertationErrorText": "Échec de la conversion.", "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.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.<br>Veuillez contacter votre administrateur de Document Server pour obtenir plus d'informations. ", "DE.Controllers.ApplicationController.errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.<br>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.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.<br>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.<br>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.<br>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.<br>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.<br>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.<br>Veuillez contacter l'administrateur de Document Server.", "DE.Controllers.ApplicationController.errorLoadingFont": "Les polices ne sont pas téléchargées.<br>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.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.", "DE.Controllers.ApplicationController.errorSessionAbsolute": "La session d'édition du document a expiré. Veuillez recharger la page.",

View file

@ -96,6 +96,11 @@
"DE.Controllers.ApplicationController.errorFilePassProtect": "Ֆայլն ունի գաղտնաբառ և չի կարող բացվել։", "DE.Controllers.ApplicationController.errorFilePassProtect": "Ֆայլն ունի գաղտնաբառ և չի կարող բացվել։",
"DE.Controllers.ApplicationController.errorFileSizeExceed": "Ֆայլի չափը գերազանցում է ձեր սերվերի համար սահմանված սահմանափակումը:<br> Մանրամասների համար խնդրում ենք կապվել Ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:", "DE.Controllers.ApplicationController.errorFileSizeExceed": "Ֆայլի չափը գերազանցում է ձեր սերվերի համար սահմանված սահմանափակումը:<br> Մանրամասների համար խնդրում ենք կապվել Ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:",
"DE.Controllers.ApplicationController.errorForceSave": "Սխալ է տեղի ունեցել ֆայլը պահելիս:Խնդրում ենք օգտագործել «Ներբեռնել որպես» տարբերակը՝ ֆայլը ձեր համակարգչի կոշտ սկավառակում պահելու համար կամ ավելի ուշ նորից փորձեք:", "DE.Controllers.ApplicationController.errorForceSave": "Սխալ է տեղի ունեցել ֆայլը պահելիս:Խնդրում ենք օգտագործել «Ներբեռնել որպես» տարբերակը՝ ֆայլը ձեր համակարգչի կոշտ սկավառակում պահելու համար կամ ավելի ուշ նորից փորձեք:",
"DE.Controllers.ApplicationController.errorInconsistentExt": "Ֆայլը բացելիս սխալ է տեղի ունեցել:<br>Ֆայլի բովանդակությունը չի համապատասխանում ֆայլի ընդլայնմանը:",
"DE.Controllers.ApplicationController.errorInconsistentExtDocx": "Ֆայլը բացելիս սխալ է տեղի ունեցել:<br>Ֆայլի բովանդակությունը համապատասխանում է տեքստային փաստաթղթերին (օրինակ՝ docx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում՝ %1:",
"DE.Controllers.ApplicationController.errorInconsistentExtPdf": "Ֆայլը բացելիս սխալ է տեղի ունեցել:Ֆայլի բովանդակությունը համապատասխանում է հետևյալ ձևաչափերից մեկին՝pdf/djvu/xps/oxps,բայց ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
"DE.Controllers.ApplicationController.errorInconsistentExtPptx": "Ֆայլը բացելիս սխալ է տեղի ունեցել:<br>Ֆայլի բովանդակությունը համապատասխանում է ներկայացումներին (օրինակ՝ pptx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
"DE.Controllers.ApplicationController.errorInconsistentExtXlsx": "Ֆայլը բացելիս սխալ է տեղի ունեցել:<br>Ֆայլի բովանդակությունը համապատասխանում է աղյուսակներին (օր. xlsx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
"DE.Controllers.ApplicationController.errorLoadingFont": "Տառատեսակները բեռնված չեն:<br>Խնդրում ենք կապվել ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:", "DE.Controllers.ApplicationController.errorLoadingFont": "Տառատեսակները բեռնված չեն:<br>Խնդրում ենք կապվել ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:",
"DE.Controllers.ApplicationController.errorServerVersion": "Խմբագրիչի տարբերակը արդիացվել է։ Որպեսզի փոփոխումները տեղի ունենան, էջը նորից կբեռնվի։", "DE.Controllers.ApplicationController.errorServerVersion": "Խմբագրիչի տարբերակը արդիացվել է։ Որպեսզի փոփոխումները տեղի ունենան, էջը նորից կբեռնվի։",
"DE.Controllers.ApplicationController.errorSessionAbsolute": "Փաստաթղթի խմբագրման գործաժամը սպառվել է։ Նորի՛ց բեռնեք էջը։", "DE.Controllers.ApplicationController.errorSessionAbsolute": "Փաստաթղթի խմբագրման գործաժամը սպառվել է։ Նորի՛ց բեռնեք էջը։",

View file

@ -96,6 +96,7 @@
"DE.Controllers.ApplicationController.errorFilePassProtect": "Dokumen dilindungi dengan kata sandi dan tidak dapat dibuka.", "DE.Controllers.ApplicationController.errorFilePassProtect": "Dokumen dilindungi dengan kata sandi dan tidak dapat dibuka.",
"DE.Controllers.ApplicationController.errorFileSizeExceed": "Ukuran file melewati batas server Anda.<br>Silakan hubungi admin Server Dokumen Anda untuk detail.", "DE.Controllers.ApplicationController.errorFileSizeExceed": "Ukuran file melewati batas server Anda.<br>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.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.<br>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.<br>Silakan kontak admin Server Dokumen Anda.", "DE.Controllers.ApplicationController.errorLoadingFont": "Font tidak bisa dimuat.<br>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.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.", "DE.Controllers.ApplicationController.errorSessionAbsolute": "Waktu edit dokumen sudah selesai. Silakan muat ulang halaman.",

View file

@ -96,6 +96,11 @@
"DE.Controllers.ApplicationController.errorFilePassProtect": "O documento é protegido por senha e não pode ser aberto.", "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. <br> Por favor, contate seu administrador de Servidor de Documentos para detalhes.", "DE.Controllers.ApplicationController.errorFileSizeExceed": "O tamanho do arquivo excede o limite de seu servidor. <br> 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.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.<br>O conteúdo do arquivo não corresponde à extensão do arquivo.",
"DE.Controllers.ApplicationController.errorInconsistentExtDocx": "Ocorreu um erro ao abrir o arquivo.<br>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.<br>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.<br>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.<br>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. <br> Entre em contato com o administrador do Document Server.", "DE.Controllers.ApplicationController.errorLoadingFont": "As fontes não foram carregadas. <br> 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.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.", "DE.Controllers.ApplicationController.errorSessionAbsolute": "A sessão de edição de documentos expirou. Por Favor atualize a página.",

View file

@ -96,6 +96,11 @@
"DE.Controllers.ApplicationController.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.", "DE.Controllers.ApplicationController.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.",
"DE.Controllers.ApplicationController.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.<br>Обратитесь к администратору Сервера документов для получения дополнительной информации.", "DE.Controllers.ApplicationController.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.<br>Обратитесь к администратору Сервера документов для получения дополнительной информации.",
"DE.Controllers.ApplicationController.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.", "DE.Controllers.ApplicationController.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.",
"DE.Controllers.ApplicationController.errorInconsistentExt": "При открытии файла произошла ошибка.<br>Содержимое файла не соответствует расширению файла.",
"DE.Controllers.ApplicationController.errorInconsistentExtDocx": "При открытии файла произошла ошибка.<br>Содержимое файла соответствует документам (например, docx), но файл имеет несоответствующее расширение: %1.",
"DE.Controllers.ApplicationController.errorInconsistentExtPdf": "При открытии файла произошла ошибка.<br>Содержимое файла соответствует одному из следующих форматов: pdf/djvu/xps/oxps, но файл имеет несоответствующее расширение: %1.",
"DE.Controllers.ApplicationController.errorInconsistentExtPptx": "При открытии файла произошла ошибка.<br>Содержимое файла соответствует презентациям (например, pptx), но файл имеет несоответствующее расширение: %1.",
"DE.Controllers.ApplicationController.errorInconsistentExtXlsx": "При открытии файла произошла ошибка.<br>Содержимое файла соответствует электронным таблицам (например, xlsx), но файл имеет несоответствующее расширение: %1.",
"DE.Controllers.ApplicationController.errorLoadingFont": "Шрифты не загружены.<br>Пожалуйста, обратитесь к администратору Сервера документов.", "DE.Controllers.ApplicationController.errorLoadingFont": "Шрифты не загружены.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
"DE.Controllers.ApplicationController.errorServerVersion": "Версия редактора была обновлена. Страница будет перезагружена, чтобы применить изменения.", "DE.Controllers.ApplicationController.errorServerVersion": "Версия редактора была обновлена. Страница будет перезагружена, чтобы применить изменения.",
"DE.Controllers.ApplicationController.errorSessionAbsolute": "Время сеанса редактирования документа истекло. Пожалуйста, обновите страницу.", "DE.Controllers.ApplicationController.errorSessionAbsolute": "Время сеанса редактирования документа истекло. Пожалуйста, обновите страницу.",

View file

@ -212,6 +212,8 @@ define([
this.api.asc_registerCallback('asc_ChangeCropState', _.bind(this.onChangeCropState, this)); this.api.asc_registerCallback('asc_ChangeCropState', _.bind(this.onChangeCropState, this));
this.api.asc_registerCallback('asc_onLockDocumentProps', _.bind(this.onApiLockDocumentProps, this)); this.api.asc_registerCallback('asc_onLockDocumentProps', _.bind(this.onApiLockDocumentProps, this));
this.api.asc_registerCallback('asc_onUnLockDocumentProps', _.bind(this.onApiUnLockDocumentProps, this)); this.api.asc_registerCallback('asc_onUnLockDocumentProps', _.bind(this.onApiUnLockDocumentProps, this));
this.api.asc_registerCallback('asc_onShowMathTrack', _.bind(this.onShowMathTrack, this));
this.api.asc_registerCallback('asc_onHideMathTrack', _.bind(this.onHideMathTrack, this));
} }
this.api.asc_registerCallback('asc_onCoAuthoringDisconnect', _.bind(this.onCoAuthoringDisconnect, this)); this.api.asc_registerCallback('asc_onCoAuthoringDisconnect', _.bind(this.onCoAuthoringDisconnect, this));
Common.NotificationCenter.on('api:disconnect', _.bind(this.onCoAuthoringDisconnect, this)); Common.NotificationCenter.on('api:disconnect', _.bind(this.onCoAuthoringDisconnect, this));
@ -626,6 +628,25 @@ define([
} }
} }
} }
if (this.mode && this.mode.isEdit) {
var i = -1,
in_equation = false,
locked = false;
while (++i < selectedElements.length) {
var type = selectedElements[i].get_ObjectType();
if (type === Asc.c_oAscTypeSelectElement.Math) {
in_equation = true;
} else if (type === Asc.c_oAscTypeSelectElement.Paragraph || type === Asc.c_oAscTypeSelectElement.Table || type === Asc.c_oAscTypeSelectElement.Header) {
var value = selectedElements[i].get_ObjectValue();
value && (locked = locked || value.get_Locked());
}
}
if (in_equation) {
this._state.equationLocked = locked;
this.disableEquationBar();
}
}
}, },
handleDocumentWheel: function(event) { handleDocumentWheel: function(event) {
@ -697,6 +718,7 @@ define([
me.documentHolder.cmpEl.offset().top - $(window).scrollTop() me.documentHolder.cmpEl.offset().top - $(window).scrollTop()
]; ];
me._Height = me.documentHolder.cmpEl.height(); me._Height = me.documentHolder.cmpEl.height();
me._Width = me.documentHolder.cmpEl.width();
me._BodyWidth = $('body').width(); me._BodyWidth = $('body').width();
}, },
@ -960,6 +982,7 @@ define([
cmpEl.offset().top - $(window).scrollTop() cmpEl.offset().top - $(window).scrollTop()
]; ];
me._Height = cmpEl.height(); me._Height = cmpEl.height();
me._Width = cmpEl.width();
me._BodyWidth = $('body').width(); me._BodyWidth = $('body').width();
} }
@ -1498,6 +1521,7 @@ define([
SetDisabled: function(state, canProtect, fillFormMode) { SetDisabled: function(state, canProtect, fillFormMode) {
this._isDisabled = state; this._isDisabled = state;
this.documentHolder.SetDisabled(state, canProtect, fillFormMode); this.documentHolder.SetDisabled(state, canProtect, fillFormMode);
this.disableEquationBar();
}, },
onTextLanguage: function(langid) { onTextLanguage: function(langid) {
@ -1588,6 +1612,7 @@ define([
cmpEl.offset().top - $(window).scrollTop() cmpEl.offset().top - $(window).scrollTop()
]; ];
me._Height = cmpEl.height(); me._Height = cmpEl.height();
me._Width = cmpEl.width();
me._BodyWidth = $('body').width(); me._BodyWidth = $('body').width();
me.onMouseMoveStart(); me.onMouseMoveStart();
}, },
@ -2307,6 +2332,151 @@ define([
return false; return false;
}, },
onShowMathTrack: function(bounds) {
if (bounds[3] < 0) {
this.onHideMathTrack();
return;
}
var me = this,
documentHolder = me.documentHolder,
eqContainer = documentHolder.cmpEl.find('#equation-container');
// Prepare menu container
if (eqContainer.length < 1) {
var equationsStore = me.getApplication().getCollection('EquationGroups'),
eqStr = '<div id="equation-container" style="position: absolute;">';
me.getApplication().getController('Toolbar').onMathTypes();
me.equationBtns = [];
for (var i = 0; i < equationsStore.length; ++i) {
var style = 'margin-right: 8px;' + (i==0 ? 'margin-left: 5px;' : '');
eqStr += '<span id="id-document-holder-btn-equation-' + i + '" style="' + style +'"></span>';
}
eqStr += '<div class="separator"></div>';
eqStr += '<span id="id-document-holder-btn-equation-settings" style="margin-right: 5px; margin-left: 8px;"></span>';
eqStr += '</div>';
eqContainer = $(eqStr);
documentHolder.cmpEl.find('#id_main_view').append(eqContainer);
var onShowBefore = function (menu) {
var index = menu.options.value,
group = equationsStore.at(index);
var equationPicker = new Common.UI.DataViewSimple({
el: $('#id-document-holder-btn-equation-menu-' + index, menu.cmpEl),
parentMenu: menu,
store: group.get('groupStore'),
scrollAlwaysVisible: true,
showLast: false,
restoreHeight: 450,
itemTemplate: _.template(
'<div class="item-equation" style="" >' +
'<div class="equation-icon" style="background-position:<%= posX %>px <%= posY %>px;width:<%= width %>px;height:<%= height %>px;" id="<%= id %>"></div>' +
'</div>')
});
equationPicker.on('item:click', function(picker, item, record, e) {
if (me.api) {
if (record)
me.api.asc_AddMath(record.get('data').equationType);
}
});
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({
parentEl: $('#id-document-holder-btn-equation-' + i, documentHolder.cmpEl),
cls : 'btn-toolbar no-caret',
iconCls : 'svgicon ' + equationGroup.get('groupIcon'),
hint : equationGroup.get('groupName'),
menu : new Common.UI.Menu({
cls: 'menu-shapes',
value: i,
items: [
{ template: _.template('<div id="id-document-holder-btn-equation-menu-' + i +
'" class="menu-shape" style="width:' + (equationGroup.get('groupWidth') + 8) + 'px; ' +
equationGroup.get('groupHeightStr') + 'margin-left:5px;"></div>') }
]
})
});
btn.menu.on('show:before', onShowBefore);
btn.menu.on('show:before', bringForward);
btn.menu.on('hide:after', sendBackward);
me.equationBtns.push(btn);
}
me.equationSettingsBtn = new Common.UI.Button({
parentEl: $('#id-document-holder-btn-equation-settings', documentHolder.cmpEl),
cls : 'btn-toolbar no-caret',
iconCls : 'toolbar__icon more-vertical',
hint : me.documentHolder.advancedEquationText,
menu : me.documentHolder.createEquationMenu('popuptbeqinput', 'tl-bl')
});
me.equationSettingsBtn.menu.options.initMenu = function() {
var eq = me.api.asc_GetMathInputType();
var menu = me.equationSettingsBtn.menu;
menu.items[0].setChecked(eq===Asc.c_oAscMathInputType.Unicode);
menu.items[1].setChecked(eq===Asc.c_oAscMathInputType.LaTeX);
menu.items[8].setChecked(me.api.asc_IsInlineMath());
};
me.equationSettingsBtn.menu.on('item:click', _.bind(me.convertEquation, me));
me.equationSettingsBtn.menu.on('show:before', function(menu) {
menu.options.initMenu();
});
}
var showPoint = [(bounds[0] + bounds[2])/2 - eqContainer.outerWidth()/2, bounds[1] - eqContainer.outerHeight() - 10];
if (!Common.Utils.InternalSettings.get("de-hidden-rulers")) {
showPoint = [showPoint[0] - 19, showPoint[1] - 26];
}
if (showPoint[1]<0) {
showPoint[1] = bounds[3] + 10;
!Common.Utils.InternalSettings.get("de-hidden-rulers") && (showPoint[1] -= 26);
}
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();
me.equationSettingsBtn.menu.alignPosition();
}
} else {
eqContainer.show();
}
me.disableEquationBar();
},
onHideMathTrack: function() {
var eqContainer = this.documentHolder.cmpEl.find('#equation-container');
if (eqContainer.is(':visible')) {
eqContainer.hide();
}
},
disableEquationBar: function() {
var eqContainer = this.documentHolder.cmpEl.find('#equation-container'),
docProtection = this.documentHolder._docProtection,
disabled = this._isDisabled || this._state.equationLocked || docProtection.isReadOnly || docProtection.isFormsOnly || docProtection.isCommentsOnly;
if (eqContainer.length>0 && eqContainer.is(':visible')) {
this.equationBtns.forEach(function(item){
item && item.setDisabled(!!disabled);
});
this.equationSettingsBtn.setDisabled(!!disabled);
}
},
convertEquation: function(menu, item, e) { convertEquation: function(menu, item, e) {
if (this.api) { if (this.api) {
if (item.options.type=='input') if (item.options.type=='input')
@ -2325,6 +2495,7 @@ define([
} }
if (props && this.documentHolder) { if (props && this.documentHolder) {
this.documentHolder._docProtection = props; this.documentHolder._docProtection = props;
this.disableEquationBar();
} }
}, },

View file

@ -380,6 +380,19 @@ define([
Common.Utils.InternalSettings.set("guest-username", value); Common.Utils.InternalSettings.set("guest-username", value);
Common.Utils.InternalSettings.set("save-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; i<arr.length; i++) {
var item = arr[i].trim();
if (item && (/[\s0-9\.]/).test(item)) {
arr[i] = "'" + item + "'";
}
}
document.documentElement.style.setProperty("--font-family-base-custom", arr.join(','));
}
}
this.editorConfig.user = this.editorConfig.user =
this.appOptions.user = Common.Utils.fillUserInfo(this.editorConfig.user, this.editorConfig.lang, value ? (value + ' (' + this.appOptions.guestName + ')' ) : this.textAnonymous, this.appOptions.user = Common.Utils.fillUserInfo(this.editorConfig.user, this.editorConfig.lang, value ? (value + ' (' + this.appOptions.guestName + ')' ) : this.textAnonymous,
Common.localStorage.getItem("guest-id") || ('uid-' + Date.now())); Common.localStorage.getItem("guest-id") || ('uid-' + Date.now()));
@ -1418,7 +1431,8 @@ define([
}); });
} }
} else if (!this.appOptions.isDesktopApp && !this.appOptions.canBrandingExt && } else if (!this.appOptions.isDesktopApp && !this.appOptions.canBrandingExt &&
this.editorConfig && this.editorConfig.customization && (this.editorConfig.customization.loaderName || this.editorConfig.customization.loaderLogo)) { this.editorConfig && this.editorConfig.customization && (this.editorConfig.customization.loaderName || this.editorConfig.customization.loaderLogo ||
this.editorConfig.customization.font && this.editorConfig.customization.font.name)) {
Common.UI.warning({ Common.UI.warning({
title: this.textPaidFeature, title: this.textPaidFeature,
msg : this.textCustomLoader, msg : this.textCustomLoader,
@ -1983,6 +1997,20 @@ define([
config.msg = this.errorPasswordIsNotCorrect; config.msg = this.errorPasswordIsNotCorrect;
break; 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: default:
config.msg = (typeof id == 'string') ? id : this.errorDefaultMessage.replace('%1', id); config.msg = (typeof id == 'string') ? id : this.errorDefaultMessage.replace('%1', id);
break; break;
@ -3287,7 +3315,12 @@ define([
errorPasswordIsNotCorrect: 'The password you supplied is not correct.<br>Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.', errorPasswordIsNotCorrect: 'The password you supplied is not correct.<br>Verify 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.<br>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).', confirmMaxChangesSize: 'The size of actions exceeds the limitation set for your server.<br>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', textUndo: 'Undo',
textContinue: 'Continue' textContinue: 'Continue',
errorInconsistentExtDocx: 'An error has occurred while opening the file.<br>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.<br>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.<br>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.<br>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.<br>The file content does not match the file extension.'
} }
})(), DE.Controllers.Main || {})) })(), DE.Controllers.Main || {}))
}); });

View file

@ -124,7 +124,7 @@ define([
for (var l = 0; l < text.length; l++) { for (var l = 0; l < text.length; l++) {
var charCode = text.charCodeAt(l), var charCode = text.charCodeAt(l),
char = text.charAt(l); char = text.charAt(l);
if (AscCommon.g_aPunctuation[charCode] !== undefined || char.trim() === '') { if (AscCommon.IsPunctuation(charCode) !== undefined || char.trim() === '') {
isPunctuation = true; isPunctuation = true;
break; break;
} }

View file

@ -2776,7 +2776,7 @@ define([
items: [ items: [
{ template: _.template('<div id="id-toolbar-menu-equationgroup' + i + { template: _.template('<div id="id-toolbar-menu-equationgroup' + i +
'" class="menu-shape" style="width:' + (equationGroup.get('groupWidth') + 8) + 'px; ' + '" class="menu-shape" style="width:' + (equationGroup.get('groupWidth') + 8) + 'px; ' +
equationGroup.get('groupHeight') + 'margin-left:5px;"></div>') } equationGroup.get('groupHeightStr') + 'margin-left:5px;"></div>') }
] ]
}) })
}); });
@ -2827,16 +2827,21 @@ define([
var me = this; var me = this;
var onShowBefore = function(menu) { var onShowBefore = function(menu) {
me.onMathTypes(me._equationTemp); me.onMathTypes(me._equationTemp);
if (me._equationTemp && me._equationTemp.get_Data().length>0)
me.fillEquations();
me.toolbar.btnInsertEquation.menu.off('show:before', onShowBefore); me.toolbar.btnInsertEquation.menu.off('show:before', onShowBefore);
}; };
me.toolbar.btnInsertEquation.menu.on('show:before', onShowBefore); me.toolbar.btnInsertEquation.menu.on('show:before', onShowBefore);
}, },
onMathTypes: function(equation) { onMathTypes: function(equation) {
equation = equation || this._equationTemp;
var equationgrouparray = [], var equationgrouparray = [],
equationsStore = this.getCollection('EquationGroups'); equationsStore = this.getCollection('EquationGroups');
equationsStore.reset(); if (equationsStore.length>0)
return;
// equations groups // equations groups
@ -2844,18 +2849,18 @@ define([
// [translate, count cells, scroll] // [translate, count cells, scroll]
c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Symbol ] = [this.textSymbols, 11]; c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Symbol ] = [this.textSymbols, 11, false, 'svg-icon-symbols'];
c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Fraction ] = [this.textFraction, 4]; c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Fraction ] = [this.textFraction, 4, false, 'svg-icon-fraction'];
c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Script ] = [this.textScript, 4]; c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Script ] = [this.textScript, 4, false, 'svg-icon-script'];
c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Radical ] = [this.textRadical, 4]; c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Radical ] = [this.textRadical, 4, false, 'svg-icon-radical'];
c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Integral ] = [this.textIntegral, 3, true]; c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Integral ] = [this.textIntegral, 3, true, 'svg-icon-integral'];
c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.LargeOperator] = [this.textLargeOperator, 5, true]; c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.LargeOperator] = [this.textLargeOperator, 5, true, 'svg-icon-largeOperator'];
c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Bracket ] = [this.textBracket, 4, true]; c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Bracket ] = [this.textBracket, 4, true, 'svg-icon-bracket'];
c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Function ] = [this.textFunction, 3, true]; c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Function ] = [this.textFunction, 3, true, 'svg-icon-function'];
c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Accent ] = [this.textAccent, 4]; c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Accent ] = [this.textAccent, 4, false, 'svg-icon-accent'];
c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.LimitLog ] = [this.textLimitAndLog, 3]; c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.LimitLog ] = [this.textLimitAndLog, 3, false, 'svg-icon-limAndLog'];
c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Operator ] = [this.textOperator, 4]; c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Operator ] = [this.textOperator, 4, false, 'svg-icon-operator'];
c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Matrix ] = [this.textMatrix, 4, true]; c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Matrix ] = [this.textMatrix, 4, true, 'svg-icon-matrix'];
// equations sub groups // equations sub groups
@ -2925,12 +2930,14 @@ define([
groupName : c_oAscMathMainTypeStrings[id][0], groupName : c_oAscMathMainTypeStrings[id][0],
groupStore : store, groupStore : store,
groupWidth : width, groupWidth : width,
groupHeight : c_oAscMathMainTypeStrings[id][2] ? ' height:'+ normHeight +'px!important; ' : '' groupHeight : normHeight,
groupHeightStr : c_oAscMathMainTypeStrings[id][2] ? ' height:'+ normHeight +'px!important; ' : '',
groupIcon: c_oAscMathMainTypeStrings[id][3]
}); });
} }
} }
equationsStore.add(equationgrouparray); equationsStore.add(equationgrouparray);
this.fillEquations(); // this.fillEquations();
} }
} }
}, },

View file

@ -1151,64 +1151,7 @@ define([
me.menuTableEquation = new Common.UI.MenuItem({ me.menuTableEquation = new Common.UI.MenuItem({
caption : me.advancedEquationText, caption : me.advancedEquationText,
menu : new Common.UI.Menu({ menu : me.createEquationMenu('popuptableeqinput', 'tl-tr')
cls: 'ppm-toolbar shifted-right',
menuAlign: 'tl-tr',
items : [
new Common.UI.MenuItem({
caption : me.unicodeText,
iconCls : 'menu__icon unicode',
checkable : true,
checkmark : false,
checked : false,
toggleGroup : 'popupparaeqinput',
type : 'input',
value : Asc.c_oAscMathInputType.Unicode
}),
new Common.UI.MenuItem({
caption : me.latexText,
iconCls : 'menu__icon latex',
checkable : true,
checkmark : false,
checked : false,
toggleGroup : 'popupparaeqinput',
type : 'input',
value : Asc.c_oAscMathInputType.LaTeX
}),
{ caption : '--' },
new Common.UI.MenuItem({
caption : me.currProfText,
iconCls : 'menu__icon professional-equation',
type : 'view',
value : {all: false, linear: false}
}),
new Common.UI.MenuItem({
caption : me.currLinearText,
iconCls : 'menu__icon linear-equation',
type : 'view',
value : {all: false, linear: true}
}),
new Common.UI.MenuItem({
caption : me.allProfText,
iconCls : 'menu__icon professional-equation',
type : 'view',
value : {all: true, linear: false}
}),
new Common.UI.MenuItem({
caption : me.allLinearText,
iconCls : 'menu__icon linear-equation',
type : 'view',
value : {all: true, linear: true}
}),
{ caption : '--' },
new Common.UI.MenuItem({
caption : me.eqToInlineText,
checkable : true,
checked : false,
type : 'mode'
})
]
})
}); });
me.menuTableSelectText = new Common.UI.MenuItem({ me.menuTableSelectText = new Common.UI.MenuItem({
@ -1661,66 +1604,8 @@ define([
me.menuParagraphEquation = new Common.UI.MenuItem({ me.menuParagraphEquation = new Common.UI.MenuItem({
caption : me.advancedEquationText, caption : me.advancedEquationText,
menu : new Common.UI.Menu({ menu : me.createEquationMenu('popupparaeqinput', 'tl-tr')
cls: 'ppm-toolbar shifted-right',
menuAlign: 'tl-tr',
items : [
new Common.UI.MenuItem({
caption : me.unicodeText,
iconCls : 'menu__icon unicode',
checkable : true,
checkmark : false,
checked : false,
toggleGroup : 'popupparaeqinput',
type : 'input',
value : Asc.c_oAscMathInputType.Unicode
}),
new Common.UI.MenuItem({
caption : me.latexText,
iconCls : 'menu__icon latex',
checkable : true,
checkmark : false,
checked : false,
toggleGroup : 'popupparaeqinput',
type : 'input',
value : Asc.c_oAscMathInputType.LaTeX
}),
{ caption : '--' },
new Common.UI.MenuItem({
caption : me.currProfText,
iconCls : 'menu__icon professional-equation',
type : 'view',
value : {all: false, linear: false}
}),
new Common.UI.MenuItem({
caption : me.currLinearText,
iconCls : 'menu__icon linear-equation',
type : 'view',
value : {all: false, linear: true}
}),
new Common.UI.MenuItem({
caption : me.allProfText,
iconCls : 'menu__icon professional-equation',
type : 'view',
value : {all: true, linear: false}
}),
new Common.UI.MenuItem({
caption : me.allLinearText,
iconCls : 'menu__icon linear-equation',
type : 'view',
value : {all: true, linear: true}
}),
{ caption : '--' },
new Common.UI.MenuItem({
caption : me.eqToInlineText,
checkable : true,
checked : false,
type : 'mode'
})
]
})
}); });
/** coauthoring begin **/ /** coauthoring begin **/
var menuCommentSeparatorPara = new Common.UI.MenuItem({ var menuCommentSeparatorPara = new Common.UI.MenuItem({
caption : '--' caption : '--'
@ -2978,6 +2863,67 @@ define([
} }
}, },
createEquationMenu: function(toggleGroup, menuAlign) {
return new Common.UI.Menu({
cls: 'ppm-toolbar shifted-right',
menuAlign: menuAlign,
items : [
new Common.UI.MenuItem({
caption : this.unicodeText,
iconCls : 'menu__icon unicode',
checkable : true,
checkmark : false,
checked : false,
toggleGroup : toggleGroup,
type : 'input',
value : Asc.c_oAscMathInputType.Unicode
}),
new Common.UI.MenuItem({
caption : this.latexText,
iconCls : 'menu__icon latex',
checkable : true,
checkmark : false,
checked : false,
toggleGroup : toggleGroup,
type : 'input',
value : Asc.c_oAscMathInputType.LaTeX
}),
{ caption : '--' },
new Common.UI.MenuItem({
caption : this.currProfText,
iconCls : 'menu__icon professional-equation',
type : 'view',
value : {all: false, linear: false}
}),
new Common.UI.MenuItem({
caption : this.currLinearText,
iconCls : 'menu__icon linear-equation',
type : 'view',
value : {all: false, linear: true}
}),
new Common.UI.MenuItem({
caption : this.allProfText,
iconCls : 'menu__icon professional-equation',
type : 'view',
value : {all: true, linear: false}
}),
new Common.UI.MenuItem({
caption : this.allLinearText,
iconCls : 'menu__icon linear-equation',
type : 'view',
value : {all: true, linear: true}
}),
{ caption : '--' },
new Common.UI.MenuItem({
caption : this.eqToInlineText,
checkable : true,
checked : false,
type : 'mode'
})
]
});
},
focus: function() { focus: function() {
var me = this; var me = this;
_.defer(function(){ me.cmpEl.focus(); }, 50); _.defer(function(){ me.cmpEl.focus(); }, 50);

View file

@ -69,7 +69,7 @@ define([
if (item.options.action === 'help') { if (item.options.action === 'help') {
if ( panel.noHelpContents === true && navigator.onLine ) { if ( panel.noHelpContents === true && navigator.onLine ) {
this.fireEvent('item:click', [this, 'external-help', true]); this.fireEvent('item:click', [this, 'external-help', true]);
window.open(panel.urlHelpCenter, '_blank'); !!panel.urlHelpCenter && window.open(panel.urlHelpCenter, '_blank');
return; return;
} }
} }

View file

@ -2019,7 +2019,14 @@ define([
this.menu = options.menu; this.menu = options.menu;
this.urlPref = 'resources/help/{{DEFAULT_LANG}}/'; this.urlPref = 'resources/help/{{DEFAULT_LANG}}/';
this.openUrl = null; this.openUrl = null;
this.urlHelpCenter = '{{HELP_CENTER_WEB_DE}}';
if ( !Common.Utils.isIE ) {
if ( /^https?:\/\//.test('{{HELP_CENTER_WEB_DE}}') ) {
const _url_obj = new URL('{{HELP_CENTER_WEB_DE}}');
_url_obj.searchParams.set('lang', Common.Locale.getCurrentLanguage());
this.urlHelpCenter = _url_obj.toString();
}
}
this.en_data = [ this.en_data = [
{"src": "ProgramInterface/ProgramInterface.htm", "name": "Introducing Document Editor user interface", "headername": "Program Interface"}, {"src": "ProgramInterface/ProgramInterface.htm", "name": "Introducing Document Editor user interface", "headername": "Program Interface"},

View file

@ -73,7 +73,7 @@ define([
'<label>' + t.txtRepeat + '</label>', '<label>' + t.txtRepeat + '</label>',
'</div>', '</div>',
'<div id="id-protect-repeat-txt" class="input-row" style="margin-bottom: 10px;"></div>', '<div id="id-protect-repeat-txt" class="input-row" style="margin-bottom: 10px;"></div>',
'<div class="input-row" style="margin-bottom: 5px;">', '<div class="" style="margin-bottom: 5px;">',
'<label style="font-weight: bold;letter-spacing: 0.01em;margin-bottom: 5px;">' + t.txtAllow + '</label>', '<label style="font-weight: bold;letter-spacing: 0.01em;margin-bottom: 5px;">' + t.txtAllow + '</label>',
'</div>', '</div>',
'<div id="id-protect-radio-view" style="margin-bottom: 8px;"></div>', '<div id="id-protect-radio-view" style="margin-bottom: 8px;"></div>',

View file

@ -331,6 +331,7 @@
<img class="inline-svg" src="../../common/main/resources/img/header/icons.svg"> <img class="inline-svg" src="../../common/main/resources/img/header/icons.svg">
<img class="inline-svg" src="../../common/main/resources/img/toolbar/shapetypes.svg"> <img class="inline-svg" src="../../common/main/resources/img/toolbar/shapetypes.svg">
<img class="inline-svg" src="../../common/main/resources/img/toolbar/charttypes.svg"> <img class="inline-svg" src="../../common/main/resources/img/toolbar/charttypes.svg">
<img class="inline-svg" src="../../common/main/resources/img/toolbar/equationicons.svg">
<script> <script>
var svgpoints = document.querySelectorAll('img.inline-svg'); var svgpoints = document.querySelectorAll('img.inline-svg');
SVGInjector(svgpoints); SVGInjector(svgpoints);

View file

@ -321,6 +321,7 @@
<inline src="../../common/main/resources/img/header/icons.svg" /> <inline src="../../common/main/resources/img/header/icons.svg" />
<inline src="../../common/main/resources/img/toolbar/shapetypes.svg" /> <inline src="../../common/main/resources/img/toolbar/shapetypes.svg" />
<inline src="../../common/main/resources/img/toolbar/charttypes.svg" /> <inline src="../../common/main/resources/img/toolbar/charttypes.svg" />
<inline src="../../common/main/resources/img/toolbar/equationicons.svg" />
<script src="../../../../../../sdkjs/common/device_scale.js?__inline=true"></script> <script src="../../../../../../sdkjs/common/device_scale.js?__inline=true"></script>
<script data-main="app" src="../../../vendor/requirejs/require.js"></script> <script data-main="app" src="../../../vendor/requirejs/require.js"></script>

View file

@ -271,6 +271,7 @@
<img class="inline-svg" src="../../common/main/resources/img/header/icons.svg"> <img class="inline-svg" src="../../common/main/resources/img/header/icons.svg">
<img class="inline-svg" src="../../common/main/resources/img/toolbar/shapetypes.svg"> <img class="inline-svg" src="../../common/main/resources/img/toolbar/shapetypes.svg">
<img class="inline-svg" src="../../common/main/resources/img/toolbar/charttypes.svg"> <img class="inline-svg" src="../../common/main/resources/img/toolbar/charttypes.svg">
<img class="inline-svg" src="../../common/main/resources/img/toolbar/equationicons.svg">
<script> <script>
var svgpoints = document.querySelectorAll('img.inline-svg'); var svgpoints = document.querySelectorAll('img.inline-svg');
SVGInjector(svgpoints); SVGInjector(svgpoints);

View file

@ -320,6 +320,7 @@
<inline src="../../common/main/resources/img/header/icons.svg" /> <inline src="../../common/main/resources/img/header/icons.svg" />
<inline src="../../common/main/resources/img/toolbar/shapetypes.svg" /> <inline src="../../common/main/resources/img/toolbar/shapetypes.svg" />
<inline src="../../common/main/resources/img/toolbar/charttypes.svg" /> <inline src="../../common/main/resources/img/toolbar/charttypes.svg" />
<inline src="../../common/main/resources/img/toolbar/equationicons.svg" />
<div id="viewport"></div> <div id="viewport"></div>
<script data-main="app" src="../../../vendor/requirejs/require.js"></script> <script data-main="app" src="../../../vendor/requirejs/require.js"></script>

View file

@ -9,6 +9,7 @@
"Common.Controllers.ExternalMergeEditor.textClose": "Bağla", "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.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.ExternalMergeEditor.warningTitle": "Xəbərdarlıq",
"Common.Controllers.ExternalOleEditor.textAnonymous": "Anonim",
"Common.Controllers.History.notcriticalErrorTitle": "Xəbərdarlıq", "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.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ı", "Common.Controllers.ReviewChanges.textAtLeast": "ən azı",
@ -242,6 +243,7 @@
"Common.Views.Comments.textAddComment": "Şərh Əlavə Et", "Common.Views.Comments.textAddComment": "Şərh Əlavə Et",
"Common.Views.Comments.textAddCommentToDoc": "Sənədə şərh əlavə et", "Common.Views.Comments.textAddCommentToDoc": "Sənədə şərh əlavə et",
"Common.Views.Comments.textAddReply": "Cavab əlavə edin", "Common.Views.Comments.textAddReply": "Cavab əlavə edin",
"Common.Views.Comments.textAll": "Bütün",
"Common.Views.Comments.textAnonym": "Qonaq", "Common.Views.Comments.textAnonym": "Qonaq",
"Common.Views.Comments.textCancel": "Ləğv et", "Common.Views.Comments.textCancel": "Ləğv et",
"Common.Views.Comments.textClose": "Bağla", "Common.Views.Comments.textClose": "Bağla",
@ -433,6 +435,7 @@
"Common.Views.ReviewPopover.txtReject": "Rədd edin", "Common.Views.ReviewPopover.txtReject": "Rədd edin",
"Common.Views.SaveAsDlg.textLoading": "Yüklənir", "Common.Views.SaveAsDlg.textLoading": "Yüklənir",
"Common.Views.SaveAsDlg.textTitle": "Yadda saxlama üçün qovluq", "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.textLoading": "Yüklənir",
"Common.Views.SelectFileDlg.textTitle": "Verilənlər Mənbəyini Seçin", "Common.Views.SelectFileDlg.textTitle": "Verilənlər Mənbəyini Seçin",
"Common.Views.SignDialog.textBold": "Qalın", "Common.Views.SignDialog.textBold": "Qalın",
@ -1978,6 +1981,7 @@
"DE.Views.LineNumbersDialog.textStartAt": "Başlayın", "DE.Views.LineNumbersDialog.textStartAt": "Başlayın",
"DE.Views.LineNumbersDialog.textTitle": "Sətir Nömrələri", "DE.Views.LineNumbersDialog.textTitle": "Sətir Nömrələri",
"DE.Views.LineNumbersDialog.txtAutoText": "Avto", "DE.Views.LineNumbersDialog.txtAutoText": "Avto",
"DE.Views.Links.capBtnAddText": "Mətn əlavə edin",
"DE.Views.Links.capBtnBookmarks": "Əlfəcin", "DE.Views.Links.capBtnBookmarks": "Əlfəcin",
"DE.Views.Links.capBtnCaption": "Başlıq", "DE.Views.Links.capBtnCaption": "Başlıq",
"DE.Views.Links.capBtnContentsUpdate": "Təzələyin", "DE.Views.Links.capBtnContentsUpdate": "Təzələyin",
@ -2662,6 +2666,7 @@
"DE.Views.Toolbar.textTabLinks": "İstinadlar", "DE.Views.Toolbar.textTabLinks": "İstinadlar",
"DE.Views.Toolbar.textTabProtect": "Qoruma", "DE.Views.Toolbar.textTabProtect": "Qoruma",
"DE.Views.Toolbar.textTabReview": "Nəzərdən keçir", "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.textTitleError": "Xəta",
"DE.Views.Toolbar.textToCurrent": "Cari mövqeyə qədər", "DE.Views.Toolbar.textToCurrent": "Cari mövqeyə qədər",
"DE.Views.Toolbar.textTop": "Yuxarı:", "DE.Views.Toolbar.textTop": "Yuxarı:",
@ -2753,6 +2758,8 @@
"DE.Views.Toolbar.txtScheme7": "Bərabərlik", "DE.Views.Toolbar.txtScheme7": "Bərabərlik",
"DE.Views.Toolbar.txtScheme8": "Axın", "DE.Views.Toolbar.txtScheme8": "Axın",
"DE.Views.Toolbar.txtScheme9": "Emalatxana", "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.textAuto": "Avto",
"DE.Views.WatermarkSettingsDialog.textBold": "Qalın", "DE.Views.WatermarkSettingsDialog.textBold": "Qalın",
"DE.Views.WatermarkSettingsDialog.textColor": "Mətn rəngi", "DE.Views.WatermarkSettingsDialog.textColor": "Mətn rəngi",

View file

@ -827,6 +827,7 @@
"DE.Controllers.Main.txtSyntaxError": "Сінтаксічная памылка", "DE.Controllers.Main.txtSyntaxError": "Сінтаксічная памылка",
"DE.Controllers.Main.txtTableInd": "Індэкс табліцы не можа быць нулём", "DE.Controllers.Main.txtTableInd": "Індэкс табліцы не можа быць нулём",
"DE.Controllers.Main.txtTableOfContents": "Змест", "DE.Controllers.Main.txtTableOfContents": "Змест",
"DE.Controllers.Main.txtTableOfFigures": "Спіс ілюстрацый",
"DE.Controllers.Main.txtTooLarge": "Лік занадта вялікі для фарматавання", "DE.Controllers.Main.txtTooLarge": "Лік занадта вялікі для фарматавання",
"DE.Controllers.Main.txtTypeEquation": "Месца для раўнання.", "DE.Controllers.Main.txtTypeEquation": "Месца для раўнання.",
"DE.Controllers.Main.txtUndefBookmark": "Закладка не вызначаная", "DE.Controllers.Main.txtUndefBookmark": "Закладка не вызначаная",
@ -1682,6 +1683,7 @@
"DE.Views.FileMenuPanels.Settings.strPasteButton": "Паказваць кнопку параметраў устаўкі падчас устаўкі", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Паказваць кнопку параметраў устаўкі падчас устаўкі",
"DE.Views.FileMenuPanels.Settings.strShowChanges": "Адлюстроўваць змены падчас сумеснай працы", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Адлюстроўваць змены падчас сумеснай працы",
"DE.Views.FileMenuPanels.Settings.strStrict": "Строгі", "DE.Views.FileMenuPanels.Settings.strStrict": "Строгі",
"DE.Views.FileMenuPanels.Settings.strTheme": "Тэма інтэрфейсу",
"DE.Views.FileMenuPanels.Settings.strUnit": "Адзінкі вымярэння", "DE.Views.FileMenuPanels.Settings.strUnit": "Адзінкі вымярэння",
"DE.Views.FileMenuPanels.Settings.strZoom": "Прадвызначанае значэнне маштабу", "DE.Views.FileMenuPanels.Settings.strZoom": "Прадвызначанае значэнне маштабу",
"DE.Views.FileMenuPanels.Settings.text10Minutes": "Кожныя 10 хвілін", "DE.Views.FileMenuPanels.Settings.text10Minutes": "Кожныя 10 хвілін",
@ -1937,6 +1939,7 @@
"DE.Views.Links.capBtnInsContents": "Змест", "DE.Views.Links.capBtnInsContents": "Змест",
"DE.Views.Links.capBtnInsFootnote": "Зноска", "DE.Views.Links.capBtnInsFootnote": "Зноска",
"DE.Views.Links.capBtnInsLink": "Гіперспасылка", "DE.Views.Links.capBtnInsLink": "Гіперспасылка",
"DE.Views.Links.capBtnTOF": "Спіс ілюстрацый",
"DE.Views.Links.confirmDeleteFootnotes": "Хочаце выдаліць усе зноскі?", "DE.Views.Links.confirmDeleteFootnotes": "Хочаце выдаліць усе зноскі?",
"DE.Views.Links.confirmReplaceTOF": "Хочаце замяніць абраную табліцу фігур?", "DE.Views.Links.confirmReplaceTOF": "Хочаце замяніць абраную табліцу фігур?",
"DE.Views.Links.mniConvertNote": "Пераўтварыць усе зноскі", "DE.Views.Links.mniConvertNote": "Пераўтварыць усе зноскі",
@ -2311,6 +2314,7 @@
"DE.Views.TableOfContentsSettings.textStyles": "Стылі", "DE.Views.TableOfContentsSettings.textStyles": "Стылі",
"DE.Views.TableOfContentsSettings.textTable": "Табліца", "DE.Views.TableOfContentsSettings.textTable": "Табліца",
"DE.Views.TableOfContentsSettings.textTitle": "Змест", "DE.Views.TableOfContentsSettings.textTitle": "Змест",
"DE.Views.TableOfContentsSettings.textTitleTOF": "Спіс ілюстрацый",
"DE.Views.TableOfContentsSettings.txtCentered": "Па цэнтры", "DE.Views.TableOfContentsSettings.txtCentered": "Па цэнтры",
"DE.Views.TableOfContentsSettings.txtClassic": "Класічны", "DE.Views.TableOfContentsSettings.txtClassic": "Класічны",
"DE.Views.TableOfContentsSettings.txtCurrent": "Бягучы", "DE.Views.TableOfContentsSettings.txtCurrent": "Бягучы",
@ -2705,6 +2709,7 @@
"DE.Views.ViewTab.tipDarkDocument": "Цёмны дакумент", "DE.Views.ViewTab.tipDarkDocument": "Цёмны дакумент",
"DE.Views.ViewTab.tipFitToPage": "Па памеры старонкі", "DE.Views.ViewTab.tipFitToPage": "Па памеры старонкі",
"DE.Views.ViewTab.tipFitToWidth": "Па шырыні", "DE.Views.ViewTab.tipFitToWidth": "Па шырыні",
"DE.Views.ViewTab.tipInterfaceTheme": "Тэма інтэрфейсу",
"DE.Views.WatermarkSettingsDialog.textAuto": "Аўта", "DE.Views.WatermarkSettingsDialog.textAuto": "Аўта",
"DE.Views.WatermarkSettingsDialog.textBold": "Тоўсты", "DE.Views.WatermarkSettingsDialog.textBold": "Тоўсты",
"DE.Views.WatermarkSettingsDialog.textColor": "Колер тэксту", "DE.Views.WatermarkSettingsDialog.textColor": "Колер тэксту",

View file

@ -266,6 +266,8 @@
"Common.Views.ReviewChanges.txtChat": "Чат", "Common.Views.ReviewChanges.txtChat": "Чат",
"Common.Views.ReviewChanges.txtClose": "Затвори", "Common.Views.ReviewChanges.txtClose": "Затвори",
"Common.Views.ReviewChanges.txtCoAuthMode": "Режим на съвместно редактиране", "Common.Views.ReviewChanges.txtCoAuthMode": "Режим на съвместно редактиране",
"Common.Views.ReviewChanges.txtCommentRemove": "Премахване",
"Common.Views.ReviewChanges.txtCommentResolve": "Решение",
"Common.Views.ReviewChanges.txtDocLang": "Език", "Common.Views.ReviewChanges.txtDocLang": "Език",
"Common.Views.ReviewChanges.txtEditing": "редактиране", "Common.Views.ReviewChanges.txtEditing": "редактиране",
"Common.Views.ReviewChanges.txtFinal": "Всички промени са приети {0}", "Common.Views.ReviewChanges.txtFinal": "Всички промени са приети {0}",
@ -1574,6 +1576,7 @@
"DE.Views.LeftMenu.tipChat": "Чат", "DE.Views.LeftMenu.tipChat": "Чат",
"DE.Views.LeftMenu.tipComments": "Коментари", "DE.Views.LeftMenu.tipComments": "Коментари",
"DE.Views.LeftMenu.tipNavigation": "Навигация", "DE.Views.LeftMenu.tipNavigation": "Навигация",
"DE.Views.LeftMenu.tipOutline": "Заглавия",
"DE.Views.LeftMenu.tipPlugins": "Добавки", "DE.Views.LeftMenu.tipPlugins": "Добавки",
"DE.Views.LeftMenu.tipSearch": "Търсене", "DE.Views.LeftMenu.tipSearch": "Търсене",
"DE.Views.LeftMenu.tipSupport": "Обратна връзка и поддръжка", "DE.Views.LeftMenu.tipSupport": "Обратна връзка и поддръжка",
@ -1648,6 +1651,7 @@
"DE.Views.MailMergeSettings.txtPrev": "Към предишния запис", "DE.Views.MailMergeSettings.txtPrev": "Към предишния запис",
"DE.Views.MailMergeSettings.txtUntitled": "Неозаглавен", "DE.Views.MailMergeSettings.txtUntitled": "Неозаглавен",
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Започването на сливане не бе успешно", "DE.Views.MailMergeSettings.warnProcessMailMerge": "Започването на сливане не бе успешно",
"DE.Views.Navigation.strNavigate": "Заглавия",
"DE.Views.Navigation.txtCollapse": "Свиване на всички", "DE.Views.Navigation.txtCollapse": "Свиване на всички",
"DE.Views.Navigation.txtDemote": "Понижавам", "DE.Views.Navigation.txtDemote": "Понижавам",
"DE.Views.Navigation.txtEmpty": "Този документ не съдържа заглавия", "DE.Views.Navigation.txtEmpty": "Този документ не съдържа заглавия",
@ -2117,6 +2121,7 @@
"DE.Views.Toolbar.textTabLinks": "Препратки", "DE.Views.Toolbar.textTabLinks": "Препратки",
"DE.Views.Toolbar.textTabProtect": "Защита", "DE.Views.Toolbar.textTabProtect": "Защита",
"DE.Views.Toolbar.textTabReview": "Преглед", "DE.Views.Toolbar.textTabReview": "Преглед",
"DE.Views.Toolbar.textTabView": "Изглед",
"DE.Views.Toolbar.textTitleError": "Грешка", "DE.Views.Toolbar.textTitleError": "Грешка",
"DE.Views.Toolbar.textToCurrent": "Към текущата позиция", "DE.Views.Toolbar.textToCurrent": "Към текущата позиция",
"DE.Views.Toolbar.textTop": "Връх: ", "DE.Views.Toolbar.textTop": "Връх: ",
@ -2203,6 +2208,9 @@
"DE.Views.Toolbar.txtScheme8": "Поток", "DE.Views.Toolbar.txtScheme8": "Поток",
"DE.Views.Toolbar.txtScheme9": "Леярна", "DE.Views.Toolbar.txtScheme9": "Леярна",
"DE.Views.ViewTab.textInterfaceTheme": "Тема на интерфейса", "DE.Views.ViewTab.textInterfaceTheme": "Тема на интерфейса",
"DE.Views.ViewTab.textOutline": "Заглавия",
"DE.Views.ViewTab.textRulers": "Владетели",
"DE.Views.ViewTab.tipHeadings": "Заглавия",
"DE.Views.WatermarkSettingsDialog.textFont": "Шрифт", "DE.Views.WatermarkSettingsDialog.textFont": "Шрифт",
"DE.Views.WatermarkSettingsDialog.textLanguage": "Език", "DE.Views.WatermarkSettingsDialog.textLanguage": "Език",
"DE.Views.WatermarkSettingsDialog.textTitle": "Настройки на воден знак" "DE.Views.WatermarkSettingsDialog.textTitle": "Настройки на воден знак"

View file

@ -125,6 +125,61 @@
"Common.define.chartData.textScatterSmoothMarker": "Dispersió amb línies suaus i marcadors", "Common.define.chartData.textScatterSmoothMarker": "Dispersió amb línies suaus i marcadors",
"Common.define.chartData.textStock": "Accions", "Common.define.chartData.textStock": "Accions",
"Common.define.chartData.textSurface": "Superfície", "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.textMoreButton": "Més",
"Common.Translation.warnFileLocked": "No pots editar aquest fitxer perquè és obert en una altra aplicació.", "Common.Translation.warnFileLocked": "No pots editar aquest fitxer perquè és obert en una altra aplicació.",
"Common.Translation.warnFileLockedBtnEdit": "Crea una còpia", "Common.Translation.warnFileLockedBtnEdit": "Crea una còpia",
@ -288,6 +343,7 @@
"Common.Views.DocumentAccessDialog.textLoading": "S'està carregant...", "Common.Views.DocumentAccessDialog.textLoading": "S'està carregant...",
"Common.Views.DocumentAccessDialog.textTitle": "Configuració per compartir", "Common.Views.DocumentAccessDialog.textTitle": "Configuració per compartir",
"Common.Views.ExternalDiagramEditor.textTitle": "Editor de gràfics", "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.ExternalMergeEditor.textTitle": "Destinataris de la combinació de la correspondència",
"Common.Views.ExternalOleEditor.textTitle": "Editor del full de càlcul", "Common.Views.ExternalOleEditor.textTitle": "Editor del full de càlcul",
"Common.Views.Header.labelCoUsersDescr": "Usuaris que editen el fitxer:", "Common.Views.Header.labelCoUsersDescr": "Usuaris que editen el fitxer:",
@ -354,6 +410,7 @@
"Common.Views.Plugins.textStart": "Inici", "Common.Views.Plugins.textStart": "Inici",
"Common.Views.Plugins.textStop": "Atura", "Common.Views.Plugins.textStop": "Atura",
"Common.Views.Protection.hintAddPwd": "Xifra amb contrasenya", "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.hintPwd": "Canvia o suprimeix la contrasenya",
"Common.Views.Protection.hintSignature": "Afegeix una signatura digital o una línia de signatura", "Common.Views.Protection.hintSignature": "Afegeix una signatura digital o una línia de signatura",
"Common.Views.Protection.txtAddPwd": "Afegeix una contrasenya", "Common.Views.Protection.txtAddPwd": "Afegeix una contrasenya",
@ -499,6 +556,7 @@
"Common.Views.SignDialog.tipFontName": "Nom de la lletra", "Common.Views.SignDialog.tipFontName": "Nom de la lletra",
"Common.Views.SignDialog.tipFontSize": "Mida 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.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.textInfoEmail": "Correu electrònic",
"Common.Views.SignSettingsDialog.textInfoName": "Nom", "Common.Views.SignSettingsDialog.textInfoName": "Nom",
"Common.Views.SignSettingsDialog.textInfoTitle": "Títol del signant", "Common.Views.SignSettingsDialog.textInfoTitle": "Títol del signant",
@ -640,6 +698,7 @@
"DE.Controllers.Main.textClose": "Tanca", "DE.Controllers.Main.textClose": "Tanca",
"DE.Controllers.Main.textCloseTip": "Feu clic per tancar el consell", "DE.Controllers.Main.textCloseTip": "Feu clic per tancar el consell",
"DE.Controllers.Main.textContactUs": "Contacta amb vendes", "DE.Controllers.Main.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 lequació al format dOffice Math ML. <br>Vols convertir-ho ara?", "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 lequació al format dOffice Math ML. <br>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. <br>Contacteu amb el nostre departament de vendes per obtenir un pressupost.", "DE.Controllers.Main.textCustomLoader": "Tingueu en compte que, segons els termes de la llicència, no teniu dret a canviar el carregador. <br>Contacteu amb el nostre departament de vendes per obtenir un pressupost.",
"DE.Controllers.Main.textDisconnect": "S'ha perdut la connexió", "DE.Controllers.Main.textDisconnect": "S'ha perdut la connexió",
@ -1329,9 +1388,13 @@
"DE.Views.CellsAddDialog.textRow": "Files", "DE.Views.CellsAddDialog.textRow": "Files",
"DE.Views.CellsAddDialog.textTitle": "Insereix diversos", "DE.Views.CellsAddDialog.textTitle": "Insereix diversos",
"DE.Views.CellsAddDialog.textUp": "Per damunt del cursor", "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.text3dRotation": "Rotació 3D",
"DE.Views.ChartSettings.textAdvanced": "Mostra la configuració avançada", "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.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.textEditData": "Edita les dades",
"DE.Views.ChartSettings.textHeight": "Alçada", "DE.Views.ChartSettings.textHeight": "Alçada",
"DE.Views.ChartSettings.textOriginalSize": "Mida real", "DE.Views.ChartSettings.textOriginalSize": "Mida real",
@ -1429,6 +1492,8 @@
"DE.Views.DateTimeDialog.textLang": "Idioma", "DE.Views.DateTimeDialog.textLang": "Idioma",
"DE.Views.DateTimeDialog.textUpdate": "Actualitza automàticament", "DE.Views.DateTimeDialog.textUpdate": "Actualitza automàticament",
"DE.Views.DateTimeDialog.txtTitle": "Hora i data", "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.aboveText": "A dalt",
"DE.Views.DocumentHolder.addCommentText": "Afegeix un comentari", "DE.Views.DocumentHolder.addCommentText": "Afegeix un comentari",
"DE.Views.DocumentHolder.advancedDropCapText": "Configuració de la lletra de caixa alta", "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.advancedTableText": "Configuració avançada de la taula",
"DE.Views.DocumentHolder.advancedText": "Configuració avançada", "DE.Views.DocumentHolder.advancedText": "Configuració avançada",
"DE.Views.DocumentHolder.alignmentText": "Alineació", "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.belowText": "Més avall",
"DE.Views.DocumentHolder.breakBeforeText": "Salt de pàgina anterior", "DE.Views.DocumentHolder.breakBeforeText": "Salt de pàgina anterior",
"DE.Views.DocumentHolder.bulletsText": "Pics i numeració", "DE.Views.DocumentHolder.bulletsText": "Pics i numeració",
@ -1445,6 +1512,8 @@
"DE.Views.DocumentHolder.centerText": "Centra", "DE.Views.DocumentHolder.centerText": "Centra",
"DE.Views.DocumentHolder.chartText": "Configuració avançada del gràfic", "DE.Views.DocumentHolder.chartText": "Configuració avançada del gràfic",
"DE.Views.DocumentHolder.columnText": "Columna", "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.deleteColumnText": "Suprimeix la columna",
"DE.Views.DocumentHolder.deleteRowText": "Suprimeix la fila", "DE.Views.DocumentHolder.deleteRowText": "Suprimeix la fila",
"DE.Views.DocumentHolder.deleteTableText": "Suprimeix la taula", "DE.Views.DocumentHolder.deleteTableText": "Suprimeix la taula",
@ -1457,6 +1526,7 @@
"DE.Views.DocumentHolder.editFooterText": "Edita el peu de pàgina", "DE.Views.DocumentHolder.editFooterText": "Edita el peu de pàgina",
"DE.Views.DocumentHolder.editHeaderText": "Edita la capçalera", "DE.Views.DocumentHolder.editHeaderText": "Edita la capçalera",
"DE.Views.DocumentHolder.editHyperlinkText": "Edita l'enllaç", "DE.Views.DocumentHolder.editHyperlinkText": "Edita l'enllaç",
"DE.Views.DocumentHolder.eqToInlineText": "Canvia a Inline",
"DE.Views.DocumentHolder.guestText": "Convidat", "DE.Views.DocumentHolder.guestText": "Convidat",
"DE.Views.DocumentHolder.hyperlinkText": "Enllaç", "DE.Views.DocumentHolder.hyperlinkText": "Enllaç",
"DE.Views.DocumentHolder.ignoreAllSpellText": "Ignora-ho tot", "DE.Views.DocumentHolder.ignoreAllSpellText": "Ignora-ho tot",
@ -2374,6 +2444,11 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Estableix només la vora superior", "DE.Views.ParagraphSettingsAdvanced.tipTop": "Estableix només la vora superior",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automàtic", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automàtic",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Sense vores", "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.txtChartSettings": "Configuració del gràfic",
"DE.Views.RightMenu.txtFormSettings": "Configuració del formulari\n\t", "DE.Views.RightMenu.txtFormSettings": "Configuració del formulari\n\t",
"DE.Views.RightMenu.txtHeaderFooterSettings": "Configuració de la capçalera i el peu de pàgina", "DE.Views.RightMenu.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.tipOuter": "Estableix només la vora exterior",
"DE.Views.TableSettings.tipRight": "Estableix només la vora exterior dreta", "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.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.txtNoBorders": "Sense vores",
"DE.Views.TableSettings.txtTable_Accent": "Accent", "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_Colorful": "Multicolor",
"DE.Views.TableSettings.txtTable_Dark": "Fosc", "DE.Views.TableSettings.txtTable_Dark": "Fosc",
"DE.Views.TableSettings.txtTable_GridTable": "Taula amb quadrícula", "DE.Views.TableSettings.txtTable_GridTable": "Taula amb quadrícula",

View file

@ -1424,6 +1424,8 @@
"DE.Views.DateTimeDialog.textLang": "Jazyk", "DE.Views.DateTimeDialog.textLang": "Jazyk",
"DE.Views.DateTimeDialog.textUpdate": "Aktualizovat automaticky", "DE.Views.DateTimeDialog.textUpdate": "Aktualizovat automaticky",
"DE.Views.DateTimeDialog.txtTitle": "Datum a čas", "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.aboveText": "Nad",
"DE.Views.DocumentHolder.addCommentText": "Přidat komentář", "DE.Views.DocumentHolder.addCommentText": "Přidat komentář",
"DE.Views.DocumentHolder.advancedDropCapText": "Nastavení iniciály", "DE.Views.DocumentHolder.advancedDropCapText": "Nastavení iniciály",

View file

@ -193,6 +193,7 @@
"Common.UI.ThemeColorPalette.textStandartColors": "Standard farve", "Common.UI.ThemeColorPalette.textStandartColors": "Standard farve",
"Common.UI.ThemeColorPalette.textThemeColors": "Tema farver", "Common.UI.ThemeColorPalette.textThemeColors": "Tema farver",
"Common.UI.Themes.txtThemeClassicLight": "Klassisk lys", "Common.UI.Themes.txtThemeClassicLight": "Klassisk lys",
"Common.UI.Themes.txtThemeContrastDark": "Mørk kontrast",
"Common.UI.Themes.txtThemeDark": "Mørk", "Common.UI.Themes.txtThemeDark": "Mørk",
"Common.UI.Themes.txtThemeLight": "Lys", "Common.UI.Themes.txtThemeLight": "Lys",
"Common.UI.Themes.txtThemeSystem": "Samme som system", "Common.UI.Themes.txtThemeSystem": "Samme som system",
@ -1432,6 +1433,8 @@
"DE.Views.DateTimeDialog.textLang": "Sprog", "DE.Views.DateTimeDialog.textLang": "Sprog",
"DE.Views.DateTimeDialog.textUpdate": "Opdater automatisk", "DE.Views.DateTimeDialog.textUpdate": "Opdater automatisk",
"DE.Views.DateTimeDialog.txtTitle": "Dato og tid", "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.aboveText": "Over",
"DE.Views.DocumentHolder.addCommentText": "Tilføj kommentar", "DE.Views.DocumentHolder.addCommentText": "Tilføj kommentar",
"DE.Views.DocumentHolder.advancedDropCapText": "Indstillinger for unical", "DE.Views.DocumentHolder.advancedDropCapText": "Indstillinger for unical",
@ -2338,6 +2341,8 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Vælg kun øverste ramme", "DE.Views.ParagraphSettingsAdvanced.tipTop": "Vælg kun øverste ramme",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automatisk", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automatisk",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Ingen rammer", "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.txtChartSettings": "Diagram indstillinger",
"DE.Views.RightMenu.txtFormSettings": "Formularindstillinger", "DE.Views.RightMenu.txtFormSettings": "Formularindstillinger",
"DE.Views.RightMenu.txtHeaderFooterSettings": "Sidehoved- og sidefodsinstillinger", "DE.Views.RightMenu.txtHeaderFooterSettings": "Sidehoved- og sidefodsinstillinger",
@ -2876,14 +2881,18 @@
"DE.Views.Toolbar.txtScheme8": "Flow", "DE.Views.Toolbar.txtScheme8": "Flow",
"DE.Views.Toolbar.txtScheme9": "Støberi", "DE.Views.Toolbar.txtScheme9": "Støberi",
"DE.Views.ViewTab.textAlwaysShowToolbar": "Vis altid værktøjslinje", "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.textFitToPage": "Tilpas til side",
"DE.Views.ViewTab.textFitToWidth": "Tilpas til bredde", "DE.Views.ViewTab.textFitToWidth": "Tilpas til bredde",
"DE.Views.ViewTab.textInterfaceTheme": "Interface tema",
"DE.Views.ViewTab.textOutline": "Overskrifter", "DE.Views.ViewTab.textOutline": "Overskrifter",
"DE.Views.ViewTab.textRulers": "Linealer", "DE.Views.ViewTab.textRulers": "Linealer",
"DE.Views.ViewTab.textZoom": "Zoom", "DE.Views.ViewTab.textZoom": "Zoom",
"DE.Views.ViewTab.tipDarkDocument": "Mørk dokument",
"DE.Views.ViewTab.tipFitToPage": "Tilpas til side", "DE.Views.ViewTab.tipFitToPage": "Tilpas til side",
"DE.Views.ViewTab.tipFitToWidth": "Tilpas til bredde", "DE.Views.ViewTab.tipFitToWidth": "Tilpas til bredde",
"DE.Views.ViewTab.tipHeadings": "Overskrifter", "DE.Views.ViewTab.tipHeadings": "Overskrifter",
"DE.Views.ViewTab.tipInterfaceTheme": "Interface tema",
"DE.Views.WatermarkSettingsDialog.textAuto": "Automatisk", "DE.Views.WatermarkSettingsDialog.textAuto": "Automatisk",
"DE.Views.WatermarkSettingsDialog.textBold": "Fed", "DE.Views.WatermarkSettingsDialog.textBold": "Fed",
"DE.Views.WatermarkSettingsDialog.textColor": "Tekstfarve", "DE.Views.WatermarkSettingsDialog.textColor": "Tekstfarve",

View file

@ -125,6 +125,165 @@
"Common.define.chartData.textScatterSmoothMarker": "Punkte mit interpolierten Linien und Datenpunkten", "Common.define.chartData.textScatterSmoothMarker": "Punkte mit interpolierten Linien und Datenpunkten",
"Common.define.chartData.textStock": "Kurs", "Common.define.chartData.textStock": "Kurs",
"Common.define.chartData.textSurface": "Oberfläche", "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.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.warnFileLocked": "Die Datei wird in einer anderen App bearbeitet. Sie können die Bearbeitung fortsetzen und die Kopie dieser Datei speichern.",
"Common.Translation.warnFileLockedBtnEdit": "Kopie erstellen", "Common.Translation.warnFileLockedBtnEdit": "Kopie erstellen",
@ -288,6 +447,8 @@
"Common.Views.DocumentAccessDialog.textLoading": "Ladevorgang...", "Common.Views.DocumentAccessDialog.textLoading": "Ladevorgang...",
"Common.Views.DocumentAccessDialog.textTitle": "Freigabeeinstellungen", "Common.Views.DocumentAccessDialog.textTitle": "Freigabeeinstellungen",
"Common.Views.ExternalDiagramEditor.textTitle": "Diagramm bearbeiten", "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.ExternalMergeEditor.textTitle": "Seriendruckempfänger",
"Common.Views.ExternalOleEditor.textTitle": "Editor der Tabellenkalkulationen", "Common.Views.ExternalOleEditor.textTitle": "Editor der Tabellenkalkulationen",
"Common.Views.Header.labelCoUsersDescr": "Das Dokument wird gerade von mehreren Benutzern bearbeitet.", "Common.Views.Header.labelCoUsersDescr": "Das Dokument wird gerade von mehreren Benutzern bearbeitet.",
@ -354,6 +515,7 @@
"Common.Views.Plugins.textStart": "Starten", "Common.Views.Plugins.textStart": "Starten",
"Common.Views.Plugins.textStop": "Beenden", "Common.Views.Plugins.textStop": "Beenden",
"Common.Views.Protection.hintAddPwd": "Mit Kennwort verschlüsseln", "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.hintPwd": "Das Kennwort ändern oder löschen",
"Common.Views.Protection.hintSignature": "Digitale Signatur oder Unterschriftenzeile hinzufügen", "Common.Views.Protection.hintSignature": "Digitale Signatur oder Unterschriftenzeile hinzufügen",
"Common.Views.Protection.txtAddPwd": "Kennwort hinzufügen", "Common.Views.Protection.txtAddPwd": "Kennwort hinzufügen",
@ -499,6 +661,7 @@
"Common.Views.SignDialog.tipFontName": "Schriftart", "Common.Views.SignDialog.tipFontName": "Schriftart",
"Common.Views.SignDialog.tipFontSize": "Schriftgrad", "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.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.textInfoEmail": "Email Adresse",
"Common.Views.SignSettingsDialog.textInfoName": "Name", "Common.Views.SignSettingsDialog.textInfoName": "Name",
"Common.Views.SignSettingsDialog.textInfoTitle": "Titel des Signatureingebers", "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.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.applyChangesTextText": "Die Änderungen werden geladen...",
"DE.Controllers.Main.applyChangesTitleText": "Laden von Änderungen", "DE.Controllers.Main.applyChangesTitleText": "Laden von Änderungen",
"DE.Controllers.Main.confirmMaxChangesSize": "Die Anzahl der Aktionen überschreitet die für Ihren Server festgelegte Grenze.<br>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.convertationTimeoutText": "Zeitüberschreitung bei der Konvertierung.",
"DE.Controllers.Main.criticalErrorExtText": "Klicken Sie auf \"OK\", um in die Dokumentenliste zu gelangen.", "DE.Controllers.Main.criticalErrorExtText": "Klicken Sie auf \"OK\", um in die Dokumentenliste zu gelangen.",
"DE.Controllers.Main.criticalErrorTitle": "Fehler", "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.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.<br>Weitere Informationen können Sie von Ihrem Document Server-Administrator erhalten.", "DE.Controllers.Main.errorFileSizeExceed": "Die Dateigröße überschreitet die für Ihren Server festgelegte Einschränkung.<br>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.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.<br>Der Inhalt der Datei stimmt nicht mit der Dateierweiterung überein.",
"DE.Controllers.Main.errorInconsistentExtDocx": "Beim Öffnen der Datei ist ein Fehler aufgetreten.<br>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.<br>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.<br>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.<br>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.errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor",
"DE.Controllers.Main.errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen", "DE.Controllers.Main.errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen",
"DE.Controllers.Main.errorLoadingFont": "Schriftarten nicht hochgeladen.<br>Bitte wenden Sie sich an Administratoren von Ihrem Document Server.", "DE.Controllers.Main.errorLoadingFont": "Schriftarten nicht hochgeladen.<br>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.errorMailMergeLoadFile": "Fehler beim Laden des Dokuments. Bitte wählen Sie eine andere Datei.",
"DE.Controllers.Main.errorMailMergeSaveFile": "Merge ist fehlgeschlagen.", "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.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.<br>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.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.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.", "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.textClose": "Schließen",
"DE.Controllers.Main.textCloseTip": "Klicken Sie, um den Tipp zu schließen", "DE.Controllers.Main.textCloseTip": "Klicken Sie, um den Tipp zu schließen",
"DE.Controllers.Main.textContactUs": "Verkaufsteam kontaktieren", "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. <br>Jetzt konvertieren?", "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. <br>Jetzt konvertieren?",
"DE.Controllers.Main.textCustomLoader": "Bitte beachten Sie, dass Sie gemäß den Lizenzbedingungen nicht berechtigt sind, den Loader zu wechseln. <br> Wenden Sie sich an unseren Vertrieb, um ein Angebot zu erhalten.", "DE.Controllers.Main.textCustomLoader": "Bitte beachten Sie, dass Sie gemäß den Lizenzbedingungen nicht berechtigt sind, den Loader zu wechseln. <br> Wenden Sie sich an unseren Vertrieb, um ein Angebot zu erhalten.",
"DE.Controllers.Main.textDisconnect": "Verbindung wurde unterbrochen", "DE.Controllers.Main.textDisconnect": "Verbindung wurde unterbrochen",
@ -660,6 +831,7 @@
"DE.Controllers.Main.textStrict": "Formaler Modus", "DE.Controllers.Main.textStrict": "Formaler Modus",
"DE.Controllers.Main.textTryUndoRedo": "Undo/Redo Optionen sind für den halbformalen Zusammenbearbeitungsmodus deaktiviert.<br>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.textTryUndoRedo": "Undo/Redo Optionen sind für den halbformalen Zusammenbearbeitungsmodus deaktiviert.<br>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.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.titleLicenseExp": "Lizenz ist abgelaufen",
"DE.Controllers.Main.titleServerVersion": "Editor wurde aktualisiert", "DE.Controllers.Main.titleServerVersion": "Editor wurde aktualisiert",
"DE.Controllers.Main.titleUpdateVersion": "Version wurde geändert", "DE.Controllers.Main.titleUpdateVersion": "Version wurde geändert",
@ -1329,16 +1501,31 @@
"DE.Views.CellsAddDialog.textRow": "Zeilen", "DE.Views.CellsAddDialog.textRow": "Zeilen",
"DE.Views.CellsAddDialog.textTitle": "Einfügen: mehrere", "DE.Views.CellsAddDialog.textTitle": "Einfügen: mehrere",
"DE.Views.CellsAddDialog.textUp": "Über dem Cursor", "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.textAdvanced": "Erweiterte Einstellungen anzeigen",
"DE.Views.ChartSettings.textAutoscale": "Autoskalierung",
"DE.Views.ChartSettings.textChartType": "Diagrammtyp ändern", "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.textEditData": "Daten ändern",
"DE.Views.ChartSettings.textHeight": "Höhe", "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.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.textSize": "Größe",
"DE.Views.ChartSettings.textStyle": "Stil", "DE.Views.ChartSettings.textStyle": "Stil",
"DE.Views.ChartSettings.textUndock": "Seitenbereich abdocken", "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.textWidth": "Breite",
"DE.Views.ChartSettings.textWrap": "Textumbruch", "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.txtBehind": "Hinter dem Text",
"DE.Views.ChartSettings.txtInFront": "Vorne", "DE.Views.ChartSettings.txtInFront": "Vorne",
"DE.Views.ChartSettings.txtInline": "Inline", "DE.Views.ChartSettings.txtInline": "Inline",
@ -1428,14 +1615,24 @@
"DE.Views.DateTimeDialog.textLang": "Sprache", "DE.Views.DateTimeDialog.textLang": "Sprache",
"DE.Views.DateTimeDialog.textUpdate": "Automatisch aktualisieren", "DE.Views.DateTimeDialog.textUpdate": "Automatisch aktualisieren",
"DE.Views.DateTimeDialog.txtTitle": "Datum & Uhrzeit", "DE.Views.DateTimeDialog.txtTitle": "Datum & Uhrzeit",
"DE.Views.DocProtection.hintProtectDoc": "Datei schützen",
"DE.Views.DocProtection.txtDocProtectedComment": "Das Dokument ist geschützt.<br>Sie können nur Kommentare zu diesem Dokument hinterlassen.",
"DE.Views.DocProtection.txtDocProtectedForms": "Das Dokument ist geschützt.<br>Sie können nur Formulare in diesem Dokument ausfüllen.",
"DE.Views.DocProtection.txtDocProtectedTrack": "Das Dokument ist geschützt.<br>Sie können dieses Dokument bearbeiten, aber alle Änderungen werden nachverfolgt.",
"DE.Views.DocProtection.txtDocProtectedView": "Das Dokument ist geschützt.<br>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.aboveText": "Oben",
"DE.Views.DocumentHolder.addCommentText": "Kommentar hinzufügen", "DE.Views.DocumentHolder.addCommentText": "Kommentar hinzufügen",
"DE.Views.DocumentHolder.advancedDropCapText": "Initialformatierung", "DE.Views.DocumentHolder.advancedDropCapText": "Initialformatierung",
"DE.Views.DocumentHolder.advancedEquationText": "Einstellungen der Gleichung",
"DE.Views.DocumentHolder.advancedFrameText": "Rahmen - Erweiterte Einstellungen", "DE.Views.DocumentHolder.advancedFrameText": "Rahmen - Erweiterte Einstellungen",
"DE.Views.DocumentHolder.advancedParagraphText": "Absatz - Erweiterte Einstellungen", "DE.Views.DocumentHolder.advancedParagraphText": "Absatz - Erweiterte Einstellungen",
"DE.Views.DocumentHolder.advancedTableText": "Tabelle - Erweiterte Einstellungen", "DE.Views.DocumentHolder.advancedTableText": "Tabelle - Erweiterte Einstellungen",
"DE.Views.DocumentHolder.advancedText": "Erweiterte Einstellungen", "DE.Views.DocumentHolder.advancedText": "Erweiterte Einstellungen",
"DE.Views.DocumentHolder.alignmentText": "Ausrichtung", "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.belowText": "Unten",
"DE.Views.DocumentHolder.breakBeforeText": "Seitenumbruch oberhalb", "DE.Views.DocumentHolder.breakBeforeText": "Seitenumbruch oberhalb",
"DE.Views.DocumentHolder.bulletsText": "Aufzählung und Nummerierung", "DE.Views.DocumentHolder.bulletsText": "Aufzählung und Nummerierung",
@ -1444,6 +1641,8 @@
"DE.Views.DocumentHolder.centerText": "Zenter", "DE.Views.DocumentHolder.centerText": "Zenter",
"DE.Views.DocumentHolder.chartText": "Erweiterte Einstellungen des Diagramms", "DE.Views.DocumentHolder.chartText": "Erweiterte Einstellungen des Diagramms",
"DE.Views.DocumentHolder.columnText": "Spalte", "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.deleteColumnText": "Spalte löschen",
"DE.Views.DocumentHolder.deleteRowText": "Zeile löschen", "DE.Views.DocumentHolder.deleteRowText": "Zeile löschen",
"DE.Views.DocumentHolder.deleteTableText": "Tabelle löschen", "DE.Views.DocumentHolder.deleteTableText": "Tabelle löschen",
@ -1456,6 +1655,7 @@
"DE.Views.DocumentHolder.editFooterText": "Fußzeile bearbeiten", "DE.Views.DocumentHolder.editFooterText": "Fußzeile bearbeiten",
"DE.Views.DocumentHolder.editHeaderText": "Kopfzeile bearbeiten", "DE.Views.DocumentHolder.editHeaderText": "Kopfzeile bearbeiten",
"DE.Views.DocumentHolder.editHyperlinkText": "Hyperlink bearbeiten", "DE.Views.DocumentHolder.editHyperlinkText": "Hyperlink bearbeiten",
"DE.Views.DocumentHolder.eqToInlineText": "Zum Inline wechseln",
"DE.Views.DocumentHolder.guestText": "Gast", "DE.Views.DocumentHolder.guestText": "Gast",
"DE.Views.DocumentHolder.hyperlinkText": "Hyperlink", "DE.Views.DocumentHolder.hyperlinkText": "Hyperlink",
"DE.Views.DocumentHolder.ignoreAllSpellText": "Alle auslassen", "DE.Views.DocumentHolder.ignoreAllSpellText": "Alle auslassen",
@ -1470,6 +1670,7 @@
"DE.Views.DocumentHolder.insertText": "Einfügen", "DE.Views.DocumentHolder.insertText": "Einfügen",
"DE.Views.DocumentHolder.keepLinesText": "Absatz zusammenhalten", "DE.Views.DocumentHolder.keepLinesText": "Absatz zusammenhalten",
"DE.Views.DocumentHolder.langText": "Sprache wählen", "DE.Views.DocumentHolder.langText": "Sprache wählen",
"DE.Views.DocumentHolder.latexText": "LaTeX",
"DE.Views.DocumentHolder.leftText": "Links", "DE.Views.DocumentHolder.leftText": "Links",
"DE.Views.DocumentHolder.loadSpellText": "Varianten werden geladen...", "DE.Views.DocumentHolder.loadSpellText": "Varianten werden geladen...",
"DE.Views.DocumentHolder.mergeCellsText": "Zellen verbinden", "DE.Views.DocumentHolder.mergeCellsText": "Zellen verbinden",
@ -1657,6 +1858,7 @@
"DE.Views.DocumentHolder.txtUnderbar": "Balken unter dem Text ", "DE.Views.DocumentHolder.txtUnderbar": "Balken unter dem Text ",
"DE.Views.DocumentHolder.txtUngroup": "Gruppierung aufheben", "DE.Views.DocumentHolder.txtUngroup": "Gruppierung aufheben",
"DE.Views.DocumentHolder.txtWarnUrl": "Dieser Link kann für Ihr Gerät und Daten gefährlich sein.<br>Möchten Sie wirklich fortsetzen?", "DE.Views.DocumentHolder.txtWarnUrl": "Dieser Link kann für Ihr Gerät und Daten gefährlich sein.<br>Möchten Sie wirklich fortsetzen?",
"DE.Views.DocumentHolder.unicodeText": "Unicode",
"DE.Views.DocumentHolder.updateStyleText": "Format aktualisieren %1", "DE.Views.DocumentHolder.updateStyleText": "Format aktualisieren %1",
"DE.Views.DocumentHolder.vertAlignText": "Vertikale Ausrichtung", "DE.Views.DocumentHolder.vertAlignText": "Vertikale Ausrichtung",
"DE.Views.DropcapSettingsAdvanced.strBorders": "Rahmen & Füllung", "DE.Views.DropcapSettingsAdvanced.strBorders": "Rahmen & Füllung",
@ -1753,6 +1955,7 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistiken", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistiken",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Thema", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Thema",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symbole", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symbole",
"DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tags",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titel", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titel",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Hochgeladen", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Hochgeladen",
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Wörter", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Wörter",
@ -2066,6 +2269,7 @@
"DE.Views.LeftMenu.tipComments": "Kommentare", "DE.Views.LeftMenu.tipComments": "Kommentare",
"DE.Views.LeftMenu.tipNavigation": "Navigation", "DE.Views.LeftMenu.tipNavigation": "Navigation",
"DE.Views.LeftMenu.tipOutline": "Überschriften", "DE.Views.LeftMenu.tipOutline": "Überschriften",
"DE.Views.LeftMenu.tipPageThumbnails": "Miniaturansichten",
"DE.Views.LeftMenu.tipPlugins": "Plugins", "DE.Views.LeftMenu.tipPlugins": "Plugins",
"DE.Views.LeftMenu.tipSearch": "Suchen", "DE.Views.LeftMenu.tipSearch": "Suchen",
"DE.Views.LeftMenu.tipSupport": "Feedback und Support", "DE.Views.LeftMenu.tipSupport": "Feedback und Support",
@ -2373,6 +2577,18 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Nur obere Rahmenlinie festlegen", "DE.Views.ParagraphSettingsAdvanced.tipTop": "Nur obere Rahmenlinie festlegen",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automatisch", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automatisch",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Keine Rahmen", "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.txtChartSettings": "Diagrammeinstellungen",
"DE.Views.RightMenu.txtFormSettings": "Einstellungen des Formulars", "DE.Views.RightMenu.txtFormSettings": "Einstellungen des Formulars",
"DE.Views.RightMenu.txtHeaderFooterSettings": "Kopf- und Fußzeileneinstellungen", "DE.Views.RightMenu.txtHeaderFooterSettings": "Kopf- und Fußzeileneinstellungen",
@ -2563,12 +2779,20 @@
"DE.Views.TableSettings.tipOuter": "Nur äußere Rahmenlinie festlegen", "DE.Views.TableSettings.tipOuter": "Nur äußere Rahmenlinie festlegen",
"DE.Views.TableSettings.tipRight": "Nur äußere rechte 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.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.txtNoBorders": "Keine Rahmen",
"DE.Views.TableSettings.txtTable_Accent": "Akzent", "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_Colorful": "Farbig",
"DE.Views.TableSettings.txtTable_Dark": "Dunkel", "DE.Views.TableSettings.txtTable_Dark": "Dunkel",
"DE.Views.TableSettings.txtTable_GridTable": "Gitternetztabelle", "DE.Views.TableSettings.txtTable_GridTable": "Gitternetztabelle",
"DE.Views.TableSettings.txtTable_Light": "Hell", "DE.Views.TableSettings.txtTable_Light": "Hell",
"DE.Views.TableSettings.txtTable_Lined": "Mit Linien",
"DE.Views.TableSettings.txtTable_ListTable": "Listentabelle", "DE.Views.TableSettings.txtTable_ListTable": "Listentabelle",
"DE.Views.TableSettings.txtTable_PlainTable": "Einfache Tabelle", "DE.Views.TableSettings.txtTable_PlainTable": "Einfache Tabelle",
"DE.Views.TableSettings.txtTable_TableGrid": "Tabellenraster", "DE.Views.TableSettings.txtTable_TableGrid": "Tabellenraster",
@ -2690,7 +2914,7 @@
"DE.Views.TextToTableDialog.textTitle": "Text in Tabelle umwandeln", "DE.Views.TextToTableDialog.textTitle": "Text in Tabelle umwandeln",
"DE.Views.TextToTableDialog.textWindow": "An Fenster autoanpassen", "DE.Views.TextToTableDialog.textWindow": "An Fenster autoanpassen",
"DE.Views.TextToTableDialog.txtAutoText": "Automatisch", "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.capBtnBlankPage": "Leere Seite",
"DE.Views.Toolbar.capBtnColumns": "Spalten", "DE.Views.Toolbar.capBtnColumns": "Spalten",
"DE.Views.Toolbar.capBtnComment": "Kommentar", "DE.Views.Toolbar.capBtnComment": "Kommentar",
@ -2703,6 +2927,7 @@
"DE.Views.Toolbar.capBtnInsImage": "Bild", "DE.Views.Toolbar.capBtnInsImage": "Bild",
"DE.Views.Toolbar.capBtnInsPagebreak": "Umbrüche", "DE.Views.Toolbar.capBtnInsPagebreak": "Umbrüche",
"DE.Views.Toolbar.capBtnInsShape": "Form", "DE.Views.Toolbar.capBtnInsShape": "Form",
"DE.Views.Toolbar.capBtnInsSmartArt": "SmartArt",
"DE.Views.Toolbar.capBtnInsSymbol": "Symbol", "DE.Views.Toolbar.capBtnInsSymbol": "Symbol",
"DE.Views.Toolbar.capBtnInsTable": "Tabelle", "DE.Views.Toolbar.capBtnInsTable": "Tabelle",
"DE.Views.Toolbar.capBtnInsTextart": "Text Art", "DE.Views.Toolbar.capBtnInsTextart": "Text Art",
@ -2849,13 +3074,16 @@
"DE.Views.Toolbar.tipIncPrLeft": "Einzug vergrößern", "DE.Views.Toolbar.tipIncPrLeft": "Einzug vergrößern",
"DE.Views.Toolbar.tipInsertChart": "Diagramm einfügen", "DE.Views.Toolbar.tipInsertChart": "Diagramm einfügen",
"DE.Views.Toolbar.tipInsertEquation": "Formel 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.tipInsertImage": "Bild einfügen",
"DE.Views.Toolbar.tipInsertNum": "Seitenzahl einfügen", "DE.Views.Toolbar.tipInsertNum": "Seitenzahl einfügen",
"DE.Views.Toolbar.tipInsertShape": "AutoForm 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.tipInsertSymbol": "Symbol einfügen",
"DE.Views.Toolbar.tipInsertTable": "Tabelle einfügen", "DE.Views.Toolbar.tipInsertTable": "Tabelle einfügen",
"DE.Views.Toolbar.tipInsertText": "Textfeld einfügen", "DE.Views.Toolbar.tipInsertText": "Textfeld einfügen",
"DE.Views.Toolbar.tipInsertTextArt": "TextArt 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.tipLineNumbers": "Zeilennummern anzeigen",
"DE.Views.Toolbar.tipLineSpace": "Zeilenabstand", "DE.Views.Toolbar.tipLineSpace": "Zeilenabstand",
"DE.Views.Toolbar.tipMailRecepients": "Serienbrief", "DE.Views.Toolbar.tipMailRecepients": "Serienbrief",
@ -2927,8 +3155,10 @@
"DE.Views.ViewTab.textFitToPage": "Seite anpassen", "DE.Views.ViewTab.textFitToPage": "Seite anpassen",
"DE.Views.ViewTab.textFitToWidth": "An Breite anpassen", "DE.Views.ViewTab.textFitToWidth": "An Breite anpassen",
"DE.Views.ViewTab.textInterfaceTheme": "Thema der Benutzeroberfläche", "DE.Views.ViewTab.textInterfaceTheme": "Thema der Benutzeroberfläche",
"DE.Views.ViewTab.textLeftMenu": "Linkes Bedienfeld",
"DE.Views.ViewTab.textNavigation": "Navigation", "DE.Views.ViewTab.textNavigation": "Navigation",
"DE.Views.ViewTab.textOutline": "Überschriften", "DE.Views.ViewTab.textOutline": "Überschriften",
"DE.Views.ViewTab.textRightMenu": "Rechtes Bedienungsfeld ",
"DE.Views.ViewTab.textRulers": "Lineale", "DE.Views.ViewTab.textRulers": "Lineale",
"DE.Views.ViewTab.textStatusBar": "Statusleiste", "DE.Views.ViewTab.textStatusBar": "Statusleiste",
"DE.Views.ViewTab.textZoom": "Zoom", "DE.Views.ViewTab.textZoom": "Zoom",

View file

@ -343,12 +343,12 @@
"Common.UI.SearchDialog.textMatchCase": "Case sensitive", "Common.UI.SearchDialog.textMatchCase": "Case sensitive",
"Common.UI.SearchDialog.textReplaceDef": "Enter the replacement text", "Common.UI.SearchDialog.textReplaceDef": "Enter the replacement text",
"Common.UI.SearchDialog.textSearchStart": "Enter your text here", "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.textTitle2": "Find",
"Common.UI.SearchDialog.textWholeWords": "Whole words only", "Common.UI.SearchDialog.textWholeWords": "Whole words only",
"Common.UI.SearchDialog.txtBtnHideReplace": "Hide Replace", "Common.UI.SearchDialog.txtBtnHideReplace": "Hide Replace",
"Common.UI.SearchDialog.txtBtnReplace": "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.textDontShow": "Don't show this message again",
"Common.UI.SynchronizeTip.textSynchronize": "The document has been changed by another user.<br>Please click to save your changes and reload the updates.", "Common.UI.SynchronizeTip.textSynchronize": "The document has been changed by another user.<br>Please click to save your changes and reload the updates.",
"Common.UI.ThemeColorPalette.textRecentColors": "Recent Colors", "Common.UI.ThemeColorPalette.textRecentColors": "Recent Colors",
@ -382,9 +382,9 @@
"Common.Views.About.txtTel": "tel.: ", "Common.Views.About.txtTel": "tel.: ",
"Common.Views.About.txtVersion": "Version ", "Common.Views.About.txtVersion": "Version ",
"Common.Views.AutoCorrectDialog.textAdd": "Add", "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.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.textBulleted": "Automatic bulleted lists",
"Common.Views.AutoCorrectDialog.textBy": "By", "Common.Views.AutoCorrectDialog.textBy": "By",
"Common.Views.AutoCorrectDialog.textDelete": "Delete", "Common.Views.AutoCorrectDialog.textDelete": "Delete",
@ -396,10 +396,10 @@
"Common.Views.AutoCorrectDialog.textMathCorrect": "Math AutoCorrect", "Common.Views.AutoCorrectDialog.textMathCorrect": "Math AutoCorrect",
"Common.Views.AutoCorrectDialog.textNumbered": "Automatic numbered lists", "Common.Views.AutoCorrectDialog.textNumbered": "Automatic numbered lists",
"Common.Views.AutoCorrectDialog.textQuotes": "\"Straight quotes\" with \"smart quotes\"", "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.textRecognizedDesc": "The following expressions are recognized math expressions. They will not be automatically italicized.",
"Common.Views.AutoCorrectDialog.textReplace": "Replace", "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.textReplaceType": "Replace text as you type",
"Common.Views.AutoCorrectDialog.textReset": "Reset", "Common.Views.AutoCorrectDialog.textReset": "Reset",
"Common.Views.AutoCorrectDialog.textResetAll": "Reset to default", "Common.Views.AutoCorrectDialog.textResetAll": "Reset to default",
@ -440,12 +440,12 @@
"Common.Views.Comments.txtEmpty": "There are no comments in the document.", "Common.Views.Comments.txtEmpty": "There are no comments in the document.",
"Common.Views.CopyWarningDialog.textDontShow": "Don't show this message again", "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.<br><br>To copy or paste to or from applications outside the editor tab use the following keyboard combinations:", "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.<br><br>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.textToCopy": "for Copy",
"Common.Views.CopyWarningDialog.textToCut": "for Cut", "Common.Views.CopyWarningDialog.textToCut": "for Cut",
"Common.Views.CopyWarningDialog.textToPaste": "for Paste", "Common.Views.CopyWarningDialog.textToPaste": "for Paste",
"Common.Views.DocumentAccessDialog.textLoading": "Loading...", "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.ExternalDiagramEditor.textTitle": "Chart Editor",
"Common.Views.ExternalEditor.textClose": "Close", "Common.Views.ExternalEditor.textClose": "Close",
"Common.Views.ExternalEditor.textSave": "Save & Exit", "Common.Views.ExternalEditor.textSave": "Save & Exit",
@ -485,14 +485,14 @@
"Common.Views.ImageFromUrlDialog.txtEmpty": "This field is required", "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.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.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.txtMaxText": "The maximum value for this field is {0}.",
"Common.Views.InsertTableDialog.txtMinText": "The minimum 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.txtRows": "Number of rows",
"Common.Views.InsertTableDialog.txtTitle": "Table Size", "Common.Views.InsertTableDialog.txtTitle": "Table size",
"Common.Views.InsertTableDialog.txtTitleSplit": "Split Cell", "Common.Views.InsertTableDialog.txtTitleSplit": "Split cell",
"Common.Views.LanguageDialog.labelSelect": "Select document language", "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.txtEncoding": "Encoding ",
"Common.Views.OpenDialog.txtIncorrectPwd": "Password is incorrect.", "Common.Views.OpenDialog.txtIncorrectPwd": "Password is incorrect.",
"Common.Views.OpenDialog.txtOpenFile": "Enter a password to open the file", "Common.Views.OpenDialog.txtOpenFile": "Enter a password to open the file",
@ -500,12 +500,12 @@
"Common.Views.OpenDialog.txtPreview": "Preview", "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.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.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.txtDescription": "Set a password to protect this document",
"Common.Views.PasswordDialog.txtIncorrectPwd": "Confirmation password is not identical", "Common.Views.PasswordDialog.txtIncorrectPwd": "Confirmation password is not identical",
"Common.Views.PasswordDialog.txtPassword": "Password", "Common.Views.PasswordDialog.txtPassword": "Password",
"Common.Views.PasswordDialog.txtRepeat": "Repeat 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.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.PluginDlg.textLoading": "Loading",
"Common.Views.Plugins.groupCaption": "Plugins", "Common.Views.Plugins.groupCaption": "Plugins",
@ -598,20 +598,21 @@
"Common.Views.ReviewChanges.txtSpelling": "Spell Checking", "Common.Views.ReviewChanges.txtSpelling": "Spell Checking",
"Common.Views.ReviewChanges.txtTurnon": "Track Changes", "Common.Views.ReviewChanges.txtTurnon": "Track Changes",
"Common.Views.ReviewChanges.txtView": "Display Mode", "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.txtAccept": "Accept",
"Common.Views.ReviewChangesDialog.txtAcceptAll": "Accept All Changes", "Common.Views.ReviewChangesDialog.txtAcceptAll": "Accept all changes",
"Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Accept Current Change", "Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Accept current change",
"Common.Views.ReviewChangesDialog.txtNext": "To next change", "Common.Views.ReviewChangesDialog.txtNext": "To next change",
"Common.Views.ReviewChangesDialog.txtPrev": "To previous change", "Common.Views.ReviewChangesDialog.txtPrev": "To previous change",
"Common.Views.ReviewChangesDialog.txtReject": "Reject", "Common.Views.ReviewChangesDialog.txtReject": "Reject",
"Common.Views.ReviewChangesDialog.txtRejectAll": "Reject All Changes", "Common.Views.ReviewChangesDialog.txtRejectAll": "Reject all changes",
"Common.Views.ReviewChangesDialog.txtRejectCurrent": "Reject Current Change", "Common.Views.ReviewChangesDialog.txtRejectCurrent": "Reject current change",
"Common.Views.ReviewPopover.textAdd": "Add", "Common.Views.ReviewPopover.textAdd": "Add",
"Common.Views.ReviewPopover.textAddReply": "Add Reply", "Common.Views.ReviewPopover.textAddReply": "Add Reply",
"Common.Views.ReviewPopover.textCancel": "Cancel", "Common.Views.ReviewPopover.textCancel": "Cancel",
"Common.Views.ReviewPopover.textClose": "Close", "Common.Views.ReviewPopover.textClose": "Close",
"Common.Views.ReviewPopover.textEdit": "OK", "Common.Views.ReviewPopover.textEdit": "OK",
"Common.Views.ReviewPopover.textEnterComment": "Enter your comment here",
"Common.Views.ReviewPopover.textFollowMove": "Follow Move", "Common.Views.ReviewPopover.textFollowMove": "Follow Move",
"Common.Views.ReviewPopover.textMention": "+mention will provide access to the document and send an email", "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.textMentionNotify": "+mention will notify the user via email",
@ -644,7 +645,7 @@
"Common.Views.SearchPanel.tipNextResult": "Next result", "Common.Views.SearchPanel.tipNextResult": "Next result",
"Common.Views.SearchPanel.tipPreviousResult": "Previous result", "Common.Views.SearchPanel.tipPreviousResult": "Previous result",
"Common.Views.SelectFileDlg.textLoading": "Loading", "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.textBold": "Bold",
"Common.Views.SignDialog.textCertificate": "Certificate", "Common.Views.SignDialog.textCertificate": "Certificate",
"Common.Views.SignDialog.textChange": "Change", "Common.Views.SignDialog.textChange": "Change",
@ -653,13 +654,13 @@
"Common.Views.SignDialog.textNameError": "Signer name must not be empty.", "Common.Views.SignDialog.textNameError": "Signer name must not be empty.",
"Common.Views.SignDialog.textPurpose": "Purpose for signing this document", "Common.Views.SignDialog.textPurpose": "Purpose for signing this document",
"Common.Views.SignDialog.textSelect": "Select", "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.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.textUseImage": "or click 'Select Image' to use a picture as signature",
"Common.Views.SignDialog.textValid": "Valid from %1 to %2", "Common.Views.SignDialog.textValid": "Valid from %1 to %2",
"Common.Views.SignDialog.tipFontName": "Font Name", "Common.Views.SignDialog.tipFontName": "Font name",
"Common.Views.SignDialog.tipFontSize": "Font Size", "Common.Views.SignDialog.tipFontSize": "Font size",
"Common.Views.SignSettingsDialog.textAllowComment": "Allow signer to add comment in the signature dialog", "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.textDefInstruction": "Before signing this document, verify that the content you are signing is correct.",
"Common.Views.SignSettingsDialog.textInfoEmail": "Suggested signer's e-mail", "Common.Views.SignSettingsDialog.textInfoEmail": "Suggested signer's e-mail",
@ -667,35 +668,35 @@
"Common.Views.SignSettingsDialog.textInfoTitle": "Suggested signer's title", "Common.Views.SignSettingsDialog.textInfoTitle": "Suggested signer's title",
"Common.Views.SignSettingsDialog.textInstructions": "Instructions for signer", "Common.Views.SignSettingsDialog.textInstructions": "Instructions for signer",
"Common.Views.SignSettingsDialog.textShowDate": "Show sign date in signature line", "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.SignSettingsDialog.txtEmpty": "This field is required",
"Common.Views.SymbolTableDialog.textCharacter": "Character", "Common.Views.SymbolTableDialog.textCharacter": "Character",
"Common.Views.SymbolTableDialog.textCode": "Unicode HEX value", "Common.Views.SymbolTableDialog.textCode": "Unicode HEX value",
"Common.Views.SymbolTableDialog.textCopyright": "Copyright Sign", "Common.Views.SymbolTableDialog.textCopyright": "Copyright sign",
"Common.Views.SymbolTableDialog.textDCQuote": "Closing Double Quote", "Common.Views.SymbolTableDialog.textDCQuote": "Closing double quote",
"Common.Views.SymbolTableDialog.textDOQuote": "Opening Double Quote", "Common.Views.SymbolTableDialog.textDOQuote": "Opening double quote",
"Common.Views.SymbolTableDialog.textEllipsis": "Horizontal Ellipsis", "Common.Views.SymbolTableDialog.textEllipsis": "Horizontal ellipsis",
"Common.Views.SymbolTableDialog.textEmDash": "Em Dash", "Common.Views.SymbolTableDialog.textEmDash": "Em dash",
"Common.Views.SymbolTableDialog.textEmSpace": "Em Space", "Common.Views.SymbolTableDialog.textEmSpace": "Em space",
"Common.Views.SymbolTableDialog.textEnDash": "En Dash", "Common.Views.SymbolTableDialog.textEnDash": "En dash",
"Common.Views.SymbolTableDialog.textEnSpace": "En Space", "Common.Views.SymbolTableDialog.textEnSpace": "En space",
"Common.Views.SymbolTableDialog.textFont": "Font", "Common.Views.SymbolTableDialog.textFont": "Font",
"Common.Views.SymbolTableDialog.textNBHyphen": "Non-breaking Hyphen", "Common.Views.SymbolTableDialog.textNBHyphen": "Non-breaking hyphen",
"Common.Views.SymbolTableDialog.textNBSpace": "No-break Space", "Common.Views.SymbolTableDialog.textNBSpace": "No-break space",
"Common.Views.SymbolTableDialog.textPilcrow": "Pilcrow Sign", "Common.Views.SymbolTableDialog.textPilcrow": "Pilcrow sign",
"Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Em Space", "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Em space",
"Common.Views.SymbolTableDialog.textRange": "Range", "Common.Views.SymbolTableDialog.textRange": "Range",
"Common.Views.SymbolTableDialog.textRecent": "Recently used symbols", "Common.Views.SymbolTableDialog.textRecent": "Recently used symbols",
"Common.Views.SymbolTableDialog.textRegistered": "Registered Sign", "Common.Views.SymbolTableDialog.textRegistered": "Registered sign",
"Common.Views.SymbolTableDialog.textSCQuote": "Closing Single Quote", "Common.Views.SymbolTableDialog.textSCQuote": "Closing single quote",
"Common.Views.SymbolTableDialog.textSection": "Section Sign", "Common.Views.SymbolTableDialog.textSection": "Section sign",
"Common.Views.SymbolTableDialog.textShortcut": "Shortcut Key", "Common.Views.SymbolTableDialog.textShortcut": "Shortcut key",
"Common.Views.SymbolTableDialog.textSHyphen": "Soft Hyphen", "Common.Views.SymbolTableDialog.textSHyphen": "Soft hyphen",
"Common.Views.SymbolTableDialog.textSOQuote": "Opening Single Quote", "Common.Views.SymbolTableDialog.textSOQuote": "Opening single quote",
"Common.Views.SymbolTableDialog.textSpecial": "Special characters", "Common.Views.SymbolTableDialog.textSpecial": "Special characters",
"Common.Views.SymbolTableDialog.textSymbols": "Symbols", "Common.Views.SymbolTableDialog.textSymbols": "Symbols",
"Common.Views.SymbolTableDialog.textTitle": "Symbol", "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.textDontShow": "Don't ask me again",
"Common.Views.UserNameDialog.textLabel": "Label:", "Common.Views.UserNameDialog.textLabel": "Label:",
"Common.Views.UserNameDialog.textLabelError": "Label must not be empty.", "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.errorFilePassProtect": "The file is password protected and cannot be opened.",
"DE.Controllers.Main.errorFileSizeExceed": "The file size exceeds the limitation set for your server.<br>Please contact your Document Server administrator for details.", "DE.Controllers.Main.errorFileSizeExceed": "The file size exceeds the limitation set for your server.<br>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.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.<br>The file content does not match the file extension.",
"DE.Controllers.Main.errorInconsistentExtDocx": "An error has occurred while opening the file.<br>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.<br>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.<br>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.<br>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.errorKeyEncrypt": "Unknown key descriptor",
"DE.Controllers.Main.errorKeyExpire": "Key descriptor expired", "DE.Controllers.Main.errorKeyExpire": "Key descriptor expired",
"DE.Controllers.Main.errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.", "DE.Controllers.Main.errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
@ -1459,7 +1465,7 @@
"DE.Views.BookmarksDialog.textClose": "Close", "DE.Views.BookmarksDialog.textClose": "Close",
"DE.Views.BookmarksDialog.textCopy": "Copy", "DE.Views.BookmarksDialog.textCopy": "Copy",
"DE.Views.BookmarksDialog.textDelete": "Delete", "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.textGoto": "Go to",
"DE.Views.BookmarksDialog.textHidden": "Hidden bookmarks", "DE.Views.BookmarksDialog.textHidden": "Hidden bookmarks",
"DE.Views.BookmarksDialog.textLocation": "Location", "DE.Views.BookmarksDialog.textLocation": "Location",
@ -1488,13 +1494,13 @@
"DE.Views.CaptionDialog.textPeriod": "period", "DE.Views.CaptionDialog.textPeriod": "period",
"DE.Views.CaptionDialog.textSeparator": "Use separator", "DE.Views.CaptionDialog.textSeparator": "Use separator",
"DE.Views.CaptionDialog.textTable": "Table", "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.textCol": "Columns",
"DE.Views.CellsAddDialog.textDown": "Below the cursor", "DE.Views.CellsAddDialog.textDown": "Below the cursor",
"DE.Views.CellsAddDialog.textLeft": "To the left", "DE.Views.CellsAddDialog.textLeft": "To the left",
"DE.Views.CellsAddDialog.textRight": "To the right", "DE.Views.CellsAddDialog.textRight": "To the right",
"DE.Views.CellsAddDialog.textRow": "Rows", "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.CellsAddDialog.textUp": "Above the cursor",
"DE.Views.ChartSettings.text3dDepth": "Depth (% of base)", "DE.Views.ChartSettings.text3dDepth": "Depth (% of base)",
"DE.Views.ChartSettings.text3dHeight": "Height (% of base)", "DE.Views.ChartSettings.text3dHeight": "Height (% of base)",
@ -1532,7 +1538,7 @@
"DE.Views.ControlSettingsDialog.strGeneral": "General", "DE.Views.ControlSettingsDialog.strGeneral": "General",
"DE.Views.ControlSettingsDialog.textAdd": "Add", "DE.Views.ControlSettingsDialog.textAdd": "Add",
"DE.Views.ControlSettingsDialog.textAppearance": "Appearance", "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.textBox": "Bounding box",
"DE.Views.ControlSettingsDialog.textChange": "Edit", "DE.Views.ControlSettingsDialog.textChange": "Edit",
"DE.Views.ControlSettingsDialog.textCheckbox": "Check box", "DE.Views.ControlSettingsDialog.textCheckbox": "Check box",
@ -1553,7 +1559,7 @@
"DE.Views.ControlSettingsDialog.textShowAs": "Show as", "DE.Views.ControlSettingsDialog.textShowAs": "Show as",
"DE.Views.ControlSettingsDialog.textSystemColor": "System", "DE.Views.ControlSettingsDialog.textSystemColor": "System",
"DE.Views.ControlSettingsDialog.textTag": "Tag", "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.textUnchecked": "Unchecked symbol",
"DE.Views.ControlSettingsDialog.textUp": "Up", "DE.Views.ControlSettingsDialog.textUp": "Up",
"DE.Views.ControlSettingsDialog.textValue": "Value", "DE.Views.ControlSettingsDialog.textValue": "Value",
@ -1618,12 +1624,12 @@
"DE.Views.DocProtection.txtDocUnlockDescription": "Enter a password to unprotect document", "DE.Views.DocProtection.txtDocUnlockDescription": "Enter a password to unprotect document",
"DE.Views.DocProtection.txtProtectDoc": "Protect Document", "DE.Views.DocProtection.txtProtectDoc": "Protect Document",
"DE.Views.DocumentHolder.aboveText": "Above", "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.advancedDropCapText": "Drop Cap Settings",
"DE.Views.DocumentHolder.advancedEquationText": "Equation Settings", "DE.Views.DocumentHolder.advancedEquationText": "Equation Settings",
"DE.Views.DocumentHolder.advancedFrameText": "Frame Advanced Settings", "DE.Views.DocumentHolder.advancedFrameText": "Frame Advanced Settings",
"DE.Views.DocumentHolder.advancedParagraphText": "Paragraph Advanced Settings", "DE.Views.DocumentHolder.advancedParagraphText": "Paragraph advanced settings",
"DE.Views.DocumentHolder.advancedTableText": "Table Advanced Settings", "DE.Views.DocumentHolder.advancedTableText": "Table advanced settings",
"DE.Views.DocumentHolder.advancedText": "Advanced Settings", "DE.Views.DocumentHolder.advancedText": "Advanced Settings",
"DE.Views.DocumentHolder.alignmentText": "Alignment", "DE.Views.DocumentHolder.alignmentText": "Alignment",
"DE.Views.DocumentHolder.allLinearText": "All - Linear", "DE.Views.DocumentHolder.allLinearText": "All - Linear",
@ -1631,10 +1637,10 @@
"DE.Views.DocumentHolder.belowText": "Below", "DE.Views.DocumentHolder.belowText": "Below",
"DE.Views.DocumentHolder.breakBeforeText": "Page break before", "DE.Views.DocumentHolder.breakBeforeText": "Page break before",
"DE.Views.DocumentHolder.bulletsText": "Bullets and Numbering", "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.cellText": "Cell",
"DE.Views.DocumentHolder.centerText": "Center", "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.columnText": "Column",
"DE.Views.DocumentHolder.currLinearText": "Current - Linear", "DE.Views.DocumentHolder.currLinearText": "Current - Linear",
"DE.Views.DocumentHolder.currProfText": "Current - Professional", "DE.Views.DocumentHolder.currProfText": "Current - Professional",
@ -1645,17 +1651,17 @@
"DE.Views.DocumentHolder.direct270Text": "Rotate Text Up", "DE.Views.DocumentHolder.direct270Text": "Rotate Text Up",
"DE.Views.DocumentHolder.direct90Text": "Rotate Text Down", "DE.Views.DocumentHolder.direct90Text": "Rotate Text Down",
"DE.Views.DocumentHolder.directHText": "Horizontal", "DE.Views.DocumentHolder.directHText": "Horizontal",
"DE.Views.DocumentHolder.directionText": "Text Direction", "DE.Views.DocumentHolder.directionText": "Text direction",
"DE.Views.DocumentHolder.editChartText": "Edit Data", "DE.Views.DocumentHolder.editChartText": "Edit data",
"DE.Views.DocumentHolder.editFooterText": "Edit Footer", "DE.Views.DocumentHolder.editFooterText": "Edit Footer",
"DE.Views.DocumentHolder.editHeaderText": "Edit Header", "DE.Views.DocumentHolder.editHeaderText": "Edit Header",
"DE.Views.DocumentHolder.editHyperlinkText": "Edit Hyperlink", "DE.Views.DocumentHolder.editHyperlinkText": "Edit Hyperlink",
"DE.Views.DocumentHolder.eqToInlineText": "Change to Inline", "DE.Views.DocumentHolder.eqToInlineText": "Change to Inline",
"DE.Views.DocumentHolder.guestText": "Guest", "DE.Views.DocumentHolder.guestText": "Guest",
"DE.Views.DocumentHolder.hyperlinkText": "Hyperlink", "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.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.insertColumnLeftText": "Column Left",
"DE.Views.DocumentHolder.insertColumnRightText": "Column Right", "DE.Views.DocumentHolder.insertColumnRightText": "Column Right",
"DE.Views.DocumentHolder.insertColumnText": "Insert Column", "DE.Views.DocumentHolder.insertColumnText": "Insert Column",
@ -1664,15 +1670,15 @@
"DE.Views.DocumentHolder.insertRowText": "Insert Row", "DE.Views.DocumentHolder.insertRowText": "Insert Row",
"DE.Views.DocumentHolder.insertText": "Insert", "DE.Views.DocumentHolder.insertText": "Insert",
"DE.Views.DocumentHolder.keepLinesText": "Keep lines together", "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.latexText": "LaTeX",
"DE.Views.DocumentHolder.leftText": "Left", "DE.Views.DocumentHolder.leftText": "Left",
"DE.Views.DocumentHolder.loadSpellText": "Loading variants...", "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.moreText": "More variants...",
"DE.Views.DocumentHolder.noSpellVariantsText": "No variants", "DE.Views.DocumentHolder.noSpellVariantsText": "No variants",
"DE.Views.DocumentHolder.notcriticalErrorTitle": "Warning", "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.paragraphText": "Paragraph",
"DE.Views.DocumentHolder.removeHyperlinkText": "Remove Hyperlink", "DE.Views.DocumentHolder.removeHyperlinkText": "Remove Hyperlink",
"DE.Views.DocumentHolder.rightText": "Right", "DE.Views.DocumentHolder.rightText": "Right",
@ -1683,9 +1689,9 @@
"DE.Views.DocumentHolder.selectRowText": "Select Row", "DE.Views.DocumentHolder.selectRowText": "Select Row",
"DE.Views.DocumentHolder.selectTableText": "Select Table", "DE.Views.DocumentHolder.selectTableText": "Select Table",
"DE.Views.DocumentHolder.selectText": "Select", "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.spellcheckText": "Spellcheck",
"DE.Views.DocumentHolder.splitCellsText": "Split Cell...", "DE.Views.DocumentHolder.splitCellsText": "Split cell...",
"DE.Views.DocumentHolder.splitCellTitleText": "Split Cell", "DE.Views.DocumentHolder.splitCellTitleText": "Split Cell",
"DE.Views.DocumentHolder.strDelete": "Remove Signature", "DE.Views.DocumentHolder.strDelete": "Remove Signature",
"DE.Views.DocumentHolder.strDetails": "Signature Details", "DE.Views.DocumentHolder.strDetails": "Signature Details",
@ -1693,7 +1699,7 @@
"DE.Views.DocumentHolder.strSign": "Sign", "DE.Views.DocumentHolder.strSign": "Sign",
"DE.Views.DocumentHolder.styleText": "Formatting as Style", "DE.Views.DocumentHolder.styleText": "Formatting as Style",
"DE.Views.DocumentHolder.tableText": "Table", "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.textAlign": "Align",
"DE.Views.DocumentHolder.textArrange": "Arrange", "DE.Views.DocumentHolder.textArrange": "Arrange",
"DE.Views.DocumentHolder.textArrangeBack": "Send to Background", "DE.Views.DocumentHolder.textArrangeBack": "Send to Background",
@ -1728,7 +1734,7 @@
"DE.Views.DocumentHolder.textPaste": "Paste", "DE.Views.DocumentHolder.textPaste": "Paste",
"DE.Views.DocumentHolder.textPrevPage": "Previous Page", "DE.Views.DocumentHolder.textPrevPage": "Previous Page",
"DE.Views.DocumentHolder.textRefreshField": "Update field", "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.textRemCheckBox": "Remove Checkbox",
"DE.Views.DocumentHolder.textRemComboBox": "Remove Combo Box", "DE.Views.DocumentHolder.textRemComboBox": "Remove Combo Box",
"DE.Views.DocumentHolder.textRemDropdown": "Remove Dropdown", "DE.Views.DocumentHolder.textRemDropdown": "Remove Dropdown",
@ -1760,9 +1766,9 @@
"DE.Views.DocumentHolder.textUpdateAll": "Update entire table", "DE.Views.DocumentHolder.textUpdateAll": "Update entire table",
"DE.Views.DocumentHolder.textUpdatePages": "Update page numbers only", "DE.Views.DocumentHolder.textUpdatePages": "Update page numbers only",
"DE.Views.DocumentHolder.textUpdateTOC": "Update table of contents", "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.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.txtAddBottom": "Add bottom border",
"DE.Views.DocumentHolder.txtAddFractionBar": "Add fraction bar", "DE.Views.DocumentHolder.txtAddFractionBar": "Add fraction bar",
"DE.Views.DocumentHolder.txtAddHor": "Add horizontal line", "DE.Views.DocumentHolder.txtAddHor": "Add horizontal line",
@ -1773,7 +1779,7 @@
"DE.Views.DocumentHolder.txtAddTop": "Add top border", "DE.Views.DocumentHolder.txtAddTop": "Add top border",
"DE.Views.DocumentHolder.txtAddVer": "Add vertical line", "DE.Views.DocumentHolder.txtAddVer": "Add vertical line",
"DE.Views.DocumentHolder.txtAlignToChar": "Align to character", "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.txtBorderProps": "Border properties",
"DE.Views.DocumentHolder.txtBottom": "Bottom", "DE.Views.DocumentHolder.txtBottom": "Bottom",
"DE.Views.DocumentHolder.txtColumnAlign": "Column alignment", "DE.Views.DocumentHolder.txtColumnAlign": "Column alignment",
@ -1785,8 +1791,8 @@
"DE.Views.DocumentHolder.txtDeleteEq": "Delete equation", "DE.Views.DocumentHolder.txtDeleteEq": "Delete equation",
"DE.Views.DocumentHolder.txtDeleteGroupChar": "Delete char", "DE.Views.DocumentHolder.txtDeleteGroupChar": "Delete char",
"DE.Views.DocumentHolder.txtDeleteRadical": "Delete radical", "DE.Views.DocumentHolder.txtDeleteRadical": "Delete radical",
"DE.Views.DocumentHolder.txtDistribHor": "Distribute Horizontally", "DE.Views.DocumentHolder.txtDistribHor": "Distribute horizontally",
"DE.Views.DocumentHolder.txtDistribVert": "Distribute Vertically", "DE.Views.DocumentHolder.txtDistribVert": "Distribute vertically",
"DE.Views.DocumentHolder.txtEmpty": "(Empty)", "DE.Views.DocumentHolder.txtEmpty": "(Empty)",
"DE.Views.DocumentHolder.txtFractionLinear": "Change to linear fraction", "DE.Views.DocumentHolder.txtFractionLinear": "Change to linear fraction",
"DE.Views.DocumentHolder.txtFractionSkewed": "Change to skewed fraction", "DE.Views.DocumentHolder.txtFractionSkewed": "Change to skewed fraction",
@ -1809,12 +1815,12 @@
"DE.Views.DocumentHolder.txtHideTopLimit": "Hide top limit", "DE.Views.DocumentHolder.txtHideTopLimit": "Hide top limit",
"DE.Views.DocumentHolder.txtHideVer": "Hide vertical line", "DE.Views.DocumentHolder.txtHideVer": "Hide vertical line",
"DE.Views.DocumentHolder.txtIncreaseArg": "Increase argument size", "DE.Views.DocumentHolder.txtIncreaseArg": "Increase argument size",
"DE.Views.DocumentHolder.txtInFront": "In Front of Text", "DE.Views.DocumentHolder.txtInFront": "In front of text",
"DE.Views.DocumentHolder.txtInline": "In Line with Text", "DE.Views.DocumentHolder.txtInline": "In line with text",
"DE.Views.DocumentHolder.txtInsertArgAfter": "Insert argument after", "DE.Views.DocumentHolder.txtInsertArgAfter": "Insert argument after",
"DE.Views.DocumentHolder.txtInsertArgBefore": "Insert argument before", "DE.Views.DocumentHolder.txtInsertArgBefore": "Insert argument before",
"DE.Views.DocumentHolder.txtInsertBreak": "Insert manual break", "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.txtInsertEqAfter": "Insert equation after",
"DE.Views.DocumentHolder.txtInsertEqBefore": "Insert equation before", "DE.Views.DocumentHolder.txtInsertEqBefore": "Insert equation before",
"DE.Views.DocumentHolder.txtKeepTextOnly": "Keep text only", "DE.Views.DocumentHolder.txtKeepTextOnly": "Keep text only",
@ -1827,7 +1833,7 @@
"DE.Views.DocumentHolder.txtOverwriteCells": "Overwrite cells", "DE.Views.DocumentHolder.txtOverwriteCells": "Overwrite cells",
"DE.Views.DocumentHolder.txtPasteSourceFormat": "Keep source formatting", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Keep source formatting",
"DE.Views.DocumentHolder.txtPressLink": "Press {0} and click link", "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.txtRemFractionBar": "Remove fraction bar",
"DE.Views.DocumentHolder.txtRemLimit": "Remove limit", "DE.Views.DocumentHolder.txtRemLimit": "Remove limit",
"DE.Views.DocumentHolder.txtRemoveAccentChar": "Remove accent character", "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.<br>Are you sure you want to continue?", "DE.Views.DocumentHolder.txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?",
"DE.Views.DocumentHolder.unicodeText": "Unicode", "DE.Views.DocumentHolder.unicodeText": "Unicode",
"DE.Views.DocumentHolder.updateStyleText": "Update %1 style", "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.strBorders": "Borders & Fill",
"DE.Views.DropcapSettingsAdvanced.strDropcap": "Drop Cap", "DE.Views.DropcapSettingsAdvanced.strDropcap": "Drop cap",
"DE.Views.DropcapSettingsAdvanced.strMargins": "Margins", "DE.Views.DropcapSettingsAdvanced.strMargins": "Margins",
"DE.Views.DropcapSettingsAdvanced.textAlign": "Alignment", "DE.Views.DropcapSettingsAdvanced.textAlign": "Alignment",
"DE.Views.DropcapSettingsAdvanced.textAtLeast": "At least", "DE.Views.DropcapSettingsAdvanced.textAtLeast": "At least",
"DE.Views.DropcapSettingsAdvanced.textAuto": "Auto", "DE.Views.DropcapSettingsAdvanced.textAuto": "Auto",
"DE.Views.DropcapSettingsAdvanced.textBackColor": "Background Color", "DE.Views.DropcapSettingsAdvanced.textBackColor": "Background color",
"DE.Views.DropcapSettingsAdvanced.textBorderColor": "Border Color", "DE.Views.DropcapSettingsAdvanced.textBorderColor": "Border color",
"DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Click on diagram or use buttons to select borders", "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.textBottom": "Bottom",
"DE.Views.DropcapSettingsAdvanced.textCenter": "Center", "DE.Views.DropcapSettingsAdvanced.textCenter": "Center",
"DE.Views.DropcapSettingsAdvanced.textColumn": "Column", "DE.Views.DropcapSettingsAdvanced.textColumn": "Column",
@ -1890,8 +1896,8 @@
"DE.Views.DropcapSettingsAdvanced.textRelative": "Relative to", "DE.Views.DropcapSettingsAdvanced.textRelative": "Relative to",
"DE.Views.DropcapSettingsAdvanced.textRight": "Right", "DE.Views.DropcapSettingsAdvanced.textRight": "Right",
"DE.Views.DropcapSettingsAdvanced.textRowHeight": "Height in rows", "DE.Views.DropcapSettingsAdvanced.textRowHeight": "Height in rows",
"DE.Views.DropcapSettingsAdvanced.textTitle": "Drop Cap - Advanced Settings", "DE.Views.DropcapSettingsAdvanced.textTitle": "Drop cap - Advanced settings",
"DE.Views.DropcapSettingsAdvanced.textTitleFrame": "Frame - Advanced Settings", "DE.Views.DropcapSettingsAdvanced.textTitleFrame": "Frame - Advanced settings",
"DE.Views.DropcapSettingsAdvanced.textTop": "Top", "DE.Views.DropcapSettingsAdvanced.textTop": "Top",
"DE.Views.DropcapSettingsAdvanced.textVertical": "Vertical", "DE.Views.DropcapSettingsAdvanced.textVertical": "Vertical",
"DE.Views.DropcapSettingsAdvanced.textWidth": "Width", "DE.Views.DropcapSettingsAdvanced.textWidth": "Width",
@ -2141,9 +2147,9 @@
"DE.Views.HeaderFooterSettings.textTopRight": "Top right", "DE.Views.HeaderFooterSettings.textTopRight": "Top right",
"DE.Views.HyperlinkSettingsDialog.textDefault": "Selected text fragment", "DE.Views.HyperlinkSettingsDialog.textDefault": "Selected text fragment",
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Display", "DE.Views.HyperlinkSettingsDialog.textDisplay": "Display",
"DE.Views.HyperlinkSettingsDialog.textExternal": "External Link", "DE.Views.HyperlinkSettingsDialog.textExternal": "External link",
"DE.Views.HyperlinkSettingsDialog.textInternal": "Place in Document", "DE.Views.HyperlinkSettingsDialog.textInternal": "Place in document",
"DE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink Settings", "DE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink settings",
"DE.Views.HyperlinkSettingsDialog.textTooltip": "ScreenTip text", "DE.Views.HyperlinkSettingsDialog.textTooltip": "ScreenTip text",
"DE.Views.HyperlinkSettingsDialog.textUrl": "Link to", "DE.Views.HyperlinkSettingsDialog.textUrl": "Link to",
"DE.Views.HyperlinkSettingsDialog.txtBeginning": "Beginning of document", "DE.Views.HyperlinkSettingsDialog.txtBeginning": "Beginning of document",
@ -2184,10 +2190,10 @@
"DE.Views.ImageSettings.txtThrough": "Through", "DE.Views.ImageSettings.txtThrough": "Through",
"DE.Views.ImageSettings.txtTight": "Tight", "DE.Views.ImageSettings.txtTight": "Tight",
"DE.Views.ImageSettings.txtTopAndBottom": "Top and bottom", "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.textAbsoluteWH": "Absolute",
"DE.Views.ImageSettingsAdvanced.textAlignment": "Alignment", "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.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.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", "DE.Views.ImageSettingsAdvanced.textAltTitle": "Title",
@ -2195,36 +2201,36 @@
"DE.Views.ImageSettingsAdvanced.textArrows": "Arrows", "DE.Views.ImageSettingsAdvanced.textArrows": "Arrows",
"DE.Views.ImageSettingsAdvanced.textAspectRatio": "Lock aspect ratio", "DE.Views.ImageSettingsAdvanced.textAspectRatio": "Lock aspect ratio",
"DE.Views.ImageSettingsAdvanced.textAutofit": "AutoFit", "DE.Views.ImageSettingsAdvanced.textAutofit": "AutoFit",
"DE.Views.ImageSettingsAdvanced.textBeginSize": "Begin Size", "DE.Views.ImageSettingsAdvanced.textBeginSize": "Begin size",
"DE.Views.ImageSettingsAdvanced.textBeginStyle": "Begin Style", "DE.Views.ImageSettingsAdvanced.textBeginStyle": "Begin style",
"DE.Views.ImageSettingsAdvanced.textBelow": "below", "DE.Views.ImageSettingsAdvanced.textBelow": "below",
"DE.Views.ImageSettingsAdvanced.textBevel": "Bevel", "DE.Views.ImageSettingsAdvanced.textBevel": "Bevel",
"DE.Views.ImageSettingsAdvanced.textBottom": "Bottom", "DE.Views.ImageSettingsAdvanced.textBottom": "Bottom",
"DE.Views.ImageSettingsAdvanced.textBottomMargin": "Bottom Margin", "DE.Views.ImageSettingsAdvanced.textBottomMargin": "Bottom margin",
"DE.Views.ImageSettingsAdvanced.textBtnWrap": "Text Wrapping", "DE.Views.ImageSettingsAdvanced.textBtnWrap": "Text wrapping",
"DE.Views.ImageSettingsAdvanced.textCapType": "Cap Type", "DE.Views.ImageSettingsAdvanced.textCapType": "Cap type",
"DE.Views.ImageSettingsAdvanced.textCenter": "Center", "DE.Views.ImageSettingsAdvanced.textCenter": "Center",
"DE.Views.ImageSettingsAdvanced.textCharacter": "Character", "DE.Views.ImageSettingsAdvanced.textCharacter": "Character",
"DE.Views.ImageSettingsAdvanced.textColumn": "Column", "DE.Views.ImageSettingsAdvanced.textColumn": "Column",
"DE.Views.ImageSettingsAdvanced.textDistance": "Distance from Text", "DE.Views.ImageSettingsAdvanced.textDistance": "Distance from text",
"DE.Views.ImageSettingsAdvanced.textEndSize": "End Size", "DE.Views.ImageSettingsAdvanced.textEndSize": "End size",
"DE.Views.ImageSettingsAdvanced.textEndStyle": "End Style", "DE.Views.ImageSettingsAdvanced.textEndStyle": "End style",
"DE.Views.ImageSettingsAdvanced.textFlat": "Flat", "DE.Views.ImageSettingsAdvanced.textFlat": "Flat",
"DE.Views.ImageSettingsAdvanced.textFlipped": "Flipped", "DE.Views.ImageSettingsAdvanced.textFlipped": "Flipped",
"DE.Views.ImageSettingsAdvanced.textHeight": "Height", "DE.Views.ImageSettingsAdvanced.textHeight": "Height",
"DE.Views.ImageSettingsAdvanced.textHorizontal": "Horizontal", "DE.Views.ImageSettingsAdvanced.textHorizontal": "Horizontal",
"DE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontally", "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.textKeepRatio": "Constant proportions",
"DE.Views.ImageSettingsAdvanced.textLeft": "Left", "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.textLine": "Line",
"DE.Views.ImageSettingsAdvanced.textLineStyle": "Line Style", "DE.Views.ImageSettingsAdvanced.textLineStyle": "Line style",
"DE.Views.ImageSettingsAdvanced.textMargin": "Margin", "DE.Views.ImageSettingsAdvanced.textMargin": "Margin",
"DE.Views.ImageSettingsAdvanced.textMiter": "Miter", "DE.Views.ImageSettingsAdvanced.textMiter": "Miter",
"DE.Views.ImageSettingsAdvanced.textMove": "Move object with text", "DE.Views.ImageSettingsAdvanced.textMove": "Move object with text",
"DE.Views.ImageSettingsAdvanced.textOptions": "Options", "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.textOverlap": "Allow overlap",
"DE.Views.ImageSettingsAdvanced.textPage": "Page", "DE.Views.ImageSettingsAdvanced.textPage": "Page",
"DE.Views.ImageSettingsAdvanced.textParagraph": "Paragraph", "DE.Views.ImageSettingsAdvanced.textParagraph": "Paragraph",
@ -2234,27 +2240,27 @@
"DE.Views.ImageSettingsAdvanced.textRelativeWH": "Relative", "DE.Views.ImageSettingsAdvanced.textRelativeWH": "Relative",
"DE.Views.ImageSettingsAdvanced.textResizeFit": "Resize shape to fit text", "DE.Views.ImageSettingsAdvanced.textResizeFit": "Resize shape to fit text",
"DE.Views.ImageSettingsAdvanced.textRight": "Right", "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.textRightOf": "to the right of",
"DE.Views.ImageSettingsAdvanced.textRotation": "Rotation", "DE.Views.ImageSettingsAdvanced.textRotation": "Rotation",
"DE.Views.ImageSettingsAdvanced.textRound": "Round", "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.textSize": "Size",
"DE.Views.ImageSettingsAdvanced.textSquare": "Square", "DE.Views.ImageSettingsAdvanced.textSquare": "Square",
"DE.Views.ImageSettingsAdvanced.textTextBox": "Text Box", "DE.Views.ImageSettingsAdvanced.textTextBox": "Text box",
"DE.Views.ImageSettingsAdvanced.textTitle": "Image - Advanced Settings", "DE.Views.ImageSettingsAdvanced.textTitle": "Image - Advanced settings",
"DE.Views.ImageSettingsAdvanced.textTitleChart": "Chart - Advanced Settings", "DE.Views.ImageSettingsAdvanced.textTitleChart": "Chart - Advanced settings",
"DE.Views.ImageSettingsAdvanced.textTitleShape": "Shape - Advanced Settings", "DE.Views.ImageSettingsAdvanced.textTitleShape": "Shape - Advanced settings",
"DE.Views.ImageSettingsAdvanced.textTop": "Top", "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.textVertical": "Vertical",
"DE.Views.ImageSettingsAdvanced.textVertically": "Vertically", "DE.Views.ImageSettingsAdvanced.textVertically": "Vertically",
"DE.Views.ImageSettingsAdvanced.textWeightArrows": "Weights & Arrows", "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Weights & Arrows",
"DE.Views.ImageSettingsAdvanced.textWidth": "Width", "DE.Views.ImageSettingsAdvanced.textWidth": "Width",
"DE.Views.ImageSettingsAdvanced.textWrap": "Wrapping Style", "DE.Views.ImageSettingsAdvanced.textWrap": "Wrapping style",
"DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Behind Text", "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Behind text",
"DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "In Front of Text", "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "In front of text",
"DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "In Line with Text", "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "In line with text",
"DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Square", "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Square",
"DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Through", "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Through",
"DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Tight", "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Tight",
@ -2282,11 +2288,11 @@
"DE.Views.LineNumbersDialog.textForward": "This point forward", "DE.Views.LineNumbersDialog.textForward": "This point forward",
"DE.Views.LineNumbersDialog.textFromText": "From text", "DE.Views.LineNumbersDialog.textFromText": "From text",
"DE.Views.LineNumbersDialog.textNumbering": "Numbering", "DE.Views.LineNumbersDialog.textNumbering": "Numbering",
"DE.Views.LineNumbersDialog.textRestartEachPage": "Restart Each Page", "DE.Views.LineNumbersDialog.textRestartEachPage": "Restart each page",
"DE.Views.LineNumbersDialog.textRestartEachSection": "Restart Each Section", "DE.Views.LineNumbersDialog.textRestartEachSection": "Restart each section",
"DE.Views.LineNumbersDialog.textSection": "Current section", "DE.Views.LineNumbersDialog.textSection": "Current section",
"DE.Views.LineNumbersDialog.textStartAt": "Start at", "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.LineNumbersDialog.txtAutoText": "Auto",
"DE.Views.Links.capBtnAddText": "Add Text", "DE.Views.Links.capBtnAddText": "Add Text",
"DE.Views.Links.capBtnBookmarks": "Bookmark", "DE.Views.Links.capBtnBookmarks": "Bookmark",
@ -2335,13 +2341,13 @@
"DE.Views.ListSettingsDialog.txtAlign": "Alignment", "DE.Views.ListSettingsDialog.txtAlign": "Alignment",
"DE.Views.ListSettingsDialog.txtBullet": "Bullet", "DE.Views.ListSettingsDialog.txtBullet": "Bullet",
"DE.Views.ListSettingsDialog.txtColor": "Color", "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.txtLikeText": "Like a text",
"DE.Views.ListSettingsDialog.txtNewBullet": "New bullet", "DE.Views.ListSettingsDialog.txtNewBullet": "New bullet",
"DE.Views.ListSettingsDialog.txtNone": "None", "DE.Views.ListSettingsDialog.txtNone": "None",
"DE.Views.ListSettingsDialog.txtSize": "Size", "DE.Views.ListSettingsDialog.txtSize": "Size",
"DE.Views.ListSettingsDialog.txtSymbol": "Symbol", "DE.Views.ListSettingsDialog.txtSymbol": "Symbol",
"DE.Views.ListSettingsDialog.txtTitle": "List Settings", "DE.Views.ListSettingsDialog.txtTitle": "List settings",
"DE.Views.ListSettingsDialog.txtType": "Type", "DE.Views.ListSettingsDialog.txtType": "Type",
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
"DE.Views.MailMergeEmailDlg.okButtonText": "Send", "DE.Views.MailMergeEmailDlg.okButtonText": "Send",
@ -2353,8 +2359,8 @@
"DE.Views.MailMergeEmailDlg.textFrom": "From", "DE.Views.MailMergeEmailDlg.textFrom": "From",
"DE.Views.MailMergeEmailDlg.textHTML": "HTML", "DE.Views.MailMergeEmailDlg.textHTML": "HTML",
"DE.Views.MailMergeEmailDlg.textMessage": "Message", "DE.Views.MailMergeEmailDlg.textMessage": "Message",
"DE.Views.MailMergeEmailDlg.textSubject": "Subject Line", "DE.Views.MailMergeEmailDlg.textSubject": "Subject line",
"DE.Views.MailMergeEmailDlg.textTitle": "Send to Email", "DE.Views.MailMergeEmailDlg.textTitle": "Send to email",
"DE.Views.MailMergeEmailDlg.textTo": "To", "DE.Views.MailMergeEmailDlg.textTo": "To",
"DE.Views.MailMergeEmailDlg.textWarning": "Warning!", "DE.Views.MailMergeEmailDlg.textWarning": "Warning!",
"DE.Views.MailMergeEmailDlg.textWarningMsg": "Please note that mailing cannot be stopped once your click the 'Send' button.", "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.textApply": "Apply",
"DE.Views.NoteSettingsDialog.textApplyTo": "Apply changes to", "DE.Views.NoteSettingsDialog.textApplyTo": "Apply changes to",
"DE.Views.NoteSettingsDialog.textContinue": "Continuous", "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.textDocEnd": "End of document",
"DE.Views.NoteSettingsDialog.textDocument": "Whole document", "DE.Views.NoteSettingsDialog.textDocument": "Whole document",
"DE.Views.NoteSettingsDialog.textEachPage": "Restart each page", "DE.Views.NoteSettingsDialog.textEachPage": "Restart each page",
@ -2424,16 +2430,16 @@
"DE.Views.NoteSettingsDialog.textInsert": "Insert", "DE.Views.NoteSettingsDialog.textInsert": "Insert",
"DE.Views.NoteSettingsDialog.textLocation": "Location", "DE.Views.NoteSettingsDialog.textLocation": "Location",
"DE.Views.NoteSettingsDialog.textNumbering": "Numbering", "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.textPageBottom": "Bottom of page",
"DE.Views.NoteSettingsDialog.textSectEnd": "End of section", "DE.Views.NoteSettingsDialog.textSectEnd": "End of section",
"DE.Views.NoteSettingsDialog.textSection": "Current section", "DE.Views.NoteSettingsDialog.textSection": "Current section",
"DE.Views.NoteSettingsDialog.textStart": "Start at", "DE.Views.NoteSettingsDialog.textStart": "Start at",
"DE.Views.NoteSettingsDialog.textTextBottom": "Below text", "DE.Views.NoteSettingsDialog.textTextBottom": "Below text",
"DE.Views.NoteSettingsDialog.textTitle": "Notes Settings", "DE.Views.NoteSettingsDialog.textTitle": "Notes settings",
"DE.Views.NotesRemoveDialog.textEnd": "Delete All Endnotes", "DE.Views.NotesRemoveDialog.textEnd": "Delete all endnotes",
"DE.Views.NotesRemoveDialog.textFoot": "Delete All Footnotes", "DE.Views.NotesRemoveDialog.textFoot": "Delete all footnotes",
"DE.Views.NotesRemoveDialog.textTitle": "Delete Notes", "DE.Views.NotesRemoveDialog.textTitle": "Delete notes",
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Warning", "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Warning",
"DE.Views.PageMarginsDialog.textBottom": "Bottom", "DE.Views.PageMarginsDialog.textBottom": "Bottom",
"DE.Views.PageMarginsDialog.textGutter": "Gutter", "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.PageMarginsDialog.txtMarginsW": "Left and right margins are too wide for a given page width",
"DE.Views.PageSizeDialog.textHeight": "Height", "DE.Views.PageSizeDialog.textHeight": "Height",
"DE.Views.PageSizeDialog.textPreset": "Preset", "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.textWidth": "Width",
"DE.Views.PageSizeDialog.txtCustom": "Custom", "DE.Views.PageSizeDialog.txtCustom": "Custom",
"DE.Views.PageThumbnails.textClosePanel": "Close page thumbnails", "DE.Views.PageThumbnails.textClosePanel": "Close page thumbnails",
@ -2489,7 +2495,7 @@
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double strikethrough", "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double strikethrough",
"DE.Views.ParagraphSettingsAdvanced.strIndent": "Indents", "DE.Views.ParagraphSettingsAdvanced.strIndent": "Indents",
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Left", "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.strIndentsOutlinelevel": "Outline level",
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Right", "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Right",
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "After", "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "After",
@ -2501,7 +2507,7 @@
"DE.Views.ParagraphSettingsAdvanced.strOrphan": "Orphan control", "DE.Views.ParagraphSettingsAdvanced.strOrphan": "Orphan control",
"DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Font", "DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Font",
"DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Indents & Spacing", "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.strParagraphPosition": "Placement",
"DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Small caps", "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Small caps",
"DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "Don't add interval between paragraphs of the same style", "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.textAll": "All",
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "At least", "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "At least",
"DE.Views.ParagraphSettingsAdvanced.textAuto": "Multiple", "DE.Views.ParagraphSettingsAdvanced.textAuto": "Multiple",
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Background Color", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Background color",
"DE.Views.ParagraphSettingsAdvanced.textBodyText": "Basic Text", "DE.Views.ParagraphSettingsAdvanced.textBodyText": "Basic text",
"DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Border Color", "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.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.textBottom": "Bottom",
"DE.Views.ParagraphSettingsAdvanced.textCentered": "Centered", "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.textContext": "Contextual",
"DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Contextual and Discretionary", "DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Contextual and discretionary",
"DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Contextual, Historical and Discretionary", "DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Contextual, historical and discretionary",
"DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Contextual and Historical", "DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Contextual and historical",
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Default Tab", "DE.Views.ParagraphSettingsAdvanced.textDefault": "Default tab",
"DE.Views.ParagraphSettingsAdvanced.textDiscret": "Discretionary", "DE.Views.ParagraphSettingsAdvanced.textDiscret": "Discretionary",
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Effects", "DE.Views.ParagraphSettingsAdvanced.textEffects": "Effects",
"DE.Views.ParagraphSettingsAdvanced.textExact": "Exactly", "DE.Views.ParagraphSettingsAdvanced.textExact": "Exactly",
"DE.Views.ParagraphSettingsAdvanced.textFirstLine": "First line", "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "First line",
"DE.Views.ParagraphSettingsAdvanced.textHanging": "Hanging", "DE.Views.ParagraphSettingsAdvanced.textHanging": "Hanging",
"DE.Views.ParagraphSettingsAdvanced.textHistorical": "Historical", "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.textJustified": "Justified",
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Leader", "DE.Views.ParagraphSettingsAdvanced.textLeader": "Leader",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Left", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Left",
@ -2542,25 +2548,25 @@
"DE.Views.ParagraphSettingsAdvanced.textLigatures": "Ligatures", "DE.Views.ParagraphSettingsAdvanced.textLigatures": "Ligatures",
"DE.Views.ParagraphSettingsAdvanced.textNone": "None", "DE.Views.ParagraphSettingsAdvanced.textNone": "None",
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(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.textPosition": "Position",
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Remove", "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.textRight": "Right",
"DE.Views.ParagraphSettingsAdvanced.textSet": "Specify", "DE.Views.ParagraphSettingsAdvanced.textSet": "Specify",
"DE.Views.ParagraphSettingsAdvanced.textSpacing": "Spacing", "DE.Views.ParagraphSettingsAdvanced.textSpacing": "Spacing",
"DE.Views.ParagraphSettingsAdvanced.textStandard": "Standard only", "DE.Views.ParagraphSettingsAdvanced.textStandard": "Standard only",
"DE.Views.ParagraphSettingsAdvanced.textStandardContext": "Standard and Contextual", "DE.Views.ParagraphSettingsAdvanced.textStandardContext": "Standard and contextual",
"DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "Standard, Contextual and Discretionary", "DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "Standard, contextual and discretionary",
"DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "Standard, Contextual and Historical", "DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "Standard, contextual and historical",
"DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "Standard and Discretionary", "DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "Standard and discretionary",
"DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret": "Standard, Historical and Discretionary", "DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret": "Standard, historical and discretionary",
"DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "Standard and Historical", "DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "Standard and historical",
"DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Center", "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Center",
"DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Left", "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.textTabRight": "Right",
"DE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraph - Advanced Settings", "DE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraph - Advanced settings",
"DE.Views.ParagraphSettingsAdvanced.textTop": "Top", "DE.Views.ParagraphSettingsAdvanced.textTop": "Top",
"DE.Views.ParagraphSettingsAdvanced.tipAll": "Set outer border and all inner lines", "DE.Views.ParagraphSettingsAdvanced.tipAll": "Set outer border and all inner lines",
"DE.Views.ParagraphSettingsAdvanced.tipBottom": "Set bottom border only", "DE.Views.ParagraphSettingsAdvanced.tipBottom": "Set bottom border only",
@ -2685,20 +2691,20 @@
"DE.Views.Statusbar.tipZoomIn": "Zoom in", "DE.Views.Statusbar.tipZoomIn": "Zoom in",
"DE.Views.Statusbar.tipZoomOut": "Zoom out", "DE.Views.Statusbar.tipZoomOut": "Zoom out",
"DE.Views.Statusbar.txtPageNumInvalid": "Page number invalid", "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.textNextStyle": "Next paragraph style",
"DE.Views.StyleTitleDialog.textTitle": "Title", "DE.Views.StyleTitleDialog.textTitle": "Title",
"DE.Views.StyleTitleDialog.txtEmpty": "This field is required", "DE.Views.StyleTitleDialog.txtEmpty": "This field is required",
"DE.Views.StyleTitleDialog.txtNotEmpty": "Field must not be empty", "DE.Views.StyleTitleDialog.txtNotEmpty": "Field must not be empty",
"DE.Views.StyleTitleDialog.txtSameAs": "Same as created new style", "DE.Views.StyleTitleDialog.txtSameAs": "Same as created new style",
"DE.Views.TableFormulaDialog.textBookmark": "Paste Bookmark", "DE.Views.TableFormulaDialog.textBookmark": "Paste bookmark",
"DE.Views.TableFormulaDialog.textFormat": "Number Format", "DE.Views.TableFormulaDialog.textFormat": "Number format",
"DE.Views.TableFormulaDialog.textFormula": "Formula", "DE.Views.TableFormulaDialog.textFormula": "Formula",
"DE.Views.TableFormulaDialog.textInsertFunction": "Paste Function", "DE.Views.TableFormulaDialog.textInsertFunction": "Paste function",
"DE.Views.TableFormulaDialog.textTitle": "Formula Settings", "DE.Views.TableFormulaDialog.textTitle": "Formula settings",
"DE.Views.TableOfContentsSettings.strAlign": "Right align page numbers", "DE.Views.TableOfContentsSettings.strAlign": "Right align page numbers",
"DE.Views.TableOfContentsSettings.strFullCaption": "Include label and number", "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.strLinksOF": "Format table of figures as links",
"DE.Views.TableOfContentsSettings.strShowPages": "Show page numbers", "DE.Views.TableOfContentsSettings.strShowPages": "Show page numbers",
"DE.Views.TableOfContentsSettings.textBuildTable": "Build table of contents from", "DE.Views.TableOfContentsSettings.textBuildTable": "Build table of contents from",
@ -2716,8 +2722,8 @@
"DE.Views.TableOfContentsSettings.textStyle": "Style", "DE.Views.TableOfContentsSettings.textStyle": "Style",
"DE.Views.TableOfContentsSettings.textStyles": "Styles", "DE.Views.TableOfContentsSettings.textStyles": "Styles",
"DE.Views.TableOfContentsSettings.textTable": "Table", "DE.Views.TableOfContentsSettings.textTable": "Table",
"DE.Views.TableOfContentsSettings.textTitle": "Table of Contents", "DE.Views.TableOfContentsSettings.textTitle": "Table of contents",
"DE.Views.TableOfContentsSettings.textTitleTOF": "Table of Figures", "DE.Views.TableOfContentsSettings.textTitleTOF": "Table of figures",
"DE.Views.TableOfContentsSettings.txtCentered": "Centered", "DE.Views.TableOfContentsSettings.txtCentered": "Centered",
"DE.Views.TableOfContentsSettings.txtClassic": "Classic", "DE.Views.TableOfContentsSettings.txtClassic": "Classic",
"DE.Views.TableOfContentsSettings.txtCurrent": "Current", "DE.Views.TableOfContentsSettings.txtCurrent": "Current",
@ -2794,33 +2800,33 @@
"DE.Views.TableSettingsAdvanced.textAlign": "Alignment", "DE.Views.TableSettingsAdvanced.textAlign": "Alignment",
"DE.Views.TableSettingsAdvanced.textAlignment": "Alignment", "DE.Views.TableSettingsAdvanced.textAlignment": "Alignment",
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Spacing between cells", "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.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.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.textAltTitle": "Title",
"DE.Views.TableSettingsAdvanced.textAnchorText": "Text", "DE.Views.TableSettingsAdvanced.textAnchorText": "Text",
"DE.Views.TableSettingsAdvanced.textAutofit": "Automatically resize to fit contents", "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.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.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.textBordersBackgroung": "Borders & Background",
"DE.Views.TableSettingsAdvanced.textBorderWidth": "Border Size", "DE.Views.TableSettingsAdvanced.textBorderWidth": "Border size",
"DE.Views.TableSettingsAdvanced.textBottom": "Bottom", "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.textCellProps": "Cell",
"DE.Views.TableSettingsAdvanced.textCellSize": "Cell Size", "DE.Views.TableSettingsAdvanced.textCellSize": "Cell size",
"DE.Views.TableSettingsAdvanced.textCenter": "Center", "DE.Views.TableSettingsAdvanced.textCenter": "Center",
"DE.Views.TableSettingsAdvanced.textCenterTooltip": "Center", "DE.Views.TableSettingsAdvanced.textCenterTooltip": "Center",
"DE.Views.TableSettingsAdvanced.textCheckMargins": "Use default margins", "DE.Views.TableSettingsAdvanced.textCheckMargins": "Use default margins",
"DE.Views.TableSettingsAdvanced.textDefaultMargins": "Default Cell Margins", "DE.Views.TableSettingsAdvanced.textDefaultMargins": "Default cell margins",
"DE.Views.TableSettingsAdvanced.textDistance": "Distance from Text", "DE.Views.TableSettingsAdvanced.textDistance": "Distance from text",
"DE.Views.TableSettingsAdvanced.textHorizontal": "Horizontal", "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.textLeft": "Left",
"DE.Views.TableSettingsAdvanced.textLeftTooltip": "Left", "DE.Views.TableSettingsAdvanced.textLeftTooltip": "Left",
"DE.Views.TableSettingsAdvanced.textMargin": "Margin", "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.textMeasure": "Measure in",
"DE.Views.TableSettingsAdvanced.textMove": "Move object with text", "DE.Views.TableSettingsAdvanced.textMove": "Move object with text",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "For selected cells only", "DE.Views.TableSettingsAdvanced.textOnlyCells": "For selected cells only",
@ -2835,18 +2841,18 @@
"DE.Views.TableSettingsAdvanced.textRightOf": "to the right of", "DE.Views.TableSettingsAdvanced.textRightOf": "to the right of",
"DE.Views.TableSettingsAdvanced.textRightTooltip": "Right", "DE.Views.TableSettingsAdvanced.textRightTooltip": "Right",
"DE.Views.TableSettingsAdvanced.textTable": "Table", "DE.Views.TableSettingsAdvanced.textTable": "Table",
"DE.Views.TableSettingsAdvanced.textTableBackColor": "Table Background", "DE.Views.TableSettingsAdvanced.textTableBackColor": "Table background",
"DE.Views.TableSettingsAdvanced.textTablePosition": "Table Position", "DE.Views.TableSettingsAdvanced.textTablePosition": "Table position",
"DE.Views.TableSettingsAdvanced.textTableSize": "Table Size", "DE.Views.TableSettingsAdvanced.textTableSize": "Table size",
"DE.Views.TableSettingsAdvanced.textTitle": "Table - Advanced Settings", "DE.Views.TableSettingsAdvanced.textTitle": "Table - Advanced settings",
"DE.Views.TableSettingsAdvanced.textTop": "Top", "DE.Views.TableSettingsAdvanced.textTop": "Top",
"DE.Views.TableSettingsAdvanced.textVertical": "Vertical", "DE.Views.TableSettingsAdvanced.textVertical": "Vertical",
"DE.Views.TableSettingsAdvanced.textWidth": "Width", "DE.Views.TableSettingsAdvanced.textWidth": "Width",
"DE.Views.TableSettingsAdvanced.textWidthSpaces": "Width & Spaces", "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.textWrapNoneTooltip": "Inline table",
"DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "Flow 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.textWrapText": "Wrap text",
"DE.Views.TableSettingsAdvanced.tipAll": "Set outer border and all inner lines", "DE.Views.TableSettingsAdvanced.tipAll": "Set outer border and all inner lines",
"DE.Views.TableSettingsAdvanced.tipCellAll": "Set borders for inner cells only", "DE.Views.TableSettingsAdvanced.tipCellAll": "Set borders for inner cells only",
@ -2870,7 +2876,7 @@
"DE.Views.TableToTextDialog.textSemicolon": "Semicolons", "DE.Views.TableToTextDialog.textSemicolon": "Semicolons",
"DE.Views.TableToTextDialog.textSeparator": "Separate text with", "DE.Views.TableToTextDialog.textSeparator": "Separate text with",
"DE.Views.TableToTextDialog.textTab": "Tabs", "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.strColor": "Color",
"DE.Views.TextArtSettings.strFill": "Fill", "DE.Views.TextArtSettings.strFill": "Fill",
"DE.Views.TextArtSettings.strSize": "Size", "DE.Views.TextArtSettings.strSize": "Size",
@ -2894,7 +2900,7 @@
"DE.Views.TextArtSettings.tipAddGradientPoint": "Add gradient point", "DE.Views.TextArtSettings.tipAddGradientPoint": "Add gradient point",
"DE.Views.TextArtSettings.tipRemoveGradientPoint": "Remove gradient point", "DE.Views.TextArtSettings.tipRemoveGradientPoint": "Remove gradient point",
"DE.Views.TextArtSettings.txtNoBorders": "No Line", "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.textColumns": "Columns",
"DE.Views.TextToTableDialog.textContents": "Autofit to contents", "DE.Views.TextToTableDialog.textContents": "Autofit to contents",
"DE.Views.TextToTableDialog.textEmpty": "You must type a character for the custom separator.", "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.textPara": "Paragraphs",
"DE.Views.TextToTableDialog.textRows": "Rows", "DE.Views.TextToTableDialog.textRows": "Rows",
"DE.Views.TextToTableDialog.textSemicolon": "Semicolons", "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.textTab": "Tabs",
"DE.Views.TextToTableDialog.textTableSize": "Table Size", "DE.Views.TextToTableDialog.textTableSize": "Table size",
"DE.Views.TextToTableDialog.textTitle": "Convert Text to Table", "DE.Views.TextToTableDialog.textTitle": "Convert text to table",
"DE.Views.TextToTableDialog.textWindow": "Autofit to window", "DE.Views.TextToTableDialog.textWindow": "Autofit to window",
"DE.Views.TextToTableDialog.txtAutoText": "Auto", "DE.Views.TextToTableDialog.txtAutoText": "Auto",
"DE.Views.Toolbar.capBtnAddComment": "Add Comment", "DE.Views.Toolbar.capBtnAddComment": "Add Comment",
@ -3145,13 +3151,15 @@
"DE.Views.Toolbar.txtScheme7": "Equity", "DE.Views.Toolbar.txtScheme7": "Equity",
"DE.Views.Toolbar.txtScheme8": "Flow", "DE.Views.Toolbar.txtScheme8": "Flow",
"DE.Views.Toolbar.txtScheme9": "Foundry", "DE.Views.Toolbar.txtScheme9": "Foundry",
"DE.Views.ViewTab.textAlwaysShowToolbar": "Always show toolbar", "DE.Views.ViewTab.textAlwaysShowToolbar": "Always Show Toolbar",
"DE.Views.ViewTab.textDarkDocument": "Dark document", "DE.Views.ViewTab.textDarkDocument": "Dark Document",
"DE.Views.ViewTab.textFitToPage": "Fit To Page", "DE.Views.ViewTab.textFitToPage": "Fit To Page",
"DE.Views.ViewTab.textFitToWidth": "Fit To Width", "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.textNavigation": "Navigation",
"DE.Views.ViewTab.textOutline": "Headings", "DE.Views.ViewTab.textOutline": "Headings",
"DE.Views.ViewTab.textRightMenu": "Right Panel",
"DE.Views.ViewTab.textRulers": "Rulers", "DE.Views.ViewTab.textRulers": "Rulers",
"DE.Views.ViewTab.textStatusBar": "Status Bar", "DE.Views.ViewTab.textStatusBar": "Status Bar",
"DE.Views.ViewTab.textZoom": "Zoom", "DE.Views.ViewTab.textZoom": "Zoom",
@ -3160,15 +3168,13 @@
"DE.Views.ViewTab.tipFitToWidth": "Fit to width", "DE.Views.ViewTab.tipFitToWidth": "Fit to width",
"DE.Views.ViewTab.tipHeadings": "Headings", "DE.Views.ViewTab.tipHeadings": "Headings",
"DE.Views.ViewTab.tipInterfaceTheme": "Interface theme", "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.textAuto": "Auto",
"DE.Views.WatermarkSettingsDialog.textBold": "Bold", "DE.Views.WatermarkSettingsDialog.textBold": "Bold",
"DE.Views.WatermarkSettingsDialog.textColor": "Text color", "DE.Views.WatermarkSettingsDialog.textColor": "Text color",
"DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonal", "DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonal",
"DE.Views.WatermarkSettingsDialog.textFont": "Font", "DE.Views.WatermarkSettingsDialog.textFont": "Font",
"DE.Views.WatermarkSettingsDialog.textFromFile": "From File", "DE.Views.WatermarkSettingsDialog.textFromFile": "From file",
"DE.Views.WatermarkSettingsDialog.textFromStorage": "From Storage", "DE.Views.WatermarkSettingsDialog.textFromStorage": "From storage",
"DE.Views.WatermarkSettingsDialog.textFromUrl": "From URL", "DE.Views.WatermarkSettingsDialog.textFromUrl": "From URL",
"DE.Views.WatermarkSettingsDialog.textHor": "Horizontal", "DE.Views.WatermarkSettingsDialog.textHor": "Horizontal",
"DE.Views.WatermarkSettingsDialog.textImageW": "Image watermark", "DE.Views.WatermarkSettingsDialog.textImageW": "Image watermark",
@ -3177,13 +3183,13 @@
"DE.Views.WatermarkSettingsDialog.textLayout": "Layout", "DE.Views.WatermarkSettingsDialog.textLayout": "Layout",
"DE.Views.WatermarkSettingsDialog.textNone": "None", "DE.Views.WatermarkSettingsDialog.textNone": "None",
"DE.Views.WatermarkSettingsDialog.textScale": "Scale", "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.textStrikeout": "Strikethrough",
"DE.Views.WatermarkSettingsDialog.textText": "Text", "DE.Views.WatermarkSettingsDialog.textText": "Text",
"DE.Views.WatermarkSettingsDialog.textTextW": "Text watermark", "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.textTransparency": "Semitransparent",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Underline", "DE.Views.WatermarkSettingsDialog.textUnderline": "Underline",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Font Name", "DE.Views.WatermarkSettingsDialog.tipFontName": "Font name",
"DE.Views.WatermarkSettingsDialog.tipFontSize": "Font Size" "DE.Views.WatermarkSettingsDialog.tipFontSize": "Font size"
} }

View file

@ -125,6 +125,165 @@
"Common.define.chartData.textScatterSmoothMarker": "Dispersión con líneas suavizadas y marcadores", "Common.define.chartData.textScatterSmoothMarker": "Dispersión con líneas suavizadas y marcadores",
"Common.define.chartData.textStock": "De cotizaciones", "Common.define.chartData.textStock": "De cotizaciones",
"Common.define.chartData.textSurface": "Superficie", "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.textMoreButton": "Más",
"Common.Translation.warnFileLocked": "No puede editar este archivo porque está siendo editado en otra aplicación.", "Common.Translation.warnFileLocked": "No puede editar este archivo porque está siendo editado en otra aplicación.",
"Common.Translation.warnFileLockedBtnEdit": "Crear una copia", "Common.Translation.warnFileLockedBtnEdit": "Crear una copia",
@ -184,7 +343,7 @@
"Common.UI.SearchDialog.textMatchCase": "Sensible a mayúsculas y minúsculas", "Common.UI.SearchDialog.textMatchCase": "Sensible a mayúsculas y minúsculas",
"Common.UI.SearchDialog.textReplaceDef": "Introduzca el texto de sustitución", "Common.UI.SearchDialog.textReplaceDef": "Introduzca el texto de sustitución",
"Common.UI.SearchDialog.textSearchStart": "Introduzca su texto aquí", "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.textTitle2": "Encontrar",
"Common.UI.SearchDialog.textWholeWords": "Sólo palabras completas", "Common.UI.SearchDialog.textWholeWords": "Sólo palabras completas",
"Common.UI.SearchDialog.txtBtnHideReplace": "Esconder Sustitución", "Common.UI.SearchDialog.txtBtnHideReplace": "Esconder Sustitución",
@ -281,13 +440,15 @@
"Common.Views.Comments.txtEmpty": "Sin comentarios en el documento", "Common.Views.Comments.txtEmpty": "Sin comentarios en el documento",
"Common.Views.CopyWarningDialog.textDontShow": "No volver a mostrar este mensaje", "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.<br><br>Si quiere copiar o pegar algo fuera de esta pestaña, usa las combinaciones de teclas siguientes:", "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.<br><br>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.textToCopy": "para copiar",
"Common.Views.CopyWarningDialog.textToCut": "para cortar", "Common.Views.CopyWarningDialog.textToCut": "para cortar",
"Common.Views.CopyWarningDialog.textToPaste": "para pegar", "Common.Views.CopyWarningDialog.textToPaste": "para pegar",
"Common.Views.DocumentAccessDialog.textLoading": "Cargando...", "Common.Views.DocumentAccessDialog.textLoading": "Cargando...",
"Common.Views.DocumentAccessDialog.textTitle": "Ajustes de uso compartido", "Common.Views.DocumentAccessDialog.textTitle": "Ajustes de uso compartido",
"Common.Views.ExternalDiagramEditor.textTitle": "Editor de gráfico", "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.ExternalMergeEditor.textTitle": "Receptores de Fusión de Correo",
"Common.Views.ExternalOleEditor.textTitle": "Editor de hojas de cálculo", "Common.Views.ExternalOleEditor.textTitle": "Editor de hojas de cálculo",
"Common.Views.Header.labelCoUsersDescr": "Usuarios que están editando el archivo:", "Common.Views.Header.labelCoUsersDescr": "Usuarios que están editando el archivo:",
@ -354,6 +515,7 @@
"Common.Views.Plugins.textStart": "Iniciar", "Common.Views.Plugins.textStart": "Iniciar",
"Common.Views.Plugins.textStop": "Detener", "Common.Views.Plugins.textStop": "Detener",
"Common.Views.Protection.hintAddPwd": "Encriptar con contraseña", "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.hintPwd": "Cambie o elimine la contraseña",
"Common.Views.Protection.hintSignature": "Agregar firma digital o línea de firma", "Common.Views.Protection.hintSignature": "Agregar firma digital o línea de firma",
"Common.Views.Protection.txtAddPwd": "Agregar contraseña", "Common.Views.Protection.txtAddPwd": "Agregar contraseña",
@ -499,6 +661,7 @@
"Common.Views.SignDialog.tipFontName": "Nombre del tipo de letra", "Common.Views.SignDialog.tipFontName": "Nombre del tipo de letra",
"Common.Views.SignDialog.tipFontSize": "Tamaño 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.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.textInfoEmail": "E-mail",
"Common.Views.SignSettingsDialog.textInfoName": "Nombre", "Common.Views.SignSettingsDialog.textInfoName": "Nombre",
"Common.Views.SignSettingsDialog.textInfoTitle": "Título de quien firma", "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.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.applyChangesTextText": "Cargando cambios...",
"DE.Controllers.Main.applyChangesTitleText": "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.<br>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.convertationTimeoutText": "Tiempo de conversión está superado.",
"DE.Controllers.Main.criticalErrorExtText": "Pulse \"OK\" para regresar al documento.", "DE.Controllers.Main.criticalErrorExtText": "Pulse \"OK\" para regresar al documento.",
"DE.Controllers.Main.criticalErrorTitle": "Error", "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.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.<br>Por favor, póngase en contacto con el administrador del Servidor de Documentos para obtener más detalles.", "DE.Controllers.Main.errorFileSizeExceed": "El tamaño del archivo excede la limitación establecida para su servidor.<br>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.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.<br>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.<br>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.<br>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.<br>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.<br>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.errorKeyEncrypt": "Descriptor de clave desconocido",
"DE.Controllers.Main.errorKeyExpire": "Descriptor de clave ha expirado", "DE.Controllers.Main.errorKeyExpire": "Descriptor de clave ha expirado",
"DE.Controllers.Main.errorLoadingFont": "Las fuentes no están cargadas.<br>Por favor, póngase en contacto con el administrador del Document Server.", "DE.Controllers.Main.errorLoadingFont": "Las fuentes no están cargadas.<br>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.errorMailMergeLoadFile": "La carga del documento ha fallado. Por favor, seleccione un archivo diferente.",
"DE.Controllers.Main.errorMailMergeSaveFile": "Error de fusión.", "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.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.<br>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.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.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.", "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.textClose": "Cerrar",
"DE.Controllers.Main.textCloseTip": "Pulse para cerrar el consejo", "DE.Controllers.Main.textCloseTip": "Pulse para cerrar el consejo",
"DE.Controllers.Main.textContactUs": "Contactar con equipo de ventas", "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.<br>¿Convertir ahora?", "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.<br>¿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.<br>Por favor, póngase en contacto con nuestro Departamento de Ventas para obtener una cotización.", "DE.Controllers.Main.textCustomLoader": "Note, por favor, que según los términos de la licencia Usted no tiene derecho a cambiar el cargador.<br>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", "DE.Controllers.Main.textDisconnect": "Se ha perdido la conexión",
@ -660,6 +831,7 @@
"DE.Controllers.Main.textStrict": "Modo estricto", "DE.Controllers.Main.textStrict": "Modo estricto",
"DE.Controllers.Main.textTryUndoRedo": "Las funciones Anular/Rehacer se desactivan para el modo co-edición rápido.<br>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.textTryUndoRedo": "Las funciones Anular/Rehacer se desactivan para el modo co-edición rápido.<br>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.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.titleLicenseExp": "Licencia ha expirado",
"DE.Controllers.Main.titleServerVersion": "Editor ha sido actualizado", "DE.Controllers.Main.titleServerVersion": "Editor ha sido actualizado",
"DE.Controllers.Main.titleUpdateVersion": "Versión ha cambiado", "DE.Controllers.Main.titleUpdateVersion": "Versión ha cambiado",
@ -992,12 +1164,12 @@
"DE.Controllers.Toolbar.txtAccent_Smile": "Acento breve", "DE.Controllers.Toolbar.txtAccent_Smile": "Acento breve",
"DE.Controllers.Toolbar.txtAccent_Tilde": "Tilde", "DE.Controllers.Toolbar.txtAccent_Tilde": "Tilde",
"DE.Controllers.Toolbar.txtBracket_Angle": "Paréntesis", "DE.Controllers.Toolbar.txtBracket_Angle": "Paréntesis",
"DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Paréntesis con separadores", "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Corchetes con separadores",
"DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Paréntesis 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_NoneOpen": "Corchete único",
"DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Corchete único", "DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Corchete único",
"DE.Controllers.Toolbar.txtBracket_Curve": "Paréntesis", "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_NoneOpen": "Corchete único",
"DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Corchete único", "DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Corchete único",
"DE.Controllers.Toolbar.txtBracket_Custom_1": "Casos (dos condiciones)", "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_NoneNone": "Corchete único",
"DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Corchete único", "DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Corchete único",
"DE.Controllers.Toolbar.txtBracket_Round": "Paréntesis", "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_NoneOpen": "Corchete único",
"DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Corchete único", "DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Corchete único",
"DE.Controllers.Toolbar.txtBracket_Square": "Paréntesis", "DE.Controllers.Toolbar.txtBracket_Square": "Paréntesis",
@ -1327,18 +1499,33 @@
"DE.Views.CellsAddDialog.textLeft": "A la izquierda", "DE.Views.CellsAddDialog.textLeft": "A la izquierda",
"DE.Views.CellsAddDialog.textRight": "A la derecha", "DE.Views.CellsAddDialog.textRight": "A la derecha",
"DE.Views.CellsAddDialog.textRow": "Filas", "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.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.textAdvanced": "Mostrar ajustes avanzados",
"DE.Views.ChartSettings.textAutoscale": "Escalado automático",
"DE.Views.ChartSettings.textChartType": "Cambiar tipo de gráfico", "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.textEditData": "Editar datos",
"DE.Views.ChartSettings.textHeight": "Altura", "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.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.textSize": "Tamaño",
"DE.Views.ChartSettings.textStyle": "Estilo", "DE.Views.ChartSettings.textStyle": "Estilo",
"DE.Views.ChartSettings.textUndock": "Desacoplar de panel", "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.textWidth": "Ancho",
"DE.Views.ChartSettings.textWrap": "Ajuste de texto", "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.txtBehind": "Detrás del texto",
"DE.Views.ChartSettings.txtInFront": "Delante del texto", "DE.Views.ChartSettings.txtInFront": "Delante del texto",
"DE.Views.ChartSettings.txtInline": "En línea con el texto", "DE.Views.ChartSettings.txtInline": "En línea con el texto",
@ -1428,14 +1615,24 @@
"DE.Views.DateTimeDialog.textLang": "Idioma", "DE.Views.DateTimeDialog.textLang": "Idioma",
"DE.Views.DateTimeDialog.textUpdate": "Actualizar automáticamente", "DE.Views.DateTimeDialog.textUpdate": "Actualizar automáticamente",
"DE.Views.DateTimeDialog.txtTitle": "Fecha y hora", "DE.Views.DateTimeDialog.txtTitle": "Fecha y hora",
"DE.Views.DocProtection.hintProtectDoc": "Proteger documento",
"DE.Views.DocProtection.txtDocProtectedComment": "El documento está protegido.<br>Sólo puede insertar comentarios en este documento.",
"DE.Views.DocProtection.txtDocProtectedForms": "El documento está protegido.<br>Sólo puede rellenar los formularios de este documento.",
"DE.Views.DocProtection.txtDocProtectedTrack": "El documento está protegido.<br> Puede editar este documento, pero todos los cambios serán revisados.",
"DE.Views.DocProtection.txtDocProtectedView": "El documento está protegido.<br>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.aboveText": "Encima",
"DE.Views.DocumentHolder.addCommentText": "Agregar comentario", "DE.Views.DocumentHolder.addCommentText": "Agregar comentario",
"DE.Views.DocumentHolder.advancedDropCapText": "Configuración de Capitalización", "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.advancedFrameText": "Ajustes avanzados de marco",
"DE.Views.DocumentHolder.advancedParagraphText": "Ajustes avanzados de párrafo", "DE.Views.DocumentHolder.advancedParagraphText": "Ajustes avanzados de párrafo",
"DE.Views.DocumentHolder.advancedTableText": "Ajustes avanzados de tabla", "DE.Views.DocumentHolder.advancedTableText": "Ajustes avanzados de tabla",
"DE.Views.DocumentHolder.advancedText": "Configuración avanzada", "DE.Views.DocumentHolder.advancedText": "Configuración avanzada",
"DE.Views.DocumentHolder.alignmentText": "Alineación", "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.belowText": "Abajo",
"DE.Views.DocumentHolder.breakBeforeText": "Salto de página antes", "DE.Views.DocumentHolder.breakBeforeText": "Salto de página antes",
"DE.Views.DocumentHolder.bulletsText": "Viñetas y numeración", "DE.Views.DocumentHolder.bulletsText": "Viñetas y numeración",
@ -1444,6 +1641,8 @@
"DE.Views.DocumentHolder.centerText": "Al centro", "DE.Views.DocumentHolder.centerText": "Al centro",
"DE.Views.DocumentHolder.chartText": "Ajustes avanzados de gráfico", "DE.Views.DocumentHolder.chartText": "Ajustes avanzados de gráfico",
"DE.Views.DocumentHolder.columnText": "Columna", "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.deleteColumnText": "Borrar columna",
"DE.Views.DocumentHolder.deleteRowText": "Borrar fila", "DE.Views.DocumentHolder.deleteRowText": "Borrar fila",
"DE.Views.DocumentHolder.deleteTableText": "Borrar tabla", "DE.Views.DocumentHolder.deleteTableText": "Borrar tabla",
@ -1456,6 +1655,7 @@
"DE.Views.DocumentHolder.editFooterText": "Editar pie de página", "DE.Views.DocumentHolder.editFooterText": "Editar pie de página",
"DE.Views.DocumentHolder.editHeaderText": "Editar encabezado", "DE.Views.DocumentHolder.editHeaderText": "Editar encabezado",
"DE.Views.DocumentHolder.editHyperlinkText": "Editar hiperenlace", "DE.Views.DocumentHolder.editHyperlinkText": "Editar hiperenlace",
"DE.Views.DocumentHolder.eqToInlineText": "Cambiar a En línea",
"DE.Views.DocumentHolder.guestText": "Visitante", "DE.Views.DocumentHolder.guestText": "Visitante",
"DE.Views.DocumentHolder.hyperlinkText": "Hiperenlace", "DE.Views.DocumentHolder.hyperlinkText": "Hiperenlace",
"DE.Views.DocumentHolder.ignoreAllSpellText": "Ignorar todo", "DE.Views.DocumentHolder.ignoreAllSpellText": "Ignorar todo",
@ -1470,6 +1670,7 @@
"DE.Views.DocumentHolder.insertText": "Insertar", "DE.Views.DocumentHolder.insertText": "Insertar",
"DE.Views.DocumentHolder.keepLinesText": "Mantener líneas juntas", "DE.Views.DocumentHolder.keepLinesText": "Mantener líneas juntas",
"DE.Views.DocumentHolder.langText": "Seleccionar idioma", "DE.Views.DocumentHolder.langText": "Seleccionar idioma",
"DE.Views.DocumentHolder.latexText": "LaTeX",
"DE.Views.DocumentHolder.leftText": "Izquierdo", "DE.Views.DocumentHolder.leftText": "Izquierdo",
"DE.Views.DocumentHolder.loadSpellText": "Cargando variantes", "DE.Views.DocumentHolder.loadSpellText": "Cargando variantes",
"DE.Views.DocumentHolder.mergeCellsText": "Unir celdas", "DE.Views.DocumentHolder.mergeCellsText": "Unir celdas",
@ -1657,6 +1858,7 @@
"DE.Views.DocumentHolder.txtUnderbar": "Barra debajo de texto", "DE.Views.DocumentHolder.txtUnderbar": "Barra debajo de texto",
"DE.Views.DocumentHolder.txtUngroup": "Desagrupar", "DE.Views.DocumentHolder.txtUngroup": "Desagrupar",
"DE.Views.DocumentHolder.txtWarnUrl": "Hacer clic en este enlace puede ser perjudicial para su dispositivo y sus datos.<br>¿Está seguro de que quiere continuar?", "DE.Views.DocumentHolder.txtWarnUrl": "Hacer clic en este enlace puede ser perjudicial para su dispositivo y sus datos.<br>¿Está seguro de que quiere continuar?",
"DE.Views.DocumentHolder.unicodeText": "Unicode",
"DE.Views.DocumentHolder.updateStyleText": "Actualizar estilo %1", "DE.Views.DocumentHolder.updateStyleText": "Actualizar estilo %1",
"DE.Views.DocumentHolder.vertAlignText": "Alineación vertical", "DE.Views.DocumentHolder.vertAlignText": "Alineación vertical",
"DE.Views.DropcapSettingsAdvanced.strBorders": "Bordes y relleno", "DE.Views.DropcapSettingsAdvanced.strBorders": "Bordes y relleno",
@ -1693,8 +1895,8 @@
"DE.Views.DropcapSettingsAdvanced.textRelative": "En relación a", "DE.Views.DropcapSettingsAdvanced.textRelative": "En relación a",
"DE.Views.DropcapSettingsAdvanced.textRight": "Derecho", "DE.Views.DropcapSettingsAdvanced.textRight": "Derecho",
"DE.Views.DropcapSettingsAdvanced.textRowHeight": "Altura en filas", "DE.Views.DropcapSettingsAdvanced.textRowHeight": "Altura en filas",
"DE.Views.DropcapSettingsAdvanced.textTitle": "Letra capital - ajustes avanzados", "DE.Views.DropcapSettingsAdvanced.textTitle": "Letra capital - Ajustes avanzados",
"DE.Views.DropcapSettingsAdvanced.textTitleFrame": "Marco-ajustes avanzados", "DE.Views.DropcapSettingsAdvanced.textTitleFrame": "Marco - Ajustes avanzados",
"DE.Views.DropcapSettingsAdvanced.textTop": "Superior", "DE.Views.DropcapSettingsAdvanced.textTop": "Superior",
"DE.Views.DropcapSettingsAdvanced.textVertical": "Vertical", "DE.Views.DropcapSettingsAdvanced.textVertical": "Vertical",
"DE.Views.DropcapSettingsAdvanced.textWidth": "Ancho", "DE.Views.DropcapSettingsAdvanced.textWidth": "Ancho",
@ -1753,6 +1955,7 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Estadísticas", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Estadísticas",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Asunto", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Asunto",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Símbolos", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Símbolos",
"DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Etiquetas",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Subido", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Subido",
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Palabras", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Palabras",
@ -1945,7 +2148,7 @@
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Mostrar", "DE.Views.HyperlinkSettingsDialog.textDisplay": "Mostrar",
"DE.Views.HyperlinkSettingsDialog.textExternal": "Enlace externo", "DE.Views.HyperlinkSettingsDialog.textExternal": "Enlace externo",
"DE.Views.HyperlinkSettingsDialog.textInternal": "Lugar en documento", "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.textTooltip": "Información en pantalla",
"DE.Views.HyperlinkSettingsDialog.textUrl": "Enlace a", "DE.Views.HyperlinkSettingsDialog.textUrl": "Enlace a",
"DE.Views.HyperlinkSettingsDialog.txtBeginning": "Principio del documento", "DE.Views.HyperlinkSettingsDialog.txtBeginning": "Principio del documento",
@ -2008,7 +2211,7 @@
"DE.Views.ImageSettingsAdvanced.textCenter": "Al centro", "DE.Views.ImageSettingsAdvanced.textCenter": "Al centro",
"DE.Views.ImageSettingsAdvanced.textCharacter": "Carácter", "DE.Views.ImageSettingsAdvanced.textCharacter": "Carácter",
"DE.Views.ImageSettingsAdvanced.textColumn": "Columna", "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.textEndSize": "Tamaño final",
"DE.Views.ImageSettingsAdvanced.textEndStyle": "Estilo final", "DE.Views.ImageSettingsAdvanced.textEndStyle": "Estilo final",
"DE.Views.ImageSettingsAdvanced.textFlat": "Plano", "DE.Views.ImageSettingsAdvanced.textFlat": "Plano",
@ -2066,6 +2269,7 @@
"DE.Views.LeftMenu.tipComments": "Comentarios", "DE.Views.LeftMenu.tipComments": "Comentarios",
"DE.Views.LeftMenu.tipNavigation": "Navegación", "DE.Views.LeftMenu.tipNavigation": "Navegación",
"DE.Views.LeftMenu.tipOutline": "Títulos", "DE.Views.LeftMenu.tipOutline": "Títulos",
"DE.Views.LeftMenu.tipPageThumbnails": "Miniaturas de página",
"DE.Views.LeftMenu.tipPlugins": "Plugins", "DE.Views.LeftMenu.tipPlugins": "Plugins",
"DE.Views.LeftMenu.tipSearch": "Búsqueda", "DE.Views.LeftMenu.tipSearch": "Búsqueda",
"DE.Views.LeftMenu.tipSupport": "Feedback y Soporte", "DE.Views.LeftMenu.tipSupport": "Feedback y Soporte",
@ -2087,7 +2291,7 @@
"DE.Views.LineNumbersDialog.textRestartEachSection": "Reiniciar cada sección", "DE.Views.LineNumbersDialog.textRestartEachSection": "Reiniciar cada sección",
"DE.Views.LineNumbersDialog.textSection": "Sección actual", "DE.Views.LineNumbersDialog.textSection": "Sección actual",
"DE.Views.LineNumbersDialog.textStartAt": "Empezar en", "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.LineNumbersDialog.txtAutoText": "Auto",
"DE.Views.Links.capBtnAddText": "Agregar texto", "DE.Views.Links.capBtnAddText": "Agregar texto",
"DE.Views.Links.capBtnBookmarks": "Marcador", "DE.Views.Links.capBtnBookmarks": "Marcador",
@ -2136,13 +2340,13 @@
"DE.Views.ListSettingsDialog.txtAlign": "Alineación", "DE.Views.ListSettingsDialog.txtAlign": "Alineación",
"DE.Views.ListSettingsDialog.txtBullet": "Viñeta", "DE.Views.ListSettingsDialog.txtBullet": "Viñeta",
"DE.Views.ListSettingsDialog.txtColor": "Color", "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.txtLikeText": "Como un texto",
"DE.Views.ListSettingsDialog.txtNewBullet": "Nueva viñeta", "DE.Views.ListSettingsDialog.txtNewBullet": "Nueva viñeta",
"DE.Views.ListSettingsDialog.txtNone": "Ninguno", "DE.Views.ListSettingsDialog.txtNone": "Ninguno",
"DE.Views.ListSettingsDialog.txtSize": "Tamaño", "DE.Views.ListSettingsDialog.txtSize": "Tamaño",
"DE.Views.ListSettingsDialog.txtSymbol": "Símbolo", "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.ListSettingsDialog.txtType": "Tipo",
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
"DE.Views.MailMergeEmailDlg.okButtonText": "Enviar", "DE.Views.MailMergeEmailDlg.okButtonText": "Enviar",
@ -2214,7 +2418,7 @@
"DE.Views.NoteSettingsDialog.textApply": "Aplicar", "DE.Views.NoteSettingsDialog.textApply": "Aplicar",
"DE.Views.NoteSettingsDialog.textApplyTo": "Aplicar cambios a", "DE.Views.NoteSettingsDialog.textApplyTo": "Aplicar cambios a",
"DE.Views.NoteSettingsDialog.textContinue": "Continua", "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.textDocEnd": "Final del documento",
"DE.Views.NoteSettingsDialog.textDocument": "Todo el documento", "DE.Views.NoteSettingsDialog.textDocument": "Todo el documento",
"DE.Views.NoteSettingsDialog.textEachPage": "Reiniciar cada página", "DE.Views.NoteSettingsDialog.textEachPage": "Reiniciar cada página",
@ -2231,10 +2435,10 @@
"DE.Views.NoteSettingsDialog.textSection": "Sección actual", "DE.Views.NoteSettingsDialog.textSection": "Sección actual",
"DE.Views.NoteSettingsDialog.textStart": "Empezar con", "DE.Views.NoteSettingsDialog.textStart": "Empezar con",
"DE.Views.NoteSettingsDialog.textTextBottom": "Bajo el texto", "DE.Views.NoteSettingsDialog.textTextBottom": "Bajo el texto",
"DE.Views.NoteSettingsDialog.textTitle": "Ajustes de las notas a pie de página", "DE.Views.NoteSettingsDialog.textTitle": "Ajustes de notas",
"DE.Views.NotesRemoveDialog.textEnd": "Eliminar Todas las Notas al Final", "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.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.notcriticalErrorTitle": "Aviso",
"DE.Views.PageMarginsDialog.textBottom": "Inferior", "DE.Views.PageMarginsDialog.textBottom": "Inferior",
"DE.Views.PageMarginsDialog.textGutter": "Reliure", "DE.Views.PageMarginsDialog.textGutter": "Reliure",
@ -2302,7 +2506,7 @@
"DE.Views.ParagraphSettingsAdvanced.strOrphan": "Control de líneas huérfanas", "DE.Views.ParagraphSettingsAdvanced.strOrphan": "Control de líneas huérfanas",
"DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Letra ", "DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Letra ",
"DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Sangría y espaciado", "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.strParagraphPosition": "Ubicación",
"DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Mayúsculas pequeñas", "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Mayúsculas pequeñas",
"DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "No agregue intervalos entre párrafos del mismo estilo", "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.textAtLeast": "Por lo menos",
"DE.Views.ParagraphSettingsAdvanced.textAuto": "Múltiple", "DE.Views.ParagraphSettingsAdvanced.textAuto": "Múltiple",
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Color de fondo", "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.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.textBorderDesc": "Haga clic en diagrama o use botones para seleccionar bordes y aplicar el estilo seleccionado",
"DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Tamaño de borde", "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Tamaño de borde",
@ -2325,17 +2529,17 @@
"DE.Views.ParagraphSettingsAdvanced.textCentered": "Centrado", "DE.Views.ParagraphSettingsAdvanced.textCentered": "Centrado",
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espaciado entre caracteres", "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espaciado entre caracteres",
"DE.Views.ParagraphSettingsAdvanced.textContext": "Contexto", "DE.Views.ParagraphSettingsAdvanced.textContext": "Contexto",
"DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Contexto y discrecionalidad", "DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Contextuales y discrecionales",
"DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Contexto, histórico y discrecionalidad", "DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Contextuales, históricas y discrecionales",
"DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Contexto e histórico", "DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Contextuales e históricas",
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Tabulador Predeterminado", "DE.Views.ParagraphSettingsAdvanced.textDefault": "Pestaña predeterminada",
"DE.Views.ParagraphSettingsAdvanced.textDiscret": "Discrecionalidad", "DE.Views.ParagraphSettingsAdvanced.textDiscret": "Discrecionalidad",
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Efectos", "DE.Views.ParagraphSettingsAdvanced.textEffects": "Efectos",
"DE.Views.ParagraphSettingsAdvanced.textExact": "Exactamente", "DE.Views.ParagraphSettingsAdvanced.textExact": "Exactamente",
"DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Primera linea", "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Primera linea",
"DE.Views.ParagraphSettingsAdvanced.textHanging": "Suspendido", "DE.Views.ParagraphSettingsAdvanced.textHanging": "Suspendido",
"DE.Views.ParagraphSettingsAdvanced.textHistorical": "Histórico", "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.textJustified": "Justificado",
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Director", "DE.Views.ParagraphSettingsAdvanced.textLeader": "Director",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Izquierdo", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Izquierdo",
@ -2343,7 +2547,7 @@
"DE.Views.ParagraphSettingsAdvanced.textLigatures": "Ligaduras", "DE.Views.ParagraphSettingsAdvanced.textLigatures": "Ligaduras",
"DE.Views.ParagraphSettingsAdvanced.textNone": "Ninguno", "DE.Views.ParagraphSettingsAdvanced.textNone": "Ninguno",
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(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.textPosition": "Posición",
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Eliminar", "DE.Views.ParagraphSettingsAdvanced.textRemove": "Eliminar",
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Eliminar todo", "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Eliminar todo",
@ -2373,6 +2577,18 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Fijar sólo borde superior", "DE.Views.ParagraphSettingsAdvanced.tipTop": "Fijar sólo borde superior",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Sin bordes", "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.txtChartSettings": "Ajustes de gráfico",
"DE.Views.RightMenu.txtFormSettings": "Ajustes de formulario", "DE.Views.RightMenu.txtFormSettings": "Ajustes de formulario",
"DE.Views.RightMenu.txtHeaderFooterSettings": "Ajustes de encabezado y pie de página", "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.TableFormulaDialog.textTitle": "Ajustes de fórmula",
"DE.Views.TableOfContentsSettings.strAlign": "Alinee los números de página a la derecha", "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.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.strLinksOF": "Formatear tabla de ilustraciones como enlaces",
"DE.Views.TableOfContentsSettings.strShowPages": "Mostrar números de página", "DE.Views.TableOfContentsSettings.strShowPages": "Mostrar números de página",
"DE.Views.TableOfContentsSettings.textBuildTable": "Crear tabla de contenidos desde", "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.tipOuter": "Fijar sólo borde exterior",
"DE.Views.TableSettings.tipRight": "Fijar sólo borde exterior derecho", "DE.Views.TableSettings.tipRight": "Fijar sólo borde exterior derecho",
"DE.Views.TableSettings.tipTop": "Fijar sólo borde exterior superior", "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.txtNoBorders": "Sin bordes",
"DE.Views.TableSettings.txtTable_Accent": "Acento", "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_Colorful": "Colorido",
"DE.Views.TableSettings.txtTable_Dark": "Oscuro", "DE.Views.TableSettings.txtTable_Dark": "Oscuro",
"DE.Views.TableSettings.txtTable_GridTable": "Tabla de rejilla", "DE.Views.TableSettings.txtTable_GridTable": "Tabla de rejilla",
"DE.Views.TableSettings.txtTable_Light": "Claro", "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_ListTable": "Tabla de lista",
"DE.Views.TableSettings.txtTable_PlainTable": "Tabla normal", "DE.Views.TableSettings.txtTable_PlainTable": "Tabla normal",
"DE.Views.TableSettings.txtTable_TableGrid": "Cuadrícula de tabla", "DE.Views.TableSettings.txtTable_TableGrid": "Cuadrícula de tabla",
@ -2590,12 +2814,12 @@
"DE.Views.TableSettingsAdvanced.textBottom": "Inferior", "DE.Views.TableSettingsAdvanced.textBottom": "Inferior",
"DE.Views.TableSettingsAdvanced.textCellOptions": "Opciones de celda", "DE.Views.TableSettingsAdvanced.textCellOptions": "Opciones de celda",
"DE.Views.TableSettingsAdvanced.textCellProps": "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.textCenter": "Al centro",
"DE.Views.TableSettingsAdvanced.textCenterTooltip": "Al centro", "DE.Views.TableSettingsAdvanced.textCenterTooltip": "Al centro",
"DE.Views.TableSettingsAdvanced.textCheckMargins": "Usar márgenes predeterminados", "DE.Views.TableSettingsAdvanced.textCheckMargins": "Usar márgenes predeterminados",
"DE.Views.TableSettingsAdvanced.textDefaultMargins": "Márgenes de celda 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.textHorizontal": "Horizontal ",
"DE.Views.TableSettingsAdvanced.textIndLeft": "Sangría a la izquierda", "DE.Views.TableSettingsAdvanced.textIndLeft": "Sangría a la izquierda",
"DE.Views.TableSettingsAdvanced.textLeft": "Izquierdo", "DE.Views.TableSettingsAdvanced.textLeft": "Izquierdo",
@ -2703,9 +2927,10 @@
"DE.Views.Toolbar.capBtnInsImage": "Imagen", "DE.Views.Toolbar.capBtnInsImage": "Imagen",
"DE.Views.Toolbar.capBtnInsPagebreak": "Cambios de línea", "DE.Views.Toolbar.capBtnInsPagebreak": "Cambios de línea",
"DE.Views.Toolbar.capBtnInsShape": "Forma", "DE.Views.Toolbar.capBtnInsShape": "Forma",
"DE.Views.Toolbar.capBtnInsSmartArt": "SmartArt",
"DE.Views.Toolbar.capBtnInsSymbol": "Símbolo", "DE.Views.Toolbar.capBtnInsSymbol": "Símbolo",
"DE.Views.Toolbar.capBtnInsTable": "Tabla", "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.capBtnInsTextbox": "Cuadro de Texto",
"DE.Views.Toolbar.capBtnLineNumbers": "Numeración de Líneas", "DE.Views.Toolbar.capBtnLineNumbers": "Numeración de Líneas",
"DE.Views.Toolbar.capBtnMargins": "Márgenes", "DE.Views.Toolbar.capBtnMargins": "Márgenes",
@ -2849,13 +3074,16 @@
"DE.Views.Toolbar.tipIncPrLeft": "Aumentar sangría", "DE.Views.Toolbar.tipIncPrLeft": "Aumentar sangría",
"DE.Views.Toolbar.tipInsertChart": "Insertar gráfico", "DE.Views.Toolbar.tipInsertChart": "Insertar gráfico",
"DE.Views.Toolbar.tipInsertEquation": "Insertar ecuación", "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.tipInsertImage": "Insertar imagen",
"DE.Views.Toolbar.tipInsertNum": "Insertar número de página", "DE.Views.Toolbar.tipInsertNum": "Insertar número de página",
"DE.Views.Toolbar.tipInsertShape": "Insertar autoforma", "DE.Views.Toolbar.tipInsertShape": "Insertar autoforma",
"DE.Views.Toolbar.tipInsertSmartArt": "Insertar SmartArt",
"DE.Views.Toolbar.tipInsertSymbol": "Insertar Symboló", "DE.Views.Toolbar.tipInsertSymbol": "Insertar Symboló",
"DE.Views.Toolbar.tipInsertTable": "Insertar tabla", "DE.Views.Toolbar.tipInsertTable": "Insertar tabla",
"DE.Views.Toolbar.tipInsertText": "Insertar cuadro de texto", "DE.Views.Toolbar.tipInsertText": "Insertar cuadro de texto",
"DE.Views.Toolbar.tipInsertTextArt": "Insertar Galería 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.tipLineNumbers": "Mostrar números de línea",
"DE.Views.Toolbar.tipLineSpace": "Espaciado de línea de párrafo", "DE.Views.Toolbar.tipLineSpace": "Espaciado de línea de párrafo",
"DE.Views.Toolbar.tipMailRecepients": "Combinación de Correspondencia", "DE.Views.Toolbar.tipMailRecepients": "Combinación de Correspondencia",
@ -2926,9 +3154,11 @@
"DE.Views.ViewTab.textDarkDocument": "Documento oscuro", "DE.Views.ViewTab.textDarkDocument": "Documento oscuro",
"DE.Views.ViewTab.textFitToPage": "Ajustar a la página", "DE.Views.ViewTab.textFitToPage": "Ajustar a la página",
"DE.Views.ViewTab.textFitToWidth": "Ajustar al ancho", "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.textNavigation": "Navegación",
"DE.Views.ViewTab.textOutline": "Títulos", "DE.Views.ViewTab.textOutline": "Títulos",
"DE.Views.ViewTab.textRightMenu": "Panel derecho",
"DE.Views.ViewTab.textRulers": "Reglas", "DE.Views.ViewTab.textRulers": "Reglas",
"DE.Views.ViewTab.textStatusBar": "Barra de estado", "DE.Views.ViewTab.textStatusBar": "Barra de estado",
"DE.Views.ViewTab.textZoom": "Zoom", "DE.Views.ViewTab.textZoom": "Zoom",
@ -2942,7 +3172,7 @@
"DE.Views.WatermarkSettingsDialog.textColor": "Color de texto", "DE.Views.WatermarkSettingsDialog.textColor": "Color de texto",
"DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonal", "DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonal",
"DE.Views.WatermarkSettingsDialog.textFont": "Fuente", "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.textFromStorage": "Desde almacenamiento",
"DE.Views.WatermarkSettingsDialog.textFromUrl": "De URL", "DE.Views.WatermarkSettingsDialog.textFromUrl": "De URL",
"DE.Views.WatermarkSettingsDialog.textHor": "Horizontal ", "DE.Views.WatermarkSettingsDialog.textHor": "Horizontal ",
@ -2959,6 +3189,6 @@
"DE.Views.WatermarkSettingsDialog.textTitle": "Ajustes de Marca de agua", "DE.Views.WatermarkSettingsDialog.textTitle": "Ajustes de Marca de agua",
"DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparente", "DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparente",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Subrayado", "DE.Views.WatermarkSettingsDialog.textUnderline": "Subrayado",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Nombre de fuente", "DE.Views.WatermarkSettingsDialog.tipFontName": "Nombre del tipo de letra",
"DE.Views.WatermarkSettingsDialog.tipFontSize": "Tamaño de fuente" "DE.Views.WatermarkSettingsDialog.tipFontSize": "Tamaño del tipo de letra"
} }

View file

@ -399,7 +399,7 @@
"Common.Views.AutoCorrectDialog.textRecognized": "Fonctions reconnues", "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.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.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.textReplaceType": "Remplacer le texte au cours de la frappe",
"Common.Views.AutoCorrectDialog.textReset": "Réinitialiser", "Common.Views.AutoCorrectDialog.textReset": "Réinitialiser",
"Common.Views.AutoCorrectDialog.textResetAll": "Rétablir paramètres par défaut", "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.Comments.txtEmpty": "Il n'y a pas de commentaires dans le document.",
"Common.Views.CopyWarningDialog.textDontShow": "Ne plus afficher ce message", "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.<br><br>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.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.<br><br>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.textToCopy": "pour Copier",
"Common.Views.CopyWarningDialog.textToCut": "pour Couper", "Common.Views.CopyWarningDialog.textToCut": "pour Couper",
"Common.Views.CopyWarningDialog.textToPaste": "pour Coller", "Common.Views.CopyWarningDialog.textToPaste": "pour Coller",
@ -492,7 +492,7 @@
"Common.Views.InsertTableDialog.txtTitle": "Taille du tableau", "Common.Views.InsertTableDialog.txtTitle": "Taille du tableau",
"Common.Views.InsertTableDialog.txtTitleSplit": "Fractionner la cellule", "Common.Views.InsertTableDialog.txtTitleSplit": "Fractionner la cellule",
"Common.Views.LanguageDialog.labelSelect": "Sélectionner la langue du document", "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.txtEncoding": "Codage ",
"Common.Views.OpenDialog.txtIncorrectPwd": "Le mot de passe est incorrect.", "Common.Views.OpenDialog.txtIncorrectPwd": "Le mot de passe est incorrect.",
"Common.Views.OpenDialog.txtOpenFile": "Entrer le mot de passe pour ouvrir le fichier", "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.txtSpelling": "Vérification de l'orthographe",
"Common.Views.ReviewChanges.txtTurnon": "Suivi des modifications", "Common.Views.ReviewChanges.txtTurnon": "Suivi des modifications",
"Common.Views.ReviewChanges.txtView": "Mode d'affichage", "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.txtAccept": "Accepter",
"Common.Views.ReviewChangesDialog.txtAcceptAll": "Accepter toutes les modifications", "Common.Views.ReviewChangesDialog.txtAcceptAll": "Accepter toutes les modifications",
"Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Accepter la modification actuelle", "Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Accepter la modification actuelle",
"Common.Views.ReviewChangesDialog.txtNext": "À la modification suivante", "Common.Views.ReviewChangesDialog.txtNext": "À la modification suivante",
"Common.Views.ReviewChangesDialog.txtPrev": "À la modification précédente", "Common.Views.ReviewChangesDialog.txtPrev": "À la modification précédente",
"Common.Views.ReviewChangesDialog.txtReject": "Rejeter", "Common.Views.ReviewChangesDialog.txtReject": "Rejeter",
"Common.Views.ReviewChangesDialog.txtRejectAll": "Rejeter toutes les modifications", "Common.Views.ReviewChangesDialog.txtRejectAll": "Refuser toutes les modifications",
"Common.Views.ReviewChangesDialog.txtRejectCurrent": "Rejeter cette modification", "Common.Views.ReviewChangesDialog.txtRejectCurrent": "Refuser la modification actuelle",
"Common.Views.ReviewPopover.textAdd": "Ajouter", "Common.Views.ReviewPopover.textAdd": "Ajouter",
"Common.Views.ReviewPopover.textAddReply": "Ajouter une réponse", "Common.Views.ReviewPopover.textAddReply": "Ajouter une réponse",
"Common.Views.ReviewPopover.textCancel": "Annuler", "Common.Views.ReviewPopover.textCancel": "Annuler",
@ -644,7 +644,7 @@
"Common.Views.SearchPanel.tipNextResult": "Résultat suivant", "Common.Views.SearchPanel.tipNextResult": "Résultat suivant",
"Common.Views.SearchPanel.tipPreviousResult": "Résultat précédent", "Common.Views.SearchPanel.tipPreviousResult": "Résultat précédent",
"Common.Views.SelectFileDlg.textLoading": "Chargement", "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.textBold": "Gras",
"Common.Views.SignDialog.textCertificate": "Certificat", "Common.Views.SignDialog.textCertificate": "Certificat",
"Common.Views.SignDialog.textChange": "Modifier", "Common.Views.SignDialog.textChange": "Modifier",
@ -658,8 +658,8 @@
"Common.Views.SignDialog.textTitle": "Signer le document", "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.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.textValid": "Valide de %1 à %2",
"Common.Views.SignDialog.tipFontName": "Nom de la police", "Common.Views.SignDialog.tipFontName": "Nom de police",
"Common.Views.SignDialog.tipFontSize": "Taille de la 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.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.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.textInfoEmail": "E-mail du signataire suggéré",
@ -667,35 +667,35 @@
"Common.Views.SignSettingsDialog.textInfoTitle": "Titre du signataire suggéré", "Common.Views.SignSettingsDialog.textInfoTitle": "Titre du signataire suggéré",
"Common.Views.SignSettingsDialog.textInstructions": "Instructions pour les signataires", "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.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.SignSettingsDialog.txtEmpty": "Ce champ est obligatoire.",
"Common.Views.SymbolTableDialog.textCharacter": "Caractère", "Common.Views.SymbolTableDialog.textCharacter": "Caractère",
"Common.Views.SymbolTableDialog.textCode": "Valeur hexadécimale Unicode", "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.textDCQuote": "Guillemet double fermant",
"Common.Views.SymbolTableDialog.textDOQuote": "Ouvrir les guillemets", "Common.Views.SymbolTableDialog.textDOQuote": "Double guillemet ouvrant",
"Common.Views.SymbolTableDialog.textEllipsis": "Points de suspension", "Common.Views.SymbolTableDialog.textEllipsis": "Points de suspension",
"Common.Views.SymbolTableDialog.textEmDash": "Tiret cadratin", "Common.Views.SymbolTableDialog.textEmDash": "Tiret cadratin",
"Common.Views.SymbolTableDialog.textEmSpace": "Espace cadratin", "Common.Views.SymbolTableDialog.textEmSpace": "Espace cadratin",
"Common.Views.SymbolTableDialog.textEnDash": "Tiret demi-cadratin", "Common.Views.SymbolTableDialog.textEnDash": "Tiret demi-cadratin",
"Common.Views.SymbolTableDialog.textEnSpace": "Espace demi-cadratin", "Common.Views.SymbolTableDialog.textEnSpace": "Espace demi-cadratin",
"Common.Views.SymbolTableDialog.textFont": "Police", "Common.Views.SymbolTableDialog.textFont": "Police",
"Common.Views.SymbolTableDialog.textNBHyphen": "tiret insécable", "Common.Views.SymbolTableDialog.textNBHyphen": "Trait dunion insécable",
"Common.Views.SymbolTableDialog.textNBSpace": "Espace 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.textQEmSpace": "1/4 Espace cadratin",
"Common.Views.SymbolTableDialog.textRange": "Plage", "Common.Views.SymbolTableDialog.textRange": "Plage",
"Common.Views.SymbolTableDialog.textRecent": "Caractères spéciaux récemment utilisés", "Common.Views.SymbolTableDialog.textRecent": "Caractères spéciaux récemment utilisés",
"Common.Views.SymbolTableDialog.textRegistered": "Signe 'Registred'", "Common.Views.SymbolTableDialog.textRegistered": "Symbole de marque déposée",
"Common.Views.SymbolTableDialog.textSCQuote": "Fermer l'apostrophe", "Common.Views.SymbolTableDialog.textSCQuote": "Guillemet simple fermant",
"Common.Views.SymbolTableDialog.textSection": "Signe de Section ", "Common.Views.SymbolTableDialog.textSection": "Paragraphe",
"Common.Views.SymbolTableDialog.textShortcut": "Raccourcis clavier", "Common.Views.SymbolTableDialog.textShortcut": "Touche de raccourci",
"Common.Views.SymbolTableDialog.textSHyphen": "Trait d'union conditionnel", "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.textSpecial": "symboles spéciaux",
"Common.Views.SymbolTableDialog.textSymbols": "Symboles", "Common.Views.SymbolTableDialog.textSymbols": "Symboles",
"Common.Views.SymbolTableDialog.textTitle": "Symbole", "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.textDontShow": "Ne plus me demander à nouveau",
"Common.Views.UserNameDialog.textLabel": "Étiquette :", "Common.Views.UserNameDialog.textLabel": "Étiquette :",
"Common.Views.UserNameDialog.textLabelError": "Étiquette ne doit pas être vide", "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.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.<br>Veuillez contacter votre administrateur de Document Server pour obtenir plus d'information. ", "DE.Controllers.Main.errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.<br>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.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.<br>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.<br>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.<br>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.<br>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.<br>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.errorKeyEncrypt": "Descripteur de clés inconnu",
"DE.Controllers.Main.errorKeyExpire": "Descripteur de clés expiré", "DE.Controllers.Main.errorKeyExpire": "Descripteur de clés expiré",
"DE.Controllers.Main.errorLoadingFont": "Les polices ne sont pas téléchargées.<br>Veuillez contacter l'administrateur de Document Server.", "DE.Controllers.Main.errorLoadingFont": "Les polices ne sont pas téléchargées.<br>Veuillez contacter l'administrateur de Document Server.",
@ -1494,7 +1499,7 @@
"DE.Views.CellsAddDialog.textLeft": "Vers la gauche", "DE.Views.CellsAddDialog.textLeft": "Vers la gauche",
"DE.Views.CellsAddDialog.textRight": "Vers la droite", "DE.Views.CellsAddDialog.textRight": "Vers la droite",
"DE.Views.CellsAddDialog.textRow": "Lignes", "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.CellsAddDialog.textUp": "au-dessus du curseur",
"DE.Views.ChartSettings.text3dDepth": "Profondeur (% de la base)", "DE.Views.ChartSettings.text3dDepth": "Profondeur (% de la base)",
"DE.Views.ChartSettings.text3dHeight": "Hauteur (% de la base)", "DE.Views.ChartSettings.text3dHeight": "Hauteur (% de la base)",
@ -1863,7 +1868,7 @@
"DE.Views.DropcapSettingsAdvanced.textAtLeast": "Au moins ", "DE.Views.DropcapSettingsAdvanced.textAtLeast": "Au moins ",
"DE.Views.DropcapSettingsAdvanced.textAuto": "Auto", "DE.Views.DropcapSettingsAdvanced.textAuto": "Auto",
"DE.Views.DropcapSettingsAdvanced.textBackColor": "Couleur d'arrière-plan", "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.textBorderDesc": "Cliquez sur le diagramme ou utilisez les boutons pour sélectionner les bordures",
"DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Taille de bordure", "DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Taille de bordure",
"DE.Views.DropcapSettingsAdvanced.textBottom": "En bas", "DE.Views.DropcapSettingsAdvanced.textBottom": "En bas",
@ -2142,7 +2147,7 @@
"DE.Views.HyperlinkSettingsDialog.textDefault": "Fragment du texte sélectionné", "DE.Views.HyperlinkSettingsDialog.textDefault": "Fragment du texte sélectionné",
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Afficher", "DE.Views.HyperlinkSettingsDialog.textDisplay": "Afficher",
"DE.Views.HyperlinkSettingsDialog.textExternal": "Lien externe", "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.textTitle": "Paramètres du lien hypertexte",
"DE.Views.HyperlinkSettingsDialog.textTooltip": "Texte de l'info-bulle ", "DE.Views.HyperlinkSettingsDialog.textTooltip": "Texte de l'info-bulle ",
"DE.Views.HyperlinkSettingsDialog.textUrl": "Lien vers", "DE.Views.HyperlinkSettingsDialog.textUrl": "Lien vers",
@ -2184,7 +2189,7 @@
"DE.Views.ImageSettings.txtThrough": "Au travers", "DE.Views.ImageSettings.txtThrough": "Au travers",
"DE.Views.ImageSettings.txtTight": "Rapproché", "DE.Views.ImageSettings.txtTight": "Rapproché",
"DE.Views.ImageSettings.txtTopAndBottom": "Haut et bas", "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.textAbsoluteWH": "Absolue",
"DE.Views.ImageSettingsAdvanced.textAlignment": "Alignement", "DE.Views.ImageSettingsAdvanced.textAlignment": "Alignement",
"DE.Views.ImageSettingsAdvanced.textAlt": "Texte de remplacement", "DE.Views.ImageSettingsAdvanced.textAlt": "Texte de remplacement",
@ -2208,23 +2213,23 @@
"DE.Views.ImageSettingsAdvanced.textColumn": "Colonne", "DE.Views.ImageSettingsAdvanced.textColumn": "Colonne",
"DE.Views.ImageSettingsAdvanced.textDistance": "Distance du texte", "DE.Views.ImageSettingsAdvanced.textDistance": "Distance du texte",
"DE.Views.ImageSettingsAdvanced.textEndSize": "Taille de fin", "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.textFlat": "Plat",
"DE.Views.ImageSettingsAdvanced.textFlipped": "Retourné", "DE.Views.ImageSettingsAdvanced.textFlipped": "Retourné",
"DE.Views.ImageSettingsAdvanced.textHeight": "Hauteur", "DE.Views.ImageSettingsAdvanced.textHeight": "Hauteur",
"DE.Views.ImageSettingsAdvanced.textHorizontal": "Horizontal", "DE.Views.ImageSettingsAdvanced.textHorizontal": "Horizontal",
"DE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontalement", "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.textKeepRatio": "Proportions constantes",
"DE.Views.ImageSettingsAdvanced.textLeft": "À gauche", "DE.Views.ImageSettingsAdvanced.textLeft": "À gauche",
"DE.Views.ImageSettingsAdvanced.textLeftMargin": "Marge gauche", "DE.Views.ImageSettingsAdvanced.textLeftMargin": "Marge gauche",
"DE.Views.ImageSettingsAdvanced.textLine": "Ligne", "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.textMargin": "Marge",
"DE.Views.ImageSettingsAdvanced.textMiter": "Onglet", "DE.Views.ImageSettingsAdvanced.textMiter": "Onglet",
"DE.Views.ImageSettingsAdvanced.textMove": "Déplacer avec le texte", "DE.Views.ImageSettingsAdvanced.textMove": "Déplacer avec le texte",
"DE.Views.ImageSettingsAdvanced.textOptions": "Options", "DE.Views.ImageSettingsAdvanced.textOptions": "Options",
"DE.Views.ImageSettingsAdvanced.textOriginalSize": "Taille actuelle", "DE.Views.ImageSettingsAdvanced.textOriginalSize": "Taille elle",
"DE.Views.ImageSettingsAdvanced.textOverlap": "Autoriser le chevauchement", "DE.Views.ImageSettingsAdvanced.textOverlap": "Autoriser le chevauchement",
"DE.Views.ImageSettingsAdvanced.textPage": "Page", "DE.Views.ImageSettingsAdvanced.textPage": "Page",
"DE.Views.ImageSettingsAdvanced.textParagraph": "Paragraphe", "DE.Views.ImageSettingsAdvanced.textParagraph": "Paragraphe",
@ -2238,7 +2243,7 @@
"DE.Views.ImageSettingsAdvanced.textRightOf": "à droite de", "DE.Views.ImageSettingsAdvanced.textRightOf": "à droite de",
"DE.Views.ImageSettingsAdvanced.textRotation": "Rotation", "DE.Views.ImageSettingsAdvanced.textRotation": "Rotation",
"DE.Views.ImageSettingsAdvanced.textRound": "Arrondi", "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.textSize": "Taille",
"DE.Views.ImageSettingsAdvanced.textSquare": "Carré", "DE.Views.ImageSettingsAdvanced.textSquare": "Carré",
"DE.Views.ImageSettingsAdvanced.textTextBox": "Zone de texte", "DE.Views.ImageSettingsAdvanced.textTextBox": "Zone de texte",
@ -2282,11 +2287,11 @@
"DE.Views.LineNumbersDialog.textForward": "Ce point en avant", "DE.Views.LineNumbersDialog.textForward": "Ce point en avant",
"DE.Views.LineNumbersDialog.textFromText": "A partir du texte", "DE.Views.LineNumbersDialog.textFromText": "A partir du texte",
"DE.Views.LineNumbersDialog.textNumbering": "Numérotation", "DE.Views.LineNumbersDialog.textNumbering": "Numérotation",
"DE.Views.LineNumbersDialog.textRestartEachPage": "Restaurer chaque page", "DE.Views.LineNumbersDialog.textRestartEachPage": "Redémarrer à chaque page",
"DE.Views.LineNumbersDialog.textRestartEachSection": "Restaurer chaque section", "DE.Views.LineNumbersDialog.textRestartEachSection": "Redémarrer à chaque section",
"DE.Views.LineNumbersDialog.textSection": "Section active", "DE.Views.LineNumbersDialog.textSection": "Section active",
"DE.Views.LineNumbersDialog.textStartAt": "Commencer par", "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.LineNumbersDialog.txtAutoText": "Auto",
"DE.Views.Links.capBtnAddText": "Ajouter du texte", "DE.Views.Links.capBtnAddText": "Ajouter du texte",
"DE.Views.Links.capBtnBookmarks": "Signet", "DE.Views.Links.capBtnBookmarks": "Signet",
@ -2335,7 +2340,7 @@
"DE.Views.ListSettingsDialog.txtAlign": "Alignement", "DE.Views.ListSettingsDialog.txtAlign": "Alignement",
"DE.Views.ListSettingsDialog.txtBullet": "Puce", "DE.Views.ListSettingsDialog.txtBullet": "Puce",
"DE.Views.ListSettingsDialog.txtColor": "Couleur", "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.txtLikeText": "En tant que texte",
"DE.Views.ListSettingsDialog.txtNewBullet": "Nouvelle puce", "DE.Views.ListSettingsDialog.txtNewBullet": "Nouvelle puce",
"DE.Views.ListSettingsDialog.txtNone": "Rien", "DE.Views.ListSettingsDialog.txtNone": "Rien",
@ -2353,8 +2358,8 @@
"DE.Views.MailMergeEmailDlg.textFrom": "De", "DE.Views.MailMergeEmailDlg.textFrom": "De",
"DE.Views.MailMergeEmailDlg.textHTML": "HTML", "DE.Views.MailMergeEmailDlg.textHTML": "HTML",
"DE.Views.MailMergeEmailDlg.textMessage": "Message", "DE.Views.MailMergeEmailDlg.textMessage": "Message",
"DE.Views.MailMergeEmailDlg.textSubject": "Sujet ligne", "DE.Views.MailMergeEmailDlg.textSubject": "Ligne d'objet",
"DE.Views.MailMergeEmailDlg.textTitle": "Envoyer par Email", "DE.Views.MailMergeEmailDlg.textTitle": "Envoyer par e-mail",
"DE.Views.MailMergeEmailDlg.textTo": "à", "DE.Views.MailMergeEmailDlg.textTo": "à",
"DE.Views.MailMergeEmailDlg.textWarning": "Attention !", "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'.", "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.textSection": "Section active",
"DE.Views.NoteSettingsDialog.textStart": "Commencer par", "DE.Views.NoteSettingsDialog.textStart": "Commencer par",
"DE.Views.NoteSettingsDialog.textTextBottom": "Sous le texte", "DE.Views.NoteSettingsDialog.textTextBottom": "Sous le texte",
"DE.Views.NoteSettingsDialog.textTitle": "Paramètres des notes de bas de page", "DE.Views.NoteSettingsDialog.textTitle": "Paramètres des notes",
"DE.Views.NotesRemoveDialog.textEnd": "Supprimer toutes les notes de fin", "DE.Views.NotesRemoveDialog.textEnd": "Supprimer toutes les notes de fin de page",
"DE.Views.NotesRemoveDialog.textFoot": "Supprimer les notes de bas de page", "DE.Views.NotesRemoveDialog.textFoot": "Supprimer toutes les notes de bas de page",
"DE.Views.NotesRemoveDialog.textTitle": "Supprimer les notes", "DE.Views.NotesRemoveDialog.textTitle": "Supprimer les notes",
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Avertissement", "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Avertissement",
"DE.Views.PageMarginsDialog.textBottom": "Bas", "DE.Views.PageMarginsDialog.textBottom": "Bas",
@ -2501,7 +2506,7 @@
"DE.Views.ParagraphSettingsAdvanced.strOrphan": "Éviter orphelines", "DE.Views.ParagraphSettingsAdvanced.strOrphan": "Éviter orphelines",
"DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Police", "DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Police",
"DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Retraits et espacement", "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.strParagraphPosition": "Emplacement",
"DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Petites majuscules", "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Petites majuscules",
"DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "Ne pas ajouter d'intervalle entre paragraphes du même style", "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.textAuto": "Multiple ",
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Couleur d'arrière-plan", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Couleur d'arrière-plan",
"DE.Views.ParagraphSettingsAdvanced.textBodyText": "Texte simple", "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.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.textBorderWidth": "Taille de bordure",
"DE.Views.ParagraphSettingsAdvanced.textBottom": "En bas", "DE.Views.ParagraphSettingsAdvanced.textBottom": "En bas",
"DE.Views.ParagraphSettingsAdvanced.textCentered": "Centré", "DE.Views.ParagraphSettingsAdvanced.textCentered": "Centré",
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espacement des caractères", "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espacement des caractères",
"DE.Views.ParagraphSettingsAdvanced.textContext": "Contextuels", "DE.Views.ParagraphSettingsAdvanced.textContext": "Contextuels",
"DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Contextuels et discrétionnaires", "DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Contextuelles et discrétionnaires",
"DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Contextuels, historiques et discrétionnaires", "DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Contextuelles, historiques et discrétionnaires",
"DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Contextuels et historiques", "DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Contextuelles et historiques",
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Par défaut", "DE.Views.ParagraphSettingsAdvanced.textDefault": "Onglet par défaut",
"DE.Views.ParagraphSettingsAdvanced.textDiscret": "Discrétionnaires", "DE.Views.ParagraphSettingsAdvanced.textDiscret": "Discrétionnaires",
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Effets", "DE.Views.ParagraphSettingsAdvanced.textEffects": "Effets",
"DE.Views.ParagraphSettingsAdvanced.textExact": "Exactement", "DE.Views.ParagraphSettingsAdvanced.textExact": "Exactement",
@ -2558,7 +2563,7 @@
"DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "Standards et historiques", "DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "Standards et historiques",
"DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Centre", "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Centre",
"DE.Views.ParagraphSettingsAdvanced.textTabLeft": "À gauche", "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.textTabRight": "A droite",
"DE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraphe - Paramètres avancés", "DE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraphe - Paramètres avancés",
"DE.Views.ParagraphSettingsAdvanced.textTop": "En haut", "DE.Views.ParagraphSettingsAdvanced.textTop": "En haut",
@ -2691,10 +2696,10 @@
"DE.Views.StyleTitleDialog.txtEmpty": "Ce champ est obligatoire", "DE.Views.StyleTitleDialog.txtEmpty": "Ce champ est obligatoire",
"DE.Views.StyleTitleDialog.txtNotEmpty": "Le champ ne doit pas être vide", "DE.Views.StyleTitleDialog.txtNotEmpty": "Le champ ne doit pas être vide",
"DE.Views.StyleTitleDialog.txtSameAs": "Identique au nouveau style créé", "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.textFormat": "Format de nombre",
"DE.Views.TableFormulaDialog.textFormula": "Formule", "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.TableFormulaDialog.textTitle": "Paramètres de formule",
"DE.Views.TableOfContentsSettings.strAlign": "Aligner les numéros de page à droite", "DE.Views.TableOfContentsSettings.strAlign": "Aligner les numéros de page à droite",
"DE.Views.TableOfContentsSettings.strFullCaption": "Inclure l'étiquette et le numéro", "DE.Views.TableOfContentsSettings.strFullCaption": "Inclure l'étiquette et le numéro",
@ -2717,7 +2722,7 @@
"DE.Views.TableOfContentsSettings.textStyles": "Styles", "DE.Views.TableOfContentsSettings.textStyles": "Styles",
"DE.Views.TableOfContentsSettings.textTable": "Tableau", "DE.Views.TableOfContentsSettings.textTable": "Tableau",
"DE.Views.TableOfContentsSettings.textTitle": "Table des matières", "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.txtCentered": "Centré",
"DE.Views.TableOfContentsSettings.txtClassic": "Classique", "DE.Views.TableOfContentsSettings.txtClassic": "Classique",
"DE.Views.TableOfContentsSettings.txtCurrent": "Actuel", "DE.Views.TableOfContentsSettings.txtCurrent": "Actuel",
@ -2800,9 +2805,9 @@
"DE.Views.TableSettingsAdvanced.textAltTitle": "Titre", "DE.Views.TableSettingsAdvanced.textAltTitle": "Titre",
"DE.Views.TableSettingsAdvanced.textAnchorText": "Texte", "DE.Views.TableSettingsAdvanced.textAnchorText": "Texte",
"DE.Views.TableSettingsAdvanced.textAutofit": "Redimensionner automatiquement pour ajuster au contenu", "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.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.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.textBordersBackgroung": "Bordures et arrière-plan",
"DE.Views.TableSettingsAdvanced.textBorderWidth": "Taille de bordure", "DE.Views.TableSettingsAdvanced.textBorderWidth": "Taille de bordure",
@ -2835,7 +2840,7 @@
"DE.Views.TableSettingsAdvanced.textRightOf": "à droite de", "DE.Views.TableSettingsAdvanced.textRightOf": "à droite de",
"DE.Views.TableSettingsAdvanced.textRightTooltip": "A droite", "DE.Views.TableSettingsAdvanced.textRightTooltip": "A droite",
"DE.Views.TableSettingsAdvanced.textTable": "Tableau", "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.textTablePosition": "Position du tableau",
"DE.Views.TableSettingsAdvanced.textTableSize": "Taille du tableau", "DE.Views.TableSettingsAdvanced.textTableSize": "Taille du tableau",
"DE.Views.TableSettingsAdvanced.textTitle": "Tableau - Paramètres avancés", "DE.Views.TableSettingsAdvanced.textTitle": "Tableau - Paramètres avancés",
@ -2993,7 +2998,7 @@
"DE.Views.Toolbar.textLandscape": "Paysage", "DE.Views.Toolbar.textLandscape": "Paysage",
"DE.Views.Toolbar.textLeft": "À gauche:", "DE.Views.Toolbar.textLeft": "À gauche:",
"DE.Views.Toolbar.textListSettings": "Paramètres de la liste", "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.textMarginsModerate": "Modérer",
"DE.Views.Toolbar.textMarginsNarrow": "Étroit", "DE.Views.Toolbar.textMarginsNarrow": "Étroit",
"DE.Views.Toolbar.textMarginsNormal": "Normal", "DE.Views.Toolbar.textMarginsNormal": "Normal",
@ -3149,9 +3154,11 @@
"DE.Views.ViewTab.textDarkDocument": "Document sombre", "DE.Views.ViewTab.textDarkDocument": "Document sombre",
"DE.Views.ViewTab.textFitToPage": "Ajuster à la page", "DE.Views.ViewTab.textFitToPage": "Ajuster à la page",
"DE.Views.ViewTab.textFitToWidth": "Ajuster à la largeur", "DE.Views.ViewTab.textFitToWidth": "Ajuster à la largeur",
"DE.Views.ViewTab.textInterfaceTheme": "Thème d'interface", "DE.Views.ViewTab.textInterfaceTheme": "Thème dinterface",
"DE.Views.ViewTab.textLeftMenu": "Panneau gauche",
"DE.Views.ViewTab.textNavigation": "Navigation", "DE.Views.ViewTab.textNavigation": "Navigation",
"DE.Views.ViewTab.textOutline": "Titres", "DE.Views.ViewTab.textOutline": "Titres",
"DE.Views.ViewTab.textRightMenu": "Panneau droit",
"DE.Views.ViewTab.textRulers": "Règles", "DE.Views.ViewTab.textRulers": "Règles",
"DE.Views.ViewTab.textStatusBar": "Barre d'état", "DE.Views.ViewTab.textStatusBar": "Barre d'état",
"DE.Views.ViewTab.textZoom": "Zoom", "DE.Views.ViewTab.textZoom": "Zoom",
@ -3165,8 +3172,8 @@
"DE.Views.WatermarkSettingsDialog.textColor": "Couleur du texte", "DE.Views.WatermarkSettingsDialog.textColor": "Couleur du texte",
"DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonale", "DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonale",
"DE.Views.WatermarkSettingsDialog.textFont": "Police", "DE.Views.WatermarkSettingsDialog.textFont": "Police",
"DE.Views.WatermarkSettingsDialog.textFromFile": "Depuis un fichier", "DE.Views.WatermarkSettingsDialog.textFromFile": "D'un fichier",
"DE.Views.WatermarkSettingsDialog.textFromStorage": "A partir de l'espace de stockage", "DE.Views.WatermarkSettingsDialog.textFromStorage": "Depuis l'espace de stockage",
"DE.Views.WatermarkSettingsDialog.textFromUrl": "D'une URL", "DE.Views.WatermarkSettingsDialog.textFromUrl": "D'une URL",
"DE.Views.WatermarkSettingsDialog.textHor": "Horizontal", "DE.Views.WatermarkSettingsDialog.textHor": "Horizontal",
"DE.Views.WatermarkSettingsDialog.textImageW": "Image en filigrane", "DE.Views.WatermarkSettingsDialog.textImageW": "Image en filigrane",

View file

@ -125,6 +125,26 @@
"Common.define.chartData.textScatterSmoothMarker": "Szórás sima vonalakkal és jelölőkkel", "Common.define.chartData.textScatterSmoothMarker": "Szórás sima vonalakkal és jelölőkkel",
"Common.define.chartData.textStock": "Részvény", "Common.define.chartData.textStock": "Részvény",
"Common.define.chartData.textSurface": "Felület", "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.textMoreButton": "Több",
"Common.Translation.warnFileLocked": "Nem szerkesztheti ezt a fájlt, mert egy másik alkalmazásban szerkesztik.", "Common.Translation.warnFileLocked": "Nem szerkesztheti ezt a fájlt, mert egy másik alkalmazásban szerkesztik.",
"Common.Translation.warnFileLockedBtnEdit": "Másolat létrehozása", "Common.Translation.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.tipTop": "Csak felső szegély beállítása",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Nincsenek szegélyek", "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.txtChartSettings": "Diagram beállítások",
"DE.Views.RightMenu.txtFormSettings": "Űrlapbeá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", "DE.Views.RightMenu.txtHeaderFooterSettings": "Fejléc és lábléc beállítások",

View file

@ -125,11 +125,165 @@
"Common.define.chartData.textScatterSmoothMarker": "Ցրել սահուն գծերով և նշիչներով", "Common.define.chartData.textScatterSmoothMarker": "Ցրել սահուն գծերով և նշիչներով",
"Common.define.chartData.textStock": "Տվյալների տատանում", "Common.define.chartData.textStock": "Տվյալների տատանում",
"Common.define.chartData.textSurface": "Մակերեսային", "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.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.textEquation": "Հավասարում",
"Common.define.smartArt.textFramedTextPicture": "Շրջանակված գրվածքով նկար",
"Common.define.smartArt.textFunnel": "Ձագարաձև", "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.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.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.textMoreButton": "Ավել",
"Common.Translation.warnFileLocked": "Դուք չեք կարող խմբագրել այս ֆայլը, քանի որ այն խմբագրվում է մեկ այլ հավելվածում:", "Common.Translation.warnFileLocked": "Դուք չեք կարող խմբագրել այս ֆայլը, քանի որ այն խմբագրվում է մեկ այլ հավելվածում:",
"Common.Translation.warnFileLockedBtnEdit": "Ստեղծել պատճեն", "Common.Translation.warnFileLockedBtnEdit": "Ստեղծել պատճեն",
@ -294,6 +448,7 @@
"Common.Views.DocumentAccessDialog.textTitle": "Համօգտագործման կարգավորումներ", "Common.Views.DocumentAccessDialog.textTitle": "Համօգտագործման կարգավորումներ",
"Common.Views.ExternalDiagramEditor.textTitle": "Գծապատկերի խմբագրիչ", "Common.Views.ExternalDiagramEditor.textTitle": "Գծապատկերի խմբագրիչ",
"Common.Views.ExternalEditor.textClose": "Փակել", "Common.Views.ExternalEditor.textClose": "Փակել",
"Common.Views.ExternalEditor.textSave": "Պահպանել և դուրս գալ",
"Common.Views.ExternalMergeEditor.textTitle": "Փոստի միավորման հաղորդագրություն ստացողներ", "Common.Views.ExternalMergeEditor.textTitle": "Փոստի միավորման հաղորդագրություն ստացողներ",
"Common.Views.ExternalOleEditor.textTitle": "Աղյուսակաթերթի խմբագիր", "Common.Views.ExternalOleEditor.textTitle": "Աղյուսակաթերթի խմբագիր",
"Common.Views.Header.labelCoUsersDescr": "Փաստաթուղթը խմբագրողներ՝", "Common.Views.Header.labelCoUsersDescr": "Փաստաթուղթը խմբագրողներ՝",
@ -506,7 +661,8 @@
"Common.Views.SignDialog.tipFontName": "Տառատեսակի անուն", "Common.Views.SignDialog.tipFontName": "Տառատեսակի անուն",
"Common.Views.SignDialog.tipFontSize": "Տառատեսակի չափ", "Common.Views.SignDialog.tipFontSize": "Տառատեսակի չափ",
"Common.Views.SignSettingsDialog.textAllowComment": "Թույլ տալ ստորագրողին ավելացնել մեկնաբանություն ստորագրության երկխոսության մեջ", "Common.Views.SignSettingsDialog.textAllowComment": "Թույլ տալ ստորագրողին ավելացնել մեկնաբանություն ստորագրության երկխոսության մեջ",
"Common.Views.SignSettingsDialog.textInfoEmail": "Էլ․ հասցե", "Common.Views.SignSettingsDialog.textDefInstruction": "Նախքան այս փաստաթուղթը ստորագրելը, ստուգեք, որ Ձեր ստորագրած բովանդակությունը ճիշտ է:",
"Common.Views.SignSettingsDialog.textInfoEmail": "Առաջարկվող ստորագրողի Էլ․ հասցե",
"Common.Views.SignSettingsDialog.textInfoName": "Անուն", "Common.Views.SignSettingsDialog.textInfoName": "Անուն",
"Common.Views.SignSettingsDialog.textInfoTitle": "Ստորագրողի անվանումը", "Common.Views.SignSettingsDialog.textInfoTitle": "Ստորագրողի անվանումը",
"Common.Views.SignSettingsDialog.textInstructions": "Հրահանգներ ստորագրողի համար", "Common.Views.SignSettingsDialog.textInstructions": "Հրահանգներ ստորագրողի համար",
@ -518,11 +674,11 @@
"Common.Views.SymbolTableDialog.textCopyright": "Պատճենաշնորհի նշան", "Common.Views.SymbolTableDialog.textCopyright": "Պատճենաշնորհի նշան",
"Common.Views.SymbolTableDialog.textDCQuote": "Փակող կրկնակի չակերտ", "Common.Views.SymbolTableDialog.textDCQuote": "Փակող կրկնակի չակերտ",
"Common.Views.SymbolTableDialog.textDOQuote": "Բացել կրկնակի փակագծերը", "Common.Views.SymbolTableDialog.textDOQuote": "Բացել կրկնակի փակագծերը",
"Common.Views.SymbolTableDialog.textEllipsis": "Հորիզոնական բազմակետեր ", "Common.Views.SymbolTableDialog.textEllipsis": "Հորիզոնական էլիպսներ",
"Common.Views.SymbolTableDialog.textEmDash": "Երկար գծիկ", "Common.Views.SymbolTableDialog.textEmDash": "M-աչափ գիծ",
"Common.Views.SymbolTableDialog.textEmSpace": "Երկար բացատ", "Common.Views.SymbolTableDialog.textEmSpace": "Երկար բացատ",
"Common.Views.SymbolTableDialog.textEnDash": "Միջին գծիկ", "Common.Views.SymbolTableDialog.textEnDash": "Միջին գծիկ",
"Common.Views.SymbolTableDialog.textEnSpace": "Միջին բացատ", "Common.Views.SymbolTableDialog.textEnSpace": "en տարածություն",
"Common.Views.SymbolTableDialog.textFont": "Տառատեսակ ", "Common.Views.SymbolTableDialog.textFont": "Տառատեսակ ",
"Common.Views.SymbolTableDialog.textNBHyphen": "Չընդատվող գծիկ", "Common.Views.SymbolTableDialog.textNBHyphen": "Չընդատվող գծիկ",
"Common.Views.SymbolTableDialog.textNBSpace": "Առանց ընդմիջման տարածություն", "Common.Views.SymbolTableDialog.textNBSpace": "Առանց ընդմիջման տարածություն",
@ -559,6 +715,7 @@
"DE.Controllers.LeftMenu.warnReplaceString": "{0}-ը վավեր գրանշան չէ փոխարինել դաշտի համար:", "DE.Controllers.LeftMenu.warnReplaceString": "{0}-ը վավեր գրանշան չէ փոխարինել դաշտի համար:",
"DE.Controllers.Main.applyChangesTextText": "Փոփոխությունների բեռնում․․․", "DE.Controllers.Main.applyChangesTextText": "Փոփոխությունների բեռնում․․․",
"DE.Controllers.Main.applyChangesTitleText": "Փոփոխությունների բեռնում", "DE.Controllers.Main.applyChangesTitleText": "Փոփոխությունների բեռնում",
"DE.Controllers.Main.confirmMaxChangesSize": "Գործողությունների չափը գերազանցում է Ձեր սերվերի համար սահմանված սահմանափակումը:<br>Սեղմեք «Հետարկել»՝ Ձեր վերջին գործողությունը չեղարկելու համար կամ սեղմեք «Շարունակել»՝ գործողությունը տեղում պահելու համար (Դուք պետք է ներբեռնեք ֆայլը կամ պատճենեք դրա բովանդակությունը՝ համոզվելու համար, որ ոչինչ կորած չէ):",
"DE.Controllers.Main.convertationTimeoutText": "Փոխարկման սպասման ժամանակը սպառվել է։", "DE.Controllers.Main.convertationTimeoutText": "Փոխարկման սպասման ժամանակը սպառվել է։",
"DE.Controllers.Main.criticalErrorExtText": "Սեղմեք «լավ» ու վերադարձեք փաստաթղթերի ցանկին", "DE.Controllers.Main.criticalErrorExtText": "Սեղմեք «լավ» ու վերադարձեք փաստաթղթերի ցանկին",
"DE.Controllers.Main.criticalErrorTitle": "Սխալ", "DE.Controllers.Main.criticalErrorTitle": "Սխալ",
@ -585,12 +742,18 @@
"DE.Controllers.Main.errorFilePassProtect": "Ֆայլն ունի գաղտնաբառ և չի կարող բացվել։", "DE.Controllers.Main.errorFilePassProtect": "Ֆայլն ունի գաղտնաբառ և չի կարող բացվել։",
"DE.Controllers.Main.errorFileSizeExceed": "Ֆայլի չափը գերազանցում է ձեր սերվերի համար սահմանված սահմանափակումը:<br> Մանրամասների համար խնդրում ենք կապվել Ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:", "DE.Controllers.Main.errorFileSizeExceed": "Ֆայլի չափը գերազանցում է ձեր սերվերի համար սահմանված սահմանափակումը:<br> Մանրամասների համար խնդրում ենք կապվել Ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:",
"DE.Controllers.Main.errorForceSave": "Փաստաթղթի պահպանման ժամանակ տեղի ունեցավ սխալ։ «Ներբեռնել որպես» հրամանով պահպանեք նիշքը Ձեր համակարգչի կոշտ սկավառակում կամ ավելի ուշ նորից փորձեք։", "DE.Controllers.Main.errorForceSave": "Փաստաթղթի պահպանման ժամանակ տեղի ունեցավ սխալ։ «Ներբեռնել որպես» հրամանով պահպանեք նիշքը Ձեր համակարգչի կոշտ սկավառակում կամ ավելի ուշ նորից փորձեք։",
"DE.Controllers.Main.errorInconsistentExt": "Ֆայլը բացելիս սխալ է տեղի ունեցել:<br>Ֆայլի բովանդակությունը չի համապատասխանում ֆայլի ընդլայնմանը:",
"DE.Controllers.Main.errorInconsistentExtDocx": "Ֆայլը բացելիս սխալ է տեղի ունեցել:<br>Ֆայլի բովանդակությունը համապատասխանում է տեքստային փաստաթղթերին (օրինակ՝ docx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում՝ %1:",
"DE.Controllers.Main.errorInconsistentExtPdf": "Ֆայլը բացելիս սխալ է տեղի ունեցել:Ֆայլի բովանդակությունը համապատասխանում է հետևյալ ձևաչափերից մեկին՝pdf/djvu/xps/oxps,բայց ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
"DE.Controllers.Main.errorInconsistentExtPptx": "Ֆայլը բացելիս սխալ է տեղի ունեցել:<br>Ֆայլի բովանդակությունը համապատասխանում է ներկայացումներին (օրինակ՝ pptx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
"DE.Controllers.Main.errorInconsistentExtXlsx": "Ֆայլը բացելիս սխալ է տեղի ունեցել:<br>Ֆայլի բովանդակությունը համապատասխանում է աղյուսակներին (օր. xlsx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում. %1:",
"DE.Controllers.Main.errorKeyEncrypt": "Բանալու անհայտ նկարագրիչ", "DE.Controllers.Main.errorKeyEncrypt": "Բանալու անհայտ նկարագրիչ",
"DE.Controllers.Main.errorKeyExpire": "Բանալու նկարագրիչի ժամկետը սպառվել է", "DE.Controllers.Main.errorKeyExpire": "Բանալու նկարագրիչի ժամկետը սպառվել է",
"DE.Controllers.Main.errorLoadingFont": "Տառատեսակները բեռնված չեն:<br>Խնդրում ենք կապվել ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:", "DE.Controllers.Main.errorLoadingFont": "Տառատեսակները բեռնված չեն:<br>Խնդրում ենք կապվել ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:",
"DE.Controllers.Main.errorMailMergeLoadFile": "Փաստաթղթի բեռնումը խափանվեց։ Խնդրում ենք ընտրել մեկ այլ ֆայլ:", "DE.Controllers.Main.errorMailMergeLoadFile": "Փաստաթղթի բեռնումը խափանվեց։ Խնդրում ենք ընտրել մեկ այլ ֆայլ:",
"DE.Controllers.Main.errorMailMergeSaveFile": "Միաձուլումը խափանվեց։", "DE.Controllers.Main.errorMailMergeSaveFile": "Միաձուլումը խափանվեց։",
"DE.Controllers.Main.errorNoTOC": "Արդիացնելու համար բովանդակություն չկա: Կարող եք զետեղել այն հղումներ ներդիրից:", "DE.Controllers.Main.errorNoTOC": "Արդիացնելու համար բովանդակություն չկա: Կարող եք զետեղել այն հղումներ ներդիրից:",
"DE.Controllers.Main.errorPasswordIsNotCorrect": "Ձեր տրամադրած գաղտնաբառը ճիշտ չէ:<br>Ստուգեք, որ CAPS LOCK ստեղնը անջատված է և օգտագործեք ճիշտ գլխատառացումը:",
"DE.Controllers.Main.errorProcessSaveResult": "Պահումը ձախողվել է:", "DE.Controllers.Main.errorProcessSaveResult": "Պահումը ձախողվել է:",
"DE.Controllers.Main.errorServerVersion": "Խմբագրիչի տարբերակը արդիացվել է։ Որպեսզի փոփոխումները տեղի ունենան, էջը նորից կբեռնվի։", "DE.Controllers.Main.errorServerVersion": "Խմբագրիչի տարբերակը արդիացվել է։ Որպեսզի փոփոխումները տեղի ունենան, էջը նորից կբեռնվի։",
"DE.Controllers.Main.errorSessionAbsolute": "Փաստաթղթի խմբագրման գործաժամը սպառվել է։ Նորի՛ց բեռնեք էջը։", "DE.Controllers.Main.errorSessionAbsolute": "Փաստաթղթի խմբագրման գործաժամը սպառվել է։ Նորի՛ց բեռնեք էջը։",
@ -1338,20 +1501,31 @@
"DE.Views.CellsAddDialog.textRow": "Տողեր", "DE.Views.CellsAddDialog.textRow": "Տողեր",
"DE.Views.CellsAddDialog.textTitle": "Տեղադրեք մի քանիսը", "DE.Views.CellsAddDialog.textTitle": "Տեղադրեք մի քանիսը",
"DE.Views.CellsAddDialog.textUp": "Նշորդի վերևում", "DE.Views.CellsAddDialog.textUp": "Նշորդի վերևում",
"DE.Views.ChartSettings.text3dDepth": "Խորությունը (բազայի %)",
"DE.Views.ChartSettings.text3dHeight": "Բարձրություն (բազայի %)",
"DE.Views.ChartSettings.text3dRotation": "3D Պտտում",
"DE.Views.ChartSettings.textAdvanced": "Ցուցադրել լրացուցիչ կարգավորումները", "DE.Views.ChartSettings.textAdvanced": "Ցուցադրել լրացուցիչ կարգավորումները",
"DE.Views.ChartSettings.textAutoscale": "Ինքնասանդղակ",
"DE.Views.ChartSettings.textChartType": "Փոխել գծապատկերի տեսակը", "DE.Views.ChartSettings.textChartType": "Փոխել գծապատկերի տեսակը",
"DE.Views.ChartSettings.textDefault": "Սկզբնադիր շրջում",
"DE.Views.ChartSettings.textDown": "Ներքև", "DE.Views.ChartSettings.textDown": "Ներքև",
"DE.Views.ChartSettings.textEditData": "Խմբագրել տվյալները", "DE.Views.ChartSettings.textEditData": "Խմբագրել տվյալները",
"DE.Views.ChartSettings.textHeight": "Բարձրություն", "DE.Views.ChartSettings.textHeight": "Բարձրություն",
"DE.Views.ChartSettings.textLeft": "Ձախ", "DE.Views.ChartSettings.textLeft": "Ձախ",
"DE.Views.ChartSettings.textNarrow": "Նեղ տեսադաշտ",
"DE.Views.ChartSettings.textOriginalSize": "Իրական չափ", "DE.Views.ChartSettings.textOriginalSize": "Իրական չափ",
"DE.Views.ChartSettings.textPerspective": "Հեռանկար",
"DE.Views.ChartSettings.textRight": "Աջ", "DE.Views.ChartSettings.textRight": "Աջ",
"DE.Views.ChartSettings.textRightAngle": "Աջ անկյան առանցքներ",
"DE.Views.ChartSettings.textSize": "Չափ", "DE.Views.ChartSettings.textSize": "Չափ",
"DE.Views.ChartSettings.textStyle": "Ոճ", "DE.Views.ChartSettings.textStyle": "Ոճ",
"DE.Views.ChartSettings.textUndock": "Ապահարակցել վահանակից", "DE.Views.ChartSettings.textUndock": "Ապահարակցել վահանակից",
"DE.Views.ChartSettings.textUp": "Վեր", "DE.Views.ChartSettings.textUp": "Վեր",
"DE.Views.ChartSettings.textWiden": "Լայն տեսադաշտ",
"DE.Views.ChartSettings.textWidth": "Լայնք", "DE.Views.ChartSettings.textWidth": "Լայնք",
"DE.Views.ChartSettings.textWrap": "Ծալման ոճ", "DE.Views.ChartSettings.textWrap": "Ծալման ոճ",
"DE.Views.ChartSettings.textX": "X պտտում",
"DE.Views.ChartSettings.textY": "Y պտտում",
"DE.Views.ChartSettings.txtBehind": "Տեքստի հետևում", "DE.Views.ChartSettings.txtBehind": "Տեքստի հետևում",
"DE.Views.ChartSettings.txtInFront": "Տեքստի դիմաց", "DE.Views.ChartSettings.txtInFront": "Տեքստի դիմաց",
"DE.Views.ChartSettings.txtInline": "Գրվածքի հետ մեկտող", "DE.Views.ChartSettings.txtInline": "Գրվածքի հետ մեկտող",
@ -1442,15 +1616,23 @@
"DE.Views.DateTimeDialog.textUpdate": "Ինքնաբար արդիացնել", "DE.Views.DateTimeDialog.textUpdate": "Ինքնաբար արդիացնել",
"DE.Views.DateTimeDialog.txtTitle": "Ամիս-ամսաթիվ, ժամ", "DE.Views.DateTimeDialog.txtTitle": "Ամիս-ամսաթիվ, ժամ",
"DE.Views.DocProtection.hintProtectDoc": "Պաշտպանել փաստաթուղթը", "DE.Views.DocProtection.hintProtectDoc": "Պաշտպանել փաստաթուղթը",
"DE.Views.DocProtection.txtDocProtectedComment": "Փաստաթուղթը պաշտպանված է:<br>Դուք կարող եք միայն մեկնաբանություններ տեղադրել այս փաստաթղթում:",
"DE.Views.DocProtection.txtDocProtectedForms": "Փաստաթուղթը պաշտպանված է:<br>Այս փաստաթղթում կարող եք լրացնել միայն ձևերը:",
"DE.Views.DocProtection.txtDocProtectedTrack": "Փաստաթուղթը պաշտպանված է:<br>Դուք կարող եք խմբագրել այս փաստաթուղթը, բայց բոլոր փոփոխությունները կհետևվեն:",
"DE.Views.DocProtection.txtDocProtectedView": "Փաստաթուղթը պաշտպանված է:<br>Դուք կարող եք դիտել միայն այս փաստաթուղթը:",
"DE.Views.DocProtection.txtDocUnlockDescription": "Փաստաթուղթը չպաշտպանելու համար մուտքագրեք գաղտնաբառ։",
"DE.Views.DocProtection.txtProtectDoc": "Պաշտպանել փաստաթուղթը", "DE.Views.DocProtection.txtProtectDoc": "Պաշտպանել փաստաթուղթը",
"DE.Views.DocumentHolder.aboveText": "Վերև", "DE.Views.DocumentHolder.aboveText": "Վերև",
"DE.Views.DocumentHolder.addCommentText": "Ավելացնել մեկնաբանություն", "DE.Views.DocumentHolder.addCommentText": "Ավելացնել մեկնաբանություն",
"DE.Views.DocumentHolder.advancedDropCapText": "Սկզբնատառի կարգավորումներ", "DE.Views.DocumentHolder.advancedDropCapText": "Սկզբնատառի կարգավորումներ",
"DE.Views.DocumentHolder.advancedEquationText": "Հավասարման կարգավորումներ",
"DE.Views.DocumentHolder.advancedFrameText": "Շրջանակի լրացուցիչ կարգավորումներ", "DE.Views.DocumentHolder.advancedFrameText": "Շրջանակի լրացուցիչ կարգավորումներ",
"DE.Views.DocumentHolder.advancedParagraphText": "Պարբերության լրացուցիչ կարգավորումներ", "DE.Views.DocumentHolder.advancedParagraphText": "Պարբերության լրացուցիչ կարգավորումներ",
"DE.Views.DocumentHolder.advancedTableText": "Աղյուսակի լրացուցիչ կարգավորումներ", "DE.Views.DocumentHolder.advancedTableText": "Աղյուսակի լրացուցիչ կարգավորումներ",
"DE.Views.DocumentHolder.advancedText": "Լրացուցիչ կարգավորումներ", "DE.Views.DocumentHolder.advancedText": "Լրացուցիչ կարգավորումներ",
"DE.Views.DocumentHolder.alignmentText": "Հավասարեցում", "DE.Views.DocumentHolder.alignmentText": "Հավասարեցում",
"DE.Views.DocumentHolder.allLinearText": "Ամբողջական գծային",
"DE.Views.DocumentHolder.allProfText": "Ամբողջական պրոֆեսիոնալ",
"DE.Views.DocumentHolder.belowText": "Ներքևում", "DE.Views.DocumentHolder.belowText": "Ներքևում",
"DE.Views.DocumentHolder.breakBeforeText": "Սկզբից էջատում", "DE.Views.DocumentHolder.breakBeforeText": "Սկզբից էջատում",
"DE.Views.DocumentHolder.bulletsText": "Պարբերակներ և համարակալում", "DE.Views.DocumentHolder.bulletsText": "Պարբերակներ և համարակալում",
@ -1459,6 +1641,8 @@
"DE.Views.DocumentHolder.centerText": "Կենտրոնով", "DE.Views.DocumentHolder.centerText": "Կենտրոնով",
"DE.Views.DocumentHolder.chartText": "Գծապատկերի լրացուցիչ կարգավորումներ", "DE.Views.DocumentHolder.chartText": "Գծապատկերի լրացուցիչ կարգավորումներ",
"DE.Views.DocumentHolder.columnText": "Սյունակ", "DE.Views.DocumentHolder.columnText": "Սյունակ",
"DE.Views.DocumentHolder.currLinearText": "Ընթացիկ - Գծային",
"DE.Views.DocumentHolder.currProfText": "Ընթացիկ-Պրոֆեսիոնալ",
"DE.Views.DocumentHolder.deleteColumnText": "Ջնջել սյունակ", "DE.Views.DocumentHolder.deleteColumnText": "Ջնջել սյունակ",
"DE.Views.DocumentHolder.deleteRowText": "Ջնջել տող", "DE.Views.DocumentHolder.deleteRowText": "Ջնջել տող",
"DE.Views.DocumentHolder.deleteTableText": "Ջնջել աղյուսակը", "DE.Views.DocumentHolder.deleteTableText": "Ջնջել աղյուսակը",
@ -1471,6 +1655,7 @@
"DE.Views.DocumentHolder.editFooterText": "Խմբագրել էջատակը", "DE.Views.DocumentHolder.editFooterText": "Խմբագրել էջատակը",
"DE.Views.DocumentHolder.editHeaderText": "Խմբագրել էջագլուխը", "DE.Views.DocumentHolder.editHeaderText": "Խմբագրել էջագլուխը",
"DE.Views.DocumentHolder.editHyperlinkText": "Խմբագրել գերհղումը", "DE.Views.DocumentHolder.editHyperlinkText": "Խմբագրել գերհղումը",
"DE.Views.DocumentHolder.eqToInlineText": "Փոխել ներտող ",
"DE.Views.DocumentHolder.guestText": "Հյուր", "DE.Views.DocumentHolder.guestText": "Հյուր",
"DE.Views.DocumentHolder.hyperlinkText": "Գերհղում", "DE.Views.DocumentHolder.hyperlinkText": "Գերհղում",
"DE.Views.DocumentHolder.ignoreAllSpellText": "Անտեսել բոլորը", "DE.Views.DocumentHolder.ignoreAllSpellText": "Անտեսել բոլորը",
@ -1485,6 +1670,7 @@
"DE.Views.DocumentHolder.insertText": "Զետեղել", "DE.Views.DocumentHolder.insertText": "Զետեղել",
"DE.Views.DocumentHolder.keepLinesText": "Տողերը պահել միասին ", "DE.Views.DocumentHolder.keepLinesText": "Տողերը պահել միասին ",
"DE.Views.DocumentHolder.langText": "Ընտրել լեզուն", "DE.Views.DocumentHolder.langText": "Ընտրել լեզուն",
"DE.Views.DocumentHolder.latexText": "LaTeX",
"DE.Views.DocumentHolder.leftText": "Ձախ", "DE.Views.DocumentHolder.leftText": "Ձախ",
"DE.Views.DocumentHolder.loadSpellText": "Տարբերակների բեռնում...", "DE.Views.DocumentHolder.loadSpellText": "Տարբերակների բեռնում...",
"DE.Views.DocumentHolder.mergeCellsText": "Միաձուլել վանդակները", "DE.Views.DocumentHolder.mergeCellsText": "Միաձուլել վանդակները",
@ -1672,6 +1858,7 @@
"DE.Views.DocumentHolder.txtUnderbar": "Տեքստի տակ գիծ", "DE.Views.DocumentHolder.txtUnderbar": "Տեքստի տակ գիծ",
"DE.Views.DocumentHolder.txtUngroup": "Ապախմբավորել", "DE.Views.DocumentHolder.txtUngroup": "Ապախմբավորել",
"DE.Views.DocumentHolder.txtWarnUrl": "Այս հղմանը հետևելը կարող է վնասել ձեր սարքավորումն ու տվյալները:<br>Վստա՞հ եք, որ ցանկանում եք շարունակել:", "DE.Views.DocumentHolder.txtWarnUrl": "Այս հղմանը հետևելը կարող է վնասել ձեր սարքավորումն ու տվյալները:<br>Վստա՞հ եք, որ ցանկանում եք շարունակել:",
"DE.Views.DocumentHolder.unicodeText": "Յունիկոդ",
"DE.Views.DocumentHolder.updateStyleText": "Թարմացնել %1 ոճը", "DE.Views.DocumentHolder.updateStyleText": "Թարմացնել %1 ոճը",
"DE.Views.DocumentHolder.vertAlignText": "Ուղղաձիգ հավասարեցում", "DE.Views.DocumentHolder.vertAlignText": "Ուղղաձիգ հավասարեցում",
"DE.Views.DropcapSettingsAdvanced.strBorders": "Եզրագծեր և լցում", "DE.Views.DropcapSettingsAdvanced.strBorders": "Եզրագծեր և լցում",
@ -1768,6 +1955,7 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Վիճակագրություն", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Վիճակագրություն",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Նյութ", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Նյութ",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Նշաններ", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Նշաններ",
"DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Պիտակներ",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Վերնագիր", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Վերնագիր",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Վերբեռնվել է", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Վերբեռնվել է",
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Բառեր", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Բառեր",
@ -2061,7 +2249,7 @@
"DE.Views.ImageSettingsAdvanced.textTextBox": "Գրվածքի տուփ", "DE.Views.ImageSettingsAdvanced.textTextBox": "Գրվածքի տուփ",
"DE.Views.ImageSettingsAdvanced.textTitle": "Պատկեր - լրացուցիչ կարգավորումներ", "DE.Views.ImageSettingsAdvanced.textTitle": "Պատկեր - լրացուցիչ կարգավորումներ",
"DE.Views.ImageSettingsAdvanced.textTitleChart": "Գծապատկեր - լրացուցիչ կարգավորումներ", "DE.Views.ImageSettingsAdvanced.textTitleChart": "Գծապատկեր - լրացուցիչ կարգավորումներ",
"DE.Views.ImageSettingsAdvanced.textTitleShape": "Պատկեր - լրացուցիչ կարգավորումներ", "DE.Views.ImageSettingsAdvanced.textTitleShape": "Պատկեր - ընդլայնված կարգավորումներ",
"DE.Views.ImageSettingsAdvanced.textTop": "Վերև", "DE.Views.ImageSettingsAdvanced.textTop": "Վերև",
"DE.Views.ImageSettingsAdvanced.textTopMargin": "Վերին լուսանցք", "DE.Views.ImageSettingsAdvanced.textTopMargin": "Վերին լուսանցք",
"DE.Views.ImageSettingsAdvanced.textVertical": "Ուղղահայաց", "DE.Views.ImageSettingsAdvanced.textVertical": "Ուղղահայաց",
@ -2377,7 +2565,7 @@
"DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Ձախ", "DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Ձախ",
"DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Ներդիրի դիրքը", "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Ներդիրի դիրքը",
"DE.Views.ParagraphSettingsAdvanced.textTabRight": "Աջ", "DE.Views.ParagraphSettingsAdvanced.textTabRight": "Աջ",
"DE.Views.ParagraphSettingsAdvanced.textTitle": "Պարբերություն- լրացուցիչ կարգավորումներ", "DE.Views.ParagraphSettingsAdvanced.textTitle": "Պարբերություն- ընդլայնված կարգավորումներ",
"DE.Views.ParagraphSettingsAdvanced.textTop": "Վերև", "DE.Views.ParagraphSettingsAdvanced.textTop": "Վերև",
"DE.Views.ParagraphSettingsAdvanced.tipAll": "Սահմանել արտաքին եզրագիծը և բոլոր ներքին գծերը", "DE.Views.ParagraphSettingsAdvanced.tipAll": "Սահմանել արտաքին եզրագիծը և բոլոր ներքին գծերը",
"DE.Views.ParagraphSettingsAdvanced.tipBottom": "Սահմանել միայն ստորին Եզրագիծ", "DE.Views.ParagraphSettingsAdvanced.tipBottom": "Սահմանել միայն ստորին Եզրագիծ",
@ -2390,12 +2578,17 @@
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Ինքնաշխատ", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Ինքնաշխատ",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Առանց եզրագծերի", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Առանց եզրագծերի",
"DE.Views.ProtectDialog.textComments": "Մեկնաբանություններ", "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.txtIncorrectPwd": "Հաստատման գաղտնաբառը նույնը չէ",
"DE.Views.ProtectDialog.txtOptional": "ընտրովի", "DE.Views.ProtectDialog.txtOptional": "ընտրովի",
"DE.Views.ProtectDialog.txtPassword": "Գաղտնաբառ", "DE.Views.ProtectDialog.txtPassword": "Գաղտնաբառ",
"DE.Views.ProtectDialog.txtProtect": "Պաշտպանել", "DE.Views.ProtectDialog.txtProtect": "Պաշտպանել",
"DE.Views.ProtectDialog.txtRepeat": "Կրկնել գաղտնաբառը", "DE.Views.ProtectDialog.txtRepeat": "Կրկնել գաղտնաբառը",
"DE.Views.ProtectDialog.txtTitle": "Պաշտպանել", "DE.Views.ProtectDialog.txtTitle": "Պաշտպանել",
"DE.Views.ProtectDialog.txtWarning": "Զգուշացում․ գաղտնաբառը կորցնելու կամ մոռանալու դեպքում այն ​​չի կարող վերականգնվել։Խնդրում ենք պահել այն ապահով տեղում:",
"DE.Views.RightMenu.txtChartSettings": "Գծապատկերի կարգավորումներ", "DE.Views.RightMenu.txtChartSettings": "Գծապատկերի կարգավորումներ",
"DE.Views.RightMenu.txtFormSettings": "Ձևի կարգավորումներ", "DE.Views.RightMenu.txtFormSettings": "Ձևի կարգավորումներ",
"DE.Views.RightMenu.txtHeaderFooterSettings": "Էջագլխի և էջատակի կարգավորումներ", "DE.Views.RightMenu.txtHeaderFooterSettings": "Էջագլխի և էջատակի կարգավորումներ",
@ -2586,13 +2779,20 @@
"DE.Views.TableSettings.tipOuter": "Սահմանել միայն արտաքին եզրագիծը", "DE.Views.TableSettings.tipOuter": "Սահմանել միայն արտաքին եզրագիծը",
"DE.Views.TableSettings.tipRight": "Սահմանել միայն արտաքին աջ եզրագիծը", "DE.Views.TableSettings.tipRight": "Սահմանել միայն արտաքին աջ եզրագիծը",
"DE.Views.TableSettings.tipTop": "Սահմանել միայն արտաքին վերին եզրագիծը", "DE.Views.TableSettings.tipTop": "Սահմանել միայն արտաքին վերին եզրագիծը",
"DE.Views.TableSettings.txtGroupTable_BorderedAndLined": "Եզրագծած և Ընդգծված Աղյուսակներ",
"DE.Views.TableSettings.txtGroupTable_Custom": "Հարմարեցված", "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.txtNoBorders": "Առանց եզրագծերի",
"DE.Views.TableSettings.txtTable_Accent": "Շեշտ", "DE.Views.TableSettings.txtTable_Accent": "Շեշտ",
"DE.Views.TableSettings.txtTable_Bordered": "Եզրագծած",
"DE.Views.TableSettings.txtTable_BorderedAndLined": "Եզրագծած և Ընդգծված",
"DE.Views.TableSettings.txtTable_Colorful": "Գունավոր", "DE.Views.TableSettings.txtTable_Colorful": "Գունավոր",
"DE.Views.TableSettings.txtTable_Dark": "Մութ", "DE.Views.TableSettings.txtTable_Dark": "Մութ",
"DE.Views.TableSettings.txtTable_GridTable": "Ցանցային աղյուսակ", "DE.Views.TableSettings.txtTable_GridTable": "Ցանցային աղյուսակ",
"DE.Views.TableSettings.txtTable_Light": "Լույս", "DE.Views.TableSettings.txtTable_Light": "Լույս",
"DE.Views.TableSettings.txtTable_Lined": "Գծավոր",
"DE.Views.TableSettings.txtTable_ListTable": "Ցանկի աղյուսակ", "DE.Views.TableSettings.txtTable_ListTable": "Ցանկի աղյուսակ",
"DE.Views.TableSettings.txtTable_PlainTable": "Պարզ աղյուսակ ", "DE.Views.TableSettings.txtTable_PlainTable": "Պարզ աղյուսակ ",
"DE.Views.TableSettings.txtTable_TableGrid": "Աղյուսակի կետացանց", "DE.Views.TableSettings.txtTable_TableGrid": "Աղյուսակի կետացանց",
@ -2874,13 +3074,16 @@
"DE.Views.Toolbar.tipIncPrLeft": "Մեծացնել բացատը պարբերության սկզբում", "DE.Views.Toolbar.tipIncPrLeft": "Մեծացնել բացատը պարբերության սկզբում",
"DE.Views.Toolbar.tipInsertChart": "Զետեղել գծապատկեր", "DE.Views.Toolbar.tipInsertChart": "Զետեղել գծապատկեր",
"DE.Views.Toolbar.tipInsertEquation": "Դնել հավասարում", "DE.Views.Toolbar.tipInsertEquation": "Դնել հավասարում",
"DE.Views.Toolbar.tipInsertHorizontalText": "Զետեղել հորիզոնական գրվածքի տուփ",
"DE.Views.Toolbar.tipInsertImage": "Զետեղել նկար", "DE.Views.Toolbar.tipInsertImage": "Զետեղել նկար",
"DE.Views.Toolbar.tipInsertNum": "Դնել էջի համարը", "DE.Views.Toolbar.tipInsertNum": "Դնել էջի համարը",
"DE.Views.Toolbar.tipInsertShape": "Զետեղել պատկեր", "DE.Views.Toolbar.tipInsertShape": "Զետեղել պատկեր",
"DE.Views.Toolbar.tipInsertSmartArt": "Զետեղել SmartArt",
"DE.Views.Toolbar.tipInsertSymbol": "Տեղադրել նշան", "DE.Views.Toolbar.tipInsertSymbol": "Տեղադրել նշան",
"DE.Views.Toolbar.tipInsertTable": "Դնել աղյուսակ", "DE.Views.Toolbar.tipInsertTable": "Դնել աղյուսակ",
"DE.Views.Toolbar.tipInsertText": "Դնել տեքստատուփ", "DE.Views.Toolbar.tipInsertText": "Դնել տեքստատուփ",
"DE.Views.Toolbar.tipInsertTextArt": "Դնել տեքստարվեստից", "DE.Views.Toolbar.tipInsertTextArt": "Դնել տեքստարվեստից",
"DE.Views.Toolbar.tipInsertVerticalText": "Զետեղել ուղղահայաց գրվածքի տուփ",
"DE.Views.Toolbar.tipLineNumbers": "Ցուցադրել տողերի համարները", "DE.Views.Toolbar.tipLineNumbers": "Ցուցադրել տողերի համարները",
"DE.Views.Toolbar.tipLineSpace": "Պարբերության տողամիջոց", "DE.Views.Toolbar.tipLineSpace": "Պարբերության տողամիջոց",
"DE.Views.Toolbar.tipMailRecepients": "Փոստի միավորում", "DE.Views.Toolbar.tipMailRecepients": "Փոստի միավորում",
@ -2951,9 +3154,11 @@
"DE.Views.ViewTab.textDarkDocument": "Մուգ փաստաթուղթ", "DE.Views.ViewTab.textDarkDocument": "Մուգ փաստաթուղթ",
"DE.Views.ViewTab.textFitToPage": "Հարմարեցնել էջին", "DE.Views.ViewTab.textFitToPage": "Հարմարեցնել էջին",
"DE.Views.ViewTab.textFitToWidth": "Լայնքով", "DE.Views.ViewTab.textFitToWidth": "Լայնքով",
"DE.Views.ViewTab.textInterfaceTheme": "Ինտերֆեյսի թեմա", "DE.Views.ViewTab.textInterfaceTheme": "Ինտերֆեյսի ոճ",
"DE.Views.ViewTab.textLeftMenu": "Ձախ վահանակ",
"DE.Views.ViewTab.textNavigation": "Նավիգացիա", "DE.Views.ViewTab.textNavigation": "Նավիգացիա",
"DE.Views.ViewTab.textOutline": "Վերնագրեր", "DE.Views.ViewTab.textOutline": "Վերնագրեր",
"DE.Views.ViewTab.textRightMenu": "Աջ վահանակ",
"DE.Views.ViewTab.textRulers": "Քանոններ", "DE.Views.ViewTab.textRulers": "Քանոններ",
"DE.Views.ViewTab.textStatusBar": "Վիճակագոտի", "DE.Views.ViewTab.textStatusBar": "Վիճակագոտի",
"DE.Views.ViewTab.textZoom": "Խոշորացնել", "DE.Views.ViewTab.textZoom": "Խոշորացնել",

File diff suppressed because it is too large Load diff

View file

@ -125,6 +125,13 @@
"Common.define.chartData.textScatterSmoothMarker": "Grafico a dispersione con linee e indicatori", "Common.define.chartData.textScatterSmoothMarker": "Grafico a dispersione con linee e indicatori",
"Common.define.chartData.textStock": "Azionario", "Common.define.chartData.textStock": "Azionario",
"Common.define.chartData.textSurface": "Superficie", "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.textMoreButton": "più",
"Common.Translation.warnFileLocked": "Non puoi modificare questo file perché è in fase di modifica in un'altra applicazione.", "Common.Translation.warnFileLocked": "Non puoi modificare questo file perché è in fase di modifica in un'altra applicazione.",
"Common.Translation.warnFileLockedBtnEdit": "Crea copia", "Common.Translation.warnFileLockedBtnEdit": "Crea copia",
@ -288,6 +295,8 @@
"Common.Views.DocumentAccessDialog.textLoading": "Caricamento in corso...", "Common.Views.DocumentAccessDialog.textLoading": "Caricamento in corso...",
"Common.Views.DocumentAccessDialog.textTitle": "Impostazioni di condivisione", "Common.Views.DocumentAccessDialog.textTitle": "Impostazioni di condivisione",
"Common.Views.ExternalDiagramEditor.textTitle": "Editor di grafici", "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.ExternalMergeEditor.textTitle": "Destinatari Stampa unione",
"Common.Views.ExternalOleEditor.textTitle": "Editor di fogli di calcolo", "Common.Views.ExternalOleEditor.textTitle": "Editor di fogli di calcolo",
"Common.Views.Header.labelCoUsersDescr": "Utenti che stanno modificando il file:", "Common.Views.Header.labelCoUsersDescr": "Utenti che stanno modificando il file:",
@ -354,6 +363,7 @@
"Common.Views.Plugins.textStart": "Inizia", "Common.Views.Plugins.textStart": "Inizia",
"Common.Views.Plugins.textStop": "Termina", "Common.Views.Plugins.textStop": "Termina",
"Common.Views.Protection.hintAddPwd": "Crittografa con password", "Common.Views.Protection.hintAddPwd": "Crittografa con password",
"Common.Views.Protection.hintDelPwd": "Elimina password",
"Common.Views.Protection.hintPwd": "Modifica o rimuovi password", "Common.Views.Protection.hintPwd": "Modifica o rimuovi password",
"Common.Views.Protection.hintSignature": "Aggiungi firma digitale o riga di firma", "Common.Views.Protection.hintSignature": "Aggiungi firma digitale o riga di firma",
"Common.Views.Protection.txtAddPwd": "Aggiungi password", "Common.Views.Protection.txtAddPwd": "Aggiungi password",
@ -435,7 +445,7 @@
"Common.Views.ReviewChanges.txtSharing": "Condivisione", "Common.Views.ReviewChanges.txtSharing": "Condivisione",
"Common.Views.ReviewChanges.txtSpelling": "Controllo ortografico", "Common.Views.ReviewChanges.txtSpelling": "Controllo ortografico",
"Common.Views.ReviewChanges.txtTurnon": "Traccia cambiamenti", "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.textTitle": "Rivedi modifiche",
"Common.Views.ReviewChangesDialog.txtAccept": "Accetta", "Common.Views.ReviewChangesDialog.txtAccept": "Accetta",
"Common.Views.ReviewChangesDialog.txtAcceptAll": "Accetta tutte le modifiche", "Common.Views.ReviewChangesDialog.txtAcceptAll": "Accetta tutte le modifiche",
@ -591,6 +601,7 @@
"DE.Controllers.Main.errorSetPassword": "Impossibile impostare la password.", "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:<br> prezzo di apertura, prezzo massimo, prezzo minimo, prezzo di chiusura.", "DE.Controllers.Main.errorStockChart": "Righe ordinate in modo errato. Per creare un grafico azionario posizionare i dati sul foglio nel seguente ordine:<br> prezzo di apertura, prezzo massimo, prezzo minimo, prezzo di chiusura.",
"DE.Controllers.Main.errorSubmit": "Invio fallito.", "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.<br>Si prega di contattare l'amministratore del Server dei Documenti.", "DE.Controllers.Main.errorToken": "Il token di sicurezza del documento non è stato creato correttamente.<br>Si prega di contattare l'amministratore del Server dei Documenti.",
"DE.Controllers.Main.errorTokenExpire": "Il token di sicurezza del documento è scaduto.<br>Si prega di contattare l'amministratore del Server dei Documenti.", "DE.Controllers.Main.errorTokenExpire": "Il token di sicurezza del documento è scaduto.<br>Si prega di contattare l'amministratore del Server dei Documenti.",
"DE.Controllers.Main.errorUpdateVersion": "La versione del file è stata modificata. La pagina verrà ricaricata.", "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.textClose": "Chiudi",
"DE.Controllers.Main.textCloseTip": "Clicca su per chiudere la notifica", "DE.Controllers.Main.textCloseTip": "Clicca su per chiudere la notifica",
"DE.Controllers.Main.textContactUs": "Contatta il team di vendite", "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.<br>Convertire ora?", "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.<br>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.<br>Si prega di contattare il nostro reparto vendite per ottenere un preventivo.", "DE.Controllers.Main.textCustomLoader": "Si prega di notare che, in base ai termini della licenza, non si ha il diritto di modificare il caricatore.<br>Si prega di contattare il nostro reparto vendite per ottenere un preventivo.",
"DE.Controllers.Main.textDisconnect": "Connessione persa", "DE.Controllers.Main.textDisconnect": "Connessione persa",
@ -658,6 +670,7 @@
"DE.Controllers.Main.textStrict": "Modalità Rigorosa", "DE.Controllers.Main.textStrict": "Modalità Rigorosa",
"DE.Controllers.Main.textTryUndoRedo": "Le funzioni Annulla/Ripristina sono disabilitate per la Modalità di Co-editing Veloce.<br>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.textTryUndoRedo": "Le funzioni Annulla/Ripristina sono disabilitate per la Modalità di Co-editing Veloce.<br>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.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.titleLicenseExp": "La licenza è scaduta",
"DE.Controllers.Main.titleServerVersion": "L'editor è stato aggiornato", "DE.Controllers.Main.titleServerVersion": "L'editor è stato aggiornato",
"DE.Controllers.Main.titleUpdateVersion": "Versione Modificata", "DE.Controllers.Main.titleUpdateVersion": "Versione Modificata",
@ -1329,12 +1342,17 @@
"DE.Views.CellsAddDialog.textUp": "Sopra il cursore", "DE.Views.CellsAddDialog.textUp": "Sopra il cursore",
"DE.Views.ChartSettings.textAdvanced": "Mostra impostazioni avanzate", "DE.Views.ChartSettings.textAdvanced": "Mostra impostazioni avanzate",
"DE.Views.ChartSettings.textChartType": "Cambia tipo di grafico", "DE.Views.ChartSettings.textChartType": "Cambia tipo di grafico",
"DE.Views.ChartSettings.textDown": "Giù",
"DE.Views.ChartSettings.textEditData": "Modifica dati", "DE.Views.ChartSettings.textEditData": "Modifica dati",
"DE.Views.ChartSettings.textHeight": "Altezza", "DE.Views.ChartSettings.textHeight": "Altezza",
"DE.Views.ChartSettings.textLeft": "A sinistra",
"DE.Views.ChartSettings.textOriginalSize": "Dimensione reale", "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.textSize": "Dimensione",
"DE.Views.ChartSettings.textStyle": "Stile", "DE.Views.ChartSettings.textStyle": "Stile",
"DE.Views.ChartSettings.textUndock": "Disancora dal pannello", "DE.Views.ChartSettings.textUndock": "Disancora dal pannello",
"DE.Views.ChartSettings.textUp": "Verso l'alto",
"DE.Views.ChartSettings.textWidth": "Larghezza", "DE.Views.ChartSettings.textWidth": "Larghezza",
"DE.Views.ChartSettings.textWrap": "Stile di disposizione testo", "DE.Views.ChartSettings.textWrap": "Stile di disposizione testo",
"DE.Views.ChartSettings.txtBehind": "Dietro al testo", "DE.Views.ChartSettings.txtBehind": "Dietro al testo",
@ -1426,6 +1444,8 @@
"DE.Views.DateTimeDialog.textLang": "Lingua", "DE.Views.DateTimeDialog.textLang": "Lingua",
"DE.Views.DateTimeDialog.textUpdate": "Aggiorna automaticamente", "DE.Views.DateTimeDialog.textUpdate": "Aggiorna automaticamente",
"DE.Views.DateTimeDialog.txtTitle": "Data e ora", "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.aboveText": "Al di sopra",
"DE.Views.DocumentHolder.addCommentText": "Aggiungi commento", "DE.Views.DocumentHolder.addCommentText": "Aggiungi commento",
"DE.Views.DocumentHolder.advancedDropCapText": "Impostazioni di capolettera", "DE.Views.DocumentHolder.advancedDropCapText": "Impostazioni di capolettera",
@ -1751,6 +1771,7 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistiche", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistiche",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Oggetto", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Oggetto",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Simboli", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Simboli",
"DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Etichette",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titolo documento", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titolo documento",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Caricato", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Caricato",
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Parole", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Parole",
@ -1759,7 +1780,7 @@
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "Persone che hanno diritti", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Persone che hanno diritti",
"DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Avviso", "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Avviso",
"DE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "con Password", "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.strSignature": "con Firma",
"DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Modifica documento", "DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Modifica documento",
"DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "La modifica eliminerà le firme dal documento.<br>Vuoi continuare?", "DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "La modifica eliminerà le firme dal documento.<br>Vuoi continuare?",
@ -1841,6 +1862,7 @@
"DE.Views.FormSettings.textComplex": "Campo complesso", "DE.Views.FormSettings.textComplex": "Campo complesso",
"DE.Views.FormSettings.textConnected": "Campi collegati", "DE.Views.FormSettings.textConnected": "Campi collegati",
"DE.Views.FormSettings.textDelete": "Elimina", "DE.Views.FormSettings.textDelete": "Elimina",
"DE.Views.FormSettings.textDigits": "Cifre",
"DE.Views.FormSettings.textDisconnect": "Disconnetti", "DE.Views.FormSettings.textDisconnect": "Disconnetti",
"DE.Views.FormSettings.textDropDown": "Menù a discesca", "DE.Views.FormSettings.textDropDown": "Menù a discesca",
"DE.Views.FormSettings.textExact": "Esattamente", "DE.Views.FormSettings.textExact": "Esattamente",
@ -1859,6 +1881,7 @@
"DE.Views.FormSettings.textMulti": "Campo con molte righe", "DE.Views.FormSettings.textMulti": "Campo con molte righe",
"DE.Views.FormSettings.textNever": "Mai", "DE.Views.FormSettings.textNever": "Mai",
"DE.Views.FormSettings.textNoBorder": "Senza bordo", "DE.Views.FormSettings.textNoBorder": "Senza bordo",
"DE.Views.FormSettings.textNone": "Nessuno",
"DE.Views.FormSettings.textPlaceholder": "Segnaposto", "DE.Views.FormSettings.textPlaceholder": "Segnaposto",
"DE.Views.FormSettings.textRadiobox": "Pulsante opzione", "DE.Views.FormSettings.textRadiobox": "Pulsante opzione",
"DE.Views.FormSettings.textRequired": "Richiesto", "DE.Views.FormSettings.textRequired": "Richiesto",
@ -2059,6 +2082,7 @@
"DE.Views.LeftMenu.tipComments": "Commenti", "DE.Views.LeftMenu.tipComments": "Commenti",
"DE.Views.LeftMenu.tipNavigation": "Navigazione", "DE.Views.LeftMenu.tipNavigation": "Navigazione",
"DE.Views.LeftMenu.tipOutline": "Intestazioni", "DE.Views.LeftMenu.tipOutline": "Intestazioni",
"DE.Views.LeftMenu.tipPageThumbnails": "Miniature delle pagine",
"DE.Views.LeftMenu.tipPlugins": "Plugin", "DE.Views.LeftMenu.tipPlugins": "Plugin",
"DE.Views.LeftMenu.tipSearch": "Ricerca", "DE.Views.LeftMenu.tipSearch": "Ricerca",
"DE.Views.LeftMenu.tipSupport": "Feedback & Supporto", "DE.Views.LeftMenu.tipSupport": "Feedback & Supporto",
@ -2366,6 +2390,14 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Imposta solo bordo superiore", "DE.Views.ParagraphSettingsAdvanced.tipTop": "Imposta solo bordo superiore",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Nessun bordo", "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.txtChartSettings": "Impostazioni grafico",
"DE.Views.RightMenu.txtFormSettings": "Impostazioni modulo", "DE.Views.RightMenu.txtFormSettings": "Impostazioni modulo",
"DE.Views.RightMenu.txtHeaderFooterSettings": "Impostazioni intestazione e piè di pagina", "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.tipOuter": "Imposta solo bordi esterni",
"DE.Views.TableSettings.tipRight": "Imposta solo bordo esterno destro", "DE.Views.TableSettings.tipRight": "Imposta solo bordo esterno destro",
"DE.Views.TableSettings.tipTop": "Imposta solo bordo esterno superiore", "DE.Views.TableSettings.tipTop": "Imposta solo bordo esterno superiore",
"DE.Views.TableSettings.txtGroupTable_Custom": "Personalizzato",
"DE.Views.TableSettings.txtNoBorders": "Nessun bordo", "DE.Views.TableSettings.txtNoBorders": "Nessun bordo",
"DE.Views.TableSettings.txtTable_Accent": "Accento", "DE.Views.TableSettings.txtTable_Accent": "Accento",
"DE.Views.TableSettings.txtTable_Colorful": "Colorato", "DE.Views.TableSettings.txtTable_Colorful": "Colorato",
@ -2684,7 +2717,7 @@
"DE.Views.TextToTableDialog.textWindow": "Autofit alla finestra", "DE.Views.TextToTableDialog.textWindow": "Autofit alla finestra",
"DE.Views.TextToTableDialog.txtAutoText": "Automatico", "DE.Views.TextToTableDialog.txtAutoText": "Automatico",
"DE.Views.Toolbar.capBtnAddComment": "Aggiungi commento", "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.capBtnColumns": "Colonne",
"DE.Views.Toolbar.capBtnComment": "Commento", "DE.Views.Toolbar.capBtnComment": "Commento",
"DE.Views.Toolbar.capBtnDateTime": "Data e ora", "DE.Views.Toolbar.capBtnDateTime": "Data e ora",
@ -2696,6 +2729,7 @@
"DE.Views.Toolbar.capBtnInsImage": "Immagine", "DE.Views.Toolbar.capBtnInsImage": "Immagine",
"DE.Views.Toolbar.capBtnInsPagebreak": "Interruzione di pagina", "DE.Views.Toolbar.capBtnInsPagebreak": "Interruzione di pagina",
"DE.Views.Toolbar.capBtnInsShape": "Forma", "DE.Views.Toolbar.capBtnInsShape": "Forma",
"DE.Views.Toolbar.capBtnInsSmartArt": "SmartArt",
"DE.Views.Toolbar.capBtnInsSymbol": "Simbolo", "DE.Views.Toolbar.capBtnInsSymbol": "Simbolo",
"DE.Views.Toolbar.capBtnInsTable": "Tabella", "DE.Views.Toolbar.capBtnInsTable": "Tabella",
"DE.Views.Toolbar.capBtnInsTextart": "Text Art", "DE.Views.Toolbar.capBtnInsTextart": "Text Art",

View file

@ -1379,6 +1379,8 @@
"DE.Views.DateTimeDialog.textLang": "언어", "DE.Views.DateTimeDialog.textLang": "언어",
"DE.Views.DateTimeDialog.textUpdate": "자동 업데이트", "DE.Views.DateTimeDialog.textUpdate": "자동 업데이트",
"DE.Views.DateTimeDialog.txtTitle": "날짜 및 시간", "DE.Views.DateTimeDialog.txtTitle": "날짜 및 시간",
"DE.Views.DocProtection.hintProtectDoc": "문서 보호",
"DE.Views.DocProtection.txtProtectDoc": "문서 보호",
"DE.Views.DocumentHolder.aboveText": "위", "DE.Views.DocumentHolder.aboveText": "위",
"DE.Views.DocumentHolder.addCommentText": "주석 추가", "DE.Views.DocumentHolder.addCommentText": "주석 추가",
"DE.Views.DocumentHolder.advancedDropCapText": "드롭 캡 설정", "DE.Views.DocumentHolder.advancedDropCapText": "드롭 캡 설정",
@ -2003,6 +2005,7 @@
"DE.Views.LineNumbersDialog.textStartAt": "시작", "DE.Views.LineNumbersDialog.textStartAt": "시작",
"DE.Views.LineNumbersDialog.textTitle": "행번호", "DE.Views.LineNumbersDialog.textTitle": "행번호",
"DE.Views.LineNumbersDialog.txtAutoText": "자동", "DE.Views.LineNumbersDialog.txtAutoText": "자동",
"DE.Views.Links.capBtnAddText": "텍스트추가",
"DE.Views.Links.capBtnBookmarks": "즐겨찾기", "DE.Views.Links.capBtnBookmarks": "즐겨찾기",
"DE.Views.Links.capBtnCaption": "참조", "DE.Views.Links.capBtnCaption": "참조",
"DE.Views.Links.capBtnContentsUpdate": "표 업데이트", "DE.Views.Links.capBtnContentsUpdate": "표 업데이트",
@ -2258,6 +2261,8 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "위쪽 테두리", "DE.Views.ParagraphSettingsAdvanced.tipTop": "위쪽 테두리",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "자동", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "자동",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "테두리 없음", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "테두리 없음",
"DE.Views.ProtectDialog.txtProtect": "보호",
"DE.Views.ProtectDialog.txtTitle": "보호",
"DE.Views.RightMenu.txtChartSettings": "차트 설정", "DE.Views.RightMenu.txtChartSettings": "차트 설정",
"DE.Views.RightMenu.txtFormSettings": "폼 설정", "DE.Views.RightMenu.txtFormSettings": "폼 설정",
"DE.Views.RightMenu.txtHeaderFooterSettings": "머리글 및 바닥 글 설정", "DE.Views.RightMenu.txtHeaderFooterSettings": "머리글 및 바닥 글 설정",

View file

@ -1405,6 +1405,8 @@
"DE.Views.DateTimeDialog.textLang": "Język", "DE.Views.DateTimeDialog.textLang": "Język",
"DE.Views.DateTimeDialog.textUpdate": "Aktualizuj automatycznie", "DE.Views.DateTimeDialog.textUpdate": "Aktualizuj automatycznie",
"DE.Views.DateTimeDialog.txtTitle": "Data i czas", "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.aboveText": "Powyżej",
"DE.Views.DocumentHolder.addCommentText": "Dodaj komentarz", "DE.Views.DocumentHolder.addCommentText": "Dodaj komentarz",
"DE.Views.DocumentHolder.advancedDropCapText": "Inicjały Ustawienia", "DE.Views.DocumentHolder.advancedDropCapText": "Inicjały Ustawienia",

View file

@ -125,6 +125,11 @@
"Common.define.chartData.textScatterSmoothMarker": "Dispersão com Linhas Suaves e Marcadores", "Common.define.chartData.textScatterSmoothMarker": "Dispersão com Linhas Suaves e Marcadores",
"Common.define.chartData.textStock": "Gráfico de ações", "Common.define.chartData.textStock": "Gráfico de ações",
"Common.define.chartData.textSurface": "Superfície", "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.textMoreButton": "Mais",
"Common.Translation.warnFileLocked": "Não pode editar o ficheiro porque este está a ser editado por outra aplicação.", "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", "Common.Translation.warnFileLockedBtnEdit": "Criar uma cópia",
@ -645,6 +650,7 @@
"DE.Controllers.Main.textClose": "Fechar", "DE.Controllers.Main.textClose": "Fechar",
"DE.Controllers.Main.textCloseTip": "Clique para fechar a dica", "DE.Controllers.Main.textCloseTip": "Clique para fechar a dica",
"DE.Controllers.Main.textContactUs": "Contacte a equipa comercial", "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.<br>Converter agora?", "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.<br>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.<br>Por favor contacte a equipa comercial.", "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.<br>Por favor contacte a equipa comercial.",
"DE.Controllers.Main.textDisconnect": "A ligação está perdida", "DE.Controllers.Main.textDisconnect": "A ligação está perdida",
@ -665,6 +671,7 @@
"DE.Controllers.Main.textStrict": "Modo estrito", "DE.Controllers.Main.textStrict": "Modo estrito",
"DE.Controllers.Main.textTryUndoRedo": "As funções Desfazer/Refazer foram desativadas para se poder co-editar o documento.<br>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.textTryUndoRedo": "As funções Desfazer/Refazer foram desativadas para se poder co-editar o documento.<br>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.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.titleLicenseExp": "Licença expirada",
"DE.Controllers.Main.titleServerVersion": "Editor atualizado", "DE.Controllers.Main.titleServerVersion": "Editor atualizado",
"DE.Controllers.Main.titleUpdateVersion": "Versão alterada", "DE.Controllers.Main.titleUpdateVersion": "Versão alterada",
@ -1447,7 +1454,7 @@
"DE.Views.DateTimeDialog.textFormat": "Formatos", "DE.Views.DateTimeDialog.textFormat": "Formatos",
"DE.Views.DateTimeDialog.textLang": "Idioma", "DE.Views.DateTimeDialog.textLang": "Idioma",
"DE.Views.DateTimeDialog.textUpdate": "Atualizar automaticamente", "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.hintProtectDoc": "Proteger o documento",
"DE.Views.DocProtection.txtDocProtectedComment": "O documento está protegido.<br>Apenas pode inserir comentários a este documento.", "DE.Views.DocProtection.txtDocProtectedComment": "O documento está protegido.<br>Apenas pode inserir comentários a este documento.",
"DE.Views.DocProtection.txtDocProtectedForms": "O documento está protegido.<br>Apenas pode preencher formulários neste documento.", "DE.Views.DocProtection.txtDocProtectedForms": "O documento está protegido.<br>Apenas pode preencher formulários neste documento.",
@ -1788,6 +1795,7 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Estatísticas", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Estatísticas",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Assunto", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Assunto",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Símbolos", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Símbolos",
"DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tags",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Carregado", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Carregado",
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Palavras", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Palavras",
@ -2750,7 +2758,7 @@
"DE.Views.Toolbar.capBtnBlankPage": "Página vazia", "DE.Views.Toolbar.capBtnBlankPage": "Página vazia",
"DE.Views.Toolbar.capBtnColumns": "Colunas", "DE.Views.Toolbar.capBtnColumns": "Colunas",
"DE.Views.Toolbar.capBtnComment": "Comentário", "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.capBtnInsChart": "Gráfico",
"DE.Views.Toolbar.capBtnInsControls": "Controlos de conteúdo", "DE.Views.Toolbar.capBtnInsControls": "Controlos de conteúdo",
"DE.Views.Toolbar.capBtnInsDropcap": "Letra capitular", "DE.Views.Toolbar.capBtnInsDropcap": "Letra capitular",
@ -2759,6 +2767,7 @@
"DE.Views.Toolbar.capBtnInsImage": "Imagem", "DE.Views.Toolbar.capBtnInsImage": "Imagem",
"DE.Views.Toolbar.capBtnInsPagebreak": "Quebras", "DE.Views.Toolbar.capBtnInsPagebreak": "Quebras",
"DE.Views.Toolbar.capBtnInsShape": "Forma", "DE.Views.Toolbar.capBtnInsShape": "Forma",
"DE.Views.Toolbar.capBtnInsSmartArt": "SmartArt",
"DE.Views.Toolbar.capBtnInsSymbol": "Símbolo", "DE.Views.Toolbar.capBtnInsSymbol": "Símbolo",
"DE.Views.Toolbar.capBtnInsTable": "Tabela", "DE.Views.Toolbar.capBtnInsTable": "Tabela",
"DE.Views.Toolbar.capBtnInsTextart": "Lágrima", "DE.Views.Toolbar.capBtnInsTextart": "Lágrima",

View file

@ -125,6 +125,165 @@
"Common.define.chartData.textScatterSmoothMarker": "Dispersão com linhas suaves e marcadores", "Common.define.chartData.textScatterSmoothMarker": "Dispersão com linhas suaves e marcadores",
"Common.define.chartData.textStock": "Gráfico de ações", "Common.define.chartData.textStock": "Gráfico de ações",
"Common.define.chartData.textSurface": "Superfície", "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.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.warnFileLocked": "Documento está em uso por outra aplicação. Você pode continuar editando e salvá-lo como uma cópia.",
"Common.Translation.warnFileLockedBtnEdit": "Criar uma cópia", "Common.Translation.warnFileLockedBtnEdit": "Criar uma cópia",
@ -281,7 +440,7 @@
"Common.Views.Comments.txtEmpty": "Não há comentários no documento.", "Common.Views.Comments.txtEmpty": "Não há comentários no documento.",
"Common.Views.CopyWarningDialog.textDontShow": "Não exibir esta mensagem novamente", "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.<br><br>Para copiar ou colar para ou de aplicativos externos a aba do editor, use as seguintes combinações do teclado:", "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.<br><br>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.textToCopy": "para Copiar",
"Common.Views.CopyWarningDialog.textToCut": "para Cortar", "Common.Views.CopyWarningDialog.textToCut": "para Cortar",
"Common.Views.CopyWarningDialog.textToPaste": "para Colar", "Common.Views.CopyWarningDialog.textToPaste": "para Colar",
@ -401,7 +560,7 @@
"Common.Views.ReviewChanges.txtAcceptCurrent": "Aceitar alterações atuais", "Common.Views.ReviewChanges.txtAcceptCurrent": "Aceitar alterações atuais",
"Common.Views.ReviewChanges.txtChat": "Chat", "Common.Views.ReviewChanges.txtChat": "Chat",
"Common.Views.ReviewChanges.txtClose": "Fechar", "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.txtCommentRemAll": "Excluir Todos os Comentários",
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Excluir comentários atuais", "Common.Views.ReviewChanges.txtCommentRemCurrent": "Excluir comentários atuais",
"Common.Views.ReviewChanges.txtCommentRemMy": "Excluir meus comentários", "Common.Views.ReviewChanges.txtCommentRemMy": "Excluir meus comentários",
@ -417,7 +576,7 @@
"Common.Views.ReviewChanges.txtEditing": "Editando", "Common.Views.ReviewChanges.txtEditing": "Editando",
"Common.Views.ReviewChanges.txtFinal": "Todas as alterações aceitas {0}", "Common.Views.ReviewChanges.txtFinal": "Todas as alterações aceitas {0}",
"Common.Views.ReviewChanges.txtFinalCap": "Final", "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.txtMarkup": "Todas as alterações {0}",
"Common.Views.ReviewChanges.txtMarkupCap": "Marcação", "Common.Views.ReviewChanges.txtMarkupCap": "Marcação",
"Common.Views.ReviewChanges.txtMarkupSimple": "Todas as mudanças {0}<br>Não há balões", "Common.Views.ReviewChanges.txtMarkupSimple": "Todas as mudanças {0}<br>Não há balões",
@ -441,7 +600,7 @@
"Common.Views.ReviewChanges.txtView": "Modo de exibição", "Common.Views.ReviewChanges.txtView": "Modo de exibição",
"Common.Views.ReviewChangesDialog.textTitle": "Rever alterações", "Common.Views.ReviewChangesDialog.textTitle": "Rever alterações",
"Common.Views.ReviewChangesDialog.txtAccept": "Aceitar", "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.txtAcceptCurrent": "Aceitar a alteração atual",
"Common.Views.ReviewChangesDialog.txtNext": "Para a próxima alteração", "Common.Views.ReviewChangesDialog.txtNext": "Para a próxima alteração",
"Common.Views.ReviewChangesDialog.txtPrev": "Para a alteração anterior", "Common.Views.ReviewChangesDialog.txtPrev": "Para a alteração anterior",
@ -503,9 +662,9 @@
"Common.Views.SignDialog.tipFontSize": "Tamanho da fonte", "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.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.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.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.textInstructions": "Instruções para o Assinante",
"Common.Views.SignSettingsDialog.textShowDate": "Exibir a data da assinatura na linha da assinatura", "Common.Views.SignSettingsDialog.textShowDate": "Exibir a data da assinatura na linha da assinatura",
"Common.Views.SignSettingsDialog.textTitle": "Configurações 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.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.applyChangesTextText": "Carregando as alterações...",
"DE.Controllers.Main.applyChangesTitleText": "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.<br>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.convertationTimeoutText": "Tempo limite de conversão excedido.",
"DE.Controllers.Main.criticalErrorExtText": "Pressione \"OK\" para voltar para a lista de documentos.", "DE.Controllers.Main.criticalErrorExtText": "Pressione \"OK\" para voltar para a lista de documentos.",
"DE.Controllers.Main.criticalErrorTitle": "Erro", "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.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. <br> Por favor, contate seu administrador de Servidor de Documentos para detalhes.", "DE.Controllers.Main.errorFileSizeExceed": "O tamanho do arquivo excede o limite de seu servidor. <br> 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.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.<br>O conteúdo do arquivo não corresponde à extensão do arquivo.",
"DE.Controllers.Main.errorInconsistentExtDocx": "Ocorreu um erro ao abrir o arquivo.<br>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.<br>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.<br>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.<br>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.errorKeyEncrypt": "Descritor de chave desconhecido",
"DE.Controllers.Main.errorKeyExpire": "Descritor de chave expirado", "DE.Controllers.Main.errorKeyExpire": "Descritor de chave expirado",
"DE.Controllers.Main.errorLoadingFont": "As fontes não foram carregadas. <br> Entre em contato com o administrador do Document Server.", "DE.Controllers.Main.errorLoadingFont": "As fontes não foram carregadas. <br> Entre em contato com o administrador do Document Server.",
@ -645,6 +810,7 @@
"DE.Controllers.Main.textClose": "Fechar", "DE.Controllers.Main.textClose": "Fechar",
"DE.Controllers.Main.textCloseTip": "Clique para fechar a dica", "DE.Controllers.Main.textCloseTip": "Clique para fechar a dica",
"DE.Controllers.Main.textContactUs": "Contate as vendas", "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. <br> Converter agora?", "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. <br> 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. <br> Por favor, contate o Departamento de Vendas para fazer cotação.", "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. <br> Por favor, contate o Departamento de Vendas para fazer cotação.",
"DE.Controllers.Main.textDisconnect": "A conexão está perdida", "DE.Controllers.Main.textDisconnect": "A conexão está perdida",
@ -665,6 +831,7 @@
"DE.Controllers.Main.textStrict": "Modo estrito", "DE.Controllers.Main.textStrict": "Modo estrito",
"DE.Controllers.Main.textTryUndoRedo": "As funções Desfazer/Refazer ficam desabilitadas no modo de Coedição Rápida.<br>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.textTryUndoRedo": "As funções Desfazer/Refazer ficam desabilitadas no modo de Coedição Rápida.<br>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.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.titleLicenseExp": "A licença expirou",
"DE.Controllers.Main.titleServerVersion": "Editor atualizado", "DE.Controllers.Main.titleServerVersion": "Editor atualizado",
"DE.Controllers.Main.titleUpdateVersion": "Versão alterada", "DE.Controllers.Main.titleUpdateVersion": "Versão alterada",
@ -976,7 +1143,7 @@
"DE.Controllers.Toolbar.txtAccent_Bar": "Barra", "DE.Controllers.Toolbar.txtAccent_Bar": "Barra",
"DE.Controllers.Toolbar.txtAccent_BarBot": "Barra inferior", "DE.Controllers.Toolbar.txtAccent_BarBot": "Barra inferior",
"DE.Controllers.Toolbar.txtAccent_BarTop": "Barra superior", "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_BorderBoxCustom": "Fórmula embalada(Exemplo)",
"DE.Controllers.Toolbar.txtAccent_Check": "Verificar", "DE.Controllers.Toolbar.txtAccent_Check": "Verificar",
"DE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Chave Inferior", "DE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Chave Inferior",
@ -1454,7 +1621,7 @@
"DE.Views.DocProtection.txtDocProtectedTrack": "O documento está protegido.<br>Você pode editar este documento, mas todas as alterações serão rastreadas.", "DE.Views.DocProtection.txtDocProtectedTrack": "O documento está protegido.<br>Você pode editar este documento, mas todas as alterações serão rastreadas.",
"DE.Views.DocProtection.txtDocProtectedView": "O documento está protegido.<br>Você só pode visualizar este documento.", "DE.Views.DocProtection.txtDocProtectedView": "O documento está protegido.<br>Você só pode visualizar este documento.",
"DE.Views.DocProtection.txtDocUnlockDescription": "Digite uma senha para desproteger o 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.aboveText": "Acima",
"DE.Views.DocumentHolder.addCommentText": "Adicionar comentário", "DE.Views.DocumentHolder.addCommentText": "Adicionar comentário",
"DE.Views.DocumentHolder.advancedDropCapText": "Configurações de capitulação", "DE.Views.DocumentHolder.advancedDropCapText": "Configurações de capitulação",
@ -1611,7 +1778,7 @@
"DE.Views.DocumentHolder.txtAddTop": "Adicionar borda superior", "DE.Views.DocumentHolder.txtAddTop": "Adicionar borda superior",
"DE.Views.DocumentHolder.txtAddVer": "Adicionar linha vertical", "DE.Views.DocumentHolder.txtAddVer": "Adicionar linha vertical",
"DE.Views.DocumentHolder.txtAlignToChar": "Alinhar à símbolo", "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.txtBorderProps": "Propriedades de borda",
"DE.Views.DocumentHolder.txtBottom": "Inferior", "DE.Views.DocumentHolder.txtBottom": "Inferior",
"DE.Views.DocumentHolder.txtColumnAlign": "Alinhamento de colunas", "DE.Views.DocumentHolder.txtColumnAlign": "Alinhamento de colunas",
@ -1648,7 +1815,7 @@
"DE.Views.DocumentHolder.txtHideVer": "Ocultar linha vertical", "DE.Views.DocumentHolder.txtHideVer": "Ocultar linha vertical",
"DE.Views.DocumentHolder.txtIncreaseArg": "Aumentar o tamanho do argumento", "DE.Views.DocumentHolder.txtIncreaseArg": "Aumentar o tamanho do argumento",
"DE.Views.DocumentHolder.txtInFront": "Em frente", "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.txtInsertArgAfter": "Inserir argumento após",
"DE.Views.DocumentHolder.txtInsertArgBefore": "Inserir argumento antes", "DE.Views.DocumentHolder.txtInsertArgBefore": "Inserir argumento antes",
"DE.Views.DocumentHolder.txtInsertBreak": "Inserir quebra manual", "DE.Views.DocumentHolder.txtInsertBreak": "Inserir quebra manual",
@ -1700,7 +1867,7 @@
"DE.Views.DropcapSettingsAdvanced.textAlign": "Alinhamento", "DE.Views.DropcapSettingsAdvanced.textAlign": "Alinhamento",
"DE.Views.DropcapSettingsAdvanced.textAtLeast": "Pelo menos", "DE.Views.DropcapSettingsAdvanced.textAtLeast": "Pelo menos",
"DE.Views.DropcapSettingsAdvanced.textAuto": "Automático", "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.textBorderColor": "Cor da borda",
"DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Clique no diagrama ou use os botões para selecionar bordas", "DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Clique no diagrama ou use os botões para selecionar bordas",
"DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Tamanho da borda", "DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Tamanho da borda",
@ -1746,7 +1913,7 @@
"DE.Views.FileMenu.btnExitCaption": "Fechar", "DE.Views.FileMenu.btnExitCaption": "Fechar",
"DE.Views.FileMenu.btnFileOpenCaption": "Abrir", "DE.Views.FileMenu.btnFileOpenCaption": "Abrir",
"DE.Views.FileMenu.btnHelpCaption": "Ajuda", "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.btnInfoCaption": "Informações do documento",
"DE.Views.FileMenu.btnPrintCaption": "Imprimir", "DE.Views.FileMenu.btnPrintCaption": "Imprimir",
"DE.Views.FileMenu.btnProtectCaption": "Proteger", "DE.Views.FileMenu.btnProtectCaption": "Proteger",
@ -1788,6 +1955,7 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Estatísticas", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Estatísticas",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Assunto", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Assunto",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Símbolos", "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.txtTitle": "Título do documento",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Carregado", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Carregado",
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Palavras", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Palavras",
@ -1796,7 +1964,7 @@
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "Pessoas que têm direitos", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Pessoas que têm direitos",
"DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Aviso", "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Aviso",
"DE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Com senha", "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.strSignature": "Com assinatura",
"DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Editar documento", "DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Editar documento",
"DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Editar excluirá as assinaturas do documento. <br> Deseja continuar?", "DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Editar excluirá as assinaturas do documento. <br> 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.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.ProtectDoc.txtView": "Visualizar assinaturas",
"DE.Views.FileMenuPanels.Settings.okButtonText": "Aplicar", "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.strFast": "Rápido",
"DE.Views.FileMenuPanels.Settings.strFontRender": "Dicas de fonte", "DE.Views.FileMenuPanels.Settings.strFontRender": "Dicas de fonte",
"DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignorar palavras MAIÚSCULAS", "DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignorar palavras MAIÚSCULAS",
@ -2089,9 +2257,9 @@
"DE.Views.ImageSettingsAdvanced.textWeightArrows": "Pesos e Setas", "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Pesos e Setas",
"DE.Views.ImageSettingsAdvanced.textWidth": "Largura", "DE.Views.ImageSettingsAdvanced.textWidth": "Largura",
"DE.Views.ImageSettingsAdvanced.textWrap": "Estilo da quebra automática", "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.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.textWrapSquareTooltip": "Quadrado",
"DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Através", "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Através",
"DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Justo", "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Justo",
@ -2123,9 +2291,9 @@
"DE.Views.LineNumbersDialog.textRestartEachSection": "Reiniciar cada uma das seções", "DE.Views.LineNumbersDialog.textRestartEachSection": "Reiniciar cada uma das seções",
"DE.Views.LineNumbersDialog.textSection": "Seção atual", "DE.Views.LineNumbersDialog.textSection": "Seção atual",
"DE.Views.LineNumbersDialog.textStartAt": "Começar em", "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.LineNumbersDialog.txtAutoText": "Automático",
"DE.Views.Links.capBtnAddText": "Adicionar Texto", "DE.Views.Links.capBtnAddText": "Adicionar texto",
"DE.Views.Links.capBtnBookmarks": "Favorito", "DE.Views.Links.capBtnBookmarks": "Favorito",
"DE.Views.Links.capBtnCaption": "Legenda", "DE.Views.Links.capBtnCaption": "Legenda",
"DE.Views.Links.capBtnContentsUpdate": "Atualizar tabela", "DE.Views.Links.capBtnContentsUpdate": "Atualizar tabela",
@ -2352,7 +2520,7 @@
"DE.Views.ParagraphSettingsAdvanced.textAll": "Tudo", "DE.Views.ParagraphSettingsAdvanced.textAll": "Tudo",
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Pelo menos", "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Pelo menos",
"DE.Views.ParagraphSettingsAdvanced.textAuto": "Múltiplo", "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.textBodyText": "Texto Básico",
"DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Cor da borda", "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", "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.textStyle": "Estilo",
"DE.Views.TableOfContentsSettings.textStyles": "Estilos", "DE.Views.TableOfContentsSettings.textStyles": "Estilos",
"DE.Views.TableOfContentsSettings.textTable": "Tabela", "DE.Views.TableOfContentsSettings.textTable": "Tabela",
"DE.Views.TableOfContentsSettings.textTitle": "Tabela de Conteúdo", "DE.Views.TableOfContentsSettings.textTitle": "Tabela de conteúdo",
"DE.Views.TableOfContentsSettings.textTitleTOF": "Tabela de Figuras", "DE.Views.TableOfContentsSettings.textTitleTOF": "Tabela de figuras",
"DE.Views.TableOfContentsSettings.txtCentered": "Centralizado", "DE.Views.TableOfContentsSettings.txtCentered": "Centralizado",
"DE.Views.TableOfContentsSettings.txtClassic": "Clássico", "DE.Views.TableOfContentsSettings.txtClassic": "Clássico",
"DE.Views.TableOfContentsSettings.txtCurrent": "Atual", "DE.Views.TableOfContentsSettings.txtCurrent": "Atual",
@ -2683,7 +2851,7 @@
"DE.Views.TableSettingsAdvanced.textWrap": "Disposição do texto", "DE.Views.TableSettingsAdvanced.textWrap": "Disposição do texto",
"DE.Views.TableSettingsAdvanced.textWrapNoneTooltip": "Tabela embutida", "DE.Views.TableSettingsAdvanced.textWrapNoneTooltip": "Tabela embutida",
"DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "Tabela de fluxo", "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.textWrapText": "Quebrar texto ",
"DE.Views.TableSettingsAdvanced.tipAll": "Definir borda externa e todas as linhas internas", "DE.Views.TableSettingsAdvanced.tipAll": "Definir borda externa e todas as linhas internas",
"DE.Views.TableSettingsAdvanced.tipCellAll": "Definir bordas para células internas apenas", "DE.Views.TableSettingsAdvanced.tipCellAll": "Definir bordas para células internas apenas",
@ -2759,6 +2927,7 @@
"DE.Views.Toolbar.capBtnInsImage": "Imagem", "DE.Views.Toolbar.capBtnInsImage": "Imagem",
"DE.Views.Toolbar.capBtnInsPagebreak": "Quebras", "DE.Views.Toolbar.capBtnInsPagebreak": "Quebras",
"DE.Views.Toolbar.capBtnInsShape": "Forma", "DE.Views.Toolbar.capBtnInsShape": "Forma",
"DE.Views.Toolbar.capBtnInsSmartArt": "SmartArt",
"DE.Views.Toolbar.capBtnInsSymbol": "Símbolo", "DE.Views.Toolbar.capBtnInsSymbol": "Símbolo",
"DE.Views.Toolbar.capBtnInsTable": "Tabela", "DE.Views.Toolbar.capBtnInsTable": "Tabela",
"DE.Views.Toolbar.capBtnInsTextart": "Arte de texto", "DE.Views.Toolbar.capBtnInsTextart": "Arte de texto",
@ -2909,6 +3078,7 @@
"DE.Views.Toolbar.tipInsertImage": "Inserir imagem", "DE.Views.Toolbar.tipInsertImage": "Inserir imagem",
"DE.Views.Toolbar.tipInsertNum": "Inserir número da página", "DE.Views.Toolbar.tipInsertNum": "Inserir número da página",
"DE.Views.Toolbar.tipInsertShape": "Inserir forma automática", "DE.Views.Toolbar.tipInsertShape": "Inserir forma automática",
"DE.Views.Toolbar.tipInsertSmartArt": "Inserir SmartArt",
"DE.Views.Toolbar.tipInsertSymbol": "Inserir símbolo", "DE.Views.Toolbar.tipInsertSymbol": "Inserir símbolo",
"DE.Views.Toolbar.tipInsertTable": "Inserir tabela", "DE.Views.Toolbar.tipInsertTable": "Inserir tabela",
"DE.Views.Toolbar.tipInsertText": "Inserir caixa de texto", "DE.Views.Toolbar.tipInsertText": "Inserir caixa de texto",
@ -2985,8 +3155,10 @@
"DE.Views.ViewTab.textFitToPage": "Ajustar a página", "DE.Views.ViewTab.textFitToPage": "Ajustar a página",
"DE.Views.ViewTab.textFitToWidth": "Ajustar largura", "DE.Views.ViewTab.textFitToWidth": "Ajustar largura",
"DE.Views.ViewTab.textInterfaceTheme": "Tema de interface", "DE.Views.ViewTab.textInterfaceTheme": "Tema de interface",
"DE.Views.ViewTab.textLeftMenu": "Painel esquerdo",
"DE.Views.ViewTab.textNavigation": "Navegação", "DE.Views.ViewTab.textNavigation": "Navegação",
"DE.Views.ViewTab.textOutline": "Cabeçalhos", "DE.Views.ViewTab.textOutline": "Cabeçalhos",
"DE.Views.ViewTab.textRightMenu": "Painel direito",
"DE.Views.ViewTab.textRulers": "Regras", "DE.Views.ViewTab.textRulers": "Regras",
"DE.Views.ViewTab.textStatusBar": "Barra de status", "DE.Views.ViewTab.textStatusBar": "Barra de status",
"DE.Views.ViewTab.textZoom": "Ampliação", "DE.Views.ViewTab.textZoom": "Ampliação",

View file

@ -1425,6 +1425,8 @@
"DE.Views.DateTimeDialog.textLang": "Limbă", "DE.Views.DateTimeDialog.textLang": "Limbă",
"DE.Views.DateTimeDialog.textUpdate": "Actualizarea automată", "DE.Views.DateTimeDialog.textUpdate": "Actualizarea automată",
"DE.Views.DateTimeDialog.txtTitle": "Dată și oră", "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.aboveText": "Deasupra",
"DE.Views.DocumentHolder.addCommentText": "Adaugă comentariu", "DE.Views.DocumentHolder.addCommentText": "Adaugă comentariu",
"DE.Views.DocumentHolder.advancedDropCapText": "Setări majusculă încorporată", "DE.Views.DocumentHolder.advancedDropCapText": "Setări majusculă încorporată",

View file

@ -612,6 +612,7 @@
"Common.Views.ReviewPopover.textCancel": "Отмена", "Common.Views.ReviewPopover.textCancel": "Отмена",
"Common.Views.ReviewPopover.textClose": "Закрыть", "Common.Views.ReviewPopover.textClose": "Закрыть",
"Common.Views.ReviewPopover.textEdit": "OK", "Common.Views.ReviewPopover.textEdit": "OK",
"Common.Views.ReviewPopover.textEnterComment": "Введите здесь свой комментарий",
"Common.Views.ReviewPopover.textFollowMove": "Перейти на прежнее место", "Common.Views.ReviewPopover.textFollowMove": "Перейти на прежнее место",
"Common.Views.ReviewPopover.textMention": "+упоминание предоставит доступ к документу и отправит оповещение по почте", "Common.Views.ReviewPopover.textMention": "+упоминание предоставит доступ к документу и отправит оповещение по почте",
"Common.Views.ReviewPopover.textMentionNotify": "+упоминание отправит пользователю оповещение по почте", "Common.Views.ReviewPopover.textMentionNotify": "+упоминание отправит пользователю оповещение по почте",
@ -742,6 +743,11 @@
"DE.Controllers.Main.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.", "DE.Controllers.Main.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.",
"DE.Controllers.Main.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.<br>Обратитесь к администратору Сервера документов для получения дополнительной информации.", "DE.Controllers.Main.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.<br>Обратитесь к администратору Сервера документов для получения дополнительной информации.",
"DE.Controllers.Main.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на диск или повторите попытку позже.", "DE.Controllers.Main.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на диск или повторите попытку позже.",
"DE.Controllers.Main.errorInconsistentExt": "При открытии файла произошла ошибка.<br>Содержимое файла не соответствует расширению файла.",
"DE.Controllers.Main.errorInconsistentExtDocx": "При открытии файла произошла ошибка.<br>Содержимое файла соответствует документам (например, docx), но файл имеет несоответствующее расширение: %1.",
"DE.Controllers.Main.errorInconsistentExtPdf": "При открытии файла произошла ошибка.<br>Содержимое файла соответствует одному из следующих форматов: pdf/djvu/xps/oxps, но файл имеет несоответствующее расширение: %1.",
"DE.Controllers.Main.errorInconsistentExtPptx": "При открытии файла произошла ошибка.<br>Содержимое файла соответствует презентациям (например, pptx), но файл имеет несоответствующее расширение: %1.",
"DE.Controllers.Main.errorInconsistentExtXlsx": "При открытии файла произошла ошибка.<br>Содержимое файла соответствует электронным таблицам (например, xlsx), но файл имеет несоответствующее расширение: %1.",
"DE.Controllers.Main.errorKeyEncrypt": "Неизвестный дескриптор ключа", "DE.Controllers.Main.errorKeyEncrypt": "Неизвестный дескриптор ключа",
"DE.Controllers.Main.errorKeyExpire": "Срок действия дескриптора ключа истек", "DE.Controllers.Main.errorKeyExpire": "Срок действия дескриптора ключа истек",
"DE.Controllers.Main.errorLoadingFont": "Шрифты не загружены.<br>Пожалуйста, обратитесь к администратору Сервера документов.", "DE.Controllers.Main.errorLoadingFont": "Шрифты не загружены.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
@ -3150,8 +3156,10 @@
"DE.Views.ViewTab.textFitToPage": "По размеру страницы", "DE.Views.ViewTab.textFitToPage": "По размеру страницы",
"DE.Views.ViewTab.textFitToWidth": "По ширине", "DE.Views.ViewTab.textFitToWidth": "По ширине",
"DE.Views.ViewTab.textInterfaceTheme": "Тема интерфейса", "DE.Views.ViewTab.textInterfaceTheme": "Тема интерфейса",
"DE.Views.ViewTab.textLeftMenu": "Левая панель",
"DE.Views.ViewTab.textNavigation": "Навигация", "DE.Views.ViewTab.textNavigation": "Навигация",
"DE.Views.ViewTab.textOutline": "Заголовки", "DE.Views.ViewTab.textOutline": "Заголовки",
"DE.Views.ViewTab.textRightMenu": "Правая панель",
"DE.Views.ViewTab.textRulers": "Линейки", "DE.Views.ViewTab.textRulers": "Линейки",
"DE.Views.ViewTab.textStatusBar": "Строка состояния", "DE.Views.ViewTab.textStatusBar": "Строка состояния",
"DE.Views.ViewTab.textZoom": "Масштаб", "DE.Views.ViewTab.textZoom": "Масштаб",

View file

@ -1377,6 +1377,8 @@
"DE.Views.DateTimeDialog.textLang": "Jazyk", "DE.Views.DateTimeDialog.textLang": "Jazyk",
"DE.Views.DateTimeDialog.textUpdate": "Aktualizovať automaticky", "DE.Views.DateTimeDialog.textUpdate": "Aktualizovať automaticky",
"DE.Views.DateTimeDialog.txtTitle": "Dátum a čas", "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.aboveText": "Nad",
"DE.Views.DocumentHolder.addCommentText": "Pridať komentár", "DE.Views.DocumentHolder.addCommentText": "Pridať komentár",
"DE.Views.DocumentHolder.advancedDropCapText": "Nastavenia kvapkového uzáveru", "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.tipTop": "Nastaviť len horné orámovanie",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automaticky", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automaticky",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Bez orámovania", "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.txtChartSettings": "Nastavenia grafu",
"DE.Views.RightMenu.txtFormSettings": "Nastavenia formulára", "DE.Views.RightMenu.txtFormSettings": "Nastavenia formulára",
"DE.Views.RightMenu.txtHeaderFooterSettings": "Nastavenie hlavičky a päty", "DE.Views.RightMenu.txtHeaderFooterSettings": "Nastavenie hlavičky a päty",

View file

@ -61,7 +61,7 @@
"Common.Controllers.ReviewChanges.textParaMoveTo": "<b>Premakni se:</b>", "Common.Controllers.ReviewChanges.textParaMoveTo": "<b>Premakni se:</b>",
"Common.Controllers.ReviewChanges.textPosition": "Position", "Common.Controllers.ReviewChanges.textPosition": "Position",
"Common.Controllers.ReviewChanges.textRight": "Align right", "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.textShd": "Background color",
"Common.Controllers.ReviewChanges.textSmallCaps": "Small caps", "Common.Controllers.ReviewChanges.textSmallCaps": "Small caps",
"Common.Controllers.ReviewChanges.textSpacing": "Spacing", "Common.Controllers.ReviewChanges.textSpacing": "Spacing",
@ -430,6 +430,7 @@
"DE.Controllers.Main.textLoadingDocument": "Nalaganje dokumenta", "DE.Controllers.Main.textLoadingDocument": "Nalaganje dokumenta",
"DE.Controllers.Main.textNoLicenseTitle": "%1 omejitev povezave", "DE.Controllers.Main.textNoLicenseTitle": "%1 omejitev povezave",
"DE.Controllers.Main.textReconnect": "Povezava je obnovljena", "DE.Controllers.Main.textReconnect": "Povezava je obnovljena",
"DE.Controllers.Main.textShape": "Oblika",
"DE.Controllers.Main.textStrict": "Strict mode", "DE.Controllers.Main.textStrict": "Strict mode",
"DE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.<br>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.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.<br>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", "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_8": "Naslov 8",
"DE.Controllers.Main.txtStyle_Heading_9": "Naslov 9", "DE.Controllers.Main.txtStyle_Heading_9": "Naslov 9",
"DE.Controllers.Main.txtStyle_Normal": "Normalno", "DE.Controllers.Main.txtStyle_Normal": "Normalno",
"DE.Controllers.Main.txtTableOfContents": "Vsebina",
"DE.Controllers.Main.txtTypeEquation": "Tukaj vnesite enačbo", "DE.Controllers.Main.txtTypeEquation": "Tukaj vnesite enačbo",
"DE.Controllers.Main.txtXAxis": "X os", "DE.Controllers.Main.txtXAxis": "X os",
"DE.Controllers.Main.txtYAxis": "Y os", "DE.Controllers.Main.txtYAxis": "Y os",
@ -939,6 +941,7 @@
"DE.Views.CrossReferenceDialog.textEndNoteNum": "Številka končne opombe", "DE.Views.CrossReferenceDialog.textEndNoteNum": "Številka končne opombe",
"DE.Views.CrossReferenceDialog.textEquation": "Enačba", "DE.Views.CrossReferenceDialog.textEquation": "Enačba",
"DE.Views.CrossReferenceDialog.textFootnote": "Sprotna opomba", "DE.Views.CrossReferenceDialog.textFootnote": "Sprotna opomba",
"DE.Views.CrossReferenceDialog.textHeading": "Naslov",
"DE.Views.CrossReferenceDialog.textNoteNum": "Številka sprotne opombe", "DE.Views.CrossReferenceDialog.textNoteNum": "Številka sprotne opombe",
"DE.Views.CustomColumnsDialog.textColumns": "Število stolpcev", "DE.Views.CustomColumnsDialog.textColumns": "Število stolpcev",
"DE.Views.CustomColumnsDialog.textTitle": "Stolpci", "DE.Views.CustomColumnsDialog.textTitle": "Stolpci",
@ -947,6 +950,8 @@
"DE.Views.DateTimeDialog.textLang": "Jezik", "DE.Views.DateTimeDialog.textLang": "Jezik",
"DE.Views.DateTimeDialog.textUpdate": "Samodejno posodobi", "DE.Views.DateTimeDialog.textUpdate": "Samodejno posodobi",
"DE.Views.DateTimeDialog.txtTitle": "Datum & Ura", "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.aboveText": "Nad",
"DE.Views.DocumentHolder.addCommentText": "Dodaj komentar", "DE.Views.DocumentHolder.addCommentText": "Dodaj komentar",
"DE.Views.DocumentHolder.advancedFrameText": "Napredne nastavitve okvirja", "DE.Views.DocumentHolder.advancedFrameText": "Napredne nastavitve okvirja",
@ -1044,6 +1049,7 @@
"DE.Views.DocumentHolder.textShapeAlignRight": "Poravnaj desno", "DE.Views.DocumentHolder.textShapeAlignRight": "Poravnaj desno",
"DE.Views.DocumentHolder.textShapeAlignTop": "Poravnaj vrh", "DE.Views.DocumentHolder.textShapeAlignTop": "Poravnaj vrh",
"DE.Views.DocumentHolder.textTitleCellsRemove": "Izbriši celice", "DE.Views.DocumentHolder.textTitleCellsRemove": "Izbriši celice",
"DE.Views.DocumentHolder.textTOC": "Vsebina",
"DE.Views.DocumentHolder.textUndo": "Razveljavi", "DE.Views.DocumentHolder.textUndo": "Razveljavi",
"DE.Views.DocumentHolder.textWrap": "Slog zavijanja", "DE.Views.DocumentHolder.textWrap": "Slog zavijanja",
"DE.Views.DocumentHolder.tipIsLocked": "Ta element trenutno ureja drug uporabnik.", "DE.Views.DocumentHolder.tipIsLocked": "Ta element trenutno ureja drug uporabnik.",
@ -1393,6 +1399,7 @@
"DE.Views.LeftMenu.tipChat": "Pogovor", "DE.Views.LeftMenu.tipChat": "Pogovor",
"DE.Views.LeftMenu.tipComments": "Komentarji", "DE.Views.LeftMenu.tipComments": "Komentarji",
"DE.Views.LeftMenu.tipNavigation": "Navigacija", "DE.Views.LeftMenu.tipNavigation": "Navigacija",
"DE.Views.LeftMenu.tipOutline": "Naslovi",
"DE.Views.LeftMenu.tipPlugins": "Razširitve", "DE.Views.LeftMenu.tipPlugins": "Razširitve",
"DE.Views.LeftMenu.tipSearch": "Iskanje", "DE.Views.LeftMenu.tipSearch": "Iskanje",
"DE.Views.LeftMenu.tipSupport": "Povratne informacije & Pomoč", "DE.Views.LeftMenu.tipSupport": "Povratne informacije & Pomoč",
@ -1405,6 +1412,7 @@
"DE.Views.Links.capBtnAddText": "Dodaj besedilo", "DE.Views.Links.capBtnAddText": "Dodaj besedilo",
"DE.Views.Links.capBtnBookmarks": "Zaznamek", "DE.Views.Links.capBtnBookmarks": "Zaznamek",
"DE.Views.Links.capBtnCaption": "Napis", "DE.Views.Links.capBtnCaption": "Napis",
"DE.Views.Links.capBtnInsContents": "Vsebina",
"DE.Views.Links.capBtnInsFootnote": "Sprotna opomba", "DE.Views.Links.capBtnInsFootnote": "Sprotna opomba",
"DE.Views.Links.capBtnInsLink": "Hiperpovezava", "DE.Views.Links.capBtnInsLink": "Hiperpovezava",
"DE.Views.Links.confirmReplaceTOF": "Ali želite zamenjati izbrano kazalo slik?", "DE.Views.Links.confirmReplaceTOF": "Ali želite zamenjati izbrano kazalo slik?",
@ -1478,6 +1486,7 @@
"DE.Views.MailMergeSettings.txtPrev": "To previous record", "DE.Views.MailMergeSettings.txtPrev": "To previous record",
"DE.Views.MailMergeSettings.txtUntitled": "Untitled", "DE.Views.MailMergeSettings.txtUntitled": "Untitled",
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Starting merge failed", "DE.Views.MailMergeSettings.warnProcessMailMerge": "Starting merge failed",
"DE.Views.Navigation.strNavigate": "Naslovi",
"DE.Views.Navigation.txtEmpty": "V dokumentu ni naslovov.<br>Z uporabo slogov v besedilu določite naslove, tako se bodo prikazali v kazalu in navigaciji.", "DE.Views.Navigation.txtEmpty": "V dokumentu ni naslovov.<br>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.txtEmptyViewer": "V dokumentu ni naslovov.",
"DE.Views.Navigation.txtFontSize": "Velikost pisave", "DE.Views.Navigation.txtFontSize": "Velikost pisave",
@ -1595,6 +1604,8 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Nastavi le zgornjo mejo", "DE.Views.ParagraphSettingsAdvanced.tipTop": "Nastavi le zgornjo mejo",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Samodejno", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Samodejno",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Ni mej", "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.txtChartSettings": "Nastavitve grafa",
"DE.Views.RightMenu.txtFormSettings": "Nastavitve obrazca", "DE.Views.RightMenu.txtFormSettings": "Nastavitve obrazca",
"DE.Views.RightMenu.txtHeaderFooterSettings": "Nastavitve glave in noge", "DE.Views.RightMenu.txtHeaderFooterSettings": "Nastavitve glave in noge",
@ -1691,6 +1702,7 @@
"DE.Views.TableOfContentsSettings.textNone": "Nič", "DE.Views.TableOfContentsSettings.textNone": "Nič",
"DE.Views.TableOfContentsSettings.textRadioCaption": "Napis", "DE.Views.TableOfContentsSettings.textRadioCaption": "Napis",
"DE.Views.TableOfContentsSettings.textStyle": "Slog", "DE.Views.TableOfContentsSettings.textStyle": "Slog",
"DE.Views.TableOfContentsSettings.textTitle": "Vsebina",
"DE.Views.TableOfContentsSettings.txtCentered": "Poravnano na sredino", "DE.Views.TableOfContentsSettings.txtCentered": "Poravnano na sredino",
"DE.Views.TableOfContentsSettings.txtClassic": "Klasično", "DE.Views.TableOfContentsSettings.txtClassic": "Klasično",
"DE.Views.TableOfContentsSettings.txtOnline": "Vpisan", "DE.Views.TableOfContentsSettings.txtOnline": "Vpisan",
@ -1842,6 +1854,7 @@
"DE.Views.Toolbar.capBtnInsHeader": "Glava/noga", "DE.Views.Toolbar.capBtnInsHeader": "Glava/noga",
"DE.Views.Toolbar.capBtnInsImage": "Slika", "DE.Views.Toolbar.capBtnInsImage": "Slika",
"DE.Views.Toolbar.capBtnInsPagebreak": "Prelomi", "DE.Views.Toolbar.capBtnInsPagebreak": "Prelomi",
"DE.Views.Toolbar.capBtnInsShape": "Oblika",
"DE.Views.Toolbar.capBtnInsSymbol": "Simbol", "DE.Views.Toolbar.capBtnInsSymbol": "Simbol",
"DE.Views.Toolbar.capBtnInsTable": "Tabela", "DE.Views.Toolbar.capBtnInsTable": "Tabela",
"DE.Views.Toolbar.capBtnInsTextbox": "Polje z besedilom", "DE.Views.Toolbar.capBtnInsTextbox": "Polje z besedilom",
@ -1922,6 +1935,7 @@
"DE.Views.Toolbar.textTabLayout": "Postavitev", "DE.Views.Toolbar.textTabLayout": "Postavitev",
"DE.Views.Toolbar.textTabProtect": "Zaščita", "DE.Views.Toolbar.textTabProtect": "Zaščita",
"DE.Views.Toolbar.textTabReview": "Pregled", "DE.Views.Toolbar.textTabReview": "Pregled",
"DE.Views.Toolbar.textTabView": "Pogled",
"DE.Views.Toolbar.textTitleError": "Napaka", "DE.Views.Toolbar.textTitleError": "Napaka",
"DE.Views.Toolbar.textToCurrent": "Do trenutnega položaja", "DE.Views.Toolbar.textToCurrent": "Do trenutnega položaja",
"DE.Views.Toolbar.textTop": "Top: ", "DE.Views.Toolbar.textTop": "Top: ",
@ -2006,7 +2020,9 @@
"DE.Views.Toolbar.txtScheme9": "Livarna", "DE.Views.Toolbar.txtScheme9": "Livarna",
"DE.Views.ViewTab.textAlwaysShowToolbar": "Vedno prikaži orodno vrstico", "DE.Views.ViewTab.textAlwaysShowToolbar": "Vedno prikaži orodno vrstico",
"DE.Views.ViewTab.textDarkDocument": "Temen način", "DE.Views.ViewTab.textDarkDocument": "Temen način",
"DE.Views.ViewTab.textOutline": "Naslovi",
"DE.Views.ViewTab.textZoom": "Povečaj", "DE.Views.ViewTab.textZoom": "Povečaj",
"DE.Views.ViewTab.tipHeadings": "Naslovi",
"DE.Views.WatermarkSettingsDialog.textAuto": "Samodejno", "DE.Views.WatermarkSettingsDialog.textAuto": "Samodejno",
"DE.Views.WatermarkSettingsDialog.textBold": "Krepko", "DE.Views.WatermarkSettingsDialog.textBold": "Krepko",
"DE.Views.WatermarkSettingsDialog.textColor": "Barva besedila", "DE.Views.WatermarkSettingsDialog.textColor": "Barva besedila",

View file

@ -263,7 +263,27 @@
"Common.define.smartArt.textThemePictureAccent": "主题图片重点", "Common.define.smartArt.textThemePictureAccent": "主题图片重点",
"Common.define.smartArt.textThemePictureAlternatingAccent": "主题图片交替重点", "Common.define.smartArt.textThemePictureAlternatingAccent": "主题图片交替重点",
"Common.define.smartArt.textThemePictureGrid": "主题图片网格", "Common.define.smartArt.textThemePictureGrid": "主题图片网格",
"Common.define.smartArt.textTitledMatrix": "带标题的矩阵",
"Common.define.smartArt.textTitledPictureAccentList": "标题图片重点列表",
"Common.define.smartArt.textTitledPictureBlocks": "标题图片块",
"Common.define.smartArt.textTitlePictureLineup": "标题图片排列", "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.textMoreButton": "更多",
"Common.Translation.warnFileLocked": "您不能编辑此文件,因为它正在另一个应用程序中被编辑。", "Common.Translation.warnFileLocked": "您不能编辑此文件,因为它正在另一个应用程序中被编辑。",
"Common.Translation.warnFileLockedBtnEdit": "建立副本", "Common.Translation.warnFileLockedBtnEdit": "建立副本",
@ -806,6 +826,7 @@
"DE.Controllers.Main.textStrict": "手动模式", "DE.Controllers.Main.textStrict": "手动模式",
"DE.Controllers.Main.textTryUndoRedo": "对于自动的协同编辑模式,取消/重做功能是禁用的。< br >单击“手动模式”按钮切换到手动协同编辑模式,这样,编辑该文件时只有您保存修改之后,其他用户才能访问这些修改。您可以使用编辑器高级设置易于切换编辑模式。", "DE.Controllers.Main.textTryUndoRedo": "对于自动的协同编辑模式,取消/重做功能是禁用的。< br >单击“手动模式”按钮切换到手动协同编辑模式,这样,编辑该文件时只有您保存修改之后,其他用户才能访问这些修改。您可以使用编辑器高级设置易于切换编辑模式。",
"DE.Controllers.Main.textTryUndoRedoWarn": "自动共同编辑模式下,撤销/重做功能被禁用。", "DE.Controllers.Main.textTryUndoRedoWarn": "自动共同编辑模式下,撤销/重做功能被禁用。",
"DE.Controllers.Main.textUndo": "撤消",
"DE.Controllers.Main.titleLicenseExp": "许可证过期", "DE.Controllers.Main.titleLicenseExp": "许可证过期",
"DE.Controllers.Main.titleServerVersion": "编辑器已更新", "DE.Controllers.Main.titleServerVersion": "编辑器已更新",
"DE.Controllers.Main.titleUpdateVersion": "版本已变化", "DE.Controllers.Main.titleUpdateVersion": "版本已变化",
@ -2553,6 +2574,7 @@
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "没有边框", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "没有边框",
"DE.Views.ProtectDialog.textComments": "评论", "DE.Views.ProtectDialog.textComments": "评论",
"DE.Views.ProtectDialog.textForms": "填写表单", "DE.Views.ProtectDialog.textForms": "填写表单",
"DE.Views.ProtectDialog.textReview": "修订",
"DE.Views.ProtectDialog.textView": "不允许任何更改(只读)", "DE.Views.ProtectDialog.textView": "不允许任何更改(只读)",
"DE.Views.ProtectDialog.txtAllow": "仅允许在文档中进行此类型的编辑", "DE.Views.ProtectDialog.txtAllow": "仅允许在文档中进行此类型的编辑",
"DE.Views.ProtectDialog.txtIncorrectPwd": "确认的密码与先前输入的不一致。", "DE.Views.ProtectDialog.txtIncorrectPwd": "确认的密码与先前输入的不一致。",
@ -2561,6 +2583,7 @@
"DE.Views.ProtectDialog.txtProtect": "保护", "DE.Views.ProtectDialog.txtProtect": "保护",
"DE.Views.ProtectDialog.txtRepeat": "重复输入密码", "DE.Views.ProtectDialog.txtRepeat": "重复输入密码",
"DE.Views.ProtectDialog.txtTitle": "保护", "DE.Views.ProtectDialog.txtTitle": "保护",
"DE.Views.ProtectDialog.txtWarning": "警告: 如果丢失或忘记密码,则无法将其恢复。请妥善保存。",
"DE.Views.RightMenu.txtChartSettings": "图表设置", "DE.Views.RightMenu.txtChartSettings": "图表设置",
"DE.Views.RightMenu.txtFormSettings": "表单设置", "DE.Views.RightMenu.txtFormSettings": "表单设置",
"DE.Views.RightMenu.txtHeaderFooterSettings": "页眉和页脚设置", "DE.Views.RightMenu.txtHeaderFooterSettings": "页眉和页脚设置",

View file

@ -130,7 +130,7 @@
border-radius: 0; border-radius: 0;
padding: 3px 10px; padding: 3px 10px;
color: #ffffff; color: #ffffff;
font: 11px arial; .font-size-normal();
white-space: nowrap; white-space: nowrap;
letter-spacing: 1px; letter-spacing: 1px;
overflow: hidden; overflow: hidden;
@ -163,7 +163,8 @@
margin-left: 2px; margin-left: 2px;
} }
#special-paste-container { #special-paste-container,
#equation-container {
position: absolute; position: absolute;
z-index: @zindex-dropdown - 20; z-index: @zindex-dropdown - 20;
@ -173,6 +174,16 @@
border: @scaled-one-px-value solid @border-regular-control; border: @scaled-one-px-value solid @border-regular-control;
} }
#equation-container {
padding: 4px;
.separator {
height: 20px;
}
&.has-open-menu {
z-index: @zindex-navbar + 1;
}
}
.dropdown-menu.list-settings-level { .dropdown-menu.list-settings-level {
.menu-list-preview { .menu-list-preview {
.box-shadow(0 0 0 @scaled-one-px-value-ie @border-regular-control-ie); .box-shadow(0 0 0 @scaled-one-px-value-ie @border-regular-control-ie);

View file

@ -220,6 +220,7 @@
"textAlign": "Nizamlayın", "textAlign": "Nizamlayın",
"textAllCaps": "Bütün başlıqlar", "textAllCaps": "Bütün başlıqlar",
"textAllowOverlap": "Üst-üstə düşməsinə icazə verin", "textAllowOverlap": "Üst-üstə düşməsinə icazə verin",
"textAugust": "avqust",
"textAuto": "Avtomatik", "textAuto": "Avtomatik",
"textAutomatic": "Avtomatik", "textAutomatic": "Avtomatik",
"textBack": "Geriyə", "textBack": "Geriyə",
@ -232,7 +233,9 @@
"textBringToForeground": "Ön plana çıxarın", "textBringToForeground": "Ön plana çıxarın",
"textBullets": "Markerlər", "textBullets": "Markerlər",
"textBulletsAndNumbers": "Markerlər və Ədədlər", "textBulletsAndNumbers": "Markerlər və Ədədlər",
"textCancel": "Ləğv",
"textCellMargins": "Xanalardakı Kənar Boşluqlar", "textCellMargins": "Xanalardakı Kənar Boşluqlar",
"textCentered": "Mərkəzlənmiş",
"textChart": "Diaqram", "textChart": "Diaqram",
"textClose": "Bağlayın", "textClose": "Bağlayın",
"textColor": "Rəng", "textColor": "Rəng",
@ -320,9 +323,6 @@
"textWrap": "Keçirin", "textWrap": "Keçirin",
"textAmountOfLevels": "Amount of Levels", "textAmountOfLevels": "Amount of Levels",
"textApril": "April", "textApril": "April",
"textAugust": "August",
"textCancel": "Cancel",
"textCentered": "Centered",
"textChangeShape": "Change Shape", "textChangeShape": "Change Shape",
"textClassic": "Classic", "textClassic": "Classic",
"textCreateTextStyle": "Create new text style", "textCreateTextStyle": "Create new text style",
@ -419,8 +419,15 @@
"uploadImageSizeMessage": "Təsvir çox böyükdür. Maksimum ölçü 25 MB-dır.", "uploadImageSizeMessage": "Təsvir çox böyükdür. Maksimum ölçü 25 MB-dır.",
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.", "errorDirectUrl": "Please verify the link to the document.<br>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.", "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.<br>The file content does not match the file extension.",
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>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.<br>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.<br>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.<br>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.", "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.<br>Please contact your Document Server administrator.",
"errorTokenExpire": "The document security token has expired.<br>Please contact your Document Server administrator."
}, },
"LongActions": { "LongActions": {
"applyChangesTextText": "Məlumat yüklənir...", "applyChangesTextText": "Məlumat yüklənir...",
@ -570,6 +577,7 @@
"textApplicationSettings": "Proqram Parametrləri", "textApplicationSettings": "Proqram Parametrləri",
"textAuthor": "Müəllif", "textAuthor": "Müəllif",
"textBack": "Geriyə", "textBack": "Geriyə",
"textBeginningDocument": "Sənədin başlanğıcı",
"textBottom": "Aşağı", "textBottom": "Aşağı",
"textCancel": "Ləğv edin", "textCancel": "Ləğv edin",
"textCaseSensitive": "Böyük/Kiçik Hərfə Həssas", "textCaseSensitive": "Böyük/Kiçik Hərfə Həssas",
@ -670,7 +678,6 @@
"txtScheme7": "Bərabər", "txtScheme7": "Bərabər",
"txtScheme8": "Axın", "txtScheme8": "Axın",
"txtScheme9": "Emalatxana", "txtScheme9": "Emalatxana",
"textBeginningDocument": "Beginning of document",
"textDirection": "Direction", "textDirection": "Direction",
"textEmptyHeading": "Empty Heading", "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.", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appears in the table of contents.",

View file

@ -407,6 +407,11 @@
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", "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.", "errorFilePassProtect": "The file is password protected and could not be opened.",
"errorFileSizeExceed": "The file size exceeds your server limit.<br>Please, contact your admin.", "errorFileSizeExceed": "The file size exceeds your server limit.<br>Please, contact your admin.",
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension.",
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>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.<br>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.<br>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.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
"errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.", "errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
"errorMailMergeLoadFile": "Loading failed", "errorMailMergeLoadFile": "Loading failed",
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.", "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.", "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:<br> opening price, max price, min price, closing price.", "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:<br> opening price, max price, min price, closing price.",
"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.<br>Please contact your Document Server administrator.",
"errorTokenExpire": "The document security token has expired.<br>Please contact your Document Server administrator.",
"errorUserDrop": "The file can't be accessed right now.", "errorUserDrop": "The file can't be accessed right now.",
"errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but you won't be able to download or print it until the connection is restored and the page is reloaded.", "errorViewerDisconnect": "Connection is lost. You can still view the document,<br>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", "openErrorText": "An error has occurred while opening the file",

View file

@ -423,7 +423,14 @@
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", "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.", "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.",
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading." "errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>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.<br>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.<br>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.<br>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.<br>The file content does not match the file extension.",
"errorToken": "The document security token is not correctly formed.<br>Please contact your Document Server administrator.",
"errorTokenExpire": "The document security token has expired.<br>Please contact your Document Server administrator."
}, },
"LongActions": { "LongActions": {
"applyChangesTextText": "Loading data...", "applyChangesTextText": "Loading data...",

View file

@ -420,7 +420,14 @@
"unknownErrorText": "Error desconegut.", "unknownErrorText": "Error desconegut.",
"uploadImageExtMessage": "Format d'imatge desconegut.", "uploadImageExtMessage": "Format d'imatge desconegut.",
"uploadImageFileCountMessage": "No s'ha carregat cap imatge.", "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.<br>The file content does not match the file extension.",
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>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.<br>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.<br>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.<br>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.<br>Please contact your Document Server administrator.",
"errorTokenExpire": "The document security token has expired.<br>Please contact your Document Server administrator."
}, },
"LongActions": { "LongActions": {
"applyChangesTextText": "S'estan carregant les dades...", "applyChangesTextText": "S'estan carregant les dades...",

View file

@ -26,6 +26,7 @@
"textContinuousPage": "Pokračovat na stránce", "textContinuousPage": "Pokračovat na stránce",
"textCurrentPosition": "Aktuální pozice", "textCurrentPosition": "Aktuální pozice",
"textDisplay": "Zobrazit", "textDisplay": "Zobrazit",
"textDone": "Hotovo",
"textEmptyImgUrl": "Musíte upřesnit URL obrázku.", "textEmptyImgUrl": "Musíte upřesnit URL obrázku.",
"textEvenPage": "Sudá stránka", "textEvenPage": "Sudá stránka",
"textFootnote": "Poznámka pod čarou", "textFootnote": "Poznámka pod čarou",
@ -49,6 +50,8 @@
"textPictureFromLibrary": "Obrázek z knihovny", "textPictureFromLibrary": "Obrázek z knihovny",
"textPictureFromURL": "Obrázek z adresy URL", "textPictureFromURL": "Obrázek z adresy URL",
"textPosition": "Pozice", "textPosition": "Pozice",
"textRecommended": "Doporučeno",
"textRequired": "Požadováno",
"textRightBottom": "Vpravo dole", "textRightBottom": "Vpravo dole",
"textRightTop": "Vpravo nahoře", "textRightTop": "Vpravo nahoře",
"textRows": "Řádky", "textRows": "Řádky",
@ -61,10 +64,7 @@
"textTableSize": "Velikost tabulky", "textTableSize": "Velikost tabulky",
"textWithBlueLinks": "s modrými odkazy", "textWithBlueLinks": "s modrými odkazy",
"textWithPageNumbers": "s číslováním stránek", "textWithPageNumbers": "s číslováním stránek",
"txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"", "txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\""
"textDone": "Done",
"textRecommended": "Recommended",
"textRequired": "Required"
}, },
"Common": { "Common": {
"Collaboration": { "Collaboration": {
@ -147,6 +147,7 @@
"textReviewChange": "Přehled změn", "textReviewChange": "Přehled změn",
"textRight": "Zarovnat vpravo", "textRight": "Zarovnat vpravo",
"textShape": "Obrazec", "textShape": "Obrazec",
"textSharingSettings": "Nastavení sdílení",
"textShd": "Barva pozadí", "textShd": "Barva pozadí",
"textSmallCaps": "Malá písmena", "textSmallCaps": "Malá písmena",
"textSpacing": "Mezery", "textSpacing": "Mezery",
@ -163,8 +164,7 @@
"textTryUndoRedo": "Funkce Zpět/Znovu jsou vypnuty pro rychlý režim spolupráce.", "textTryUndoRedo": "Funkce Zpět/Znovu jsou vypnuty pro rychlý režim spolupráce.",
"textUnderline": "Podtržení", "textUnderline": "Podtržení",
"textUsers": "Uživatelé", "textUsers": "Uživatelé",
"textWidow": "Ovládací prvek okna", "textWidow": "Ovládací prvek okna"
"textSharingSettings": "Sharing Settings"
}, },
"HighlightColorPalette": { "HighlightColorPalette": {
"textNoFill": "Bez výplně" "textNoFill": "Bez výplně"
@ -184,6 +184,7 @@
"menuDelete": "Odstranit", "menuDelete": "Odstranit",
"menuDeleteTable": "Odstranit tabulku", "menuDeleteTable": "Odstranit tabulku",
"menuEdit": "Upravit", "menuEdit": "Upravit",
"menuEditLink": "Upravit odkaz",
"menuJoinList": "Připojit k předchozímu seznamu", "menuJoinList": "Připojit k předchozímu seznamu",
"menuMerge": "Sloučit", "menuMerge": "Sloučit",
"menuMore": "Více", "menuMore": "Více",
@ -204,8 +205,7 @@
"textRefreshEntireTable": "Obnovit celou tabulku", "textRefreshEntireTable": "Obnovit celou tabulku",
"textRefreshPageNumbersOnly": "Obnovit pouze číslování stránek", "textRefreshPageNumbersOnly": "Obnovit pouze číslování stránek",
"textRows": "Řádky", "textRows": "Řádky",
"txtWarnUrl": "Kliknutí na tento odkaz může být škodlivé pro Vaše zařízení a Vaše data.<br>Jste si jistí, že chcete pokračovat?", "txtWarnUrl": "Kliknutí na tento odkaz může být škodlivé pro Vaše zařízení a Vaše data.<br>Jste si jistí, že chcete pokračovat?"
"menuEditLink": "Edit Link"
}, },
"Edit": { "Edit": {
"notcriticalErrorTitle": "Varování", "notcriticalErrorTitle": "Varování",
@ -238,6 +238,7 @@
"textCancel": "Zrušit", "textCancel": "Zrušit",
"textCellMargins": "Okraje buňky", "textCellMargins": "Okraje buňky",
"textCentered": "Vycentrováno", "textCentered": "Vycentrováno",
"textChangeShape": "Vlastní tvar",
"textChart": "Graf", "textChart": "Graf",
"textClassic": "Klasické", "textClassic": "Klasické",
"textClose": "Zavřít", "textClose": "Zavřít",
@ -246,7 +247,10 @@
"textCreateTextStyle": "Vytvořit nový styl textu", "textCreateTextStyle": "Vytvořit nový styl textu",
"textCurrent": "Aktuální", "textCurrent": "Aktuální",
"textCustomColor": "Vlastní barva", "textCustomColor": "Vlastní barva",
"textCustomStyle": "Vlastní styl",
"textDecember": "prosinec", "textDecember": "prosinec",
"textDeleteImage": "Smazat obrázek",
"textDeleteLink": "Smazat odkaz",
"textDesign": "Vzhled", "textDesign": "Vzhled",
"textDifferentFirstPage": "Odlišná první stránka", "textDifferentFirstPage": "Odlišná první stránka",
"textDifferentOddAndEvenPages": "Rozdílné liché a sudé stránky", "textDifferentOddAndEvenPages": "Rozdílné liché a sudé stránky",
@ -319,6 +323,7 @@
"textPictureFromLibrary": "Obrázek z knihovny", "textPictureFromLibrary": "Obrázek z knihovny",
"textPictureFromURL": "Obrázek z adresy URL", "textPictureFromURL": "Obrázek z adresy URL",
"textPt": "pt", "textPt": "pt",
"textRecommended": "Doporučeno",
"textRefresh": "Načíst znovu", "textRefresh": "Načíst znovu",
"textRefreshEntireTable": "Obnovit celou tabulku", "textRefreshEntireTable": "Obnovit celou tabulku",
"textRefreshPageNumbersOnly": "Obnovit pouze číslování stránek", "textRefreshPageNumbersOnly": "Obnovit pouze číslování stránek",
@ -330,6 +335,7 @@
"textRepeatAsHeaderRow": "Opakujte jako řádek záhlaví", "textRepeatAsHeaderRow": "Opakujte jako řádek záhlaví",
"textReplace": "Nahradit", "textReplace": "Nahradit",
"textReplaceImage": "Nahradit obrázek", "textReplaceImage": "Nahradit obrázek",
"textRequired": "Požadováno",
"textResizeToFitContent": "Změnit velikost pro přizpůsobení obsahu", "textResizeToFitContent": "Změnit velikost pro přizpůsobení obsahu",
"textRightAlign": "Zarovnat vpravo", "textRightAlign": "Zarovnat vpravo",
"textSa": "so", "textSa": "so",
@ -359,6 +365,7 @@
"textTableOfCont": "Obsah", "textTableOfCont": "Obsah",
"textTableOptions": "Možnosti tabulky", "textTableOptions": "Možnosti tabulky",
"textText": "Text", "textText": "Text",
"textTextWrapping": "Obtékaní textu",
"textTh": "čt", "textTh": "čt",
"textThrough": "Skrz", "textThrough": "Skrz",
"textTight": "Těsné", "textTight": "Těsné",
@ -369,14 +376,7 @@
"textType": "Typ", "textType": "Typ",
"textWe": "st", "textWe": "st",
"textWrap": "Obtékání", "textWrap": "Obtékání",
"textChangeShape": "Change Shape", "textWrappingStyle": "Obtékání textu"
"textCustomStyle": "Custom Style",
"textDeleteImage": "Delete Image",
"textDeleteLink": "Delete Link",
"textRecommended": "Recommended",
"textRequired": "Required",
"textTextWrapping": "Text Wrapping",
"textWrappingStyle": "Wrapping Style"
}, },
"Error": { "Error": {
"convertationTimeoutText": "Vypršel čas konverze.", "convertationTimeoutText": "Vypršel čas konverze.",
@ -390,6 +390,7 @@
"errorDataEncrypted": "Obdrženy šifrované změny bez hesla je není možné zobrazit.", "errorDataEncrypted": "Obdrženy šifrované změny bez hesla je není možné zobrazit.",
"errorDataRange": "Nesprávný datový rozsah.", "errorDataRange": "Nesprávný datový rozsah.",
"errorDefaultMessage": "Kód chyby: %1", "errorDefaultMessage": "Kód chyby: %1",
"errorDirectUrl": "Ověřte správnost odkazu na dokument.<br>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ě.<br>Stáhněte dokument pro vytvoření lokální zálohy souboru.", "errorEditingDownloadas": "Při práci s dokumentem došlo k chybě.<br>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. ", "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.", "errorFilePassProtect": "Soubor je zabezpečen heslem a nemůže být otevřen.",
@ -419,8 +420,14 @@
"uploadImageExtMessage": "Neznámý formát obrázku.", "uploadImageExtMessage": "Neznámý formát obrázku.",
"uploadImageFileCountMessage": "Nenahrány žádné obrázky.", "uploadImageFileCountMessage": "Nenahrány žádné obrázky.",
"uploadImageSizeMessage": "Obrázek je příliš velký. Maximální velikost je 25 MB.", "uploadImageSizeMessage": "Obrázek je příliš velký. Maximální velikost je 25 MB.",
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.", "errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension.",
"errorTextFormWrongFormat": "The value entered does not match the format of the field." "errorInconsistentExtDocx": "An error has occurred while opening the file.<br>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.<br>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.<br>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.<br>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.<br>Please contact your Document Server administrator.",
"errorTokenExpire": "The document security token has expired.<br>Please contact your Document Server administrator."
}, },
"LongActions": { "LongActions": {
"applyChangesTextText": "Načítání dat...", "applyChangesTextText": "Načítání dat...",
@ -451,14 +458,14 @@
"saveTitleText": "Ukládání dokumentu", "saveTitleText": "Ukládání dokumentu",
"sendMergeText": "Odesílaní hromadné zprávy…", "sendMergeText": "Odesílaní hromadné zprávy…",
"sendMergeTitle": "Odesílaní hromadné zprávy", "sendMergeTitle": "Odesílaní hromadné zprávy",
"textContinue": "Pokračovat",
"textLoadingDocument": "Načítání dokumentu", "textLoadingDocument": "Načítání dokumentu",
"textUndo": "Zpět",
"txtEditingMode": "Nastavit režim úprav…", "txtEditingMode": "Nastavit režim úprav…",
"uploadImageTextText": "Nahrávání obrázku...", "uploadImageTextText": "Nahrávání obrázku...",
"uploadImageTitleText": "Nahrávání obrázku", "uploadImageTitleText": "Nahrávání obrázku",
"waitText": "Čekejte prosím...", "waitText": "Čekejte prosím...",
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>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).", "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>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"
}, },
"Main": { "Main": {
"criticalErrorTitle": "Chyba", "criticalErrorTitle": "Chyba",
@ -622,6 +629,7 @@
"textMargins": "Okraje", "textMargins": "Okraje",
"textMarginsH": "Horní a spodní okraj je příliš velký vzhledem k dané výšce stránky", "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", "textMarginsW": "Okraje vlevo a vpravo jsou příliš velké vzhledem k šířce stránky",
"textMobileView": "Mobilní zobrazení",
"textNavigation": "Navigace", "textNavigation": "Navigace",
"textNo": "Ne", "textNo": "Ne",
"textNoCharacters": "Netisknutelné znaky", "textNoCharacters": "Netisknutelné znaky",
@ -685,8 +693,7 @@
"txtScheme6": "Hala", "txtScheme6": "Hala",
"txtScheme7": "Rovnost", "txtScheme7": "Rovnost",
"txtScheme8": "Tok", "txtScheme8": "Tok",
"txtScheme9": "Slévárna", "txtScheme9": "Slévárna"
"textMobileView": "Mobile View"
}, },
"Toolbar": { "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.", "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", "leaveButtonText": "Opustit tuto stránku",
"stayButtonText": "Zůstat na této stránce", "stayButtonText": "Zůstat na této stránce",
"textOk": "OK", "textOk": "OK",
"textSwitchedMobileView": "Switched to Mobile view", "textSwitchedMobileView": "Přepnout na mobilní zobrazení",
"textSwitchedStandardView": "Switched to Standard view" "textSwitchedStandardView": "Přepnout na standartní zobrazení"
} }
} }

View file

@ -423,7 +423,14 @@
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", "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.", "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.",
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading." "errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>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.<br>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.<br>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.<br>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.<br>The file content does not match the file extension.",
"errorToken": "The document security token is not correctly formed.<br>Please contact your Document Server administrator.",
"errorTokenExpire": "The document security token has expired.<br>Please contact your Document Server administrator."
}, },
"LongActions": { "LongActions": {
"applyChangesTextText": "Loading data...", "applyChangesTextText": "Loading data...",

View file

@ -26,6 +26,7 @@
"textContinuousPage": "Fortlaufende Seite", "textContinuousPage": "Fortlaufende Seite",
"textCurrentPosition": "Aktuelle Position", "textCurrentPosition": "Aktuelle Position",
"textDisplay": "Anzeigen", "textDisplay": "Anzeigen",
"textDone": "Fertig",
"textEmptyImgUrl": "URL des Bildes erforderlich", "textEmptyImgUrl": "URL des Bildes erforderlich",
"textEvenPage": "Gerade Seite", "textEvenPage": "Gerade Seite",
"textFootnote": "Fußnote", "textFootnote": "Fußnote",
@ -49,6 +50,8 @@
"textPictureFromLibrary": "Bild aus dem Verzeichnis", "textPictureFromLibrary": "Bild aus dem Verzeichnis",
"textPictureFromURL": "Bild aus URL", "textPictureFromURL": "Bild aus URL",
"textPosition": "Position", "textPosition": "Position",
"textRecommended": "Empfohlen",
"textRequired": "Erforderlich",
"textRightBottom": "Rechts unten", "textRightBottom": "Rechts unten",
"textRightTop": "Rechts oben", "textRightTop": "Rechts oben",
"textRows": "Zeilen", "textRows": "Zeilen",
@ -61,10 +64,7 @@
"textTableSize": "Tabellengröße", "textTableSize": "Tabellengröße",
"textWithBlueLinks": "Mit blauen Links", "textWithBlueLinks": "Mit blauen Links",
"textWithPageNumbers": "Mit Seitennummern", "textWithPageNumbers": "Mit Seitennummern",
"txtNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.", "txtNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein."
"textDone": "Done",
"textRecommended": "Recommended",
"textRequired": "Required"
}, },
"Common": { "Common": {
"Collaboration": { "Collaboration": {
@ -147,6 +147,7 @@
"textReviewChange": "Änderung überprüfen", "textReviewChange": "Änderung überprüfen",
"textRight": "Rechtsbündig ausrichten", "textRight": "Rechtsbündig ausrichten",
"textShape": "Form", "textShape": "Form",
"textSharingSettings": "Freigabeeinstellungen",
"textShd": "Hintergrundfarbe", "textShd": "Hintergrundfarbe",
"textSmallCaps": "Kapitälchen", "textSmallCaps": "Kapitälchen",
"textSpacing": "Abstand", "textSpacing": "Abstand",
@ -163,8 +164,7 @@
"textTryUndoRedo": "Die Optionen Rückgängig machen/Wiederholen sind für den Schnellmodus deaktiviert.", "textTryUndoRedo": "Die Optionen Rückgängig machen/Wiederholen sind für den Schnellmodus deaktiviert.",
"textUnderline": "Unterstrichen", "textUnderline": "Unterstrichen",
"textUsers": "Benutzer", "textUsers": "Benutzer",
"textWidow": "Absatzkontrolle", "textWidow": "Absatzkontrolle"
"textSharingSettings": "Sharing Settings"
}, },
"HighlightColorPalette": { "HighlightColorPalette": {
"textNoFill": "Keine Füllung" "textNoFill": "Keine Füllung"
@ -184,6 +184,7 @@
"menuDelete": "Löschen", "menuDelete": "Löschen",
"menuDeleteTable": "Tabelle löschen", "menuDeleteTable": "Tabelle löschen",
"menuEdit": "Bearbeiten", "menuEdit": "Bearbeiten",
"menuEditLink": "Link bearbeiten",
"menuJoinList": "Mit der vorherigen Liste verbinden", "menuJoinList": "Mit der vorherigen Liste verbinden",
"menuMerge": "Verbinden", "menuMerge": "Verbinden",
"menuMore": "Mehr", "menuMore": "Mehr",
@ -204,8 +205,7 @@
"textRefreshEntireTable": "Ganze Tabelle aktualisieren", "textRefreshEntireTable": "Ganze Tabelle aktualisieren",
"textRefreshPageNumbersOnly": "Nur Seitenzahlen aktualisieren", "textRefreshPageNumbersOnly": "Nur Seitenzahlen aktualisieren",
"textRows": "Zeilen", "textRows": "Zeilen",
"txtWarnUrl": "Dieser Link kann für Ihr Gerät und Daten gefährlich sein.<br>Möchten Sie wirklich fortsetzen?", "txtWarnUrl": "Dieser Link kann für Ihr Gerät und Daten gefährlich sein.<br>Möchten Sie wirklich fortsetzen?"
"menuEditLink": "Edit Link"
}, },
"Edit": { "Edit": {
"notcriticalErrorTitle": "Warnung", "notcriticalErrorTitle": "Warnung",
@ -238,6 +238,7 @@
"textCancel": "Abbrechen", "textCancel": "Abbrechen",
"textCellMargins": "Zellenränder", "textCellMargins": "Zellenränder",
"textCentered": "Zentriert", "textCentered": "Zentriert",
"textChangeShape": "Form ändern",
"textChart": "Diagramm", "textChart": "Diagramm",
"textClassic": "Klassisch", "textClassic": "Klassisch",
"textClose": "Schließen", "textClose": "Schließen",
@ -246,7 +247,10 @@
"textCreateTextStyle": "Neuen Textstil erstellen", "textCreateTextStyle": "Neuen Textstil erstellen",
"textCurrent": "Aktuell", "textCurrent": "Aktuell",
"textCustomColor": "Benutzerdefinierte Farbe", "textCustomColor": "Benutzerdefinierte Farbe",
"textCustomStyle": "Benutzerdefinierter Stil",
"textDecember": "Dezember", "textDecember": "Dezember",
"textDeleteImage": "Bild löschen",
"textDeleteLink": "Link löschen",
"textDesign": "Design", "textDesign": "Design",
"textDifferentFirstPage": "Erste Seite anders", "textDifferentFirstPage": "Erste Seite anders",
"textDifferentOddAndEvenPages": "Gerade und ungerade Seiten anders", "textDifferentOddAndEvenPages": "Gerade und ungerade Seiten anders",
@ -319,6 +323,7 @@
"textPictureFromLibrary": "Bild aus dem Verzeichnis", "textPictureFromLibrary": "Bild aus dem Verzeichnis",
"textPictureFromURL": "Bild aus URL", "textPictureFromURL": "Bild aus URL",
"textPt": "pt", "textPt": "pt",
"textRecommended": "Empfohlen",
"textRefresh": "Aktualisieren", "textRefresh": "Aktualisieren",
"textRefreshEntireTable": "Ganze Tabelle aktualisieren", "textRefreshEntireTable": "Ganze Tabelle aktualisieren",
"textRefreshPageNumbersOnly": "Nur Seitenzahlen aktualisieren", "textRefreshPageNumbersOnly": "Nur Seitenzahlen aktualisieren",
@ -330,6 +335,7 @@
"textRepeatAsHeaderRow": "Als Überschriftenzeile wiederholen", "textRepeatAsHeaderRow": "Als Überschriftenzeile wiederholen",
"textReplace": "Ersetzen", "textReplace": "Ersetzen",
"textReplaceImage": "Bild ersetzen", "textReplaceImage": "Bild ersetzen",
"textRequired": "Erforderlich",
"textResizeToFitContent": "An die Größe des Inhalts anpassen", "textResizeToFitContent": "An die Größe des Inhalts anpassen",
"textRightAlign": "Rechtsbündig", "textRightAlign": "Rechtsbündig",
"textSa": "Sa", "textSa": "Sa",
@ -359,6 +365,7 @@
"textTableOfCont": "Inhaltsverzeichnis", "textTableOfCont": "Inhaltsverzeichnis",
"textTableOptions": "Tabellenoptionen", "textTableOptions": "Tabellenoptionen",
"textText": "Text", "textText": "Text",
"textTextWrapping": "Textumbruch",
"textTh": "Do", "textTh": "Do",
"textThrough": "Durchgehend", "textThrough": "Durchgehend",
"textTight": "Passend", "textTight": "Passend",
@ -369,14 +376,7 @@
"textType": "Typ", "textType": "Typ",
"textWe": "Mi", "textWe": "Mi",
"textWrap": "Umbrechen", "textWrap": "Umbrechen",
"textChangeShape": "Change Shape", "textWrappingStyle": "Textumbruch"
"textCustomStyle": "Custom Style",
"textDeleteImage": "Delete Image",
"textDeleteLink": "Delete Link",
"textRecommended": "Recommended",
"textRequired": "Required",
"textTextWrapping": "Text Wrapping",
"textWrappingStyle": "Wrapping Style"
}, },
"Error": { "Error": {
"convertationTimeoutText": "Zeitüberschreitung bei der Konvertierung.", "convertationTimeoutText": "Zeitüberschreitung bei der Konvertierung.",
@ -390,10 +390,16 @@
"errorDataEncrypted": "Verschlüsselte Änderungen wurden empfangen. Sie können nicht entschlüsselt werden.", "errorDataEncrypted": "Verschlüsselte Änderungen wurden empfangen. Sie können nicht entschlüsselt werden.",
"errorDataRange": "Falscher Datenbereich.", "errorDataRange": "Falscher Datenbereich.",
"errorDefaultMessage": "Fehlercode: %1", "errorDefaultMessage": "Fehlercode: %1",
"errorDirectUrl": "Bitte überprüfen Sie den Link zum Dokument.<br>Dieser Link muss ein direkter Link zu der Datei zum Herunterladen sein.",
"errorEditingDownloadas": "Fehler bei der Arbeit an diesem Dokument.<br>Laden Sie die Datei herunter, um sie lokal zu speichern.", "errorEditingDownloadas": "Fehler bei der Arbeit an diesem Dokument.<br>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.", "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.", "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.<br>Bitte wenden Sie sich an Administratoren.", "errorFileSizeExceed": "Die Dateigröße ist zu hoch für Ihren Server.<br>Bitte wenden Sie sich an Administratoren.",
"errorInconsistentExt": "Beim Öffnen der Datei ist ein Fehler aufgetreten.<br>Der Inhalt der Datei stimmt nicht mit der Dateierweiterung überein.",
"errorInconsistentExtDocx": "Beim Öffnen der Datei ist ein Fehler aufgetreten.<br>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.<br>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.<br>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.<br>Der Inhalt der Datei entspricht Tabellenkalkulationen (z.B. xlsx), aber die Datei hat die inkonsistente Erweiterung: %1.",
"errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor", "errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor",
"errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen", "errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen",
"errorLoadingFont": "Schriftarten nicht hochgeladen.<br>Bitte wenden Sie sich an Administratoren von Ihrem Document Server.", "errorLoadingFont": "Schriftarten nicht hochgeladen.<br>Bitte wenden Sie sich an Administratoren von Ihrem Document Server.",
@ -420,11 +426,13 @@
"uploadImageExtMessage": "Unbekanntes Bildformat.", "uploadImageExtMessage": "Unbekanntes Bildformat.",
"uploadImageFileCountMessage": "Keine Bilder hochgeladen.", "uploadImageFileCountMessage": "Keine Bilder hochgeladen.",
"uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten.", "uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten.",
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading." "errorToken": "The document security token is not correctly formed.<br>Please contact your Document Server administrator.",
"errorTokenExpire": "The document security token has expired.<br>Please contact your Document Server administrator."
}, },
"LongActions": { "LongActions": {
"applyChangesTextText": "Daten werden geladen...", "applyChangesTextText": "Daten werden geladen...",
"applyChangesTitleText": "Daten werden geladen", "applyChangesTitleText": "Daten werden geladen",
"confirmMaxChangesSize": "Die Anzahl der Aktionen überschreitet die für Ihren Server festgelegte Grenze.<br>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...", "downloadMergeText": "Ladevorgang...",
"downloadMergeTitle": "Ladevorgang", "downloadMergeTitle": "Ladevorgang",
"downloadTextText": "Dokument wird heruntergeladen...", "downloadTextText": "Dokument wird heruntergeladen...",
@ -451,14 +459,13 @@
"saveTitleText": "Dokument wird gespeichert...", "saveTitleText": "Dokument wird gespeichert...",
"sendMergeText": "Merge wird versandt...", "sendMergeText": "Merge wird versandt...",
"sendMergeTitle": "Ergebnisse der Zusammenführung werden gesendet", "sendMergeTitle": "Ergebnisse der Zusammenführung werden gesendet",
"textContinue": "Fortsetzen",
"textLoadingDocument": "Dokument wird geladen", "textLoadingDocument": "Dokument wird geladen",
"textUndo": "Rückgängig",
"txtEditingMode": "Bearbeitungsmodul wird festgelegt...", "txtEditingMode": "Bearbeitungsmodul wird festgelegt...",
"uploadImageTextText": "Bild wird hochgeladen...", "uploadImageTextText": "Bild wird hochgeladen...",
"uploadImageTitleText": "Bild wird hochgeladen", "uploadImageTitleText": "Bild wird hochgeladen",
"waitText": "Bitte warten...", "waitText": "Bitte warten..."
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>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"
}, },
"Main": { "Main": {
"criticalErrorTitle": "Fehler", "criticalErrorTitle": "Fehler",

View file

@ -420,7 +420,14 @@
"uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.", "uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.",
"uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB.", "uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB.",
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.", "errorDirectUrl": "Please verify the link to the document.<br>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.<br>The file content does not match the file extension.",
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>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.<br>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.<br>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.<br>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.<br>Please contact your Document Server administrator.",
"errorTokenExpire": "The document security token has expired.<br>Please contact your Document Server administrator."
}, },
"LongActions": { "LongActions": {
"applyChangesTextText": "Φόρτωση δεδομένων...", "applyChangesTextText": "Φόρτωση δεδομένων...",

View file

@ -395,6 +395,11 @@
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", "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.", "errorFilePassProtect": "The file is password protected and could not be opened.",
"errorFileSizeExceed": "The file size exceeds your server limit.<br>Please, contact your admin.", "errorFileSizeExceed": "The file size exceeds your server limit.<br>Please, contact your admin.",
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension.",
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>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.<br>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.<br>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.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
"errorKeyEncrypt": "Unknown key descriptor", "errorKeyEncrypt": "Unknown key descriptor",
"errorKeyExpire": "Key descriptor expired", "errorKeyExpire": "Key descriptor expired",
"errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.", "errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
@ -406,6 +411,8 @@
"errorSessionToken": "The connection to the server has been interrupted. 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:<br> opening price, max price, min price, closing price.", "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:<br> opening price, max price, min price, closing price.",
"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.<br>Please contact your Document Server administrator.",
"errorTokenExpire": "The document security token has expired.<br>Please contact your Document Server administrator.",
"errorUpdateVersionOnDisconnect": "Connection has been restored, and the file version has been changed.<br>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.", "errorUpdateVersionOnDisconnect": "Connection has been restored, and the file version has been changed.<br>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.", "errorUserDrop": "The file can't be accessed right now.",
"errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",

Some files were not shown because too many files have changed in this diff Show more