Merge branch 'hotfix/v7.2.1' into develop
This commit is contained in:
commit
9416f27fbc
|
@ -219,6 +219,7 @@
|
|||
hideRulers: false // hide or show rulers on first loading (presentation or document editor)
|
||||
hideNotes: false // hide or show notes panel on first loading (presentation editor)
|
||||
uiTheme: 'theme-dark' // set interface theme: id or default-dark/default-light
|
||||
integrationMode: "embed" // turn off scroll to frame
|
||||
},
|
||||
coEditing: {
|
||||
mode: 'fast', // <coauthoring mode>, 'fast' or 'strict'. if 'fast' and 'customization.autosave'=false -> set 'customization.autosave'=true. 'fast' - default for editor
|
||||
|
@ -493,6 +494,9 @@
|
|||
|
||||
if (target && _checkConfigParams()) {
|
||||
iframe = createIframe(_config);
|
||||
if (_config.editorConfig.customization && _config.editorConfig.customization.integrationMode==='embed')
|
||||
window.AscEmbed && window.AscEmbed.initWorker(iframe);
|
||||
|
||||
if (iframe.src) {
|
||||
var pathArray = iframe.src.split('/');
|
||||
this.frameOrigin = pathArray[0] + '//' + pathArray[2];
|
||||
|
|
|
@ -364,8 +364,10 @@ define([
|
|||
},
|
||||
|
||||
onCountPages: function(count) {
|
||||
maxPages = count;
|
||||
$('#pages').text(this.textOf + " " + count);
|
||||
if (maxPages !== count) {
|
||||
maxPages = count;
|
||||
$('#pages').text(this.textOf + " " + count);
|
||||
}
|
||||
},
|
||||
|
||||
onCurrentPage: function(number) {
|
||||
|
|
|
@ -2242,7 +2242,7 @@ define([
|
|||
},
|
||||
|
||||
onRefreshField: function(item, e){
|
||||
this.api && this.api.asc_UpdateComplexField(item.options.fieldProps);
|
||||
this.api && this.api.asc_UpdateFields(true);
|
||||
this.editComplete();
|
||||
},
|
||||
|
||||
|
|
|
@ -1219,6 +1219,7 @@ define([
|
|||
me.api.asc_registerCallback('asc_onEndAction', _.bind(me.onLongActionEnd, me));
|
||||
me.api.asc_registerCallback('asc_onCoAuthoringDisconnect', _.bind(me.onCoAuthoringDisconnect, me));
|
||||
me.api.asc_registerCallback('asc_onPrint', _.bind(me.onPrint, me));
|
||||
me.api.asc_registerCallback('asc_onConfirmAction', _.bind(me.onConfirmAction, me));
|
||||
|
||||
appHeader.setDocumentCaption(me.api.asc_getDocumentName());
|
||||
me.updateWindowTitle(true);
|
||||
|
@ -2885,6 +2886,24 @@ define([
|
|||
return true;
|
||||
},
|
||||
|
||||
onConfirmAction: function(id, apiCallback, data) {
|
||||
var me = this;
|
||||
if (id == Asc.c_oAscConfirm.ConfirmMaxChangesSize) {
|
||||
Common.UI.warning({
|
||||
title: this.notcriticalErrorTitle,
|
||||
msg: this.confirmMaxChangesSize,
|
||||
buttons: [{value: 'ok', caption: this.textUndo, primary: true}, {value: 'cancel', caption: this.textContinue}],
|
||||
maxwidth: 600,
|
||||
callback: _.bind(function(btn) {
|
||||
if (apiCallback) {
|
||||
apiCallback(btn === 'ok');
|
||||
}
|
||||
me.onEditComplete();
|
||||
}, this)
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
leavePageText: 'You have unsaved changes in this document. Click \'Stay on this Page\' then \'Save\' to save them. Click \'Leave this Page\' to discard all the unsaved changes.',
|
||||
criticalErrorTitle: 'Error',
|
||||
notcriticalErrorTitle: 'Warning',
|
||||
|
@ -3264,7 +3283,10 @@ define([
|
|||
textRequestMacros: 'A macro makes a request to URL. Do you want to allow the request to the %1?',
|
||||
textRememberMacros: 'Remember my choice for all macros',
|
||||
errorTextFormWrongFormat: 'The value entered does not match the format of the field.',
|
||||
errorPasswordIsNotCorrect: 'The password you supplied is not correct.<br>Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.'
|
||||
errorPasswordIsNotCorrect: 'The password you supplied is not correct.<br>Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.',
|
||||
confirmMaxChangesSize: 'The size of actions exceeds the limitation set for your server.<br>Press "Undo" to cancel your last action or press "Continue" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).',
|
||||
textUndo: 'Undo',
|
||||
textContinue: 'Continue'
|
||||
}
|
||||
})(), DE.Controllers.Main || {}))
|
||||
});
|
|
@ -216,7 +216,7 @@ define([
|
|||
|
||||
if (control_props && control_props.get_FormPr() && this.rightmenu.formSettings) {
|
||||
var spectype = control_props.get_SpecificType();
|
||||
if (spectype==Asc.c_oAscContentControlSpecificType.CheckBox || spectype==Asc.c_oAscContentControlSpecificType.Picture ||
|
||||
if (spectype==Asc.c_oAscContentControlSpecificType.CheckBox || spectype==Asc.c_oAscContentControlSpecificType.Picture || spectype==Asc.c_oAscContentControlSpecificType.Complex ||
|
||||
spectype==Asc.c_oAscContentControlSpecificType.ComboBox || spectype==Asc.c_oAscContentControlSpecificType.DropDownList || spectype==Asc.c_oAscContentControlSpecificType.None) {
|
||||
settingsType = Common.Utils.documentSettingsType.Form;
|
||||
this._settings[settingsType].props = control_props;
|
||||
|
|
|
@ -171,7 +171,7 @@ define([
|
|||
canComment = canComment && !(spectype==Asc.c_oAscContentControlSpecificType.CheckBox || spectype==Asc.c_oAscContentControlSpecificType.Picture ||
|
||||
spectype==Asc.c_oAscContentControlSpecificType.ComboBox || spectype==Asc.c_oAscContentControlSpecificType.DropDownList || spectype==Asc.c_oAscContentControlSpecificType.DateTime);
|
||||
|
||||
canEditControl = spectype !== undefined && (spectype === Asc.c_oAscContentControlSpecificType.None || spectype === Asc.c_oAscContentControlSpecificType.ComboBox) && !control_lock;
|
||||
canEditControl = spectype !== undefined && (spectype === Asc.c_oAscContentControlSpecificType.None || spectype === Asc.c_oAscContentControlSpecificType.ComboBox || spectype === Asc.c_oAscContentControlSpecificType.Complex) && !control_lock;
|
||||
}
|
||||
|
||||
me.menuViewUndo.setVisible(me.mode.canCoAuthoring && me.mode.canComments && !me._isDisabled);
|
||||
|
@ -1497,13 +1497,10 @@ define([
|
|||
me.menuAddCommentTable.setDisabled(value.paraProps!==undefined && value.paraProps.locked===true);
|
||||
/** coauthoring end **/
|
||||
|
||||
var in_field = me.api.asc_GetCurrentComplexField();
|
||||
var in_field = me.api.asc_HaveFields(true);
|
||||
me.menuTableRefreshField.setVisible(!!in_field);
|
||||
me.menuTableRefreshField.setDisabled(disabled);
|
||||
menuTableFieldSeparator.setVisible(!!in_field);
|
||||
if (in_field) {
|
||||
me.menuTableRefreshField.options.fieldProps = in_field;
|
||||
}
|
||||
},
|
||||
items: [
|
||||
me.menuSpellCheckTable,
|
||||
|
@ -2145,13 +2142,10 @@ define([
|
|||
me.menuAddCommentPara.setDisabled(value.paraProps && value.paraProps.locked === true);
|
||||
/** coauthoring end **/
|
||||
|
||||
var in_field = me.api.asc_GetCurrentComplexField();
|
||||
var in_field = me.api.asc_HaveFields(true);
|
||||
me.menuParaRefreshField.setVisible(!!in_field);
|
||||
me.menuParaRefreshField.setDisabled(disabled);
|
||||
menuParaFieldSeparator.setVisible(!!in_field);
|
||||
if (in_field) {
|
||||
me.menuParaRefreshField.options.fieldProps = in_field;
|
||||
}
|
||||
|
||||
var listId = me.api.asc_GetCurrentNumberingId(),
|
||||
in_list = (listId !== null);
|
||||
|
|
|
@ -67,7 +67,7 @@ define([
|
|||
if (item) {
|
||||
var panel = this.panels[item.options.action];
|
||||
if (item.options.action === 'help') {
|
||||
if ( panel.usedHelpCenter === true && navigator.onLine ) {
|
||||
if ( panel.noHelpContents === true && navigator.onLine ) {
|
||||
this.fireEvent('item:click', [this, 'external-help', true]);
|
||||
window.open(panel.urlHelpCenter, '_blank');
|
||||
return;
|
||||
|
|
|
@ -1990,7 +1990,7 @@ define([
|
|||
this.menu = options.menu;
|
||||
this.urlPref = 'resources/help/{{DEFAULT_LANG}}/';
|
||||
this.openUrl = null;
|
||||
this.urlHelpCenter = '{{HELP_CENTER_WEB_EDITORS}}';
|
||||
this.urlHelpCenter = '{{HELP_CENTER_WEB_DE}}';
|
||||
|
||||
this.en_data = [
|
||||
{"src": "ProgramInterface/ProgramInterface.htm", "name": "Introducing Document Editor user interface", "headername": "Program Interface"},
|
||||
|
@ -2114,7 +2114,7 @@ define([
|
|||
} else {
|
||||
if ( Common.Controllers.Desktop.isActive() ) {
|
||||
if ( store.contentLang === '{{DEFAULT_LANG}}' || !Common.Controllers.Desktop.helpUrl() ) {
|
||||
me.usedHelpCenter = true;
|
||||
me.noHelpContents = true;
|
||||
me.iFrame.src = '../../common/main/resources/help/download.html';
|
||||
} else {
|
||||
store.contentLang = store.contentLang === lang ? '{{DEFAULT_LANG}}' : lang;
|
||||
|
|
|
@ -576,6 +576,7 @@ define([
|
|||
|
||||
onKeyChanged: function(combo, record) {
|
||||
if (this.api && !this._noApply) {
|
||||
this._state.Key = undefined;
|
||||
var props = this._originalProps || new AscCommon.CContentControlPr();
|
||||
var formPr = this._originalFormProps || new AscCommon.CSdtFormPr();
|
||||
formPr.put_Key(record.value);
|
||||
|
@ -1068,14 +1069,10 @@ define([
|
|||
if (formPr) {
|
||||
this._originalFormProps = formPr;
|
||||
|
||||
var data = [];
|
||||
if (type == Asc.c_oAscContentControlSpecificType.CheckBox)
|
||||
data = this.api.asc_GetCheckBoxFormKeys();
|
||||
else if (type == Asc.c_oAscContentControlSpecificType.Picture) {
|
||||
data = this.api.asc_GetPictureFormKeys();
|
||||
if (type == Asc.c_oAscContentControlSpecificType.Picture)
|
||||
this.labelFormName.text(this.textImage);
|
||||
} else
|
||||
data = this.api.asc_GetTextFormKeys();
|
||||
|
||||
var data = this.api.asc_GetFormKeysByType(type);
|
||||
if (!this._state.arrKey || this._state.arrKey.length!==data.length || _.difference(this._state.arrKey, data).length>0) {
|
||||
var arr = [];
|
||||
data.forEach(function(item) {
|
||||
|
@ -1446,7 +1443,7 @@ define([
|
|||
}
|
||||
} else if (type == Asc.c_oAscContentControlSpecificType.Picture) {
|
||||
imageOnly = true;
|
||||
} else if (type == Asc.c_oAscContentControlSpecificType.None) {
|
||||
} else if (type == Asc.c_oAscContentControlSpecificType.None || type == Asc.c_oAscContentControlSpecificType.Complex) {
|
||||
textOnly = !!textProps;
|
||||
}
|
||||
this.TextOnlySettings.toggleClass('hidden', !textOnly);
|
||||
|
@ -1472,7 +1469,7 @@ define([
|
|||
},
|
||||
|
||||
onDisconnect: function() {
|
||||
this.onKeyChanged(this.cmbKey, {value: ""});
|
||||
this.onKeyChanged(this.cmbKey, {value: (this._originalProps || new AscCommon.CContentControlPr()).get_NewKey()});
|
||||
},
|
||||
|
||||
disableListButtons: function() {
|
||||
|
|
|
@ -1400,7 +1400,7 @@ define([ 'text!documenteditor/main/app/template/ImageSettingsAdvanced.templat
|
|||
var spectype = control_props.get_SpecificType();
|
||||
fixed_size = (spectype==Asc.c_oAscContentControlSpecificType.CheckBox || spectype==Asc.c_oAscContentControlSpecificType.ComboBox ||
|
||||
spectype==Asc.c_oAscContentControlSpecificType.DropDownList || spectype==Asc.c_oAscContentControlSpecificType.None ||
|
||||
spectype==Asc.c_oAscContentControlSpecificType.Picture) &&
|
||||
spectype==Asc.c_oAscContentControlSpecificType.Picture || spectype==Asc.c_oAscContentControlSpecificType.Complex) &&
|
||||
control_props.get_FormPr() && control_props.get_FormPr().get_Fixed();
|
||||
}
|
||||
|
||||
|
|
|
@ -810,7 +810,7 @@ define([
|
|||
var spectype = control_props.get_SpecificType();
|
||||
control_props = (spectype==Asc.c_oAscContentControlSpecificType.CheckBox || spectype==Asc.c_oAscContentControlSpecificType.ComboBox ||
|
||||
spectype==Asc.c_oAscContentControlSpecificType.DropDownList || spectype==Asc.c_oAscContentControlSpecificType.None ||
|
||||
spectype==Asc.c_oAscContentControlSpecificType.Picture) &&
|
||||
spectype==Asc.c_oAscContentControlSpecificType.Picture || spectype==Asc.c_oAscContentControlSpecificType.Complex) &&
|
||||
control_props.get_FormPr() && control_props.get_FormPr().get_Fixed();
|
||||
} else
|
||||
control_props = false;
|
||||
|
|
|
@ -1092,6 +1092,9 @@
|
|||
"DE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact %1 sales team for personal upgrade terms.",
|
||||
"DE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
|
||||
"DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
||||
"DE.Controllers.Main.confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"DE.Controllers.Main.textUndo": "Undo",
|
||||
"DE.Controllers.Main.textContinue": "Continue",
|
||||
"DE.Controllers.Navigation.txtBeginning": "Beginning of document",
|
||||
"DE.Controllers.Navigation.txtGotoBeginning": "Go to the beginning of the document",
|
||||
"DE.Controllers.Search.notcriticalErrorTitle": "Warning",
|
||||
|
|
|
@ -73,12 +73,12 @@
|
|||
<p>Um alle Änderungen abzulehnen, klicken Sie den Abwärtspfeil unter der Schaltfläche <span class = "icon icon-review_rejecttoptoolbar"></span> <b>Ablehnen</b> an und wählen Sie die Option <b>Alle Änderungen ablehnen</b> aus.</p>
|
||||
|
||||
<h3 id="comparisonnotes">Zusatzinformation für die Vergleich-Funktion</h3>
|
||||
<h5>Die Vergleichsmethode</h5>
|
||||
<h4>Die Vergleichsmethode</h4>
|
||||
<p>Dokumente werden <b>wortweise</b> verglichen. Wenn ein Wort eine Änderung von mindestens einem Zeichen enthält (z. B. wenn ein Zeichen entfernt oder ersetzt wurde), wird die Differenz im Ergebnis als Änderung des gesamten Wortes und nicht des Zeichens angezeigt.</p>
|
||||
<p>Das folgende Bild zeigt den Fall, dass die Originaldatei das Wort „Symbole“ und das Vergleichsdokument das Wort „Symbol“ enthält.</p>
|
||||
<p><img alt="Compare documents - method" src="../images/compare_method.png" /></p>
|
||||
|
||||
<h5>Urheberschaft des Dokuments</h5>
|
||||
<h4>Urheberschaft des Dokuments</h4>
|
||||
<p>Wenn der Vergleichsprozess gestartet wird, wird das zweite Dokument zum Vergleichen hochgeladen und mit dem aktuellen verglichen.</p>
|
||||
<ul>
|
||||
<li>Wenn das geladene Dokument einige Daten enthält, die nicht im Originaldokument enthalten sind, werden die Daten als von einem Überprüfer hinzugefügt markiert.</li>
|
||||
|
@ -87,7 +87,7 @@
|
|||
<p>Wenn die Autoren des Originaldokuments und des geladenen Dokuments dieselbe Person sind, ist der Überprüfer derselbe Benutzer. Sein/ihr Name wird in der Änderungssprechblase angezeigt.</p>
|
||||
<p>Wenn die Autoren zweier Dateien unterschiedliche Benutzer sind, dann ist der Autor der zweiten zum Vergleich geladenen Datei der Autor der hinzugefügten/entfernten Änderungen.</p>
|
||||
|
||||
<h5>Die nachverfolgten Änderungen im verglichenen Dokument</h5>
|
||||
<h4>Die nachverfolgten Änderungen im verglichenen Dokument</h4>
|
||||
<p>Wenn das Originaldokument einige Änderungen enthält, die im Modus "Review" vorgenommen wurden, werden diese im Vergleichsprozess übernommen. Wenn Sie das zweite Dokument zum Vergleich auswählen, wird die entsprechende Warnmeldung angezeigt.</p>
|
||||
<p>In diesem Fall enthält das Dokument im <b>Originalanzeigemodus</b> keine Änderungen.</p>
|
||||
</div>
|
||||
|
|
|
@ -80,8 +80,7 @@
|
|||
<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 auf <b>OK</b> 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>
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
</ul>
|
||||
</li>
|
||||
</ol>
|
||||
<p>Die Ausrichtungparameter sind im <b>Absatz - Erweiterte Einstellungen</b> verfügbar.</p>
|
||||
<p>Die Ausrichtungparameter sind im <b>Absatz - Erweiterte Einstellungen</b> verfügbar:</p>
|
||||
<ol>
|
||||
<li>Drücken Sie die rechte Maustaste und wählen Sie die Option <b>Absatz - Erweiterte Einstellungen</b> von dem Rechts-Klick Menu oder benutzen Sie die Option <b>Erweiterte Einstellungen anzeigen</b> von der rechten Seitenleiste.</li>
|
||||
<li>Im Abschnitt <b>Absatz - Erweiterte Einstellungen</b> wechseln Sie zur Registerkarte <b>Einzüg und Abstände</b>.</li>
|
||||
|
|
|
@ -97,8 +97,8 @@
|
|||
<li>Benutzerdefinierte Kombination</li>
|
||||
</ul>
|
||||
</details>
|
||||
</li>
|
||||
<p class="note"><b>ONLYOFFICE Dokumenteneditor</b> unterstützt die folgenden Arten von Diagrammen, die mit Editoren von Drittanbietern erstellt wurden: <b>Pyramide</b>, <b>Balken (Pyramide)</b>, <b>horizontale/vertikale Zylinder</b>, <b>horizontale/vertikale Kegel</b>. Sie können die Datei, die ein solches Diagramm enthält, öffnen und sie mit den verfügbaren Diagrammbearbeitungswerkzeugen ändern.</p>
|
||||
<p class="note"><b>ONLYOFFICE Dokumenteneditor</b> unterstützt die folgenden Arten von Diagrammen, die mit Editoren von Drittanbietern erstellt wurden: <b>Pyramide</b>, <b>Balken (Pyramide)</b>, <b>horizontale/vertikale Zylinder</b>, <b>horizontale/vertikale Kegel</b>. Sie können die Datei, die ein solches Diagramm enthält, öffnen und sie mit den verfügbaren Diagrammbearbeitungswerkzeugen ändern.</p>
|
||||
</li>
|
||||
<li>
|
||||
Danach erscheint das Fenster <b>Diagrammeditor</b>, in dem Sie die erforderlichen Daten mit den folgenden Steuerelementen in die Zellen eingeben können:
|
||||
<ul>
|
||||
|
|
|
@ -73,12 +73,12 @@
|
|||
<p>To quickly reject all the changes, click the downward arrow below the <span class = "icon icon-review_rejecttoptoolbar"></span> <b>Reject</b> button and select the <b>Reject All Changes</b> option.</p>
|
||||
|
||||
<h3 id="comparisonnotes">Additional info on the comparison feature</h3>
|
||||
<h5>Method of comparison</h5>
|
||||
<h4>Method of comparison</h4>
|
||||
<p>Documents are compared <b>by words</b>. If a word contains a change of at least one character (e.g. if a character was removed or replaced), in the result, the difference will be displayed as the change of the entire word, not the character.</p>
|
||||
<p>The image below illustrates the case when the original file contains the word 'Characters' and the document for comparison contains the word 'Character'.</p>
|
||||
<p><img alt="Compare documents - method" src="../images/compare_method.png" /></p>
|
||||
|
||||
<h5>Authorship of the document</h5>
|
||||
<h4>Authorship of the document</h4>
|
||||
<p>When the comparison process is launched, the second document for comparison is being loaded and compared to the current one.</p>
|
||||
<ul>
|
||||
<li>If the loaded document contains some data which is not represented in the original document, the data will be marked as added by a reviewer.</li>
|
||||
|
@ -87,7 +87,7 @@
|
|||
<p>If the authors of the original and loaded documents are the same person, the reviewer is the same user. His/her name is displayed in the change balloon.</p>
|
||||
<p>If the authors of two files are different users, then the author of the second file loaded for comparison is the author of the added/removed changes.</p>
|
||||
|
||||
<h5>Presence of the tracked changes in the compared document</h5>
|
||||
<h4>Presence of the tracked changes in the compared document</h4>
|
||||
<p>If the original document contains some changes made in the review mode, they will be accepted in the comparison process. When you choose the second file for comparison, you'll see the corresponding warning message.</p>
|
||||
<p>In this case, when you choose the <b>Original</b> display mode, the document will not contain any changes.</p>
|
||||
</div>
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
<p><img alt="Layout tab" src="../images/interface/layouttab.png" /></p>
|
||||
</div>
|
||||
<div class="desktopDocumentFeatures">
|
||||
<p> corresponding window of the Desktop Document Editor:</p>
|
||||
<p>The corresponding window of the Desktop Document Editor:</p>
|
||||
<p><img alt="Layout tab" src="../images/interface/desktop_layouttab.png" /></p>
|
||||
</div>
|
||||
<p>Using this tab, you can:</p>
|
||||
|
|
|
@ -80,8 +80,7 @@
|
|||
<li><b>Refresh page numbers only</b> - to update page numbers without applying changes to the headings.</li>
|
||||
<li><b>Refresh entire table</b> - to update all the headings that have been modified and page numbers.</li>
|
||||
</ul>
|
||||
<p>Click <b>OK</b> to confirm your choice, </p>
|
||||
<p>or</p>
|
||||
<p>Click <b>OK</b> to confirm your choice or</p>
|
||||
<p>Right-click the <b>Table of Figures</b> in your document to open the contextual menu, then choose the <b>Refresh field</b> to update the <b>Table of Figures</b>.</p>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
</ul>
|
||||
</li>
|
||||
</ol>
|
||||
<p>The alignment parameters are also available in the <b>Paragraph - Advanced Settings</b> window.</p>
|
||||
<p>The alignment parameters are also available in the <b>Paragraph - Advanced Settings</b> window:</p>
|
||||
<ol>
|
||||
<li>right-click the text and choose the <b>Paragraph - Advanced Settings</b> option from the contextual menu or use the <b>Show advanced settings</b> option on the right sidebar,</li>
|
||||
<li>open the <b>Paragraph - Advanced Settings</b> window, switch to the <b>Indents & Spacing</b> tab,</li>
|
||||
|
|
|
@ -18,11 +18,11 @@
|
|||
<h3>Insert a chart</h3>
|
||||
<p>To insert a chart in the <a href="https://www.onlyoffice.com/document-editor.aspx" target="_blank" onclick="onhyperlinkclick(this)"><b>Document Editor</b></a>,</p>
|
||||
<ol>
|
||||
<li>place the cursor where the chart should be added,</li>
|
||||
<li>switch to the <b>Insert</b> tab of the top toolbar,</li>
|
||||
<li>click the <div class = "icon icon-insertchart"></div> <b>Chart</b> icon on the top toolbar,</li>
|
||||
<li>Place the cursor where the chart should be added.</li>
|
||||
<li>Switch to the <b>Insert</b> tab of the top toolbar.</li>
|
||||
<li>Click the <div class = "icon icon-insertchart"></div> <b>Chart</b> icon on the top toolbar.</li>
|
||||
<li>
|
||||
select the needed chart type from the available ones:
|
||||
Select the needed chart type from the available ones:
|
||||
<details class="details-example">
|
||||
<summary>Column Charts</summary>
|
||||
<ul>
|
||||
|
@ -97,10 +97,10 @@
|
|||
<li>Custom combination</li>
|
||||
</ul>
|
||||
</details>
|
||||
</li>
|
||||
<p class="note"><b>Note</b>: <b>ONLYOFFICE Document Editor</b> supports the following types of charts that were created with third-party editors: <b>Pyramid</b>, <b>Bar (Pyramid)</b>, <b>Horizontal/Vertical Cylinders</b>, <b>Horizontal/Vertical Cones</b>. You can open the file containing such a chart and modify it using the available chart editing tools.</p>
|
||||
<p class="note"><b>Note</b>: <b>ONLYOFFICE Document Editor</b> supports the following types of charts that were created with third-party editors: <b>Pyramid</b>, <b>Bar (Pyramid)</b>, <b>Horizontal/Vertical Cylinders</b>, <b>Horizontal/Vertical Cones</b>. You can open the file containing such a chart and modify it using the available chart editing tools.</p>
|
||||
</li>
|
||||
<li>
|
||||
after that the <b>Chart Editor</b> window will appear where you can enter the necessary data into the cells using the following controls:
|
||||
After that the <b>Chart Editor</b> window will appear where you can enter the necessary data into the cells using the following controls:
|
||||
<ul>
|
||||
<li><div class = "icon icon-copy"></div> and <div class = "icon icon-paste"></div> for copying and pasting the copied data</li>
|
||||
<li><div class = "icon icon-undo1"></div> and <div class = "icon icon-redo1"></div> for undoing and redoing actions</li>
|
||||
|
@ -160,7 +160,7 @@
|
|||
<p><img alt="Chart Type Combo" src="../../../../../../common/main/resources/help/en/images/charttype_combo.png" /></p>
|
||||
</li>
|
||||
<li>
|
||||
change the chart settings by clicking the <b>Edit Chart</b> button situated in the <b>Chart Editor</b> window. The <b>Chart - Advanced Settings</b> window will open.
|
||||
Change the chart settings by clicking the <b>Edit Chart</b> button situated in the <b>Chart Editor</b> window. The <b>Chart - Advanced Settings</b> window will open.
|
||||
<p><img alt="Chart - Advanced Settings window" src="../../../../../../common/main/resources/help/en/images/chartsettings_layout.png" /></p>
|
||||
<p>The <b>Layout</b> tab allows you to change the layout of chart elements.</p>
|
||||
<ul>
|
||||
|
@ -188,7 +188,7 @@
|
|||
Specify the <b>Data Labels</b> (i.e. text labels that represent exact values of data points) parameters:<br />
|
||||
<ul>
|
||||
<li>
|
||||
specify the <b>Data Labels</b> position relative to the data points selecting the necessary option from the drop-down list. The available options vary depending on the selected chart type.
|
||||
Specify the <b>Data Labels</b> position relative to the data points selecting the necessary option from the drop-down list. The available options vary depending on the selected chart type.
|
||||
<ul>
|
||||
<li>For <b>Column/Bar</b> charts, you can choose the following options: <b>None</b>, <b>Center</b>, <b>Inner Bottom</b>, <b>Inner Top</b>, <b>Outer Top</b>.</li>
|
||||
<li>For <b>Line/XY (Scatter)/Stock</b> charts, you can choose the following options: <b>None</b>, <b>Center</b>, <b>Left</b>, <b>Right</b>, <b>Top</b>, <b>Bottom</b>.</li>
|
||||
|
@ -196,8 +196,8 @@
|
|||
<li>For <b>Area</b> charts as well as for <b>3D</b> <b>Column</b>, <b>Line</b>, <b>Bar</b> and <b>Combo</b> charts, you can choose the following options: <b>None</b>, <b>Center</b>.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>select the data you wish to include into your labels checking the corresponding boxes: <b>Series Name</b>, <b>Category Name</b>, <b>Value</b>,</li>
|
||||
<li>enter a character (comma, semicolon etc.) you wish to use for separating several labels into the <b>Data Labels Separator</b> entry field.</li>
|
||||
<li>Select the data you wish to include into your labels checking the corresponding boxes: <b>Series Name</b>, <b>Category Name</b>, <b>Value</b>,</li>
|
||||
<li>Enter a character (comma, semicolon etc.) you wish to use for separating several labels into the <b>Data Labels Separator</b> entry field.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><b>Lines</b> - is used to choose a line style for <b>Line/XY (Scatter) charts</b>. You can choose one of the following options: <b>Straight</b> to use straight lines between data points, <b>Smooth</b> to use smooth curves between data points, or <b>None</b> to not display lines.</li>
|
||||
|
@ -210,9 +210,9 @@
|
|||
<p>The <b>Vertical Axis</b> tab allows you to change the parameters of the vertical axis also referred to as the values axis or y-axis which displays numeric values. Note that the vertical axis will be the category axis which displays text labels for the <b>Bar charts</b>, therefore in this case the <b>Vertical Axis</b> tab options will correspond to the ones described in the next section. For the <b>XY (Scatter) charts</b>, both axes are value axes.</p>
|
||||
<p class="note"><b>Note</b>: the <b>Axis Settings</b> and <b>Gridlines</b> sections will be disabled for <b>Pie charts</b> since charts of this type have no axes and gridlines.</p>
|
||||
<ul>
|
||||
<li>select <b>Hide</b> to hide vertical axis in the chart, leave it unchecked to have vertical axis displayed.</li>
|
||||
<li>Select <b>Hide</b> to hide vertical axis in the chart, leave it unchecked to have vertical axis displayed.</li>
|
||||
<li>
|
||||
specify <b>Title</b> orientation by selecting the necessary option from the drop-down list:
|
||||
Specify <b>Title</b> orientation by selecting the necessary option from the drop-down list:
|
||||
<ul>
|
||||
<li><b>None</b> to not display a vertical axis title</li>
|
||||
<li><b>Rotated</b> to display the title from bottom to top to the left of the vertical axis,</li>
|
||||
|
@ -271,9 +271,9 @@
|
|||
<p><img alt="Chart - Advanced Settings window" src="../../../../../../common/main/resources/help/en/images/chartsettings_horizontalaxis.png" /></p>
|
||||
<p>The <b>Horizontal Axis</b> tab allows you to change the parameters of the horizontal axis also referred to as the categories axis or x-axis which displays text labels. Note that the horizontal axis will be the value axis which displays numeric values for the <b>Bar charts</b>, therefore in this case the <b>Horizontal Axis</b> tab options will correspond to the ones described in the previous section. For the <b>XY (Scatter) charts</b>, both axes are value axes.</p>
|
||||
<ul>
|
||||
<li>select <b>Hide</b> to hide horizontal axis in the chart, leave it unchecked to have horizontal axis displayed.</li>
|
||||
<li>Select <b>Hide</b> to hide horizontal axis in the chart, leave it unchecked to have horizontal axis displayed.</li>
|
||||
<li>
|
||||
specify <b>Title</b> orientation by selecting the necessary option from the drop-down list:
|
||||
Specify <b>Title</b> orientation by selecting the necessary option from the drop-down list:
|
||||
<ul>
|
||||
<li><b>None</b> when you don’t want to display a horizontal axis title,</li>
|
||||
<li><b>No Overlay</b> to display the title below the horizontal axis,</li>
|
||||
|
|
|
@ -73,12 +73,12 @@
|
|||
<p>Pour rejeter rapidement toutes les modifications, cliquez sur la flèche vers le bas au-dessous du bouton <b>Rejeter </b><span class = "icon icon-review_rejecttoptoolbar"></span> et sélectionnez l'option <b>Rejeter toutes les modifications</b>.</p>
|
||||
|
||||
<h3 id="comparisonnotes">Informations supplémentaires sur la fonction de comparaison</h3>
|
||||
<h5>Méthode de comparaison</h5>
|
||||
<h4>Méthode de comparaison</h4>
|
||||
<p>Les documents sont comparés <b>par des mots</b>. Si au moins un caractère dans un mot est modifié (par exemple, si un caractère a été supprimé ou remplacé), à la suite la différence sera affichée comme le changement du mot entier, pas du caractère.</p>
|
||||
<p>L'image ci-dessous illustre le cas où le fichier d'origine contient le mot « caractères » et le document de comparaison contient le mot « Caractères ».</p>
|
||||
<p><img alt="Comparer documents - méthode " src="../images/compare_method.png" /></p>
|
||||
|
||||
<h5>Auteur du document</h5>
|
||||
<h4>Auteur du document</h4>
|
||||
<p>Lors du lancement de la comparaison, le deuxième document de comparaison est chargé et comparé au document actuel.</p>
|
||||
<ul>
|
||||
<li>Si le document chargé contient des données qui ne sont pas représentées dans le document d'origine, les données seront marquées comme ajoutées par un réviseur.</li>
|
||||
|
@ -87,7 +87,7 @@
|
|||
<p>Si le document original et le document chargé sont du même auteur, le réviseur est le même utilisateur. Son nom s'affiche dans la bulle de modification.</p>
|
||||
<p>Si les deux fichiers sont des auteurs différents, l'auteur du deuxième fichier chargé à des fins de comparaison est l'auteur des modifications ajoutées/supprimées.</p>
|
||||
|
||||
<h5>Présence des modifications suivies dans le document comparé</h5>
|
||||
<h4>Présence des modifications suivies dans le document comparé</h4>
|
||||
<p>Si le document d'origine contient des modifications apportées en mode révision, elles seront acceptées pendant la comparaison. Lorsque vous choisissez le deuxième fichier à comparer, vous verrez le message d'avertissement correspondant.</p>
|
||||
<p>Dans ce cas, lorsque vous choisissez le mode d'affichage <b>Original</b>, il n'y aura aucune modification dans le document.</p>
|
||||
</div>
|
||||
|
|
|
@ -80,8 +80,7 @@
|
|||
<li><b>Actualiser les numéros de page uniquement</b> permet d'actualiser les numéros de page sans modifier les changements de titres.</li>
|
||||
<li><b>Actualiser le tableau entier</b> permet de mettre en place toutes les modifications des titres et des numéros de pages.</li>
|
||||
</ul>
|
||||
<p>Cliquez sur <b>OK</b> pour confirmer votre choix. </p>
|
||||
<p>ou</p>
|
||||
<p>Cliquez sur <b>OK</b> pour confirmer votre choix ou</p>
|
||||
<p>Ouvrez le menu contextuel en cliquant avec le bouton droit de la souris sur le <b>Tableaux des figures</b> dans votre document, ensuite cliquez sur <b>Actualiser</b> dans le menu pour le mettre à jour.</p>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
</ul>
|
||||
</li>
|
||||
</ol>
|
||||
<p>Configuration des paramètres d'alignement est aussi disponible dans la fenêtre <b>Paragraphe - Paramètres avancés</b>.</p>
|
||||
<p>Configuration des paramètres d'alignement est aussi disponible dans la fenêtre <b>Paragraphe - Paramètres avancés</b>:</p>
|
||||
<ol>
|
||||
<li>faites un clic droit sur le texte et sélectionnez <b>Paragraphe - Paramètres avancés</b> du menu contextuel ou utilisez l'option <b>Afficher le paramètres avancée</b> sur la barre d'outils à droite,</li>
|
||||
<li>ouvrez la fenêtre <b>Paragraphe - Paramètres avancés</b>, passez à l'onglet <b>Retraits et espacement</b>,</li>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<head>
|
||||
<title>Créer des formulaires à remplir</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="Create fillable forms for advanced form interaction experience" />
|
||||
<meta name="description" content="Créer des formulaires à remplir pour améliorer l'expérience de travail avec des formulaires interactifs" />
|
||||
<link type = "text/css" rel = "stylesheet" href = "../../images/sprite.css" />
|
||||
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||
<script type="text/javascript" src="../callback.js"></script>
|
||||
|
@ -37,9 +37,9 @@
|
|||
</li>
|
||||
</ol>
|
||||
<p><img alt="champ de texte ajouté" src="../images/text_field_inserted.png" /></p>
|
||||
<p>Un champ du formulaire apparaîtra à la point d'insertion de la ligne de texte existante. Le menu <b>Paramètres du formulaire</b> s'affiche à droite.</p>
|
||||
<p>Un champ du formulaire apparaîtra au point d'insertion de la ligne de texte existante. Le menu <b>Paramètres du formulaire</b> s'affiche à droite.</p>
|
||||
<div id="text_field_settings">
|
||||
<img alt="paramètres champ de texte" src="../images/text_field_settings.png" />
|
||||
<img alt="Paramètres du champ de texte" src="../images/text_field_settings.png" />
|
||||
<ul>
|
||||
<li><b>Clé</b> : une clé à grouper les champs afin de les remplir simultanément. Pour créer une nouvelle clé, saisissez le nom de celle-là et appuyez sur <b>Entrée</b>, ensuite attribuez cette clé à chaque champ texte en choisissant de la liste déroulante. Message <em>Champs connectés</em> :<em> 2/3/...</em> s'affiche. Pour déconnecter les champs, cliquez sur <b>Déconnexion</b>.</li>
|
||||
<li><b>Espace réservé</b> : saisissez le texte à afficher dans le champ de saisie. Le texte par défaut est <em>Votre texte ici</em>.</li>
|
||||
|
@ -49,20 +49,26 @@
|
|||
<br /> <img alt="Conseil ajouté" src="../images/text_field_tip.png" />
|
||||
</li>
|
||||
<li>
|
||||
<b>Taille de champ fixe</b> : activez cette option pour fixer la taille du champ. Lors de l'activation de cette option, les options <b>Ajustement automatique</b> et <b>Champ de saisie à plusieurs lignes</b> deviennent aussi disponibles.<br />
|
||||
Un champ de taille fixe ressemble à une forme automatique. Vous pouvez définir le style d'habillage et ajuster son position.
|
||||
<b>Format</b> : choisissez le format de contenu du champ texte, c'est-à-dire que seul le format de caractère choisi sera autorisé : <em>Aucun</em>, <em>Chiffres</em>, <em>Lettres</em>, <em>Masque arbitraire</em> (le texte doit correspondre au masque personnalisé, par exemple (999) 999 99 99), <em>Expression régulière</em> (le texte doit correspondre à l'expression personnalisée).
|
||||
<p>Lorsque vous choisissez le format <em>Masque arbitraire</em> ou <em>Expression régulière</em>, un champ supplémentaire sous le champ <b>Format</b> apparaît.</p>
|
||||
</li>
|
||||
<li><b>Symboles autorisés</b> : saisissez les symboles autorisés dans le champ texte.</li>
|
||||
<li>
|
||||
<b>Taille de champ fixe</b> : activez cette option pour fixer la taille du champ. Lors de l'activation de cette option, les options <b>Ajustement automatique</b> et <b>Champ de saisie à plusieurs lignes</b> deviennent aussi disponibles.<br />
|
||||
Un champ de taille fixe ressemble à une forme automatique. Vous pouvez définir le style d'habillage et ajuster sa position.
|
||||
</li>
|
||||
<li><b>Ajustement automatique</b> : il est possible d'activer cette option lors l'activation de l'option <b>Taille de champ fixe</b>, cochez cette case pour ajuster automatiquement la police en fonction de la taille du champ.</li>
|
||||
<li><b>Champ de saisie à plusieurs lignes</b> : il est possible d'activer cette option lors l'activation de l'option <b>Taille de champ fixe</b>, cochez cette case pour créer un champ à plusieurs lignes, sinon le champ va contenir une seule ligne de texte.</li>
|
||||
<li><b>Limite de caractères</b> : le nombre de caractères n'est pas limité par défaut. Activez cette option pour indiquer le nombre maximum de caractères dans le champ à droite.</li>
|
||||
<li>
|
||||
<b>Peigne de caractères</b> : configurer l'aspect général pour une présentation claire et équilibré. Laissez cette case décoché pour garder les paramètres par défaut ou cochez-là et configurez les paramètres suivants :
|
||||
<b>Peigne de caractères</b> : configurer l'aspect général pour une présentation claire et équilibrée. Laissez cette case décochée pour garder les paramètres par défaut ou cochez-là et configurez les paramètres suivants :
|
||||
<ul>
|
||||
<li><b>Largeur de cellule</b> : choisissez si la valeur de largeur doit être <em>Auto</em> (la largeur est calculée automatiquement), <em>Au moins</em> (la largeur n'est pas inférieure à la valeur indiquée manuellement), ou <em>Exactement</em> (la largeur correspond à la valeur indiquée manuellement). Le texte sera justifié selon les paramètres.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><b>Couleur de bordure</b> : cliquez sur l'icône <div class = "icon icon-nofill"></div> pour définir la couleur de bordure du champ texte. Sélectionnez la couleur appropriée des bordures dans la palette. Le cas échéant, vous pouvez <b>ajouter une couleur personnalisée</b>.</li>
|
||||
<li><b>Couleur d'arrière-plan</b> : cliquez sur l'icône <div class = "icon icon-nofill"></div> pour ajouter la couleur d'arrière-plan au champ de texte. Sélectionnez la couleur appropriée de la palette <b>Couleurs du thème</b>, <b>Couleurs standard</b> ou <b>ajoutez une nouvelle couleur personnalisée</b>, le cas échéant.</li>
|
||||
<li><b>Ajustement automatique</b> : il est possible d'activer cette option lors l'activation de l'option <b>Taille de champ fixe</b>, cochez cette case pour ajuster automatiquement la police en fonction de la taille du champ.</li>
|
||||
<li><b>Champ de saisie à plusieurs lignes</b> : il est possible d'activer cette option lors l'activation de l'option <b>Taille de champ fixe</b>, cochez cette case pour créer un champ à plusieurs lignes, sinon le champ va contenir une seule ligne de texte.</li>
|
||||
<li><b>Requis</b> : cochez cette case pour rendre le champ texte obligatoire à remplir.</li>
|
||||
</ul>
|
||||
</div>
|
||||
<p><img alt="Peigne de caractères" src="../images/comb_of_characters.png" /></p>
|
||||
|
@ -72,7 +78,7 @@
|
|||
|
||||
|
||||
<h2 id="combobox">Créer une zone de liste déroulante</h2>
|
||||
<p>Zone de liste déroulante comporte une liste déroulante avec un ensemble de choix modifiable.</p>
|
||||
<p><em>Zone de liste déroulante</em> comporte une liste déroulante avec un ensemble de choix modifiable.</p>
|
||||
<div class="forms">
|
||||
<details class="details-example">
|
||||
<summary>Pour ajouter une zone de liste déroulante,</summary>
|
||||
|
@ -84,27 +90,28 @@
|
|||
</li>
|
||||
</ol>
|
||||
<p><img alt="Zone de liste déroulante ajoutée" src="../images/combo_box_inserted.png" /></p>
|
||||
<p>Le champ de formulaire apparaîtra à la point d'insertion de la ligne de texte existante. Le menu <b>Paramètres du formulaire</b> s'affiche à droite.</p>
|
||||
<p>Le champ de formulaire apparaîtra au point d'insertion de la ligne de texte existante. Le menu <b>Paramètres du formulaire</b> s'affiche à droite.</p>
|
||||
<div id="combo_box_settings">
|
||||
<img alt="Paramètres de la zone de liste déroulante" src="../images/combo_box_settings.png" />
|
||||
<img alt="Paramètres de la zone de liste déroulante" src="../images/combo_box_settings.png" />
|
||||
<ul>
|
||||
<li><b>Clé</b> : une clé à grouper les zones de liste déroulante afin de les remplir simultanément. Pour créer une nouvelle clé, saisissez le nom de celle-là et appuyez sur <b>Entrée</b>, ensuite attribuez cette clé à chaque zone de liste déroulante. Choisissez la clé de la liste déroulante. Message <em>Champs connectés</em>:<em> 2/3/...</em> s'affiche. Pour déconnecter les champs, cliquez sur <b>Déconnexion</b>.</li>
|
||||
<li><b>Espace réservé</b> : saisissez le texte à afficher dans zone de liste déroulante. Le texte par défaut est <em>Choisir un élément</em>.</li>
|
||||
<li><b>Espace réservé</b> : saisissez le texte à afficher dans la zone de liste déroulante. Le texte par défaut est <em>Choisir un élément</em>.</li>
|
||||
<li><b>Tag</b> : saisissez le texte à utiliser en tant que tag pour usage interne, c'est-à-dire à afficher aux coéditeurs uniquement.</li>
|
||||
<li>
|
||||
<b>Conseil</b> : saisissez le texte à afficher quand l'utilisateur fait passer la souris sur le champ du formulaire.
|
||||
<br /> <img alt="Conseil ajouté" src="../images/combo_box_tip.png" />
|
||||
</li>
|
||||
<li><b>Options de valeur</b> : ajouter <div class="icon icon-combo_add_values"></div> de nouvelles valeurs, supprimez-les <div class="icon icon-combo_delete_values"></div> , ou déplacez-les vers le haut <div class="icon icon-combo_values_up"></div> et <div class="icon icon-combo_values_down"></div> vers le bas de la liste.</li>
|
||||
<li><b>Options de valeur</b> : ajouter <div class="icon icon-combo_add_values"></div> de nouvelles valeurs, supprimez-les <div class="icon icon-combo_delete_values"></div> ou déplacez-les vers le haut <div class="icon icon-combo_values_up"></div> et <div class="icon icon-combo_values_down"></div> vers le bas de la liste.</li>
|
||||
<li>
|
||||
<b>Taille de champ fixe</b> : activez cette option pour fixer la taille du champ.<br />
|
||||
Un champ de taille fixe ressemble à une forme automatique. Vous pouvez définir le style d'habillage et ajuster son position.
|
||||
Un champ de taille fixe ressemble à une forme automatique. Vous pouvez définir le style d'habillage et ajuster sa position.
|
||||
</li>
|
||||
<li><b>Couleur de bordure</b> : cliquez sur l'icône <div class="icon icon-nofill"></div> pour définir la couleur de bordure de la zone de liste déroulante. Sélectionnez la couleur appropriée des bordures dans la palette. Le cas échéant, vous pouvez <b>ajouter une couleur personnalisée</b>.</li>
|
||||
<li><b>Couleur d'arrière-plan</b> : cliquez sur l'icône <div class="icon icon-nofill"></div> pour ajouter la couleur d'arrière-plan à la zone de liste déroulante. Sélectionnez la couleur appropriée de la palette <b>Couleurs du thème</b>, <b>Couleurs standard</b> ou <b>ajoutez une nouvelle couleur personnalisée</b>, le cas échéant.</li>
|
||||
<li><b>Requis</b> : cochez cette case pour rendre le champ de zone de liste déroulante obligatoire à remplir.</li>
|
||||
</ul>
|
||||
</div>
|
||||
<p>Cliquez sur la flèche dans la partie droite de la <b>Zone de liste déroulante</b> ajoutée pour accéder à la liste d'éléments disponibles et choisir un élément approprié. Lorsque vous avez choisi un élément, vous pouvez modifier le texte affiché partiellement ou entièrement ou le remplacer du texte.</p>
|
||||
<p>Cliquez sur la flèche dans la partie droite de la <b>Zone de liste déroulante</b> ajoutée pour accéder à la liste d'éléments disponibles et choisir un élément approprié. Lorsque vous avez choisi un élément, vous pouvez modifier le texte affiché partiellement ou entièrement ou le remplacer du texte.</p>
|
||||
<p><img alt="La zone de liste déroulante ouverte" src="../images/combo_box_opened.png" /></p>
|
||||
<p>Vous pouvez changer le style, la couleur et la taille de la police. Cliquez sur la zone de liste déroulante et suivez les <a href="../UsageInstructions/FontTypeSizeColor.htm">instructions</a>. La mise en forme sera appliquée à l'ensemble du texte dans le champ.</p>
|
||||
</details>
|
||||
|
@ -124,9 +131,9 @@
|
|||
</li>
|
||||
</ol>
|
||||
<p><img alt="Liste déroulante ajoutée" src="../images/combo_box_inserted.png" /></p>
|
||||
<p>Le champ de formulaire apparaîtra à la point d'insertion de la ligne de texte existante. Le menu <b>Paramètres du formulaire</b> s'affiche à droite.</p>
|
||||
<p>Le champ de formulaire apparaîtra au point d'insertion de la ligne de texte existante. Le menu <b>Paramètres du formulaire</b> s'affiche à droite.</p>
|
||||
<div id="dropdown_list_settings">
|
||||
<img alt="Paramètres de la liste déroulante" src="../images/dropdown_list_settings.png" />
|
||||
<img alt="Paramètres de la liste déroulante" src="../images/dropdown_list_settings.png" />
|
||||
<ul>
|
||||
<li><b>Clé</b> : une clé à grouper les listes déroulantes afin de les remplir simultanément. Pour créer une nouvelle clé, saisissez le titre de celle-là et appuyez sur <b>Entrée</b>, ensuite attribuez cette clé aux champs du formulaire en choisissant de la liste déroulante. Message <em>Champs connectés</em>:<em> 2/3/...</em> s'affiche. Pour déconnecter les champs, cliquez sur <b>Déconnexion</b>.</li>
|
||||
<li><b>Espace réservé</b> : saisissez le texte à afficher dans la liste déroulante. Le texte par défaut est <em>Choisir un élément</em>.</li>
|
||||
|
@ -135,13 +142,14 @@
|
|||
<b>Conseil</b> : saisissez le texte à afficher quand l'utilisateur fait passer la souris sur le champ du formulaire.
|
||||
<br /> <img alt="Conseil ajouté" src="../images/combo_box_tip.png" />
|
||||
</li>
|
||||
<li><b>Options de valeur</b> : ajouter <div class="icon icon-combo_add_values"></div> de nouvelles valeurs, supprimez-les <div class="icon icon-combo_delete_values"></div> , ou déplacez-les vers le haut <div class="icon icon-combo_values_up"></div> et <div class="icon icon-combo_values_down"></div> vers le bas de la liste.</li>
|
||||
<li><b>Options de valeur</b> : ajouter <div class="icon icon-combo_add_values"></div> de nouvelles valeurs, supprimez-les <div class="icon icon-combo_delete_values"></div> ou déplacez-les vers le haut <div class="icon icon-combo_values_up"></div> et <div class="icon icon-combo_values_down"></div> vers le bas de la liste.</li>
|
||||
<li>
|
||||
<b>Taille de champ fixe</b> : activez cette option pour fixer la taille du champ.<br />
|
||||
Un champ de taille fixe ressemble à une forme automatique. Vous pouvez définir le style d'habillage et ajuster son position.
|
||||
Un champ de taille fixe ressemble à une forme automatique. Vous pouvez définir le style d'habillage et ajuster sa position.
|
||||
</li>
|
||||
<li><b>Couleur de bordure</b> : cliquez sur l'icône <div class="icon icon-nofill"></div> pour définir la couleur de bordure de la liste déroulante. Sélectionnez la couleur appropriée des bordures dans la palette. Le cas échéant, vous pouvez <b>ajouter une couleur personnalisée</b>.</li>
|
||||
<li><b>Couleur d'arrière-plan</b> : cliquez sur l'icône <div class="icon icon-nofill"></div> pour ajouter la couleur d'arrière-plan à la liste déroulante. Sélectionnez la couleur appropriée de la palette <b>Couleurs du thème</b>, <b>Couleurs standard</b> ou <b>ajoutez une nouvelle couleur personnalisée</b>, le cas échéant.</li>
|
||||
<li><b>Requis</b> : cochez cette case pour rendre le champ de liste déroulante obligatoire à remplir.</li>
|
||||
</ul>
|
||||
</div>
|
||||
<p>Cliquez sur la flèche dans la partie droite de la <b>Liste déroulante</b> ajoutée pour accéder à la liste d'éléments disponibles et choisir un élément approprié.</p>
|
||||
|
@ -151,7 +159,7 @@
|
|||
|
||||
|
||||
<h2 id="checkbox">Créer une case à cocher</h2>
|
||||
<p><em>Case à cocher</em> fournit plusieurs options permettant à l'utilisateur de sélectionner autant de cases à cocher que nécessaire. Cases à cocher sont utilisées indépendamment, alors chaque case peut être coché et ou décoché.</p>
|
||||
<p><em>Case à cocher</em> fournit plusieurs options permettant à l'utilisateur de sélectionner autant de cases à cocher que nécessaire. Cases à cocher sont utilisées indépendamment, alors chaque case peut être cochée et ou décochée.</p>
|
||||
<div class="forms">
|
||||
<details class="details-example">
|
||||
<summary>Pour insérer une case à cocher,</summary>
|
||||
|
@ -163,9 +171,9 @@
|
|||
</li>
|
||||
</ol>
|
||||
<p><span class = "big big-checkbox_inserted"></span></p>
|
||||
<p>Le champ du formulaire apparaîtra à la point d'insertion de la ligne de texte existante. Le menu <b>Paramètres du formulaire</b> s'affiche à droite.</p>
|
||||
<p>Le champ du formulaire apparaîtra au point d'insertion de la ligne de texte existante. Le menu <b>Paramètres du formulaire</b> s'affiche à droite.</p>
|
||||
<div id="checkbox_settings">
|
||||
<img alt="Paramètres de case à cocher" src="../images/checkbox_settings.png" />
|
||||
<img alt="Paramètres de la case à cocher" src="../images/checkbox_settings.png" />
|
||||
<ul>
|
||||
<li><b>Clé</b> : une clé à grouper les cases à cocher afin de les remplir simultanément. Pour créer une nouvelle clé, saisissez le titre de celle-là et appuyez sur <b>Entrée</b>, ensuite attribuez cette clé aux champs du formulaire en choisissant de la liste déroulante. Message <em>Champs connectés</em> :<em> 2/3/...</em> s'affiche. Pour déconnecter les champs, cliquez sur <b>Déconnexion</b>.</li>
|
||||
<li><b>Tag</b> : saisissez un texte à utiliser en tant que tag à usage interne, c'est-à-dire affiché uniquement pour les coéditeurs.</li>
|
||||
|
@ -175,10 +183,11 @@
|
|||
</li>
|
||||
<li>
|
||||
<b>Taille de champ fixe</b> : activez cette option pour fixer la taille du champ.<br />
|
||||
Un champ de taille fixe ressemble à une forme automatique. Vous pouvez définir le style d'habillage et ajuster son position.
|
||||
Un champ de taille fixe ressemble à une forme automatique. Vous pouvez définir le style d'habillage et ajuster sa position.
|
||||
</li>
|
||||
<li><b>Couleur de bordure</b> : cliquez sur l'icône <div class="icon icon-nofill"></div> pour définir la couleur de bordure de la case à cocher. Sélectionnez la couleur appropriée des bordures dans la palette. Le cas échéant, vous pouvez <b>ajouter une couleur personnalisée</b>.</li>
|
||||
<li><b>Couleur de bordure</b> : cliquez sur l'icône <div class="icon icon-nofill"></div> pour définir la couleur de bordure de la case à cocher. Sélectionnez la couleur appropriée des bordures dans la palette. Le cas échéant, vous pouvez <b>ajouter une couleur personnalisée</b>.</li>
|
||||
<li><b>Couleur d'arrière-plan</b> : cliquez sur l'icône <div class="icon icon-nofill"></div> pour ajouter la couleur d'arrière-plan à la case à cocher. Sélectionnez la couleur appropriée de la palette <b>Couleurs du thème</b>, <b>Couleurs standard</b> ou <b>ajoutez une nouvelle couleur personnalisée</b>, le cas échéant.</li>
|
||||
<li><b>Requis</b> : cochez cette case pour rendre le champ de case à cocher obligatoire à remplir.</li>
|
||||
</ul>
|
||||
</div>
|
||||
<p>Cliquez sur la case pour la cocher.</p>
|
||||
|
@ -188,7 +197,7 @@
|
|||
|
||||
|
||||
<h2 id="radiobutton">Créer un bouton radio</h2>
|
||||
<p><em>Bouton radio</em> fournit plusieurs options permettant à l'utilisateur de choisir une seule option parmi plusieurs possibles. Boutons radio sont utilisés en groupe, alors on ne peut pat choisir plusieurs boutons de la même groupe.</p>
|
||||
<p><em>Bouton radio</em> fournit plusieurs options permettant à l'utilisateur de choisir une seule option parmi plusieurs possibles. Boutons radio sont utilisés en groupe, alors on ne peut pas choisir plusieurs boutons du même groupe.</p>
|
||||
<div class="forms">
|
||||
<details class="details-example">
|
||||
<summary>Pour ajouter un bouton radio,</summary>
|
||||
|
@ -200,9 +209,9 @@
|
|||
</li>
|
||||
</ol>
|
||||
<p><span class = "big big-radio_button_inserted"></span></p>
|
||||
<p>Le champ du formulaire apparaîtra à la point d'insertion de la ligne de texte existante. Le menu <b>Paramètres du formulaire</b> s'affiche à droite.</p>
|
||||
<p>Le champ du formulaire apparaîtra au point d'insertion de la ligne de texte existante. Le menu <b>Paramètres du formulaire</b> s'affiche à droite.</p>
|
||||
<div id="radio_button_settings">
|
||||
<img alt="Paramètres su bouton radio" src="../images/radio_button_settings.png" />
|
||||
<img alt="Paramètres du bouton radio" src="../images/radio_button_settings.png" />
|
||||
<ul>
|
||||
<li><b>Clé de groupe</b> : pour créer un nouveau groupe de boutons radio, saisissez le nom du groupe et appuyez sur <b>Entrée</b>, ensuite attribuez le groupe approprié à chaque bouton radio.</li>
|
||||
<li><b>Tag</b> : saisissez un texte à utiliser en tant que tag à usage interne, c'est-à-dire affiché uniquement pour les coéditeurs.</li>
|
||||
|
@ -212,10 +221,11 @@
|
|||
</li>
|
||||
<li>
|
||||
<b>Taille de champ fixe</b> : activez cette option pour fixer la taille du champ.<br />
|
||||
Un champ de taille fixe ressemble à une forme automatique. Vous pouvez définir le style d'habillage et ajuster son position.
|
||||
Un champ de taille fixe ressemble à une forme automatique. Vous pouvez définir le style d'habillage et ajuster sa position.
|
||||
</li>
|
||||
<li><b>Couleur de bordure</b> : cliquez sur l'icône <div class="icon icon-nofill"></div> pour définir la couleur de bordure du bouton radio. Sélectionnez la couleur appropriée des bordures dans la palette. Le cas échéant, vous pouvez <b>ajouter une couleur personnalisée</b>.</li>
|
||||
<li><b>Couleur de bordure</b> : cliquez sur l'icône <div class="icon icon-nofill"></div> pour définir la couleur de bordure du bouton radio. Sélectionnez la couleur appropriée des bordures dans la palette. Le cas échéant, vous pouvez <b>ajouter une couleur personnalisée</b>.</li>
|
||||
<li><b>Couleur d'arrière-plan</b> : cliquez sur l'icône <div class="icon icon-nofill"></div> pour ajouter la couleur d'arrière-plan au bouton radio. Sélectionnez la couleur appropriée de la palette <b>Couleurs du thème</b>, <b>Couleurs standard</b> ou <b>ajoutez une nouvelle couleur personnalisée</b>, le cas échéant.</li>
|
||||
<li><b>Requis</b> : cochez cette case pour rendre le champ bouton radio obligatoire à remplir.</li>
|
||||
</ul>
|
||||
</div>
|
||||
<p>Cliquez sur le bouton radio pour le choisir.</p>
|
||||
|
@ -225,10 +235,10 @@
|
|||
|
||||
|
||||
<h2 id="image">Créer un champ image</h2>
|
||||
<p>Images sont les champs du formulaire permettant d'insérer une image selon des limites définies, c-à-d, la position et la taille de l'image.</p>
|
||||
<p>Images sont les champs du formulaire permettant d'insérer une image selon des limites définies, c'est-à-dire, la position et la taille de l'image.</p>
|
||||
<div class="forms">
|
||||
<details class="details-example">
|
||||
<summary>Pour ajouter un champ d'image,</summary>
|
||||
<summary>Pour ajouter un champ image,</summary>
|
||||
<ol>
|
||||
<li>positionnez le point d'insertion à la ligne du texte où vous souhaitez ajouter un champ,</li>
|
||||
<li>passez à l'onglet <b>Formulaires</b> de la barre d'outils supérieure,</li>
|
||||
|
@ -237,21 +247,22 @@
|
|||
</li>
|
||||
</ol>
|
||||
<p><span class = "big big-image_form_inserted"></span></p>
|
||||
<p>Le champ du formulaire apparaîtra à la point d'insertion de la ligne de texte existante. Le menu <b>Paramètres du formulaire</b> s'affiche à droite.</p>
|
||||
<p>Le champ du formulaire apparaîtra au point d'insertion de la ligne de texte existante. Le menu <b>Paramètres du formulaire</b> s'affiche à droite.</p>
|
||||
<div id="image_form_settings">
|
||||
<img alt="Paramètres du champ image" src="../images/image_form_settings.png" />
|
||||
<img alt="Paramètres du champ image" src="../images/image_form_settings.png" />
|
||||
<ul>
|
||||
<li><b>Clé</b> : une clé à grouper les images afin de les remplir simultanément. Pour créer une nouvelle clé, saisissez le titre de celle-là et appuyez sur <b>Entrée</b>, ensuite attribuez cette clé aux champs du formulaire en choisissant de la liste déroulante. Message <em>Champs connectés</em> :<em> 2/3/...</em> s'affiche. Pour déconnecter les champs, cliquez sur <b>Déconnexion</b>.</li>
|
||||
<li><b>Espace réservé</b> : saisissez le texte à afficher dans le champ d'image. Le texte par défaut est <em>Cliquer pour télécharger l'image</em>.</li>
|
||||
<li><b>Espace réservé</b> : saisissez le texte à afficher dans le champ image. Le texte par défaut est <em>Cliquer pour télécharger l'image</em>.</li>
|
||||
<li><b>Tag</b> : saisissez un texte à utiliser en tant que tag à usage interne, c'est-à-dire affiché uniquement pour les coéditeurs.</li>
|
||||
<li>
|
||||
<b>Conseil</b> : saisissez le texte à afficher quand l'utilisateur fait passer la souris sur la bordure inférieure de l'image.
|
||||
</li>
|
||||
<li><b>Mise à l'échelle</b> : cliquez sur la liste déroulante et sélectionnez l'option de dimensionnement de l'image appropriée : <b>Toujours</b>, <b>Jamais</b>, lorsque <b>L'image semble trop grande</b> ou <b>L'image semble trop petite</b>. L'image sélectionnée sera redimensionnée dans le champ en fonction de l'option choisie.</li>
|
||||
<li><b>Mise à l'échelle</b> : cliquez sur la liste déroulante et sélectionnez l'option de dimensionnement de l'image appropriée : <b>Toujours</b>, <b>Jamais</b>, lorsque <b>L'image semble trop grande</b> ou <b>L'image semble trop petite</b>. L'image sélectionnée sera redimensionnée dans le champ en fonction de l'option choisie.</li>
|
||||
<li><b>Verrouiller les proportions</b> : cochez cette case pour maintenir le rapport d'aspect de l'image sans la déformer. Lors l'activation de cette option, faites glisser le curseur vertical ou horizontal pour positionner l'image à l'intérieur du champ ajouté. Si la case n'est pas cochée, les curseurs de positionnement ne sont pas activés.</li>
|
||||
<li><b>Sélectionnez une image</b> : cliquez sur ce bouton pour télécharger une image <b>Depuis un fichier</b>, <b>D'une URL</b> ou <b>A partir de l'espace de stockage</b>.</li>
|
||||
<li><b>Couleur de bordure</b> : cliquez sur l'icône <div class="icon icon-nofill"></div> pour définir la couleur de bordure du champ avec l'image. Sélectionnez la couleur appropriée des bordures dans la palette. Le cas échéant, vous pouvez <b>ajouter une couleur personnalisée</b>.</li>
|
||||
<li><b>Couleur d'arrière-plan</b> : cliquez sur l'icône <div class="icon icon-nofill"></div> pour ajouter la couleur d'arrière-plan au champ avec l'image. Sélectionnez la couleur appropriée de la palette <b>Couleurs du thème</b>, <b>Couleurs standard</b> ou <b>ajoutez une nouvelle couleur personnalisée</b>, le cas échéant.</li>
|
||||
<li><b>Requis</b> : cochez cette case pour rendre le champ image obligatoire à remplir.</li>
|
||||
</ul>
|
||||
</div>
|
||||
<p>Pour remplacer une image, cliquez sur l'icône d'image <span class = "icon icon-image"></span> au-dessus de la bordure de champ image et sélectionnez une autre image.</p>
|
||||
|
@ -259,6 +270,138 @@
|
|||
</details>
|
||||
</div>
|
||||
|
||||
<h2 id="emailaddress">Créer un champ adresse email</h2>
|
||||
<p>Le champ <em>Adresse email</em> est utilisé pour saisir une adresse email correspondante à une expression régulière \S+@\S+\.\S+.</p>
|
||||
<div class="forms">
|
||||
<details class="details-example">
|
||||
<summary>Pour insérer un champ adresse email,</summary>
|
||||
<ol>
|
||||
<li>positionnez le point d'insertion dans une ligne du texte à l'endroit où vous souhaitez ajouter le champ,</li>
|
||||
<li>passez à l'onglet <b>Formulaires</b> sur la barre supérieure,</li>
|
||||
<li>
|
||||
cliquez sur l'icône <div class="icon icon-email_address_icon"></div> <b>Adresse email</b>.
|
||||
</li>
|
||||
</ol>
|
||||
<p><span class="big big-email_address_inserted"></span></p>
|
||||
<p>Le champ de formulaire apparaîtra au point d'insertion dans la ligne de texte existante. Le menu <b>Paramètres du formulaire</b> s'ouvre à droite.</p>
|
||||
<div id="email_address_settings">
|
||||
<img alt="Paramètres de l'adresse e-mail" src="../images/email_address_settings.png" />
|
||||
<ul>
|
||||
<li><b>Clé</b> : pour créer un nouveau groupe d'adresses email, saisissez le nom du groupe et appuyez sur <b>Entrée</b>, ensuite attribuez le groupe approprié à chaque champ adresse email.</li>
|
||||
<li><b>Espace réservé</b> : saisissez le texte à afficher dans le champ adresse email ; Le texte par défaut est <em>“user_name@email.com”</em>.</li>
|
||||
<li><b>Tag</b> : saisissez un texte à utiliser en tant que tag à usage interne, c'est-à-dire affiché uniquement pour les coéditeurs.</li>
|
||||
<li>
|
||||
<b>Conseil</b> : saisissez le texte à afficher quand l'utilisateur fait passer la souris sur le champ adresse email.
|
||||
<br /> <img alt="conseil inséré" src="../images/email_address_tip.png" />
|
||||
</li>
|
||||
<li><b>Format</b> : choisissez le format de contenu du champ, c'est-à-dire <em>Aucun</em>, <em>Chiffres</em>, <em>Lettres</em>, <em>Masque arbitraire</em> ou <em>Expression régulière</em>. Le champ est défini sur <em>Expression régulière</em> par défaut afin de conserver le format de l'adresse email <code>\S+@\S+\.\S+</code>.</li>
|
||||
<li><b>Symboles autorisés</b> : saisissez les symboles autorisés dans le champ adresse email.</li>
|
||||
<li>
|
||||
<b>Taille de champ fixe</b> : activez cette option pour fixer la taille du champ. Lorsque cette option est activée, vous pouvez utiliser les paramètres <b>Ajustement automatique</b> et/ou <b>Champ de saisie à plusieurs lignes</b>.<br />
|
||||
Un champ de taille fixe ressemble à une forme automatique. Vous pouvez définir le style d'habillage et ajuster sa position.
|
||||
</li>
|
||||
<li><b>Ajustement automatique</b> : il est possible d'activer cette option lors l'activation de l'option <b>Taille de champ fixe</b>, cochez cette case pour ajuster automatiquement la taille de la police en fonction de la taille du champ.</li>
|
||||
<li><b>Champ de saisie à plusieurs lignes</b> : il est possible d'activer cette option lors l'activation de l'option <b>Taille de champ fixe</b>, cochez cette case pour créer un champ à plusieurs lignes, sinon le champ va contenir une seule ligne de texte.</li>
|
||||
<li><b>Limite de caractères</b> : le nombre de caractères n'est pas limité par défaut. Activez cette option pour indiquer le nombre maximum de caractères dans le champ à droite.</li>
|
||||
<li>
|
||||
<b>Peigne de caractères</b> : répartissez le texte uniformément dans le champ adresse e-mail et configurez son aspect général. Laissez cette case décochée pour garder les paramètres par défaut ou cochez-là et configurez les paramètres suivants :
|
||||
<ul>
|
||||
<li><b>Largeur de cellule</b> : choisissez si la valeur de largeur doit être <em>Auto</em> (la largeur est calculée automatiquement), <em>Au moins</em> (la largeur n'est pas inférieure à la valeur indiquée manuellement), ou <em>Exactement</em> (la largeur correspond à la valeur indiquée manuellement). Le texte sera justifié selon les paramètres.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><b>Couleur de bordure</b> : cliquez sur l'icône <div class="icon icon-nofill"></div> pour définir la couleur de bordure du champ adresse email inséré. Sélectionnez la couleur appropriée des bordures dans la palette. Le cas échéant, vous pouvez <b>ajouter une couleur personnalisée</b>.</li>
|
||||
<li><b>Couleur d'arrière-plan</b> : cliquez sur l'icône <div class="icon icon-nofill"></div> pour ajouter la couleur d'arrière-plan au champ adresse email. Sélectionnez la couleur appropriée de la palette <b>Couleurs du thème</b>, <b>Couleurs standard</b> ou <b>ajoutez une nouvelle couleur personnalisée</b>, le cas échéant.</li>
|
||||
<li><b>Requis</b> : cochez cette case pour rendre le champ adresse email obligatoire à remplir.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</details>
|
||||
</div>
|
||||
|
||||
<h2 id="phonenumber">Créer un champ numéro de téléphone</h2>
|
||||
<p>Champ <em>Numéro de téléphone</em> permet de saisir un numéro de téléphone correspondant à un masque arbitraire fourni par le créateur du formulaire. Le texte par défaut est <code>(999)999-9999</code>.</p>
|
||||
<div class="forms">
|
||||
<details class="details-example">
|
||||
<summary>Pour insérer un champ numéro de téléphone,</summary>
|
||||
<ol>
|
||||
<li>positionnez le point d'insertion dans une ligne du texte à l'endroit où vous souhaitez ajouter le champ,</li>
|
||||
<li>passez à l'onglet <b>Formulaires</b> dans la barre d'outils supérieure,</li>
|
||||
<li>
|
||||
cliquez sur l'icône <div class="icon icon-phone_number_icon"></div> <b>numéro de téléphone</b>.
|
||||
</li>
|
||||
</ol>
|
||||
<p><span class="big big-phone_number_inserted"></span></p>
|
||||
<p>Le champ de formulaire apparaîtra au point d'insertion dans la ligne de texte existante. Le menu <b>Paramètres du formulaire</b> s'ouvre à droite.</p>
|
||||
<div id="phone_number_settings">
|
||||
<img alt="Paramètres du numéro de téléphone" src="../images/phone_number_settings.png" />
|
||||
<ul>
|
||||
<li><b>Clé</b> : pour créer un nouveau groupe de numéros de téléphone, saisissez le nom du groupe et appuyez sur <b>Entrée</b>, ensuite attribuez le groupe approprié à chaque numéro de téléphone.</li>
|
||||
<li><b>Espace réservé</b> : saisissez le texte à afficher dans le champ numéro de téléphone ; Le texte par défaut est <em>“(999)999-9999”</em>.</li>
|
||||
<li><b>Tag</b> : saisissez un texte à utiliser en tant que tag à usage interne, c'est-à-dire affiché uniquement pour les coéditeurs.</li>
|
||||
<li>
|
||||
<b>Conseil</b> : saisissez le texte à afficher quand l'utilisateur fait passer la souris sur le champ numéro de téléphone.
|
||||
<br /> <img alt="conseil inséré" src="../images/phone_number_tip.png" />
|
||||
</li>
|
||||
<li><b>Format</b> : choisissez le format de contenu du champ, c'est-à-dire <em>Aucun</em>, <em>Chiffres</em>, <em>Lettres</em>, <em>Masque arbitraire</em> ou <em>Expression régulière</em>. Le format du champ par défaut est <em>Masque arbitraire</em>. Pour le changer, saisissez le masque requis dans le champ ci-dessous.</li>
|
||||
<li><b>Symboles autorisés</b> : saisissez les symboles autorisés dans le champ numéro de téléphone.</li>
|
||||
<li>
|
||||
<b>Taille de champ fixe</b> : activez cette option pour fixer la taille du champ. Lorsque cette option est activée, vous pouvez utiliser les paramètres <b>Ajustement automatique</b> et/ou <b>Champ de saisie à plusieurs lignes</b>.<br />
|
||||
Un champ de taille fixe ressemble à une forme automatique. Vous pouvez définir le style d'habillage et ajuster sa position.
|
||||
</li>
|
||||
<li><b>Ajustement automatique</b> : il est possible d'activer cette option lors l'activation de l'option <b>Taille de champ fixe</b>, cochez cette case pour ajuster automatiquement la taille de la police en fonction de la taille du champ.</li>
|
||||
<li><b>Champ de saisie à plusieurs lignes</b> : il est possible d'activer cette option lors l'activation de l'option <b>Taille de champ fixe</b>, cochez cette case pour créer un champ à plusieurs lignes, sinon le champ va contenir une seule ligne de texte.</li>
|
||||
<li><b>Limite de caractères</b> : le nombre de caractères n'est pas limité par défaut. Activez cette option pour indiquer le nombre maximum de caractères dans le champ à droite.</li>
|
||||
<li>
|
||||
<b>Peigne de caractères</b> : répartissez le texte uniformément dans le champ numéro de téléphone et configurez son aspect général. Laissez cette case décochée pour conserver les paramètres par défaut ou cochez-là et configurez les paramètres suivants :
|
||||
<ul>
|
||||
<li><b>Largeur de cellule</b> : choisissez si la valeur de largeur doit être <em>Auto</em> (la largeur est calculée automatiquement), <em>Au moins</em> (la largeur n'est pas inférieure à la valeur indiquée manuellement), ou <em>Exactement</em> (la largeur correspond à la valeur indiquée manuellement). Le texte sera justifié selon les paramètres.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><b>Couleur de bordure</b> : cliquez sur l'icône <div class="icon icon-nofill"></div> pour définir la couleur de bordure du champ numéro de téléphone. Sélectionnez la couleur appropriée des bordures dans la palette. Le cas échéant, vous pouvez <b>ajouter une couleur personnalisée</b>.</li>
|
||||
<li><b>Couleur d'arrière-plan</b> : cliquez sur l'icône <div class="icon icon-nofill"></div> pour ajouter la couleur d'arrière-plan au champ numéro de téléphone. Sélectionnez la couleur appropriée de la palette <b>Couleurs du thème</b>, <b>Couleurs standard</b> ou <b>ajoutez une nouvelle couleur personnalisée</b>, le cas échéant.</li>
|
||||
<li><b>Requis</b> : cochez cette case pour rendre le champ numéro de téléphone obligatoire à remplir.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</details>
|
||||
</div>
|
||||
|
||||
<h2 id="complexfield">Créer un champ complexe</h2>
|
||||
<p><em>Champ complexe</em> réunit plusieurs types de champs, par exemple, un champ texte et une liste déroulante. Vous pouvez combiner les champs en fonction de vos besoins.</p>
|
||||
<div class="forms">
|
||||
<details class="details-example">
|
||||
<summary>Pour insérer un champ complexe,</summary>
|
||||
<ol>
|
||||
<li>positionnez le point d'insertion dans une ligne du texte à l'endroit où vous souhaitez ajouter le champ,</li>
|
||||
<li>passez à l'onglet <b>Formulaires</b> dans la barre d'outils supérieure,</li>
|
||||
<li>
|
||||
cliquez sur l'icône <div class="icon icon-complex_field_icon"></div> <b>Champ complexe</b>.
|
||||
</li>
|
||||
</ol>
|
||||
<p><img alt="champ complexe inséré" src="../images/complex_field_inserted.png"></p>
|
||||
<p>Le champ de formulaire apparaîtra au point d'insertion dans la ligne de texte existante. Le menu <b>Paramètres du formulaire</b> s'ouvre à droite.</p>
|
||||
<div id="complex_field_settings">
|
||||
<img alt="Paramètres du champ complexe" src="../images/complex_field_settings.png" />
|
||||
<ul>
|
||||
<li><b>Clé</b> : pour créer un nouveau groupe de champs complexes, saisissez le nom du groupe et appuyez sur <b>Entrée</b>, ensuite attribuez le groupe approprié à chaque champ complexe.</li>
|
||||
<li><b>Espace réservé</b> : saisissez le texte à afficher dans le champ complexe; Le texte par défaut est <em>“Votre texte ici”</em>.</li>
|
||||
<li><b>Tag</b> : saisissez un texte à utiliser en tant que tag à usage interne, c'est-à-dire affiché uniquement pour les coéditeurs.</li>
|
||||
<li>
|
||||
<b>Conseil</b> : saisissez le texte à afficher quand l'utilisateur fait passer la souris sur le champ complexe.
|
||||
<br /> <img alt="conseil insérté" src="../images/complex_field_tip.png" />
|
||||
</li>
|
||||
<li>
|
||||
<b>Taille de champ fixe</b> : activez cette option pour fixer la taille du champ.<br />
|
||||
Un champ de taille fixe ressemble à une forme automatique. Vous pouvez définir le style d'habillage et ajuster sa position.
|
||||
</li>
|
||||
<li><b>Couleur de bordure</b> : cliquez sur l'icône <div class="icon icon-nofill"></div> pour définir la couleur de bordure du champ complexe. Sélectionnez la couleur appropriée des bordures dans la palette. Le cas échéant, vous pouvez <b>ajouter une couleur personnalisée</b>.</li>
|
||||
<li><b>Couleur d'arrière-plan</b> : cliquez sur l'icône <div class="icon icon-nofill"></div> pour ajouter la couleur d'arrière-plan au champ complexe. Sélectionnez la couleur appropriée de la palette <b>Couleurs du thème</b>, <b>Couleurs standard</b> ou <b>ajoutez une nouvelle couleur personnalisée</b>, le cas échéant.</li>
|
||||
<li><b>Requis</b> : cochez cette case pour rendre le champ complexe obligatoire à remplir.</li>
|
||||
</ul>
|
||||
<p>Pour insérer de divers champs de formulaire dans un champ complexe, cliquez dessus et choisissez le champ requis dans la barre d'outils supérieure de l'onglet <b>Formulaires</b>, puis configurez-le. Pour en savoir plus sur chaque type de champ, consultez la section appropriée ci-dessus.</p>
|
||||
<p class="note">Veuillez noter qu'il est impossible d'utiliser le champ de formulaire <em>Image</em> dans les champs complexes.</p>
|
||||
</div>
|
||||
</details>
|
||||
</div>
|
||||
|
||||
|
||||
<h2>Mettre le formulaire en surbrillance</h2>
|
||||
<p>Vous pouvez mettre en surbrillance les champs du formulaire ajoutés avec une certaine couleur.</p>
|
||||
|
@ -268,15 +411,13 @@
|
|||
<div id="highlight_settings">
|
||||
<img alt="Paramètres de surbrillance" src="../images/highlight_settings.png" />
|
||||
<ul>
|
||||
<li>accéder aux Paramètres de surbrillance sous l'onglet <b>Formulaire</b> de la barre d'outils supérieure,</li>
|
||||
<li>accédez aux <b>Paramètres de surbrillance</b> sous l'onglet <b>Formulaire</b> de la barre d'outils supérieure,</li>
|
||||
<li>choisissez une couleur de la palette de <b>Couleurs standard</b>. Le cas échéant, vous pouvez <b>ajouter une couleur personnalisée</b>,</li>
|
||||
<li>pour supprimer la mise en surbrillance actuelle, utilisez l'option <b>Pas de surbrillance</b>.</li>
|
||||
</ul>
|
||||
</div>
|
||||
<p>Les options de surbrillance activées seront appliquées à tous les champs du formulaire actuel.</p>
|
||||
<p class="note">
|
||||
<b>Remarque</b> : La bordure du champ du formulaire n'est pas visible lorsque vous sélectionnez ce champ. Ces bordures sont non imprimables.
|
||||
</p>
|
||||
<p class="note">La bordure du champ du formulaire n'est pas visible lorsque vous sélectionnez ce champ. Ces bordures sont non imprimables.</p>
|
||||
</details>
|
||||
</div>
|
||||
|
||||
|
@ -286,7 +427,7 @@
|
|||
</p>
|
||||
<p>Cliquez sur le bouton <b>Voir le formulaire</b> <span class = "icon icon-view_form_icon"></span> sous l'onglet <b>Formulaire</b> de la barre d'outils supérieure, pour afficher un aperçu du formulaire sur un document.</p>
|
||||
<p><img alt="Voir le formulaire actif" src="../images/view_form_active2.png" /></p>
|
||||
<p>Pour quitter le mode d'aperçu, cliquer sur la même icône encore une fois.</p>
|
||||
<p>Pour quitter le mode d'aperçu, cliquez sur la même icône encore une fois.</p>
|
||||
|
||||
<h2>Déplacer les champs du formulaire</h2>
|
||||
<p>Il est possible de déplacer les champs du formulaire vers un autre emplacement du document : cliquez sur le bouton à gauche de la bordure de contrôle et faites la glisser vers un autre emplacement sans relâcher le bouton de la souris.</p>
|
||||
|
@ -311,7 +452,7 @@
|
|||
<p>When you are finished, click the <div class = "icon icon-submit_form_icon"></div> <b>Submit</b> button at the top toolbar to send the form for further processing. Please note that this action cannot be undone.</p>
|
||||
<p class="note">If you are using the server version of ONLYOFFICE Docs, the presence of the <b>Submit</b> button depends on the configuration. Read <a href="https://api.onlyoffice.com/editors/config/editor/customization">this article</a> to learn more.</p>-->
|
||||
<h2>Supprimer les champs du formulaire</h2>
|
||||
<p>Pour supprimer un champ du formulaire et garder tous son contenu, sélectionnez-le et cliquez sur l'icône <b>Supprimer</b> <span class = "icon icon-combo_delete_values"></span> (assurez-vous que le champ n'est pas verrouillé) ou appuyez sur la touche <b>Supprimer</b> du clavier.</p>
|
||||
<p>Pour supprimer un champ du formulaire et garder tout son contenu, sélectionnez-le et cliquez sur l'icône <b>Supprimer</b> <span class = "icon icon-combo_delete_values"></span> (assurez-vous que le champ n'est pas verrouillé) ou appuyez sur la touche <b>Supprimer</b> du clavier.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -18,9 +18,9 @@
|
|||
<h3>Insérer un graphique</h3>
|
||||
<p>Pour insérer un graphique dans l'<a href="https://www.onlyoffice.com/fr/document-editor.aspx" target="_blank" onclick="onhyperlinkclick(this)"><b>Éditeur de Documents</b></a>,</p>
|
||||
<ol>
|
||||
<li>placez le curseur à l'endroit où vous voulez insérer un graphique,</li>
|
||||
<li>passez à l'onglet <b>Insertion</b> de la barre d'outils supérieure,</li>
|
||||
<li>cliquez sur l'icône <b>Graphique</b> <div class = "icon icon-insertchart"></div> de la barre d'outils supérieure,</li>
|
||||
<li>Placez le curseur à l'endroit où vous voulez insérer un graphique.</li>
|
||||
<li>Passez à l'onglet <b>Insertion</b> de la barre d'outils supérieure.</li>
|
||||
<li>Cliquez sur l'icône <b>Graphique</b> <div class = "icon icon-insertchart"></div> de la barre d'outils supérieure.</li>
|
||||
<li>
|
||||
choisissez le type de graphique approprié :
|
||||
<details class="details-example">
|
||||
|
@ -100,7 +100,7 @@
|
|||
<p class="note"> <b>Remarque</b> : <b>Éditeur de Documents ONLYOFFICE</b> prend en charge des graphiques <b>en pyramides</b>, <b>à barres (pyramides)</b>, <b>horizontal/vertical à cylindre</b>, <b>horizontal/vertical à cônes</b> qui étaient créés avec d’autres applications. Vous pouvez ouvrir le fichier comportant un tel graphique et le modifier.</p>
|
||||
</li>
|
||||
<li>
|
||||
lorsque la fenêtre <b>Éditeur du graphique</b> s'affiche, vous pouvez saisir les données à en utilisant des boutons suivants :
|
||||
Lorsque la fenêtre <b>Éditeur du graphique</b> s'affiche, vous pouvez saisir les données à en utilisant des boutons suivants :
|
||||
<ul>
|
||||
<li><div class = "icon icon-copy"></div> et <div class = "icon icon-paste"></div> pour copier et coller des données</li>
|
||||
<li><div class = "icon icon-undo1"></div> et <div class = "icon icon-redo1"></div> pour annuler et rétablir une action</li>
|
||||
|
@ -160,7 +160,7 @@
|
|||
<p><img alt="La fenêtre Type de graphique Combo" src="../../../../../../common/main/resources/help/fr/images/charttype_combo.png" /></p>
|
||||
</li>
|
||||
<li>
|
||||
paramétrer le graphique en cliquant sur <b>Modifier le graphique</b> dans la fenêtre <b>Éditeur du graphique.</b> La fenêtre <b>Graphique - Paramètres avancés</b> s'affiche.
|
||||
Paramétrer le graphique en cliquant sur <b>Modifier le graphique</b> dans la fenêtre <b>Éditeur du graphique.</b> La fenêtre <b>Graphique - Paramètres avancés</b> s'affiche.
|
||||
<p><img alt="La fenêtre Graphique - Paramètres avancés" src="../../../../../../common/main/resources/help/fr/images/chartsettings_layout.png" /></p>
|
||||
<p>L'onglet <b>Disposition</b> vous permet de modifier la disposition des éléments de graphique.</p>
|
||||
<ul>
|
||||
|
@ -188,7 +188,7 @@
|
|||
Spécifiez les paramètres des <b>Étiquettes de données</b> (c'est-à-dire les étiquettes de texte représentant les valeurs exactes des points de données) :<br />
|
||||
<ul>
|
||||
<li>
|
||||
spécifiez la position des <b>Étiquettes de données</b> par rapport aux points de données en sélectionnant l'option nécessaire dans la liste déroulante. Les options disponibles varient en fonction du type de graphique sélectionné.
|
||||
Spécifiez la position des <b>Étiquettes de données</b> par rapport aux points de données en sélectionnant l'option nécessaire dans la liste déroulante. Les options disponibles varient en fonction du type de graphique sélectionné.
|
||||
<ul>
|
||||
<li>Pour les graphiques en <b>Colonnes/Barres</b>, vous pouvez choisir les options suivantes : <b>Rien</b>, <b>Au</b> <b>centre</b>, <b>En haut</b> <b>à</b> <b>l'intérieur</b>, <b>En haut à</b> <b>l'intérieur</b>, <b>En haut à l'extérieur</b>.</li>
|
||||
<li>Pour les graphiques en <b>Ligne/ Nuage de points (XY)/Boursier</b>, vous pouvez choisir les options suivantes : <b>Rien</b>, <b>Au</b> <b>centre</b>, <b><b>À</b> gauche, À</b> <b>droite</b>, <b>En haut</b>, <b>En bas</b>.</li>
|
||||
|
@ -196,8 +196,8 @@
|
|||
<li>Pour les graphiques en <b>Aire</b> ainsi que pour les graphiques <b>3D en Colonnes</b>, <b>Ligne</b>, <b>Barres</b> et <b>Combo</b> vous pouvez choisir les options suivantes : <b>Rien</b>, <b>Au centre</b>.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>sélectionnez les données que vous souhaitez inclure dans vos étiquettes en cochant les cases correspondantes : <b>Nom de la série</b>, <b>Nom de la catégorie</b>, <b>Valeur</b>,</li>
|
||||
<li>entrez un caractère (virgule, point-virgule, etc.) que vous souhaitez utiliser pour séparer plusieurs étiquettes dans le champ de saisie <b>Séparateur d'étiquettes de données</b>.</li>
|
||||
<li>Sélectionnez les données que vous souhaitez inclure dans vos étiquettes en cochant les cases correspondantes : <b>Nom de la série</b>, <b>Nom de la catégorie</b>, <b>Valeur</b>,</li>
|
||||
<li>Entrez un caractère (virgule, point-virgule, etc.) que vous souhaitez utiliser pour séparer plusieurs étiquettes dans le champ de saisie <b>Séparateur d'étiquettes de données</b>.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><b>Lignes</b> - permet de choisir un style de ligne pour les graphiques en<b> Ligne/Nuage de points (XY</b>). Vous pouvez choisir parmi les options suivantes : <b>Droit</b> pour utiliser des lignes droites entre les points de données, <b>Lisse</b> pour utiliser des courbes lisses entre les points de données, ou<b> Rien</b> pour ne pas afficher les lignes.</li>
|
||||
|
@ -210,9 +210,9 @@
|
|||
<p>L'onglet <b>Axe vertical</b> vous permet de modifier les paramètres de l'axe vertical, également appelés axe des valeurs ou axe y, qui affiche des valeurs numériques. Notez que l'axe vertical sera l'axe des catégories qui affiche des étiquettes de texte pour les <b>Graphiques à barres</b>. Dans ce cas, les options de l'onglet <b>Axe vertical</b> correspondront à celles décrites dans la section suivante. Pour les Graphiques <b>Nuage de points (XY</b>), les deux axes sont des axes de valeur.</p>
|
||||
<p class="note"><b>Remarque</b> : les sections <b>Paramètres des axes</b> et <b>Quadrillage</b> seront désactivées pour les <b>Graphiques à secteurs</b>, car les graphiques de ce type n'ont ni axes ni lignes de quadrillage.</p>
|
||||
<ul>
|
||||
<li> sélectionnez <b>Masquer l'axe</b> pour masquer l'axe vertical du graphique, laissez cette option décochée pour afficher l'axe.</li>
|
||||
<li>Sélectionnez <b>Masquer l'axe</b> pour masquer l'axe vertical du graphique, laissez cette option décochée pour afficher l'axe.</li>
|
||||
<li>
|
||||
définissez l'orientation du Titre en choisissant l'option appropriée de la liste déroulante :
|
||||
Définissez l'orientation du Titre en choisissant l'option appropriée de la liste déroulante :
|
||||
<ul>
|
||||
<li><b>Rien</b> pour ne pas afficher le titre de l'axe vertical</li>
|
||||
<li><b>Incliné</b> pour afficher le titre de bas en haut à gauche de l'axe vertical,</li>
|
||||
|
@ -271,9 +271,9 @@
|
|||
<p><img alt="La fenêtre Graphique - Paramètres avancés" src="../../../../../../common/main/resources/help/fr/images/chartsettings_horizontalaxis.png" /></p>
|
||||
<p>L'onglet <b>Axe horizontal</b> vous permet de modifier les paramètres de l'axe horizontal, également appelés axe des catégories ou axe x, qui affiche des étiquettes textuels. Notez que l'axe horizontal sera l'axe des valeurs qui affiche des valeurs numériques pour les <b>Graphiques à barres</b>. Dans ce cas, les options de l'onglet <b>Axe horizontal</b> correspondent à celles décrites dans la section précédente. Pour les Graphiques <b>Nuage de points (XY</b>), les deux axes sont des axes de valeur.</p>
|
||||
<ul>
|
||||
<li> sélectionnez <b>Masquer l'axe</b> pour masquer l'axe horizontal du graphique, laissez cette option décochée pour afficher l'axe.</li>
|
||||
<li>Sélectionnez <b>Masquer l'axe</b> pour masquer l'axe horizontal du graphique, laissez cette option décochée pour afficher l'axe.</li>
|
||||
<li>
|
||||
définissez l'orientation du <b>Titre</b> en choisissant l'option appropriée de la liste déroulante :
|
||||
Définissez l'orientation du <b>Titre</b> en choisissant l'option appropriée de la liste déroulante :
|
||||
<ul>
|
||||
<li><b>Rien</b> pour ne pas afficher le titre de l'axe horizontal.</li>
|
||||
<li><b>Sans superposition</b> pour afficher le titre en-dessous de l'axe horizontal.</li>
|
||||
|
|
|
@ -73,12 +73,12 @@
|
|||
<p>To quickly reject all the changes, click the downward arrow below the <span class = "icon icon-review_rejecttoptoolbar"></span> <b>Reject</b> button and select the <b>Reject All Changes</b> option.</p>
|
||||
|
||||
<h3 id="comparisonnotes">Additional info on the comparison feature</h3>
|
||||
<h5>Method of the comparison</h5>
|
||||
<h4>Method of the comparison</h4>
|
||||
<p>Documents are compared <b>by words</b>. If a word contains a change of at least one character (e.g. if a character was removed or replaced), in the result, the difference will be displayed as the change of the entire word, not the character.</p>
|
||||
<p>The image below illustrates the case when the original file contains the word 'Characters' and the document for comparison contains the word 'Character'.</p>
|
||||
<p><img alt="Compare documents - method" src="../images/compare_method.png" /></p>
|
||||
|
||||
<h5>Authorship of the document</h5>
|
||||
<h4>Authorship of the document</h4>
|
||||
<p>When the comparison process is launched, the second document for comparison is being loaded and compared to the current one.</p>
|
||||
<ul>
|
||||
<li>If the loaded document contains some data which is not represented in the original document, the data will be marked as added by a reviewer.</li>
|
||||
|
@ -87,7 +87,7 @@
|
|||
<p>If the authors of the original and loaded documents are the same person, the reviewer is the same user. His/her name is displayed in the change balloon.</p>
|
||||
<p>If the authors of two files are different users, then the author of the second file loaded for comparison is the author of the added/removed changes.</p>
|
||||
|
||||
<h5>Presence of the tracked changes in the compared document</h5>
|
||||
<h4>Presence of the tracked changes in the compared document</h4>
|
||||
<p>If the original document contains some changes made in the review mode, they will be accepted in the comparison process. When you choose the second file for comparison, you'll see the corresponding warning message.</p>
|
||||
<p>In this case, when you choose the <b>Original</b> display mode, the document will not contain any changes.</p>
|
||||
</div>
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
</ul>
|
||||
</li>
|
||||
</ol>
|
||||
<p>I parametri di allineamento sono disponibili anche nella finestra <b>Paragrafo - Impostazioni avanzate.</b></p>
|
||||
<p>I parametri di allineamento sono disponibili anche nella finestra <b>Paragrafo - Impostazioni avanzate:</b></p>
|
||||
<ol>
|
||||
<li>fare clic con il pulsante destro del mouse sul testo e scegliere l'opzione <b>Impostazioni avanzate del paragrafo</b> dal menu contestuale o utilizzare l'opzione <b>Mostra impostazioni avanzate</b> nella barra laterale destra,</li>
|
||||
<li>aprire la finestra <b>Paragrafo - Impostazioni avanzate</b>, passare alla scheda <b>Rientri e spaziatura</b></li>
|
||||
|
|
|
@ -73,12 +73,12 @@
|
|||
<p>Чтобы быстро отклонить все изменения, нажмите направленную вниз стрелку под кнопкой <span class = "icon icon-review_rejecttoptoolbar"></span> <b>Отклонить</b> и выберите опцию <b>Отклонить все изменения</b>.</p>
|
||||
|
||||
<h3 id="comparisonnotes">Дополнительные сведения о функции сравнения</h3>
|
||||
<h5>Принцип сравнения</h5>
|
||||
<h4>Принцип сравнения</h4>
|
||||
<p>Сравнение документов ведется <b>по словам</b>. Если слово содержит изменение хотя бы на один символ (например, если символ был удален или заменен), в результате отличие будет отображено как изменение всего слова целиком, а не символа.</p>
|
||||
<p>Приведенное ниже изображение иллюстрирует случай, когда исходный файл содержит слово 'Символы', а документ для сравнения содержит слово 'Символ'.</p>
|
||||
<p><img alt="Сравнение документов - принцип" src="../images/compare_method.png" /></p>
|
||||
|
||||
<h5>Авторство документа</h5>
|
||||
<h4>Авторство документа</h4>
|
||||
<p>При запуске процесса сравнения документов второй документ для сравнения загружается и сравнивается с текущим.</p>
|
||||
<ul>
|
||||
<li>Если загруженный документ содержит данные, которые отсутствуют в исходном документе, они будут помечены как добавленные рецензентом.</li>
|
||||
|
@ -87,7 +87,7 @@
|
|||
<p>Если авторы исходного и загруженного документа совпадают, то рецензентом будет тот же пользователь. Его имя отображается во всплывающем окне с изменением.</p>
|
||||
<p>Если авторы двух файлов - разные пользователи, то автор второго файла, загруженного для сравнения, будет автором добавленных или удаленных изменений.</p>
|
||||
|
||||
<h5>Наличие рецензирования в сравниваемом документе</h5>
|
||||
<h4>Наличие рецензирования в сравниваемом документе</h4>
|
||||
<p>Если исходный документ содержит изменения, внесенные в режиме рецензирования, то в результате сравнения документа они будут приняты. При выборе второго файла для сравнения вы увидите соответствующее предупреждение.</p>
|
||||
<p>В этом случае при выборе режима отображения <b>Исходный документ</b> документ не будет содержать изменений.</p>
|
||||
</div>
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
</ul>
|
||||
</li>
|
||||
</ol>
|
||||
<p>Параметры выравнивания также доступны в окне <b>Абзац - дополнительные параметры</b>.</p>
|
||||
<p>Параметры выравнивания также доступны в окне <b>Абзац - дополнительные параметры</b>:</p>
|
||||
<ol>
|
||||
<li>щелкните по тексту правой кнопкой мыши и выберите в контекстном меню опцию <b>Дополнительные параметры абзаца</b> или используйте опцию <b>Дополнительные параметры</b> на правой боковой панели,</li>
|
||||
<li>откройте окно <b>Абзац - дополнительные параметры</b>, перейдите на вкладку <b>Отступы и интервалы</b>,</li>
|
||||
|
|
|
@ -18,11 +18,11 @@
|
|||
<h3>Вставка диаграммы</h3>
|
||||
<p>Для вставки диаграммы в документ:</p>
|
||||
<ol>
|
||||
<li>установите курсор там, где требуется поместить диаграмму,</li>
|
||||
<li>перейдите на вкладку <b>Вставка</b> верхней панели инструментов,</li>
|
||||
<li>щелкните по значку <div class = "icon icon-insertchart"></div> <b>Диаграмма</b> на верхней панели инструментов,</li>
|
||||
<li>Установите курсор там, где требуется поместить диаграмму.</li>
|
||||
<li>Перейдите на вкладку <b>Вставка</b> верхней панели инструментов.</li>
|
||||
<li>Щелкните по значку <div class = "icon icon-insertchart"></div> <b>Диаграмма</b> на верхней панели инструментов.</li>
|
||||
<li>
|
||||
выберите из доступных типов диаграммы:
|
||||
Выберите из доступных типов диаграммы:
|
||||
<details class="details-example">
|
||||
<summary>Гистограмма</summary>
|
||||
<ul>
|
||||
|
@ -99,7 +99,7 @@
|
|||
<p class="note"><b>Примечание</b>: <b>Редактор документов ONLYOFFICE</b> поддерживает следующие типы диаграмм, созданных в сторонних редакторах: <b>Пирамида</b>, <b>Гистограмма (пирамида)</b>, <b>Горизонтальные/Вертикальные цилиндры</b>, <b>Горизонтальные/вертикальные конусы</b>. Вы можете открыть файл, содержащий такую диаграмму, и изменить его, используя доступные инструменты редактирования диаграмм.</p>
|
||||
</li>
|
||||
<li>
|
||||
после этого появится окно <b>Редактор диаграмм</b>, в котором можно ввести в ячейки необходимые данные при помощи следующих элементов управления:
|
||||
После этого появится окно <b>Редактор диаграмм</b>, в котором можно ввести в ячейки необходимые данные при помощи следующих элементов управления:
|
||||
<ul>
|
||||
<li><div class = "icon icon-copy"></div> и <div class = "icon icon-paste"></div> для копирования и вставки скопированных данных</li>
|
||||
<li><div class = "icon icon-undo1"></div> и <div class = "icon icon-redo1"></div> для отмены и повтора действий</li>
|
||||
|
@ -153,13 +153,13 @@
|
|||
</ol>
|
||||
</li>
|
||||
<li>
|
||||
измените параметры диаграммы, нажав на кнопку <b>Изменить тип диаграммы</b> в окне <b>Редактор диаграмм</b>, чтобы выбрать тип и стиль диаграммы. Выберите диаграмму из доступных разделов: гистограмма, график, круговая, линейчатая, с областями, биржевая, точечная, комбинированные.
|
||||
Измените параметры диаграммы, нажав на кнопку <b>Изменить тип диаграммы</b> в окне <b>Редактор диаграмм</b>, чтобы выбрать тип и стиль диаграммы. Выберите диаграмму из доступных разделов: гистограмма, график, круговая, линейчатая, с областями, биржевая, точечная, комбинированные.
|
||||
<p><img alt="Окно Тип диаграммы" src="../../../../../../common/main/resources/help/ru/images/charttype.png" /></p>
|
||||
<p>Когда вы выбираете <b>Комбинированные диаграммы</b>, в окне <b>Тип диаграммы</b> расположены ряды диаграмм, для которых можно выбрать типы диаграмм и данные для размещения на вторичной оси.</p>
|
||||
<p><img alt="Chart Type Combo" src="../../../../../../common/main/resources/help/ru/images/charttype_combo.png" /></p>
|
||||
</li>
|
||||
<li>
|
||||
измените параметры диаграммы, нажав кнопку <b>Редактировать диаграмму</b> в окне <b>Редактор диаграмм</b>. Откроется окно <b>Диаграмма - Дополнительные настройки</b>.
|
||||
Измените параметры диаграммы, нажав кнопку <b>Редактировать диаграмму</b> в окне <b>Редактор диаграмм</b>. Откроется окно <b>Диаграмма - Дополнительные настройки</b>.
|
||||
<p><img alt="Окно Диаграмма - дополнительные параметры" src="../../../../../../common/main/resources/help/ru/images/chartsettings_layout.png" /></p>
|
||||
<p>На вкладке <b>Макет</b> можно изменить расположение элементов диаграммы:</p>
|
||||
<ul>
|
||||
|
@ -187,7 +187,7 @@
|
|||
Определите параметры <b>Подписей данных</b> (то есть текстовых подписей, показывающих точные значения элементов данных):<br />
|
||||
<ul>
|
||||
<li>
|
||||
укажите местоположение <b>Подписей данных</b> относительно элементов данных, выбрав нужную опцию из выпадающего списка. Доступные варианты зависят от выбранного типа диаграммы.
|
||||
Укажите местоположение <b>Подписей данных</b> относительно элементов данных, выбрав нужную опцию из выпадающего списка. Доступные варианты зависят от выбранного типа диаграммы.
|
||||
<ul>
|
||||
<li>Для <b>Гистограмм</b> и <b>Линейчатых</b> диаграмм можно выбрать следующие варианты: <b>Нет</b>, <b>По центру</b>, <b>Внутри снизу</b>, <b>Внутри сверху</b>, <b>Снаружи сверху</b>.</li>
|
||||
<li>Для <b>Графиков</b> и <b>Точечных</b> или <b>Биржевых</b> диаграмм можно выбрать следующие варианты: <b>Нет</b>, <b>По центру</b>, <b>Слева</b>, <b>Справа</b>, <b>Сверху</b>, <b>Снизу</b>.</li>
|
||||
|
@ -195,8 +195,8 @@
|
|||
<li>Для диаграмм <b>С областями</b>, а также для <b>Гистограмм</b>, <b>Графиков</b> и <b>Линейчатых</b> диаграмм в <b>формате 3D</b> можно выбрать следующие варианты: <b>Нет</b>, <b>По центру</b>.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>выберите данные, которые вы хотите включить в ваши подписи, поставив соответствующие флажки: <b>Имя ряда</b>, <b>Название категории</b>, <b>Значение</b>,</li>
|
||||
<li>введите символ (запятая, точка с запятой и т.д.), который вы хотите использовать для разделения нескольких подписей, в поле <b>Разделитель подписей данных</b>.</li>
|
||||
<li>Выберите данные, которые вы хотите включить в ваши подписи, поставив соответствующие флажки: <b>Имя ряда</b>, <b>Название категории</b>, <b>Значение</b>,</li>
|
||||
<li>Введите символ (запятая, точка с запятой и т.д.), который вы хотите использовать для разделения нескольких подписей, в поле <b>Разделитель подписей данных</b>.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><b>Линии</b> - используется для выбора типа линий для <b>линейчатых/точечных диаграмм</b>. Можно выбрать одну из следующих опций: <b>Прямые</b> для использования прямых линий между элементами данных, <b>Сглаженные</b> для использования сглаженных кривых линий между элементами данных или <b>Нет</b> для того, чтобы линии не отображались.</li>
|
||||
|
@ -209,9 +209,9 @@
|
|||
<p>Вкладка <b>Вертикальная ось</b> позволяет изменять параметры вертикальной оси, также называемой осью значений или осью Y, которая отображает числовые значения. Обратите внимание, что вертикальная ось будет осью категорий, которая отображает подпись для <b>Гистограмм</b>, таким образом, параметры вкладки <b>Вертикальная ось</b> будут соответствовать параметрам, описанным в следующем разделе. Для <b>Точечных диаграмм</b> обе оси являются осями значений.</p>
|
||||
<p class="note"><b>Примечание</b>: <b>Параметры оси</b> и <b>Линии сетки</b> недоступны для круговых диаграмм, так как у круговых диаграмм нет осей и линий сетки.</p>
|
||||
<ul>
|
||||
<li>нажмите <b>Скрыть ось</b>, чтобы скрыть вертикальную ось на диаграмме.</li>
|
||||
<li>Нажмите <b>Скрыть ось</b>, чтобы скрыть вертикальную ось на диаграмме.</li>
|
||||
<li>
|
||||
укажите ориентацию <b>Заголовка</b>, выбрав нужный вариант из раскрывающегося списка:
|
||||
Укажите ориентацию <b>Заголовка</b>, выбрав нужный вариант из раскрывающегося списка:
|
||||
<ul>
|
||||
<li><b>Нет</b> - не отображать название вертикальной оси,</li>
|
||||
<li><b>Повернутое</b> - показать название снизу вверх слева от вертикальной оси,</li>
|
||||
|
@ -290,9 +290,9 @@
|
|||
<p><img alt="Диаграмма - окно дополнительные параметры" src="../../../../../../common/main/resources/help/ru/images/chartsettings_horizontalaxis.png" /></p>
|
||||
<p>Вкладка <b>Горизонтальная ось</b> позволяет изменять параметры горизонтальной оси, также называемой осью категорий или осью x, которая отображает текстовые метки. Обратите внимание, что горизонтальная ось будет осью значений, которая отображает числовые значения для <b>Гистограмм</b>, поэтому в этом случае параметры вкладки <b>Горизонтальная ось</b> будут соответствовать параметрам, описанным в предыдущем разделе. Для <b>Точечных диаграмм</b> обе оси являются осями значений.</p>
|
||||
<ul>
|
||||
<li>нажмите <b>Скрыть ось</b>, чтобы скрыть горизонтальную ось на диаграмме.</li>
|
||||
<li>Нажмите <b>Скрыть ось</b>, чтобы скрыть горизонтальную ось на диаграмме.</li>
|
||||
<li>
|
||||
укажите ориентацию <b>Заголовка</b>, выбрав нужный вариант из раскрывающегося списка:
|
||||
Укажите ориентацию <b>Заголовка</b>, выбрав нужный вариант из раскрывающегося списка:
|
||||
<ul>
|
||||
<li><b>Нет</b> - не отображать заголовок горизонтальной оси,</li>
|
||||
<li><b>Без наложения</b> - отображать заголовок под горизонтальной осью,</li>
|
||||
|
|
|
@ -455,7 +455,10 @@
|
|||
"txtEditingMode": "Redaktə rejimini təyin edin...",
|
||||
"uploadImageTextText": "Təsvir yüklənir...",
|
||||
"uploadImageTitleText": "Təsvir Yüklənir",
|
||||
"waitText": "Lütfən, gözləyin..."
|
||||
"waitText": "Lütfən, gözləyin...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Xəta",
|
||||
|
|
|
@ -455,7 +455,10 @@
|
|||
"txtEditingMode": "Актывацыя рэжыму рэдагавання…",
|
||||
"uploadImageTextText": "Запампоўванне выявы…",
|
||||
"uploadImageTitleText": "Запампоўванне выявы",
|
||||
"waitText": "Калі ласка, пачакайце..."
|
||||
"waitText": "Калі ласка, пачакайце...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Памылка",
|
||||
|
|
|
@ -458,7 +458,10 @@
|
|||
"txtEditingMode": "Set editing mode...",
|
||||
"uploadImageTextText": "Uploading image...",
|
||||
"uploadImageTitleText": "Uploading Image",
|
||||
"waitText": "Please, wait..."
|
||||
"waitText": "Please, wait...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Error",
|
||||
|
|
|
@ -455,7 +455,10 @@
|
|||
"txtEditingMode": "Estableix el mode d'edició ...",
|
||||
"uploadImageTextText": "S'està carregant la imatge...",
|
||||
"uploadImageTitleText": "S'està carregant la imatge",
|
||||
"waitText": "Espereu..."
|
||||
"waitText": "Espereu...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Error",
|
||||
|
|
|
@ -455,7 +455,10 @@
|
|||
"txtEditingMode": "Nastavit režim úprav…",
|
||||
"uploadImageTextText": "Nahrávání obrázku...",
|
||||
"uploadImageTitleText": "Nahrávání obrázku",
|
||||
"waitText": "Čekejte prosím..."
|
||||
"waitText": "Čekejte prosím...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Chyba",
|
||||
|
|
|
@ -458,7 +458,10 @@
|
|||
"txtEditingMode": "Set editing mode...",
|
||||
"uploadImageTextText": "Uploading image...",
|
||||
"uploadImageTitleText": "Uploading Image",
|
||||
"waitText": "Please, wait..."
|
||||
"waitText": "Please, wait...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Error",
|
||||
|
|
|
@ -455,7 +455,10 @@
|
|||
"txtEditingMode": "Bearbeitungsmodul wird festgelegt...",
|
||||
"uploadImageTextText": "Bild wird hochgeladen...",
|
||||
"uploadImageTitleText": "Bild wird hochgeladen",
|
||||
"waitText": "Bitte warten..."
|
||||
"waitText": "Bitte warten...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Fehler",
|
||||
|
|
|
@ -455,7 +455,10 @@
|
|||
"txtEditingMode": "Ορισμός κατάστασης επεξεργασίας...",
|
||||
"uploadImageTextText": "Μεταφόρτωση εικόνας...",
|
||||
"uploadImageTitleText": "Μεταφόρτωση Εικόνας",
|
||||
"waitText": "Παρακαλούμε, περιμένετε..."
|
||||
"waitText": "Παρακαλούμε, περιμένετε...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Σφάλμα",
|
||||
|
|
|
@ -455,7 +455,10 @@
|
|||
"txtEditingMode": "Set editing mode...",
|
||||
"uploadImageTextText": "Uploading image...",
|
||||
"uploadImageTitleText": "Uploading Image",
|
||||
"waitText": "Please, wait..."
|
||||
"waitText": "Please, wait...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Error",
|
||||
|
|
|
@ -455,7 +455,10 @@
|
|||
"txtEditingMode": "Establecer el modo de edición...",
|
||||
"uploadImageTextText": "Cargando imagen...",
|
||||
"uploadImageTitleText": "Cargando imagen",
|
||||
"waitText": "Por favor, espere..."
|
||||
"waitText": "Por favor, espere...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Error",
|
||||
|
|
|
@ -455,7 +455,10 @@
|
|||
"txtEditingMode": "Ezarri edizio modua...",
|
||||
"uploadImageTextText": "Irudia kargatzen...",
|
||||
"uploadImageTitleText": "Irudia kargatzen",
|
||||
"waitText": "Mesedez, itxaron..."
|
||||
"waitText": "Mesedez, itxaron...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Errorea",
|
||||
|
|
|
@ -458,7 +458,10 @@
|
|||
"txtEditingMode": "Set editing mode...",
|
||||
"uploadImageTextText": "Uploading image...",
|
||||
"uploadImageTitleText": "Uploading Image",
|
||||
"waitText": "Please, wait..."
|
||||
"waitText": "Please, wait...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Error",
|
||||
|
|
|
@ -455,7 +455,10 @@
|
|||
"txtEditingMode": "Réglage mode d'édition...",
|
||||
"uploadImageTextText": "Chargement d'une image en cours...",
|
||||
"uploadImageTitleText": "Chargement d'une image",
|
||||
"waitText": "Veuillez patienter..."
|
||||
"waitText": "Veuillez patienter...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Erreur",
|
||||
|
|
|
@ -455,7 +455,10 @@
|
|||
"txtEditingMode": "Establecer o modo de edición...",
|
||||
"uploadImageTextText": "Cargando imaxe...",
|
||||
"uploadImageTitleText": "Cargando imaxe",
|
||||
"waitText": "Agarde..."
|
||||
"waitText": "Agarde...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Erro",
|
||||
|
|
|
@ -455,7 +455,10 @@
|
|||
"txtEditingMode": "Szerkesztési mód beállítása...",
|
||||
"uploadImageTextText": "Kép feltöltése...",
|
||||
"uploadImageTitleText": "Kép feltöltése",
|
||||
"waitText": "Kérjük, várjon..."
|
||||
"waitText": "Kérjük, várjon...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Hiba",
|
||||
|
|
|
@ -455,7 +455,10 @@
|
|||
"txtEditingMode": "Սահմանել ցուցակի խմբագրում․․․",
|
||||
"uploadImageTextText": "Նկարի վերբեռնում...",
|
||||
"uploadImageTitleText": "Նկարի վերբեռնում",
|
||||
"waitText": "Խնդրում ենք սպասել..."
|
||||
"waitText": "Խնդրում ենք սպասել...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Սխալ",
|
||||
|
|
|
@ -455,7 +455,10 @@
|
|||
"txtEditingMode": "Atur mode editing...",
|
||||
"uploadImageTextText": "Mengunggah gambar...",
|
||||
"uploadImageTitleText": "Mengunggah Gambar",
|
||||
"waitText": "Silahkan menunggu"
|
||||
"waitText": "Silahkan menunggu",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Kesalahan",
|
||||
|
|
|
@ -455,7 +455,10 @@
|
|||
"txtEditingMode": "Impostare la modalità di modifica...",
|
||||
"uploadImageTextText": "Caricamento dell'immagine...",
|
||||
"uploadImageTitleText": "Caricamento dell'immagine",
|
||||
"waitText": "Attendere prego..."
|
||||
"waitText": "Attendere prego...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Errore",
|
||||
|
|
|
@ -455,7 +455,10 @@
|
|||
"txtEditingMode": "編集モードを設定します...",
|
||||
"uploadImageTextText": "イメージのアップロード中...",
|
||||
"uploadImageTitleText": "イメージのアップロード中",
|
||||
"waitText": "少々お待ちください..."
|
||||
"waitText": "少々お待ちください...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "エラー",
|
||||
|
|
|
@ -455,7 +455,10 @@
|
|||
"txtEditingMode": "편집 모드 설정 ...",
|
||||
"uploadImageTextText": "이미지 업로드 중 ...",
|
||||
"uploadImageTitleText": "이미지 업로드 중",
|
||||
"waitText": "잠시만 기다려주세요..."
|
||||
"waitText": "잠시만 기다려주세요...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "오류",
|
||||
|
|
|
@ -455,7 +455,10 @@
|
|||
"txtEditingMode": "ຕັ້ງຄ່າຮູບແບບການແກ້ໄຂ...",
|
||||
"uploadImageTextText": "ກໍາລັງອັບໂຫລດຮູບພາບ...",
|
||||
"uploadImageTitleText": "ກໍາລັງອັບໂຫລດຮູບພາບ",
|
||||
"waitText": "ກະລຸນາລໍຖ້າ..."
|
||||
"waitText": "ກະລຸນາລໍຖ້າ...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "ຂໍ້ຜິດພາດ",
|
||||
|
|
|
@ -458,7 +458,10 @@
|
|||
"txtEditingMode": "Set editing mode...",
|
||||
"uploadImageTextText": "Uploading image...",
|
||||
"uploadImageTitleText": "Uploading Image",
|
||||
"waitText": "Please, wait..."
|
||||
"waitText": "Please, wait...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Error",
|
||||
|
|
|
@ -455,7 +455,10 @@
|
|||
"txtEditingMode": "Tetapkan mod pengeditan…",
|
||||
"uploadImageTextText": "Imej dimuat naik…",
|
||||
"uploadImageTitleText": "Imej dimuat naik",
|
||||
"waitText": "Sila, tunggu…"
|
||||
"waitText": "Sila, tunggu…",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Ralat",
|
||||
|
|
|
@ -458,7 +458,10 @@
|
|||
"txtEditingMode": "Set editing mode...",
|
||||
"uploadImageTextText": "Uploading image...",
|
||||
"uploadImageTitleText": "Uploading Image",
|
||||
"waitText": "Please, wait..."
|
||||
"waitText": "Please, wait...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Error",
|
||||
|
|
|
@ -455,7 +455,10 @@
|
|||
"txtEditingMode": "Bewerkmodus instellen...",
|
||||
"uploadImageTextText": "Afbeelding wordt geüpload...",
|
||||
"uploadImageTitleText": "Afbeelding wordt geüpload",
|
||||
"waitText": "Een moment geduld..."
|
||||
"waitText": "Een moment geduld...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Fout",
|
||||
|
|
|
@ -458,7 +458,10 @@
|
|||
"txtEditingMode": "Set editing mode...",
|
||||
"uploadImageTextText": "Uploading image...",
|
||||
"uploadImageTitleText": "Uploading Image",
|
||||
"waitText": "Please, wait..."
|
||||
"waitText": "Please, wait...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Error",
|
||||
|
|
|
@ -455,7 +455,10 @@
|
|||
"txtEditingMode": "Definir modo de edição…",
|
||||
"uploadImageTextText": "A carregar imagem...",
|
||||
"uploadImageTitleText": "A carregar imagem",
|
||||
"waitText": "Aguarde..."
|
||||
"waitText": "Aguarde...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Erro",
|
||||
|
|
|
@ -455,7 +455,10 @@
|
|||
"txtEditingMode": "Definir modo de edição...",
|
||||
"uploadImageTextText": "Carregando imagem...",
|
||||
"uploadImageTitleText": "Carregando imagem",
|
||||
"waitText": "Por favor, aguarde..."
|
||||
"waitText": "Por favor, aguarde...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Erro",
|
||||
|
|
|
@ -455,7 +455,10 @@
|
|||
"txtEditingMode": "Setare modul de editare...",
|
||||
"uploadImageTextText": "Încărcarea imaginii...",
|
||||
"uploadImageTitleText": "Încărcarea imaginii",
|
||||
"waitText": "Vă rugăm să așteptați..."
|
||||
"waitText": "Vă rugăm să așteptați...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Eroare",
|
||||
|
|
|
@ -455,7 +455,10 @@
|
|||
"txtEditingMode": "Установка режима редактирования...",
|
||||
"uploadImageTextText": "Загрузка рисунка...",
|
||||
"uploadImageTitleText": "Загрузка рисунка",
|
||||
"waitText": "Пожалуйста, подождите..."
|
||||
"waitText": "Пожалуйста, подождите...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Ошибка",
|
||||
|
|
|
@ -455,7 +455,10 @@
|
|||
"txtEditingMode": "Nastaviť režim úprav ...",
|
||||
"uploadImageTextText": "Nahrávanie obrázku...",
|
||||
"uploadImageTitleText": "Nahrávanie obrázku",
|
||||
"waitText": "Čakajte, prosím..."
|
||||
"waitText": "Čakajte, prosím...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Chyba",
|
||||
|
|
|
@ -683,7 +683,10 @@
|
|||
"txtEditingMode": "Set editing mode...",
|
||||
"uploadImageTextText": "Uploading image...",
|
||||
"uploadImageTitleText": "Uploading Image",
|
||||
"waitText": "Please, wait..."
|
||||
"waitText": "Please, wait...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
|
|
|
@ -458,7 +458,10 @@
|
|||
"txtEditingMode": "Set editing mode...",
|
||||
"uploadImageTextText": "Uploading image...",
|
||||
"uploadImageTitleText": "Uploading Image",
|
||||
"waitText": "Please, wait..."
|
||||
"waitText": "Please, wait...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Error",
|
||||
|
|
|
@ -455,7 +455,10 @@
|
|||
"txtEditingMode": "Düzenleme modunu belirle...",
|
||||
"uploadImageTextText": "Resim yükleniyor...",
|
||||
"uploadImageTitleText": "Resim Yükleniyor",
|
||||
"waitText": "Lütfen bekleyin..."
|
||||
"waitText": "Lütfen bekleyin...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Hata",
|
||||
|
|
|
@ -455,7 +455,10 @@
|
|||
"txtEditingMode": "Встановити режим редагування ...",
|
||||
"uploadImageTextText": "Завантаження зображення...",
|
||||
"uploadImageTitleText": "Завантаження зображення",
|
||||
"waitText": "Будь ласка, зачекайте..."
|
||||
"waitText": "Будь ласка, зачекайте...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Помилка",
|
||||
|
|
|
@ -458,7 +458,10 @@
|
|||
"txtEditingMode": "Set editing mode...",
|
||||
"uploadImageTextText": "Uploading image...",
|
||||
"uploadImageTitleText": "Uploading Image",
|
||||
"waitText": "Please, wait..."
|
||||
"waitText": "Please, wait...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Error",
|
||||
|
|
|
@ -455,7 +455,10 @@
|
|||
"txtEditingMode": "設定編輯模式...",
|
||||
"uploadImageTextText": "正在上傳圖片...",
|
||||
"uploadImageTitleText": "上傳圖片中",
|
||||
"waitText": "請耐心等待..."
|
||||
"waitText": "請耐心等待...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "錯誤",
|
||||
|
|
|
@ -455,7 +455,10 @@
|
|||
"txtEditingMode": "设置编辑模式..",
|
||||
"uploadImageTextText": "上传图片...",
|
||||
"uploadImageTitleText": "图片上传中",
|
||||
"waitText": "请稍候..."
|
||||
"waitText": "请稍候...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "错误",
|
||||
|
|
|
@ -29,6 +29,7 @@ const LongActionsController = inject('storeAppOptions')(({storeAppOptions}) => {
|
|||
api.asc_registerCallback('asc_onStartAction', onLongActionBegin);
|
||||
api.asc_registerCallback('asc_onEndAction', onLongActionEnd);
|
||||
api.asc_registerCallback('asc_onOpenDocumentProgress', onOpenDocument);
|
||||
api.asc_registerCallback('asc_onConfirmAction', onConfirmAction);
|
||||
};
|
||||
|
||||
const api = Common.EditorApi.get();
|
||||
|
@ -45,6 +46,7 @@ const LongActionsController = inject('storeAppOptions')(({storeAppOptions}) => {
|
|||
api.asc_unregisterCallback('asc_onStartAction', onLongActionBegin);
|
||||
api.asc_unregisterCallback('asc_onEndAction', onLongActionEnd);
|
||||
api.asc_unregisterCallback('asc_onOpenDocumentProgress', onOpenDocument);
|
||||
api.asc_unregisterCallback('asc_onConfirmAction', onConfirmAction);
|
||||
}
|
||||
|
||||
Common.Notifications.off('engineCreated', on_engine_created);
|
||||
|
@ -194,6 +196,29 @@ const LongActionsController = inject('storeAppOptions')(({storeAppOptions}) => {
|
|||
|
||||
};
|
||||
|
||||
const onConfirmAction = (id, apiCallback, data) => {
|
||||
const api = Common.EditorApi.get();
|
||||
|
||||
if (id === Asc.c_oAscConfirm.ConfirmMaxChangesSize) {
|
||||
f7.dialog.create({
|
||||
title: _t.notcriticalErrorTitle,
|
||||
text: _t.confirmMaxChangesSize,
|
||||
buttons: [
|
||||
{text: _t.textUndo,
|
||||
onClick: () => {
|
||||
if (apiCallback) apiCallback(true);
|
||||
}
|
||||
},
|
||||
{text: _t.textContinue,
|
||||
onClick: () => {
|
||||
if (apiCallback) apiCallback(false);
|
||||
}
|
||||
}
|
||||
],
|
||||
}).open();
|
||||
}
|
||||
};
|
||||
|
||||
const onOpenDocument = (progress) => {
|
||||
if (loadMask && loadMask.el) {
|
||||
const $title = loadMask.el.getElementsByClassName('dialog-title')[0];
|
||||
|
|
|
@ -530,7 +530,7 @@ const EditShape = props => {
|
|||
|
||||
if (controlProps) {
|
||||
let spectype = controlProps.get_SpecificType();
|
||||
fixedSize = (spectype == Asc.c_oAscContentControlSpecificType.CheckBox || spectype == Asc. c_oAscContentControlSpecificType.ComboBox || spectype == Asc.c_oAscContentControlSpecificType.DropDownList || spectype == Asc.c_oAscContentControlSpecificType.None || spectype == Asc.c_oAscContentControlSpecificType.Picture) && controlProps.get_FormPr() && controlProps.get_FormPr().get_Fixed();
|
||||
fixedSize = (spectype == Asc.c_oAscContentControlSpecificType.CheckBox || spectype == Asc. c_oAscContentControlSpecificType.ComboBox || spectype == Asc.c_oAscContentControlSpecificType.DropDownList || spectype == Asc.c_oAscContentControlSpecificType.None || spectype == Asc.c_oAscContentControlSpecificType.Picture || spectype == Asc.c_oAscContentControlSpecificType.Complex) && controlProps.get_FormPr() && controlProps.get_FormPr().get_Fixed();
|
||||
}
|
||||
|
||||
let disableRemove = !!props.storeFocusObjects.paragraphObject || (lockType == Asc.c_oAscSdtLockType.SdtContentLocked || lockType == Asc.c_oAscSdtLockType.SdtLocked);
|
||||
|
|
|
@ -271,6 +271,7 @@ define([
|
|||
this.showHistory();
|
||||
}
|
||||
break;
|
||||
case 'external-help': close_menu = true; break;
|
||||
default: close_menu = false;
|
||||
}
|
||||
|
||||
|
|
|
@ -844,6 +844,7 @@ define([
|
|||
me.api.asc_registerCallback('asc_onEndAction', _.bind(me.onLongActionEnd, me));
|
||||
me.api.asc_registerCallback('asc_onCoAuthoringDisconnect', _.bind(me.onCoAuthoringDisconnect, me));
|
||||
me.api.asc_registerCallback('asc_onPrint', _.bind(me.onPrint, me));
|
||||
me.api.asc_registerCallback('asc_onConfirmAction', _.bind(me.onConfirmAction, me));
|
||||
|
||||
appHeader.setDocumentCaption( me.api.asc_getDocumentName() );
|
||||
me.updateWindowTitle(true);
|
||||
|
@ -2624,6 +2625,24 @@ define([
|
|||
})
|
||||
},
|
||||
|
||||
onConfirmAction: function(id, apiCallback, data) {
|
||||
var me = this;
|
||||
if (id == Asc.c_oAscConfirm.ConfirmMaxChangesSize) {
|
||||
Common.UI.warning({
|
||||
title: this.notcriticalErrorTitle,
|
||||
msg: this.confirmMaxChangesSize,
|
||||
buttons: [{value: 'ok', caption: this.textUndo, primary: true}, {value: 'cancel', caption: this.textContinue}],
|
||||
maxwidth: 600,
|
||||
callback: _.bind(function(btn) {
|
||||
if (apiCallback) {
|
||||
apiCallback(btn === 'ok');
|
||||
}
|
||||
me.onEditComplete();
|
||||
}, this)
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
// Translation
|
||||
leavePageText: 'You have unsaved changes in this document. Click \'Stay on this Page\' then \'Save\' to save them. Click \'Leave this Page\' to discard all the unsaved changes.',
|
||||
criticalErrorTitle: 'Error',
|
||||
|
@ -2997,7 +3016,10 @@ define([
|
|||
textLearnMore: 'Learn More',
|
||||
textReconnect: 'Connection is restored',
|
||||
textRequestMacros: 'A macro makes a request to URL. Do you want to allow the request to the %1?',
|
||||
textRememberMacros: 'Remember my choice for all macros'
|
||||
textRememberMacros: 'Remember my choice for all macros',
|
||||
confirmMaxChangesSize: 'The size of actions exceeds the limitation set for your server.<br>Press "Undo" to cancel your last action or press "Continue" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).',
|
||||
textUndo: 'Undo',
|
||||
textContinue: 'Continue'
|
||||
}
|
||||
})(), PE.Controllers.Main || {}))
|
||||
});
|
||||
|
|
|
@ -69,6 +69,13 @@ define([
|
|||
var item = _.findWhere(this.items, {el: event.currentTarget});
|
||||
if (item) {
|
||||
var panel = this.panels[item.options.action];
|
||||
if (item.options.action === 'help') {
|
||||
if ( panel.noHelpContents === true && navigator.onLine ) {
|
||||
this.fireEvent('item:click', [this, 'external-help', true]);
|
||||
window.open(panel.urlHelpCenter, '_blank');
|
||||
return;
|
||||
}
|
||||
}
|
||||
this.fireEvent('item:click', [this, item.options.action, !!panel]);
|
||||
|
||||
if (panel) {
|
||||
|
|
|
@ -1507,6 +1507,7 @@ define([
|
|||
this.menu = options.menu;
|
||||
this.urlPref = 'resources/help/{{DEFAULT_LANG}}/';
|
||||
this.openUrl = null;
|
||||
this.urlHelpCenter = '{{HELP_CENTER_WEB_PE}}';
|
||||
|
||||
this.en_data = [
|
||||
{"src": "ProgramInterface/ProgramInterface.htm", "name": "Introducing Presentation Editor user interface", "headername": "Program Interface"},
|
||||
|
@ -1612,9 +1613,10 @@ define([
|
|||
store.fetch(config);
|
||||
} else {
|
||||
if ( Common.Controllers.Desktop.isActive() ) {
|
||||
if ( store.contentLang === '{{DEFAULT_LANG}}' || !Common.Controllers.Desktop.helpUrl() )
|
||||
if ( store.contentLang === '{{DEFAULT_LANG}}' || !Common.Controllers.Desktop.helpUrl() ) {
|
||||
me.noHelpContents = true;
|
||||
me.iFrame.src = '../../common/main/resources/help/download.html';
|
||||
else {
|
||||
} else {
|
||||
store.contentLang = store.contentLang === lang ? '{{DEFAULT_LANG}}' : lang;
|
||||
me.urlPref = Common.Controllers.Desktop.helpUrl() + '/' + store.contentLang + '/';
|
||||
store.url = me.urlPref + 'Contents.json';
|
||||
|
|
|
@ -1168,6 +1168,9 @@
|
|||
"PE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact %1 sales team for personal upgrade terms.",
|
||||
"PE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
|
||||
"PE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
||||
"PE.Controllers.Main.confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"PE.Controllers.Main.textUndo": "Undo",
|
||||
"PE.Controllers.Main.textContinue": "Continue",
|
||||
"PE.Controllers.Search.notcriticalErrorTitle": "Warning",
|
||||
"PE.Controllers.Search.textNoTextFound": "The data you have been searching for could not be found. Please adjust your search options.",
|
||||
"PE.Controllers.Search.textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.",
|
||||
|
|
|
@ -28,12 +28,12 @@
|
|||
</div>
|
||||
<p>Sie können:</p>
|
||||
<ul>
|
||||
<li><a href="../UsageInstructions/AddingAnimations.htm#applyanimation"><b>Animationseffekte</b></a> auswählen,</li>
|
||||
<li><a href="../UsageInstructions/AddingAnimations.htm#applyanimation">Animationseffekte</a> auswählen,</li>
|
||||
<li>für jeden Animationseffekt die geeigneten <b>Bewegungsparameter</b> festlegen,</li>
|
||||
<li><a href="../UsageInstructions/AddingAnimations.htm#multipleanimations"><b>mehrere Animationen</b></a> hinzufügen,</li>
|
||||
<li>die <a href="../UsageInstructions/AddingAnimations.htm#animationsorder"><b>Reihenfolge</b></a> der Animationseffekte mit den Optionen <b>Aufwärts schweben</b> oder <b>Abwärts schweben</b> ändern,</li>
|
||||
<li><a href="../UsageInstructions/AddingAnimations.htm#multipleanimations">mehrere Animationen</a> hinzufügen,</li>
|
||||
<li>die <a href="../UsageInstructions/AddingAnimations.htm#animationsorder">Reihenfolge</a> der Animationseffekte mit den Optionen <b>Aufwärts schweben</b> oder <b>Abwärts schweben</b> ändern,</li>
|
||||
<li><b>Vorschau</b> des Animationseffekts aktivieren,</li>
|
||||
<li>die <a href="../UsageInstructions/AddingAnimations.htm#timing"><b>Timing-Optionen</b></a> wie <b>Dauer</b>, <b>Verzögern</b> und <b>Wiederholen</b> für Animationseffekte festlegen,</li>
|
||||
<li>die <a href="../UsageInstructions/AddingAnimations.htm#timing">Timing-Optionen</a> wie <b>Dauer</b>, <b>Verzögern</b> und <b>Wiederholen</b> für Animationseffekte festlegen,</li>
|
||||
<li>die Option <b>Zurückspulen</b> aktivieren und deaktivieren.</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
|
|
@ -46,11 +46,12 @@
|
|||
<li>
|
||||
Die Symbole in der <b>linken Seitenleiste</b>:
|
||||
<ul>
|
||||
<li>mithilfe der Funktion <div class = "icon icon-searchicon"></div> können Sie den Text <a href="../HelpfulHints/Search.htm" onclick="onhyperlinkclick(this)">suchen und ersetzen</a>,</li>
|
||||
<li><div class = "icon icon-commentsicon"></div> öffnet die <a href="../HelpfulHints/CollaborativeEditing.htm#comments" onclick="onhyperlinkclick(this)">Kommentarfunktion</a>,</li>
|
||||
<li class="onlineDocumentFeatures"><div class = "icon icon-chaticon"></div> - (nur in der <em>Online-Version</em> verfügbar) hier können Sie das <a href="../HelpfulHints/CollaborativeEditing.htm#chat" onclick="onhyperlinkclick(this)">Chatfenster</a> öffnen,</li>
|
||||
<li class="onlineDocumentFeatures"><div class = "icon icon-feedbackicon"></div> - (nur in der <em>Online-Version</em> verfügbar) kontaktieren Sie under Support-Team,</li>
|
||||
<li class="onlineDocumentFeatures"><div class = "icon icon-about"></div> - (nur in der <em>Online-Version</em> verfügbar) sehen Sie sich die Programminformationen an.</li>
|
||||
<li>mithilfe der Funktion <div class="icon icon-searchicon"></div> können Sie den Text <a href="../HelpfulHints/Search.htm" onclick="onhyperlinkclick(this)">suchen und ersetzen</a>,</li>
|
||||
<li><div class="icon icon-slides"></div> - ermöglicht das Anzeigen von Folien und das Navigieren,</li>
|
||||
<li><div class="icon icon-commentsicon"></div> öffnet die <a href="../HelpfulHints/CollaborativeEditing.htm#comments" onclick="onhyperlinkclick(this)">Kommentarfunktion</a>,</li>
|
||||
<li class="onlineDocumentFeatures"><div class="icon icon-chaticon"></div> - (nur in der <em>Online-Version</em> verfügbar) hier können Sie das <a href="../HelpfulHints/CollaborativeEditing.htm#chat" onclick="onhyperlinkclick(this)">Chatfenster</a> öffnen,</li>
|
||||
<li class="onlineDocumentFeatures"><div class="icon icon-feedbackicon"></div> - (nur in der <em>Online-Version</em> verfügbar) kontaktieren Sie under Support-Team,</li>
|
||||
<li class="onlineDocumentFeatures"><div class="icon icon-about"></div> - (nur in der <em>Online-Version</em> verfügbar) sehen Sie sich die Programminformationen an.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Über die rechte <b>Randleiste</b> können zusätzliche Parameter von verschiedenen Objekten angepasst werden. Wenn Sie ein bestimmtes Objekt auf der Folie auswählen, wird die entsprechende Schaltfläche auf der rechten Randleiste aktiviert. Um die Randleiste zu erweitern, klicken Sie diese Schaltfläche an.</li>
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
<p>Um die eingefügte Fußzeile zu bearbeiten, klicken Sie die Schaltfläche <span class="icon icon-header_footer_icon"></span> <b>Fußzeile bearbeiten</b> in der oberen Symbolleiste an, konfigurieren Sie die gewünschte Einstellungen im Fenster <b>Fußzeileneinstellungen</b> und klicken Sie auf <b>Anwenden</b> oder <b>Auf alle anwenden</b>, um die Änderungen zu speichern.</p>
|
||||
<h3>Das Datum und die Uhrzeit oder die Foliennummer im Textfeld einfügen</h3>
|
||||
<p>Sie können das Datum und die Uhrzeit oder die Foliennummer im aktiven Textfeld durch die entsprechenden Schaltflächen auf der Registerkarte <b>Einfügen</b> in der oberen Symbolleiste einfügen.</p>
|
||||
<h5>Das Datum und die Uhrzeit einfügen</h5>
|
||||
<h4>Das Datum und die Uhrzeit einfügen</h4>
|
||||
<ol>
|
||||
<li>Positionieren Sie den Mauscursor im Textfeld, wo Sie das Datum und die Uhrzeit einfügen möchten,</li>
|
||||
<li>klicken Sie die Schaltfläche <div class = "icon icon-date_time_icon"></div> <b>Datum und Uhrzeit</b> auf der Registerkarte <b>Einfügen</b> in der oberen Symbolleiste an,</li>
|
||||
|
@ -60,7 +60,7 @@
|
|||
<li>wählen Sie das gewünschte Format im Fenster <b>Datum und Uhrzeit</b>,</li>
|
||||
<li>klicken Sie auf <b>OK</b>.</li>
|
||||
</ol>
|
||||
<h5>Die Foliennummer einfügen</h5>
|
||||
<h4>Die Foliennummer einfügen</h4>
|
||||
<ol>
|
||||
<li>Positionieren Sie den Mauscursor im Textfeld, wo Sie die Foliennummer einfügen möchten.</li>
|
||||
<li>Klicken Sie die Schaltfläche <div class = "icon icon-slide_number_icon"></div> Foliennummer auf der Registerkarte <b>Einfügen</b> in der oberen Symbolleiste an.</li>
|
||||
|
|
|
@ -28,12 +28,12 @@
|
|||
</div>
|
||||
<p>Using this tab, you can:</p>
|
||||
<ul>
|
||||
<li>select an <a href="../UsageInstructions/AddingAnimations.htm#applyanimation"><b>animation effect</b></a>,</li>
|
||||
<li>select an <a href="../UsageInstructions/AddingAnimations.htm#applyanimation">animation effect</a>,</li>
|
||||
<li>set the appropriate <b>movement parameters</b> for each animation effect,</li>
|
||||
<li>add <a href="../UsageInstructions/AddingAnimations.htm#multipleanimations"><b>multiple animations</b></a>,</li>
|
||||
<li>change the <a href="../UsageInstructions/AddingAnimations.htm#animationsorder"><b>order</b></a> of the animation effects using <b>Move Earlier</b> or <b>Move Later</b> options,</li>
|
||||
<li>add <a href="../UsageInstructions/AddingAnimations.htm#multipleanimations">multiple animations</a>,</li>
|
||||
<li>change the <a href="../UsageInstructions/AddingAnimations.htm#animationsorder">order</a> of the animation effects using <b>Move Earlier</b> or <b>Move Later</b> options,</li>
|
||||
<li><b>preview</b> the animation effect,</li>
|
||||
<li>set the animation <a href="../UsageInstructions/AddingAnimations.htm#timing"><b>timing options</b></a> such as <b>duration</b>, <b>delay</b> and <b>repeat</b> options for animation effects,</li>
|
||||
<li>set the animation <a href="../UsageInstructions/AddingAnimations.htm#timing">timing options</a> such as <b>duration</b>, <b>delay</b> and <b>repeat</b> options for animation effects,</li>
|
||||
<li>enable and disable the <b>rewind</b>.</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
|
|
@ -45,13 +45,14 @@
|
|||
<li>The <b>Status bar</b> at the bottom of the editor window contains the <a href="../UsageInstructions/PreviewPresentation.htm" onclick="onhyperlinkclick(this)">Start slideshow</a> icon, some <a href="../HelpfulHints/Navigation.htm" onclick="onhyperlinkclick(this)">navigation tools</a>: slide number indicator and zoom buttons. The <b>Status bar</b> also displays some notifications (such as "All changes saved", ‘Connection is lost’ when there is no connection and the editor is trying to reconnect etc.) and allows <a href="../HelpfulHints/SpellChecking.htm" onclick="onhyperlinkclick(this)">setting the text language and enable spell checking</a>.</li>
|
||||
<li>
|
||||
The <b>Left sidebar</b> contains the following icons:
|
||||
<ul>
|
||||
<li><div class = "icon icon-searchicon"></div> - allows using the <a href="../HelpfulHints/Search.htm" onclick="onhyperlinkclick(this)">Search and Replace</a> tool,</li>
|
||||
<li><div class = "icon icon-commentsicon"></div> - allows opening the <a href="../HelpfulHints/CollaborativeEditing.htm#comments" onclick="onhyperlinkclick(this)">Comments</a> panel,</li>
|
||||
<li class="onlineDocumentFeatures"><div class = "icon icon-chaticon"></div> - (available in the <em>online version</em> only) allows opening the <a href="../HelpfulHints/CollaborativeEditing.htm#chat" onclick="onhyperlinkclick(this)">Chat</a> panel,</li>
|
||||
<li class="onlineDocumentFeatures"><div class = "icon icon-feedbackicon"></div> - (available in the <em>online version</em> only) allows contacting our support team,</li>
|
||||
<li class="onlineDocumentFeatures"><div class = "icon icon-about"></div> - (available in the <em>online version</em> only) allows viewing the information about the program.</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li><div class="icon icon-searchicon"></div> - allows using the <a href="../HelpfulHints/Search.htm" onclick="onhyperlinkclick(this)">Search and Replace</a> tool,</li>
|
||||
<li><div class="icon icon-slides"></div> - allows viewing slides and navigating them,</li>
|
||||
<li><div class="icon icon-commentsicon"></div> - allows opening the <a href="../HelpfulHints/CollaborativeEditing.htm#comments" onclick="onhyperlinkclick(this)">Comments</a> panel,</li>
|
||||
<li class="onlineDocumentFeatures"><div class="icon icon-chaticon"></div> - (available in the <em>online version</em> only) allows opening the <a href="../HelpfulHints/CollaborativeEditing.htm#chat" onclick="onhyperlinkclick(this)">Chat</a> panel,</li>
|
||||
<li class="onlineDocumentFeatures"><div class="icon icon-feedbackicon"></div> - (available in the <em>online version</em> only) allows contacting our support team,</li>
|
||||
<li class="onlineDocumentFeatures"><div class="icon icon-about"></div> - (available in the <em>online version</em> only) allows viewing the information about the program.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>The <b>Right sidebar</b> allows adjusting additional parameters of different objects. When you select a particular object on a slide, the corresponding icon is activated on the right sidebar. Click this icon to expand the right sidebar.</li>
|
||||
<li>The horizontal and vertical <b>Rulers</b> help you place objects on a slide and allow you to set up tab stops and paragraph indents within the text boxes.</li>
|
||||
|
|
|
@ -18,11 +18,11 @@
|
|||
<h3>Insert a chart</h3>
|
||||
<p><b>To insert a chart</b> in the <a target="_blank" href="https://www.onlyoffice.com/presentation-editor.aspx" onclick="onhyperlinkclick(this)"><b>Presentation Editor</b></a>,</p>
|
||||
<ol>
|
||||
<li>put the cursor where you want to add a chart,</li>
|
||||
<li>switch to the <b>Insert</b> tab of the top toolbar,</li>
|
||||
<li>click the <div class="icon icon-insertchart"></div> <b>Chart</b> icon on the top toolbar,</li>
|
||||
<li>Put the cursor where you want to add a chart.</li>
|
||||
<li>Switch to the <b>Insert</b> tab of the top toolbar.</li>
|
||||
<li>Click the <div class="icon icon-insertchart"></div> <b>Chart</b> icon on the top toolbar.</li>
|
||||
<li>
|
||||
select the needed chart type from the available ones:
|
||||
Select the needed chart type from the available ones:
|
||||
<details class="details-example">
|
||||
<summary>Column Charts</summary>
|
||||
<ul>
|
||||
|
@ -99,8 +99,7 @@
|
|||
</details>
|
||||
<p class="note"><b>Note</b>: <b>ONLYOFFICE Presentation Editor</b> supports the following types of charts that were created with third-party editors: <b>Pyramid</b>, <b>Bar (Pyramid)</b>, <b>Horizontal/Vertical Cylinders</b>, <b>Horizontal/Vertical Cones</b>. You can open the file containing such a chart and modify it using the available chart editing tools.</p>
|
||||
</li>
|
||||
<li>
|
||||
after that the <b>Chart Editor</b> window will appear where you can enter the necessary data into the cells using the following controls:
|
||||
<li>After that the <b>Chart Editor</b> window will appear where you can enter the necessary data into the cells using the following controls:
|
||||
<ul>
|
||||
<li><div class="icon icon-copy"></div> and <div class="icon icon-paste"></div> for copying and pasting the copied data</li>
|
||||
<li><div class="icon icon-undo1"></div> and <div class="icon icon-redo1"></div> for undoing and redoing actions</li>
|
||||
|
@ -160,7 +159,7 @@
|
|||
<p><img alt="Chart Type Combo" src="../../../../../../common/main/resources/help/en/images/charttype_combo.png" /></p>
|
||||
</li>
|
||||
<li>
|
||||
change the chart settings by clicking the <b>Edit Chart</b> button situated in the <b>Chart Editor</b> window. The <b>Chart - Advanced Settings</b> window will open.
|
||||
Change the chart settings by clicking the <b>Edit Chart</b> button situated in the <b>Chart Editor</b> window. The <b>Chart - Advanced Settings</b> window will open.
|
||||
<p><img alt="Chart - Advanced Settings window" src="../../../../../../common/main/resources/help/en/images/chartsettings_layout.png" /></p>
|
||||
<p>The <b>Layout</b> tab allows you to change the layout of chart elements.</p>
|
||||
<ul>
|
||||
|
@ -188,7 +187,7 @@
|
|||
Specify the <b>Data Labels</b> (i.e. text labels that represent exact values of data points) parameters:<br />
|
||||
<ul>
|
||||
<li>
|
||||
specify the <b>Data Labels</b> position relative to the data points selecting the necessary option from the drop-down list. The available options vary depending on the selected chart type.
|
||||
Specify the <b>Data Labels</b> position relative to the data points selecting the necessary option from the drop-down list. The available options vary depending on the selected chart type.
|
||||
<ul>
|
||||
<li>For <b>Column/Bar</b> charts, you can choose the following options: <b>None</b>, <b>Center</b>, <b>Inner Bottom</b>, <b>Inner Top</b>, <b>Outer Top</b>.</li>
|
||||
<li>For <b>Line/XY (Scatter)/Stock</b> charts, you can choose the following options: <b>None</b>, <b>Center</b>, <b>Left</b>, <b>Right</b>, <b>Top</b>, <b>Bottom</b>.</li>
|
||||
|
@ -196,8 +195,8 @@
|
|||
<li>For <b>Area</b> charts as well as for <b>3D</b> <b>Column</b>, <b>Line</b>, <b>Bar</b> and <b>Combo</b> charts, you can choose the following options: <b>None</b>, <b>Center</b>.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>select the data you wish to include into your labels by checking the corresponding boxes: <b>Series Name</b>, <b>Category Name</b>, <b>Value</b>,</li>
|
||||
<li>enter a character (comma, semicolon, etc.) you wish to use to separate several labels into the <b>Data Labels Separator</b> entry field.</li>
|
||||
<li>Select the data you wish to include into your labels by checking the corresponding boxes: <b>Series Name</b>, <b>Category Name</b>, <b>Value</b>,</li>
|
||||
<li>Enter a character (comma, semicolon, etc.) you wish to use to separate several labels into the <b>Data Labels Separator</b> entry field.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><b>Lines</b> - is used to choose a line style for <b>Line/XY (Scatter) charts</b>. You can choose one of the following options: <b>Straight</b> to use straight lines among data points, <b>Smooth</b> to use smooth curves among data points, or <b>None</b> not to display lines.</li>
|
||||
|
@ -210,9 +209,9 @@
|
|||
<p>The <b>Vertical Axis</b> tab allows you to change the parameters of the vertical axis also referred to as the values axis or y-axis which displays numeric values. Note that the vertical axis will be the category axis which displays text labels for the <b>Bar charts</b>, therefore in this case the <b>Vertical Axis</b> tab options will correspond to the ones described in the next section. For the <b>XY (Scatter) charts</b>, both axes are value axes.</p>
|
||||
<p class="note"><b>Note</b>: the <b>Axis Settings</b> and <b>Gridlines</b> sections will be disabled for <b>Pie charts</b> since charts of this type have no axes and gridlines.</p>
|
||||
<ul>
|
||||
<li> select <b>Hide</b> to hide vertical axis in the chart, leave it unchecked to have vertical axis displayed.</li>
|
||||
<li>Select <b>Hide</b> to hide vertical axis in the chart, leave it unchecked to have vertical axis displayed.</li>
|
||||
<li>
|
||||
specify <b>Title</b> orientation by selecting the necessary option from the drop-down list:
|
||||
Specify <b>Title</b> orientation by selecting the necessary option from the drop-down list:
|
||||
<ul>
|
||||
<li><b>None</b> to not display a vertical axis title</li>
|
||||
<li><b>Rotated</b> to display the title from bottom to top to the left of the vertical axis,</li>
|
||||
|
@ -267,13 +266,13 @@
|
|||
</p>
|
||||
<p class="note"><b>Note</b>: Secondary axes are supported in <b>Combo</b> charts only.</p>
|
||||
<p><b>Secondary axes</b> are useful in Combo charts when data series vary considerably or mixed types of data are used to plot a chart. Secondary Axes make it easier to read and understand a combo chart.</p>
|
||||
<p> The <b>Secondary Vertical /Horizontal Axis</b> tab appears when you choose an appropriate data series for a combo chart. All the settings and options on the <b>Secondary Vertical/Horizontal Axis</b> tab are the same as the settings on the Vertical/Horizontal Axis. For a detailed description of the <b>Vertical/Horizontal Axis</b> options, see description above/below.</p>
|
||||
<p>The <b>Secondary Vertical /Horizontal Axis</b> tab appears when you choose an appropriate data series for a combo chart. All the settings and options on the <b>Secondary Vertical/Horizontal Axis</b> tab are the same as the settings on the Vertical/Horizontal Axis. For a detailed description of the <b>Vertical/Horizontal Axis</b> options, see description above/below.</p>
|
||||
<p><img alt="Chart - Advanced Settings window" src="../../../../../../common/main/resources/help/en/images/chartsettings_horizontalaxis.png" /></p>
|
||||
<p>The <b>Horizontal Axis</b> tab allows you to change the parameters of the horizontal axis also referred to as the categories axis or x-axis which displays text labels. Note that the horizontal axis will be the value axis which displays numeric values for the <b>Bar charts</b>, therefore in this case the <b>Horizontal Axis</b> tab options will correspond to the ones described in the previous section. For the <b>XY (Scatter) charts</b>, both axes are value axes.</p>
|
||||
<ul>
|
||||
<li> select <b>Hide</b> to hide horizontal axis in the chart, leave it unchecked to have horizontal axis displayed.</li>
|
||||
<li>Select <b>Hide</b> to hide horizontal axis in the chart, leave it unchecked to have horizontal axis displayed.</li>
|
||||
<li>
|
||||
specify <b>Title</b> orientation by selecting the necessary option from the drop-down list:
|
||||
Specify <b>Title</b> orientation by selecting the necessary option from the drop-down list:
|
||||
<ul>
|
||||
<li><b>None</b> when you don’t want to display a horizontal axis title,</li>
|
||||
<li><b>No Overlay</b> to display the title below the horizontal axis,</li>
|
||||
|
@ -328,8 +327,7 @@
|
|||
<p><img alt="Chart Settings window" src="../../../../../../common/main/resources/help/en/images/chartsettings_alternativetext.png" /></p>
|
||||
<p>The <b>Alternative Text</b> tab allows specifying the <b>Title</b> and <b>Description</b> which will be read to people with vision or cognitive impairments to help them better understand the contents of the chart.</p>
|
||||
</li>
|
||||
<li>
|
||||
once the chart is added, you can also <a href="../UsageInstructions/ManipulateObjects.htm" onclick="onhyperlinkclick(this)">change its size and position</a>.
|
||||
<li>Once the chart is added, you can also <a href="../UsageInstructions/ManipulateObjects.htm" onclick="onhyperlinkclick(this)">change its size and position</a>.
|
||||
<p>You can specify the <a href="../UsageInstructions/ManipulateObjects.htm" onclick="onhyperlinkclick(this)">chart position</a> on the slide by dragging it vertically or horizontally.</p>
|
||||
</li>
|
||||
</ol>
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
<p>To edit the added footer, click the <span class="icon icon-header_footer_icon"></span> <b>Edit footer</b> button on the top toolbar, make the necessary changes in the <b>Footer Settings</b> window, and click the <b>Apply</b> or <b>Apply to All</b> button to save the changes.</p>
|
||||
<h3>Insert date and time and slide number into the text box</h3>
|
||||
<p>It's also possible to insert date and time or slide number into the selected text box using the corresponding buttons on the <b>Insert</b> tab of the top toolbar.</p>
|
||||
<h5>Insert date and time</h5>
|
||||
<h4>Insert date and time</h4>
|
||||
<ol>
|
||||
<li>put the mouse cursor within the text box where you want to insert the date and time,</li>
|
||||
<li>click the <div class = "icon icon-date_time_icon"></div> <b>Date & Time</b> button on the <b>Insert</b> tab of the top toolbar,</li>
|
||||
|
@ -60,7 +60,7 @@
|
|||
<li>choose the necessary format in the <b>Date & Time</b> window,</li>
|
||||
<li>click the <b>OK</b> button.</li>
|
||||
</ol>
|
||||
<h5>Insert a slide number</h5>
|
||||
<h4>Insert a slide number</h4>
|
||||
<ol>
|
||||
<li>put the mouse cursor within the text box where you want to insert the slide number,</li>
|
||||
<li>click the <div class = "icon icon-slide_number_icon"></div> <b>Slide Number</b> button on the <b>Insert</b> tab of the top toolbar,</li>
|
||||
|
|
|
@ -28,12 +28,12 @@
|
|||
</div>
|
||||
<p>En utilisant cet onglet, vous pouvez :</p>
|
||||
<ul>
|
||||
<li>sélectionner des <a href="../UsageInstructions/AddingAnimations.htm#applyanimation"><b>effets d'animation</b></a>,</li>
|
||||
<li><B>paramétrer</B> la direction du mouvement de chaque effet,</li>
|
||||
<li>ajouter <a href="../UsageInstructions/AddingAnimations.htm#multipleanimations"><b>plusieurs animations</b></a>,</li>
|
||||
<li>changer <a href="../UsageInstructions/AddingAnimations.htm#animationsorder"><b>l'ordre</b></a> des effets d'animation en utilisant les options <b>Déplacer avant</b> ou <b>Déplacer après</b>,</li>
|
||||
<li>sélectionner des <a href="../UsageInstructions/AddingAnimations.htm#applyanimation">effets d'animation</a>,</li>
|
||||
<li><b>paramétrer</b> la direction du mouvement de chaque effet,</li>
|
||||
<li>ajouter <a href="../UsageInstructions/AddingAnimations.htm#multipleanimations">plusieurs animations</a>,</li>
|
||||
<li>changer <a href="../UsageInstructions/AddingAnimations.htm#animationsorder">l'ordre</a> des effets d'animation en utilisant les options <b>Déplacer avant</b> ou <b>Déplacer après</b>,</li>
|
||||
<li>afficher <B>l'aperçu</B> d'une animation,</li>
|
||||
<li>configurer des <a href="../UsageInstructions/AddingAnimations.htm#timing"><b>options de minutage</b></a> telles que la <b>durée</b>, le <b>retard</b> et la <b>répétition</b> des animations,</li>
|
||||
<li>configurer des <a href="../UsageInstructions/AddingAnimations.htm#timing">options de minutage</a> telles que la <b>durée</b>, le <b>retard</b> et la <b>répétition</b> des animations,</li>
|
||||
<li>activer et désactiver le <b>retour à l'état d'origine</b> de l'animation.</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
|
|
@ -18,11 +18,11 @@
|
|||
<h3>Insérer un graphique</h3>
|
||||
<p><b>Pour insérer un graphique</b> dans l'<a target="_blank" href="https://www.onlyoffice.com/fr/presentation-editor.aspx" onclick="onhyperlinkclick(this)"><b>Éditeur de Présentations</b></a>,</p>
|
||||
<ol>
|
||||
<li>placez le curseur à l'endroit où vous voulez insérer un graphique,</li>
|
||||
<li>passez à l'onglet <b>Insertion</b> de la barre d'outils supérieure,</li>
|
||||
<li>cliquez sur l'icône <b>Graphique</b> <div class="icon icon-insertchart"></div> de la barre d'outils supérieure,</li>
|
||||
<li>Placez le curseur à l'endroit où vous voulez insérer un graphique.</li>
|
||||
<li>Passez à l'onglet <b>Insertion</b> de la barre d'outils supérieure.</li>
|
||||
<li>Cliquez sur l'icône <b>Graphique</b> <div class="icon icon-insertchart"></div> de la barre d'outils supérieure.</li>
|
||||
<li>
|
||||
choisissez le type de graphique approprié :
|
||||
Choisissez le type de graphique approprié :
|
||||
<details class="details-example">
|
||||
<summary>Graphique à colonnes</summary>
|
||||
<ul>
|
||||
|
@ -99,8 +99,7 @@
|
|||
</details>
|
||||
<p class="note"> <b>Remarque</b> : <b>ONLYOFFICE Presentation Editor</b> prend en charge des graphiques <b>en pyramides</b>, <b>à barres (pyramides)</b>, <b>horizontal/vertical à cylindre</b>, <b>horizontal/vertical à cônes</b> qui étaient créés avec d’autres applications. Vous pouvez ouvrir le fichier comportant un tel graphique et le modifier.</p>
|
||||
</li>
|
||||
<li>
|
||||
lorsque la fenêtre <b>Éditeur du graphique</b> s'affiche, vous pouvez saisir les données à en utilisant des boutons suivants :
|
||||
<li>Lorsque la fenêtre <b>Éditeur du graphique</b> s'affiche, vous pouvez saisir les données à en utilisant des boutons suivants :
|
||||
<ul>
|
||||
<li><div class="icon icon-copy"></div> et <div class="icon icon-paste"></div> pour copier et coller des données</li>
|
||||
<li><div class="icon icon-undo1"></div> et <div class="icon icon-redo1"></div> pour annuler et rétablir une action</li>
|
||||
|
@ -160,7 +159,7 @@
|
|||
<p><img alt="La fenêtre Type de graphique Combo" src="../../../../../../common/main/resources/help/fr/images/charttype_combo.png" /></p>
|
||||
</li>
|
||||
<li>
|
||||
paramétrer le graphique en cliquant sur <b>Modifier le graphique</b> dans la fenêtre <b>Éditeur du graphique.</b> La fenêtre <b>Graphique - Paramètres avancés</b> s'affiche.
|
||||
Paramétrer le graphique en cliquant sur <b>Modifier le graphique</b> dans la fenêtre <b>Éditeur du graphique.</b> La fenêtre <b>Graphique - Paramètres avancés</b> s'affiche.
|
||||
<p><img alt="La fenêtre Graphique - Paramètres avancés" src="../../../../../../common/main/resources/help/fr/images/chartsettings_layout.png" /></p>
|
||||
<p>L'onglet <b>Disposition</b> vous permet de modifier la disposition des éléments de graphique.</p>
|
||||
<ul>
|
||||
|
@ -188,7 +187,7 @@
|
|||
Spécifiez les paramètres des <b>Étiquettes de données</b> (c'est-à-dire les étiquettes de texte représentant les valeurs exactes des points de données) :<br />
|
||||
<ul>
|
||||
<li>
|
||||
spécifiez la position des <b>Étiquettes de données</b> par rapport aux points de données en sélectionnant l'option nécessaire dans la liste déroulante. Les options disponibles varient en fonction du type de graphique sélectionné.
|
||||
Spécifiez la position des <b>Étiquettes de données</b> par rapport aux points de données en sélectionnant l'option nécessaire dans la liste déroulante. Les options disponibles varient en fonction du type de graphique sélectionné.
|
||||
<ul>
|
||||
<li>Pour les graphiques en <b>Colonnes/Barres</b>, vous pouvez choisir les options suivantes : <b>Rien</b>, <b>Au</b> <b>centre</b>, <b>En haut</b> <b>à</b> <b>l'intérieur</b>, <b>En haut à</b> <b>l'intérieur</b>, <b>En haut à l'extérieur</b>.</li>
|
||||
<li>Pour les graphiques en <b>Ligne/ Nuage de points (XY)/Boursier</b>, vous pouvez choisir les options suivantes : <b>Rien</b>, <b>Au</b> <b>centre</b>, <b><b>À</b> gauche, À</b> <b>droite</b>, <b>En haut</b>, <b>En bas</b>.</li>
|
||||
|
@ -196,8 +195,8 @@
|
|||
<li>Pour les graphiques en <b>Aire</b> ainsi que pour les graphiques <b>3D en Colonnes</b>, <b>Ligne</b>, <b>Barres</b> et <b>Combo</b> vous pouvez choisir les options suivantes : <b>Rien</b>, <b>Au centre</b>.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>sélectionnez les données que vous souhaitez inclure dans vos étiquettes en cochant les cases correspondantes : <b>Nom de la série</b>, <b>Nom de la catégorie</b>, <b>Valeur</b>,</li>
|
||||
<li>entrez un caractère (virgule, point-virgule, etc.) que vous souhaitez utiliser pour séparer plusieurs étiquettes dans le champ de saisie Séparateur des étiquettes de données.</li>
|
||||
<li>Sélectionnez les données que vous souhaitez inclure dans vos étiquettes en cochant les cases correspondantes : <b>Nom de la série</b>, <b>Nom de la catégorie</b>, <b>Valeur</b>,</li>
|
||||
<li>Entrez un caractère (virgule, point-virgule, etc.) que vous souhaitez utiliser pour séparer plusieurs étiquettes dans le champ de saisie Séparateur des étiquettes de données.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><b>Lignes</b> - permet de choisir un style de ligne pour les graphiques en<b> Ligne/Nuage de points (XY</b>). Vous pouvez choisir parmi les options suivantes : <b>Droit</b> pour utiliser des lignes droites entre les points de données, <b>Lisse</b> pour utiliser des courbes lisses entre les points de données, ou <b>Rien</b> pour ne pas afficher les lignes.</li>
|
||||
|
@ -210,9 +209,9 @@
|
|||
<p>L'onglet <b>Axe vertical</b> vous permet de modifier les paramètres de l'axe vertical, également appelés axe des valeurs ou axe y, qui affiche des valeurs numériques. Notez que l'axe vertical sera l'axe des catégories qui affiche des étiquettes de texte pour les <b>Graphiques à barres</b>. Dans ce cas, les options de l'onglet <b>Axe vertical</b> correspondront à celles décrites dans la section suivante. Pour les Graphiques <b>Nuage de points (XY</b>), les deux axes sont des axes de valeur.</p>
|
||||
<p class="note"><b>Remarque</b> : les sections <b>Paramètres des axes</b> et <b>Quadrillage</b> seront désactivées pour les <b>Graphiques à secteurs</b>, car les graphiques de ce type n'ont ni axes ni lignes de quadrillage.</p>
|
||||
<ul>
|
||||
<li> sélectionnez <b>Masquer l'axe</b> pour masquer l'axe vertical du graphique, laissez cette option décochée pour afficher l'axe.</li>
|
||||
<li>Sélectionnez <b>Masquer l'axe</b> pour masquer l'axe vertical du graphique, laissez cette option décochée pour afficher l'axe.</li>
|
||||
<li>
|
||||
définissez l'orientation du Titre en choisissant l'option appropriée de la liste déroulante :
|
||||
Définissez l'orientation du Titre en choisissant l'option appropriée de la liste déroulante :
|
||||
<ul>
|
||||
<li><b>Rien</b> pour ne pas afficher le titre de l'axe vertical</li>
|
||||
<li><b>Incliné</b> pour afficher le titre de bas en haut à gauche de l'axe vertical,</li>
|
||||
|
@ -228,7 +227,7 @@
|
|||
La section <b>Options de graduations</b> permet d'ajuster l'apparence des graduations sur l'échelle verticale. Les graduations du type principal sont les divisions à plus grande échelle qui peuvent avoir des étiquettes affichant des valeurs numériques. Les graduations du type secondaire sont les subdivisions d'échelle qui sont placées entre les graduations principales et n'ont pas d'étiquettes. Les graduations définissent également l'endroit où le quadrillage peut être affiché, si l'option correspondante est définie dans l'onglet <b>Disposition</b>. Les listes déroulantes <b>Type principal/secondaire</b> contiennent les options de placement suivantes :
|
||||
<ul>
|
||||
<li><b>Rien</b> pour ne pas afficher les graduations principales/secondaires,</li>
|
||||
<li><b>Sur l'axe </b>pour afficher les graduations principales/secondaires des deux côtés de l'axe,</li>
|
||||
<li><b>Sur l'axe</b> pour afficher les graduations principales/secondaires des deux côtés de l'axe,</li>
|
||||
<li><b>Dans</b> pour afficher les graduations principales/secondaires dans l'axe,</li>
|
||||
<li><b>A l'extérieur</b> pour afficher les graduations principales/secondaires à l'extérieur de l'axe.</li>
|
||||
</ul>
|
||||
|
@ -271,9 +270,9 @@
|
|||
<p><img alt="La fenêtre Graphique - Paramètres avancés" src="../../../../../../common/main/resources/help/fr/images/chartsettings_horizontalaxis.png" /></p>
|
||||
<p>L'onglet <b>Axe horizontal</b> vous permet de modifier les paramètres de l'axe horizontal, également appelés axe des catégories ou axe x, qui affiche des étiquettes textuels. Notez que l'axe horizontal sera l'axe des valeurs qui affiche des valeurs numériques pour les <b>Graphiques à barres</b>. Dans ce cas, les options de l'onglet <b>Axe horizontal</b> correspondent à celles décrites dans la section précédente. Pour les Graphiques <b>Nuage de points (XY</b>), les deux axes sont des axes de valeur.</p>
|
||||
<ul>
|
||||
<li> sélectionnez <b>Masquer l'axe</b> pour masquer l'axe horizontal du graphique, laissez cette option décochée pour afficher l'axe.</li>
|
||||
<li>Sélectionnez <b>Masquer l'axe</b> pour masquer l'axe horizontal du graphique, laissez cette option décochée pour afficher l'axe.</li>
|
||||
<li>
|
||||
définissez l'orientation du <b>Titre</b> en choisissant l'option appropriée de la liste déroulante :
|
||||
Définissez l'orientation du <b>Titre</b> en choisissant l'option appropriée de la liste déroulante :
|
||||
<ul>
|
||||
<li><b>Rien</b> pour ne pas afficher le titre de l'axe horizontal.</li>
|
||||
<li><b>Sans superposition</b> pour afficher le titre en-dessous de l'axe horizontal.</li>
|
||||
|
@ -329,7 +328,7 @@
|
|||
<p>L'onglet <b>Texte de remplacement</b> permet de spécifier un <b>Titre</b> et une <b>Description</b> qui sera lue aux personnes avec des déficiences cognitives ou visuelles pour les aider à mieux comprendre l'information du graphique.</p>
|
||||
</li>
|
||||
<li>
|
||||
une fois le graphique ajouté, on peut également <a href="../UsageInstructions/ManipulateObjects.htm" onclick="onhyperlinkclick(this)">modifier sa taille et sa position</a>.
|
||||
Une fois le graphique ajouté, on peut également <a href="../UsageInstructions/ManipulateObjects.htm" onclick="onhyperlinkclick(this)">modifier sa taille et sa position</a>.
|
||||
<p>Vous pouvez définir <a href="../UsageInstructions/ManipulateObjects.htm" onclick="onhyperlinkclick(this)">la position du graphique</a> sur la diapositive en le faisant glisser à l'horizontale/verticale.</p>
|
||||
</li>
|
||||
</ol>
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
<p>Pour modifier le pied de page ajouté, cliquez sur le <span class="icon icon-header_footer_icon"></span> bouton <b>Modifier le pied de page</b> dans la barre d'outils supérieure, apportez les modifications nécessaires dans la fenêtre <b>Paramètres de pied de page</b>, puis cliquez sur le bouton <b>Appliquer</b> ou <b>Appliquer à tous</b> pour enregistrer les modifications.</p>
|
||||
<h3>Insérer la date et l'heure et le numéro de diapositive dans la zone de texte</h3>
|
||||
<p>Il est également possible d'insérer la date et l'heure ou le numéro de diapositive dans la zone de texte sélectionnée à l'aide des boutons correspondants de l'onglet <b>Insertion</b> de la barre d'outils supérieure.</p>
|
||||
<h5>Insérer la date et l'heure</h5>
|
||||
<h4>Insérer la date et l'heure</h4>
|
||||
<ol>
|
||||
<li>Placez le curseur de la souris dans la zone de texte où vous souhaitez insérer la date et l'heure,</li>
|
||||
<li>Cliquez sur le bouton <div class = "icon icon-date_time_icon"></div> <b>Date & Heure</b> dans l'onglet <b>Insertion</b> de la barre d'outils supérieure,</li>
|
||||
|
@ -60,7 +60,7 @@
|
|||
<li>Choisissez le format nécessaire dans la fenêtre <b>Date & Heure</b>,</li>
|
||||
<li>Cliquez sur <b>OK</b>.</li>
|
||||
</ol>
|
||||
<h5>Insérer un numéro de diapositive</h5>
|
||||
<h4>Insérer un numéro de diapositive</h4>
|
||||
<ol>
|
||||
<li>Placez le curseur de la souris dans la zone de texte ou vous souhaitez insérer le numéro de diapositive,</li>
|
||||
<li>Cliquez sur le bouton <div class = "icon icon-slide_number_icon"></div> <b>Numéro de diapositive</b> dans l'onglet <b>Insertion</b> de la barre d'outils supérieure,</li>
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 44 KiB |
File diff suppressed because it is too large
Load diff
Binary file not shown.
After Width: | Height: | Size: 132 B |
|
@ -43,7 +43,7 @@
|
|||
<p>To edit the added footer, click the <span class="icon icon-header_footer_icon"></span> <b>Edit footer</b> button at the top toolbar, make the necessary changes in the <b>Footer Settings</b> window, and click the <b>Apply</b> or <b>Apply to All</b> button to save the changes.</p>
|
||||
<h3>Insert date and time and slide number into the text box</h3>
|
||||
<p>It's also possible to insert date and time or slide number into the selected text box using the corresponding buttons at the <b>Insert</b> tab of the top toolbar.</p>
|
||||
<h5>Insert date and time</h5>
|
||||
<h4>Insert date and time</h4>
|
||||
<ol>
|
||||
<li>put the mouse cursor within the text box where you want to insert the date and time,</li>
|
||||
<li>click the <div class = "icon icon-date_time_icon"></div> <b>Date & Time</b> button at the <b>Insert</b> tab of the top toolbar,</li>
|
||||
|
@ -60,7 +60,7 @@
|
|||
<li>choose the necessary format in the <b>Date & Time</b> window,</li>
|
||||
<li>click the <b>OK</b> button.</li>
|
||||
</ol>
|
||||
<h5>Insert a slide number</h5>
|
||||
<h4>Insert a slide number</h4>
|
||||
<ol>
|
||||
<li>put the mouse cursor within the text box where you want to insert the slide number,</li>
|
||||
<li>click the <div class = "icon icon-slide_number_icon"></div> <b>Slide Number</b> button at the <b>Insert</b> tab of the top toolbar,</li>
|
||||
|
|
|
@ -26,12 +26,12 @@
|
|||
</div>
|
||||
<p>С помощью этой вкладки вы можете выполнить следующие действия:</p>
|
||||
<ul>
|
||||
<li>выбирать <a href="../UsageInstructions/AddingAnimations.htm#applyanimation"><b>эффект анимации</b></a>,</li>
|
||||
<li>выбирать <a href="../UsageInstructions/AddingAnimations.htm#applyanimation">эффект анимации</a>,</li>
|
||||
<li>установить соответствующие <b>параметры движения</b> для каждого эффекта анимации,</li>
|
||||
<li>добавлять <a href="../UsageInstructions/AddingAnimations.htm#multipleanimations"><b>несколько анимаций</b></a>,</li>
|
||||
<li>изменять <a href="../UsageInstructions/AddingAnimations.htm#animationsorder"><b>порядок</b></a> эффектов анимации при помощи параметров <b>Переместить раньше</b> или <b>Переместить позже</b>,</li>
|
||||
<li>добавлять <a href="../UsageInstructions/AddingAnimations.htm#multipleanimations">несколько анимаций</a>,</li>
|
||||
<li>изменять <a href="../UsageInstructions/AddingAnimations.htm#animationsorder">порядок</a> эффектов анимации при помощи параметров <b>Переместить раньше</b> или <b>Переместить позже</b>,</li>
|
||||
<li><b>просмотреть</b> эффект анимации,</li>
|
||||
<li>установить для анимации <a href="../UsageInstructions/AddingAnimations.htm#timing"><b>параметры времени</b></a>, такие как <b>длительность</b>, <b>задержка</b> and <b>повтор</b>,</li>
|
||||
<li>установить для анимации <a href="../UsageInstructions/AddingAnimations.htm#timing">параметры времени</a>, такие как <b>длительность</b>, <b>задержка</b> and <b>повтор</b>,</li>
|
||||
<li>включать и отключать <b>перемотку назад</b>.</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
|
|
@ -47,6 +47,7 @@
|
|||
На <b>Левой боковой панели</b> находятся следующие значки:
|
||||
<ul>
|
||||
<li><div class = "icon icon-searchicon"></div> - позволяет использовать инструмент <a href="../HelpfulHints/Search.htm" onclick="onhyperlinkclick(this)">поиска и замены</a>,</li>
|
||||
<li><div class="icon icon-slides"></div> - позволяет просматривать слайды и перемещаться по ним,</li>
|
||||
<li><div class = "icon icon-commentsicon"></div> - позволяет открыть панель <a href="../HelpfulHints/CollaborativeEditing.htm#comments" onclick="onhyperlinkclick(this)">Комментариев</a></li>
|
||||
<li class="onlineDocumentFeatures"><div class = "icon icon-chaticon"></div> (доступно только в <em>онлайн-версии</em>) - позволяет открыть панель <a href="../HelpfulHints/CollaborativeEditing.htm#chat" onclick="onhyperlinkclick(this)">Чата</a>,</li>
|
||||
<li class="onlineDocumentFeatures"><div class = "icon icon-feedbackicon"></div> (доступно только в <em>онлайн-версии</em>) - позволяет обратиться в службу технической поддержки,</li>
|
||||
|
|
|
@ -18,11 +18,10 @@
|
|||
<h3>Вставка диаграммы</h3>
|
||||
<p><b>Для вставки диаграммы</b> в презентацию,</p>
|
||||
<ol>
|
||||
<li>установите курсор там, где требуется поместить диаграмму,</li>
|
||||
<li>перейдите на вкладку <b>Вставка</b> верхней панели инструментов,</li>
|
||||
<li>щелкните по значку <div class = "icon icon-insertchart"></div> <b>Диаграмма</b> на верхней панели инструментов,</li>
|
||||
<li>
|
||||
выберите из доступных типов диаграммы:
|
||||
<li>Установите курсор там, где требуется поместить диаграмму.</li>
|
||||
<li>Перейдите на вкладку <b>Вставка</b> верхней панели инструментов.</li>
|
||||
<li>Щелкните по значку <div class = "icon icon-insertchart"></div> <b>Диаграмма</b> на верхней панели инструментов.</li>
|
||||
<li>Выберите из доступных типов диаграммы:
|
||||
<details class="details-example">
|
||||
<summary>Гистограмма</summary>
|
||||
<ul>
|
||||
|
@ -98,8 +97,7 @@
|
|||
</details>
|
||||
<p class="note"><b>Примечание</b>: <b>Редактор презентаций ONLYOFFICE</b> поддерживает следующие типы диаграмм, созданных в сторонних редакторах: <b>Пирамида</b>, <b>Гистограмма (пирамида)</b>, <b>Горизонтальные/Вертикальные цилиндры</b>, <b>Горизонтальные/вертикальные конусы</b>. Вы можете открыть файл, содержащий такую диаграмму, и изменить его, используя доступные инструменты редактирования диаграмм.</p>
|
||||
</li>
|
||||
<li>
|
||||
после этого появится окно <b>Редактор диаграмм</b>, в котором можно ввести в ячейки необходимые данные при помощи следующих элементов управления:
|
||||
<li>После этого появится окно <b>Редактор диаграмм</b>, в котором можно ввести в ячейки необходимые данные при помощи следующих элементов управления:
|
||||
<ul>
|
||||
<li><div class = "icon icon-copy"></div> и <div class = "icon icon-paste"></div> для копирования и вставки скопированных данных</li>
|
||||
<li><div class = "icon icon-undo1"></div> и <div class = "icon icon-redo1"></div> для отмены и повтора действий</li>
|
||||
|
@ -153,13 +151,13 @@
|
|||
</ol>
|
||||
</li>
|
||||
<li>
|
||||
измените параметры диаграммы, нажав на кнопку <b>Изменить тип диаграммы</b> в окне <b>Редактор диаграмм</b>, чтобы выбрать тип и стиль диаграммы. Выберите диаграмму из доступных разделов: гистограмма, график, круговая, линейчатая, с областями, биржевая, точечная, комбинированные.
|
||||
Измените параметры диаграммы, нажав на кнопку <b>Изменить тип диаграммы</b> в окне <b>Редактор диаграмм</b>, чтобы выбрать тип и стиль диаграммы. Выберите диаграмму из доступных разделов: гистограмма, график, круговая, линейчатая, с областями, биржевая, точечная, комбинированные.
|
||||
<p><img alt="Окно Тип диаграммы" src="../../../../../../common/main/resources/help/ru/images/charttype.png" /></p>
|
||||
<p>Когда вы выбираете <b>Комбинированные диаграммы</b>, в окне <b>Тип диаграммы</b> расположены ряды диаграмм, для которых можно выбрать типы диаграмм и данные для размещения на вторичной оси.</p>
|
||||
<p><img alt="Комбинированные диаграммы" src="../../../../../../common/main/resources/help/ru/images/charttype_combo.png" /></p>
|
||||
</li>
|
||||
<li>
|
||||
измените параметры диаграммы, нажав кнопку <b>Редактировать диаграмму</b> в окне <b>Редактор диаграмм</b>. Откроется окно <b>Диаграмма - Дополнительные параметры</b>.
|
||||
Измените параметры диаграммы, нажав кнопку <b>Редактировать диаграмму</b> в окне <b>Редактор диаграмм</b>. Откроется окно <b>Диаграмма - Дополнительные параметры</b>.
|
||||
<p><img alt="Окно Диаграмма - дополнительные параметры" src="../../../../../../common/main/resources/help/ru/images/chartsettings_layout.png" /></p>
|
||||
<p>На вкладке <b>Макет</b> можно изменить расположение элементов диаграммы:</p>
|
||||
<ul>
|
||||
|
@ -186,8 +184,7 @@
|
|||
<li>
|
||||
Определите параметры <b>Подписей данных</b> (то есть текстовых подписей, показывающих точные значения элементов данных):<br />
|
||||
<ul>
|
||||
<li>
|
||||
укажите местоположение <b>Подписей данных</b> относительно элементов данных, выбрав нужную опцию из выпадающего списка. Доступные варианты зависят от выбранного типа диаграммы.
|
||||
<li>Укажите местоположение <b>Подписей данных</b> относительно элементов данных, выбрав нужную опцию из выпадающего списка. Доступные варианты зависят от выбранного типа диаграммы.
|
||||
<ul>
|
||||
<li>Для <b>Гистограмм</b> и <b>Линейчатых</b> диаграмм можно выбрать следующие варианты: <b>Нет</b>, <b>По центру</b>, <b>Внутри снизу</b>, <b>Внутри сверху</b>, <b>Снаружи сверху</b>.</li>
|
||||
<li>Для <b>Графиков</b> и <b>Точечных</b> или <b>Биржевых</b> диаграмм можно выбрать следующие варианты: <b>Нет</b>, <b>По центру</b>, <b>Слева</b>, <b>Справа</b>, <b>Сверху</b>, <b>Снизу</b>.</li>
|
||||
|
@ -195,8 +192,8 @@
|
|||
<li>Для диаграмм <b>С областями</b>, а также для <b>Гистограмм</b>, <b>Графиков</b> и <b>Линейчатых</b> диаграмм в <b>формате 3D</b> можно выбрать следующие варианты: <b>Нет</b>, <b>По центру</b>.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>выберите данные, которые вы хотите включить в ваши подписи, поставив соответствующие флажки: <b>Имя ряда</b>, <b>Название категории</b>, <b>Значение</b>,</li>
|
||||
<li>введите символ (запятая, точка с запятой и т.д.), который вы хотите использовать для разделения нескольких подписей, в поле <b>Разделитель подписей данных</b>.</li>
|
||||
<li>Выберите данные, которые вы хотите включить в ваши подписи, поставив соответствующие флажки: <b>Имя ряда</b>, <b>Название категории</b>, <b>Значение</b>,</li>
|
||||
<li>Введите символ (запятая, точка с запятой и т.д.), который вы хотите использовать для разделения нескольких подписей, в поле <b>Разделитель подписей данных</b>.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><b>Линии</b> - используется для выбора типа линий для <b>линейчатых/точечных диаграмм</b>. Можно выбрать одну из следующих опций: <b>Прямые</b> для использования прямых линий между элементами данных, <b>Сглаженные</b> для использования сглаженных кривых линий между элементами данных или <b>Нет</b> для того, чтобы линии не отображались.</li>
|
||||
|
@ -209,9 +206,9 @@
|
|||
<p>Вкладка <b>Вертикальная ось</b> позволяет изменять параметры вертикальной оси, также называемой осью значений или осью Y, которая отображает числовые значения. Обратите внимание, что вертикальная ось будет осью категорий, которая отображает подпись для <b>Гистограмм</b>, таким образом, параметры вкладки <b>Вертикальная ось</b> будут соответствовать параметрам, описанным в следующем разделе. Для <b>Точечных диаграмм</b> обе оси являются осями значений.</p>
|
||||
<p class="note"><b>Примечание</b>: <b>Параметры оси</b> и <b>Линии сетки</b> недоступны для круговых диаграмм, так как у круговых диаграмм нет осей и линий сетки.</p>
|
||||
<ul>
|
||||
<li>нажмите <b>Скрыть ось</b>, чтобы скрыть вертикальную ось на диаграмме.</li>
|
||||
<li>Нажмите <b>Скрыть ось</b>, чтобы скрыть вертикальную ось на диаграмме.</li>
|
||||
<li>
|
||||
укажите ориентацию <b>Заголовка</b>, выбрав нужный вариант из раскрывающегося списка:
|
||||
Укажите ориентацию <b>Заголовка</b>, выбрав нужный вариант из раскрывающегося списка:
|
||||
<ul>
|
||||
<li><b>Нет</b> - не отображать название вертикальной оси,</li>
|
||||
<li><b>Повернутое</b> - показать название снизу вверх слева от вертикальной оси,</li>
|
||||
|
@ -290,9 +287,9 @@
|
|||
<p><img alt="Диаграмма - окно дополнительные параметры" src="../../../../../../common/main/resources/help/ru/images/chartsettings_horizontalaxis.png" /></p>
|
||||
<p>Вкладка <b>Горизонтальная ось</b> позволяет изменять параметры горизонтальной оси, также называемой осью категорий или осью x, которая отображает текстовые метки. Обратите внимание, что горизонтальная ось будет осью значений, которая отображает числовые значения для <b>Гистограмм</b>, поэтому в этом случае параметры вкладки <b>Горизонтальная ось</b> будут соответствовать параметрам, описанным в предыдущем разделе. Для <b>Точечных диаграмм</b> обе оси являются осями значений.</p>
|
||||
<ul>
|
||||
<li>нажмите <b>Скрыть ось</b>, чтобы скрыть горизонтальную ось на диаграмме.</li>
|
||||
<li>Нажмите <b>Скрыть ось</b>, чтобы скрыть горизонтальную ось на диаграмме.</li>
|
||||
<li>
|
||||
укажите ориентацию <b>Заголовка</b>, выбрав нужный вариант из раскрывающегося списка:
|
||||
Укажите ориентацию <b>Заголовка</b>, выбрав нужный вариант из раскрывающегося списка:
|
||||
<ul>
|
||||
<li><b>Нет</b> - не отображать заголовок горизонтальной оси,</li>
|
||||
<li><b>Без наложения</b> - отображать заголовок под горизонтальной осью,</li>
|
||||
|
@ -351,7 +348,7 @@
|
|||
<p>Вкладка <b>Альтернативный текст</b> позволяет задать <b>Заголовок</b> и <b>Описание</b>, которые будут зачитываться для людей с нарушениями зрения или когнитивными нарушениями, чтобы помочь им лучше понять, какую информацию содержит диаграмма.</p>
|
||||
</li>
|
||||
<li>
|
||||
после того, как диаграмма будет добавлена, можно изменить ее <a href="../UsageInstructions/ManipulateObjects.htm" onclick="onhyperlinkclick(this)">размер и положение</a>.
|
||||
После того, как диаграмма будет добавлена, можно изменить ее <a href="../UsageInstructions/ManipulateObjects.htm" onclick="onhyperlinkclick(this)">размер и положение</a>.
|
||||
<p>Вы можете задать <a href="../UsageInstructions/ManipulateObjects.htm" onclick="onhyperlinkclick(this)">положение диаграммы</a> на слайде, перетащив ее по вертикали или горизонтали.</p>
|
||||
</li>
|
||||
</ol>
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
<p>Чтобы отредактировать добавленный нижний колонтитул, нажмите кнопку <span class="icon icon-header_footer_icon"></span> <b>Изменить нижний колонтитул</b> на верхней панели инструментов, внесите необходимые изменения в окне <b>Параметры нижнего колонтитула</b> и нажмите кнопку <b>Применить</b> или <b>Применить ко всем</b>, чтобы сохранить изменения.</p>
|
||||
<h3>Вставка даты, времени и номера слайда в текстовое поле</h3>
|
||||
<p>Также можно вставлять дату и время или номер слайда в выбранное текстовое поле, используя соответствующие кнопки на вкладке <b>Вставка</b> верхней панели инструментов.</p>
|
||||
<h5>Вставка даты и времени</h5>
|
||||
<h4>Вставка даты и времени</h4>
|
||||
<ol>
|
||||
<li>установите курсор внутри текстового поля там, где требуется вставить дату и время,</li>
|
||||
<li>нажмите кнопку <div class = "icon icon-date_time_icon"></div> <b>Дата и время</b> на вкладке <b>Вставка</b> верхней панели инструментов,</li>
|
||||
|
@ -60,7 +60,7 @@
|
|||
<li>выберите нужный формат в окне <b>Дата и время</b>,</li>
|
||||
<li>нажмите кнопку <b>OK</b>.</li>
|
||||
</ol>
|
||||
<h5>Вставка номера слайда</h5>
|
||||
<h4>Вставка номера слайда</h4>
|
||||
<ol>
|
||||
<li>установите курсор внутри текстового поля там, где требуется вставить номер слайда,</li>
|
||||
<li>нажмите кнопку <div class = "icon icon-slide_number_icon"></div> <b>Номер слайда</b> на вкладке <b>Вставка</b> верхней панели инструментов,</li>
|
||||
|
|
|
@ -203,7 +203,10 @@
|
|||
"txtEditingMode": "Redaktə rejimini təyin edin...",
|
||||
"uploadImageTextText": "Təsvir yüklənir...",
|
||||
"uploadImageTitleText": "Təsvir Yüklənir",
|
||||
"waitText": "Lütfən, gözləyin..."
|
||||
"waitText": "Lütfən, gözləyin...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "Bu sənəddə saxlanmamış dəyişiklikləriniz var. Avtomatik saxlanmanı gözləmək üçün \"Bu Səhifədə Qalın\" hissəsinin üzərinə klikləyin. Bütün saxlanmamış dəyişiklikləri ləğv etmək üçün \"Bu səhifədən Çıxın\" hissəsinin üzərinə klikləyin.",
|
||||
|
|
|
@ -203,7 +203,10 @@
|
|||
"txtEditingMode": "Актывацыя рэжыму рэдагавання…",
|
||||
"uploadImageTextText": "Запампоўванне выявы…",
|
||||
"uploadImageTitleText": "Запампоўванне выявы",
|
||||
"waitText": "Калі ласка, пачакайце..."
|
||||
"waitText": "Калі ласка, пачакайце...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Toolbar": {
|
||||
"leaveButtonText": "Сысці са старонкі",
|
||||
|
|
|
@ -203,7 +203,10 @@
|
|||
"txtEditingMode": "Set editing mode...",
|
||||
"uploadImageTextText": "Uploading image...",
|
||||
"uploadImageTitleText": "Uploading Image",
|
||||
"waitText": "Please, wait..."
|
||||
"waitText": "Please, wait...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
|
|
|
@ -203,7 +203,10 @@
|
|||
"txtEditingMode": "Estableix el mode d'edició ...",
|
||||
"uploadImageTextText": "S'està carregant la imatge...",
|
||||
"uploadImageTitleText": "S'està carregant la imatge",
|
||||
"waitText": "Espereu..."
|
||||
"waitText": "Espereu...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "Teniu canvis no desats en aquest document. Feu clic a \"Queda't en aquesta pàgina\" per esperar al desament automàtic. Feu clic a \"Deixa aquesta pàgina\" per descartar tots els canvis no desats.",
|
||||
|
|
|
@ -203,7 +203,10 @@
|
|||
"txtEditingMode": "Nastavit režim úprav…",
|
||||
"uploadImageTextText": "Nahrávání obrázku...",
|
||||
"uploadImageTitleText": "Nahrávání obrázku",
|
||||
"waitText": "Čekejte prosím..."
|
||||
"waitText": "Čekejte prosím...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "V tomto dokumentu máte neuložené změny. Klikněte na 'Zůstat na této stránce' a počkejte dokud nedojde k automatickému uložení. Klikněte na 'Opustit tuto stránku' pro zahození neuložených změn.",
|
||||
|
|
|
@ -203,7 +203,10 @@
|
|||
"txtEditingMode": "Bearbeitungsmodul wird festgelegt...",
|
||||
"uploadImageTextText": "Das Bild wird hochgeladen...",
|
||||
"uploadImageTitleText": "Bild wird hochgeladen",
|
||||
"waitText": "Bitte warten..."
|
||||
"waitText": "Bitte warten...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
|
||||
"textUndo": "Undo",
|
||||
"textContinue": "Continue"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "Sie haben nicht gespeicherte Änderungen. Klicken Sie auf \"Auf dieser Seite bleiben\" und warten Sie, bis die Datei automatisch gespeichert wird. Klicken Sie auf \"Seite verlassen\", um nicht gespeicherte Änderungen zu verwerfen.",
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue