Merge branch 'master' into release/v6.3.0

This commit is contained in:
Julia Radzhabova 2021-03-04 13:51:02 +03:00
commit b0fedaa13f
1833 changed files with 14845 additions and 5041 deletions

View file

@ -59,7 +59,7 @@ define([
width = 414;
height = 277;
} else {
width = (options.type !== Common.Utils.importTextType.DRM) ? 340 : (options.warning ? 420 : 262);
width = (options.type !== Common.Utils.importTextType.DRM) ? 340 : (options.warning ? 420 : 280);
height = (options.type == Common.Utils.importTextType.CSV || options.type == Common.Utils.importTextType.Paste || options.type == Common.Utils.importTextType.Columns) ? 190 : (options.warning ? 187 : 147);
}
@ -92,7 +92,7 @@ define([
'</div>',
'<% } else { %>',
'<div>',
'<label class="header">' + t.txtPassword + '</label>',
'<label class="">' + t.txtOpenFile + '</label>',
'<div id="id-password-txt"></div>',
'</div>',
'<% } %>',
@ -507,7 +507,8 @@ define([
txtColon: 'Colon',
txtSemicolon: 'Semicolon',
txtProtected: 'Once you enter the password and open the file, the current password to the file will be reset.',
txtAdvanced: 'Advanced'
txtAdvanced: 'Advanced',
txtOpenFile: "Enter a password to open the file"
}, Common.Views.OpenDialog || {}));
});

View file

@ -54,8 +54,8 @@ define([
_options = {};
_.extend(_options, {
width : 350,
height : 238,
width : 395,
height : 270,
header : true,
cls : 'modal-dlg',
contentTemplate : '',
@ -77,6 +77,7 @@ define([
'<label>' + t.txtRepeat + '</label>',
'</div>',
'<div id="id-repeat-txt" class="input-row" style="margin-bottom: 10px;"></div>',
'<label>' + t.txtWarning + '</label>',
'</div>'
].join('');
@ -154,7 +155,8 @@ define([
txtPassword : "Password",
txtDescription : "A Password is required to open this document",
txtRepeat: 'Repeat password',
txtIncorrectPwd: 'Confirmation password is not identical'
txtIncorrectPwd: 'Confirmation password is not identical',
txtWarning: 'Warning: If you lose or forget the password, it cannot be recovered. Please keep it in a safe place.'
}, Common.Views.PasswordDialog || {}));
});

View file

@ -74,6 +74,8 @@ define([
bold: false,
italic: false
};
var filter = Common.localStorage.getKeysFilter();
this.appPrefix = (filter && filter.length) ? filter.split(',')[0] : '';
this.template = [
'<div class="box" style="height: ' + ((this.signType == 'invisible') ? '132px;' : '300px;') + '">',
@ -145,6 +147,7 @@ define([
menuStyle : 'min-width: 234px;max-height: 270px;',
store : new Common.Collections.Fonts(),
recent : 0,
takeFocusOnClose: true,
hint : me.tipFontName
}).on('selected', function(combo, record) {
if (me.signObject) {
@ -160,6 +163,7 @@ define([
menuCls : 'scrollable-menu',
menuStyle: 'min-width: 55px;max-height: 270px;',
hint: this.tipFontSize,
takeFocusOnClose: true,
data: [
{ value: 8, displayValue: "8" },
{ value: 9, displayValue: "9" },
@ -186,11 +190,13 @@ define([
me.font.size = record.value;
});
this.cmbFontSize.setValue(this.font.size);
this.cmbFontSize.on('changed:before', _.bind(this.onFontSizeChanged, this, true));
this.cmbFontSize.on('changed:after', _.bind(this.onFontSizeChanged, this, false));
me.btnBold = new Common.UI.Button({
parentEl: $('#id-dlg-sign-bold'),
cls: 'btn-toolbar',
iconCls: 'btn-bold',
iconCls: 'toolbar__icon btn-bold',
enableToggle: true,
hint: me.textBold
});
@ -204,7 +210,7 @@ define([
me.btnItalic = new Common.UI.Button({
parentEl: $('#id-dlg-sign-italic'),
cls: 'btn-toolbar',
iconCls: 'btn-italic',
iconCls: 'toolbar__icon btn-italic',
enableToggle: true,
hint: me.textItalic
});
@ -241,6 +247,10 @@ define([
me.afterRender();
},
getFocusedComponents: function() {
return [this.inputPurpose, this.inputName, this.cmbFonts, this.cmbFontSize];
},
show: function() {
Common.UI.Window.prototype.show.apply(this, arguments);
@ -301,8 +311,14 @@ define([
_handleInput: function(state) {
if (this.options.handler) {
if (state == 'ok' && (this.btnOk.isDisabled() || this.signObject && !this.signObject.isValid()))
return;
if (state == 'ok' && (this.btnOk.isDisabled() || this.signObject && !this.signObject.isValid())) {
if (!this.btnOk.isDisabled()) {
this.inputName.showError([this.textNameError]);
this.inputName.focus();
}
return;
}
this.options.handler.call(this, this, state);
}
@ -334,6 +350,39 @@ define([
this.signObject.setText(value, this.font.name, this.font.size, this.font.italic, this.font.bold);
},
onFontSizeChanged: function(before, combo, record, e) {
var value,
me = this;
if (before) {
var item = combo.store.findWhere({
displayValue: record.value
});
if (!item) {
value = /^\+?(\d*(\.|,)?\d+)$|^\+?(\d+(\.|,)?\d*)$/.exec(record.value);
if (!value) {
value = combo.getValue();
combo.setRawValue(value);
e.preventDefault();
return false;
}
}
} else {
var maxvalue = (this.appPrefix=='sse-') ? 409 : 300;
value = Common.Utils.String.parseFloat(record.value);
value = value > maxvalue ? maxvalue :
value < 1 ? 1 : Math.floor((value+0.4)*2)/2;
combo.setRawValue(value);
if (this.signObject) {
this.signObject.setText(this.inputName.getValue(), this.font.name, value, this.font.italic, this.font.bold);
}
this.font.size = value;
}
},
textTitle: 'Sign Document',
textPurpose: 'Purpose for signing this document',
textCertificate: 'Certificate',
@ -347,7 +396,8 @@ define([
tipFontSize: 'Font Size',
textBold: 'Bold',
textItalic: 'Italic',
textSelect: 'Select'
textSelect: 'Select',
textNameError: 'Signer name must not be empty.'
}, Common.Views.SignDialog || {}))
});

View file

@ -142,13 +142,12 @@ define([
$window.find('.dlg-btn').on('click', _.bind(this.onBtnClick, this));
},
show: function() {
Common.UI.Window.prototype.show.apply(this, arguments);
getFocusedComponents: function() {
return [this.inputName, this.inputTitle, this.inputEmail, this.textareaInstructions];
},
var me = this;
_.delay(function(){
me.inputName.cmpEl.find('input').focus();
},500);
getDefaultFocusableComponent: function () {
return this.inputName;
},
setSettings: function (props) {
@ -164,6 +163,8 @@ define([
value = props.asc_getInstructions();
me.textareaInstructions.val(value ? value : '');
me.chDate.setValue(props.asc_getShowDate());
me._currentGuid = props.asc_getGuid();
}
},
@ -176,6 +177,7 @@ define([
props.asc_setEmail(me.inputEmail.getValue());
props.asc_setInstructions(me.textareaInstructions.val());
props.asc_setShowDate(me.chDate.getValue()=='checked');
(me._currentGuid!==undefined) && props.asc_setGuid(me._currentGuid);
return props;
},

View file

@ -2364,7 +2364,7 @@ define([
var _disable_ui = function (disable) {
me.disableEditing(disable);
var app = me.getApplication();
app.getController('DocumentHolder').getView().SetDisabled(disable, true);
app.getController('DocumentHolder').getView().SetDisabled(disable);
app.getController('Navigation') && app.getController('Navigation').SetDisabled(disable);
var leftMenu = app.getController('LeftMenu');

View file

@ -3221,7 +3221,7 @@ define([
textEmptyImgUrl : 'You need to specify image URL.',
textWarning : 'Warning',
textFontSizeErr : 'The entered value is incorrect.<br>Please enter a numeric value between 1 and 100',
textFontSizeErr : 'The entered value is incorrect.<br>Please enter a numeric value between 1 and 300',
textSymbols : 'Symbols',
textFraction : 'Fraction',
textScript : 'Script',

View file

@ -20,7 +20,7 @@
<label class="input-label"><%= scope.strIndentsRightText %></label>
<div id="paragraphadv-spin-indent-right"></div>
</div><!--
--><div class="padding-large" style="display: inline-block;">
--><div class="padding-large" style="display: inline-block;vertical-align: top">
<div>
<label class="input-label"><%= scope.strIndentsSpecial %></label>
</div>
@ -40,7 +40,7 @@
<label class="input-label"><%= scope.strIndentsSpacingAfter %></label>
<div id="paragraphadv-spin-spacing-after"></div>
</div><!--
--><div style="display: inline-block;">
--><div style="display: inline-block;vertical-align: top">
<div>
<label class="input-label"><%= scope.strIndentsLineSpacing %></label>
</div>

View file

@ -139,7 +139,7 @@ define([ 'text!documenteditor/main/app/template/ControlSettingsDialog.template',
colors: ['000000', '993300', '333300', '003300', '003366', '000080', '333399', '333333', '800000', 'FF6600',
'808000', '00FF00', '008080', '0000FF', '666699', '808080', 'FF0000', 'FF9900', '99CC00', '339966',
'33CCCC', '3366FF', '800080', '999999', 'FF00FF', 'FFCC00', 'FFFF00', '00FF00', '00FFFF', '00CCFF',
'993366', 'C0C0C0', 'FF99CC', 'FFCC99', 'FFFF99', 'CCFFCC', 'CCFFFF', '99CCFF', 'CC99FF', 'FFFFFF'
'993366', 'C0C0C0', 'FF99CC', 'FFCC99', 'FFFF99', 'CCFFCC', 'CCFFFF', 'C9C8FF', 'CC99FF', 'FFFFFF'
],
paletteHeight: 94
});

View file

@ -809,7 +809,7 @@ define([
colors: ['000000', '993300', '333300', '003300', '003366', '000080', '333399', '333333', '800000', 'FF6600',
'808000', '00FF00', '008080', '0000FF', '666699', '808080', 'FF0000', 'FF9900', '99CC00', '339966',
'33CCCC', '3366FF', '800080', '999999', 'FF00FF', 'FFCC00', 'FFFF00', '00FF00', '00FFFF', '00CCFF',
'993366', 'C0C0C0', 'FF99CC', 'FFCC99', 'FFFF99', 'CCFFCC', 'CCFFFF', '99CCFF', 'CC99FF', 'FFFFFF'
'993366', 'C0C0C0', 'FF99CC', 'FFCC99', 'FFFF99', 'CCFFCC', 'CCFFFF', 'C9C8FF', 'CC99FF', 'FFFFFF'
],
paletteHeight: 94
});

View file

@ -408,7 +408,7 @@ define([
arr = (version || '').split('.'),
ver = '';
(arr.length>0) && (ver += ('v. ' + arr[0]));
(arr.length>1) && (ver += ('.' + arr[0]));
(arr.length>1) && (ver += ('.' + arr[1]));
this.betaHint = $('<div id="beta-hint"' + style + '>' + (ver + ' (beta)' ) + '</div>').appendTo(this.$el);
this.betaHeight = this.betaHint.outerHeight();
!this.devHintInited && $(window).on('resize', _.bind(this.onWindowResize, this));

View file

@ -118,6 +118,7 @@ define([
width: 80,
defaultUnit : 'cm',
value: 'Auto',
autoText : this.txtAutoText,
maxValue: 55.87,
minValue: 0.1,
allowAuto: true,
@ -253,6 +254,7 @@ define([
textApplyTo: 'Apply changes to',
textDocument: 'Whole document',
textSection: 'Current section',
textForward: 'This point forward'
textForward: 'This point forward',
txtAutoText: 'Auto'
}, DE.Views.LineNumbersDialog || {}))
});

View file

@ -256,6 +256,8 @@ define([
},
showSignatureMenu: function(record, showPoint) {
this.api.asc_gotoSignature(record.get('guid'));
var menu = this.signatureMenu,
parent = $(this.el),
menuContainer = parent.find('#menu-signature-container');

View file

@ -224,7 +224,7 @@ define([
this.chLinks = new Common.UI.CheckBox({
el: $('#tableofcontents-chb-links'),
labelText: this.strLinks,
labelText: (this.type==1) ? this.strLinksOF : this.strLinks,
value: 'checked'
});
this.chLinks.on('change', _.bind(function(field, newValue, oldValue, eOpts){
@ -376,7 +376,7 @@ define([
template: _.template(['<div class="listview inner" style=""></div>'].join('')),
itemTemplate: _.template([
'<div id="<%= id %>" class="list-item">',
'<div class="<% if (checked) { %>checked<% } %>"><%= name %></div>',
'<div class="<% if (checked) { %>checked<% } %>"><%= displayValue %></div>',
'<div>',
'<div class="input-field" style="width:40px;"><input type="text" class="form-control" value="<%= value %>" style="text-align: right;" maxLength="1">',
'</div>',
@ -519,6 +519,7 @@ define([
if (style.get_QFormat() || level>=0) {
styles.push({
name: name,
displayValue: style.get_TranslatedName(),
allowSelected: false,
checked: false,
value: '',
@ -553,6 +554,7 @@ define([
} else {
styles.push({
name: style,
displayValue: style,
allowSelected: false,
checked: true,
value: level,
@ -609,8 +611,8 @@ define([
}
}
styles.sort(function(a, b){
var aname = a.name.toLocaleLowerCase(),
bname = b.name.toLocaleLowerCase();
var aname = a.displayValue.toLocaleLowerCase(),
bname = b.displayValue.toLocaleLowerCase();
if (aname < bname) return -1;
if (aname > bname) return 1;
return 0;
@ -657,18 +659,25 @@ define([
arr = [];
_.each(this.api.asc_getAllUsedParagraphStyles(), function (style, index) {
var name = style.get_Name();
arr.push({
displayValue: name,
displayValue: style.get_TranslatedName(),
styleName: style.get_Name(),
value: index
});
});
arr.sort(function(a, b){
var aname = a.displayValue.toLocaleLowerCase(),
bname = b.displayValue.toLocaleLowerCase();
if (aname < bname) return -1;
if (aname > bname) return 1;
return 0;
});
this.cmbTOFStyles.setData(arr);
value = undefined;
if (props) {
var count = props.get_StylesCount();
if (count>0) {
var rec = this.cmbTOFStyles.store.findWhere({displayValue: props.get_StyleName(0)});
var rec = this.cmbTOFStyles.store.findWhere({styleName: props.get_StyleName(0)});
rec && (value = rec.get('value'));
}
}
@ -759,7 +768,7 @@ define([
} else {
props.put_Caption(null);
var rec = this.cmbTOFStyles.getSelectedRecord();
rec && props.add_Style(rec.displayValue);
rec && props.add_Style(rec.styleName);
}
} else {
if (this._needUpdateOutlineLevels) {
@ -837,7 +846,7 @@ define([
var properties = (this._originalProps) ? this._originalProps : new Asc.CTableOfContentsPr();
properties.put_Caption(null);
properties.clear_Styles();
properties.add_Style(record.displayValue);
properties.add_Style(record.styleName);
this.api.SetDrawImagePlaceTableOfFigures('tableofcontents-img', properties);
this.scrollerY.update();
}
@ -896,7 +905,8 @@ define([
textTable: 'Table',
txtDistinctive: 'Distinctive',
txtCentered: 'Centered',
txtFormal: 'Formal'
txtFormal: 'Formal',
strLinksOF: 'Format table of figures as links'
}, DE.Views.TableOfContentsSettings || {}))
});

View file

@ -2011,7 +2011,7 @@ define([
colors: ['000000', '993300', '333300', '003300', '003366', '000080', '333399', '333333', '800000', 'FF6600',
'808000', '00FF00', '008080', '0000FF', '666699', '808080', 'FF0000', 'FF9900', '99CC00', '339966',
'33CCCC', '3366FF', '800080', '999999', 'FF00FF', 'FFCC00', 'FFFF00', '00FF00', '00FFFF', '00CCFF',
'993366', 'C0C0C0', 'FF99CC', 'FFCC99', 'FFFF99', 'CCFFCC', 'CCFFFF', '99CCFF', 'CC99FF', 'FFFFFF'
'993366', 'C0C0C0', 'FF99CC', 'FFCC99', 'FFFF99', 'CCFFCC', 'CCFFFF', 'C9C8FF', 'CC99FF', 'FFFFFF'
]
});
}

View file

@ -250,6 +250,7 @@
"Common.Views.OpenDialog.closeButtonText": "Закрыць файл",
"Common.Views.OpenDialog.txtEncoding": "Кадаванне",
"Common.Views.OpenDialog.txtIncorrectPwd": "Уведзены хібны пароль.",
"Common.Views.OpenDialog.txtOpenFile": "Каб адкрыць файл, увядзіце пароль",
"Common.Views.OpenDialog.txtPassword": "Пароль",
"Common.Views.OpenDialog.txtPreview": "Прагляд",
"Common.Views.OpenDialog.txtProtected": "Калі вы ўвядзеце пароль і адкрыеце файл бягучы пароль да файла скінецца.",
@ -260,6 +261,7 @@
"Common.Views.PasswordDialog.txtPassword": "Пароль",
"Common.Views.PasswordDialog.txtRepeat": "Паўтарыць пароль",
"Common.Views.PasswordDialog.txtTitle": "Прызначыць пароль",
"Common.Views.PasswordDialog.txtWarning": "Увага: Страчаны або забыты пароль аднавіць немагчыма. Захоўвайце яго ў надзейным месцы.",
"Common.Views.PluginDlg.textLoading": "Загрузка",
"Common.Views.Plugins.groupCaption": "Убудовы",
"Common.Views.Plugins.strPlugins": "Убудовы",

View file

@ -211,6 +211,7 @@
"Common.Views.OpenDialog.closeButtonText": "Затвори файла",
"Common.Views.OpenDialog.txtEncoding": "Кодиране",
"Common.Views.OpenDialog.txtIncorrectPwd": "Паролата е неправилна.",
"Common.Views.OpenDialog.txtOpenFile": "Въведете парола, за да отворите файла",
"Common.Views.OpenDialog.txtPassword": "Парола",
"Common.Views.OpenDialog.txtPreview": "Предварителен преглед",
"Common.Views.OpenDialog.txtProtected": "След като въведете паролата и отворите файла, текущата парола за файла ще бъде нулирана.",
@ -221,6 +222,7 @@
"Common.Views.PasswordDialog.txtPassword": "Парола",
"Common.Views.PasswordDialog.txtRepeat": "Повтори паролата",
"Common.Views.PasswordDialog.txtTitle": "Задайте парола",
"Common.Views.PasswordDialog.txtWarning": "Внимание: Ако загубите или забравите паролата, тя не може да се възстанови. Го съхранявайте на сигурно място.",
"Common.Views.PluginDlg.textLoading": "Зареждане",
"Common.Views.Plugins.groupCaption": "Добавки",
"Common.Views.Plugins.strPlugins": "Добавки",

View file

@ -250,6 +250,7 @@
"Common.Views.OpenDialog.closeButtonText": "Tancar Arxiu",
"Common.Views.OpenDialog.txtEncoding": "Codificació",
"Common.Views.OpenDialog.txtIncorrectPwd": "La contrasenya es incorrecta.",
"Common.Views.OpenDialog.txtOpenFile": "Introduïu una contrasenya per obrir el fitxer",
"Common.Views.OpenDialog.txtPassword": "Contrasenya",
"Common.Views.OpenDialog.txtPreview": "Vista prèvia",
"Common.Views.OpenDialog.txtProtected": "Un cop hàgiu introduït la contrasenya i obert el fitxer, es restablirà la contrasenya actual del fitxer.",
@ -260,6 +261,7 @@
"Common.Views.PasswordDialog.txtPassword": "Contrasenya",
"Common.Views.PasswordDialog.txtRepeat": "Repeteix la contrasenya",
"Common.Views.PasswordDialog.txtTitle": "Estableix la contrasenya",
"Common.Views.PasswordDialog.txtWarning": "Avis: si perdeu o oblideu la contrasenya, no es podrà recuperar. Desa-la en un lloc segur.",
"Common.Views.PluginDlg.textLoading": "Carregant",
"Common.Views.Plugins.groupCaption": "Connectors",
"Common.Views.Plugins.strPlugins": "Connectors",

View file

@ -231,6 +231,7 @@
"Common.Views.OpenDialog.closeButtonText": "Zavřít soubor",
"Common.Views.OpenDialog.txtEncoding": "Kódování",
"Common.Views.OpenDialog.txtIncorrectPwd": "Heslo není správné.",
"Common.Views.OpenDialog.txtOpenFile": "Zadejte heslo pro otevření souboru",
"Common.Views.OpenDialog.txtPassword": "Heslo",
"Common.Views.OpenDialog.txtPreview": "Náhled",
"Common.Views.OpenDialog.txtProtected": "Jakmile zadáte heslo a soubor otevřete, stávající heslo k souboru bude resetováno.",
@ -241,6 +242,7 @@
"Common.Views.PasswordDialog.txtPassword": "Heslo",
"Common.Views.PasswordDialog.txtRepeat": "Zopakovat heslo",
"Common.Views.PasswordDialog.txtTitle": "Nastavit heslo",
"Common.Views.PasswordDialog.txtWarning": "Varování: Ztracené nebo zapomenuté heslo nelze obnovit. Uložte ji na bezpečném místě.",
"Common.Views.PluginDlg.textLoading": "Načítání…",
"Common.Views.Plugins.groupCaption": "Zásuvné moduly",
"Common.Views.Plugins.strPlugins": "Zásuvné moduly",

View file

@ -230,6 +230,7 @@
"Common.Views.OpenDialog.closeButtonText": "Luk fil",
"Common.Views.OpenDialog.txtEncoding": "Dekoder",
"Common.Views.OpenDialog.txtIncorrectPwd": "Kodeordet er forkert",
"Common.Views.OpenDialog.txtOpenFile": "Angiv en adgangskode for at åbne filen",
"Common.Views.OpenDialog.txtPassword": "Kodeord",
"Common.Views.OpenDialog.txtPreview": "Forhåndvisning",
"Common.Views.OpenDialog.txtProtected": "Når du indtastet kodeorderet og åbner filen, nulstilles det aktuelle kodeord til filen. ",
@ -240,6 +241,7 @@
"Common.Views.PasswordDialog.txtPassword": "Kodeord",
"Common.Views.PasswordDialog.txtRepeat": "Gentag kodeord",
"Common.Views.PasswordDialog.txtTitle": "Indstil kodeord",
"Common.Views.PasswordDialog.txtWarning": "Advarsel! Hvis du mister eller glemmer adgangskoden, kan den ikke genoprettes. Opbevar den et sikkert sted.",
"Common.Views.PluginDlg.textLoading": "Indlæser",
"Common.Views.Plugins.groupCaption": "Tilføjelsesprogrammer",
"Common.Views.Plugins.strPlugins": "Tilføjelsesprogrammer",

View file

@ -256,6 +256,7 @@
"Common.Views.OpenDialog.closeButtonText": "Datei schließen",
"Common.Views.OpenDialog.txtEncoding": "Zeichenkodierung",
"Common.Views.OpenDialog.txtIncorrectPwd": "Kennwort ist falsch.",
"Common.Views.OpenDialog.txtOpenFile": "Kennwort zum Öffnen der Datei eingeben",
"Common.Views.OpenDialog.txtPassword": "Kennwort",
"Common.Views.OpenDialog.txtPreview": "Vorschau",
"Common.Views.OpenDialog.txtProtected": "Sobald Sie das Passwort eingegeben und die Datei geöffnet haben, wird das aktuelle Passwort für die Datei zurückgesetzt.",
@ -266,6 +267,7 @@
"Common.Views.PasswordDialog.txtPassword": "Kennwort",
"Common.Views.PasswordDialog.txtRepeat": "Kennwort wiederholen",
"Common.Views.PasswordDialog.txtTitle": "Kennwort festlegen",
"Common.Views.PasswordDialog.txtWarning": "Vorsicht: Wenn Sie das Kennwort verlieren oder vergessen, lässt es sich nicht mehr wiederherstellen. Bewahren Sie ihn an einem sicheren Ort auf.",
"Common.Views.PluginDlg.textLoading": "Ladevorgang",
"Common.Views.Plugins.groupCaption": "Plugins",
"Common.Views.Plugins.strPlugins": "Plugins",
@ -366,6 +368,7 @@
"Common.Views.SignDialog.textChange": "Ändern",
"Common.Views.SignDialog.textInputName": "Name des Signaturgebers eingeben",
"Common.Views.SignDialog.textItalic": "Kursiv",
"Common.Views.SignDialog.textNameError": "Der Name des Signaturgebers darf nicht leer sein.",
"Common.Views.SignDialog.textPurpose": "Zweck der Signierung dieses Dokuments",
"Common.Views.SignDialog.textSelect": "Wählen",
"Common.Views.SignDialog.textSelectImage": "Bild auswählen",
@ -1863,6 +1866,7 @@
"DE.Views.LineNumbersDialog.textSection": "Aktueller Abschnitt",
"DE.Views.LineNumbersDialog.textStartAt": "Beginnen mit",
"DE.Views.LineNumbersDialog.textTitle": "Zeilennummern",
"DE.Views.LineNumbersDialog.txtAutoText": "Auto",
"DE.Views.Links.capBtnBookmarks": "Lesezeichen",
"DE.Views.Links.capBtnCaption": "Beschriftung",
"DE.Views.Links.capBtnContentsUpdate": "Aktualisierung",
@ -2216,6 +2220,7 @@
"DE.Views.TableOfContentsSettings.strAlign": "Seitenzahlen rechtsbündig",
"DE.Views.TableOfContentsSettings.strFullCaption": "Bezeichnung und Nummer einschließen",
"DE.Views.TableOfContentsSettings.strLinks": "Inhaltsverzeichnis als Links formatieren",
"DE.Views.TableOfContentsSettings.strLinksOF": "Abbildungsverzeichnis als Links formatieren",
"DE.Views.TableOfContentsSettings.strShowPages": "Seitenzahlen anzeigen",
"DE.Views.TableOfContentsSettings.textBuildTable": "Erstellen eines Inhaltsverzeichnisses mithilfe von",
"DE.Views.TableOfContentsSettings.textBuildTableOF": "Abbildungsverzeichnis aus",

View file

@ -293,6 +293,7 @@
"Common.Views.OpenDialog.closeButtonText": "Κλείσιμο Αρχείου",
"Common.Views.OpenDialog.txtEncoding": "Κωδικοποίηση",
"Common.Views.OpenDialog.txtIncorrectPwd": "Το συνθηματικό είναι εσφαλμένο.",
"Common.Views.OpenDialog.txtOpenFile": "Εισαγάγετε κωδικό πρόσβασης για να ανοίξτε το αρχείο",
"Common.Views.OpenDialog.txtPassword": "Συνθηματικό",
"Common.Views.OpenDialog.txtPreview": "Προεπισκόπηση",
"Common.Views.OpenDialog.txtProtected": "Μόλις βάλετε τον κωδικό και ανοίξετε το αρχείο, ο τρέχων κωδικός αρχείου θα αρχικοποιηθεί.",
@ -303,6 +304,7 @@
"Common.Views.PasswordDialog.txtPassword": "Συνθηματικό",
"Common.Views.PasswordDialog.txtRepeat": "Επανάληψη συνθηματικού",
"Common.Views.PasswordDialog.txtTitle": "Ορισμός Συνθηματικού",
"Common.Views.PasswordDialog.txtWarning": "Προσοχή: Εάν χάσετε ή ξεχάσετε τον κωδικό πρόσβασης, δεν είναι δυνατή η ανάκτησή του. διατηρήστε τον σε ασφαλές μέρος.",
"Common.Views.PluginDlg.textLoading": "Γίνεται φόρτωση",
"Common.Views.Plugins.groupCaption": "Πρόσθετα",
"Common.Views.Plugins.strPlugins": "Πρόσθετα",
@ -1921,6 +1923,7 @@
"DE.Views.LineNumbersDialog.textSection": "Τρέχουσα επιλογή",
"DE.Views.LineNumbersDialog.textStartAt": "Έναρξη από",
"DE.Views.LineNumbersDialog.textTitle": "Αριθμοί Γραμμών",
"DE.Views.LineNumbersDialog.txtAutoText": "Αυτόματα",
"DE.Views.Links.capBtnBookmarks": "Σελιδοδείκτης",
"DE.Views.Links.capBtnCaption": "Λεζάντα",
"DE.Views.Links.capBtnContentsUpdate": "Ανανέωση",
@ -2281,6 +2284,7 @@
"DE.Views.TableOfContentsSettings.strAlign": "Δεξιά στοίχιση αριθμών σελίδων",
"DE.Views.TableOfContentsSettings.strFullCaption": "Συμπερίληψη ετικέτας και αριθμού",
"DE.Views.TableOfContentsSettings.strLinks": "Διαμόρφωση Πίνακα Περιεχομένων ως συνδέσμων",
"DE.Views.TableOfContentsSettings.strLinksOF": "Μορφοποίηση πίνακα εικόνων ως συνδέσμων",
"DE.Views.TableOfContentsSettings.strShowPages": "Εμφάνιση αριθμών σελίδων",
"DE.Views.TableOfContentsSettings.textBuildTable": "Δημιουργία πίνακα περιεχομένων από",
"DE.Views.TableOfContentsSettings.textBuildTableOF": "Δημιουργία πίνακα εικόνων από",

View file

@ -297,6 +297,7 @@
"Common.Views.OpenDialog.closeButtonText": "Close File",
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
"Common.Views.OpenDialog.txtIncorrectPwd": "Password is incorrect.",
"Common.Views.OpenDialog.txtOpenFile": "Enter a password to open the file",
"Common.Views.OpenDialog.txtPassword": "Password",
"Common.Views.OpenDialog.txtPreview": "Preview",
"Common.Views.OpenDialog.txtProtected": "Once you enter the password and open the file, the current password to the file will be reset.",
@ -307,6 +308,7 @@
"Common.Views.PasswordDialog.txtPassword": "Password",
"Common.Views.PasswordDialog.txtRepeat": "Repeat password",
"Common.Views.PasswordDialog.txtTitle": "Set Password",
"Common.Views.PasswordDialog.txtWarning": "Warning: If you lose or forget the password, it cannot be recovered. Please keep it in a safe place.",
"Common.Views.PluginDlg.textLoading": "Loading",
"Common.Views.Plugins.groupCaption": "Plugins",
"Common.Views.Plugins.strPlugins": "Plugins",
@ -414,6 +416,7 @@
"Common.Views.SignDialog.textChange": "Change",
"Common.Views.SignDialog.textInputName": "Input signer name",
"Common.Views.SignDialog.textItalic": "Italic",
"Common.Views.SignDialog.textNameError": "Signer name must not be empty.",
"Common.Views.SignDialog.textPurpose": "Purpose for signing this document",
"Common.Views.SignDialog.textSelect": "Select",
"Common.Views.SignDialog.textSelectImage": "Select Image",
@ -1933,6 +1936,7 @@
"DE.Views.LineNumbersDialog.textSection": "Current section",
"DE.Views.LineNumbersDialog.textStartAt": "Start at",
"DE.Views.LineNumbersDialog.textTitle": "Line Numbers",
"DE.Views.LineNumbersDialog.txtAutoText": "Auto",
"DE.Views.Links.capBtnBookmarks": "Bookmark",
"DE.Views.Links.capBtnCaption": "Caption",
"DE.Views.Links.capBtnContentsUpdate": "Refresh",
@ -2293,6 +2297,7 @@
"DE.Views.TableOfContentsSettings.strAlign": "Right align page numbers",
"DE.Views.TableOfContentsSettings.strFullCaption": "Include label and number",
"DE.Views.TableOfContentsSettings.strLinks": "Format Table of Contents as links",
"DE.Views.TableOfContentsSettings.strLinksOF": "Format table of figures as links",
"DE.Views.TableOfContentsSettings.strShowPages": "Show page numbers",
"DE.Views.TableOfContentsSettings.textBuildTable": "Build table of contents from",
"DE.Views.TableOfContentsSettings.textBuildTableOF": "Build table of figures from",

View file

@ -256,6 +256,7 @@
"Common.Views.OpenDialog.closeButtonText": "Cerrar archivo",
"Common.Views.OpenDialog.txtEncoding": "Codificación",
"Common.Views.OpenDialog.txtIncorrectPwd": "La contraseña es incorrecta",
"Common.Views.OpenDialog.txtOpenFile": "Escribir la contraseña para abrir el archivo",
"Common.Views.OpenDialog.txtPassword": "Contraseña",
"Common.Views.OpenDialog.txtPreview": "Vista previa",
"Common.Views.OpenDialog.txtProtected": "Una vez que se ha introducido la contraseña y abierto el archivo, la contraseña actual al archivo se restablecerá",
@ -266,6 +267,7 @@
"Common.Views.PasswordDialog.txtPassword": "Contraseña",
"Common.Views.PasswordDialog.txtRepeat": "Repita la contraseña",
"Common.Views.PasswordDialog.txtTitle": "Establezca una contraseña",
"Common.Views.PasswordDialog.txtWarning": "Precaución: Si pierde u olvida su contraseña, no podrá recuperarla. Guárdalo en un lugar seguro.",
"Common.Views.PluginDlg.textLoading": "Cargando",
"Common.Views.Plugins.groupCaption": "Extensiones",
"Common.Views.Plugins.strPlugins": "Plugins",
@ -366,6 +368,7 @@
"Common.Views.SignDialog.textChange": "Cambiar",
"Common.Views.SignDialog.textInputName": "Ingresar nombre de quien firma",
"Common.Views.SignDialog.textItalic": "Itálica",
"Common.Views.SignDialog.textNameError": "El nombre del firmante no debe estar vacío.",
"Common.Views.SignDialog.textPurpose": "Propósito al firmar este documento",
"Common.Views.SignDialog.textSelect": "Seleccionar",
"Common.Views.SignDialog.textSelectImage": "Seleccionar Imagen",
@ -1863,6 +1866,7 @@
"DE.Views.LineNumbersDialog.textSection": "Sección actual",
"DE.Views.LineNumbersDialog.textStartAt": "Empezar en",
"DE.Views.LineNumbersDialog.textTitle": "Numeración de Líneas",
"DE.Views.LineNumbersDialog.txtAutoText": "Auto",
"DE.Views.Links.capBtnBookmarks": "Marcador",
"DE.Views.Links.capBtnCaption": "Leyenda",
"DE.Views.Links.capBtnContentsUpdate": "Actualizar",
@ -2216,6 +2220,7 @@
"DE.Views.TableOfContentsSettings.strAlign": "Alinee los números de página a la derecha",
"DE.Views.TableOfContentsSettings.strFullCaption": "Incluir etiqueta y número",
"DE.Views.TableOfContentsSettings.strLinks": "Formatear tabla de ilustraciones como enlaces",
"DE.Views.TableOfContentsSettings.strLinksOF": "Formatear tabla de ilustraciones como enlaces",
"DE.Views.TableOfContentsSettings.strShowPages": "Mostrar números de página",
"DE.Views.TableOfContentsSettings.textBuildTable": "Crear tabla de contenidos desde",
"DE.Views.TableOfContentsSettings.textBuildTableOF": "Generar tabla de ilustraciones a partir de:",

View file

@ -173,12 +173,14 @@
"Common.Views.OpenDialog.closeButtonText": "Sulje tiedosto",
"Common.Views.OpenDialog.txtEncoding": "Koodaus",
"Common.Views.OpenDialog.txtIncorrectPwd": "Väärä salasana.",
"Common.Views.OpenDialog.txtOpenFile": "Kirjoita tiedoston avauksen salasana",
"Common.Views.OpenDialog.txtPassword": "Salasana",
"Common.Views.OpenDialog.txtPreview": "Esikatselu",
"Common.Views.OpenDialog.txtTitle": "Valitse %1 vaihtoehtoa",
"Common.Views.OpenDialog.txtTitleProtected": "Suojattu tiedosto",
"Common.Views.PasswordDialog.txtPassword": "Salasana",
"Common.Views.PasswordDialog.txtTitle": "Aseta salasana",
"Common.Views.PasswordDialog.txtWarning": "Varoitus: Jos kadotat tai unohdat salasanan, sitä ei voi palauttaa. Säilytä sitä turvallisessa paikassa.",
"Common.Views.PluginDlg.textLoading": "Ladataan",
"Common.Views.Plugins.groupCaption": "Laajennukset",
"Common.Views.Plugins.strPlugins": "Lisätoiminnot",

View file

@ -256,6 +256,7 @@
"Common.Views.OpenDialog.closeButtonText": "Fermer le fichier",
"Common.Views.OpenDialog.txtEncoding": "Codage ",
"Common.Views.OpenDialog.txtIncorrectPwd": "Le mot de passe est incorrect.",
"Common.Views.OpenDialog.txtOpenFile": "Entrer le mot de passe pour ouvrir le fichier",
"Common.Views.OpenDialog.txtPassword": "Mot de passe",
"Common.Views.OpenDialog.txtPreview": "Aperçu",
"Common.Views.OpenDialog.txtProtected": "Une fois le mot de passe saisi et le fichier ouvert, le mot de passe actuel de fichier sera réinitialisé.",
@ -266,6 +267,7 @@
"Common.Views.PasswordDialog.txtPassword": "Mot de passe",
"Common.Views.PasswordDialog.txtRepeat": "Confirmer le mot de passe",
"Common.Views.PasswordDialog.txtTitle": "Définir un mot de passe",
"Common.Views.PasswordDialog.txtWarning": "Attention : si vous oubliez ou perdez votre mot de passe, il sera impossible de le récupérer. Conservez-le en lieu sûr.",
"Common.Views.PluginDlg.textLoading": "Chargement",
"Common.Views.Plugins.groupCaption": "Modules complémentaires",
"Common.Views.Plugins.strPlugins": "Plug-ins",
@ -366,6 +368,7 @@
"Common.Views.SignDialog.textChange": "Modifier",
"Common.Views.SignDialog.textInputName": "Nom du signataire d'entrée",
"Common.Views.SignDialog.textItalic": "Italique",
"Common.Views.SignDialog.textNameError": "Veuillez indiquer le nom du signataire.",
"Common.Views.SignDialog.textPurpose": "But de la signature du document",
"Common.Views.SignDialog.textSelect": "Sélectionner",
"Common.Views.SignDialog.textSelectImage": "Sélectionner une image",
@ -1863,6 +1866,7 @@
"DE.Views.LineNumbersDialog.textSection": "Section active",
"DE.Views.LineNumbersDialog.textStartAt": "Commencer par",
"DE.Views.LineNumbersDialog.textTitle": "Numéros des lignes",
"DE.Views.LineNumbersDialog.txtAutoText": "Auto",
"DE.Views.Links.capBtnBookmarks": "Signet",
"DE.Views.Links.capBtnCaption": "Légende",
"DE.Views.Links.capBtnContentsUpdate": "Actualiser",
@ -2216,6 +2220,7 @@
"DE.Views.TableOfContentsSettings.strAlign": "Aligner les numéros de page à droite",
"DE.Views.TableOfContentsSettings.strFullCaption": "Inclure l'étiquette et le numéro",
"DE.Views.TableOfContentsSettings.strLinks": "Mettre la table des matières sous forme de liens",
"DE.Views.TableOfContentsSettings.strLinksOF": "Mettre la table des figures sous forme de liens",
"DE.Views.TableOfContentsSettings.strShowPages": "Afficher les numéros de page",
"DE.Views.TableOfContentsSettings.textBuildTable": "Construire la table des matières à partir de",
"DE.Views.TableOfContentsSettings.textBuildTableOF": "Construire un table des figures à partir de",

View file

@ -254,6 +254,7 @@
"Common.Views.OpenDialog.closeButtonText": "Fájl bezárása",
"Common.Views.OpenDialog.txtEncoding": "Kódol",
"Common.Views.OpenDialog.txtIncorrectPwd": "Hibás jelszó.",
"Common.Views.OpenDialog.txtOpenFile": "Írja be a megnyitáshoz szükséges jelszót",
"Common.Views.OpenDialog.txtPassword": "Jelszó",
"Common.Views.OpenDialog.txtPreview": "Előnézet",
"Common.Views.OpenDialog.txtProtected": "Miután megadta a jelszót és megnyitotta a fájlt, az aktuális jelszó visszaáll.",
@ -264,6 +265,7 @@
"Common.Views.PasswordDialog.txtPassword": "Jelszó",
"Common.Views.PasswordDialog.txtRepeat": "Jelszó ismétlése",
"Common.Views.PasswordDialog.txtTitle": "Jelszó beállítása",
"Common.Views.PasswordDialog.txtWarning": "Figyelem: ha elveszti vagy elfelejti a jelszót, annak visszaállítására nincs mód. Tárolja biztonságos helyen.",
"Common.Views.PluginDlg.textLoading": "Betöltés",
"Common.Views.Plugins.groupCaption": "Kiegészítők",
"Common.Views.Plugins.strPlugins": "Kiegészítők",

View file

@ -141,7 +141,9 @@
"Common.Views.InsertTableDialog.txtRows": "Jumlah Baris",
"Common.Views.InsertTableDialog.txtTitle": "Ukuran Tabel",
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
"Common.Views.OpenDialog.txtOpenFile": "Masukkan kata sandi untuk buka file",
"Common.Views.OpenDialog.txtTitle": "Choose %1 options",
"Common.Views.PasswordDialog.txtWarning": "Perhatian: Tidak bisa dipulihkan jika Anda kehilangan atau lupa kata sandi. Simpan di tempat yang aman.",
"Common.Views.ReviewChanges.txtAccept": "Accept",
"Common.Views.ReviewChanges.txtAcceptAll": "Accept All Changes",
"Common.Views.ReviewChanges.txtAcceptCurrent": "Accept Current Changes",

View file

@ -245,6 +245,7 @@
"Common.Views.OpenDialog.closeButtonText": "Chiudi File",
"Common.Views.OpenDialog.txtEncoding": "Codifica",
"Common.Views.OpenDialog.txtIncorrectPwd": "Password errata",
"Common.Views.OpenDialog.txtOpenFile": "Immettere la password per aprire il file",
"Common.Views.OpenDialog.txtPassword": "Password",
"Common.Views.OpenDialog.txtPreview": "Anteprima",
"Common.Views.OpenDialog.txtProtected": "Una volta inserita la password e aperto il file, verrà ripristinata la password corrente sul file.",
@ -255,6 +256,7 @@
"Common.Views.PasswordDialog.txtPassword": "Password",
"Common.Views.PasswordDialog.txtRepeat": "Ripeti password",
"Common.Views.PasswordDialog.txtTitle": "Imposta password",
"Common.Views.PasswordDialog.txtWarning": "Importante: una volta persa o dimenticata, la password non potrà più essere recuperata. Conservalo in un luogo sicuro.",
"Common.Views.PluginDlg.textLoading": "Caricamento",
"Common.Views.Plugins.groupCaption": "Plugin",
"Common.Views.Plugins.strPlugins": "Plugin",
@ -355,6 +357,7 @@
"Common.Views.SignDialog.textChange": "Cambia",
"Common.Views.SignDialog.textInputName": "Inserisci nome firmatario",
"Common.Views.SignDialog.textItalic": "Corsivo",
"Common.Views.SignDialog.textNameError": "Il nome firmatario non può essere vuoto.",
"Common.Views.SignDialog.textPurpose": "Motivo della firma del documento",
"Common.Views.SignDialog.textSelect": "Seleziona",
"Common.Views.SignDialog.textSelectImage": "Seleziona Immagine",
@ -1824,6 +1827,7 @@
"DE.Views.LineNumbersDialog.textRestartEachSection": "Ricomincia a ogni sezione",
"DE.Views.LineNumbersDialog.textSection": "Sezione attiva",
"DE.Views.LineNumbersDialog.textStartAt": "Inizia da",
"DE.Views.LineNumbersDialog.txtAutoText": "Auto",
"DE.Views.Links.capBtnBookmarks": "Segnalibro",
"DE.Views.Links.capBtnCaption": "Didascalia",
"DE.Views.Links.capBtnContentsUpdate": "Aggiorna",
@ -2168,6 +2172,7 @@
"DE.Views.TableOfContentsSettings.strAlign": "Numeri di pagina allineati a destra",
"DE.Views.TableOfContentsSettings.strFullCaption": "Includi etichetta e numero",
"DE.Views.TableOfContentsSettings.strLinks": "Formato Sommario come collegamenti",
"DE.Views.TableOfContentsSettings.strLinksOF": "Formato l'indice delle figure come collegamenti",
"DE.Views.TableOfContentsSettings.strShowPages": "Mostra numeri di pagina",
"DE.Views.TableOfContentsSettings.textBuildTable": "Crea Sommario da",
"DE.Views.TableOfContentsSettings.textBuildTableOF": "Costruisci l'Indice delle figure",

View file

@ -254,6 +254,7 @@
"Common.Views.OpenDialog.closeButtonText": "ファイルを閉じる",
"Common.Views.OpenDialog.txtEncoding": "エンコード",
"Common.Views.OpenDialog.txtIncorrectPwd": "パスワードが正しくありません。",
"Common.Views.OpenDialog.txtOpenFile": "ファイルを開くためのパスワードを入力する",
"Common.Views.OpenDialog.txtPassword": "パスワード",
"Common.Views.OpenDialog.txtPreview": "下見",
"Common.Views.OpenDialog.txtProtected": "パスワードを入力してファイルを開くと、ファイルの既存のパスワードがリセットされます。",
@ -264,6 +265,7 @@
"Common.Views.PasswordDialog.txtPassword": "パスワード",
"Common.Views.PasswordDialog.txtRepeat": "パスワードを再入力",
"Common.Views.PasswordDialog.txtTitle": "パスワードの設定",
"Common.Views.PasswordDialog.txtWarning": "注意: パスワードを忘れると、元に戻せません。",
"Common.Views.PluginDlg.textLoading": "読み込み中",
"Common.Views.Plugins.groupCaption": "プラグイン",
"Common.Views.Plugins.strPlugins": "プラグイン",
@ -364,6 +366,7 @@
"Common.Views.SignDialog.textChange": "変更する",
"Common.Views.SignDialog.textInputName": "署名者の名前を入力",
"Common.Views.SignDialog.textItalic": "斜体",
"Common.Views.SignDialog.textNameError": "署名者の名前を空にしておくことはできません。",
"Common.Views.SignDialog.textPurpose": "この文書にサインする目的",
"Common.Views.SignDialog.textSelect": "選択",
"Common.Views.SignDialog.textSelectImage": "画像を選択する",

View file

@ -174,6 +174,7 @@
"Common.Views.OpenDialog.closeButtonText": "파일 닫기",
"Common.Views.OpenDialog.txtEncoding": "인코딩",
"Common.Views.OpenDialog.txtIncorrectPwd": "비밀번호가 맞지 않음",
"Common.Views.OpenDialog.txtOpenFile": "파일을 열려면 암호를 입력하십시오.",
"Common.Views.OpenDialog.txtPassword": "비밀번호",
"Common.Views.OpenDialog.txtPreview": "미리보기",
"Common.Views.OpenDialog.txtTitle": "% 1 옵션 선택",
@ -183,6 +184,7 @@
"Common.Views.PasswordDialog.txtPassword": "암호",
"Common.Views.PasswordDialog.txtRepeat": "비밀번호 반복",
"Common.Views.PasswordDialog.txtTitle": "비밀번호 설정",
"Common.Views.PasswordDialog.txtWarning": "주의: 암호를 잊으면 복구할 수 없습니다. 암호는 대/소문자를 구분합니다. 이 코드를 안전한 곳에 보관하세요.",
"Common.Views.PluginDlg.textLoading": "로드 중",
"Common.Views.Plugins.groupCaption": "플러그인",
"Common.Views.Plugins.strPlugins": "플러그인",

View file

@ -256,6 +256,7 @@
"Common.Views.OpenDialog.closeButtonText": "ປິດຟາຍ",
"Common.Views.OpenDialog.txtEncoding": "ການເຂົ້າລະຫັດ",
"Common.Views.OpenDialog.txtIncorrectPwd": "ລະຫັດບໍ່ຖືກຕ້ອງ",
"Common.Views.OpenDialog.txtOpenFile": "ລະຫັດ",
"Common.Views.OpenDialog.txtPassword": "ລະຫັດ",
"Common.Views.OpenDialog.txtPreview": "ເບິ່ງຕົວຢ່າງ",
"Common.Views.OpenDialog.txtProtected": "ເມື່ອທ່ານໃສ່ລະຫັດຜ່ານເປີດເອກະສານ, ລະຫັດຜ່ານໃນປະຈຸບັນຈະຖືກຕັ້ງຄ່າ ໃໝ່.",

View file

@ -171,6 +171,7 @@
"Common.Views.OpenDialog.closeButtonText": "Aizvērt failu",
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
"Common.Views.OpenDialog.txtIncorrectPwd": "Parole nav pareiza.",
"Common.Views.OpenDialog.txtOpenFile": "Ievadiet paroli, lai atvērtu failu",
"Common.Views.OpenDialog.txtPassword": "Parole",
"Common.Views.OpenDialog.txtPreview": "Priekšskatījums",
"Common.Views.OpenDialog.txtTitle": "Choose %1 options",
@ -180,6 +181,7 @@
"Common.Views.PasswordDialog.txtPassword": "Parole",
"Common.Views.PasswordDialog.txtRepeat": "Atkārtot paroli",
"Common.Views.PasswordDialog.txtTitle": "Uzstādīt paroli",
"Common.Views.PasswordDialog.txtWarning": "Uzmanību! Pazaudētu vai aizmirstu paroli nevar atgūt. Glabājiet drošā vietā.",
"Common.Views.PluginDlg.textLoading": "Ielādē",
"Common.Views.Plugins.groupCaption": "Spraudņi",
"Common.Views.Plugins.strPlugins": "Spraudņi",

View file

@ -68,8 +68,10 @@
"Common.Views.History.textCloseHistory": "Lukk loggen",
"Common.Views.History.textHide": "Lukk",
"Common.Views.OpenDialog.closeButtonText": "Lukk filen",
"Common.Views.OpenDialog.txtOpenFile": "Skriv inn passordet for å opne fila",
"Common.Views.OpenDialog.txtTitle": "Velg %1 alternativer",
"Common.Views.PasswordDialog.txtIncorrectPwd": "Bekreftet passord er ikke identisk",
"Common.Views.PasswordDialog.txtWarning": "Åtvaring! Dersom du mister eller gløymer passordet, kan det ikkje gjenopprettast. Oppbevare han på ein trygg stad.",
"Common.Views.Protection.hintPwd": "Endre eller slett passord",
"Common.Views.Protection.hintSignature": "Legg til digital signatur eller signaturlinje",
"Common.Views.Protection.txtAddPwd": "Angi passord",

View file

@ -256,6 +256,7 @@
"Common.Views.OpenDialog.closeButtonText": "Bestand sluiten",
"Common.Views.OpenDialog.txtEncoding": "Versleuteling",
"Common.Views.OpenDialog.txtIncorrectPwd": "Wachtwoord is niet juist",
"Common.Views.OpenDialog.txtOpenFile": "Voer een wachtwoord in om dit bestand te openen",
"Common.Views.OpenDialog.txtPassword": "Wachtwoord",
"Common.Views.OpenDialog.txtPreview": "Voorbeeld",
"Common.Views.OpenDialog.txtProtected": "Nadat u het wachtwoord heeft ingevoerd en het bestand heeft geopend, wordt het huidige wachtwoord voor het bestand gereset.",
@ -266,6 +267,7 @@
"Common.Views.PasswordDialog.txtPassword": "Wachtwoord",
"Common.Views.PasswordDialog.txtRepeat": "Herhaal wachtwoord",
"Common.Views.PasswordDialog.txtTitle": "Wachtwoord instellen",
"Common.Views.PasswordDialog.txtWarning": "Waarschuwing: Als u het wachtwoord kwijtraakt of vergeet, kan dit niet meer worden hersteld. Bewaar deze op een veilige plaats.",
"Common.Views.PluginDlg.textLoading": "Laden",
"Common.Views.Plugins.groupCaption": "Plug-ins",
"Common.Views.Plugins.strPlugins": "Plug-ins",

View file

@ -183,11 +183,13 @@
"Common.Views.OpenDialog.closeButtonText": "Zamknij plik",
"Common.Views.OpenDialog.txtEncoding": "Kodowanie",
"Common.Views.OpenDialog.txtIncorrectPwd": "Hasło jest nieprawidłowe.",
"Common.Views.OpenDialog.txtOpenFile": "Wprowadź hasło, aby otworzyć plik",
"Common.Views.OpenDialog.txtPassword": "Hasło",
"Common.Views.OpenDialog.txtTitle": "Wybierz %1 opcji",
"Common.Views.OpenDialog.txtTitleProtected": "Plik chroniony",
"Common.Views.PasswordDialog.txtDescription": "Ustaw hasło aby zabezpieczyć ten dokument",
"Common.Views.PasswordDialog.txtIncorrectPwd": "Hasła nie są takie same",
"Common.Views.PasswordDialog.txtWarning": "Uwaga: Jeśli zapomnisz lub zgubisz hasło, nie będzie możliwości odzyskania go. Zapisz go i nikomu nie udostępniaj.",
"Common.Views.PluginDlg.textLoading": "Ładowanie",
"Common.Views.Plugins.groupCaption": "Wtyczki",
"Common.Views.Plugins.strPlugins": "Wtyczki",

View file

@ -272,6 +272,7 @@
"Common.Views.OpenDialog.closeButtonText": "Fechar Arquivo",
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
"Common.Views.OpenDialog.txtIncorrectPwd": "Senha incorreta.",
"Common.Views.OpenDialog.txtOpenFile": "Inserir a Senha para Abrir o Arquivo",
"Common.Views.OpenDialog.txtPassword": "Senha",
"Common.Views.OpenDialog.txtPreview": "Visualizar",
"Common.Views.OpenDialog.txtProtected": "Ao abrir o arquivo com sua senha, a senha atual será redefinida.",
@ -282,6 +283,7 @@
"Common.Views.PasswordDialog.txtPassword": "Senha",
"Common.Views.PasswordDialog.txtRepeat": "Repetir a senha",
"Common.Views.PasswordDialog.txtTitle": "Definir senha",
"Common.Views.PasswordDialog.txtWarning": "Cuidado: se você perder ou esquecer a senha, não será possível recuperá-la. Guarde-o em local seguro.",
"Common.Views.PluginDlg.textLoading": "Carregamento",
"Common.Views.Plugins.groupCaption": "Plugins",
"Common.Views.Plugins.strPlugins": "Plugins",
@ -382,6 +384,7 @@
"Common.Views.SignDialog.textChange": "Alterar",
"Common.Views.SignDialog.textInputName": "Nome do signatário de entrada",
"Common.Views.SignDialog.textItalic": "Itálico",
"Common.Views.SignDialog.textNameError": "Nome de assinante não deve estar vazio.",
"Common.Views.SignDialog.textPurpose": "Objetivo para assinar o documento",
"Common.Views.SignDialog.textSelect": "Selecionar",
"Common.Views.SignDialog.textSelectImage": "Selecionar Imagem",

View file

@ -256,6 +256,7 @@
"Common.Views.OpenDialog.closeButtonText": "Închide fișierul",
"Common.Views.OpenDialog.txtEncoding": "Codificare",
"Common.Views.OpenDialog.txtIncorrectPwd": "Parolă incorectă",
"Common.Views.OpenDialog.txtOpenFile": "Introduceți parola pentru deschidere fișier",
"Common.Views.OpenDialog.txtPassword": "Parola",
"Common.Views.OpenDialog.txtPreview": "Previzualizare",
"Common.Views.OpenDialog.txtProtected": "Parola curentă la fișierul va fi resetată, de îndată ce este introdusă și fișierul este deschis.",
@ -266,6 +267,7 @@
"Common.Views.PasswordDialog.txtPassword": "Parola",
"Common.Views.PasswordDialog.txtRepeat": "Reintroduceți parola",
"Common.Views.PasswordDialog.txtTitle": "Setare parolă",
"Common.Views.PasswordDialog.txtWarning": "Atenție: Dacă pierdeți sau uitați parola, ea nu poate fi recuperată. Să îl păstrați într-un loc sigur.",
"Common.Views.PluginDlg.textLoading": "Încărcare",
"Common.Views.Plugins.groupCaption": "Plugin-uri",
"Common.Views.Plugins.strPlugins": "Plugin-uri",
@ -1863,6 +1865,7 @@
"DE.Views.LineNumbersDialog.textSection": "Secțiunea curentă",
"DE.Views.LineNumbersDialog.textStartAt": "Pornire de la",
"DE.Views.LineNumbersDialog.textTitle": "Numere de linie",
"DE.Views.LineNumbersDialog.txtAutoText": "Auto",
"DE.Views.Links.capBtnBookmarks": "Marcaj",
"DE.Views.Links.capBtnCaption": "Legenda",
"DE.Views.Links.capBtnContentsUpdate": "Actualizare",
@ -2216,6 +2219,7 @@
"DE.Views.TableOfContentsSettings.strAlign": "Alinierea numărul de pagină la dreapta",
"DE.Views.TableOfContentsSettings.strFullCaption": "Cu etichetă și număr",
"DE.Views.TableOfContentsSettings.strLinks": "Formatare cuprins utilizând linkuri",
"DE.Views.TableOfContentsSettings.strLinksOF": "Formatare tabel de figuri ca",
"DE.Views.TableOfContentsSettings.strShowPages": "Afișare număr de pagină",
"DE.Views.TableOfContentsSettings.textBuildTable": "Construire cuprins din",
"DE.Views.TableOfContentsSettings.textBuildTableOF": "Construire tabel de figuri din ",

View file

@ -293,6 +293,7 @@
"Common.Views.OpenDialog.closeButtonText": "Закрыть файл",
"Common.Views.OpenDialog.txtEncoding": "Кодировка",
"Common.Views.OpenDialog.txtIncorrectPwd": "Указан неверный пароль.",
"Common.Views.OpenDialog.txtOpenFile": "Введите пароль для открытия файла",
"Common.Views.OpenDialog.txtPassword": "Пароль",
"Common.Views.OpenDialog.txtPreview": "Просмотр",
"Common.Views.OpenDialog.txtProtected": "Как только вы введете пароль и откроете файл, текущий пароль к файлу будет сброшен.",
@ -303,6 +304,7 @@
"Common.Views.PasswordDialog.txtPassword": "Пароль",
"Common.Views.PasswordDialog.txtRepeat": "Повторить пароль",
"Common.Views.PasswordDialog.txtTitle": "Установка пароля",
"Common.Views.PasswordDialog.txtWarning": "Внимание: Если пароль забыт или утерян, его нельзя восстановить. Храните его в надежном месте.",
"Common.Views.PluginDlg.textLoading": "Загрузка",
"Common.Views.Plugins.groupCaption": "Плагины",
"Common.Views.Plugins.strPlugins": "Плагины",
@ -403,6 +405,7 @@
"Common.Views.SignDialog.textChange": "Изменить",
"Common.Views.SignDialog.textInputName": "Введите имя подписывающего",
"Common.Views.SignDialog.textItalic": "Курсив",
"Common.Views.SignDialog.textNameError": "Имя подписывающего не должно быть пустым.",
"Common.Views.SignDialog.textPurpose": "Цель подписания документа",
"Common.Views.SignDialog.textSelect": "Выбрать",
"Common.Views.SignDialog.textSelectImage": "Выбрать изображение",
@ -1921,6 +1924,7 @@
"DE.Views.LineNumbersDialog.textSection": "К текущему разделу",
"DE.Views.LineNumbersDialog.textStartAt": "Начать с",
"DE.Views.LineNumbersDialog.textTitle": "Нумерация строк",
"DE.Views.LineNumbersDialog.txtAutoText": "Авто",
"DE.Views.Links.capBtnBookmarks": "Закладка",
"DE.Views.Links.capBtnCaption": "Название",
"DE.Views.Links.capBtnContentsUpdate": "Обновить",
@ -2281,6 +2285,7 @@
"DE.Views.TableOfContentsSettings.strAlign": "Номера страниц по правому краю",
"DE.Views.TableOfContentsSettings.strFullCaption": "Полное название",
"DE.Views.TableOfContentsSettings.strLinks": "Форматировать оглавление как ссылки",
"DE.Views.TableOfContentsSettings.strLinksOF": "Форматировать список иллюстраций как ссылки",
"DE.Views.TableOfContentsSettings.strShowPages": "Показать номера страниц",
"DE.Views.TableOfContentsSettings.textBuildTable": "Собрать оглавление, используя:",
"DE.Views.TableOfContentsSettings.textBuildTableOF": "Собрать список иллюстраций, используя:",

View file

@ -247,6 +247,7 @@
"Common.Views.OpenDialog.closeButtonText": "Zatvoriť súbor",
"Common.Views.OpenDialog.txtEncoding": "Kódovanie",
"Common.Views.OpenDialog.txtIncorrectPwd": "Heslo je nesprávne.",
"Common.Views.OpenDialog.txtOpenFile": "Zadajte heslo na otvorenie súboru",
"Common.Views.OpenDialog.txtPassword": "Heslo",
"Common.Views.OpenDialog.txtPreview": "Náhľad",
"Common.Views.OpenDialog.txtProtected": "Po zadaní hesla a otvorení súboru bude súčasné heslo k súboru resetované.",
@ -256,6 +257,7 @@
"Common.Views.PasswordDialog.txtIncorrectPwd": "Heslá sa nezhodujú",
"Common.Views.PasswordDialog.txtPassword": "Heslo",
"Common.Views.PasswordDialog.txtRepeat": "Zopakujte heslo",
"Common.Views.PasswordDialog.txtWarning": "Upozornenie: Ak stratíte alebo zabudnete heslo, nemožno ho obnoviť. Uschovajte ho na bezpečnom mieste.",
"Common.Views.PluginDlg.textLoading": "Nahrávanie",
"Common.Views.Plugins.groupCaption": "Pluginy",
"Common.Views.Plugins.strPlugins": "Pluginy",

View file

@ -199,6 +199,7 @@
"Common.Views.OpenDialog.closeButtonText": "Zapri datoteko",
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
"Common.Views.OpenDialog.txtIncorrectPwd": "Geslo je napačno",
"Common.Views.OpenDialog.txtOpenFile": "Vnesite geslo za odpiranje datoteke",
"Common.Views.OpenDialog.txtPassword": "Geslo",
"Common.Views.OpenDialog.txtPreview": "Predogled",
"Common.Views.OpenDialog.txtTitle": "Choose %1 options",
@ -207,6 +208,7 @@
"Common.Views.PasswordDialog.txtPassword": "Geslo",
"Common.Views.PasswordDialog.txtRepeat": "Ponovite geslo",
"Common.Views.PasswordDialog.txtTitle": "Nastavi geslo",
"Common.Views.PasswordDialog.txtWarning": "Pozor: Če izgubite geslo ali ga pozabite, ga ne morete več obnoviti. Hranite ga na varnem mestu.",
"Common.Views.PluginDlg.textLoading": "Nalaganje",
"Common.Views.Plugins.groupCaption": "Razširitve",
"Common.Views.Plugins.strPlugins": "Razširitve",

View file

@ -225,6 +225,7 @@
"Common.Views.OpenDialog.closeButtonText": "Stäng fil",
"Common.Views.OpenDialog.txtEncoding": "Teckentabell",
"Common.Views.OpenDialog.txtIncorrectPwd": "Felaktigt lösenord",
"Common.Views.OpenDialog.txtOpenFile": "Skriv in lösenord för att öppna filen",
"Common.Views.OpenDialog.txtPassword": "Lösenord",
"Common.Views.OpenDialog.txtPreview": "Förhandsgranska",
"Common.Views.OpenDialog.txtProtected": "När du har skrivit in lösenordet och öppnat filen, återställs det aktuella lösenordet till filen.",
@ -235,6 +236,7 @@
"Common.Views.PasswordDialog.txtPassword": "Lösenord",
"Common.Views.PasswordDialog.txtRepeat": "Repetera lösenord",
"Common.Views.PasswordDialog.txtTitle": "Ange lösenord",
"Common.Views.PasswordDialog.txtWarning": "Varning! Om du glömmer lösenordet kan det inte återskapas.",
"Common.Views.PluginDlg.textLoading": "Laddar",
"Common.Views.Plugins.groupCaption": "Tillägg",
"Common.Views.Plugins.strPlugins": "Tillägg",

View file

@ -186,10 +186,12 @@
"Common.Views.OpenDialog.closeButtonText": "Dosyayı Kapat",
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
"Common.Views.OpenDialog.txtIncorrectPwd": "Şifre hatalı.",
"Common.Views.OpenDialog.txtOpenFile": "Dosyayı Açmak için Parola Girin",
"Common.Views.OpenDialog.txtPassword": "Şifre",
"Common.Views.OpenDialog.txtTitle": "Choose %1 options",
"Common.Views.OpenDialog.txtTitleProtected": "Korumalı dosya",
"Common.Views.PasswordDialog.txtPassword": "Parola",
"Common.Views.PasswordDialog.txtWarning": "Dikkat: Parolayı kaybeder veya unutursanız, kurtarılamaz.",
"Common.Views.PluginDlg.textLoading": "Yükleniyor",
"Common.Views.Plugins.groupCaption": "Eklentiler",
"Common.Views.Plugins.strPlugins": "Plugin",

View file

@ -181,9 +181,11 @@
"Common.Views.LanguageDialog.labelSelect": "Виберіть мову документа",
"Common.Views.OpenDialog.closeButtonText": "Закрити файл",
"Common.Views.OpenDialog.txtEncoding": "Кодування",
"Common.Views.OpenDialog.txtOpenFile": "Введіть пароль для відкриття файлу",
"Common.Views.OpenDialog.txtPassword": "Пароль",
"Common.Views.OpenDialog.txtTitle": "Виберіть параметри% 1",
"Common.Views.OpenDialog.txtTitleProtected": "Захищений файл",
"Common.Views.PasswordDialog.txtWarning": "Увага! Якщо ви втратили або не можете пригадати пароль, відновити його неможливо. Зберігайте його в надійному місці.",
"Common.Views.PluginDlg.textLoading": "Завантаження",
"Common.Views.Plugins.groupCaption": "Плагіни",
"Common.Views.Plugins.strPlugins": "Плагіни",

View file

@ -172,9 +172,11 @@
"Common.Views.LanguageDialog.labelSelect": "Chọn ngôn ngữ tài liệu",
"Common.Views.OpenDialog.txtEncoding": "Mã hóa",
"Common.Views.OpenDialog.txtIncorrectPwd": "Mật khẩu không đúng.",
"Common.Views.OpenDialog.txtOpenFile": "Nhập mật khẩu để mở tệp",
"Common.Views.OpenDialog.txtPassword": "Mật khẩu",
"Common.Views.OpenDialog.txtTitle": "Chọn %1 lựa chọn",
"Common.Views.OpenDialog.txtTitleProtected": "File được bảo vệ",
"Common.Views.PasswordDialog.txtWarning": "Chú ý: Nếu bạn mất hoặc quên mật khẩu, bạn không thể khôi phục mật khẩu.",
"Common.Views.PluginDlg.textLoading": "Đang tải",
"Common.Views.Plugins.groupCaption": "Plugin",
"Common.Views.Plugins.strPlugins": "Plugin",

View file

@ -249,6 +249,7 @@
"Common.Views.OpenDialog.closeButtonText": "关闭文件",
"Common.Views.OpenDialog.txtEncoding": "编码",
"Common.Views.OpenDialog.txtIncorrectPwd": "密码错误",
"Common.Views.OpenDialog.txtOpenFile": "输入密码来打开文件",
"Common.Views.OpenDialog.txtPassword": "密码",
"Common.Views.OpenDialog.txtPreview": "预览",
"Common.Views.OpenDialog.txtProtected": "在您输入密码和打开文件后,该文件的当前密码将被重置。",
@ -259,6 +260,7 @@
"Common.Views.PasswordDialog.txtPassword": "密码",
"Common.Views.PasswordDialog.txtRepeat": "重复输入密码",
"Common.Views.PasswordDialog.txtTitle": "设置密码",
"Common.Views.PasswordDialog.txtWarning": "警告: 如果丢失或忘记密码,则无法将其恢复。将其保存在安全位置。",
"Common.Views.PluginDlg.textLoading": "载入中",
"Common.Views.Plugins.groupCaption": "插件",
"Common.Views.Plugins.strPlugins": "插件",
@ -359,6 +361,7 @@
"Common.Views.SignDialog.textChange": "修改",
"Common.Views.SignDialog.textInputName": "输入签名者姓名",
"Common.Views.SignDialog.textItalic": "斜体",
"Common.Views.SignDialog.textNameError": "签名者名称不能为空",
"Common.Views.SignDialog.textPurpose": "签署本文档的目的",
"Common.Views.SignDialog.textSelect": "请选择",
"Common.Views.SignDialog.textSelectImage": "选择图像",

View file

@ -169,10 +169,11 @@
"src": "UsageInstructions/InsertContentControls.htm",
"name": "Inhaltssteuerelemente einfügen"
},
{
"src": "UsageInstructions/CreateTableOfContents.htm",
"name": "Inhaltsverzeichnis erstellen"
},
{
"src": "UsageInstructions/CreateTableOfContents.htm",
"name": "Inhaltsverzeichnis erstellen"
},
{"src": "UsageInstructions/AddTableofFigures.htm", "name": "Abbildungsverzeichnis hinzufügen und formatieren" },
{
"src": "UsageInstructions/AlignArrangeObjects.htm",
"name": "Objekte auf einer Seite anordnen und ausrichten"

View file

@ -25,11 +25,13 @@
</div>
<p>Auf dieser Registerkarte können Sie:</p>
<ul>
<li>Ein <a href="../UsageInstructions/CreateTableOfContents.htm" onclick="onhyperlinkclick(this)">Inhaltsverzeichnis</a> erstellen und aktualisieren,</li>
<li><a href="../UsageInstructions/InsertFootnotes.htm" onclick="onhyperlinkclick(this)">Fußnoten</a> einfügen,</li>
<li><a href="../UsageInstructions/AddHyperlinks.htm" onclick="onhyperlinkclick(this)">Verknüpfungen</a> einfügen,</li>
<li>ein <a href="../UsageInstructions/CreateTableOfContents.htm" onclick="onhyperlinkclick(this)">Inhaltsverzeichnis</a> erstellen und aktualisieren,</li>
<li><a href="../UsageInstructions/InsertFootnotes.htm" onclick="onhyperlinkclick(this)">Fußnoten</a> und <a href="../UsageInstructions/InsertEndnotes.htm">Endnoten</a> einfügen,</li>
<li><a href="../UsageInstructions/AddHyperlinks.htm" onclick="onhyperlinkclick(this)">Hyperlinks</a> einfügen,</li>
<li><a href="../UsageInstructions/InsertBookmarks.htm" onclick="onhyperlinkclick(this)">Lesezeichen</a> hinzufügen,</li>
<li><a href="../UsageInstructions/Addcaption.htm" onclick="onhyperlinkclick(this)">Bildbeschriftungen</a> hinzufügen.</li>
<li><a href="../UsageInstructions/Addcaption.htm" onclick="onhyperlinkclick(this)">Bildbeschriftungen</a> hinzufügen,</li>
<li><a href="../UsageInstructions/InsertCrossReference.htm" onclick="onhyperlinkclick(this)">Querverweise</a> einfügen,</li>
<li><a href="../UsageInstructions/AddTableofFigures.htm" onclick="onhyperlinkclick(this)">Abbildungsverzeichnisse</a> erstellen.</li>
</ul>
</div>
</body>

View file

@ -0,0 +1,93 @@
<!DOCTYPE html>
<html>
<head>
<title>Abbildungsverzeichnis hinzufügen und formatieren</title>
<meta charset="utf-8" />
<meta name="description" content="Abbildungsverzeichnis hinzufügen, formatieren und aktualisieren: Mit Objekten und Stilen" />
<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>Abbildungsverzeichnis hinzufügen und formatieren</h1>
<p><b>Abbildungsverzeichnis</b> bietet einen Überblick über Gleichungen, Abbildungen und Tabellen, die einem Dokument hinzugefügt wurden. Ähnlich wie bei einem Inhaltsverzeichnis werden in einem <b>Abbildungsverzeichnis</b> Objekte oder Textüberschriften mit einem bestimmten Stil aufgelistet, sortiert und angeordnet. Dies macht es einfach, sie in Ihrem Dokument zu referenzieren und zwischen Abbildungen zu navigieren. Klicken Sie auf den Link im als Links formatierten <b>Abbildungsverzeichnis</b>, und Sie werden direkt zur Abbildung oder Überschrift weitergeleitet. Alle Tabellen, Gleichungen, Diagramme, Zeichnungen, Schaubilder, Fotos oder anderen Arten von Illustration werden als Abbildungen dargestellt.
<p><img alt="Registerkarte Verweise" src="../images/referencestab.png" /></p>
<p>Um ein <b>Abbildungsverzeichnis</b> hinzuzufügen, öffnen Sie die Registerkarte <b>Verweise</b> und klicken Sie auf das Symbol <b>Abbildungsverzeichnis</b> <img alt="Abbildungsverzeichnus Schaltfläche" src="../images/table_figures_button.png" />, um ein Abbildungsverzeichnis zu erstellen und formatieren. Verwenden Sie die Schaltfläche <b>Aktualisieren</b>, um das Abbildungsverzeichnis jedes Mal zu aktualisieren, wenn Sie Ihrem Dokument eine neue Abbildung hinzufügen.</p>
<h2>Abbildungsverzeichnis erstellen</h2>
<p class="note"><b>Hinweis:</b> Sie können ein Abbildungsverzeichnis entweder mit Beschriftungen oder mit Stilen erstellen. Eine <a href="../UsageInstructions/AddCaption.htm" onclick="onhyperlinkclick(this)">Beschriftung</a> soll jeder Gleichung, jedem Abbildungsverzeichnis hinzugefügt werden, oder ein <a href="../UsageInstructions/FormattingPresets.htm" onclick="onhyperlinkclick(this)">Stil</a> soll auf dem Text angewendet werden, damit der Text korrekt in ein Abbildungsverzeichnis aufgenommen ist.</p>
<ol>
<li>
Wenn Sie Beschriftungen oder Stile hinzugefügt haben, positionieren Sie den Cursor an der Stelle, an der Sie ein <b>Abbildungsverzeichnis</b> einfügen möchten, und wechseln Sie zur Registerkarte <b>Verweise</b>. Klicken Sie auf die Schaltfläche <b>Abbildungsverzeichnis</b>, um das Dialogfeld <b>Abbildungsverzeichnis</b> zu öffnen und eine Liste der Abbildungen zu erstellen.
<p><img alt="Abbildungsverzeichnis - Einstellungen" src="../images/table_figures_settings.png" /></p>
</li>
<li>
Wählen Sie eine Option zum Erstellen eines <b>Abbildungsverzeichnisses</b> aus <b>Beschriftungen</b> oder <b>Stilen</b>.
<ul style="list-style-type:disc">
<li>
Sie können ein Abbildungsverzeichnis basierend auf beschrifteten Objekten erstellen. Aktivieren Sie das Kontrollkästchen <b>Beschriftung</b> und wählen Sie ein beschriftetes Objekt aus der Dropdown-Liste aus:
<ul style="list-style-type:circle">
<li>Kein</li>
<li>Gleichung</li>
<li>Abbildung</li>
<li>
Tabelle
<p><img alt="Abbildungsverzeichnis - Beschriftet" src="../images/table_figures_captioned.png" /></p>
</li>
</ul>
</li>
<li>Sie können ein <b>Abbildungsverzeichnis</b> basierend auf den Stilen erstellen, die zur Textformatierung verwendet sind. Aktivieren Sie das Kontrollkästchen <b>Stil</b> und wählen Sie einen Stil aus der Dropdown-Liste aus. Die Liste der Optionen kann je nach angewendetem Stil variieren:
<ul style="list-style-type:circle">
<li>Überschrift 1</li>
<li>Überschrift 2</li>
<li>Beschriftung</li>
<li>Abbildungsverzeichnis</li>
<li>
Normal
<p><img alt="Abbildungsverzeichnis - Stil" src="../images/table_figures_style.png" /></p>
</li>
</ul>
</li>
</ul>
</li>
</ol>
<h2>Abbildungsverzeichnis formatieren</h2>
<p>Mit den Kontrollkästchenoptionen können Sie ein <b>Abbildungsverzeichnis</b> formatieren. Alle Kontrollkästchen für Formatierung sind standardmäßig aktiviert, da es in den meisten Fällen am vernünftigsten ist. Deaktivieren Sie die Kontrollkästchen, die Sie nicht benötigen.</p>
<ul style="list-style-type:none">
<li><b>Seitenzahlen anzeigen</b>: Um die Seitenzahl anzuzeigen, auf der die Abbildung ist;</li>
<li><b>Seitenzahlen rechtsbündig</b>: Um Seitenzahlen rechts anzuzeigen, wenn <b>Seitenzahlen anzeigen</b> aktiv ist; deaktivieren Sie diese Option, um Seitenzahlen direkt nach dem Titel anzuzeigen;</li>
<li><b>Inhaltsverzeichnis als Links formatieren</b>: Um Hyperlinks dem <b>Abbildungsverzeichnis</b> hinzuzufügen;</li>
<li><b>Bezeichnung und Nummer einschließen</b>: Um dem Abbildungsverzeichnis eine Bezeichnung und eine Nummer hinzuzufügen.</li>
</ul>
<ul style="list-style-type:disc">
<li>Wählen Sie den Füllzeichen-Stil aus der Dropdown-Liste, um Titel mit Seitenzahlen für eine bessere Visualisierung zu verbinden.</li>
<li>
Passen Sie die Textstile des Abbildungsverzeichnisses an, indem Sie einen der verfügbaren Stile aus der Dropdown-Liste auswählen:
<ul style="list-style-type:circle">
<li><b>Aktuell</b> - zeigt den zuvor ausgewählten Stil an.</li>
<li><b>Einfach</b> - hebt Text als fett hervor.</li>
<li><b>Online</b> - hebt Text als Hyperlink hervor und ordnet ihn an.</li>
<li><b>Klassisch</b> - macht alle Buchstaben als Großbuchstaben.</li>
<li><b>Elegant</b> - hebt Text als kursiv hervor.</li>
<li><b>Zentriert</b> - zentriert den Text und zeigt kein Füllzeichen an.</li>
<li><b>Formell</b> - zeigt Text in 11 pt Arial an, um eine formellere Darstellung zu haben.</li>
</ul>
</li>
<li>Das Vorschaufenster zeigt an, wie das Abbildungsverzeichnis im Dokument oder beim Drucken angezeigt wird.</li>
</ul>
<h2>Abbildungsverzeichnis aktualisieren</h2>
<p>Aktualisieren Sie ein <b>Abbildungsverzeichnis</b> jedes Mal, wenn Sie Ihrem Dokument eine neue Gleichung, Abbildung oder Tabelle hinzufügen. Die Schaltfläche <b>Aktualisieren</b> wird aktiv, wenn Sie auf das Abbildungsverzeichnis klicken oder es auswählen. Klicken Sie auf der Registerkarte <b>Verweise</b> in der oberen Symbolleiste auf die Schaltfläche <b>Aktualisieren</b> <img alt="Aktualisieren" src="../images/refresh_button.png"> und wählen Sie die gewünschte Option aus dem Menü:</p>
<img alt="Aktualisieren - Pop-Up" src="../images/refresh_table-figures_popup.png" />
<ul style="list-style-type:disc">
<li><b>Nur Seitenzahlen aktualisieren</b> - um Seitenzahlen zu aktualisieren, ohne Änderungen an den Überschriften vorzunehmen.</li>
<li><b>Gesamtes Verzeichnis aktualisieren</b> - um alle geänderten Überschriften und Seitenzahlen zu aktualisieren.</li>
</ul>
<p>Klicken Sie auf <b>OK</b></p>
<p>oder</p>
<p>Klicken Sie mit der rechten Maustaste auf das <b>Abbildungsverzeichnis</b> in Ihrem Dokument, um das Kontextmenü zu öffnen, und wählen Sie die Option <b>Feld aktualisieren</b>, um das <b>Abbildungsverzeichnis</b> zu aktualisieren.</p>
</div>
</body>
</html>

View file

@ -14,8 +14,10 @@
<input id="search" class="searchBar" placeholder="Suche" type="text" onkeypress="doSearch(event)">
</div>
<h1>Inhaltssteuerelemente einfügen</h1>
<p>Mithilfe von Inhaltssteuerelementen können Sie ein Formular mit Eingabefeldern erstellen, die von anderen Benutzern ausgefüllt werden können; oder Sie können Teile des Dokuments davor schützen, bearbeitet oder gelöscht zu werden. Inhaltssteuerelemente sind Objekte die Text enthalten, der formatiert werden kann. Inhaltssteuerelemente für einfachen Text können nur einen Absatz enthalten, während Steuerelemente für Rich-Text-Inhalte mehrere Absätze, Listen und Objekte (Bilder, Formen, Tabellen usw.) enthalten können.</p>
<h3>Inhaltssteuerelemente hinzufügen</h3>
<p>Inhaltssteuerelemente sind Objekte, die verschiedene Arten von Inhalten haben, z.B. Text, Objekte usw. Abhängig vom ausgewählten Inhaltssteuerelementtyp können Sie mithilfe des verfügbaren Arrays für Inhaltssteuerelemente an Dokumenten zusammenarbeiten oder die Inhaltssteuerelemente sperren, die nicht weiter bearbeitet werden sollen, oder diejenigen entsperren, die Eingaben Ihrer Kollegen erfordern. Inhaltssteuerelemente werden normalerweise verwendet, um das Sammeln und Verarbeiten von Daten zu erleichtern oder um die erforderlichen Grenzen für Dokumente festzulegen, die von anderen Benutzern bearbeitet wurden.</p>
<p>Mit ONLYOFFICE Dokumenteneditor können Sie <b>klassische</b> Inhaltssteuerelemente einfügen, d.h. diese Elemente sind vollständig <b>abwärtskompatibel</b> mit Textverarbeitungsanlagen von Drittanbietern wie Microsoft Word.</p>
<p>ONLYOFFICE Dokumenteneditor unterstützt die folgenden klassischen Inhaltssteuerelemente: <em>Einfacher Text</em>, <em>Rich-Text</em>, <em>Bild</em>, <em>Kombinationsfeld</em>, <em>Dropdownliste</em>, <em>Datum und Kontrollkästchen</em>.</p>
<h3>Inhaltssteuerelemente hinzufügen</h3>
<p>Neues <b>Inhaltssteuerelement für einfachen Text</b> erstellen:</p>
<ol>
<li>Positionieren Sie den Einfügepunkt innerhalb einer Textzeile, in die das Steuerelement eingefügt werden soll<br />oder wählen Sie eine Textpassage aus, die Sie zum Steuerungsinhalt machen wollen.</li>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 416 B

After

Width:  |  Height:  |  Size: 273 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 97 B

After

Width:  |  Height:  |  Size: 209 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 124 B

After

Width:  |  Height:  |  Size: 178 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 275 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 141 B

After

Width:  |  Height:  |  Size: 208 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 180 B

After

Width:  |  Height:  |  Size: 106 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 178 B

After

Width:  |  Height:  |  Size: 100 B

File diff suppressed because one or more lines are too long

View file

@ -5,7 +5,6 @@
{"src": "ProgramInterface/InsertTab.htm", "name": "Insert tab"},
{"src": "ProgramInterface/LayoutTab.htm", "name": "Layout tab" },
{ "src": "ProgramInterface/ReferencesTab.htm", "name": "References tab" },
{"src": "ProgramInterface/FormsTab.htm", "name": "Forms tab"},
{"src": "ProgramInterface/ReviewTab.htm", "name": "Collaboration tab"},
{"src": "ProgramInterface/PluginsTab.htm", "name": "Plugins tab"},
{"src": "UsageInstructions/OpenCreateNew.htm", "name": "Create a new document or open an existing one", "headername": "Basic operations"},
@ -52,7 +51,6 @@
{"src": "UsageInstructions/InsertContentControls.htm", "name": "Insert content controls" },
{ "src": "UsageInstructions/CreateTableOfContents.htm", "name": "Create table of contents" },
{"src": "UsageInstructions/AddTableofFigures.htm", "name": "Add and Format a Table of Figures" },
{ "src": "UsageInstructions/CreateFillableForms.htm", "name": "Create fillable forms", "headername": "Fillable forms" },
{"src": "UsageInstructions/UseMailMerge.htm", "name": "Use mail merge", "headername": "Mail Merge"},
{ "src": "UsageInstructions/InsertEquation.htm", "name": "Insert equations", "headername": "Math equations" },
{"src": "HelpfulHints/CollaborativeEditing.htm", "name": "Collaborative document editing", "headername": "Document co-editing"},

View file

@ -51,6 +51,19 @@
<li>Choose <b>As Windows</b> if you like the way fonts are usually displayed on Windows, i.e. using Windows font hinting.</li>
<li>Choose <b>As OS X</b> if you like the way fonts are usually displayed on a Mac, i.e. without any font hinting at all.</li>
<li>Choose <b>Native</b> if you want your text to be displayed with the hinting embedded into font files.</li>
<li>
<b>Default cache mode</b> - used to select the cache mode for the font characters. Its not recommended to switch it without any reason. It can be helpful in some cases only, for example, when an issue in the Google Chrome browser with the enabled hardware acceleration occurs.
<p>The Document Editor has two cache modes:</p>
<ol>
<li>In the <b>first cache mode</b>, each letter is cached as a separate picture.</li>
<li>In the <b>second cache mode</b>, a picture of a certain size is selected where letters are placed dynamically and a mechanism of allocating/removing memory in this picture is also implemented. If there is not enough memory, a second picture is created, etc.</li>
</ol>
<p>The <b>Default cache mode</b> setting applies two above mentioned cache modes separately for different browsers:</p>
<ul>
<li>When the <b>Default cache mode</b> setting is enabled, Internet Explorer (v. 9, 10, 11) uses the <b>second cache mode</b>, other browsers use the <b>first cache mode</b>.</li>
<li>When the <b>Default cache mode</b> setting is disabled, Internet Explorer (v. 9, 10, 11) uses the <b>first cache mode</b>, other browsers use the <b>second cache mode</b>.</li>
</ul>
</li>
</ul>
</li>
<li><b>Unit of Measurement</b> is used to specify what units are used on the rulers and in properties windows for measuring elements parameters such as width, height, spacing, margins etc. You can select the <b>Centimeter</b>, <b>Point</b>, or <b>Inch</b> option.</li>

View file

@ -243,7 +243,7 @@
</tr>
<tr>
<td>Navigate between controls in modal dialogues</td>
<td><kbd>Tab</kbd>/<kbd>Shift</kbd>+<kbd>Tab</kbd></td>
<td><kbd>Tab</kbd>/<kbd>Shift</kbd>+<kbd>Tab</kbd></td>
<td><kbd>↹ Tab</kbd>/<kbd>⇧ Shift</kbd>+<kbd>↹ Tab</kbd></td>
<td>Navigate between controls to give focus to the next or previous control in modal dialogues.</td>
</tr>

View file

@ -37,8 +37,8 @@
<p>The <b>Zoom</b> buttons are situated in the right lower corner and are used to zoom in and out the current document.
To change the currently selected zoom value that is displayed in percent, click it and select one of the available zoom options from the list
or use the <b>Zoom in</b> <img alt="Zoom in button" src="../images/zoomin.png" /> or <b>Zoom out</b> <img alt="Zoom out button" src="../images/zoomout.png" /> buttons.
Click the <b>Fit width</b> <img alt="Fit width button" src="../images/fitwidth.png" /> icon to fit the document page width to the visible part of the working area.
To fit the whole document page to the visible part of the working area, click the <b>Fit page</b> <img alt="Fit page button" src="../images/fitpage.png" /> icon.
Click the <b>Fit to width</b> <img alt="Fit to width button" src="../images/fitwidth.png" /> icon to fit the document page width to the visible part of the working area.
To fit the whole document page to the visible part of the working area, click the <b>Fit to page</b> <img alt="Fit to page button" src="../images/fitpage.png" /> icon.
Zoom settings are also available in the <b>View settings</b> <img alt="View settings icon" src="../images/viewsettingsicon.png" /> drop-down list that can be useful if you decide to hide the <b>Status Bar</b>.</p>
<p>The <b>Page Number Indicator</b> shows the current page as a part of all the pages in the current document (page 'n' of 'nn').
Click this caption to open the window where you can enter the page number and quickly go to it.</p>

View file

@ -36,7 +36,7 @@
<li class="onlineDocumentFeatures"><img alt="Manage document access rights icon" src="../images/access_rights.png" /> <b>Manage document access rights</b> (available in the <em>online version</em> only). It allows adjusting <a href="../HelpfulHints/CollaborativeEditing.htm" onclick="onhyperlinkclick(this)">access rights</a> for the documents stored in the cloud.</li>
</ul>
</li>
<li>The <b>Top toolbar</b> displays a set of editing commands depending on the selected menu tab. Currently, the following tabs are available: <a href="../ProgramInterface/FileTab.htm" onclick="onhyperlinkclick(this)">File</a>, <a href="../ProgramInterface/HomeTab.htm" onclick="onhyperlinkclick(this)">Home</a>, <a href="../ProgramInterface/InsertTab.htm" onclick="onhyperlinkclick(this)">Insert</a>, <a href="../ProgramInterface/LayoutTab.htm" onclick="onhyperlinkclick(this)">Layout</a>, <a href="../ProgramInterface/ReferencesTab.htm" onclick="onhyperlinkclick(this)">References</a>, <a href="../ProgramInterface/FormsTab.htm" onclick="onhyperlinkclick(this)">Forms</a>, <a href="../ProgramInterface/ReviewTab.htm" onclick="onhyperlinkclick(this)">Collaboration</a>, <span class="desktopDocumentFeatures">Protection,</span> <a href="../ProgramInterface/PluginsTab.htm" onclick="onhyperlinkclick(this)">Plugins</a>.
<li>The <b>Top toolbar</b> displays a set of editing commands depending on the selected menu tab. Currently, the following tabs are available: <a href="../ProgramInterface/FileTab.htm" onclick="onhyperlinkclick(this)">File</a>, <a href="../ProgramInterface/HomeTab.htm" onclick="onhyperlinkclick(this)">Home</a>, <a href="../ProgramInterface/InsertTab.htm" onclick="onhyperlinkclick(this)">Insert</a>, <a href="../ProgramInterface/LayoutTab.htm" onclick="onhyperlinkclick(this)">Layout</a>, <a href="../ProgramInterface/ReferencesTab.htm" onclick="onhyperlinkclick(this)">References</a>, <a href="../ProgramInterface/ReviewTab.htm" onclick="onhyperlinkclick(this)">Collaboration</a>, <span class="desktopDocumentFeatures">Protection,</span> <a href="../ProgramInterface/PluginsTab.htm" onclick="onhyperlinkclick(this)">Plugins</a>.
<p>The <img alt="Copy icon" src="../images/copy.png" /> <b>Copy</b> and <img alt="Paste icon" src="../images/paste.png" /> <b>Paste</b> options are always available on the left side of the <b>Top toolbar</b> regardless of the selected tab.</p>
</li>
<li>The <b>Status bar</b> located at the bottom of the editor window indicates the page number and displays some notifications (for example, "All changes saved", etc.). It also allows <a href="../HelpfulHints/SpellChecking.htm" onclick="onhyperlinkclick(this)">setting the text language, enabling spell checking</a>, turning on the <a href="../HelpfulHints/Review.htm" onclick="onhyperlinkclick(this)">track changes mode</a> and adjusting <a href="../HelpfulHints/Navigation.htm" onclick="onhyperlinkclick(this)">zoom</a>.</li>

View file

@ -27,21 +27,21 @@
<ul style = "list-style-type:disc">
<li>You can create a Table of Figures based on captioned objects. Check the Caption box and select a captioned object from the drop-down list:
<ul style = "list-style-type:circle">
<li>None</li>
<li>Equation</li>
<li>Figure</li>
<li>Table
<li>None;</li>
<li>Equation;</li>
<li>Figure;</li>
<li>Table.
<p><img alt="Table of Figures Captioned" src="../images/table_figures_captioned.png" /></p>
</li>
</ul>
</li>
<li>You can create a <b>Table of Figures</b> based on the styles used to format text. Check the <b>Style</b> box and select a style from the drop-down list. The list of options may vary depending on the style applied:
<ul style = "list-style-type:circle">
<li>Heading 1</li>
<li>Heading 2</li>
<li>Caption</li>
<li>Table of Figures</li>
<li>Normal
<li>Heading 1;</li>
<li>Heading 2;</li>
<li>Caption;</li>
<li>Table of Figures;</li>
<li>Normal.
<p><img alt="Table of Figures Style" src="../images/table_figures_style.png" /></p>
</li>
</ul>
@ -59,18 +59,15 @@
</ul>
<ul style = "list-style-type:disc">
<li>Choose the Leader style from the drop-down list to connect titles to page numbers for a better visualization.</li>
<li>Choose the Leader style from the drop-down list to connect titles to page numbers for a better visualization.</li>
<li>Customize the table of figures text styles by choosing one of the available styles from the drop-down list:
<ul style = "list-style-type:circle">
<li><b>Current</b> - displays the style chosen previously.</li>
<li><b>Simple</b> - highlights text in bold.</li>
<li><b>Simple</b> - highlights text in bold.</li>
<li><b>Online</b> - highlights and arranges text as a hyperlink</li>
<li><b>Classic</b> - makes the text all caps</li>
<li><b>Distinctive</b> - highlights text in italic</li>
<li><b>Distinctive</b> - highlights text in italic</li>
<li><b>Centered</b> - centers the text and displays no leader</li>
<li><b>Formal</b> - displays text in 11 pt Arial to give a more formal look</li>
<li><b>Online</b> - highlights and arranges text as a hyperlink.</li>
<li><b>Classic</b> - makes the text all caps.</li>
<li><b>Distinctive</b> - highlights text in italic.</li>
<li><b>Centered</b> - centers the text and displays no leader.</li>
<li><b>Formal</b> - displays text in 11 pt Arial to give a more formal look.</li>
</ul>
</li>
<li>Preview window displays how the Table of Figures appears in the document or when printed.</li>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 219 B

After

Width:  |  Height:  |  Size: 273 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 97 B

After

Width:  |  Height:  |  Size: 209 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 124 B

After

Width:  |  Height:  |  Size: 178 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 273 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 105 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 209 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 178 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.2 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 19 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: 9.9 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 208 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 100 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.3 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 141 B

After

Width:  |  Height:  |  Size: 208 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 180 B

After

Width:  |  Height:  |  Size: 106 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 178 B

After

Width:  |  Height:  |  Size: 100 B

File diff suppressed because one or more lines are too long

View file

@ -170,10 +170,11 @@
"src": "UsageInstructions/InsertContentControls.htm",
"name": "Insérer des contrôles de contenu"
},
{
"src": "UsageInstructions/CreateTableOfContents.htm",
"name": "Créer une table des matières"
},
{
"src": "UsageInstructions/CreateTableOfContents.htm",
"name": "Créer une table des matières"
},
{"src": "UsageInstructions/AddTableofFigures.htm", "name": "Insérer et mettre en forme un tableau des figures" },
{
"src": "UsageInstructions/AlignArrangeObjects.htm",
"name": "Aligner et organiser des objets sur une page"

View file

@ -24,7 +24,7 @@
</ul>
</li>
<li><b>Vérification orthographique</b> sert à activer/désactiver la vérification orthographique.</li>
<li><b>Vérification</b> sert à remplacer un mot ou un symbole que vous avez saisi dans la casse <b>Remplacer</b> ou que vous avez choisi de la liste de corrections automatiques avec un autre mot ou symbole qui saffiche dans la casse <b>Par</b>.</li>
<li><b>Vérification</b> sert à remplacer un mot ou un symbole que vous avez saisi dans le champ <b>Remplacer</b> ou que vous avez choisi de la liste de corrections automatiques avec un autre mot ou symbole qui saffiche dans le champ de saisie <b>Par</b>.</li>
<li><b>Entrée alternative</b> sert à activer / désactiver les hiéroglyphes.</li>
<li><b>Guides d'alignement</b> est utilisé pour activer/désactiver les guides d'alignement qui apparaissent lorsque vous déplacez des objets et vous permettent de les positionner précisément sur la page.</li>
<li><b>Compatibilité</b> sert à <em>rendre les fichiers compatibles avec les anciennes versions de MS Word lorsquils sont enregistrés au format DOCX</em>.</li>
@ -45,6 +45,19 @@
<li>Choisissez <b>comme Windows</b> si vous aimez la façon dont les polices sont habituellement affichées sous Windows, c'est à dire en utilisant la police de Windows.</li>
<li>Choisissez <b>comme OS X</b> si vous aimez la façon dont les polices sont habituellement affichées sous Mac, c'est à dire sans hinting.</li>
<li>Choisissez <b>Natif</b> si vous voulez que votre texte sera affiché avec les hintings intégrés dans les fichiers de polices.</li>
<li>
<b>Mise en cache par défaut</b> sert à sélectionner cache de police. Il n'est pas recommandé d'activer ce mode-ci sans raison évidente. Ce mode peut être utile dans certains cas, par exemple les problèmes d'accélération matérielle activé sous Google Chrome.
<p>Document Editor gère deux modes de mise en cache:</p>
<ol>
<li>Dans le <b>premier mode de mise en cache</b> chaque lettre est mis en cache comme une image indépendante.</li>
<li>Dans le <b>deuxième mode de mise en cache</b> l'image d'une certaine taille est sélectionnée avec des lettres dynamiques et avec de l'allocation/libération de la mémoire mis en place. La deuxième image est créée s'il y a de mémoire suffisante etc.</li>
</ol>
<p>Le <b>Mode de mise en cache par défaut</b> est activé en fonction du navigateur utilisé:</p>
<ul>
<li>Avec la <b>mise en cache par défaut</b> activée, le <b>deuxième mode de mise en cache</b> est utilisé dans Internet Explorer (v. 9, 10, 11), le <b>premier mode de mise en cache </b>est utilisé avec les autres navigateurs.</li>
<li>Avec la <b>mise en cache par défaut</b> désactivée, le <b>premier mode de mise en cache</b> est utilisé dans Internet Explorer (v. 9, 10, 11), le <b>deuxième mode de mise en cache </b>est utilisé avec les autres navigateurs.</li>
</ul>
</li>
</ul>
</li>
<li><b>Unité de mesure</b> sert à spécifier les unités de mesure utilisées sur les règles et dans les fenêtres de paramètres pour les paramètres tels que largeur, hauteur, espacement, marges etc. Vous pouvez choisir l'option <b>Centimètre</b>, <b>Point</b> ou <b>Pouce</b>.</li>

View file

@ -14,7 +14,7 @@
<input id="search" class="searchBar" placeholder="Rechercher" type="text" onkeypress="doSearch(event)">
</div>
<h1>Comparer les documents</h1>
<p class="note"><b>Remarque</b> : cette option est disponible uniquement dans la version <b>payante</b> de la <em>suite bureautique en ligne</em> à partir de <b>Document Server</b> v. <b>5.5</b>.</p>
<p class="note"><b>Remarque</b>: cette option est disponible uniquement dans la version <b>payante</b> de la <em>suite bureautique en ligne</em> à partir de <b>Document Server</b> v. <b>5.5</b>. Pour savoir comment activer cette fonctionnalité sur <em>version de bureau</em>, veuillez consulter <a target="_blank" href="http://helpcenter.onlyoffice.com/installation/desktop-pro-features.aspx" onclick="onhyperlinkclick(this)">cette article</a>.</p>
<p>Si vous devez comparer et fusionner deux documents, vous pouvez utiliser la fonction de <b>Comparaison</b> de documents. Il permet dafficher les différences entre deux documents et de fusionner les documents en acceptant les modifications une par une ou toutes en même temps.</p>
<p>Après avoir comparé et fusionné deux documents, le résultat sera stocké sur le portail en tant que nouvelle version du fichier original.<!-- (in the <em>online version</em> of editors)-->. <!--In the desktop version, when you click the <b>Save</b> button, the dialog window will appear where you will be suggested to save a new file.--></p>
<p>Si vous navez pas besoin de fusionner les documents qui sont comparés, vous pouvez rejeter toutes les modifications afin que le document dorigine reste inchangé.</p>

View file

@ -115,10 +115,10 @@
<td>Ouvrir le <b>menu contextuel</b> de l'élément sélectionné.</td>
</tr>
<tr>
<td>R&eacute;initialiser le niveau de zoom</td>
<td>Réinitialiser le niveau de zoom</td>
<td><kbd>Ctrl</kbd>+<kbd>0</kbd></td>
<td><kbd>^ Ctrl</kbd>+<kbd>0</kbd> or <kbd>&#8984; Cmd</kbd>+<kbd>0</kbd></td>
<td>R&eacute;initialiser le niveau de zoom du document actuel par défaut à 100%.</td>
<td>Réinitialiser le niveau de zoom du document actuel par défaut à 100%.</td>
</tr>
<tr>
<th colspan="4" class="keyboard_section">Navigation</th>
@ -241,6 +241,12 @@
<td><kbd></kbd></td>
<td>Déplacer le curseur d'une ligne vers le bas.</td>
</tr>
<tr>
<td>Naviguer entre les contrôles dans un dialogue modal</td>
<td><kbd>↹ Tab</kbd>/<kbd>⇧ Maj</kbd>+<kbd>↹ Tab</kbd></td>
<td><kbd>↹ Tab</kbd>/<kbd>⇧ Maj</kbd>+<kbd>↹ Tab</kbd></td>
<td>Naviguer entre les contrôles pour mettre en évidence le contrôle précédent ou suivant dans les dialogues modaux.</td>
</tr>
<tr>
<th colspan="4" class="keyboard_section">Écriture</th>
</tr>
@ -282,7 +288,7 @@
</tr>
<tr>
<td>Créer un trait d'union insécable</td>
<td><kbd>Ctrl</kbd>+<kbd>⇧ Maj</kbd>+<kbd>Trait d'union</kbd></td>
<td><kbd>Ctrl</kbd>+<kbd>⇧ Maj</kbd>+<kbd>_</kbd></td>
<td><kbd>^ Ctrl</kbd>+<kbd>⇧ Maj</kbd>+<kbd>Trait d'union</kbd></td>
<td>Créer un trait d'union entre les caractères qui ne peuvent pas être utilisés pour passer à la ligne suivante.</td>
</tr>

View file

@ -14,7 +14,7 @@
<input id="search" class="searchBar" placeholder="Rechercher" type="text" onkeypress="doSearch(event)">
</div>
<h1>Vérification de l'orthographe</h1>
<p><b>Document Editor</b> vous permet de vérifier l'orthographe du texte saisi dans une certaine langue et corriger des fautes lors de l'édition. L'édition de bureau de tous les trois éditeurs permet d'ajouter les mots au dictionaire personnel.</p>
<p><b>Document Editor</b> vous permet de vérifier l'orthographe du texte saisi dans une certaine langue et corriger des fautes lors de l'édition. L'édition de bureau de tous les trois éditeurs permet d'ajouter les mots au dictionnaire personnel.</p>
<p>Tout d'abord, <b>choisissez la langue</b> pour tout le document. cliquer sur l'icône <img alt="Définir la langue du document" src="../images/document_language.png" /> <b>Définir la langue du document</b> dans la barre d'état. Dans la fenêtre ouverte sélectionnez la langue nécessaire et cliquez sur <b>OK</b>. La langue sélectionnée sera appliquée à tout le document.</p>
<p><img alt="Définir la langue du document" src="../images/document_language_window.png" /></p>
<p>Pour <b>sélectionner une langue différente</b> pour un fragment, sélectionnez le fragment nécessaire avec la souris et utilisez le menu <img alt="Vérification de l'orthographe - Langue du texte" src="../images/spellchecking_language.png" /> de la barre d'état.</p>

View file

@ -14,7 +14,7 @@
<input id="search" class="searchBar" placeholder="Rechercher" type="text" onkeypress="doSearch(event)">
</div>
<h1>Onglet Accueil</h1>
<p>L'onglet <b>Accueil</b> s'ouvre par défaut lorsque vous ouvrez un document. Il permet de formater la police et les paragraphes. D'autres options sont également disponibles ici, telles que <span class="onlineDocumentFeatures"><b>Fusion et publipostage</b></span> et les agencements de couleurs.</p>
<p>L'onglet <b>Accueil</b> s'ouvre par défaut lorsque vous ouvrez un document. Il permet de formater la police et les paragraphes. D'autres options sont également disponibles ici, telles que <span class="onlineDocumentFeatures"><b>Fusion et publipostage</b></span> et le jeu de couleurs.</p>
<div class="onlineDocumentFeatures">
<p>Fenêtre de l'éditeur en ligne Document Editor :</p>
<p><img alt="Onglet Accueil" src="../images/interface/hometab.png" /></p>

View file

@ -1,9 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<title>Onglet Disposition</title>
<title>Onglet Mise en page</title>
<meta charset="utf-8" />
<meta name="description" content="Présentation de l'interface utilisateur de Document Editor - l'onglet Disposition" />
<meta name="description" content="Présentation de l'interface utilisateur de Document Editor - l'onglet Mise en page" />
<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>
@ -13,8 +13,8 @@
<div class="search-field">
<input id="search" class="searchBar" placeholder="Rechercher" type="text" onkeypress="doSearch(event)">
</div>
<h1>Onglet Disposition</h1>
<p>L'onglet <b>Disposition</b> permet de modifier l'apparence du document : configurer les paramètres de la page et définir la disposition des éléments visuels.</p>
<h1>Onglet Mise en page</h1>
<p>L'onglet <b>Mise en page</b> permet de modifier l'apparence du document: configurer les paramètres de la page et définir la mise en page des éléments visuels.</p>
<div class="onlineDocumentFeatures">
<p>Fenêtre de l'éditeur en ligne Document Editor :</p>
<p><img alt="Onglet Mise en page" src="../images/interface/layouttab.png" /></p>
@ -30,7 +30,7 @@
<li>insérer des <a href="../UsageInstructions/PageBreaks.htm" onclick="onhyperlinkclick(this)">sauts de page</a>, des <a href="../UsageInstructions/SectionBreaks.htm" onclick="onhyperlinkclick(this)">sauts de section</a> et des <a href="../UsageInstructions/SetPageParameters.htm#columns" onclick="onhyperlinkclick(this)">sauts de colonne</a>,</li>
<li>insérer des <a href="../UsageInstructions/InsertLineNumbers.htm" onclick="onhyperlinkclick(this)">numéros des lignes</a></li>
<li>aligner et organiser les objets (<a href="../UsageInstructions/InsertTables.htm" onclick="onhyperlinkclick(this)">tableaux</a>, <a href="../UsageInstructions/InsertImages.htm" onclick="onhyperlinkclick(this)">images</a>, <a href="../UsageInstructions/InsertCharts.htm" onclick="onhyperlinkclick(this)">graphiques</a>, <a href="../UsageInstructions/InsertAutoshapes.htm" onclick="onhyperlinkclick(this)">formes</a>),</li>
<li>changer le <a href="../UsageInstructions/ChangeWrappingStyle.htm" onclick="onhyperlinkclick(this)">style d'habillage</a>.</li>
<li>changer le <a href="../UsageInstructions/ChangeWrappingStyle.htm" onclick="onhyperlinkclick(this)">retour à la ligne</a>.</li>
<li>ajouter un <a href="../UsageInstructions/AddWatermark.htm" onclick="onhyperlinkclick(this)">filigrane</a>.</li>
</ul>
</div>

View file

@ -34,7 +34,7 @@
<li class="onlineDocumentFeatures"><img alt="Icône Gérer les droits d'accès au document" src="../images/access_rights.png" /> <b>Gérer les droits d'accès au document</b> - (disponible uniquement dans la <em>version en ligne</em>) permet de <a href="../HelpfulHints/CollaborativeEditing.htm" onclick="onhyperlinkclick(this)">définir les droits d'accès</a> aux documents stockés dans le cloud.</li>
</ul>
</li>
<li>La <b>Barre d'outils supérieure</b> affiche un ensemble de commandes d'édition en fonction de l'onglet de menu sélectionné. Actuellement, les onglets suivants sont disponibles : <a href="../ProgramInterface/FileTab.htm" onclick="onhyperlinkclick(this)">Fichier</a>, <a href="../ProgramInterface/HomeTab.htm" onclick="onhyperlinkclick(this)">Accueil</a>, <a href="../ProgramInterface/InsertTab.htm" onclick="onhyperlinkclick(this)">Insertion</a>, <a href="../ProgramInterface/LayoutTab.htm" onclick="onhyperlinkclick(this)">Disposition</a>, <a href="../ProgramInterface/ReferencesTab.htm" onclick="onhyperlinkclick(this)">Références</a>, <a href="../ProgramInterface/ReviewTab.htm" onclick="onhyperlinkclick(this)">Collaboration</a>, <span class="desktopDocumentFeatures">Protection,</span> <a href="../ProgramInterface/PluginsTab.htm" onclick="onhyperlinkclick(this)">Modules complémentaires</a>.<p>Les options <img alt="Icône Copier" src="../images/copy.png" /> <b>Copier</b>, et <img alt="Icône Coller" src="../images/paste.png" /> <b>Coller</b> sont toujours disponibles dans la partie gauche de la <b>Barre d'outils supérieure</b>, quel que soit l'onglet sélectionné.</p>
<li>La <b>Barre d'outils supérieure</b> affiche un ensemble de commandes d'édition en fonction de l'onglet de menu sélectionné. Actuellement, les onglets suivants sont disponibles : <a href="../ProgramInterface/FileTab.htm" onclick="onhyperlinkclick(this)">Fichier</a>, <a href="../ProgramInterface/HomeTab.htm" onclick="onhyperlinkclick(this)">Accueil</a>, <a href="../ProgramInterface/InsertTab.htm" onclick="onhyperlinkclick(this)">Insertion</a>, <a href="../ProgramInterface/LayoutTab.htm" onclick="onhyperlinkclick(this)">Mise en page</a>, <a href="../ProgramInterface/ReferencesTab.htm" onclick="onhyperlinkclick(this)">Références</a>, <!--a href="../ProgramInterface/FormsTab.htm" onclick="onhyperlinkclick(this)">Formulaire</a--> <a href="../ProgramInterface/ReviewTab.htm" onclick="onhyperlinkclick(this)">Collaboration</a>, <span class="desktopDocumentFeatures">Protection,</span> <a href="../ProgramInterface/PluginsTab.htm" onclick="onhyperlinkclick(this)">Modules complémentaires</a>.<p>Les options <img alt="Icône Copier" src="../images/copy.png" /> <b>Copier</b>, et <img alt="Icône Coller" src="../images/paste.png" /> <b>Coller</b> sont toujours disponibles dans la partie gauche de la <b>Barre d'outils supérieure</b>, quel que soit l'onglet sélectionné.</p>
</li>
<li>La <b>Barre d'état</b> au bas de la fenêtre de l'éditeur contient l'indicateur du numéro de page, affiche certaines notifications (telles que "Toutes les modifications sauvegardées", etc.), permet de <a href="../HelpfulHints/SpellChecking.htm" onclick="onhyperlinkclick(this)">définir la langue du texte, activer la vérification orthographique</a>, activer le <a href="../HelpfulHints/Review.htm" onclick="onhyperlinkclick(this)">mode suivi des modifications</a>, régler le <a href="../HelpfulHints/Navigation.htm" onclick="onhyperlinkclick(this)">zoom</a>.</li>
<li>La <b>barre latérale gauche</b> contient les icônes suivantes :<ul>

View file

@ -28,9 +28,10 @@
<li>créer et mettre à jour automatiquement une <a href="../UsageInstructions/CreateTableOfContents.htm" onclick="onhyperlinkclick(this)">table des matières</a>,</li>
<li>insérer des <a href="../UsageInstructions/InsertFootnotes.htm" onclick="onhyperlinkclick(this)">notes de bas de page</a> et des <a href="../UsageInstructions/InsertEndnotes.htm" onclick="onhyperlinkclick(this)">notes de fin</a></li>
<li>insérer des <a href="../UsageInstructions/AddHyperlinks.htm" onclick="onhyperlinkclick(this)">liens hypertexte</a>,</li>
<li>ajouter des <a href="../UsageInstructions/InsertBookmarks.htm" onclick="onhyperlinkclick(this)">marque-pages</a>,</li>
<li>ajouter des <a href="../UsageInstructions/InsertBookmarks.htm" onclick="onhyperlinkclick(this)">signets</a>,</li>
<li>ajouter des <a href="../UsageInstructions/Addcaption.htm" onclick="onhyperlinkclick(this)">légendes</a>,</li>
<li>insérer des <a href="../UsageInstructions/InsertCrossReference.htm" onclick="onhyperlinkclick(this)">renvois</a>.</li>
<li>insérer un <a href="../UsageInstructions/AddTableofFigures.htm" onclick="onhyperlinkclick(this)">tableau des figures</a>.</li>
</ul>
</div>
</body>

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