Merge branch 'release/v5.5.0' into develop

This commit is contained in:
Julia Radzhabova 2020-03-05 13:34:31 +03:00
commit 8d852e957a
1136 changed files with 10245 additions and 4218 deletions

View file

@ -4,7 +4,7 @@
The frontend for [ONLYOFFICE Document Server][2]. Builds the program interface and allows the user create, edit, save and export text, spreadsheet and presentation documents using the common interface of a document editor. The frontend for [ONLYOFFICE Document Server][2]. Builds the program interface and allows the user create, edit, save and export text, spreadsheet and presentation documents using the common interface of a document editor.
## Previos versions ## Previous versions
Until 2019-10-23 the repository was called web-apps-pro Until 2019-10-23 the repository was called web-apps-pro

View file

@ -132,7 +132,8 @@
reviewDisplay: 'original', reviewDisplay: 'original',
spellcheck: true, spellcheck: true,
compatibleFeatures: false, compatibleFeatures: false,
unit: 'cm' // cm, pt, inch unit: 'cm' // cm, pt, inch,
mentionShare : true // customize tooltip for mention
}, },
plugins: { plugins: {
autostart: ['asc.{FFE1F462-1EA2-4391-990D-4CC84940B754}'], autostart: ['asc.{FFE1F462-1EA2-4391-990D-4CC84940B754}'],
@ -778,7 +779,7 @@
if ( (typeof(config.editorConfig.customization) == 'object') && config.editorConfig.customization.loaderName) { if ( (typeof(config.editorConfig.customization) == 'object') && config.editorConfig.customization.loaderName) {
if (config.editorConfig.customization.loaderName !== 'none') params += "&customer=" + config.editorConfig.customization.loaderName; if (config.editorConfig.customization.loaderName !== 'none') params += "&customer=" + config.editorConfig.customization.loaderName;
} else } else
params += "&customer=ONLYOFFICE"; params += "&customer={{APP_CUSTOMER_NAME}}";
if ( (typeof(config.editorConfig.customization) == 'object') && config.editorConfig.customization.loaderLogo) { if ( (typeof(config.editorConfig.customization) == 'object') && config.editorConfig.customization.loaderLogo) {
if (config.editorConfig.customization.loaderLogo !== '') params += "&logo=" + config.editorConfig.customization.loaderLogo; if (config.editorConfig.customization.loaderLogo !== '') params += "&logo=" + config.editorConfig.customization.loaderLogo;
} else if ( (typeof(config.editorConfig.customization) == 'object') && config.editorConfig.customization.logo) { } else if ( (typeof(config.editorConfig.customization) == 'object') && config.editorConfig.customization.logo) {
@ -802,6 +803,9 @@
if (config.editorConfig && config.editorConfig.customization && !!config.editorConfig.customization.compactHeader) if (config.editorConfig && config.editorConfig.customization && !!config.editorConfig.customization.compactHeader)
params += "&compact=true"; params += "&compact=true";
if (config.editorConfig && config.editorConfig.customization && (config.editorConfig.customization.toolbar===false))
params += "&toolbar=false";
return params; return params;
} }

View file

@ -21,7 +21,7 @@
var editor = new Asc.asc_docs_api({ var editor = new Asc.asc_docs_api({
'id-view' : 'editor_sdk' 'id-view' : 'editor_sdk'
}); });
editor.LoadFontsFromServer(); editor.asc_loadFontsFromServer();
</script> </script>
</body> </body>
</html> </html>

View file

@ -666,4 +666,24 @@ define([
} }
} }
})()); })());
Common.UI.ComboBoxCustom = Common.UI.ComboBox.extend(_.extend({
itemClicked: function (e) {
Common.UI.ComboBox.prototype.itemClicked.call(this, e);
if (this.options.updateFormControl)
this.options.updateFormControl.call(this, this._selectedItem);
},
setValue: function(value) {
Common.UI.ComboBox.prototype.setValue.call(this, value);
if (this.options.updateFormControl)
this.options.updateFormControl.call(this, this._selectedItem);
},
selectRecord: function(record) {
Common.UI.ComboBox.prototype.selectRecord.call(this, record);
if (this.options.updateFormControl)
this.options.updateFormControl.call(this, this._selectedItem);
}
}, Common.UI.ComboBoxCustom || {}));
}); });

View file

@ -351,6 +351,7 @@ define([
if (me.thumbs.length < 3) { if (me.thumbs.length < 3) {
$(document).off('mouseup', me.binding.onMouseUp); $(document).off('mouseup', me.binding.onMouseUp);
$(document).off('mousemove', me.binding.onMouseMove); $(document).off('mousemove', me.binding.onMouseMove);
me._dragstart = undefined;
return; return;
} }
me.trigger('removethumb', me, _.findIndex(me.thumbs, {index: index})); me.trigger('removethumb', me, _.findIndex(me.thumbs, {index: index}));

View file

@ -233,11 +233,12 @@ define([
mousedown: $.proxy(function (e) { mousedown: $.proxy(function (e) {
if (this.bar.options.draggable && !_.isUndefined(dragHelper) && (3 !== e.which)) { if (this.bar.options.draggable && !_.isUndefined(dragHelper) && (3 !== e.which)) {
if (!tab.isLockTheDrag) { if (!tab.isLockTheDrag) {
if (!e.ctrlKey && !e.metaKey && !e.shiftKey) if (!e.ctrlKey && !e.metaKey && !e.shiftKey) {
tab.changeState(); tab.changeState();
dragHelper.setHookTabs(e, this.bar, this.bar.selectTabs); dragHelper.setHookTabs(e, this.bar, this.bar.selectTabs);
} }
} }
}
}, this) }, this)
}); });
}; };

View file

@ -507,7 +507,7 @@ define([
ascComment.asc_addReply(addReply); ascComment.asc_addReply(addReply);
me.api.asc_changeComment(id, ascComment); me.api.asc_changeComment(id, ascComment);
me.mode && me.mode.canRequestUsers && me.view.pickEMail(ascComment.asc_getGuid(), replyVal); me.mode && me.mode.canRequestSendNotify && me.view.pickEMail(ascComment.asc_getGuid(), replyVal);
return true; return true;
} }
@ -1142,7 +1142,8 @@ define([
commentsStore : this.popoverComments, commentsStore : this.popoverComments,
renderTo : this.sdkViewName, renderTo : this.sdkViewName,
canRequestUsers: (this.mode) ? this.mode.canRequestUsers : undefined, canRequestUsers: (this.mode) ? this.mode.canRequestUsers : undefined,
canRequestSendNotify: (this.mode) ? this.mode.canRequestSendNotify : undefined canRequestSendNotify: (this.mode) ? this.mode.canRequestSendNotify : undefined,
mentionShare: (this.mode) ? this.mode.mentionShare : true
}); });
this.popover.setCommentsStore(this.popoverComments); this.popover.setCommentsStore(this.popoverComments);
} }
@ -1363,7 +1364,7 @@ define([
this.api.asc_addComment(comment); this.api.asc_addComment(comment);
this.view.showEditContainer(false); this.view.showEditContainer(false);
this.mode && this.mode.canRequestUsers && this.view.pickEMail(comment.asc_getGuid(), commentVal); this.mode && this.mode.canRequestSendNotify && this.view.pickEMail(comment.asc_getGuid(), commentVal);
if (!_.isUndefined(this.api.asc_SetDocumentPlaceChangedEnabled)) { if (!_.isUndefined(this.api.asc_SetDocumentPlaceChangedEnabled)) {
this.api.asc_SetDocumentPlaceChangedEnabled(false); this.api.asc_SetDocumentPlaceChangedEnabled(false);
} }

View file

@ -118,6 +118,13 @@ define([
if ( !!obj.action ) { if ( !!obj.action ) {
titlebuttons[obj.action].btn.click(); titlebuttons[obj.action].btn.click();
} }
} else
if (/element:show/.test(cmd)) {
var _mr = /title:(?:(true|show)|(false|hide))/.exec(param);
if ( _mr ) {
if (!!_mr[1]) $('#app-title').show();
else if (!!_mr[2]) $('#app-title').hide();
}
} }
}; };
@ -186,23 +193,32 @@ define([
} }
var header = webapp.getController('Viewport').getView('Common.Views.Header'); var header = webapp.getController('Viewport').getView('Common.Views.Header');
titlebuttons = { titlebuttons = {};
'save': {btn: header.btnSave, disabled:false}, if ( !!header.btnSave ) {
'print': {btn: header.btnPrint, disabled:false}, titlebuttons['save'] = {btn: header.btnSave, disabled:false};
'undo': {btn: header.btnUndo, disabled:false},
'redo': {btn: header.btnRedo, disabled:false} var iconname = /\s?([^\s]+)$/.exec(titlebuttons.save.btn.$icon.attr('class'));
}; !!iconname && iconname.length && (titlebuttons.save.icon = btnsave_icons[iconname]);
}
if ( !!header.btnPrint )
titlebuttons['print'] = {btn: header.btnPrint, disabled:false};
if ( !!header.btnUndo )
titlebuttons['undo'] = {btn: header.btnUndo, disabled:false};
if ( !!header.btnRedo )
titlebuttons['redo'] = {btn: header.btnRedo, disabled:false};
for (var i in titlebuttons) { for (var i in titlebuttons) {
titlebuttons[i].btn.options.signals = ['disabled']; titlebuttons[i].btn.options.signals = ['disabled'];
titlebuttons[i].btn.on('disabled', _onTitleButtonDisabled.bind(this, i)); titlebuttons[i].btn.on('disabled', _onTitleButtonDisabled.bind(this, i));
} }
header.btnSave.options.signals.push('icon:changed'); if (!!titlebuttons.save) {
header.btnSave.on('icon:changed', _onSaveIconChanged.bind(this)); titlebuttons.save.btn.options.signals.push('icon:changed');
titlebuttons.save.btn.on('icon:changed', _onSaveIconChanged.bind(this));
var iconname = /\s?([^\s]+)$/.exec(titlebuttons.save.btn.$icon.attr('class')); }
!!iconname && iconname.length && (titlebuttons.save.icon = btnsave_icons[iconname]);
if ( !!config.callback_editorconfig ) { if ( !!config.callback_editorconfig ) {
config.callback_editorconfig(); config.callback_editorconfig();

View file

@ -417,9 +417,9 @@ define([
if (value.Get_WidowControl()) if (value.Get_WidowControl())
proptext += ((value.Get_WidowControl() ? me.textWidow : me.textNoWidow) + ', '); proptext += ((value.Get_WidowControl() ? me.textWidow : me.textNoWidow) + ', ');
if (value.Get_Tabs() !== undefined) if (value.Get_Tabs() !== undefined)
proptext += proptext += (me.textTabs + ', '); proptext += (me.textTabs + ', ');
if (value.Get_NumPr() !== undefined) if (value.Get_NumPr() !== undefined)
proptext += proptext += (me.textNum + ', '); proptext += (me.textNum + ', ');
if (value.Get_PStyle() !== undefined) { if (value.Get_PStyle() !== undefined) {
var style = me.api.asc_GetStyleNameById(value.Get_PStyle()); var style = me.api.asc_GetStyleNameById(value.Get_PStyle());
if (!_.isEmpty(style)) proptext += (style + ', '); if (!_.isEmpty(style)) proptext += (style + ', ');

View file

@ -166,7 +166,7 @@ define([
.removeClass('dropdown-toggle') .removeClass('dropdown-toggle')
.menu = false; .menu = false;
$panelUsers[(!_readonlyRights && appConfig && !appConfig.isReviewOnly && (appConfig.sharingSettingsUrl && appConfig.sharingSettingsUrl.length || appConfig.canRequestSharingSettings)) ? 'show' : 'hide'](); $panelUsers[(!_readonlyRights && appConfig && (appConfig.sharingSettingsUrl && appConfig.sharingSettingsUrl.length || appConfig.canRequestSharingSettings)) ? 'show' : 'hide']();
} }
$btnUsers.find('.caption') $btnUsers.find('.caption')
@ -248,8 +248,8 @@ define([
Common.NotificationCenter.trigger('collaboration:sharing'); Common.NotificationCenter.trigger('collaboration:sharing');
}); });
$labelChangeRights[(!mode.isOffline && !mode.isReviewOnly && (mode.sharingSettingsUrl && mode.sharingSettingsUrl.length || mode.canRequestSharingSettings))?'show':'hide'](); $labelChangeRights[(!mode.isOffline && (mode.sharingSettingsUrl && mode.sharingSettingsUrl.length || mode.canRequestSharingSettings))?'show':'hide']();
$panelUsers[(editingUsers > 1 || editingUsers > 0 && !appConfig.isEdit && !appConfig.isRestrictedEdit || !mode.isOffline && !mode.isReviewOnly && (mode.sharingSettingsUrl && mode.sharingSettingsUrl.length || mode.canRequestSharingSettings)) ? 'show' : 'hide'](); $panelUsers[(editingUsers > 1 || editingUsers > 0 && !appConfig.isEdit && !appConfig.isRestrictedEdit || !mode.isOffline && (mode.sharingSettingsUrl && mode.sharingSettingsUrl.length || mode.canRequestSharingSettings)) ? 'show' : 'hide']();
if ( $saveStatus ) { if ( $saveStatus ) {
$saveStatus.attr('data-width', me.textSaveExpander); $saveStatus.attr('data-width', me.textSaveExpander);

View file

@ -95,6 +95,7 @@ define([
}); });
}); });
} }
me._isSetEvents = true;
} }
return { return {
@ -119,7 +120,7 @@ define([
if ( this.appConfig.isPasswordSupport ) { if ( this.appConfig.isPasswordSupport ) {
this.btnAddPwd = new Common.UI.Button({ this.btnAddPwd = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top', cls: 'btn-toolbar x-huge icon-top',
iconCls: 'btn-ic-protect', iconCls: 'toolbar__icon btn-ic-protect',
caption: this.txtEncrypt caption: this.txtEncrypt
}); });
this.btnsAddPwd.push(this.btnAddPwd); this.btnsAddPwd.push(this.btnAddPwd);
@ -135,7 +136,7 @@ define([
if (this.appConfig.isSignatureSupport) { if (this.appConfig.isSignatureSupport) {
this.btnSignature = new Common.UI.Button({ this.btnSignature = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top', cls: 'btn-toolbar x-huge icon-top',
iconCls: 'btn-ic-signature', iconCls: 'toolbar__icon btn-ic-signature',
caption: this.txtSignature, caption: this.txtSignature,
menu: (this.appPrefix !== 'pe-') menu: (this.appPrefix !== 'pe-')
}); });
@ -221,6 +222,7 @@ define([
}, },
getButton: function(type, parent) { getButton: function(type, parent) {
var me = this;
if ( type == 'signature' ) { if ( type == 'signature' ) {
var button = new Common.UI.Button({ var button = new Common.UI.Button({
cls: 'btn-text-default', cls: 'btn-text-default',
@ -229,7 +231,11 @@ define([
disabled: this._state.invisibleSignDisabled disabled: this._state.invisibleSignDisabled
}); });
this.btnsInvisibleSignature.push(button); this.btnsInvisibleSignature.push(button);
if (this._isSetEvents) {
button.on('click', function (b, e) {
me.fireEvent('protect:signature', ['invisible']);
});
}
return button; return button;
} else if ( type == 'add-password' ) { } else if ( type == 'add-password' ) {
var button = new Common.UI.Button({ var button = new Common.UI.Button({
@ -240,7 +246,11 @@ define([
visible: !this._state.hasPassword visible: !this._state.hasPassword
}); });
this.btnsAddPwd.push(button); this.btnsAddPwd.push(button);
if (this._isSetEvents) {
button.on('click', function (b, e) {
me.fireEvent('protect:password', [b, 'add']);
});
}
return button; return button;
} else if ( type == 'del-password' ) { } else if ( type == 'del-password' ) {
var button = new Common.UI.Button({ var button = new Common.UI.Button({
@ -251,7 +261,11 @@ define([
visible: this._state.hasPassword visible: this._state.hasPassword
}); });
this.btnsDelPwd.push(button); this.btnsDelPwd.push(button);
if (this._isSetEvents) {
button.on('click', function (b, e) {
me.fireEvent('protect:password', [b, 'delete']);
});
}
return button; return button;
} else if ( type == 'change-password' ) { } else if ( type == 'change-password' ) {
var button = new Common.UI.Button({ var button = new Common.UI.Button({
@ -262,7 +276,11 @@ define([
visible: this._state.hasPassword visible: this._state.hasPassword
}); });
this.btnsChangePwd.push(button); this.btnsChangePwd.push(button);
if (this._isSetEvents) {
button.on('click', function (b, e) {
me.fireEvent('protect:password', [b, 'add']);
});
}
return button; return button;
} }
}, },

View file

@ -102,6 +102,7 @@ define([
this.reviewStore = options.reviewStore; this.reviewStore = options.reviewStore;
this.canRequestUsers = options.canRequestUsers; this.canRequestUsers = options.canRequestUsers;
this.canRequestSendNotify = options.canRequestSendNotify; this.canRequestSendNotify = options.canRequestSendNotify;
this.mentionShare = options.mentionShare;
this.externalUsers = []; this.externalUsers = [];
this._state = {commentsVisible: false, reviewVisible: false}; this._state = {commentsVisible: false, reviewVisible: false};
@ -244,7 +245,7 @@ define([
textReply: me.textReply, textReply: me.textReply,
textClose: me.textClose, textClose: me.textClose,
maxCommLength: Asc.c_oAscMaxCellOrCommentLength, maxCommLength: Asc.c_oAscMaxCellOrCommentLength,
textMention: me.canRequestSendNotify ? me.textMention : '' textMention: me.canRequestSendNotify ? (me.mentionShare ? me.textMention : me.textMentionNotify) : ''
}) })
) )
}); });
@ -1184,6 +1185,7 @@ define([
textResolve : 'Resolve', textResolve : 'Resolve',
textOpenAgain : "Open Again", textOpenAgain : "Open Again",
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'
}, Common.Views.ReviewPopover || {})) }, Common.Views.ReviewPopover || {}))
}); });

View file

@ -12,6 +12,8 @@
(min-resolution: 192dpi) (min-resolution: 192dpi)
{ {
content: ~"url('@{common-image-const-path}/about/logo@2x.png')"; content: ~"url('@{common-image-const-path}/about/logo@2x.png')";
display: block;
transform: scale(.5);
} }
} }
} }

View file

@ -210,13 +210,13 @@
@2ximage: replace(@common-controls, '\.png$', '@2x.png'); @2ximage: replace(@common-controls, '\.png$', '@2x.png');
@media only screen { @media only screen {
@media (-webkit-min-device-pixel-ratio: 1.5) and (-webkit-max-device-pixel-ratio: 1.9), //@media (-webkit-min-device-pixel-ratio: 1.5) and (-webkit-max-device-pixel-ratio: 1.9),
(min-resolution: 1.5dppx) and (max-resolution: 1.9dppx), // (min-resolution: 1.5dppx) and (max-resolution: 1.9dppx),
(min-resolution: 144dpi) and (max-resolution: 191dpi) // (min-resolution: 144dpi) and (max-resolution: 191dpi)
{ //{
background-image: ~"url(@{common-image-const-path}/@{1d5ximage})"; // background-image: ~"url(@{common-image-const-path}/@{1d5ximage})";
background-size: @common-controls-width auto; // background-size: @common-controls-width auto;
} //}
@media (-webkit-min-device-pixel-ratio: 2), @media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 2dppx), (min-resolution: 2dppx),
@ -235,13 +235,13 @@
background-repeat: no-repeat; background-repeat: no-repeat;
@media only screen { @media only screen {
@media (-webkit-min-device-pixel-ratio: 1.5) and (-webkit-max-device-pixel-ratio: 1.9), //@media (-webkit-min-device-pixel-ratio: 1.5) and (-webkit-max-device-pixel-ratio: 1.9),
(min-resolution: 1.5dppx) and (max-resolution: 1.9dppx), // (min-resolution: 1.5dppx) and (max-resolution: 1.9dppx),
(min-resolution: 144dpi) and (max-resolution: 191dpi) // (min-resolution: 144dpi) and (max-resolution: 191dpi)
{ //{
background-image: ~"url(@{common-image-const-path}/hsbcolorpicker/hsb-colorpicker@1.5x.png)"; // background-image: ~"url(@{common-image-const-path}/hsbcolorpicker/hsb-colorpicker@1.5x.png)";
background-size: @img-colorpicker-width auto; // background-size: @img-colorpicker-width auto;
} //}
@media (-webkit-min-device-pixel-ratio: 2), @media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 2dppx), (min-resolution: 2dppx),
@ -263,13 +263,13 @@
background-repeat: no-repeat; background-repeat: no-repeat;
@media only screen { @media only screen {
@media (-webkit-min-device-pixel-ratio: 1.5) and (-webkit-max-device-pixel-ratio: 1.9), //@media (-webkit-min-device-pixel-ratio: 1.5) and (-webkit-max-device-pixel-ratio: 1.9),
(min-resolution: 1.5dppx) and (max-resolution: 1.9dppx), // (min-resolution: 1.5dppx) and (max-resolution: 1.9dppx),
(min-resolution: 144dpi) and (max-resolution: 191dpi) // (min-resolution: 144dpi) and (max-resolution: 191dpi)
{ //{
background-image: ~"url(@{common-image-const-path}/controls/flags@1.5x.png)"; // background-image: ~"url(@{common-image-const-path}/controls/flags@1.5x.png)";
background-size: @img-flags-width auto; // background-size: @img-flags-width auto;
} //}
@media (-webkit-min-device-pixel-ratio: 2), @media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 2dppx), (min-resolution: 2dppx),

View file

@ -10,6 +10,9 @@
height: 100%; height: 100%;
width: 100%; width: 100%;
color: #b2b2b2; color: #b2b2b2;
td {
padding: 5px;
}
} }
} }

View file

@ -13,6 +13,9 @@
width: 100%; width: 100%;
height: 100%; height: 100%;
color: #b2b2b2; color: #b2b2b2;
td {
padding: 5px;
}
} }
} }
@ -58,3 +61,8 @@
} }
} }
} }
.no-borders > .listview .item {
border-color: transparent;
border-top-color: transparent;
}

View file

@ -10,6 +10,9 @@
height: 100%; height: 100%;
width: 100%; width: 100%;
color: #b2b2b2; color: #b2b2b2;
td {
padding: 5px;
}
} }
} }

View file

@ -361,6 +361,7 @@ define([
var goto = false; var goto = false;
if(arrChangeReview.length == 0) { if(arrChangeReview.length == 0) {
$('#current-change').css('display','none'); $('#current-change').css('display','none');
$('.accept-reject').find('a').addClass('disabled');
} else { } else {
$('#current-change #date-change').html(arrChangeReview[0].date); $('#current-change #date-change').html(arrChangeReview[0].date);
$('#current-change #user-name').html(arrChangeReview[0].user); $('#current-change #user-name').html(arrChangeReview[0].user);
@ -435,8 +436,10 @@ define([
$('#current-change').hide(); $('#current-change').hide();
$('#btn-goto-change').hide(); $('#btn-goto-change').hide();
$('#btn-delete-change').hide(); $('#btn-delete-change').hide();
$('.accept-reject').find('a').addClass('disabled');
} else { } else {
$('#current-change').show(); $('#current-change').show();
$('.accept-reject').find('a').removeClass('disabled');
this.initChange(); this.initChange();
} }
} }
@ -445,6 +448,11 @@ define([
changeReview: function (data) { changeReview: function (data) {
if (data && data.length>0) { if (data && data.length>0) {
var me = this, arr = []; var me = this, arr = [];
var c_paragraphLinerule = {
LINERULE_LEAST: 0,
LINERULE_AUTO: 1,
LINERULE_EXACT: 2
};
_.each(data, function (item) { _.each(data, function (item) {
var changetext = '', proptext = '', var changetext = '', proptext = '',
value = item.get_Value(), value = item.get_Value(),
@ -602,9 +610,9 @@ define([
if (value.Get_WidowControl()) if (value.Get_WidowControl())
proptext += ((value.Get_WidowControl() ? me.textWidow : me.textNoWidow) + ', '); proptext += ((value.Get_WidowControl() ? me.textWidow : me.textNoWidow) + ', ');
if (value.Get_Tabs() !== undefined) if (value.Get_Tabs() !== undefined)
proptext += proptext += (me.textTabs + ', '); proptext += (me.textTabs + ', ');
if (value.Get_NumPr() !== undefined) if (value.Get_NumPr() !== undefined)
proptext += proptext += (me.textNum + ', '); proptext += (me.textNum + ', ');
if (value.Get_PStyle() !== undefined) { if (value.Get_PStyle() !== undefined) {
var style = me.api.asc_GetStyleNameById(value.Get_PStyle()); var style = me.api.asc_GetStyleNameById(value.Get_PStyle());
if (!_.isEmpty(style)) proptext += (style + ', '); if (!_.isEmpty(style)) proptext += (style + ', ');

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

View file

@ -0,0 +1,15 @@
<svg width="100" height="14" viewBox="0 0 100 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20.0149 6.48201C19.959 5.79068 20.0611 5.0957 20.3134 4.44954C20.5658 3.80338 20.9618 3.22293 21.4717 2.75199C22.4021 1.92114 23.6137 1.47408 24.8615 1.50116C26.0997 1.47534 27.3009 1.92391 28.2183 2.75479C28.7177 3.23878 29.1043 3.82664 29.3506 4.47661C29.5969 5.12659 29.6969 5.82276 29.6435 6.51568C29.6972 7.20401 29.5972 7.89564 29.3507 8.54068C29.1042 9.18571 28.7175 9.76806 28.2183 10.2457C27.2979 11.0717 26.0988 11.5195 24.8615 11.4993C23.6157 11.5143 22.4085 11.0676 21.4731 10.2457C20.9648 9.76636 20.5701 9.1797 20.3178 8.52855C20.0655 7.8774 19.962 7.17821 20.0149 6.48201ZM22.1052 6.48201C22.0366 7.36424 22.2586 8.2447 22.7374 8.98927C23.0867 9.47357 23.5885 9.82682 24.1626 9.99245C24.2771 10.0259 24.3948 10.0468 24.5138 10.0549C24.6086 10.0549 24.7358 10.0865 24.8306 10.0865C24.9485 10.0904 25.0665 10.0798 25.1818 10.0549C25.3011 10.0496 25.4192 10.0286 25.533 9.99245C26.0978 9.82508 26.589 9.47144 26.9266 8.98927C27.3973 8.25268 27.6189 7.38464 27.5588 6.51288C27.6235 5.64069 27.4016 4.77122 26.9266 4.03648C26.589 3.55431 26.0978 3.20067 25.533 3.0333C25.4186 2.99986 25.3008 2.97892 25.1818 2.97086C25.0554 2.97086 24.9599 2.93929 24.8306 2.93929C24.724 2.93256 24.617 2.94323 24.5138 2.97086C24.3948 2.97892 24.2771 2.99985 24.1626 3.0333C23.5925 3.20713 23.093 3.55868 22.7374 4.03648C22.2389 4.74885 22.0144 5.61693 22.1052 6.48131V6.48201Z" fill="white"/>
<path d="M30.6865 1.59473H33.2854L36.7055 7.738L37.2119 9.05407H37.2435L37.2119 7.33042V1.59473H39.2068V11.3733H36.6079L33.1878 4.9796L32.6814 3.88241H32.6533L32.6849 5.60606V11.3733H30.6865V1.59473Z" fill="white"/>
<path d="M41.7406 1.59473H43.767V9.7121H47.6935V11.3733H41.7406V1.59473Z" fill="white"/>
<path d="M46.6934 1.59473H49.005L51.0315 5.01117L51.3483 5.70077H51.3799L51.7311 5.01117L53.7877 1.59473H55.8781L52.3316 7.39285V11.3733H50.3368V7.36199L46.6934 1.59473Z" fill="white"/>
<path d="M56.3649 6.48201C56.309 5.79068 56.4111 5.0957 56.6635 4.44954C56.9159 3.80338 57.3119 3.22292 57.8217 2.75199C58.7522 1.92114 59.9638 1.47408 61.2116 1.50116C62.4498 1.47534 63.6509 1.92391 64.5684 2.75479C65.0678 3.23878 65.4543 3.82664 65.7006 4.47661C65.947 5.12659 66.047 5.82276 65.9936 6.51568C66.0472 7.204 65.9472 7.89564 65.7008 8.54068C65.4543 9.18571 65.0675 9.76806 64.5684 10.2457C63.648 11.0717 62.4488 11.5196 61.2116 11.4993C59.9648 11.5197 58.7557 11.0724 57.8231 10.2457C57.3208 9.76193 56.93 9.17457 56.6782 8.52456C56.4264 7.87455 56.3194 7.17751 56.3649 6.48201ZM58.4553 6.48201C58.3867 7.36424 58.6087 8.2447 59.0875 8.98927C59.4305 9.47981 59.9348 9.83478 60.5127 9.99245C60.6271 10.0259 60.7449 10.0468 60.8639 10.0549C60.9587 10.0549 61.0858 10.0865 61.1807 10.0865C61.2986 10.0918 61.4168 10.0812 61.5319 10.0549C61.6512 10.0496 61.7693 10.0286 61.8831 9.99245C62.4478 9.82508 62.9391 9.47144 63.2767 8.98927C63.7473 8.25265 63.9689 7.38464 63.9088 6.51287C63.9736 5.64069 63.7516 4.77122 63.2767 4.03648C62.9391 3.55431 62.4478 3.20067 61.8831 3.0333C61.7686 2.99986 61.6509 2.97892 61.5319 2.97086C61.4054 2.97086 61.3099 2.93929 61.1807 2.93929C61.0741 2.93256 60.9671 2.94322 60.8639 2.97086C60.7449 2.97892 60.6271 2.99985 60.5127 3.0333C59.9425 3.20713 59.4431 3.55868 59.0875 4.03648C58.603 4.75524 58.3799 5.61814 58.4553 6.48131V6.48201Z" fill="white"/>
<path d="M67.373 1.59473H72.9151V3.22437H69.403V5.60957H72.7598V7.27078H69.403V11.3768H67.373V1.59473Z" fill="white"/>
<path d="M74.3172 1.59473H79.8592V3.22437H76.3471V5.60957H79.704V7.27078H76.3471V11.3768H74.3172V1.59473Z" fill="white"/>
<path d="M81.153 11.3733V1.59473H83.1794V11.3733H81.153Z" fill="white"/>
<path d="M92.8108 1.81254V3.50533C92.4613 3.37879 92.1008 3.28485 91.734 3.22472C91.3256 3.15985 90.9127 3.12841 90.4992 3.13071C90.0507 3.1014 89.6014 3.17354 89.1847 3.34177C88.7681 3.51 88.3948 3.76998 88.0927 4.10233C87.5102 4.76849 87.2044 5.63174 87.2379 6.51558C87.2028 7.36904 87.4839 8.20546 88.0274 8.865C88.3102 9.18731 88.6619 9.44199 89.0566 9.61018C89.4512 9.77836 89.8787 9.85575 90.3074 9.83661C90.6586 9.83661 91.0042 9.80504 91.4158 9.77418C91.8503 9.71406 92.2753 9.59829 92.6802 9.42973L92.8066 11.0909C92.7241 11.1275 92.6394 11.1589 92.553 11.1849C92.4266 11.2165 92.2994 11.2474 92.1414 11.279C91.8878 11.3414 91.571 11.373 91.191 11.4354C90.811 11.467 90.431 11.4978 90.0194 11.4978H89.7026C88.5515 11.4203 87.4543 10.9815 86.5678 10.2442C86.0696 9.78582 85.6824 9.22024 85.4355 8.59028C85.1886 7.96033 85.0884 7.28252 85.1426 6.60818C85.1032 5.92392 85.2068 5.23897 85.4467 4.59683C85.6866 3.95469 86.0576 3.3694 86.5362 2.87816C87.5604 1.96499 88.9039 1.49209 90.2751 1.5621C90.6867 1.5621 91.0667 1.5621 91.3835 1.59367C91.7347 1.62523 92.0487 1.68767 92.3971 1.75011C92.4603 1.78167 92.5551 1.78167 92.6191 1.81254C92.6483 1.79718 92.6808 1.78915 92.7139 1.78915C92.7469 1.78915 92.7795 1.79718 92.8087 1.81254H92.8108Z" fill="white"/>
<path d="M94.1096 1.59473H100V3.13037H96.1044V5.57519H99.6516V7.07997H96.1044V9.83768H99.9993V11.3733H94.1096V1.59473Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.12556 13.8272L0.367848 10.9422C-0.122616 10.6903 -0.122616 10.3012 0.367848 10.0725L2.37233 9.06696L6.10392 10.9436C6.3808 11.0683 6.67805 11.1325 6.9783 11.1325C7.27856 11.1325 7.5758 11.0683 7.85268 10.9436L11.5849 9.06696L13.5894 10.0739C14.0799 10.3258 14.0799 10.7149 13.5894 10.9436L7.8317 13.8286C7.28337 14.0571 6.6752 14.0571 6.12687 13.8286L6.12556 13.8272Z" fill="white" fill-opacity="0.5"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.12556 10.2803L0.367848 7.39525C-0.122616 7.14334 -0.122616 6.75422 0.367848 6.52553L2.32971 5.54041L6.12556 7.44029C6.40244 7.56494 6.69968 7.62914 6.99994 7.62914C7.30019 7.62914 7.59744 7.56494 7.87432 7.44029L11.6702 5.54041L13.632 6.52553C14.1225 6.77744 14.1225 7.16656 13.632 7.39525L7.87432 10.2803C7.59744 10.4049 7.30019 10.4691 6.99994 10.4691C6.69968 10.4691 6.40244 10.4049 6.12556 10.2803Z" fill="white" fill-opacity="0.75"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.12567 6.82577L0.367955 3.94217C-0.122509 3.69026 -0.122509 3.30114 0.367955 3.07245L6.12567 0.188852C6.40255 0.0642006 6.69979 0 7.00005 0C7.3003 0 7.59755 0.0642006 7.87442 0.188852L13.6321 3.07386C14.1226 3.32577 14.1226 3.71489 13.6321 3.94358L7.87442 6.82858C7.31102 7.0575 6.68907 7.0575 6.12567 6.82858V6.82577Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 6.3 KiB

View file

@ -0,0 +1,29 @@
<svg width="100" height="14" viewBox="0 0 100 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20.0149 6.48201C19.959 5.79068 20.0611 5.0957 20.3134 4.44954C20.5658 3.80338 20.9618 3.22293 21.4717 2.75199C22.4021 1.92114 23.6137 1.47408 24.8615 1.50116C26.0997 1.47534 27.3009 1.92391 28.2183 2.75479C28.7177 3.23878 29.1043 3.82664 29.3506 4.47661C29.5969 5.12659 29.6969 5.82276 29.6435 6.51568C29.6972 7.20401 29.5972 7.89564 29.3507 8.54068C29.1042 9.18571 28.7175 9.76806 28.2183 10.2457C27.2979 11.0717 26.0988 11.5195 24.8615 11.4993C23.6157 11.5143 22.4085 11.0676 21.4731 10.2457C20.9648 9.76636 20.5701 9.1797 20.3178 8.52855C20.0655 7.8774 19.962 7.17821 20.0149 6.48201ZM22.1052 6.48201C22.0366 7.36424 22.2586 8.2447 22.7374 8.98927C23.0867 9.47357 23.5885 9.82682 24.1626 9.99245C24.2771 10.0259 24.3948 10.0468 24.5138 10.0549C24.6086 10.0549 24.7358 10.0865 24.8306 10.0865C24.9485 10.0904 25.0665 10.0798 25.1818 10.0549C25.3011 10.0496 25.4192 10.0286 25.533 9.99245C26.0978 9.82508 26.589 9.47144 26.9266 8.98927C27.3973 8.25268 27.6189 7.38464 27.5588 6.51288C27.6235 5.64069 27.4016 4.77122 26.9266 4.03648C26.589 3.55431 26.0978 3.20067 25.533 3.0333C25.4186 2.99986 25.3008 2.97892 25.1818 2.97086C25.0554 2.97086 24.9599 2.93929 24.8306 2.93929C24.724 2.93256 24.617 2.94323 24.5138 2.97086C24.3948 2.97892 24.2771 2.99985 24.1626 3.0333C23.5925 3.20713 23.093 3.55868 22.7374 4.03648C22.2389 4.74885 22.0144 5.61693 22.1052 6.48131V6.48201Z" fill="#333333"/>
<path d="M30.6865 1.59473H33.2855L36.7055 7.738L37.2119 9.05407H37.2436L37.2119 7.33042V1.59473H39.2068V11.3733H36.6079L33.1878 4.9796L32.6814 3.88241H32.6533L32.6849 5.60606V11.3733H30.6865V1.59473Z" fill="#333333"/>
<path d="M41.7406 1.59473H43.767V9.7121H47.6935V11.3733H41.7406V1.59473Z" fill="#333333"/>
<path d="M46.6934 1.59473H49.005L51.0315 5.01117L51.3482 5.70077H51.3799L51.7311 5.01117L53.7877 1.59473H55.8781L52.3316 7.39285V11.3733H50.3368V7.36199L46.6934 1.59473Z" fill="#333333"/>
<path d="M56.3649 6.48201C56.309 5.79068 56.4111 5.0957 56.6635 4.44954C56.9159 3.80338 57.3119 3.22292 57.8217 2.75199C58.7522 1.92114 59.9638 1.47408 61.2116 1.50116C62.4498 1.47534 63.6509 1.92391 64.5684 2.75479C65.0678 3.23878 65.4543 3.82664 65.7006 4.47661C65.947 5.12659 66.047 5.82276 65.9936 6.51568C66.0472 7.204 65.9472 7.89564 65.7008 8.54068C65.4543 9.18571 65.0675 9.76806 64.5684 10.2457C63.648 11.0717 62.4488 11.5196 61.2116 11.4993C59.9648 11.5197 58.7557 11.0724 57.8231 10.2457C57.3208 9.76193 56.93 9.17457 56.6782 8.52456C56.4264 7.87455 56.3194 7.17751 56.3649 6.48201ZM58.4553 6.48201C58.3867 7.36424 58.6087 8.2447 59.0875 8.98927C59.4305 9.47981 59.9348 9.83478 60.5127 9.99245C60.6271 10.0259 60.7449 10.0468 60.8639 10.0549C60.9587 10.0549 61.0858 10.0865 61.1807 10.0865C61.2986 10.0918 61.4168 10.0812 61.5319 10.0549C61.6512 10.0496 61.7693 10.0286 61.8831 9.99245C62.4478 9.82508 62.9391 9.47144 63.2767 8.98927C63.7473 8.25265 63.9689 7.38464 63.9088 6.51287C63.9736 5.64069 63.7516 4.77122 63.2767 4.03648C62.9391 3.55431 62.4478 3.20067 61.8831 3.0333C61.7686 2.99986 61.6509 2.97892 61.5319 2.97086C61.4054 2.97086 61.3099 2.93929 61.1807 2.93929C61.0741 2.93256 60.9671 2.94322 60.8639 2.97086C60.7449 2.97892 60.6271 2.99985 60.5127 3.0333C59.9425 3.20713 59.4431 3.55868 59.0875 4.03648C58.603 4.75524 58.3799 5.61814 58.4553 6.48131V6.48201Z" fill="#333333"/>
<path d="M67.373 1.59473H72.9151V3.22437H69.403V5.60957H72.7598V7.27078H69.403V11.3768H67.373V1.59473Z" fill="#333333"/>
<path d="M74.3172 1.59473H79.8592V3.22437H76.3471V5.60957H79.704V7.27078H76.3471V11.3768H74.3172V1.59473Z" fill="#333333"/>
<path d="M81.153 11.3733V1.59473H83.1794V11.3733H81.153Z" fill="#333333"/>
<path d="M92.8108 1.81254V3.50533C92.4613 3.37879 92.1008 3.28485 91.734 3.22472C91.3256 3.15985 90.9127 3.12841 90.4992 3.13071C90.0507 3.1014 89.6014 3.17354 89.1847 3.34177C88.7681 3.51 88.3948 3.76998 88.0927 4.10233C87.5102 4.76849 87.2044 5.63174 87.2379 6.51558C87.2028 7.36904 87.4839 8.20546 88.0274 8.865C88.3102 9.18731 88.6619 9.44199 89.0566 9.61018C89.4512 9.77836 89.8787 9.85575 90.3074 9.83661C90.6586 9.83661 91.0042 9.80504 91.4158 9.77418C91.8503 9.71406 92.2753 9.59829 92.6802 9.42973L92.8066 11.0909C92.7241 11.1275 92.6394 11.1589 92.553 11.1849C92.4266 11.2165 92.2994 11.2474 92.1414 11.279C91.8878 11.3414 91.571 11.373 91.191 11.4354C90.811 11.467 90.431 11.4978 90.0194 11.4978H89.7026C88.5515 11.4203 87.4543 10.9815 86.5678 10.2442C86.0696 9.78582 85.6824 9.22024 85.4355 8.59028C85.1886 7.96033 85.0884 7.28252 85.1426 6.60818C85.1032 5.92392 85.2068 5.23897 85.4467 4.59683C85.6866 3.95469 86.0576 3.3694 86.5362 2.87816C87.5604 1.96499 88.9039 1.49209 90.2751 1.5621C90.6867 1.5621 91.0667 1.5621 91.3835 1.59367C91.7347 1.62523 92.0487 1.68767 92.3971 1.75011C92.4603 1.78167 92.5551 1.78167 92.6191 1.81254C92.6483 1.79718 92.6808 1.78915 92.7139 1.78915C92.7469 1.78915 92.7795 1.79718 92.8087 1.81254H92.8108Z" fill="#333333"/>
<path d="M94.1096 1.59473H100V3.13037H96.1044V5.57519H99.6516V7.07997H96.1044V9.83768H99.9993V11.3733H94.1096V1.59473Z" fill="#333333"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.12556 13.8272L0.367848 10.9422C-0.122616 10.6903 -0.122616 10.3012 0.367848 10.0725L2.37233 9.06696L6.10392 10.9436C6.3808 11.0683 6.67805 11.1325 6.9783 11.1325C7.27856 11.1325 7.5758 11.0683 7.85268 10.9436L11.5849 9.06696L13.5894 10.0739C14.0799 10.3258 14.0799 10.7149 13.5894 10.9436L7.8317 13.8286C7.28337 14.0571 6.6752 14.0571 6.12687 13.8286L6.12556 13.8272Z" fill="url(#paint0_linear)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.12556 10.2803L0.367848 7.39525C-0.122616 7.14334 -0.122616 6.75422 0.367848 6.52553L2.32971 5.54041L6.12556 7.44029C6.40244 7.56494 6.69968 7.62914 6.99994 7.62914C7.30019 7.62914 7.59744 7.56494 7.87432 7.44029L11.6702 5.54041L13.632 6.52553C14.1225 6.77744 14.1225 7.16656 13.632 7.39525L7.87432 10.2803C7.59744 10.4049 7.30019 10.4691 6.99994 10.4691C6.69968 10.4691 6.40244 10.4049 6.12556 10.2803Z" fill="url(#paint1_linear)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.12567 6.82577L0.367955 3.94217C-0.122509 3.69026 -0.122509 3.30114 0.367955 3.07245L6.12567 0.188852C6.40255 0.0642006 6.69979 0 7.00005 0C7.3003 0 7.59755 0.0642006 7.87442 0.188852L13.6321 3.07386C14.1226 3.32577 14.1226 3.71489 13.6321 3.94358L7.87442 6.82858C7.31102 7.0575 6.68907 7.0575 6.12567 6.82858V6.82577Z" fill="url(#paint2_linear)"/>
<defs>
<linearGradient id="paint0_linear" x1="6.99259" y1="16.5603" x2="6.99259" y2="6.03313" gradientUnits="userSpaceOnUse">
<stop stop-color="#FCC2B1"/>
<stop offset="0.885" stop-color="#D9420B"/>
</linearGradient>
<linearGradient id="paint1_linear" x1="6.99994" y1="12.0019" x2="6.99994" y2="5.07711" gradientUnits="userSpaceOnUse">
<stop stop-color="#DEEDC9"/>
<stop offset="0.661" stop-color="#8BBA25"/>
</linearGradient>
<linearGradient id="paint2_linear" x1="7.00005" y1="9.20536" x2="7.00005" y2="-0.224009" gradientUnits="userSpaceOnUse">
<stop stop-color="#C2EBFA"/>
<stop offset="1" stop-color="#26A8DE"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 6.9 KiB

View file

@ -2,12 +2,8 @@
cursor: pointer; cursor: pointer;
display: block; display: block;
background-color: #fff; background-color: #fff;
.item-content {
padding-left: 0;
}
.item-inner { .item-inner {
justify-content: flex-start; justify-content: flex-start;
padding-left: 16px;
} }
.color-schema-block { .color-schema-block {
display: flex; display: flex;

View file

@ -2,12 +2,8 @@
cursor: pointer; cursor: pointer;
display: block; display: block;
background-color: #fff; background-color: #fff;
.item-content {
padding-left: 0;
}
.item-inner { .item-inner {
justify-content: flex-start; justify-content: flex-start;
padding-left: 16px;
} }
.color-schema-block { .color-schema-block {
display: flex; display: flex;

View file

@ -27,8 +27,6 @@
&.popup, &.popup,
&.popover { &.popover {
.list-block { .list-block {
margin: 32px 0;
ul { ul {
border-radius: 0; border-radius: 0;
background: #fff; background: #fff;

View file

@ -470,6 +470,10 @@ define([
this.getApplication().getController('Common.Controllers.ReviewChanges').commentsShowHide(value ? 'show' : 'hide'); this.getApplication().getController('Common.Controllers.ReviewChanges').commentsShowHide(value ? 'show' : 'hide');
/** coauthoring end **/ /** coauthoring end **/
value = Common.localStorage.getBool("de-settings-cachemode", true);
Common.Utils.InternalSettings.set("de-settings-cachemode", value);
this.api.asc_setDefaultBlitMode(value);
value = Common.localStorage.getItem("de-settings-fontrender"); value = Common.localStorage.getItem("de-settings-fontrender");
Common.Utils.InternalSettings.set("de-settings-fontrender", value); Common.Utils.InternalSettings.set("de-settings-fontrender", value);
switch (value) { switch (value) {

View file

@ -154,10 +154,10 @@ define([
var control_props = this.api.asc_IsContentControl() ? this.api.asc_GetContentControlProperties() : null, var control_props = this.api.asc_IsContentControl() ? this.api.asc_GetContentControlProperties() : null,
control_plain = (control_props) ? (control_props.get_ContentControlType()==Asc.c_oAscSdtLevelType.Inline) : false; control_plain = (control_props) ? (control_props.get_ContentControlType()==Asc.c_oAscSdtLevelType.Inline) : false;
var rich_del_lock = (frame_pr) ? !frame_pr.can_DeleteBlockContentControl() : true, var rich_del_lock = (frame_pr) ? !frame_pr.can_DeleteBlockContentControl() : false,
rich_edit_lock = (frame_pr) ? !frame_pr.can_EditBlockContentControl() : true, rich_edit_lock = (frame_pr) ? !frame_pr.can_EditBlockContentControl() : false,
plain_del_lock = (frame_pr) ? !frame_pr.can_DeleteInlineContentControl() : true, plain_del_lock = (frame_pr) ? !frame_pr.can_DeleteInlineContentControl() : false,
plain_edit_lock = (frame_pr) ? !frame_pr.can_EditInlineContentControl() : true; plain_edit_lock = (frame_pr) ? !frame_pr.can_EditInlineContentControl() : false;
var need_disable = paragraph_locked || in_equation || in_image || in_header || control_plain || rich_edit_lock || plain_edit_lock; var need_disable = paragraph_locked || in_equation || in_image || in_header || control_plain || rich_edit_lock || plain_edit_lock;
this.view.btnsNotes.setDisabled(need_disable); this.view.btnsNotes.setDisabled(need_disable);
@ -251,6 +251,7 @@ define([
props.put_Hyperlink(true); props.put_Hyperlink(true);
props.put_ShowPageNumbers(false); props.put_ShowPageNumbers(false);
props.put_TabLeader( Asc.c_oAscTabLeader.None); props.put_TabLeader( Asc.c_oAscTabLeader.None);
props.put_StylesType(Asc.c_oAscTOCStylesType.Web);
(currentTOC) ? this.api.asc_SetTableOfContentsPr(props) : this.api.asc_AddTableOfContents(null, props); (currentTOC) ? this.api.asc_SetTableOfContentsPr(props) : this.api.asc_AddTableOfContents(null, props);
break; break;
case 'settings': case 'settings':

View file

@ -100,7 +100,8 @@ define([
var me = this, var me = this,
styleNames = ['Normal', 'No Spacing', 'Heading 1', 'Heading 2', 'Heading 3', 'Heading 4', 'Heading 5', styleNames = ['Normal', 'No Spacing', 'Heading 1', 'Heading 2', 'Heading 3', 'Heading 4', 'Heading 5',
'Heading 6', 'Heading 7', 'Heading 8', 'Heading 9', 'Title', 'Subtitle', 'Quote', 'Intense Quote', 'List Paragraph', 'footnote text'], 'Heading 6', 'Heading 7', 'Heading 8', 'Heading 9', 'Title', 'Subtitle', 'Quote', 'Intense Quote', 'List Paragraph', 'footnote text',
'Caption'],
translate = { translate = {
'Series': this.txtSeries, 'Series': this.txtSeries,
'Diagram Title': this.txtDiagramTitle, 'Diagram Title': this.txtDiagramTitle,
@ -163,17 +164,21 @@ define([
return; return;
} }
var value = Common.localStorage.getItem("de-settings-fontrender");
if (value === null)
window.devicePixelRatio > 1 ? value = '1' : '0';
Common.Utils.InternalSettings.set("de-settings-fontrender", value);
// Initialize api // Initialize api
window["flat_desine"] = true; window["flat_desine"] = true;
this.api = this.getApplication().getController('Viewport').getApi(); this.api = this.getApplication().getController('Viewport').getApi();
if (this.api){ if (this.api){
this.api.SetDrawingFreeze(true); this.api.SetDrawingFreeze(true);
var value = Common.localStorage.getBool("de-settings-cachemode", true);
Common.Utils.InternalSettings.set("de-settings-cachemode", value);
this.api.asc_setDefaultBlitMode(!!value);
value = Common.localStorage.getItem("de-settings-fontrender");
if (value === null)
value = '0';
Common.Utils.InternalSettings.set("de-settings-fontrender", value);
switch (value) { switch (value) {
case '0': this.api.SetFontRenderingMode(3); break; case '0': this.api.SetFontRenderingMode(3); break;
case '1': this.api.SetFontRenderingMode(1); break; case '1': this.api.SetFontRenderingMode(1); break;
@ -358,6 +363,8 @@ define([
this.appOptions.canRequestSharingSettings = this.editorConfig.canRequestSharingSettings; this.appOptions.canRequestSharingSettings = this.editorConfig.canRequestSharingSettings;
this.appOptions.compatibleFeatures = (typeof (this.appOptions.customization) == 'object') && !!this.appOptions.customization.compatibleFeatures; this.appOptions.compatibleFeatures = (typeof (this.appOptions.customization) == 'object') && !!this.appOptions.customization.compatibleFeatures;
this.appOptions.canFeatureComparison = !!this.api.asc_isSupportFeature("comparison"); this.appOptions.canFeatureComparison = !!this.api.asc_isSupportFeature("comparison");
this.appOptions.canFeatureContentControl = !!this.api.asc_isSupportFeature("content-сontrols");
this.appOptions.mentionShare = !((typeof (this.appOptions.customization) == 'object') && (this.appOptions.customization.mentionShare==false));
appHeader = this.getApplication().getController('Viewport').getView('Common.Views.Header'); appHeader = this.getApplication().getController('Viewport').getView('Common.Views.Header');
appHeader.setCanBack(this.appOptions.canBackToFolder === true, (this.appOptions.canBackToFolder) ? this.editorConfig.customization.goback.text : '') appHeader.setCanBack(this.appOptions.canBackToFolder === true, (this.appOptions.canBackToFolder) ? this.editorConfig.customization.goback.text : '')
@ -744,7 +751,8 @@ define([
if ( type == Asc.c_oAscAsyncActionType.BlockInteraction && if ( type == Asc.c_oAscAsyncActionType.BlockInteraction &&
(!this.getApplication().getController('LeftMenu').dlgSearch || !this.getApplication().getController('LeftMenu').dlgSearch.isVisible()) && (!this.getApplication().getController('LeftMenu').dlgSearch || !this.getApplication().getController('LeftMenu').dlgSearch.isVisible()) &&
!( id == Asc.c_oAscAsyncAction['ApplyChanges'] && (this.dontCloseDummyComment || this.dontCloseChat || this.isModalShowed || this.inFormControl)) ) { (!this.getApplication().getController('Toolbar').dlgSymbolTable || !this.getApplication().getController('Toolbar').dlgSymbolTable.isVisible()) &&
!((id == Asc.c_oAscAsyncAction['LoadDocumentFonts'] || id == Asc.c_oAscAsyncAction['ApplyChanges']) && (this.dontCloseDummyComment || this.dontCloseChat || this.isModalShowed || this.inFormControl)) ) {
// this.onEditComplete(this.loadMask); //если делать фокус, то при принятии чужих изменений, заканчивается свой композитный ввод // this.onEditComplete(this.loadMask); //если делать фокус, то при принятии чужих изменений, заканчивается свой композитный ввод
this.api.asc_enableKeyEvents(true); this.api.asc_enableKeyEvents(true);
} }
@ -1053,6 +1061,11 @@ define([
Common.NotificationCenter.trigger('document:ready', 'main'); Common.NotificationCenter.trigger('document:ready', 'main');
} }
// TODO bug 43960
var dummyClass = ~~(1e6*Math.random());
$('.toolbar').prepend(Common.Utils.String.format('<div class="lazy-{0} x-huge"><div class="toolbar__icon" style="position: absolute; width: 1px; height: 1px;"></div>', dummyClass));
setTimeout(function() { $(Common.Utils.String.format('.toolbar .lazy-{0}', dummyClass)).remove(); }, 10);
if (this.appOptions.canAnalytics && false) if (this.appOptions.canAnalytics && false)
Common.component.Analytics.initialize('UA-12442749-13', 'Document Editor'); Common.component.Analytics.initialize('UA-12442749-13', 'Document Editor');
@ -1531,6 +1544,10 @@ define([
config.maxwidth = 600; config.maxwidth = 600;
break; break;
case Asc.c_oAscError.ID.DirectUrl:
config.msg = this.errorDirectUrl;
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;
@ -2243,7 +2260,7 @@ define([
txtXAxis: 'X Axis', txtXAxis: 'X Axis',
txtYAxis: 'Y Axis', txtYAxis: 'Y Axis',
txtSeries: 'Seria', txtSeries: 'Seria',
errorMailMergeLoadFile: 'Loading failed', errorMailMergeLoadFile: 'Loading the document failed. Please select a different file.',
mailMergeLoadFileText: 'Loading Data Source...', mailMergeLoadFileText: 'Loading Data Source...',
mailMergeLoadFileTitle: 'Loading Data Source', mailMergeLoadFileTitle: 'Loading Data Source',
errorMailMergeSaveFile: 'Merge failed.', errorMailMergeSaveFile: 'Merge failed.',
@ -2305,7 +2322,7 @@ define([
txtOddPage: "Odd Page", txtOddPage: "Odd Page",
txtSameAsPrev: "Same as Previous", txtSameAsPrev: "Same as Previous",
txtCurrentDocument: "Current Document", txtCurrentDocument: "Current Document",
txtNoTableOfContents: "No table of contents entries found.", txtNoTableOfContents: "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents.",
txtTableOfContents: "Table of Contents", txtTableOfContents: "Table of Contents",
errorForceSave: "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", errorForceSave: "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.",
warnNoLicense: 'This version of %1 editors has certain limitations for concurrent connections to the document server.<br>If you need more please consider purchasing a commercial license.', warnNoLicense: 'This version of %1 editors has certain limitations for concurrent connections to the document server.<br>If you need more please consider purchasing a commercial license.',
@ -2512,7 +2529,9 @@ define([
uploadDocExtMessage: 'Unknown document format.', uploadDocExtMessage: 'Unknown document format.',
uploadDocFileCountMessage: 'No documents uploaded.', uploadDocFileCountMessage: 'No documents uploaded.',
errorUpdateVersionOnDisconnect: 'Internet 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: 'Internet 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.',
txtChoose: 'Choose an item.' txtChoose: 'Choose an item.',
errorDirectUrl: 'Please verify the link to the document.<br>This link must be a direct link to the file for downloading.',
txtStyle_Caption: 'Caption'
} }
})(), DE.Controllers.Main || {})) })(), DE.Controllers.Main || {}))
}); });

View file

@ -140,10 +140,14 @@ define([
item.setDisabled(notflow); item.setDisabled(notflow);
}); });
disable.align = islocked || wrapping == Asc.c_oAscWrapStyle2.Inline; var control_props = me.api.asc_IsContentControl() ? this.api.asc_GetContentControlProperties() : null,
disable.group = islocked || wrapping == Asc.c_oAscWrapStyle2.Inline; lock_type = (control_props) ? control_props.get_Lock() : Asc.c_oAscSdtLockType.Unlocked,
disable.arrange = wrapping == Asc.c_oAscWrapStyle2.Inline; content_locked = lock_type==Asc.c_oAscSdtLockType.SdtContentLocked || lock_type==Asc.c_oAscSdtLockType.ContentLocked;
disable.wrapping = islocked || props.get_FromGroup() || (notflow && !me.api.CanChangeWrapPolygon());
disable.align = islocked || wrapping == Asc.c_oAscWrapStyle2.Inline || content_locked;
disable.group = islocked || wrapping == Asc.c_oAscWrapStyle2.Inline || content_locked;
disable.arrange = wrapping == Asc.c_oAscWrapStyle2.Inline || content_locked;
disable.wrapping = islocked || props.get_FromGroup() || (notflow && !me.api.CanChangeWrapPolygon()) || content_locked || (!!control_props && control_props.get_SpecificType()==Asc.c_oAscContentControlSpecificType.Picture);
if ( !disable.group ) { if ( !disable.group ) {
if (me.api.CanGroup() || me.api.CanUnGroup()) { if (me.api.CanGroup() || me.api.CanUnGroup()) {

View file

@ -126,6 +126,7 @@ define([
var isChart = false; var isChart = false;
for (i=0; i<SelectedObjects.length; i++) for (i=0; i<SelectedObjects.length; i++)
{ {
var content_locked = false;
var eltype = SelectedObjects[i].get_ObjectType(), var eltype = SelectedObjects[i].get_ObjectType(),
settingsType = this.getDocumentSettingsType(eltype); settingsType = this.getDocumentSettingsType(eltype);
if (eltype === Asc.c_oAscTypeSelectElement.Math) if (eltype === Asc.c_oAscTypeSelectElement.Math)
@ -136,6 +137,10 @@ define([
var value = SelectedObjects[i].get_ObjectValue(); var value = SelectedObjects[i].get_ObjectValue();
if (settingsType == Common.Utils.documentSettingsType.Image) { if (settingsType == Common.Utils.documentSettingsType.Image) {
var control_props = this.api.asc_IsContentControl() ? this.api.asc_GetContentControlProperties() : null,
lock_type = (control_props) ? control_props.get_Lock() : Asc.c_oAscSdtLockType.Unlocked;
content_locked = lock_type==Asc.c_oAscSdtLockType.SdtContentLocked || lock_type==Asc.c_oAscSdtLockType.ContentLocked;
if (value.get_ChartProperties() !== null) { if (value.get_ChartProperties() !== null) {
isChart = true; isChart = true;
settingsType = Common.Utils.documentSettingsType.Chart; settingsType = Common.Utils.documentSettingsType.Chart;
@ -145,7 +150,7 @@ define([
if (value.get_ShapeProperties().asc_getTextArtProperties()) { if (value.get_ShapeProperties().asc_getTextArtProperties()) {
this._settings[Common.Utils.documentSettingsType.TextArt].props = value; this._settings[Common.Utils.documentSettingsType.TextArt].props = value;
this._settings[Common.Utils.documentSettingsType.TextArt].hidden = 0; this._settings[Common.Utils.documentSettingsType.TextArt].hidden = 0;
this._settings[Common.Utils.documentSettingsType.TextArt].locked = value.get_Locked(); this._settings[Common.Utils.documentSettingsType.TextArt].locked = value.get_Locked() || content_locked;
} }
} }
} else if (settingsType == Common.Utils.documentSettingsType.Paragraph) { } else if (settingsType == Common.Utils.documentSettingsType.Paragraph) {
@ -154,7 +159,7 @@ define([
} }
this._settings[settingsType].props = value; this._settings[settingsType].props = value;
this._settings[settingsType].hidden = 0; this._settings[settingsType].hidden = 0;
this._settings[settingsType].locked = value.get_Locked(); this._settings[settingsType].locked = value.get_Locked() || content_locked;
if (!this._settings[Common.Utils.documentSettingsType.MailMerge].locked) // lock MailMerge-InsertField, если хотя бы один объект locked if (!this._settings[Common.Utils.documentSettingsType.MailMerge].locked) // lock MailMerge-InsertField, если хотя бы один объект locked
this._settings[Common.Utils.documentSettingsType.MailMerge].locked = value.get_Locked(); this._settings[Common.Utils.documentSettingsType.MailMerge].locked = value.get_Locked();
if (!this._settings[Common.Utils.documentSettingsType.Signature].locked) // lock Signature, если хотя бы один объект locked if (!this._settings[Common.Utils.documentSettingsType.Signature].locked) // lock Signature, если хотя бы один объект locked

View file

@ -58,7 +58,8 @@ define([
'documenteditor/main/app/view/CustomColumnsDialog', 'documenteditor/main/app/view/CustomColumnsDialog',
'documenteditor/main/app/view/ControlSettingsDialog', 'documenteditor/main/app/view/ControlSettingsDialog',
'documenteditor/main/app/view/WatermarkSettingsDialog', 'documenteditor/main/app/view/WatermarkSettingsDialog',
'documenteditor/main/app/view/CompareSettingsDialog' 'documenteditor/main/app/view/CompareSettingsDialog',
'documenteditor/main/app/view/ListSettingsDialog'
], function () { ], function () {
'use strict'; 'use strict';
@ -285,6 +286,9 @@ define([
toolbar.mnuMarkersPicker.on('item:click', _.bind(this.onSelectBullets, this, toolbar.btnMarkers)); toolbar.mnuMarkersPicker.on('item:click', _.bind(this.onSelectBullets, this, toolbar.btnMarkers));
toolbar.mnuNumbersPicker.on('item:click', _.bind(this.onSelectBullets, this, toolbar.btnNumbers)); toolbar.mnuNumbersPicker.on('item:click', _.bind(this.onSelectBullets, this, toolbar.btnNumbers));
toolbar.mnuMultilevelPicker.on('item:click', _.bind(this.onSelectBullets, this, toolbar.btnMultilevels)); toolbar.mnuMultilevelPicker.on('item:click', _.bind(this.onSelectBullets, this, toolbar.btnMultilevels));
toolbar.mnuMarkerSettings.on('click', _.bind(this.onMarkerSettingsClick, this, 0));
toolbar.mnuNumberSettings.on('click', _.bind(this.onMarkerSettingsClick, this, 1));
toolbar.mnuMultilevelSettings.on('click', _.bind(this.onMarkerSettingsClick, this, 2));
toolbar.btnHighlightColor.on('click', _.bind(this.onBtnHighlightColor, this)); toolbar.btnHighlightColor.on('click', _.bind(this.onBtnHighlightColor, this));
toolbar.btnFontColor.on('click', _.bind(this.onBtnFontColor, this)); toolbar.btnFontColor.on('click', _.bind(this.onBtnFontColor, this));
toolbar.btnParagraphColor.on('click', _.bind(this.onBtnParagraphColor, this)); toolbar.btnParagraphColor.on('click', _.bind(this.onBtnParagraphColor, this));
@ -493,14 +497,16 @@ define([
switch(this._state.bullets.type) { switch(this._state.bullets.type) {
case 0: case 0:
this.toolbar.btnMarkers.toggle(true, true); this.toolbar.btnMarkers.toggle(true, true);
if (this._state.bullets.subtype!==undefined) if (this._state.bullets.subtype>0)
this.toolbar.mnuMarkersPicker.selectByIndex(this._state.bullets.subtype, true); this.toolbar.mnuMarkersPicker.selectByIndex(this._state.bullets.subtype, true);
else else
this.toolbar.mnuMarkersPicker.deselectAll(true); this.toolbar.mnuMarkersPicker.deselectAll(true);
this.toolbar.mnuMultilevelPicker.deselectAll(true); this.toolbar.mnuMultilevelPicker.deselectAll(true);
this.toolbar.mnuMarkerSettings && this.toolbar.mnuMarkerSettings.setDisabled(this._state.bullets.subtype<0);
this.toolbar.mnuMultilevelSettings && this.toolbar.mnuMultilevelSettings.setDisabled(this._state.bullets.subtype<0);
break; break;
case 1: case 1:
var idx = 0; var idx;
switch(this._state.bullets.subtype) { switch(this._state.bullets.subtype) {
case 1: case 1:
idx = 4; idx = 4;
@ -525,11 +531,13 @@ define([
break; break;
} }
this.toolbar.btnNumbers.toggle(true, true); this.toolbar.btnNumbers.toggle(true, true);
if (this._state.bullets.subtype!==undefined) if (idx!==undefined)
this.toolbar.mnuNumbersPicker.selectByIndex(idx, true); this.toolbar.mnuNumbersPicker.selectByIndex(idx, true);
else else
this.toolbar.mnuNumbersPicker.deselectAll(true); this.toolbar.mnuNumbersPicker.deselectAll(true);
this.toolbar.mnuMultilevelPicker.deselectAll(true); this.toolbar.mnuMultilevelPicker.deselectAll(true);
this.toolbar.mnuNumberSettings && this.toolbar.mnuNumberSettings.setDisabled(idx==0);
this.toolbar.mnuMultilevelSettings && this.toolbar.mnuMultilevelSettings.setDisabled(idx==0);
break; break;
case 2: case 2:
this.toolbar.btnMultilevels.toggle(true, true); this.toolbar.btnMultilevels.toggle(true, true);
@ -655,12 +663,14 @@ define([
paragraph_locked = false, paragraph_locked = false,
header_locked = false, header_locked = false,
image_locked = false, image_locked = false,
in_image = false; in_image = false,
frame_pr = undefined;
while (++i < selectedObjects.length) { while (++i < selectedObjects.length) {
type = selectedObjects[i].get_ObjectType(); type = selectedObjects[i].get_ObjectType();
if (type === Asc.c_oAscTypeSelectElement.Paragraph) { if (type === Asc.c_oAscTypeSelectElement.Paragraph) {
frame_pr = selectedObjects[i].get_ObjectValue();
paragraph_locked = selectedObjects[i].get_ObjectValue().get_Locked(); paragraph_locked = selectedObjects[i].get_ObjectValue().get_Locked();
} else if (type === Asc.c_oAscTypeSelectElement.Header) { } else if (type === Asc.c_oAscTypeSelectElement.Header) {
header_locked = selectedObjects[i].get_ObjectValue().get_Locked(); header_locked = selectedObjects[i].get_ObjectValue().get_Locked();
@ -670,10 +680,21 @@ define([
} }
} }
var need_disable = !this.api.can_AddQuotedComment() || paragraph_locked || header_locked || image_locked; var rich_del_lock = (frame_pr) ? !frame_pr.can_DeleteBlockContentControl() : false,
rich_edit_lock = (frame_pr) ? !frame_pr.can_EditBlockContentControl() : false,
plain_del_lock = (frame_pr) ? !frame_pr.can_DeleteInlineContentControl() : false,
plain_edit_lock = (frame_pr) ? !frame_pr.can_EditInlineContentControl() : false;
var need_disable = !this.api.can_AddQuotedComment() || paragraph_locked || header_locked || image_locked || rich_del_lock || rich_edit_lock || plain_del_lock || plain_edit_lock;
if (this.mode.compatibleFeatures) { if (this.mode.compatibleFeatures) {
need_disable = need_disable || in_image; need_disable = need_disable || in_image;
} }
if (this.api.asc_IsContentControl()) {
var control_props = this.api.asc_GetContentControlProperties(),
spectype = control_props ? control_props.get_SpecificType() : Asc.c_oAscContentControlSpecificType.None;
need_disable = need_disable || spectype==Asc.c_oAscContentControlSpecificType.CheckBox || spectype==Asc.c_oAscContentControlSpecificType.Picture ||
spectype==Asc.c_oAscContentControlSpecificType.ComboBox || spectype==Asc.c_oAscContentControlSpecificType.DropDownList || spectype==Asc.c_oAscContentControlSpecificType.DateTime;
}
if ( this.btnsComment && this.btnsComment.length > 0 ) if ( this.btnsComment && this.btnsComment.length > 0 )
this.btnsComment.setDisabled(need_disable); this.btnsComment.setDisabled(need_disable);
}, },
@ -735,10 +756,10 @@ define([
if (sh) if (sh)
this.onParagraphColor(sh); this.onParagraphColor(sh);
var rich_del_lock = (frame_pr) ? !frame_pr.can_DeleteBlockContentControl() : true, var rich_del_lock = (frame_pr) ? !frame_pr.can_DeleteBlockContentControl() : false,
rich_edit_lock = (frame_pr) ? !frame_pr.can_EditBlockContentControl() : true, rich_edit_lock = (frame_pr) ? !frame_pr.can_EditBlockContentControl() : false,
plain_del_lock = (frame_pr) ? !frame_pr.can_DeleteInlineContentControl() : true, plain_del_lock = (frame_pr) ? !frame_pr.can_DeleteInlineContentControl() : false,
plain_edit_lock = (frame_pr) ? !frame_pr.can_EditInlineContentControl() : true; plain_edit_lock = (frame_pr) ? !frame_pr.can_EditInlineContentControl() : false;
var need_disable = paragraph_locked || header_locked || rich_edit_lock || plain_edit_lock; var need_disable = paragraph_locked || header_locked || rich_edit_lock || plain_edit_lock;
if (this._state.prcontrolsdisable != need_disable) { if (this._state.prcontrolsdisable != need_disable) {
@ -836,7 +857,7 @@ define([
toolbar.btnEditHeader.setDisabled(in_equation); toolbar.btnEditHeader.setDisabled(in_equation);
need_disable = paragraph_locked || header_locked || in_image || control_plain || rich_edit_lock || plain_edit_lock; need_disable = paragraph_locked || header_locked || in_image || control_plain || rich_edit_lock || plain_edit_lock || this._state.lock_doc;
if (need_disable != toolbar.btnColumns.isDisabled()) if (need_disable != toolbar.btnColumns.isDisabled())
toolbar.btnColumns.setDisabled(need_disable); toolbar.btnColumns.setDisabled(need_disable);
@ -847,6 +868,11 @@ define([
if (this.mode.compatibleFeatures) { if (this.mode.compatibleFeatures) {
need_disable = need_disable || in_image; need_disable = need_disable || in_image;
} }
if (control_props) {
var spectype = control_props.get_SpecificType();
need_disable = need_disable || spectype==Asc.c_oAscContentControlSpecificType.CheckBox || spectype==Asc.c_oAscContentControlSpecificType.Picture ||
spectype==Asc.c_oAscContentControlSpecificType.ComboBox || spectype==Asc.c_oAscContentControlSpecificType.DropDownList || spectype==Asc.c_oAscContentControlSpecificType.DateTime;
}
if ( this.btnsComment && this.btnsComment.length > 0 ) if ( this.btnsComment && this.btnsComment.length > 0 )
this.btnsComment.setDisabled(need_disable); this.btnsComment.setDisabled(need_disable);
@ -896,6 +922,7 @@ define([
if (this._state.lock_doc!==true) { if (this._state.lock_doc!==true) {
this.toolbar.btnPageOrient.setDisabled(true); this.toolbar.btnPageOrient.setDisabled(true);
this.toolbar.btnPageSize.setDisabled(true); this.toolbar.btnPageSize.setDisabled(true);
this.toolbar.btnPageMargins.setDisabled(true);
if (this._state.activated) this._state.lock_doc = true; if (this._state.activated) this._state.lock_doc = true;
} }
}, },
@ -904,6 +931,7 @@ define([
if (this._state.lock_doc!==false) { if (this._state.lock_doc!==false) {
this.toolbar.btnPageOrient.setDisabled(false); this.toolbar.btnPageOrient.setDisabled(false);
this.toolbar.btnPageSize.setDisabled(false); this.toolbar.btnPageSize.setDisabled(false);
this.toolbar.btnPageMargins.setDisabled(false);
if (this._state.activated) this._state.lock_doc = false; if (this._state.activated) this._state.lock_doc = false;
} }
}, },
@ -1310,8 +1338,8 @@ define([
btn.toggle(rawData.data.subtype > -1, true); btn.toggle(rawData.data.subtype > -1, true);
} }
this._state.bullets.type = rawData.data.type; this._state.bullets.type = undefined;
this._state.bullets.subtype = rawData.data.subtype; this._state.bullets.subtype = undefined;
if (this.api) if (this.api)
this.api.put_ListType(rawData.data.type, rawData.data.subtype); this.api.put_ListType(rawData.data.type, rawData.data.subtype);
@ -1319,6 +1347,30 @@ define([
Common.NotificationCenter.trigger('edit:complete', this.toolbar); Common.NotificationCenter.trigger('edit:complete', this.toolbar);
}, },
onMarkerSettingsClick: function(type) {
var me = this;
var listId = me.api.asc_GetCurrentNumberingId(),
level = me.api.asc_GetCurrentNumberingLvl(),
props = (listId !== null) ? me.api.asc_GetNumberingPr(listId) : null;
if (props) {
(new DE.Views.ListSettingsDialog({
api: me.api,
props: props,
level: level,
type: type,
interfaceLang: me.mode.lang,
handler: function(result, value) {
if (result == 'ok') {
if (me.api) {
me.api.asc_ChangeNumberingLvl(listId, value.props, value.num);
}
}
Common.NotificationCenter.trigger('edit:complete', me.toolbar);
}
})).show();
}
},
onLineSpaceToggle: function(menu, item, state, e) { onLineSpaceToggle: function(menu, item, state, e) {
if (!!state) { if (!!state) {
this._state.linespace = undefined; this._state.linespace = undefined;
@ -1729,6 +1781,8 @@ define([
}, },
onControlsSelect: function(menu, item) { onControlsSelect: function(menu, item) {
if (!(this.mode && this.mode.canFeatureContentControl)) return;
if (item.value == 'settings' || item.value == 'remove') { if (item.value == 'settings' || item.value == 'remove') {
if (this.api.asc_IsContentControl()) { if (this.api.asc_IsContentControl()) {
var props = this.api.asc_GetContentControlProperties(); var props = this.api.asc_GetContentControlProperties();
@ -2183,6 +2237,9 @@ define([
this.toolbar.mnuMarkersPicker.selectByIndex(0, true); this.toolbar.mnuMarkersPicker.selectByIndex(0, true);
this.toolbar.mnuNumbersPicker.selectByIndex(0, true); this.toolbar.mnuNumbersPicker.selectByIndex(0, true);
this.toolbar.mnuMultilevelPicker.selectByIndex(0, true); this.toolbar.mnuMultilevelPicker.selectByIndex(0, true);
this.toolbar.mnuMarkerSettings && this.toolbar.mnuMarkerSettings.setDisabled(true);
this.toolbar.mnuNumberSettings && this.toolbar.mnuNumberSettings.setDisabled(true);
this.toolbar.mnuMultilevelSettings && this.toolbar.mnuMultilevelSettings.setDisabled(true);
}, },
_getApiTextSize: function () { _getApiTextSize: function () {

View file

@ -157,7 +157,7 @@ define([
{ displayValue: this.textAfter, value: 0 } { displayValue: this.textAfter, value: 0 }
] ]
}); });
this.cmbPosition.setValue(0); this.cmbPosition.setValue(Common.Utils.InternalSettings.get("de-settings-label-position") || 0);
this.cmbPosition.on('selected', function(combo, record) { this.cmbPosition.on('selected', function(combo, record) {
me.props.put_Before(!!record.value); me.props.put_Before(!!record.value);
}); });
@ -257,6 +257,7 @@ define([
me.txtCaption.setValue(me.props.get_Name()); me.txtCaption.setValue(me.props.get_Name());
me.positionCaption = me.txtCaption.getValue().length; me.positionCaption = me.txtCaption.getValue().length;
}); });
this.chExclude.setValue(!!Common.Utils.InternalSettings.get("de-settings-label-exclude"), true);
this.cmbNumbering = new Common.UI.ComboBox({ this.cmbNumbering = new Common.UI.ComboBox({
el: $('#caption-combo-numbering'), el: $('#caption-combo-numbering'),
@ -271,7 +272,9 @@ define([
{ displayValue: 'I, II, III,...', value: Asc.c_oAscNumberingFormat.UpperRoman, maskExp: /[IVXLCDM]/, defValue: 'I' } { displayValue: 'I, II, III,...', value: Asc.c_oAscNumberingFormat.UpperRoman, maskExp: /[IVXLCDM]/, defValue: 'I' }
] ]
}); });
this.cmbNumbering.setValue(Asc.c_oAscNumberingFormat.Decimal); var numbering = Common.Utils.InternalSettings.get("de-settings-label-numbering");
(numbering===undefined || numbering===null) && (numbering = Asc.c_oAscNumberingFormat.Decimal);
this.cmbNumbering.setValue(numbering);
this.cmbNumbering.on('selected', function(combo, record) { this.cmbNumbering.on('selected', function(combo, record) {
me.props.put_Format(record.value); me.props.put_Format(record.value);
me.props.updateName(); me.props.updateName();
@ -290,6 +293,7 @@ define([
me.cmbChapter.setDisabled(newValue!=='checked'); me.cmbChapter.setDisabled(newValue!=='checked');
me.cmbSeparator.setDisabled(newValue!=='checked'); me.cmbSeparator.setDisabled(newValue!=='checked');
}); });
this.chChapter.setValue(!!Common.Utils.InternalSettings.get("de-settings-label-chapter-include"), true);
var _main = DE.getController('Main'); var _main = DE.getController('Main');
this._arrLevel = []; this._arrLevel = [];
@ -304,7 +308,7 @@ define([
disabled: true, disabled: true,
data: this._arrLevel data: this._arrLevel
}); });
this.cmbChapter.setValue(0); this.cmbChapter.setValue(Common.Utils.InternalSettings.get("de-settings-label-chapter") || 0);
this.cmbChapter.on('selected', function(combo, record) { this.cmbChapter.on('selected', function(combo, record) {
me.props.put_HeadingLvl(record.value); me.props.put_HeadingLvl(record.value);
me.props.updateName(); me.props.updateName();
@ -325,7 +329,7 @@ define([
{ displayValue: ' (' + this.textDash + ')', value: '' } { displayValue: ' (' + this.textDash + ')', value: '' }
] ]
}); });
this.cmbSeparator.setValue('-'); this.cmbSeparator.setValue(Common.Utils.InternalSettings.get("de-settings-label-separator") || '-');
this.cmbSeparator.on('selected', function(combo, record) { this.cmbSeparator.on('selected', function(combo, record) {
me.props.put_Separator(record.value); me.props.put_Separator(record.value);
me.props.updateName(); me.props.updateName();
@ -370,6 +374,8 @@ define([
this.txtCaption.setValue(this.props.get_Name()); this.txtCaption.setValue(this.props.get_Name());
this.currentLabel = valueLabel; this.currentLabel = valueLabel;
this.positionCaption = this.txtCaption.getValue().length; this.positionCaption = this.txtCaption.getValue().length;
this.cmbChapter.setDisabled(this.chChapter.getValue()!=='checked');
this.cmbSeparator.setDisabled(this.chChapter.getValue()!=='checked');
}, },
getSettings: function () { getSettings: function () {
@ -390,6 +396,12 @@ define([
this.handler && this.handler.call(this, state, (state == 'ok') ? this.getSettings() : undefined); this.handler && this.handler.call(this, state, (state == 'ok') ? this.getSettings() : undefined);
if (state == 'ok') { if (state == 'ok') {
Common.Utils.InternalSettings.set("de-settings-current-label", this.cmbLabel.getValue()); Common.Utils.InternalSettings.set("de-settings-current-label", this.cmbLabel.getValue());
Common.Utils.InternalSettings.set("de-settings-label-position", this.cmbPosition.getValue());
Common.Utils.InternalSettings.set("de-settings-label-exclude", this.chExclude.getValue()=='checked');
Common.Utils.InternalSettings.set("de-settings-label-numbering", this.cmbNumbering.getValue());
Common.Utils.InternalSettings.set("de-settings-label-chapter-include", this.chChapter.getValue()=='checked');
Common.Utils.InternalSettings.set("de-settings-label-chapter", this.cmbChapter.getValue());
Common.Utils.InternalSettings.set("de-settings-label-separator", this.cmbSeparator.getValue());
} }
this.close(); this.close();
}, },

View file

@ -85,7 +85,7 @@ define([
me._currentMathObj = undefined; me._currentMathObj = undefined;
me._currentParaObjDisabled = false; me._currentParaObjDisabled = false;
me._isDisabled = false; me._isDisabled = false;
me._state = {};
var showPopupMenu = function(menu, value, event, docElement, eOpts){ var showPopupMenu = function(menu, value, event, docElement, eOpts){
if (!_.isUndefined(menu) && menu !== null){ if (!_.isUndefined(menu) && menu !== null){
Common.UI.Menu.Manager.hideAll(); Common.UI.Menu.Manager.hideAll();
@ -1525,6 +1525,8 @@ define([
this.api.asc_registerCallback('asc_onSpellCheckVariantsFound', _.bind(onSpellCheckVariantsFound, this)); this.api.asc_registerCallback('asc_onSpellCheckVariantsFound', _.bind(onSpellCheckVariantsFound, this));
this.api.asc_registerCallback('asc_onRulerDblClick', _.bind(this.onRulerDblClick, this)); this.api.asc_registerCallback('asc_onRulerDblClick', _.bind(this.onRulerDblClick, this));
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_onUnLockDocumentProps', _.bind(this.onApiUnLockDocumentProps, this));
} }
this.api.asc_registerCallback('asc_onCoAuthoringDisconnect', _.bind(onCoAuthoringDisconnect, this)); this.api.asc_registerCallback('asc_onCoAuthoringDisconnect', _.bind(onCoAuthoringDisconnect, this));
Common.NotificationCenter.on('api:disconnect', _.bind(onCoAuthoringDisconnect, this)); Common.NotificationCenter.on('api:disconnect', _.bind(onCoAuthoringDisconnect, this));
@ -1733,6 +1735,7 @@ define([
if (win) if (win)
win.setActiveCategory(type == 'indents' ? 0 : 3); win.setActiveCategory(type == 'indents' ? 0 : 3);
} else if (type == 'margins') { } else if (type == 'margins') {
if (me._state.lock_doc) return;
win = new DE.Views.PageMarginsDialog({ win = new DE.Views.PageMarginsDialog({
api: me.api, api: me.api,
handler: function(dlg, result) { handler: function(dlg, result) {
@ -2009,9 +2012,18 @@ define([
signGuid = (value.imgProps && value.imgProps.value && me.mode.isSignatureSupport) ? value.imgProps.value.asc_getSignatureId() : undefined, signGuid = (value.imgProps && value.imgProps.value && me.mode.isSignatureSupport) ? value.imgProps.value.asc_getSignatureId() : undefined,
signProps = (signGuid) ? me.api.asc_getSignatureSetup(signGuid) : null, signProps = (signGuid) ? me.api.asc_getSignatureSetup(signGuid) : null,
isInSign = !!signProps && me._canProtect, isInSign = !!signProps && me._canProtect,
canComment = !isInChart && me.api.can_AddQuotedComment() !== false && me.mode.canCoAuthoring && me.mode.canComments && !me._isDisabled; control_lock = (value.paraProps) ? (!value.paraProps.value.can_DeleteBlockContentControl() || !value.paraProps.value.can_EditBlockContentControl() ||
!value.paraProps.value.can_DeleteInlineContentControl() || !value.paraProps.value.can_EditInlineContentControl()) : false,
canComment = !isInChart && me.api.can_AddQuotedComment() !== false && me.mode.canCoAuthoring && me.mode.canComments && !me._isDisabled && !control_lock;
if (me.mode.compatibleFeatures) if (me.mode.compatibleFeatures)
canComment = canComment && !isInShape; canComment = canComment && !isInShape;
if (me.api.asc_IsContentControl()) {
var control_props = me.api.asc_GetContentControlProperties(),
spectype = control_props ? control_props.get_SpecificType() : Asc.c_oAscContentControlSpecificType.None;
canComment = canComment && !(spectype==Asc.c_oAscContentControlSpecificType.CheckBox || spectype==Asc.c_oAscContentControlSpecificType.Picture ||
spectype==Asc.c_oAscContentControlSpecificType.ComboBox || spectype==Asc.c_oAscContentControlSpecificType.DropDownList || spectype==Asc.c_oAscContentControlSpecificType.DateTime);
}
menuViewUndo.setVisible(me.mode.canCoAuthoring && me.mode.canComments && !me._isDisabled); menuViewUndo.setVisible(me.mode.canCoAuthoring && me.mode.canComments && !me._isDisabled);
menuViewUndo.setDisabled(!me.api.asc_getCanUndo() && !me._isDisabled); menuViewUndo.setDisabled(!me.api.asc_getCanUndo() && !me._isDisabled);
@ -2549,7 +2561,11 @@ define([
me.menuOriginalSize.setVisible(value.imgProps.isOnlyImg || !value.imgProps.isChart && !value.imgProps.isShape); me.menuOriginalSize.setVisible(value.imgProps.isOnlyImg || !value.imgProps.isChart && !value.imgProps.isShape);
var islocked = value.imgProps.locked || (value.headerProps!==undefined && value.headerProps.locked); var control_props = me.api.asc_IsContentControl() ? me.api.asc_GetContentControlProperties() : null,
lock_type = (control_props) ? control_props.get_Lock() : Asc.c_oAscSdtLockType.Unlocked,
content_locked = lock_type==Asc.c_oAscSdtLockType.SdtContentLocked || lock_type==Asc.c_oAscSdtLockType.ContentLocked;
var islocked = value.imgProps.locked || (value.headerProps!==undefined && value.headerProps.locked) || content_locked;
var pluginGuid = value.imgProps.value.asc_getPluginGuid(); var pluginGuid = value.imgProps.value.asc_getPluginGuid();
menuImgReplace.setVisible(value.imgProps.isOnlyImg && (pluginGuid===null || pluginGuid===undefined)); menuImgReplace.setVisible(value.imgProps.isOnlyImg && (pluginGuid===null || pluginGuid===undefined));
if (menuImgReplace.isVisible()) if (menuImgReplace.isVisible())
@ -2577,7 +2593,7 @@ define([
menuImageAlign.menu.items[7].setDisabled(objcount==2 && (!alignto || alignto==3)); menuImageAlign.menu.items[7].setDisabled(objcount==2 && (!alignto || alignto==3));
menuImageAlign.menu.items[8].setDisabled(objcount==2 && (!alignto || alignto==3)); menuImageAlign.menu.items[8].setDisabled(objcount==2 && (!alignto || alignto==3));
} }
menuImageArrange.setDisabled( wrapping == Asc.c_oAscWrapStyle2.Inline ); menuImageArrange.setDisabled( wrapping == Asc.c_oAscWrapStyle2.Inline || content_locked);
if (me.api) { if (me.api) {
mnuUnGroup.setDisabled(islocked || !me.api.CanUnGroup()); mnuUnGroup.setDisabled(islocked || !me.api.CanUnGroup());
@ -2585,7 +2601,8 @@ define([
menuWrapPolygon.setDisabled(islocked || !me.api.CanChangeWrapPolygon()); menuWrapPolygon.setDisabled(islocked || !me.api.CanChangeWrapPolygon());
} }
me.menuImageWrap.setDisabled(islocked || value.imgProps.value.get_FromGroup() || (notflow && menuWrapPolygon.isDisabled())); me.menuImageWrap.setDisabled(islocked || value.imgProps.value.get_FromGroup() || (notflow && menuWrapPolygon.isDisabled()) ||
(!!control_props && control_props.get_SpecificType()==Asc.c_oAscContentControlSpecificType.Picture));
var cancopy = me.api && me.api.can_CopyCut(); var cancopy = me.api && me.api.can_CopyCut();
menuImgCopy.setDisabled(!cancopy); menuImgCopy.setDisabled(!cancopy);
@ -3077,11 +3094,6 @@ define([
menuAddHyperlinkTable.hyperProps.value = new Asc.CHyperlinkProperty(); menuAddHyperlinkTable.hyperProps.value = new Asc.CHyperlinkProperty();
menuAddHyperlinkTable.hyperProps.value.put_Text(text); menuAddHyperlinkTable.hyperProps.value.put_Text(text);
} }
/** coauthoring begin **/
// comments
menuAddCommentTable.setVisible(me.api.can_AddQuotedComment()!==false && me.mode.canCoAuthoring && me.mode.canComments);
menuAddCommentTable.setDisabled(value.paraProps!==undefined && value.paraProps.locked===true);
/** coauthoring end **/
// review move // review move
var data = me.api.asc_GetRevisionsChangesStack(), var data = me.api.asc_GetRevisionsChangesStack(),
@ -3132,6 +3144,8 @@ define([
me.clearEquationMenu(false, 7); me.clearEquationMenu(false, 7);
menuEquationSeparatorInTable.setVisible(isEquation && eqlen>0); menuEquationSeparatorInTable.setVisible(isEquation && eqlen>0);
var control_lock = (value.paraProps) ? (!value.paraProps.value.can_DeleteBlockContentControl() || !value.paraProps.value.can_EditBlockContentControl() ||
!value.paraProps.value.can_DeleteInlineContentControl() || !value.paraProps.value.can_EditInlineContentControl()) : false;
var in_toc = me.api.asc_GetTableOfContentsPr(true), var in_toc = me.api.asc_GetTableOfContentsPr(true),
in_control = !in_toc && me.api.asc_IsContentControl(); in_control = !in_toc && me.api.asc_IsContentControl();
menuTableControl.setVisible(in_control); menuTableControl.setVisible(in_control);
@ -3140,9 +3154,19 @@ define([
lock_type = (control_props) ? control_props.get_Lock() : Asc.c_oAscSdtLockType.Unlocked; lock_type = (control_props) ? control_props.get_Lock() : Asc.c_oAscSdtLockType.Unlocked;
menuTableRemoveControl.setDisabled(lock_type==Asc.c_oAscSdtLockType.SdtContentLocked || lock_type==Asc.c_oAscSdtLockType.SdtLocked); menuTableRemoveControl.setDisabled(lock_type==Asc.c_oAscSdtLockType.SdtContentLocked || lock_type==Asc.c_oAscSdtLockType.SdtLocked);
menuTableControlSettings.setVisible(me.mode.canEditContentControl); menuTableControlSettings.setVisible(me.mode.canEditContentControl);
var spectype = control_props ? control_props.get_SpecificType() : Asc.c_oAscContentControlSpecificType.None;
control_lock = control_lock || spectype==Asc.c_oAscContentControlSpecificType.CheckBox || spectype==Asc.c_oAscContentControlSpecificType.Picture ||
spectype==Asc.c_oAscContentControlSpecificType.ComboBox || spectype==Asc.c_oAscContentControlSpecificType.DropDownList || spectype==Asc.c_oAscContentControlSpecificType.DateTime;
} }
menuTableTOC.setVisible(in_toc); menuTableTOC.setVisible(in_toc);
/** coauthoring begin **/
// comments
menuAddCommentTable.setVisible(me.api.can_AddQuotedComment()!==false && me.mode.canCoAuthoring && me.mode.canComments && !control_lock);
menuAddCommentTable.setDisabled(value.paraProps!==undefined && value.paraProps.locked===true);
/** coauthoring end **/
var in_field = me.api.asc_GetCurrentComplexField(); var in_field = me.api.asc_GetCurrentComplexField();
menuTableRefreshField.setVisible(!!in_field); menuTableRefreshField.setVisible(!!in_field);
menuTableRefreshField.setDisabled(disabled); menuTableRefreshField.setDisabled(disabled);
@ -3654,15 +3678,6 @@ define([
if (me.api) { if (me.api) {
text = me.api.can_AddHyperlink(); text = me.api.can_AddHyperlink();
} }
/** coauthoring begin **/
var isVisible = !isInChart && me.api.can_AddQuotedComment()!==false && me.mode.canCoAuthoring && me.mode.canComments;
if (me.mode.compatibleFeatures)
isVisible = isVisible && !isInShape;
menuCommentSeparatorPara.setVisible(isVisible);
menuAddCommentPara.setVisible(isVisible);
menuAddCommentPara.setDisabled(value.paraProps && value.paraProps.locked === true);
/** coauthoring end **/
menuAddHyperlinkPara.setVisible(value.hyperProps===undefined && text!==false); menuAddHyperlinkPara.setVisible(value.hyperProps===undefined && text!==false);
menuHyperlinkPara.setVisible(value.hyperProps!==undefined); menuHyperlinkPara.setVisible(value.hyperProps!==undefined);
menuHyperlinkParaSeparator.setVisible(menuAddHyperlinkPara.isVisible() || menuHyperlinkPara.isVisible()); menuHyperlinkParaSeparator.setVisible(menuAddHyperlinkPara.isVisible() || menuHyperlinkPara.isVisible());
@ -3747,6 +3762,9 @@ define([
me.menuStyleUpdate.setCaption(me.updateStyleText.replace('%1', DE.getController('Main').translationTable[window.currentStyleName] || window.currentStyleName)); me.menuStyleUpdate.setCaption(me.updateStyleText.replace('%1', DE.getController('Main').translationTable[window.currentStyleName] || window.currentStyleName));
} }
var control_lock = (value.paraProps) ? (!value.paraProps.value.can_DeleteBlockContentControl() || !value.paraProps.value.can_EditBlockContentControl() ||
!value.paraProps.value.can_DeleteInlineContentControl() || !value.paraProps.value.can_EditInlineContentControl()) : false;
var in_toc = me.api.asc_GetTableOfContentsPr(true), var in_toc = me.api.asc_GetTableOfContentsPr(true),
in_control = !in_toc && me.api.asc_IsContentControl() ; in_control = !in_toc && me.api.asc_IsContentControl() ;
menuParaRemoveControl.setVisible(in_control); menuParaRemoveControl.setVisible(in_control);
@ -3756,11 +3774,24 @@ define([
var control_props = me.api.asc_GetContentControlProperties(), var control_props = me.api.asc_GetContentControlProperties(),
lock_type = (control_props) ? control_props.get_Lock() : Asc.c_oAscSdtLockType.Unlocked; lock_type = (control_props) ? control_props.get_Lock() : Asc.c_oAscSdtLockType.Unlocked;
menuParaRemoveControl.setDisabled(lock_type==Asc.c_oAscSdtLockType.SdtContentLocked || lock_type==Asc.c_oAscSdtLockType.SdtLocked); menuParaRemoveControl.setDisabled(lock_type==Asc.c_oAscSdtLockType.SdtContentLocked || lock_type==Asc.c_oAscSdtLockType.SdtLocked);
var spectype = control_props ? control_props.get_SpecificType() : Asc.c_oAscContentControlSpecificType.None;
control_lock = control_lock || spectype==Asc.c_oAscContentControlSpecificType.CheckBox || spectype==Asc.c_oAscContentControlSpecificType.Picture ||
spectype==Asc.c_oAscContentControlSpecificType.ComboBox || spectype==Asc.c_oAscContentControlSpecificType.DropDownList || spectype==Asc.c_oAscContentControlSpecificType.DateTime;
} }
menuParaTOCSettings.setVisible(in_toc); menuParaTOCSettings.setVisible(in_toc);
menuParaTOCRefresh.setVisible(in_toc); menuParaTOCRefresh.setVisible(in_toc);
menuParaTOCSeparator.setVisible(in_toc); menuParaTOCSeparator.setVisible(in_toc);
/** coauthoring begin **/
var isVisible = !isInChart && me.api.can_AddQuotedComment()!==false && me.mode.canCoAuthoring && me.mode.canComments && !control_lock;
if (me.mode.compatibleFeatures)
isVisible = isVisible && !isInShape;
menuCommentSeparatorPara.setVisible(isVisible);
menuAddCommentPara.setVisible(isVisible);
menuAddCommentPara.setDisabled(value.paraProps && value.paraProps.locked === true);
/** coauthoring end **/
var in_field = me.api.asc_GetCurrentComplexField(); var in_field = me.api.asc_GetCurrentComplexField();
menuParaRefreshField.setVisible(!!in_field); menuParaRefreshField.setVisible(!!in_field);
menuParaRefreshField.setDisabled(disabled); menuParaRefreshField.setDisabled(disabled);
@ -4065,6 +4096,7 @@ define([
if (!menu) { if (!menu) {
this.listControlMenu = menu = new Common.UI.Menu({ this.listControlMenu = menu = new Common.UI.Menu({
maxHeight: 207,
menuAlign: 'tr-bl', menuAlign: 'tr-bl',
items: [] items: []
}); });
@ -4122,6 +4154,11 @@ define([
this.onShowDateActions(obj, x, y); this.onShowDateActions(obj, x, y);
break; break;
case Asc.c_oAscContentControlSpecificType.Picture: case Asc.c_oAscContentControlSpecificType.Picture:
if (obj.pr && obj.pr.get_Lock) {
var lock = obj.pr.get_Lock();
if (lock == Asc.c_oAscSdtLockType.SdtContentLocked || lock==Asc.c_oAscSdtLockType.ContentLocked)
return;
}
this.api.asc_addImage(obj); this.api.asc_addImage(obj);
break; break;
case Asc.c_oAscContentControlSpecificType.DropDownList: case Asc.c_oAscContentControlSpecificType.DropDownList:
@ -4131,6 +4168,14 @@ define([
} }
}, },
onApiLockDocumentProps: function() {
this._state.lock_doc = true;
},
onApiUnLockDocumentProps: function() {
this._state.lock_doc = false;
},
focus: function() { focus: function() {
var me = this; var me = this;
_.defer(function(){ me.cmpEl.focus(); }, 50); _.defer(function(){ me.cmpEl.focus(); }, 50);

View file

@ -296,7 +296,7 @@ define([
this.miNew[this.mode.canCreateNew?'show':'hide'](); this.miNew[this.mode.canCreateNew?'show':'hide']();
this.miNew.$el.find('+.devider')[this.mode.canCreateNew?'show':'hide'](); this.miNew.$el.find('+.devider')[this.mode.canCreateNew?'show':'hide']();
this.miAccess[(!this.mode.isOffline && !this.mode.isReviewOnly && this.document&&this.document.info && this.miAccess[(!this.mode.isOffline && this.document&&this.document.info &&
(this.document.info.sharingSettings&&this.document.info.sharingSettings.length>0 || (this.document.info.sharingSettings&&this.document.info.sharingSettings.length>0 ||
(this.mode.sharingSettingsUrl&&this.mode.sharingSettingsUrl.length || this.mode.canRequestSharingSettings)))?'show':'hide'](); (this.mode.sharingSettingsUrl&&this.mode.sharingSettingsUrl.length || this.mode.canRequestSharingSettings)))?'show':'hide']();
@ -305,6 +305,10 @@ define([
this.mode.canBack ? this.$el.find('#fm-btn-back').show().prev().show() : this.mode.canBack ? this.$el.find('#fm-btn-back').show().prev().show() :
this.$el.find('#fm-btn-back').hide().prev().hide(); this.$el.find('#fm-btn-back').hide().prev().hide();
if (!this.customizationDone) {
this.customizationDone = true;
Common.Utils.applyCustomization(this.mode.customization, {goback: '#fm-btn-back > a'});
}
this.panels['opts'].setMode(this.mode); this.panels['opts'].setMode(this.mode);
this.panels['info'].setMode(this.mode); this.panels['info'].setMode(this.mode);

View file

@ -355,17 +355,26 @@ define([
this.lblCoAuthMode = $markup.findById('#fms-lbl-coauth-mode'); this.lblCoAuthMode = $markup.findById('#fms-lbl-coauth-mode');
/** coauthoring end **/ /** coauthoring end **/
var itemsTemplate =
_.template([
'<% _.each(items, function(item) { %>',
'<li id="<%= item.id %>" data-value="<%= item.value %>" <% if (item.value === "custom") { %> style="border-top: 1px solid #e5e5e5;margin-top: 5px;" <% } %> ><a tabindex="-1" type="menuitem" <% if (typeof(item.checked) !== "undefined" && item.checked) { %> class="checked" <% } %> ><%= scope.getDisplayValue(item) %></a></li>',
'<% }); %>'
].join(''));
this.cmbFontRender = new Common.UI.ComboBox({ this.cmbFontRender = new Common.UI.ComboBox({
el : $markup.find('#fms-cmb-font-render'), el : $markup.find('#fms-cmb-font-render'),
style : 'width: 160px;', style : 'width: 160px;',
editable : false, editable : false,
cls : 'input-group-nr', cls : 'input-group-nr',
itemsTemplate: itemsTemplate,
data : [ data : [
{ value: 0, displayValue: this.txtWin }, { value: 0, displayValue: this.txtWin },
{ value: 1, displayValue: this.txtMac }, { value: 1, displayValue: this.txtMac },
{ value: 2, displayValue: this.txtNative } { value: 2, displayValue: this.txtNative },
{ value: 'custom', displayValue: this.txtCacheMode }
] ]
}); });
this.cmbFontRender.on('selected', _.bind(this.onFontRenderSelected, this));
this.cmbUnit = new Common.UI.ComboBox({ this.cmbUnit = new Common.UI.ComboBox({
el : $markup.findById('#fms-cmb-unit'), el : $markup.findById('#fms-cmb-unit'),
@ -444,7 +453,13 @@ define([
value = Common.Utils.InternalSettings.get("de-settings-fontrender"); value = Common.Utils.InternalSettings.get("de-settings-fontrender");
item = this.cmbFontRender.store.findWhere({value: parseInt(value)}); item = this.cmbFontRender.store.findWhere({value: parseInt(value)});
this.cmbFontRender.setValue(item ? item.get('value') : (window.devicePixelRatio > 1 ? 1 : 0)); this.cmbFontRender.setValue(item ? item.get('value') : 0);
this._fontRender = this.cmbFontRender.getValue();
value = Common.Utils.InternalSettings.get("de-settings-cachemode");
item = this.cmbFontRender.store.findWhere({value: 'custom'});
item && value && item.set('checked', !!value);
item && value && this.cmbFontRender.cmpEl.find('#' + item.get('id') + ' a').addClass('checked');
value = Common.Utils.InternalSettings.get("de-settings-unit"); value = Common.Utils.InternalSettings.get("de-settings-unit");
item = this.cmbUnit.store.findWhere({value: value}); item = this.cmbUnit.store.findWhere({value: value});
@ -476,6 +491,8 @@ define([
} }
/** coauthoring end **/ /** coauthoring end **/
Common.localStorage.setItem("de-settings-fontrender", this.cmbFontRender.getValue()); Common.localStorage.setItem("de-settings-fontrender", this.cmbFontRender.getValue());
var item = this.cmbFontRender.store.findWhere({value: 'custom'});
Common.localStorage.setItem("de-settings-cachemode", item && !item.get('checked') ? 0 : 1);
Common.localStorage.setItem("de-settings-unit", this.cmbUnit.getValue()); Common.localStorage.setItem("de-settings-unit", this.cmbUnit.getValue());
Common.localStorage.setItem("de-settings-autosave", this.chAutosave.isChecked() ? 1 : 0); Common.localStorage.setItem("de-settings-autosave", this.chAutosave.isChecked() ? 1 : 0);
if (this.mode.canForcesave) if (this.mode.canForcesave)
@ -508,6 +525,16 @@ define([
this.cmbShowChanges.setValue((record.value == 1) ? 'none' : 'last'); this.cmbShowChanges.setValue((record.value == 1) ? 'none' : 'last');
}, },
onFontRenderSelected: function(combo, record) {
if (record.value == 'custom') {
var item = combo.store.findWhere({value: 'custom'});
item && item.set('checked', !record.checked);
combo.cmpEl.find('#' + record.id + ' a').toggleClass('checked', !record.checked);
combo.setValue(this._fontRender);
}
this._fontRender = combo.getValue();
},
strLiveComment: 'Turn on option', strLiveComment: 'Turn on option',
strInputMode: 'Turn on hieroglyphs', strInputMode: 'Turn on hieroglyphs',
strZoom: 'Default Zoom Value', strZoom: 'Default Zoom Value',
@ -547,7 +574,8 @@ define([
strForcesave: 'Always save to server (otherwise save to server on document close)', strForcesave: 'Always save to server (otherwise save to server on document close)',
strResolvedComment: 'Turn on display of the resolved comments', strResolvedComment: 'Turn on display of the resolved comments',
textCompatible: 'Compatibility', textCompatible: 'Compatibility',
textOldVersions: 'Make the files compatible with older MS Word versions when saved as DOCX' textOldVersions: 'Make the files compatible with older MS Word versions when saved as DOCX',
txtCacheMode: 'Default cache mode'
}, DE.Views.FileMenuPanels.Settings || {})); }, DE.Views.FileMenuPanels.Settings || {}));
DE.Views.FileMenuPanels.RecentFiles = Common.UI.BaseView.extend({ DE.Views.FileMenuPanels.RecentFiles = Common.UI.BaseView.extend({
@ -1293,6 +1321,7 @@ define([
this.menu = options.menu; this.menu = options.menu;
this.urlPref = 'resources/help/en/'; this.urlPref = 'resources/help/en/';
this.openUrl = null;
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"},
@ -1419,8 +1448,9 @@ define([
} }
}, },
success: function () { success: function () {
var rec = store.at(0); var rec = (me.openUrl) ? store.findWhere({ src: me.openUrl }) || store.at(0) : store.at(0);
me.viewHelpPicker.selectRecord(rec); me.viewHelpPicker.selectRecord(rec);
me.viewHelpPicker.scrollToRecord(rec);
me.iFrame.src = me.urlPref + rec.get('src'); me.iFrame.src = me.urlPref + rec.get('src');
} }
}; };
@ -1443,7 +1473,8 @@ define([
if (rec) { if (rec) {
this.viewHelpPicker.selectRecord(rec); this.viewHelpPicker.selectRecord(rec);
this.viewHelpPicker.scrollToRecord(rec); this.viewHelpPicker.scrollToRecord(rec);
} } else
this.openUrl = url;
} }
} }
}); });

View file

@ -74,7 +74,8 @@ define([
FromGroup: false, FromGroup: false,
DisabledControls: false, DisabledControls: false,
isOleObject: false, isOleObject: false,
cropMode: false cropMode: false,
isPictureControl: false
}; };
this.lockedControls = []; this.lockedControls = [];
this._locked = false; this._locked = false;
@ -308,10 +309,13 @@ define([
value = props.get_CanBeFlow() && !this._locked; value = props.get_CanBeFlow() && !this._locked;
var fromgroup = props.get_FromGroup() || this._locked; var fromgroup = props.get_FromGroup() || this._locked;
if (this._state.CanBeFlow!==value || this._state.FromGroup!==fromgroup) { var control_props = this.api.asc_IsContentControl() ? this.api.asc_GetContentControlProperties() : null,
this.cmbWrapType.setDisabled(!value || fromgroup); isPictureControl = !!control_props && (control_props.get_SpecificType()==Asc.c_oAscContentControlSpecificType.Picture) || this._locked;
if (this._state.CanBeFlow!==value || this._state.FromGroup!==fromgroup || this._state.isPictureControl!==isPictureControl) {
this.cmbWrapType.setDisabled(!value || fromgroup || isPictureControl);
this._state.CanBeFlow=value; this._state.CanBeFlow=value;
this._state.FromGroup=fromgroup; this._state.FromGroup=fromgroup;
this._state.isPictureControl=isPictureControl;
} }
value = props.get_Width(); value = props.get_Width();

View file

@ -0,0 +1,599 @@
/*
*
* (c) Copyright Ascensio System SIA 2010-2019
*
* This program is a free software product. You can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License (AGPL)
* version 3 as published by the Free Software Foundation. In accordance with
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
* that Ascensio System SIA expressly excludes the warranty of non-infringement
* of any third-party rights.
*
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
*
* You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha
* street, Riga, Latvia, EU, LV-1050.
*
* The interactive user interfaces in modified source and object code versions
* of the Program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU AGPL version 3.
*
* Pursuant to Section 7(b) of the License you must retain the original Product
* logo when distributing the program. Pursuant to Section 7(e) we decline to
* grant you any rights under trademark law for use of our trademarks.
*
* All the Product's GUI elements, including illustrations and icon sets, as
* well as technical writing content are licensed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
*
*/
/**
* ListSettingsDialog.js
*
* Created by Julia Radzhabova on 03.12.2019
* Copyright (c) 2019 Ascensio System SIA. All rights reserved.
*
*/
if (Common === undefined)
var Common = {};
define([
'common/main/lib/component/Window',
'common/main/lib/component/MetricSpinner',
'common/main/lib/component/ThemeColorPalette',
'common/main/lib/component/ColorButton',
'common/main/lib/component/ComboBox',
'common/main/lib/view/SymbolTableDialog'
], function () { 'use strict';
DE.Views.ListSettingsDialog = Common.UI.Window.extend(_.extend({
options: {
type: 0, // 0 - markers, 1 - numbers, 2 - multilevel
width: 300,
height: 422,
style: 'min-width: 240px;',
cls: 'modal-dlg',
split: false,
buttons: ['ok', 'cancel']
},
initialize : function(options) {
this.type = options.type || 0;
_.extend(this.options, {
title: this.txtTitle,
height: (this.type==2) ? 376 : 422,
width: (this.type==2) ? 430 : 300
}, options || {});
this.template = [
'<div class="box">',
'<% if (type == 2) { %>',
'<table cols="4" style="width: 100%;">',
'<tr>',
'<td style="padding-right: 5px;">',
'<label class="input-label">' + this.txtType + '</label>',
'<div id="id-dlg-numbering-format" class="input-group-nr" style="width: 100%;margin-bottom: 10px;"></div>',
'</td>',
'<td style="padding-left: 5px;padding-right: 5px;">',
'<label class="input-label">' + this.txtAlign + '</label>',
'<div id="id-dlg-bullet-align" class="input-group-nr" style="width: 100%;margin-bottom: 10px;"></div>',
'</td>',
'<td style="padding-left: 5px;padding-right: 5px;">',
'<label class="input-label">' + this.txtSize + '</label>',
'<div id="id-dlg-bullet-size" class="input-group-nr" style="width: 100%;margin-bottom: 10px;"></div>',
'</td>',
'<td style="padding-left: 5px;">',
'<label class="input-label">' + this.txtColor + '</label>',
'<div id="id-dlg-bullet-color" style="margin-bottom: 10px;"></div>',
'</td>',
'</tr>',
'</table>',
'<% } else {%>',
'<table cols="2" style="width: 100%;">',
'<tr>',
'<td style="padding-right: 5px;">',
'<% if (type == 0) { %>',
'<label class="input-label">' + this.txtBullet + '</label>',
'<button type="button" class="btn btn-text-default" id="id-dlg-bullet-font" style="width: 100%;margin-bottom: 10px;">' + this.txtFont + '</button>',
'<% } else { %>',
'<label class="input-label">' + this.txtType + '</label>',
'<div id="id-dlg-numbering-format" class="input-group-nr" style="width: 100%;margin-bottom: 10px;"></div>',
'<% } %>',
'</td>',
'<td style="padding-left: 5px;">',
'<label class="input-label">' + this.txtAlign + '</label>',
'<div id="id-dlg-bullet-align" class="input-group-nr" style="width: 100%;margin-bottom: 10px;"></div>',
'</td>',
'</tr>',
'<tr>',
'<td style="padding-right: 5px;">',
'<label class="input-label">' + this.txtSize + '</label>',
'<div id="id-dlg-bullet-size" class="input-group-nr" style="width: 100%;margin-bottom: 10px;"></div>',
'</td>',
'<td style="padding-left: 5px;">',
'<label class="input-label">' + this.txtColor + '</label>',
'<div id="id-dlg-bullet-color" style="margin-bottom: 10px;"></div>',
'</td>',
'</tr>',
'</table>',
'<% } %>',
'<table cols="2" style="width: 100%;">',
'<tr>',
'<td class="<% if (type != 2) { %> hidden <% } %>" style="width: 50px; padding-right: 10px;">',
'<label>' + this.textLevel + '</label>',
'<div id="levels-list" class="no-borders" style="width:100%; height:208px;margin-top: 2px; "></div>',
'</td>',
'<td>',
'<label>' + this.textPreview + '</label>',
'<div id="bulleted-list-preview" style="margin-top: 2px; height:208px; width: 100%; border: 1px solid #cfcfcf;"></div>',
'</td>',
'</tr>',
'</table>',
'</div>'
].join('');
this.props = options.props;
this.level = options.level || 0;
this.api = options.api;
this.options.tpl = _.template(this.template)(this.options);
this.levels = [];
Common.UI.Window.prototype.initialize.call(this, this.options);
},
render: function() {
Common.UI.Window.prototype.render.call(this);
var me = this,
$window = this.getChild();
$window.find('.dlg-btn').on('click', _.bind(this.onBtnClick, this));
this.menuAddAlign = function(menuRoot, left, top) {
var self = this;
if (!$window.hasClass('notransform')) {
$window.addClass('notransform');
menuRoot.addClass('hidden');
setTimeout(function() {
menuRoot.removeClass('hidden');
menuRoot.css({left: left, top: top});
self.options.additionalAlign = null;
}, 300);
} else {
menuRoot.css({left: left, top: top});
self.options.additionalAlign = null;
}
};
this.btnColor = new Common.UI.ColorButton({
style: 'width:45px;',
menu : new Common.UI.Menu({
additionalAlign: this.menuAddAlign,
items: [
{
id: 'id-dlg-bullet-text-color',
caption: this.txtLikeText,
checkable: true,
toggleGroup: 'list-settings-color'
},
{
id: 'id-dlg-bullet-auto-color',
caption: this.textAuto,
checkable: true,
toggleGroup: 'list-settings-color'
},
{caption: '--'},
{ template: _.template('<div id="id-dlg-bullet-color-menu" style="width: 169px; height: 220px; margin: 10px;"></div>') },
{ template: _.template('<a id="id-dlg-bullet-color-new" style="padding-left:12px;">' + this.textNewColor + '</a>') }
]
})
});
this.btnColor.on('render:after', function(btn) {
me.colors = new Common.UI.ThemeColorPalette({
el: $window.find('#id-dlg-bullet-color-menu'),
transparent: false
});
me.colors.on('select', _.bind(me.onColorsSelect, me));
});
this.btnColor.render($window.find('#id-dlg-bullet-color'));
$window.find('#id-dlg-bullet-color-new').on('click', _.bind(this.addNewColor, this, this.colors));
this.btnColor.menu.items[0].on('toggle', _.bind(this.onLikeTextColor, this));
this.btnColor.menu.items[1].on('toggle', _.bind(this.onAutoColor, this));
this.btnEdit = new Common.UI.Button({
el: $window.find('#id-dlg-bullet-font')
});
this.btnEdit.on('click', _.bind(this.onEditBullet, this));
var itemsTemplate =
[
'<% _.each(items, function(item) { %>',
'<li id="<%= item.id %>" data-value="<%= item.value %>"><a tabindex="-1" type="menuitem">',
'<%= item.displayValue %><% if (item.value === Asc.c_oAscNumberingFormat.Bullet) { %><span style="font-family:<%=item.font%>;"><%=item.symbol%></span><% } %>',
'</a></li>',
'<% }); %>'
];
var template = [
'<div class="input-group combobox input-group-nr <%= cls %>" id="<%= id %>" style="<%= style %>">',
'<div class="form-control" style="padding-top:3px; line-height: 14px; cursor: pointer; <%= style %>"></div>',
'<div style="display: table-cell;"></div>',
'<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"><span class="caret img-commonctrl"></span></button>',
'<ul class="dropdown-menu <%= menuCls %>" style="<%= menuStyle %>" role="menu">'].concat(itemsTemplate).concat([
'</ul>',
'</div>'
]);
this.cmbFormat = new Common.UI.ComboBoxCustom({
el : $window.find('#id-dlg-numbering-format'),
menuStyle : 'min-width: 100%;max-height: 183px;',
style : this.type==2 ? "width: 107px;" : "width: 129px;",
editable : false,
template : _.template(template.join('')),
itemsTemplate: _.template(itemsTemplate.join('')),
data : [
{ displayValue: this.txtNone, value: Asc.c_oAscNumberingFormat.None },
{ displayValue: '1, 2, 3,...', value: Asc.c_oAscNumberingFormat.Decimal },
{ displayValue: 'a, b, c,...', value: Asc.c_oAscNumberingFormat.LowerLetter },
{ displayValue: 'A, B, C,...', value: Asc.c_oAscNumberingFormat.UpperLetter },
{ displayValue: 'i, ii, iii,...', value: Asc.c_oAscNumberingFormat.LowerRoman },
{ displayValue: 'I, II, III,...', value: Asc.c_oAscNumberingFormat.UpperRoman }
],
updateFormControl: function(record) {
var formcontrol = $(this.el).find('.form-control');
if (record) {
if (record.get('value')==Asc.c_oAscNumberingFormat.Bullet)
formcontrol[0].innerHTML = record.get('displayValue') + '<span style="font-family:' + (record.get('font') || 'Arial') + '">' + record.get('symbol') + '</span>';
else
formcontrol[0].innerHTML = record.get('displayValue');
} else
formcontrol[0].innerHTML = '';
}
});
this.cmbFormat.on('selected', _.bind(function (combo, record) {
if (this._changedProps) {
if (record.value == -1) {
var callback = function(result) {
var format = me._changedProps.get_Format();
if (format == Asc.c_oAscNumberingFormat.Bullet) {
var store = combo.store;
if (!store.findWhere({value: Asc.c_oAscNumberingFormat.Bullet, symbol: me.bulletProps.symbol, font: me.bulletProps.font}))
store.add({ displayValue: me.txtSymbol + ': ', value: Asc.c_oAscNumberingFormat.Bullet, symbol: me.bulletProps.symbol, font: me.bulletProps.font }, {at: store.length-1});
combo.setData(store.models);
combo.selectRecord(combo.store.findWhere({value: Asc.c_oAscNumberingFormat.Bullet, symbol: me.bulletProps.symbol, font: me.bulletProps.font}));
} else
combo.setValue(format || '');
};
this.addNewBullet(callback);
} else {
var oldformat = this._changedProps.get_Format();
this._changedProps.put_Format(record.value);
if (record.value == Asc.c_oAscNumberingFormat.Bullet) {
this.bulletProps.font = record.font;
this.bulletProps.symbol = record.symbol;
if (!this._changedProps.get_TextPr()) this._changedProps.put_TextPr(new AscCommonWord.CTextPr());
this._changedProps.get_TextPr().put_FontFamily(this.bulletProps.font);
this._changedProps.put_Text([new Asc.CAscNumberingLvlText()]);
this._changedProps.get_Text()[0].put_Value(this.bulletProps.symbol);
} else if (record.value == Asc.c_oAscNumberingFormat.None || oldformat == Asc.c_oAscNumberingFormat.Bullet) {
if (!this._changedProps.get_TextPr()) this._changedProps.put_TextPr(new AscCommonWord.CTextPr());
this._changedProps.get_TextPr().put_FontFamily(undefined);
this._changedProps.put_Text([new Asc.CAscNumberingLvlText()]);
this._changedProps.get_Text()[0].put_Type(Asc.c_oAscNumberingLvlTextType.Num);
this._changedProps.get_Text()[0].put_Value(this.level);
}
}
}
if (this.api) {
this.api.SetDrawImagePreviewBullet('bulleted-list-preview', this.props, this.level, this.type==2);
}
}, this));
this.cmbAlign = new Common.UI.ComboBox({
el : $window.find('#id-dlg-bullet-align'),
menuStyle : 'min-width: 100%;',
editable : false,
cls : 'input-group-nr',
data : [
{ value: AscCommon.align_Left, displayValue: this.textLeft },
{ value: AscCommon.align_Center, displayValue: this.textCenter },
{ value: AscCommon.align_Right, displayValue: this.textRight }
]
});
this.cmbAlign.on('selected', _.bind(function (combo, record) {
if (this._changedProps)
this._changedProps.put_Align(record.value);
if (this.api) {
this.api.SetDrawImagePreviewBullet('bulleted-list-preview', this.props, this.level, this.type==2);
}
}, this));
this.cmbSize = new Common.UI.ComboBox({
el : $window.find('#id-dlg-bullet-size'),
menuStyle : 'min-width: 100%;max-height: 183px;',
editable : false,
cls : 'input-group-nr',
data : [
{ value: -1, displayValue: this.txtLikeText },
{ value: 8, displayValue: "8" },
{ value: 9, displayValue: "9" },
{ value: 10, displayValue: "10" },
{ value: 11, displayValue: "11" },
{ value: 12, displayValue: "12" },
{ value: 14, displayValue: "14" },
{ value: 16, displayValue: "16" },
{ value: 18, displayValue: "18" },
{ value: 20, displayValue: "20" },
{ value: 22, displayValue: "22" },
{ value: 24, displayValue: "24" },
{ value: 26, displayValue: "26" },
{ value: 28, displayValue: "28" },
{ value: 36, displayValue: "36" },
{ value: 48, displayValue: "48" },
{ value: 72, displayValue: "72" },
{ value: 96, displayValue: "96" }
]
});
this.cmbSize.on('selected', _.bind(function (combo, record) {
if (this._changedProps) {
if (!this._changedProps.get_TextPr()) this._changedProps.put_TextPr(new AscCommonWord.CTextPr());
this._changedProps.get_TextPr().put_FontSize((record.value>0) ? record.value : undefined);
}
if (this.api) {
this.api.SetDrawImagePreviewBullet('bulleted-list-preview', this.props, this.level, this.type==2);
}
}, this));
var levels = [];
for (var i=0; i<9; i++)
levels.push({value: i});
this.levelsList = new Common.UI.ListView({
el: $('#levels-list', this.$window),
store: new Common.UI.DataViewStore(levels),
itemTemplate: _.template('<div id="<%= id %>" class="list-item" style="pointer-events:none;overflow: hidden; text-overflow: ellipsis;line-height: 15px;"><%= (value+1) %></div>')
});
this.levelsList.on('item:select', _.bind(this.onSelectLevel, this));
this.afterRender();
},
afterRender: function() {
this.updateThemeColors();
this._setDefaults(this.props);
var me = this;
var onApiLevelChange = function(level) {
me.levelsList.selectByIndex(level);
};
this.api.asc_registerCallback('asc_onPreviewLevelChange', onApiLevelChange);
this.on('close', function(obj){
me.api.asc_unregisterCallback('asc_onPreviewLevelChange', onApiLevelChange);
});
},
updateThemeColors: function() {
this.colors.updateColors(Common.Utils.ThemeColor.getEffectColors(), Common.Utils.ThemeColor.getStandartColors());
},
addNewColor: function(picker, btn) {
picker.addNewColor((typeof(btn.color) == 'object') ? btn.color.color : btn.color);
},
onAutoColor: function(item, state) {
if (!!state) {
var color = Common.Utils.ThemeColor.getHexColor(0, 0, 0);
this.btnColor.setColor(color);
this.colors.clearSelection();
if (this._changedProps) {
if (!this._changedProps.get_TextPr()) this._changedProps.put_TextPr(new AscCommonWord.CTextPr());
var color = new Asc.asc_CColor();
color.put_auto(true);
this._changedProps.get_TextPr().put_Color(color);
}
if (this.api) {
this.api.SetDrawImagePreviewBullet('bulleted-list-preview', this.props, this.level, this.type==2);
}
}
},
onLikeTextColor: function(item, state) {
if (!!state) {
var color = Common.Utils.ThemeColor.getHexColor(255, 255, 255);
this.btnColor.setColor(color);
this.colors.clearSelection();
if (this._changedProps) {
if (!this._changedProps.get_TextPr()) this._changedProps.put_TextPr(new AscCommonWord.CTextPr());
this._changedProps.get_TextPr().put_Color(undefined);
}
if (this.api) {
this.api.SetDrawImagePreviewBullet('bulleted-list-preview', this.props, this.level, this.type==2);
}
}
},
onColorsSelect: function(picker, color) {
this.btnColor.setColor(color);
if (this._changedProps) {
if (!this._changedProps.get_TextPr()) this._changedProps.put_TextPr(new AscCommonWord.CTextPr());
this._changedProps.get_TextPr().put_Color(Common.Utils.ThemeColor.getRgbColor(color));
}
this.btnColor.menu.items[0].setChecked(false, true);
this.btnColor.menu.items[1].setChecked(false, true);
if (this.api) {
this.api.SetDrawImagePreviewBullet('bulleted-list-preview', this.props, this.level, this.type==2);
}
},
onEditBullet: function(callback) {
this.addNewBullet();
},
addNewBullet: function(callback) {
var me = this,
props = me.bulletProps,
handler = function(dlg, result, settings) {
if (result == 'ok') {
props.changed = true;
props.code = settings.code;
props.font = settings.font;
props.symbol = settings.symbol;
if (me._changedProps) {
me._changedProps.put_Format(Asc.c_oAscNumberingFormat.Bullet);
if (!me._changedProps.get_TextPr()) me._changedProps.put_TextPr(new AscCommonWord.CTextPr());
me._changedProps.get_TextPr().put_FontFamily(props.font);
me._changedProps.put_Text([new Asc.CAscNumberingLvlText()]);
me._changedProps.get_Text()[0].put_Value(props.symbol);
if (me.api) {
me.api.SetDrawImagePreviewBullet('bulleted-list-preview', me.props, me.level, me.type==2);
}
}
}
callback && callback.call(me, result);
},
win = new Common.Views.SymbolTableDialog({
api: me.options.api,
lang: me.options.interfaceLang,
modal: true,
type: 0,
font: props.font,
symbol: props.symbol,
handler: handler
});
win.show();
win.on('symbol:dblclick', handler);
},
_handleInput: function(state) {
if (this.options.handler) {
var props = [], lvlnum = [];
for (var i=0; i<9; i++) {
if (!this.levels[i]) continue;
props.push(this.levels[i]);
lvlnum.push(i);
}
this.options.handler.call(this, state, {props: (props.length==1) ? props[0] : props, num: (lvlnum.length==1) ? lvlnum[0] : lvlnum});
}
this.close();
},
onBtnClick: function(event) {
this._handleInput(event.currentTarget.attributes['result'].value);
},
onPrimary: function(event) {
this._handleInput('ok');
return false;
},
_setDefaults: function (props) {
this.bulletProps = {};
if (props) {
var levelProps = props.get_Lvl(this.level);
(this.level<0) && (this.level = 0);
this.levels[this.level] = levelProps || new Asc.CAscNumberingLvl(this.level);
if (this.type==2) {
var store = this.cmbFormat.store;
store.push([
{ displayValue: this.txtSymbol + ': ', value: Asc.c_oAscNumberingFormat.Bullet, symbol: "·", font: 'Symbol' },
{ displayValue: this.txtSymbol + ': ', value: Asc.c_oAscNumberingFormat.Bullet, symbol: "o", font: 'Courier New' },
{ displayValue: this.txtSymbol + ': ', value: Asc.c_oAscNumberingFormat.Bullet, symbol: "§", font: 'Wingdings' },
{ displayValue: this.txtSymbol + ': ', value: Asc.c_oAscNumberingFormat.Bullet, symbol: "v", font: 'Wingdings' },
{ displayValue: this.txtSymbol + ': ', value: Asc.c_oAscNumberingFormat.Bullet, symbol: "Ø", font: 'Wingdings' },
{ displayValue: this.txtSymbol + ': ', value: Asc.c_oAscNumberingFormat.Bullet, symbol: "ü", font: 'Wingdings' },
{ displayValue: this.txtSymbol + ': ', value: Asc.c_oAscNumberingFormat.Bullet, symbol: "¨", font: 'Symbol' },
{ displayValue: this.txtSymbol + ': ', value: Asc.c_oAscNumberingFormat.Bullet, symbol: "", font: 'Arial' },
{ displayValue: this.txtNewBullet, value: -1 }
]);
this.cmbFormat.setData(store.models);
this.levelsList.selectByIndex(this.level);
} else
this.fillLevelProps(this.levels[this.level]);
}
this._changedProps = this.levels[this.level];
},
onSelectLevel: function(listView, itemView, record) {
this.level = record.get('value');
if (this.levels[this.level] === undefined)
this.levels[this.level] = this.props.get_Lvl(this.level);
this.fillLevelProps(this.levels[this.level]);
this._changedProps = this.levels[this.level];
},
fillLevelProps: function(levelProps) {
if (!levelProps) return;
this.cmbAlign.setValue((levelProps.get_Align()!==undefined) ? levelProps.get_Align() : '');
var format = levelProps.get_Format(),
textPr = levelProps.get_TextPr(),
text = levelProps.get_Text();
if (text && format == Asc.c_oAscNumberingFormat.Bullet) {
this.bulletProps.symbol = text[0].get_Value();
}
if (textPr) {
this.cmbSize.setValue(textPr.get_FontSize() || -1);
this.bulletProps.font = textPr.get_FontFamily();
var color = textPr.get_Color();
this.btnColor.menu.items[0].setChecked(color===undefined, true);
this.btnColor.menu.items[1].setChecked(!!color && color.get_auto(), true);
if (color && !color.get_auto()) {
if ( typeof(color) == 'object' ) {
var isselected = false;
for (var i=0; i<10; i++) {
if ( Common.Utils.ThemeColor.ThemeValues[i] == color.effectValue ) {
this.colors.select(color,true);
isselected = true;
break;
}
}
if (!isselected) this.colors.clearSelection();
color = Common.Utils.ThemeColor.getHexColor(color.get_r(), color.get_g(), color.get_b());
} else
this.colors.select(color,true);
} else {
this.colors.clearSelection();
color = (color && color.get_auto()) ? '000000' : 'ffffff';
}
this.btnColor.setColor(color);
}
if (this.type>0) {
if (format == Asc.c_oAscNumberingFormat.Bullet) {
if (!this.cmbFormat.store.findWhere({value: Asc.c_oAscNumberingFormat.Bullet, symbol: this.bulletProps.symbol, font: this.bulletProps.font}))
this.cmbFormat.store.add({ displayValue: this.txtSymbol + ': ', value: Asc.c_oAscNumberingFormat.Bullet, symbol: this.bulletProps.symbol, font: this.bulletProps.font }, {at: this.cmbFormat.store.length-1});
this.cmbFormat.setData(this.cmbFormat.store.models);
this.cmbFormat.selectRecord(this.cmbFormat.store.findWhere({value: Asc.c_oAscNumberingFormat.Bullet, symbol: this.bulletProps.symbol, font: this.bulletProps.font}));
} else
this.cmbFormat.setValue((format!==undefined) ? format : '');
}
if (this.api) {
this.api.SetDrawImagePreviewBullet('bulleted-list-preview', this.props, this.level, this.type==2);
}
},
txtTitle: 'List Settings',
txtSize: 'Size',
txtColor: 'Color',
textNewColor: 'Add New Custom Color',
txtBullet: 'Bullet',
txtFont: 'Font and Symbol',
txtAlign: 'Alignment',
textLeft: 'Left',
textCenter: 'Center',
textRight: 'Right',
textAuto: 'Automatic',
textPreview: 'Preview',
txtType: 'Type',
txtLikeText: 'Like a text',
textLevel: 'Level',
txtNone: 'None',
txtNewBullet: 'New bullet',
txtSymbol: 'Symbol'
}, DE.Views.ListSettingsDialog || {}))
});

View file

@ -155,7 +155,7 @@ define([
txtExpand: 'Expand all', txtExpand: 'Expand all',
txtCollapse: 'Collapse all', txtCollapse: 'Collapse all',
txtExpandToLevel: 'Expand to level...', txtExpandToLevel: 'Expand to level...',
txtEmpty: 'This document doesn\'t contain headings', txtEmpty: 'There are no headings in the document.<br>Apply a heading style to the text so that it appears in the table of contents.',
txtEmptyItem: 'Empty Heading' txtEmptyItem: 'Empty Heading'
}, DE.Views.Navigation || {})); }, DE.Views.Navigation || {}));

View file

@ -241,9 +241,33 @@ define([
this.cmbOrientation.on('selected', _.bind(function (combo, record) { this.cmbOrientation.on('selected', _.bind(function (combo, record) {
if (this.api) { if (this.api) {
this.properties = (this.properties) ? this.properties : new Asc.CDocumentSectionProps(); this.properties = (this.properties) ? this.properties : new Asc.CDocumentSectionProps();
if (this.properties.get_Orientation() !== record.value) {
this.properties.put_TopMargin(Common.Utils.Metric.fnRecalcToMM(record.value ? this.spnLeft.getNumberValue() : this.spnRight.getNumberValue()));
this.properties.put_BottomMargin(Common.Utils.Metric.fnRecalcToMM(record.value ? this.spnRight.getNumberValue() : this.spnLeft.getNumberValue()));
this.properties.put_LeftMargin(Common.Utils.Metric.fnRecalcToMM(record.value ? this.spnBottom.getNumberValue() : this.spnTop.getNumberValue()));
this.properties.put_RightMargin(Common.Utils.Metric.fnRecalcToMM(record.value ? this.spnTop.getNumberValue() : this.spnBottom.getNumberValue()));
var h = this.properties.get_H();
this.properties.put_H(this.properties.get_W());
this.properties.put_W(h);
this.properties.put_Orientation(record.value); this.properties.put_Orientation(record.value);
this.maxMarginsH = Common.Utils.Metric.fnRecalcFromMM(this.properties.get_H() - 2.6);
this.maxMarginsW = Common.Utils.Metric.fnRecalcFromMM(this.properties.get_W() - 12.7);
this.spnTop.setMaxValue(this.maxMarginsH);
this.spnBottom.setMaxValue(this.maxMarginsH);
this.spnLeft.setMaxValue(this.maxMarginsW);
this.spnRight.setMaxValue(this.maxMarginsW);
this.spnTop.setValue(Common.Utils.Metric.fnRecalcFromMM(this.properties.get_TopMargin()), true);
this.spnBottom.setValue(Common.Utils.Metric.fnRecalcFromMM(this.properties.get_BottomMargin()), true);
this.spnLeft.setValue(Common.Utils.Metric.fnRecalcFromMM(this.properties.get_LeftMargin()), true);
this.spnRight.setValue(Common.Utils.Metric.fnRecalcFromMM(this.properties.get_RightMargin()), true);
this.api.SetDrawImagePreviewMargins('page-margins-preview', this.properties); this.api.SetDrawImagePreviewMargins('page-margins-preview', this.properties);
} }
}
}, this)); }, this));
this.cmbMultiplePages = new Common.UI.ComboBox({ this.cmbMultiplePages = new Common.UI.ComboBox({
@ -356,6 +380,8 @@ define([
props.put_Gutter(Common.Utils.Metric.fnRecalcToMM(this.spnGutter.getNumberValue())); props.put_Gutter(Common.Utils.Metric.fnRecalcToMM(this.spnGutter.getNumberValue()));
props.put_GutterAtTop(this.cmbGutterPosition.getValue() ? true : false); props.put_GutterAtTop(this.cmbGutterPosition.getValue() ? true : false);
props.put_MirrorMargins(this.cmbMultiplePages.getValue() ? true : false); props.put_MirrorMargins(this.cmbMultiplePages.getValue() ? true : false);
props.put_H(this.properties.get_H());
props.put_W(this.properties.get_W());
return props; return props;
}, },

View file

@ -729,7 +729,7 @@ define([ 'text!documenteditor/main/app/template/ParagraphSettingsAdvanced.tem
if (this._changedProps.get_Ind()!==null && this._changedProps.get_Ind()!==undefined) { if (this._changedProps.get_Ind()!==null && this._changedProps.get_Ind()!==undefined) {
var left = this._changedProps.get_Ind().get_Left(), var left = this._changedProps.get_Ind().get_Left(),
first = this._changedProps.get_Ind().get_FirstLine(); first = this._changedProps.get_Ind().get_FirstLine();
if (first<0 || this.FirstLine<0) { if ((left!==undefined || first!==undefined) && (first<0 || this.FirstLine<0)) {
if (first<0 || first===undefined || first===null) { if (first<0 || first===undefined || first===null) {
if (first === undefined || first === null) if (first === undefined || first === null)
first = this.FirstLine; first = this.FirstLine;
@ -1414,14 +1414,14 @@ define([ 'text!documenteditor/main/app/template/ParagraphSettingsAdvanced.tem
if (this._changedProps.get_Ind()===null || this._changedProps.get_Ind()===undefined) if (this._changedProps.get_Ind()===null || this._changedProps.get_Ind()===undefined)
this._changedProps.put_Ind(new Asc.asc_CParagraphInd()); this._changedProps.put_Ind(new Asc.asc_CParagraphInd());
var value = Common.Utils.Metric.fnRecalcToMM(field.getNumberValue()); var value = Common.Utils.Metric.fnRecalcToMM(field.getNumberValue());
if (this.CurSpecial === c_paragraphSpecial.HANGING) { if (this.CurSpecial === c_paragraphSpecial.NONE_SPECIAL && value > 0 ) {
value = -value;
} else if (this.CurSpecial === c_paragraphSpecial.NONE_SPECIAL && value > 0 ) {
this.CurSpecial = c_paragraphSpecial.FIRST_LINE; this.CurSpecial = c_paragraphSpecial.FIRST_LINE;
this.cmbSpecial.setValue(c_paragraphSpecial.FIRST_LINE); this.cmbSpecial.setValue(c_paragraphSpecial.FIRST_LINE);
} else if (value === 0) { } else if (value === 0) {
this.CurSpecial = c_paragraphSpecial.NONE_SPECIAL; this.CurSpecial = c_paragraphSpecial.NONE_SPECIAL;
this.cmbSpecial.setValue(c_paragraphSpecial.NONE_SPECIAL); this.cmbSpecial.setValue(c_paragraphSpecial.NONE_SPECIAL);
} else if (this.CurSpecial === c_paragraphSpecial.HANGING) {
value = -value;
} }
this._changedProps.get_Ind().put_FirstLine(value); this._changedProps.get_Ind().put_FirstLine(value);
} }

View file

@ -259,6 +259,7 @@ define([
data: [ data: [
{ displayValue: this.txtCurrent, value: Asc.c_oAscTOCStylesType.Current }, { displayValue: this.txtCurrent, value: Asc.c_oAscTOCStylesType.Current },
{ displayValue: this.txtSimple, value: Asc.c_oAscTOCStylesType.Simple }, { displayValue: this.txtSimple, value: Asc.c_oAscTOCStylesType.Simple },
{ displayValue: this.txtOnline, value: Asc.c_oAscTOCStylesType.Web },
{ displayValue: this.txtStandard, value: Asc.c_oAscTOCStylesType.Standard }, { displayValue: this.txtStandard, value: Asc.c_oAscTOCStylesType.Standard },
{ displayValue: this.txtModern, value: Asc.c_oAscTOCStylesType.Modern }, { displayValue: this.txtModern, value: Asc.c_oAscTOCStylesType.Modern },
{ displayValue: this.txtClassic, value: Asc.c_oAscTOCStylesType.Classic } { displayValue: this.txtClassic, value: Asc.c_oAscTOCStylesType.Classic }
@ -649,7 +650,8 @@ define([
txtSimple: 'Simple', txtSimple: 'Simple',
txtStandard: 'Standard', txtStandard: 'Standard',
txtModern: 'Modern', txtModern: 'Modern',
txtClassic: 'Classic' txtClassic: 'Classic',
txtOnline: 'Online'
}, DE.Views.TableOfContentsSettings || {})) }, DE.Views.TableOfContentsSettings || {}))
}); });

View file

@ -1538,6 +1538,10 @@ define([
})); }));
me.btnWatermark.updateHint(me.tipWatermark); me.btnWatermark.updateHint(me.tipWatermark);
if (!config.canFeatureContentControl && me.btnContentControls.cmpEl) {
me.btnContentControls.cmpEl.parents('.group').hide().prev('.separator').hide();
}
}); });
}, },
@ -1608,7 +1612,12 @@ define([
new Common.UI.Menu({ new Common.UI.Menu({
style: 'min-width: 139px', style: 'min-width: 139px',
items: [ items: [
{template: _.template('<div id="id-toolbar-menu-markers" class="menu-markers" style="width: 139px; margin: 0 5px;"></div>')} {template: _.template('<div id="id-toolbar-menu-markers" class="menu-markers" style="width: 139px; margin: 0 16px;"></div>')},
this.mnuMarkerSettings = new Common.UI.MenuItem({
caption: this.textListSettings,
disabled: (this.mnuMarkersPicker.conf.index || 0)==0,
value: 'settings'
})
] ]
}) })
); );
@ -1616,7 +1625,12 @@ define([
this.btnNumbers.setMenu( this.btnNumbers.setMenu(
new Common.UI.Menu({ new Common.UI.Menu({
items: [ items: [
{template: _.template('<div id="id-toolbar-menu-numbering" class="menu-markers" style="width: 185px; margin: 0 5px;"></div>')} {template: _.template('<div id="id-toolbar-menu-numbering" class="menu-markers" style="width: 185px; margin: 0 16px;"></div>')},
this.mnuNumberSettings = new Common.UI.MenuItem({
caption: this.textListSettings,
disabled: (this.mnuNumbersPicker.conf.index || 0)==0,
value: 'settings'
})
] ]
}) })
); );
@ -1625,7 +1639,12 @@ define([
new Common.UI.Menu({ new Common.UI.Menu({
style: 'min-width: 90px', style: 'min-width: 90px',
items: [ items: [
{template: _.template('<div id="id-toolbar-menu-multilevels" class="menu-markers" style="width: 93px; margin: 0 5px;"></div>')} {template: _.template('<div id="id-toolbar-menu-multilevels" class="menu-markers" style="width: 93px; margin: 0 16px;"></div>')},
this.mnuMultilevelSettings = new Common.UI.MenuItem({
caption: this.textListSettings,
disabled: (this.mnuMultilevelPicker.conf.index || 0)==0,
value: 'settings'
})
] ]
}) })
); );
@ -2289,7 +2308,8 @@ define([
capBtnInsSymbol: 'Symbol', capBtnInsSymbol: 'Symbol',
tipInsertSymbol: 'Insert symbol', tipInsertSymbol: 'Insert symbol',
mniDrawTable: 'Draw Table', mniDrawTable: 'Draw Table',
mniEraseTable: 'Erase Table' mniEraseTable: 'Erase Table',
textListSettings: 'List Settings'
} }
})(), DE.Views.Toolbar || {})); })(), DE.Views.Toolbar || {}));
}); });

View file

@ -284,7 +284,7 @@ define(['text!documenteditor/main/app/template/WatermarkSettings.template',
this.btnUnderline = new Common.UI.Button({ this.btnUnderline = new Common.UI.Button({
cls : 'btn-toolbar', cls : 'btn-toolbar',
iconCls : 'btn-underline', iconCls : 'toolbar__icon btn-underline',
enableToggle: true, enableToggle: true,
hint: this.textUnderline hint: this.textUnderline
}); });

View file

@ -24,7 +24,7 @@
.loadmask > .brendpanel { .loadmask > .brendpanel {
width: 100%; width: 100%;
min-height: 32px; min-height: 28px;
background: #446995; background: #446995;
} }
@ -223,14 +223,23 @@
<script> <script>
var params = getUrlParams(), var params = getUrlParams(),
notoolbar = params["toolbar"] == 'false',
compact = params["compact"] == 'true', compact = params["compact"] == 'true',
view = params["mode"] == 'view'; view = params["mode"] == 'view';
(compact || view || notoolbar) && document.querySelector('.brendpanel > :nth-child(2)').remove();
if (compact || view) { if (compact || view) {
document.querySelector('.brendpanel > :nth-child(2)').remove(); if (notoolbar) {
document.querySelector('.brendpanel > :nth-child(1)').remove();
document.querySelector('.brendpanel').remove();
} else
document.querySelector('.brendpanel > :nth-child(1)').style.height = '32px'; document.querySelector('.brendpanel > :nth-child(1)').style.height = '32px';
} else if (notoolbar) {
document.querySelector('.brendpanel > :nth-child(1)').style.height = '28px';
} }
if (view) {
if (view || notoolbar) {
document.querySelector('.sktoolbar').remove(); document.querySelector('.sktoolbar').remove();
} }

View file

@ -25,7 +25,7 @@
.loadmask > .brendpanel { .loadmask > .brendpanel {
width: 100%; width: 100%;
min-height: 32px; min-height: 28px;
background: #446995; background: #446995;
} }
@ -216,14 +216,22 @@
<script> <script>
var params = getUrlParams(), var params = getUrlParams(),
notoolbar = params["toolbar"] == 'false',
compact = params["compact"] == 'true', compact = params["compact"] == 'true',
view = params["mode"] == 'view'; view = params["mode"] == 'view';
(compact || view || notoolbar) && document.querySelector('.brendpanel > :nth-child(2)').remove();
if (compact || view) { if (compact || view) {
document.querySelector('.brendpanel > :nth-child(2)').remove(); if (notoolbar) {
document.querySelector('.brendpanel > :nth-child(1)').remove();
document.querySelector('.brendpanel').remove();
} else
document.querySelector('.brendpanel > :nth-child(1)').style.height = '32px'; document.querySelector('.brendpanel > :nth-child(1)').style.height = '32px';
} else if (notoolbar) {
document.querySelector('.brendpanel > :nth-child(1)').style.height = '28px';
} }
if (view) { if (view || notoolbar) {
document.querySelector('.sktoolbar').remove(); document.querySelector('.sktoolbar').remove();
} }

View file

@ -71,13 +71,13 @@
"Common.Controllers.ReviewChanges.textWidow": "Управление на вдовицата", "Common.Controllers.ReviewChanges.textWidow": "Управление на вдовицата",
"Common.define.chartData.textArea": "Площ", "Common.define.chartData.textArea": "Площ",
"Common.define.chartData.textBar": "Бар", "Common.define.chartData.textBar": "Бар",
"Common.define.chartData.textCharts": "Диаграми",
"Common.define.chartData.textColumn": "Колона", "Common.define.chartData.textColumn": "Колона",
"Common.define.chartData.textLine": "Линия", "Common.define.chartData.textLine": "Линия",
"Common.define.chartData.textPie": "Кръгова", "Common.define.chartData.textPie": "Кръгова",
"Common.define.chartData.textPoint": "XY (точкова)", "Common.define.chartData.textPoint": "XY (точкова)",
"Common.define.chartData.textStock": "Борсова", "Common.define.chartData.textStock": "Борсова",
"Common.define.chartData.textSurface": "Повърхност", "Common.define.chartData.textSurface": "Повърхност",
"Common.define.chartData.textCharts": "Диаграми",
"Common.UI.ComboBorderSize.txtNoBorders": "Няма граници", "Common.UI.ComboBorderSize.txtNoBorders": "Няма граници",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Няма граници", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Няма граници",
"Common.UI.ComboDataView.emptyComboText": "Няма стилове", "Common.UI.ComboDataView.emptyComboText": "Няма стилове",
@ -2075,7 +2075,6 @@
"DE.Views.Toolbar.tipFontColor": "Цвят на шрифта", "DE.Views.Toolbar.tipFontColor": "Цвят на шрифта",
"DE.Views.Toolbar.tipFontName": "Шрифт", "DE.Views.Toolbar.tipFontName": "Шрифт",
"DE.Views.Toolbar.tipFontSize": "Размер на шрифта", "DE.Views.Toolbar.tipFontSize": "Размер на шрифта",
"DE.Views.Toolbar.tipHAligh": "Хоризонтално подравняване",
"DE.Views.Toolbar.tipHighlightColor": "Маркирайте цвета", "DE.Views.Toolbar.tipHighlightColor": "Маркирайте цвета",
"DE.Views.Toolbar.tipImgAlign": "Подравняване на обекти", "DE.Views.Toolbar.tipImgAlign": "Подравняване на обекти",
"DE.Views.Toolbar.tipImgGroup": "Групови обекти", "DE.Views.Toolbar.tipImgGroup": "Групови обекти",

File diff suppressed because it is too large Load diff

View file

@ -78,6 +78,12 @@
"Common.define.chartData.textPoint": "Punkt (XY)", "Common.define.chartData.textPoint": "Punkt (XY)",
"Common.define.chartData.textStock": "Kurs", "Common.define.chartData.textStock": "Kurs",
"Common.define.chartData.textSurface": "Oberfläche", "Common.define.chartData.textSurface": "Oberfläche",
"Common.UI.Calendar.textApril": "April",
"Common.UI.Calendar.textAugust": "August",
"Common.UI.Calendar.textDecember": "Dezember",
"Common.UI.Calendar.textShortApril": "Apr",
"Common.UI.Calendar.textShortAugust": "Aug",
"Common.UI.Calendar.textShortDecember": "Dez",
"Common.UI.ComboBorderSize.txtNoBorders": "Keine Rahmen", "Common.UI.ComboBorderSize.txtNoBorders": "Keine Rahmen",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Keine Rahmen", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Keine Rahmen",
"Common.UI.ComboDataView.emptyComboText": "Keine Formate", "Common.UI.ComboDataView.emptyComboText": "Keine Formate",
@ -223,12 +229,15 @@
"Common.Views.RenameDialog.txtInvalidName": "Dieser Dateiname darf keines der folgenden Zeichen enthalten:", "Common.Views.RenameDialog.txtInvalidName": "Dieser Dateiname darf keines der folgenden Zeichen enthalten:",
"Common.Views.ReviewChanges.hintNext": "Zur nächsten Änderung", "Common.Views.ReviewChanges.hintNext": "Zur nächsten Änderung",
"Common.Views.ReviewChanges.hintPrev": "Zur vorherigen Änderung", "Common.Views.ReviewChanges.hintPrev": "Zur vorherigen Änderung",
"Common.Views.ReviewChanges.mniFromFile": "Dokument aus Datei",
"Common.Views.ReviewChanges.mniSettings": "Vergleichseinstellungen",
"Common.Views.ReviewChanges.strFast": "Schnell", "Common.Views.ReviewChanges.strFast": "Schnell",
"Common.Views.ReviewChanges.strFastDesc": "Echtzeit-Zusammenbearbeitung. Alle Änderungen werden automatisch gespeichert.", "Common.Views.ReviewChanges.strFastDesc": "Echtzeit-Zusammenbearbeitung. Alle Änderungen werden automatisch gespeichert.",
"Common.Views.ReviewChanges.strStrict": "Formal", "Common.Views.ReviewChanges.strStrict": "Formal",
"Common.Views.ReviewChanges.strStrictDesc": "Verwenden Sie die Schaltfläche \"Speichern\", um die von Ihnen und anderen vorgenommenen Änderungen zu synchronisieren.", "Common.Views.ReviewChanges.strStrictDesc": "Verwenden Sie die Schaltfläche \"Speichern\", um die von Ihnen und anderen vorgenommenen Änderungen zu synchronisieren.",
"Common.Views.ReviewChanges.tipAcceptCurrent": "Aktuelle Änderungen annehmen", "Common.Views.ReviewChanges.tipAcceptCurrent": "Aktuelle Änderungen annehmen",
"Common.Views.ReviewChanges.tipCoAuthMode": "Zusammen-Bearbeitungsmodus einstellen", "Common.Views.ReviewChanges.tipCoAuthMode": "Zusammen-Bearbeitungsmodus einstellen",
"Common.Views.ReviewChanges.tipCompare": "Das aktuelle Dokument mit einem anderen vergleichen",
"Common.Views.ReviewChanges.tipHistory": "Versionshistorie anzeigen", "Common.Views.ReviewChanges.tipHistory": "Versionshistorie anzeigen",
"Common.Views.ReviewChanges.tipRejectCurrent": "Aktuelle Änderungen ablehnen", "Common.Views.ReviewChanges.tipRejectCurrent": "Aktuelle Änderungen ablehnen",
"Common.Views.ReviewChanges.tipReview": "Nachverfolgen von Änderungen", "Common.Views.ReviewChanges.tipReview": "Nachverfolgen von Änderungen",
@ -243,6 +252,7 @@
"Common.Views.ReviewChanges.txtChat": "Chat", "Common.Views.ReviewChanges.txtChat": "Chat",
"Common.Views.ReviewChanges.txtClose": "Schließen", "Common.Views.ReviewChanges.txtClose": "Schließen",
"Common.Views.ReviewChanges.txtCoAuthMode": "Modus \"Gemeinsame Bearbeitung\"", "Common.Views.ReviewChanges.txtCoAuthMode": "Modus \"Gemeinsame Bearbeitung\"",
"Common.Views.ReviewChanges.txtCompare": "Vergleichen",
"Common.Views.ReviewChanges.txtDocLang": "Sprache", "Common.Views.ReviewChanges.txtDocLang": "Sprache",
"Common.Views.ReviewChanges.txtFinal": "Alle Änderungen werden übernommen (Vorschau)", "Common.Views.ReviewChanges.txtFinal": "Alle Änderungen werden übernommen (Vorschau)",
"Common.Views.ReviewChanges.txtFinalCap": "Endgültig", "Common.Views.ReviewChanges.txtFinalCap": "Endgültig",
@ -276,6 +286,8 @@
"Common.Views.ReviewPopover.textClose": "Schließen", "Common.Views.ReviewPopover.textClose": "Schließen",
"Common.Views.ReviewPopover.textEdit": "OK", "Common.Views.ReviewPopover.textEdit": "OK",
"Common.Views.ReviewPopover.textFollowMove": "Verschieben nachverfolgen", "Common.Views.ReviewPopover.textFollowMove": "Verschieben nachverfolgen",
"Common.Views.ReviewPopover.textMention": "+Erwähnung ermöglicht den Zugriff auf das Dokument und das Senden einer E-Mail",
"Common.Views.ReviewPopover.textMentionNotify": "+Erwähnung benachrichtigt den Benutzer per E-Mail",
"Common.Views.ReviewPopover.textOpenAgain": "Erneut öffnen", "Common.Views.ReviewPopover.textOpenAgain": "Erneut öffnen",
"Common.Views.ReviewPopover.textReply": "Antworten", "Common.Views.ReviewPopover.textReply": "Antworten",
"Common.Views.ReviewPopover.textResolve": "Lösen", "Common.Views.ReviewPopover.textResolve": "Lösen",
@ -413,6 +425,7 @@
"DE.Controllers.Main.txtButtons": "Buttons", "DE.Controllers.Main.txtButtons": "Buttons",
"DE.Controllers.Main.txtCallouts": "Legenden", "DE.Controllers.Main.txtCallouts": "Legenden",
"DE.Controllers.Main.txtCharts": "Diagramme", "DE.Controllers.Main.txtCharts": "Diagramme",
"DE.Controllers.Main.txtChoose": "Wählen Sie ein Element aus.",
"DE.Controllers.Main.txtCurrentDocument": "Aktuelles Dokument", "DE.Controllers.Main.txtCurrentDocument": "Aktuelles Dokument",
"DE.Controllers.Main.txtDiagramTitle": "Diagrammtitel", "DE.Controllers.Main.txtDiagramTitle": "Diagrammtitel",
"DE.Controllers.Main.txtEditingMode": "Bearbeitungsmodus festlegen...", "DE.Controllers.Main.txtEditingMode": "Bearbeitungsmodus festlegen...",
@ -611,6 +624,7 @@
"DE.Controllers.Main.txtShape_wedgeRectCallout": "Rechteckige Legende", "DE.Controllers.Main.txtShape_wedgeRectCallout": "Rechteckige Legende",
"DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Abgerundete rechteckige Legende", "DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Abgerundete rechteckige Legende",
"DE.Controllers.Main.txtStarsRibbons": "Sterne und Bänder", "DE.Controllers.Main.txtStarsRibbons": "Sterne und Bänder",
"DE.Controllers.Main.txtStyle_Caption": "Beschriftung",
"DE.Controllers.Main.txtStyle_footnote_text": "Fußnotentext", "DE.Controllers.Main.txtStyle_footnote_text": "Fußnotentext",
"DE.Controllers.Main.txtStyle_Heading_1": "Überschrift 1", "DE.Controllers.Main.txtStyle_Heading_1": "Überschrift 1",
"DE.Controllers.Main.txtStyle_Heading_2": "Überschrift 2", "DE.Controllers.Main.txtStyle_Heading_2": "Überschrift 2",
@ -1008,6 +1022,20 @@
"DE.Views.BookmarksDialog.textSort": "Sortieren nach", "DE.Views.BookmarksDialog.textSort": "Sortieren nach",
"DE.Views.BookmarksDialog.textTitle": "Lesezeichen", "DE.Views.BookmarksDialog.textTitle": "Lesezeichen",
"DE.Views.BookmarksDialog.txtInvalidName": "Der Name des Lesezeichens darf nur Buchstaben, Ziffern und Unterstriche enthalten und sollte mit dem Buchstaben beginnen", "DE.Views.BookmarksDialog.txtInvalidName": "Der Name des Lesezeichens darf nur Buchstaben, Ziffern und Unterstriche enthalten und sollte mit dem Buchstaben beginnen",
"DE.Views.CaptionDialog.textAdd": "Beschriftung hinzufügen",
"DE.Views.CaptionDialog.textAfter": "Nach",
"DE.Views.CaptionDialog.textBefore": "Vor ",
"DE.Views.CaptionDialog.textCaption": "Beschriftung",
"DE.Views.CaptionDialog.textChapter": "Kapitel beginnt mit Stil",
"DE.Views.CaptionDialog.textColon": "Doppelpunkt",
"DE.Views.CaptionDialog.textDash": "Gedankenstrich",
"DE.Views.CaptionDialog.textDelete": "Beschriftung löschen",
"DE.Views.CellsAddDialog.textCol": "Spalten",
"DE.Views.CellsAddDialog.textDown": "Unter dem Cursor",
"DE.Views.CellsAddDialog.textUp": "Über dem Cursor",
"DE.Views.CellsRemoveDialog.textCol": "Gesamte Spalte löschen",
"DE.Views.CellsRemoveDialog.textRow": "Ganze Zeile löschen",
"DE.Views.CellsRemoveDialog.textTitle": "Zellen löschen",
"DE.Views.ChartSettings.textAdvanced": "Erweiterte Einstellungen anzeigen", "DE.Views.ChartSettings.textAdvanced": "Erweiterte Einstellungen anzeigen",
"DE.Views.ChartSettings.textChartType": "Diagrammtyp ändern", "DE.Views.ChartSettings.textChartType": "Diagrammtyp ändern",
"DE.Views.ChartSettings.textEditData": "Daten ändern", "DE.Views.ChartSettings.textEditData": "Daten ändern",
@ -1026,10 +1054,20 @@
"DE.Views.ChartSettings.txtTight": "Passend", "DE.Views.ChartSettings.txtTight": "Passend",
"DE.Views.ChartSettings.txtTitle": "Diagramm", "DE.Views.ChartSettings.txtTitle": "Diagramm",
"DE.Views.ChartSettings.txtTopAndBottom": "Oben und unten", "DE.Views.ChartSettings.txtTopAndBottom": "Oben und unten",
"DE.Views.CompareSettingsDialog.textChar": "Zeichen-Ebene",
"DE.Views.CompareSettingsDialog.textTitle": "Vergleichseinstellungen",
"DE.Views.ControlSettingsDialog.textAdd": "Hinzufügen",
"DE.Views.ControlSettingsDialog.textAppearance": "Darstellung", "DE.Views.ControlSettingsDialog.textAppearance": "Darstellung",
"DE.Views.ControlSettingsDialog.textApplyAll": "Auf alle anwenden", "DE.Views.ControlSettingsDialog.textApplyAll": "Auf alle anwenden",
"DE.Views.ControlSettingsDialog.textBox": "Begrenzungsrahmen", "DE.Views.ControlSettingsDialog.textBox": "Begrenzungsrahmen",
"DE.Views.ControlSettingsDialog.textCheckbox": "Kontrollkästchen",
"DE.Views.ControlSettingsDialog.textChecked": "Häkchen-Symbol ",
"DE.Views.ControlSettingsDialog.textColor": "Farbe", "DE.Views.ControlSettingsDialog.textColor": "Farbe",
"DE.Views.ControlSettingsDialog.textCombobox": "Kombinationsfeld",
"DE.Views.ControlSettingsDialog.textDate": "Datumsformat",
"DE.Views.ControlSettingsDialog.textDelete": "Löschen",
"DE.Views.ControlSettingsDialog.textDisplayName": "Anzeigename",
"DE.Views.ControlSettingsDialog.textFormat": "Datum wie folgt anzeigen",
"DE.Views.ControlSettingsDialog.textLock": "Sperrung", "DE.Views.ControlSettingsDialog.textLock": "Sperrung",
"DE.Views.ControlSettingsDialog.textName": "Titel", "DE.Views.ControlSettingsDialog.textName": "Titel",
"DE.Views.ControlSettingsDialog.textNewColor": "Benutzerdefinierte Farbe", "DE.Views.ControlSettingsDialog.textNewColor": "Benutzerdefinierte Farbe",
@ -1038,6 +1076,7 @@
"DE.Views.ControlSettingsDialog.textSystemColor": "System", "DE.Views.ControlSettingsDialog.textSystemColor": "System",
"DE.Views.ControlSettingsDialog.textTag": "Tag", "DE.Views.ControlSettingsDialog.textTag": "Tag",
"DE.Views.ControlSettingsDialog.textTitle": "Einstellungen des Inhaltssteuerelements", "DE.Views.ControlSettingsDialog.textTitle": "Einstellungen des Inhaltssteuerelements",
"DE.Views.ControlSettingsDialog.tipChange": "Symbol ändern",
"DE.Views.ControlSettingsDialog.txtLockDelete": "Das Inhaltssteuerelement kann nicht gelöscht werden", "DE.Views.ControlSettingsDialog.txtLockDelete": "Das Inhaltssteuerelement kann nicht gelöscht werden",
"DE.Views.ControlSettingsDialog.txtLockEdit": "Der Inhalt kann nicht bearbeitet werden", "DE.Views.ControlSettingsDialog.txtLockEdit": "Der Inhalt kann nicht bearbeitet werden",
"DE.Views.CustomColumnsDialog.textColumns": "Anzahl von Spalten", "DE.Views.CustomColumnsDialog.textColumns": "Anzahl von Spalten",
@ -1117,6 +1156,7 @@
"DE.Views.DocumentHolder.textArrangeBackward": "Eine Ebene nach hinten", "DE.Views.DocumentHolder.textArrangeBackward": "Eine Ebene nach hinten",
"DE.Views.DocumentHolder.textArrangeForward": "Eine Ebene nach vorne", "DE.Views.DocumentHolder.textArrangeForward": "Eine Ebene nach vorne",
"DE.Views.DocumentHolder.textArrangeFront": "In den Vordergrund bringen", "DE.Views.DocumentHolder.textArrangeFront": "In den Vordergrund bringen",
"DE.Views.DocumentHolder.textCells": "Zellen",
"DE.Views.DocumentHolder.textContentControls": "Inhaltssteuerelement", "DE.Views.DocumentHolder.textContentControls": "Inhaltssteuerelement",
"DE.Views.DocumentHolder.textContinueNumbering": "Nummerierung fortführen", "DE.Views.DocumentHolder.textContinueNumbering": "Nummerierung fortführen",
"DE.Views.DocumentHolder.textCopy": "Kopieren", "DE.Views.DocumentHolder.textCopy": "Kopieren",
@ -1164,6 +1204,7 @@
"DE.Views.DocumentHolder.textUpdateTOC": "Das Inhaltsverzeichnis aktualisieren", "DE.Views.DocumentHolder.textUpdateTOC": "Das Inhaltsverzeichnis aktualisieren",
"DE.Views.DocumentHolder.textWrap": "Textumbruch", "DE.Views.DocumentHolder.textWrap": "Textumbruch",
"DE.Views.DocumentHolder.tipIsLocked": "Dieses Element wird gerade von einem anderen Benutzer bearbeitet.", "DE.Views.DocumentHolder.tipIsLocked": "Dieses Element wird gerade von einem anderen Benutzer bearbeitet.",
"DE.Views.DocumentHolder.toDictionaryText": "Zum Wörterbuch hinzufügen",
"DE.Views.DocumentHolder.txtAddBottom": "Unterer Rand hinzufügen", "DE.Views.DocumentHolder.txtAddBottom": "Unterer Rand hinzufügen",
"DE.Views.DocumentHolder.txtAddFractionBar": "Bruchstrich hinzufügen", "DE.Views.DocumentHolder.txtAddFractionBar": "Bruchstrich hinzufügen",
"DE.Views.DocumentHolder.txtAddHor": "Horizontale Linie einfügen", "DE.Views.DocumentHolder.txtAddHor": "Horizontale Linie einfügen",
@ -1188,6 +1229,7 @@
"DE.Views.DocumentHolder.txtDeleteRadical": "Wurzel löschen", "DE.Views.DocumentHolder.txtDeleteRadical": "Wurzel löschen",
"DE.Views.DocumentHolder.txtDistribHor": "Horizontal verteilen", "DE.Views.DocumentHolder.txtDistribHor": "Horizontal verteilen",
"DE.Views.DocumentHolder.txtDistribVert": "Vertikal verteilen", "DE.Views.DocumentHolder.txtDistribVert": "Vertikal verteilen",
"DE.Views.DocumentHolder.txtEmpty": "(Leer)",
"DE.Views.DocumentHolder.txtFractionLinear": "Zu linearer Bruchrechnung ändern", "DE.Views.DocumentHolder.txtFractionLinear": "Zu linearer Bruchrechnung ändern",
"DE.Views.DocumentHolder.txtFractionSkewed": "Zu verzerrter Bruchrechnung ändern", "DE.Views.DocumentHolder.txtFractionSkewed": "Zu verzerrter Bruchrechnung ändern",
"DE.Views.DocumentHolder.txtFractionStacked": "Zu verzerrter Bruchrechnung ändern", "DE.Views.DocumentHolder.txtFractionStacked": "Zu verzerrter Bruchrechnung ändern",
@ -1293,6 +1335,9 @@
"DE.Views.DropcapSettingsAdvanced.textWidth": "Breite", "DE.Views.DropcapSettingsAdvanced.textWidth": "Breite",
"DE.Views.DropcapSettingsAdvanced.tipFontName": "Schriftart", "DE.Views.DropcapSettingsAdvanced.tipFontName": "Schriftart",
"DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Keine Rahmen", "DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Keine Rahmen",
"DE.Views.EditListItemDialog.textDisplayName": "Anzeigename",
"DE.Views.EditListItemDialog.textNameError": "Der Anzeigename darf nicht leer sein.",
"DE.Views.EditListItemDialog.textValueError": "Ein Element mit demselben Wert ist bereits vorhanden.",
"DE.Views.FileMenu.btnBackCaption": "Dateispeicherort öffnen", "DE.Views.FileMenu.btnBackCaption": "Dateispeicherort öffnen",
"DE.Views.FileMenu.btnCloseMenuCaption": "Menü schließen", "DE.Views.FileMenu.btnCloseMenuCaption": "Menü schließen",
"DE.Views.FileMenu.btnCreateNewCaption": "Neues erstellen", "DE.Views.FileMenu.btnCreateNewCaption": "Neues erstellen",
@ -1317,9 +1362,14 @@
"DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Erstellen Sie ein leeres Textdokument, das Sie nach seiner Erstellung bei der Bearbeitung formatieren können. Oder wählen Sie eine der Vorlagen, um ein Dokument eines bestimmten Typs (für einen bestimmten Zweck) zu erstellen, wo einige Stile bereits angewandt sind.", "DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Erstellen Sie ein leeres Textdokument, das Sie nach seiner Erstellung bei der Bearbeitung formatieren können. Oder wählen Sie eine der Vorlagen, um ein Dokument eines bestimmten Typs (für einen bestimmten Zweck) zu erstellen, wo einige Stile bereits angewandt sind.",
"DE.Views.FileMenuPanels.CreateNew.newDocumentText": "Neues Textdokument", "DE.Views.FileMenuPanels.CreateNew.newDocumentText": "Neues Textdokument",
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Es gibt keine Vorlagen", "DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Es gibt keine Vorlagen",
"DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Anwenden",
"DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Autor hinzufügen",
"DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Text hinzufügen",
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Anwendung", "DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Anwendung",
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Verfasser", "DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Verfasser",
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Zugriffsrechte ändern", "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Zugriffsrechte ändern",
"DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Kommentar",
"DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Erstellt",
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Ladevorgang...", "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Ladevorgang...",
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Seiten", "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Seiten",
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Absätze", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Absätze",
@ -1368,6 +1418,7 @@
"DE.Views.FileMenuPanels.Settings.textAlignGuides": "Ausrichtungslinien", "DE.Views.FileMenuPanels.Settings.textAlignGuides": "Ausrichtungslinien",
"DE.Views.FileMenuPanels.Settings.textAutoRecover": "Autowiederherstellen", "DE.Views.FileMenuPanels.Settings.textAutoRecover": "Autowiederherstellen",
"DE.Views.FileMenuPanels.Settings.textAutoSave": "Automatisch speichern", "DE.Views.FileMenuPanels.Settings.textAutoSave": "Automatisch speichern",
"DE.Views.FileMenuPanels.Settings.textCompatible": "Kompatibilität",
"DE.Views.FileMenuPanels.Settings.textDisabled": "Deaktiviert", "DE.Views.FileMenuPanels.Settings.textDisabled": "Deaktiviert",
"DE.Views.FileMenuPanels.Settings.textForceSave": "Auf dem Server speichern", "DE.Views.FileMenuPanels.Settings.textForceSave": "Auf dem Server speichern",
"DE.Views.FileMenuPanels.Settings.textMinute": "Jede Minute", "DE.Views.FileMenuPanels.Settings.textMinute": "Jede Minute",
@ -1529,6 +1580,7 @@
"DE.Views.LeftMenu.txtDeveloper": "ENTWICKLERMODUS", "DE.Views.LeftMenu.txtDeveloper": "ENTWICKLERMODUS",
"DE.Views.LeftMenu.txtTrial": "Trial-Modus", "DE.Views.LeftMenu.txtTrial": "Trial-Modus",
"DE.Views.Links.capBtnBookmarks": "Lesezeichen", "DE.Views.Links.capBtnBookmarks": "Lesezeichen",
"DE.Views.Links.capBtnCaption": "Beschriftung",
"DE.Views.Links.capBtnContentsUpdate": "Aktualisierung", "DE.Views.Links.capBtnContentsUpdate": "Aktualisierung",
"DE.Views.Links.capBtnInsContents": "Inhaltsverzeichnis", "DE.Views.Links.capBtnInsContents": "Inhaltsverzeichnis",
"DE.Views.Links.capBtnInsFootnote": "Fußnote", "DE.Views.Links.capBtnInsFootnote": "Fußnote",
@ -1547,6 +1599,12 @@
"DE.Views.Links.tipContentsUpdate": "Inhaltsverzeichnis aktualisieren", "DE.Views.Links.tipContentsUpdate": "Inhaltsverzeichnis aktualisieren",
"DE.Views.Links.tipInsertHyperlink": "Hyperlink hinzufügen", "DE.Views.Links.tipInsertHyperlink": "Hyperlink hinzufügen",
"DE.Views.Links.tipNotes": "Fußnoten einfügen oder bearbeiten", "DE.Views.Links.tipNotes": "Fußnoten einfügen oder bearbeiten",
"DE.Views.ListSettingsDialog.textAuto": "Automatisch",
"DE.Views.ListSettingsDialog.textCenter": "Zentriert",
"DE.Views.ListSettingsDialog.textNewColor": "Neue benutzerdefinierte Farbe hinzufügen",
"DE.Views.ListSettingsDialog.txtAlign": "Ausrichtung",
"DE.Views.ListSettingsDialog.txtBullet": "Aufzählungszeichen",
"DE.Views.ListSettingsDialog.txtColor": "Farbe",
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
"DE.Views.MailMergeEmailDlg.okButtonText": "Senden", "DE.Views.MailMergeEmailDlg.okButtonText": "Senden",
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Thema", "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Thema",
@ -1656,6 +1714,8 @@
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Doppeltes Durchstreichen", "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Doppeltes Durchstreichen",
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Links", "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Links",
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Rechts", "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Rechts",
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Nach",
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Vor ",
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Absatz zusammenhalten", "DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Absatz zusammenhalten",
"DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Absätze nicht trennen", "DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Absätze nicht trennen",
"DE.Views.ParagraphSettingsAdvanced.strMargins": "Auffüllen", "DE.Views.ParagraphSettingsAdvanced.strMargins": "Auffüllen",
@ -1669,11 +1729,14 @@
"DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Hochgestellt", "DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Hochgestellt",
"DE.Views.ParagraphSettingsAdvanced.strTabs": "Tabulator", "DE.Views.ParagraphSettingsAdvanced.strTabs": "Tabulator",
"DE.Views.ParagraphSettingsAdvanced.textAlign": "Ausrichtung", "DE.Views.ParagraphSettingsAdvanced.textAlign": "Ausrichtung",
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Mindestens",
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Hintergrundfarbe", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Hintergrundfarbe",
"DE.Views.ParagraphSettingsAdvanced.textBodyText": "Basistext",
"DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Rahmenfarbe", "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Rahmenfarbe",
"DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Klicken Sie aufs Diagramm oder nutzen Sie die Buttons, um Umrandungen zu wählen und den gewählten Stil anzuwenden", "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Klicken Sie aufs Diagramm oder nutzen Sie die Buttons, um Umrandungen zu wählen und den gewählten Stil anzuwenden",
"DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Rahmenstärke", "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Rahmenstärke",
"DE.Views.ParagraphSettingsAdvanced.textBottom": "Unten", "DE.Views.ParagraphSettingsAdvanced.textBottom": "Unten",
"DE.Views.ParagraphSettingsAdvanced.textCentered": "Zentriert",
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Zeichenabstand", "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Zeichenabstand",
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Standardregisterkarte", "DE.Views.ParagraphSettingsAdvanced.textDefault": "Standardregisterkarte",
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Effekte", "DE.Views.ParagraphSettingsAdvanced.textEffects": "Effekte",
@ -1681,6 +1744,7 @@
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Links", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Links",
"DE.Views.ParagraphSettingsAdvanced.textNewColor": "Benutzerdefinierte Farbe", "DE.Views.ParagraphSettingsAdvanced.textNewColor": "Benutzerdefinierte Farbe",
"DE.Views.ParagraphSettingsAdvanced.textNone": "Kein", "DE.Views.ParagraphSettingsAdvanced.textNone": "Kein",
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(Keiner)",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Position", "DE.Views.ParagraphSettingsAdvanced.textPosition": "Position",
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Löschen", "DE.Views.ParagraphSettingsAdvanced.textRemove": "Löschen",
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Alle löschen", "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Alle löschen",
@ -1701,6 +1765,7 @@
"DE.Views.ParagraphSettingsAdvanced.tipOuter": "Nur äußere Rahmenlinie festlegen", "DE.Views.ParagraphSettingsAdvanced.tipOuter": "Nur äußere Rahmenlinie festlegen",
"DE.Views.ParagraphSettingsAdvanced.tipRight": "Nur rechte Rahmenlinie festlegen", "DE.Views.ParagraphSettingsAdvanced.tipRight": "Nur rechte Rahmenlinie festlegen",
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Nur obere Rahmenlinie festlegen", "DE.Views.ParagraphSettingsAdvanced.tipTop": "Nur obere Rahmenlinie festlegen",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automatisch",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Keine Rahmen", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Keine Rahmen",
"DE.Views.RightMenu.txtChartSettings": "Diagrammeinstellungen", "DE.Views.RightMenu.txtChartSettings": "Diagrammeinstellungen",
"DE.Views.RightMenu.txtHeaderFooterSettings": "Kopf- und Fußzeileneinstellungen", "DE.Views.RightMenu.txtHeaderFooterSettings": "Kopf- und Fußzeileneinstellungen",
@ -1868,6 +1933,9 @@
"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.txtNoBorders": "Keine Rahmen", "DE.Views.TableSettings.txtNoBorders": "Keine Rahmen",
"DE.Views.TableSettings.txtTable_Accent": "Akzent",
"DE.Views.TableSettings.txtTable_Colorful": "Farbig",
"DE.Views.TableSettings.txtTable_Dark": "Dunkel",
"DE.Views.TableSettingsAdvanced.textAlign": "Ausrichtung", "DE.Views.TableSettingsAdvanced.textAlign": "Ausrichtung",
"DE.Views.TableSettingsAdvanced.textAlignment": "Ausrichtung", "DE.Views.TableSettingsAdvanced.textAlignment": "Ausrichtung",
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Abstand zwischen Zellen zulassen", "DE.Views.TableSettingsAdvanced.textAllowSpacing": "Abstand zwischen Zellen zulassen",
@ -1961,6 +2029,7 @@
"DE.Views.TextArtSettings.textTemplate": "Vorlage", "DE.Views.TextArtSettings.textTemplate": "Vorlage",
"DE.Views.TextArtSettings.textTransform": "Transformieren", "DE.Views.TextArtSettings.textTransform": "Transformieren",
"DE.Views.TextArtSettings.txtNoBorders": "Keine Linie", "DE.Views.TextArtSettings.txtNoBorders": "Keine Linie",
"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",
@ -1998,13 +2067,17 @@
"DE.Views.Toolbar.textAutoColor": "Automatisch", "DE.Views.Toolbar.textAutoColor": "Automatisch",
"DE.Views.Toolbar.textBold": "Fett", "DE.Views.Toolbar.textBold": "Fett",
"DE.Views.Toolbar.textBottom": "Unten: ", "DE.Views.Toolbar.textBottom": "Unten: ",
"DE.Views.Toolbar.textCheckboxControl": "Kontrollkästchen",
"DE.Views.Toolbar.textColumnsCustom": "Benutzerdefinierte Spalten", "DE.Views.Toolbar.textColumnsCustom": "Benutzerdefinierte Spalten",
"DE.Views.Toolbar.textColumnsLeft": "Links", "DE.Views.Toolbar.textColumnsLeft": "Links",
"DE.Views.Toolbar.textColumnsOne": "Ein", "DE.Views.Toolbar.textColumnsOne": "Ein",
"DE.Views.Toolbar.textColumnsRight": "Rechts", "DE.Views.Toolbar.textColumnsRight": "Rechts",
"DE.Views.Toolbar.textColumnsThree": "Drei", "DE.Views.Toolbar.textColumnsThree": "Drei",
"DE.Views.Toolbar.textColumnsTwo": "Zwei", "DE.Views.Toolbar.textColumnsTwo": "Zwei",
"DE.Views.Toolbar.textComboboxControl": "Kombinationsfeld",
"DE.Views.Toolbar.textContPage": "Fortlaufende Seite", "DE.Views.Toolbar.textContPage": "Fortlaufende Seite",
"DE.Views.Toolbar.textDateControl": "Datum",
"DE.Views.Toolbar.textEditWatermark": "Benutzerdefiniertes Wasserzeichen",
"DE.Views.Toolbar.textEvenPage": "Gerade Seite", "DE.Views.Toolbar.textEvenPage": "Gerade Seite",
"DE.Views.Toolbar.textInMargin": "Im Rand", "DE.Views.Toolbar.textInMargin": "Im Rand",
"DE.Views.Toolbar.textInsColumnBreak": "Spaltenumbruch einfügen", "DE.Views.Toolbar.textInsColumnBreak": "Spaltenumbruch einfügen",
@ -2075,7 +2148,6 @@
"DE.Views.Toolbar.tipFontColor": "Schriftfarbe", "DE.Views.Toolbar.tipFontColor": "Schriftfarbe",
"DE.Views.Toolbar.tipFontName": "Schriftart", "DE.Views.Toolbar.tipFontName": "Schriftart",
"DE.Views.Toolbar.tipFontSize": "Schriftgrad", "DE.Views.Toolbar.tipFontSize": "Schriftgrad",
"DE.Views.Toolbar.tipHAligh": "Horizontale Ausrichtung",
"DE.Views.Toolbar.tipHighlightColor": "Texthervorhebungsfarbe", "DE.Views.Toolbar.tipHighlightColor": "Texthervorhebungsfarbe",
"DE.Views.Toolbar.tipImgAlign": "Objekte ausrichten", "DE.Views.Toolbar.tipImgAlign": "Objekte ausrichten",
"DE.Views.Toolbar.tipImgGroup": "Objekte gruppieren", "DE.Views.Toolbar.tipImgGroup": "Objekte gruppieren",
@ -2136,5 +2208,9 @@
"DE.Views.Toolbar.txtScheme6": "Deimos", "DE.Views.Toolbar.txtScheme6": "Deimos",
"DE.Views.Toolbar.txtScheme7": "Dactylos", "DE.Views.Toolbar.txtScheme7": "Dactylos",
"DE.Views.Toolbar.txtScheme8": "Bewegungsart", "DE.Views.Toolbar.txtScheme8": "Bewegungsart",
"DE.Views.Toolbar.txtScheme9": "Phoebe" "DE.Views.Toolbar.txtScheme9": "Phoebe",
"DE.Views.WatermarkSettingsDialog.textAuto": "Automatisch",
"DE.Views.WatermarkSettingsDialog.textBold": "Fett",
"DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonal",
"DE.Views.WatermarkSettingsDialog.textNewColor": "Neue benutzerdefinierte Farbe hinzufügen"
} }

View file

@ -10,6 +10,7 @@
"Common.Controllers.ExternalMergeEditor.warningText": "The object is disabled because it is being edited by another user.", "Common.Controllers.ExternalMergeEditor.warningText": "The object is disabled because it is being edited by another user.",
"Common.Controllers.ExternalMergeEditor.warningTitle": "Warning", "Common.Controllers.ExternalMergeEditor.warningTitle": "Warning",
"Common.Controllers.History.notcriticalErrorTitle": "Warning", "Common.Controllers.History.notcriticalErrorTitle": "Warning",
"Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "In order to compare documents all the tracked changes in them will be considered to have been accepted. Do you want to continue?",
"Common.Controllers.ReviewChanges.textAtLeast": "at least", "Common.Controllers.ReviewChanges.textAtLeast": "at least",
"Common.Controllers.ReviewChanges.textAuto": "auto", "Common.Controllers.ReviewChanges.textAuto": "auto",
"Common.Controllers.ReviewChanges.textBaseline": "Baseline", "Common.Controllers.ReviewChanges.textBaseline": "Baseline",
@ -68,9 +69,8 @@
"Common.Controllers.ReviewChanges.textTableRowsDel": "<b>Table Rows Deleted<b/>", "Common.Controllers.ReviewChanges.textTableRowsDel": "<b>Table Rows Deleted<b/>",
"Common.Controllers.ReviewChanges.textTabs": "Change tabs", "Common.Controllers.ReviewChanges.textTabs": "Change tabs",
"Common.Controllers.ReviewChanges.textUnderline": "Underline", "Common.Controllers.ReviewChanges.textUnderline": "Underline",
"Common.Controllers.ReviewChanges.textWidow": "Widow control",
"Common.Controllers.ReviewChanges.textUrl": "Paste a document URL", "Common.Controllers.ReviewChanges.textUrl": "Paste a document URL",
"Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "In order to compare documents all the tracked changes in them will be considered to have been accepted. Do you want to continue?", "Common.Controllers.ReviewChanges.textWidow": "Widow control",
"Common.define.chartData.textArea": "Area", "Common.define.chartData.textArea": "Area",
"Common.define.chartData.textBar": "Bar", "Common.define.chartData.textBar": "Bar",
"Common.define.chartData.textCharts": "Charts", "Common.define.chartData.textCharts": "Charts",
@ -80,6 +80,39 @@
"Common.define.chartData.textPoint": "XY (Scatter)", "Common.define.chartData.textPoint": "XY (Scatter)",
"Common.define.chartData.textStock": "Stock", "Common.define.chartData.textStock": "Stock",
"Common.define.chartData.textSurface": "Surface", "Common.define.chartData.textSurface": "Surface",
"Common.UI.Calendar.textApril": "April",
"Common.UI.Calendar.textAugust": "August",
"Common.UI.Calendar.textDecember": "December",
"Common.UI.Calendar.textFebruary": "February",
"Common.UI.Calendar.textJanuary": "January",
"Common.UI.Calendar.textJuly": "July",
"Common.UI.Calendar.textJune": "June",
"Common.UI.Calendar.textMarch": "March",
"Common.UI.Calendar.textMay": "May",
"Common.UI.Calendar.textMonths": "Months",
"Common.UI.Calendar.textNovember": "November",
"Common.UI.Calendar.textOctober": "October",
"Common.UI.Calendar.textSeptember": "September",
"Common.UI.Calendar.textShortApril": "Apr",
"Common.UI.Calendar.textShortAugust": "Aug",
"Common.UI.Calendar.textShortDecember": "Dec",
"Common.UI.Calendar.textShortFebruary": "Feb",
"Common.UI.Calendar.textShortFriday": "Fr",
"Common.UI.Calendar.textShortJanuary": "Jan",
"Common.UI.Calendar.textShortJuly": "Jul",
"Common.UI.Calendar.textShortJune": "Jun",
"Common.UI.Calendar.textShortMarch": "Mar",
"Common.UI.Calendar.textShortMay": "May",
"Common.UI.Calendar.textShortMonday": "Mo",
"Common.UI.Calendar.textShortNovember": "Nov",
"Common.UI.Calendar.textShortOctober": "Oct",
"Common.UI.Calendar.textShortSaturday": "Sa",
"Common.UI.Calendar.textShortSeptember": "Sep",
"Common.UI.Calendar.textShortSunday": "Su",
"Common.UI.Calendar.textShortThursday": "Th",
"Common.UI.Calendar.textShortTuesday": "Tu",
"Common.UI.Calendar.textShortWednesday": "We",
"Common.UI.Calendar.textYears": "Years",
"Common.UI.ComboBorderSize.txtNoBorders": "No borders", "Common.UI.ComboBorderSize.txtNoBorders": "No borders",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "No borders", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "No borders",
"Common.UI.ComboDataView.emptyComboText": "No styles", "Common.UI.ComboDataView.emptyComboText": "No styles",
@ -113,39 +146,6 @@
"Common.UI.Window.textInformation": "Information", "Common.UI.Window.textInformation": "Information",
"Common.UI.Window.textWarning": "Warning", "Common.UI.Window.textWarning": "Warning",
"Common.UI.Window.yesButtonText": "Yes", "Common.UI.Window.yesButtonText": "Yes",
"Common.UI.Calendar.textJanuary": "January",
"Common.UI.Calendar.textFebruary": "February",
"Common.UI.Calendar.textMarch": "March",
"Common.UI.Calendar.textApril": "April",
"Common.UI.Calendar.textMay": "May",
"Common.UI.Calendar.textJune": "June",
"Common.UI.Calendar.textJuly": "July",
"Common.UI.Calendar.textAugust": "August",
"Common.UI.Calendar.textSeptember": "September",
"Common.UI.Calendar.textOctober": "October",
"Common.UI.Calendar.textNovember": "November",
"Common.UI.Calendar.textDecember": "December",
"Common.UI.Calendar.textShortJanuary": "Jan",
"Common.UI.Calendar.textShortFebruary": "Feb",
"Common.UI.Calendar.textShortMarch": "Mar",
"Common.UI.Calendar.textShortApril": "Apr",
"Common.UI.Calendar.textShortMay": "May",
"Common.UI.Calendar.textShortJune": "Jun",
"Common.UI.Calendar.textShortJuly": "Jul",
"Common.UI.Calendar.textShortAugust": "Aug",
"Common.UI.Calendar.textShortSeptember": "Sep",
"Common.UI.Calendar.textShortOctober": "Oct",
"Common.UI.Calendar.textShortNovember": "Nov",
"Common.UI.Calendar.textShortDecember": "Dec",
"Common.UI.Calendar.textShortSunday": "Su",
"Common.UI.Calendar.textShortMonday": "Mo",
"Common.UI.Calendar.textShortTuesday": "Tu",
"Common.UI.Calendar.textShortWednesday": "We",
"Common.UI.Calendar.textShortThursday": "Th",
"Common.UI.Calendar.textShortFriday": "Fr",
"Common.UI.Calendar.textShortSaturday": "Sa",
"Common.UI.Calendar.textMonths": "Months",
"Common.UI.Calendar.textYears": "Years",
"Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtCm": "cm",
"Common.Utils.Metric.txtPt": "pt", "Common.Utils.Metric.txtPt": "pt",
"Common.Views.About.txtAddress": "address: ", "Common.Views.About.txtAddress": "address: ",
@ -185,7 +185,7 @@
"Common.Views.ExternalMergeEditor.textClose": "Close", "Common.Views.ExternalMergeEditor.textClose": "Close",
"Common.Views.ExternalMergeEditor.textSave": "Save & Exit", "Common.Views.ExternalMergeEditor.textSave": "Save & Exit",
"Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recipients", "Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recipients",
"Common.Views.Header.labelCoUsersDescr": "Document is currently being edited by several users.", "Common.Views.Header.labelCoUsersDescr": "Users who are editing the file:",
"Common.Views.Header.textAdvSettings": "Advanced settings", "Common.Views.Header.textAdvSettings": "Advanced settings",
"Common.Views.Header.textBack": "Open file location", "Common.Views.Header.textBack": "Open file location",
"Common.Views.Header.textCompactView": "Hide Toolbar", "Common.Views.Header.textCompactView": "Hide Toolbar",
@ -259,6 +259,10 @@
"Common.Views.RenameDialog.txtInvalidName": "The file name cannot contain any of the following characters: ", "Common.Views.RenameDialog.txtInvalidName": "The file name cannot contain any of the following characters: ",
"Common.Views.ReviewChanges.hintNext": "To next change", "Common.Views.ReviewChanges.hintNext": "To next change",
"Common.Views.ReviewChanges.hintPrev": "To previous change", "Common.Views.ReviewChanges.hintPrev": "To previous change",
"Common.Views.ReviewChanges.mniFromFile": "Document from File",
"Common.Views.ReviewChanges.mniFromStorage": "Document from Storage",
"Common.Views.ReviewChanges.mniFromUrl": "Document from URL",
"Common.Views.ReviewChanges.mniSettings": "Comparison Settings",
"Common.Views.ReviewChanges.strFast": "Fast", "Common.Views.ReviewChanges.strFast": "Fast",
"Common.Views.ReviewChanges.strFastDesc": "Real-time co-editing. All changes are saved automatically.", "Common.Views.ReviewChanges.strFastDesc": "Real-time co-editing. All changes are saved automatically.",
"Common.Views.ReviewChanges.strStrict": "Strict", "Common.Views.ReviewChanges.strStrict": "Strict",
@ -267,6 +271,7 @@
"Common.Views.ReviewChanges.tipCoAuthMode": "Set co-editing mode", "Common.Views.ReviewChanges.tipCoAuthMode": "Set co-editing mode",
"Common.Views.ReviewChanges.tipCommentRem": "Remove comments", "Common.Views.ReviewChanges.tipCommentRem": "Remove comments",
"Common.Views.ReviewChanges.tipCommentRemCurrent": "Remove current comments", "Common.Views.ReviewChanges.tipCommentRemCurrent": "Remove current comments",
"Common.Views.ReviewChanges.tipCompare": "Compare current document with another one",
"Common.Views.ReviewChanges.tipHistory": "Show version history", "Common.Views.ReviewChanges.tipHistory": "Show version history",
"Common.Views.ReviewChanges.tipRejectCurrent": "Reject current change", "Common.Views.ReviewChanges.tipRejectCurrent": "Reject current change",
"Common.Views.ReviewChanges.tipReview": "Track changes", "Common.Views.ReviewChanges.tipReview": "Track changes",
@ -286,6 +291,7 @@
"Common.Views.ReviewChanges.txtCommentRemMy": "Remove My Comments", "Common.Views.ReviewChanges.txtCommentRemMy": "Remove My Comments",
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Remove My Current Comments", "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Remove My Current Comments",
"Common.Views.ReviewChanges.txtCommentRemove": "Remove", "Common.Views.ReviewChanges.txtCommentRemove": "Remove",
"Common.Views.ReviewChanges.txtCompare": "Compare",
"Common.Views.ReviewChanges.txtDocLang": "Language", "Common.Views.ReviewChanges.txtDocLang": "Language",
"Common.Views.ReviewChanges.txtFinal": "All changes accepted (Preview)", "Common.Views.ReviewChanges.txtFinal": "All changes accepted (Preview)",
"Common.Views.ReviewChanges.txtFinalCap": "Final", "Common.Views.ReviewChanges.txtFinalCap": "Final",
@ -304,12 +310,6 @@
"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.ReviewChanges.txtCompare": "Compare",
"Common.Views.ReviewChanges.tipCompare": "Compare current document with another one",
"Common.Views.ReviewChanges.mniFromFile": "Document from File",
"Common.Views.ReviewChanges.mniFromUrl": "Document from URL",
"Common.Views.ReviewChanges.mniFromStorage": "Document from Storage",
"Common.Views.ReviewChanges.mniSettings": "Comparison Settings",
"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",
@ -326,6 +326,7 @@
"Common.Views.ReviewPopover.textEdit": "OK", "Common.Views.ReviewPopover.textEdit": "OK",
"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.textOpenAgain": "Open Again", "Common.Views.ReviewPopover.textOpenAgain": "Open Again",
"Common.Views.ReviewPopover.textReply": "Reply", "Common.Views.ReviewPopover.textReply": "Reply",
"Common.Views.ReviewPopover.textResolve": "Resolve", "Common.Views.ReviewPopover.textResolve": "Resolve",
@ -391,6 +392,7 @@
"DE.Controllers.Main.errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", "DE.Controllers.Main.errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.",
"DE.Controllers.Main.errorDataRange": "Incorrect data range.", "DE.Controllers.Main.errorDataRange": "Incorrect data range.",
"DE.Controllers.Main.errorDefaultMessage": "Error code: %1", "DE.Controllers.Main.errorDefaultMessage": "Error code: %1",
"DE.Controllers.Main.errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
"DE.Controllers.Main.errorEditingDownloadas": "An error occurred during the work with the document.<br>Use the 'Download as...' option to save the file backup copy to your computer hard drive.", "DE.Controllers.Main.errorEditingDownloadas": "An error occurred during the work with the document.<br>Use the 'Download as...' option to save the file backup copy to your computer hard drive.",
"DE.Controllers.Main.errorEditingSaveas": "An error occurred during the work with the document.<br>Use the 'Save as...' option to save the file backup copy to your computer hard drive.", "DE.Controllers.Main.errorEditingSaveas": "An error occurred during the work with the document.<br>Use the 'Save as...' option to save the file backup copy to your computer hard drive.",
"DE.Controllers.Main.errorEmailClient": "No email client could be found.", "DE.Controllers.Main.errorEmailClient": "No email client could be found.",
@ -399,7 +401,7 @@
"DE.Controllers.Main.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", "DE.Controllers.Main.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.",
"DE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor", "DE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor",
"DE.Controllers.Main.errorKeyExpire": "Key descriptor expired", "DE.Controllers.Main.errorKeyExpire": "Key descriptor expired",
"DE.Controllers.Main.errorMailMergeLoadFile": "Loading failed", "DE.Controllers.Main.errorMailMergeLoadFile": "Loading the document failed. Please select a different file.",
"DE.Controllers.Main.errorMailMergeSaveFile": "Merge failed.", "DE.Controllers.Main.errorMailMergeSaveFile": "Merge failed.",
"DE.Controllers.Main.errorProcessSaveResult": "Saving failed.", "DE.Controllers.Main.errorProcessSaveResult": "Saving failed.",
"DE.Controllers.Main.errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", "DE.Controllers.Main.errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
@ -471,6 +473,7 @@
"DE.Controllers.Main.txtButtons": "Buttons", "DE.Controllers.Main.txtButtons": "Buttons",
"DE.Controllers.Main.txtCallouts": "Callouts", "DE.Controllers.Main.txtCallouts": "Callouts",
"DE.Controllers.Main.txtCharts": "Charts", "DE.Controllers.Main.txtCharts": "Charts",
"DE.Controllers.Main.txtChoose": "Choose an item.",
"DE.Controllers.Main.txtCurrentDocument": "Current Document", "DE.Controllers.Main.txtCurrentDocument": "Current Document",
"DE.Controllers.Main.txtDiagramTitle": "Chart Title", "DE.Controllers.Main.txtDiagramTitle": "Chart Title",
"DE.Controllers.Main.txtEditingMode": "Set editing mode...", "DE.Controllers.Main.txtEditingMode": "Set editing mode...",
@ -490,7 +493,7 @@
"DE.Controllers.Main.txtMissArg": "Missing Argument", "DE.Controllers.Main.txtMissArg": "Missing Argument",
"DE.Controllers.Main.txtMissOperator": "Missing Operator", "DE.Controllers.Main.txtMissOperator": "Missing Operator",
"DE.Controllers.Main.txtNeedSynchronize": "You have updates", "DE.Controllers.Main.txtNeedSynchronize": "You have updates",
"DE.Controllers.Main.txtNoTableOfContents": "No table of contents entries found.", "DE.Controllers.Main.txtNoTableOfContents": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents.",
"DE.Controllers.Main.txtNoText": "Error! No text of specified style in document.", "DE.Controllers.Main.txtNoText": "Error! No text of specified style in document.",
"DE.Controllers.Main.txtNotInTable": "Is Not In Table", "DE.Controllers.Main.txtNotInTable": "Is Not In Table",
"DE.Controllers.Main.txtNotValidBookmark": "Error! Not a valid bookmark self-reference.", "DE.Controllers.Main.txtNotValidBookmark": "Error! Not a valid bookmark self-reference.",
@ -672,6 +675,7 @@
"DE.Controllers.Main.txtShape_wedgeRectCallout": "Rectangular Callout", "DE.Controllers.Main.txtShape_wedgeRectCallout": "Rectangular Callout",
"DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Rounded Rectangular Callout", "DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Rounded Rectangular Callout",
"DE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons", "DE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons",
"DE.Controllers.Main.txtStyle_Caption": "Caption",
"DE.Controllers.Main.txtStyle_footnote_text": "Footnote Text", "DE.Controllers.Main.txtStyle_footnote_text": "Footnote Text",
"DE.Controllers.Main.txtStyle_Heading_1": "Heading 1", "DE.Controllers.Main.txtStyle_Heading_1": "Heading 1",
"DE.Controllers.Main.txtStyle_Heading_2": "Heading 2", "DE.Controllers.Main.txtStyle_Heading_2": "Heading 2",
@ -699,9 +703,9 @@
"DE.Controllers.Main.txtZeroDivide": "Zero Divide", "DE.Controllers.Main.txtZeroDivide": "Zero Divide",
"DE.Controllers.Main.unknownErrorText": "Unknown error.", "DE.Controllers.Main.unknownErrorText": "Unknown error.",
"DE.Controllers.Main.unsupportedBrowserErrorText": "Your browser is not supported.", "DE.Controllers.Main.unsupportedBrowserErrorText": "Your browser is not supported.",
"DE.Controllers.Main.uploadDocSizeMessage": "Maximum document size limit exceeded.",
"DE.Controllers.Main.uploadDocExtMessage": "Unknown document format.", "DE.Controllers.Main.uploadDocExtMessage": "Unknown document format.",
"DE.Controllers.Main.uploadDocFileCountMessage": "No documents uploaded.", "DE.Controllers.Main.uploadDocFileCountMessage": "No documents uploaded.",
"DE.Controllers.Main.uploadDocSizeMessage": "Maximum document size limit exceeded.",
"DE.Controllers.Main.uploadImageExtMessage": "Unknown image format.", "DE.Controllers.Main.uploadImageExtMessage": "Unknown image format.",
"DE.Controllers.Main.uploadImageFileCountMessage": "No images uploaded.", "DE.Controllers.Main.uploadImageFileCountMessage": "No images uploaded.",
"DE.Controllers.Main.uploadImageSizeMessage": "Maximum image size limit exceeded.", "DE.Controllers.Main.uploadImageSizeMessage": "Maximum image size limit exceeded.",
@ -716,7 +720,6 @@
"DE.Controllers.Main.warnNoLicense": "This version of %1 editors has certain limitations for concurrent connections to the document server.<br>If you need more please consider purchasing a commercial license.", "DE.Controllers.Main.warnNoLicense": "This version of %1 editors has certain limitations for concurrent connections to the document server.<br>If you need more please consider purchasing a commercial license.",
"DE.Controllers.Main.warnNoLicenseUsers": "This version of %1 editors has certain limitations for concurrent users.<br>If you need more please consider purchasing a commercial license.", "DE.Controllers.Main.warnNoLicenseUsers": "This version of %1 editors has certain limitations for concurrent users.<br>If you need more please consider purchasing a commercial license.",
"DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", "DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
"DE.Controllers.Main.txtChoose": "Choose an item.",
"DE.Controllers.Navigation.txtBeginning": "Beginning of document", "DE.Controllers.Navigation.txtBeginning": "Beginning of document",
"DE.Controllers.Navigation.txtGotoBeginning": "Go to the beginning of the document", "DE.Controllers.Navigation.txtGotoBeginning": "Go to the beginning of the document",
"DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked", "DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked",
@ -1127,14 +1130,27 @@
"DE.Views.ChartSettings.txtTight": "Tight", "DE.Views.ChartSettings.txtTight": "Tight",
"DE.Views.ChartSettings.txtTitle": "Chart", "DE.Views.ChartSettings.txtTitle": "Chart",
"DE.Views.ChartSettings.txtTopAndBottom": "Top and bottom", "DE.Views.ChartSettings.txtTopAndBottom": "Top and bottom",
"DE.Views.CompareSettingsDialog.textTitle": "Comparison Settings",
"DE.Views.CompareSettingsDialog.textShow": "Show changes at",
"DE.Views.CompareSettingsDialog.textChar": "Character level", "DE.Views.CompareSettingsDialog.textChar": "Character level",
"DE.Views.CompareSettingsDialog.textShow": "Show changes at",
"DE.Views.CompareSettingsDialog.textTitle": "Comparison Settings",
"DE.Views.CompareSettingsDialog.textWord": "Word level", "DE.Views.CompareSettingsDialog.textWord": "Word level",
"DE.Views.ControlSettingsDialog.strGeneral": "General",
"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.textCheckbox": "Check box",
"DE.Views.ControlSettingsDialog.textChecked": "Checked symbol",
"DE.Views.ControlSettingsDialog.textColor": "Color", "DE.Views.ControlSettingsDialog.textColor": "Color",
"DE.Views.ControlSettingsDialog.textCombobox": "Combo box",
"DE.Views.ControlSettingsDialog.textDate": "Date format",
"DE.Views.ControlSettingsDialog.textDelete": "Delete",
"DE.Views.ControlSettingsDialog.textDisplayName": "Display name",
"DE.Views.ControlSettingsDialog.textDown": "Down",
"DE.Views.ControlSettingsDialog.textDropDown": "Drop-down list",
"DE.Views.ControlSettingsDialog.textFormat": "Display the date like this",
"DE.Views.ControlSettingsDialog.textLang": "Language",
"DE.Views.ControlSettingsDialog.textLock": "Locking", "DE.Views.ControlSettingsDialog.textLock": "Locking",
"DE.Views.ControlSettingsDialog.textName": "Title", "DE.Views.ControlSettingsDialog.textName": "Title",
"DE.Views.ControlSettingsDialog.textNewColor": "Add New Custom Color", "DE.Views.ControlSettingsDialog.textNewColor": "Add New Custom Color",
@ -1143,25 +1159,12 @@
"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.textUp": "Up",
"DE.Views.ControlSettingsDialog.textValue": "Value",
"DE.Views.ControlSettingsDialog.tipChange": "Change symbol",
"DE.Views.ControlSettingsDialog.txtLockDelete": "Content control cannot be deleted", "DE.Views.ControlSettingsDialog.txtLockDelete": "Content control cannot be deleted",
"DE.Views.ControlSettingsDialog.txtLockEdit": "Contents cannot be edited", "DE.Views.ControlSettingsDialog.txtLockEdit": "Contents cannot be edited",
"DE.Views.ControlSettingsDialog.strGeneral": "General",
"DE.Views.ControlSettingsDialog.textAdd": "Add",
"DE.Views.ControlSettingsDialog.textChange": "Edit",
"DE.Views.ControlSettingsDialog.textDelete": "Delete",
"DE.Views.ControlSettingsDialog.textUp": "Up",
"DE.Views.ControlSettingsDialog.textDown": "Down",
"DE.Views.ControlSettingsDialog.textCombobox": "Combo box",
"DE.Views.ControlSettingsDialog.textDropDown": "Drop-down list",
"DE.Views.ControlSettingsDialog.textDisplayName": "Display name",
"DE.Views.ControlSettingsDialog.textValue": "Value",
"DE.Views.ControlSettingsDialog.textDate": "Date format",
"DE.Views.ControlSettingsDialog.textLang": "Language",
"DE.Views.ControlSettingsDialog.textFormat": "Display the date like this",
"DE.Views.ControlSettingsDialog.textCheckbox": "Check box",
"DE.Views.ControlSettingsDialog.textChecked": "Checked symbol",
"DE.Views.ControlSettingsDialog.textUnchecked": "Unchecked symbol",
"DE.Views.ControlSettingsDialog.tipChange": "Change symbol",
"DE.Views.CustomColumnsDialog.textColumns": "Number of columns", "DE.Views.CustomColumnsDialog.textColumns": "Number of columns",
"DE.Views.CustomColumnsDialog.textSeparator": "Column divider", "DE.Views.CustomColumnsDialog.textSeparator": "Column divider",
"DE.Views.CustomColumnsDialog.textSpacing": "Spacing between columns", "DE.Views.CustomColumnsDialog.textSpacing": "Spacing between columns",
@ -1313,6 +1316,7 @@
"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.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",
"DE.Views.DocumentHolder.txtFractionStacked": "Change to stacked fraction", "DE.Views.DocumentHolder.txtFractionStacked": "Change to stacked fraction",
@ -1378,7 +1382,6 @@
"DE.Views.DocumentHolder.txtUngroup": "Ungroup", "DE.Views.DocumentHolder.txtUngroup": "Ungroup",
"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.DocumentHolder.txtEmpty": "(Empty)",
"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",
@ -1422,8 +1425,8 @@
"DE.Views.DropcapSettingsAdvanced.tipFontName": "Font", "DE.Views.DropcapSettingsAdvanced.tipFontName": "Font",
"DE.Views.DropcapSettingsAdvanced.txtNoBorders": "No borders", "DE.Views.DropcapSettingsAdvanced.txtNoBorders": "No borders",
"DE.Views.EditListItemDialog.textDisplayName": "Display name", "DE.Views.EditListItemDialog.textDisplayName": "Display name",
"DE.Views.EditListItemDialog.textValue": "Value",
"DE.Views.EditListItemDialog.textNameError": "Display name must not be empty.", "DE.Views.EditListItemDialog.textNameError": "Display name must not be empty.",
"DE.Views.EditListItemDialog.textValue": "Value",
"DE.Views.EditListItemDialog.textValueError": "An item with the same value already exists.", "DE.Views.EditListItemDialog.textValueError": "An item with the same value already exists.",
"DE.Views.FileMenu.btnBackCaption": "Open file location", "DE.Views.FileMenu.btnBackCaption": "Open file location",
"DE.Views.FileMenu.btnCloseMenuCaption": "Close Menu", "DE.Views.FileMenu.btnCloseMenuCaption": "Close Menu",
@ -1529,6 +1532,7 @@
"DE.Views.FileMenuPanels.Settings.txtPt": "Point", "DE.Views.FileMenuPanels.Settings.txtPt": "Point",
"DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Spell Checking", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Spell Checking",
"DE.Views.FileMenuPanels.Settings.txtWin": "as Windows", "DE.Views.FileMenuPanels.Settings.txtWin": "as Windows",
"DE.Views.FileMenuPanels.Settings.txtCacheMode": "Default cache mode",
"DE.Views.HeaderFooterSettings.textBottomCenter": "Bottom center", "DE.Views.HeaderFooterSettings.textBottomCenter": "Bottom center",
"DE.Views.HeaderFooterSettings.textBottomLeft": "Bottom left", "DE.Views.HeaderFooterSettings.textBottomLeft": "Bottom left",
"DE.Views.HeaderFooterSettings.textBottomPage": "Bottom of Page", "DE.Views.HeaderFooterSettings.textBottomPage": "Bottom of Page",
@ -1676,6 +1680,7 @@
"DE.Views.LeftMenu.txtDeveloper": "DEVELOPER MODE", "DE.Views.LeftMenu.txtDeveloper": "DEVELOPER MODE",
"DE.Views.LeftMenu.txtTrial": "TRIAL MODE", "DE.Views.LeftMenu.txtTrial": "TRIAL MODE",
"DE.Views.Links.capBtnBookmarks": "Bookmark", "DE.Views.Links.capBtnBookmarks": "Bookmark",
"DE.Views.Links.capBtnCaption": "Caption",
"DE.Views.Links.capBtnContentsUpdate": "Refresh", "DE.Views.Links.capBtnContentsUpdate": "Refresh",
"DE.Views.Links.capBtnInsContents": "Table of Contents", "DE.Views.Links.capBtnInsContents": "Table of Contents",
"DE.Views.Links.capBtnInsFootnote": "Footnote", "DE.Views.Links.capBtnInsFootnote": "Footnote",
@ -1690,10 +1695,29 @@
"DE.Views.Links.textUpdateAll": "Refresh entire table", "DE.Views.Links.textUpdateAll": "Refresh entire table",
"DE.Views.Links.textUpdatePages": "Refresh page numbers only", "DE.Views.Links.textUpdatePages": "Refresh page numbers only",
"DE.Views.Links.tipBookmarks": "Create a bookmark", "DE.Views.Links.tipBookmarks": "Create a bookmark",
"DE.Views.Links.tipCaption": "Insert caption",
"DE.Views.Links.tipContents": "Insert table of contents", "DE.Views.Links.tipContents": "Insert table of contents",
"DE.Views.Links.tipContentsUpdate": "Refresh table of contents", "DE.Views.Links.tipContentsUpdate": "Refresh table of contents",
"DE.Views.Links.tipInsertHyperlink": "Add hyperlink", "DE.Views.Links.tipInsertHyperlink": "Add hyperlink",
"DE.Views.Links.tipNotes": "Insert or edit footnotes", "DE.Views.Links.tipNotes": "Insert or edit footnotes",
"DE.Views.ListSettingsDialog.textAuto": "Automatic",
"DE.Views.ListSettingsDialog.textCenter": "Center",
"DE.Views.ListSettingsDialog.textLeft": "Left",
"DE.Views.ListSettingsDialog.textLevel": "Level",
"DE.Views.ListSettingsDialog.textNewColor": "Add New Custom Color",
"DE.Views.ListSettingsDialog.textPreview": "Preview",
"DE.Views.ListSettingsDialog.textRight": "Right",
"DE.Views.ListSettingsDialog.txtAlign": "Alignment",
"DE.Views.ListSettingsDialog.txtBullet": "Bullet",
"DE.Views.ListSettingsDialog.txtColor": "Color",
"DE.Views.ListSettingsDialog.txtFont": "Font and Symbol",
"DE.Views.ListSettingsDialog.txtLikeText": "Like a text",
"DE.Views.ListSettingsDialog.txtNewBullet": "New bullet",
"DE.Views.ListSettingsDialog.txtNone": "None",
"DE.Views.ListSettingsDialog.txtSize": "Size",
"DE.Views.ListSettingsDialog.txtSymbol": "Symbol",
"DE.Views.ListSettingsDialog.txtTitle": "List Settings",
"DE.Views.ListSettingsDialog.txtType": "Type",
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
"DE.Views.MailMergeEmailDlg.okButtonText": "Send", "DE.Views.MailMergeEmailDlg.okButtonText": "Send",
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Theme", "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Theme",
@ -1743,7 +1767,7 @@
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Starting merge failed", "DE.Views.MailMergeSettings.warnProcessMailMerge": "Starting merge failed",
"DE.Views.Navigation.txtCollapse": "Collapse all", "DE.Views.Navigation.txtCollapse": "Collapse all",
"DE.Views.Navigation.txtDemote": "Demote", "DE.Views.Navigation.txtDemote": "Demote",
"DE.Views.Navigation.txtEmpty": "This document doesn't contain headings", "DE.Views.Navigation.txtEmpty": "There are no headings in the document.<br>Apply a heading style to the text so that it appears in the table of contents.",
"DE.Views.Navigation.txtEmptyItem": "Empty Heading", "DE.Views.Navigation.txtEmptyItem": "Empty Heading",
"DE.Views.Navigation.txtExpand": "Expand all", "DE.Views.Navigation.txtExpand": "Expand all",
"DE.Views.Navigation.txtExpandToLevel": "Expand to level", "DE.Views.Navigation.txtExpandToLevel": "Expand to level",
@ -1772,23 +1796,23 @@
"DE.Views.NoteSettingsDialog.textTitle": "Notes Settings", "DE.Views.NoteSettingsDialog.textTitle": "Notes Settings",
"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.textGutterPosition": "Gutter position",
"DE.Views.PageMarginsDialog.textInside": "Inside",
"DE.Views.PageMarginsDialog.textLandscape": "Landscape",
"DE.Views.PageMarginsDialog.textLeft": "Left", "DE.Views.PageMarginsDialog.textLeft": "Left",
"DE.Views.PageMarginsDialog.textMirrorMargins": "Mirror margins",
"DE.Views.PageMarginsDialog.textMultiplePages": "Multiple pages",
"DE.Views.PageMarginsDialog.textNormal": "Normal",
"DE.Views.PageMarginsDialog.textOrientation": "Orientation",
"DE.Views.PageMarginsDialog.textOutside": "Outside",
"DE.Views.PageMarginsDialog.textPortrait": "Portrait",
"DE.Views.PageMarginsDialog.textPreview": "Preview",
"DE.Views.PageMarginsDialog.textRight": "Right", "DE.Views.PageMarginsDialog.textRight": "Right",
"DE.Views.PageMarginsDialog.textTitle": "Margins", "DE.Views.PageMarginsDialog.textTitle": "Margins",
"DE.Views.PageMarginsDialog.textTop": "Top", "DE.Views.PageMarginsDialog.textTop": "Top",
"DE.Views.PageMarginsDialog.txtMarginsH": "Top and bottom margins are too high for a given page height", "DE.Views.PageMarginsDialog.txtMarginsH": "Top and bottom margins are too high for a given page height",
"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.PageMarginsDialog.textMultiplePages": "Multiple pages",
"DE.Views.PageMarginsDialog.textGutter": "Gutter",
"DE.Views.PageMarginsDialog.textGutterPosition": "Gutter position",
"DE.Views.PageMarginsDialog.textOrientation": "Orientation",
"DE.Views.PageMarginsDialog.textPreview": "Preview",
"DE.Views.PageMarginsDialog.textPortrait": "Portrait",
"DE.Views.PageMarginsDialog.textLandscape": "Landscape",
"DE.Views.PageMarginsDialog.textMirrorMargins": "Mirror margins",
"DE.Views.PageMarginsDialog.textNormal": "Normal",
"DE.Views.PageMarginsDialog.textInside": "Inside",
"DE.Views.PageMarginsDialog.textOutside": "Outside",
"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",
@ -1998,6 +2022,7 @@
"DE.Views.TableOfContentsSettings.txtClassic": "Classic", "DE.Views.TableOfContentsSettings.txtClassic": "Classic",
"DE.Views.TableOfContentsSettings.txtCurrent": "Current", "DE.Views.TableOfContentsSettings.txtCurrent": "Current",
"DE.Views.TableOfContentsSettings.txtModern": "Modern", "DE.Views.TableOfContentsSettings.txtModern": "Modern",
"DE.Views.TableOfContentsSettings.txtOnline": "Online",
"DE.Views.TableOfContentsSettings.txtSimple": "Simple", "DE.Views.TableOfContentsSettings.txtSimple": "Simple",
"DE.Views.TableOfContentsSettings.txtStandard": "Standard", "DE.Views.TableOfContentsSettings.txtStandard": "Standard",
"DE.Views.TableSettings.deleteColumnText": "Delete Column", "DE.Views.TableSettings.deleteColumnText": "Delete Column",
@ -2021,7 +2046,7 @@
"DE.Views.TableSettings.textBanded": "Banded", "DE.Views.TableSettings.textBanded": "Banded",
"DE.Views.TableSettings.textBorderColor": "Color", "DE.Views.TableSettings.textBorderColor": "Color",
"DE.Views.TableSettings.textBorders": "Borders Style", "DE.Views.TableSettings.textBorders": "Borders Style",
"DE.Views.TableSettings.textCellSize": "Rows & Columns Size", "DE.Views.TableSettings.textCellSize": "Rows & columns size",
"DE.Views.TableSettings.textColumns": "Columns", "DE.Views.TableSettings.textColumns": "Columns",
"DE.Views.TableSettings.textDistributeCols": "Distribute columns", "DE.Views.TableSettings.textDistributeCols": "Distribute columns",
"DE.Views.TableSettings.textDistributeRows": "Distribute rows", "DE.Views.TableSettings.textDistributeRows": "Distribute rows",
@ -2175,10 +2200,12 @@
"DE.Views.Toolbar.capImgGroup": "Group", "DE.Views.Toolbar.capImgGroup": "Group",
"DE.Views.Toolbar.capImgWrapping": "Wrapping", "DE.Views.Toolbar.capImgWrapping": "Wrapping",
"DE.Views.Toolbar.mniCustomTable": "Insert Custom Table", "DE.Views.Toolbar.mniCustomTable": "Insert Custom Table",
"DE.Views.Toolbar.mniDrawTable": "Draw Table",
"DE.Views.Toolbar.mniEditControls": "Control Settings", "DE.Views.Toolbar.mniEditControls": "Control Settings",
"DE.Views.Toolbar.mniEditDropCap": "Drop Cap Settings", "DE.Views.Toolbar.mniEditDropCap": "Drop Cap Settings",
"DE.Views.Toolbar.mniEditFooter": "Edit Footer", "DE.Views.Toolbar.mniEditFooter": "Edit Footer",
"DE.Views.Toolbar.mniEditHeader": "Edit Header", "DE.Views.Toolbar.mniEditHeader": "Edit Header",
"DE.Views.Toolbar.mniEraseTable": "Erase Table",
"DE.Views.Toolbar.mniHiddenBorders": "Hidden Table Borders", "DE.Views.Toolbar.mniHiddenBorders": "Hidden Table Borders",
"DE.Views.Toolbar.mniHiddenChars": "Nonprinting Characters", "DE.Views.Toolbar.mniHiddenChars": "Nonprinting Characters",
"DE.Views.Toolbar.mniHighlightControls": "Highlight Settings", "DE.Views.Toolbar.mniHighlightControls": "Highlight Settings",
@ -2189,13 +2216,17 @@
"DE.Views.Toolbar.textAutoColor": "Automatic", "DE.Views.Toolbar.textAutoColor": "Automatic",
"DE.Views.Toolbar.textBold": "Bold", "DE.Views.Toolbar.textBold": "Bold",
"DE.Views.Toolbar.textBottom": "Bottom: ", "DE.Views.Toolbar.textBottom": "Bottom: ",
"DE.Views.Toolbar.textCheckboxControl": "Check box",
"DE.Views.Toolbar.textColumnsCustom": "Custom Columns", "DE.Views.Toolbar.textColumnsCustom": "Custom Columns",
"DE.Views.Toolbar.textColumnsLeft": "Left", "DE.Views.Toolbar.textColumnsLeft": "Left",
"DE.Views.Toolbar.textColumnsOne": "One", "DE.Views.Toolbar.textColumnsOne": "One",
"DE.Views.Toolbar.textColumnsRight": "Right", "DE.Views.Toolbar.textColumnsRight": "Right",
"DE.Views.Toolbar.textColumnsThree": "Three", "DE.Views.Toolbar.textColumnsThree": "Three",
"DE.Views.Toolbar.textColumnsTwo": "Two", "DE.Views.Toolbar.textColumnsTwo": "Two",
"DE.Views.Toolbar.textComboboxControl": "Combo box",
"DE.Views.Toolbar.textContPage": "Continuous Page", "DE.Views.Toolbar.textContPage": "Continuous Page",
"DE.Views.Toolbar.textDateControl": "Date",
"DE.Views.Toolbar.textDropdownControl": "Drop-down list",
"DE.Views.Toolbar.textEditWatermark": "Custom Watermark", "DE.Views.Toolbar.textEditWatermark": "Custom Watermark",
"DE.Views.Toolbar.textEvenPage": "Even Page", "DE.Views.Toolbar.textEvenPage": "Even Page",
"DE.Views.Toolbar.textInMargin": "In Margin", "DE.Views.Toolbar.textInMargin": "In Margin",
@ -2208,6 +2239,7 @@
"DE.Views.Toolbar.textItalic": "Italic", "DE.Views.Toolbar.textItalic": "Italic",
"DE.Views.Toolbar.textLandscape": "Landscape", "DE.Views.Toolbar.textLandscape": "Landscape",
"DE.Views.Toolbar.textLeft": "Left: ", "DE.Views.Toolbar.textLeft": "Left: ",
"DE.Views.Toolbar.textListSettings": "List Settings",
"DE.Views.Toolbar.textMarginsLast": "Last Custom", "DE.Views.Toolbar.textMarginsLast": "Last Custom",
"DE.Views.Toolbar.textMarginsModerate": "Moderate", "DE.Views.Toolbar.textMarginsModerate": "Moderate",
"DE.Views.Toolbar.textMarginsNarrow": "Narrow", "DE.Views.Toolbar.textMarginsNarrow": "Narrow",
@ -2221,6 +2253,7 @@
"DE.Views.Toolbar.textOddPage": "Odd Page", "DE.Views.Toolbar.textOddPage": "Odd Page",
"DE.Views.Toolbar.textPageMarginsCustom": "Custom Margins", "DE.Views.Toolbar.textPageMarginsCustom": "Custom Margins",
"DE.Views.Toolbar.textPageSizeCustom": "Custom Page Size", "DE.Views.Toolbar.textPageSizeCustom": "Custom Page Size",
"DE.Views.Toolbar.textPictureControl": "Picture",
"DE.Views.Toolbar.textPlainControl": "Plain text", "DE.Views.Toolbar.textPlainControl": "Plain text",
"DE.Views.Toolbar.textPortrait": "Portrait", "DE.Views.Toolbar.textPortrait": "Portrait",
"DE.Views.Toolbar.textRemoveControl": "Remove Content Control", "DE.Views.Toolbar.textRemoveControl": "Remove Content Control",
@ -2268,7 +2301,6 @@
"DE.Views.Toolbar.tipFontColor": "Font color", "DE.Views.Toolbar.tipFontColor": "Font color",
"DE.Views.Toolbar.tipFontName": "Font", "DE.Views.Toolbar.tipFontName": "Font",
"DE.Views.Toolbar.tipFontSize": "Font size", "DE.Views.Toolbar.tipFontSize": "Font size",
"del_DE.Views.Toolbar.tipHAligh": "Horizontal Align",
"DE.Views.Toolbar.tipHighlightColor": "Highlight color", "DE.Views.Toolbar.tipHighlightColor": "Highlight color",
"DE.Views.Toolbar.tipImgAlign": "Align objects", "DE.Views.Toolbar.tipImgAlign": "Align objects",
"DE.Views.Toolbar.tipImgGroup": "Group objects", "DE.Views.Toolbar.tipImgGroup": "Group objects",
@ -2332,13 +2364,6 @@
"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.Toolbar.textPictureControl": "Picture",
"DE.Views.Toolbar.textComboboxControl": "Combo box",
"DE.Views.Toolbar.textCheckboxControl": "Check box",
"DE.Views.Toolbar.textDropdownControl": "Drop-down list",
"DE.Views.Toolbar.textDateControl": "Date",
"DE.Views.Toolbar.mniDrawTable": "Draw Table",
"DE.Views.Toolbar.mniEraseTable": "Erase Table",
"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",

View file

@ -2087,7 +2087,6 @@
"DE.Views.Toolbar.tipFontColor": "Color de letra", "DE.Views.Toolbar.tipFontColor": "Color de letra",
"DE.Views.Toolbar.tipFontName": "Tipo de letra", "DE.Views.Toolbar.tipFontName": "Tipo de letra",
"DE.Views.Toolbar.tipFontSize": "Tamaño de letra", "DE.Views.Toolbar.tipFontSize": "Tamaño de letra",
"DE.Views.Toolbar.tipHAligh": "Alineación horizontal",
"DE.Views.Toolbar.tipHighlightColor": "Color de resaltado", "DE.Views.Toolbar.tipHighlightColor": "Color de resaltado",
"DE.Views.Toolbar.tipImgAlign": "Alinear objetos", "DE.Views.Toolbar.tipImgAlign": "Alinear objetos",
"DE.Views.Toolbar.tipImgGroup": "Agrupar objetos", "DE.Views.Toolbar.tipImgGroup": "Agrupar objetos",

View file

@ -10,6 +10,7 @@
"Common.Controllers.ExternalMergeEditor.warningText": "L'objet est désactivé car il est en cours de modification par un autre utilisateur.", "Common.Controllers.ExternalMergeEditor.warningText": "L'objet est désactivé car il est en cours de modification par un autre utilisateur.",
"Common.Controllers.ExternalMergeEditor.warningTitle": "Avertissement", "Common.Controllers.ExternalMergeEditor.warningTitle": "Avertissement",
"Common.Controllers.History.notcriticalErrorTitle": "Avertissement", "Common.Controllers.History.notcriticalErrorTitle": "Avertissement",
"Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Pour comparer les documents, toutes les modifications apportées seront considérées comme acceptées. Voulez-vous continuer ?",
"Common.Controllers.ReviewChanges.textAtLeast": "au moins ", "Common.Controllers.ReviewChanges.textAtLeast": "au moins ",
"Common.Controllers.ReviewChanges.textAuto": "auto", "Common.Controllers.ReviewChanges.textAuto": "auto",
"Common.Controllers.ReviewChanges.textBaseline": "Ligne de base", "Common.Controllers.ReviewChanges.textBaseline": "Ligne de base",
@ -68,15 +69,50 @@
"Common.Controllers.ReviewChanges.textTableRowsDel": "<b>Lignes de tableau supprimées<b/>", "Common.Controllers.ReviewChanges.textTableRowsDel": "<b>Lignes de tableau supprimées<b/>",
"Common.Controllers.ReviewChanges.textTabs": "Changer les tabulations", "Common.Controllers.ReviewChanges.textTabs": "Changer les tabulations",
"Common.Controllers.ReviewChanges.textUnderline": "Souligné", "Common.Controllers.ReviewChanges.textUnderline": "Souligné",
"Common.Controllers.ReviewChanges.textUrl": "Coller l'adresse URL du document",
"Common.Controllers.ReviewChanges.textWidow": "Contrôle des veuves", "Common.Controllers.ReviewChanges.textWidow": "Contrôle des veuves",
"Common.define.chartData.textArea": "En aires", "Common.define.chartData.textArea": "En aires",
"Common.define.chartData.textBar": "En barre", "Common.define.chartData.textBar": "En barre",
"Common.define.chartData.textCharts": "Graphiques",
"Common.define.chartData.textColumn": "Colonne", "Common.define.chartData.textColumn": "Colonne",
"Common.define.chartData.textLine": "Graphique en ligne", "Common.define.chartData.textLine": "Graphique en ligne",
"Common.define.chartData.textPie": "Graphiques à secteurs", "Common.define.chartData.textPie": "Graphiques à secteurs",
"Common.define.chartData.textPoint": "Nuages de points (XY)", "Common.define.chartData.textPoint": "Nuages de points (XY)",
"Common.define.chartData.textStock": "Boursier", "Common.define.chartData.textStock": "Boursier",
"Common.define.chartData.textSurface": "Surface", "Common.define.chartData.textSurface": "Surface",
"Common.UI.Calendar.textApril": "avril",
"Common.UI.Calendar.textAugust": "août",
"Common.UI.Calendar.textDecember": "décembre",
"Common.UI.Calendar.textFebruary": "février",
"Common.UI.Calendar.textJanuary": "janvier",
"Common.UI.Calendar.textJuly": "juillet",
"Common.UI.Calendar.textJune": "juin",
"Common.UI.Calendar.textMarch": "mars",
"Common.UI.Calendar.textMay": "mai",
"Common.UI.Calendar.textMonths": "mois",
"Common.UI.Calendar.textNovember": "novembre",
"Common.UI.Calendar.textOctober": "octobre",
"Common.UI.Calendar.textSeptember": "septembre",
"Common.UI.Calendar.textShortApril": "Avr.",
"Common.UI.Calendar.textShortAugust": "août",
"Common.UI.Calendar.textShortDecember": "déc.",
"Common.UI.Calendar.textShortFebruary": "févr.",
"Common.UI.Calendar.textShortFriday": "ven.",
"Common.UI.Calendar.textShortJanuary": "janv.",
"Common.UI.Calendar.textShortJuly": "juill.",
"Common.UI.Calendar.textShortJune": "juin",
"Common.UI.Calendar.textShortMarch": "mars",
"Common.UI.Calendar.textShortMay": "mai",
"Common.UI.Calendar.textShortMonday": "lun.",
"Common.UI.Calendar.textShortNovember": "nov.",
"Common.UI.Calendar.textShortOctober": "oct.",
"Common.UI.Calendar.textShortSaturday": "sam.",
"Common.UI.Calendar.textShortSeptember": "sept.",
"Common.UI.Calendar.textShortSunday": "dim.",
"Common.UI.Calendar.textShortThursday": "jeu.",
"Common.UI.Calendar.textShortTuesday": "mar.",
"Common.UI.Calendar.textShortWednesday": "mer.",
"Common.UI.Calendar.textYears": "années",
"Common.UI.ComboBorderSize.txtNoBorders": "Pas de bordures", "Common.UI.ComboBorderSize.txtNoBorders": "Pas de bordures",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Pas de bordures", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Pas de bordures",
"Common.UI.ComboDataView.emptyComboText": "Aucun style", "Common.UI.ComboDataView.emptyComboText": "Aucun style",
@ -223,12 +259,19 @@
"Common.Views.RenameDialog.txtInvalidName": "Un nom de fichier ne peut pas contenir les caractères suivants :", "Common.Views.RenameDialog.txtInvalidName": "Un nom de fichier ne peut pas contenir les caractères suivants :",
"Common.Views.ReviewChanges.hintNext": "À la modification suivante", "Common.Views.ReviewChanges.hintNext": "À la modification suivante",
"Common.Views.ReviewChanges.hintPrev": "À la modification précédente", "Common.Views.ReviewChanges.hintPrev": "À la modification précédente",
"Common.Views.ReviewChanges.mniFromFile": "Document à partir d'un fichier",
"Common.Views.ReviewChanges.mniFromStorage": "Document à partir de stockage",
"Common.Views.ReviewChanges.mniFromUrl": "Document à partir d'une URL",
"Common.Views.ReviewChanges.mniSettings": "Paramètres de comparaison",
"Common.Views.ReviewChanges.strFast": "Rapide", "Common.Views.ReviewChanges.strFast": "Rapide",
"Common.Views.ReviewChanges.strFastDesc": "Co-édition en temps réel. Tous les changements sont enregistrés automatiquement.", "Common.Views.ReviewChanges.strFastDesc": "Co-édition en temps réel. Tous les changements sont enregistrés automatiquement.",
"Common.Views.ReviewChanges.strStrict": "Strict", "Common.Views.ReviewChanges.strStrict": "Strict",
"Common.Views.ReviewChanges.strStrictDesc": "Utilisez le bouton \"Enregistrer\" pour synchroniser les modifications que vous et d'autres personnes faites.", "Common.Views.ReviewChanges.strStrictDesc": "Utilisez le bouton \"Enregistrer\" pour synchroniser les modifications que vous et d'autres personnes faites.",
"Common.Views.ReviewChanges.tipAcceptCurrent": "Accepter la modification actuelle", "Common.Views.ReviewChanges.tipAcceptCurrent": "Accepter la modification actuelle",
"Common.Views.ReviewChanges.tipCoAuthMode": "Définir le mode de co-édition", "Common.Views.ReviewChanges.tipCoAuthMode": "Définir le mode de co-édition",
"Common.Views.ReviewChanges.tipCommentRem": "Supprimer les commentaires",
"Common.Views.ReviewChanges.tipCommentRemCurrent": "Supprimer les commentaires existants",
"Common.Views.ReviewChanges.tipCompare": "Comparer le document actif avec un autre document",
"Common.Views.ReviewChanges.tipHistory": "Afficher versions", "Common.Views.ReviewChanges.tipHistory": "Afficher versions",
"Common.Views.ReviewChanges.tipRejectCurrent": "Rejeter cette modification", "Common.Views.ReviewChanges.tipRejectCurrent": "Rejeter cette modification",
"Common.Views.ReviewChanges.tipReview": "Suivi des modifications", "Common.Views.ReviewChanges.tipReview": "Suivi des modifications",
@ -243,6 +286,12 @@
"Common.Views.ReviewChanges.txtChat": "Chat", "Common.Views.ReviewChanges.txtChat": "Chat",
"Common.Views.ReviewChanges.txtClose": "Fermer", "Common.Views.ReviewChanges.txtClose": "Fermer",
"Common.Views.ReviewChanges.txtCoAuthMode": "Mode de co-édition ", "Common.Views.ReviewChanges.txtCoAuthMode": "Mode de co-édition ",
"Common.Views.ReviewChanges.txtCommentRemAll": "Supprimer tous les commentaires",
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Supprimer les commentaires existants",
"Common.Views.ReviewChanges.txtCommentRemMy": "Supprimer mes commentaires",
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Supprimer mes commentaires actuels",
"Common.Views.ReviewChanges.txtCommentRemove": "Supprimer",
"Common.Views.ReviewChanges.txtCompare": "Comparer",
"Common.Views.ReviewChanges.txtDocLang": "Langue", "Common.Views.ReviewChanges.txtDocLang": "Langue",
"Common.Views.ReviewChanges.txtFinal": "Toutes les modifications acceptées (aperçu)", "Common.Views.ReviewChanges.txtFinal": "Toutes les modifications acceptées (aperçu)",
"Common.Views.ReviewChanges.txtFinalCap": "Final", "Common.Views.ReviewChanges.txtFinalCap": "Final",
@ -276,6 +325,8 @@
"Common.Views.ReviewPopover.textClose": "Fermer", "Common.Views.ReviewPopover.textClose": "Fermer",
"Common.Views.ReviewPopover.textEdit": "OK", "Common.Views.ReviewPopover.textEdit": "OK",
"Common.Views.ReviewPopover.textFollowMove": "Suivre le Mouvement", "Common.Views.ReviewPopover.textFollowMove": "Suivre le Mouvement",
"Common.Views.ReviewPopover.textMention": "+mention donne l'accès au document et notifie par courriel ",
"Common.Views.ReviewPopover.textMentionNotify": "+mention notifie l'utilisateur par courriel",
"Common.Views.ReviewPopover.textOpenAgain": "Ouvrir à nouveau", "Common.Views.ReviewPopover.textOpenAgain": "Ouvrir à nouveau",
"Common.Views.ReviewPopover.textReply": "Répondre", "Common.Views.ReviewPopover.textReply": "Répondre",
"Common.Views.ReviewPopover.textResolve": "Résoudre", "Common.Views.ReviewPopover.textResolve": "Résoudre",
@ -306,6 +357,11 @@
"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": "Mise en place de la signature",
"Common.Views.SignSettingsDialog.txtEmpty": "Ce champ est obligatoire.", "Common.Views.SignSettingsDialog.txtEmpty": "Ce champ est obligatoire.",
"Common.Views.SymbolTableDialog.textCode": "Valeur Unicode HEX",
"Common.Views.SymbolTableDialog.textFont": "Police",
"Common.Views.SymbolTableDialog.textRange": "Plage",
"Common.Views.SymbolTableDialog.textRecent": "Caractères spéciaux récemment utilisés",
"Common.Views.SymbolTableDialog.textTitle": "Symbole",
"DE.Controllers.LeftMenu.leavePageText": "Toutes les modifications non enregistrées dans ce document seront perdus.<br> Cliquez sur \"Annuler\", puis \"Enregistrer\" pour les sauver. Cliquez sur \"OK\" pour annuler toutes les modifications non enregistrées.", "DE.Controllers.LeftMenu.leavePageText": "Toutes les modifications non enregistrées dans ce document seront perdus.<br> Cliquez sur \"Annuler\", puis \"Enregistrer\" pour les sauver. Cliquez sur \"OK\" pour annuler toutes les modifications non enregistrées.",
"DE.Controllers.LeftMenu.newDocumentTitle": "Document sans nom", "DE.Controllers.LeftMenu.newDocumentTitle": "Document sans nom",
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Avertissement", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Avertissement",
@ -314,6 +370,7 @@
"DE.Controllers.LeftMenu.textNoTextFound": "Votre recherche n'a donné aucun résultat.S'il vous plaît, modifiez vos critères de recherche.", "DE.Controllers.LeftMenu.textNoTextFound": "Votre recherche n'a donné aucun résultat.S'il vous plaît, modifiez vos critères de recherche.",
"DE.Controllers.LeftMenu.textReplaceSkipped": "Le remplacement est fait. {0} occurrences ont été ignorées.", "DE.Controllers.LeftMenu.textReplaceSkipped": "Le remplacement est fait. {0} occurrences ont été ignorées.",
"DE.Controllers.LeftMenu.textReplaceSuccess": "La recherche est effectuée. Occurrences ont été remplacées:{0}", "DE.Controllers.LeftMenu.textReplaceSuccess": "La recherche est effectuée. Occurrences ont été remplacées:{0}",
"DE.Controllers.LeftMenu.txtCompatible": "Le fichier sera enregistré au nouveau format. Toutes les fonctionnalités des éditeurs vous seront disponibles, mais cela peut affecter la mise en page du document.<br>Activez l'option \" Compatibilité \" dans les paramètres avancés pour rendre votre fichier compatible avec les anciennes versions de MS Word. ",
"DE.Controllers.LeftMenu.txtUntitled": "Sans titre", "DE.Controllers.LeftMenu.txtUntitled": "Sans titre",
"DE.Controllers.LeftMenu.warnDownloadAs": "Si vous continuez à enregistrer dans ce format toutes les fonctions sauf le texte seront perdues.<br>Êtes-vous sûr de vouloir continuer ?", "DE.Controllers.LeftMenu.warnDownloadAs": "Si vous continuez à enregistrer dans ce format toutes les fonctions sauf le texte seront perdues.<br>Êtes-vous sûr de vouloir continuer ?",
"DE.Controllers.LeftMenu.warnDownloadAsRTF": "Si vous continuer à sauvegarder dans ce format une partie de la mise en forme peut être supprimée <br>Êtes-vous sûr de vouloir continuer?", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Si vous continuer à sauvegarder dans ce format une partie de la mise en forme peut être supprimée <br>Êtes-vous sûr de vouloir continuer?",
@ -335,6 +392,7 @@
"DE.Controllers.Main.errorDataEncrypted": "Les modifications chiffrées ont été reçues, elle ne peuvent pas être déchiffrées.", "DE.Controllers.Main.errorDataEncrypted": "Les modifications chiffrées ont été reçues, elle ne peuvent pas être déchiffrées.",
"DE.Controllers.Main.errorDataRange": "Plage de données incorrecte.", "DE.Controllers.Main.errorDataRange": "Plage de données incorrecte.",
"DE.Controllers.Main.errorDefaultMessage": "Code d'erreur: %1", "DE.Controllers.Main.errorDefaultMessage": "Code d'erreur: %1",
"DE.Controllers.Main.errorDirectUrl": "Vérifiez le lien vers le document.<br>Assurez-vous que c'est un lien de téléchargement direct. ",
"DE.Controllers.Main.errorEditingDownloadas": "Une erreure s'est produite lors du travail avec le document.<br>Utilisez l'option 'Télécharger comme...' pour enregistrer une copie de sauvegarde du fichier sur le disque dur de votre ordinateur.", "DE.Controllers.Main.errorEditingDownloadas": "Une erreure s'est produite lors du travail avec le document.<br>Utilisez l'option 'Télécharger comme...' pour enregistrer une copie de sauvegarde du fichier sur le disque dur de votre ordinateur.",
"DE.Controllers.Main.errorEditingSaveas": "Une erreure s'est produite lors du travail avec le document.<br>Utilisez l'option 'Enregistrer comme...' pour enregistrer une copie de sauvegarde sur le disque dur de votre ordinateur. ", "DE.Controllers.Main.errorEditingSaveas": "Une erreure s'est produite lors du travail avec le document.<br>Utilisez l'option 'Enregistrer comme...' pour enregistrer une copie de sauvegarde sur le disque dur de votre ordinateur. ",
"DE.Controllers.Main.errorEmailClient": "Pas de client messagerie trouvé", "DE.Controllers.Main.errorEmailClient": "Pas de client messagerie trouvé",
@ -354,6 +412,7 @@
"DE.Controllers.Main.errorToken": "Le jeton de sécurité du document nétait pas formé correctement.<br>Veuillez contacter l'administrateur de Document Server.", "DE.Controllers.Main.errorToken": "Le jeton de sécurité du document nétait pas formé correctement.<br>Veuillez contacter l'administrateur de Document Server.",
"DE.Controllers.Main.errorTokenExpire": "Le jeton de sécurité du document a expiré.<br>Veuillez contactez l'administrateur de votre Document Server.", "DE.Controllers.Main.errorTokenExpire": "Le jeton de sécurité du document a expiré.<br>Veuillez contactez l'administrateur de votre Document Server.",
"DE.Controllers.Main.errorUpdateVersion": "La version du fichier a été changée. La page sera rechargée.", "DE.Controllers.Main.errorUpdateVersion": "La version du fichier a été changée. La page sera rechargée.",
"DE.Controllers.Main.errorUpdateVersionOnDisconnect": "La connexion internet a été rétablie, la version du fichier est modifiée.<br>Avant de continuer, téléchargez le fichier ou copiez le contenu pour vous assurer que tous les changements ont été enregistrés, et rechargez la page.",
"DE.Controllers.Main.errorUserDrop": "Impossible d'accéder au fichier", "DE.Controllers.Main.errorUserDrop": "Impossible d'accéder au fichier",
"DE.Controllers.Main.errorUsersExceed": "Le nombre d'utilisateurs autorisés par le plan tarifaire a été dépassé", "DE.Controllers.Main.errorUsersExceed": "Le nombre d'utilisateurs autorisés par le plan tarifaire a été dépassé",
"DE.Controllers.Main.errorViewerDisconnect": "La connexion a été perdue. Vous pouvez toujours afficher le document,<br>mais ne pouvez pas le télécharger ou l'imprimer jusqu'à ce que la connexion soit rétablie.", "DE.Controllers.Main.errorViewerDisconnect": "La connexion a été perdue. Vous pouvez toujours afficher le document,<br>mais ne pouvez pas le télécharger ou l'imprimer jusqu'à ce que la connexion soit rétablie.",
@ -414,6 +473,7 @@
"DE.Controllers.Main.txtButtons": "Boutons", "DE.Controllers.Main.txtButtons": "Boutons",
"DE.Controllers.Main.txtCallouts": "Légendes", "DE.Controllers.Main.txtCallouts": "Légendes",
"DE.Controllers.Main.txtCharts": "Graphiques", "DE.Controllers.Main.txtCharts": "Graphiques",
"DE.Controllers.Main.txtChoose": "Choisir un élément",
"DE.Controllers.Main.txtCurrentDocument": "Document actuel", "DE.Controllers.Main.txtCurrentDocument": "Document actuel",
"DE.Controllers.Main.txtDiagramTitle": "Titre du graphique", "DE.Controllers.Main.txtDiagramTitle": "Titre du graphique",
"DE.Controllers.Main.txtEditingMode": "Définissez le mode d'édition...", "DE.Controllers.Main.txtEditingMode": "Définissez le mode d'édition...",
@ -428,12 +488,15 @@
"DE.Controllers.Main.txtHyperlink": "Lien hypertexte", "DE.Controllers.Main.txtHyperlink": "Lien hypertexte",
"DE.Controllers.Main.txtIndTooLarge": "Index trop long", "DE.Controllers.Main.txtIndTooLarge": "Index trop long",
"DE.Controllers.Main.txtLines": "Lignes", "DE.Controllers.Main.txtLines": "Lignes",
"DE.Controllers.Main.txtMainDocOnly": "Erreur ! Document principal seulement.",
"DE.Controllers.Main.txtMath": "Maths", "DE.Controllers.Main.txtMath": "Maths",
"DE.Controllers.Main.txtMissArg": "Argument Manquant", "DE.Controllers.Main.txtMissArg": "Argument Manquant",
"DE.Controllers.Main.txtMissOperator": "Operateur Manquant", "DE.Controllers.Main.txtMissOperator": "Operateur Manquant",
"DE.Controllers.Main.txtNeedSynchronize": "Vous avez des mises à jour", "DE.Controllers.Main.txtNeedSynchronize": "Vous avez des mises à jour",
"DE.Controllers.Main.txtNoTableOfContents": "Aucune entrée de table des matières trouvée.", "DE.Controllers.Main.txtNoTableOfContents": "Aucune entrée de table des matières trouvée.",
"DE.Controllers.Main.txtNoText": "Erreur ! Il n'y a pas de texte répondant à ce style dans ce document.",
"DE.Controllers.Main.txtNotInTable": "n'est pas dans le tableau", "DE.Controllers.Main.txtNotInTable": "n'est pas dans le tableau",
"DE.Controllers.Main.txtNotValidBookmark": "Erreur ! Référence non valide pour un signet.",
"DE.Controllers.Main.txtOddPage": "Page impaire", "DE.Controllers.Main.txtOddPage": "Page impaire",
"DE.Controllers.Main.txtOnPage": "sur la page", "DE.Controllers.Main.txtOnPage": "sur la page",
"DE.Controllers.Main.txtRectangles": "Rectangles", "DE.Controllers.Main.txtRectangles": "Rectangles",
@ -612,6 +675,7 @@
"DE.Controllers.Main.txtShape_wedgeRectCallout": "Rectangle", "DE.Controllers.Main.txtShape_wedgeRectCallout": "Rectangle",
"DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Rectangle à coins arrondis", "DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Rectangle à coins arrondis",
"DE.Controllers.Main.txtStarsRibbons": "Étoiles et rubans", "DE.Controllers.Main.txtStarsRibbons": "Étoiles et rubans",
"DE.Controllers.Main.txtStyle_Caption": "Légende",
"DE.Controllers.Main.txtStyle_footnote_text": "Texte de la note de bas de page", "DE.Controllers.Main.txtStyle_footnote_text": "Texte de la note de bas de page",
"DE.Controllers.Main.txtStyle_Heading_1": "Titre 1", "DE.Controllers.Main.txtStyle_Heading_1": "Titre 1",
"DE.Controllers.Main.txtStyle_Heading_2": "Titre 2", "DE.Controllers.Main.txtStyle_Heading_2": "Titre 2",
@ -639,6 +703,9 @@
"DE.Controllers.Main.txtZeroDivide": "Division par Zéro", "DE.Controllers.Main.txtZeroDivide": "Division par Zéro",
"DE.Controllers.Main.unknownErrorText": "Erreur inconnue.", "DE.Controllers.Main.unknownErrorText": "Erreur inconnue.",
"DE.Controllers.Main.unsupportedBrowserErrorText": "Votre navigateur n'est pas pris en charge.", "DE.Controllers.Main.unsupportedBrowserErrorText": "Votre navigateur n'est pas pris en charge.",
"DE.Controllers.Main.uploadDocExtMessage": "Format de fichier inconnu.",
"DE.Controllers.Main.uploadDocFileCountMessage": "Aucun fichier n'a été chargé.",
"DE.Controllers.Main.uploadDocSizeMessage": "La taille du fichier dépasse la limite autorisée.",
"DE.Controllers.Main.uploadImageExtMessage": "Format d'image inconnu.", "DE.Controllers.Main.uploadImageExtMessage": "Format d'image inconnu.",
"DE.Controllers.Main.uploadImageFileCountMessage": "Pas d'images chargées.", "DE.Controllers.Main.uploadImageFileCountMessage": "Pas d'images chargées.",
"DE.Controllers.Main.uploadImageSizeMessage": "La taille de l'image dépasse la limite maximale.", "DE.Controllers.Main.uploadImageSizeMessage": "La taille de l'image dépasse la limite maximale.",
@ -667,6 +734,7 @@
"DE.Controllers.Toolbar.textFontSizeErr": "La valeur entrée est incorrecte.<br>Entrez une valeur numérique entre 1 et 100", "DE.Controllers.Toolbar.textFontSizeErr": "La valeur entrée est incorrecte.<br>Entrez une valeur numérique entre 1 et 100",
"DE.Controllers.Toolbar.textFraction": "Fractions", "DE.Controllers.Toolbar.textFraction": "Fractions",
"DE.Controllers.Toolbar.textFunction": "Fonctions", "DE.Controllers.Toolbar.textFunction": "Fonctions",
"DE.Controllers.Toolbar.textInsert": "Insérer",
"DE.Controllers.Toolbar.textIntegral": "Intégrales", "DE.Controllers.Toolbar.textIntegral": "Intégrales",
"DE.Controllers.Toolbar.textLargeOperator": "Grands opérateurs", "DE.Controllers.Toolbar.textLargeOperator": "Grands opérateurs",
"DE.Controllers.Toolbar.textLimitAndLog": "Limites et logarithmes ", "DE.Controllers.Toolbar.textLimitAndLog": "Limites et logarithmes ",
@ -996,6 +1064,8 @@
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zêta", "DE.Controllers.Toolbar.txtSymbol_zeta": "Zêta",
"DE.Controllers.Viewport.textFitPage": "Ajuster à la page", "DE.Controllers.Viewport.textFitPage": "Ajuster à la page",
"DE.Controllers.Viewport.textFitWidth": "Ajuster à la largeur", "DE.Controllers.Viewport.textFitWidth": "Ajuster à la largeur",
"DE.Views.AddNewCaptionLabelDialog.textLabel": "Étiquette :",
"DE.Views.AddNewCaptionLabelDialog.textLabelError": "Étiquette ne doit pas être vide",
"DE.Views.BookmarksDialog.textAdd": "Ajouter", "DE.Views.BookmarksDialog.textAdd": "Ajouter",
"DE.Views.BookmarksDialog.textBookmarkName": "Nom du signet", "DE.Views.BookmarksDialog.textBookmarkName": "Nom du signet",
"DE.Views.BookmarksDialog.textClose": "Fermer", "DE.Views.BookmarksDialog.textClose": "Fermer",
@ -1009,6 +1079,28 @@
"DE.Views.BookmarksDialog.textSort": "Trier par", "DE.Views.BookmarksDialog.textSort": "Trier par",
"DE.Views.BookmarksDialog.textTitle": "Signets", "DE.Views.BookmarksDialog.textTitle": "Signets",
"DE.Views.BookmarksDialog.txtInvalidName": "Nom du signet ne peut pas contenir que des lettres, des chiffres et des barres de soulignement et doit commencer avec une lettre", "DE.Views.BookmarksDialog.txtInvalidName": "Nom du signet ne peut pas contenir que des lettres, des chiffres et des barres de soulignement et doit commencer avec une lettre",
"DE.Views.CaptionDialog.textAdd": "Ajouter une étiquette",
"DE.Views.CaptionDialog.textAfter": "Après",
"DE.Views.CaptionDialog.textBefore": "Avant",
"DE.Views.CaptionDialog.textCaption": "Légende",
"DE.Views.CaptionDialog.textChapter": "Style de début de chapitre",
"DE.Views.CaptionDialog.textChapterInc": "Inclure le numéro de chapitre",
"DE.Views.CaptionDialog.textColon": "Deux-points",
"DE.Views.CaptionDialog.textDash": "tiret",
"DE.Views.CaptionDialog.textDelete": "Supprimer une étiquette",
"DE.Views.CaptionDialog.textEquation": "Équation",
"DE.Views.CaptionDialog.textExamples": "Exemples: Table 2-A, Image 1.IV",
"DE.Views.CaptionDialog.textExclude": "Exclure le texte de la légende",
"DE.Views.CaptionDialog.textFigure": "Figure",
"DE.Views.CaptionDialog.textHyphen": "trait d'union",
"DE.Views.CaptionDialog.textInsert": "Insérer",
"DE.Views.CaptionDialog.textLabel": "Étiquette",
"DE.Views.CaptionDialog.textLongDash": "Tiret long",
"DE.Views.CaptionDialog.textNumbering": "Numérotation",
"DE.Views.CaptionDialog.textPeriod": "Période",
"DE.Views.CaptionDialog.textSeparator": "Séparateur",
"DE.Views.CaptionDialog.textTable": "Tableau",
"DE.Views.CaptionDialog.textTitle": "Insérer une légende",
"DE.Views.CellsAddDialog.textCol": "Colonnes", "DE.Views.CellsAddDialog.textCol": "Colonnes",
"DE.Views.CellsAddDialog.textDown": "Au-dessous du curseur", "DE.Views.CellsAddDialog.textDown": "Au-dessous du curseur",
"DE.Views.CellsAddDialog.textLeft": "Vers la gauche", "DE.Views.CellsAddDialog.textLeft": "Vers la gauche",
@ -1038,10 +1130,27 @@
"DE.Views.ChartSettings.txtTight": "Rapproché", "DE.Views.ChartSettings.txtTight": "Rapproché",
"DE.Views.ChartSettings.txtTitle": "Graphique", "DE.Views.ChartSettings.txtTitle": "Graphique",
"DE.Views.ChartSettings.txtTopAndBottom": "Haut et bas", "DE.Views.ChartSettings.txtTopAndBottom": "Haut et bas",
"DE.Views.CompareSettingsDialog.textChar": "Niveau des caractères",
"DE.Views.CompareSettingsDialog.textShow": "Afficher les modifications au :",
"DE.Views.CompareSettingsDialog.textTitle": "Paramètres de comparaison",
"DE.Views.CompareSettingsDialog.textWord": "Niveau des mots",
"DE.Views.ControlSettingsDialog.strGeneral": "Général",
"DE.Views.ControlSettingsDialog.textAdd": "Ajouter",
"DE.Views.ControlSettingsDialog.textAppearance": "Apparence", "DE.Views.ControlSettingsDialog.textAppearance": "Apparence",
"DE.Views.ControlSettingsDialog.textApplyAll": "Appliquer à tous", "DE.Views.ControlSettingsDialog.textApplyAll": "Appliquer à tous",
"DE.Views.ControlSettingsDialog.textBox": "Boîte d'encombrement", "DE.Views.ControlSettingsDialog.textBox": "Boîte d'encombrement",
"DE.Views.ControlSettingsDialog.textChange": "Modifier",
"DE.Views.ControlSettingsDialog.textCheckbox": "Case à cocher",
"DE.Views.ControlSettingsDialog.textChecked": "Symbole Activé",
"DE.Views.ControlSettingsDialog.textColor": "Couleur", "DE.Views.ControlSettingsDialog.textColor": "Couleur",
"DE.Views.ControlSettingsDialog.textCombobox": "Zone de liste déroulante",
"DE.Views.ControlSettingsDialog.textDate": "Format de date",
"DE.Views.ControlSettingsDialog.textDelete": "Effacer",
"DE.Views.ControlSettingsDialog.textDisplayName": "Nom d'affichage",
"DE.Views.ControlSettingsDialog.textDown": "Bas",
"DE.Views.ControlSettingsDialog.textDropDown": "Liste déroulante",
"DE.Views.ControlSettingsDialog.textFormat": "Afficher la date comme suit",
"DE.Views.ControlSettingsDialog.textLang": "Langue",
"DE.Views.ControlSettingsDialog.textLock": "Verrouillage ", "DE.Views.ControlSettingsDialog.textLock": "Verrouillage ",
"DE.Views.ControlSettingsDialog.textName": "Titre", "DE.Views.ControlSettingsDialog.textName": "Titre",
"DE.Views.ControlSettingsDialog.textNewColor": "Couleur personnalisée", "DE.Views.ControlSettingsDialog.textNewColor": "Couleur personnalisée",
@ -1050,6 +1159,10 @@
"DE.Views.ControlSettingsDialog.textSystemColor": "Système", "DE.Views.ControlSettingsDialog.textSystemColor": "Système",
"DE.Views.ControlSettingsDialog.textTag": "Tag", "DE.Views.ControlSettingsDialog.textTag": "Tag",
"DE.Views.ControlSettingsDialog.textTitle": "Paramètres de contrôle du contenu", "DE.Views.ControlSettingsDialog.textTitle": "Paramètres de contrôle du contenu",
"DE.Views.ControlSettingsDialog.textUnchecked": "Symbole Désactivé",
"DE.Views.ControlSettingsDialog.textUp": "En haut",
"DE.Views.ControlSettingsDialog.textValue": "Valeur",
"DE.Views.ControlSettingsDialog.tipChange": "Modifier le symbole",
"DE.Views.ControlSettingsDialog.txtLockDelete": "Le contrôle du contenu ne peut pas être supprimé", "DE.Views.ControlSettingsDialog.txtLockDelete": "Le contrôle du contenu ne peut pas être supprimé",
"DE.Views.ControlSettingsDialog.txtLockEdit": "Le contenu ne peut pas être modifié", "DE.Views.ControlSettingsDialog.txtLockEdit": "Le contenu ne peut pas être modifié",
"DE.Views.CustomColumnsDialog.textColumns": "Nombre de colonnes", "DE.Views.CustomColumnsDialog.textColumns": "Nombre de colonnes",
@ -1203,6 +1316,7 @@
"DE.Views.DocumentHolder.txtDeleteRadical": "Supprimer radical", "DE.Views.DocumentHolder.txtDeleteRadical": "Supprimer radical",
"DE.Views.DocumentHolder.txtDistribHor": "Distribuer horizontalement", "DE.Views.DocumentHolder.txtDistribHor": "Distribuer horizontalement",
"DE.Views.DocumentHolder.txtDistribVert": "Distribuer verticalement", "DE.Views.DocumentHolder.txtDistribVert": "Distribuer verticalement",
"DE.Views.DocumentHolder.txtEmpty": "(Vide)",
"DE.Views.DocumentHolder.txtFractionLinear": "Modifier à la fraction linéaire", "DE.Views.DocumentHolder.txtFractionLinear": "Modifier à la fraction linéaire",
"DE.Views.DocumentHolder.txtFractionSkewed": "Modifier à la fraction oblique", "DE.Views.DocumentHolder.txtFractionSkewed": "Modifier à la fraction oblique",
"DE.Views.DocumentHolder.txtFractionStacked": "Modifier à la fraction empilée", "DE.Views.DocumentHolder.txtFractionStacked": "Modifier à la fraction empilée",
@ -1229,6 +1343,7 @@
"DE.Views.DocumentHolder.txtInsertArgAfter": "Insérez l'argument après", "DE.Views.DocumentHolder.txtInsertArgAfter": "Insérez l'argument après",
"DE.Views.DocumentHolder.txtInsertArgBefore": "Insérez argument devant", "DE.Views.DocumentHolder.txtInsertArgBefore": "Insérez argument devant",
"DE.Views.DocumentHolder.txtInsertBreak": "Insérer pause manuelle", "DE.Views.DocumentHolder.txtInsertBreak": "Insérer pause manuelle",
"DE.Views.DocumentHolder.txtInsertCaption": "Insérer une légende",
"DE.Views.DocumentHolder.txtInsertEqAfter": "Insérer équation après", "DE.Views.DocumentHolder.txtInsertEqAfter": "Insérer équation après",
"DE.Views.DocumentHolder.txtInsertEqBefore": "Insérez l'équation avant", "DE.Views.DocumentHolder.txtInsertEqBefore": "Insérez l'équation avant",
"DE.Views.DocumentHolder.txtKeepTextOnly": "Gardez le texte seulement", "DE.Views.DocumentHolder.txtKeepTextOnly": "Gardez le texte seulement",
@ -1309,6 +1424,10 @@
"DE.Views.DropcapSettingsAdvanced.textWidth": "Largeur", "DE.Views.DropcapSettingsAdvanced.textWidth": "Largeur",
"DE.Views.DropcapSettingsAdvanced.tipFontName": "Police", "DE.Views.DropcapSettingsAdvanced.tipFontName": "Police",
"DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Pas de bordures", "DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Pas de bordures",
"DE.Views.EditListItemDialog.textDisplayName": "Nom d'affichage",
"DE.Views.EditListItemDialog.textNameError": "Veuillez renseigner le nom d'affichage.",
"DE.Views.EditListItemDialog.textValue": "Valeur",
"DE.Views.EditListItemDialog.textValueError": "Un élément avec la même valeur existe déjà.",
"DE.Views.FileMenu.btnBackCaption": "Ouvrir l'emplacement du fichier", "DE.Views.FileMenu.btnBackCaption": "Ouvrir l'emplacement du fichier",
"DE.Views.FileMenu.btnCloseMenuCaption": "Fermer le menu", "DE.Views.FileMenu.btnCloseMenuCaption": "Fermer le menu",
"DE.Views.FileMenu.btnCreateNewCaption": "Nouveau document", "DE.Views.FileMenu.btnCreateNewCaption": "Nouveau document",
@ -1398,6 +1517,7 @@
"DE.Views.FileMenuPanels.Settings.textDisabled": "Désactivé", "DE.Views.FileMenuPanels.Settings.textDisabled": "Désactivé",
"DE.Views.FileMenuPanels.Settings.textForceSave": "Enregistrer sur le serveur", "DE.Views.FileMenuPanels.Settings.textForceSave": "Enregistrer sur le serveur",
"DE.Views.FileMenuPanels.Settings.textMinute": "Chaque minute", "DE.Views.FileMenuPanels.Settings.textMinute": "Chaque minute",
"DE.Views.FileMenuPanels.Settings.textOldVersions": "Rendre les fichiers compatibles avec les anciennes versions de MS Word lorsqu'ils sont enregistrés au format DOCX",
"DE.Views.FileMenuPanels.Settings.txtAll": "Surligner toutes les modifications", "DE.Views.FileMenuPanels.Settings.txtAll": "Surligner toutes les modifications",
"DE.Views.FileMenuPanels.Settings.txtCm": "Centimètre", "DE.Views.FileMenuPanels.Settings.txtCm": "Centimètre",
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Ajuster à la page", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Ajuster à la page",
@ -1556,6 +1676,7 @@
"DE.Views.LeftMenu.txtDeveloper": "MODE DEVELOPPEUR", "DE.Views.LeftMenu.txtDeveloper": "MODE DEVELOPPEUR",
"DE.Views.LeftMenu.txtTrial": "MODE DEMO", "DE.Views.LeftMenu.txtTrial": "MODE DEMO",
"DE.Views.Links.capBtnBookmarks": "Signet", "DE.Views.Links.capBtnBookmarks": "Signet",
"DE.Views.Links.capBtnCaption": "Légende",
"DE.Views.Links.capBtnContentsUpdate": "Actualiser", "DE.Views.Links.capBtnContentsUpdate": "Actualiser",
"DE.Views.Links.capBtnInsContents": "Table des matières", "DE.Views.Links.capBtnInsContents": "Table des matières",
"DE.Views.Links.capBtnInsFootnote": "Note de bas de page", "DE.Views.Links.capBtnInsFootnote": "Note de bas de page",
@ -1570,10 +1691,29 @@
"DE.Views.Links.textUpdateAll": "Actualiser le tableau entier", "DE.Views.Links.textUpdateAll": "Actualiser le tableau entier",
"DE.Views.Links.textUpdatePages": "Actualiser les numéros de page uniquement", "DE.Views.Links.textUpdatePages": "Actualiser les numéros de page uniquement",
"DE.Views.Links.tipBookmarks": "Créer un signet", "DE.Views.Links.tipBookmarks": "Créer un signet",
"DE.Views.Links.tipCaption": "Insérer une légende",
"DE.Views.Links.tipContents": "Insérer la table des matières", "DE.Views.Links.tipContents": "Insérer la table des matières",
"DE.Views.Links.tipContentsUpdate": "Actualiser la table des matières", "DE.Views.Links.tipContentsUpdate": "Actualiser la table des matières",
"DE.Views.Links.tipInsertHyperlink": "Ajouter un lien hypertexte", "DE.Views.Links.tipInsertHyperlink": "Ajouter un lien hypertexte",
"DE.Views.Links.tipNotes": "Insérer ou modifier les notes de bas de page", "DE.Views.Links.tipNotes": "Insérer ou modifier les notes de bas de page",
"DE.Views.ListSettingsDialog.textAuto": "Automatique",
"DE.Views.ListSettingsDialog.textCenter": "Au centre",
"DE.Views.ListSettingsDialog.textLeft": "A gauche",
"DE.Views.ListSettingsDialog.textLevel": "Niveau",
"DE.Views.ListSettingsDialog.textNewColor": "Ajouter une nouvelle couleur personnalisée",
"DE.Views.ListSettingsDialog.textPreview": "Aperçu",
"DE.Views.ListSettingsDialog.textRight": "A droite",
"DE.Views.ListSettingsDialog.txtAlign": "Alignement",
"DE.Views.ListSettingsDialog.txtBullet": "Puce",
"DE.Views.ListSettingsDialog.txtColor": "Couleur",
"DE.Views.ListSettingsDialog.txtFont": "Symboles et caractères",
"DE.Views.ListSettingsDialog.txtLikeText": "En tant que texte",
"DE.Views.ListSettingsDialog.txtNewBullet": "Nouvelle puce",
"DE.Views.ListSettingsDialog.txtNone": "Rien",
"DE.Views.ListSettingsDialog.txtSize": "Taille",
"DE.Views.ListSettingsDialog.txtSymbol": "Symbole",
"DE.Views.ListSettingsDialog.txtTitle": "Paramètres de la liste",
"DE.Views.ListSettingsDialog.txtType": "Type",
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
"DE.Views.MailMergeEmailDlg.okButtonText": "Envoyer", "DE.Views.MailMergeEmailDlg.okButtonText": "Envoyer",
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Thème", "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Thème",
@ -1652,7 +1792,18 @@
"DE.Views.NoteSettingsDialog.textTitle": "Paramètres des notes de bas de page", "DE.Views.NoteSettingsDialog.textTitle": "Paramètres des notes de bas de page",
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Avertissement", "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Avertissement",
"DE.Views.PageMarginsDialog.textBottom": "Bas", "DE.Views.PageMarginsDialog.textBottom": "Bas",
"DE.Views.PageMarginsDialog.textGutter": "Reliure",
"DE.Views.PageMarginsDialog.textGutterPosition": "Position de la reliure",
"DE.Views.PageMarginsDialog.textInside": "À lintérieur",
"DE.Views.PageMarginsDialog.textLandscape": "Paysage",
"DE.Views.PageMarginsDialog.textLeft": "Gauche", "DE.Views.PageMarginsDialog.textLeft": "Gauche",
"DE.Views.PageMarginsDialog.textMirrorMargins": "Pages en vis-à-vis",
"DE.Views.PageMarginsDialog.textMultiplePages": "Plusieurs pages",
"DE.Views.PageMarginsDialog.textNormal": "Normal",
"DE.Views.PageMarginsDialog.textOrientation": "Orientation",
"DE.Views.PageMarginsDialog.textOutside": "À lextérieur",
"DE.Views.PageMarginsDialog.textPortrait": "Portrait",
"DE.Views.PageMarginsDialog.textPreview": "Aperçu",
"DE.Views.PageMarginsDialog.textRight": "Droite", "DE.Views.PageMarginsDialog.textRight": "Droite",
"DE.Views.PageMarginsDialog.textTitle": "Marges", "DE.Views.PageMarginsDialog.textTitle": "Marges",
"DE.Views.PageMarginsDialog.textTop": "Haut", "DE.Views.PageMarginsDialog.textTop": "Haut",
@ -1764,6 +1915,7 @@
"DE.Views.ShapeSettings.strFill": "Remplissage", "DE.Views.ShapeSettings.strFill": "Remplissage",
"DE.Views.ShapeSettings.strForeground": "Couleur de premier plan", "DE.Views.ShapeSettings.strForeground": "Couleur de premier plan",
"DE.Views.ShapeSettings.strPattern": "Modèle", "DE.Views.ShapeSettings.strPattern": "Modèle",
"DE.Views.ShapeSettings.strShadow": "Ajouter une ombre",
"DE.Views.ShapeSettings.strSize": "Taille", "DE.Views.ShapeSettings.strSize": "Taille",
"DE.Views.ShapeSettings.strStroke": "Trait", "DE.Views.ShapeSettings.strStroke": "Trait",
"DE.Views.ShapeSettings.strTransparency": "Opacité", "DE.Views.ShapeSettings.strTransparency": "Opacité",
@ -1844,6 +1996,7 @@
"DE.Views.StyleTitleDialog.textTitle": "Titre", "DE.Views.StyleTitleDialog.textTitle": "Titre",
"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.TableFormulaDialog.textBookmark": "Coller Signet ", "DE.Views.TableFormulaDialog.textBookmark": "Coller 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",
@ -2016,6 +2169,7 @@
"DE.Views.TextArtSettings.textTemplate": "Modèle", "DE.Views.TextArtSettings.textTemplate": "Modèle",
"DE.Views.TextArtSettings.textTransform": "Transformer", "DE.Views.TextArtSettings.textTransform": "Transformer",
"DE.Views.TextArtSettings.txtNoBorders": "Pas de ligne", "DE.Views.TextArtSettings.txtNoBorders": "Pas de ligne",
"DE.Views.Toolbar.capBtnAddComment": "Ajouter un commentaire",
"DE.Views.Toolbar.capBtnBlankPage": "Page Blanche ", "DE.Views.Toolbar.capBtnBlankPage": "Page Blanche ",
"DE.Views.Toolbar.capBtnColumns": "Colonnes", "DE.Views.Toolbar.capBtnColumns": "Colonnes",
"DE.Views.Toolbar.capBtnComment": "Commentaire", "DE.Views.Toolbar.capBtnComment": "Commentaire",
@ -2027,6 +2181,7 @@
"DE.Views.Toolbar.capBtnInsImage": "Image", "DE.Views.Toolbar.capBtnInsImage": "Image",
"DE.Views.Toolbar.capBtnInsPagebreak": "Sauts", "DE.Views.Toolbar.capBtnInsPagebreak": "Sauts",
"DE.Views.Toolbar.capBtnInsShape": "Forme", "DE.Views.Toolbar.capBtnInsShape": "Forme",
"DE.Views.Toolbar.capBtnInsSymbol": "Symbole",
"DE.Views.Toolbar.capBtnInsTable": "Tableau", "DE.Views.Toolbar.capBtnInsTable": "Tableau",
"DE.Views.Toolbar.capBtnInsTextart": "Text Art", "DE.Views.Toolbar.capBtnInsTextart": "Text Art",
"DE.Views.Toolbar.capBtnInsTextbox": "Zone de texte", "DE.Views.Toolbar.capBtnInsTextbox": "Zone de texte",
@ -2040,10 +2195,12 @@
"DE.Views.Toolbar.capImgGroup": "Grouper", "DE.Views.Toolbar.capImgGroup": "Grouper",
"DE.Views.Toolbar.capImgWrapping": "Retour à la ligne", "DE.Views.Toolbar.capImgWrapping": "Retour à la ligne",
"DE.Views.Toolbar.mniCustomTable": "Inserer un tableau personnalisé", "DE.Views.Toolbar.mniCustomTable": "Inserer un tableau personnalisé",
"DE.Views.Toolbar.mniDrawTable": "Dessiner un tableau",
"DE.Views.Toolbar.mniEditControls": "Paramètres de contrôle", "DE.Views.Toolbar.mniEditControls": "Paramètres de contrôle",
"DE.Views.Toolbar.mniEditDropCap": "Paramètres de la lettrine", "DE.Views.Toolbar.mniEditDropCap": "Paramètres de la lettrine",
"DE.Views.Toolbar.mniEditFooter": "Modifier le pied de page", "DE.Views.Toolbar.mniEditFooter": "Modifier le pied de page",
"DE.Views.Toolbar.mniEditHeader": "Modifier l'en-tête", "DE.Views.Toolbar.mniEditHeader": "Modifier l'en-tête",
"DE.Views.Toolbar.mniEraseTable": "Supprimer un tableau",
"DE.Views.Toolbar.mniHiddenBorders": "Bordures du tableau cachées", "DE.Views.Toolbar.mniHiddenBorders": "Bordures du tableau cachées",
"DE.Views.Toolbar.mniHiddenChars": "Caractères non imprimables", "DE.Views.Toolbar.mniHiddenChars": "Caractères non imprimables",
"DE.Views.Toolbar.mniHighlightControls": "Paramètres de surbrillance", "DE.Views.Toolbar.mniHighlightControls": "Paramètres de surbrillance",
@ -2054,13 +2211,17 @@
"DE.Views.Toolbar.textAutoColor": "Automatique", "DE.Views.Toolbar.textAutoColor": "Automatique",
"DE.Views.Toolbar.textBold": "Gras", "DE.Views.Toolbar.textBold": "Gras",
"DE.Views.Toolbar.textBottom": "En bas: ", "DE.Views.Toolbar.textBottom": "En bas: ",
"DE.Views.Toolbar.textCheckboxControl": "Case à cocher",
"DE.Views.Toolbar.textColumnsCustom": "Colonnes personnalisées", "DE.Views.Toolbar.textColumnsCustom": "Colonnes personnalisées",
"DE.Views.Toolbar.textColumnsLeft": "A gauche", "DE.Views.Toolbar.textColumnsLeft": "A gauche",
"DE.Views.Toolbar.textColumnsOne": "Un", "DE.Views.Toolbar.textColumnsOne": "Un",
"DE.Views.Toolbar.textColumnsRight": "A droite", "DE.Views.Toolbar.textColumnsRight": "A droite",
"DE.Views.Toolbar.textColumnsThree": "Trois", "DE.Views.Toolbar.textColumnsThree": "Trois",
"DE.Views.Toolbar.textColumnsTwo": "Deux", "DE.Views.Toolbar.textColumnsTwo": "Deux",
"DE.Views.Toolbar.textComboboxControl": "Zone de liste déroulante",
"DE.Views.Toolbar.textContPage": "Page continue", "DE.Views.Toolbar.textContPage": "Page continue",
"DE.Views.Toolbar.textDateControl": "Date",
"DE.Views.Toolbar.textDropdownControl": "Liste déroulante",
"DE.Views.Toolbar.textEditWatermark": "Filigrane personnalisé", "DE.Views.Toolbar.textEditWatermark": "Filigrane personnalisé",
"DE.Views.Toolbar.textEvenPage": "Page paire", "DE.Views.Toolbar.textEvenPage": "Page paire",
"DE.Views.Toolbar.textInMargin": "Dans la Marge", "DE.Views.Toolbar.textInMargin": "Dans la Marge",
@ -2073,6 +2234,7 @@
"DE.Views.Toolbar.textItalic": "Italique", "DE.Views.Toolbar.textItalic": "Italique",
"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.textMarginsLast": "Dernière mesure", "DE.Views.Toolbar.textMarginsLast": "Dernière mesure",
"DE.Views.Toolbar.textMarginsModerate": "Modérer", "DE.Views.Toolbar.textMarginsModerate": "Modérer",
"DE.Views.Toolbar.textMarginsNarrow": "Étroit", "DE.Views.Toolbar.textMarginsNarrow": "Étroit",
@ -2086,6 +2248,7 @@
"DE.Views.Toolbar.textOddPage": "Page impaire", "DE.Views.Toolbar.textOddPage": "Page impaire",
"DE.Views.Toolbar.textPageMarginsCustom": "Marges personnalisées", "DE.Views.Toolbar.textPageMarginsCustom": "Marges personnalisées",
"DE.Views.Toolbar.textPageSizeCustom": "Taille personnalisée", "DE.Views.Toolbar.textPageSizeCustom": "Taille personnalisée",
"DE.Views.Toolbar.textPictureControl": "Image",
"DE.Views.Toolbar.textPlainControl": "Insérer un contrôle de contenu en texte brut", "DE.Views.Toolbar.textPlainControl": "Insérer un contrôle de contenu en texte brut",
"DE.Views.Toolbar.textPortrait": "Portrait", "DE.Views.Toolbar.textPortrait": "Portrait",
"DE.Views.Toolbar.textRemoveControl": "Supprimer le contrôle du contenu", "DE.Views.Toolbar.textRemoveControl": "Supprimer le contrôle du contenu",
@ -2133,7 +2296,6 @@
"DE.Views.Toolbar.tipFontColor": "Couleur de police", "DE.Views.Toolbar.tipFontColor": "Couleur de police",
"DE.Views.Toolbar.tipFontName": "Police", "DE.Views.Toolbar.tipFontName": "Police",
"DE.Views.Toolbar.tipFontSize": "Taille de la police", "DE.Views.Toolbar.tipFontSize": "Taille de la police",
"DE.Views.Toolbar.tipHAligh": "Alignement horizontal",
"DE.Views.Toolbar.tipHighlightColor": "Couleur de surlignage", "DE.Views.Toolbar.tipHighlightColor": "Couleur de surlignage",
"DE.Views.Toolbar.tipImgAlign": "Aligner les objets", "DE.Views.Toolbar.tipImgAlign": "Aligner les objets",
"DE.Views.Toolbar.tipImgGroup": "Grouper les objets", "DE.Views.Toolbar.tipImgGroup": "Grouper les objets",
@ -2145,6 +2307,7 @@
"DE.Views.Toolbar.tipInsertImage": "Insérer une image", "DE.Views.Toolbar.tipInsertImage": "Insérer une image",
"DE.Views.Toolbar.tipInsertNum": "Insérer le numéro de page", "DE.Views.Toolbar.tipInsertNum": "Insérer le numéro de page",
"DE.Views.Toolbar.tipInsertShape": "Insérer une forme automatique", "DE.Views.Toolbar.tipInsertShape": "Insérer une forme automatique",
"DE.Views.Toolbar.tipInsertSymbol": "Insérer un symbole",
"DE.Views.Toolbar.tipInsertTable": "Insérer un tableau", "DE.Views.Toolbar.tipInsertTable": "Insérer un tableau",
"DE.Views.Toolbar.tipInsertText": "Insérez zone de texte", "DE.Views.Toolbar.tipInsertText": "Insérez zone de texte",
"DE.Views.Toolbar.tipInsertTextArt": "Insérer Text Art", "DE.Views.Toolbar.tipInsertTextArt": "Insérer Text Art",

View file

@ -1992,7 +1992,6 @@
"DE.Views.Toolbar.tipFontColor": "Betűszín", "DE.Views.Toolbar.tipFontColor": "Betűszín",
"DE.Views.Toolbar.tipFontName": "Betűtípus", "DE.Views.Toolbar.tipFontName": "Betűtípus",
"DE.Views.Toolbar.tipFontSize": "Betűméret", "DE.Views.Toolbar.tipFontSize": "Betűméret",
"DE.Views.Toolbar.tipHAligh": "Vízszintes rendezés",
"DE.Views.Toolbar.tipHighlightColor": "Kiemelő szín", "DE.Views.Toolbar.tipHighlightColor": "Kiemelő szín",
"DE.Views.Toolbar.tipImgAlign": "Objektumok rendezése", "DE.Views.Toolbar.tipImgAlign": "Objektumok rendezése",
"DE.Views.Toolbar.tipImgGroup": "Objektum csoportok", "DE.Views.Toolbar.tipImgGroup": "Objektum csoportok",

View file

@ -10,6 +10,7 @@
"Common.Controllers.ExternalMergeEditor.warningText": "L'oggetto è disabilitato perché un altro utente lo sta modificando.", "Common.Controllers.ExternalMergeEditor.warningText": "L'oggetto è disabilitato perché un altro utente lo sta modificando.",
"Common.Controllers.ExternalMergeEditor.warningTitle": "Avviso", "Common.Controllers.ExternalMergeEditor.warningTitle": "Avviso",
"Common.Controllers.History.notcriticalErrorTitle": "Avviso", "Common.Controllers.History.notcriticalErrorTitle": "Avviso",
"Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Al fine di confrontare i documenti, tutte le modifiche rilevate verranno considerate accettate. Vuoi continuare?",
"Common.Controllers.ReviewChanges.textAtLeast": "almeno", "Common.Controllers.ReviewChanges.textAtLeast": "almeno",
"Common.Controllers.ReviewChanges.textAuto": "auto", "Common.Controllers.ReviewChanges.textAuto": "auto",
"Common.Controllers.ReviewChanges.textBaseline": "Baseline", "Common.Controllers.ReviewChanges.textBaseline": "Baseline",
@ -68,15 +69,50 @@
"Common.Controllers.ReviewChanges.textTableRowsDel": "<b>Righe tabella eliminate</b>", "Common.Controllers.ReviewChanges.textTableRowsDel": "<b>Righe tabella eliminate</b>",
"Common.Controllers.ReviewChanges.textTabs": "Modifica Schede", "Common.Controllers.ReviewChanges.textTabs": "Modifica Schede",
"Common.Controllers.ReviewChanges.textUnderline": "Sottolineato", "Common.Controllers.ReviewChanges.textUnderline": "Sottolineato",
"Common.Controllers.ReviewChanges.textUrl": "Incolla l'URL di un documento",
"Common.Controllers.ReviewChanges.textWidow": "Widow control", "Common.Controllers.ReviewChanges.textWidow": "Widow control",
"Common.define.chartData.textArea": "Aerogramma", "Common.define.chartData.textArea": "Aerogramma",
"Common.define.chartData.textBar": "A barre", "Common.define.chartData.textBar": "A barre",
"Common.define.chartData.textCharts": "Grafici",
"Common.define.chartData.textColumn": "Istogramma", "Common.define.chartData.textColumn": "Istogramma",
"Common.define.chartData.textLine": "A linee", "Common.define.chartData.textLine": "A linee",
"Common.define.chartData.textPie": "A torta", "Common.define.chartData.textPie": "A torta",
"Common.define.chartData.textPoint": "XY (A dispersione)", "Common.define.chartData.textPoint": "XY (A dispersione)",
"Common.define.chartData.textStock": "Azionario", "Common.define.chartData.textStock": "Azionario",
"Common.define.chartData.textSurface": "Superficie", "Common.define.chartData.textSurface": "Superficie",
"Common.UI.Calendar.textApril": "Aprile",
"Common.UI.Calendar.textAugust": "Agosto",
"Common.UI.Calendar.textDecember": "Dicembre",
"Common.UI.Calendar.textFebruary": "Febbraio",
"Common.UI.Calendar.textJanuary": "Gennaio",
"Common.UI.Calendar.textJuly": "Luglio",
"Common.UI.Calendar.textJune": "Giugno",
"Common.UI.Calendar.textMarch": "Marzo",
"Common.UI.Calendar.textMay": "Maggio",
"Common.UI.Calendar.textMonths": "mesi",
"Common.UI.Calendar.textNovember": "Novembre",
"Common.UI.Calendar.textOctober": "Ottobre",
"Common.UI.Calendar.textSeptember": "Settembre",
"Common.UI.Calendar.textShortApril": "Apr",
"Common.UI.Calendar.textShortAugust": "Ago",
"Common.UI.Calendar.textShortDecember": "Dic",
"Common.UI.Calendar.textShortFebruary": "Feb",
"Common.UI.Calendar.textShortFriday": "Ven",
"Common.UI.Calendar.textShortJanuary": "Gen",
"Common.UI.Calendar.textShortJuly": "Giu",
"Common.UI.Calendar.textShortJune": "Giu",
"Common.UI.Calendar.textShortMarch": "Mar",
"Common.UI.Calendar.textShortMay": "Maggio",
"Common.UI.Calendar.textShortMonday": "Lun",
"Common.UI.Calendar.textShortNovember": "Nov",
"Common.UI.Calendar.textShortOctober": "Ott",
"Common.UI.Calendar.textShortSaturday": "Sab",
"Common.UI.Calendar.textShortSeptember": "Set",
"Common.UI.Calendar.textShortSunday": "Dom",
"Common.UI.Calendar.textShortThursday": "Gio",
"Common.UI.Calendar.textShortTuesday": "Mar",
"Common.UI.Calendar.textShortWednesday": "Mer",
"Common.UI.Calendar.textYears": "Anni",
"Common.UI.ComboBorderSize.txtNoBorders": "Nessun bordo", "Common.UI.ComboBorderSize.txtNoBorders": "Nessun bordo",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Nessun bordo", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Nessun bordo",
"Common.UI.ComboDataView.emptyComboText": "Nessuno stile", "Common.UI.ComboDataView.emptyComboText": "Nessuno stile",
@ -223,12 +259,19 @@
"Common.Views.RenameDialog.txtInvalidName": "Il nome del file non può contenere nessuno dei seguenti caratteri:", "Common.Views.RenameDialog.txtInvalidName": "Il nome del file non può contenere nessuno dei seguenti caratteri:",
"Common.Views.ReviewChanges.hintNext": "Alla modifica successiva", "Common.Views.ReviewChanges.hintNext": "Alla modifica successiva",
"Common.Views.ReviewChanges.hintPrev": "Alla modifica precedente", "Common.Views.ReviewChanges.hintPrev": "Alla modifica precedente",
"Common.Views.ReviewChanges.mniFromFile": "Documento da File",
"Common.Views.ReviewChanges.mniFromStorage": "Documento da spazio di archiviazione",
"Common.Views.ReviewChanges.mniFromUrl": "Documento da URL",
"Common.Views.ReviewChanges.mniSettings": "Impostazioni di confronto",
"Common.Views.ReviewChanges.strFast": "Rapido", "Common.Views.ReviewChanges.strFast": "Rapido",
"Common.Views.ReviewChanges.strFastDesc": "co-editing in teampo reale. Tutte le modifiche vengono salvate automaticamente.", "Common.Views.ReviewChanges.strFastDesc": "co-editing in teampo reale. Tutte le modifiche vengono salvate automaticamente.",
"Common.Views.ReviewChanges.strStrict": "Necessita di conferma", "Common.Views.ReviewChanges.strStrict": "Necessita di conferma",
"Common.Views.ReviewChanges.strStrictDesc": "Usa il pulsante 'Salva' per sincronizzare le tue modifiche con quelle effettuate da altri.", "Common.Views.ReviewChanges.strStrictDesc": "Usa il pulsante 'Salva' per sincronizzare le tue modifiche con quelle effettuate da altri.",
"Common.Views.ReviewChanges.tipAcceptCurrent": "Accetta la modifica corrente", "Common.Views.ReviewChanges.tipAcceptCurrent": "Accetta la modifica corrente",
"Common.Views.ReviewChanges.tipCoAuthMode": "Imposta modalità co-editing", "Common.Views.ReviewChanges.tipCoAuthMode": "Imposta modalità co-editing",
"Common.Views.ReviewChanges.tipCommentRem": "Rimuovi i commenti",
"Common.Views.ReviewChanges.tipCommentRemCurrent": "Rimuovi i commenti correnti",
"Common.Views.ReviewChanges.tipCompare": "Confronta il documento corrente con un altro",
"Common.Views.ReviewChanges.tipHistory": "Mostra Cronologia versioni", "Common.Views.ReviewChanges.tipHistory": "Mostra Cronologia versioni",
"Common.Views.ReviewChanges.tipRejectCurrent": "Annulla la modifica attuale", "Common.Views.ReviewChanges.tipRejectCurrent": "Annulla la modifica attuale",
"Common.Views.ReviewChanges.tipReview": "Traccia cambiamenti", "Common.Views.ReviewChanges.tipReview": "Traccia cambiamenti",
@ -243,6 +286,12 @@
"Common.Views.ReviewChanges.txtChat": "Chat", "Common.Views.ReviewChanges.txtChat": "Chat",
"Common.Views.ReviewChanges.txtClose": "Chiudi", "Common.Views.ReviewChanges.txtClose": "Chiudi",
"Common.Views.ReviewChanges.txtCoAuthMode": "Modalità di co-editing", "Common.Views.ReviewChanges.txtCoAuthMode": "Modalità di co-editing",
"Common.Views.ReviewChanges.txtCommentRemAll": "Rimuovi tutti i commenti",
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Rimuovi i commenti correnti",
"Common.Views.ReviewChanges.txtCommentRemMy": "Rimuovi i miei commenti",
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Rimuovi i miei commenti attuali",
"Common.Views.ReviewChanges.txtCommentRemove": "Elimina",
"Common.Views.ReviewChanges.txtCompare": "Confrontare",
"Common.Views.ReviewChanges.txtDocLang": "Lingua", "Common.Views.ReviewChanges.txtDocLang": "Lingua",
"Common.Views.ReviewChanges.txtFinal": "Tutti i cambiamenti accettati (anteprima)", "Common.Views.ReviewChanges.txtFinal": "Tutti i cambiamenti accettati (anteprima)",
"Common.Views.ReviewChanges.txtFinalCap": "Finale", "Common.Views.ReviewChanges.txtFinalCap": "Finale",
@ -277,6 +326,7 @@
"Common.Views.ReviewPopover.textEdit": "OK", "Common.Views.ReviewPopover.textEdit": "OK",
"Common.Views.ReviewPopover.textFollowMove": "Segui mossa", "Common.Views.ReviewPopover.textFollowMove": "Segui mossa",
"Common.Views.ReviewPopover.textMention": "+mention fornirà l'accesso al documento e invierà un'e-mail", "Common.Views.ReviewPopover.textMention": "+mention fornirà l'accesso al documento e invierà un'e-mail",
"Common.Views.ReviewPopover.textMentionNotify": "+mention avviserà l'utente via e-mail",
"Common.Views.ReviewPopover.textOpenAgain": "Apri di nuovo", "Common.Views.ReviewPopover.textOpenAgain": "Apri di nuovo",
"Common.Views.ReviewPopover.textReply": "Rispondi", "Common.Views.ReviewPopover.textReply": "Rispondi",
"Common.Views.ReviewPopover.textResolve": "Risolvere", "Common.Views.ReviewPopover.textResolve": "Risolvere",
@ -307,11 +357,16 @@
"Common.Views.SignSettingsDialog.textShowDate": "Mostra la data nella riga di Firma", "Common.Views.SignSettingsDialog.textShowDate": "Mostra la data nella riga di Firma",
"Common.Views.SignSettingsDialog.textTitle": "Impostazioni firma", "Common.Views.SignSettingsDialog.textTitle": "Impostazioni firma",
"Common.Views.SignSettingsDialog.txtEmpty": "Campo obbligatorio", "Common.Views.SignSettingsDialog.txtEmpty": "Campo obbligatorio",
"Common.Views.SymbolTableDialog.textCode": "valore Unicode HEX",
"Common.Views.SymbolTableDialog.textFont": "Carattere",
"Common.Views.SymbolTableDialog.textRange": "Intervallo",
"Common.Views.SymbolTableDialog.textRecent": "Simboli usati di recente",
"Common.Views.SymbolTableDialog.textTitle": "Simbolo",
"DE.Controllers.LeftMenu.leavePageText": "Tutte le modifiche non salvate nel documento verranno perse.<br> Clicca \"Annulla\" e poi \"Salva\" per salvarle. Clicca \"OK\" per annullare tutte le modifiche non salvate.", "DE.Controllers.LeftMenu.leavePageText": "Tutte le modifiche non salvate nel documento verranno perse.<br> Clicca \"Annulla\" e poi \"Salva\" per salvarle. Clicca \"OK\" per annullare tutte le modifiche non salvate.",
"DE.Controllers.LeftMenu.newDocumentTitle": "Documento senza nome", "DE.Controllers.LeftMenu.newDocumentTitle": "Documento senza nome",
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Avviso", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Avviso",
"DE.Controllers.LeftMenu.requestEditRightsText": "Richiesta di autorizzazione di modifica...", "DE.Controllers.LeftMenu.requestEditRightsText": "Richiesta di autorizzazione di modifica...",
"DE.Controllers.LeftMenu.textLoadHistory": "Loading version history...", "DE.Controllers.LeftMenu.textLoadHistory": "Caricamento Cronologia....",
"DE.Controllers.LeftMenu.textNoTextFound": "I dati da cercare non sono stati trovati. Modifica i parametri di ricerca.", "DE.Controllers.LeftMenu.textNoTextFound": "I dati da cercare non sono stati trovati. Modifica i parametri di ricerca.",
"DE.Controllers.LeftMenu.textReplaceSkipped": "La sostituzione è stata effettuata. {0} occorrenze sono state saltate.", "DE.Controllers.LeftMenu.textReplaceSkipped": "La sostituzione è stata effettuata. {0} occorrenze sono state saltate.",
"DE.Controllers.LeftMenu.textReplaceSuccess": "La ricerca è stata effettuata. Occorrenze sostituite: {0}", "DE.Controllers.LeftMenu.textReplaceSuccess": "La ricerca è stata effettuata. Occorrenze sostituite: {0}",
@ -337,10 +392,12 @@
"DE.Controllers.Main.errorDataEncrypted": "Le modifiche crittografate sono state ricevute, non possono essere decifrate.", "DE.Controllers.Main.errorDataEncrypted": "Le modifiche crittografate sono state ricevute, non possono essere decifrate.",
"DE.Controllers.Main.errorDataRange": "Intervallo di dati non corretto.", "DE.Controllers.Main.errorDataRange": "Intervallo di dati non corretto.",
"DE.Controllers.Main.errorDefaultMessage": "Codice errore: %1", "DE.Controllers.Main.errorDefaultMessage": "Codice errore: %1",
"DE.Controllers.Main.errorDirectUrl": "Verifica il link al documento.<br>Questo link deve essere un link diretto al file per il download.",
"DE.Controllers.Main.errorEditingDownloadas": "Si è verificato un errore durante il lavoro con il documento.<br>Utilizzare l'opzione 'Scarica come ...' per salvare la copia di backup del file sul disco rigido del computer.", "DE.Controllers.Main.errorEditingDownloadas": "Si è verificato un errore durante il lavoro con il documento.<br>Utilizzare l'opzione 'Scarica come ...' per salvare la copia di backup del file sul disco rigido del computer.",
"DE.Controllers.Main.errorEditingSaveas": "Si è verificato un errore durante il lavoro con il documento.<br>Utilizzare l'opzione 'Salva come ...' per salvare la copia di backup del file sul disco rigido del computer.", "DE.Controllers.Main.errorEditingSaveas": "Si è verificato un errore durante il lavoro con il documento.<br>Utilizzare l'opzione 'Salva come ...' per salvare la copia di backup del file sul disco rigido del computer.",
"DE.Controllers.Main.errorEmailClient": "Non è stato trovato nessun client di posta elettronica.", "DE.Controllers.Main.errorEmailClient": "Non è stato trovato nessun client di posta elettronica.",
"DE.Controllers.Main.errorFilePassProtect": "Il file è protetto da una password. Impossibile aprirlo.", "DE.Controllers.Main.errorFilePassProtect": "Il file è protetto da una password. Impossibile aprirlo.",
"DE.Controllers.Main.errorFileSizeExceed": "La dimensione del file supera la limitazione impostata per il tuo server.<br>Per i dettagli, contatta l'amministratore del Document server.",
"DE.Controllers.Main.errorForceSave": "Si è verificato un errore durante il salvataggio del file. Utilizzare l'opzione 'Scarica come' per salvare il file sul disco rigido del computer o riprovare più tardi.", "DE.Controllers.Main.errorForceSave": "Si è verificato un errore durante il salvataggio del file. Utilizzare l'opzione 'Scarica come' per salvare il file sul disco rigido del computer o riprovare più tardi.",
"DE.Controllers.Main.errorKeyEncrypt": "Descrittore di chiave sconosciuto", "DE.Controllers.Main.errorKeyEncrypt": "Descrittore di chiave sconosciuto",
"DE.Controllers.Main.errorKeyExpire": "Descrittore di chiave scaduto", "DE.Controllers.Main.errorKeyExpire": "Descrittore di chiave scaduto",
@ -355,6 +412,7 @@
"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 file è stata moificata. La pagina verrà ricaricata.", "DE.Controllers.Main.errorUpdateVersion": "La versione file è stata moificata. La pagina verrà ricaricata.",
"DE.Controllers.Main.errorUpdateVersionOnDisconnect": "La connessione Internet è stata ripristinata e la versione del file è stata modificata.<br>Prima di poter continuare a lavorare, è necessario scaricare il file o copiarne il contenuto per assicurarsi che non vada perso nulla, successivamente ricaricare questa pagina.",
"DE.Controllers.Main.errorUserDrop": "Impossibile accedere al file subito.", "DE.Controllers.Main.errorUserDrop": "Impossibile accedere al file subito.",
"DE.Controllers.Main.errorUsersExceed": "E' stato superato il numero di utenti consentito dal piano tariffario", "DE.Controllers.Main.errorUsersExceed": "E' stato superato il numero di utenti consentito dal piano tariffario",
"DE.Controllers.Main.errorViewerDisconnect": "La connessione è stata persa. Puoi ancora vedere il documento,<br>ma non puoi scaricarlo o stamparlo fino a che la connessione non sarà ripristinata.", "DE.Controllers.Main.errorViewerDisconnect": "La connessione è stata persa. Puoi ancora vedere il documento,<br>ma non puoi scaricarlo o stamparlo fino a che la connessione non sarà ripristinata.",
@ -415,6 +473,7 @@
"DE.Controllers.Main.txtButtons": "Bottoni", "DE.Controllers.Main.txtButtons": "Bottoni",
"DE.Controllers.Main.txtCallouts": "Callout", "DE.Controllers.Main.txtCallouts": "Callout",
"DE.Controllers.Main.txtCharts": "Grafici", "DE.Controllers.Main.txtCharts": "Grafici",
"DE.Controllers.Main.txtChoose": "Scegli un oggetto.",
"DE.Controllers.Main.txtCurrentDocument": "Documento Corrente", "DE.Controllers.Main.txtCurrentDocument": "Documento Corrente",
"DE.Controllers.Main.txtDiagramTitle": "Titolo diagramma", "DE.Controllers.Main.txtDiagramTitle": "Titolo diagramma",
"DE.Controllers.Main.txtEditingMode": "Impostazione modo di modifica...", "DE.Controllers.Main.txtEditingMode": "Impostazione modo di modifica...",
@ -429,12 +488,15 @@
"DE.Controllers.Main.txtHyperlink": "Collegamento ipertestuale", "DE.Controllers.Main.txtHyperlink": "Collegamento ipertestuale",
"DE.Controllers.Main.txtIndTooLarge": "Indice troppo grande", "DE.Controllers.Main.txtIndTooLarge": "Indice troppo grande",
"DE.Controllers.Main.txtLines": "Linee", "DE.Controllers.Main.txtLines": "Linee",
"DE.Controllers.Main.txtMainDocOnly": "Errore! Solo documento principale.",
"DE.Controllers.Main.txtMath": "Matematica", "DE.Controllers.Main.txtMath": "Matematica",
"DE.Controllers.Main.txtMissArg": "Argomento mancante", "DE.Controllers.Main.txtMissArg": "Argomento mancante",
"DE.Controllers.Main.txtMissOperator": "Operatore mancante", "DE.Controllers.Main.txtMissOperator": "Operatore mancante",
"DE.Controllers.Main.txtNeedSynchronize": "Ci sono aggiornamenti disponibili", "DE.Controllers.Main.txtNeedSynchronize": "Ci sono aggiornamenti disponibili",
"DE.Controllers.Main.txtNoTableOfContents": "Sommario non trovato", "DE.Controllers.Main.txtNoTableOfContents": "Sommario non trovato",
"DE.Controllers.Main.txtNoText": "Errore! Nessuno stile specificato per il testo nel documento.",
"DE.Controllers.Main.txtNotInTable": "Non è in Tabella", "DE.Controllers.Main.txtNotInTable": "Non è in Tabella",
"DE.Controllers.Main.txtNotValidBookmark": "Errore! Non è un riferimento personale valido per i segnalibri.",
"DE.Controllers.Main.txtOddPage": "Pagina dispari", "DE.Controllers.Main.txtOddPage": "Pagina dispari",
"DE.Controllers.Main.txtOnPage": "sulla pagina", "DE.Controllers.Main.txtOnPage": "sulla pagina",
"DE.Controllers.Main.txtRectangles": "Rettangoli", "DE.Controllers.Main.txtRectangles": "Rettangoli",
@ -613,6 +675,7 @@
"DE.Controllers.Main.txtShape_wedgeRectCallout": "Callout Rettangolare", "DE.Controllers.Main.txtShape_wedgeRectCallout": "Callout Rettangolare",
"DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Callout Rettangolare arrotondato", "DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Callout Rettangolare arrotondato",
"DE.Controllers.Main.txtStarsRibbons": "Stelle e nastri", "DE.Controllers.Main.txtStarsRibbons": "Stelle e nastri",
"DE.Controllers.Main.txtStyle_Caption": "Didascalia",
"DE.Controllers.Main.txtStyle_footnote_text": "Nota a piè di pagina", "DE.Controllers.Main.txtStyle_footnote_text": "Nota a piè di pagina",
"DE.Controllers.Main.txtStyle_Heading_1": "Titolo 1", "DE.Controllers.Main.txtStyle_Heading_1": "Titolo 1",
"DE.Controllers.Main.txtStyle_Heading_2": "Titolo 2", "DE.Controllers.Main.txtStyle_Heading_2": "Titolo 2",
@ -640,6 +703,9 @@
"DE.Controllers.Main.txtZeroDivide": "Diviso Zero", "DE.Controllers.Main.txtZeroDivide": "Diviso Zero",
"DE.Controllers.Main.unknownErrorText": "Errore sconosciuto.", "DE.Controllers.Main.unknownErrorText": "Errore sconosciuto.",
"DE.Controllers.Main.unsupportedBrowserErrorText": "Il tuo browser non è supportato.", "DE.Controllers.Main.unsupportedBrowserErrorText": "Il tuo browser non è supportato.",
"DE.Controllers.Main.uploadDocExtMessage": "Formato documento sconosciuto.",
"DE.Controllers.Main.uploadDocFileCountMessage": "Nessun documento caricato.",
"DE.Controllers.Main.uploadDocSizeMessage": "Il limite massimo delle dimensioni del documento è stato superato.",
"DE.Controllers.Main.uploadImageExtMessage": "Formato immagine sconosciuto.", "DE.Controllers.Main.uploadImageExtMessage": "Formato immagine sconosciuto.",
"DE.Controllers.Main.uploadImageFileCountMessage": "Nessun immagine caricata.", "DE.Controllers.Main.uploadImageFileCountMessage": "Nessun immagine caricata.",
"DE.Controllers.Main.uploadImageSizeMessage": "E' stata superata la dimensione massima.", "DE.Controllers.Main.uploadImageSizeMessage": "E' stata superata la dimensione massima.",
@ -668,6 +734,7 @@
"DE.Controllers.Toolbar.textFontSizeErr": "Il valore inserito non è corretto.<br>Inserisci un valore numerico compreso tra 1 e 100", "DE.Controllers.Toolbar.textFontSizeErr": "Il valore inserito non è corretto.<br>Inserisci un valore numerico compreso tra 1 e 100",
"DE.Controllers.Toolbar.textFraction": "Frazioni", "DE.Controllers.Toolbar.textFraction": "Frazioni",
"DE.Controllers.Toolbar.textFunction": "Functions", "DE.Controllers.Toolbar.textFunction": "Functions",
"DE.Controllers.Toolbar.textInsert": "Inserisci",
"DE.Controllers.Toolbar.textIntegral": "Integrali", "DE.Controllers.Toolbar.textIntegral": "Integrali",
"DE.Controllers.Toolbar.textLargeOperator": "Large Operators", "DE.Controllers.Toolbar.textLargeOperator": "Large Operators",
"DE.Controllers.Toolbar.textLimitAndLog": "Limits And Logarithms", "DE.Controllers.Toolbar.textLimitAndLog": "Limits And Logarithms",
@ -997,6 +1064,8 @@
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
"DE.Controllers.Viewport.textFitPage": "Adatta alla pagina", "DE.Controllers.Viewport.textFitPage": "Adatta alla pagina",
"DE.Controllers.Viewport.textFitWidth": "Adatta alla larghezza", "DE.Controllers.Viewport.textFitWidth": "Adatta alla larghezza",
"DE.Views.AddNewCaptionLabelDialog.textLabel": "Etichetta:",
"DE.Views.AddNewCaptionLabelDialog.textLabelError": "L'etichetta non deve essere vuota.",
"DE.Views.BookmarksDialog.textAdd": "Aggiungi", "DE.Views.BookmarksDialog.textAdd": "Aggiungi",
"DE.Views.BookmarksDialog.textBookmarkName": "Nome segnalibro", "DE.Views.BookmarksDialog.textBookmarkName": "Nome segnalibro",
"DE.Views.BookmarksDialog.textClose": "Chiudi", "DE.Views.BookmarksDialog.textClose": "Chiudi",
@ -1010,16 +1079,44 @@
"DE.Views.BookmarksDialog.textSort": "Ordina per", "DE.Views.BookmarksDialog.textSort": "Ordina per",
"DE.Views.BookmarksDialog.textTitle": "Segnalibri", "DE.Views.BookmarksDialog.textTitle": "Segnalibri",
"DE.Views.BookmarksDialog.txtInvalidName": "il nome del Segnalibro può contenere solo lettere, numeri e underscore, e dovrebbe iniziare con la lettera", "DE.Views.BookmarksDialog.txtInvalidName": "il nome del Segnalibro può contenere solo lettere, numeri e underscore, e dovrebbe iniziare con la lettera",
"DE.Views.CaptionDialog.textAdd": "Aggiungi",
"DE.Views.CaptionDialog.textAfter": "Dopo",
"DE.Views.CaptionDialog.textBefore": "Prima", "DE.Views.CaptionDialog.textBefore": "Prima",
"DE.Views.CaptionDialog.textCaption": "Didascalia",
"DE.Views.CaptionDialog.textChapter": "Il capitolo inizia con lo stile",
"DE.Views.CaptionDialog.textChapterInc": "Includi il numero del capitolo",
"DE.Views.CaptionDialog.textColon": "due punti", "DE.Views.CaptionDialog.textColon": "due punti",
"DE.Views.CaptionDialog.textDash": "trattino",
"DE.Views.CaptionDialog.textDelete": "Elimina",
"DE.Views.CaptionDialog.textEquation": "Equazione",
"DE.Views.CaptionDialog.textExamples": "Esempi: Tabella 2-A, Immagine 1.IV",
"DE.Views.CaptionDialog.textExclude": "Escludere l'etichetta dalla didascalia",
"DE.Views.CaptionDialog.textFigure": "Figura",
"DE.Views.CaptionDialog.textHyphen": "lineetta d'unione",
"DE.Views.CaptionDialog.textInsert": "Inserisci",
"DE.Views.CaptionDialog.textLabel": "Etichetta",
"DE.Views.CaptionDialog.textLongDash": "trattino lungo",
"DE.Views.CaptionDialog.textNumbering": "Numerazione",
"DE.Views.CaptionDialog.textPeriod": "punto",
"DE.Views.CaptionDialog.textSeparator": "Usa separatore", "DE.Views.CaptionDialog.textSeparator": "Usa separatore",
"DE.Views.CaptionDialog.textTable": "Tabella",
"DE.Views.CaptionDialog.textTitle": "Inserisci didascalia",
"DE.Views.CellsAddDialog.textCol": "Colonne", "DE.Views.CellsAddDialog.textCol": "Colonne",
"DE.Views.CellsAddDialog.textDown": "Sotto il cursore",
"DE.Views.CellsAddDialog.textLeft": "A sinistra",
"DE.Views.CellsAddDialog.textRight": "A destra",
"DE.Views.CellsAddDialog.textRow": "Righe",
"DE.Views.CellsAddDialog.textTitle": "Inserisci alcuni",
"DE.Views.CellsAddDialog.textUp": "Sopra il cursore",
"DE.Views.CellsRemoveDialog.textCol": "Elimina colonna",
"DE.Views.CellsRemoveDialog.textLeft": "Sposta celle a sinistra",
"DE.Views.CellsRemoveDialog.textRow": "Elimina riga",
"DE.Views.CellsRemoveDialog.textTitle": "Elimina celle", "DE.Views.CellsRemoveDialog.textTitle": "Elimina celle",
"DE.Views.ChartSettings.textAdvanced": "Mostra impostazioni avanzate", "DE.Views.ChartSettings.textAdvanced": "Mostra impostazioni avanzate",
"DE.Views.ChartSettings.textChartType": "Cambia tipo grafico", "DE.Views.ChartSettings.textChartType": "Cambia tipo grafico",
"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.textOriginalSize": "Predefinita", "DE.Views.ChartSettings.textOriginalSize": "Dimensione reale",
"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",
@ -1033,10 +1130,27 @@
"DE.Views.ChartSettings.txtTight": "Ravvicinato", "DE.Views.ChartSettings.txtTight": "Ravvicinato",
"DE.Views.ChartSettings.txtTitle": "Grafico", "DE.Views.ChartSettings.txtTitle": "Grafico",
"DE.Views.ChartSettings.txtTopAndBottom": "Sopra e sotto", "DE.Views.ChartSettings.txtTopAndBottom": "Sopra e sotto",
"DE.Views.CompareSettingsDialog.textChar": "Livello Carattere",
"DE.Views.CompareSettingsDialog.textShow": "Mostra modifiche a",
"DE.Views.CompareSettingsDialog.textTitle": "Impostazioni di confronto",
"DE.Views.CompareSettingsDialog.textWord": "livello di parola",
"DE.Views.ControlSettingsDialog.strGeneral": "Generale",
"DE.Views.ControlSettingsDialog.textAdd": "Aggiungi",
"DE.Views.ControlSettingsDialog.textAppearance": "Aspetto", "DE.Views.ControlSettingsDialog.textAppearance": "Aspetto",
"DE.Views.ControlSettingsDialog.textApplyAll": "Applica a tutti", "DE.Views.ControlSettingsDialog.textApplyAll": "Applica a tutti",
"DE.Views.ControlSettingsDialog.textBox": "Rettangolo di selezione", "DE.Views.ControlSettingsDialog.textBox": "Rettangolo di selezione",
"DE.Views.ControlSettingsDialog.textChange": "Modifica",
"DE.Views.ControlSettingsDialog.textCheckbox": "Casella di controllo",
"DE.Views.ControlSettingsDialog.textChecked": "Simbolo Controllato",
"DE.Views.ControlSettingsDialog.textColor": "Colore", "DE.Views.ControlSettingsDialog.textColor": "Colore",
"DE.Views.ControlSettingsDialog.textCombobox": "Casella combinata",
"DE.Views.ControlSettingsDialog.textDate": "Formato data",
"DE.Views.ControlSettingsDialog.textDelete": "Elimina",
"DE.Views.ControlSettingsDialog.textDisplayName": "Visualizza nome",
"DE.Views.ControlSettingsDialog.textDown": "Giù",
"DE.Views.ControlSettingsDialog.textDropDown": "Elenco a discesa",
"DE.Views.ControlSettingsDialog.textFormat": "Visualizza la data in questo modo",
"DE.Views.ControlSettingsDialog.textLang": "Lingua",
"DE.Views.ControlSettingsDialog.textLock": "Blocca", "DE.Views.ControlSettingsDialog.textLock": "Blocca",
"DE.Views.ControlSettingsDialog.textName": "Titolo", "DE.Views.ControlSettingsDialog.textName": "Titolo",
"DE.Views.ControlSettingsDialog.textNewColor": "Colore personalizzato", "DE.Views.ControlSettingsDialog.textNewColor": "Colore personalizzato",
@ -1045,6 +1159,10 @@
"DE.Views.ControlSettingsDialog.textSystemColor": "Sistema", "DE.Views.ControlSettingsDialog.textSystemColor": "Sistema",
"DE.Views.ControlSettingsDialog.textTag": "Etichetta", "DE.Views.ControlSettingsDialog.textTag": "Etichetta",
"DE.Views.ControlSettingsDialog.textTitle": "Impostazioni di controllo del contenuto", "DE.Views.ControlSettingsDialog.textTitle": "Impostazioni di controllo del contenuto",
"DE.Views.ControlSettingsDialog.textUnchecked": "simbolo non controllato",
"DE.Views.ControlSettingsDialog.textUp": "Verso l'alto",
"DE.Views.ControlSettingsDialog.textValue": "Valore",
"DE.Views.ControlSettingsDialog.tipChange": "Cambia simbolo",
"DE.Views.ControlSettingsDialog.txtLockDelete": "Il controllo del contenuto non può essere eliminato", "DE.Views.ControlSettingsDialog.txtLockDelete": "Il controllo del contenuto non può essere eliminato",
"DE.Views.ControlSettingsDialog.txtLockEdit": "I contenuti non possono essere modificati", "DE.Views.ControlSettingsDialog.txtLockEdit": "I contenuti non possono essere modificati",
"DE.Views.CustomColumnsDialog.textColumns": "Numero di colonne", "DE.Views.CustomColumnsDialog.textColumns": "Numero di colonne",
@ -1097,7 +1215,7 @@
"DE.Views.DocumentHolder.mergeCellsText": "Unisci celle", "DE.Views.DocumentHolder.mergeCellsText": "Unisci celle",
"DE.Views.DocumentHolder.moreText": "Più varianti...", "DE.Views.DocumentHolder.moreText": "Più varianti...",
"DE.Views.DocumentHolder.noSpellVariantsText": "Nessuna variante", "DE.Views.DocumentHolder.noSpellVariantsText": "Nessuna variante",
"DE.Views.DocumentHolder.originalSizeText": "Dimensione predefinita", "DE.Views.DocumentHolder.originalSizeText": "Dimensione reale",
"DE.Views.DocumentHolder.paragraphText": "Paragrafo", "DE.Views.DocumentHolder.paragraphText": "Paragrafo",
"DE.Views.DocumentHolder.removeHyperlinkText": "Elimina collegamento ipertestuale", "DE.Views.DocumentHolder.removeHyperlinkText": "Elimina collegamento ipertestuale",
"DE.Views.DocumentHolder.rightText": "A destra", "DE.Views.DocumentHolder.rightText": "A destra",
@ -1156,6 +1274,7 @@
"DE.Views.DocumentHolder.textRotate90": "Ruota 90° a destra", "DE.Views.DocumentHolder.textRotate90": "Ruota 90° a destra",
"DE.Views.DocumentHolder.textSeparateList": "Elenco separato", "DE.Views.DocumentHolder.textSeparateList": "Elenco separato",
"DE.Views.DocumentHolder.textSettings": "Impostazioni", "DE.Views.DocumentHolder.textSettings": "Impostazioni",
"DE.Views.DocumentHolder.textSeveral": "Alcune righe/colonne",
"DE.Views.DocumentHolder.textShapeAlignBottom": "Allinea in basso", "DE.Views.DocumentHolder.textShapeAlignBottom": "Allinea in basso",
"DE.Views.DocumentHolder.textShapeAlignCenter": "Allinea al centro", "DE.Views.DocumentHolder.textShapeAlignCenter": "Allinea al centro",
"DE.Views.DocumentHolder.textShapeAlignLeft": "Allinea a sinistra", "DE.Views.DocumentHolder.textShapeAlignLeft": "Allinea a sinistra",
@ -1197,6 +1316,7 @@
"DE.Views.DocumentHolder.txtDeleteRadical": "Rimuovi radicale", "DE.Views.DocumentHolder.txtDeleteRadical": "Rimuovi radicale",
"DE.Views.DocumentHolder.txtDistribHor": "Distribuisci orizzontalmente", "DE.Views.DocumentHolder.txtDistribHor": "Distribuisci orizzontalmente",
"DE.Views.DocumentHolder.txtDistribVert": "Distribuisci verticalmente", "DE.Views.DocumentHolder.txtDistribVert": "Distribuisci verticalmente",
"DE.Views.DocumentHolder.txtEmpty": "(Vuoto)",
"DE.Views.DocumentHolder.txtFractionLinear": "Modifica a frazione lineare", "DE.Views.DocumentHolder.txtFractionLinear": "Modifica a frazione lineare",
"DE.Views.DocumentHolder.txtFractionSkewed": "Modifica a frazione obliqua", "DE.Views.DocumentHolder.txtFractionSkewed": "Modifica a frazione obliqua",
"DE.Views.DocumentHolder.txtFractionStacked": "Modifica a frazione impilata", "DE.Views.DocumentHolder.txtFractionStacked": "Modifica a frazione impilata",
@ -1223,6 +1343,7 @@
"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": "Inserisci didascalia",
"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": "Mantieni solo il testo", "DE.Views.DocumentHolder.txtKeepTextOnly": "Mantieni solo il testo",
@ -1303,6 +1424,10 @@
"DE.Views.DropcapSettingsAdvanced.textWidth": "Larghezza", "DE.Views.DropcapSettingsAdvanced.textWidth": "Larghezza",
"DE.Views.DropcapSettingsAdvanced.tipFontName": "Tipo di carattere", "DE.Views.DropcapSettingsAdvanced.tipFontName": "Tipo di carattere",
"DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Nessun bordo", "DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Nessun bordo",
"DE.Views.EditListItemDialog.textDisplayName": "Visualizza nome",
"DE.Views.EditListItemDialog.textNameError": "Visualizza nome non può essere vuoto.",
"DE.Views.EditListItemDialog.textValue": "Valore",
"DE.Views.EditListItemDialog.textValueError": "Un elemento con lo stesso valore esiste già.",
"DE.Views.FileMenu.btnBackCaption": "Apri percorso file", "DE.Views.FileMenu.btnBackCaption": "Apri percorso file",
"DE.Views.FileMenu.btnCloseMenuCaption": "Chiudi il menù", "DE.Views.FileMenu.btnCloseMenuCaption": "Chiudi il menù",
"DE.Views.FileMenu.btnCreateNewCaption": "Crea nuovo oggetto", "DE.Views.FileMenu.btnCreateNewCaption": "Crea nuovo oggetto",
@ -1455,7 +1580,7 @@
"DE.Views.ImageSettings.textHintFlipH": "Capovolgi orizzontalmente", "DE.Views.ImageSettings.textHintFlipH": "Capovolgi orizzontalmente",
"DE.Views.ImageSettings.textHintFlipV": "Capovolgi verticalmente", "DE.Views.ImageSettings.textHintFlipV": "Capovolgi verticalmente",
"DE.Views.ImageSettings.textInsert": "Sostituisci immagine", "DE.Views.ImageSettings.textInsert": "Sostituisci immagine",
"DE.Views.ImageSettings.textOriginalSize": "Predefinita", "DE.Views.ImageSettings.textOriginalSize": "Dimensione reale",
"DE.Views.ImageSettings.textRotate90": "Ruota di 90°", "DE.Views.ImageSettings.textRotate90": "Ruota di 90°",
"DE.Views.ImageSettings.textRotation": "Rotazione", "DE.Views.ImageSettings.textRotation": "Rotazione",
"DE.Views.ImageSettings.textSize": "Dimensione", "DE.Views.ImageSettings.textSize": "Dimensione",
@ -1507,7 +1632,7 @@
"DE.Views.ImageSettingsAdvanced.textMiter": "Acuto", "DE.Views.ImageSettingsAdvanced.textMiter": "Acuto",
"DE.Views.ImageSettingsAdvanced.textMove": "Sposta oggetto con testo", "DE.Views.ImageSettingsAdvanced.textMove": "Sposta oggetto con testo",
"DE.Views.ImageSettingsAdvanced.textOptions": "Opzioni", "DE.Views.ImageSettingsAdvanced.textOptions": "Opzioni",
"DE.Views.ImageSettingsAdvanced.textOriginalSize": "Predefinita", "DE.Views.ImageSettingsAdvanced.textOriginalSize": "Dimensione reale",
"DE.Views.ImageSettingsAdvanced.textOverlap": "Consenti sovrapposizione", "DE.Views.ImageSettingsAdvanced.textOverlap": "Consenti sovrapposizione",
"DE.Views.ImageSettingsAdvanced.textPage": "Pagina", "DE.Views.ImageSettingsAdvanced.textPage": "Pagina",
"DE.Views.ImageSettingsAdvanced.textParagraph": "Paragrafo", "DE.Views.ImageSettingsAdvanced.textParagraph": "Paragrafo",
@ -1551,6 +1676,7 @@
"DE.Views.LeftMenu.txtDeveloper": "MODALITÀ SVILUPPATORE", "DE.Views.LeftMenu.txtDeveloper": "MODALITÀ SVILUPPATORE",
"DE.Views.LeftMenu.txtTrial": "Modalità di prova", "DE.Views.LeftMenu.txtTrial": "Modalità di prova",
"DE.Views.Links.capBtnBookmarks": "Segnalibro", "DE.Views.Links.capBtnBookmarks": "Segnalibro",
"DE.Views.Links.capBtnCaption": "Didascalia",
"DE.Views.Links.capBtnContentsUpdate": "Aggiorna", "DE.Views.Links.capBtnContentsUpdate": "Aggiorna",
"DE.Views.Links.capBtnInsContents": "Sommario", "DE.Views.Links.capBtnInsContents": "Sommario",
"DE.Views.Links.capBtnInsFootnote": "Nota a piè di pagina", "DE.Views.Links.capBtnInsFootnote": "Nota a piè di pagina",
@ -1565,10 +1691,28 @@
"DE.Views.Links.textUpdateAll": "Aggiorna intera tabella", "DE.Views.Links.textUpdateAll": "Aggiorna intera tabella",
"DE.Views.Links.textUpdatePages": "Aggiorna solo numeri di pagina", "DE.Views.Links.textUpdatePages": "Aggiorna solo numeri di pagina",
"DE.Views.Links.tipBookmarks": "Crea un segnalibro", "DE.Views.Links.tipBookmarks": "Crea un segnalibro",
"DE.Views.Links.tipCaption": "Inserisci didascalia",
"DE.Views.Links.tipContents": "Inserisci Sommario", "DE.Views.Links.tipContents": "Inserisci Sommario",
"DE.Views.Links.tipContentsUpdate": "Aggiorna Sommario", "DE.Views.Links.tipContentsUpdate": "Aggiorna Sommario",
"DE.Views.Links.tipInsertHyperlink": "Aggiungi collegamento ipertestuale", "DE.Views.Links.tipInsertHyperlink": "Aggiungi collegamento ipertestuale",
"DE.Views.Links.tipNotes": "Inserisci o modifica Note a piè di pagina", "DE.Views.Links.tipNotes": "Inserisci o modifica Note a piè di pagina",
"DE.Views.ListSettingsDialog.textAuto": "Automatico",
"DE.Views.ListSettingsDialog.textCenter": "Centrato",
"DE.Views.ListSettingsDialog.textLeft": "Sinistra",
"DE.Views.ListSettingsDialog.textLevel": "Livello",
"DE.Views.ListSettingsDialog.textNewColor": "Aggiungi Colore personalizzato",
"DE.Views.ListSettingsDialog.textPreview": "Anteprima",
"DE.Views.ListSettingsDialog.textRight": "Destra",
"DE.Views.ListSettingsDialog.txtAlign": "Allineamento",
"DE.Views.ListSettingsDialog.txtBullet": "Elenco puntato",
"DE.Views.ListSettingsDialog.txtColor": "Colore",
"DE.Views.ListSettingsDialog.txtFont": "Carattere e simbolo.",
"DE.Views.ListSettingsDialog.txtLikeText": "Come un testo",
"DE.Views.ListSettingsDialog.txtNone": "Nessuno",
"DE.Views.ListSettingsDialog.txtSize": "Dimensioni",
"DE.Views.ListSettingsDialog.txtSymbol": "Simbolo",
"DE.Views.ListSettingsDialog.txtTitle": "Impostazioni elenco",
"DE.Views.ListSettingsDialog.txtType": "Tipo",
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
"DE.Views.MailMergeEmailDlg.okButtonText": "Send", "DE.Views.MailMergeEmailDlg.okButtonText": "Send",
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Tema", "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Tema",
@ -1647,7 +1791,16 @@
"DE.Views.NoteSettingsDialog.textTitle": "Impostazioni delle note", "DE.Views.NoteSettingsDialog.textTitle": "Impostazioni delle note",
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Avviso", "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Avviso",
"DE.Views.PageMarginsDialog.textBottom": "In basso", "DE.Views.PageMarginsDialog.textBottom": "In basso",
"DE.Views.PageMarginsDialog.textInside": "Dentro",
"DE.Views.PageMarginsDialog.textLandscape": "Orizzontale",
"DE.Views.PageMarginsDialog.textLeft": "Left", "DE.Views.PageMarginsDialog.textLeft": "Left",
"DE.Views.PageMarginsDialog.textMirrorMargins": "Margini speculari",
"DE.Views.PageMarginsDialog.textMultiplePages": "Più pagine",
"DE.Views.PageMarginsDialog.textNormal": "Normale",
"DE.Views.PageMarginsDialog.textOrientation": "Orientamento",
"DE.Views.PageMarginsDialog.textOutside": "Fuori",
"DE.Views.PageMarginsDialog.textPortrait": "Verticale",
"DE.Views.PageMarginsDialog.textPreview": "Anteprima",
"DE.Views.PageMarginsDialog.textRight": "Right", "DE.Views.PageMarginsDialog.textRight": "Right",
"DE.Views.PageMarginsDialog.textTitle": "Margins", "DE.Views.PageMarginsDialog.textTitle": "Margins",
"DE.Views.PageMarginsDialog.textTop": "Top", "DE.Views.PageMarginsDialog.textTop": "Top",
@ -1840,6 +1993,7 @@
"DE.Views.StyleTitleDialog.textTitle": "Title", "DE.Views.StyleTitleDialog.textTitle": "Title",
"DE.Views.StyleTitleDialog.txtEmpty": "Campo obbligatorio", "DE.Views.StyleTitleDialog.txtEmpty": "Campo obbligatorio",
"DE.Views.StyleTitleDialog.txtNotEmpty": "Field must not be empty", "DE.Views.StyleTitleDialog.txtNotEmpty": "Field must not be empty",
"DE.Views.StyleTitleDialog.txtSameAs": "Come il nuovo stile creato",
"DE.Views.TableFormulaDialog.textBookmark": "Incolla il segnalibro", "DE.Views.TableFormulaDialog.textBookmark": "Incolla il segnalibro",
"DE.Views.TableFormulaDialog.textFormat": "Formato del numero", "DE.Views.TableFormulaDialog.textFormat": "Formato del numero",
"DE.Views.TableFormulaDialog.textFormula": "Formula", "DE.Views.TableFormulaDialog.textFormula": "Formula",
@ -1884,7 +2038,7 @@
"DE.Views.TableSettings.textBanded": "Altera", "DE.Views.TableSettings.textBanded": "Altera",
"DE.Views.TableSettings.textBorderColor": "Colore", "DE.Views.TableSettings.textBorderColor": "Colore",
"DE.Views.TableSettings.textBorders": "Stile bordo", "DE.Views.TableSettings.textBorders": "Stile bordo",
"DE.Views.TableSettings.textCellSize": "Dimensioni cella", "DE.Views.TableSettings.textCellSize": "Dimensioni di righe e colonne",
"DE.Views.TableSettings.textColumns": "Colonne", "DE.Views.TableSettings.textColumns": "Colonne",
"DE.Views.TableSettings.textDistributeCols": "Distribuisci colonne", "DE.Views.TableSettings.textDistributeCols": "Distribuisci colonne",
"DE.Views.TableSettings.textDistributeRows": "Distribuisci righe", "DE.Views.TableSettings.textDistributeRows": "Distribuisci righe",
@ -1911,6 +2065,14 @@
"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.txtNoBorders": "Nessun bordo", "DE.Views.TableSettings.txtNoBorders": "Nessun bordo",
"DE.Views.TableSettings.txtTable_Accent": "Accento",
"DE.Views.TableSettings.txtTable_Colorful": "Colorato",
"DE.Views.TableSettings.txtTable_Dark": "Scuro",
"DE.Views.TableSettings.txtTable_GridTable": "Griglia Tabella",
"DE.Views.TableSettings.txtTable_Light": "Chiaro",
"DE.Views.TableSettings.txtTable_ListTable": "Elenco Tabella",
"DE.Views.TableSettings.txtTable_PlainTable": "Tabella semplice",
"DE.Views.TableSettings.txtTable_TableGrid": "Tabella griglia",
"DE.Views.TableSettingsAdvanced.textAlign": "Allineamento", "DE.Views.TableSettingsAdvanced.textAlign": "Allineamento",
"DE.Views.TableSettingsAdvanced.textAlignment": "Allineamento", "DE.Views.TableSettingsAdvanced.textAlignment": "Allineamento",
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Consenti spaziatura tra celle", "DE.Views.TableSettingsAdvanced.textAllowSpacing": "Consenti spaziatura tra celle",
@ -2004,6 +2166,7 @@
"DE.Views.TextArtSettings.textTemplate": "Template", "DE.Views.TextArtSettings.textTemplate": "Template",
"DE.Views.TextArtSettings.textTransform": "Transform", "DE.Views.TextArtSettings.textTransform": "Transform",
"DE.Views.TextArtSettings.txtNoBorders": "Nessuna linea", "DE.Views.TextArtSettings.txtNoBorders": "Nessuna linea",
"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",
@ -2015,6 +2178,7 @@
"DE.Views.Toolbar.capBtnInsImage": "Foto", "DE.Views.Toolbar.capBtnInsImage": "Foto",
"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.capBtnInsSymbol": "Simbolo",
"DE.Views.Toolbar.capBtnInsTable": "Tabella", "DE.Views.Toolbar.capBtnInsTable": "Tabella",
"DE.Views.Toolbar.capBtnInsTextart": "Text Art", "DE.Views.Toolbar.capBtnInsTextart": "Text Art",
"DE.Views.Toolbar.capBtnInsTextbox": "Casella di testo", "DE.Views.Toolbar.capBtnInsTextbox": "Casella di testo",
@ -2028,10 +2192,12 @@
"DE.Views.Toolbar.capImgGroup": "Gruppo", "DE.Views.Toolbar.capImgGroup": "Gruppo",
"DE.Views.Toolbar.capImgWrapping": "Disposizione", "DE.Views.Toolbar.capImgWrapping": "Disposizione",
"DE.Views.Toolbar.mniCustomTable": "Inserisci tabella personalizzata", "DE.Views.Toolbar.mniCustomTable": "Inserisci tabella personalizzata",
"DE.Views.Toolbar.mniDrawTable": "Disegna Tabella",
"DE.Views.Toolbar.mniEditControls": "Impostazioni di controllo", "DE.Views.Toolbar.mniEditControls": "Impostazioni di controllo",
"DE.Views.Toolbar.mniEditDropCap": "Impostazioni capolettera", "DE.Views.Toolbar.mniEditDropCap": "Impostazioni capolettera",
"DE.Views.Toolbar.mniEditFooter": "Modifica piè di pagina", "DE.Views.Toolbar.mniEditFooter": "Modifica piè di pagina",
"DE.Views.Toolbar.mniEditHeader": "Modifica intestazione", "DE.Views.Toolbar.mniEditHeader": "Modifica intestazione",
"DE.Views.Toolbar.mniEraseTable": "Cancella Tabella",
"DE.Views.Toolbar.mniHiddenBorders": "Bordi tabella nascosti", "DE.Views.Toolbar.mniHiddenBorders": "Bordi tabella nascosti",
"DE.Views.Toolbar.mniHiddenChars": "Caratteri non stampabili", "DE.Views.Toolbar.mniHiddenChars": "Caratteri non stampabili",
"DE.Views.Toolbar.mniHighlightControls": "selezionare impostazioni", "DE.Views.Toolbar.mniHighlightControls": "selezionare impostazioni",
@ -2042,13 +2208,17 @@
"DE.Views.Toolbar.textAutoColor": "Automatico", "DE.Views.Toolbar.textAutoColor": "Automatico",
"DE.Views.Toolbar.textBold": "Grassetto", "DE.Views.Toolbar.textBold": "Grassetto",
"DE.Views.Toolbar.textBottom": "Bottom: ", "DE.Views.Toolbar.textBottom": "Bottom: ",
"DE.Views.Toolbar.textCheckboxControl": "Casella di controllo",
"DE.Views.Toolbar.textColumnsCustom": "Colonne personalizzate", "DE.Views.Toolbar.textColumnsCustom": "Colonne personalizzate",
"DE.Views.Toolbar.textColumnsLeft": "Left", "DE.Views.Toolbar.textColumnsLeft": "Left",
"DE.Views.Toolbar.textColumnsOne": "One", "DE.Views.Toolbar.textColumnsOne": "One",
"DE.Views.Toolbar.textColumnsRight": "Right", "DE.Views.Toolbar.textColumnsRight": "Right",
"DE.Views.Toolbar.textColumnsThree": "Tre", "DE.Views.Toolbar.textColumnsThree": "Tre",
"DE.Views.Toolbar.textColumnsTwo": "Two", "DE.Views.Toolbar.textColumnsTwo": "Two",
"DE.Views.Toolbar.textComboboxControl": "Casella combinata",
"DE.Views.Toolbar.textContPage": "Pagina continua", "DE.Views.Toolbar.textContPage": "Pagina continua",
"DE.Views.Toolbar.textDateControl": "Data",
"DE.Views.Toolbar.textDropdownControl": "Elenco a discesa",
"DE.Views.Toolbar.textEditWatermark": "Filigrana personalizzata", "DE.Views.Toolbar.textEditWatermark": "Filigrana personalizzata",
"DE.Views.Toolbar.textEvenPage": "Pagina pari", "DE.Views.Toolbar.textEvenPage": "Pagina pari",
"DE.Views.Toolbar.textInMargin": "Nel margine", "DE.Views.Toolbar.textInMargin": "Nel margine",
@ -2061,6 +2231,7 @@
"DE.Views.Toolbar.textItalic": "Corsivo", "DE.Views.Toolbar.textItalic": "Corsivo",
"DE.Views.Toolbar.textLandscape": "Orizzontale", "DE.Views.Toolbar.textLandscape": "Orizzontale",
"DE.Views.Toolbar.textLeft": "Left: ", "DE.Views.Toolbar.textLeft": "Left: ",
"DE.Views.Toolbar.textListSettings": "Impostazioni elenco",
"DE.Views.Toolbar.textMarginsLast": "Last Custom", "DE.Views.Toolbar.textMarginsLast": "Last Custom",
"DE.Views.Toolbar.textMarginsModerate": "Moderare", "DE.Views.Toolbar.textMarginsModerate": "Moderare",
"DE.Views.Toolbar.textMarginsNarrow": "Narrow", "DE.Views.Toolbar.textMarginsNarrow": "Narrow",
@ -2074,11 +2245,12 @@
"DE.Views.Toolbar.textOddPage": "Pagina dispari", "DE.Views.Toolbar.textOddPage": "Pagina dispari",
"DE.Views.Toolbar.textPageMarginsCustom": "Custom margins", "DE.Views.Toolbar.textPageMarginsCustom": "Custom margins",
"DE.Views.Toolbar.textPageSizeCustom": "Custom Page Size", "DE.Views.Toolbar.textPageSizeCustom": "Custom Page Size",
"DE.Views.Toolbar.textPictureControl": "Foto",
"DE.Views.Toolbar.textPlainControl": "Inserisci il controllo del contenuto in testo normale", "DE.Views.Toolbar.textPlainControl": "Inserisci il controllo del contenuto in testo normale",
"DE.Views.Toolbar.textPortrait": "Verticale", "DE.Views.Toolbar.textPortrait": "Verticale",
"DE.Views.Toolbar.textRemoveControl": "Rimuovi il controllo del contenuto", "DE.Views.Toolbar.textRemoveControl": "Rimuovi il controllo del contenuto",
"DE.Views.Toolbar.textRemWatermark": "Rimuovi filigrana", "DE.Views.Toolbar.textRemWatermark": "Rimuovi filigrana",
"DE.Views.Toolbar.textRichControl": "Inserisci il controllo del contenuto RTF", "DE.Views.Toolbar.textRichControl": "RTF",
"DE.Views.Toolbar.textRight": "Right: ", "DE.Views.Toolbar.textRight": "Right: ",
"DE.Views.Toolbar.textStrikeout": "Barrato", "DE.Views.Toolbar.textStrikeout": "Barrato",
"DE.Views.Toolbar.textStyleMenuDelete": "Elimina stile", "DE.Views.Toolbar.textStyleMenuDelete": "Elimina stile",
@ -2121,7 +2293,6 @@
"DE.Views.Toolbar.tipFontColor": "Colore caratteri", "DE.Views.Toolbar.tipFontColor": "Colore caratteri",
"DE.Views.Toolbar.tipFontName": "Tipo di carattere", "DE.Views.Toolbar.tipFontName": "Tipo di carattere",
"DE.Views.Toolbar.tipFontSize": "Dimensione carattere", "DE.Views.Toolbar.tipFontSize": "Dimensione carattere",
"DE.Views.Toolbar.tipHAligh": "Allineamento orizzontale",
"DE.Views.Toolbar.tipHighlightColor": "Colore evidenziatore", "DE.Views.Toolbar.tipHighlightColor": "Colore evidenziatore",
"DE.Views.Toolbar.tipImgAlign": "Allinea Oggetti", "DE.Views.Toolbar.tipImgAlign": "Allinea Oggetti",
"DE.Views.Toolbar.tipImgGroup": "Raggruppa oggetti", "DE.Views.Toolbar.tipImgGroup": "Raggruppa oggetti",
@ -2133,6 +2304,7 @@
"DE.Views.Toolbar.tipInsertImage": "Inserisci immagine", "DE.Views.Toolbar.tipInsertImage": "Inserisci immagine",
"DE.Views.Toolbar.tipInsertNum": "Inserisci numero di pagina", "DE.Views.Toolbar.tipInsertNum": "Inserisci numero di pagina",
"DE.Views.Toolbar.tipInsertShape": "Inserisci forma", "DE.Views.Toolbar.tipInsertShape": "Inserisci forma",
"DE.Views.Toolbar.tipInsertSymbol": "Inserisci Simbolo",
"DE.Views.Toolbar.tipInsertTable": "Inserisci tabella", "DE.Views.Toolbar.tipInsertTable": "Inserisci tabella",
"DE.Views.Toolbar.tipInsertText": "Inserisci casella di testo", "DE.Views.Toolbar.tipInsertText": "Inserisci casella di testo",
"DE.Views.Toolbar.tipInsertTextArt": "Inserisci Text Art", "DE.Views.Toolbar.tipInsertTextArt": "Inserisci Text Art",

View file

@ -1388,7 +1388,6 @@
"DE.Views.Toolbar.tipFontColor": "フォントの色", "DE.Views.Toolbar.tipFontColor": "フォントの色",
"DE.Views.Toolbar.tipFontName": "フォント名", "DE.Views.Toolbar.tipFontName": "フォント名",
"DE.Views.Toolbar.tipFontSize": "フォントサイズ", "DE.Views.Toolbar.tipFontSize": "フォントサイズ",
"DE.Views.Toolbar.tipHAligh": "左右の整列",
"DE.Views.Toolbar.tipHighlightColor": "蛍光ペンの色", "DE.Views.Toolbar.tipHighlightColor": "蛍光ペンの色",
"DE.Views.Toolbar.tipIncFont": "フォントサイズの増分", "DE.Views.Toolbar.tipIncFont": "フォントサイズの増分",
"DE.Views.Toolbar.tipIncPrLeft": "インデントを増やす", "DE.Views.Toolbar.tipIncPrLeft": "インデントを増やす",

View file

@ -1777,7 +1777,6 @@
"DE.Views.Toolbar.tipFontColor": "글꼴 색", "DE.Views.Toolbar.tipFontColor": "글꼴 색",
"DE.Views.Toolbar.tipFontName": "글꼴", "DE.Views.Toolbar.tipFontName": "글꼴",
"DE.Views.Toolbar.tipFontSize": "글꼴 크기", "DE.Views.Toolbar.tipFontSize": "글꼴 크기",
"DE.Views.Toolbar.tipHAligh": "수평 정렬",
"DE.Views.Toolbar.tipHighlightColor": "Highlight Color", "DE.Views.Toolbar.tipHighlightColor": "Highlight Color",
"DE.Views.Toolbar.tipImgAlign": "오브젝트 정렬", "DE.Views.Toolbar.tipImgAlign": "오브젝트 정렬",
"DE.Views.Toolbar.tipImgGroup": "그룹 오브젝트", "DE.Views.Toolbar.tipImgGroup": "그룹 오브젝트",

View file

@ -1774,7 +1774,6 @@
"DE.Views.Toolbar.tipFontColor": "Fonta krāsa", "DE.Views.Toolbar.tipFontColor": "Fonta krāsa",
"DE.Views.Toolbar.tipFontName": "Fonts", "DE.Views.Toolbar.tipFontName": "Fonts",
"DE.Views.Toolbar.tipFontSize": "Fonta lielums", "DE.Views.Toolbar.tipFontSize": "Fonta lielums",
"DE.Views.Toolbar.tipHAligh": "Horizontal Align",
"DE.Views.Toolbar.tipHighlightColor": "Izcelt ar krāsu", "DE.Views.Toolbar.tipHighlightColor": "Izcelt ar krāsu",
"DE.Views.Toolbar.tipImgAlign": "Līdzināt objektus", "DE.Views.Toolbar.tipImgAlign": "Līdzināt objektus",
"DE.Views.Toolbar.tipImgGroup": "Grupas objekti", "DE.Views.Toolbar.tipImgGroup": "Grupas objekti",

View file

@ -1923,7 +1923,6 @@
"DE.Views.Toolbar.tipFontColor": "Tekenkleur", "DE.Views.Toolbar.tipFontColor": "Tekenkleur",
"DE.Views.Toolbar.tipFontName": "Lettertype", "DE.Views.Toolbar.tipFontName": "Lettertype",
"DE.Views.Toolbar.tipFontSize": "Tekengrootte", "DE.Views.Toolbar.tipFontSize": "Tekengrootte",
"DE.Views.Toolbar.tipHAligh": "Horizontale uitlijning",
"DE.Views.Toolbar.tipHighlightColor": "Markeringskleur", "DE.Views.Toolbar.tipHighlightColor": "Markeringskleur",
"DE.Views.Toolbar.tipImgAlign": "Objecten uitlijnen", "DE.Views.Toolbar.tipImgAlign": "Objecten uitlijnen",
"DE.Views.Toolbar.tipImgGroup": "Objecten groeperen", "DE.Views.Toolbar.tipImgGroup": "Objecten groeperen",

View file

@ -1756,7 +1756,6 @@
"DE.Views.Toolbar.tipFontColor": "Kolor czcionki", "DE.Views.Toolbar.tipFontColor": "Kolor czcionki",
"DE.Views.Toolbar.tipFontName": "Czcionka", "DE.Views.Toolbar.tipFontName": "Czcionka",
"DE.Views.Toolbar.tipFontSize": "Rozmiar czcionki", "DE.Views.Toolbar.tipFontSize": "Rozmiar czcionki",
"DE.Views.Toolbar.tipHAligh": "Wyrównaj poziomo",
"DE.Views.Toolbar.tipHighlightColor": "Kolor podświetlenia", "DE.Views.Toolbar.tipHighlightColor": "Kolor podświetlenia",
"DE.Views.Toolbar.tipImgAlign": "Wyrównaj obiekty", "DE.Views.Toolbar.tipImgAlign": "Wyrównaj obiekty",
"DE.Views.Toolbar.tipImgGroup": "Grupuj obiekty", "DE.Views.Toolbar.tipImgGroup": "Grupuj obiekty",

View file

@ -1711,7 +1711,6 @@
"DE.Views.Toolbar.tipFontColor": "Cor da fonte", "DE.Views.Toolbar.tipFontColor": "Cor da fonte",
"DE.Views.Toolbar.tipFontName": "Fonte", "DE.Views.Toolbar.tipFontName": "Fonte",
"DE.Views.Toolbar.tipFontSize": "Tamanho da fonte", "DE.Views.Toolbar.tipFontSize": "Tamanho da fonte",
"DE.Views.Toolbar.tipHAligh": "Alinhamento horizontal",
"DE.Views.Toolbar.tipHighlightColor": "Cor de realce", "DE.Views.Toolbar.tipHighlightColor": "Cor de realce",
"DE.Views.Toolbar.tipImgAlign": "Alinhar objetos", "DE.Views.Toolbar.tipImgAlign": "Alinhar objetos",
"DE.Views.Toolbar.tipImgGroup": "Agrupar objetos", "DE.Views.Toolbar.tipImgGroup": "Agrupar objetos",

View file

@ -10,6 +10,7 @@
"Common.Controllers.ExternalMergeEditor.warningText": "Объект недоступен, так как редактируется другим пользователем.", "Common.Controllers.ExternalMergeEditor.warningText": "Объект недоступен, так как редактируется другим пользователем.",
"Common.Controllers.ExternalMergeEditor.warningTitle": "Внимание", "Common.Controllers.ExternalMergeEditor.warningTitle": "Внимание",
"Common.Controllers.History.notcriticalErrorTitle": "Внимание", "Common.Controllers.History.notcriticalErrorTitle": "Внимание",
"Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Для сравнения документов все ослеживаемые изменения в них будут считаться принятыми. Вы хотите продолжить?",
"Common.Controllers.ReviewChanges.textAtLeast": "Минимум", "Common.Controllers.ReviewChanges.textAtLeast": "Минимум",
"Common.Controllers.ReviewChanges.textAuto": "Авто", "Common.Controllers.ReviewChanges.textAuto": "Авто",
"Common.Controllers.ReviewChanges.textBaseline": "Базовая линия", "Common.Controllers.ReviewChanges.textBaseline": "Базовая линия",
@ -68,6 +69,7 @@
"Common.Controllers.ReviewChanges.textTableRowsDel": "<b>Удалены строки таблицы</b>", "Common.Controllers.ReviewChanges.textTableRowsDel": "<b>Удалены строки таблицы</b>",
"Common.Controllers.ReviewChanges.textTabs": "Изменение табуляции", "Common.Controllers.ReviewChanges.textTabs": "Изменение табуляции",
"Common.Controllers.ReviewChanges.textUnderline": "Подчёркнутый", "Common.Controllers.ReviewChanges.textUnderline": "Подчёркнутый",
"Common.Controllers.ReviewChanges.textUrl": "Вставьте URL-адрес документа",
"Common.Controllers.ReviewChanges.textWidow": "Запрет висячих строк", "Common.Controllers.ReviewChanges.textWidow": "Запрет висячих строк",
"Common.define.chartData.textArea": "С областями", "Common.define.chartData.textArea": "С областями",
"Common.define.chartData.textBar": "Линейчатая", "Common.define.chartData.textBar": "Линейчатая",
@ -78,6 +80,39 @@
"Common.define.chartData.textPoint": "Точечная", "Common.define.chartData.textPoint": "Точечная",
"Common.define.chartData.textStock": "Биржевая", "Common.define.chartData.textStock": "Биржевая",
"Common.define.chartData.textSurface": "Поверхность", "Common.define.chartData.textSurface": "Поверхность",
"Common.UI.Calendar.textApril": "Апрель",
"Common.UI.Calendar.textAugust": "Август",
"Common.UI.Calendar.textDecember": "Декабрь",
"Common.UI.Calendar.textFebruary": "Февраль",
"Common.UI.Calendar.textJanuary": "Январь",
"Common.UI.Calendar.textJuly": "Июль",
"Common.UI.Calendar.textJune": "Июнь",
"Common.UI.Calendar.textMarch": "Март",
"Common.UI.Calendar.textMay": "Май",
"Common.UI.Calendar.textMonths": "Месяцы",
"Common.UI.Calendar.textNovember": "Ноябрь",
"Common.UI.Calendar.textOctober": "Октябрь",
"Common.UI.Calendar.textSeptember": "Сентябрь",
"Common.UI.Calendar.textShortApril": "Апр",
"Common.UI.Calendar.textShortAugust": "Авг",
"Common.UI.Calendar.textShortDecember": "Дек",
"Common.UI.Calendar.textShortFebruary": "Фев",
"Common.UI.Calendar.textShortFriday": "Пт",
"Common.UI.Calendar.textShortJanuary": "Янв",
"Common.UI.Calendar.textShortJuly": "Июл",
"Common.UI.Calendar.textShortJune": "Июн",
"Common.UI.Calendar.textShortMarch": "Мар",
"Common.UI.Calendar.textShortMay": "Май",
"Common.UI.Calendar.textShortMonday": "Пн",
"Common.UI.Calendar.textShortNovember": "Ноя",
"Common.UI.Calendar.textShortOctober": "Окт",
"Common.UI.Calendar.textShortSaturday": "Сб",
"Common.UI.Calendar.textShortSeptember": "Сен",
"Common.UI.Calendar.textShortSunday": "Вс",
"Common.UI.Calendar.textShortThursday": "Чт",
"Common.UI.Calendar.textShortTuesday": "Вт",
"Common.UI.Calendar.textShortWednesday": "Ср",
"Common.UI.Calendar.textYears": "Годы",
"Common.UI.ComboBorderSize.txtNoBorders": "Без границ", "Common.UI.ComboBorderSize.txtNoBorders": "Без границ",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Без границ", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Без границ",
"Common.UI.ComboDataView.emptyComboText": "Без стилей", "Common.UI.ComboDataView.emptyComboText": "Без стилей",
@ -150,7 +185,7 @@
"Common.Views.ExternalMergeEditor.textClose": "Закрыть", "Common.Views.ExternalMergeEditor.textClose": "Закрыть",
"Common.Views.ExternalMergeEditor.textSave": "Сохранить и выйти", "Common.Views.ExternalMergeEditor.textSave": "Сохранить и выйти",
"Common.Views.ExternalMergeEditor.textTitle": "Получатели слияния", "Common.Views.ExternalMergeEditor.textTitle": "Получатели слияния",
"Common.Views.Header.labelCoUsersDescr": "Документ редактируется несколькими пользователями.", "Common.Views.Header.labelCoUsersDescr": "Пользователи, редактирующие документ:",
"Common.Views.Header.textAdvSettings": "Дополнительные параметры", "Common.Views.Header.textAdvSettings": "Дополнительные параметры",
"Common.Views.Header.textBack": "Открыть расположение файла", "Common.Views.Header.textBack": "Открыть расположение файла",
"Common.Views.Header.textCompactView": "Скрыть панель инструментов", "Common.Views.Header.textCompactView": "Скрыть панель инструментов",
@ -224,6 +259,10 @@
"Common.Views.RenameDialog.txtInvalidName": "Имя файла не должно содержать следующих символов: ", "Common.Views.RenameDialog.txtInvalidName": "Имя файла не должно содержать следующих символов: ",
"Common.Views.ReviewChanges.hintNext": "К следующему изменению", "Common.Views.ReviewChanges.hintNext": "К следующему изменению",
"Common.Views.ReviewChanges.hintPrev": "К предыдущему изменению", "Common.Views.ReviewChanges.hintPrev": "К предыдущему изменению",
"Common.Views.ReviewChanges.mniFromFile": "Документ из файла",
"Common.Views.ReviewChanges.mniFromStorage": "Документ из хранилища",
"Common.Views.ReviewChanges.mniFromUrl": "Документ с URL-адреса",
"Common.Views.ReviewChanges.mniSettings": "Параметры сравнения",
"Common.Views.ReviewChanges.strFast": "Быстрый", "Common.Views.ReviewChanges.strFast": "Быстрый",
"Common.Views.ReviewChanges.strFastDesc": "Совместное редактирование в режиме реального времени. Все изменения сохраняются автоматически.", "Common.Views.ReviewChanges.strFastDesc": "Совместное редактирование в режиме реального времени. Все изменения сохраняются автоматически.",
"Common.Views.ReviewChanges.strStrict": "Строгий", "Common.Views.ReviewChanges.strStrict": "Строгий",
@ -232,6 +271,7 @@
"Common.Views.ReviewChanges.tipCoAuthMode": "Задать режим совместного редактирования", "Common.Views.ReviewChanges.tipCoAuthMode": "Задать режим совместного редактирования",
"Common.Views.ReviewChanges.tipCommentRem": "Удалить комментарии", "Common.Views.ReviewChanges.tipCommentRem": "Удалить комментарии",
"Common.Views.ReviewChanges.tipCommentRemCurrent": "Удалить текущие комментарии", "Common.Views.ReviewChanges.tipCommentRemCurrent": "Удалить текущие комментарии",
"Common.Views.ReviewChanges.tipCompare": "Сравнить текущий документ с другим",
"Common.Views.ReviewChanges.tipHistory": "Показать историю версий", "Common.Views.ReviewChanges.tipHistory": "Показать историю версий",
"Common.Views.ReviewChanges.tipRejectCurrent": "Отклонить текущее изменение", "Common.Views.ReviewChanges.tipRejectCurrent": "Отклонить текущее изменение",
"Common.Views.ReviewChanges.tipReview": "Отслеживать изменения", "Common.Views.ReviewChanges.tipReview": "Отслеживать изменения",
@ -251,6 +291,7 @@
"Common.Views.ReviewChanges.txtCommentRemMy": "Удалить мои комментарии", "Common.Views.ReviewChanges.txtCommentRemMy": "Удалить мои комментарии",
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Удалить мои текущие комментарии", "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Удалить мои текущие комментарии",
"Common.Views.ReviewChanges.txtCommentRemove": "Удалить", "Common.Views.ReviewChanges.txtCommentRemove": "Удалить",
"Common.Views.ReviewChanges.txtCompare": "Сравнить",
"Common.Views.ReviewChanges.txtDocLang": "Язык", "Common.Views.ReviewChanges.txtDocLang": "Язык",
"Common.Views.ReviewChanges.txtFinal": "Все изменения приняты (просмотр)", "Common.Views.ReviewChanges.txtFinal": "Все изменения приняты (просмотр)",
"Common.Views.ReviewChanges.txtFinalCap": "Измененный документ", "Common.Views.ReviewChanges.txtFinalCap": "Измененный документ",
@ -285,6 +326,7 @@
"Common.Views.ReviewPopover.textEdit": "OK", "Common.Views.ReviewPopover.textEdit": "OK",
"Common.Views.ReviewPopover.textFollowMove": "Перейти на прежнее место", "Common.Views.ReviewPopover.textFollowMove": "Перейти на прежнее место",
"Common.Views.ReviewPopover.textMention": "+упоминание предоставит доступ к документу и отправит оповещение по почте", "Common.Views.ReviewPopover.textMention": "+упоминание предоставит доступ к документу и отправит оповещение по почте",
"Common.Views.ReviewPopover.textMentionNotify": "+упоминание отправит пользователю оповещение по почте",
"Common.Views.ReviewPopover.textOpenAgain": "Открыть снова", "Common.Views.ReviewPopover.textOpenAgain": "Открыть снова",
"Common.Views.ReviewPopover.textReply": "Ответить", "Common.Views.ReviewPopover.textReply": "Ответить",
"Common.Views.ReviewPopover.textResolve": "Решить", "Common.Views.ReviewPopover.textResolve": "Решить",
@ -350,6 +392,7 @@
"DE.Controllers.Main.errorDataEncrypted": "Получены зашифрованные изменения, их нельзя расшифровать.", "DE.Controllers.Main.errorDataEncrypted": "Получены зашифрованные изменения, их нельзя расшифровать.",
"DE.Controllers.Main.errorDataRange": "Некорректный диапазон данных.", "DE.Controllers.Main.errorDataRange": "Некорректный диапазон данных.",
"DE.Controllers.Main.errorDefaultMessage": "Код ошибки: %1", "DE.Controllers.Main.errorDefaultMessage": "Код ошибки: %1",
"DE.Controllers.Main.errorDirectUrl": "Проверьте ссылку на документ.<br>Эта ссылка должна быть прямой ссылкой для скачивания файла.",
"DE.Controllers.Main.errorEditingDownloadas": "В ходе работы с документом произошла ошибка.<br>Используйте опцию 'Скачать как...', чтобы сохранить резервную копию файла на жесткий диск компьютера.", "DE.Controllers.Main.errorEditingDownloadas": "В ходе работы с документом произошла ошибка.<br>Используйте опцию 'Скачать как...', чтобы сохранить резервную копию файла на жесткий диск компьютера.",
"DE.Controllers.Main.errorEditingSaveas": "В ходе работы с документом произошла ошибка.<br>Используйте опцию 'Сохранить как...', чтобы сохранить резервную копию файла на жесткий диск компьютера.", "DE.Controllers.Main.errorEditingSaveas": "В ходе работы с документом произошла ошибка.<br>Используйте опцию 'Сохранить как...', чтобы сохранить резервную копию файла на жесткий диск компьютера.",
"DE.Controllers.Main.errorEmailClient": "Не найден почтовый клиент", "DE.Controllers.Main.errorEmailClient": "Не найден почтовый клиент",
@ -358,7 +401,7 @@
"DE.Controllers.Main.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.", "DE.Controllers.Main.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.",
"DE.Controllers.Main.errorKeyEncrypt": "Неизвестный дескриптор ключа", "DE.Controllers.Main.errorKeyEncrypt": "Неизвестный дескриптор ключа",
"DE.Controllers.Main.errorKeyExpire": "Срок действия дескриптора ключа истек", "DE.Controllers.Main.errorKeyExpire": "Срок действия дескриптора ключа истек",
"DE.Controllers.Main.errorMailMergeLoadFile": "Сбой при загрузке", "DE.Controllers.Main.errorMailMergeLoadFile": "Загрузка документа не удалась. Выберите другой файл.",
"DE.Controllers.Main.errorMailMergeSaveFile": "Не удалось выполнить слияние.", "DE.Controllers.Main.errorMailMergeSaveFile": "Не удалось выполнить слияние.",
"DE.Controllers.Main.errorProcessSaveResult": "Сбой при сохранении.", "DE.Controllers.Main.errorProcessSaveResult": "Сбой при сохранении.",
"DE.Controllers.Main.errorServerVersion": "Версия редактора была обновлена. Страница будет перезагружена, чтобы применить изменения.", "DE.Controllers.Main.errorServerVersion": "Версия редактора была обновлена. Страница будет перезагружена, чтобы применить изменения.",
@ -430,6 +473,7 @@
"DE.Controllers.Main.txtButtons": "Кнопки", "DE.Controllers.Main.txtButtons": "Кнопки",
"DE.Controllers.Main.txtCallouts": "Выноски", "DE.Controllers.Main.txtCallouts": "Выноски",
"DE.Controllers.Main.txtCharts": "Схемы", "DE.Controllers.Main.txtCharts": "Схемы",
"DE.Controllers.Main.txtChoose": "Выберите элемент.",
"DE.Controllers.Main.txtCurrentDocument": "Текущий документ", "DE.Controllers.Main.txtCurrentDocument": "Текущий документ",
"DE.Controllers.Main.txtDiagramTitle": "Заголовок диаграммы", "DE.Controllers.Main.txtDiagramTitle": "Заголовок диаграммы",
"DE.Controllers.Main.txtEditingMode": "Установка режима редактирования...", "DE.Controllers.Main.txtEditingMode": "Установка режима редактирования...",
@ -449,7 +493,7 @@
"DE.Controllers.Main.txtMissArg": "Отсутствует аргумент", "DE.Controllers.Main.txtMissArg": "Отсутствует аргумент",
"DE.Controllers.Main.txtMissOperator": "Отсутствует оператор", "DE.Controllers.Main.txtMissOperator": "Отсутствует оператор",
"DE.Controllers.Main.txtNeedSynchronize": "Есть обновления", "DE.Controllers.Main.txtNeedSynchronize": "Есть обновления",
"DE.Controllers.Main.txtNoTableOfContents": "Элементов оглавления не найдено.", "DE.Controllers.Main.txtNoTableOfContents": "В документе нет заголовков. Примените стиль заголовка к тексту, чтобы он появился в оглавлении.",
"DE.Controllers.Main.txtNoText": "Ошибка! В документе отсутствует текст указанного стиля.", "DE.Controllers.Main.txtNoText": "Ошибка! В документе отсутствует текст указанного стиля.",
"DE.Controllers.Main.txtNotInTable": "Не в таблице", "DE.Controllers.Main.txtNotInTable": "Не в таблице",
"DE.Controllers.Main.txtNotValidBookmark": "Ошибка! Неверная ссылка закладки.", "DE.Controllers.Main.txtNotValidBookmark": "Ошибка! Неверная ссылка закладки.",
@ -631,6 +675,7 @@
"DE.Controllers.Main.txtShape_wedgeRectCallout": "Прямоугольная выноска", "DE.Controllers.Main.txtShape_wedgeRectCallout": "Прямоугольная выноска",
"DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Скругленная прямоугольная выноска", "DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Скругленная прямоугольная выноска",
"DE.Controllers.Main.txtStarsRibbons": "Звезды и ленты", "DE.Controllers.Main.txtStarsRibbons": "Звезды и ленты",
"DE.Controllers.Main.txtStyle_Caption": "Название",
"DE.Controllers.Main.txtStyle_footnote_text": "Текст сноски", "DE.Controllers.Main.txtStyle_footnote_text": "Текст сноски",
"DE.Controllers.Main.txtStyle_Heading_1": "Заголовок 1", "DE.Controllers.Main.txtStyle_Heading_1": "Заголовок 1",
"DE.Controllers.Main.txtStyle_Heading_2": "Заголовок 2", "DE.Controllers.Main.txtStyle_Heading_2": "Заголовок 2",
@ -658,6 +703,9 @@
"DE.Controllers.Main.txtZeroDivide": "Деление на ноль", "DE.Controllers.Main.txtZeroDivide": "Деление на ноль",
"DE.Controllers.Main.unknownErrorText": "Неизвестная ошибка.", "DE.Controllers.Main.unknownErrorText": "Неизвестная ошибка.",
"DE.Controllers.Main.unsupportedBrowserErrorText": "Ваш браузер не поддерживается.", "DE.Controllers.Main.unsupportedBrowserErrorText": "Ваш браузер не поддерживается.",
"DE.Controllers.Main.uploadDocExtMessage": "Неизвестный формат документа.",
"DE.Controllers.Main.uploadDocFileCountMessage": "Ни одного документа не загружено.",
"DE.Controllers.Main.uploadDocSizeMessage": "Превышен максимальный размер документа.",
"DE.Controllers.Main.uploadImageExtMessage": "Неизвестный формат изображения.", "DE.Controllers.Main.uploadImageExtMessage": "Неизвестный формат изображения.",
"DE.Controllers.Main.uploadImageFileCountMessage": "Ни одного изображения не загружено.", "DE.Controllers.Main.uploadImageFileCountMessage": "Ни одного изображения не загружено.",
"DE.Controllers.Main.uploadImageSizeMessage": "Превышен максимальный размер изображения.", "DE.Controllers.Main.uploadImageSizeMessage": "Превышен максимальный размер изображения.",
@ -672,7 +720,6 @@
"DE.Controllers.Main.warnNoLicense": "Эта версия редакторов %1 имеет некоторые ограничения по количеству одновременных подключений к серверу документов.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.", "DE.Controllers.Main.warnNoLicense": "Эта версия редакторов %1 имеет некоторые ограничения по количеству одновременных подключений к серверу документов.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
"DE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов %1 имеет некоторые ограничения по числу одновременно работающих пользователей.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.", "DE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов %1 имеет некоторые ограничения по числу одновременно работающих пользователей.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
"DE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.", "DE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.",
"DE.Controllers.Main.txtChoose": "Выберите элемент.",
"DE.Controllers.Navigation.txtBeginning": "Начало документа", "DE.Controllers.Navigation.txtBeginning": "Начало документа",
"DE.Controllers.Navigation.txtGotoBeginning": "Перейти в начало документа", "DE.Controllers.Navigation.txtGotoBeginning": "Перейти в начало документа",
"DE.Controllers.Statusbar.textHasChanges": "Отслежены новые изменения", "DE.Controllers.Statusbar.textHasChanges": "Отслежены новые изменения",
@ -1032,7 +1079,7 @@
"DE.Views.BookmarksDialog.textSort": "Порядок", "DE.Views.BookmarksDialog.textSort": "Порядок",
"DE.Views.BookmarksDialog.textTitle": "Закладки", "DE.Views.BookmarksDialog.textTitle": "Закладки",
"DE.Views.BookmarksDialog.txtInvalidName": "Имя закладки может содержать только буквы, цифры и знаки подчеркивания и должно начинаться с буквы.", "DE.Views.BookmarksDialog.txtInvalidName": "Имя закладки может содержать только буквы, цифры и знаки подчеркивания и должно начинаться с буквы.",
"DE.Views.CaptionDialog.textAdd": "Добавить подпись", "DE.Views.CaptionDialog.textAdd": "Добавить",
"DE.Views.CaptionDialog.textAfter": "После", "DE.Views.CaptionDialog.textAfter": "После",
"DE.Views.CaptionDialog.textBefore": "Перед", "DE.Views.CaptionDialog.textBefore": "Перед",
"DE.Views.CaptionDialog.textCaption": "Название", "DE.Views.CaptionDialog.textCaption": "Название",
@ -1040,7 +1087,7 @@
"DE.Views.CaptionDialog.textChapterInc": "Включить номер главы", "DE.Views.CaptionDialog.textChapterInc": "Включить номер главы",
"DE.Views.CaptionDialog.textColon": "двоеточие", "DE.Views.CaptionDialog.textColon": "двоеточие",
"DE.Views.CaptionDialog.textDash": "тире", "DE.Views.CaptionDialog.textDash": "тире",
"DE.Views.CaptionDialog.textDelete": "Удалить подпись", "DE.Views.CaptionDialog.textDelete": "Удалить",
"DE.Views.CaptionDialog.textEquation": "Уравнение", "DE.Views.CaptionDialog.textEquation": "Уравнение",
"DE.Views.CaptionDialog.textExamples": "Примеры: Таблица 2-A, Изображение 1.IV", "DE.Views.CaptionDialog.textExamples": "Примеры: Таблица 2-A, Изображение 1.IV",
"DE.Views.CaptionDialog.textExclude": "Исключить подпись из названия", "DE.Views.CaptionDialog.textExclude": "Исключить подпись из названия",
@ -1083,10 +1130,27 @@
"DE.Views.ChartSettings.txtTight": "По контуру", "DE.Views.ChartSettings.txtTight": "По контуру",
"DE.Views.ChartSettings.txtTitle": "Диаграмма", "DE.Views.ChartSettings.txtTitle": "Диаграмма",
"DE.Views.ChartSettings.txtTopAndBottom": "Сверху и снизу", "DE.Views.ChartSettings.txtTopAndBottom": "Сверху и снизу",
"DE.Views.CompareSettingsDialog.textChar": "По знакам",
"DE.Views.CompareSettingsDialog.textShow": "Показывать изменения:",
"DE.Views.CompareSettingsDialog.textTitle": "Параметры сравнения",
"DE.Views.CompareSettingsDialog.textWord": "По словам",
"DE.Views.ControlSettingsDialog.strGeneral": "Общие",
"DE.Views.ControlSettingsDialog.textAdd": "Добавить",
"DE.Views.ControlSettingsDialog.textAppearance": "Вид", "DE.Views.ControlSettingsDialog.textAppearance": "Вид",
"DE.Views.ControlSettingsDialog.textApplyAll": "Применить ко всем", "DE.Views.ControlSettingsDialog.textApplyAll": "Применить ко всем",
"DE.Views.ControlSettingsDialog.textBox": "С ограничивающей рамкой", "DE.Views.ControlSettingsDialog.textBox": "С ограничивающей рамкой",
"DE.Views.ControlSettingsDialog.textChange": "Редактировать",
"DE.Views.ControlSettingsDialog.textCheckbox": "Флажок",
"DE.Views.ControlSettingsDialog.textChecked": "Символ установленного флажка",
"DE.Views.ControlSettingsDialog.textColor": "Цвет", "DE.Views.ControlSettingsDialog.textColor": "Цвет",
"DE.Views.ControlSettingsDialog.textCombobox": "Поле со списком",
"DE.Views.ControlSettingsDialog.textDate": "Формат даты",
"DE.Views.ControlSettingsDialog.textDelete": "Удалить",
"DE.Views.ControlSettingsDialog.textDisplayName": "Отображаемое имя",
"DE.Views.ControlSettingsDialog.textDown": "Вниз",
"DE.Views.ControlSettingsDialog.textDropDown": "Выпадающий список",
"DE.Views.ControlSettingsDialog.textFormat": "Отображать дату следующим образом",
"DE.Views.ControlSettingsDialog.textLang": "Язык",
"DE.Views.ControlSettingsDialog.textLock": "Блокировка", "DE.Views.ControlSettingsDialog.textLock": "Блокировка",
"DE.Views.ControlSettingsDialog.textName": "Заголовок", "DE.Views.ControlSettingsDialog.textName": "Заголовок",
"DE.Views.ControlSettingsDialog.textNewColor": "Пользовательский цвет", "DE.Views.ControlSettingsDialog.textNewColor": "Пользовательский цвет",
@ -1095,6 +1159,10 @@
"DE.Views.ControlSettingsDialog.textSystemColor": "Системный", "DE.Views.ControlSettingsDialog.textSystemColor": "Системный",
"DE.Views.ControlSettingsDialog.textTag": "Тег", "DE.Views.ControlSettingsDialog.textTag": "Тег",
"DE.Views.ControlSettingsDialog.textTitle": "Параметры элемента управления содержимым", "DE.Views.ControlSettingsDialog.textTitle": "Параметры элемента управления содержимым",
"DE.Views.ControlSettingsDialog.textUnchecked": "Символ снятого флажка",
"DE.Views.ControlSettingsDialog.textUp": "Вверх",
"DE.Views.ControlSettingsDialog.textValue": "Значение",
"DE.Views.ControlSettingsDialog.tipChange": "Изменить символ",
"DE.Views.ControlSettingsDialog.txtLockDelete": "Элемент управления содержимым нельзя удалить", "DE.Views.ControlSettingsDialog.txtLockDelete": "Элемент управления содержимым нельзя удалить",
"DE.Views.ControlSettingsDialog.txtLockEdit": "Содержимое нельзя редактировать", "DE.Views.ControlSettingsDialog.txtLockEdit": "Содержимое нельзя редактировать",
"DE.Views.CustomColumnsDialog.textColumns": "Количество колонок", "DE.Views.CustomColumnsDialog.textColumns": "Количество колонок",
@ -1248,6 +1316,7 @@
"DE.Views.DocumentHolder.txtDeleteRadical": "Удалить радикал", "DE.Views.DocumentHolder.txtDeleteRadical": "Удалить радикал",
"DE.Views.DocumentHolder.txtDistribHor": "Распределить по горизонтали", "DE.Views.DocumentHolder.txtDistribHor": "Распределить по горизонтали",
"DE.Views.DocumentHolder.txtDistribVert": "Распределить по вертикали", "DE.Views.DocumentHolder.txtDistribVert": "Распределить по вертикали",
"DE.Views.DocumentHolder.txtEmpty": "(Пусто)",
"DE.Views.DocumentHolder.txtFractionLinear": "Изменить на горизонтальную простую дробь", "DE.Views.DocumentHolder.txtFractionLinear": "Изменить на горизонтальную простую дробь",
"DE.Views.DocumentHolder.txtFractionSkewed": "Изменить на диагональную простую дробь", "DE.Views.DocumentHolder.txtFractionSkewed": "Изменить на диагональную простую дробь",
"DE.Views.DocumentHolder.txtFractionStacked": "Изменить на вертикальную простую дробь", "DE.Views.DocumentHolder.txtFractionStacked": "Изменить на вертикальную простую дробь",
@ -1355,6 +1424,10 @@
"DE.Views.DropcapSettingsAdvanced.textWidth": "Ширина", "DE.Views.DropcapSettingsAdvanced.textWidth": "Ширина",
"DE.Views.DropcapSettingsAdvanced.tipFontName": "Шрифт", "DE.Views.DropcapSettingsAdvanced.tipFontName": "Шрифт",
"DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Без границ", "DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Без границ",
"DE.Views.EditListItemDialog.textDisplayName": "Отображаемое имя",
"DE.Views.EditListItemDialog.textNameError": "Отображаемое имя не должно быть пустым.",
"DE.Views.EditListItemDialog.textValue": "Значение",
"DE.Views.EditListItemDialog.textValueError": "Элемент с таким значением уже существует.",
"DE.Views.FileMenu.btnBackCaption": "Открыть расположение файла", "DE.Views.FileMenu.btnBackCaption": "Открыть расположение файла",
"DE.Views.FileMenu.btnCloseMenuCaption": "Закрыть меню", "DE.Views.FileMenu.btnCloseMenuCaption": "Закрыть меню",
"DE.Views.FileMenu.btnCreateNewCaption": "Создать новый", "DE.Views.FileMenu.btnCreateNewCaption": "Создать новый",
@ -1459,6 +1532,7 @@
"DE.Views.FileMenuPanels.Settings.txtPt": "Пункт", "DE.Views.FileMenuPanels.Settings.txtPt": "Пункт",
"DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Проверка орфографии", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Проверка орфографии",
"DE.Views.FileMenuPanels.Settings.txtWin": "как Windows", "DE.Views.FileMenuPanels.Settings.txtWin": "как Windows",
"DE.Views.FileMenuPanels.Settings.txtCacheMode": "Режим кэширования по умолчанию",
"DE.Views.HeaderFooterSettings.textBottomCenter": "Снизу по центру", "DE.Views.HeaderFooterSettings.textBottomCenter": "Снизу по центру",
"DE.Views.HeaderFooterSettings.textBottomLeft": "Снизу слева", "DE.Views.HeaderFooterSettings.textBottomLeft": "Снизу слева",
"DE.Views.HeaderFooterSettings.textBottomPage": "Внизу страницы", "DE.Views.HeaderFooterSettings.textBottomPage": "Внизу страницы",
@ -1603,6 +1677,7 @@
"DE.Views.LeftMenu.txtDeveloper": "РЕЖИМ РАЗРАБОТЧИКА", "DE.Views.LeftMenu.txtDeveloper": "РЕЖИМ РАЗРАБОТЧИКА",
"DE.Views.LeftMenu.txtTrial": "ПРОБНЫЙ РЕЖИМ", "DE.Views.LeftMenu.txtTrial": "ПРОБНЫЙ РЕЖИМ",
"DE.Views.Links.capBtnBookmarks": "Закладка", "DE.Views.Links.capBtnBookmarks": "Закладка",
"DE.Views.Links.capBtnCaption": "Название",
"DE.Views.Links.capBtnContentsUpdate": "Обновить", "DE.Views.Links.capBtnContentsUpdate": "Обновить",
"DE.Views.Links.capBtnInsContents": "Оглавление", "DE.Views.Links.capBtnInsContents": "Оглавление",
"DE.Views.Links.capBtnInsFootnote": "Сноска", "DE.Views.Links.capBtnInsFootnote": "Сноска",
@ -1617,10 +1692,29 @@
"DE.Views.Links.textUpdateAll": "Обновить целиком", "DE.Views.Links.textUpdateAll": "Обновить целиком",
"DE.Views.Links.textUpdatePages": "Обновить только номера страниц", "DE.Views.Links.textUpdatePages": "Обновить только номера страниц",
"DE.Views.Links.tipBookmarks": "Создать закладку", "DE.Views.Links.tipBookmarks": "Создать закладку",
"DE.Views.Links.tipCaption": "Вставить название",
"DE.Views.Links.tipContents": "Вставить оглавление", "DE.Views.Links.tipContents": "Вставить оглавление",
"DE.Views.Links.tipContentsUpdate": "Обновить оглавление", "DE.Views.Links.tipContentsUpdate": "Обновить оглавление",
"DE.Views.Links.tipInsertHyperlink": "Добавить гиперссылку", "DE.Views.Links.tipInsertHyperlink": "Добавить гиперссылку",
"DE.Views.Links.tipNotes": "Вставить или редактировать сноски", "DE.Views.Links.tipNotes": "Вставить или редактировать сноски",
"DE.Views.ListSettingsDialog.textAuto": "Автоматически",
"DE.Views.ListSettingsDialog.textCenter": "По центру",
"DE.Views.ListSettingsDialog.textLeft": "По левому краю",
"DE.Views.ListSettingsDialog.textLevel": "Уровень",
"DE.Views.ListSettingsDialog.textNewColor": "Пользовательский цвет",
"DE.Views.ListSettingsDialog.textPreview": "Просмотр",
"DE.Views.ListSettingsDialog.textRight": "По правому краю",
"DE.Views.ListSettingsDialog.txtAlign": "Выравнивание",
"DE.Views.ListSettingsDialog.txtBullet": "Маркер",
"DE.Views.ListSettingsDialog.txtColor": "Цвет",
"DE.Views.ListSettingsDialog.txtFont": "Шрифт и символ",
"DE.Views.ListSettingsDialog.txtLikeText": "Как текст",
"DE.Views.ListSettingsDialog.txtNewBullet": "Новый маркер",
"DE.Views.ListSettingsDialog.txtNone": "Нет",
"DE.Views.ListSettingsDialog.txtSize": "Размер",
"DE.Views.ListSettingsDialog.txtSymbol": "Символ",
"DE.Views.ListSettingsDialog.txtTitle": "Параметры списка",
"DE.Views.ListSettingsDialog.txtType": "Тип",
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
"DE.Views.MailMergeEmailDlg.okButtonText": "Отправить", "DE.Views.MailMergeEmailDlg.okButtonText": "Отправить",
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Тема", "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Тема",
@ -1670,7 +1764,7 @@
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Не удалось начать слияние", "DE.Views.MailMergeSettings.warnProcessMailMerge": "Не удалось начать слияние",
"DE.Views.Navigation.txtCollapse": "Свернуть все", "DE.Views.Navigation.txtCollapse": "Свернуть все",
"DE.Views.Navigation.txtDemote": "Понизить уровень", "DE.Views.Navigation.txtDemote": "Понизить уровень",
"DE.Views.Navigation.txtEmpty": "Этот документ не содержит заголовков", "DE.Views.Navigation.txtEmpty": "В документе нет заголовков.<br>Примените стиль заголовка к тексту, чтобы он появился в оглавлении.",
"DE.Views.Navigation.txtEmptyItem": "Пустой заголовок", "DE.Views.Navigation.txtEmptyItem": "Пустой заголовок",
"DE.Views.Navigation.txtExpand": "Развернуть все", "DE.Views.Navigation.txtExpand": "Развернуть все",
"DE.Views.Navigation.txtExpandToLevel": "Развернуть до уровня", "DE.Views.Navigation.txtExpandToLevel": "Развернуть до уровня",
@ -1699,7 +1793,18 @@
"DE.Views.NoteSettingsDialog.textTitle": "Параметры сносок", "DE.Views.NoteSettingsDialog.textTitle": "Параметры сносок",
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Внимание", "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Внимание",
"DE.Views.PageMarginsDialog.textBottom": "Нижнее", "DE.Views.PageMarginsDialog.textBottom": "Нижнее",
"DE.Views.PageMarginsDialog.textGutter": "Переплет",
"DE.Views.PageMarginsDialog.textGutterPosition": "Положение переплета",
"DE.Views.PageMarginsDialog.textInside": "Внутреннее",
"DE.Views.PageMarginsDialog.textLandscape": "Альбомная",
"DE.Views.PageMarginsDialog.textLeft": "Левое", "DE.Views.PageMarginsDialog.textLeft": "Левое",
"DE.Views.PageMarginsDialog.textMirrorMargins": "Зеркальные поля",
"DE.Views.PageMarginsDialog.textMultiplePages": "Несколько страниц",
"DE.Views.PageMarginsDialog.textNormal": "Обычные",
"DE.Views.PageMarginsDialog.textOrientation": "Ориентация",
"DE.Views.PageMarginsDialog.textOutside": "Внешнее",
"DE.Views.PageMarginsDialog.textPortrait": "Книжная",
"DE.Views.PageMarginsDialog.textPreview": "Просмотр",
"DE.Views.PageMarginsDialog.textRight": "Правое", "DE.Views.PageMarginsDialog.textRight": "Правое",
"DE.Views.PageMarginsDialog.textTitle": "Поля", "DE.Views.PageMarginsDialog.textTitle": "Поля",
"DE.Views.PageMarginsDialog.textTop": "Верхнее", "DE.Views.PageMarginsDialog.textTop": "Верхнее",
@ -1914,6 +2019,7 @@
"DE.Views.TableOfContentsSettings.txtClassic": "Классический", "DE.Views.TableOfContentsSettings.txtClassic": "Классический",
"DE.Views.TableOfContentsSettings.txtCurrent": "Текущий", "DE.Views.TableOfContentsSettings.txtCurrent": "Текущий",
"DE.Views.TableOfContentsSettings.txtModern": "Современный", "DE.Views.TableOfContentsSettings.txtModern": "Современный",
"DE.Views.TableOfContentsSettings.txtOnline": "Онлайн",
"DE.Views.TableOfContentsSettings.txtSimple": "Простой", "DE.Views.TableOfContentsSettings.txtSimple": "Простой",
"DE.Views.TableOfContentsSettings.txtStandard": "Стандартный", "DE.Views.TableOfContentsSettings.txtStandard": "Стандартный",
"DE.Views.TableSettings.deleteColumnText": "Удалить столбец", "DE.Views.TableSettings.deleteColumnText": "Удалить столбец",
@ -1937,7 +2043,7 @@
"DE.Views.TableSettings.textBanded": "Чередовать", "DE.Views.TableSettings.textBanded": "Чередовать",
"DE.Views.TableSettings.textBorderColor": "Цвет", "DE.Views.TableSettings.textBorderColor": "Цвет",
"DE.Views.TableSettings.textBorders": "Стиль границ", "DE.Views.TableSettings.textBorders": "Стиль границ",
"DE.Views.TableSettings.textCellSize": "Размер ячейки", "DE.Views.TableSettings.textCellSize": "Размеры строк и столбцов",
"DE.Views.TableSettings.textColumns": "Столбцы", "DE.Views.TableSettings.textColumns": "Столбцы",
"DE.Views.TableSettings.textDistributeCols": "Выровнять ширину столбцов", "DE.Views.TableSettings.textDistributeCols": "Выровнять ширину столбцов",
"DE.Views.TableSettings.textDistributeRows": "Выровнять высоту строк", "DE.Views.TableSettings.textDistributeRows": "Выровнять высоту строк",
@ -2091,10 +2197,12 @@
"DE.Views.Toolbar.capImgGroup": "Группировка", "DE.Views.Toolbar.capImgGroup": "Группировка",
"DE.Views.Toolbar.capImgWrapping": "Обтекание", "DE.Views.Toolbar.capImgWrapping": "Обтекание",
"DE.Views.Toolbar.mniCustomTable": "Пользовательская таблица", "DE.Views.Toolbar.mniCustomTable": "Пользовательская таблица",
"DE.Views.Toolbar.mniDrawTable": "Нарисовать таблицу",
"DE.Views.Toolbar.mniEditControls": "Параметры элемента управления", "DE.Views.Toolbar.mniEditControls": "Параметры элемента управления",
"DE.Views.Toolbar.mniEditDropCap": "Параметры буквицы", "DE.Views.Toolbar.mniEditDropCap": "Параметры буквицы",
"DE.Views.Toolbar.mniEditFooter": "Изменить нижний колонтитул", "DE.Views.Toolbar.mniEditFooter": "Изменить нижний колонтитул",
"DE.Views.Toolbar.mniEditHeader": "Изменить верхний колонтитул", "DE.Views.Toolbar.mniEditHeader": "Изменить верхний колонтитул",
"DE.Views.Toolbar.mniEraseTable": "Очистить таблицу",
"DE.Views.Toolbar.mniHiddenBorders": "Скрытые границы таблиц", "DE.Views.Toolbar.mniHiddenBorders": "Скрытые границы таблиц",
"DE.Views.Toolbar.mniHiddenChars": "Непечатаемые символы", "DE.Views.Toolbar.mniHiddenChars": "Непечатаемые символы",
"DE.Views.Toolbar.mniHighlightControls": "Цвет подсветки", "DE.Views.Toolbar.mniHighlightControls": "Цвет подсветки",
@ -2105,13 +2213,17 @@
"DE.Views.Toolbar.textAutoColor": "Автоматический", "DE.Views.Toolbar.textAutoColor": "Автоматический",
"DE.Views.Toolbar.textBold": "Полужирный", "DE.Views.Toolbar.textBold": "Полужирный",
"DE.Views.Toolbar.textBottom": "Нижнее: ", "DE.Views.Toolbar.textBottom": "Нижнее: ",
"DE.Views.Toolbar.textCheckboxControl": "Флажок",
"DE.Views.Toolbar.textColumnsCustom": "Настраиваемые колонки", "DE.Views.Toolbar.textColumnsCustom": "Настраиваемые колонки",
"DE.Views.Toolbar.textColumnsLeft": "Слева", "DE.Views.Toolbar.textColumnsLeft": "Слева",
"DE.Views.Toolbar.textColumnsOne": "Одна", "DE.Views.Toolbar.textColumnsOne": "Одна",
"DE.Views.Toolbar.textColumnsRight": "Справа", "DE.Views.Toolbar.textColumnsRight": "Справа",
"DE.Views.Toolbar.textColumnsThree": "Три", "DE.Views.Toolbar.textColumnsThree": "Три",
"DE.Views.Toolbar.textColumnsTwo": "Две", "DE.Views.Toolbar.textColumnsTwo": "Две",
"DE.Views.Toolbar.textComboboxControl": "Поле со списком",
"DE.Views.Toolbar.textContPage": "На текущей странице", "DE.Views.Toolbar.textContPage": "На текущей странице",
"DE.Views.Toolbar.textDateControl": "Дата",
"DE.Views.Toolbar.textDropdownControl": "Выпадающий список",
"DE.Views.Toolbar.textEditWatermark": "Настраиваемая подложка", "DE.Views.Toolbar.textEditWatermark": "Настраиваемая подложка",
"DE.Views.Toolbar.textEvenPage": "С четной страницы", "DE.Views.Toolbar.textEvenPage": "С четной страницы",
"DE.Views.Toolbar.textInMargin": "На поле", "DE.Views.Toolbar.textInMargin": "На поле",
@ -2124,6 +2236,7 @@
"DE.Views.Toolbar.textItalic": "Курсив", "DE.Views.Toolbar.textItalic": "Курсив",
"DE.Views.Toolbar.textLandscape": "Альбомная", "DE.Views.Toolbar.textLandscape": "Альбомная",
"DE.Views.Toolbar.textLeft": "Левое: ", "DE.Views.Toolbar.textLeft": "Левое: ",
"DE.Views.Toolbar.textListSettings": "Параметры списка",
"DE.Views.Toolbar.textMarginsLast": "Последние настраиваемые", "DE.Views.Toolbar.textMarginsLast": "Последние настраиваемые",
"DE.Views.Toolbar.textMarginsModerate": "Средние", "DE.Views.Toolbar.textMarginsModerate": "Средние",
"DE.Views.Toolbar.textMarginsNarrow": "Узкие", "DE.Views.Toolbar.textMarginsNarrow": "Узкие",
@ -2137,11 +2250,12 @@
"DE.Views.Toolbar.textOddPage": "С нечетной страницы", "DE.Views.Toolbar.textOddPage": "С нечетной страницы",
"DE.Views.Toolbar.textPageMarginsCustom": "Настраиваемые поля", "DE.Views.Toolbar.textPageMarginsCustom": "Настраиваемые поля",
"DE.Views.Toolbar.textPageSizeCustom": "Особый размер страницы", "DE.Views.Toolbar.textPageSizeCustom": "Особый размер страницы",
"DE.Views.Toolbar.textPlainControl": "Вставить элемент управления \"Обычный текст\"", "DE.Views.Toolbar.textPictureControl": "Рисунок",
"DE.Views.Toolbar.textPlainControl": "Обычный текст",
"DE.Views.Toolbar.textPortrait": "Книжная", "DE.Views.Toolbar.textPortrait": "Книжная",
"DE.Views.Toolbar.textRemoveControl": "Удалить элемент управления содержимым", "DE.Views.Toolbar.textRemoveControl": "Удалить элемент управления содержимым",
"DE.Views.Toolbar.textRemWatermark": "Удалить подложку", "DE.Views.Toolbar.textRemWatermark": "Удалить подложку",
"DE.Views.Toolbar.textRichControl": "Вставить элемент управления \"Форматированный текст\"", "DE.Views.Toolbar.textRichControl": "Форматированный текст",
"DE.Views.Toolbar.textRight": "Правое: ", "DE.Views.Toolbar.textRight": "Правое: ",
"DE.Views.Toolbar.textStrikeout": "Зачеркнутый", "DE.Views.Toolbar.textStrikeout": "Зачеркнутый",
"DE.Views.Toolbar.textStyleMenuDelete": "Удалить стиль", "DE.Views.Toolbar.textStyleMenuDelete": "Удалить стиль",
@ -2184,7 +2298,6 @@
"DE.Views.Toolbar.tipFontColor": "Цвет шрифта", "DE.Views.Toolbar.tipFontColor": "Цвет шрифта",
"DE.Views.Toolbar.tipFontName": "Шрифт", "DE.Views.Toolbar.tipFontName": "Шрифт",
"DE.Views.Toolbar.tipFontSize": "Размер шрифта", "DE.Views.Toolbar.tipFontSize": "Размер шрифта",
"DE.Views.Toolbar.tipHAligh": "Горизонтальное выравнивание",
"DE.Views.Toolbar.tipHighlightColor": "Цвет выделения", "DE.Views.Toolbar.tipHighlightColor": "Цвет выделения",
"DE.Views.Toolbar.tipImgAlign": "Выровнять объекты", "DE.Views.Toolbar.tipImgAlign": "Выровнять объекты",
"DE.Views.Toolbar.tipImgGroup": "Сгруппировать объекты", "DE.Views.Toolbar.tipImgGroup": "Сгруппировать объекты",

View file

@ -1651,7 +1651,6 @@
"DE.Views.Toolbar.tipFontColor": "Farba písma", "DE.Views.Toolbar.tipFontColor": "Farba písma",
"DE.Views.Toolbar.tipFontName": "Písmo", "DE.Views.Toolbar.tipFontName": "Písmo",
"DE.Views.Toolbar.tipFontSize": "Veľkosť písma", "DE.Views.Toolbar.tipFontSize": "Veľkosť písma",
"DE.Views.Toolbar.tipHAligh": "Horizontálne zarovnanie",
"DE.Views.Toolbar.tipHighlightColor": "Farba zvýraznenia", "DE.Views.Toolbar.tipHighlightColor": "Farba zvýraznenia",
"DE.Views.Toolbar.tipImgAlign": "Zoradiť/usporiadať objekty", "DE.Views.Toolbar.tipImgAlign": "Zoradiť/usporiadať objekty",
"DE.Views.Toolbar.tipImgGroup": "Skupinové objekty", "DE.Views.Toolbar.tipImgGroup": "Skupinové objekty",

View file

@ -1364,7 +1364,6 @@
"DE.Views.Toolbar.tipFontColor": "Barva pisave", "DE.Views.Toolbar.tipFontColor": "Barva pisave",
"DE.Views.Toolbar.tipFontName": "Ime pisave", "DE.Views.Toolbar.tipFontName": "Ime pisave",
"DE.Views.Toolbar.tipFontSize": "Velikost pisave", "DE.Views.Toolbar.tipFontSize": "Velikost pisave",
"DE.Views.Toolbar.tipHAligh": "Horizontalno poravnano",
"DE.Views.Toolbar.tipHighlightColor": "Označi barvo", "DE.Views.Toolbar.tipHighlightColor": "Označi barvo",
"DE.Views.Toolbar.tipIncFont": "Prirastek velikosti pisave", "DE.Views.Toolbar.tipIncFont": "Prirastek velikosti pisave",
"DE.Views.Toolbar.tipIncPrLeft": "Povečajte zamik", "DE.Views.Toolbar.tipIncPrLeft": "Povečajte zamik",

View file

@ -1625,7 +1625,6 @@
"DE.Views.Toolbar.tipFontColor": "Yazı Tipi Rengi", "DE.Views.Toolbar.tipFontColor": "Yazı Tipi Rengi",
"DE.Views.Toolbar.tipFontName": "Yazı Tipi", "DE.Views.Toolbar.tipFontName": "Yazı Tipi",
"DE.Views.Toolbar.tipFontSize": "Yazıtipi boyutu", "DE.Views.Toolbar.tipFontSize": "Yazıtipi boyutu",
"DE.Views.Toolbar.tipHAligh": "Yatay Hizala",
"DE.Views.Toolbar.tipHighlightColor": "Vurgu Rengi", "DE.Views.Toolbar.tipHighlightColor": "Vurgu Rengi",
"DE.Views.Toolbar.tipImgAlign": "Objeleri hizala", "DE.Views.Toolbar.tipImgAlign": "Objeleri hizala",
"DE.Views.Toolbar.tipImgGroup": "Grup objeleri", "DE.Views.Toolbar.tipImgGroup": "Grup objeleri",

View file

@ -1582,7 +1582,6 @@
"DE.Views.Toolbar.tipFontColor": "Колір шрифту", "DE.Views.Toolbar.tipFontColor": "Колір шрифту",
"DE.Views.Toolbar.tipFontName": "Шрифт", "DE.Views.Toolbar.tipFontName": "Шрифт",
"DE.Views.Toolbar.tipFontSize": "Розмір шрифта", "DE.Views.Toolbar.tipFontSize": "Розмір шрифта",
"DE.Views.Toolbar.tipHAligh": "Горизонтальне вирівнювання",
"DE.Views.Toolbar.tipHighlightColor": "Виділити колір", "DE.Views.Toolbar.tipHighlightColor": "Виділити колір",
"DE.Views.Toolbar.tipImgAlign": "Вирівняти об'єкти", "DE.Views.Toolbar.tipImgAlign": "Вирівняти об'єкти",
"DE.Views.Toolbar.tipImgGroup": "Група об'єктів", "DE.Views.Toolbar.tipImgGroup": "Група об'єктів",

View file

@ -1563,7 +1563,6 @@
"DE.Views.Toolbar.tipFontColor": "Màu chữ", "DE.Views.Toolbar.tipFontColor": "Màu chữ",
"DE.Views.Toolbar.tipFontName": "Phông chữ", "DE.Views.Toolbar.tipFontName": "Phông chữ",
"DE.Views.Toolbar.tipFontSize": "Cỡ chữ", "DE.Views.Toolbar.tipFontSize": "Cỡ chữ",
"DE.Views.Toolbar.tipHAligh": "Căn chỉnh ngang",
"DE.Views.Toolbar.tipHighlightColor": "Màu tô sáng", "DE.Views.Toolbar.tipHighlightColor": "Màu tô sáng",
"DE.Views.Toolbar.tipImgAlign": "Căn chỉnh đối tượng", "DE.Views.Toolbar.tipImgAlign": "Căn chỉnh đối tượng",
"DE.Views.Toolbar.tipImgGroup": "Nhóm đối tượng", "DE.Views.Toolbar.tipImgGroup": "Nhóm đối tượng",

View file

@ -2074,7 +2074,6 @@
"DE.Views.Toolbar.tipFontColor": "字体颜色", "DE.Views.Toolbar.tipFontColor": "字体颜色",
"DE.Views.Toolbar.tipFontName": "字体", "DE.Views.Toolbar.tipFontName": "字体",
"DE.Views.Toolbar.tipFontSize": "字体大小", "DE.Views.Toolbar.tipFontSize": "字体大小",
"DE.Views.Toolbar.tipHAligh": "水平对齐",
"DE.Views.Toolbar.tipHighlightColor": "颜色高亮", "DE.Views.Toolbar.tipHighlightColor": "颜色高亮",
"DE.Views.Toolbar.tipImgAlign": "对齐对象", "DE.Views.Toolbar.tipImgAlign": "对齐对象",
"DE.Views.Toolbar.tipImgGroup": "组合对象", "DE.Views.Toolbar.tipImgGroup": "组合对象",

View file

@ -39,14 +39,17 @@
{"src": "UsageInstructions/InsertAutoshapes.htm", "name": "Insert autoshapes"}, {"src": "UsageInstructions/InsertAutoshapes.htm", "name": "Insert autoshapes"},
{"src": "UsageInstructions/InsertCharts.htm", "name": "Insert charts" }, {"src": "UsageInstructions/InsertCharts.htm", "name": "Insert charts" },
{ "src": "UsageInstructions/InsertTextObjects.htm", "name": "Insert text objects" }, { "src": "UsageInstructions/InsertTextObjects.htm", "name": "Insert text objects" },
{"src": "UsageInstructions/InsertContentControls.htm", "name": "Insert content controls" }, { "src": "UsageInstructions/AddCaption.htm", "name": "Add caption" },
{"src": "UsageInstructions/CreateTableOfContents.htm", "name": "Create table of contents" }, { "src": "UsageInstructions/InsertSymbols.htm", "name": "Insert symbols and characters" },
{"src": "UsageInstructions/AlignArrangeObjects.htm", "name": "Align and arrange objects on a page" }, {"src": "UsageInstructions/AlignArrangeObjects.htm", "name": "Align and arrange objects on a page" },
{"src": "UsageInstructions/ChangeWrappingStyle.htm", "name": "Change wrapping style" }, {"src": "UsageInstructions/ChangeWrappingStyle.htm", "name": "Change wrapping style" },
{"src": "UsageInstructions/InsertContentControls.htm", "name": "Insert content controls" },
{"src": "UsageInstructions/CreateTableOfContents.htm", "name": "Create table of contents" },
{"src": "UsageInstructions/UseMailMerge.htm", "name": "Use mail merge", "headername": "Mail Merge"}, {"src": "UsageInstructions/UseMailMerge.htm", "name": "Use mail merge", "headername": "Mail Merge"},
{"src": "UsageInstructions/InsertEquation.htm", "name": "Insert equations", "headername": "Math equations" }, {"src": "UsageInstructions/InsertEquation.htm", "name": "Insert equations", "headername": "Math equations" },
{"src": "HelpfulHints/CollaborativeEditing.htm", "name": "Collaborative document editing", "headername": "Document co-editing"}, {"src": "HelpfulHints/CollaborativeEditing.htm", "name": "Collaborative document editing", "headername": "Document co-editing"},
{ "src": "HelpfulHints/Review.htm", "name": "Document Review" }, { "src": "HelpfulHints/Review.htm", "name": "Document Review" },
{"src": "HelpfulHints/Comparison.htm", "name": "Compare documents"},
{"src": "UsageInstructions/ViewDocInfo.htm", "name": "View document information", "headername": "Tools and settings"}, {"src": "UsageInstructions/ViewDocInfo.htm", "name": "View document information", "headername": "Tools and settings"},
{"src": "UsageInstructions/SavePrintDownload.htm", "name": "Save/download/print your document" }, {"src": "UsageInstructions/SavePrintDownload.htm", "name": "Save/download/print your document" },
{"src": "HelpfulHints/AdvancedSettings.htm", "name": "Advanced settings of Document Editor"}, {"src": "HelpfulHints/AdvancedSettings.htm", "name": "Advanced settings of Document Editor"},

View file

@ -27,7 +27,8 @@
<li><b>Alternate Input</b> is used to turn on/off hieroglyphs.</li> <li><b>Alternate Input</b> is used to turn on/off hieroglyphs.</li>
<li><b>Alignment Guides</b> is used to turn on/off alignment guides that appear when you move objects and allow you to position them on the page precisely.</li> <li><b>Alignment Guides</b> is used to turn on/off alignment guides that appear when you move objects and allow you to position them on the page precisely.</li>
<li><b>Compatibility</b> is used to <em>make the files compatible with older MS Word versions when saved as DOCX</em>.</li> <li><b>Compatibility</b> is used to <em>make the files compatible with older MS Word versions when saved as DOCX</em>.</li>
<li><span class="onlineDocumentFeatures"><b>Autosave</b> is used in the <em>online version</em> to turn on/off automatic saving of changes you make while editing.</span> <span class="desktopDocumentFeatures"><b>Autorecover</b> - is used in the <em>desktop version</em> to turn on/off the option that allows to automatically recover documents in case of the unexpected program closing.</span></li> <li><span class="onlineDocumentFeatures"><b>Autosave</b> is used in the <em>online version</em> to turn on/off automatic saving of changes you make while editing.</span></li>
<li><span class="desktopDocumentFeatures"><b>Autorecover</b> - is used in the <em>desktop version</em> to turn on/off the option that allows to automatically recover documents in case of the unexpected program closing.</span></li>
<li class="onlineDocumentFeatures"><b>Co-editing Mode</b> is used to select the display of the changes made during the co-editing: <li class="onlineDocumentFeatures"><b>Co-editing Mode</b> is used to select the display of the changes made during the co-editing:
<ul> <ul>
<li>By default the <b>Fast</b> mode is selected, the users who take part in the document co-editing will see the changes in real time once they are made by other users.</li> <li>By default the <b>Fast</b> mode is selected, the users who take part in the document co-editing will see the changes in real time once they are made by other users.</li>
@ -51,6 +52,18 @@
<li>Choose <b>Native</b> if you want your text to be displayed with the hinting embedded into font files.</li> <li>Choose <b>Native</b> if you want your text to be displayed with the hinting embedded into font files.</li>
</ul> </ul>
</li> </li>
<li><b>Default cache mode</b> - used to select the cache mode for the font characters. Its not recommended to switch it without any reason. It can be helpful in some cases only, for example, when an issue in the Google Chrome browser with the enabled hardware acceleration occurs.
<p>Document Editor has two cache modes:</p>
<ol>
<li>In the <b>first cache mode</b>, each letter is cached as a separate picture.</li>
<li>In the <b>second cache mode</b>, a picture of a certain size is selected where letters are placed dynamically and a mechanism of allocating/removing memory in this picture is also implemented. If there is not enough memory, a second picture is created, etc.</li>
</ol>
<p>The <b>Default cache mode</b> setting applies two above mentioned cache modes separately for different browsers:</p>
<ul>
<li>When the <b>Default cache mode</b> setting is enabled, Internet Explorer (v. 9, 10, 11) uses the <b>second cache mode</b>, other browsers use the <b>first cache mode</b>.</li>
<li>When the <b>Default cache mode</b> setting is disabled, Internet Explorer (v. 9, 10, 11) uses the <b>first cache mode</b>, other browsers use the <b>second cache mode</b>.</li>
</ul>
</li>
<li><b>Unit of Measurement</b> is used to specify what units are used on the rulers and in properties windows for measuring elements parameters such as width, height, spacing, margins etc. You can select the <b>Centimeter</b>, <b>Point</b>, or <b>Inch</b> option.</li> <li><b>Unit of Measurement</b> is used to specify what units are used on the rulers and in properties windows for measuring elements parameters such as width, height, spacing, margins etc. You can select the <b>Centimeter</b>, <b>Point</b>, or <b>Inch</b> option.</li>
</ul> </ul>
<p>To save the changes you made, click the <b>Apply</b> button.</p> <p>To save the changes you made, click the <b>Apply</b> button.</p>

View file

@ -70,15 +70,30 @@
<li>enter the needed text,</li> <li>enter the needed text,</li>
<li>click the <b>Add Comment/Add</b> button.</li> <li>click the <b>Add Comment/Add</b> button.</li>
</ol> </ol>
<p>The comment will be seen on the panel on the left. Any other user can answer to the added comment asking questions or reporting on the work he/she has done. For this purpose, click the <b>Add Reply</b> link situated under the comment.</p> <p>The comment will be seen on the <b>Comments</b> panel on the left. Any other user can answer to the added comment asking questions or reporting on the work he/she has done. For this purpose, click the <b>Add Reply</b> link situated under the comment, type in your reply text in the entry field and press the <b>Reply</b> button.</p>
<p>The text passage you commented will be highlighted in the document. To view the comment, just click within the passage. If you need to disable this feature, click the <b>File</b> tab at the top toolbar, select the <b>Advanced Settings...</b> option and uncheck the <b>Turn on display of the comments</b> box. In this case the commented passages will be highlighted only if you click the <img alt="Comments icon" src="../images/commentsicon.png" /> icon.</p>
<p>You can manage the comments you added in the following way:</p>
<ul>
<li>edit them by clicking the <img alt="Edit icon" src="../images/editcommenticon.png" /> icon,</li>
<li>delete them by clicking the <img alt="Delete icon" src="../images/deletecommenticon.png" /> icon,</li>
<li>close the discussion by clicking the <img alt="Resolve icon" src="../images/resolveicon.png" /> icon if the task or problem you stated in your comment was solved, after that the discussion you opened with your comment gets the resolved status. To open it again, click the <img alt="Open again icon" src="../images/resolvedicon.png" /> icon. If you want to hide resolved comments, click the <b>File</b> tab at the top toolbar, select the <b>Advanced Settings...</b> option, uncheck the <b>Turn on display of the resolved comments</b> box and click <b>Apply</b>. In this case the resolved comments will be highlighted only if you click the <img alt="Comments icon" src="../images/commentsicon.png" /> icon.</li>
</ul>
<p>If you are using the <b>Strict</b> co-editing mode, new comments added by other users will become visible only after you click the <img alt="Save icon" src="../images/saveupdate.png" /> icon in the left upper corner of the top toolbar.</p> <p>If you are using the <b>Strict</b> co-editing mode, new comments added by other users will become visible only after you click the <img alt="Save icon" src="../images/saveupdate.png" /> icon in the left upper corner of the top toolbar.</p>
<p>The text passage you commented will be highlighted in the document. To view the comment, just click within the passage. If you need to disable this feature, click the <b>File</b> tab at the top toolbar, select the <b>Advanced Settings...</b> option and uncheck the <b>Turn on display of the comments</b> box. In this case the commented passages will be highlighted only if you click the <img alt="Comments icon" src="../images/commentsicon.png" /> icon.</p>
<p>You can manage the added comments using the icons in the comment balloon or at the <b>Comments</b> panel on the left:</p>
<ul>
<li>edit the currently selected comment by clicking the <img alt="Edit icon" src="../images/editcommenticon.png" /> icon,</li>
<li>delete the currently selected comment by clicking the <img alt="Delete icon" src="../images/deletecommenticon.png" /> icon,</li>
<li>close the currently selected discussion by clicking the <img alt="Resolve icon" src="../images/resolveicon.png" /> icon if the task or problem you stated in your comment was solved, after that the discussion you opened with your comment gets the resolved status. To open it again, click the <img alt="Open again icon" src="../images/resolvedicon.png" /> icon. If you want to hide resolved comments, click the <b>File</b> tab at the top toolbar, select the <b>Advanced Settings...</b> option, uncheck the <b>Turn on display of the resolved comments</b> box and click <b>Apply</b>. In this case the resolved comments will be highlighted only if you click the <img alt="Comments icon" src="../images/commentsicon.png" /> icon.</li>
</ul>
<h4>Adding mentions</h4>
<p>When entering comments, you can use the <b>mentions</b> feature that allows to attract somebody's attention to the comment and send a notification to the mentioned user via email and <b>Talk</b>.</p>
<p>To add a mention enter the "+" or "@" sign anywhere in the comment text - a list of the portal users will open. To simplify the search process, you can start typing a name in the comment field - the user list will change as you type. Select the necessary person from the list. If the file has not yet been shared with the mentioned user, the <b>Sharing Settings</b> window will open. <b>Read only</b> access type is selected by default. Change it if necessary and click <b>OK</b>.</p>
<p>The mentioned user will receive an email notification that he/she has been mentioned in a comment. If the file has been shared, the user will also receive a corresponding notification.</p>
<p>To remove comments,</p>
<ol>
<li>click the <img alt="Remove comment icon" src="../images/removecomment_toptoolbar.png" /> <b>Remove</b> button at the <b>Collaboration</b> tab of the top toolbar,</li>
<li>select the necessary option from the menu:
<ul>
<li><b>Remove Current Comments</b> - to remove the currently selected comment. If some replies have beed added to the comment, all its replies will be removed as well.</li>
<li><b>Remove My Comments</b> - to remove comments you added without removing comments added by other users. If some replies have beed added to your comment, all its replies will be removed as well.</li>
<li><b>Remove All Comments</b> - to remove all the comments in the document that you and other users added.</li>
</ul>
</li>
</ol>
<p>To close the panel with comments, click the <img alt="Comments icon" src="../images/commentsicon.png" /> icon at the left sidebar once again.</p> <p>To close the panel with comments, click the <img alt="Comments icon" src="../images/commentsicon.png" /> icon at the left sidebar once again.</p>
</div> </div>
</body> </body>

View file

@ -0,0 +1,94 @@
<!DOCTYPE html>
<html>
<head>
<title>Compare documents</title>
<meta charset="utf-8" />
<meta name="description" content="Instructions on how to compare and merge two documents" />
<link type="text/css" rel="stylesheet" href="../editor.css" />
<script type="text/javascript" src="../callback.js"></script>
<script type="text/javascript" src="../search/js/page-search.js"></script>
</head>
<body>
<div class="mainpart">
<div class="search-field">
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>Compare documents</h1>
<p class="note"><b>Note</b>: this option is available in the <b>paid</b> <em>online version</em> only starting from <b>Document Server</b> v. <b>5.5</b>.</p>
<p>If you need to compare and merge two documents, you can use the document <b>Compare</b> feature. It allows to display the differences between two documents and merge the documents by accepting the changes one by one or all at once.</p>
<p>After comparing and merging two documents, the result will be stored on the portal as a new version of the original file<!-- (in the <em>online version</em> of editors)-->. <!--In the desktop version, when you click the <b>Save</b> button, the dialog window will appear where you will be suggested to save a new file.--></p>
<p>If you do not need to merge documents which are being compared, you can reject all the changes so that the original document remains unchanged.</p>
<h3 id="choosedocument">Choose a document for comparison</h3>
<p>To compare two documents, open the original document that you need to compare and select the second document for comparison:</p>
<ol>
<li>switch to the <b>Collaboration</b> tab at the top toolbar and press the <img alt="Compare button" src="../images/comparebutton.png" /> <b>Compare</b> button,</li>
<li>
select one of the following options to load the document:
<ul>
<li>the <b>Document from File</b> option will open the standard dialog window for file selection. Browse your computer hard disk drive for the necessary <em>.docx</em> file and click the <b>Open</b> button.</li>
<li>
the <b>Document from URL</b> option will open the window where you can enter a link to the file stored in a third-party web storage (for example, Nextcloud) if you have corresponding access rights to it. The link must be a <b>direct link for downloading the file</b>. When the link is specified, click the <b>OK</b> button.
<p class="note"><b>Note</b>: The direct link allows to download the file directly without opening it in a web browser. For example, to get a direct link in Nextcloud, find the necessary document in the file list, select the <b>Details</b> option from the file menu. Click the <b>Copy direct link (only works for users who have access to this file/folder)</b> icon to the right of the file name at the details panel. To find out how to get a direct link for downloading the file in a different third-party web storage, please refer to the corresponding third-party service documentation.</p>
</li>
<li class="onlineDocumentFeatures"> the <b>Document from Storage</b> option <!--(available in the <em>online version</em> only)--> will open the <b>Select Data Source</b> window. It displays the list of all the <em>.docx</em> documents stored on your portal you have corresponding access rights to. To navigate between the <b>Documents</b> module sections use the menu in the left part of the window. Select the necessary <em>.docx</em> document and click the <b>OK</b> button.</li>
</ul>
</li>
</ol>
<p>When the second document for comparison is selected, the comparison process will start and the document will look as if it was opened in the <b>Review</b> mode. All the changes are highlighted with a color, and you can view the changes, navigate between them, accept or reject them one by one or all the changes at once. It's also possible to change the display mode and see how the document looks before comparison, in the process of comparison, or how it will look after comparison if you accept all changes.</p>
<h3 id="displaymode">Choose the changes display mode</h3>
<p>Click the <img alt="Display Mode button" src="../images/review_displaymode.png" /> <b>Display Mode</b> button at the top toolbar and select one of the available modes from the list:</p>
<ul>
<li>
<b>Markup</b> - this option is selected by default. It is used to display the document <b>in the process of comparison</b>. This mode allows both to view the changes and edit the document.
<p><img alt="Compare documents - Markup" src="../images/compare_markup.png" /></p>
</li>
<li>
<b>Final</b> - this mode is used to display the document <b>after comparison</b> as if all the changes were accepted. This option does not actually accept all changes, it only allows you to see how the document will look like after you accept all the changes. In this mode, you cannot edit the document.
<p><img alt="Compare documents - Final" src="../images/compare_final.png" /></p>
</li>
<li>
<b>Original</b> - this mode is used to display the document <b>before comparison</b> as if all the changes were rejected. This option does not actually reject all changes, it only allows you to view the document without changes. In this mode, you cannot edit the document.
<p><img alt="Compare documents - Original" src="../images/compare_original.png" /></p>
</li>
</ul>
<h3 id="managechanges">Accept or reject changes</h3>
<p>Use the <img alt="To Previous Change button" src="../images/review_previous.png" /> <b>Previous</b> and the <img alt="To Next Change button" src="../images/review_next.png" /> <b>Next</b> buttons at the top toolbar to navigate among the changes.</p>
<p>To accept the currently selected change you can:</p>
<ul>
<li>click the <img alt="Accept button" src="../images/review_accepttoptoolbar.png" /> <b>Accept</b> button at the top toolbar, or</li>
<li>click the downward arrow below the <b>Accept</b> button and select the <b>Accept Current Change</b> option (in this case, the change will be accepted and you will proceed to the next change), or</li>
<li>click the <b>Accept</b> <img alt="Accept button" src="../images/review_accept.png" /> button of the change notification.</li>
</ul>
<p>To quickly accept all the changes, click the downward arrow below the <img alt="Accept button" src="../images/review_accepttoptoolbar.png" /> <b>Accept</b> button and select the <b>Accept All Changes</b> option.</p>
<p>To reject the current change you can:</p>
<ul>
<li>click the <img alt="Reject button" src="../images/review_rejecttoptoolbar.png" /> <b>Reject</b> button at the top toolbar, or</li>
<li>click the downward arrow below the <b>Reject</b> button and select the <b>Reject Current Change</b> option (in this case, the change will be rejected and you will move on to the next available change), or</li>
<li>click the <b>Reject</b> <img alt="Reject button" src="../images/review_reject.png" /> button of the change notification.</li>
</ul>
<p>To quickly reject all the changes, click the downward arrow below the <img alt="Reject button" src="../images/review_rejecttoptoolbar.png" /> <b>Reject</b> button and select the <b>Reject All Changes</b> option.</p>
<h3 id="comparisonnotes">Additional info on the comparison feature</h3>
<h5>Method of the comparison</h5>
<p>Documents are compared <b>by words</b>. If a word contains a change of at least one character (e.g. if a character was removed or replaced), in the result, the difference will be displayed as the change of the entire word, not the character.</p>
<p>The image below illustrates the case when the original file contains the word 'Characters' and the document for comparison contains the word 'Character'.</p>
<p><img alt="Compare documents - method" src="../images/compare_method.png" /></p>
<h5>Authorship of the document</h5>
<p>When the comparison process is launched, the second document for comparison is being loaded and compared to the current one.</p>
<ul>
<li>If the loaded document contains some data which is not represented in the original document, the data will be marked as added by a reviewer.</li>
<li>If the original document contains some data which is not represented in the loaded document, the data will be marked as deleted by a reviewer.</li>
</ul>
<p>If the authors of the original and loaded documents are the same person, the reviewer is the same user. His/her name is displayed in the change balloon.</p>
<p>If the authors of two files are different users, then the author of the second file loaded for comparison is the author of the added/removed changes.</p>
<h5>Presence of the tracked changes in the compared document</h5>
<p>If the original document contains some changes made in the review mode, they will be accepted in the comparison process. When you choose the second file for comparison, you'll see the corresponding warning message.</p>
<p>In this case, when you choose the <b>Original</b> display mode, the document will not contain any changes.</p>
</div>
</body>
</html>

View file

@ -30,7 +30,7 @@
<li>insert <a href="../UsageInstructions/InsertHeadersFooters.htm" onclick="onhyperlinkclick(this)">headers and footers</a> and <a href="../UsageInstructions/InsertPageNumbers.htm" onclick="onhyperlinkclick(this)">page numbers</a>,</li> <li>insert <a href="../UsageInstructions/InsertHeadersFooters.htm" onclick="onhyperlinkclick(this)">headers and footers</a> and <a href="../UsageInstructions/InsertPageNumbers.htm" onclick="onhyperlinkclick(this)">page numbers</a>,</li>
<li>insert <a href="../UsageInstructions/InsertTables.htm" onclick="onhyperlinkclick(this)">tables</a>, <a href="../UsageInstructions/InsertImages.htm" onclick="onhyperlinkclick(this)">images</a>, <a href="../UsageInstructions/InsertCharts.htm" onclick="onhyperlinkclick(this)">charts</a>, <a href="../UsageInstructions/InsertAutoshapes.htm" onclick="onhyperlinkclick(this)">shapes</a>,</li> <li>insert <a href="../UsageInstructions/InsertTables.htm" onclick="onhyperlinkclick(this)">tables</a>, <a href="../UsageInstructions/InsertImages.htm" onclick="onhyperlinkclick(this)">images</a>, <a href="../UsageInstructions/InsertCharts.htm" onclick="onhyperlinkclick(this)">charts</a>, <a href="../UsageInstructions/InsertAutoshapes.htm" onclick="onhyperlinkclick(this)">shapes</a>,</li>
<li>insert <a href="../UsageInstructions/AddHyperlinks.htm" onclick="onhyperlinkclick(this)">hyperlinks</a>, <a href="../HelpfulHints/CollaborativeEditing.htm#comments" onclick="onhyperlinkclick(this)">comments</a>,</li> <li>insert <a href="../UsageInstructions/AddHyperlinks.htm" onclick="onhyperlinkclick(this)">hyperlinks</a>, <a href="../HelpfulHints/CollaborativeEditing.htm#comments" onclick="onhyperlinkclick(this)">comments</a>,</li>
<li>insert <a href="../UsageInstructions/InsertTextObjects.htm" onclick="onhyperlinkclick(this)">text boxes and Text Art objects</a>, <a href="../UsageInstructions/InsertEquation.htm" onclick="onhyperlinkclick(this)">equations</a>, <a href="../UsageInstructions/InsertDropCap.htm" onclick="onhyperlinkclick(this)">drop caps</a>, <a href="../UsageInstructions/InsertContentControls.htm" onclick="onhyperlinkclick(this)">content controls</a>.</li> <li>insert <a href="../UsageInstructions/InsertTextObjects.htm" onclick="onhyperlinkclick(this)">text boxes and Text Art objects</a>, <a href="../UsageInstructions/InsertEquation.htm" onclick="onhyperlinkclick(this)">equations</a>, <a href="../UsageInstructions/InsertSymbols.htm" onclick="onhyperlinkclick(this)">symbols</a>, <a href="../UsageInstructions/InsertDropCap.htm" onclick="onhyperlinkclick(this)">drop caps</a>, <a href="../UsageInstructions/InsertContentControls.htm" onclick="onhyperlinkclick(this)">content controls</a>.</li>
</ul> </ul>
</div> </div>
</body> </body>

View file

@ -32,7 +32,7 @@
<li><b>OCR</b> allows to recognize text included into a picture and insert it into the document text,</li> <li><b>OCR</b> allows to recognize text included into a picture and insert it into the document text,</li>
<li><b>PhotoEditor</b> allows to edit images: crop, flip, rotate them, draw lines and shapes, add icons and text, load a mask and apply filters such as Grayscale, Invert, Sepia, Blur, Sharpen, Emboss, etc.,</li> <li><b>PhotoEditor</b> allows to edit images: crop, flip, rotate them, draw lines and shapes, add icons and text, load a mask and apply filters such as Grayscale, Invert, Sepia, Blur, Sharpen, Emboss, etc.,</li>
<li class="onlineDocumentFeatures"><b>Speech</b> allows to convert the selected text into speech,</li> <li class="onlineDocumentFeatures"><b>Speech</b> allows to convert the selected text into speech,</li>
<li><b>Symbol Table</b> allows to insert special symbols into your text,</li> <li><b>Symbol Table</b> allows to insert special symbols into your text (available in the <em>desktop version</em> only),</li>
<li><b>Thesaurus</b> allows to search for synonyms and antonyms of a word and replace it with the selected one,</li> <li><b>Thesaurus</b> allows to search for synonyms and antonyms of a word and replace it with the selected one,</li>
<li><b>Translator</b> allows to translate the selected text into other languages,</li> <li><b>Translator</b> allows to translate the selected text into other languages,</li>
<li><b>YouTube</b> allows to embed YouTube videos into your document.</li> <li><b>YouTube</b> allows to embed YouTube videos into your document.</li>

View file

@ -29,6 +29,7 @@
<li>insert <a href="../UsageInstructions/InsertFootnotes.htm" onclick="onhyperlinkclick(this)">footnotes</a>,</li> <li>insert <a href="../UsageInstructions/InsertFootnotes.htm" onclick="onhyperlinkclick(this)">footnotes</a>,</li>
<li>insert <a href="../UsageInstructions/AddHyperlinks.htm" onclick="onhyperlinkclick(this)">hyperlinks</a>,</li> <li>insert <a href="../UsageInstructions/AddHyperlinks.htm" onclick="onhyperlinkclick(this)">hyperlinks</a>,</li>
<li>add <a href="../UsageInstructions/InsertBookmarks.htm" onclick="onhyperlinkclick(this)">bookmarks</a>.</li> <li>add <a href="../UsageInstructions/InsertBookmarks.htm" onclick="onhyperlinkclick(this)">bookmarks</a>.</li>
<li>add <a href="../UsageInstructions/Addcaption.htm" onclick="onhyperlinkclick(this)">captions</a>.</li>
</ul> </ul>
</div> </div>
</body> </body>

View file

@ -14,7 +14,7 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)"> <input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div> </div>
<h1>Collaboration tab</h1> <h1>Collaboration tab</h1>
<p>The <b>Collaboration</b> tab allows to organize collaborative work on the document. <span class="onlineDocumentFeatures">In the <em>online version</em>, you can share the file, select a co-editing mode, manage comments, track changes made by a reviewer, view all versions and revisions.</span> <span class="desktopDocumentFeatures">In the <em>desktop version</em>, you can manage comments and use the Track Changes feature</span>.</p> <p>The <b>Collaboration</b> tab allows to organize collaborative work on the document. <span class="onlineDocumentFeatures">In the <em>online version</em>, you can share the file, select a co-editing mode, manage comments, track changes made by a reviewer, view all versions and revisions. In the commenting mode, you can add and remove comments, navigate between tracked changes, use chat and view version history.</span> <span class="desktopDocumentFeatures">In the <em>desktop version</em>, you can manage comments and use the Track Changes feature</span>.</p>
<div class="onlineDocumentFeatures"> <div class="onlineDocumentFeatures">
<p>Online Document Editor window:</p> <p>Online Document Editor window:</p>
<p><img alt="Collaboration tab" src="../images/interface/reviewtab.png" /></p> <p><img alt="Collaboration tab" src="../images/interface/reviewtab.png" /></p>
@ -27,10 +27,11 @@
<ul> <ul>
<li class="onlineDocumentFeatures">specify <a href="../HelpfulHints/CollaborativeEditing.htm" onclick="onhyperlinkclick(this)">sharing settings</a> (available in the <em>online version</em> only),</li> <li class="onlineDocumentFeatures">specify <a href="../HelpfulHints/CollaborativeEditing.htm" onclick="onhyperlinkclick(this)">sharing settings</a> (available in the <em>online version</em> only),</li>
<li class="onlineDocumentFeatures">switch between the <a href="../HelpfulHints/CollaborativeEditing.htm" onclick="onhyperlinkclick(this)">Strict and Fast</a> co-editing modes (available in the <em>online version</em> only),</li> <li class="onlineDocumentFeatures">switch between the <a href="../HelpfulHints/CollaborativeEditing.htm" onclick="onhyperlinkclick(this)">Strict and Fast</a> co-editing modes (available in the <em>online version</em> only),</li>
<li>add <a href="../HelpfulHints/CollaborativeEditing.htm#comments" onclick="onhyperlinkclick(this)">comments</a> to the document,</li> <li>add or remove <a href="../HelpfulHints/CollaborativeEditing.htm#comments" onclick="onhyperlinkclick(this)">comments</a> to the document,</li>
<li>enable the <a href="../HelpfulHints/Review.htm" onclick="onhyperlinkclick(this)">Track Changes</a> feature,</li> <li>enable the <a href="../HelpfulHints/Review.htm" onclick="onhyperlinkclick(this)">Track Changes</a> feature,</li>
<li>choose the <a href="../HelpfulHints/Review.htm#displaymode" onclick="onhyperlinkclick(this)">changes display mode</a>,</li> <li>choose the <a href="../HelpfulHints/Review.htm#displaymode" onclick="onhyperlinkclick(this)">changes display mode</a>,</li>
<li>manage the <a href="../HelpfulHints/Review.htm#managechanges" onclick="onhyperlinkclick(this)">suggested changes</a>,</li> <li>manage the <a href="../HelpfulHints/Review.htm#managechanges" onclick="onhyperlinkclick(this)">suggested changes</a>,</li>
<li class="onlineDocumentFeatures">load a document for <a href="../HelpfulHints/Comparison.htm" onclick="onhyperlinkclick(this)">comparison</a> (available in the <em>online version</em> only),</li>
<li class="onlineDocumentFeatures">open the <a href="../HelpfulHints/CollaborativeEditing.htm#chat" onclick="onhyperlinkclick(this)">Chat</a> panel (available in the <em>online version</em> only),</li> <li class="onlineDocumentFeatures">open the <a href="../HelpfulHints/CollaborativeEditing.htm#chat" onclick="onhyperlinkclick(this)">Chat</a> panel (available in the <em>online version</em> only),</li>
<li class="onlineDocumentFeatures">track <a href="../UsageInstructions/ViewDocInfo.htm" onclick="onhyperlinkclick(this)">version history</a> (available in the <em>online version</em> only).</li> <li class="onlineDocumentFeatures">track <a href="../UsageInstructions/ViewDocInfo.htm" onclick="onhyperlinkclick(this)">version history</a> (available in the <em>online version</em> only).</li>
</ul> </ul>

View file

@ -0,0 +1,62 @@
<!DOCTYPE html>
<html>
<head>
<title>Add caption</title>
<meta charset="utf-8" />
<meta name="description" content=">The Caption is a numbered label that you can apply to objects, such as equations, tables, figures and images within your documents" />
<link type="text/css" rel="stylesheet" href="../editor.css" />
<script type="text/javascript" src="../callback.js"></script>
<script type="text/javascript" src="../search/js/page-search.js"></script>
</head>
<body>
<div class="mainpart">
<div class="search-field">
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>Add caption</h1>
<p>The <b>Caption</b> is a numbered label that you can apply to objects, such as equations, tables, figures and images within your documents.</p>
<p>This makes it easy to reference within your text as there is an easily recognizable label on your object.</p>
<p>To add the caption to an object:</p>
<ul>
<li>select the object which one to apply a caption;</li>
<li>switch to the <b>References</b> tab of the top toolbar;</li>
<li>
click the <img alt="Rich text content control" src="../images/caption_icon.png" /> <b>Caption</b> icon at the top toolbar or right lick o nthe object and select the <b>Insert Caption</b> option to open the <b>Insert Caption</b> dialogue box
<ul>
<li>choose the label to use for your caption by clicking the label drop-down and choosing the object;
<p>or</p></li>
<li>create a new label by clicking the <b>Add label</b> button to open the <b>Add label</b> dialogue box. Enter a name for the label into the label text box. Then click the <b>OK</b> button to add a new label into the label list;</li>
</ul>
<li>check the <b>Include chapter number</b> checkbox to change the numbering for your caption;</li>
<li>in <b>insert</b> drop-down menu choose <b>Before</b> to place the label above the object or <b>After</b> to place it below the object;</li>
<li>check the <b>Exclude label from caption</b> checkbox to leave only a number for this particular caption in accordance with a sequence number;</li>
<li>you can then choose how to number your caption by assigning a specific style to the caption and adding a separator;</li>
<li>to apply the caption click the <b>OK</b> button.</li>
</ul>
<p><img alt="Content Control settings window" src="../images/insertcaptionbox.png" /></p>
<h2>Deleting a label</h2>
<p>To <b>delete</b> a label you have created, choose the label from the label list within the caption dialogue box then click the <b>Delete label</b> button. The label you created will be immediately deleted.</p>
<p class="note"><b>Note:</b>You may delete labels you have created but you cannot delete the default labels.</p>
<h2>Formatting captions</h2>
<p>As soon as you add a caption, a new style for captions is automatically added to the styles section. In order to change the style for all captions throughout the document, you should follow these steps:</p>
<ul>
<li>select the text a new <b>Caption</b> style will be copied from;</li>
<li>search for the <b>Caption</b> style (highlighted in blue by default) in the styles gallery which you may find on <b>Home</b> tab of the top toolbar;</li>
<li>right click on it and choose the <b>Update from selection</b> option.</li>
</ul>
<p><img alt="Content Control settings window" src="../images/updatefromseleciton.png" /></p>
<h2>Grouping captions up</h2>
<p>If you want to be able to move the object and the caption as one unit, you need <a href="../UsageInstructions/AlignArrangeObjects.htm" onclick="onhyperlinkclick(this)">to group</a> the object and the caption together</p>
<ul>
<li>select the object;</li>
<li>select one of the <b>Wrapping styles</b> using the right sidebar;</li>
<li>add the caption as it is mentioned above;</li>
<li>hold down Shift and select the items you want to group up;</li>
<li><b>right click</b> on either item and choose <b>Arrange</b> > <b>Group</b>.</li>
</ul>
<p><img alt="Content Control settings window" src="../images/Groupup.png" /></p>
<p>Now both items will move simultaneously if you drag them somewhere else in the document.</p>
<p>To unbind the objects click on <b>Arrange</b> > <b>Ungroup</b> respectively.</p>
</div>
</body>
</html>

View file

@ -18,10 +18,12 @@
<ol> <ol>
<li>place the cursor to the position where a list will be started (this can be a new line or the already entered text),</li> <li>place the cursor to the position where a list will be started (this can be a new line or the already entered text),</li>
<li>switch to the <b>Home</b> tab of the top toolbar,</li> <li>switch to the <b>Home</b> tab of the top toolbar,</li>
<li>select the list type you would like to start: <li>
select the list type you would like to start:
<ul> <ul>
<li><b>Unordered list</b> with markers is created using the <b>Bullets</b> <img alt="Unordered List icon" src="../images/bullets.png" /> icon situated at the top toolbar</li> <li><b>Unordered list</b> with markers is created using the <b>Bullets</b> <img alt="Unordered List icon" src="../images/bullets.png" /> icon situated at the top toolbar</li>
<li><b>Ordered list</b> with digits or letters is created using the <b>Numbering</b> <img alt="Ordered List icon" src="../images/numbering.png" /> icon situated at the top toolbar <li>
<b>Ordered list</b> with digits or letters is created using the <b>Numbering</b> <img alt="Ordered List icon" src="../images/numbering.png" /> icon situated at the top toolbar
<p class="note"><b>Note</b>: click the downward arrow next to the <b>Bullets</b> or <b>Numbering</b> icon to select how the list is going to look like.</p> <p class="note"><b>Note</b>: click the downward arrow next to the <b>Bullets</b> or <b>Numbering</b> icon to select how the list is going to look like.</p>
</li> </li>
</ul> </ul>
@ -61,6 +63,49 @@
<li>use the <b>Set numbering value</b> option from the contextual menu,</li> <li>use the <b>Set numbering value</b> option from the contextual menu,</li>
<li>in a new window that opens, set the necessary numeric value and click the <b>OK</b> button.</li> <li>in a new window that opens, set the necessary numeric value and click the <b>OK</b> button.</li>
</ol> </ol>
<h3>Change the list settings</h3>
<p>To change the bulleted or numbered list settings, such as a bullet/number type, alignment, size and color:</p>
<ol>
<li>click an existing list item or select the text you want to format as a list,</li>
<li>click the <b>Bullets</b> <img alt="Unordered List icon" src="../images/bullets.png" /> or <b>Numbering</b> <img alt="Ordered List icon" src="../images/numbering.png" /> icon at the <b>Home</b> tab of the top toolbar,</li>
<li>select the <b>List Settings</b> option,</li>
<li>
the <b>List Settings</b> window will open. The bulleted list settings window looks like this:
<p><img alt="Bulleted List Settings window" src="../images/bulletedlistsettings.png" /></p>
<p>The numbered list settings window looks like this:</p>
<p><img alt="Numbered List Settings window" src="../images/orderedlistsettings.png" /></p>
<p>For the bulleted list, you can choose a character used as a <b>bullet</b>, while for the numbered list you can choose the numbering <b>type</b>. The <b>Alignment</b>, <b>Size</b> and <b>Color</b> options are the same both for the bulleted and numbered lists.</p>
<ul>
<li><b>Bullet</b> - allows to select the necessary character used for the bulleted list. When you click on the <b>Font and Symbol</b> field, the <b>Symbol</b> window opens that allows to choose one of the available characters. To learn more on how to work with symbols, you can refer to <a href="../UsageInstructions/InsertSymbols.htm" onclick="onhyperlinkclick(this)">this article</a>.</li>
<li><b>Type</b> - allows to select the necessary numbering type used for the numbered list. The following options are available: <em>None</em>, <em>1, 2, 3,...</em>, <em>a, b, c,...</em>, <em>A, B, C,...</em>, <em>i, ii, iii,...</em>, <em>I, II, III,...</em>.</li>
<li><b>Alignment</b> - allows to select the necessary bullet/number alignment type that is used to align bullets/numbers horizontally within the space designated for them. The available alignment types are the following: <em>Left</em>, <em>Center</em>, <em>Right</em>.</li>
<li><b>Size</b> - allows to select the necessary bullet/number size. The <em>Like a text</em> option is selected by default. When this option is selected, the bullet or number size corresponds to the text size. You can choose one of the predefined sizes from <em>8</em> to <em>96</em>.</li>
<li><b>Color</b> - allows to select the necessary bullet/number color. The <em>Like a text</em> option is selected by default. When this option is selected, the bullet or number color corresponds to the text color. You can choose the <b>Automatic</b> option to apply the automatic color, or select one of the <em>theme colors</em>, or <em>standard colors</em> on the palette, or specify a <em>custom</em> color.</li>
</ul>
<p>All the changes are displayed in the <b>Preview</b> field.</p>
</li>
<li>click <b>OK</b> to apply the changes and close the settings window.</li>
</ol>
<p>To change the multilevel list settings,</p>
<ol>
<li>click a list item,</li>
<li>click the <b>Multilevel list</b> <img alt="Multilevel list icon" src="../images/outline.png" /> icon at the <b>Home</b> tab of the top toolbar,</li>
<li>select the <b>List Settings</b> option,</li>
<li>
the <b>List Settings</b> window will open. The multilevel list settings window looks like this:
<p><img alt="Multilevel List Settings window" src="../images/multilevellistsettings.png" /></p>
<p>Choose the necessary level of the list in the <b>Level</b> field on the left, then use the buttons on the top to adjust the bullet or number appearance for the selected level:</p>
<ul>
<li><b>Type</b> - allows to select the necessary numbering type used for the numbered list or the necessary character used for the bulleted list. The following options are available for the numbered list: <em>None</em>, <em>1, 2, 3,...</em>, <em>a, b, c,...</em>, <em>A, B, C,...</em>, <em>i, ii, iii,...</em>, <em>I, II, III,...</em>. For the bulleted list, you can choose one of the default symbols or use the <b>New bullet</b> option. When you click this option, the <b>Symbol</b> window opens that allows to choose one of the available characters. To learn more on how to work with symbols, you can refer to <a href="../UsageInstructions/InsertSymbols.htm" onclick="onhyperlinkclick(this)">this article</a>.</li>
<li><b>Alignment</b> - allows to select the necessary bullet/number alignment type that is used to align bullets/numbers horizontally within the space designated for them at the beginning of the paragraph. The available alignment types are the following: <em>Left</em>, <em>Center</em>, <em>Right</em>.</li>
<li><b>Size</b> - allows to select the necessary bullet/number size. The <em>Like a text</em> option is selected by default. You can choose one of the predefined sizes from <em>8</em> to <em>96</em>.</li>
<li><b>Color</b> - allows to select the necessary bullet/number color. The <em>Like a text</em> option is selected by default. When this option is selected, the bullet or number color corresponds to the text color. You can choose the <b>Automatic</b> option to apply the automatic color, or select one of the <em>theme colors</em>, or <em>standard colors</em> on the palette, or specify a <em>custom</em> color.</li>
</ul>
<p>All the changes are displayed in the <b>Preview</b> field.</p>
</li>
<li>click <b>OK</b> to apply the changes and close the settings window.</li>
</ol>
</div> </div>
</body> </body>
</html> </html>

View file

@ -18,8 +18,8 @@
<p class="note"><b>Note</b>: in case you want to apply the formatting to the text already present in the document, select it with the mouse or <a href="../HelpfulHints/KeyboardShortcuts.htm#textselection" onclick="onhyperlinkclick(this)">using the keyboard</a> and apply the formatting.</p> <p class="note"><b>Note</b>: in case you want to apply the formatting to the text already present in the document, select it with the mouse or <a href="../HelpfulHints/KeyboardShortcuts.htm#textselection" onclick="onhyperlinkclick(this)">using the keyboard</a> and apply the formatting.</p>
<table> <table>
<tr> <tr>
<td>Font</td> <td width="10%">Font</td>
<td><img alt="Font" src="../images/fontfamily.png" /></td> <td width="15%"><img alt="Font" src="../images/fontfamily.png" /></td>
<td>Is used to select one of the fonts from the list of the available ones. <span class="desktopDocumentFeatures">If a required font is not available in the list, you can download and install it on your operating system, after that the font will be available for use in the <em>desktop version</em>.</span></td> <td>Is used to select one of the fonts from the list of the available ones. <span class="desktopDocumentFeatures">If a required font is not available in the list, you can download and install it on your operating system, after that the font will be available for use in the <em>desktop version</em>.</span></td>
</tr> </tr>
<tr> <tr>

View file

@ -26,6 +26,7 @@
<p class="note"><b>Note</b>: to add a caption within the autoshape make sure the shape is selected on the page and start typing your text. The text you add in this way becomes a part of the autoshape (when you move or rotate the shape, the text moves or rotates with it).</p> <p class="note"><b>Note</b>: to add a caption within the autoshape make sure the shape is selected on the page and start typing your text. The text you add in this way becomes a part of the autoshape (when you move or rotate the shape, the text moves or rotates with it).</p>
</li> </li>
</ol> </ol>
<p>It's also possible to add a caption to the autoshape. To learn more on how to work with captions for autoshapes, you can refer to <a href="../UsageInstructions/AddCaption.htm" onclick="onhyperlinkclick(this)">this article</a>.</p>
<h3>Move and resize autoshapes</h3> <h3>Move and resize autoshapes</h3>
<p id ="shape_resize"><img class="floatleft" alt="Reshaping autoshape" src="../images/reshaping.png" />To change the autoshape size, drag small squares <img alt="Square icon" src="../images/resize_square.png" /> situated on the shape edges. To maintain the original proportions of the selected autoshape while resizing, hold down the <b>Shift</b> key and drag one of the corner icons.</pid> <p id ="shape_resize"><img class="floatleft" alt="Reshaping autoshape" src="../images/reshaping.png" />To change the autoshape size, drag small squares <img alt="Square icon" src="../images/resize_square.png" /> situated on the shape edges. To maintain the original proportions of the selected autoshape while resizing, hold down the <b>Shift</b> key and drag one of the corner icons.</pid>
<p>When modifying some shapes, for example figured arrows or callouts, the yellow diamond-shaped <img alt="Yellow diamond icon" src="../images/yellowdiamond.png" /> icon is also available. It allows you to adjust some aspects of the shape, for example, the length of the head of an arrow.</p> <p>When modifying some shapes, for example figured arrows or callouts, the yellow diamond-shaped <img alt="Yellow diamond icon" src="../images/yellowdiamond.png" /> icon is also available. It allows you to adjust some aspects of the shape, for example, the length of the head of an arrow.</p>
@ -116,6 +117,7 @@
<li><b>Show shadow</b> - check this option to display shape with shadow.</li> <li><b>Show shadow</b> - check this option to display shape with shadow.</li>
</ul> </ul>
<hr /> <hr />
<h3>Adjust autoshape advanced settings</h3>
<p>To change the <b>advanced settings</b> of the autoshape, right-click it and select the <b>Advanced Settings</b> option in the menu or use the <b>Show advanced settings</b> link at the right sidebar. The 'Shape - Advanced Settings' window will open:</p> <p>To change the <b>advanced settings</b> of the autoshape, right-click it and select the <b>Advanced Settings</b> option in the menu or use the <b>Show advanced settings</b> link at the right sidebar. The 'Shape - Advanced Settings' window will open:</p>
<p><img alt="Shape - Advanced Settings" src="../images/shape_properties.png" /></p> <p><img alt="Shape - Advanced Settings" src="../images/shape_properties.png" /></p>
<p>The <b>Size</b> tab contains the following parameters:</p> <p>The <b>Size</b> tab contains the following parameters:</p>

View file

@ -36,6 +36,11 @@
<li>in the <b>Bookmarks</b> window that opens, select the bookmark you want to jump to. To easily find the necessary bookmark in the list you can sort the list by bookmark <b>Name</b> or by <b>Location</b> of a bookmark within the document text,</li> <li>in the <b>Bookmarks</b> window that opens, select the bookmark you want to jump to. To easily find the necessary bookmark in the list you can sort the list by bookmark <b>Name</b> or by <b>Location</b> of a bookmark within the document text,</li>
<li>check the <b>Hidden bookmarks</b> option to display hidden bookmarks in the list (i.e. the bookmarks automatically created by the program when adding references to a certain part of the document. For example, if you create a hyperlink to a certain heading within the document, the document editor automatically creates a hidden bookmark to the target of this link).</li> <li>check the <b>Hidden bookmarks</b> option to display hidden bookmarks in the list (i.e. the bookmarks automatically created by the program when adding references to a certain part of the document. For example, if you create a hyperlink to a certain heading within the document, the document editor automatically creates a hidden bookmark to the target of this link).</li>
<li>click the <b>Go to</b> button - the cursor will be positioned in the location within the document where the selected bookmark was added, or the corresponding text passage will be selected,</li> <li>click the <b>Go to</b> button - the cursor will be positioned in the location within the document where the selected bookmark was added, or the corresponding text passage will be selected,</li>
<li>
click the <b>Get Link</b> button - a new window will open where you can press the <b>Copy</b> button to copy the link to the file which specifyes the bookmark location in the document. When you paste this link in a browser address bar and press Enter, the document will open in the location where the selected bookmark was added.
<p><img alt="Bookmarks window" src="../images/bookmark_window2.png" /></p>
<p class="note"><b>Note</b>: if you want to share this link with other users, you'll also need to provide corresponding access rights to the file for certain users using the <b>Sharing</b> option at the <b>Collaboration</b> tab.</p>
</li>
<li>click the <b>Close</b> button to close the window.</li> <li>click the <b>Close</b> button to close the window.</li>
</ol> </ol>
<p>To delete a bookmark select it in the bookmark list and use the <b>Delete</b> button.</p> <p>To delete a bookmark select it in the bookmark list and use the <b>Delete</b> button.</p>

View file

@ -14,52 +14,139 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)"> <input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div> </div>
<h1>Insert content controls</h1> <h1>Insert content controls</h1>
<p>Using content controls you can create a form with input fields that can be filled in by other users, or protect some parts of the document from being edited or deleted. Content controls are objects containing text that can be formatted. Plain text content controls cannot contain more than one paragraph, while rich text content controls can contain several paragraphs, lists, and objects (images, shapes, tables etc.). </p> <p>Content controls are objects containing different types of contents, such as text, objects etc. Depending on the selected content control type, you can create a form with input fields that can be filled in by other users, or protect some parts of the document from being edited or deleted etc.</p>
<p class="note"><b>Note</b>: the possibility to add new content controls is available in the <b>paid</b> version only. In the open source version, you can edit existing content controls, as well as copy and paste them.</p>
<p>Currently, you can add the following types of content controls: <em>Plain Text</em>, <em>Rich Text</em>, <em>Picture</em>, <em>Combo box</em>, <em>Drop-down list</em>, <em>Date</em>, <em>Check box</em>.</p>
<ul>
<li><em>Plain Text</em> is an object containing text that can be formatted. Plain text content controls cannot contain more than one paragraph.</li>
<li><em>Rich Text</em> is an object containing text that can be formatted. Rich text content controls can contain several paragraphs, lists, and objects (images, shapes, tables etc.).</li>
<li><em>Picture</em> is an object containing a single image.</li>
<li><em>Combo box</em> is an object containing a drop-down list with a set of choices. It allows to choose one of the predefined values from the list and edit the selected value if necessary.</li>
<li><em>Drop-down list</em> is an object containing a drop-down list with a set of choices. It allows to choose one of the predefined values from the list. The selected value cannot be edited.</li>
<li><em>Date</em> is an object containing a calendar that allows to choose a date.</li>
<li><em>Check box</em> is an object that allows to display two states: check box is selected and check box is cleared.</li>
</ul>
<h3>Adding content controls</h3> <h3>Adding content controls</h3>
<p>To create a new <b>plain text content control</b>,</p> <h5>Create a new Plain Text content control</h5>
<ol> <ol>
<li>position the insertion point within a line of the text where you want the control to be added,<br />or select a text passage you want to become the control contents.</li> <li>position the insertion point within a line of the text where you want the control to be added,<br />or select a text passage you want to become the control contents.</li>
<li>switch to the <b>Insert</b> tab of the top toolbar.</li> <li>switch to the <b>Insert</b> tab of the top toolbar.</li>
<li>click the arrow next to the <img alt="Content Controls icon" src="../images/insertccicon.png" /> <b>Content Controls</b> icon.</li> <li>click the arrow next to the <img alt="Content Controls icon" src="../images/insertccicon.png" /> <b>Content Controls</b> icon.</li>
<li>choose the <b>Insert plain text content control</b> option from the menu.</li> <li>choose the <b>Plain Text</b> option from the menu.</li>
</ol> </ol>
<p>The control will be inserted at the insertion point within a line of the existing text. Plain text content controls do not allow adding line breaks and cannot contain other objects such as images, tables etc.</p> <p>The control will be inserted at the insertion point within a line of the existing text. Replace the default text within the control ("Your text here") with your own one: select the default text, and type in a new text or copy a text passage from anywhere and paste it into the content control. Plain text content controls do not allow adding line breaks and cannot contain other objects such as images, tables etc.</p>
<p><img alt="New plain text content control" src="../images/addedcontentcontrol.png" /></p> <p><img alt="New plain text content control" src="../images/addedcontentcontrol.png" /></p>
<p>To create a new <b>rich text content control</b>,</p> <h5>Create a new Rich Text content control</h5>
<ol> <ol>
<li>position the insertion point at the end of a paragraph after which you want the control to be added,<br />or select one or more of the existing paragraphs you want to become the control contents.</li> <li>position the insertion point at the end of a paragraph after which you want the control to be added,<br />or select one or more of the existing paragraphs you want to become the control contents.</li>
<li>switch to the <b>Insert</b> tab of the top toolbar.</li> <li>switch to the <b>Insert</b> tab of the top toolbar.</li>
<li>click the arrow next to the <img alt="Content Controls icon" src="../images/insertccicon.png" /> <b>Content Controls</b> icon.</li> <li>click the arrow next to the <img alt="Content Controls icon" src="../images/insertccicon.png" /> <b>Content Controls</b> icon.</li>
<li>choose the <b>Insert rich text content control</b> option from the menu.</li> <li>choose the <b>Rich Text</b> option from the menu.</li>
</ol> </ol>
<p>The control will be inserted in a new paragraph. Rich text content controls allow adding line breaks, i.e. can contain multiple paragraphs as well as some objects, such as images, tables, other content controls etc.</p> <p>The control will be inserted in a new paragraph. Replace the default text within the control ("Your text here") with your own one: select the default text, and type in a new text or copy a text passage from anywhere and paste it into the content control. Rich text content controls allow adding line breaks, i.e. can contain multiple paragraphs as well as some objects, such as images, tables, other content controls etc.</p>
<p><img alt="Rich text content control" src="../images/richtextcontentcontrol.png" /></p> <p><img alt="Rich text content control" src="../images/richtextcontentcontrol.png" /></p>
<h5>Create a new Picture content control</h5>
<ol>
<li>position the insertion point within a line of the text where you want the control to be added.</li>
<li>switch to the <b>Insert</b> tab of the top toolbar.</li>
<li>click the arrow next to the <img alt="Content Controls icon" src="../images/insertccicon.png" /> <b>Content Controls</b> icon.</li>
<li>choose the <b>Picture</b> option from the menu - the control will be inserted at the insertion point.</li>
<li>click the <img alt="Insert image icon" src="../images/image_settings_icon.png" /> image icon in the button above the content control border - a standard file selection window will open. Choose an image stored on your computer and click <b>Open</b>.</li>
</ol>
<p>The selected image will be displayed within the content control. To replace the image, click the <img alt="Insert image icon" src="../images/image_settings_icon.png" /> image icon in the button above the content control border and select another image.</p>
<p><img alt="New picture content control" src="../images/picturecontentcontrol.png" /></p>
<h5>Create a new Combo box or Drop-down list content control</h5>
<p>The <em>Combo box</em> and <em>Drop-down list</em> content controls contain a drop-down list with a set of choices. They can be created in nearly the same way. The main difference between them is that the selected value in the drop-down list cannot be edited, while the selected value in the combo box can be replaced with your own one.</p>
<ol>
<li>position the insertion point within a line of the text where you want the control to be added.</li>
<li>switch to the <b>Insert</b> tab of the top toolbar.</li>
<li>click the arrow next to the <img alt="Content Controls icon" src="../images/insertccicon.png" /> <b>Content Controls</b> icon.</li>
<li>choose the <b>Combo box</b> or <b>Drop-down list</b> option from the menu - the control will be inserted at the insertion point.</li>
<li>right-click the added control and choose the <b>Content control settings</b> option from the contextual menu.</li>
<li>in the the <b>Content Control Settings</b> window that opens switch to the <b>Combo box</b> or <b>Drop-down list</b> tab, depending on the selected content control type.
<p><img alt="Combo box settings window" src="../images/comboboxsettings.png" /></p>
</li>
<li>
to add a new list item, click the <b>Add</b> button and fill in the available fields in the window that opens:
<p><img alt="Combo box - adding value" src="../images/comboboxaddvalue.png" /></p>
<ol>
<li>specify the necessary text in the <b>Display name</b> field, e.g. <em>Yes</em>, <em>No</em>, <em>Other</em>. This text will be displayed in the content control within the document.</li>
<li>by default, the text in the <b>Value</b> field corresponds to the one entered in the <b>Display name</b> field. If you want to edit the text in the <b>Value</b> field, note that the entered value must be unique for each item. </li>
<li>click the <b>OK</b> button.</li>
</ol>
</li>
<li>you can edit or delete the list items by using the <b>Edit</b> or <b>Delete</b> buttons on the right or change the item order using the <b>Up</b> and <b>Down</b> button.</li>
<li>when all the necessary choices are set, click the <b>OK</b> button to save the settings and close the window.</li>
</ol>
<p><img alt="New combo box content control" src="../images/comboboxcontentcontrol.png" /></p>
<p>You can click the arrow button in the right part of the added <b>Combo box</b> or <b>Drop-down list</b> content control to open the item list and choose the necessary one. Once the necessary item is selected from the <b>Combo box</b>, you can edit the displayed text replacing it with your own one entirely or partially. The <b>Drop-down list</b> does not allow to edit the selected item.</p>
<p><img alt="Combo box content control" src="../images/comboboxcontentcontrol2.png" /></p>
<h5>Create a new Date content control</h5>
<ol>
<li>position the insertion point within a line of the text where you want the control to be added.</li>
<li>switch to the <b>Insert</b> tab of the top toolbar.</li>
<li>click the arrow next to the <img alt="Content Controls icon" src="../images/insertccicon.png" /> <b>Content Controls</b> icon.</li>
<li>choose the <b>Date</b> option from the menu - the control with the current date will be inserted at the insertion point.</li>
<li>right-click the added control and choose the <b>Content control settings</b> option from the contextual menu.</li>
<li>
in the the <b>Content Control Settings</b> window that opens switch to the <b>Date format</b> tab.
<p><img alt="Date settings window" src="../images/datesettings.png" /></p>
</li>
<li>choose the necessary <b>Language</b> and select the necessary date format in the <b>Display the date like this</b> list.</li>
<li>click the <b>OK</b> button to save the settings and close the window.</li>
</ol>
<p><img alt="New date content control" src="../images/datecontentcontrol.png" /></p>
<p>You can click the arrow button in the right part of the added <b>Date</b> content control to open the calendar and choose the necessary date.</p>
<p><img alt="Date content control" src="../images/datecontentcontrol2.png" /></p>
<h5>Create a new Check box content control</h5>
<ol>
<li>position the insertion point within a line of the text where you want the control to be added.</li>
<li>switch to the <b>Insert</b> tab of the top toolbar.</li>
<li>click the arrow next to the <img alt="Content Controls icon" src="../images/insertccicon.png" /> <b>Content Controls</b> icon.</li>
<li>choose the <b>Check box</b> option from the menu - the control will be inserted at the insertion point.</li>
<li>right-click the added control and choose the <b>Content control settings</b> option from the contextual menu.</li>
<li>
in the the <b>Content Control Settings</b> window that opens switch to the <b>Check box</b> tab.
<p><img alt="Check box settings window" src="../images/checkboxsettings.png" /></p>
</li>
<li>click the <b>Checked symbol</b> button to specify the necessary symbol for the selected check box or the <b>Unchecked symbol</b> to select how the cleared check box should look like. The <b>Symbol</b> window will open. To learn more on how to work with symbols, you can refer to <a href="../UsageInstructions/InsertSymbols.htm" onclick="onhyperlinkclick(this)">this article</a>.</li>
<li>when the symbols are specified, click the <b>OK</b> button to save the settings and close the window.</li>
</ol>
<p>The added check box is displayed in the unchecked mode.</p>
<p><img alt="New Check box content control" src="../images/checkboxcontentcontrol.png" /></p>
<p>If you click the added check box it will be checked with the symbol selected in the <b>Checked symbol</b> list.</p>
<p><img alt="Check box content control" src="../images/checkboxcontentcontrol2.png" /></p>
<p class="note"><b>Note</b>: The content control border is visible when the control is selected only. The borders do not appear on a printed version.</p> <p class="note"><b>Note</b>: The content control border is visible when the control is selected only. The borders do not appear on a printed version.</p>
<h3>Moving content controls</h3> <h3>Moving content controls</h3>
<p>Controls can be <b>moved</b> to another place in the document: click the button to the left of the control border to select the control and drag it without releasing the mouse button to another position in the document text.</p> <p>Controls can be <b>moved</b> to another place in the document: click the button to the left of the control border to select the control and drag it without releasing the mouse button to another position in the document text.</p>
<p><img alt="Moving content control" src="../images/movecontentcontrol.png" /></p> <p><img alt="Moving content control" src="../images/movecontentcontrol.png" /></p>
<p>You can also <b>copy and paste</b> content controls: select the necessary control and use the <b>Ctrl+C/Ctrl+V</b> key combinations.</p> <p>You can also <b>copy and paste</b> content controls: select the necessary control and use the <b>Ctrl+C/Ctrl+V</b> key combinations.</p>
<h3>Editing content controls</h3>
<p>Replace the default text within the control ("Your text here") with your own one: select the default text, and type in a new text or copy a text passage from anywhere and paste it into the content control.</p> <h3>Editing plain text and rich text content controls</h3>
<p>Text within the content control of any type (both plain text and rich text content controls) can be formatted using the icons on the top toolbar: you can adjust the <a href="../UsageInstructions/FontTypeSizeColor.htm" onclick="onhyperlinkclick(this)">font type, size, color</a>, apply <a href="../UsageInstructions/DecorationStyles.htm" onclick="onhyperlinkclick(this)">decoration styles</a> and <a href="../UsageInstructions/FormattingPresets.htm" onclick="onhyperlinkclick(this)">formatting presets</a>. It's also possible to use the <b>Paragraph - Advanced settings</b> window accessible from the contextual menu or from the right sidebar to change the text properties. Text within rich text content controls can be formatted like a regular text of the document, i.e. you can set <a href="../UsageInstructions/LineSpacing.htm" onclick="onhyperlinkclick(this)">line spacing</a>, change <a href="../UsageInstructions/ParagraphIndents.htm" onclick="onhyperlinkclick(this)">paragraph indents</a>, adjust <a href="../UsageInstructions/SetTabStops.htm" onclick="onhyperlinkclick(this)">tab stops</a>.</p> <p>Text within the plain text and rich text content controls can be formatted using the icons on the top toolbar: you can adjust the <a href="../UsageInstructions/FontTypeSizeColor.htm" onclick="onhyperlinkclick(this)">font type, size, color</a>, apply <a href="../UsageInstructions/DecorationStyles.htm" onclick="onhyperlinkclick(this)">decoration styles</a> and <a href="../UsageInstructions/FormattingPresets.htm" onclick="onhyperlinkclick(this)">formatting presets</a>. It's also possible to use the <b>Paragraph - Advanced settings</b> window accessible from the contextual menu or from the right sidebar to change the text properties. Text within rich text content controls can be formatted like a regular text of the document, i.e. you can set <a href="../UsageInstructions/LineSpacing.htm" onclick="onhyperlinkclick(this)">line spacing</a>, change <a href="../UsageInstructions/ParagraphIndents.htm" onclick="onhyperlinkclick(this)">paragraph indents</a>, adjust <a href="../UsageInstructions/SetTabStops.htm" onclick="onhyperlinkclick(this)">tab stops</a>.</p>
<h3>Changing content control settings</h3> <h3>Changing content control settings</h3>
<p>No matter which type of content controls is selected, you can change the content control settings in the <b>General</b> and <b>Locking</b> sections of the <b>Content Control Settings</b> window.</p>
<p>To open the content control settings, you can proceed in the following ways:</p> <p>To open the content control settings, you can proceed in the following ways:</p>
<ul> <ul>
<li>Select the necessary content control, click the arrow next to the <img alt="Content Controls icon" src="../images/insertccicon.png" /> <b>Content Controls</b> icon at the top toolbar and select the <b>Control Settings</b> option from the menu.</li> <li>Select the necessary content control, click the arrow next to the <img alt="Content Controls icon" src="../images/insertccicon.png" /> <b>Content Controls</b> icon at the top toolbar and select the <b>Control Settings</b> option from the menu.</li>
<li>Right-click anywhere within the content control and use the <b>Content control settings</b> option from the contextual menu.</li> <li>Right-click anywhere within the content control and use the <b>Content control settings</b> option from the contextual menu.</li>
</ul> </ul>
<p>A new window will open where you can adjust the following settings:</p> <p>A new window will open. At the <b>General</b> tab, you can adjust the following settings:</p>
<p><img alt="Content Control settings window" src="../images/ccsettingswindow.png" /></p> <p><img alt="Content Control settings window - General" src="../images/ccsettingswindow.png" /></p>
<ul> <ul>
<li>Specify the content control <b>Title</b> or <b>Tag</b> in the corresponding fields. The title will be displayed when the control is selected in the document. Tags are used to identify content controls so that you can make reference to them in your code. </li> <li>Specify the content control <b>Title</b> or <b>Tag</b> in the corresponding fields. The title will be displayed when the control is selected in the document. Tags are used to identify content controls so that you can make reference to them in your code. </li>
<li>Choose if you want to display the content control with a <b>Bounding box</b> or not. Use the <b>None</b> option to display the control without the bounding box. If you select the <b>Bounding box</b> option, you can choose this box <b>Color</b> using the field below. Click the <b>Apply to All</b> button to apply the spesified <b>Appearance</b> settings to all the content controls in the document.</li> <li>Choose if you want to display the content control with a <b>Bounding box</b> or not. Use the <b>None</b> option to display the control without the bounding box. If you select the <b>Bounding box</b> option, you can choose this box <b>Color</b> using the field below. Click the <b>Apply to All</b> button to apply the specified <b>Appearance</b> settings to all the content controls in the document.</li>
<li>Protect the content control from being deleted or edited using the option from the <b>Locking</b> section: </ul>
<p>At the <b>Locking</b> tab, you can protect the content control from being deleted or edited using the following settings:</p>
<p><img alt="Content Control settings window - Locking" src="../images/ccsettingswindow2.png" /></p>
<ul> <ul>
<li><b>Content control cannot be deleted</b> - check this box to protect the content control from being deleted.</li> <li><b>Content control cannot be deleted</b> - check this box to protect the content control from being deleted.</li>
<li><b>Contents cannot be edited</b> - check this box to protect the contents of the content control from being edited.</li> <li><b>Contents cannot be edited</b> - check this box to protect the contents of the content control from being edited.</li>
</ul> </ul>
</li> <p>For certain types of content controls, the third tab is also available that contains the settings specific for the selected content control type only: <em>Combo box</em>, <em>Drop-down list</em>, <em>Date</em>, <em>Check box</em>. These settings are described above in the sections about adding the corresponding content controls.</p>
</ul>
<p>Click the <b>OK</b> button within the settings window to apply the changes.</p> <p>Click the <b>OK</b> button within the settings window to apply the changes.</p>
<p>It's also possible to highlight content controls with a certain color. To highlight controls with a color:</p> <p>It's also possible to highlight content controls with a certain color. To highlight controls with a color:</p>
<ol> <ol>

View file

@ -28,6 +28,7 @@
<img alt="Inserted Equation" src="../images/insertedequation.png" /> <img alt="Inserted Equation" src="../images/insertedequation.png" />
<p>Each equation template represents a set of slots. Slot is a position for each element that makes up the equation. An empty slot (also called as a placeholder) has a dotted outline <img alt="Equation Placeholder" src="../images/equationplaceholder.png" />. You need to fill in all the placeholders specifying the necessary values.</p> <p>Each equation template represents a set of slots. Slot is a position for each element that makes up the equation. An empty slot (also called as a placeholder) has a dotted outline <img alt="Equation Placeholder" src="../images/equationplaceholder.png" />. You need to fill in all the placeholders specifying the necessary values.</p>
<p class="note"><b>Note</b>: to start creating an equation, you can also use the <b>Alt + =</b> keyboard shortcut.</p> <p class="note"><b>Note</b>: to start creating an equation, you can also use the <b>Alt + =</b> keyboard shortcut.</p>
<p>It's also possible to add a caption to the equation. To learn more on how to work with captions for equations, you can refer to <a href="../UsageInstructions/AddCaption.htm" onclick="onhyperlinkclick(this)">this article</a>.</p>
<h3>Enter values</h3> <h3>Enter values</h3>
<p>The <b>insertion point</b> specifies where the next character you enter will appear. To position the insertion point precisely, click within a placeholder and use the keyboard arrows to move the insertion point by one character left/right or one line up/down.</p> <p>The <b>insertion point</b> specifies where the next character you enter will appear. To position the insertion point precisely, click within a placeholder and use the keyboard arrows to move the insertion point by one character left/right or one line up/down.</p>
<p>If you need to create a new placeholder below the slot with the insertion point within the selected template, press <b>Enter</b>.</p> <p>If you need to create a new placeholder below the slot with the insertion point within the selected template, press <b>Enter</b>.</p>

View file

@ -30,6 +30,7 @@
</li> </li>
<li>once the image is added you can change its size, properties, and position.</li> <li>once the image is added you can change its size, properties, and position.</li>
</ol> </ol>
<p>It's also possible to add a caption to the image. To learn more on how to work with captions for images, you can refer to <a href="../UsageInstructions/AddCaption.htm" onclick="onhyperlinkclick(this)">this article</a>.</p>
<h3>Move and resize images</h3> <h3>Move and resize images</h3>
<p><img class="floatleft" alt="Moving image" src="../images/moving_image.png" />To change the image size, drag small squares <img alt="Square icon" src="../images/resize_square.png" /> situated on its edges. To maintain the original proportions of the selected image while resizing, hold down the <b>Shift</b> key and drag one of the corner icons.</p> <p><img class="floatleft" alt="Moving image" src="../images/moving_image.png" />To change the image size, drag small squares <img alt="Square icon" src="../images/resize_square.png" /> situated on its edges. To maintain the original proportions of the selected image while resizing, hold down the <b>Shift</b> key and drag one of the corner icons.</p>
<p>To alter the image position, use the <img alt="Arrow" src="../images/arrow.png" /> icon that appears after hovering your mouse cursor over the image. Drag the image to the necessary position without releasing the mouse button.</p> <p>To alter the image position, use the <img alt="Arrow" src="../images/arrow.png" /> icon that appears after hovering your mouse cursor over the image. Drag the image to the necessary position without releasing the mouse button.</p>
@ -42,7 +43,7 @@
<h3>Adjust image settings</h3> <h3>Adjust image settings</h3>
<p><img class="floatleft" alt="Image Settings tab" src="../images/right_image.png" />Some of the image settings can be altered using the <b>Image settings</b> tab of the right sidebar. To activate it click the image and choose the <b>Image settings</b> <img alt="Image settings icon" src="../images/image_settings_icon.png" /> icon on the right. Here you can change the following properties:</p> <p><img class="floatleft" alt="Image Settings tab" src="../images/right_image.png" />Some of the image settings can be altered using the <b>Image settings</b> tab of the right sidebar. To activate it click the image and choose the <b>Image settings</b> <img alt="Image settings icon" src="../images/image_settings_icon.png" /> icon on the right. Here you can change the following properties:</p>
<ul style="margin-left: 280px;"> <ul style="margin-left: 280px;">
<li><b>Size</b> is used to view the current image <b>Width</b> and <b>Height</b>. If necessary, you can restore the default image size clicking the <b>Default Size</b> button. The <b>Fit to Margin</b> button allows to resize the image, so that it occupies all the space between the left and right page margin. <li><b>Size</b> is used to view the current image <b>Width</b> and <b>Height</b>. If necessary, you can restore the actual image size clicking the <b>Actual Size</b> button. The <b>Fit to Margin</b> button allows to resize the image, so that it occupies all the space between the left and right page margin.
<p>The <b>Crop</b> button is used to crop the image. Click the <b>Crop</b> button to activate cropping handles which appear on the image corners and in the center of each its side. Manually drag the handles to set the cropping area. You can move the mouse cursor over the cropping area border so that it turns into the <img alt="Arrow" src="../images/arrow.png" /> icon and drag the area. </p> <p>The <b>Crop</b> button is used to crop the image. Click the <b>Crop</b> button to activate cropping handles which appear on the image corners and in the center of each its side. Manually drag the handles to set the cropping area. You can move the mouse cursor over the cropping area border so that it turns into the <img alt="Arrow" src="../images/arrow.png" /> icon and drag the area. </p>
<ul> <ul>
<li>To crop a single side, drag the handle located in the center of this side.</li> <li>To crop a single side, drag the handle located in the center of this side.</li>
@ -76,18 +77,19 @@
<li><b>Wrapping Style</b> is used to select a text wrapping style from the available ones - inline, square, tight, through, top and bottom, in front, behind - or edit the wrap boundary. The <b>Edit Wrap Boundary</b> option is available only if you select a wrapping style other than Inline. Drag wrap points to customize the boundary. To create a new wrap point, click anywhere on the red line and drag it to the necessary position. <img alt="Editing Wrap Boundary" src="../images/wrap_boundary.png" /></li> <li><b>Wrapping Style</b> is used to select a text wrapping style from the available ones - inline, square, tight, through, top and bottom, in front, behind - or edit the wrap boundary. The <b>Edit Wrap Boundary</b> option is available only if you select a wrapping style other than Inline. Drag wrap points to customize the boundary. To create a new wrap point, click anywhere on the red line and drag it to the necessary position. <img alt="Editing Wrap Boundary" src="../images/wrap_boundary.png" /></li>
<li><b>Rotate</b> is used to rotate the image by 90 degrees clockwise or counterclockwise as well as to flip the image horizontally or vertically.</li> <li><b>Rotate</b> is used to rotate the image by 90 degrees clockwise or counterclockwise as well as to flip the image horizontally or vertically.</li>
<li><b>Crop</b> is used to apply one of the cropping options: <b>Crop</b>, <b>Fill</b> or <b>Fit</b>. Select the <b>Crop</b> option from the submenu, then drag the cropping handles to set the cropping area, and click one of these three options from the submenu once again to apply the changes.</li> <li><b>Crop</b> is used to apply one of the cropping options: <b>Crop</b>, <b>Fill</b> or <b>Fit</b>. Select the <b>Crop</b> option from the submenu, then drag the cropping handles to set the cropping area, and click one of these three options from the submenu once again to apply the changes.</li>
<li><b>Default Size</b> is used to change the current image size to the default one.</li> <li><b>Actual Size</b> is used to change the current image size to the actual one.</li>
<li><b>Replace image</b> is used to replace the current image loading another one <b>From File</b> or <b>From URL</b>.</li> <li><b>Replace image</b> is used to replace the current image loading another one <b>From File</b> or <b>From URL</b>.</li>
<li><b>Image Advanced Settings</b> is used to open the 'Image - Advanced Settings' window.</li> <li><b>Image Advanced Settings</b> is used to open the 'Image - Advanced Settings' window.</li>
</ul> </ul>
<p><img class="floatleft" alt="Shape Settings tab" src="../images/right_image_shape.png" /> When the image is selected, the <b>Shape settings</b> <img alt="Shape settings icon" src="../images/shape_settings_icon.png" /> icon is also available on the right. You can click this icon to open the <b>Shape settings</b> tab at the right sidebar and adjust the shape <a href="../UsageInstructions/InsertAutoshapes.htm#shape_stroke" onclick="onhyperlinkclick(this)"><b>Stroke</b></a> type, size and color as well as change the shape type selecting another shape from the <b>Change Autoshape</b> menu. The shape of the image will change correspondingly.</p> <p><img class="floatleft" alt="Shape Settings tab" src="../images/right_image_shape.png" /> When the image is selected, the <b>Shape settings</b> <img alt="Shape settings icon" src="../images/shape_settings_icon.png" /> icon is also available on the right. You can click this icon to open the <b>Shape settings</b> tab at the right sidebar and adjust the shape <a href="../UsageInstructions/InsertAutoshapes.htm#shape_stroke" onclick="onhyperlinkclick(this)"><b>Stroke</b></a> type, size and color as well as change the shape type selecting another shape from the <b>Change Autoshape</b> menu. The shape of the image will change correspondingly.</p>
<p>At the <b>Shape Settings</b> tab, you can also use the <b>Show shadow</b> option to add a shadow to the image.</p> <p>At the <b>Shape Settings</b> tab, you can also use the <b>Show shadow</b> option to add a shadow to the image.</p>
<hr /> <hr />
<h3>Adjust image advanced settings</h3>
<p>To change the image advanced settings, click the image with the right mouse button and select the <b>Image Advanced Settings</b> option from the right-click menu or just click the <b>Show advanced settings</b> link at the right sidebar. The image properties window will open:</p> <p>To change the image advanced settings, click the image with the right mouse button and select the <b>Image Advanced Settings</b> option from the right-click menu or just click the <b>Show advanced settings</b> link at the right sidebar. The image properties window will open:</p>
<p><img alt="Image - Advanced Settings: Size" src="../images/image_properties.png" /></p> <p><img alt="Image - Advanced Settings: Size" src="../images/image_properties.png" /></p>
<p>The <b>Size</b> tab contains the following parameters:</p> <p>The <b>Size</b> tab contains the following parameters:</p>
<ul> <ul>
<li><b>Width</b> and <b>Height</b> - use these options to change the image width and/or height. If the <b>Constant proportions</b> <img alt="Constant proportions icon" src="../images/constantproportions.png" /> button is clicked (in this case it looks like this <img alt="Constant proportions icon activated" src="../images/constantproportionsactivated.png" />), the width and height will be changed together preserving the original image aspect ratio. To restore the default size of the added image, click the <b>Default Size</b> button.</li> <li><b>Width</b> and <b>Height</b> - use these options to change the image width and/or height. If the <b>Constant proportions</b> <img alt="Constant proportions icon" src="../images/constantproportions.png" /> button is clicked (in this case it looks like this <img alt="Constant proportions icon activated" src="../images/constantproportionsactivated.png" />), the width and height will be changed together preserving the original image aspect ratio. To restore the actual size of the added image, click the <b>Actual Size</b> button.</li>
</ul> </ul>
<p><img alt="Image - Advanced Settings: Rotation" src="../images/image_properties_4.png" /></p> <p><img alt="Image - Advanced Settings: Rotation" src="../images/image_properties_4.png" /></p>
<p>The <b>Rotation</b> tab contains the following parameters:</p> <p>The <b>Rotation</b> tab contains the following parameters:</p>

View file

@ -0,0 +1,53 @@
<!DOCTYPE html>
<html>
<head>
<title>Insert symbols and characters</title>
<meta charset="utf-8" />
<meta name="description" content="Insert symbols and characters" />
<link type="text/css" rel="stylesheet" href="../editor.css" />
<script type="text/javascript" src="../callback.js"></script>
<script type="text/javascript" src="../search/js/page-search.js"></script>
</head>
<body>
<div class="mainpart">
<div class="search-field">
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>Insert symbols and characters</h1>
<p>During working process you may need to insert a symbol which is not on your keyboard. To insert such symbols into your document, use the <img alt="Symbol table icon" src="../images/vector.png" /><b>Insert symbol</b> option and follow these simple steps:</p>
<ul>
<li>place the cursor at the location where a special symbol has to be inserted,</li>
<li>switch to the <b>Insert</b> tab of the top toolbar,</li>
<li>
click the <img alt="Symbol table icon" src="../images/vector.png" /><b>Symbol</b>,
<p><img alt="Insert symbol sidebar " src="../images/insert_symbol_window.png" /></p>
</li>
<li>The <b>Symbol</b> dialog box appears from which you can select the appropriate symbol,</li>
<li>
<p>use the <b>Range</b> section to quickly find the nesessary symbol. All symbols are divided into specific groups, for example, select 'Currency Symbols' if you want to insert a currency character.</p>
<p>If this character is not in the set, select a different font. Many of them also have characters other than the standard set.</p>
<p>Or, enter the Unicode hex value of the symbol you want into the <b>Unicode hex value field</b>. This code can be found in the <b>Character map</b>.</p>
<p>Previously used symbols are also displayed in the <b>Recently used symbols</b> field,</p>
</li>
<li>click <b>Insert</b>. The selected character will be added to the document.</li>
</ul>
<h2>Insert ASCII symbols</h2>
<p>ASCII table is also used to add characters.</p>
<p>To do this, hold down ALT key and use the numeric keypad to enter the character code.</p>
<p class="note"><b>Note</b>: be sure to use the numeric keypad, not the numbers on the main keyboard. To enable the numeric keypad, press the Num Lock key.</p>
<p>For example, to add a paragraph character (§), press and hold down ALT while typing 789, and then release ALT key.</p>
<h2>Insert symbols using Unicode table</h2>
<p>Additional charachters and symbols might also be found via Windows symbol table. To open this table, do one of the following:</p>
<ul>
<li>in the Search field write 'Character table' and open it,</li>
<li>
simultaneously presss Win + R, and then in the following window type <code>charmap.exe</code> and click OK.
<p><img alt="Insert symbol windpow" src="../images/insert_symbols_windows.png" /></p>
</li>
</ul>
<p>In the opened <b>Character Map</b>, select one of the <b>Character sets</b>, <b>Groups</b> and <b>Fonts</b>. Next, click on the nesessary characters, copy them to clipboard and paste in the right place of the document.</p>
</div>
</body>
</html>

View file

@ -28,6 +28,7 @@
<p>In case you need more than 10 by 8 cell table, select the <b>Insert Custom Table</b> option that will open the window where you can enter the necessary number of rows and columns respectively, then click the <b>OK</b> button.</p> <p>In case you need more than 10 by 8 cell table, select the <b>Insert Custom Table</b> option that will open the window where you can enter the necessary number of rows and columns respectively, then click the <b>OK</b> button.</p>
<p><img alt="Custom table" src="../images/customtable.png" /></p> <p><img alt="Custom table" src="../images/customtable.png" /></p>
</li> </li>
<li>If you want to draw a table using the mouse, select the <b>Draw Table</b> option. This can be useful, if you want to create a table with rows and colums of different sizes. The mouse cursor will turn into the pencil <img alt="Mouse Cursor when drawing a table" src="../images/pencil_tool.png" />. Draw a rectangular shape where you want to add a table, then add rows by drawing horizontal lines and columns by drawing vertical lines within the table boundary.</li>
</ul> </ul>
</li> </li>
<li>once the table is added you can change its properties, size and position.</li> <li>once the table is added you can change its properties, size and position.</li>
@ -36,6 +37,7 @@
<p><img alt="Resize table" src="../images/resizetable.png" /></p> <p><img alt="Resize table" src="../images/resizetable.png" /></p>
<p>You can also manually change the width of a certain column or the height of a row. Move the mouse cursor over the right border of the column so that the cursor turns into the bidirectional arrow <img alt="Mouse Cursor when changing column width" src="../images/changecolumnwidth.png" /> and drag the border to the left or right to set the necessary width. To change the height of a single row manually, move the mouse cursor over the bottom border of the row so that the cursor turns into the bidirectional arrow <img alt="Mouse Cursor when changing row height" src="../images/changerowheight.png" /> and drag the border up or down.</p> <p>You can also manually change the width of a certain column or the height of a row. Move the mouse cursor over the right border of the column so that the cursor turns into the bidirectional arrow <img alt="Mouse Cursor when changing column width" src="../images/changecolumnwidth.png" /> and drag the border to the left or right to set the necessary width. To change the height of a single row manually, move the mouse cursor over the bottom border of the row so that the cursor turns into the bidirectional arrow <img alt="Mouse Cursor when changing row height" src="../images/changerowheight.png" /> and drag the border up or down.</p>
<p>To move a table, hold down the <img alt="Select table handle" src="../images/movetable_handle.png" /> handle in its upper left corner and drag it to the necessary place in the document.</p> <p>To move a table, hold down the <img alt="Select table handle" src="../images/movetable_handle.png" /> handle in its upper left corner and drag it to the necessary place in the document.</p>
<p>It's also possible to add a caption to the table. To learn more on how to work with captions for tables, you can refer to <a href="../UsageInstructions/AddCaption.htm" onclick="onhyperlinkclick(this)">this article</a>.</p>
<hr /> <hr />
<h3>Select a table or its part</h3> <h3>Select a table or its part</h3>
<p>To select an entire table, click the <img alt="Select table handle" src="../images/movetable_handle.png" /> handle in its upper left corner.</p> <p>To select an entire table, click the <img alt="Select table handle" src="../images/movetable_handle.png" /> handle in its upper left corner.</p>
@ -52,10 +54,20 @@
<ul> <ul>
<li><b>Cut, Copy, Paste</b> - standard options which are used to cut or copy a selected text/object and paste a previously cut/copied text passage or object to the current cursor position.</li> <li><b>Cut, Copy, Paste</b> - standard options which are used to cut or copy a selected text/object and paste a previously cut/copied text passage or object to the current cursor position.</li>
<li><b>Select</b> is used to select a row, column, cell, or table.</li> <li><b>Select</b> is used to select a row, column, cell, or table.</li>
<li><b>Insert</b> is used to insert a row above or row below the row where the cursor is placed as well as to insert a column at the left or right side from the column where the cursor is placed.</li> <li><b>Insert</b> is used to insert a row above or row below the row where the cursor is placed as well as to insert a column at the left or right side from the column where the cursor is placed.
<li><b>Delete</b> is used to delete a row, column or table.</li> <p>It's also possible to insert several rows or columns. If you select the <b>Several Rows/Columns</b> option, the <b>Insert Several</b> window opens. Select the <b>Rows</b> or <b>Columns</b> option from the list, specify the number of rows/column you want to add, choose where they should be added: <b>Above the cursor</b> or <b>Below the cursor</b> and click <b>OK</b>.</p>
<li><b>Merge Cells</b> is available if two or more cells are selected and is used to merge them.</li> </li>
<li><b>Split Cell...</b> is used to open a window where you can select the needed number of columns and rows the cell will be split in.</li> <li><b>Delete</b> is used to delete a row, column, table or cells. If you select the <b>Cells</b> option, the <b>Delete Cells</b> window will open, where you can select if you want to <b>Shift cells left</b>, <b>Delete entire row</b>, or <b>Delete entire column</b>.</li>
<li><b>Merge Cells</b> is available if two or more cells are selected and is used to merge them.
<p>
It's also possible to merge cells by erasing a boundary between them using the eraser tool. To do this, click the <img alt="Table icon" src="../images/table.png" /> <b>Table</b> icon at the top toolbar, choose the <b>Erase Table</b> option. The mouse cursor will turn into the eraser <img alt="Mouse Cursor when erasing borders" src="../images/eraser_tool.png" />. Move the mouse cursor over the border between the cells you want to merge and erase it.
</p>
</li>
<li><b>Split Cell...</b> is used to open a window where you can select the needed number of columns and rows the cell will be split in.
<p>
It's also possible to split a cell by drawing rows or columns using the pencil tool. To do this, click the <img alt="Table icon" src="../images/table.png" /> <b>Table</b> icon at the top toolbar, choose the <b>Draw Table</b> option. The mouse cursor will turn into the pencil <img alt="Mouse Cursor when drawing a table" src="../images/pencil_tool.png" />. Draw a horizontal line to create a row or a vertical line to create a column.
</p>
</li>
<li><b>Distribute rows</b> is used to adjust the selected cells so that they have the same height without changing the overall table height.</li> <li><b>Distribute rows</b> is used to adjust the selected cells so that they have the same height without changing the overall table height.</li>
<li><b>Distribute columns</b> is used to adjust the selected cells so that they have the same width without changing the overall table width.</li> <li><b>Distribute columns</b> is used to adjust the selected cells so that they have the same width without changing the overall table width.</li>
<li><b>Cell Vertical Alignment</b> is used to align the text top, center or bottom in the selected cell.</li> <li><b>Cell Vertical Alignment</b> is used to align the text top, center or bottom in the selected cell.</li>
@ -85,12 +97,13 @@
<li><p><b>Select from Template</b> is used to choose a table template from the available ones.</p></li> <li><p><b>Select from Template</b> is used to choose a table template from the available ones.</p></li>
<li><p><b>Borders Style</b> is used to select the border size, color, style as well as background color.</p></li> <li><p><b>Borders Style</b> is used to select the border size, color, style as well as background color.</p></li>
<li><p><b>Rows &amp; Columns</b> is used to perform some operations with the table: select, delete, insert rows and columns, merge cells, split a cell.</p></li> <li><p><b>Rows &amp; Columns</b> is used to perform some operations with the table: select, delete, insert rows and columns, merge cells, split a cell.</p></li>
<li><p><b>Cell Size</b> is used to adjust the width and height of the currently selected cell. In this section, you can also <b>Distribute rows</b> so that all the selected cells have equal height or <b>Distribute columns</b> so that all the selected cells have equal width.</p></li> <li><p><b>Rows &amp; Columns Size</b> is used to adjust the width and height of the currently selected cell. In this section, you can also <b>Distribute rows</b> so that all the selected cells have equal height or <b>Distribute columns</b> so that all the selected cells have equal width.</p></li>
<li><p><b>Add formula</b> is used to <a href="../UsageInstructions/AddFormulasInTables.htm" onclick="onhyperlinkclick(this)">insert a formula</a> into the selected table cell.</p></li> <li><p><b>Add formula</b> is used to <a href="../UsageInstructions/AddFormulasInTables.htm" onclick="onhyperlinkclick(this)">insert a formula</a> into the selected table cell.</p></li>
<li><p><b>Repeat as header row at the top of each page</b> is used to insert the same header row at the top of each page in long tables.</p></li> <li><p><b>Repeat as header row at the top of each page</b> is used to insert the same header row at the top of each page in long tables.</p></li>
<li><p><b>Show advanced settings</b> is used to open the 'Table - Advanced Settings' window.</p></li> <li><p><b>Show advanced settings</b> is used to open the 'Table - Advanced Settings' window.</p></li>
</ul> </ul>
<hr /> <hr />
<h3>Adjust table advanced settings</h3>
<p>To change the advanced table properties, click the table with the right mouse button and select the <b>Table Advanced Settings</b> option from the right-click menu or use the <b>Show advanced settings</b> link at the right sidebar. The table properties window will open:</p> <p>To change the advanced table properties, click the table with the right mouse button and select the <b>Table Advanced Settings</b> option from the right-click menu or use the <b>Show advanced settings</b> link at the right sidebar. The table properties window will open:</p>
<p><img alt="Table - Advanced Settings" src="../images/table_properties_1.png" /></p> <p><img alt="Table - Advanced Settings" src="../images/table_properties_1.png" /></p>
<p>The <b>Table</b> tab allows to change properties of the entire table.</p> <p>The <b>Table</b> tab allows to change properties of the entire table.</p>

View file

@ -14,7 +14,7 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)"> <input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div> </div>
<h1>Create a new document or open an existing one</h1> <h1>Create a new document or open an existing one</h1>
<h6>To create a new document</h6> <h4>To create a new document</h4>
<div class="onlineDocumentFeatures"> <div class="onlineDocumentFeatures">
<p>In the <em>online editor</em></p> <p>In the <em>online editor</em></p>
<ol> <ol>
@ -32,7 +32,7 @@
</div> </div>
<div class="desktopDocumentFeatures"> <div class="desktopDocumentFeatures">
<h6>To open an existing document</h6> <h4>To open an existing document</h4>
<p>In the <em>desktop editor</em></p> <p>In the <em>desktop editor</em></p>
<ol> <ol>
<li>in the main program window, select the <b>Open local file</b> menu item at the left sidebar,</li> <li>in the main program window, select the <b>Open local file</b> menu item at the left sidebar,</li>
@ -42,7 +42,7 @@
<p>All the directories that you have accessed using the desktop editor will be displayed in the <b>Recent folders</b> list so that you can quickly access them afterwards. Click the necessary folder to select one of the files stored in it.</p> <p>All the directories that you have accessed using the desktop editor will be displayed in the <b>Recent folders</b> list so that you can quickly access them afterwards. Click the necessary folder to select one of the files stored in it.</p>
</div> </div>
<h6>To open a recently edited document </h6> <h4>To open a recently edited document </h4>
<div class="onlineDocumentFeatures"> <div class="onlineDocumentFeatures">
<p>In the <em>online editor</em></p> <p>In the <em>online editor</em></p>
<ol> <ol>

View file

@ -38,8 +38,14 @@
<p>You can also set a special page size by selecting the <b>Custom Page Size</b> option from the list. The <b>Page Size</b> window will open where you'll be able to select the necessary <b>Preset</b> (US Letter, US Legal, A4, A5, B5, Envelope #10, Envelope DL, Tabloid, AЗ, Tabloid Oversize, ROC 16K, Envelope Choukei 3, Super B/A3, A0, A1, A2, A6) or set custom <b>Width</b> and <b>Height</b> values. Enter your new values into the entry fields or adjust the existing values using arrow buttons. When ready, click <b>OK</b> to apply the changes.</p> <p>You can also set a special page size by selecting the <b>Custom Page Size</b> option from the list. The <b>Page Size</b> window will open where you'll be able to select the necessary <b>Preset</b> (US Letter, US Legal, A4, A5, B5, Envelope #10, Envelope DL, Tabloid, AЗ, Tabloid Oversize, ROC 16K, Envelope Choukei 3, Super B/A3, A0, A1, A2, A6) or set custom <b>Width</b> and <b>Height</b> values. Enter your new values into the entry fields or adjust the existing values using arrow buttons. When ready, click <b>OK</b> to apply the changes.</p>
<p><img alt="Custom Page Size" src="../images/custompagesize.png" /></p> <p><img alt="Custom Page Size" src="../images/custompagesize.png" /></p>
<h3 id="margins">Page Margins</h3> <h3 id="margins">Page Margins</h3>
<p>Change default margins, i.e. the blank space between the left, right, top and bottom page edges and the paragraph text, clicking the <img alt="Margins icon" src="../images/pagemargins.png" /> <b>Margins</b> icon and selecting one of the available presets: <b>Normal</b>, <b>US Normal</b>, <b>Narrow</b>, <b>Moderate</b>, <b>Wide</b>. You can also use the <b>Custom Margins</b> option to set your own values in the <b>Margins</b> window that opens. Enter the necessary <b>Top</b>, <b>Bottom</b>, <b>Left</b> and <b>Right</b> page margin values into the entry fields or adjust the existing values using arrow buttons. When ready, click <b>OK</b>. The custom margins will be applied to the current document and the <b>Last Custom</b> option with the specified parameters will appear in the <img alt="Margins icon" src="../images/pagemargins.png" /> <b>Margins</b> list so that you can apply them to some other documents.</p> <p>Change default margins, i.e. the blank space between the left, right, top and bottom page edges and the paragraph text, clicking the <img alt="Margins icon" src="../images/pagemargins.png" /> <b>Margins</b> icon and selecting one of the available presets: <b>Normal</b>, <b>US Normal</b>, <b>Narrow</b>, <b>Moderate</b>, <b>Wide</b>. You can also use the <b>Custom Margins</b> option to set your own values in the <b>Margins</b> window that opens. Enter the necessary <b>Top</b>, <b>Bottom</b>, <b>Left</b> and <b>Right</b> page margin values into the entry fields or adjust the existing values using arrow buttons.</p>
<p><img alt="Custom Margins" src="../images/custommargins.png" /></p> <p><img alt="Custom Margins" src="../images/custommargins.png" /></p>
<p><b>Gutter position</b> is used to set up additional space on the left or top of the document. Gutter option might come in handy to make sure bookbinding does not cover text. In <b>Margins</b> window enter the necessary gutter position into the entry fields and choose where it should be placed in.</p>
<p class="note"><b>Note</b>: Gutter position function cannot be used when <b>Mirror margins</b> option is checked.</p>
<p>In <b>Multiple pages</b> drop-down menu choose <b>Mirror margins</b> option to to set up facing pages for double-sided documents. With this option checked, <b>Left</b> and <b>Right</b> margins turn into <b>Inside</b> and <b>Outside</b> margins respectively.</p>
<p>In <b>Orientation</b> drop-down menu choose from <b>Portrait</b> and <b>Landscape</b> options.</p>
<p>All applied changes to the document will be displayed in the <b>Preview</b> window.</p>
<p>When ready, click <b>OK</b>. The custom margins will be applied to the current document and the <b>Last Custom</b> option with the specified parameters will appear in the <img alt="Margins icon" src="../images/pagemargins.png" /> <b>Margins</b> list so that you can apply them to some other documents.</p></p>
<p>You can also change the margins manually by dragging the border between the grey and white areas on the rulers (the grey areas of the rulers indicate page margins):</p> <p>You can also change the margins manually by dragging the border between the grey and white areas on the rulers (the grey areas of the rulers indicate page margins):</p>
<p><img alt="Margins Adjustment" src="../images/margins.png" /></p> <p><img alt="Margins Adjustment" src="../images/margins.png" /></p>
<h3 id="columns">Columns</h3> <h3 id="columns">Columns</h3>

View file

@ -26,7 +26,7 @@
<li><b>Application</b> - the application the document was created with.</li> <li><b>Application</b> - the application the document was created with.</li>
<li><b>Author</b> - the person who have created the file. You can enter the necessary name in this field. Press <em>Enter</em> to add a new field that allows to specify one more author.</li> <li><b>Author</b> - the person who have created the file. You can enter the necessary name in this field. Press <em>Enter</em> to add a new field that allows to specify one more author.</li>
</ul> </ul>
<p>If you change properties in desktop editors, do not forget to save the file to apply the changes.</p> <p>If you changed the file properties, click the <b>Apply</b> button to apply the changes.</p>
<div class="onlineDocumentFeatures"> <div class="onlineDocumentFeatures">
<p class="note"><b>Note</b>: Online Editors allow you to change the document name directly from the editor interface. To do that, click the <b>File</b> tab of the top toolbar and select the <b>Rename...</b> option, then enter the necessary <b>File name</b> in a new window that opens and click <b>OK</b>.</p> <p class="note"><b>Note</b>: Online Editors allow you to change the document name directly from the editor interface. To do that, click the <b>File</b> tab of the top toolbar and select the <b>Rename...</b> option, then enter the necessary <b>File name</b> in a new window that opens and click <b>OK</b>.</p>
</div> </div>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 263 B

After

Width:  |  Height:  |  Size: 518 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 311 B

After

Width:  |  Height:  |  Size: 475 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 118 B

After

Width:  |  Height:  |  Size: 248 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 84 B

After

Width:  |  Height:  |  Size: 136 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 87 B

After

Width:  |  Height:  |  Size: 148 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 84 B

After

Width:  |  Height:  |  Size: 146 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 86 B

After

Width:  |  Height:  |  Size: 142 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 85 B

After

Width:  |  Height:  |  Size: 142 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 83 B

After

Width:  |  Height:  |  Size: 129 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 122 B

After

Width:  |  Height:  |  Size: 272 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.7 KiB

After

Width:  |  Height:  |  Size: 5.4 KiB

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