Merge branch 'release/v5.5.0' into feature/de-list-settings

This commit is contained in:
Julia Radzhabova 2019-12-20 11:53:55 +03:00
commit 90c33eebcd
514 changed files with 2713 additions and 822 deletions

View file

@ -1,7 +1,6 @@
dist: trusty
language: node_js
node_js:
- '6'
- '12'
before_install: npm install -g grunt-cli
before_script:
- cd build

View file

@ -103,6 +103,22 @@ define([
$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.spnSize = new Common.UI.MetricSpinner({
el : $window.find('#id-dlg-list-size'),
step : 1,
@ -138,22 +154,6 @@ define([
this.btnColor.render($window.find('#id-dlg-list-color'));
$('#id-dlg-list-color-new').on('click', _.bind(this.addNewColor, this, this.colors));
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.spnStart = new Common.UI.MetricSpinner({
el : $window.find('#id-dlg-list-start'),
step : 1,

View file

@ -28,6 +28,10 @@
.btnsize(37px);
}
&.huge-1 {
.btnsize(45px);
}
&.x-huge {
.btnsize(@x-huge-btn-height);
}
@ -580,6 +584,10 @@
.box-shadow(none);
background-color: transparent;
&.bg-white {
background-color: #fff;
}
.icon {
position: relative;
min-width: inherit;

View file

@ -471,6 +471,11 @@
&:not(:active) {
box-shadow: inset 0 0 0 1px #cbcbcb;
}
&, .icon {
width: 21px;
height: 21px;
}
}
}

View file

@ -1607,6 +1607,7 @@ define([
var win, props,
me = this;
win = new DE.Views.PageMarginsDialog({
api: me.api,
handler: function(dlg, result) {
if (result == 'ok') {
props = dlg.getSettings();
@ -1637,7 +1638,7 @@ define([
onColorSchemaClick: function(menu, item) {
if (this.api) {
this.api.ChangeColorScheme(item.value);
this.api.asc_ChangeColorSchemeByIdx(item.value);
Common.component.Analytics.trackEvent('ToolBar', 'Color Scheme');
}
@ -1647,7 +1648,7 @@ define([
onColorSchemaShow: function(menu) {
if (this.api) {
var value = this.api.asc_GetCurrentColorSchemeName();
var value = this.api.asc_GetCurrentColorSchemeIndex();
var item = _.find(menu.items, function(item) { return item.value == value; });
(item) ? item.setChecked(true) : menu.clearAll();
}

View file

@ -1734,6 +1734,7 @@ define([
win.setActiveCategory(type == 'indents' ? 0 : 3);
} else if (type == 'margins') {
win = new DE.Views.PageMarginsDialog({
api: me.api,
handler: function(dlg, result) {
if (result == 'ok') {
var props = dlg.getSettings();

View file

@ -301,7 +301,7 @@ define([
}, me));
this.btnNone = new Common.UI.Button({
cls : 'btn x-huge btn-options',
cls : 'btn huge-1 btn-options',
iconCls : 'icon-advanced-wrap btn-drop-none',
enableToggle: true,
toggleGroup : 'dropAdvGroup',
@ -316,7 +316,7 @@ define([
}, me));
this.btnInText = new Common.UI.Button({
cls : 'btn x-huge btn-options',
cls : 'btn huge-1 btn-options',
iconCls : 'icon-advanced-wrap btn-drop-text',
enableToggle: true,
toggleGroup : 'dropAdvGroup',
@ -331,7 +331,7 @@ define([
}, me));
this.btnInMargin = new Common.UI.Button({
cls : 'btn x-huge btn-options',
cls : 'btn huge-1 btn-options',
iconCls : 'icon-advanced-wrap btn-drop-margin',
enableToggle: true,
toggleGroup : 'dropAdvGroup',

View file

@ -231,7 +231,7 @@ define([
this._btnsPosition = [];
_.each(_arrPosition, function(item, index, list){
var _btn = new Common.UI.Button({
cls: 'btn-options huge',
cls: 'btn-options huge bg-white',
iconCls: item[2],
posWhere:item[0],
posAlign:item[1],

View file

@ -398,7 +398,7 @@ define([ 'text!documenteditor/main/app/template/ImageSettingsAdvanced.templat
// Wrapping
this.btnWrapInline = new Common.UI.Button({
cls: 'btn-options x-huge',
cls: 'btn-options huge-1',
iconCls: 'icon-advanced-wrap btn-wrap-inline',
posId: Asc.c_oAscWrapStyle2.Inline,
hint: this.textWrapInlineTooltip,
@ -410,7 +410,7 @@ define([ 'text!documenteditor/main/app/template/ImageSettingsAdvanced.templat
this.btnWrapInline.on('click', _.bind(this.onBtnWrapClick, this));
this.btnWrapSquare = new Common.UI.Button({
cls: 'btn-options x-huge',
cls: 'btn-options huge-1',
iconCls: 'icon-advanced-wrap btn-wrap-square',
posId: Asc.c_oAscWrapStyle2.Square,
hint: this.textWrapSquareTooltip,
@ -422,7 +422,7 @@ define([ 'text!documenteditor/main/app/template/ImageSettingsAdvanced.templat
this.btnWrapSquare.on('click', _.bind(this.onBtnWrapClick, this));
this.btnWrapTight = new Common.UI.Button({
cls: 'btn-options x-huge',
cls: 'btn-options huge-1',
iconCls: 'icon-advanced-wrap btn-wrap-tight',
posId: Asc.c_oAscWrapStyle2.Tight,
hint: this.textWrapTightTooltip,
@ -434,7 +434,7 @@ define([ 'text!documenteditor/main/app/template/ImageSettingsAdvanced.templat
this.btnWrapTight.on('click', _.bind(this.onBtnWrapClick, this));
this.btnWrapThrough = new Common.UI.Button({
cls: 'btn-options x-huge',
cls: 'btn-options huge-1',
iconCls: 'icon-advanced-wrap btn-wrap-through',
posId: Asc.c_oAscWrapStyle2.Through,
hint: this.textWrapThroughTooltip,
@ -446,7 +446,7 @@ define([ 'text!documenteditor/main/app/template/ImageSettingsAdvanced.templat
this.btnWrapThrough.on('click', _.bind(this.onBtnWrapClick, this));
this.btnWrapTopBottom = new Common.UI.Button({
cls: 'btn-options x-huge',
cls: 'btn-options huge-1',
iconCls: 'icon-advanced-wrap btn-wrap-topbottom',
posId: Asc.c_oAscWrapStyle2.TopAndBottom,
hint: this.textWrapTopbottomTooltip,
@ -458,7 +458,7 @@ define([ 'text!documenteditor/main/app/template/ImageSettingsAdvanced.templat
this.btnWrapTopBottom.on('click', _.bind(this.onBtnWrapClick, this));
this.btnWrapBehind = new Common.UI.Button({
cls: 'btn-options x-huge',
cls: 'btn-options huge-1',
iconCls: 'icon-advanced-wrap btn-wrap-behind',
posId: Asc.c_oAscWrapStyle2.Behind,
hint: this.textWrapBehindTooltip,
@ -470,7 +470,7 @@ define([ 'text!documenteditor/main/app/template/ImageSettingsAdvanced.templat
this.btnWrapBehind.on('click', _.bind(this.onBtnWrapClick, this));
this.btnWrapInFront = new Common.UI.Button({
cls: 'btn-options x-huge',
cls: 'btn-options huge-1',
iconCls: 'icon-advanced-wrap btn-wrap-infront',
posId: Asc.c_oAscWrapStyle2.InFront,
hint: this.textWrapInFrontTooltip,

View file

@ -110,6 +110,7 @@ define([
this.spinners = [];
this._noApply = false;
this.maxMarginsW = this.maxMarginsH = 0;
this.api = this.options.api;
Common.UI.Window.prototype.initialize.call(this, this.options);
},
@ -130,7 +131,7 @@ define([
if (this.api) {
this.properties = (this.properties) ? this.properties : new Asc.CDocumentSectionProps();
this.properties.put_TopMargin(Common.Utils.Metric.fnRecalcToMM(field.getNumberValue()));
//this.api.SetDrawImagePreviewMargins('page-margins-preview', this.properties);
this.api.SetDrawImagePreviewMargins('page-margins-preview', this.properties);
}
}, this));
this.spinners.push(this.spnTop);
@ -148,7 +149,7 @@ define([
if (this.api) {
this.properties = (this.properties) ? this.properties : new Asc.CDocumentSectionProps();
this.properties.put_BottomMargin(Common.Utils.Metric.fnRecalcToMM(field.getNumberValue()));
//this.api.SetDrawImagePreviewMargins('page-margins-preview', this.properties);
this.api.SetDrawImagePreviewMargins('page-margins-preview', this.properties);
}
}, this));
this.spinners.push(this.spnBottom);
@ -166,7 +167,7 @@ define([
if (this.api) {
this.properties = (this.properties) ? this.properties : new Asc.CDocumentSectionProps();
this.properties.put_LeftMargin(Common.Utils.Metric.fnRecalcToMM(field.getNumberValue()));
//this.api.SetDrawImagePreviewMargins('page-margins-preview', this.properties);
this.api.SetDrawImagePreviewMargins('page-margins-preview', this.properties);
}
}, this));
this.spinners.push(this.spnLeft);
@ -184,7 +185,7 @@ define([
if (this.api) {
this.properties = (this.properties) ? this.properties : new Asc.CDocumentSectionProps();
this.properties.put_RightMargin(Common.Utils.Metric.fnRecalcToMM(field.getNumberValue()));
//this.api.SetDrawImagePreviewMargins('page-margins-preview', this.properties);
this.api.SetDrawImagePreviewMargins('page-margins-preview', this.properties);
}
}, this));
this.spinners.push(this.spnRight);
@ -202,7 +203,7 @@ define([
if (this.api) {
this.properties = (this.properties) ? this.properties : new Asc.CDocumentSectionProps();
this.properties.put_Gutter(Common.Utils.Metric.fnRecalcToMM(field.getNumberValue()));
//this.api.SetDrawImagePreviewMargins('page-margins-preview', this.properties);
this.api.SetDrawImagePreviewMargins('page-margins-preview', this.properties);
}
}, this));
this.spinners.push(this.spnGutter);
@ -222,7 +223,7 @@ define([
if (this.api) {
this.properties = (this.properties) ? this.properties : new Asc.CDocumentSectionProps();
this.properties.put_GutterAtTop(record.value);
//this.api.SetDrawImagePreviewMargins('page-margins-preview', this.properties);
this.api.SetDrawImagePreviewMargins('page-margins-preview', this.properties);
}
}, this));
@ -241,7 +242,7 @@ define([
if (this.api) {
this.properties = (this.properties) ? this.properties : new Asc.CDocumentSectionProps();
this.properties.put_Orientation(record.value);
//this.api.SetDrawImagePreviewMargins('page-margins-preview', this.properties);
this.api.SetDrawImagePreviewMargins('page-margins-preview', this.properties);
}
}, this));
@ -270,7 +271,7 @@ define([
if (this.api) {
this.properties = (this.properties) ? this.properties : new Asc.CDocumentSectionProps();
this.properties.put_MirrorMargins(record.value);
//this.api.SetDrawImagePreviewMargins('page-margins-preview', this.properties);
this.api.SetDrawImagePreviewMargins('page-margins-preview', this.properties);
}
}, this));
@ -340,7 +341,7 @@ define([
this.cmbGutterPosition.setDisabled(mirrorMargins);
if (this.api) {
//this.api.SetDrawImagePreviewMargins('page-margins-preview', this.properties);
this.api.SetDrawImagePreviewMargins('page-margins-preview', this.properties);
}
}
},

View file

@ -478,7 +478,7 @@ define([
this.mnuTableTemplatePicker.selectRecord(rec, true);
this.btnTableTemplate.resumeEvents();
this.$el.find('.icon-template-table').css({'background-image': 'url(' + rec.get("imageUrl") + ')', 'height': '52px', 'width': '72px', 'background-position': 'center'});
this.$el.find('.icon-template-table').css({'background-image': 'url(' + rec.get("imageUrl") + ')', 'height': '52px', 'width': '72px', 'background-position': 'center', 'background-size': 'cover'});
this._state.TemplateId = value;
}

View file

@ -1993,7 +1993,7 @@ define([
cls: 'color-schemas-menu',
colors: schemecolors,
caption: (index < 21) ? (me.SchemeNames[index] || name) : name,
value: name,
value: index,
checkable: true,
toggleGroup: 'menuSchema'
});

View file

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

View file

@ -1566,7 +1566,6 @@
"DE.Views.Toolbar.tipFontColor": "Barva písma",
"DE.Views.Toolbar.tipFontName": "Font",
"DE.Views.Toolbar.tipFontSize": "Velikost písma",
"DE.Views.Toolbar.tipHAligh": "Horizontální zarovnání",
"DE.Views.Toolbar.tipHighlightColor": "Barva zvýraznění",
"DE.Views.Toolbar.tipImgAlign": "Zarovnat objekty",
"DE.Views.Toolbar.tipImgGroup": "Skupinové objekty",

View file

@ -2075,7 +2075,6 @@
"DE.Views.Toolbar.tipFontColor": "Schriftfarbe",
"DE.Views.Toolbar.tipFontName": "Schriftart",
"DE.Views.Toolbar.tipFontSize": "Schriftgrad",
"DE.Views.Toolbar.tipHAligh": "Horizontale Ausrichtung",
"DE.Views.Toolbar.tipHighlightColor": "Texthervorhebungsfarbe",
"DE.Views.Toolbar.tipImgAlign": "Objekte ausrichten",
"DE.Views.Toolbar.tipImgGroup": "Objekte gruppieren",

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.warningTitle": "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.textAuto": "auto",
"Common.Controllers.ReviewChanges.textBaseline": "Baseline",
@ -68,9 +69,8 @@
"Common.Controllers.ReviewChanges.textTableRowsDel": "<b>Table Rows Deleted<b/>",
"Common.Controllers.ReviewChanges.textTabs": "Change tabs",
"Common.Controllers.ReviewChanges.textUnderline": "Underline",
"Common.Controllers.ReviewChanges.textWidow": "Widow control",
"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.textBar": "Bar",
"Common.define.chartData.textCharts": "Charts",
@ -80,6 +80,39 @@
"Common.define.chartData.textPoint": "XY (Scatter)",
"Common.define.chartData.textStock": "Stock",
"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.ComboBorderSizeEditable.txtNoBorders": "No borders",
"Common.UI.ComboDataView.emptyComboText": "No styles",
@ -113,39 +146,6 @@
"Common.UI.Window.textInformation": "Information",
"Common.UI.Window.textWarning": "Warning",
"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.txtPt": "pt",
"Common.Views.About.txtAddress": "address: ",
@ -259,6 +259,10 @@
"Common.Views.RenameDialog.txtInvalidName": "The file name cannot contain any of the following characters: ",
"Common.Views.ReviewChanges.hintNext": "To next 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.strFastDesc": "Real-time co-editing. All changes are saved automatically.",
"Common.Views.ReviewChanges.strStrict": "Strict",
@ -267,6 +271,7 @@
"Common.Views.ReviewChanges.tipCoAuthMode": "Set co-editing mode",
"Common.Views.ReviewChanges.tipCommentRem": "Remove 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.tipRejectCurrent": "Reject current change",
"Common.Views.ReviewChanges.tipReview": "Track changes",
@ -286,6 +291,7 @@
"Common.Views.ReviewChanges.txtCommentRemMy": "Remove My Comments",
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Remove My Current Comments",
"Common.Views.ReviewChanges.txtCommentRemove": "Remove",
"Common.Views.ReviewChanges.txtCompare": "Compare",
"Common.Views.ReviewChanges.txtDocLang": "Language",
"Common.Views.ReviewChanges.txtFinal": "All changes accepted (Preview)",
"Common.Views.ReviewChanges.txtFinalCap": "Final",
@ -304,12 +310,6 @@
"Common.Views.ReviewChanges.txtSpelling": "Spell Checking",
"Common.Views.ReviewChanges.txtTurnon": "Track Changes",
"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.txtAccept": "Accept",
"Common.Views.ReviewChangesDialog.txtAcceptAll": "Accept All Changes",
@ -699,9 +699,9 @@
"DE.Controllers.Main.txtZeroDivide": "Zero Divide",
"DE.Controllers.Main.unknownErrorText": "Unknown error.",
"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.uploadDocFileCountMessage": "No documents uploaded.",
"DE.Controllers.Main.uploadDocSizeMessage": "Maximum document size limit exceeded.",
"DE.Controllers.Main.uploadImageExtMessage": "Unknown image format.",
"DE.Controllers.Main.uploadImageFileCountMessage": "No images uploaded.",
"DE.Controllers.Main.uploadImageSizeMessage": "Maximum image size limit exceeded.",
@ -1127,14 +1127,27 @@
"DE.Views.ChartSettings.txtTight": "Tight",
"DE.Views.ChartSettings.txtTitle": "Chart",
"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.textShow": "Show changes at",
"DE.Views.CompareSettingsDialog.textTitle": "Comparison Settings",
"DE.Views.CompareSettingsDialog.textWord": "Word level",
"DE.Views.ControlSettingsDialog.strGeneral": "General",
"DE.Views.ControlSettingsDialog.textAdd": "Add",
"DE.Views.ControlSettingsDialog.textAppearance": "Appearance",
"DE.Views.ControlSettingsDialog.textApplyAll": "Apply to All",
"DE.Views.ControlSettingsDialog.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.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.textName": "Title",
"DE.Views.ControlSettingsDialog.textNewColor": "Add New Custom Color",
@ -1143,25 +1156,12 @@
"DE.Views.ControlSettingsDialog.textSystemColor": "System",
"DE.Views.ControlSettingsDialog.textTag": "Tag",
"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.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.textSeparator": "Column divider",
"DE.Views.CustomColumnsDialog.textSpacing": "Spacing between columns",
@ -1422,8 +1422,8 @@
"DE.Views.DropcapSettingsAdvanced.tipFontName": "Font",
"DE.Views.DropcapSettingsAdvanced.txtNoBorders": "No borders",
"DE.Views.EditListItemDialog.textDisplayName": "Display name",
"DE.Views.EditListItemDialog.textValue": "Value",
"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.FileMenu.btnBackCaption": "Open file location",
"DE.Views.FileMenu.btnCloseMenuCaption": "Close Menu",
@ -1787,23 +1787,23 @@
"DE.Views.NoteSettingsDialog.textTitle": "Notes Settings",
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Warning",
"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.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.textTitle": "Margins",
"DE.Views.PageMarginsDialog.textTop": "Top",
"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.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.textPreset": "Preset",
"DE.Views.PageSizeDialog.textTitle": "Page Size",
@ -2036,7 +2036,7 @@
"DE.Views.TableSettings.textBanded": "Banded",
"DE.Views.TableSettings.textBorderColor": "Color",
"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.textDistributeCols": "Distribute columns",
"DE.Views.TableSettings.textDistributeRows": "Distribute rows",
@ -2190,10 +2190,12 @@
"DE.Views.Toolbar.capImgGroup": "Group",
"DE.Views.Toolbar.capImgWrapping": "Wrapping",
"DE.Views.Toolbar.mniCustomTable": "Insert Custom Table",
"DE.Views.Toolbar.mniDrawTable": "Draw Table",
"DE.Views.Toolbar.mniEditControls": "Control Settings",
"DE.Views.Toolbar.mniEditDropCap": "Drop Cap Settings",
"DE.Views.Toolbar.mniEditFooter": "Edit Footer",
"DE.Views.Toolbar.mniEditHeader": "Edit Header",
"DE.Views.Toolbar.mniEraseTable": "Erase Table",
"DE.Views.Toolbar.mniHiddenBorders": "Hidden Table Borders",
"DE.Views.Toolbar.mniHiddenChars": "Nonprinting Characters",
"DE.Views.Toolbar.mniHighlightControls": "Highlight Settings",
@ -2204,13 +2206,17 @@
"DE.Views.Toolbar.textAutoColor": "Automatic",
"DE.Views.Toolbar.textBold": "Bold",
"DE.Views.Toolbar.textBottom": "Bottom: ",
"DE.Views.Toolbar.textCheckboxControl": "Check box",
"DE.Views.Toolbar.textColumnsCustom": "Custom Columns",
"DE.Views.Toolbar.textColumnsLeft": "Left",
"DE.Views.Toolbar.textColumnsOne": "One",
"DE.Views.Toolbar.textColumnsRight": "Right",
"DE.Views.Toolbar.textColumnsThree": "Three",
"DE.Views.Toolbar.textColumnsTwo": "Two",
"DE.Views.Toolbar.textComboboxControl": "Combo box",
"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.textEvenPage": "Even Page",
"DE.Views.Toolbar.textInMargin": "In Margin",
@ -2237,6 +2243,7 @@
"DE.Views.Toolbar.textPageMarginsCustom": "Custom Margins",
"DE.Views.Toolbar.textPageSizeCustom": "Custom Page Size",
"DE.Views.Toolbar.textPlainControl": "Plain text",
"DE.Views.Toolbar.textPictureControl": "Picture",
"DE.Views.Toolbar.textPortrait": "Portrait",
"DE.Views.Toolbar.textRemoveControl": "Remove Content Control",
"DE.Views.Toolbar.textRemWatermark": "Remove Watermark",
@ -2283,7 +2290,6 @@
"DE.Views.Toolbar.tipFontColor": "Font color",
"DE.Views.Toolbar.tipFontName": "Font",
"DE.Views.Toolbar.tipFontSize": "Font size",
"del_DE.Views.Toolbar.tipHAligh": "Horizontal Align",
"DE.Views.Toolbar.tipHighlightColor": "Highlight color",
"DE.Views.Toolbar.tipImgAlign": "Align objects",
"DE.Views.Toolbar.tipImgGroup": "Group objects",
@ -2347,13 +2353,6 @@
"DE.Views.Toolbar.txtScheme7": "Equity",
"DE.Views.Toolbar.txtScheme8": "Flow",
"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.Toolbar.textListSettings": "List Settings",
"DE.Views.WatermarkSettingsDialog.textAuto": "Auto",
"DE.Views.WatermarkSettingsDialog.textBold": "Bold",

View file

@ -2087,7 +2087,6 @@
"DE.Views.Toolbar.tipFontColor": "Color de letra",
"DE.Views.Toolbar.tipFontName": "Tipo 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.tipImgAlign": "Alinear objetos",
"DE.Views.Toolbar.tipImgGroup": "Agrupar objetos",

View file

@ -2133,7 +2133,6 @@
"DE.Views.Toolbar.tipFontColor": "Couleur de police",
"DE.Views.Toolbar.tipFontName": "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.tipImgAlign": "Aligner les objets",
"DE.Views.Toolbar.tipImgGroup": "Grouper les objets",

View file

@ -1992,7 +1992,6 @@
"DE.Views.Toolbar.tipFontColor": "Betűszín",
"DE.Views.Toolbar.tipFontName": "Betűtípus",
"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.tipImgAlign": "Objektumok rendezése",
"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.warningTitle": "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.textAuto": "auto",
"Common.Controllers.ReviewChanges.textBaseline": "Baseline",
@ -68,15 +69,50 @@
"Common.Controllers.ReviewChanges.textTableRowsDel": "<b>Righe tabella eliminate</b>",
"Common.Controllers.ReviewChanges.textTabs": "Modifica Schede",
"Common.Controllers.ReviewChanges.textUnderline": "Sottolineato",
"Common.Controllers.ReviewChanges.textUrl": "Incolla l'URL di un documento",
"Common.Controllers.ReviewChanges.textWidow": "Widow control",
"Common.define.chartData.textArea": "Aerogramma",
"Common.define.chartData.textBar": "A barre",
"Common.define.chartData.textCharts": "Grafici",
"Common.define.chartData.textColumn": "Istogramma",
"Common.define.chartData.textLine": "A linee",
"Common.define.chartData.textPie": "A torta",
"Common.define.chartData.textPoint": "XY (A dispersione)",
"Common.define.chartData.textStock": "Azionario",
"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.ComboBorderSizeEditable.txtNoBorders": "Nessun bordo",
"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.ReviewChanges.hintNext": "Alla modifica successiva",
"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.strFastDesc": "co-editing in teampo reale. Tutte le modifiche vengono salvate automaticamente.",
"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.tipAcceptCurrent": "Accetta la modifica corrente",
"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.tipRejectCurrent": "Annulla la modifica attuale",
"Common.Views.ReviewChanges.tipReview": "Traccia cambiamenti",
@ -243,6 +286,12 @@
"Common.Views.ReviewChanges.txtChat": "Chat",
"Common.Views.ReviewChanges.txtClose": "Chiudi",
"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.txtFinal": "Tutti i cambiamenti accettati (anteprima)",
"Common.Views.ReviewChanges.txtFinalCap": "Finale",
@ -307,6 +356,11 @@
"Common.Views.SignSettingsDialog.textShowDate": "Mostra la data nella riga di Firma",
"Common.Views.SignSettingsDialog.textTitle": "Impostazioni firma",
"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.newDocumentTitle": "Documento senza nome",
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Avviso",
@ -341,6 +395,7 @@
"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.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.errorKeyEncrypt": "Descrittore di chiave sconosciuto",
"DE.Controllers.Main.errorKeyExpire": "Descrittore di chiave scaduto",
@ -355,6 +410,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.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.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.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.",
@ -429,12 +485,15 @@
"DE.Controllers.Main.txtHyperlink": "Collegamento ipertestuale",
"DE.Controllers.Main.txtIndTooLarge": "Indice troppo grande",
"DE.Controllers.Main.txtLines": "Linee",
"DE.Controllers.Main.txtMainDocOnly": "Errore! Solo documento principale.",
"DE.Controllers.Main.txtMath": "Matematica",
"DE.Controllers.Main.txtMissArg": "Argomento mancante",
"DE.Controllers.Main.txtMissOperator": "Operatore mancante",
"DE.Controllers.Main.txtNeedSynchronize": "Ci sono aggiornamenti disponibili",
"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.txtNotValidBookmark": "Errore! Non è un riferimento personale valido per i segnalibri.",
"DE.Controllers.Main.txtOddPage": "Pagina dispari",
"DE.Controllers.Main.txtOnPage": "sulla pagina",
"DE.Controllers.Main.txtRectangles": "Rettangoli",
@ -640,6 +699,9 @@
"DE.Controllers.Main.txtZeroDivide": "Diviso Zero",
"DE.Controllers.Main.unknownErrorText": "Errore sconosciuto.",
"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.uploadImageFileCountMessage": "Nessun immagine caricata.",
"DE.Controllers.Main.uploadImageSizeMessage": "E' stata superata la dimensione massima.",
@ -668,6 +730,7 @@
"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.textFunction": "Functions",
"DE.Controllers.Toolbar.textInsert": "Inserisci",
"DE.Controllers.Toolbar.textIntegral": "Integrali",
"DE.Controllers.Toolbar.textLargeOperator": "Large Operators",
"DE.Controllers.Toolbar.textLimitAndLog": "Limits And Logarithms",
@ -997,6 +1060,8 @@
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
"DE.Controllers.Viewport.textFitPage": "Adatta alla pagina",
"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.textBookmarkName": "Nome segnalibro",
"DE.Views.BookmarksDialog.textClose": "Chiudi",
@ -1010,16 +1075,44 @@
"DE.Views.BookmarksDialog.textSort": "Ordina per",
"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.CaptionDialog.textAdd": "Aggiungi etichetta",
"DE.Views.CaptionDialog.textAfter": "Dopo",
"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.textDash": "trattino",
"DE.Views.CaptionDialog.textDelete": "Elimina etichetta",
"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.textTable": "Tabella",
"DE.Views.CaptionDialog.textTitle": "Inserisci didascalia",
"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.ChartSettings.textAdvanced": "Mostra impostazioni avanzate",
"DE.Views.ChartSettings.textChartType": "Cambia tipo grafico",
"DE.Views.ChartSettings.textEditData": "Modifica dati",
"DE.Views.ChartSettings.textHeight": "Altezza",
"DE.Views.ChartSettings.textOriginalSize": "Predefinita",
"DE.Views.ChartSettings.textOriginalSize": "Dimensione reale",
"DE.Views.ChartSettings.textSize": "Dimensione",
"DE.Views.ChartSettings.textStyle": "Stile",
"DE.Views.ChartSettings.textUndock": "Disancora dal pannello",
@ -1033,10 +1126,27 @@
"DE.Views.ChartSettings.txtTight": "Ravvicinato",
"DE.Views.ChartSettings.txtTitle": "Grafico",
"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.textApplyAll": "Applica a tutti",
"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.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.textName": "Titolo",
"DE.Views.ControlSettingsDialog.textNewColor": "Colore personalizzato",
@ -1045,6 +1155,10 @@
"DE.Views.ControlSettingsDialog.textSystemColor": "Sistema",
"DE.Views.ControlSettingsDialog.textTag": "Etichetta",
"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.txtLockEdit": "I contenuti non possono essere modificati",
"DE.Views.CustomColumnsDialog.textColumns": "Numero di colonne",
@ -1097,7 +1211,7 @@
"DE.Views.DocumentHolder.mergeCellsText": "Unisci celle",
"DE.Views.DocumentHolder.moreText": "Più varianti...",
"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.removeHyperlinkText": "Elimina collegamento ipertestuale",
"DE.Views.DocumentHolder.rightText": "A destra",
@ -1156,6 +1270,7 @@
"DE.Views.DocumentHolder.textRotate90": "Ruota 90° a destra",
"DE.Views.DocumentHolder.textSeparateList": "Elenco separato",
"DE.Views.DocumentHolder.textSettings": "Impostazioni",
"DE.Views.DocumentHolder.textSeveral": "Alcune righe/colonne",
"DE.Views.DocumentHolder.textShapeAlignBottom": "Allinea in basso",
"DE.Views.DocumentHolder.textShapeAlignCenter": "Allinea al centro",
"DE.Views.DocumentHolder.textShapeAlignLeft": "Allinea a sinistra",
@ -1223,6 +1338,7 @@
"DE.Views.DocumentHolder.txtInsertArgAfter": "Insert argument after",
"DE.Views.DocumentHolder.txtInsertArgBefore": "Insert argument before",
"DE.Views.DocumentHolder.txtInsertBreak": "Insert manual break",
"DE.Views.DocumentHolder.txtInsertCaption": "Inserisci didascalia",
"DE.Views.DocumentHolder.txtInsertEqAfter": "Insert equation after",
"DE.Views.DocumentHolder.txtInsertEqBefore": "Insert equation before",
"DE.Views.DocumentHolder.txtKeepTextOnly": "Mantieni solo il testo",
@ -1303,6 +1419,10 @@
"DE.Views.DropcapSettingsAdvanced.textWidth": "Larghezza",
"DE.Views.DropcapSettingsAdvanced.tipFontName": "Tipo di carattere",
"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.btnCloseMenuCaption": "Chiudi il menù",
"DE.Views.FileMenu.btnCreateNewCaption": "Crea nuovo oggetto",
@ -1455,7 +1575,7 @@
"DE.Views.ImageSettings.textHintFlipH": "Capovolgi orizzontalmente",
"DE.Views.ImageSettings.textHintFlipV": "Capovolgi verticalmente",
"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.textRotation": "Rotazione",
"DE.Views.ImageSettings.textSize": "Dimensione",
@ -1507,7 +1627,7 @@
"DE.Views.ImageSettingsAdvanced.textMiter": "Acuto",
"DE.Views.ImageSettingsAdvanced.textMove": "Sposta oggetto con testo",
"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.textPage": "Pagina",
"DE.Views.ImageSettingsAdvanced.textParagraph": "Paragrafo",
@ -1647,7 +1767,16 @@
"DE.Views.NoteSettingsDialog.textTitle": "Impostazioni delle note",
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Avviso",
"DE.Views.PageMarginsDialog.textBottom": "In basso",
"DE.Views.PageMarginsDialog.textInside": "Dentro",
"DE.Views.PageMarginsDialog.textLandscape": "Orizzontale",
"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.textTitle": "Margins",
"DE.Views.PageMarginsDialog.textTop": "Top",
@ -1840,6 +1969,7 @@
"DE.Views.StyleTitleDialog.textTitle": "Title",
"DE.Views.StyleTitleDialog.txtEmpty": "Campo obbligatorio",
"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.textFormat": "Formato del numero",
"DE.Views.TableFormulaDialog.textFormula": "Formula",
@ -1884,7 +2014,7 @@
"DE.Views.TableSettings.textBanded": "Altera",
"DE.Views.TableSettings.textBorderColor": "Colore",
"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.textDistributeCols": "Distribuisci colonne",
"DE.Views.TableSettings.textDistributeRows": "Distribuisci righe",
@ -1911,6 +2041,14 @@
"DE.Views.TableSettings.tipRight": "Imposta solo bordo esterno destro",
"DE.Views.TableSettings.tipTop": "Imposta solo bordo esterno superiore",
"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.textAlignment": "Allineamento",
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Consenti spaziatura tra celle",
@ -2004,6 +2142,7 @@
"DE.Views.TextArtSettings.textTemplate": "Template",
"DE.Views.TextArtSettings.textTransform": "Transform",
"DE.Views.TextArtSettings.txtNoBorders": "Nessuna linea",
"DE.Views.Toolbar.capBtnAddComment": "Aggiungi commento",
"DE.Views.Toolbar.capBtnBlankPage": "Pagina Vuota",
"DE.Views.Toolbar.capBtnColumns": "Colonne",
"DE.Views.Toolbar.capBtnComment": "Commento",
@ -2015,6 +2154,7 @@
"DE.Views.Toolbar.capBtnInsImage": "Foto",
"DE.Views.Toolbar.capBtnInsPagebreak": "Interruzione di pagina",
"DE.Views.Toolbar.capBtnInsShape": "Forma",
"DE.Views.Toolbar.capBtnInsSymbol": "Simbolo",
"DE.Views.Toolbar.capBtnInsTable": "Tabella",
"DE.Views.Toolbar.capBtnInsTextart": "Text Art",
"DE.Views.Toolbar.capBtnInsTextbox": "Casella di testo",
@ -2028,10 +2168,12 @@
"DE.Views.Toolbar.capImgGroup": "Gruppo",
"DE.Views.Toolbar.capImgWrapping": "Disposizione",
"DE.Views.Toolbar.mniCustomTable": "Inserisci tabella personalizzata",
"DE.Views.Toolbar.mniDrawTable": "Disegna Tabella",
"DE.Views.Toolbar.mniEditControls": "Impostazioni di controllo",
"DE.Views.Toolbar.mniEditDropCap": "Impostazioni capolettera",
"DE.Views.Toolbar.mniEditFooter": "Modifica piè di pagina",
"DE.Views.Toolbar.mniEditHeader": "Modifica intestazione",
"DE.Views.Toolbar.mniEraseTable": "Cancella Tabella",
"DE.Views.Toolbar.mniHiddenBorders": "Bordi tabella nascosti",
"DE.Views.Toolbar.mniHiddenChars": "Caratteri non stampabili",
"DE.Views.Toolbar.mniHighlightControls": "selezionare impostazioni",
@ -2042,13 +2184,17 @@
"DE.Views.Toolbar.textAutoColor": "Automatico",
"DE.Views.Toolbar.textBold": "Grassetto",
"DE.Views.Toolbar.textBottom": "Bottom: ",
"DE.Views.Toolbar.textCheckboxControl": "Casella di controllo",
"DE.Views.Toolbar.textColumnsCustom": "Colonne personalizzate",
"DE.Views.Toolbar.textColumnsLeft": "Left",
"DE.Views.Toolbar.textColumnsOne": "One",
"DE.Views.Toolbar.textColumnsRight": "Right",
"DE.Views.Toolbar.textColumnsThree": "Tre",
"DE.Views.Toolbar.textColumnsTwo": "Two",
"DE.Views.Toolbar.textComboboxControl": "Casella combinata",
"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.textEvenPage": "Pagina pari",
"DE.Views.Toolbar.textInMargin": "Nel margine",
@ -2074,6 +2220,7 @@
"DE.Views.Toolbar.textOddPage": "Pagina dispari",
"DE.Views.Toolbar.textPageMarginsCustom": "Custom margins",
"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.textPortrait": "Verticale",
"DE.Views.Toolbar.textRemoveControl": "Rimuovi il controllo del contenuto",
@ -2121,7 +2268,6 @@
"DE.Views.Toolbar.tipFontColor": "Colore caratteri",
"DE.Views.Toolbar.tipFontName": "Tipo di carattere",
"DE.Views.Toolbar.tipFontSize": "Dimensione carattere",
"DE.Views.Toolbar.tipHAligh": "Allineamento orizzontale",
"DE.Views.Toolbar.tipHighlightColor": "Colore evidenziatore",
"DE.Views.Toolbar.tipImgAlign": "Allinea Oggetti",
"DE.Views.Toolbar.tipImgGroup": "Raggruppa oggetti",
@ -2133,6 +2279,7 @@
"DE.Views.Toolbar.tipInsertImage": "Inserisci immagine",
"DE.Views.Toolbar.tipInsertNum": "Inserisci numero di pagina",
"DE.Views.Toolbar.tipInsertShape": "Inserisci forma",
"DE.Views.Toolbar.tipInsertSymbol": "Inserisci Simbolo",
"DE.Views.Toolbar.tipInsertTable": "Inserisci tabella",
"DE.Views.Toolbar.tipInsertText": "Inserisci casella di testo",
"DE.Views.Toolbar.tipInsertTextArt": "Inserisci Text Art",

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -10,6 +10,7 @@
"Common.Controllers.ExternalMergeEditor.warningText": "Объект недоступен, так как редактируется другим пользователем.",
"Common.Controllers.ExternalMergeEditor.warningTitle": "Внимание",
"Common.Controllers.History.notcriticalErrorTitle": "Внимание",
"Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Для сравнения документов все ослеживаемые изменения в них будут считаться принятыми. Вы хотите продолжить?",
"Common.Controllers.ReviewChanges.textAtLeast": "Минимум",
"Common.Controllers.ReviewChanges.textAuto": "Авто",
"Common.Controllers.ReviewChanges.textBaseline": "Базовая линия",
@ -68,6 +69,7 @@
"Common.Controllers.ReviewChanges.textTableRowsDel": "<b>Удалены строки таблицы</b>",
"Common.Controllers.ReviewChanges.textTabs": "Изменение табуляции",
"Common.Controllers.ReviewChanges.textUnderline": "Подчёркнутый",
"Common.Controllers.ReviewChanges.textUrl": "Вставьте URL-адрес документа",
"Common.Controllers.ReviewChanges.textWidow": "Запрет висячих строк",
"Common.define.chartData.textArea": "С областями",
"Common.define.chartData.textBar": "Линейчатая",
@ -78,6 +80,39 @@
"Common.define.chartData.textPoint": "Точечная",
"Common.define.chartData.textStock": "Биржевая",
"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.ComboBorderSizeEditable.txtNoBorders": "Без границ",
"Common.UI.ComboDataView.emptyComboText": "Без стилей",
@ -224,6 +259,10 @@
"Common.Views.RenameDialog.txtInvalidName": "Имя файла не должно содержать следующих символов: ",
"Common.Views.ReviewChanges.hintNext": "К следующему изменению",
"Common.Views.ReviewChanges.hintPrev": "К предыдущему изменению",
"Common.Views.ReviewChanges.mniFromFile": "Документ из файла",
"Common.Views.ReviewChanges.mniFromStorage": "Документ из хранилища",
"Common.Views.ReviewChanges.mniFromUrl": "Документ с URL-адреса",
"Common.Views.ReviewChanges.mniSettings": "Параметры сравнения",
"Common.Views.ReviewChanges.strFast": "Быстрый",
"Common.Views.ReviewChanges.strFastDesc": "Совместное редактирование в режиме реального времени. Все изменения сохраняются автоматически.",
"Common.Views.ReviewChanges.strStrict": "Строгий",
@ -232,6 +271,7 @@
"Common.Views.ReviewChanges.tipCoAuthMode": "Задать режим совместного редактирования",
"Common.Views.ReviewChanges.tipCommentRem": "Удалить комментарии",
"Common.Views.ReviewChanges.tipCommentRemCurrent": "Удалить текущие комментарии",
"Common.Views.ReviewChanges.tipCompare": "Сравнить текущий документ с другим",
"Common.Views.ReviewChanges.tipHistory": "Показать историю версий",
"Common.Views.ReviewChanges.tipRejectCurrent": "Отклонить текущее изменение",
"Common.Views.ReviewChanges.tipReview": "Отслеживать изменения",
@ -251,6 +291,7 @@
"Common.Views.ReviewChanges.txtCommentRemMy": "Удалить мои комментарии",
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Удалить мои текущие комментарии",
"Common.Views.ReviewChanges.txtCommentRemove": "Удалить",
"Common.Views.ReviewChanges.txtCompare": "Сравнить",
"Common.Views.ReviewChanges.txtDocLang": "Язык",
"Common.Views.ReviewChanges.txtFinal": "Все изменения приняты (просмотр)",
"Common.Views.ReviewChanges.txtFinalCap": "Измененный документ",
@ -658,6 +699,9 @@
"DE.Controllers.Main.txtZeroDivide": "Деление на ноль",
"DE.Controllers.Main.unknownErrorText": "Неизвестная ошибка.",
"DE.Controllers.Main.unsupportedBrowserErrorText": "Ваш браузер не поддерживается.",
"DE.Controllers.Main.uploadDocExtMessage": "Неизвестный формат документа.",
"DE.Controllers.Main.uploadDocFileCountMessage": "Ни одного документа не загружено.",
"DE.Controllers.Main.uploadDocSizeMessage": "Превышен максимальный размер документа.",
"DE.Controllers.Main.uploadImageExtMessage": "Неизвестный формат изображения.",
"DE.Controllers.Main.uploadImageFileCountMessage": "Ни одного изображения не загружено.",
"DE.Controllers.Main.uploadImageSizeMessage": "Превышен максимальный размер изображения.",
@ -1083,10 +1127,27 @@
"DE.Views.ChartSettings.txtTight": "По контуру",
"DE.Views.ChartSettings.txtTitle": "Диаграмма",
"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.textApplyAll": "Применить ко всем",
"DE.Views.ControlSettingsDialog.textBox": "С ограничивающей рамкой",
"DE.Views.ControlSettingsDialog.textChange": "Редактировать",
"DE.Views.ControlSettingsDialog.textCheckbox": "Флажок",
"DE.Views.ControlSettingsDialog.textChecked": "Символ установленного флажка",
"DE.Views.ControlSettingsDialog.textColor": "Цвет",
"DE.Views.ControlSettingsDialog.textCombobox": "Поле со списком",
"DE.Views.ControlSettingsDialog.textDate": "Формат даты",
"DE.Views.ControlSettingsDialog.textDelete": "Удалить",
"DE.Views.ControlSettingsDialog.textDisplayName": "Отображаемое имя",
"DE.Views.ControlSettingsDialog.textDown": "Вниз",
"DE.Views.ControlSettingsDialog.textDropDown": "Выпадающий список",
"DE.Views.ControlSettingsDialog.textFormat": "Отображать дату следующим образом",
"DE.Views.ControlSettingsDialog.textLang": "Язык",
"DE.Views.ControlSettingsDialog.textLock": "Блокировка",
"DE.Views.ControlSettingsDialog.textName": "Заголовок",
"DE.Views.ControlSettingsDialog.textNewColor": "Пользовательский цвет",
@ -1095,6 +1156,10 @@
"DE.Views.ControlSettingsDialog.textSystemColor": "Системный",
"DE.Views.ControlSettingsDialog.textTag": "Тег",
"DE.Views.ControlSettingsDialog.textTitle": "Параметры элемента управления содержимым",
"DE.Views.ControlSettingsDialog.textUnchecked": "Символ снятого флажка",
"DE.Views.ControlSettingsDialog.textUp": "Вверх",
"DE.Views.ControlSettingsDialog.textValue": "Значение",
"DE.Views.ControlSettingsDialog.tipChange": "Изменить символ",
"DE.Views.ControlSettingsDialog.txtLockDelete": "Элемент управления содержимым нельзя удалить",
"DE.Views.ControlSettingsDialog.txtLockEdit": "Содержимое нельзя редактировать",
"DE.Views.CustomColumnsDialog.textColumns": "Количество колонок",
@ -1355,6 +1420,10 @@
"DE.Views.DropcapSettingsAdvanced.textWidth": "Ширина",
"DE.Views.DropcapSettingsAdvanced.tipFontName": "Шрифт",
"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.btnCloseMenuCaption": "Закрыть меню",
"DE.Views.FileMenu.btnCreateNewCaption": "Создать новый",
@ -1699,7 +1768,18 @@
"DE.Views.NoteSettingsDialog.textTitle": "Параметры сносок",
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Внимание",
"DE.Views.PageMarginsDialog.textBottom": "Нижнее",
"DE.Views.PageMarginsDialog.textGutter": "Переплет",
"DE.Views.PageMarginsDialog.textGutterPosition": "Положение переплета",
"DE.Views.PageMarginsDialog.textInside": "Внутреннее",
"DE.Views.PageMarginsDialog.textLandscape": "Альбомная",
"DE.Views.PageMarginsDialog.textLeft": "Левое",
"DE.Views.PageMarginsDialog.textMirrorMargins": "Зеркальные поля",
"DE.Views.PageMarginsDialog.textMultiplePages": "Несколько страниц",
"DE.Views.PageMarginsDialog.textNormal": "Обычные",
"DE.Views.PageMarginsDialog.textOrientation": "Ориентация",
"DE.Views.PageMarginsDialog.textOutside": "Внешнее",
"DE.Views.PageMarginsDialog.textPortrait": "Книжная",
"DE.Views.PageMarginsDialog.textPreview": "Просмотр",
"DE.Views.PageMarginsDialog.textRight": "Правое",
"DE.Views.PageMarginsDialog.textTitle": "Поля",
"DE.Views.PageMarginsDialog.textTop": "Верхнее",
@ -1937,7 +2017,7 @@
"DE.Views.TableSettings.textBanded": "Чередовать",
"DE.Views.TableSettings.textBorderColor": "Цвет",
"DE.Views.TableSettings.textBorders": "Стиль границ",
"DE.Views.TableSettings.textCellSize": "Размер ячейки",
"DE.Views.TableSettings.textCellSize": "Размеры строк и столбцов",
"DE.Views.TableSettings.textColumns": "Столбцы",
"DE.Views.TableSettings.textDistributeCols": "Выровнять ширину столбцов",
"DE.Views.TableSettings.textDistributeRows": "Выровнять высоту строк",
@ -2091,10 +2171,12 @@
"DE.Views.Toolbar.capImgGroup": "Группировка",
"DE.Views.Toolbar.capImgWrapping": "Обтекание",
"DE.Views.Toolbar.mniCustomTable": "Пользовательская таблица",
"DE.Views.Toolbar.mniDrawTable": "Нарисовать таблицу",
"DE.Views.Toolbar.mniEditControls": "Параметры элемента управления",
"DE.Views.Toolbar.mniEditDropCap": "Параметры буквицы",
"DE.Views.Toolbar.mniEditFooter": "Изменить нижний колонтитул",
"DE.Views.Toolbar.mniEditHeader": "Изменить верхний колонтитул",
"DE.Views.Toolbar.mniEraseTable": "Очистить таблицу",
"DE.Views.Toolbar.mniHiddenBorders": "Скрытые границы таблиц",
"DE.Views.Toolbar.mniHiddenChars": "Непечатаемые символы",
"DE.Views.Toolbar.mniHighlightControls": "Цвет подсветки",
@ -2105,13 +2187,17 @@
"DE.Views.Toolbar.textAutoColor": "Автоматический",
"DE.Views.Toolbar.textBold": "Полужирный",
"DE.Views.Toolbar.textBottom": "Нижнее: ",
"DE.Views.Toolbar.textCheckboxControl": "Флажок",
"DE.Views.Toolbar.textColumnsCustom": "Настраиваемые колонки",
"DE.Views.Toolbar.textColumnsLeft": "Слева",
"DE.Views.Toolbar.textColumnsOne": "Одна",
"DE.Views.Toolbar.textColumnsRight": "Справа",
"DE.Views.Toolbar.textColumnsThree": "Три",
"DE.Views.Toolbar.textColumnsTwo": "Две",
"DE.Views.Toolbar.textComboboxControl": "Поле со списком",
"DE.Views.Toolbar.textContPage": "На текущей странице",
"DE.Views.Toolbar.textDateControl": "Дата",
"DE.Views.Toolbar.textDropdownControl": "Выпадающий список",
"DE.Views.Toolbar.textEditWatermark": "Настраиваемая подложка",
"DE.Views.Toolbar.textEvenPage": "С четной страницы",
"DE.Views.Toolbar.textInMargin": "На поле",
@ -2137,11 +2223,12 @@
"DE.Views.Toolbar.textOddPage": "С нечетной страницы",
"DE.Views.Toolbar.textPageMarginsCustom": "Настраиваемые поля",
"DE.Views.Toolbar.textPageSizeCustom": "Особый размер страницы",
"DE.Views.Toolbar.textPlainControl": "Вставить элемент управления \"Обычный текст\"",
"DE.Views.Toolbar.textPictureControl": "Рисунок",
"DE.Views.Toolbar.textPlainControl": "Обычный текст",
"DE.Views.Toolbar.textPortrait": "Книжная",
"DE.Views.Toolbar.textRemoveControl": "Удалить элемент управления содержимым",
"DE.Views.Toolbar.textRemWatermark": "Удалить подложку",
"DE.Views.Toolbar.textRichControl": "Вставить элемент управления \"Форматированный текст\"",
"DE.Views.Toolbar.textRichControl": "Форматированный текст",
"DE.Views.Toolbar.textRight": "Правое: ",
"DE.Views.Toolbar.textStrikeout": "Зачеркнутый",
"DE.Views.Toolbar.textStyleMenuDelete": "Удалить стиль",
@ -2184,7 +2271,6 @@
"DE.Views.Toolbar.tipFontColor": "Цвет шрифта",
"DE.Views.Toolbar.tipFontName": "Шрифт",
"DE.Views.Toolbar.tipFontSize": "Размер шрифта",
"DE.Views.Toolbar.tipHAligh": "Горизонтальное выравнивание",
"DE.Views.Toolbar.tipHighlightColor": "Цвет выделения",
"DE.Views.Toolbar.tipImgAlign": "Выровнять объекты",
"DE.Views.Toolbar.tipImgGroup": "Сгруппировать объекты",

View file

@ -1651,7 +1651,6 @@
"DE.Views.Toolbar.tipFontColor": "Farba písma",
"DE.Views.Toolbar.tipFontName": "Písmo",
"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.tipImgAlign": "Zoradiť/usporiadať objekty",
"DE.Views.Toolbar.tipImgGroup": "Skupinové objekty",

View file

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

View file

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

View file

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

View file

@ -1563,7 +1563,6 @@
"DE.Views.Toolbar.tipFontColor": "Màu chữ",
"DE.Views.Toolbar.tipFontName": "Phông 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.tipImgAlign": "Căn chỉnh đố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.tipFontName": "字体",
"DE.Views.Toolbar.tipFontSize": "字体大小",
"DE.Views.Toolbar.tipHAligh": "水平对齐",
"DE.Views.Toolbar.tipHighlightColor": "颜色高亮",
"DE.Views.Toolbar.tipImgAlign": "对齐对象",
"DE.Views.Toolbar.tipImgGroup": "组合对象",

View file

@ -16,9 +16,11 @@
{"src": "UsageInstructions/InsertHeadersFooters.htm", "name": "Insert headers and footers"},
{"src": "UsageInstructions/InsertPageNumbers.htm", "name": "Insert page numbers"},
{ "src": "UsageInstructions/InsertFootnotes.htm", "name": "Insert footnotes" },
{"src": "UsageInstructions/InsertBookmarks.htm", "name": "Add bookmarks"},
{"src": "UsageInstructions/AlignText.htm", "name": "Align your text in a paragraph", "headername": "Paragraph formatting"},
{ "src": "UsageInstructions/InsertBookmarks.htm", "name": "Add bookmarks" },
{"src": "UsageInstructions/AddWatermark.htm", "name": "Add watermark"},
{ "src": "UsageInstructions/AlignText.htm", "name": "Align your text in a paragraph", "headername": "Paragraph formatting" },
{"src": "UsageInstructions/BackgroundColor.htm", "name": "Select background color for a paragraph"},
{"src": "UsageInstructions/SetOutlineLevel.htm", "name": "Set up paragraph outline level"},
{"src": "UsageInstructions/ParagraphIndents.htm", "name": "Change paragraph indents"},
{"src": "UsageInstructions/LineSpacing.htm", "name": "Set paragraph line spacing"},
{"src": "UsageInstructions/PageBreaks.htm", "name": "Insert page breaks"},

View file

@ -26,6 +26,7 @@
<li><b>Spell Checking</b> is used to turn on/off the spell checking option.</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>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 class="onlineDocumentFeatures"><b>Co-editing Mode</b> is used to select the display of the changes made during the co-editing:
<ul>

View file

@ -14,7 +14,7 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>Spell-checking</h1>
<p><b>Document Editor</b> allows you to check the spelling of your text in a certain language and correct mistakes while editing.</p>
<p><b>Document Editor</b> allows you to check the spelling of your text in a certain language and correct mistakes while editing. In the <em>desktop version</em>, it's also possible to add words into a custom dictionary which is common for all three editors.</p>
<p>First of all, <b>choose a language</b> for your document. Click the <img alt="Set Document Language icon" src="../images/document_language.png" /> <b>Set Document Language</b> icon at the status bar. In the window that appears, select the necessary language and click <b>OK</b>. The selected language will be applied to the whole document. </p>
<p><img alt="Set Document Language window" src="../images/document_language_window.png" /></p>
<p>To <b>choose a different language</b> for any piece of text within the document, select the necessary text passage with the mouse and use the <img alt="Spell-checking - Text Language selector" src="../images/spellchecking_language.png" /> menu at the status bar.</p>
@ -28,6 +28,7 @@
<ul>
<li>choose one of the suggested similar words spelled correctly to replace the misspelled word with the suggested one. If too many variants are found, the <b>More variants...</b> option appears in the menu;</li>
<li>use the <b>Ignore</b> option to skip just that word and remove underlining or <b>Ignore All</b> to skip all the identical words repeated in the text;</li>
<li>if the current word is missed in the dictionary, you can add it to the custom dictionary. This word will not be treated as a mistake next time. This option is available in the <em>desktop version</em>.</li>
<li>select a different language for this word.</li>
</ul>
<p><img alt="Spell-checking" src="../images/spellchecking.png" /></p>

View file

@ -59,7 +59,7 @@
<td>OpenDocument Document Template<br />OpenDocument file format for text document templates. An OTT template contains formatting settings, styles etc. and can be used to create multiple documents with the same formatting</td>
<td>+</td>
<td>+</td>
<td>in the online version</td>
<td>+</td>
</tr>
<tr>
<td>RTF</td>

View file

@ -30,7 +30,7 @@
</li>
<li class="desktopDocumentFeatures">protect the file using a password, change or remove the password (available in the <em>desktop version</em> only);</li>
<li class="onlineDocumentFeatures"><a href="../UsageInstructions/OpenCreateNew.htm" onclick="onhyperlinkclick(this)">create</a> a new document or open a recently edited one (available in the <em>online version</em> only),</li>
<li>view <a href="../UsageInstructions/ViewDocInfo.htm" onclick="onhyperlinkclick(this)">general information</a> about the document,</li>
<li>view <a href="../UsageInstructions/ViewDocInfo.htm" onclick="onhyperlinkclick(this)">general information</a> about the document or change some file properties,</li>
<li class="onlineDocumentFeatures">manage <a href="../UsageInstructions/ViewDocInfo.htm" onclick="onhyperlinkclick(this)">access rights</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>
<li>access the editor <a href="../HelpfulHints/AdvancedSettings.htm" onclick="onhyperlinkclick(this)">Advanced Settings</a>,</li>

View file

@ -29,7 +29,8 @@
<li>add <a href="../UsageInstructions/SetPageParameters.htm#columns" onclick="onhyperlinkclick(this)">columns</a>,</li>
<li>insert <a href="../UsageInstructions/PageBreaks.htm" onclick="onhyperlinkclick(this)">page breaks</a>, <a href="../UsageInstructions/SectionBreaks.htm" onclick="onhyperlinkclick(this)">section breaks</a> and <a href="../UsageInstructions/SetPageParameters.htm#columns" onclick="onhyperlinkclick(this)">column breaks</a>,</li>
<li>align and arrange objects (<a href="../UsageInstructions/InsertTables.htm" onclick="onhyperlinkclick(this)">tables</a>, <a href="../UsageInstructions/InsertImages.htm" onclick="onhyperlinkclick(this)">pictures</a>, <a href="../UsageInstructions/InsertCharts.htm" onclick="onhyperlinkclick(this)">charts</a>, <a href="../UsageInstructions/InsertAutoshapes.htm" onclick="onhyperlinkclick(this)">shapes</a>),</li>
<li>change <a href="../UsageInstructions/ChangeWrappingStyle.htm" onclick="onhyperlinkclick(this)">wrapping style</a>.</li>
<li>change <a href="../UsageInstructions/ChangeWrappingStyle.htm" onclick="onhyperlinkclick(this)">wrapping style</a>,</li>
<li>add a <a href="../UsageInstructions/AddWatermark.htm" onclick="onhyperlinkclick(this)">watermark</a>.</li>
</ul>
</div>
</body>

View file

@ -27,10 +27,10 @@
<p>The <b>Macros</b> button allows to open the window where you can create your own macros and run them. To learn more about macros you can refer to our <a target="_blank" href="https://api.onlyoffice.com/plugin/macros" onclick="onhyperlinkclick(this)">API Documentation</a>.</p>
<p>Currently, the following plugins are available by default:</p>
<ul>
<li><b>ClipArt</b> allows to add images from the clipart collection into your document,</li>
<li class="desktopDocumentFeatures"><b>Send</b> allows to send the document via email using the default desktop mail client (available in the <em>desktop version</em> only),</li>
<li><b>Highlight code</b> allows to highlight syntax of the code selecting the necessary language, style, background color,</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, resize them, apply effects 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><b>Symbol Table</b> allows to insert special symbols into your text,</li>
<li><b>Thesaurus</b> allows to search for synonyms and antonyms of a word and replace it with the selected one,</li>

View file

@ -0,0 +1,50 @@
<!DOCTYPE html>
<html>
<head>
<title>Add watermark</title>
<meta charset="utf-8" />
<meta name="description" content="Text watermarks allow to indicate your document status (for example, confidential, draft etc.), image watermarks allow to add an image, for example your company logo." />
<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 watermark</h1>
<p>Watermark is a text or image placed below the main text layer. Text watermarks allow to indicate your document status (for example, confidential, draft etc.), image watermarks allow to add an image, for example your company logo.</p>
<p>To add a watermark within a document:</p>
<ol>
<li>Switch to the <b>Layout</b> tab of the top toolbar.</li>
<li>Click the <img alt="Watermark icon" src="../images/watermark.png" /> <b>Watermark</b> icon at the top toolbar and choose the <b>Custom Watermark</b> option from the menu. After that the <b>Watermark Settings</b> window will appear.</li>
<li>Select a watermark type you wish to insert:
<ul>
<li>Use the <b>Text watermark</b> option and adjust the available parameters:
<p><img alt="Watermark Settings window" src="../images/watermark_settings.png" /></p>
<ul>
<li><b>Language</b> - select one of the available languages from the list,</li>
<li><b>Text</b> - select one of the available text examples on the selected language. For English, the following watermark texts are available: <em>ASAP</em>, <em>CONFIDENTIAL</em>, <em>COPY</em>, <em>DO NOT COPY</em>, <em>DRAFT</em>, <em>ORIGINAL</em>, <em>PERSONAL</em>, <em>SAMPLE</em>, <em>TOP SECRET</em>, <em>URGENT</em>.</li>
<li><b>Font</b> - select the font name and size from the corresponding drop-down lists. Use the icons on the right to set the font color or apply one of the font decoration styles: <em>Bold</em>, <em>Italic</em>, <em>Underline</em>, <em>Strikeout</em>,</li>
<li><b>Semitransparent</b> - check this box if you want to apply transparency,</li>
<li><b>Layout</b> - select the <b>Diagonal</b> or <b>Horizontal</b> option.</li>
</ul>
</li>
<li>Use the <b>Image watermark</b> option and adjust the available parameters:
<p><img alt="Watermark Settings window" src="../images/watermark_settings2.png" /></p>
<ul>
<li>Choose the image file source using one of the buttons: <b>From File</b> or <b>From URL</b> - the image will be displayed in the preview window on the right,</li>
<li><b>Scale</b> - select the necessary scale value from the available ones: <em>Auto</em>, <em>500%</em>, <em>200%</em>, <em>150%</em>, <em>100%</em>, <em>50%</em>.</li>
</ul>
</li>
</ul>
</li>
<li>Click the <b>OK</b> button.</li>
</ol>
<p>To edit the added watermark, open the <b>Watermark Settings</b> window as described above, change the necessary parameters and click <b>OK</b>.</p>
<p>To delete the added watermark click the <img alt="Watermark icon" src="../images/watermark.png" /> <b>Watermark</b> icon at the <b>Layout</b> tab of the top toolbar and choose the <b>Remove Watermark</b> option from the menu. It's also possible to use the <b>None</b> option in the <b>Watermark Settings</b> window.</p>
</div>
</body>
</html>

View file

@ -23,10 +23,18 @@
<li><b>Left</b> alignment with the text lined up by the left side of the page (the right side remains unaligned) is done with the <b>Align left</b> <img alt="Align left icon" src="../images/alignleft.png" /> icon situated at the top toolbar.</li>
<li><b>Center</b> alignment with the text lined up by the center of the page (the right and the left sides remains unaligned) is done with the <b>Align center</b> <img alt="Align center icon" src="../images/aligncenter.png" /> icon situated at the top toolbar.</li>
<li><b>Right</b> alignment with the text lined up by the right side of the page (the left side remains unaligned) is done with the <b>Align right</b> <img alt="Align right icon" src="../images/alignright.png" /> icon situated at the top toolbar.</li>
<li><b>Justify</b> alignment with the text lined up by both the left and the right sides of the page (additional spacing is added where necessary to keep the alignment) is done with the <b>Justify</b> <img alt="Justify icon" src="../images/justify.png" /> icon situated at the top toolbar.</li>
<li><b>Justified</b> alignment with the text lined up by both the left and the right sides of the page (additional spacing is added where necessary to keep the alignment) is done with the <b>Justified</b> <img alt="Justify icon" src="../images/justify.png" /> icon situated at the top toolbar.</li>
</ul>
</li>
</ol>
<p>The alignment parameters are also available at the <b>Paragraph - Advanced Settings</b> window.</p>
<ol>
<li>right-click the text and choose the <b>Paragraph Advanced Settings</b> option from the contextual menu or use the <b>Show advanced settings</b> option at the right sidebar,</li>
<li>open the <b>Paragraph - Advanced Settings</b> window, switch to the <b>Indents &amp; Spacing</b> tab,</li>
<li>select one of the alignment types from the <b>Alignment</b> list: <b>Left</b>, <b>Center</b>, <b>Right</b>, <b>Justified</b>,</li>
<li>click the <b>OK</b> button, to apply the changes.</li>
</ol>
<p><img alt="Paragraph Advanced Settings - Indents &amp; Spacing" src="../images/paradvsettings_indents.png" /></p>
</div>
</body>
</html>

View file

@ -15,7 +15,7 @@
</div>
<h1>Change color scheme</h1>
<p>Color schemes are applied to the whole document. They are used to quickly change the appearance of your document, since they are define the <b>Theme Colors</b> palette for document elements (<a href="../UsageInstructions/FontTypeSizeColor.htm" onclick="onhyperlinkclick(this)">font</a>, <a href="../UsageInstructions/BackgroundColor.htm" onclick="onhyperlinkclick(this)">background</a>, <a href="../UsageInstructions/InsertTables.htm" onclick="onhyperlinkclick(this)">tables</a>, <a href="../UsageInstructions/InsertAutoshapes.htm" onclick="onhyperlinkclick(this)">autoshapes</a>, <a href="../UsageInstructions/InsertCharts.htm" onclick="onhyperlinkclick(this)">charts</a>). If you've applied some <b>Theme Colors</b> to document elements and then selected a different <b>Color Scheme</b>, the applied colors in your document change correspondingly.</p>
<p>To change a color scheme, click the downward arrow next to the <b>Change color scheme</b> <img alt="Change color scheme" src="../images/changecolorscheme.png" /> icon at the <b>Home</b> tab of the top toolbar and select the necessary color scheme from the available ones: <b>Office</b>, <b>Grayscale</b>, <b>Apex</b>, <b>Aspect</b>, <b>Civic</b>, <b>Concourse</b>, <b>Equity</b>, <b>Flow</b>, <b>Foundry</b>, <b>Median</b>, <b>Metro</b>, <b>Module</b>, <b>Odulent</b>, <b>Oriel</b>, <b>Origin</b>, <b>Paper</b>, <b>Solstice</b>, <b>Technic</b>, <b>Trek</b>, <b>Urban</b>, <b>Verve</b>.</p>
<p>To change a color scheme, click the downward arrow next to the <b>Change color scheme</b> <img alt="Change color scheme" src="../images/changecolorscheme.png" /> icon at the <b>Home</b> tab of the top toolbar and select the necessary color scheme from the available ones: <b>Office</b>, <b>Grayscale</b>, <b>Apex</b>, <b>Aspect</b>, <b>Civic</b>, <b>Concourse</b>, <b>Equity</b>, <b>Flow</b>, <b>Foundry</b>, <b>Median</b>, <b>Metro</b>, <b>Module</b>, <b>Odulent</b>, <b>Oriel</b>, <b>Origin</b>, <b>Paper</b>, <b>Solstice</b>, <b>Technic</b>, <b>Trek</b>, <b>Urban</b>, <b>Verve</b>. The selected color scheme will be highlighted in the list.</p>
<p><img alt="Color Schemes" src="../images/colorscheme.png" /></p>
<p>Once you select the preferred color scheme, you can select colors in a color palettes window that corresponds to the document element you want to apply the color to. For most of the document elements, the color palettes window can be accessed by clicking the colored box at the right sidebar when the necessary element is selected. For the font, this window can be opened using the downward arrow next to the <b>Font color</b> <img alt="Font color" src="../images/fontcolor.png" /> icon at the <b>Home</b> tab of the top toolbar. The following palettes are available:</p>
<p><img alt="Palette" src="../images/palette.png" /></p>

View file

@ -14,8 +14,9 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>Apply formatting styles</h1>
<p>Each formatting style is a set of predefined formatting options: (font size, color, line spacing, alignment etc.). The styles allow you to quickly format different parts of the document (headings, subheadings, lists, normal text, quotes) instead of applying several formatting options individually each time. This also ensures a consistent appearance throughout the entire document. A style can be applied to the whole paragraph only.</p>
<h3>Use default styles</h3>
<p>Each formatting style is a set of predefined formatting options: (font size, color, line spacing, alignment etc.). The styles allow you to quickly format different parts of the document (headings, subheadings, lists, normal text, quotes) instead of applying several formatting options individually each time. This also ensures a consistent appearance throughout the entire document.</p>
<p class="note">Style application depends on whether a style is a paragraph style (normal, no spacing, headings, list paragraph etc.), or the text style (based on the font type, size, color), as well as on whether a text passage is selected, or the mouse cursor is positioned within a word. In some cases you might need to select the necessary style from the style library twice so that it can be applied correctly: when you click the style at the style panel for the first time, the paragraph style properties are applied. When you click it for the second time, the text properties are applied.</p>
<h3>Use default styles</h3>
<p>To apply one of the available text formatting styles,</p>
<ol>
<li>place the cursor within the paragraph you need, or select several paragraphs you want to apply one of the formatting styles to,</li>
@ -49,7 +50,7 @@
<p><img alt="Create New Style window" src="../images/createnewstylewindow.png" /></p>
<ul>
<li>Specify the new style name in the text entry field.</li>
<li>Select the desired style for the subsequent paragraph from the <b>Next paragraph style</b> list.</li>
<li>Select the desired style for the subsequent paragraph from the <b>Next paragraph style</b> list. It's also possible to choose the <b>Same as created new style</b> option.</li>
<li>Click the <b>OK</b> button.</li>
</ul>
</li>

View file

@ -113,6 +113,7 @@
</li>
<li><b>Wrapping Style</b> - use this section to select a text wrapping style from the available ones - inline, square, tight, through, top and bottom, in front, behind (for more information see the advanced settings description below).</li>
<li><b>Change Autoshape</b> - use this section to replace the current autoshape with another one selected from the dropdown list.</li>
<li><b>Show shadow</b> - check this option to display shape with shadow.</li>
</ul>
<hr />
<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>

View file

@ -17,7 +17,12 @@
<p>Bookmarks allow to quickly jump to a certain position in the current document or add a link to this location within the document.</p>
<p>To add a bookmark within a document:</p>
<ol>
<li>put the mouse cursor at the beginning of the text passage where you want the bookmark to be added,</li>
<li>specify the place where you want the bookmark to be added:
<ul>
<li>put the mouse cursor at the beginning of the necessary text passage, or</li>
<li>select the necessary text passage,</li>
</ul>
</li>
<li>switch to the <b>References</b> tab of the top toolbar,</li>
<li>click the <img alt="Bookmark icon" src="../images/bookmark.png" /> <b>Bookmark</b> icon at the top toolbar,</li>
<li>in the <b>Bookmarks</b> window that opens, enter the <b>Bookmark name</b> and click the <b>Add</b> button - a bookmark will be added to the bookmark list displayed below,
@ -30,7 +35,7 @@
<li>click the <img alt="Bookmark icon" src="../images/bookmark.png" /> <b>Bookmark</b> icon at the <b>References</b> tab of the top toolbar,</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>click the <b>Go to</b> button - the cursor will be positioned in the location within the document where the selected bookmark was added,</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>Close</b> button to close the window.</li>
</ol>
<p>To delete a bookmark select it in the bookmark list and use the <b>Delete</b> button.</p>

View file

@ -178,6 +178,12 @@
<h3>Edit chart elements</h3>
<p>To edit the chart <b>Title</b>, select the default text with the mouse and type in your own one instead.</p>
<p>To change the font formatting within text elements, such as the chart title, axes titles, legend entries, data labels etc., select the necessary text element by left-clicking it. Then use icons at the <b>Home</b> tab of the top toolbar to change the font <a href="../UsageInstructions/FontTypeSizeColor.htm" onclick="onhyperlinkclick(this)">type, size, color</a> or its <a href="../UsageInstructions/DecorationStyles.htm" onclick="onhyperlinkclick(this)">decoration style</a>.</p>
<p>When the chart 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, since a shape is used as a background for the chart. 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_fill" onclick="onhyperlinkclick(this)"><b>Fill</b></a>, <a href="../UsageInstructions/InsertAutoshapes.htm#shape_stroke" onclick="onhyperlinkclick(this)"><b>Stroke</b></a> and <b>Wrapping Style</b>. Note that you cannot change the shape type.</p>
<p>
Using the <b>Shape Settings</b> tab at the right panel you can not only adjust the chart area itself, but also change the chart elements, such as <em>plot area</em>, <em>data series</em>, <em>chart title</em>, <em>legend</em> etc and apply different fill types to them. Select the chart element clicking it with the left mouse button and choose the preferred fill type: <em>solid color</em>, <em>gradient</em>, <em>texture</em> or <em>picture</em>, <em>pattern</em>. Specify the fill parameters and set the <em>Opacity</em> level if necessary.
When you select a vertical or horizontal axis or gridlines, the stroke settings are only available at the <b>Shape Settings</b> tab: <em>color</em>, <em>width</em> and <em>type</em>. For more details on how to work with shape colors, fills and stroke, you can refer to <a href="../UsageInstructions/InsertAutoshapes.htm" onclick="onhyperlinkclick(this)">this page</a>.
</p>
<p class="note"><b>Note</b>: the <b>Show shadow</b> option is also available at the <b>Shape settings</b> tab, but it is disabled for chart elements.</p>
<p>To delete a chart element, select it by left-clicking and press the <b>Delete</b> key on the keyboard.</p>
<p>You can also rotate 3D charts using the mouse. Left-click within the plot area and hold the mouse button. Drag the cursor without releasing the mouse button to change the 3D chart orientation.</p>
<p><img alt="3D chart" src="../images/3dchart.png" /></p>
@ -204,7 +210,6 @@
<li><b>Edit Data</b> is used to open the 'Chart Editor' window.</li>
<li><b>Chart Advanced Settings</b> is used to open the 'Chart - Advanced Settings' window.</li>
</ul>
<p>When the chart 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, since a shape is used as a background for the chart. 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_fill" onclick="onhyperlinkclick(this)"><b>Fill</b></a>, <a href="../UsageInstructions/InsertAutoshapes.htm#shape_stroke" onclick="onhyperlinkclick(this)"><b>Stroke</b></a> and <b>Wrapping Style</b>. Note that you cannot change the shape type.</p>
<hr />
<p>To change the chart advanced settings, click the needed chart with the right mouse button and select <b>Chart Advanced Settings</b> from the right-click menu or just click the <b>Show advanced settings</b> link at the right sidebar. The chart properties window will open:</p>
<p><img alt="Chart - Advanced Settings: Size" src="../images/chart_properties.png" /></p>

View file

@ -81,6 +81,7 @@
<li><b>Image Advanced Settings</b> is used to open the 'Image - Advanced Settings' window.</li>
</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>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 />
<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>

View file

@ -34,6 +34,8 @@
</ul>
</li>
</ol>
<p>These parameters can also be found in the <b>Paragraph - Advanced Settings</b> window. To open the <b>Paragraph - Advanced Settings</b> window, right-click the text and choose the <b>Paragraph Advanced Settings</b> option from the menu or use the <b>Show advanced settings</b> option at the right sidebar. Then switch to the <b>Indents &amp; Spacing</b> tab and go to the <b>Spacing</b> section.</p>
<p><img alt="Paragraph Advanced Settings - Indents &amp; Spacing" src="../images/paradvsettings_indents.png" /></p>
<p>To quickly change the current paragraph line spacing, you can also use the <b>Paragraph line spacing</b> <img alt="Paragraph line spacing" src="../images/linespacing.png" /> icon at the <b>Home</b> tab of the top toolbar selecting the needed value from the list: 1.0, 1.15, 1.5, 2.0, 2.5, or 3.0 lines.</p>
</div>
</body>

View file

@ -27,7 +27,7 @@
<ol>
<li>in the main program window, select the <b>Document</b> menu item from the <b>Create new</b> section of the left sidebar - a new file will open in a new tab,</li>
<li>when all the necessary changes are made, click the <b>Save</b> <img alt="Save icon" src="../images/save.png" /> icon in the upper left corner or switch to the <b>File</b> tab and choose the <b>Save as</b> menu item. </li>
<li>in the file manager window, select the file location, specify its name, choose the format you want to save the document to (DOCX, Document template, ODT, RTF, TXT, PDF or PDFA) and click the <b>Save</b> button.</li>
<li>in the file manager window, select the file location, specify its name, choose the format you want to save the document to (DOCX, Document template (DOTX), ODT, OTT, RTF, TXT, PDF or PDFA) and click the <b>Save</b> button.</li>
</ol>
</div>

View file

@ -20,20 +20,20 @@
<p>To insert a page break before the selected paragraph i.e. to start this paragraph at the top of a new page:</p>
<ul>
<li>click the right mouse button and select the <b>Page break before</b> option in the menu, or</li>
<li>click the right mouse button, select the <b>Paragraph Advanced Settings</b> option in the menu or use the <b>Show advanced settings</b> link at the right sidebar, and check the <b>Page break before</b> box in the opened <b>Paragraph - Advanced Settings</b> window.
<li>click the right mouse button, select the <b>Paragraph Advanced Settings</b> option in the menu or use the <b>Show advanced settings</b> link at the right sidebar, and check the <b>Page break before</b> box at the <b>Line &amp; Page Breaks</b> tab of the opened <b>Paragraph - Advanced Settings</b> window.
</li>
</ul>
<p>To keep lines together so that only whole paragraphs will be moved to the new page (i.e. there will be no page break between the lines within a single paragraph),</p>
<ul>
<li>click the right mouse button and select the <b>Keep lines together</b> option in the menu, or</li>
<li>click the right mouse button, select the <b>Paragraph Advanced Settings</b> option in the menu or use the <b>Show advanced settings</b> link at the right sidebar, and check the <b>Keep lines together</b> box in the opened <b>Paragraph - Advanced Settings</b> window.</li>
<li>click the right mouse button, select the <b>Paragraph Advanced Settings</b> option in the menu or use the <b>Show advanced settings</b> link at the right sidebar, and check the <b>Keep lines together</b> box at the <b>Line &amp; Page Breaks</b> in the opened <b>Paragraph - Advanced Settings</b> window.</li>
</ul>
<p>The <b>Paragraph - Advanced Settings</b> window allows you to set two more pagination options:</p>
<p>The <b>Line &amp; Page Breaks</b> tab of the <b>Paragraph - Advanced Settings</b> window allows you to set two more pagination options:</p>
<ul>
<li><b>Keep with next</b> - is used to prevent a page break between the selected paragraph and the next one.</li>
<li><b>Orphan control</b> - is selected by default and used to prevent a single line of the paragraph (the first or last) from appearing at the top or bottom of the page.</li>
</ul>
<p><img alt="Paragraph Advanced Settings - Indents &amp; Placement" src="../images/paradvsettings_indents.png" /></p>
<p><img alt="Paragraph Advanced Settings - Line &amp; Page Breaks" src="../images/paradvsettings_breaks.png" /></p>
</div>
</body>
</html>

View file

@ -19,9 +19,15 @@
<ol>
<li>put the cursor within the paragraph you need, or select several paragraphs with the mouse or all the text in the document by pressing the <b>Ctrl+A</b> key combination,</li>
<li>click the right mouse button and select the <b>Paragraph Advanced Settings</b> option from the menu or use the <b>Show advanced settings</b> link at the right sidebar,</li>
<li>in the opened <b>Paragraph - Advanced Settings</b> window, set the needed indent for the <b>first line</b> and paragraph offset from the <b>left</b> and <b>right</b> sides of the page,</li>
<li>in the opened <b>Paragraph - Advanced Settings</b> window, switch to the <b>Indents &amp; Spacing</b> tab and set the necessary parameters in the <b>Indents</b> section:
<ul>
<li><b>Left</b> - set the paragraph offset from the <b>left</b> side of the page specifying the necessary numeric value,</li>
<li><b>Right</b> - set the paragraph offset from the <b>right</b> side of the page specifying the necessary numeric value,</li>
<li><b>Special</b> - set an indent for the <b>first line</b> of the paragraph: select the corresponding menu item (<b>(none)</b>, <b>First line</b>, <b>Hanging</b>) and change the default numeric value specified for <b>First Line</b> or <b>Hanging</b>,</li>
</ul>
</li>
<li>click the <b>OK</b> button.
<p><img alt="Paragraph Advanced Settings - Indents &amp; Placement" src="../images/paradvsettings_indents.png" /></p>
<p><img alt="Paragraph Advanced Settings - Indents &amp; Spacing" src="../images/paradvsettings_indents.png" /></p>
</li>
</ol>
<p>To quickly change the paragraph offset from the left side of the page, you can also use the respective icons at the <b>Home</b> tab of the top toolbar: <b>Decrease indent</b> <img alt="Decrease indent" src="../images/decreaseindent.png" /> and <b>Increase indent</b> <img alt="Increase indent" src="../images/increaseindent.png" />.</p>

View file

@ -28,7 +28,7 @@
<ol>
<li>click the <b>File</b> tab of the top toolbar,</li>
<li>select the <b>Save as...</b> option,</li>
<li>choose one of the available formats depending on your needs: DOCX, ODT, RTF, TXT, PDF, PDFA. You can also choose the <b>Document template</b> (DOTX) option.</li>
<li>choose one of the available formats depending on your needs: DOCX, ODT, RTF, TXT, PDF, PDFA. You can also choose the <b>Document template</b> (DOTX or OTT) option.</li>
</ol>
</div>
<div class="onlineDocumentFeatures">
@ -55,6 +55,7 @@
<li>use the <b>Ctrl+P</b> key combination, or</li>
<li>click the <b>File</b> tab of the top toolbar and select the <b>Print</b> option.</li>
</ul>
<p>It's also possible to print a selected text passage using the <b>Print Selection</b> option from the contextual menu.</p>
<p><span class="desktopDocumentFeatures">In the <em>desktop version</em>, the file will be printed directly.</span><span class="onlineDocumentFeatures">In the <em>online version</em>, a PDF file will be generated on the basis of the document. You can open and print it out, or save onto your computer hard disk drive or removable medium to print it out later. Some browsers (e.g. Chrome and Opera) support direct printing.</span></p>
</div>
</body>

View file

@ -0,0 +1,29 @@
<!DOCTYPE html>
<html>
<head>
<title>Set up paragraph outline level</title>
<meta charset="utf-8" />
<meta name="description" content="Set up paragraph outline level" />
<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>Set up paragraph outline level</h1>
<p>Outline level means the paragraph level in the document structure. The following levels are available: <em>Basic Text</em>, <em>Level 1</em> - <em>Level 9</em>. Outline level can be specified in different ways, for example, by using <a href="../UsageInstructions/FormattingPresets.htm" onclick="onhyperlinkclick(this)">heading styles</a>: once you assign a heading style (<em>Heading 1</em> - <em>Heading 9</em>) to a paragraph, it acquires a corresponding outline level. If you assign a level to a paragraph using the paragraph advanced settings, the paragraph acquires the structure level only while its style remains unchanged. The outline level can also be changed at the <a href="../UsageInstructions/CreateTableOfContents.htm#navigation" onclick="onhyperlinkclick(this)"><b>Navigation</b></a> panel on the left using the contextual menu options.</p>
<p>To change a paragraph outline level using the paragraph advanced settings,</p>
<ol>
<li>right-click the text and choose the <b>Paragraph Advanced Settings</b> option from the contextual menu or use the <b>Show advanced settings</b> option at the right sidebar,</li>
<li>open the <b>Paragraph - Advanced Settings</b> window, switch to the <b>Indents &amp; Spacing</b> tab,</li>
<li>select the necessary outline level from the <b>Outline level</b> list.</li>
<li>click the <b>OK</b> button to apply the changes.</li>
</ol>
<p><img alt="Paragraph Advanced Settings - Indents &amp; Spacing" src="../images/paradvsettings_indents.png" /></p>
</div>
</body>
</html>

View file

@ -29,13 +29,13 @@
</li>
</ol>
<hr />
<p>You can also use the paragraph properties window to adjust tab stops. Click the right mouse button, select the <b>Paragraph Advanced Settings</b> option in the menu or use the <b>Show advanced settings</b> link at the right sidebar, and switch to the <b>Tab</b> tab in the opened <b>Paragraph - Advanced Settings</b> window.</p>
<img alt="Paragraph Properties - Tab tab" src="../images/paradvsettings_tab.png" />
<p>You can also use the paragraph properties window to adjust tab stops. Click the right mouse button, select the <b>Paragraph Advanced Settings</b> option in the menu or use the <b>Show advanced settings</b> link at the right sidebar, and switch to the <b>Tabs</b> tab in the opened <b>Paragraph - Advanced Settings</b> window.</p>
<img alt="Paragraph Properties - Tabs tab" src="../images/paradvsettings_tab.png" />
<p>You can set the following parameters:</p>
<ul>
<li><b>Tab Position</b> - is used to set custom tab stops. Enter the necessary value in this box, adjust it more precisely using the arrow buttons and press the <b>Specify</b> button. Your custom tab position will be added to the list in the field below. If you've previously added some tab stops using the ruler, all these tab positions will also be displayed in the list.</li>
<li><b>Default Tab</b> is set at 1.25 cm. You can decrease or increase this value using the arrow buttons or enter the necessary one in the box.</li>
<li><b>Alignment</b> - is used to set the necessary alignment type for each of the tab positions in the list above. Select the necessary tab position in the list, choose the <b>Left</b>, <b>Center</b> or <b>Right</b> option from the drop-down list and press the <b>Specify</b> button.</li>
<li><b>Tab Position</b> - is used to set custom tab stops. Enter the necessary value in this box, adjust it more precisely using the arrow buttons and press the <b>Specify</b> button. Your custom tab position will be added to the list in the field below. If you've previously added some tab stops using the ruler, all these tab positions will also be displayed in the list.</li>
<li><b>Alignment</b> - is used to set the necessary alignment type for each of the tab positions in the list above. Select the necessary tab position in the list, choose the <b>Left</b>, <b>Center</b> or <b>Right</b> option from the drop-down list and press the <b>Specify</b> button.</li>
<li><b>Leader</b> - allows to choose a character used to create a leader for each of the tab positions. A leader is a line of characters (dots or hyphens) that fills the space between tabs. Select the necessary tab position in the list, choose the leader type from the drop-down list and press the <b>Specify</b> button.
<p>To delete tab stops from the list select a tab stop and press the <b>Remove</b> or <b>Remove All</b> button.</p>
</li>

View file

@ -16,9 +16,19 @@
<h1>View document information</h1>
<p>To access the detailed information about the currently edited document, click the <b>File</b> tab of the top toolbar and select the <b>Document Info...</b> option.</p>
<h3>General Information</h3>
<p>The document information includes document title, the application the document was created with and statistics: the number of pages, paragraphs, words, symbols, symbols with spaces. <span class="onlineDocumentFeatures">In the <em>online version</em>, the following information is also displayed: author, location, creation date.</span></p>
<p>The document information includes a number of the file properties which describe the document. Some of these properties are updated automatically, and some of them can be edited.</p>
<ul>
<li class ="onlineDocumentFeatures"><b>Location</b> - the folder in the <b>Documents</b> module where the file is stored. <b>Owner</b> - the name of the user who have created the file. <b>Uploaded</b> - the date and time when the file has been created. These properties are available in the <em>online version</em> only.</li>
<li><b>Statistics</b> - the number of pages, paragraphs, words, symbols, symbols with spaces.</li>
<li><b>Title</b>, <b>Subject</b>, <b>Comment</b> - these properties allow to simplify your documents classification. You can specify the necessary text in the properties fields.</li>
<li><b>Last Modified</b> - the date and time when the file was last modified.</li>
<li><b>Last Modified By</b> - the name of the user who have made the latest change in the document if a document has been shared and it can be edited by several users.</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>
</ul>
<p>If you change properties in desktop editors, do not forget to save the file to apply the changes.</p>
<div class="onlineDocumentFeatures">
<p class="note"><b>Note</b>: Online Editors allow you to change the document title 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 class="onlineDocumentFeatures">
<h3>Permission Information</h3>

View file

@ -149,6 +149,7 @@ text-decoration: none;
.search-field {
display: block;
float: right;
margin-top: 10px;
}
.search-field input {
width: 250px;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.7 KiB

After

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 225 B

After

Width:  |  Height:  |  Size: 211 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 106 KiB

After

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 104 KiB

After

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 43 KiB

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.6 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 171 B

After

Width:  |  Height:  |  Size: 275 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 214 B

After

Width:  |  Height:  |  Size: 326 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2 KiB

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 158 B

After

Width:  |  Height:  |  Size: 253 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 202 B

After

Width:  |  Height:  |  Size: 205 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 175 B

After

Width:  |  Height:  |  Size: 252 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 213 B

After

Width:  |  Height:  |  Size: 318 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 292 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

File diff suppressed because one or more lines are too long

View file

@ -16,8 +16,10 @@
{"src":"UsageInstructions/InsertHeadersFooters.htm", "name": "Вставка колонтитулов"},
{"src":"UsageInstructions/InsertPageNumbers.htm", "name": "Вставка номеров страниц" },
{ "src": "UsageInstructions/InsertFootnotes.htm", "name": "Вставка сносок" },
{"src": "UsageInstructions/InsertBookmarks.htm", "name": "Добавление закладок"},
{"src":"UsageInstructions/AlignText.htm", "name": "Выравнивание текста в абзаце", "headername": "Форматирование абзаца" },
{ "src": "UsageInstructions/InsertBookmarks.htm", "name": "Добавление закладок" },
{"src": "UsageInstructions/AddWatermark.htm", "name": "Добавление подложки"},
{ "src": "UsageInstructions/AlignText.htm", "name": "Выравнивание текста в абзаце", "headername": "Форматирование абзаца" },
{"src": "UsageInstructions/SetOutlineLevel.htm", "name": "Настройка уровня структуры абзаца"},
{"src":"UsageInstructions/BackgroundColor.htm", "name": "Выбор цвета фона для абзаца"},
{"src":"UsageInstructions/ParagraphIndents.htm", "name": "Изменение отступов абзацев"},
{"src":"UsageInstructions/LineSpacing.htm", "name": "Настройка междустрочного интервала в абзацах"},

View file

@ -26,6 +26,7 @@
<li><b>Проверка орфографии</b> - используется для включения/отключения опции проверки орфографии.</li>
<li><b>Альтернативный ввод</b> - используется для включения/отключения иероглифов.</li>
<li><b>Направляющие выравнивания</b> - используется для включения/отключения направляющих выравнивания, которые появляются при перемещении объектов и позволяют точно расположить их на странице.</li>
<li><b>Совместимость</b> - используется чтобы <em>сделать файлы совместимыми с более старыми версиями MS Word при сохранении как DOCX</em>.</li>
<li><span class="onlineDocumentFeatures"><b>Автосохранение</b> - используется в <em>онлайн-версии</em> для включения/отключения опции автоматического сохранения изменений, внесенных при редактировании.</span> <span class="desktopDocumentFeatures"><b>Автовосстановление</b> - используется в <em>десктопной версии</em> для включения/отключения опции автоматического восстановления документа в случае непредвиденного закрытия программы.</span></li>
<li class="onlineDocumentFeatures"><b>Режим совместного редактирования</b> - используется для выбора способа отображения изменений, вносимых в ходе совместного редактирования:
<ul>

View file

@ -421,10 +421,10 @@
<th colspan="4" class="keyboard_section">Оформление текста</th>
</tr>
<tr>
<td>Жирный шрифт</td>
<td>Полужирный шрифт</td>
<td><kbd>Ctrl</kbd>+<kbd>B</kbd></td>
<td><kbd>&#8984; Cmd</kbd>+<kbd>B</kbd></td>
<td>Сделать шрифт в выделенном фрагменте текста жирным, придав ему большую насыщенность.</td>
<td>Сделать шрифт в выделенном фрагменте текста полужирным, придав ему большую насыщенность.</td>
</tr>
<tr>
<td>Курсив</td>

View file

@ -14,7 +14,7 @@
<input id="search" class="searchBar" placeholder="Поиск" type="text" onkeypress="doSearch(event)">
</div>
<h1>Проверка орфографии</h1>
<p>В редакторе документов можно проверять правописание текста на определенном языке и исправлять ошибки в ходе редактирования.</p>
<p>В редакторе документов можно проверять правописание текста на определенном языке и исправлять ошибки в ходе редактирования. В <em>десктопной версии</em> также доступна возможность добавлять слова в пользовательский словарь, общий для всех трех редакторов.</p>
<p>Прежде всего <b>выберите язык</b> документа. Нажмите на значок <img alt="Значок Задать язык документа" src="../images/document_language.png" /> <b>Задать язык документа</b> в строке состояния. В окне, которое появится, выберите нужный язык и нажмите кнопку <b>OK</b>. Выбранный язык будет применен ко всему документу. </p>
<p><img alt="Окно выбора языка документа" src="../images/document_language_window.png" /></p>
<p>Чтобы выбрать какой-то <b>другой язык</b> для любого фрагмента текста в этом документе, выделите мышью нужную часть теста и используйте меню <img alt="Проверка орфографии - выбор языка текста" src="../images/spellchecking_language.png" />, которое находится в строке состояния.</p>
@ -28,6 +28,7 @@
<ul>
<li>выберите одно из предложенных похожих слов, которые написаны правильно, чтобы заменить слово с ошибкой на предложенное слово. Если найдено слишком много вариантов, в меню появляется пункт <b>Больше вариантов...</b>;</li>
<li>используйте опцию <b>Пропустить</b>, чтобы пропустить только это слово и убрать подчеркивание или <b>Пропустить все</b>, чтобы пропустить все идентичные слова, повторяющиеся в тексте;</li>
<li>если текущее слово отсутствует в словаре, добавьте его в пользовательский словарь. В следующий раз это слово не будет расцениваться как ошибка. Эта возможность доступна в <em>десктопной версии</em>.</li>
<li>выберите другой язык для этого слова.</li>
</ul>
<p><img alt="Проверка орфографии" src="../images/spellchecking.png" /></p>

View file

@ -59,7 +59,7 @@
<td>OpenDocument Document Template<br />Формат текстовых файлов OpenDocument для шаблонов текстовых документов. Шаблон OTT содержит настройки форматирования, стили и т.д. и может использоваться для создания множества документов со схожим форматированием</td>
<td>+</td>
<td>+</td>
<td>в онлайн-версии</td>
<td>+</td>
</tr>
<tr>
<td>RTF</td>

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