diff --git a/apps/api/documents/api.js b/apps/api/documents/api.js index 05c8e9e397..2517bb7ce0 100644 --- a/apps/api/documents/api.js +++ b/apps/api/documents/api.js @@ -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', // , '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]; diff --git a/apps/documenteditor/forms/app/controller/ApplicationController.js b/apps/documenteditor/forms/app/controller/ApplicationController.js index 26ffb38f45..2f86dcea20 100644 --- a/apps/documenteditor/forms/app/controller/ApplicationController.js +++ b/apps/documenteditor/forms/app/controller/ApplicationController.js @@ -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) { diff --git a/apps/documenteditor/main/app/controller/DocumentHolder.js b/apps/documenteditor/main/app/controller/DocumentHolder.js index f2a3cefabb..c76ddf1d08 100644 --- a/apps/documenteditor/main/app/controller/DocumentHolder.js +++ b/apps/documenteditor/main/app/controller/DocumentHolder.js @@ -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(); }, diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index 9775581dbf..d1c2f29ef2 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -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.
Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.' + errorPasswordIsNotCorrect: 'The password you supplied is not correct.
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.
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 || {})) }); \ No newline at end of file diff --git a/apps/documenteditor/main/app/controller/RightMenu.js b/apps/documenteditor/main/app/controller/RightMenu.js index 23466eb397..eb0403860d 100644 --- a/apps/documenteditor/main/app/controller/RightMenu.js +++ b/apps/documenteditor/main/app/controller/RightMenu.js @@ -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; diff --git a/apps/documenteditor/main/app/view/DocumentHolder.js b/apps/documenteditor/main/app/view/DocumentHolder.js index 3d98b204e8..4cd6682f92 100644 --- a/apps/documenteditor/main/app/view/DocumentHolder.js +++ b/apps/documenteditor/main/app/view/DocumentHolder.js @@ -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); diff --git a/apps/documenteditor/main/app/view/FileMenu.js b/apps/documenteditor/main/app/view/FileMenu.js index 8a92b07506..8bf3fdb57f 100644 --- a/apps/documenteditor/main/app/view/FileMenu.js +++ b/apps/documenteditor/main/app/view/FileMenu.js @@ -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; diff --git a/apps/documenteditor/main/app/view/FileMenuPanels.js b/apps/documenteditor/main/app/view/FileMenuPanels.js index 91f5298019..4168a96ea8 100644 --- a/apps/documenteditor/main/app/view/FileMenuPanels.js +++ b/apps/documenteditor/main/app/view/FileMenuPanels.js @@ -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; diff --git a/apps/documenteditor/main/app/view/FormSettings.js b/apps/documenteditor/main/app/view/FormSettings.js index 9e89325ea7..8e68a1da43 100644 --- a/apps/documenteditor/main/app/view/FormSettings.js +++ b/apps/documenteditor/main/app/view/FormSettings.js @@ -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() { diff --git a/apps/documenteditor/main/app/view/ImageSettingsAdvanced.js b/apps/documenteditor/main/app/view/ImageSettingsAdvanced.js index dea2678806..96ad6a0bc5 100644 --- a/apps/documenteditor/main/app/view/ImageSettingsAdvanced.js +++ b/apps/documenteditor/main/app/view/ImageSettingsAdvanced.js @@ -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(); } diff --git a/apps/documenteditor/main/app/view/ShapeSettings.js b/apps/documenteditor/main/app/view/ShapeSettings.js index a58e4cf4f5..85af8379fc 100644 --- a/apps/documenteditor/main/app/view/ShapeSettings.js +++ b/apps/documenteditor/main/app/view/ShapeSettings.js @@ -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; diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 414d81d9c0..f8c426fe2d 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -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.
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.
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", diff --git a/apps/documenteditor/main/resources/help/de/HelpfulHints/Comparison.htm b/apps/documenteditor/main/resources/help/de/HelpfulHints/Comparison.htm index 7e21664be4..49c3475f0f 100644 --- a/apps/documenteditor/main/resources/help/de/HelpfulHints/Comparison.htm +++ b/apps/documenteditor/main/resources/help/de/HelpfulHints/Comparison.htm @@ -73,12 +73,12 @@

Um alle Änderungen abzulehnen, klicken Sie den Abwärtspfeil unter der Schaltfläche Ablehnen an und wählen Sie die Option Alle Änderungen ablehnen aus.

Zusatzinformation für die Vergleich-Funktion

-
Die Vergleichsmethode
+

Die Vergleichsmethode

Dokumente werden wortweise 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.

Das folgende Bild zeigt den Fall, dass die Originaldatei das Wort „Symbole“ und das Vergleichsdokument das Wort „Symbol“ enthält.

Compare documents - method

-
Urheberschaft des Dokuments
+

Urheberschaft des Dokuments

Wenn der Vergleichsprozess gestartet wird, wird das zweite Dokument zum Vergleichen hochgeladen und mit dem aktuellen verglichen.

-

Klicken Sie auf OK

-

oder

+

Klicken Sie auf OK oder

Klicken Sie mit der rechten Maustaste auf das Abbildungsverzeichnis in Ihrem Dokument, um das Kontextmenü zu öffnen, und wählen Sie die Option Feld aktualisieren, um das Abbildungsverzeichnis zu aktualisieren.

diff --git a/apps/documenteditor/main/resources/help/de/UsageInstructions/AlignText.htm b/apps/documenteditor/main/resources/help/de/UsageInstructions/AlignText.htm index 812f1bbe2a..7e4e57dc13 100644 --- a/apps/documenteditor/main/resources/help/de/UsageInstructions/AlignText.htm +++ b/apps/documenteditor/main/resources/help/de/UsageInstructions/AlignText.htm @@ -28,7 +28,7 @@ -

Die Ausrichtungparameter sind im Absatz - Erweiterte Einstellungen verfügbar.

+

Die Ausrichtungparameter sind im Absatz - Erweiterte Einstellungen verfügbar:

  1. Drücken Sie die rechte Maustaste und wählen Sie die Option Absatz - Erweiterte Einstellungen von dem Rechts-Klick Menu oder benutzen Sie die Option Erweiterte Einstellungen anzeigen von der rechten Seitenleiste.
  2. Im Abschnitt Absatz - Erweiterte Einstellungen wechseln Sie zur Registerkarte Einzüg und Abstände.
  3. diff --git a/apps/documenteditor/main/resources/help/de/UsageInstructions/InsertCharts.htm b/apps/documenteditor/main/resources/help/de/UsageInstructions/InsertCharts.htm index c0a8ca843d..67d7b5129e 100644 --- a/apps/documenteditor/main/resources/help/de/UsageInstructions/InsertCharts.htm +++ b/apps/documenteditor/main/resources/help/de/UsageInstructions/InsertCharts.htm @@ -97,8 +97,8 @@
  4. Benutzerdefinierte Kombination
  5. - -

    ONLYOFFICE Dokumenteneditor unterstützt die folgenden Arten von Diagrammen, die mit Editoren von Drittanbietern erstellt wurden: Pyramide, Balken (Pyramide), horizontale/vertikale Zylinder, horizontale/vertikale Kegel. Sie können die Datei, die ein solches Diagramm enthält, öffnen und sie mit den verfügbaren Diagrammbearbeitungswerkzeugen ändern.

    +

    ONLYOFFICE Dokumenteneditor unterstützt die folgenden Arten von Diagrammen, die mit Editoren von Drittanbietern erstellt wurden: Pyramide, Balken (Pyramide), horizontale/vertikale Zylinder, horizontale/vertikale Kegel. Sie können die Datei, die ein solches Diagramm enthält, öffnen und sie mit den verfügbaren Diagrammbearbeitungswerkzeugen ändern.

    +
  6. Danach erscheint das Fenster Diagrammeditor, in dem Sie die erforderlichen Daten mit den folgenden Steuerelementen in die Zellen eingeben können:
      diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/Comparison.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/Comparison.htm index 838cb2b40c..db3d8dbacb 100644 --- a/apps/documenteditor/main/resources/help/en/HelpfulHints/Comparison.htm +++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/Comparison.htm @@ -73,12 +73,12 @@

      To quickly reject all the changes, click the downward arrow below the Reject button and select the Reject All Changes option.

      Additional info on the comparison feature

      -
      Method of comparison
      +

      Method of comparison

      Documents are compared by words. 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.

      The image below illustrates the case when the original file contains the word 'Characters' and the document for comparison contains the word 'Character'.

      Compare documents - method

      -
      Authorship of the document
      +

      Authorship of the document

      When the comparison process is launched, the second document for comparison is being loaded and compared to the current one.

      • 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.
      • @@ -87,7 +87,7 @@

        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.

        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.

        -
        Presence of the tracked changes in the compared document
        +

        Presence of the tracked changes in the compared document

        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.

        In this case, when you choose the Original display mode, the document will not contain any changes.

        diff --git a/apps/documenteditor/main/resources/help/en/ProgramInterface/LayoutTab.htm b/apps/documenteditor/main/resources/help/en/ProgramInterface/LayoutTab.htm index 7b12829b7a..b92fe0146a 100644 --- a/apps/documenteditor/main/resources/help/en/ProgramInterface/LayoutTab.htm +++ b/apps/documenteditor/main/resources/help/en/ProgramInterface/LayoutTab.htm @@ -21,7 +21,7 @@

        Layout tab

        -

        corresponding window of the Desktop Document Editor:

        +

        The corresponding window of the Desktop Document Editor:

        Layout tab

        Using this tab, you can:

        diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/AddTableofFigures.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/AddTableofFigures.htm index d3b1735e76..d278e6d789 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/AddTableofFigures.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/AddTableofFigures.htm @@ -80,8 +80,7 @@
      • Refresh page numbers only - to update page numbers without applying changes to the headings.
      • Refresh entire table - to update all the headings that have been modified and page numbers.
      -

      Click OK to confirm your choice,

      -

      or

      +

      Click OK to confirm your choice or

      Right-click the Table of Figures in your document to open the contextual menu, then choose the Refresh field to update the Table of Figures.

      diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/AlignText.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/AlignText.htm index 7b20e9bd4c..0b6740e0fa 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/AlignText.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/AlignText.htm @@ -28,7 +28,7 @@
-

The alignment parameters are also available in the Paragraph - Advanced Settings window.

+

The alignment parameters are also available in the Paragraph - Advanced Settings window:

  1. right-click the text and choose the Paragraph - Advanced Settings option from the contextual menu or use the Show advanced settings option on the right sidebar,
  2. open the Paragraph - Advanced Settings window, switch to the Indents & Spacing tab,
  3. diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertCharts.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertCharts.htm index 6256e5f6c4..0f27d6feac 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertCharts.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertCharts.htm @@ -18,11 +18,11 @@

    Insert a chart

    To insert a chart in the Document Editor,

      -
    1. place the cursor where the chart should be added,
    2. -
    3. switch to the Insert tab of the top toolbar,
    4. -
    5. click the
      Chart icon on the top toolbar,
    6. +
    7. Place the cursor where the chart should be added.
    8. +
    9. Switch to the Insert tab of the top toolbar.
    10. +
    11. Click the
      Chart icon on the top toolbar.
    12. - select the needed chart type from the available ones: + Select the needed chart type from the available ones:
      Column Charts
        @@ -97,10 +97,10 @@
      • Custom combination
      -
    13. -

      Note: ONLYOFFICE Document Editor supports the following types of charts that were created with third-party editors: Pyramid, Bar (Pyramid), Horizontal/Vertical Cylinders, Horizontal/Vertical Cones. You can open the file containing such a chart and modify it using the available chart editing tools.

      +

      Note: ONLYOFFICE Document Editor supports the following types of charts that were created with third-party editors: Pyramid, Bar (Pyramid), Horizontal/Vertical Cylinders, Horizontal/Vertical Cones. You can open the file containing such a chart and modify it using the available chart editing tools.

      +
    14. - after that the Chart Editor window will appear where you can enter the necessary data into the cells using the following controls: + After that the Chart Editor window will appear where you can enter the necessary data into the cells using the following controls:
      • and
        for copying and pasting the copied data
      • and
        for undoing and redoing actions
      • @@ -160,7 +160,7 @@

        Chart Type Combo

      • - change the chart settings by clicking the Edit Chart button situated in the Chart Editor window. The Chart - Advanced Settings window will open. + Change the chart settings by clicking the Edit Chart button situated in the Chart Editor window. The Chart - Advanced Settings window will open.

        Chart - Advanced Settings window

        The Layout tab allows you to change the layout of chart elements.

          @@ -188,7 +188,7 @@ Specify the Data Labels (i.e. text labels that represent exact values of data points) parameters:
          • - specify the Data Labels 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 Data Labels 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.
            • For Column/Bar charts, you can choose the following options: None, Center, Inner Bottom, Inner Top, Outer Top.
            • For Line/XY (Scatter)/Stock charts, you can choose the following options: None, Center, Left, Right, Top, Bottom.
            • @@ -196,8 +196,8 @@
            • For Area charts as well as for 3D Column, Line, Bar and Combo charts, you can choose the following options: None, Center.
          • -
          • select the data you wish to include into your labels checking the corresponding boxes: Series Name, Category Name, Value,
          • -
          • enter a character (comma, semicolon etc.) you wish to use for separating several labels into the Data Labels Separator entry field.
          • +
          • Select the data you wish to include into your labels checking the corresponding boxes: Series Name, Category Name, Value,
          • +
          • Enter a character (comma, semicolon etc.) you wish to use for separating several labels into the Data Labels Separator entry field.
        • Lines - is used to choose a line style for Line/XY (Scatter) charts. You can choose one of the following options: Straight to use straight lines between data points, Smooth to use smooth curves between data points, or None to not display lines.
        • @@ -210,9 +210,9 @@

          The Vertical Axis 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 Bar charts, therefore in this case the Vertical Axis tab options will correspond to the ones described in the next section. For the XY (Scatter) charts, both axes are value axes.

          Note: the Axis Settings and Gridlines sections will be disabled for Pie charts since charts of this type have no axes and gridlines.

            -
          • select Hide to hide vertical axis in the chart, leave it unchecked to have vertical axis displayed.
          • +
          • Select Hide to hide vertical axis in the chart, leave it unchecked to have vertical axis displayed.
          • - specify Title orientation by selecting the necessary option from the drop-down list: + Specify Title orientation by selecting the necessary option from the drop-down list:
            • None to not display a vertical axis title
            • Rotated to display the title from bottom to top to the left of the vertical axis,
            • @@ -271,9 +271,9 @@

              Chart - Advanced Settings window

              The Horizontal Axis 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 Bar charts, therefore in this case the Horizontal Axis tab options will correspond to the ones described in the previous section. For the XY (Scatter) charts, both axes are value axes.

                -
              • select Hide to hide horizontal axis in the chart, leave it unchecked to have horizontal axis displayed.
              • +
              • Select Hide to hide horizontal axis in the chart, leave it unchecked to have horizontal axis displayed.
              • - specify Title orientation by selecting the necessary option from the drop-down list: + Specify Title orientation by selecting the necessary option from the drop-down list:
                • None when you don’t want to display a horizontal axis title,
                • No Overlay  to display the title below the horizontal axis,
                • diff --git a/apps/documenteditor/main/resources/help/fr/HelpfulHints/Comparison.htm b/apps/documenteditor/main/resources/help/fr/HelpfulHints/Comparison.htm index e2952f3083..932143ff46 100644 --- a/apps/documenteditor/main/resources/help/fr/HelpfulHints/Comparison.htm +++ b/apps/documenteditor/main/resources/help/fr/HelpfulHints/Comparison.htm @@ -73,12 +73,12 @@

                  Pour rejeter rapidement toutes les modifications, cliquez sur la flèche vers le bas au-dessous du bouton Rejeter et sélectionnez l'option Rejeter toutes les modifications.

                  Informations supplémentaires sur la fonction de comparaison

                  -
                  Méthode de comparaison
                  +

                  Méthode de comparaison

                  Les documents sont comparés par des mots. 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.

                  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 ».

                  Comparer documents - méthode

                  -
                  Auteur du document
                  +

                  Auteur du document

                  Lors du lancement de la comparaison, le deuxième document de comparaison est chargé et comparé au document actuel.

                  • 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.
                  • @@ -87,7 +87,7 @@

                    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.

                    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.

                    -
                    Présence des modifications suivies dans le document comparé
                    +

                    Présence des modifications suivies dans le document comparé

                    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.

                    Dans ce cas, lorsque vous choisissez le mode d'affichage Original, il n'y aura aucune modification dans le document.

                    diff --git a/apps/documenteditor/main/resources/help/fr/UsageInstructions/AddTableofFigures.htm b/apps/documenteditor/main/resources/help/fr/UsageInstructions/AddTableofFigures.htm index 4118346853..2caa98745b 100644 --- a/apps/documenteditor/main/resources/help/fr/UsageInstructions/AddTableofFigures.htm +++ b/apps/documenteditor/main/resources/help/fr/UsageInstructions/AddTableofFigures.htm @@ -80,8 +80,7 @@
                  • Actualiser les numéros de page uniquement permet d'actualiser les numéros de page sans modifier les changements de titres.
                  • Actualiser le tableau entier permet de mettre en place toutes les modifications des titres et des numéros de pages.
                  -

                  Cliquez sur OK pour confirmer votre choix.

                  -

                  ou

                  +

                  Cliquez sur OK pour confirmer votre choix ou

                  Ouvrez le menu contextuel en cliquant avec le bouton droit de la souris sur le Tableaux des figures dans votre document, ensuite cliquez sur Actualiser dans le menu pour le mettre à jour.

                  diff --git a/apps/documenteditor/main/resources/help/fr/UsageInstructions/AlignText.htm b/apps/documenteditor/main/resources/help/fr/UsageInstructions/AlignText.htm index f9d1ac413a..85ff3a6aee 100644 --- a/apps/documenteditor/main/resources/help/fr/UsageInstructions/AlignText.htm +++ b/apps/documenteditor/main/resources/help/fr/UsageInstructions/AlignText.htm @@ -27,7 +27,7 @@
    -

    Configuration des paramètres d'alignement est aussi disponible dans la fenêtre Paragraphe - Paramètres avancés.

    +

    Configuration des paramètres d'alignement est aussi disponible dans la fenêtre Paragraphe - Paramètres avancés:

    1. faites un clic droit sur le texte et sélectionnez Paragraphe - Paramètres avancés du menu contextuel ou utilisez l'option Afficher le paramètres avancée sur la barre d'outils à droite,
    2. ouvrez la fenêtre Paragraphe - Paramètres avancés, passez à l'onglet Retraits et espacement,
    3. diff --git a/apps/documenteditor/main/resources/help/fr/UsageInstructions/CreateFillableForms.htm b/apps/documenteditor/main/resources/help/fr/UsageInstructions/CreateFillableForms.htm index 49bd439f89..483a6d57f6 100644 --- a/apps/documenteditor/main/resources/help/fr/UsageInstructions/CreateFillableForms.htm +++ b/apps/documenteditor/main/resources/help/fr/UsageInstructions/CreateFillableForms.htm @@ -3,7 +3,7 @@ Créer des formulaires à remplir - + @@ -37,9 +37,9 @@

    champ de texte ajouté

    -

    Un champ du formulaire apparaîtra à la point d'insertion de la ligne de texte existante. Le menu Paramètres du formulaire s'affiche à droite.

    +

    Un champ du formulaire apparaîtra au point d'insertion de la ligne de texte existante. Le menu Paramètres du formulaire s'affiche à droite.

    - paramètres champ de texte + Paramètres du champ de texte
    • Clé : 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 Entrée, ensuite attribuez cette clé à chaque champ texte en choisissant de la liste déroulante. Message Champs connectés : 2/3/... s'affiche. Pour déconnecter les champs, cliquez sur Déconnexion.
    • Espace réservé : saisissez le texte à afficher dans le champ de saisie. Le texte par défaut est Votre texte ici.
    • @@ -49,20 +49,26 @@
      Conseil ajouté
    • - Taille de champ fixe : activez cette option pour fixer la taille du champ. Lors de l'activation de cette option, les options Ajustement automatique et Champ de saisie à plusieurs lignes deviennent aussi disponibles.
      - Un champ de taille fixe ressemble à une forme automatique. Vous pouvez définir le style d'habillage et ajuster son position. + Format : choisissez le format de contenu du champ texte, c'est-à-dire que seul le format de caractère choisi sera autorisé : Aucun, Chiffres, Lettres, Masque arbitraire (le texte doit correspondre au masque personnalisé, par exemple (999) 999 99 99), Expression régulière (le texte doit correspondre à l'expression personnalisée). +

      Lorsque vous choisissez le format Masque arbitraire ou Expression régulière, un champ supplémentaire sous le champ Format apparaît.

    • +
    • Symboles autorisés : saisissez les symboles autorisés dans le champ texte.
    • +
    • + Taille de champ fixe : activez cette option pour fixer la taille du champ. Lors de l'activation de cette option, les options Ajustement automatique et Champ de saisie à plusieurs lignes deviennent aussi disponibles.
      + Un champ de taille fixe ressemble à une forme automatique. Vous pouvez définir le style d'habillage et ajuster sa position. +
    • +
    • Ajustement automatique : il est possible d'activer cette option lors l'activation de l'option Taille de champ fixe, cochez cette case pour ajuster automatiquement la police en fonction de la taille du champ.
    • +
    • Champ de saisie à plusieurs lignes : il est possible d'activer cette option lors l'activation de l'option Taille de champ fixe, cochez cette case pour créer un champ à plusieurs lignes, sinon le champ va contenir une seule ligne de texte.
    • Limite de caractères : 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.
    • - Peigne de caractères : 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 : + Peigne de caractères : 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 :
      • Largeur de cellule : choisissez si la valeur de largeur doit être Auto (la largeur est calculée automatiquement), Au moins (la largeur n'est pas inférieure à la valeur indiquée manuellement), ou Exactement (la largeur correspond à la valeur indiquée manuellement). Le texte sera justifié selon les paramètres.
    • Couleur de bordure : cliquez sur l'icône
      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 ajouter une couleur personnalisée.
    • Couleur d'arrière-plan : cliquez sur l'icône
      pour ajouter la couleur d'arrière-plan au champ de texte. Sélectionnez la couleur appropriée de la palette Couleurs du thème, Couleurs standard ou ajoutez une nouvelle couleur personnalisée, le cas échéant.
    • -
    • Ajustement automatique : il est possible d'activer cette option lors l'activation de l'option Taille de champ fixe, cochez cette case pour ajuster automatiquement la police en fonction de la taille du champ.
    • -
    • Champ de saisie à plusieurs lignes : il est possible d'activer cette option lors l'activation de l'option Taille de champ fixe, cochez cette case pour créer un champ à plusieurs lignes, sinon le champ va contenir une seule ligne de texte.
    • +
    • Requis : cochez cette case pour rendre le champ texte obligatoire à remplir.

    Peigne de caractères

    @@ -72,7 +78,7 @@

    Créer une zone de liste déroulante

    -

    Zone de liste déroulante comporte une liste déroulante avec un ensemble de choix modifiable.

    +

    Zone de liste déroulante comporte une liste déroulante avec un ensemble de choix modifiable.

    Pour ajouter une zone de liste déroulante, @@ -84,27 +90,28 @@

Zone de liste déroulante ajoutée

-

Le champ de formulaire apparaîtra à la point d'insertion de la ligne de texte existante. Le menu Paramètres du formulaire s'affiche à droite.

+

Le champ de formulaire apparaîtra au point d'insertion de la ligne de texte existante. Le menu Paramètres du formulaire s'affiche à droite.

- Paramètres de la zone de liste déroulante + Paramètres de la zone de liste déroulante
-

Cliquez sur la flèche dans la partie droite de la Zone de liste déroulante 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.

+

Cliquez sur la flèche dans la partie droite de la Zone de liste déroulante 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.

La zone de liste déroulante ouverte

Vous pouvez changer le style, la couleur et la taille de la police. Cliquez sur la zone de liste déroulante et suivez les instructions. La mise en forme sera appliquée à l'ensemble du texte dans le champ.

@@ -124,9 +131,9 @@

Liste déroulante ajoutée

-

Le champ de formulaire apparaîtra à la point d'insertion de la ligne de texte existante. Le menu Paramètres du formulaire s'affiche à droite.

+

Le champ de formulaire apparaîtra au point d'insertion de la ligne de texte existante. Le menu Paramètres du formulaire s'affiche à droite.

Cliquez sur la flèche dans la partie droite de la Liste déroulante ajoutée pour accéder à la liste d'éléments disponibles et choisir un élément approprié.

@@ -151,7 +159,7 @@

Créer une case à cocher

-

Case à cocher 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é.

+

Case à cocher 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.

Pour insérer une case à cocher, @@ -163,9 +171,9 @@

-

Le champ du formulaire apparaîtra à la point d'insertion de la ligne de texte existante. Le menu Paramètres du formulaire s'affiche à droite.

+

Le champ du formulaire apparaîtra au point d'insertion de la ligne de texte existante. Le menu Paramètres du formulaire s'affiche à droite.

- Paramètres de case à cocher + Paramètres de la case à cocher
  • Clé : 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 Entrée, ensuite attribuez cette clé aux champs du formulaire en choisissant de la liste déroulante. Message Champs connectés : 2/3/... s'affiche. Pour déconnecter les champs, cliquez sur Déconnexion.
  • Tag : saisissez un texte à utiliser en tant que tag à usage interne, c'est-à-dire affiché uniquement pour les coéditeurs.
  • @@ -175,10 +183,11 @@
  • Taille de champ fixe : activez cette option pour fixer la taille du champ.
    - 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.
  • -
  • Couleur de bordure : cliquez sur l'icône
    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 ajouter une couleur personnalisée.
  • +
  • Couleur de bordure : cliquez sur l'icône
    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 ajouter une couleur personnalisée.
  • Couleur d'arrière-plan : cliquez sur l'icône
    pour ajouter la couleur d'arrière-plan à la case à cocher. Sélectionnez la couleur appropriée de la palette Couleurs du thème, Couleurs standard ou ajoutez une nouvelle couleur personnalisée, le cas échéant.
  • +
  • Requis : cochez cette case pour rendre le champ de case à cocher obligatoire à remplir.

Cliquez sur la case pour la cocher.

@@ -188,7 +197,7 @@

Créer un bouton radio

-

Bouton radio 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.

+

Bouton radio 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.

Pour ajouter un bouton radio, @@ -200,9 +209,9 @@

-

Le champ du formulaire apparaîtra à la point d'insertion de la ligne de texte existante. Le menu Paramètres du formulaire s'affiche à droite.

+

Le champ du formulaire apparaîtra au point d'insertion de la ligne de texte existante. Le menu Paramètres du formulaire s'affiche à droite.

- Paramètres su bouton radio + Paramètres du bouton radio
  • Clé de groupe : pour créer un nouveau groupe de boutons radio, saisissez le nom du groupe et appuyez sur Entrée, ensuite attribuez le groupe approprié à chaque bouton radio.
  • Tag : saisissez un texte à utiliser en tant que tag à usage interne, c'est-à-dire affiché uniquement pour les coéditeurs.
  • @@ -212,10 +221,11 @@
  • Taille de champ fixe : activez cette option pour fixer la taille du champ.
    - 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.
  • -
  • Couleur de bordure : cliquez sur l'icône
    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 ajouter une couleur personnalisée.
  • +
  • Couleur de bordure : cliquez sur l'icône
    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 ajouter une couleur personnalisée.
  • Couleur d'arrière-plan : cliquez sur l'icône
    pour ajouter la couleur d'arrière-plan au bouton radio. Sélectionnez la couleur appropriée de la palette Couleurs du thème, Couleurs standard ou ajoutez une nouvelle couleur personnalisée, le cas échéant.
  • +
  • Requis : cochez cette case pour rendre le champ bouton radio obligatoire à remplir.

Cliquez sur le bouton radio pour le choisir.

@@ -225,10 +235,10 @@

Créer un champ image

-

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.

+

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.

- Pour ajouter un champ d'image, + Pour ajouter un champ image,
  1. positionnez le point d'insertion à la ligne du texte où vous souhaitez ajouter un champ,
  2. passez à l'onglet Formulaires de la barre d'outils supérieure,
  3. @@ -237,21 +247,22 @@

-

Le champ du formulaire apparaîtra à la point d'insertion de la ligne de texte existante. Le menu Paramètres du formulaire s'affiche à droite.

+

Le champ du formulaire apparaîtra au point d'insertion de la ligne de texte existante. Le menu Paramètres du formulaire s'affiche à droite.

- Paramètres du champ image + Paramètres du champ image
  • Clé : 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 Entrée, ensuite attribuez cette clé aux champs du formulaire en choisissant de la liste déroulante. Message Champs connectés : 2/3/... s'affiche. Pour déconnecter les champs, cliquez sur Déconnexion.
  • -
  • Espace réservé : saisissez le texte à afficher dans le champ d'image. Le texte par défaut est Cliquer pour télécharger l'image.
  • +
  • Espace réservé : saisissez le texte à afficher dans le champ image. Le texte par défaut est Cliquer pour télécharger l'image.
  • Tag : saisissez un texte à utiliser en tant que tag à usage interne, c'est-à-dire affiché uniquement pour les coéditeurs.
  • Conseil : saisissez le texte à afficher quand l'utilisateur fait passer la souris sur la bordure inférieure de l'image.
  • -
  • Mise à l'échelle : cliquez sur la liste déroulante et sélectionnez l'option de dimensionnement de l'image appropriée : Toujours, Jamais, lorsque L'image semble trop grande ou L'image semble trop petite. L'image sélectionnée sera redimensionnée dans le champ en fonction de l'option choisie.
  • +
  • Mise à l'échelle : cliquez sur la liste déroulante et sélectionnez l'option de dimensionnement de l'image appropriée : Toujours, Jamais, lorsque L'image semble trop grande ou L'image semble trop petite. L'image sélectionnée sera redimensionnée dans le champ en fonction de l'option choisie.
  • Verrouiller les proportions : 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.
  • Sélectionnez une image : cliquez sur ce bouton pour télécharger une image Depuis un fichier, D'une URL ou A partir de l'espace de stockage.
  • Couleur de bordure : cliquez sur l'icône
    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 ajouter une couleur personnalisée.
  • Couleur d'arrière-plan : cliquez sur l'icône
    pour ajouter la couleur d'arrière-plan au champ avec l'image. Sélectionnez la couleur appropriée de la palette Couleurs du thème, Couleurs standard ou ajoutez une nouvelle couleur personnalisée, le cas échéant.
  • +
  • Requis : cochez cette case pour rendre le champ image obligatoire à remplir.

Pour remplacer une image, cliquez sur l'icône d'image au-dessus de la bordure de champ image et sélectionnez une autre image.

@@ -259,6 +270,138 @@
+

Créer un champ adresse email

+

Le champ Adresse email est utilisé pour saisir une adresse email correspondante à une expression régulière \S+@\S+\.\S+.

+
+
+ Pour insérer un champ adresse email, +
    +
  1. positionnez le point d'insertion dans une ligne du texte à l'endroit où vous souhaitez ajouter le champ,
  2. +
  3. passez à l'onglet Formulaires sur la barre supérieure,
  4. +
  5. + cliquez sur l'icône
    Adresse email. +
  6. +
+

+

Le champ de formulaire apparaîtra au point d'insertion dans la ligne de texte existante. Le menu Paramètres du formulaire s'ouvre à droite.

+
+ Paramètres de l'adresse e-mail +
    +
  • Clé : pour créer un nouveau groupe d'adresses email, saisissez le nom du groupe et appuyez sur Entrée, ensuite attribuez le groupe approprié à chaque champ adresse email.
  • +
  • Espace réservé : saisissez le texte à afficher dans le champ adresse email ; Le texte par défaut est “user_name@email.com”.
  • +
  • Tag : saisissez un texte à utiliser en tant que tag à usage interne, c'est-à-dire affiché uniquement pour les coéditeurs.
  • +
  • + Conseil : saisissez le texte à afficher quand l'utilisateur fait passer la souris sur le champ adresse email. +
    conseil inséré +
  • +
  • Format : choisissez le format de contenu du champ, c'est-à-dire Aucun, Chiffres, Lettres, Masque arbitraire ou Expression régulière. Le champ est défini sur Expression régulière par défaut afin de conserver le format de l'adresse email \S+@\S+\.\S+.
  • +
  • Symboles autorisés : saisissez les symboles autorisés dans le champ adresse email.
  • +
  • + Taille de champ fixe : activez cette option pour fixer la taille du champ. Lorsque cette option est activée, vous pouvez utiliser les paramètres Ajustement automatique et/ou Champ de saisie à plusieurs lignes.
    + Un champ de taille fixe ressemble à une forme automatique. Vous pouvez définir le style d'habillage et ajuster sa position. +
  • +
  • Ajustement automatique : il est possible d'activer cette option lors l'activation de l'option Taille de champ fixe, cochez cette case pour ajuster automatiquement la taille de la police en fonction de la taille du champ.
  • +
  • Champ de saisie à plusieurs lignes : il est possible d'activer cette option lors l'activation de l'option Taille de champ fixe, cochez cette case pour créer un champ à plusieurs lignes, sinon le champ va contenir une seule ligne de texte.
  • +
  • Limite de caractères : 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.
  • +
  • + Peigne de caractères : 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 : +
      +
    • Largeur de cellule : choisissez si la valeur de largeur doit être Auto (la largeur est calculée automatiquement), Au moins (la largeur n'est pas inférieure à la valeur indiquée manuellement), ou Exactement (la largeur correspond à la valeur indiquée manuellement). Le texte sera justifié selon les paramètres.
    • +
    +
  • +
  • Couleur de bordure : cliquez sur l'icône
    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 ajouter une couleur personnalisée.
  • +
  • Couleur d'arrière-plan : cliquez sur l'icône
    pour ajouter la couleur d'arrière-plan au champ adresse email. Sélectionnez la couleur appropriée de la palette Couleurs du thème, Couleurs standard ou ajoutez une nouvelle couleur personnalisée, le cas échéant.
  • +
  • Requis : cochez cette case pour rendre le champ adresse email obligatoire à remplir.
  • +
+
+
+
+ +

Créer un champ numéro de téléphone

+

Champ Numéro de téléphone 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 (999)999-9999.

+
+
+ Pour insérer un champ numéro de téléphone, +
    +
  1. positionnez le point d'insertion dans une ligne du texte à l'endroit où vous souhaitez ajouter le champ,
  2. +
  3. passez à l'onglet Formulaires dans la barre d'outils supérieure,
  4. +
  5. + cliquez sur l'icône
    numéro de téléphone. +
  6. +
+

+

Le champ de formulaire apparaîtra au point d'insertion dans la ligne de texte existante. Le menu Paramètres du formulaire s'ouvre à droite.

+
+ Paramètres du numéro de téléphone +
    +
  • Clé : pour créer un nouveau groupe de numéros de téléphone, saisissez le nom du groupe et appuyez sur Entrée, ensuite attribuez le groupe approprié à chaque numéro de téléphone.
  • +
  • Espace réservé : saisissez le texte à afficher dans le champ numéro de téléphone ; Le texte par défaut est “(999)999-9999”.
  • +
  • Tag : saisissez un texte à utiliser en tant que tag à usage interne, c'est-à-dire affiché uniquement pour les coéditeurs.
  • +
  • + Conseil : saisissez le texte à afficher quand l'utilisateur fait passer la souris sur le champ numéro de téléphone. +
    conseil inséré +
  • +
  • Format : choisissez le format de contenu du champ, c'est-à-dire Aucun, Chiffres, Lettres, Masque arbitraire ou Expression régulière. Le format du champ par défaut est Masque arbitraire. Pour le changer, saisissez le masque requis dans le champ ci-dessous.
  • +
  • Symboles autorisés : saisissez les symboles autorisés dans le champ numéro de téléphone.
  • +
  • + Taille de champ fixe : activez cette option pour fixer la taille du champ. Lorsque cette option est activée, vous pouvez utiliser les paramètres Ajustement automatique et/ou Champ de saisie à plusieurs lignes.
    + Un champ de taille fixe ressemble à une forme automatique. Vous pouvez définir le style d'habillage et ajuster sa position. +
  • +
  • Ajustement automatique : il est possible d'activer cette option lors l'activation de l'option Taille de champ fixe, cochez cette case pour ajuster automatiquement la taille de la police en fonction de la taille du champ.
  • +
  • Champ de saisie à plusieurs lignes : il est possible d'activer cette option lors l'activation de l'option Taille de champ fixe, cochez cette case pour créer un champ à plusieurs lignes, sinon le champ va contenir une seule ligne de texte.
  • +
  • Limite de caractères : 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.
  • +
  • + Peigne de caractères : 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 : +
      +
    • Largeur de cellule : choisissez si la valeur de largeur doit être Auto (la largeur est calculée automatiquement), Au moins (la largeur n'est pas inférieure à la valeur indiquée manuellement), ou Exactement (la largeur correspond à la valeur indiquée manuellement). Le texte sera justifié selon les paramètres.
    • +
    +
  • +
  • Couleur de bordure : cliquez sur l'icône
    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 ajouter une couleur personnalisée.
  • +
  • Couleur d'arrière-plan : cliquez sur l'icône
    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 Couleurs du thème, Couleurs standard ou ajoutez une nouvelle couleur personnalisée, le cas échéant.
  • +
  • Requis : cochez cette case pour rendre le champ numéro de téléphone obligatoire à remplir.
  • +
+
+
+
+ +

Créer un champ complexe

+

Champ complexe 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.

+
+
+ Pour insérer un champ complexe, +
    +
  1. positionnez le point d'insertion dans une ligne du texte à l'endroit où vous souhaitez ajouter le champ,
  2. +
  3. passez à l'onglet Formulaires dans la barre d'outils supérieure,
  4. +
  5. + cliquez sur l'icône
    Champ complexe. +
  6. +
+

champ complexe inséré

+

Le champ de formulaire apparaîtra au point d'insertion dans la ligne de texte existante. Le menu Paramètres du formulaire s'ouvre à droite.

+
+ Paramètres du champ complexe +
    +
  • Clé : pour créer un nouveau groupe de champs complexes, saisissez le nom du groupe et appuyez sur Entrée, ensuite attribuez le groupe approprié à chaque champ complexe.
  • +
  • Espace réservé : saisissez le texte à afficher dans le champ complexe; Le texte par défaut est “Votre texte ici”.
  • +
  • Tag : saisissez un texte à utiliser en tant que tag à usage interne, c'est-à-dire affiché uniquement pour les coéditeurs.
  • +
  • + Conseil : saisissez le texte à afficher quand l'utilisateur fait passer la souris sur le champ complexe. +
    conseil insérté +
  • +
  • + Taille de champ fixe : activez cette option pour fixer la taille du champ.
    + Un champ de taille fixe ressemble à une forme automatique. Vous pouvez définir le style d'habillage et ajuster sa position. +
  • +
  • Couleur de bordure : cliquez sur l'icône
    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 ajouter une couleur personnalisée.
  • +
  • Couleur d'arrière-plan : cliquez sur l'icône
    pour ajouter la couleur d'arrière-plan au champ complexe. Sélectionnez la couleur appropriée de la palette Couleurs du thème, Couleurs standard ou ajoutez une nouvelle couleur personnalisée, le cas échéant.
  • +
  • Requis : cochez cette case pour rendre le champ complexe obligatoire à remplir.
  • +
+

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 Formulaires, puis configurez-le. Pour en savoir plus sur chaque type de champ, consultez la section appropriée ci-dessus.

+

Veuillez noter qu'il est impossible d'utiliser le champ de formulaire Image dans les champs complexes.

+
+
+
+

Mettre le formulaire en surbrillance

Vous pouvez mettre en surbrillance les champs du formulaire ajoutés avec une certaine couleur.

@@ -268,15 +411,13 @@
Paramètres de surbrillance
    -
  • accéder aux Paramètres de surbrillance sous l'onglet Formulaire de la barre d'outils supérieure,
  • +
  • accédez aux Paramètres de surbrillance sous l'onglet Formulaire de la barre d'outils supérieure,
  • choisissez une couleur de la palette de Couleurs standard. Le cas échéant, vous pouvez ajouter une couleur personnalisée,
  • pour supprimer la mise en surbrillance actuelle, utilisez l'option Pas de surbrillance.

Les options de surbrillance activées seront appliquées à tous les champs du formulaire actuel.

-

- Remarque : La bordure du champ du formulaire n'est pas visible lorsque vous sélectionnez ce champ. Ces bordures sont non imprimables. -

+

La bordure du champ du formulaire n'est pas visible lorsque vous sélectionnez ce champ. Ces bordures sont non imprimables.

@@ -286,7 +427,7 @@

Cliquez sur le bouton Voir le formulaire sous l'onglet Formulaire de la barre d'outils supérieure, pour afficher un aperçu du formulaire sur un document.

Voir le formulaire actif

-

Pour quitter le mode d'aperçu, cliquer sur la même icône encore une fois.

+

Pour quitter le mode d'aperçu, cliquez sur la même icône encore une fois.

Déplacer les champs du formulaire

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.

@@ -311,7 +452,7 @@

When you are finished, click the

Submit button at the top toolbar to send the form for further processing. Please note that this action cannot be undone.

If you are using the server version of ONLYOFFICE Docs, the presence of the Submit button depends on the configuration. Read this article to learn more.

-->

Supprimer les champs du formulaire

-

Pour supprimer un champ du formulaire et garder tous son contenu, sélectionnez-le et cliquez sur l'icône Supprimer (assurez-vous que le champ n'est pas verrouillé) ou appuyez sur la touche Supprimer du clavier.

+

Pour supprimer un champ du formulaire et garder tout son contenu, sélectionnez-le et cliquez sur l'icône Supprimer (assurez-vous que le champ n'est pas verrouillé) ou appuyez sur la touche Supprimer du clavier.

\ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/fr/UsageInstructions/InsertCharts.htm b/apps/documenteditor/main/resources/help/fr/UsageInstructions/InsertCharts.htm index ebb1e4ce50..fcecf86cb7 100644 --- a/apps/documenteditor/main/resources/help/fr/UsageInstructions/InsertCharts.htm +++ b/apps/documenteditor/main/resources/help/fr/UsageInstructions/InsertCharts.htm @@ -18,9 +18,9 @@

Insérer un graphique

Pour insérer un graphique dans l'Éditeur de Documents,

    -
  1. placez le curseur à l'endroit où vous voulez insérer un graphique,
  2. -
  3. passez à l'onglet Insertion de la barre d'outils supérieure,
  4. -
  5. cliquez sur l'icône Graphique
    de la barre d'outils supérieure,
  6. +
  7. Placez le curseur à l'endroit où vous voulez insérer un graphique.
  8. +
  9. Passez à l'onglet Insertion de la barre d'outils supérieure.
  10. +
  11. Cliquez sur l'icône Graphique
    de la barre d'outils supérieure.
  12. choisissez le type de graphique approprié :
    @@ -100,7 +100,7 @@

    Remarque : Éditeur de Documents ONLYOFFICE prend en charge des graphiques en pyramides, à barres (pyramides), horizontal/vertical à cylindre, horizontal/vertical à cônes qui étaient créés avec d’autres applications. Vous pouvez ouvrir le fichier comportant un tel graphique et le modifier.

  13. - lorsque la fenêtre Éditeur du graphique s'affiche, vous pouvez saisir les données à en utilisant des boutons suivants : + Lorsque la fenêtre Éditeur du graphique s'affiche, vous pouvez saisir les données à en utilisant des boutons suivants :
    • et
      pour copier et coller des données
    • et
      pour annuler et rétablir une action
    • @@ -160,7 +160,7 @@

      La fenêtre Type de graphique Combo

    • - paramétrer le graphique en cliquant sur Modifier le graphique dans la fenêtre Éditeur du graphique. La fenêtre Graphique - Paramètres avancés s'affiche. + Paramétrer le graphique en cliquant sur Modifier le graphique dans la fenêtre Éditeur du graphique. La fenêtre Graphique - Paramètres avancés s'affiche.

      La fenêtre Graphique - Paramètres avancés

      L'onglet Disposition vous permet de modifier la disposition des éléments de graphique.

        @@ -188,7 +188,7 @@ Spécifiez les paramètres des Étiquettes de données (c'est-à-dire les étiquettes de texte représentant les valeurs exactes des points de données) :
        • - spécifiez la position des Étiquettes de données 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 Étiquettes de données 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é.
          • Pour les graphiques en Colonnes/Barres, vous pouvez choisir les options suivantes : Rien, Au centre, En haut à l'intérieur, En haut à l'intérieur, En haut à l'extérieur.
          • Pour les graphiques en Ligne/ Nuage de points (XY)/Boursier, vous pouvez choisir les options suivantes : Rien, Au centre, À gauche, À droite, En haut, En bas.
          • @@ -196,8 +196,8 @@
          • Pour les graphiques en Aire ainsi que pour les graphiques 3D en Colonnes, Ligne, Barres et Combo vous pouvez choisir les options suivantes : Rien, Au centre.
        • -
        • sélectionnez les données que vous souhaitez inclure dans vos étiquettes en cochant les cases correspondantes : Nom de la série, Nom de la catégorie, Valeur,
        • -
        • entrez un caractère (virgule, point-virgule, etc.) que vous souhaitez utiliser pour séparer plusieurs étiquettes dans le champ de saisie Séparateur d'étiquettes de données.
        • +
        • Sélectionnez les données que vous souhaitez inclure dans vos étiquettes en cochant les cases correspondantes : Nom de la série, Nom de la catégorie, Valeur,
        • +
        • Entrez un caractère (virgule, point-virgule, etc.) que vous souhaitez utiliser pour séparer plusieurs étiquettes dans le champ de saisie Séparateur d'étiquettes de données.
      • Lignes - permet de choisir un style de ligne pour les graphiques en Ligne/Nuage de points (XY). Vous pouvez choisir parmi les options suivantes : Droit pour utiliser des lignes droites entre les points de données, Lisse pour utiliser des courbes lisses entre les points de données, ou Rien pour ne pas afficher les lignes.
      • @@ -210,9 +210,9 @@

        L'onglet Axe vertical 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 Graphiques à barres. Dans ce cas, les options de l'onglet Axe vertical correspondront à celles décrites dans la section suivante. Pour les Graphiques Nuage de points (XY), les deux axes sont des axes de valeur.

        Remarque : les sections Paramètres des axes et Quadrillage seront désactivées pour les Graphiques à secteurs, car les graphiques de ce type n'ont ni axes ni lignes de quadrillage.

          -
        • sélectionnez Masquer l'axe pour masquer l'axe vertical du graphique, laissez cette option décochée pour afficher l'axe.
        • +
        • Sélectionnez Masquer l'axe pour masquer l'axe vertical du graphique, laissez cette option décochée pour afficher l'axe.
        • - 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 :
          • Rien pour ne pas afficher le titre de l'axe vertical
          • Incliné pour afficher le titre de bas en haut à gauche de l'axe vertical,
          • @@ -271,9 +271,9 @@

            La fenêtre Graphique - Paramètres avancés

            L'onglet Axe horizontal 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 Graphiques à barres. Dans ce cas, les options de l'onglet Axe horizontal correspondent à celles décrites dans la section précédente. Pour les Graphiques Nuage de points (XY), les deux axes sont des axes de valeur.

              -
            • sélectionnez Masquer l'axe pour masquer l'axe horizontal du graphique, laissez cette option décochée pour afficher l'axe.
            • +
            • Sélectionnez Masquer l'axe pour masquer l'axe horizontal du graphique, laissez cette option décochée pour afficher l'axe.
            • - 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 :
              • Rien pour ne pas afficher le titre de l'axe horizontal.
              • Sans superposition pour afficher le titre en-dessous de l'axe horizontal.
              • diff --git a/apps/documenteditor/main/resources/help/it/HelpfulHints/Comparison.htm b/apps/documenteditor/main/resources/help/it/HelpfulHints/Comparison.htm index 0108e2f303..412336a3a2 100644 --- a/apps/documenteditor/main/resources/help/it/HelpfulHints/Comparison.htm +++ b/apps/documenteditor/main/resources/help/it/HelpfulHints/Comparison.htm @@ -73,12 +73,12 @@

                To quickly reject all the changes, click the downward arrow below the Reject button and select the Reject All Changes option.

                Additional info on the comparison feature

                -
                Method of the comparison
                +

                Method of the comparison

                Documents are compared by words. 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.

                The image below illustrates the case when the original file contains the word 'Characters' and the document for comparison contains the word 'Character'.

                Compare documents - method

                -
                Authorship of the document
                +

                Authorship of the document

                When the comparison process is launched, the second document for comparison is being loaded and compared to the current one.

                • 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.
                • @@ -87,7 +87,7 @@

                  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.

                  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.

                  -
                  Presence of the tracked changes in the compared document
                  +

                  Presence of the tracked changes in the compared document

                  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.

                  In this case, when you choose the Original display mode, the document will not contain any changes.

                  diff --git a/apps/documenteditor/main/resources/help/it/UsageInstructions/AlignText.htm b/apps/documenteditor/main/resources/help/it/UsageInstructions/AlignText.htm index c5b5d525a4..c46ec066ee 100644 --- a/apps/documenteditor/main/resources/help/it/UsageInstructions/AlignText.htm +++ b/apps/documenteditor/main/resources/help/it/UsageInstructions/AlignText.htm @@ -28,7 +28,7 @@
-

I parametri di allineamento sono disponibili anche nella finestra Paragrafo - Impostazioni avanzate.

+

I parametri di allineamento sono disponibili anche nella finestra Paragrafo - Impostazioni avanzate:

  1. fare clic con il pulsante destro del mouse sul testo e scegliere l'opzione Impostazioni avanzate del paragrafo dal menu contestuale o utilizzare l'opzione Mostra impostazioni avanzate nella barra laterale destra,
  2. aprire la finestra Paragrafo - Impostazioni avanzate, passare alla scheda Rientri e spaziatura
  3. diff --git a/apps/documenteditor/main/resources/help/ru/HelpfulHints/Comparison.htm b/apps/documenteditor/main/resources/help/ru/HelpfulHints/Comparison.htm index 0f859278d9..47be9a59b3 100644 --- a/apps/documenteditor/main/resources/help/ru/HelpfulHints/Comparison.htm +++ b/apps/documenteditor/main/resources/help/ru/HelpfulHints/Comparison.htm @@ -73,12 +73,12 @@

    Чтобы быстро отклонить все изменения, нажмите направленную вниз стрелку под кнопкой Отклонить и выберите опцию Отклонить все изменения.

    Дополнительные сведения о функции сравнения

    -
    Принцип сравнения
    +

    Принцип сравнения

    Сравнение документов ведется по словам. Если слово содержит изменение хотя бы на один символ (например, если символ был удален или заменен), в результате отличие будет отображено как изменение всего слова целиком, а не символа.

    Приведенное ниже изображение иллюстрирует случай, когда исходный файл содержит слово 'Символы', а документ для сравнения содержит слово 'Символ'.

    Сравнение документов - принцип

    -
    Авторство документа
    +

    Авторство документа

    При запуске процесса сравнения документов второй документ для сравнения загружается и сравнивается с текущим.

-

Параметры выравнивания также доступны в окне Абзац - дополнительные параметры.

+

Параметры выравнивания также доступны в окне Абзац - дополнительные параметры:

  1. щелкните по тексту правой кнопкой мыши и выберите в контекстном меню опцию Дополнительные параметры абзаца или используйте опцию Дополнительные параметры на правой боковой панели,
  2. откройте окно Абзац - дополнительные параметры, перейдите на вкладку Отступы и интервалы,
  3. diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertCharts.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertCharts.htm index 7e4e76e356..37d6389a29 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertCharts.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertCharts.htm @@ -18,11 +18,11 @@

    Вставка диаграммы

    Для вставки диаграммы в документ:

      -
    1. установите курсор там, где требуется поместить диаграмму,
    2. -
    3. перейдите на вкладку Вставка верхней панели инструментов,
    4. -
    5. щелкните по значку
      Диаграмма на верхней панели инструментов,
    6. +
    7. Установите курсор там, где требуется поместить диаграмму.
    8. +
    9. Перейдите на вкладку Вставка верхней панели инструментов.
    10. +
    11. Щелкните по значку
      Диаграмма на верхней панели инструментов.
    12. - выберите из доступных типов диаграммы: + Выберите из доступных типов диаграммы:
      Гистограмма
        @@ -99,7 +99,7 @@

        Примечание: Редактор документов ONLYOFFICE поддерживает следующие типы диаграмм, созданных в сторонних редакторах: Пирамида, Гистограмма (пирамида), Горизонтальные/Вертикальные цилиндры, Горизонтальные/вертикальные конусы. Вы можете открыть файл, содержащий такую диаграмму, и изменить его, используя доступные инструменты редактирования диаграмм.

      • - после этого появится окно Редактор диаграмм, в котором можно ввести в ячейки необходимые данные при помощи следующих элементов управления: + После этого появится окно Редактор диаграмм, в котором можно ввести в ячейки необходимые данные при помощи следующих элементов управления:
        • и
          для копирования и вставки скопированных данных
        • и
          для отмены и повтора действий
        • @@ -153,13 +153,13 @@
  4. - измените параметры диаграммы, нажав на кнопку Изменить тип диаграммы в окне Редактор диаграмм, чтобы выбрать тип и стиль диаграммы. Выберите диаграмму из доступных разделов: гистограмма, график, круговая, линейчатая, с областями, биржевая, точечная, комбинированные. + Измените параметры диаграммы, нажав на кнопку Изменить тип диаграммы в окне Редактор диаграмм, чтобы выбрать тип и стиль диаграммы. Выберите диаграмму из доступных разделов: гистограмма, график, круговая, линейчатая, с областями, биржевая, точечная, комбинированные.

    Окно Тип диаграммы

    Когда вы выбираете Комбинированные диаграммы, в окне Тип диаграммы расположены ряды диаграмм, для которых можно выбрать типы диаграмм и данные для размещения на вторичной оси.

    Chart Type Combo

  5. - измените параметры диаграммы, нажав кнопку Редактировать диаграмму в окне Редактор диаграмм. Откроется окно Диаграмма - Дополнительные настройки. + Измените параметры диаграммы, нажав кнопку Редактировать диаграмму в окне Редактор диаграмм. Откроется окно Диаграмма - Дополнительные настройки.

    Окно Диаграмма - дополнительные параметры

    На вкладке Макет можно изменить расположение элементов диаграммы:

      @@ -187,7 +187,7 @@ Определите параметры Подписей данных (то есть текстовых подписей, показывающих точные значения элементов данных):
      • - укажите местоположение Подписей данных относительно элементов данных, выбрав нужную опцию из выпадающего списка. Доступные варианты зависят от выбранного типа диаграммы. + Укажите местоположение Подписей данных относительно элементов данных, выбрав нужную опцию из выпадающего списка. Доступные варианты зависят от выбранного типа диаграммы.
        • Для Гистограмм и Линейчатых диаграмм можно выбрать следующие варианты: Нет, По центру, Внутри снизу, Внутри сверху, Снаружи сверху.
        • Для Графиков и Точечных или Биржевых диаграмм можно выбрать следующие варианты: Нет, По центру, Слева, Справа, Сверху, Снизу.
        • @@ -195,8 +195,8 @@
        • Для диаграмм С областями, а также для Гистограмм, Графиков и Линейчатых диаграмм в формате 3D можно выбрать следующие варианты: Нет, По центру.
      • -
      • выберите данные, которые вы хотите включить в ваши подписи, поставив соответствующие флажки: Имя ряда, Название категории, Значение,
      • -
      • введите символ (запятая, точка с запятой и т.д.), который вы хотите использовать для разделения нескольких подписей, в поле Разделитель подписей данных.
      • +
      • Выберите данные, которые вы хотите включить в ваши подписи, поставив соответствующие флажки: Имя ряда, Название категории, Значение,
      • +
      • Введите символ (запятая, точка с запятой и т.д.), который вы хотите использовать для разделения нескольких подписей, в поле Разделитель подписей данных.
    • Линии - используется для выбора типа линий для линейчатых/точечных диаграмм. Можно выбрать одну из следующих опций: Прямые для использования прямых линий между элементами данных, Сглаженные для использования сглаженных кривых линий между элементами данных или Нет для того, чтобы линии не отображались.
    • @@ -209,9 +209,9 @@

      Вкладка Вертикальная ось позволяет изменять параметры вертикальной оси, также называемой осью значений или осью Y, которая отображает числовые значения. Обратите внимание, что вертикальная ось будет осью категорий, которая отображает подпись для Гистограмм, таким образом, параметры вкладки Вертикальная ось будут соответствовать параметрам, описанным в следующем разделе. Для Точечных диаграмм обе оси являются осями значений.

      Примечание: Параметры оси и Линии сетки недоступны для круговых диаграмм, так как у круговых диаграмм нет осей и линий сетки.

        -
      • нажмите Скрыть ось, чтобы скрыть вертикальную ось на диаграмме.
      • +
      • Нажмите Скрыть ось, чтобы скрыть вертикальную ось на диаграмме.
      • - укажите ориентацию Заголовка, выбрав нужный вариант из раскрывающегося списка: + Укажите ориентацию Заголовка, выбрав нужный вариант из раскрывающегося списка:
        • Нет - не отображать название вертикальной оси,
        • Повернутое - показать название снизу вверх слева от вертикальной оси,
        • @@ -290,9 +290,9 @@

          Диаграмма - окно дополнительные параметры

          Вкладка Горизонтальная ось позволяет изменять параметры горизонтальной оси, также называемой осью категорий или осью x, которая отображает текстовые метки. Обратите внимание, что горизонтальная ось будет осью значений, которая отображает числовые значения для Гистограмм, поэтому в этом случае параметры вкладки Горизонтальная ось будут соответствовать параметрам, описанным в предыдущем разделе. Для Точечных диаграмм обе оси являются осями значений.

            -
          • нажмите Скрыть ось, чтобы скрыть горизонтальную ось на диаграмме.
          • +
          • Нажмите Скрыть ось, чтобы скрыть горизонтальную ось на диаграмме.
          • - укажите ориентацию Заголовка, выбрав нужный вариант из раскрывающегося списка: + Укажите ориентацию Заголовка, выбрав нужный вариант из раскрывающегося списка:
            • Нет - не отображать заголовок горизонтальной оси,
            • Без наложения - отображать заголовок под горизонтальной осью,
            • diff --git a/apps/documenteditor/mobile/locale/az.json b/apps/documenteditor/mobile/locale/az.json index 169f41c9ec..313356edff 100644 --- a/apps/documenteditor/mobile/locale/az.json +++ b/apps/documenteditor/mobile/locale/az.json @@ -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.
              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", diff --git a/apps/documenteditor/mobile/locale/be.json b/apps/documenteditor/mobile/locale/be.json index b7847935d2..3287ce4538 100644 --- a/apps/documenteditor/mobile/locale/be.json +++ b/apps/documenteditor/mobile/locale/be.json @@ -455,7 +455,10 @@ "txtEditingMode": "Актывацыя рэжыму рэдагавання…", "uploadImageTextText": "Запампоўванне выявы…", "uploadImageTitleText": "Запампоўванне выявы", - "waitText": "Калі ласка, пачакайце..." + "waitText": "Калі ласка, пачакайце...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
              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": "Памылка", diff --git a/apps/documenteditor/mobile/locale/bg.json b/apps/documenteditor/mobile/locale/bg.json index e7d2796f49..75e6794051 100644 --- a/apps/documenteditor/mobile/locale/bg.json +++ b/apps/documenteditor/mobile/locale/bg.json @@ -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.
              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", diff --git a/apps/documenteditor/mobile/locale/ca.json b/apps/documenteditor/mobile/locale/ca.json index 000d9078f4..11ac822959 100644 --- a/apps/documenteditor/mobile/locale/ca.json +++ b/apps/documenteditor/mobile/locale/ca.json @@ -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.
              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", diff --git a/apps/documenteditor/mobile/locale/cs.json b/apps/documenteditor/mobile/locale/cs.json index 9b0f5d163d..eaa5633c9a 100644 --- a/apps/documenteditor/mobile/locale/cs.json +++ b/apps/documenteditor/mobile/locale/cs.json @@ -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.
              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", diff --git a/apps/documenteditor/mobile/locale/da.json b/apps/documenteditor/mobile/locale/da.json index e7d2796f49..75e6794051 100644 --- a/apps/documenteditor/mobile/locale/da.json +++ b/apps/documenteditor/mobile/locale/da.json @@ -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.
              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", diff --git a/apps/documenteditor/mobile/locale/de.json b/apps/documenteditor/mobile/locale/de.json index 6791ba6c01..6e8a142428 100644 --- a/apps/documenteditor/mobile/locale/de.json +++ b/apps/documenteditor/mobile/locale/de.json @@ -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.
              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", diff --git a/apps/documenteditor/mobile/locale/el.json b/apps/documenteditor/mobile/locale/el.json index 903acecd83..43522a7006 100644 --- a/apps/documenteditor/mobile/locale/el.json +++ b/apps/documenteditor/mobile/locale/el.json @@ -455,7 +455,10 @@ "txtEditingMode": "Ορισμός κατάστασης επεξεργασίας...", "uploadImageTextText": "Μεταφόρτωση εικόνας...", "uploadImageTitleText": "Μεταφόρτωση Εικόνας", - "waitText": "Παρακαλούμε, περιμένετε..." + "waitText": "Παρακαλούμε, περιμένετε...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
              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": "Σφάλμα", diff --git a/apps/documenteditor/mobile/locale/en.json b/apps/documenteditor/mobile/locale/en.json index 92672997bb..2b1e3a315b 100644 --- a/apps/documenteditor/mobile/locale/en.json +++ b/apps/documenteditor/mobile/locale/en.json @@ -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.
              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", diff --git a/apps/documenteditor/mobile/locale/es.json b/apps/documenteditor/mobile/locale/es.json index 063c91f1de..34937bdc70 100644 --- a/apps/documenteditor/mobile/locale/es.json +++ b/apps/documenteditor/mobile/locale/es.json @@ -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.
              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", diff --git a/apps/documenteditor/mobile/locale/eu.json b/apps/documenteditor/mobile/locale/eu.json index c80dfd7fc1..3ffc2eff14 100644 --- a/apps/documenteditor/mobile/locale/eu.json +++ b/apps/documenteditor/mobile/locale/eu.json @@ -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.
              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", diff --git a/apps/documenteditor/mobile/locale/fi.json b/apps/documenteditor/mobile/locale/fi.json index e7d2796f49..75e6794051 100644 --- a/apps/documenteditor/mobile/locale/fi.json +++ b/apps/documenteditor/mobile/locale/fi.json @@ -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.
              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", diff --git a/apps/documenteditor/mobile/locale/fr.json b/apps/documenteditor/mobile/locale/fr.json index b86b26d9cf..f04ecefb7b 100644 --- a/apps/documenteditor/mobile/locale/fr.json +++ b/apps/documenteditor/mobile/locale/fr.json @@ -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.
              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", diff --git a/apps/documenteditor/mobile/locale/gl.json b/apps/documenteditor/mobile/locale/gl.json index 4e765c4278..35fa042e85 100644 --- a/apps/documenteditor/mobile/locale/gl.json +++ b/apps/documenteditor/mobile/locale/gl.json @@ -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.
              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", diff --git a/apps/documenteditor/mobile/locale/hu.json b/apps/documenteditor/mobile/locale/hu.json index 26def78ad9..dc67cb6143 100644 --- a/apps/documenteditor/mobile/locale/hu.json +++ b/apps/documenteditor/mobile/locale/hu.json @@ -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.
              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", diff --git a/apps/documenteditor/mobile/locale/hy.json b/apps/documenteditor/mobile/locale/hy.json index 7ba4bbb69d..e84c06d524 100644 --- a/apps/documenteditor/mobile/locale/hy.json +++ b/apps/documenteditor/mobile/locale/hy.json @@ -455,7 +455,10 @@ "txtEditingMode": "Սահմանել ցուցակի խմբագրում․․․", "uploadImageTextText": "Նկարի վերբեռնում...", "uploadImageTitleText": "Նկարի վերբեռնում", - "waitText": "Խնդրում ենք սպասել..." + "waitText": "Խնդրում ենք սպասել...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
              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": "Սխալ", diff --git a/apps/documenteditor/mobile/locale/id.json b/apps/documenteditor/mobile/locale/id.json index cc0f3a07bd..6916e2d30d 100644 --- a/apps/documenteditor/mobile/locale/id.json +++ b/apps/documenteditor/mobile/locale/id.json @@ -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.
              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", diff --git a/apps/documenteditor/mobile/locale/it.json b/apps/documenteditor/mobile/locale/it.json index 4a0cdb46dd..d357ec3be4 100644 --- a/apps/documenteditor/mobile/locale/it.json +++ b/apps/documenteditor/mobile/locale/it.json @@ -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.
              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", diff --git a/apps/documenteditor/mobile/locale/ja.json b/apps/documenteditor/mobile/locale/ja.json index 4d4c3d61aa..96b15b25e4 100644 --- a/apps/documenteditor/mobile/locale/ja.json +++ b/apps/documenteditor/mobile/locale/ja.json @@ -455,7 +455,10 @@ "txtEditingMode": "編集モードを設定します...", "uploadImageTextText": "イメージのアップロード中...", "uploadImageTitleText": "イメージのアップロード中", - "waitText": "少々お待ちください..." + "waitText": "少々お待ちください...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
              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": "エラー", diff --git a/apps/documenteditor/mobile/locale/ko.json b/apps/documenteditor/mobile/locale/ko.json index c2247f06a4..41ec23573d 100644 --- a/apps/documenteditor/mobile/locale/ko.json +++ b/apps/documenteditor/mobile/locale/ko.json @@ -455,7 +455,10 @@ "txtEditingMode": "편집 모드 설정 ...", "uploadImageTextText": "이미지 업로드 중 ...", "uploadImageTitleText": "이미지 업로드 중", - "waitText": "잠시만 기다려주세요..." + "waitText": "잠시만 기다려주세요...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
              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": "오류", diff --git a/apps/documenteditor/mobile/locale/lo.json b/apps/documenteditor/mobile/locale/lo.json index 332725a2cd..982a382ff6 100644 --- a/apps/documenteditor/mobile/locale/lo.json +++ b/apps/documenteditor/mobile/locale/lo.json @@ -455,7 +455,10 @@ "txtEditingMode": "ຕັ້ງຄ່າຮູບແບບການແກ້ໄຂ...", "uploadImageTextText": "ກໍາລັງອັບໂຫລດຮູບພາບ...", "uploadImageTitleText": "ກໍາລັງອັບໂຫລດຮູບພາບ", - "waitText": "ກະລຸນາລໍຖ້າ..." + "waitText": "ກະລຸນາລໍຖ້າ...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
              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": "ຂໍ້ຜິດພາດ", diff --git a/apps/documenteditor/mobile/locale/lv.json b/apps/documenteditor/mobile/locale/lv.json index e7d2796f49..75e6794051 100644 --- a/apps/documenteditor/mobile/locale/lv.json +++ b/apps/documenteditor/mobile/locale/lv.json @@ -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.
              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", diff --git a/apps/documenteditor/mobile/locale/ms.json b/apps/documenteditor/mobile/locale/ms.json index 56f88752e3..0ee7413f8e 100644 --- a/apps/documenteditor/mobile/locale/ms.json +++ b/apps/documenteditor/mobile/locale/ms.json @@ -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.
              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", diff --git a/apps/documenteditor/mobile/locale/nb.json b/apps/documenteditor/mobile/locale/nb.json index e7d2796f49..75e6794051 100644 --- a/apps/documenteditor/mobile/locale/nb.json +++ b/apps/documenteditor/mobile/locale/nb.json @@ -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.
              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", diff --git a/apps/documenteditor/mobile/locale/nl.json b/apps/documenteditor/mobile/locale/nl.json index 0e19171257..b80e5585d3 100644 --- a/apps/documenteditor/mobile/locale/nl.json +++ b/apps/documenteditor/mobile/locale/nl.json @@ -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.
              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", diff --git a/apps/documenteditor/mobile/locale/pl.json b/apps/documenteditor/mobile/locale/pl.json index e7d2796f49..75e6794051 100644 --- a/apps/documenteditor/mobile/locale/pl.json +++ b/apps/documenteditor/mobile/locale/pl.json @@ -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.
              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", diff --git a/apps/documenteditor/mobile/locale/pt-pt.json b/apps/documenteditor/mobile/locale/pt-pt.json index 1c1c731bbb..b8a8f20280 100644 --- a/apps/documenteditor/mobile/locale/pt-pt.json +++ b/apps/documenteditor/mobile/locale/pt-pt.json @@ -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.
              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", diff --git a/apps/documenteditor/mobile/locale/pt.json b/apps/documenteditor/mobile/locale/pt.json index ba6791ec8c..3bc437dfd6 100644 --- a/apps/documenteditor/mobile/locale/pt.json +++ b/apps/documenteditor/mobile/locale/pt.json @@ -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.
              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", diff --git a/apps/documenteditor/mobile/locale/ro.json b/apps/documenteditor/mobile/locale/ro.json index 16c3a38579..0757f81844 100644 --- a/apps/documenteditor/mobile/locale/ro.json +++ b/apps/documenteditor/mobile/locale/ro.json @@ -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.
              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", diff --git a/apps/documenteditor/mobile/locale/ru.json b/apps/documenteditor/mobile/locale/ru.json index 8e0b8dcc3c..d2065a6729 100644 --- a/apps/documenteditor/mobile/locale/ru.json +++ b/apps/documenteditor/mobile/locale/ru.json @@ -455,7 +455,10 @@ "txtEditingMode": "Установка режима редактирования...", "uploadImageTextText": "Загрузка рисунка...", "uploadImageTitleText": "Загрузка рисунка", - "waitText": "Пожалуйста, подождите..." + "waitText": "Пожалуйста, подождите...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
              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": "Ошибка", diff --git a/apps/documenteditor/mobile/locale/sk.json b/apps/documenteditor/mobile/locale/sk.json index 2c91213640..9769995688 100644 --- a/apps/documenteditor/mobile/locale/sk.json +++ b/apps/documenteditor/mobile/locale/sk.json @@ -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.
              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", diff --git a/apps/documenteditor/mobile/locale/sl.json b/apps/documenteditor/mobile/locale/sl.json index 3cd0f1c846..9b04449cc9 100644 --- a/apps/documenteditor/mobile/locale/sl.json +++ b/apps/documenteditor/mobile/locale/sl.json @@ -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.
              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.", diff --git a/apps/documenteditor/mobile/locale/sv.json b/apps/documenteditor/mobile/locale/sv.json index e7d2796f49..75e6794051 100644 --- a/apps/documenteditor/mobile/locale/sv.json +++ b/apps/documenteditor/mobile/locale/sv.json @@ -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.
              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", diff --git a/apps/documenteditor/mobile/locale/tr.json b/apps/documenteditor/mobile/locale/tr.json index c48090851d..b90d434599 100644 --- a/apps/documenteditor/mobile/locale/tr.json +++ b/apps/documenteditor/mobile/locale/tr.json @@ -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.
              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", diff --git a/apps/documenteditor/mobile/locale/uk.json b/apps/documenteditor/mobile/locale/uk.json index b7be8a090b..d806cd333a 100644 --- a/apps/documenteditor/mobile/locale/uk.json +++ b/apps/documenteditor/mobile/locale/uk.json @@ -455,7 +455,10 @@ "txtEditingMode": "Встановити режим редагування ...", "uploadImageTextText": "Завантаження зображення...", "uploadImageTitleText": "Завантаження зображення", - "waitText": "Будь ласка, зачекайте..." + "waitText": "Будь ласка, зачекайте...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
              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": "Помилка", diff --git a/apps/documenteditor/mobile/locale/vi.json b/apps/documenteditor/mobile/locale/vi.json index e7d2796f49..75e6794051 100644 --- a/apps/documenteditor/mobile/locale/vi.json +++ b/apps/documenteditor/mobile/locale/vi.json @@ -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.
              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", diff --git a/apps/documenteditor/mobile/locale/zh-tw.json b/apps/documenteditor/mobile/locale/zh-tw.json index 1cf188e8d4..63c92a110f 100644 --- a/apps/documenteditor/mobile/locale/zh-tw.json +++ b/apps/documenteditor/mobile/locale/zh-tw.json @@ -455,7 +455,10 @@ "txtEditingMode": "設定編輯模式...", "uploadImageTextText": "正在上傳圖片...", "uploadImageTitleText": "上傳圖片中", - "waitText": "請耐心等待..." + "waitText": "請耐心等待...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
              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": "錯誤", diff --git a/apps/documenteditor/mobile/locale/zh.json b/apps/documenteditor/mobile/locale/zh.json index 52d7778258..2656e600bd 100644 --- a/apps/documenteditor/mobile/locale/zh.json +++ b/apps/documenteditor/mobile/locale/zh.json @@ -455,7 +455,10 @@ "txtEditingMode": "设置编辑模式..", "uploadImageTextText": "上传图片...", "uploadImageTitleText": "图片上传中", - "waitText": "请稍候..." + "waitText": "请稍候...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
              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": "错误", diff --git a/apps/documenteditor/mobile/src/controller/LongActions.jsx b/apps/documenteditor/mobile/src/controller/LongActions.jsx index 28b2ad789d..4162dc5f1c 100644 --- a/apps/documenteditor/mobile/src/controller/LongActions.jsx +++ b/apps/documenteditor/mobile/src/controller/LongActions.jsx @@ -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]; diff --git a/apps/documenteditor/mobile/src/view/edit/EditShape.jsx b/apps/documenteditor/mobile/src/view/edit/EditShape.jsx index 1e1ddcca39..ecdc22f06a 100644 --- a/apps/documenteditor/mobile/src/view/edit/EditShape.jsx +++ b/apps/documenteditor/mobile/src/view/edit/EditShape.jsx @@ -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); diff --git a/apps/presentationeditor/main/app/controller/LeftMenu.js b/apps/presentationeditor/main/app/controller/LeftMenu.js index e8fb6d79be..21d8daed3e 100644 --- a/apps/presentationeditor/main/app/controller/LeftMenu.js +++ b/apps/presentationeditor/main/app/controller/LeftMenu.js @@ -271,6 +271,7 @@ define([ this.showHistory(); } break; + case 'external-help': close_menu = true; break; default: close_menu = false; } diff --git a/apps/presentationeditor/main/app/controller/Main.js b/apps/presentationeditor/main/app/controller/Main.js index 577819fc7b..4b9bca50b0 100644 --- a/apps/presentationeditor/main/app/controller/Main.js +++ b/apps/presentationeditor/main/app/controller/Main.js @@ -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.
              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 || {})) }); diff --git a/apps/presentationeditor/main/app/view/FileMenu.js b/apps/presentationeditor/main/app/view/FileMenu.js index 867189ab9b..eda4f9afaf 100644 --- a/apps/presentationeditor/main/app/view/FileMenu.js +++ b/apps/presentationeditor/main/app/view/FileMenu.js @@ -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) { diff --git a/apps/presentationeditor/main/app/view/FileMenuPanels.js b/apps/presentationeditor/main/app/view/FileMenuPanels.js index a78f6fbbf8..328d1e8c33 100644 --- a/apps/presentationeditor/main/app/view/FileMenuPanels.js +++ b/apps/presentationeditor/main/app/view/FileMenuPanels.js @@ -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'; diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json index a2fc7c96fa..376181b702 100644 --- a/apps/presentationeditor/main/locale/en.json +++ b/apps/presentationeditor/main/locale/en.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.
              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.
              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.", diff --git a/apps/presentationeditor/main/resources/help/de/ProgramInterface/AnimationTab.htm b/apps/presentationeditor/main/resources/help/de/ProgramInterface/AnimationTab.htm index feca7a25c9..854441d907 100644 --- a/apps/presentationeditor/main/resources/help/de/ProgramInterface/AnimationTab.htm +++ b/apps/presentationeditor/main/resources/help/de/ProgramInterface/AnimationTab.htm @@ -28,12 +28,12 @@

              Sie können:

                -
              • Animationseffekte auswählen,
              • +
              • Animationseffekte auswählen,
              • für jeden Animationseffekt die geeigneten Bewegungsparameter festlegen,
              • -
              • mehrere Animationen hinzufügen,
              • -
              • die Reihenfolge der Animationseffekte mit den Optionen Aufwärts schweben oder Abwärts schweben ändern,
              • +
              • mehrere Animationen hinzufügen,
              • +
              • die Reihenfolge der Animationseffekte mit den Optionen Aufwärts schweben oder Abwärts schweben ändern,
              • Vorschau des Animationseffekts aktivieren,
              • -
              • die Timing-Optionen wie Dauer, Verzögern und Wiederholen für Animationseffekte festlegen,
              • +
              • die Timing-Optionen wie Dauer, Verzögern und Wiederholen für Animationseffekte festlegen,
              • die Option Zurückspulen aktivieren und deaktivieren.
              diff --git a/apps/presentationeditor/main/resources/help/de/ProgramInterface/ProgramInterface.htm b/apps/presentationeditor/main/resources/help/de/ProgramInterface/ProgramInterface.htm index 856bb0e898..88df056236 100644 --- a/apps/presentationeditor/main/resources/help/de/ProgramInterface/ProgramInterface.htm +++ b/apps/presentationeditor/main/resources/help/de/ProgramInterface/ProgramInterface.htm @@ -46,11 +46,12 @@
            • Die Symbole in der linken Seitenleiste:
                -
              • mithilfe der Funktion
                können Sie den Text suchen und ersetzen,
              • -
              • öffnet die Kommentarfunktion,
              • -
              • - (nur in der Online-Version verfügbar) hier können Sie das Chatfenster öffnen,
              • -
              • - (nur in der Online-Version verfügbar) kontaktieren Sie under Support-Team,
              • -
              • - (nur in der Online-Version verfügbar) sehen Sie sich die Programminformationen an.
              • +
              • mithilfe der Funktion
                können Sie den Text suchen und ersetzen,
              • +
              • - ermöglicht das Anzeigen von Folien und das Navigieren,
              • +
              • öffnet die Kommentarfunktion,
              • +
              • - (nur in der Online-Version verfügbar) hier können Sie das Chatfenster öffnen,
              • +
              • - (nur in der Online-Version verfügbar) kontaktieren Sie under Support-Team,
              • +
              • - (nur in der Online-Version verfügbar) sehen Sie sich die Programminformationen an.
            • Über die rechte Randleiste 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.
            • diff --git a/apps/presentationeditor/main/resources/help/de/UsageInstructions/InsertHeadersFooters.htm b/apps/presentationeditor/main/resources/help/de/UsageInstructions/InsertHeadersFooters.htm index 470de3fd9e..098e149071 100644 --- a/apps/presentationeditor/main/resources/help/de/UsageInstructions/InsertHeadersFooters.htm +++ b/apps/presentationeditor/main/resources/help/de/UsageInstructions/InsertHeadersFooters.htm @@ -43,7 +43,7 @@

              Um die eingefügte Fußzeile zu bearbeiten, klicken Sie die Schaltfläche Fußzeile bearbeiten in der oberen Symbolleiste an, konfigurieren Sie die gewünschte Einstellungen im Fenster Fußzeileneinstellungen und klicken Sie auf Anwenden oder Auf alle anwenden, um die Änderungen zu speichern.

              Das Datum und die Uhrzeit oder die Foliennummer im Textfeld einfügen

              Sie können das Datum und die Uhrzeit oder die Foliennummer im aktiven Textfeld durch die entsprechenden Schaltflächen auf der Registerkarte Einfügen in der oberen Symbolleiste einfügen.

              -
              Das Datum und die Uhrzeit einfügen
              +

              Das Datum und die Uhrzeit einfügen

              1. Positionieren Sie den Mauscursor im Textfeld, wo Sie das Datum und die Uhrzeit einfügen möchten,
              2. klicken Sie die Schaltfläche
                Datum und Uhrzeit auf der Registerkarte Einfügen in der oberen Symbolleiste an,
              3. @@ -60,7 +60,7 @@
              4. wählen Sie das gewünschte Format im Fenster Datum und Uhrzeit,
              5. klicken Sie auf OK.
              -
              Die Foliennummer einfügen
              +

              Die Foliennummer einfügen

              1. Positionieren Sie den Mauscursor im Textfeld, wo Sie die Foliennummer einfügen möchten.
              2. Klicken Sie die Schaltfläche
                Foliennummer auf der Registerkarte Einfügen in der oberen Symbolleiste an.
              3. diff --git a/apps/presentationeditor/main/resources/help/en/ProgramInterface/AnimationTab.htm b/apps/presentationeditor/main/resources/help/en/ProgramInterface/AnimationTab.htm index b8b4d8aa4c..9b9f06831b 100644 --- a/apps/presentationeditor/main/resources/help/en/ProgramInterface/AnimationTab.htm +++ b/apps/presentationeditor/main/resources/help/en/ProgramInterface/AnimationTab.htm @@ -28,12 +28,12 @@

                Using this tab, you can:

                  -
                • select an animation effect,
                • +
                • select an animation effect,
                • set the appropriate movement parameters for each animation effect,
                • -
                • add multiple animations,
                • -
                • change the order of the animation effects using Move Earlier or Move Later options,
                • +
                • add multiple animations,
                • +
                • change the order of the animation effects using Move Earlier or Move Later options,
                • preview the animation effect,
                • -
                • set the animation timing options such as duration, delay and repeat options for animation effects,
                • +
                • set the animation timing options such as duration, delay and repeat options for animation effects,
                • enable and disable the rewind.
                diff --git a/apps/presentationeditor/main/resources/help/en/ProgramInterface/ProgramInterface.htm b/apps/presentationeditor/main/resources/help/en/ProgramInterface/ProgramInterface.htm index dfc4da6ee1..2336c15552 100644 --- a/apps/presentationeditor/main/resources/help/en/ProgramInterface/ProgramInterface.htm +++ b/apps/presentationeditor/main/resources/help/en/ProgramInterface/ProgramInterface.htm @@ -45,13 +45,14 @@
              4. The Status bar at the bottom of the editor window contains the Start slideshow icon, some navigation tools: slide number indicator and zoom buttons. The Status bar 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 setting the text language and enable spell checking.
              5. The Left sidebar contains the following icons: -
                  -
                • - allows using the Search and Replace tool,
                • -
                • - allows opening the Comments panel,
                • -
                • - (available in the online version only) allows opening the Chat panel,
                • -
                • - (available in the online version only) allows contacting our support team,
                • -
                • - (available in the online version only) allows viewing the information about the program.
                • -
                +
                  +
                • - allows using the Search and Replace tool,
                • +
                • - allows viewing slides and navigating them,
                • +
                • - allows opening the Comments panel,
                • +
                • - (available in the online version only) allows opening the Chat panel,
                • +
                • - (available in the online version only) allows contacting our support team,
                • +
                • - (available in the online version only) allows viewing the information about the program.
                • +
              6. The Right sidebar 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.
              7. The horizontal and vertical Rulers help you place objects on a slide and allow you to set up tab stops and paragraph indents within the text boxes.
              8. diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertCharts.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertCharts.htm index 3a56898ce6..b89083a71a 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertCharts.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertCharts.htm @@ -18,11 +18,11 @@

                Insert a chart

                To insert a chart in the Presentation Editor,

                  -
                1. put the cursor where you want to add a chart,
                2. -
                3. switch to the Insert tab of the top toolbar,
                4. -
                5. click the
                  Chart icon on the top toolbar,
                6. +
                7. Put the cursor where you want to add a chart.
                8. +
                9. Switch to the Insert tab of the top toolbar.
                10. +
                11. Click the
                  Chart icon on the top toolbar.
                12. - select the needed chart type from the available ones: + Select the needed chart type from the available ones:
                  Column Charts
                    @@ -99,8 +99,7 @@

                  Note: ONLYOFFICE Presentation Editor supports the following types of charts that were created with third-party editors: Pyramid, Bar (Pyramid), Horizontal/Vertical Cylinders, Horizontal/Vertical Cones. You can open the file containing such a chart and modify it using the available chart editing tools.

                13. -
                14. - after that the Chart Editor window will appear where you can enter the necessary data into the cells using the following controls: +
                15. After that the Chart Editor window will appear where you can enter the necessary data into the cells using the following controls:
                  • and
                    for copying and pasting the copied data
                  • and
                    for undoing and redoing actions
                  • @@ -160,7 +159,7 @@

                    Chart Type Combo

                  • - change the chart settings by clicking the Edit Chart button situated in the Chart Editor window. The Chart - Advanced Settings window will open. + Change the chart settings by clicking the Edit Chart button situated in the Chart Editor window. The Chart - Advanced Settings window will open.

                    Chart - Advanced Settings window

                    The Layout tab allows you to change the layout of chart elements.

                      @@ -188,7 +187,7 @@ Specify the Data Labels (i.e. text labels that represent exact values of data points) parameters:
                      • - specify the Data Labels 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 Data Labels 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.
                        • For Column/Bar charts, you can choose the following options: None, Center, Inner Bottom, Inner Top, Outer Top.
                        • For Line/XY (Scatter)/Stock charts, you can choose the following options: None, Center, Left, Right, Top, Bottom.
                        • @@ -196,8 +195,8 @@
                        • For Area charts as well as for 3D Column, Line, Bar and Combo charts, you can choose the following options: None, Center.
                      • -
                      • select the data you wish to include into your labels by checking the corresponding boxes: Series Name, Category Name, Value,
                      • -
                      • enter a character (comma, semicolon, etc.) you wish to use to separate several labels into the Data Labels Separator entry field.
                      • +
                      • Select the data you wish to include into your labels by checking the corresponding boxes: Series Name, Category Name, Value,
                      • +
                      • Enter a character (comma, semicolon, etc.) you wish to use to separate several labels into the Data Labels Separator entry field.
                    • Lines - is used to choose a line style for Line/XY (Scatter) charts. You can choose one of the following options: Straight to use straight lines among data points, Smooth to use smooth curves among data points, or None not to display lines.
                    • @@ -210,9 +209,9 @@

                      The Vertical Axis 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 Bar charts, therefore in this case the Vertical Axis tab options will correspond to the ones described in the next section. For the XY (Scatter) charts, both axes are value axes.

                      Note: the Axis Settings and Gridlines sections will be disabled for Pie charts since charts of this type have no axes and gridlines.

                        -
                      • select Hide to hide vertical axis in the chart, leave it unchecked to have vertical axis displayed.
                      • +
                      • Select Hide to hide vertical axis in the chart, leave it unchecked to have vertical axis displayed.
                      • - specify Title orientation by selecting the necessary option from the drop-down list: + Specify Title orientation by selecting the necessary option from the drop-down list:
                        • None to not display a vertical axis title
                        • Rotated to display the title from bottom to top to the left of the vertical axis,
                        • @@ -267,13 +266,13 @@

                          Note: Secondary axes are supported in Combo charts only.

                          Secondary axes 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.

                          -

                          The Secondary Vertical /Horizontal Axis tab appears when you choose an appropriate data series for a combo chart. All the settings and options on the Secondary Vertical/Horizontal Axis tab are the same as the settings on the Vertical/Horizontal Axis. For a detailed description of the Vertical/Horizontal Axis options, see description above/below.

                          +

                          The Secondary Vertical /Horizontal Axis tab appears when you choose an appropriate data series for a combo chart. All the settings and options on the Secondary Vertical/Horizontal Axis tab are the same as the settings on the Vertical/Horizontal Axis. For a detailed description of the Vertical/Horizontal Axis options, see description above/below.

                          Chart - Advanced Settings window

                          The Horizontal Axis 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 Bar charts, therefore in this case the Horizontal Axis tab options will correspond to the ones described in the previous section. For the XY (Scatter) charts, both axes are value axes.

                            -
                          • select Hide to hide horizontal axis in the chart, leave it unchecked to have horizontal axis displayed.
                          • +
                          • Select Hide to hide horizontal axis in the chart, leave it unchecked to have horizontal axis displayed.
                          • - specify Title orientation by selecting the necessary option from the drop-down list: + Specify Title orientation by selecting the necessary option from the drop-down list:
                            • None when you don’t want to display a horizontal axis title,
                            • No Overlay  to display the title below the horizontal axis,
                            • @@ -328,8 +327,7 @@

                              Chart Settings window

                              The Alternative Text tab allows specifying the Title and Description which will be read to people with vision or cognitive impairments to help them better understand the contents of the chart.

                              -
                            • - once the chart is added, you can also change its size and position. +
                            • Once the chart is added, you can also change its size and position.

                              You can specify the chart position on the slide by dragging it vertically or horizontally.

                diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertHeadersFooters.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertHeadersFooters.htm index f2a9f4d81a..31461d542c 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertHeadersFooters.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertHeadersFooters.htm @@ -43,7 +43,7 @@

                To edit the added footer, click the Edit footer button on the top toolbar, make the necessary changes in the Footer Settings window, and click the Apply or Apply to All button to save the changes.

                Insert date and time and slide number into the text box

                It's also possible to insert date and time or slide number into the selected text box using the corresponding buttons on the Insert tab of the top toolbar.

                -
                Insert date and time
                +

                Insert date and time

                1. put the mouse cursor within the text box where you want to insert the date and time,
                2. click the
                  Date & Time button on the Insert tab of the top toolbar,
                3. @@ -60,7 +60,7 @@
                4. choose the necessary format in the Date & Time window,
                5. click the OK button.
                -
                Insert a slide number
                +

                Insert a slide number

                1. put the mouse cursor within the text box where you want to insert the slide number,
                2. click the
                  Slide Number button on the Insert tab of the top toolbar,
                3. diff --git a/apps/presentationeditor/main/resources/help/fr/ProgramInterface/AnimationTab.htm b/apps/presentationeditor/main/resources/help/fr/ProgramInterface/AnimationTab.htm index 0bd30a9606..16a735c6dd 100644 --- a/apps/presentationeditor/main/resources/help/fr/ProgramInterface/AnimationTab.htm +++ b/apps/presentationeditor/main/resources/help/fr/ProgramInterface/AnimationTab.htm @@ -28,12 +28,12 @@

                  En utilisant cet onglet, vous pouvez :

                    -
                  • sélectionner des effets d'animation,
                  • -
                  • paramétrer la direction du mouvement de chaque effet,
                  • -
                  • ajouter plusieurs animations,
                  • -
                  • changer l'ordre des effets d'animation en utilisant les options Déplacer avant ou Déplacer après,
                  • +
                  • sélectionner des effets d'animation,
                  • +
                  • paramétrer la direction du mouvement de chaque effet,
                  • +
                  • ajouter plusieurs animations,
                  • +
                  • changer l'ordre des effets d'animation en utilisant les options Déplacer avant ou Déplacer après,
                  • afficher l'aperçu d'une animation,
                  • -
                  • configurer des options de minutage telles que la durée, le retard et la répétition des animations,
                  • +
                  • configurer des options de minutage telles que la durée, le retard et la répétition des animations,
                  • activer et désactiver le retour à l'état d'origine de l'animation.
                  diff --git a/apps/presentationeditor/main/resources/help/fr/UsageInstructions/InsertCharts.htm b/apps/presentationeditor/main/resources/help/fr/UsageInstructions/InsertCharts.htm index 9881271a5c..d45dfabdd3 100644 --- a/apps/presentationeditor/main/resources/help/fr/UsageInstructions/InsertCharts.htm +++ b/apps/presentationeditor/main/resources/help/fr/UsageInstructions/InsertCharts.htm @@ -18,11 +18,11 @@

                  Insérer un graphique

                  Pour insérer un graphique dans l'Éditeur de Présentations,

                    -
                  1. placez le curseur à l'endroit où vous voulez insérer un graphique,
                  2. -
                  3. passez à l'onglet Insertion de la barre d'outils supérieure,
                  4. -
                  5. cliquez sur l'icône Graphique
                    de la barre d'outils supérieure,
                  6. +
                  7. Placez le curseur à l'endroit où vous voulez insérer un graphique.
                  8. +
                  9. Passez à l'onglet Insertion de la barre d'outils supérieure.
                  10. +
                  11. Cliquez sur l'icône Graphique
                    de la barre d'outils supérieure.
                  12. - choisissez le type de graphique approprié : + Choisissez le type de graphique approprié :
                    Graphique à colonnes
                      @@ -99,8 +99,7 @@

                    Remarque : ONLYOFFICE Presentation Editor prend en charge des graphiques en pyramides, à barres (pyramides), horizontal/vertical à cylindre, horizontal/vertical à cônes qui étaient créés avec d’autres applications. Vous pouvez ouvrir le fichier comportant un tel graphique et le modifier.

                  13. -
                  14. - lorsque la fenêtre Éditeur du graphique s'affiche, vous pouvez saisir les données à en utilisant des boutons suivants : +
                  15. Lorsque la fenêtre Éditeur du graphique s'affiche, vous pouvez saisir les données à en utilisant des boutons suivants :
                    • et
                      pour copier et coller des données
                    • et
                      pour annuler et rétablir une action
                    • @@ -160,7 +159,7 @@

                      La fenêtre Type de graphique Combo

                    • - paramétrer le graphique en cliquant sur Modifier le graphique dans la fenêtre Éditeur du graphique. La fenêtre Graphique - Paramètres avancés s'affiche. + Paramétrer le graphique en cliquant sur Modifier le graphique dans la fenêtre Éditeur du graphique. La fenêtre Graphique - Paramètres avancés s'affiche.

                      La fenêtre Graphique - Paramètres avancés

                      L'onglet Disposition vous permet de modifier la disposition des éléments de graphique.

                        @@ -188,7 +187,7 @@ Spécifiez les paramètres des Étiquettes de données (c'est-à-dire les étiquettes de texte représentant les valeurs exactes des points de données) :
                        • - spécifiez la position des Étiquettes de données 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 Étiquettes de données 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é.
                          • Pour les graphiques en Colonnes/Barres, vous pouvez choisir les options suivantes : Rien, Au centre, En haut à l'intérieur, En haut à l'intérieur, En haut à l'extérieur.
                          • Pour les graphiques en Ligne/ Nuage de points (XY)/Boursier, vous pouvez choisir les options suivantes : Rien, Au centre, À gauche, À droite, En haut, En bas.
                          • @@ -196,8 +195,8 @@
                          • Pour les graphiques en Aire ainsi que pour les graphiques 3D en Colonnes, Ligne, Barres et Combo vous pouvez choisir les options suivantes : Rien, Au centre.
                        • -
                        • sélectionnez les données que vous souhaitez inclure dans vos étiquettes en cochant les cases correspondantes : Nom de la série, Nom de la catégorie, Valeur,
                        • -
                        • 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.
                        • +
                        • Sélectionnez les données que vous souhaitez inclure dans vos étiquettes en cochant les cases correspondantes : Nom de la série, Nom de la catégorie, Valeur,
                        • +
                        • 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.
                      • Lignes - permet de choisir un style de ligne pour les graphiques en Ligne/Nuage de points (XY). Vous pouvez choisir parmi les options suivantes : Droit pour utiliser des lignes droites entre les points de données, Lisse pour utiliser des courbes lisses entre les points de données, ou Rien pour ne pas afficher les lignes.
                      • @@ -210,9 +209,9 @@

                        L'onglet Axe vertical 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 Graphiques à barres. Dans ce cas, les options de l'onglet Axe vertical correspondront à celles décrites dans la section suivante. Pour les Graphiques Nuage de points (XY), les deux axes sont des axes de valeur.

                        Remarque : les sections Paramètres des axes et Quadrillage seront désactivées pour les Graphiques à secteurs, car les graphiques de ce type n'ont ni axes ni lignes de quadrillage.

                          -
                        • sélectionnez Masquer l'axe pour masquer l'axe vertical du graphique, laissez cette option décochée pour afficher l'axe.
                        • +
                        • Sélectionnez Masquer l'axe pour masquer l'axe vertical du graphique, laissez cette option décochée pour afficher l'axe.
                        • - 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 :
                          • Rien pour ne pas afficher le titre de l'axe vertical
                          • Incliné pour afficher le titre de bas en haut à gauche de l'axe vertical,
                          • @@ -228,7 +227,7 @@ La section Options de graduations 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 Disposition. Les listes déroulantes Type principal/secondaire contiennent les options de placement suivantes :
                            • Rien pour ne pas afficher les graduations principales/secondaires,
                            • -
                            • Sur l'axe pour afficher les graduations principales/secondaires des deux côtés de l'axe,
                            • +
                            • Sur l'axe pour afficher les graduations principales/secondaires des deux côtés de l'axe,
                            • Dans pour afficher les graduations principales/secondaires dans l'axe,
                            • A l'extérieur pour afficher les graduations principales/secondaires à l'extérieur de l'axe.
                            @@ -271,9 +270,9 @@

                            La fenêtre Graphique - Paramètres avancés

                            L'onglet Axe horizontal 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 Graphiques à barres. Dans ce cas, les options de l'onglet Axe horizontal correspondent à celles décrites dans la section précédente. Pour les Graphiques Nuage de points (XY), les deux axes sont des axes de valeur.

                              -
                            • sélectionnez Masquer l'axe pour masquer l'axe horizontal du graphique, laissez cette option décochée pour afficher l'axe.
                            • +
                            • Sélectionnez Masquer l'axe pour masquer l'axe horizontal du graphique, laissez cette option décochée pour afficher l'axe.
                            • - 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 :
                              • Rien pour ne pas afficher le titre de l'axe horizontal.
                              • Sans superposition pour afficher le titre en-dessous de l'axe horizontal.
                              • @@ -329,7 +328,7 @@

                                L'onglet Texte de remplacement permet de spécifier un Titre et une Description qui sera lue aux personnes avec des déficiences cognitives ou visuelles pour les aider à mieux comprendre l'information du graphique.

                              • - une fois le graphique ajouté, on peut également modifier sa taille et sa position. + Une fois le graphique ajouté, on peut également modifier sa taille et sa position.

                                Vous pouvez définir la position du graphique sur la diapositive en le faisant glisser à l'horizontale/verticale.

                  diff --git a/apps/presentationeditor/main/resources/help/fr/UsageInstructions/InsertHeadersFooters.htm b/apps/presentationeditor/main/resources/help/fr/UsageInstructions/InsertHeadersFooters.htm index 56f9c96ef9..a27a06cfeb 100644 --- a/apps/presentationeditor/main/resources/help/fr/UsageInstructions/InsertHeadersFooters.htm +++ b/apps/presentationeditor/main/resources/help/fr/UsageInstructions/InsertHeadersFooters.htm @@ -43,7 +43,7 @@

                  Pour modifier le pied de page ajouté, cliquez sur le bouton Modifier le pied de page dans la barre d'outils supérieure, apportez les modifications nécessaires dans la fenêtre Paramètres de pied de page, puis cliquez sur le bouton Appliquer ou Appliquer à tous pour enregistrer les modifications.

                  Insérer la date et l'heure et le numéro de diapositive dans la zone de texte

                  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 Insertion de la barre d'outils supérieure.

                  -
                  Insérer la date et l'heure
                  +

                  Insérer la date et l'heure

                  1. Placez le curseur de la souris dans la zone de texte où vous souhaitez insérer la date et l'heure,
                  2. Cliquez sur le bouton
                    Date & Heure dans l'onglet Insertion de la barre d'outils supérieure,
                  3. @@ -60,7 +60,7 @@
                  4. Choisissez le format nécessaire dans la fenêtre Date & Heure,
                  5. Cliquez sur OK.
                  -
                  Insérer un numéro de diapositive
                  +

                  Insérer un numéro de diapositive

                  1. Placez le curseur de la souris dans la zone de texte ou vous souhaitez insérer le numéro de diapositive,
                  2. Cliquez sur le bouton
                    Numéro de diapositive dans l'onglet Insertion de la barre d'outils supérieure,
                  3. diff --git a/apps/presentationeditor/main/resources/help/images/icons.png b/apps/presentationeditor/main/resources/help/images/icons.png index cea1632734..c55cb36665 100644 Binary files a/apps/presentationeditor/main/resources/help/images/icons.png and b/apps/presentationeditor/main/resources/help/images/icons.png differ diff --git a/apps/presentationeditor/main/resources/help/images/sprite.css b/apps/presentationeditor/main/resources/help/images/sprite.css index 5414224208..ad2fe7003f 100644 --- a/apps/presentationeditor/main/resources/help/images/sprite.css +++ b/apps/presentationeditor/main/resources/help/images/sprite.css @@ -342,78 +342,84 @@ height: 21px; } -.icon-date_time_icon { +.icon-slides { background-position: -17px -124px; + width: 17px; + height: 21px; +} + +.icon-date_time_icon { + background-position: -34px -124px; width: 22px; height: 20px; } .icon-pointer_screen { - background-position: -39px -124px; + background-position: -56px -124px; width: 22px; height: 20px; } .icon-addslide { - background-position: -61px -124px; + background-position: -78px -124px; width: 20px; height: 20px; } .icon-constantproportionsactivated { - background-position: -81px -124px; + background-position: -98px -124px; width: 20px; height: 20px; } .icon-copystyle_selected { - background-position: -101px -124px; + background-position: -118px -124px; width: 20px; height: 20px; } .icon-image { - background-position: -121px -124px; - width: 20px; - height: 20px; -} - -.icon-insert_symbol_icon { background-position: -148px 0px; width: 20px; height: 20px; } -.icon-placeholder_imagefromfile { +.icon-insert_symbol_icon { background-position: -148px -20px; width: 20px; height: 20px; } -.icon-pointer_enabled { +.icon-placeholder_imagefromfile { background-position: -148px -40px; width: 20px; height: 20px; } -.icon-show_password { +.icon-pointer_enabled { background-position: -148px -60px; width: 20px; height: 20px; } -.icon-spellcheckactivated { +.icon-show_password { background-position: -148px -80px; width: 20px; height: 20px; } -.icon-vector { +.icon-spellcheckactivated { background-position: -148px -100px; width: 20px; height: 20px; } +.icon-vector { + background-position: -148px -120px; + width: 20px; + height: 20px; +} + .icon-sortcommentsicon { background-position: 0px -145px; width: 31px; @@ -451,241 +457,241 @@ } .icon-hiderulers { - background-position: -148px -120px; - width: 19px; - height: 19px; -} - -.icon-noborders { background-position: -149px -145px; width: 19px; height: 19px; } -.icon-removecomment_toptoolbar { +.icon-noborders { background-position: -168px 0px; + width: 19px; + height: 19px; +} + +.icon-removecomment_toptoolbar { + background-position: -168px -19px; width: 15px; height: 19px; } .icon-equationplaceholder { - background-position: 0px -164px; + background-position: -168px -38px; width: 18px; height: 18px; } .icon-search_advanced { - background-position: -18px -164px; + background-position: -168px -56px; width: 18px; height: 18px; } .icon-searchbuttons { - background-position: -36px -164px; + background-position: 0px -164px; width: 33px; height: 17px; } .icon-insert_columns { - background-position: -69px -164px; + background-position: -33px -164px; width: 25px; height: 17px; } .icon-insertequationicon { - background-position: -94px -164px; + background-position: -58px -164px; width: 22px; height: 17px; } .icon-changecolumnwidth { - background-position: -116px -164px; + background-position: -80px -164px; width: 21px; height: 17px; } .icon-sharingicon { - background-position: -137px -164px; + background-position: -101px -164px; width: 21px; height: 17px; } .icon-chaticon_new { - background-position: -158px -164px; + background-position: -168px -74px; width: 19px; height: 17px; } .icon-search_icon_header { - background-position: -183px 0px; + background-position: -168px -91px; width: 17px; height: 17px; } .icon-paste_style { - background-position: -183px -17px; + background-position: -168px -108px; width: 16px; height: 17px; } .icon-addgradientpoint { - background-position: -183px -34px; + background-position: -168px -125px; width: 12px; height: 17px; } .icon-removegradientpoint { - background-position: -183px -51px; + background-position: -168px -142px; width: 12px; height: 17px; } .icon-placeholder_table { - background-position: 0px -182px; + background-position: -122px -164px; width: 22px; height: 16px; } .icon-usersnumber { - background-position: -22px -182px; + background-position: -144px -164px; width: 22px; height: 16px; } .icon-access_rights { - background-position: -44px -182px; + background-position: -166px -164px; width: 19px; height: 16px; } .icon-saveupdate { - background-position: -63px -182px; + background-position: -187px 0px; width: 18px; height: 16px; } .icon-savewhilecoediting { - background-position: -183px -68px; + background-position: -187px -16px; width: 17px; height: 16px; } .icon-favorites_icon { - background-position: -183px -84px; + background-position: -187px -32px; width: 16px; height: 16px; } .icon-chaticon { - background-position: -81px -182px; + background-position: -187px -48px; width: 18px; height: 15px; } .icon-gotodocuments { - background-position: -99px -182px; + background-position: -187px -63px; width: 18px; height: 15px; } .icon-print { - background-position: -183px -100px; + background-position: -187px -78px; width: 17px; height: 15px; } .icon-added_comment_icon { - background-position: -183px -115px; + background-position: -187px -93px; width: 16px; height: 15px; } .icon-bgcolor { - background-position: -183px -130px; + background-position: -187px -108px; width: 16px; height: 15px; } .icon-about { - background-position: -183px -145px; + background-position: -187px -123px; width: 15px; height: 15px; } .icon-abouticon { - background-position: -183px -160px; + background-position: -187px -138px; width: 15px; height: 15px; } .icon-advanced_settings_icon { - background-position: -168px -19px; + background-position: -187px -153px; width: 15px; height: 15px; } .icon-document_language { - background-position: -168px -34px; + background-position: 0px -181px; width: 15px; height: 15px; } .icon-group { - background-position: -168px -49px; + background-position: -15px -181px; width: 15px; height: 15px; } .icon-pagesize { - background-position: -168px -64px; + background-position: -30px -181px; width: 15px; height: 15px; } .icon-search_options { - background-position: -168px -79px; + background-position: -45px -181px; width: 15px; height: 15px; } .icon-tabstopcenter { - background-position: -168px -94px; + background-position: -60px -181px; width: 15px; height: 15px; } .icon-tabstopleft { - background-position: -168px -109px; + background-position: -75px -181px; width: 15px; height: 15px; } .icon-tabstopright { - background-position: -168px -124px; + background-position: -90px -181px; width: 15px; height: 15px; } .icon-ungroup { - background-position: -168px -139px; + background-position: -105px -181px; width: 15px; height: 15px; } .icon-feedback { - background-position: -117px -182px; + background-position: -120px -181px; width: 14px; height: 15px; } .icon-fitpage { - background-position: -131px -182px; + background-position: -134px -181px; width: 14px; height: 15px; } .icon-flipupsidedown { - background-position: -145px -182px; + background-position: -148px -181px; width: 14px; height: 15px; } @@ -709,7 +715,7 @@ } .icon-fontcolor { - background-position: -159px -182px; + background-position: -162px -181px; width: 25px; height: 14px; } @@ -721,79 +727,79 @@ } .icon-columnwidthmarker { - background-position: -184px -182px; + background-position: -187px -181px; width: 15px; height: 14px; } .icon-fliplefttoright { - background-position: -200px 0px; + background-position: -205px 0px; width: 15px; height: 14px; } .icon-autoshape { - background-position: -200px -14px; + background-position: -205px -14px; width: 14px; height: 14px; } .icon-commentsicon { - background-position: -200px -28px; + background-position: -205px -28px; width: 14px; height: 14px; } .icon-deleteicon { - background-position: -200px -42px; + background-position: -205px -42px; width: 14px; height: 14px; } .icon-save { - background-position: -200px -56px; + background-position: -205px -56px; width: 14px; height: 14px; } .icon-searchicon { - background-position: -200px -70px; + background-position: -205px -70px; width: 14px; height: 14px; } .icon-gradientslider { - background-position: -200px -84px; + background-position: -205px -84px; width: 13px; height: 14px; } .icon-highlight_color_mouse_pointer { - background-position: -200px -98px; + background-position: -205px -98px; width: 13px; height: 14px; } .icon-textart_settings_icon { - background-position: -200px -112px; + background-position: -205px -112px; width: 12px; height: 14px; } .icon-hard { - background-position: -200px -126px; + background-position: -205px -126px; width: 9px; height: 14px; } .icon-highlightcolor { - background-position: 0px -198px; + background-position: 0px -196px; width: 27px; height: 13px; } .icon-outline { - background-position: -27px -198px; + background-position: -27px -196px; width: 25px; height: 13px; } @@ -805,253 +811,253 @@ } .icon-arrangeshape { - background-position: -52px -198px; + background-position: -52px -196px; width: 21px; height: 13px; } .icon-changelayout { - background-position: -73px -198px; + background-position: -73px -196px; width: 21px; height: 13px; } .icon-table { - background-position: -94px -198px; + background-position: -94px -196px; width: 21px; height: 13px; } .icon-verticalalign { - background-position: -115px -198px; + background-position: -115px -196px; width: 21px; height: 13px; } .icon-visible_area { - background-position: -136px -198px; + background-position: -136px -196px; width: 20px; height: 13px; } .icon-orientation { - background-position: -156px -198px; + background-position: -187px -168px; width: 17px; height: 13px; } .icon-cut { - background-position: -173px -198px; + background-position: -156px -196px; width: 16px; height: 13px; } .icon-changerange { - background-position: -200px -140px; + background-position: -205px -140px; width: 15px; height: 13px; } .icon-feedbackicon { - background-position: -200px -153px; + background-position: -205px -153px; width: 15px; height: 13px; } .icon-fitslide { - background-position: -200px -166px; + background-position: -205px -166px; width: 15px; height: 13px; } .icon-greencircle { - background-position: -200px -179px; + background-position: -205px -179px; width: 15px; height: 13px; } .icon-clearstyle { - background-position: -189px -198px; + background-position: -172px -196px; width: 14px; height: 13px; } .icon-copy { - background-position: -215px 0px; + background-position: -186px -196px; width: 14px; height: 13px; } .icon-paste { - background-position: -215px -13px; + background-position: -200px -196px; width: 14px; height: 13px; } .icon-selectall { - background-position: -215px -26px; + background-position: -220px 0px; width: 14px; height: 13px; } .icon-alignbottom { - background-position: -215px -39px; + background-position: -220px -13px; width: 13px; height: 13px; } .icon-alignmiddle { - background-position: -215px -52px; + background-position: -220px -26px; width: 13px; height: 13px; } .icon-alignobjectbottom { - background-position: -215px -65px; + background-position: -220px -39px; width: 13px; height: 13px; } .icon-alignobjectcenter { - background-position: -215px -78px; + background-position: -220px -52px; width: 13px; height: 13px; } .icon-alignobjectleft { - background-position: -215px -91px; + background-position: -220px -65px; width: 13px; height: 13px; } .icon-alignobjectmiddle { - background-position: -215px -104px; + background-position: -220px -78px; width: 13px; height: 13px; } .icon-alignobjectright { - background-position: -215px -117px; + background-position: -220px -91px; width: 13px; height: 13px; } .icon-alignobjecttop { - background-position: -215px -130px; + background-position: -220px -104px; width: 13px; height: 13px; } .icon-aligntop { - background-position: -215px -143px; + background-position: -220px -117px; width: 13px; height: 13px; } .icon-bringforward { - background-position: -215px -156px; + background-position: -220px -130px; width: 13px; height: 13px; } .icon-bringtofront { - background-position: -215px -169px; + background-position: -220px -143px; width: 13px; height: 13px; } .icon-chart_settings_icon { - background-position: -215px -182px; + background-position: -220px -156px; width: 13px; height: 13px; } .icon-copystyle { - background-position: -215px -195px; + background-position: -220px -169px; width: 13px; height: 13px; } .icon-distributehorizontally { - background-position: 0px -211px; + background-position: -220px -182px; width: 13px; height: 13px; } .icon-distributevertically { - background-position: -13px -211px; + background-position: -220px -195px; width: 13px; height: 13px; } .icon-exitfullscreen { - background-position: -26px -211px; + background-position: 0px -209px; width: 13px; height: 13px; } .icon-fullscreen { - background-position: -39px -211px; + background-position: -13px -209px; width: 13px; height: 13px; } .icon-image_settings_icon { - background-position: -52px -211px; + background-position: -26px -209px; width: 13px; height: 13px; } .icon-nextpage { - background-position: -65px -211px; + background-position: -39px -209px; width: 13px; height: 13px; } .icon-previouspage { - background-position: -78px -211px; + background-position: -52px -209px; width: 13px; height: 13px; } .icon-sendbackward { - background-position: -91px -211px; + background-position: -65px -209px; width: 13px; height: 13px; } .icon-sendtoback { - background-position: -104px -211px; + background-position: -78px -209px; width: 13px; height: 13px; } .icon-shape_settings_icon { - background-position: -117px -211px; + background-position: -91px -209px; width: 13px; height: 13px; } .icon-slide_settings_icon { - background-position: -130px -211px; + background-position: -104px -209px; width: 13px; height: 13px; } .icon-startpreview { - background-position: -143px -211px; + background-position: -117px -209px; width: 13px; height: 13px; } .icon-text_settings_icon { - background-position: -156px -211px; + background-position: -130px -209px; width: 13px; height: 13px; } .icon-zoomin { - background-position: -169px -211px; + background-position: -143px -209px; width: 13px; height: 13px; } @@ -1063,295 +1069,295 @@ } .icon-alignleft { - background-position: -203px -198px; + background-position: -156px -209px; width: 12px; height: 13px; } .icon-alignright { - background-position: -182px -211px; + background-position: -168px -209px; width: 12px; height: 13px; } .icon-editcommenticon { - background-position: -194px -211px; + background-position: -180px -209px; width: 12px; height: 13px; } .icon-justify { - background-position: -206px -211px; + background-position: -192px -209px; width: 12px; height: 13px; } .icon-selectslidesizeicon { - background-position: -229px 0px; + background-position: -204px -209px; width: 25px; height: 12px; } .icon-spellcheckdeactivated { - background-position: -229px -12px; + background-position: 0px -222px; width: 15px; height: 12px; } .icon-rotateclockwise { - background-position: -229px -24px; + background-position: -15px -222px; width: 13px; height: 12px; } .icon-rotatecounterclockwise { - background-position: -229px -36px; + background-position: -28px -222px; width: 13px; height: 12px; } .icon-circle { - background-position: -242px -24px; + background-position: -41px -222px; width: 12px; height: 12px; } .icon-nofill { - background-position: -242px -36px; + background-position: -53px -222px; width: 12px; height: 12px; } .icon-sup { - background-position: -229px -48px; + background-position: -65px -222px; width: 12px; height: 12px; } .icon-deletecommenticon { - background-position: -241px -48px; + background-position: -77px -222px; width: 11px; height: 12px; } .icon-presenter_startpresentation { - background-position: -244px -12px; + background-position: -138px -124px; width: 9px; height: 12px; } .icon-startpresentation { - background-position: -229px -60px; + background-position: -88px -222px; width: 9px; height: 12px; } .icon-numbering { - background-position: -229px -72px; + background-position: -97px -222px; width: 23px; height: 11px; } .icon-bullets { - background-position: -229px -83px; + background-position: -120px -222px; width: 22px; height: 11px; } .icon-horizontalalign { - background-position: -229px -94px; + background-position: -142px -222px; width: 21px; height: 11px; } .icon-insertfunction { - background-position: -229px -105px; + background-position: -163px -222px; width: 21px; height: 11px; } .icon-linespacing { - background-position: -229px -116px; + background-position: -184px -222px; width: 21px; height: 11px; } .icon-fitwidth { - background-position: -238px -60px; + background-position: -205px -222px; width: 16px; height: 11px; } .icon-viewsettingsicon { - background-position: -229px -127px; + background-position: -234px 0px; width: 16px; height: 11px; } .icon-larger { - background-position: -229px -138px; + background-position: -234px -11px; width: 14px; height: 11px; } .icon-sub { - background-position: -229px -149px; + background-position: -234px -22px; width: 13px; height: 11px; } .icon-decreasedec { - background-position: -242px -149px; + background-position: -234px -33px; width: 12px; height: 11px; } .icon-decreaseindent { - background-position: -229px -160px; + background-position: -234px -44px; width: 12px; height: 11px; } .icon-increasedec { - background-position: -241px -160px; + background-position: -234px -55px; width: 12px; height: 11px; } .icon-increaseindent { - background-position: -229px -171px; + background-position: -234px -66px; width: 12px; height: 11px; } .icon-resolvedicon { - background-position: -241px -171px; + background-position: -234px -77px; width: 12px; height: 11px; } .icon-resolveicon { - background-position: -229px -182px; + background-position: -234px -88px; width: 12px; height: 11px; } .icon-closepreview { - background-position: -243px -138px; + background-position: -234px -99px; width: 11px; height: 11px; } .icon-underline { - background-position: -241px -182px; + background-position: -234px -110px; width: 10px; height: 11px; } .icon-zoomout { - background-position: -229px -193px; + background-position: -234px -121px; width: 10px; height: 11px; } .icon-smaller { - background-position: -239px -193px; + background-position: -234px -132px; width: 13px; height: 10px; } .icon-nextslide { - background-position: -229px -204px; + background-position: -234px -142px; width: 12px; height: 10px; } .icon-presenter_nextslide { - background-position: -241px -204px; + background-position: -234px -152px; width: 12px; height: 10px; } .icon-presenter_previousslide { - background-position: -229px -214px; + background-position: -234px -162px; width: 12px; height: 10px; } .icon-previousslide { - background-position: -241px -214px; + background-position: -234px -172px; width: 12px; height: 10px; } .icon-strike { - background-position: -168px -154px; + background-position: -234px -182px; width: 12px; height: 10px; } .icon-yellowdiamond { - background-position: -68px -69px; + background-position: -234px -192px; width: 11px; height: 10px; } .icon-firstline_indent { - background-position: -218px -211px; + background-position: -234px -202px; width: 10px; height: 10px; } .icon-pointer { - background-position: 0px -224px; + background-position: -234px -212px; width: 10px; height: 10px; } .icon-bold { - background-position: -245px -127px; + background-position: -234px -222px; width: 8px; height: 10px; } .icon-pausepresentation { - background-position: -10px -224px; + background-position: -242px -222px; width: 8px; height: 10px; } .icon-presenter_pausepresentation { - background-position: -18px -224px; + background-position: -68px -69px; width: 8px; height: 10px; } .icon-italic { - background-position: -141px -124px; + background-position: -180px -125px; width: 7px; height: 10px; } .icon-redo { - background-position: -26px -224px; + background-position: 0px -234px; width: 16px; height: 9px; } .icon-undo { - background-position: -42px -224px; + background-position: -16px -234px; width: 16px; height: 9px; } .icon-cellrow { - background-position: -58px -224px; + background-position: -221px -222px; width: 9px; height: 9px; } .icon-resize_square { - background-position: -67px -224px; + background-position: -32px -234px; width: 9px; height: 9px; } @@ -1363,25 +1369,25 @@ } .icon-searchupbutton { - background-position: -76px -224px; + background-position: -41px -234px; width: 14px; height: 8px; } .icon-constantproportions { - background-position: -90px -224px; + background-position: -55px -234px; width: 13px; height: 8px; } .icon-rowheightmarker { - background-position: -103px -224px; + background-position: -68px -234px; width: 13px; height: 8px; } .icon-tabstopcenter_marker { - background-position: -116px -224px; + background-position: -81px -234px; width: 12px; height: 8px; } @@ -1393,67 +1399,67 @@ } .icon-right_indent { - background-position: -128px -224px; + background-position: -138px -136px; width: 10px; height: 8px; } .icon-soft { - background-position: -138px -224px; + background-position: -93px -234px; width: 10px; height: 8px; } .icon-tabstopleft_marker { - background-position: -148px -224px; + background-position: -103px -234px; width: 8px; height: 8px; } .icon-tabstopright_marker { - background-position: -156px -224px; + background-position: -111px -234px; width: 8px; height: 8px; } .icon-redo1 { - background-position: -200px -192px; + background-position: -90px -95px; width: 13px; height: 6px; } .icon-undo1 { - background-position: -183px -175px; + background-position: -119px -234px; width: 13px; height: 6px; } .icon-leftindent { - background-position: -148px -139px; + background-position: -136px -59px; width: 10px; height: 6px; } .icon-tab { - background-position: -158px -139px; + background-position: -168px -159px; width: 10px; height: 5px; } .icon-connectionpoint { - background-position: -209px -126px; + background-position: -245px -99px; width: 5px; height: 5px; } .icon-square { - background-position: -209px -131px; + background-position: -245px -104px; width: 5px; height: 5px; } .icon-space { - background-position: -252px -48px; + background-position: -248px -11px; width: 2px; height: 3px; } diff --git a/apps/presentationeditor/main/resources/help/images/src/icons/slides.png b/apps/presentationeditor/main/resources/help/images/src/icons/slides.png new file mode 100644 index 0000000000..913f1a3626 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/images/src/icons/slides.png differ diff --git a/apps/presentationeditor/main/resources/help/it/UsageInstructions/InsertHeadersFooters.htm b/apps/presentationeditor/main/resources/help/it/UsageInstructions/InsertHeadersFooters.htm index 229c13ddce..3d5fbf1223 100644 --- a/apps/presentationeditor/main/resources/help/it/UsageInstructions/InsertHeadersFooters.htm +++ b/apps/presentationeditor/main/resources/help/it/UsageInstructions/InsertHeadersFooters.htm @@ -43,7 +43,7 @@

                    To edit the added footer, click the Edit footer button at the top toolbar, make the necessary changes in the Footer Settings window, and click the Apply or Apply to All button to save the changes.

                    Insert date and time and slide number into the text box

                    It's also possible to insert date and time or slide number into the selected text box using the corresponding buttons at the Insert tab of the top toolbar.

                    -
                    Insert date and time
                    +

                    Insert date and time

                    1. put the mouse cursor within the text box where you want to insert the date and time,
                    2. click the
                      Date & Time button at the Insert tab of the top toolbar,
                    3. @@ -60,7 +60,7 @@
                    4. choose the necessary format in the Date & Time window,
                    5. click the OK button.
                    -
                    Insert a slide number
                    +

                    Insert a slide number

                    1. put the mouse cursor within the text box where you want to insert the slide number,
                    2. click the
                      Slide Number button at the Insert tab of the top toolbar,
                    3. diff --git a/apps/presentationeditor/main/resources/help/ru/ProgramInterface/AnimationTab.htm b/apps/presentationeditor/main/resources/help/ru/ProgramInterface/AnimationTab.htm index b309c88665..594e3a074d 100644 --- a/apps/presentationeditor/main/resources/help/ru/ProgramInterface/AnimationTab.htm +++ b/apps/presentationeditor/main/resources/help/ru/ProgramInterface/AnimationTab.htm @@ -26,12 +26,12 @@

                      С помощью этой вкладки вы можете выполнить следующие действия:

                        -
                      • выбирать эффект анимации,
                      • +
                      • выбирать эффект анимации,
                      • установить соответствующие параметры движения для каждого эффекта анимации,
                      • -
                      • добавлять несколько анимаций,
                      • -
                      • изменять порядок эффектов анимации при помощи параметров Переместить раньше или Переместить позже,
                      • +
                      • добавлять несколько анимаций,
                      • +
                      • изменять порядок эффектов анимации при помощи параметров Переместить раньше или Переместить позже,
                      • просмотреть эффект анимации,
                      • -
                      • установить для анимации параметры времени, такие как длительность, задержка and повтор,
                      • +
                      • установить для анимации параметры времени, такие как длительность, задержка and повтор,
                      • включать и отключать перемотку назад.
                      diff --git a/apps/presentationeditor/main/resources/help/ru/ProgramInterface/ProgramInterface.htm b/apps/presentationeditor/main/resources/help/ru/ProgramInterface/ProgramInterface.htm index f358dae964..789ee3337f 100644 --- a/apps/presentationeditor/main/resources/help/ru/ProgramInterface/ProgramInterface.htm +++ b/apps/presentationeditor/main/resources/help/ru/ProgramInterface/ProgramInterface.htm @@ -47,6 +47,7 @@ На Левой боковой панели находятся следующие значки:
                      • - позволяет использовать инструмент поиска и замены,
                      • +
                      • - позволяет просматривать слайды и перемещаться по ним,
                      • - позволяет открыть панель Комментариев
                      • (доступно только в онлайн-версии) - позволяет открыть панель Чата,
                      • (доступно только в онлайн-версии) - позволяет обратиться в службу технической поддержки,
                      • diff --git a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertCharts.htm b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertCharts.htm index 642a5dd63e..adb2289148 100644 --- a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertCharts.htm +++ b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertCharts.htm @@ -18,11 +18,10 @@

                        Вставка диаграммы

                        Для вставки диаграммы в презентацию,

                          -
                        1. установите курсор там, где требуется поместить диаграмму,
                        2. -
                        3. перейдите на вкладку Вставка верхней панели инструментов,
                        4. -
                        5. щелкните по значку
                          Диаграмма на верхней панели инструментов,
                        6. -
                        7. - выберите из доступных типов диаграммы: +
                        8. Установите курсор там, где требуется поместить диаграмму.
                        9. +
                        10. Перейдите на вкладку Вставка верхней панели инструментов.
                        11. +
                        12. Щелкните по значку
                          Диаграмма на верхней панели инструментов.
                        13. +
                        14. Выберите из доступных типов диаграммы:
                          Гистограмма
                            @@ -98,8 +97,7 @@

                          Примечание: Редактор презентаций ONLYOFFICE поддерживает следующие типы диаграмм, созданных в сторонних редакторах: Пирамида, Гистограмма (пирамида), Горизонтальные/Вертикальные цилиндры, Горизонтальные/вертикальные конусы. Вы можете открыть файл, содержащий такую диаграмму, и изменить его, используя доступные инструменты редактирования диаграмм.

                        15. -
                        16. - после этого появится окно Редактор диаграмм, в котором можно ввести в ячейки необходимые данные при помощи следующих элементов управления: +
                        17. После этого появится окно Редактор диаграмм, в котором можно ввести в ячейки необходимые данные при помощи следующих элементов управления:
                          • и
                            для копирования и вставки скопированных данных
                          • и
                            для отмены и повтора действий
                          • @@ -153,13 +151,13 @@
                      • - измените параметры диаграммы, нажав на кнопку Изменить тип диаграммы в окне Редактор диаграмм, чтобы выбрать тип и стиль диаграммы. Выберите диаграмму из доступных разделов: гистограмма, график, круговая, линейчатая, с областями, биржевая, точечная, комбинированные. + Измените параметры диаграммы, нажав на кнопку Изменить тип диаграммы в окне Редактор диаграмм, чтобы выбрать тип и стиль диаграммы. Выберите диаграмму из доступных разделов: гистограмма, график, круговая, линейчатая, с областями, биржевая, точечная, комбинированные.

                        Окно Тип диаграммы

                        Когда вы выбираете Комбинированные диаграммы, в окне Тип диаграммы расположены ряды диаграмм, для которых можно выбрать типы диаграмм и данные для размещения на вторичной оси.

                        Комбинированные диаграммы

                      • - измените параметры диаграммы, нажав кнопку Редактировать диаграмму в окне Редактор диаграмм. Откроется окно Диаграмма - Дополнительные параметры. + Измените параметры диаграммы, нажав кнопку Редактировать диаграмму в окне Редактор диаграмм. Откроется окно Диаграмма - Дополнительные параметры.

                        Окно Диаграмма - дополнительные параметры

                        На вкладке Макет можно изменить расположение элементов диаграммы:

                          @@ -186,8 +184,7 @@
                        • Определите параметры Подписей данных (то есть текстовых подписей, показывающих точные значения элементов данных):
                            -
                          • - укажите местоположение Подписей данных относительно элементов данных, выбрав нужную опцию из выпадающего списка. Доступные варианты зависят от выбранного типа диаграммы. +
                          • Укажите местоположение Подписей данных относительно элементов данных, выбрав нужную опцию из выпадающего списка. Доступные варианты зависят от выбранного типа диаграммы.
                            • Для Гистограмм и Линейчатых диаграмм можно выбрать следующие варианты: Нет, По центру, Внутри снизу, Внутри сверху, Снаружи сверху.
                            • Для Графиков и Точечных или Биржевых диаграмм можно выбрать следующие варианты: Нет, По центру, Слева, Справа, Сверху, Снизу.
                            • @@ -195,8 +192,8 @@
                            • Для диаграмм С областями, а также для Гистограмм, Графиков и Линейчатых диаграмм в формате 3D можно выбрать следующие варианты: Нет, По центру.
                          • -
                          • выберите данные, которые вы хотите включить в ваши подписи, поставив соответствующие флажки: Имя ряда, Название категории, Значение,
                          • -
                          • введите символ (запятая, точка с запятой и т.д.), который вы хотите использовать для разделения нескольких подписей, в поле Разделитель подписей данных.
                          • +
                          • Выберите данные, которые вы хотите включить в ваши подписи, поставив соответствующие флажки: Имя ряда, Название категории, Значение,
                          • +
                          • Введите символ (запятая, точка с запятой и т.д.), который вы хотите использовать для разделения нескольких подписей, в поле Разделитель подписей данных.
                        • Линии - используется для выбора типа линий для линейчатых/точечных диаграмм. Можно выбрать одну из следующих опций: Прямые для использования прямых линий между элементами данных, Сглаженные для использования сглаженных кривых линий между элементами данных или Нет для того, чтобы линии не отображались.
                        • @@ -209,9 +206,9 @@

                          Вкладка Вертикальная ось позволяет изменять параметры вертикальной оси, также называемой осью значений или осью Y, которая отображает числовые значения. Обратите внимание, что вертикальная ось будет осью категорий, которая отображает подпись для Гистограмм, таким образом, параметры вкладки Вертикальная ось будут соответствовать параметрам, описанным в следующем разделе. Для Точечных диаграмм обе оси являются осями значений.

                          Примечание: Параметры оси и Линии сетки недоступны для круговых диаграмм, так как у круговых диаграмм нет осей и линий сетки.

                            -
                          • нажмите Скрыть ось, чтобы скрыть вертикальную ось на диаграмме.
                          • +
                          • Нажмите Скрыть ось, чтобы скрыть вертикальную ось на диаграмме.
                          • - укажите ориентацию Заголовка, выбрав нужный вариант из раскрывающегося списка: + Укажите ориентацию Заголовка, выбрав нужный вариант из раскрывающегося списка:
                            • Нет - не отображать название вертикальной оси,
                            • Повернутое - показать название снизу вверх слева от вертикальной оси,
                            • @@ -290,9 +287,9 @@

                              Диаграмма - окно дополнительные параметры

                              Вкладка Горизонтальная ось позволяет изменять параметры горизонтальной оси, также называемой осью категорий или осью x, которая отображает текстовые метки. Обратите внимание, что горизонтальная ось будет осью значений, которая отображает числовые значения для Гистограмм, поэтому в этом случае параметры вкладки Горизонтальная ось будут соответствовать параметрам, описанным в предыдущем разделе. Для Точечных диаграмм обе оси являются осями значений.

                                -
                              • нажмите Скрыть ось, чтобы скрыть горизонтальную ось на диаграмме.
                              • +
                              • Нажмите Скрыть ось, чтобы скрыть горизонтальную ось на диаграмме.
                              • - укажите ориентацию Заголовка, выбрав нужный вариант из раскрывающегося списка: + Укажите ориентацию Заголовка, выбрав нужный вариант из раскрывающегося списка:
                                • Нет - не отображать заголовок горизонтальной оси,
                                • Без наложения - отображать заголовок под горизонтальной осью,
                                • @@ -351,7 +348,7 @@

                                  Вкладка Альтернативный текст позволяет задать Заголовок и Описание, которые будут зачитываться для людей с нарушениями зрения или когнитивными нарушениями, чтобы помочь им лучше понять, какую информацию содержит диаграмма.

                                • - после того, как диаграмма будет добавлена, можно изменить ее размер и положение. + После того, как диаграмма будет добавлена, можно изменить ее размер и положение.

                                  Вы можете задать положение диаграммы на слайде, перетащив ее по вертикали или горизонтали.

                    diff --git a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertHeadersFooters.htm b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertHeadersFooters.htm index 8026fce24f..f4fd066d69 100644 --- a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertHeadersFooters.htm +++ b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertHeadersFooters.htm @@ -43,7 +43,7 @@

                    Чтобы отредактировать добавленный нижний колонтитул, нажмите кнопку Изменить нижний колонтитул на верхней панели инструментов, внесите необходимые изменения в окне Параметры нижнего колонтитула и нажмите кнопку Применить или Применить ко всем, чтобы сохранить изменения.

                    Вставка даты, времени и номера слайда в текстовое поле

                    Также можно вставлять дату и время или номер слайда в выбранное текстовое поле, используя соответствующие кнопки на вкладке Вставка верхней панели инструментов.

                    -
                    Вставка даты и времени
                    +

                    Вставка даты и времени

                    1. установите курсор внутри текстового поля там, где требуется вставить дату и время,
                    2. нажмите кнопку
                      Дата и время на вкладке Вставка верхней панели инструментов,
                    3. @@ -60,7 +60,7 @@
                    4. выберите нужный формат в окне Дата и время,
                    5. нажмите кнопку OK.
                    -
                    Вставка номера слайда
                    +

                    Вставка номера слайда

                    1. установите курсор внутри текстового поля там, где требуется вставить номер слайда,
                    2. нажмите кнопку
                      Номер слайда на вкладке Вставка верхней панели инструментов,
                    3. diff --git a/apps/presentationeditor/mobile/locale/az.json b/apps/presentationeditor/mobile/locale/az.json index 33b20d238a..2814383651 100644 --- a/apps/presentationeditor/mobile/locale/az.json +++ b/apps/presentationeditor/mobile/locale/az.json @@ -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.
                      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.", diff --git a/apps/presentationeditor/mobile/locale/be.json b/apps/presentationeditor/mobile/locale/be.json index b1fd298488..e0e86f399c 100644 --- a/apps/presentationeditor/mobile/locale/be.json +++ b/apps/presentationeditor/mobile/locale/be.json @@ -203,7 +203,10 @@ "txtEditingMode": "Актывацыя рэжыму рэдагавання…", "uploadImageTextText": "Запампоўванне выявы…", "uploadImageTitleText": "Запампоўванне выявы", - "waitText": "Калі ласка, пачакайце..." + "waitText": "Калі ласка, пачакайце...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
                      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": "Сысці са старонкі", diff --git a/apps/presentationeditor/mobile/locale/bg.json b/apps/presentationeditor/mobile/locale/bg.json index 2511761f57..8673751906 100644 --- a/apps/presentationeditor/mobile/locale/bg.json +++ b/apps/presentationeditor/mobile/locale/bg.json @@ -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.
                      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.", diff --git a/apps/presentationeditor/mobile/locale/ca.json b/apps/presentationeditor/mobile/locale/ca.json index 233944514c..b64e1d1b04 100644 --- a/apps/presentationeditor/mobile/locale/ca.json +++ b/apps/presentationeditor/mobile/locale/ca.json @@ -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.
                      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.", diff --git a/apps/presentationeditor/mobile/locale/cs.json b/apps/presentationeditor/mobile/locale/cs.json index 81b649e362..bd8e621f98 100644 --- a/apps/presentationeditor/mobile/locale/cs.json +++ b/apps/presentationeditor/mobile/locale/cs.json @@ -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.
                      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.", diff --git a/apps/presentationeditor/mobile/locale/de.json b/apps/presentationeditor/mobile/locale/de.json index a7bdba3fee..801addb9c7 100644 --- a/apps/presentationeditor/mobile/locale/de.json +++ b/apps/presentationeditor/mobile/locale/de.json @@ -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.
                      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.", diff --git a/apps/presentationeditor/mobile/locale/el.json b/apps/presentationeditor/mobile/locale/el.json index 919c3792ba..37f897b64e 100644 --- a/apps/presentationeditor/mobile/locale/el.json +++ b/apps/presentationeditor/mobile/locale/el.json @@ -203,7 +203,10 @@ "txtEditingMode": "Ορισμός λειτουργίας επεξεργασίας...", "uploadImageTextText": "Μεταφόρτωση εικόνας...", "uploadImageTitleText": "Μεταφόρτωση Εικόνας", - "waitText": "Παρακαλούμε, περιμένετε..." + "waitText": "Παρακαλούμε, περιμένετε...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
                      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": "Έχετε μη αποθηκευμένες αλλαγές στο έγγραφο. Πατήστε 'Παραμονή στη Σελίδα' για να περιμένετε την αυτόματη αποθήκευση. Πατήστε 'Έξοδος από τη Σελίδα' για να απορρίψετε όλες τις μη αποθηκευμένες αλλαγές.", diff --git a/apps/presentationeditor/mobile/locale/en.json b/apps/presentationeditor/mobile/locale/en.json index 09b93cfb26..8d4a64abdb 100644 --- a/apps/presentationeditor/mobile/locale/en.json +++ b/apps/presentationeditor/mobile/locale/en.json @@ -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.
                      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.", diff --git a/apps/presentationeditor/mobile/locale/es.json b/apps/presentationeditor/mobile/locale/es.json index 8fd8a64e3d..0815ec0689 100644 --- a/apps/presentationeditor/mobile/locale/es.json +++ b/apps/presentationeditor/mobile/locale/es.json @@ -203,7 +203,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.
                      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": "Tiene cambios no guardados en este documento. Haga clic en \"Quedarse en esta página\" para esperar hasta que se guarden automáticamente. Haga clic en \"Salir de esta página\" para descartar todos los cambios no guardados.", diff --git a/apps/presentationeditor/mobile/locale/eu.json b/apps/presentationeditor/mobile/locale/eu.json index 085af9b702..80b4c74e86 100644 --- a/apps/presentationeditor/mobile/locale/eu.json +++ b/apps/presentationeditor/mobile/locale/eu.json @@ -203,7 +203,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.
                      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": "Gorde gabeko aldaketak dituzu dokumentu honetan. Egin klik \"Jarraitu orri honetan\" gordetze automatikoari itxaroteko. Egin klik \"Utzi orri hau\" gorde gabeko aldaketa guztiak baztertzeko.", diff --git a/apps/presentationeditor/mobile/locale/fr.json b/apps/presentationeditor/mobile/locale/fr.json index d1689b7bed..1a81e8b6ea 100644 --- a/apps/presentationeditor/mobile/locale/fr.json +++ b/apps/presentationeditor/mobile/locale/fr.json @@ -203,7 +203,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.
                      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": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur Rester sur cette page et attendez l'enregistrement automatique. Cliquez sur Quitter cette page pour annuler toutes les modifications non enregistrées.", diff --git a/apps/presentationeditor/mobile/locale/gl.json b/apps/presentationeditor/mobile/locale/gl.json index 020b629438..5826b9c728 100644 --- a/apps/presentationeditor/mobile/locale/gl.json +++ b/apps/presentationeditor/mobile/locale/gl.json @@ -203,7 +203,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.
                      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": "Ten cambios non gardados neste documento. Prema en \"Quedarse nesta páxina\" para esperar ata que se garden automaticamente. Prema en \"Saír desta pa´xina\" para descartar todos os cambios non gardados.", diff --git a/apps/presentationeditor/mobile/locale/hu.json b/apps/presentationeditor/mobile/locale/hu.json index d3f3d70d40..1c2eaee929 100644 --- a/apps/presentationeditor/mobile/locale/hu.json +++ b/apps/presentationeditor/mobile/locale/hu.json @@ -203,7 +203,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.
                      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": "Nem mentett módosításai vannak ebben a dokumentumban. Kattintson a „Maradj ezen az oldalon” gombra az automatikus mentés megvárásához. Kattintson a \"Hagyja el ezt az oldalt\" gombra az összes nem mentett módosítás elvetéséhez.", diff --git a/apps/presentationeditor/mobile/locale/hy.json b/apps/presentationeditor/mobile/locale/hy.json index 6f5b008d18..703ec15e0e 100644 --- a/apps/presentationeditor/mobile/locale/hy.json +++ b/apps/presentationeditor/mobile/locale/hy.json @@ -203,7 +203,10 @@ "txtEditingMode": "Խմբագրման աշխատակարգի հաստատում...", "uploadImageTextText": "Նկարի վերբեռնում...", "uploadImageTitleText": "Նկարի վերբեռնում", - "waitText": "Խնդրում ենք սպասել..." + "waitText": "Խնդրում ենք սպասել...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
                      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": "Դուք այս փաստաթղթում չպահված փոփոխություններ ունեք:Սեղմեք «Մնալ այս էջում»՝ սպասելու ավտոմատ պահպանմանը:Սեղմեք «Լքել այս էջը»՝ չպահված բոլոր փոփոխությունները մերժելու համար:", diff --git a/apps/presentationeditor/mobile/locale/id.json b/apps/presentationeditor/mobile/locale/id.json index 489623eccd..de59dcdd03 100644 --- a/apps/presentationeditor/mobile/locale/id.json +++ b/apps/presentationeditor/mobile/locale/id.json @@ -203,7 +203,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.
                      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": "Ada perubahan yang belum disimpan dalam dokumen ini. Klik 'Tetap di Halaman Ini' untuk menunggu simpan otomatis. Klik ‘Tinggalkan Halaman Ini’ untuk membatalkan semua perubahan yang belum disimpan.", diff --git a/apps/presentationeditor/mobile/locale/it.json b/apps/presentationeditor/mobile/locale/it.json index fcc8da4ef3..72b87c85b4 100644 --- a/apps/presentationeditor/mobile/locale/it.json +++ b/apps/presentationeditor/mobile/locale/it.json @@ -203,7 +203,10 @@ "txtEditingMode": "Impostare la modalità di modifica...", "uploadImageTextText": "Caricamento dell'immagine...", "uploadImageTitleText": "Caricamento dell'immagine", - "waitText": "Si prega di attendere" + "waitText": "Si prega di attendere", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
                      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": "Ci sono i cambiamenti non salvati in questo documento. Fai clic su \"Rimanere su questa pagina\" per attendere il salvataggio automatico. Fai clic su \"Lasciare questa pagina\" per eliminare tutti i cambiamenti non salvati.", diff --git a/apps/presentationeditor/mobile/locale/ja.json b/apps/presentationeditor/mobile/locale/ja.json index c58c04d606..305319f270 100644 --- a/apps/presentationeditor/mobile/locale/ja.json +++ b/apps/presentationeditor/mobile/locale/ja.json @@ -203,7 +203,10 @@ "txtEditingMode": "編集モードを設定する", "uploadImageTextText": "イメージのアップロード中...", "uploadImageTitleText": "イメージのアップロード中", - "waitText": "少々お待ちください..." + "waitText": "少々お待ちください...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
                      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": "保存されていない変更があります。自動保存を待つように「このページから移動しない」をクリックしてください。保存されていない変更を破棄ように「このページから移動する」をクリックしてください。", diff --git a/apps/presentationeditor/mobile/locale/ko.json b/apps/presentationeditor/mobile/locale/ko.json index 04a1cd6323..63cfb6206d 100644 --- a/apps/presentationeditor/mobile/locale/ko.json +++ b/apps/presentationeditor/mobile/locale/ko.json @@ -203,7 +203,10 @@ "txtEditingMode": "편집 모드 설정 ...", "uploadImageTextText": "이미지 업로드 중 ...", "uploadImageTitleText": "이미지 업로드 중", - "waitText": "잠시만 기다려주세요..." + "waitText": "잠시만 기다려주세요...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
                      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": "이 문서에 저장되지 않은 변경 사항이 있습니다. 자동 저장을 활성화하려면 \"이 페이지에서 나가기\"를 클릭하십시오. \"이 페이지에서 나가기\"를 클릭하면 저장되지 않은 모든 편집 내용이 삭제됩니다.", diff --git a/apps/presentationeditor/mobile/locale/lo.json b/apps/presentationeditor/mobile/locale/lo.json index e9f994cd3d..5fb611f2fb 100644 --- a/apps/presentationeditor/mobile/locale/lo.json +++ b/apps/presentationeditor/mobile/locale/lo.json @@ -203,7 +203,10 @@ "txtEditingMode": "ຕັ້ງຄ່າຮູບແບບການແກ້ໄຂ...", "uploadImageTextText": "ກໍາລັງອັບໂຫລດຮູບພາບ...", "uploadImageTitleText": "ກໍາລັງອັບໂຫລດຮູບພາບ", - "waitText": "ກະລຸນາລໍຖ້າ..." + "waitText": "ກະລຸນາລໍຖ້າ...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
                      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": "ທ່ານມີການປ່ຽນແປງທີ່ຍັງບໍ່ໄດ້ບັນທຶກໄວ້ໃນເອກະສານນີ້. ຄລິກທີ່ 'ຢູ່ໃນໜ້ານີ້' ເພື່ອລໍຖ້າການບັນທຶກອັດຕະໂນມັດ. ຄລິກ 'ອອກຈາກໜ້ານີ້' ເພື່ອຍົກເລີກການປ່ຽນແປງທີ່ບໍ່ໄດ້ບັນທຶກໄວ້ທັງໝົດ.", diff --git a/apps/presentationeditor/mobile/locale/lv.json b/apps/presentationeditor/mobile/locale/lv.json index 2511761f57..8673751906 100644 --- a/apps/presentationeditor/mobile/locale/lv.json +++ b/apps/presentationeditor/mobile/locale/lv.json @@ -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.
                      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.", diff --git a/apps/presentationeditor/mobile/locale/ms.json b/apps/presentationeditor/mobile/locale/ms.json index ed75626462..df99a51fa0 100644 --- a/apps/presentationeditor/mobile/locale/ms.json +++ b/apps/presentationeditor/mobile/locale/ms.json @@ -203,7 +203,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.
                      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": "Anda mempunyai perubahan yang tidak disimpan dalam dokumen ini. Klik 'Stay on this Page’ untuk menunggu autosimpan. Klik 'Leave this Page' untuk membuang semua perubahan yang tidak disimpan.", diff --git a/apps/presentationeditor/mobile/locale/nb.json b/apps/presentationeditor/mobile/locale/nb.json index 2511761f57..8673751906 100644 --- a/apps/presentationeditor/mobile/locale/nb.json +++ b/apps/presentationeditor/mobile/locale/nb.json @@ -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.
                      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.", diff --git a/apps/presentationeditor/mobile/locale/nl.json b/apps/presentationeditor/mobile/locale/nl.json index 66fa982c84..6173fa0d09 100644 --- a/apps/presentationeditor/mobile/locale/nl.json +++ b/apps/presentationeditor/mobile/locale/nl.json @@ -203,7 +203,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.
                      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": "U hebt niet-opgeslagen wijzigingen in dit document. Klik op 'Blijf op deze pagina' om te wachten op automatisch opslaan. Klik op 'Verlaat deze pagina' om alle niet-opgeslagen wijzigingen te verwijderen.", diff --git a/apps/presentationeditor/mobile/locale/pl.json b/apps/presentationeditor/mobile/locale/pl.json index 2511761f57..8673751906 100644 --- a/apps/presentationeditor/mobile/locale/pl.json +++ b/apps/presentationeditor/mobile/locale/pl.json @@ -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.
                      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.", diff --git a/apps/presentationeditor/mobile/locale/pt-pt.json b/apps/presentationeditor/mobile/locale/pt-pt.json index 6c59da6ec1..f85d67eca6 100644 --- a/apps/presentationeditor/mobile/locale/pt-pt.json +++ b/apps/presentationeditor/mobile/locale/pt-pt.json @@ -203,7 +203,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.
                      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": "Este documento tem alterações não guardadas. Clique 'Ficar na página' para que o documento seja guardado automaticamente. Clique 'Sair da página' para rejeitar todas as alterações.", diff --git a/apps/presentationeditor/mobile/locale/pt.json b/apps/presentationeditor/mobile/locale/pt.json index a7ad1f90c3..4c74e16420 100644 --- a/apps/presentationeditor/mobile/locale/pt.json +++ b/apps/presentationeditor/mobile/locale/pt.json @@ -203,7 +203,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.
                      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": "Você tem alterações não salvas neste documento. Clique em 'Permanecer nesta página' para aguardar o salvamento automático. Clique em 'Sair desta página' para descartar todas as alterações não salvas.", diff --git a/apps/presentationeditor/mobile/locale/ro.json b/apps/presentationeditor/mobile/locale/ro.json index 78311a2a61..4790f7429f 100644 --- a/apps/presentationeditor/mobile/locale/ro.json +++ b/apps/presentationeditor/mobile/locale/ro.json @@ -203,7 +203,10 @@ "txtEditingMode": "Setare modul de editare...", "uploadImageTextText": "Încărcarea imaginii...", "uploadImageTitleText": "Încărcare imagine", - "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.
                      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": "Nu ați salvat modificările din documentul. Faceți clic pe Rămâi în pagină și așteptați la salvare automată. Faceți clic pe Părăsește aceasta pagina ca să renunțați la toate modificările nesalvate.", diff --git a/apps/presentationeditor/mobile/locale/ru.json b/apps/presentationeditor/mobile/locale/ru.json index eb463e3958..9098345524 100644 --- a/apps/presentationeditor/mobile/locale/ru.json +++ b/apps/presentationeditor/mobile/locale/ru.json @@ -203,7 +203,10 @@ "txtEditingMode": "Установка режима редактирования...", "uploadImageTextText": "Загрузка рисунка...", "uploadImageTitleText": "Загрузка рисунка", - "waitText": "Пожалуйста, подождите..." + "waitText": "Пожалуйста, подождите...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
                      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": "В документе есть несохраненные изменения. Нажмите 'Остаться на странице', чтобы дождаться автосохранения. Нажмите 'Уйти со страницы', чтобы сбросить все несохраненные изменения.", diff --git a/apps/presentationeditor/mobile/locale/sk.json b/apps/presentationeditor/mobile/locale/sk.json index bec379ba50..f5c61b33d4 100644 --- a/apps/presentationeditor/mobile/locale/sk.json +++ b/apps/presentationeditor/mobile/locale/sk.json @@ -203,7 +203,10 @@ "txtEditingMode": "Nastaviť režim úprav ...", "uploadImageTextText": "Nahrávanie obrázku...", "uploadImageTitleText": "Nahrávanie obrázku", - "waitText": "Prosím čakajte..." + "waitText": "Prosím čakajte...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
                      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 dokumente máte neuložené zmeny. Kliknite na „Zostať na tejto stránke“ a počkajte na automatické uloženie. Kliknutím na „Opustiť túto stránku“ zahodíte všetky neuložené zmeny.", diff --git a/apps/presentationeditor/mobile/locale/sl.json b/apps/presentationeditor/mobile/locale/sl.json index 67dc7d362b..724d7c0254 100644 --- a/apps/presentationeditor/mobile/locale/sl.json +++ b/apps/presentationeditor/mobile/locale/sl.json @@ -487,7 +487,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.
                      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.", diff --git a/apps/presentationeditor/mobile/locale/tr.json b/apps/presentationeditor/mobile/locale/tr.json index 8b49724130..856fc3a81c 100644 --- a/apps/presentationeditor/mobile/locale/tr.json +++ b/apps/presentationeditor/mobile/locale/tr.json @@ -203,7 +203,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.
                      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 belgede kaydedilmemiş değişiklikleriniz var. Otomatik kaydetmeyi beklemek için 'Bu Sayfada Kal' seçeneğini tıklayın. Kaydedilmemiş tüm değişiklikleri atmak için 'Bu Sayfadan Ayrıl'ı tıklayın.", diff --git a/apps/presentationeditor/mobile/locale/uk.json b/apps/presentationeditor/mobile/locale/uk.json index 2a2aaf4677..87780fb6d7 100644 --- a/apps/presentationeditor/mobile/locale/uk.json +++ b/apps/presentationeditor/mobile/locale/uk.json @@ -487,7 +487,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.
                      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.", diff --git a/apps/presentationeditor/mobile/locale/vi.json b/apps/presentationeditor/mobile/locale/vi.json index 2511761f57..8673751906 100644 --- a/apps/presentationeditor/mobile/locale/vi.json +++ b/apps/presentationeditor/mobile/locale/vi.json @@ -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.
                      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.", diff --git a/apps/presentationeditor/mobile/locale/zh-tw.json b/apps/presentationeditor/mobile/locale/zh-tw.json index e06029142f..dd5b730a57 100644 --- a/apps/presentationeditor/mobile/locale/zh-tw.json +++ b/apps/presentationeditor/mobile/locale/zh-tw.json @@ -203,7 +203,10 @@ "txtEditingMode": "設定編輯模式...", "uploadImageTextText": "正在上傳圖片...", "uploadImageTitleText": "上載圖片", - "waitText": "請耐心等待..." + "waitText": "請耐心等待...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
                      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": "您在此文件中有未儲存的變更。點擊\"留在此頁面\"以等待自動儲存。點擊\"離開此頁面\"以放棄所有未儲存的變更。", diff --git a/apps/presentationeditor/mobile/locale/zh.json b/apps/presentationeditor/mobile/locale/zh.json index 0ea9d96dbe..60e04ab2c7 100644 --- a/apps/presentationeditor/mobile/locale/zh.json +++ b/apps/presentationeditor/mobile/locale/zh.json @@ -203,7 +203,10 @@ "txtEditingMode": "设置编辑模式..", "uploadImageTextText": "图片上传中...", "uploadImageTitleText": "图片上传中", - "waitText": "请稍候..." + "waitText": "请稍候...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
                      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": "你在该文档中有未保存的修改。点击“留在该页”来等待自动保存。点击“离开该页”将舍弃全部未保存的更改。", diff --git a/apps/presentationeditor/mobile/src/controller/LongActions.jsx b/apps/presentationeditor/mobile/src/controller/LongActions.jsx index 61614d9a5d..346764ff5b 100644 --- a/apps/presentationeditor/mobile/src/controller/LongActions.jsx +++ b/apps/presentationeditor/mobile/src/controller/LongActions.jsx @@ -25,11 +25,17 @@ const LongActionsController = inject('storeAppOptions')(({storeAppOptions}) => { }; useEffect( () => { - Common.Notifications.on('engineCreated', (api) => { + const on_engine_created = api => { 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(); + if(!api) Common.Notifications.on('engineCreated', on_engine_created); + else on_engine_created(api); + Common.Notifications.on('preloader:endAction', onLongActionEnd); Common.Notifications.on('preloader:beginAction', onLongActionBegin); Common.Notifications.on('preloader:close', closePreloader); @@ -40,8 +46,10 @@ 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); Common.Notifications.off('preloader:endAction', onLongActionEnd); Common.Notifications.off('preloader:beginAction', onLongActionBegin); Common.Notifications.off('preloader:close', closePreloader); @@ -176,6 +184,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]; diff --git a/apps/spreadsheeteditor/main/app/controller/LeftMenu.js b/apps/spreadsheeteditor/main/app/controller/LeftMenu.js index 9f974f2cbb..083c3ed83b 100644 --- a/apps/spreadsheeteditor/main/app/controller/LeftMenu.js +++ b/apps/spreadsheeteditor/main/app/controller/LeftMenu.js @@ -314,6 +314,7 @@ define([ this.showHistory(); } break; + case 'external-help': close_menu = true; break; default: close_menu = false; } diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js index 2b811a1aca..7140876691 100644 --- a/apps/spreadsheeteditor/main/app/controller/Main.js +++ b/apps/spreadsheeteditor/main/app/controller/Main.js @@ -2381,6 +2381,19 @@ define([ } }, this) }); + } else 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(me.application.getController('DocumentHolder').getView('DocumentHolder')); + }, this) + }); } }, @@ -3660,8 +3673,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', confirmAddCellWatches: 'This action will add {0} cell watches.
                      Do you want to continue?', - confirmAddCellWatchesMax: 'This action will add only {0} cell watches by memory save reason.
                      Do you want to continue?' - + confirmAddCellWatchesMax: 'This action will add only {0} cell watches by memory save reason.
                      Do you want to continue?', + confirmMaxChangesSize: 'The size of actions exceeds the limitation set for your server.
                      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' } })(), SSE.Controllers.Main || {})) }); diff --git a/apps/spreadsheeteditor/main/app/controller/Search.js b/apps/spreadsheeteditor/main/app/controller/Search.js index f830b7c41e..b327d98209 100644 --- a/apps/spreadsheeteditor/main/app/controller/Search.js +++ b/apps/spreadsheeteditor/main/app/controller/Search.js @@ -367,6 +367,7 @@ define([ }, onApiRemoveTextAroundSearch: function (arr) { + if (!this.resultItems) return; var me = this; arr.forEach(function (id) { var ind = _.findIndex(me.resultItems, {id: id}); diff --git a/apps/spreadsheeteditor/main/app/view/FileMenu.js b/apps/spreadsheeteditor/main/app/view/FileMenu.js index e678b413d6..931c067abe 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenu.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenu.js @@ -56,6 +56,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) { diff --git a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js index c69e41c080..7062f2bb12 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js @@ -1878,6 +1878,7 @@ SSE.Views.FileMenuPanels.RecentFiles = Common.UI.BaseView.extend({ this.menu = options.menu; this.urlPref = 'resources/help/{{DEFAULT_LANG}}/'; this.openUrl = null; + this.urlHelpCenter = '{{HELP_CENTER_WEB_SSE}}'; this.en_data = [ {"src": "ProgramInterface/ProgramInterface.htm", "name": "Introducing Spreadsheet Editor user interface", "headername": "Program Interface"}, @@ -1985,9 +1986,10 @@ SSE.Views.FileMenuPanels.RecentFiles = Common.UI.BaseView.extend({ 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'; diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 447a222aa9..3e50791662 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -1283,6 +1283,9 @@ "SSE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
                      Contact %1 sales team for personal upgrade terms.", "SSE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", "SSE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", + "SSE.Controllers.Main.confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
                      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).", + "SSE.Controllers.Main.textUndo": "Undo", + "SSE.Controllers.Main.textContinue": "Continue", "SSE.Controllers.Print.strAllSheets": "All Sheets", "SSE.Controllers.Print.textFirstCol": "First column", "SSE.Controllers.Print.textFirstRow": "First row", diff --git a/apps/spreadsheeteditor/main/resources/help/de/HelpfulHints/SpellChecking.htm b/apps/spreadsheeteditor/main/resources/help/de/HelpfulHints/SpellChecking.htm index 59d5397032..72cd3ede2a 100644 --- a/apps/spreadsheeteditor/main/resources/help/de/HelpfulHints/SpellChecking.htm +++ b/apps/spreadsheeteditor/main/resources/help/de/HelpfulHints/SpellChecking.htm @@ -21,7 +21,7 @@

                      Rechtschreibprüfung Panel

                      Die obere linke Zelle hat den falschgeschriebenen Textwert, der automatisch in dem aktiven Arbeitsblatt ausgewählt ist. Das erste falsch geschriebene Wort wird in dem Rechtschreibprüfungsfeld angezeigt. Die Wörter mit der rechten Rechtschreibung werden im Feld nach unten angezeigt.

                      Verwenden Sie die Schaltfläche Zum nächsten Wort wechseln, um zum nächsten falsch geschriebenen Wort zu übergehen.

                      -
                      Falsh geschriebene Wörter ersetzen
                      +

                      Falsh geschriebene Wörter ersetzen

                      Um das falsch geschriebene Wort mit dem korrekt geschriebenen Wort zu ersetzen, wählen Sie das korrekt geschriebene Wort aus der Liste aus und verwenden Sie die Option Ändern:

                      • klicken Sie die Schaltfläche Ändern an, oder
                      • @@ -29,7 +29,7 @@

                      Das aktive Wort wird ersetzt und Sie können zum nächsten falsch geschriebenen Wort wechseln.

                      Um alle identischen falsch geschriebenen Wörter im Arbeitsblatt scnhell zu ersetzen, klicken Sie den Abwärtspfeil neben der Schaltfläche Ändern an und wählen Sie die Option Alles ändern aus.

                      -
                      Wörter ignorieren
                      +

                      Wörter ignorieren

                      Um das aktive Wort zu ignorieren:

                      • klicken Sie die Schaltfläche Ignorieren an, oder
                      • @@ -41,7 +41,7 @@

                        Die aktive Sprache des Wörterbuchs ist nach unten angezeigt. Sie können sie ändern.

                        Wenn Sie alle Wörter auf dem Arbeitsblatt überprüfen, wird die Meldung Die Rechtschreibprüfung wurde abgeschlossen auf dem Panel angezeigt.

                        Um das Panel zu schließen, klicken Sie die Schaltfläche Rechtschreibprüfung in der linken Randleiste an.

                        -
                        Die Einstellungen für die Rechtschreibprüfung konfigurieren
                        +

                        Die Einstellungen für die Rechtschreibprüfung konfigurieren

                        Um die Einstellungen der Rechtschreibprüfung zu ändern, öffnen Sie die erweiterten Einstellungen des Tabelleneditors (die Registerkarte Datei -> Erweiterte Einstellungen) und öffnen Sie den Abschnitt Rechtschreibprüfung. Hier können Sie die folgenden Einstellungen konfigurieren:

                        Einstellungen der Rechtschreibprüfung

                          diff --git a/apps/spreadsheeteditor/main/resources/help/de/ProgramInterface/ProtectionTab.htm b/apps/spreadsheeteditor/main/resources/help/de/ProgramInterface/ProtectionTab.htm index 952bcb58fc..c047fff8bf 100644 --- a/apps/spreadsheeteditor/main/resources/help/de/ProgramInterface/ProtectionTab.htm +++ b/apps/spreadsheeteditor/main/resources/help/de/ProgramInterface/ProtectionTab.htm @@ -26,11 +26,11 @@

                          Sie können:

                            -
                          • Ihr Dokument durch Festlegen eines Kennworts verschlüsseln,
                          • -
                          • Arbeitsmappenstruktur mit oder ohne Kennwort schützen,
                          • -
                          • Blatt schützen durch Einschränken der Bearbeitungsfunktionen innerhalb eines Blatts mit oder ohne Kennwort,
                          • -
                          • Bearbeitung der Bereiche von gesperrten Zellen mit oder ohne Kennwort erlauben,
                          • -
                          • die folgenden Optionen aktivieren und deaktivieren: Gesperrte Zelle, Ausgeblendete Formeln, Gesperrte Form, Text sperren.
                          • +
                          • Ihr Dokument durch Festlegen eines Kennworts verschlüsseln,
                          • +
                          • Arbeitsmappenstruktur mit oder ohne Kennwort schützen,
                          • +
                          • Blatt schützen durch Einschränken der Bearbeitungsfunktionen innerhalb eines Blatts mit oder ohne Kennwort,
                          • +
                          • Bearbeitung der Bereiche von gesperrten Zellen mit oder ohne Kennwort erlauben,
                          • +
                          • die folgenden Optionen aktivieren und deaktivieren: Gesperrte Zelle, Ausgeblendete Formeln, Gesperrte Form, Text sperren.
                          diff --git a/apps/spreadsheeteditor/main/resources/help/en/HelpfulHints/SpellChecking.htm b/apps/spreadsheeteditor/main/resources/help/en/HelpfulHints/SpellChecking.htm index 6b415b2f27..fbd983256b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/HelpfulHints/SpellChecking.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/HelpfulHints/SpellChecking.htm @@ -21,7 +21,7 @@

                          Spell checking panel

                          The upper left cell that contains a misspelled text value will be automatically selected in the current worksheet. The first misspelled word will be displayed in the spell checking field, and the suggested similar words with correct spelling will appear in the field below.

                          Use the Go to the next word button to navigate through misspelled words.

                          -
                          Replace misspelled words
                          +

                          Replace misspelled words

                          To replace the currently selected misspelled word with the suggested one, choose one of the suggested similar words spelled correctly and use the Change option:

                          • click the Change button, or
                          • @@ -29,7 +29,7 @@

                          The current word will be replaced and you will proceed to the next misspelled word.

                          To quickly replace all the identical words repeated on the worksheet, click the downward arrow next to the Change button and select the Change all option.

                          -
                          Ignore words
                          +

                          Ignore words

                          To skip the current word:

                          • click the Ignore button, or
                          • @@ -41,7 +41,7 @@

                            The Dictionary Language which is used for spell-checking is displayed in the list below. You can change it, if necessary.

                            Once you verify all the words in the worksheet, the Spellcheck has been completed message will appear on the spell-checking panel.

                            To close the spell-checking panel, click the Spell checking icon on the left sidebar.

                            -
                            Change the spell check settings
                            +

                            Change the spell check settings

                            To change the spell-checking settings, go to the spreadsheet editor advanced settings (File tab -> Advanced Settings) and switch to the Spell checking tab. Here you can adjust the following parameters:

                            Spell checking settings

                              diff --git a/apps/spreadsheeteditor/main/resources/help/en/ProgramInterface/ProtectionTab.htm b/apps/spreadsheeteditor/main/resources/help/en/ProgramInterface/ProtectionTab.htm index c434da4222..dc0417b8fc 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/ProgramInterface/ProtectionTab.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/ProgramInterface/ProtectionTab.htm @@ -26,11 +26,11 @@

                              Using this tab, you can:

                                -
                              • Encrypt your document by setting a password,
                              • -
                              • Protect workbook structure with or without a password,
                              • -
                              • Protect sheet by restricting editing abilities within a sheet with or without a password,
                              • -
                              • Allow edit ranges of locked cells with or without a password,
                              • -
                              • Enable and disable the following options: Locked Cell, Hidden Formulas, Shape Locked, Lock Text.
                              • +
                              • Encrypt your document by setting a password,
                              • +
                              • Protect workbook structure with or without a password,
                              • +
                              • Protect sheet by restricting editing abilities within a sheet with or without a password,
                              • +
                              • Allow edit ranges of locked cells with or without a password,
                              • +
                              • Enable and disable the following options: Locked Cell, Hidden Formulas, Shape Locked, Lock Text.
                              diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/FormattedTables.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/FormattedTables.htm index 1eee7e2c21..a5de4092ab 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/FormattedTables.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/FormattedTables.htm @@ -19,7 +19,7 @@

                              To make it easier for you to work with data, the Spreadsheet Editor allows you to apply a table template to the selected cell range and automatically enable the filter. To do that,

                              1. select a range of cells you need to format,
                              2. -
                              3. click the Format as table template
                                icon situated on the Home tab of the top toolbar.
                              4. +
                              5. click the Format as table template
                                icon situated on the Home tab of the top toolbar,
                              6. select the required template in the gallery,
                              7. in the opened pop-up window, check the cell range to be formatted as a table,
                              8. check the Title if you wish the table headers to be included in the selected cell range, otherwise, the header row will be added at the top while the selected cell range will be moved one row down,
                              9. diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertChart.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertChart.htm index 0f83737912..a59fb38336 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertChart.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertChart.htm @@ -18,11 +18,11 @@

                                Insert a chart

                                To insert a chart in the Spreadsheet Editor,

                                  -
                                1. select the cell range that contain the data you wish to use for the chart,
                                2. -
                                3. switch to the Insert tab of the top toolbar,
                                4. -
                                5. click the
                                  Chart icon on the top toolbar,
                                6. +
                                7. Select the cell range that contain the data you wish to use for the chart.
                                8. +
                                9. Switch to the Insert tab of the top toolbar.
                                10. +
                                11. Click the
                                  Chart icon on the top toolbar.
                                12. - select the needed chart type from the available ones: + Select the needed chart type from the available ones:
                                  Column Charts
                                    @@ -104,14 +104,14 @@

                                    Adjust the chart settings

                                    Now you can change the settings of the inserted chart. To change the chart type,

                                      -
                                    1. select the chart with the mouse,
                                    2. +
                                    3. Select the chart with the mouse.
                                    4. - click the Chart settings
                                      icon on the right sidebar, + Click the Chart settings
                                      icon on the right sidebar.

                                      Chart Settings Right-Side Panel window

                                    5. -
                                    6. open the Style drop-down list below and select the style which suits you best.
                                    7. -
                                    8. open the Change type drop-down list and select the type you need.
                                    9. -
                                    10. click the Switch row/column option to change the positioning of chart rows and columns.
                                    11. +
                                    12. Open the Style drop-down list below and select the style which suits you best.
                                    13. +
                                    14. Open the Change type drop-down list and select the type you need.
                                    15. +
                                    16. Click the Switch row/column option to change the positioning of chart rows and columns.

                                    The selected chart type and style will be changed.

                                    To edit chart data:

                                    @@ -183,7 +183,7 @@ Specify the Data Labels (i.e. text labels that represent exact values of data points) parameters:
                                    • - specify the Data Labels position relative to the data points by selecting the necessary option from the drop-down list. The available options vary depending on the selected chart type. + Specify the Data Labels position relative to the data points by selecting the necessary option from the drop-down list. The available options vary depending on the selected chart type.
                                      • For Column/Bar charts, you can choose the following options: None, Center, Inner Bottom, Inner Top, Outer Top.
                                      • For Line/XY (Scatter)/Stock charts, you can choose the following options: None, Center, Left, Right, Top, Bottom.
                                      • @@ -191,8 +191,8 @@
                                      • For Area charts as well as for 3D Column, Line and Bar charts, you can choose the following options: None, Center.
                                    • -
                                    • select the data you wish to include into your labels checking the corresponding boxes: Series Name, Category Name, Value,
                                    • -
                                    • enter a character (comma, semicolon etc.) you wish to use for separating several labels into the Data Labels Separator entry field.
                                    • +
                                    • Select the data you wish to include into your labels checking the corresponding boxes: Series Name, Category Name, Value,
                                    • +
                                    • Enter a character (comma, semicolon etc.) you wish to use for separating several labels into the Data Labels Separator entry field.
                                  • Lines - is used to choose a line style for Line/XY (Scatter) charts. You can choose one of the following options: Straight to use straight lines between data points, Smooth to use smooth curves between data points, or None to not display lines.
                                  • @@ -205,9 +205,9 @@

                                    The Vertical Axis 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 Bar charts, therefore in this case the Vertical Axis tab options will correspond to the ones described in the next section. For the XY (Scatter) charts, both axes are value axes.

                                    Note: the Axis Settings and Gridlines sections will be disabled for Pie charts since charts of this type have no axes and gridlines.

                                      -
                                    • select Hide to hide vertical axis in the chart, leave it unchecked to have vertical axis displayed.
                                    • +
                                    • Select Hide to hide vertical axis in the chart, leave it unchecked to have vertical axis displayed.
                                    • - specify Title orientation by selecting the necessary option from the drop-down list: + Specify Title orientation by selecting the necessary option from the drop-down list:
                                      • None to not display a vertical axis title
                                      • Rotated to display the title from bottom to top to the left of the vertical axis,
                                      • @@ -266,13 +266,13 @@

                                        Note: Secondary axes are supported in Combo charts only.

                                        Secondary axes 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.

                                        -

                                        The Secondary Vertical /Horizontal Axis tab appears when you choose an appropriate data series for a combo chart. All the settings and options on the Secondary Vertical/Horizontal Axis tab are the same as the settings on the Vertical/Horizontal Axis. For a detailed description of the Vertical/Horizontal Axis options, see description above/below.

                                        +

                                        The Secondary Vertical /Horizontal Axis tab appears when you choose an appropriate data series for a combo chart. All the settings and options on the Secondary Vertical/Horizontal Axis tab are the same as the settings on the Vertical/Horizontal Axis. For a detailed description of the Vertical/Horizontal Axis options, see description above/below.

                                        Chart - Advanced Settings window

                                        The Horizontal Axis 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 Bar charts, therefore in this case the Horizontal Axis tab options will correspond to the ones described in the previous section. For the XY (Scatter) charts, both axes are value axes.

                                          -
                                        • select Hide to hide horizontal axis in the chart, leave it unchecked to have horizontal axis displayed.
                                        • +
                                        • Select Hide to hide horizontal axis in the chart, leave it unchecked to have horizontal axis displayed.
                                        • - specify Title orientation by selecting the necessary option from the drop-down list: + Specify Title orientation by selecting the necessary option from the drop-down list:
                                          • None when you don’t want to display a horizontal axis title,
                                          • No Overlay  to display the title below the horizontal axis,
                                          • diff --git a/apps/spreadsheeteditor/main/resources/help/fr/ProgramInterface/ProtectionTab.htm b/apps/spreadsheeteditor/main/resources/help/fr/ProgramInterface/ProtectionTab.htm index b695f41f2d..b3a3a34fa9 100644 --- a/apps/spreadsheeteditor/main/resources/help/fr/ProgramInterface/ProtectionTab.htm +++ b/apps/spreadsheeteditor/main/resources/help/fr/ProgramInterface/ProtectionTab.htm @@ -26,11 +26,11 @@

                                            En utilisant cet onglet, vous pouvez :

                                              -
                                            • Chiffrer votre document en définissant un mot de passe,
                                            • -
                                            • Protéger le livre avec ou sans un mot de passe afin de protéger sa structure,
                                            • -
                                            • Protéger la feuille de calcul en limitant les possibilités de modification dans une feuille de calcul avec ou sans un mot de passe,
                                            • -
                                            • Autoriser la modification des plages de cellules verrouillées avec ou sans mot de passe.
                                            • -
                                            • Activer et désactiver les options suivantes : Cellule verrouillée, Formules cachées, Forme verrouillé, Verrouiller le texte.
                                            • +
                                            • Chiffrer votre document en définissant un mot de passe,
                                            • +
                                            • Protéger le livre avec ou sans un mot de passe afin de protéger sa structure,
                                            • +
                                            • Protéger la feuille de calcul en limitant les possibilités de modification dans une feuille de calcul avec ou sans un mot de passe,
                                            • +
                                            • Autoriser la modification des plages de cellules verrouillées avec ou sans mot de passe.
                                            • +
                                            • Activer et désactiver les options suivantes : Cellule verrouillée, Formules cachées, Forme verrouillé, Verrouiller le texte.
                                            diff --git a/apps/spreadsheeteditor/main/resources/help/fr/UsageInstructions/FormattedTables.htm b/apps/spreadsheeteditor/main/resources/help/fr/UsageInstructions/FormattedTables.htm index b89eae59f5..604a88ec7d 100644 --- a/apps/spreadsheeteditor/main/resources/help/fr/UsageInstructions/FormattedTables.htm +++ b/apps/spreadsheeteditor/main/resources/help/fr/UsageInstructions/FormattedTables.htm @@ -19,7 +19,7 @@

                                            Pour faciliter le travail avec vos données, Tableur vous permet d'appliquer un modèle de tableau à une plage de cellules sélectionnée en activant automatiquement le filtre. Pour ce faire,

                                            1. sélectionnez une plage de cellules que vous souhaitez mettre en forme,
                                            2. -
                                            3. cliquez sur l'icône Mettre sous forme de modèle de tableau
                                              sous l'onglet Accueil dans la barre d'outils supérieure.
                                            4. +
                                            5. cliquez sur l'icône Mettre sous forme de modèle de tableau
                                              sous l'onglet Accueil dans la barre d'outils supérieure,
                                            6. Sélectionnez le modèle souhaité dans la galerie,
                                            7. dans la fenêtre contextuelle ouverte, vérifiez la plage de cellules à mettre en forme comme un tableau,
                                            8. cochez la case Titre si vous souhaitez inclure les en-têtes de tableau dans la plage de cellules sélectionnée, sinon la ligne d'en-tête sera ajoutée en haut tandis que la plage de cellules sélectionnée sera déplacée d'une ligne vers le bas,
                                            9. diff --git a/apps/spreadsheeteditor/main/resources/help/fr/UsageInstructions/InsertChart.htm b/apps/spreadsheeteditor/main/resources/help/fr/UsageInstructions/InsertChart.htm index 20bf762e8f..8f5eee3b31 100644 --- a/apps/spreadsheeteditor/main/resources/help/fr/UsageInstructions/InsertChart.htm +++ b/apps/spreadsheeteditor/main/resources/help/fr/UsageInstructions/InsertChart.htm @@ -18,11 +18,11 @@

                                              Insérer un graphique

                                              Pour insérer un graphique dans le Tableur,

                                                -
                                              1. sélectionnez la plage de cellules qui contiennent les données que vous souhaitez utiliser pour le graphique,
                                              2. -
                                              3. passez à l'onglet Insérer de la barre d'outils supérieure,
                                              4. -
                                              5. cliquez sur l'icône Graphique
                                                de la barre d'outils supérieure,
                                              6. +
                                              7. Sélectionnez la plage de cellules qui contiennent les données que vous souhaitez utiliser pour le graphique.
                                              8. +
                                              9. Passez à l'onglet Insérer de la barre d'outils supérieure.
                                              10. +
                                              11. Cliquez sur l'icône Graphique
                                                de la barre d'outils supérieure.
                                              12. - choisissez le type de graphique approprié : + Choisissez le type de graphique approprié :
                                                Graphique à colonnes
                                                  @@ -104,14 +104,14 @@

                                                  Régler les paramètres du graphique

                                                  Vous pouvez maintenant modifier les propriétés du graphique inséré : Pour modifier le type de graphique,

                                                    -
                                                  1. sélectionnez le graphique avec la souris,
                                                  2. +
                                                  3. Sélectionnez le graphique avec la souris.
                                                  4. - cliquez sur l'icône Paramètres du graphique
                                                    sur la barre latérale droite, + Cliquez sur l'icône Paramètres du graphique
                                                    sur la barre latérale droite.

                                                    Fenêtre Paramètres du graphique du panneau latéral droit

                                                  5. -
                                                  6. ouvrez la liste déroulante Style et sélectionnez le style qui vous convient le mieux.
                                                  7. -
                                                  8. ouvrez la liste déroulante Modifier le type et sélectionnez le type approprié.
                                                  9. -
                                                  10. cliquez sur l'option Changer de ligne ou de colonne afin de modifier le positionnement des lignes et des colonnes de graphique.
                                                  11. +
                                                  12. Ouvrez la liste déroulante Style et sélectionnez le style qui vous convient le mieux.
                                                  13. +
                                                  14. Ouvrez la liste déroulante Modifier le type et sélectionnez le type approprié.
                                                  15. +
                                                  16. Cliquez sur l'option Changer de ligne ou de colonne afin de modifier le positionnement des lignes et des colonnes de graphique.

                                                  Le type et le style de graphique sélectionnés seront modifiés.

                                                  Pour modifier les données du graphiques :

                                                  @@ -183,7 +183,7 @@ Spécifiez les paramètres des Étiquettes de données (c'est-à-dire les étiquettes de texte représentant les valeurs exactes des points de données) :
                                                  • - spécifiez la position des Étiquettes de données 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 Étiquettes de données 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é.
                                                    • Pour les graphiques en Colonnes/Barres, vous pouvez choisir les options suivantes : Rien, Au centre, En haut à l'intérieur, En haut à l'intérieur, En haut à l'extérieur.
                                                    • Pour les graphiques en Ligne/ Nuage de points (XY)/Boursier, vous pouvez choisir les options suivantes : Rien, Au centre, À gauche, À droite, En haut, En bas.
                                                    • @@ -191,8 +191,8 @@
                                                    • Pour les graphiques en Aire ainsi que pour les graphiques 3D en Colonnes, Ligne, Barres et Combo vous pouvez choisir les options suivantes : Rien, Au centre.
                                                  • -
                                                  • sélectionnez les données que vous souhaitez inclure dans vos étiquettes en cochant les cases correspondantes : Nom de la série, Nom de la catégorie, Valeur,
                                                  • -
                                                  • entrez un caractère (virgule, point-virgule, etc.) que vous souhaitez utiliser pour séparer plusieurs étiquettes dans le champ de saisie Séparateur d'étiquettes de données.
                                                  • +
                                                  • Sélectionnez les données que vous souhaitez inclure dans vos étiquettes en cochant les cases correspondantes : Nom de la série, Nom de la catégorie, Valeur,
                                                  • +
                                                  • Entrez un caractère (virgule, point-virgule, etc.) que vous souhaitez utiliser pour séparer plusieurs étiquettes dans le champ de saisie Séparateur d'étiquettes de données.
                                                • Lignes - permet de choisir un style de ligne pour les graphiques en Ligne/Nuage de points (XY). Vous pouvez choisir parmi les options suivantes : Droit pour utiliser des lignes droites entre les points de données, Lisse pour utiliser des courbes lisses entre les points de données, ou Rien pour ne pas afficher les lignes.
                                                • @@ -205,9 +205,9 @@

                                                  L'onglet Axe vertical 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 Graphiques à barres. Dans ce cas, les options de l'onglet Axe vertical correspondront à celles décrites dans la section suivante. Pour les Graphiques Nuage de points (XY), les deux axes sont des axes de valeur.

                                                  Remarque : les sections Paramètres des axes et Quadrillage seront désactivées pour les Graphiques à secteurs, car les graphiques de ce type n'ont ni axes ni lignes de quadrillage.

                                                    -
                                                  • sélectionnez Masquer l'axe pour masquer l'axe vertical du graphique, laissez cette option décochée pour afficher l'axe.
                                                  • +
                                                  • Sélectionnez Masquer l'axe pour masquer l'axe vertical du graphique, laissez cette option décochée pour afficher l'axe.
                                                  • - 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 :
                                                    • Rien pour ne pas afficher le titre de l'axe vertical
                                                    • Incliné pour afficher le titre de bas en haut à gauche de l'axe vertical,
                                                    • @@ -270,9 +270,9 @@

                                                      La fenêtre Graphique - Paramètres avancés

                                                      L'onglet Axe horizontal 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 Graphiques à barres. Dans ce cas, les options de l'onglet Axe horizontal correspondent à celles décrites dans la section précédente. Pour les Graphiques Nuage de points (XY), les deux axes sont des axes de valeur.

                                                        -
                                                      • sélectionnez Masquer l'axe pour masquer l'axe horizontal du graphique, laissez cette option décochée pour afficher l'axe.
                                                      • +
                                                      • Sélectionnez Masquer l'axe pour masquer l'axe horizontal du graphique, laissez cette option décochée pour afficher l'axe.
                                                      • - 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 :
                                                        • Rien pour ne pas afficher le titre de l'axe horizontal.
                                                        • Sans superposition pour afficher le titre en-dessous de l'axe horizontal.
                                                        • diff --git a/apps/spreadsheeteditor/main/resources/help/ru/HelpfulHints/SpellChecking.htm b/apps/spreadsheeteditor/main/resources/help/ru/HelpfulHints/SpellChecking.htm index 07a31f503c..ca2737a2b1 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/HelpfulHints/SpellChecking.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/HelpfulHints/SpellChecking.htm @@ -20,7 +20,7 @@

                                                          Панель Проверка орфографии

                                                          Левая верхняя ячейка, которая содержит текстовое значение с ошибкой, будет автоматически выделена на текущем рабочем листе. Первое слово с ошибкой будет отображено в поле проверки орфографии, а в поле ниже появятся предложенные похожие слова, которые написаны правильно.

                                                          Для навигации между неправильно написанными словами используйте кнопку Перейти к следующему слову.

                                                          -
                                                          Замена слов, написанных с ошибкой
                                                          +

                                                          Замена слов, написанных с ошибкой

                                                          Чтобы заменить выделенное слово с ошибкой на предложенное, выберите одно из предложенных похожих слов, написанных правильно, и используйте опцию Заменить:

                                                          • нажмите кнопку Заменить или
                                                          • @@ -28,7 +28,7 @@

                                                          Текущее слово будет заменено, и вы перейдете к следующему слову с ошибкой.

                                                          Чтобы быстро заменить все идентичные слова, повторяющиеся на листе, нажмите направленную вниз стрелку рядом с кнопкой Заменить и выберите опцию Заменить все.

                                                          -
                                                          Пропуск слов
                                                          +

                                                          Пропуск слов

                                                          Чтобы пропустить текущее слово:

                                                          • нажмите кнопку Пропустить или
                                                          • @@ -40,7 +40,7 @@

                                                            Язык словаря, который используется для проверки орфографии, отображается в списке ниже. В случае необходимости его можно изменить.

                                                            Когда вы проверите все слова на рабочем листе, на панели проверки орфографии появится сообщение Проверка орфографии закончена.

                                                            Чтобы закрыть панель проверки орфографии, нажмите значок Проверка орфографии на левой боковой панели.

                                                            -
                                                            Изменение настроек проверки орфографии
                                                            +

                                                            Изменение настроек проверки орфографии

                                                            Чтобы изменить настройки проверки орфографии, перейдите в дополнительные настройки редактора электронных таблиц (вкладка Файл -> Дополнительные параметры), и переключитесь на вкладку Проверка орфографии. Здесь вы можете настроить следующие параметры:

                                                            Настройки проверки орфографии

                                                              diff --git a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/InsertChart.htm b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/InsertChart.htm index bf6c1def4b..46cc413fee 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/InsertChart.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/InsertChart.htm @@ -18,11 +18,11 @@

                                                              Вставка диаграммы

                                                              Для вставки диаграммы в электронную таблицу:

                                                                -
                                                              1. Выделите диапазон ячеек, содержащих данные, которые необходимо использовать для диаграммы,
                                                              2. -
                                                              3. Перейдите на вкладку Вставка верхней панели инструментов,
                                                              4. -
                                                              5. Щелкните по значку
                                                                Диаграмма на верхней панели инструментов,
                                                              6. +
                                                              7. Выделите диапазон ячеек, содержащих данные, которые необходимо использовать для диаграммы.
                                                              8. +
                                                              9. Перейдите на вкладку Вставка верхней панели инструментов.
                                                              10. +
                                                              11. Щелкните по значку
                                                                Диаграмма на верхней панели инструментов.
                                                              12. - выберите из доступных типов диаграммы: + Выберите из доступных типов диаграммы:
                                                                Гистограмма
                                                                  @@ -103,14 +103,14 @@

                                                                  Изменение параметров диаграммы

                                                                  Теперь можно изменить параметры вставленной диаграммы. Чтобы изменить тип диаграммы:

                                                                    -
                                                                  1. выделите диаграмму мышью,
                                                                  2. +
                                                                  3. Выделите диаграмму мышью.
                                                                  4. - щелкните по значку Параметры диаграммы
                                                                    на правой боковой панели, + Щелкните по значку Параметры диаграммы
                                                                    на правой боковой панели.

                                                                    Вкладка Параметры диаграммы на правой боковой панели

                                                                  5. -
                                                                  6. раскройте выпадающий список Стиль, расположенный ниже, и выберите подходящий стиль.
                                                                  7. -
                                                                  8. раскройте выпадающий список Изменить тип и выберите нужный тип,
                                                                  9. -
                                                                  10. нажмите опцию Переключить строку/столбец, чтобы изменить расположение строк и столбцов диаграммы.
                                                                  11. +
                                                                  12. Раскройте выпадающий список Стиль, расположенный ниже, и выберите подходящий стиль.
                                                                  13. +
                                                                  14. Раскройте выпадающий список Изменить тип и выберите нужный тип.
                                                                  15. +
                                                                  16. Нажмите опцию Переключить строку/столбец, чтобы изменить расположение строк и столбцов диаграммы.

                                                                  Тип и стиль выбранной диаграммы будут изменены.

                                                                  @@ -186,7 +186,7 @@ Определите параметры Подписей данных (то есть текстовых подписей, показывающих точные значения элементов данных):
                                                                  • - укажите местоположение Подписей данных относительно элементов данных, выбрав нужную опцию из выпадающего списка. Доступные варианты зависят от выбранного типа диаграммы. + Укажите местоположение Подписей данных относительно элементов данных, выбрав нужную опцию из выпадающего списка. Доступные варианты зависят от выбранного типа диаграммы.
                                                                    • Для Гистограмм и Линейчатых диаграмм можно выбрать следующие варианты: Нет, По центру, Внутри снизу, Внутри сверху, Снаружи сверху.
                                                                    • Для Графиков и Точечных или Биржевых диаграмм можно выбрать следующие варианты: Нет, По центру, Слева, Справа, Сверху, Снизу.
                                                                    • @@ -194,8 +194,8 @@
                                                                    • Для диаграмм С областями, а также для Гистограмм, Графиков и Линейчатых диаграмм в формате 3D можно выбрать следующие варианты: Нет, По центру.
                                                                  • -
                                                                  • выберите данные, которые вы хотите включить в ваши подписи, поставив соответствующие флажки: Имя ряда, Название категории, Значение,
                                                                  • -
                                                                  • введите символ (запятая, точка с запятой и т.д.), который вы хотите использовать для разделения нескольких подписей, в поле Разделитель подписей данных.
                                                                  • +
                                                                  • Выберите данные, которые вы хотите включить в ваши подписи, поставив соответствующие флажки: Имя ряда, Название категории, Значение,
                                                                  • +
                                                                  • Введите символ (запятая, точка с запятой и т.д.), который вы хотите использовать для разделения нескольких подписей, в поле Разделитель подписей данных.
                                                                • Линии - используется для выбора типа линий для линейчатых/точечных диаграмм. Можно выбрать одну из следующих опций: Прямые для использования прямых линий между элементами данных, Сглаженные для использования сглаженных кривых линий между элементами данных или Нет для того, чтобы линии не отображались.
                                                                • @@ -208,9 +208,9 @@

                                                                  Вкладка Вертикальная ось позволяет изменять параметры вертикальной оси, также называемой осью значений или осью Y, которая отображает числовые значения. Обратите внимание, что вертикальная ось будет осью категорий, которая отображает подпись для Гистограмм, таким образом, параметры вкладки Вертикальная ось будут соответствовать параметрам, описанным в следующем разделе. Для Точечных диаграмм обе оси являются осями значений.

                                                                  Примечание: Параметры оси и Линии сетки недоступны для круговых диаграмм, так как у круговых диаграмм нет осей и линий сетки.

                                                                    -
                                                                  • нажмите Скрыть ось, чтобы скрыть вертикальную ось на диаграмме.
                                                                  • +
                                                                  • Нажмите Скрыть ось, чтобы скрыть вертикальную ось на диаграмме.
                                                                  • - укажите ориентацию Заголовка, выбрав нужный вариант из раскрывающегося списка: + Укажите ориентацию Заголовка, выбрав нужный вариант из раскрывающегося списка:
                                                                    • Нет - не отображать название вертикальной оси,
                                                                    • Повернутое - показать название снизу вверх слева от вертикальной оси,
                                                                    • @@ -289,9 +289,9 @@

                                                                      Диаграмма - окно дополнительные параметры

                                                                      Вкладка Горизонтальная ось позволяет изменять параметры горизонтальной оси, также называемой осью категорий или осью x, которая отображает текстовые метки. Обратите внимание, что горизонтальная ось будет осью значений, которая отображает числовые значения для Гистограмм, поэтому в этом случае параметры вкладки Горизонтальная ось будут соответствовать параметрам, описанным в предыдущем разделе. Для Точечных диаграмм обе оси являются осями значений.

                                                                        -
                                                                      • нажмите Скрыть ось, чтобы скрыть горизонтальную ось на диаграмме.
                                                                      • +
                                                                      • Нажмите Скрыть ось, чтобы скрыть горизонтальную ось на диаграмме.
                                                                      • - укажите ориентацию Заголовка, выбрав нужный вариант из раскрывающегося списка: + Укажите ориентацию Заголовка, выбрав нужный вариант из раскрывающегося списка:
                                                                        • Нет - не отображать заголовок горизонтальной оси,
                                                                        • Без наложения - отображать заголовок под горизонтальной осью,
                                                                        • diff --git a/apps/spreadsheeteditor/mobile/locale/az.json b/apps/spreadsheeteditor/mobile/locale/az.json index 99fae4ea62..4f983dcb27 100644 --- a/apps/spreadsheeteditor/mobile/locale/az.json +++ b/apps/spreadsheeteditor/mobile/locale/az.json @@ -284,7 +284,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.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "Xəbərdarlıq", diff --git a/apps/spreadsheeteditor/mobile/locale/be.json b/apps/spreadsheeteditor/mobile/locale/be.json index aeff67212c..f1e0092192 100644 --- a/apps/spreadsheeteditor/mobile/locale/be.json +++ b/apps/spreadsheeteditor/mobile/locale/be.json @@ -694,7 +694,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.
                                                                          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.", diff --git a/apps/spreadsheeteditor/mobile/locale/bg.json b/apps/spreadsheeteditor/mobile/locale/bg.json index f623a1b527..743de89fb7 100644 --- a/apps/spreadsheeteditor/mobile/locale/bg.json +++ b/apps/spreadsheeteditor/mobile/locale/bg.json @@ -284,7 +284,10 @@ "textCancel": "Cancel", "textErrorWrongPassword": "The password you supplied is not correct.", "textUnlockRange": "Unlock Range", - "textUnlockRangeWarning": "A range you are trying to change is password protected." + "textUnlockRangeWarning": "A range you are trying to change is password protected.", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "Warning", diff --git a/apps/spreadsheeteditor/mobile/locale/ca.json b/apps/spreadsheeteditor/mobile/locale/ca.json index 156631e605..1c67a43b01 100644 --- a/apps/spreadsheeteditor/mobile/locale/ca.json +++ b/apps/spreadsheeteditor/mobile/locale/ca.json @@ -284,7 +284,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.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "Advertiment", diff --git a/apps/spreadsheeteditor/mobile/locale/cs.json b/apps/spreadsheeteditor/mobile/locale/cs.json index 7560fd6cb1..047cf6ed47 100644 --- a/apps/spreadsheeteditor/mobile/locale/cs.json +++ b/apps/spreadsheeteditor/mobile/locale/cs.json @@ -284,7 +284,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.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "Varování", diff --git a/apps/spreadsheeteditor/mobile/locale/da.json b/apps/spreadsheeteditor/mobile/locale/da.json index 0897b18ccc..a1690990db 100644 --- a/apps/spreadsheeteditor/mobile/locale/da.json +++ b/apps/spreadsheeteditor/mobile/locale/da.json @@ -284,7 +284,10 @@ "textUnlockRange": "Unlock Range", "txtEditingMode": "Set editing mode...", "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image" + "uploadImageTitleText": "Uploading Image", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
                                                                          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" }, "Statusbar": { "textCancel": "Annuller", diff --git a/apps/spreadsheeteditor/mobile/locale/de.json b/apps/spreadsheeteditor/mobile/locale/de.json index ff4dfbe2d9..87cb9cea7e 100644 --- a/apps/spreadsheeteditor/mobile/locale/de.json +++ b/apps/spreadsheeteditor/mobile/locale/de.json @@ -284,7 +284,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.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "Warnung", diff --git a/apps/spreadsheeteditor/mobile/locale/el.json b/apps/spreadsheeteditor/mobile/locale/el.json index 0ee660ea5d..7c2c8e45da 100644 --- a/apps/spreadsheeteditor/mobile/locale/el.json +++ b/apps/spreadsheeteditor/mobile/locale/el.json @@ -284,7 +284,10 @@ "txtEditingMode": "Ορισμός λειτουργίας επεξεργασίας...", "uploadImageTextText": "Μεταφόρτωση εικόνας...", "uploadImageTitleText": "Μεταφόρτωση Εικόνας", - "waitText": "Παρακαλούμε, περιμένετε..." + "waitText": "Παρακαλούμε, περιμένετε...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "Προειδοποίηση", diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json index 648deff142..9db650d337 100644 --- a/apps/spreadsheeteditor/mobile/locale/en.json +++ b/apps/spreadsheeteditor/mobile/locale/en.json @@ -284,7 +284,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.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "Warning", diff --git a/apps/spreadsheeteditor/mobile/locale/es.json b/apps/spreadsheeteditor/mobile/locale/es.json index e4495c05de..d69847ac57 100644 --- a/apps/spreadsheeteditor/mobile/locale/es.json +++ b/apps/spreadsheeteditor/mobile/locale/es.json @@ -284,7 +284,10 @@ "txtEditingMode": "Establecer el modo de edición...", "uploadImageTextText": "Subiendo imagen...", "uploadImageTitleText": "Subiendo imagen", - "waitText": "Por favor, espere..." + "waitText": "Por favor, espere...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "Advertencia", diff --git a/apps/spreadsheeteditor/mobile/locale/eu.json b/apps/spreadsheeteditor/mobile/locale/eu.json index 3de8d235bb..847e0e3b3a 100644 --- a/apps/spreadsheeteditor/mobile/locale/eu.json +++ b/apps/spreadsheeteditor/mobile/locale/eu.json @@ -284,7 +284,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.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "Abisua", diff --git a/apps/spreadsheeteditor/mobile/locale/fr.json b/apps/spreadsheeteditor/mobile/locale/fr.json index b26d6074aa..41d1156b72 100644 --- a/apps/spreadsheeteditor/mobile/locale/fr.json +++ b/apps/spreadsheeteditor/mobile/locale/fr.json @@ -284,7 +284,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.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "Avertissement", diff --git a/apps/spreadsheeteditor/mobile/locale/gl.json b/apps/spreadsheeteditor/mobile/locale/gl.json index 9f09b0a78d..e3a328b4ad 100644 --- a/apps/spreadsheeteditor/mobile/locale/gl.json +++ b/apps/spreadsheeteditor/mobile/locale/gl.json @@ -284,7 +284,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.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "Aviso", diff --git a/apps/spreadsheeteditor/mobile/locale/hu.json b/apps/spreadsheeteditor/mobile/locale/hu.json index 7a85aac057..7440e6da2b 100644 --- a/apps/spreadsheeteditor/mobile/locale/hu.json +++ b/apps/spreadsheeteditor/mobile/locale/hu.json @@ -284,7 +284,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.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "Figyelmeztetés", diff --git a/apps/spreadsheeteditor/mobile/locale/hy.json b/apps/spreadsheeteditor/mobile/locale/hy.json index 657bb01ac2..13f3ae87a1 100644 --- a/apps/spreadsheeteditor/mobile/locale/hy.json +++ b/apps/spreadsheeteditor/mobile/locale/hy.json @@ -284,7 +284,10 @@ "txtEditingMode": "Սահմանել ցուցակի խմբագրում․․․", "uploadImageTextText": "Նկարի վերբեռնում...", "uploadImageTitleText": "Նկարի վերբեռնում", - "waitText": "Խնդրում ենք սպասել..." + "waitText": "Խնդրում ենք սպասել...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "Զգուշացում", diff --git a/apps/spreadsheeteditor/mobile/locale/id.json b/apps/spreadsheeteditor/mobile/locale/id.json index 5e65307993..fee166e753 100644 --- a/apps/spreadsheeteditor/mobile/locale/id.json +++ b/apps/spreadsheeteditor/mobile/locale/id.json @@ -284,7 +284,10 @@ "txtEditingMode": "Mengatur 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.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "Peringatan", diff --git a/apps/spreadsheeteditor/mobile/locale/it.json b/apps/spreadsheeteditor/mobile/locale/it.json index 4795747cad..d81618176d 100644 --- a/apps/spreadsheeteditor/mobile/locale/it.json +++ b/apps/spreadsheeteditor/mobile/locale/it.json @@ -284,7 +284,10 @@ "txtEditingMode": "Impostare la modalità di modifica...", "uploadImageTextText": "Caricamento immagine...", "uploadImageTitleText": "Caricamento immagine", - "waitText": "Si prega di attendere" + "waitText": "Si prega di attendere", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "Avvertimento", diff --git a/apps/spreadsheeteditor/mobile/locale/ja.json b/apps/spreadsheeteditor/mobile/locale/ja.json index 6e5c95449a..9ade45d49d 100644 --- a/apps/spreadsheeteditor/mobile/locale/ja.json +++ b/apps/spreadsheeteditor/mobile/locale/ja.json @@ -284,7 +284,10 @@ "txtEditingMode": "編集モードを設定する", "uploadImageTextText": "イメージのアップロード中...", "uploadImageTitleText": "イメージのアップロード中", - "waitText": "少々お待ちください..." + "waitText": "少々お待ちください...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": " 警告", diff --git a/apps/spreadsheeteditor/mobile/locale/ko.json b/apps/spreadsheeteditor/mobile/locale/ko.json index 6b1e1bed2e..acd98d56bf 100644 --- a/apps/spreadsheeteditor/mobile/locale/ko.json +++ b/apps/spreadsheeteditor/mobile/locale/ko.json @@ -284,7 +284,10 @@ "txtEditingMode": "편집 모드 설정 ...", "uploadImageTextText": "이미지 업로드 중 ...", "uploadImageTitleText": "이미지 업로드 중", - "waitText": "잠시만 기다려주세요..." + "waitText": "잠시만 기다려주세요...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "경고", diff --git a/apps/spreadsheeteditor/mobile/locale/lo.json b/apps/spreadsheeteditor/mobile/locale/lo.json index e5ebe1cc74..7aaf6b6dc5 100644 --- a/apps/spreadsheeteditor/mobile/locale/lo.json +++ b/apps/spreadsheeteditor/mobile/locale/lo.json @@ -284,7 +284,10 @@ "txtEditingMode": "ຕັ້ງຄ່າຮູບແບບການແກ້ໄຂ...", "uploadImageTextText": "ກໍາລັງອັບໂຫລດຮູບພາບ...", "uploadImageTitleText": "ກໍາລັງອັບໂຫລດຮູບພາບ", - "waitText": "ກະລຸນາລໍຖ້າ..." + "waitText": "ກະລຸນາລໍຖ້າ...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "ເຕືອນ", diff --git a/apps/spreadsheeteditor/mobile/locale/lv.json b/apps/spreadsheeteditor/mobile/locale/lv.json index 305066ea8c..a148799bdc 100644 --- a/apps/spreadsheeteditor/mobile/locale/lv.json +++ b/apps/spreadsheeteditor/mobile/locale/lv.json @@ -284,7 +284,10 @@ "textCancel": "Cancel", "textErrorWrongPassword": "The password you supplied is not correct.", "textUnlockRange": "Unlock Range", - "textUnlockRangeWarning": "A range you are trying to change is password protected." + "textUnlockRangeWarning": "A range you are trying to change is password protected.", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "Warning", diff --git a/apps/spreadsheeteditor/mobile/locale/ms.json b/apps/spreadsheeteditor/mobile/locale/ms.json index a7e0f88ea3..537760b33a 100644 --- a/apps/spreadsheeteditor/mobile/locale/ms.json +++ b/apps/spreadsheeteditor/mobile/locale/ms.json @@ -284,7 +284,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.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "Amaran", diff --git a/apps/spreadsheeteditor/mobile/locale/nb.json b/apps/spreadsheeteditor/mobile/locale/nb.json index 305066ea8c..a148799bdc 100644 --- a/apps/spreadsheeteditor/mobile/locale/nb.json +++ b/apps/spreadsheeteditor/mobile/locale/nb.json @@ -284,7 +284,10 @@ "textCancel": "Cancel", "textErrorWrongPassword": "The password you supplied is not correct.", "textUnlockRange": "Unlock Range", - "textUnlockRangeWarning": "A range you are trying to change is password protected." + "textUnlockRangeWarning": "A range you are trying to change is password protected.", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "Warning", diff --git a/apps/spreadsheeteditor/mobile/locale/nl.json b/apps/spreadsheeteditor/mobile/locale/nl.json index 0d2c1bd588..1d99625236 100644 --- a/apps/spreadsheeteditor/mobile/locale/nl.json +++ b/apps/spreadsheeteditor/mobile/locale/nl.json @@ -284,7 +284,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.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "Waarschuwing", diff --git a/apps/spreadsheeteditor/mobile/locale/pl.json b/apps/spreadsheeteditor/mobile/locale/pl.json index 305066ea8c..a148799bdc 100644 --- a/apps/spreadsheeteditor/mobile/locale/pl.json +++ b/apps/spreadsheeteditor/mobile/locale/pl.json @@ -284,7 +284,10 @@ "textCancel": "Cancel", "textErrorWrongPassword": "The password you supplied is not correct.", "textUnlockRange": "Unlock Range", - "textUnlockRangeWarning": "A range you are trying to change is password protected." + "textUnlockRangeWarning": "A range you are trying to change is password protected.", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "Warning", diff --git a/apps/spreadsheeteditor/mobile/locale/pt-pt.json b/apps/spreadsheeteditor/mobile/locale/pt-pt.json index 4d5e2791ee..5b8e584b36 100644 --- a/apps/spreadsheeteditor/mobile/locale/pt-pt.json +++ b/apps/spreadsheeteditor/mobile/locale/pt-pt.json @@ -284,7 +284,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.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "Aviso", diff --git a/apps/spreadsheeteditor/mobile/locale/pt.json b/apps/spreadsheeteditor/mobile/locale/pt.json index 417fee9ced..3567d62c57 100644 --- a/apps/spreadsheeteditor/mobile/locale/pt.json +++ b/apps/spreadsheeteditor/mobile/locale/pt.json @@ -284,7 +284,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.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "Aviso", diff --git a/apps/spreadsheeteditor/mobile/locale/ro.json b/apps/spreadsheeteditor/mobile/locale/ro.json index a5fdd7e45d..070c51933a 100644 --- a/apps/spreadsheeteditor/mobile/locale/ro.json +++ b/apps/spreadsheeteditor/mobile/locale/ro.json @@ -284,7 +284,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.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "Avertisment", diff --git a/apps/spreadsheeteditor/mobile/locale/ru.json b/apps/spreadsheeteditor/mobile/locale/ru.json index c579e2c973..ec796fe5a2 100644 --- a/apps/spreadsheeteditor/mobile/locale/ru.json +++ b/apps/spreadsheeteditor/mobile/locale/ru.json @@ -284,7 +284,10 @@ "txtEditingMode": "Установка режима редактирования...", "uploadImageTextText": "Загрузка рисунка...", "uploadImageTitleText": "Загрузка рисунка", - "waitText": "Пожалуйста, подождите..." + "waitText": "Пожалуйста, подождите...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "Внимание", diff --git a/apps/spreadsheeteditor/mobile/locale/sk.json b/apps/spreadsheeteditor/mobile/locale/sk.json index cc509de0e6..7c9853bd19 100644 --- a/apps/spreadsheeteditor/mobile/locale/sk.json +++ b/apps/spreadsheeteditor/mobile/locale/sk.json @@ -284,7 +284,10 @@ "txtEditingMode": "Nastaviť režim úprav...", "uploadImageTextText": "Nahrávanie obrázku...", "uploadImageTitleText": "Nahrávanie obrázku", - "waitText": "Prosím čakajte..." + "waitText": "Prosím čakajte...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "Upozornenie", diff --git a/apps/spreadsheeteditor/mobile/locale/sl.json b/apps/spreadsheeteditor/mobile/locale/sl.json index 54c6c9e29a..2a94cb812f 100644 --- a/apps/spreadsheeteditor/mobile/locale/sl.json +++ b/apps/spreadsheeteditor/mobile/locale/sl.json @@ -284,7 +284,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.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "Warning", diff --git a/apps/spreadsheeteditor/mobile/locale/tr.json b/apps/spreadsheeteditor/mobile/locale/tr.json index fb7591daba..477c746002 100644 --- a/apps/spreadsheeteditor/mobile/locale/tr.json +++ b/apps/spreadsheeteditor/mobile/locale/tr.json @@ -284,7 +284,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.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "Uyarı", diff --git a/apps/spreadsheeteditor/mobile/locale/uk.json b/apps/spreadsheeteditor/mobile/locale/uk.json index d3f3a2c621..63367469f7 100644 --- a/apps/spreadsheeteditor/mobile/locale/uk.json +++ b/apps/spreadsheeteditor/mobile/locale/uk.json @@ -284,7 +284,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.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "Warning", diff --git a/apps/spreadsheeteditor/mobile/locale/vi.json b/apps/spreadsheeteditor/mobile/locale/vi.json index 305066ea8c..a148799bdc 100644 --- a/apps/spreadsheeteditor/mobile/locale/vi.json +++ b/apps/spreadsheeteditor/mobile/locale/vi.json @@ -284,7 +284,10 @@ "textCancel": "Cancel", "textErrorWrongPassword": "The password you supplied is not correct.", "textUnlockRange": "Unlock Range", - "textUnlockRangeWarning": "A range you are trying to change is password protected." + "textUnlockRangeWarning": "A range you are trying to change is password protected.", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "Warning", diff --git a/apps/spreadsheeteditor/mobile/locale/zh-tw.json b/apps/spreadsheeteditor/mobile/locale/zh-tw.json index 6077efaf12..2b7a89ed7a 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh-tw.json +++ b/apps/spreadsheeteditor/mobile/locale/zh-tw.json @@ -284,7 +284,10 @@ "txtEditingMode": "設定編輯模式...", "uploadImageTextText": "正在上傳圖片...", "uploadImageTitleText": "上載圖片", - "waitText": "請耐心等待..." + "waitText": "請耐心等待...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "警告", diff --git a/apps/spreadsheeteditor/mobile/locale/zh.json b/apps/spreadsheeteditor/mobile/locale/zh.json index 0c7a56b18d..bd385b454b 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh.json +++ b/apps/spreadsheeteditor/mobile/locale/zh.json @@ -284,7 +284,10 @@ "txtEditingMode": "设置编辑模式..", "uploadImageTextText": "上传图片...", "uploadImageTitleText": "图片上传中", - "waitText": "请稍候..." + "waitText": "请稍候...", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
                                                                          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" }, "Statusbar": { "notcriticalErrorTitle": "警告", diff --git a/apps/spreadsheeteditor/mobile/src/controller/LongActions.jsx b/apps/spreadsheeteditor/mobile/src/controller/LongActions.jsx index 933429efb6..cada215b78 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/LongActions.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/LongActions.jsx @@ -246,6 +246,23 @@ const LongActionsController = inject('storeAppOptions')(({storeAppOptions}) => { } ] }).open(); + } else 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(); } }; diff --git a/build/Gruntfile.js b/build/Gruntfile.js index c4f166801a..480ba124cf 100644 --- a/build/Gruntfile.js +++ b/build/Gruntfile.js @@ -68,8 +68,14 @@ module.exports = function(grunt) { from: /\{\{HELP_URL\}\}/g, to: _encode(process.env.HELP_URL) || 'https://helpcenter.onlyoffice.com' }, { - from: /\{\{HELP_CENTER_WEB_EDITORS\}\}/g, - to: _encode(process.env.HELP_CENTER_WEB_EDITORS) || 'https://helpcenter.onlyoffice.com/userguides/docs-index.aspx' + from: /\{\{HELP_CENTER_WEB_DE\}\}/g, + to: _encode(process.env.HELP_CENTER_WEB_DE) || _encode(process.env.HELP_CENTER_WEB_EDITORS) || 'https://helpcenter.onlyoffice.com/userguides/docs-de.aspx' + }, { + from: /\{\{HELP_CENTER_WEB_SSE\}\}/g, + to: _encode(process.env.HELP_CENTER_WEB_SSE) || _encode(process.env.HELP_CENTER_WEB_EDITORS) || 'https://helpcenter.onlyoffice.com/userguides/docs-se.aspx' + }, { + from: /\{\{HELP_CENTER_WEB_PE\}\}/g, + to: _encode(process.env.HELP_CENTER_WEB_PE) || _encode(process.env.HELP_CENTER_WEB_EDITORS) || 'https://helpcenter.onlyoffice.com/userguides/docs-pe.aspx' }, { from: /\{\{DEFAULT_LANG\}\}/g, to: _encode(process.env.DEFAULT_LANG) || 'en'