").appendTo($scrollbarYRail),
scrollbarXActive,
scrollbarYActive,
containerWidth,
diff --git a/apps/common/main/lib/util/themeinit.js b/apps/common/main/lib/util/themeinit.js
index e2ba2f5fd8..8cd8fcbf21 100644
--- a/apps/common/main/lib/util/themeinit.js
+++ b/apps/common/main/lib/util/themeinit.js
@@ -123,7 +123,7 @@
}
}
} else {
- if ( window.uitheme.id.lastIndexOf("theme-gray", 0) === 0 ) {
+ if ( window.uitheme.id && window.uitheme.id.lastIndexOf("theme-gray", 0) === 0 ) {
header_tokens.forEach(function (i) {
!!document.documentElement.style.setProperty('--' + i, "#f7f7f7");
});
diff --git a/apps/common/main/lib/view/PdfSignDialog.js b/apps/common/main/lib/view/PdfSignDialog.js
new file mode 100644
index 0000000000..8207083744
--- /dev/null
+++ b/apps/common/main/lib/view/PdfSignDialog.js
@@ -0,0 +1,376 @@
+/*
+ * (c) Copyright Ascensio System SIA 2010-2024
+ *
+ * This program is a free software product. You can redistribute it and/or
+ * modify it under the terms of the GNU Affero General Public License (AGPL)
+ * version 3 as published by the Free Software Foundation. In accordance with
+ * Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
+ * that Ascensio System SIA expressly excludes the warranty of non-infringement
+ * of any third-party rights.
+ *
+ * This program is distributed WITHOUT ANY WARRANTY; without even the implied
+ * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
+ * details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
+ *
+ * You can contact Ascensio System SIA at 20A-6 Ernesta Birznieka-Upish
+ * street, Riga, Latvia, EU, LV-1050.
+ *
+ * The interactive user interfaces in modified source and object code versions
+ * of the Program must display Appropriate Legal Notices, as required under
+ * Section 5 of the GNU AGPL version 3.
+ *
+ * Pursuant to Section 7(b) of the License you must retain the original Product
+ * logo when distributing the program. Pursuant to Section 7(e) we decline to
+ * grant you any rights under trademark law for use of our trademarks.
+ *
+ * All the Product's GUI elements, including illustrations and icon sets, as
+ * well as technical writing content are licensed under the terms of the
+ * Creative Commons Attribution-ShareAlike 4.0 International. See the License
+ * terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
+ *
+ */
+/**
+ * PdfSignDialog.js
+ *
+ * Created on 26/08/24
+ *
+ */
+
+
+define([], function () { 'use strict';
+ Common.Views.PdfSignDialog = Common.UI.Window.extend(_.extend({
+ options: {
+ width: 535,
+ style: 'min-width: 350px;',
+ cls: 'modal-dlg',
+ buttons: ['ok', 'cancel'],
+ id: 'window-pdf-sign'
+ },
+
+ initialize : function(options) {
+ _.extend(this.options, {
+ title: this.txtTitle
+ }, options || {});
+
+ this.api = this.options.api;
+ this.props = this.options.props;
+ this.fontStore = this.options.fontStore;
+ this.mode = 0; // 0 - upload, 1 - draw, 2 - type
+ this.storage = !!this.options.storage;
+ this.fontName = 'Arial';
+ this.isImageLoaded = false;
+
+ this.template = [
+ '
' +
@@ -161,6 +162,9 @@ define([
this.btnImageField && this.btnImageField.on('click', function (b, e) {
me.fireEvent('forms:insert', ['picture']);
});
+ this.btnSignField && this.btnSignField.on('click', function (b, e) {
+ me.fireEvent('forms:insert', ['signature']);
+ });
this.btnComplexField && this.btnComplexField.on('click', function (b, e) {
me.fireEvent('forms:insert', ['complex']);
});
@@ -407,6 +411,17 @@ define([
});
this.paragraphControls.push(this.btnImageField);
+ this.btnSignField = new Common.UI.Button({
+ cls: 'btn-toolbar x-huge icon-top',
+ iconCls: 'toolbar__icon btn-signature-field',
+ lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.complexForm, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments, _set.inSmartart, _set.inSmartartInternal, _set.viewMode],
+ caption: this.capBtnSignature,
+ dataHint: '1',
+ dataHintDirection: 'bottom',
+ dataHintOffset: 'small'
+ });
+ this.paragraphControls.push(this.btnSignField);
+
this.btnManager = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'toolbar__icon btn-ic-sharing',
@@ -666,6 +681,7 @@ define([
me.btnCheckBox.updateHint(me.tipCheckBox);
me.btnRadioBox.updateHint(me.tipRadioBox);
me.btnImageField.updateHint(me.tipImageField);
+ me.btnSignField.updateHint(me.tipSignField);
me.btnViewFormRoles.updateHint(me.tipViewForm);
me.btnManager.updateHint(me.tipManager);
me.btnEmailField.updateHint(me.tipEmailField);
@@ -711,6 +727,7 @@ define([
this.btnCheckBox.render($host.find('#slot-btn-form-checkbox'));
this.btnRadioBox.render($host.find('#slot-btn-form-radiobox'));
this.btnImageField.render($host.find('#slot-btn-form-image'));
+ this.btnSignField.render($host.find('#slot-btn-form-signature'));
this.btnViewFormRoles.render($host.find('#slot-btn-form-view-roles'));
this.btnManager.render($host.find('#slot-btn-manager'));
// this.btnHighlight.render($host.find('#slot-form-highlight'));
@@ -870,7 +887,9 @@ define([
tipFirstPage: 'Go to the first page',
tipLastPage: 'Go to the last page',
tipPrevPage: 'Go to the previous page',
- tipNextPage: 'Go to the next page'
+ tipNextPage: 'Go to the next page',
+ capBtnSignature: 'Signature Field',
+ tipSignField: 'Insert signature field'
}
}()), DE.Views.FormsTab || {}));
});
\ No newline at end of file
diff --git a/apps/documenteditor/main/app_dev.js b/apps/documenteditor/main/app_dev.js
index 0985ae77c2..a456cb76a4 100644
--- a/apps/documenteditor/main/app_dev.js
+++ b/apps/documenteditor/main/app_dev.js
@@ -222,6 +222,7 @@ require([
'common/main/lib/view/TextInputDialog',
'common/main/lib/view/DocumentHolderExt',
'common/main/lib/util/define',
+ 'common/main/lib/view/PdfSignDialog',
'common/main/lib/view/DocumentPropertyDialog',
'documenteditor/main/app/view/FileMenuPanels',
diff --git a/apps/documenteditor/main/app_pack.js b/apps/documenteditor/main/app_pack.js
index 07fdee0b75..cd5504a1e4 100644
--- a/apps/documenteditor/main/app_pack.js
+++ b/apps/documenteditor/main/app_pack.js
@@ -27,6 +27,7 @@ require([
'common/main/lib/view/LanguageDialog',
'common/main/lib/view/TextInputDialog',
'common/main/lib/view/DocumentHolderExt',
+ 'common/main/lib/view/PdfSignDialog',
'common/main/lib/view/DocumentPropertyDialog',
'documenteditor/main/app/view/FileMenuPanels',
diff --git a/apps/documenteditor/main/locale/ar.json b/apps/documenteditor/main/locale/ar.json
index 54e2327fde..a2a0d9ed6d 100644
--- a/apps/documenteditor/main/locale/ar.json
+++ b/apps/documenteditor/main/locale/ar.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "شبه شفاف",
"DE.Views.WatermarkSettingsDialog.textUnderline": "تحته خط",
"DE.Views.WatermarkSettingsDialog.tipFontName": "اسم الخط",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "حجم الخط"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "حجم الخط",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/az.json b/apps/documenteditor/main/locale/az.json
index acdb211c62..1fb1cc5088 100644
--- a/apps/documenteditor/main/locale/az.json
+++ b/apps/documenteditor/main/locale/az.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Yarım şəffaf",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Altından xətt çəkilmiş",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Şrift Adı",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Şrift Ölçüsü"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Şrift Ölçüsü",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/be.json b/apps/documenteditor/main/locale/be.json
index b2199b277f..3d4da30a94 100644
--- a/apps/documenteditor/main/locale/be.json
+++ b/apps/documenteditor/main/locale/be.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Паўпразрысты",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Падкрэслены",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Назва шрыфту",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Памер шрыфту"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Памер шрыфту",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/bg.json b/apps/documenteditor/main/locale/bg.json
index d27963f863..fa79bbdf4f 100644
--- a/apps/documenteditor/main/locale/bg.json
+++ b/apps/documenteditor/main/locale/bg.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparent",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Underline",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Font name",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Font size"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Font size",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/ca.json b/apps/documenteditor/main/locale/ca.json
index a8613fe40e..87ac5922fb 100644
--- a/apps/documenteditor/main/locale/ca.json
+++ b/apps/documenteditor/main/locale/ca.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparent",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Subratllar",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Nom de la lletra",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Mida de la lletra"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Mida de la lletra",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/cs.json b/apps/documenteditor/main/locale/cs.json
index 8b5decdc43..c95fdbcbeb 100644
--- a/apps/documenteditor/main/locale/cs.json
+++ b/apps/documenteditor/main/locale/cs.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Poloprůhledné",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Podtržené",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Název písma",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Velikost písma"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Velikost písma",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/da.json b/apps/documenteditor/main/locale/da.json
index f601ec13ea..38a8f42a52 100644
--- a/apps/documenteditor/main/locale/da.json
+++ b/apps/documenteditor/main/locale/da.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Halvgennemsigtig",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Understreg",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Skrifttypenavn",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Skriftstørrelse"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Skriftstørrelse",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/de.json b/apps/documenteditor/main/locale/de.json
index dadfb84dc1..2c7eecae9f 100644
--- a/apps/documenteditor/main/locale/de.json
+++ b/apps/documenteditor/main/locale/de.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Halbtransparent",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Unterstrichen",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Schriftartname",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Schriftgrad"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Schriftgrad",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/el.json b/apps/documenteditor/main/locale/el.json
index 4ce1c9aa79..abef0f3b1b 100644
--- a/apps/documenteditor/main/locale/el.json
+++ b/apps/documenteditor/main/locale/el.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Ημιδιαφανές",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Υπογράμμιση",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Όνομα γραμματοσειράς",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Μέγεθος γραμματοσειράς"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Μέγεθος γραμματοσειράς",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json
index 32dc26d843..03078a3f1b 100644
--- a/apps/documenteditor/main/locale/en.json
+++ b/apps/documenteditor/main/locale/en.json
@@ -989,6 +989,7 @@
"DE.Controllers.Main.textTryQuickPrint": "You have selected Quick print: the entire document will be printed on the last selected or default printer. Do you want to continue?",
"DE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode. Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.",
"DE.Controllers.Main.textTryUndoRedoWarn": "The Undo/Redo functions are disabled for the Fast co-editing mode.",
+ "DE.Controllers.Main.textSignature": "Signature",
"DE.Controllers.Main.textUndo": "Undo",
"DE.Controllers.Main.titleLicenseExp": "License expired",
"DE.Controllers.Main.titleLicenseNotActive": "License not active",
@@ -2341,6 +2342,7 @@
"DE.Views.FormSettings.textRequired": "Required",
"DE.Views.FormSettings.textScale": "When to scale",
"DE.Views.FormSettings.textSelectImage": "Select Image",
+ "DE.Views.FormSettings.textSignature": "Signature",
"DE.Views.FormSettings.textTag": "Tag",
"DE.Views.FormSettings.textTip": "Tip",
"DE.Views.FormSettings.textTipAdd": "Add new value",
@@ -2424,6 +2426,8 @@
"DE.Views.FormsTab.txtInlineDesc": "Insert inline text field",
"DE.Views.FormsTab.txtInlineText": "Inline",
"DE.Views.FormsTab.txtUntitled": "Untitled",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field",
"DE.Views.HeaderFooterSettings.textBottomCenter": "Bottom center",
"DE.Views.HeaderFooterSettings.textBottomLeft": "Bottom left",
"DE.Views.HeaderFooterSettings.textBottomPage": "Bottom of page",
diff --git a/apps/documenteditor/main/locale/es.json b/apps/documenteditor/main/locale/es.json
index d98cce2e98..ab114f89a1 100644
--- a/apps/documenteditor/main/locale/es.json
+++ b/apps/documenteditor/main/locale/es.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparente",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Subrayado",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Nombre de la fuente",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Tamaño de la fuente"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Tamaño de la fuente",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/eu.json b/apps/documenteditor/main/locale/eu.json
index 6f083a8014..73d71c43e4 100644
--- a/apps/documenteditor/main/locale/eu.json
+++ b/apps/documenteditor/main/locale/eu.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Erdigardena",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Azpimarra",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Letra-tipoaren izena",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Letra-tamaina"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Letra-tamaina",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/fi.json b/apps/documenteditor/main/locale/fi.json
index 4e816d054e..cc45b337c4 100644
--- a/apps/documenteditor/main/locale/fi.json
+++ b/apps/documenteditor/main/locale/fi.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Läpikuultava",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Alleviivaus",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Fontti",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Fonttikoko"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Fonttikoko",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/fr.json b/apps/documenteditor/main/locale/fr.json
index 233ba897b9..7e21c449f6 100644
--- a/apps/documenteditor/main/locale/fr.json
+++ b/apps/documenteditor/main/locale/fr.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Semi-transparent",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Souligné",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Nom de la police",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Taille de police"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Taille de police",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/gl.json b/apps/documenteditor/main/locale/gl.json
index 5d1efbf07e..cfa0b9e2e2 100644
--- a/apps/documenteditor/main/locale/gl.json
+++ b/apps/documenteditor/main/locale/gl.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparente",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Subliñado",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Nome da fonte",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Tamaño da fonte"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Tamaño da fonte",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/he.json b/apps/documenteditor/main/locale/he.json
index 9e6db7ce25..8e160a3b5f 100644
--- a/apps/documenteditor/main/locale/he.json
+++ b/apps/documenteditor/main/locale/he.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "חצי שקוף",
"DE.Views.WatermarkSettingsDialog.textUnderline": "קו תחתון",
"DE.Views.WatermarkSettingsDialog.tipFontName": "שם גופן",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "גודל גופן"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "גודל גופן",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/hu.json b/apps/documenteditor/main/locale/hu.json
index a066aa7f8b..69f5ad645f 100644
--- a/apps/documenteditor/main/locale/hu.json
+++ b/apps/documenteditor/main/locale/hu.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Féligáttetsző",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Aláhúzott",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Betűtípus neve",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Betűméret"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Betűméret",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/hy.json b/apps/documenteditor/main/locale/hy.json
index 6f620dd6ac..c1f45b8769 100644
--- a/apps/documenteditor/main/locale/hy.json
+++ b/apps/documenteditor/main/locale/hy.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Կիսաթափանցիկ",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Ընդգծված",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Տառատեսակի անուն",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Տառատեսակի չափ"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Տառատեսակի չափ",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/id.json b/apps/documenteditor/main/locale/id.json
index 6a08776013..841b3eaedf 100644
--- a/apps/documenteditor/main/locale/id.json
+++ b/apps/documenteditor/main/locale/id.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Semi Transparan",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Garis bawah",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Nama font",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Ukuran font"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Ukuran font",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/it.json b/apps/documenteditor/main/locale/it.json
index c5d1064842..795ed924f1 100644
--- a/apps/documenteditor/main/locale/it.json
+++ b/apps/documenteditor/main/locale/it.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Semitrasparente",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Sottolineato",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Nome carattere",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Dimensione carattere"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Dimensione carattere",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json
index 9e2764ccb5..4003de870d 100644
--- a/apps/documenteditor/main/locale/ja.json
+++ b/apps/documenteditor/main/locale/ja.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "半透明",
"DE.Views.WatermarkSettingsDialog.textUnderline": "アンダーライン",
"DE.Views.WatermarkSettingsDialog.tipFontName": "フォント名",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "フォントのサイズ"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "フォントのサイズ",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/ko.json b/apps/documenteditor/main/locale/ko.json
index 4a1e0a322c..c57194686c 100644
--- a/apps/documenteditor/main/locale/ko.json
+++ b/apps/documenteditor/main/locale/ko.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "투명한",
"DE.Views.WatermarkSettingsDialog.textUnderline": "밑줄",
"DE.Views.WatermarkSettingsDialog.tipFontName": "글꼴 이름",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "글꼴 크기"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "글꼴 크기",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/lo.json b/apps/documenteditor/main/locale/lo.json
index d8605d89c9..a23867a858 100644
--- a/apps/documenteditor/main/locale/lo.json
+++ b/apps/documenteditor/main/locale/lo.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparent",
"DE.Views.WatermarkSettingsDialog.textUnderline": "ຂີ້ດກ້ອງ",
"DE.Views.WatermarkSettingsDialog.tipFontName": "ຊື່ຕົວອັກສອນ",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "ຂະໜາດຕົວອັກສອນ"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "ຂະໜາດຕົວອັກສອນ",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/lv.json b/apps/documenteditor/main/locale/lv.json
index b14bed8eee..7765c8411b 100644
--- a/apps/documenteditor/main/locale/lv.json
+++ b/apps/documenteditor/main/locale/lv.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Daļēji caurspīdīgs",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Pasvītrot",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Fonta nosaukums",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Fonta izmērs"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Fonta izmērs",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/ms.json b/apps/documenteditor/main/locale/ms.json
index 86f9a7b746..8775a27dbc 100644
--- a/apps/documenteditor/main/locale/ms.json
+++ b/apps/documenteditor/main/locale/ms.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Separa telus",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Garis bawah",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Nama Fon",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Saiz Fon"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Saiz Fon",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/nl.json b/apps/documenteditor/main/locale/nl.json
index 747a75431e..3dad86e060 100644
--- a/apps/documenteditor/main/locale/nl.json
+++ b/apps/documenteditor/main/locale/nl.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "semi-transparant",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Onderstreept",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Lettertype",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Tekengrootte"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Tekengrootte",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/no.json b/apps/documenteditor/main/locale/no.json
index 3115798f8a..8b54f4d199 100644
--- a/apps/documenteditor/main/locale/no.json
+++ b/apps/documenteditor/main/locale/no.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparent",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Understreking",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Font name",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Font size"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Font size",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/pl.json b/apps/documenteditor/main/locale/pl.json
index 2e0d2be0ff..2d2a7bebb4 100644
--- a/apps/documenteditor/main/locale/pl.json
+++ b/apps/documenteditor/main/locale/pl.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Półprzezroczysty",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Podkreślenie",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Nazwa czcionki",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Rozmiar czcionki"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Rozmiar czcionki",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/pt-pt.json b/apps/documenteditor/main/locale/pt-pt.json
index ab180c779c..99dfa26e48 100644
--- a/apps/documenteditor/main/locale/pt-pt.json
+++ b/apps/documenteditor/main/locale/pt-pt.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Semi-transparente",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Sublinhado",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Nome do tipo de letra",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Tamanho do tipo de letra"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Tamanho do tipo de letra",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/pt.json b/apps/documenteditor/main/locale/pt.json
index 308ab981cf..4beeaab8ca 100644
--- a/apps/documenteditor/main/locale/pt.json
+++ b/apps/documenteditor/main/locale/pt.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparente",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Sublinhar",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Nome da Fonte",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Tamanho da fonte"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Tamanho da fonte",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/ro.json b/apps/documenteditor/main/locale/ro.json
index d7d254f3fc..0810f63f2a 100644
--- a/apps/documenteditor/main/locale/ro.json
+++ b/apps/documenteditor/main/locale/ro.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparent",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Subliniat",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Denumire font",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Dimensiune font"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Dimensiune font",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json
index c9294d5e16..e95f6e3f24 100644
--- a/apps/documenteditor/main/locale/ru.json
+++ b/apps/documenteditor/main/locale/ru.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Полупрозрачный",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Подчёркнутый",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Шрифт",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Размер шрифта"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Размер шрифта",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/si.json b/apps/documenteditor/main/locale/si.json
index 00f41b0ad8..eff48448c9 100644
--- a/apps/documenteditor/main/locale/si.json
+++ b/apps/documenteditor/main/locale/si.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "අර්ධ පාරදෘශ්යතාව",
"DE.Views.WatermarkSettingsDialog.textUnderline": "යටිඉර",
"DE.Views.WatermarkSettingsDialog.tipFontName": "රුවකුරේ නම",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "රුවකුරේ තරම"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "රුවකුරේ තරම",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/sk.json b/apps/documenteditor/main/locale/sk.json
index 411dc66759..1d1001d79e 100644
--- a/apps/documenteditor/main/locale/sk.json
+++ b/apps/documenteditor/main/locale/sk.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Polopriehľadný",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Podčiarknutie",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Názov písma",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Veľkosť písma"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Veľkosť písma",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/sl.json b/apps/documenteditor/main/locale/sl.json
index 929c432955..3cc174f688 100644
--- a/apps/documenteditor/main/locale/sl.json
+++ b/apps/documenteditor/main/locale/sl.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparent",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Underline",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Ime pisave",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Velikost pisave"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Velikost pisave",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/sr-cyrl.json b/apps/documenteditor/main/locale/sr-cyrl.json
index d998b85a44..8b490cbe12 100644
--- a/apps/documenteditor/main/locale/sr-cyrl.json
+++ b/apps/documenteditor/main/locale/sr-cyrl.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Полупровидно",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Подвуци",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Назив фонта",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Величина фонта"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Величина фонта",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/sr.json b/apps/documenteditor/main/locale/sr.json
index ad584bbc25..03f894720e 100644
--- a/apps/documenteditor/main/locale/sr.json
+++ b/apps/documenteditor/main/locale/sr.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Poluprovidno",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Podvuci",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Naziv fonta ",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Veličina fonta"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Veličina fonta",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/sv.json b/apps/documenteditor/main/locale/sv.json
index 01eb3fb10a..1c49ac85dd 100644
--- a/apps/documenteditor/main/locale/sv.json
+++ b/apps/documenteditor/main/locale/sv.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "halvgenomskinlig",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Understrykning",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Fontnamn",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Fontstorlek"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Fontstorlek",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/tr.json b/apps/documenteditor/main/locale/tr.json
index 3a270f9ccd..53d378a758 100644
--- a/apps/documenteditor/main/locale/tr.json
+++ b/apps/documenteditor/main/locale/tr.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Yarı saydam",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Altı çizili",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Yazı Tipi",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Yazıtipi boyutu"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Yazıtipi boyutu",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/uk.json b/apps/documenteditor/main/locale/uk.json
index 9ac428cb3d..94fb0b6a2a 100644
--- a/apps/documenteditor/main/locale/uk.json
+++ b/apps/documenteditor/main/locale/uk.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Напівпрозорий",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Підкреслений",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Шрифт",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Розмір шрифту"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Розмір шрифту",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/vi.json b/apps/documenteditor/main/locale/vi.json
index 96853ba40d..c0558405e7 100644
--- a/apps/documenteditor/main/locale/vi.json
+++ b/apps/documenteditor/main/locale/vi.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparent",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Underline",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Font name",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "Font size"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Font size",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/zh-tw.json b/apps/documenteditor/main/locale/zh-tw.json
index 1412f7c2b6..b830dacbee 100644
--- a/apps/documenteditor/main/locale/zh-tw.json
+++ b/apps/documenteditor/main/locale/zh-tw.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "半透明",
"DE.Views.WatermarkSettingsDialog.textUnderline": "底線",
"DE.Views.WatermarkSettingsDialog.tipFontName": "字型名稱",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "字型大小"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "字型大小",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/zh.json b/apps/documenteditor/main/locale/zh.json
index a5330afcd1..95b93eac72 100644
--- a/apps/documenteditor/main/locale/zh.json
+++ b/apps/documenteditor/main/locale/zh.json
@@ -3649,5 +3649,9 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "半透明",
"DE.Views.WatermarkSettingsDialog.textUnderline": "下划线",
"DE.Views.WatermarkSettingsDialog.tipFontName": "字体名称",
- "DE.Views.WatermarkSettingsDialog.tipFontSize": "字体大小"
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "字体大小",
+ "DE.Controllers.Main.textSignature": "Signature",
+ "DE.Views.FormSettings.textSignature": "Signature",
+ "DE.Views.FormsTab.capBtnSignature": "Signature Field",
+ "DE.Views.FormsTab.tipSignField": "Insert signature field"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/resources/img/toolbar/1.25x/big/btn-signature-field.png b/apps/documenteditor/main/resources/img/toolbar/1.25x/big/btn-signature-field.png
new file mode 100644
index 0000000000..da833923b5
Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1.25x/big/btn-signature-field.png differ
diff --git a/apps/documenteditor/main/resources/img/toolbar/1.5x/big/btn-signature-field.png b/apps/documenteditor/main/resources/img/toolbar/1.5x/big/btn-signature-field.png
new file mode 100644
index 0000000000..a4cd4906e3
Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1.5x/big/btn-signature-field.png differ
diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/big/btn-signature-field.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/big/btn-signature-field.png
new file mode 100644
index 0000000000..320fbf4d13
Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1.75x/big/btn-signature-field.png differ
diff --git a/apps/documenteditor/main/resources/img/toolbar/1x/big/btn-signature-field.png b/apps/documenteditor/main/resources/img/toolbar/1x/big/btn-signature-field.png
new file mode 100644
index 0000000000..f820fa4c6b
Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1x/big/btn-signature-field.png differ
diff --git a/apps/documenteditor/main/resources/img/toolbar/2.5x/big/btn-signature-field.svg b/apps/documenteditor/main/resources/img/toolbar/2.5x/big/btn-signature-field.svg
new file mode 100644
index 0000000000..e1079f4cc8
--- /dev/null
+++ b/apps/documenteditor/main/resources/img/toolbar/2.5x/big/btn-signature-field.svg
@@ -0,0 +1,4 @@
+
diff --git a/apps/documenteditor/main/resources/img/toolbar/2x/big/btn-signature-field.png b/apps/documenteditor/main/resources/img/toolbar/2x/big/btn-signature-field.png
new file mode 100644
index 0000000000..f89a605059
Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/2x/big/btn-signature-field.png differ
diff --git a/apps/documenteditor/mobile/locale/ar.json b/apps/documenteditor/mobile/locale/ar.json
index 2f5bdb491f..ae919e2846 100644
--- a/apps/documenteditor/mobile/locale/ar.json
+++ b/apps/documenteditor/mobile/locale/ar.json
@@ -506,7 +506,8 @@
"txtEditingMode": "بدء وضع التحرير...",
"uploadImageTextText": "جار رفع الصورة...",
"uploadImageTitleText": "رفع الصورة...",
- "waitText": "الرجاء الانتظار..."
+ "waitText": "الرجاء الانتظار...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "خطأ",
@@ -810,6 +811,7 @@
"textOk": "موافق",
"textRenameFile": "إعادة تسمية الملف",
"textSwitchedMobileView": "تم التبديل إلى عرض المحمول",
- "textSwitchedStandardView": "تم التبديل إلى العرض القياسي"
+ "textSwitchedStandardView": "تم التبديل إلى العرض القياسي",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/az.json b/apps/documenteditor/mobile/locale/az.json
index 0233e889ed..d8b613adb0 100644
--- a/apps/documenteditor/mobile/locale/az.json
+++ b/apps/documenteditor/mobile/locale/az.json
@@ -506,7 +506,8 @@
"uploadImageTextText": "Təsvir yüklənir...",
"uploadImageTitleText": "Təsvir Yüklənir",
"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)."
+ "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).",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Xəta",
@@ -810,6 +811,7 @@
"textEnterNewFileName": "Enter a new file name",
"textRenameFile": "Rename File",
"textSwitchedMobileView": "Switched to Mobile view",
- "textSwitchedStandardView": "Switched to Standard view"
+ "textSwitchedStandardView": "Switched to Standard view",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/be.json b/apps/documenteditor/mobile/locale/be.json
index 0097cbf452..69ec1f4147 100644
--- a/apps/documenteditor/mobile/locale/be.json
+++ b/apps/documenteditor/mobile/locale/be.json
@@ -506,7 +506,8 @@
"txtEditingMode": "Актывацыя рэжыму рэдагавання…",
"uploadImageTextText": "Запампоўванне выявы…",
"uploadImageTitleText": "Запампоўванне выявы",
- "waitText": "Калі ласка, пачакайце..."
+ "waitText": "Калі ласка, пачакайце...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Памылка",
@@ -810,6 +811,7 @@
"textEnterNewFileName": "Enter a new file name",
"textRenameFile": "Rename File",
"textSwitchedMobileView": "Switched to Mobile view",
- "textSwitchedStandardView": "Switched to Standard view"
+ "textSwitchedStandardView": "Switched to Standard view",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/bg.json b/apps/documenteditor/mobile/locale/bg.json
index 9e5b229533..0a516f3401 100644
--- a/apps/documenteditor/mobile/locale/bg.json
+++ b/apps/documenteditor/mobile/locale/bg.json
@@ -506,7 +506,8 @@
"txtEditingMode": "Set editing mode...",
"uploadImageTextText": "Uploading image...",
"uploadImageTitleText": "Uploading Image",
- "waitText": "Please, wait..."
+ "waitText": "Please, wait...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Error",
@@ -810,6 +811,7 @@
"textOk": "OK",
"textRenameFile": "Rename File",
"textSwitchedMobileView": "Switched to Mobile view",
- "textSwitchedStandardView": "Switched to Standard view"
+ "textSwitchedStandardView": "Switched to Standard view",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/ca.json b/apps/documenteditor/mobile/locale/ca.json
index 188bd2e28a..54ad1c44b8 100644
--- a/apps/documenteditor/mobile/locale/ca.json
+++ b/apps/documenteditor/mobile/locale/ca.json
@@ -506,7 +506,8 @@
"txtEditingMode": "Establir el mode d'edició ...",
"uploadImageTextText": "S'està carregant la imatge...",
"uploadImageTitleText": "S'està carregant la imatge",
- "waitText": "Espera..."
+ "waitText": "Espera...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Error",
@@ -810,6 +811,7 @@
"textOk": "D'acord",
"textRenameFile": "Canvia el nom del fitxer",
"textSwitchedMobileView": "S'ha canviat a visualització mòbil",
- "textSwitchedStandardView": "S'ha canviat a visualització estàndard"
+ "textSwitchedStandardView": "S'ha canviat a visualització estàndard",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/cs.json b/apps/documenteditor/mobile/locale/cs.json
index fbd75149c4..3000c7e684 100644
--- a/apps/documenteditor/mobile/locale/cs.json
+++ b/apps/documenteditor/mobile/locale/cs.json
@@ -506,7 +506,8 @@
"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...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Chyba",
@@ -810,6 +811,7 @@
"textOk": "OK",
"textRenameFile": "Přejmenovat soubor",
"textSwitchedMobileView": "Přepnout na mobilní zobrazení",
- "textSwitchedStandardView": "Přepnout na standartní zobrazení"
+ "textSwitchedStandardView": "Přepnout na standartní zobrazení",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/da.json b/apps/documenteditor/mobile/locale/da.json
index b1752e186f..04935caf4e 100644
--- a/apps/documenteditor/mobile/locale/da.json
+++ b/apps/documenteditor/mobile/locale/da.json
@@ -506,7 +506,8 @@
"txtEditingMode": "Set editing mode...",
"uploadImageTextText": "Uploading image...",
"uploadImageTitleText": "Uploading Image",
- "waitText": "Please, wait..."
+ "waitText": "Please, wait...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Error",
@@ -810,6 +811,7 @@
"textOk": "OK",
"textRenameFile": "Rename File",
"textSwitchedMobileView": "Switched to Mobile view",
- "textSwitchedStandardView": "Switched to Standard view"
+ "textSwitchedStandardView": "Switched to Standard view",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/de.json b/apps/documenteditor/mobile/locale/de.json
index bfc4192ed2..bf93f18e5a 100644
--- a/apps/documenteditor/mobile/locale/de.json
+++ b/apps/documenteditor/mobile/locale/de.json
@@ -506,7 +506,8 @@
"txtEditingMode": "Bearbeitungsmodul wird festgelegt...",
"uploadImageTextText": "Bild wird hochgeladen...",
"uploadImageTitleText": "Bild wird hochgeladen",
- "waitText": "Bitte warten..."
+ "waitText": "Bitte warten...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Fehler",
@@ -810,6 +811,7 @@
"textOk": "OK",
"textRenameFile": "Datei umbenennen",
"textSwitchedMobileView": "Mobile Ansicht aktiviert",
- "textSwitchedStandardView": "Standard-Ansicht aktiviert"
+ "textSwitchedStandardView": "Standard-Ansicht aktiviert",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/el.json b/apps/documenteditor/mobile/locale/el.json
index 3bc3cde04f..8e51b19744 100644
--- a/apps/documenteditor/mobile/locale/el.json
+++ b/apps/documenteditor/mobile/locale/el.json
@@ -506,7 +506,8 @@
"txtEditingMode": "Ορισμός κατάστασης επεξεργασίας...",
"uploadImageTextText": "Μεταφόρτωση εικόνας...",
"uploadImageTitleText": "Μεταφόρτωση Εικόνας",
- "waitText": "Παρακαλούμε, περιμένετε..."
+ "waitText": "Παρακαλούμε, περιμένετε...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Σφάλμα",
@@ -810,6 +811,7 @@
"textOk": "Εντάξει",
"textRenameFile": "Μετονομασία αρχείου",
"textSwitchedMobileView": "Μετάβαση σε προβολή κινητού",
- "textSwitchedStandardView": "Εναλλαγή σε τυπική προβολή"
+ "textSwitchedStandardView": "Εναλλαγή σε τυπική προβολή",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/en.json b/apps/documenteditor/mobile/locale/en.json
index 1539d16a62..bb4aa9abc6 100644
--- a/apps/documenteditor/mobile/locale/en.json
+++ b/apps/documenteditor/mobile/locale/en.json
@@ -506,7 +506,8 @@
"txtEditingMode": "Set editing mode...",
"uploadImageTextText": "Uploading image...",
"uploadImageTitleText": "Uploading Image",
- "waitText": "Please, wait..."
+ "waitText": "Please, wait...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Error",
@@ -779,7 +780,7 @@
"textSpellcheck": "Spell Checking",
"textStatistic": "Statistic",
"textSubject": "Subject",
- "textSubmit": "Submit",
+ "del_textSubmit": "Submit",
"textSymbols": "Symbols",
"textTheme": "Theme",
"textTitle": "Title",
@@ -808,6 +809,7 @@
"textCloseHistory": "Close History",
"textEnterNewFileName": "Enter a new file name",
"textOk": "OK",
+ "btnSend": "Send",
"textRenameFile": "Rename File",
"textSwitchedMobileView": "Switched to Mobile view",
"textSwitchedStandardView": "Switched to Standard view"
diff --git a/apps/documenteditor/mobile/locale/es.json b/apps/documenteditor/mobile/locale/es.json
index 471eb60313..1288e2c0e8 100644
--- a/apps/documenteditor/mobile/locale/es.json
+++ b/apps/documenteditor/mobile/locale/es.json
@@ -506,7 +506,8 @@
"txtEditingMode": "Establecer el modo de edición...",
"uploadImageTextText": "Cargando imagen...",
"uploadImageTitleText": "Cargando imagen",
- "waitText": "Por favor, espere..."
+ "waitText": "Por favor, espere...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Error",
@@ -810,6 +811,7 @@
"textOk": "Aceptar",
"textRenameFile": "Renombrar archivo",
"textSwitchedMobileView": "Cambiado a vista móvil",
- "textSwitchedStandardView": "Cambiado a vista estándar"
+ "textSwitchedStandardView": "Cambiado a vista estándar",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/eu.json b/apps/documenteditor/mobile/locale/eu.json
index 3163a2dc82..a55b86f4b0 100644
--- a/apps/documenteditor/mobile/locale/eu.json
+++ b/apps/documenteditor/mobile/locale/eu.json
@@ -506,7 +506,8 @@
"txtEditingMode": "Ezarri edizio modua...",
"uploadImageTextText": "Irudia kargatzen...",
"uploadImageTitleText": "Irudia kargatzen",
- "waitText": "Mesedez, itxaron..."
+ "waitText": "Mesedez, itxaron...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Errorea",
@@ -810,6 +811,7 @@
"textOk": "Ados",
"textRenameFile": "Berrizendatu fitxategia",
"textSwitchedMobileView": "Mugikorreko ikuspegira aldatu da",
- "textSwitchedStandardView": "Ikuspegi estandarrera aldatu da"
+ "textSwitchedStandardView": "Ikuspegi estandarrera aldatu da",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/fi.json b/apps/documenteditor/mobile/locale/fi.json
index b3308b1afb..4d3452bd69 100644
--- a/apps/documenteditor/mobile/locale/fi.json
+++ b/apps/documenteditor/mobile/locale/fi.json
@@ -510,7 +510,8 @@
"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"
+ "textContinue": "Continue",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Error",
@@ -841,6 +842,7 @@
"textSwitchedStandardView": "Switched to Standard view",
"textRenameFile": "Rename File",
"textEnterNewFileName": "Enter a new file name",
- "textCloseHistory": "Close History"
+ "textCloseHistory": "Close History",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/fr.json b/apps/documenteditor/mobile/locale/fr.json
index 9b7188c222..469d638569 100644
--- a/apps/documenteditor/mobile/locale/fr.json
+++ b/apps/documenteditor/mobile/locale/fr.json
@@ -506,7 +506,8 @@
"txtEditingMode": "Réglage mode d'édition...",
"uploadImageTextText": "Chargement d'une image en cours...",
"uploadImageTitleText": "Chargement d'une image",
- "waitText": "Veuillez patienter..."
+ "waitText": "Veuillez patienter...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Erreur",
@@ -810,6 +811,7 @@
"textOk": "OK",
"textRenameFile": "Renommer le fichier",
"textSwitchedMobileView": "Passé à l'affichage mobile",
- "textSwitchedStandardView": "Passé à l'affichage standard"
+ "textSwitchedStandardView": "Passé à l'affichage standard",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/gl.json b/apps/documenteditor/mobile/locale/gl.json
index 6559a8fe54..aab1dfb0e8 100644
--- a/apps/documenteditor/mobile/locale/gl.json
+++ b/apps/documenteditor/mobile/locale/gl.json
@@ -506,7 +506,8 @@
"uploadImageTitleText": "Cargando imaxe",
"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).",
- "textContinue": "Continue"
+ "textContinue": "Continue",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Erro",
@@ -810,6 +811,7 @@
"textEnterNewFileName": "Enter a new file name",
"textRenameFile": "Rename File",
"textSwitchedMobileView": "Switched to Mobile view",
- "textSwitchedStandardView": "Switched to Standard view"
+ "textSwitchedStandardView": "Switched to Standard view",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/he.json b/apps/documenteditor/mobile/locale/he.json
index 2caf95c74a..e0ce839614 100644
--- a/apps/documenteditor/mobile/locale/he.json
+++ b/apps/documenteditor/mobile/locale/he.json
@@ -506,7 +506,8 @@
"txtEditingMode": "הגדרת מצב עריכה...",
"uploadImageTextText": "העלאת תמונה...",
"uploadImageTitleText": "העלאת תמונה",
- "waitText": "נא להמתין ..."
+ "waitText": "נא להמתין ...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "שגיאה",
@@ -810,6 +811,7 @@
"textOk": "בסדר",
"textRenameFile": "שינוי שם קובץ",
"textSwitchedMobileView": "החלפה לתצוגה ניידת",
- "textSwitchedStandardView": "החלפה לתצוגה רגילה"
+ "textSwitchedStandardView": "החלפה לתצוגה רגילה",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/hu.json b/apps/documenteditor/mobile/locale/hu.json
index 14300ab49b..9cecdbd257 100644
--- a/apps/documenteditor/mobile/locale/hu.json
+++ b/apps/documenteditor/mobile/locale/hu.json
@@ -506,7 +506,8 @@
"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...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Hiba",
@@ -810,6 +811,7 @@
"textOk": "OK",
"textRenameFile": "Fájl Átnevezése",
"textSwitchedMobileView": "Váltás Mobil nézetre",
- "textSwitchedStandardView": "Normál nézetre váltott"
+ "textSwitchedStandardView": "Normál nézetre váltott",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/hy.json b/apps/documenteditor/mobile/locale/hy.json
index e1bfc0a331..9307d89042 100644
--- a/apps/documenteditor/mobile/locale/hy.json
+++ b/apps/documenteditor/mobile/locale/hy.json
@@ -506,7 +506,8 @@
"txtEditingMode": "Սահմանել ցուցակի խմբագրում․․․",
"uploadImageTextText": "Նկարի վերբեռնում...",
"uploadImageTitleText": "Նկարի վերբեռնում",
- "waitText": "Խնդրում ենք սպասել..."
+ "waitText": "Խնդրում ենք սպասել...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Սխալ",
@@ -810,6 +811,7 @@
"textOk": "Լավ",
"textRenameFile": "Վերանվանել ֆայլը",
"textSwitchedMobileView": " Փոխարկվել է բջջային տեսքի",
- "textSwitchedStandardView": " Փոխարկվել է ստանդարտ տեսքի"
+ "textSwitchedStandardView": " Փոխարկվել է ստանդարտ տեսքի",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/id.json b/apps/documenteditor/mobile/locale/id.json
index 59ffd0af71..4fcbbda300 100644
--- a/apps/documenteditor/mobile/locale/id.json
+++ b/apps/documenteditor/mobile/locale/id.json
@@ -506,7 +506,8 @@
"txtEditingMode": "Atur mode editing...",
"uploadImageTextText": "Mengunggah gambar...",
"uploadImageTitleText": "Mengunggah Gambar",
- "waitText": "Silahkan menunggu"
+ "waitText": "Silahkan menunggu",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Kesalahan",
@@ -810,6 +811,7 @@
"textOk": "OK",
"textRenameFile": "Ganti Nama File",
"textSwitchedMobileView": "Beralih ke Tampilan seluler",
- "textSwitchedStandardView": "Beralih ke Tampilan standar"
+ "textSwitchedStandardView": "Beralih ke Tampilan standar",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/it.json b/apps/documenteditor/mobile/locale/it.json
index 3a385360b6..ba4d4a2edf 100644
--- a/apps/documenteditor/mobile/locale/it.json
+++ b/apps/documenteditor/mobile/locale/it.json
@@ -506,7 +506,8 @@
"txtEditingMode": "Impostare la modalità di modifica...",
"uploadImageTextText": "Caricamento dell'immagine...",
"uploadImageTitleText": "Caricamento dell'immagine",
- "waitText": "Attendere prego..."
+ "waitText": "Attendere prego...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Errore",
@@ -810,6 +811,7 @@
"textOk": "OK",
"textRenameFile": "Rinomina file",
"textSwitchedMobileView": "Passato alla visualizzazione per dispositivi mobili",
- "textSwitchedStandardView": "Passato alla visualizzazione standard"
+ "textSwitchedStandardView": "Passato alla visualizzazione standard",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/ja.json b/apps/documenteditor/mobile/locale/ja.json
index 6321999e3e..70ddf1ffe6 100644
--- a/apps/documenteditor/mobile/locale/ja.json
+++ b/apps/documenteditor/mobile/locale/ja.json
@@ -506,7 +506,8 @@
"txtEditingMode": "編集モードを設定します...",
"uploadImageTextText": "イメージのアップロード中...",
"uploadImageTitleText": "イメージのアップロード中",
- "waitText": "少々お待ちください..."
+ "waitText": "少々お待ちください...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "エラー",
@@ -810,6 +811,7 @@
"textOk": "OK",
"textRenameFile": "ファイル名の変更",
"textSwitchedMobileView": "モバイルビューに切り替えました",
- "textSwitchedStandardView": "標準ビューに切り替えました"
+ "textSwitchedStandardView": "標準ビューに切り替えました",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/ko.json b/apps/documenteditor/mobile/locale/ko.json
index 3d6cef3633..5c7d63e614 100644
--- a/apps/documenteditor/mobile/locale/ko.json
+++ b/apps/documenteditor/mobile/locale/ko.json
@@ -506,7 +506,8 @@
"txtEditingMode": "편집 모드 설정 ...",
"uploadImageTextText": "이미지 업로드 중 ...",
"uploadImageTitleText": "이미지 업로드 중",
- "waitText": "잠시만 기다려주세요..."
+ "waitText": "잠시만 기다려주세요...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "오류",
@@ -810,6 +811,7 @@
"textOk": "확정",
"textRenameFile": "파일 이름 변경",
"textSwitchedMobileView": "모바일 보기로 전환되었습니다.",
- "textSwitchedStandardView": "표준 보기로 전환되었습니다."
+ "textSwitchedStandardView": "표준 보기로 전환되었습니다.",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/lo.json b/apps/documenteditor/mobile/locale/lo.json
index b87b2162ae..f4b5c3c516 100644
--- a/apps/documenteditor/mobile/locale/lo.json
+++ b/apps/documenteditor/mobile/locale/lo.json
@@ -506,7 +506,8 @@
"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).",
"textContinue": "Continue",
- "textUndo": "Undo"
+ "textUndo": "Undo",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "ຂໍ້ຜິດພາດ",
@@ -810,6 +811,7 @@
"textOk": "OK",
"textRenameFile": "Rename File",
"textSwitchedMobileView": "Switched to Mobile view",
- "textSwitchedStandardView": "Switched to Standard view"
+ "textSwitchedStandardView": "Switched to Standard view",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/lv.json b/apps/documenteditor/mobile/locale/lv.json
index 489749ab45..6150e3bb90 100644
--- a/apps/documenteditor/mobile/locale/lv.json
+++ b/apps/documenteditor/mobile/locale/lv.json
@@ -506,7 +506,8 @@
"txtEditingMode": "Uzstāda rediģēšanas režīmu...",
"uploadImageTextText": "Augšupielādē attēlu...",
"uploadImageTitleText": "Augšupielādē attēlu",
- "waitText": "Uzgaidiet..."
+ "waitText": "Uzgaidiet...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Kļūda",
@@ -810,6 +811,7 @@
"textSwitchedMobileView": "Pārslēgts uz mobilo skatu",
"textSwitchedStandardView": "Pārslēgts uz standarta skatu",
"textEnterNewFileName": "Enter a new file name",
- "textRenameFile": "Rename File"
+ "textRenameFile": "Rename File",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/ms.json b/apps/documenteditor/mobile/locale/ms.json
index 587e0744d1..770f01627c 100644
--- a/apps/documenteditor/mobile/locale/ms.json
+++ b/apps/documenteditor/mobile/locale/ms.json
@@ -506,7 +506,8 @@
"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).",
"textContinue": "Continue",
- "textUndo": "Undo"
+ "textUndo": "Undo",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Ralat",
@@ -810,6 +811,7 @@
"textEnterNewFileName": "Enter a new file name",
"textRenameFile": "Rename File",
"textSwitchedMobileView": "Switched to Mobile view",
- "textSwitchedStandardView": "Switched to Standard view"
+ "textSwitchedStandardView": "Switched to Standard view",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/nl.json b/apps/documenteditor/mobile/locale/nl.json
index 63bcfb544d..a7ce18838d 100644
--- a/apps/documenteditor/mobile/locale/nl.json
+++ b/apps/documenteditor/mobile/locale/nl.json
@@ -506,7 +506,8 @@
"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).",
"textContinue": "Continue",
- "textUndo": "Undo"
+ "textUndo": "Undo",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Fout",
@@ -810,6 +811,7 @@
"textOk": "OK",
"textRenameFile": "Rename File",
"textSwitchedMobileView": "Switched to Mobile view",
- "textSwitchedStandardView": "Switched to Standard view"
+ "textSwitchedStandardView": "Switched to Standard view",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/pl.json b/apps/documenteditor/mobile/locale/pl.json
index ea0b920d4c..ca36d58f16 100644
--- a/apps/documenteditor/mobile/locale/pl.json
+++ b/apps/documenteditor/mobile/locale/pl.json
@@ -506,7 +506,8 @@
"txtEditingMode": "Set editing mode...",
"uploadImageTextText": "Uploading image...",
"uploadImageTitleText": "Uploading Image",
- "waitText": "Please, wait..."
+ "waitText": "Please, wait...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Błąd",
@@ -810,6 +811,7 @@
"stayButtonText": "Stay on this page",
"textRenameFile": "Rename File",
"textSwitchedMobileView": "Switched to Mobile view",
- "textSwitchedStandardView": "Switched to Standard view"
+ "textSwitchedStandardView": "Switched to Standard view",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/pt-pt.json b/apps/documenteditor/mobile/locale/pt-pt.json
index d74c51f4d2..4bdb70f840 100644
--- a/apps/documenteditor/mobile/locale/pt-pt.json
+++ b/apps/documenteditor/mobile/locale/pt-pt.json
@@ -506,7 +506,8 @@
"txtEditingMode": "Definir modo de edição…",
"uploadImageTextText": "A carregar imagem...",
"uploadImageTitleText": "A carregar imagem",
- "waitText": "Aguarde..."
+ "waitText": "Aguarde...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Erro",
@@ -810,6 +811,7 @@
"textOk": "Aceitar",
"textRenameFile": "Mudar nome do ficheiro",
"textSwitchedMobileView": "Alterado para vista móvel",
- "textSwitchedStandardView": "Alterado para a vista predefinida"
+ "textSwitchedStandardView": "Alterado para a vista predefinida",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/pt.json b/apps/documenteditor/mobile/locale/pt.json
index 9a3f5edb02..66e78955e3 100644
--- a/apps/documenteditor/mobile/locale/pt.json
+++ b/apps/documenteditor/mobile/locale/pt.json
@@ -506,7 +506,8 @@
"txtEditingMode": "Definir modo de edição...",
"uploadImageTextText": "Carregando imagem...",
"uploadImageTitleText": "Carregando imagem",
- "waitText": "Por favor, aguarde..."
+ "waitText": "Por favor, aguarde...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Erro",
@@ -810,6 +811,7 @@
"textOk": "OK",
"textRenameFile": "Renomear arquivo",
"textSwitchedMobileView": "Alterado para a visualização móvel",
- "textSwitchedStandardView": "Alterado para a visualização padrão"
+ "textSwitchedStandardView": "Alterado para a visualização padrão",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/ro.json b/apps/documenteditor/mobile/locale/ro.json
index 90ecdc1d4c..8f245a6b28 100644
--- a/apps/documenteditor/mobile/locale/ro.json
+++ b/apps/documenteditor/mobile/locale/ro.json
@@ -506,7 +506,8 @@
"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...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Eroare",
@@ -810,6 +811,7 @@
"textOk": "OK",
"textRenameFile": "Redenumire fișier",
"textSwitchedMobileView": "Comutat la vizualizarea mobilă",
- "textSwitchedStandardView": "Comutat la vizualizarea standard"
+ "textSwitchedStandardView": "Comutat la vizualizarea standard",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/ru.json b/apps/documenteditor/mobile/locale/ru.json
index 526e73437a..1ed74afd8c 100644
--- a/apps/documenteditor/mobile/locale/ru.json
+++ b/apps/documenteditor/mobile/locale/ru.json
@@ -506,7 +506,8 @@
"txtEditingMode": "Установка режима редактирования...",
"uploadImageTextText": "Загрузка рисунка...",
"uploadImageTitleText": "Загрузка рисунка",
- "waitText": "Пожалуйста, подождите..."
+ "waitText": "Пожалуйста, подождите...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Ошибка",
@@ -810,6 +811,7 @@
"textOk": "OK",
"textRenameFile": "Переименовать файл",
"textSwitchedMobileView": "Переключено на мобильный вид",
- "textSwitchedStandardView": "Переключено на стандартный вид"
+ "textSwitchedStandardView": "Переключено на стандартный вид",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/si.json b/apps/documenteditor/mobile/locale/si.json
index cdba8d3689..2fe0eff814 100644
--- a/apps/documenteditor/mobile/locale/si.json
+++ b/apps/documenteditor/mobile/locale/si.json
@@ -506,7 +506,8 @@
"txtEditingMode": "සංස්කරණ ප්රකාරය සකසන්න...",
"uploadImageTextText": "අනුරුව උඩුගත වෙමින්...",
"uploadImageTitleText": "අනුරුව උඩුගත වෙමින්",
- "waitText": "කරුණාකර, රැඳෙන්න..."
+ "waitText": "කරුණාකර, රැඳෙන්න...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "දෝෂයකි",
@@ -810,6 +811,7 @@
"textOk": "හරි",
"textRenameFile": "ගොනුව නම් කරන්න",
"textSwitchedMobileView": "ජංගම දැක්මට මාරු විය",
- "textSwitchedStandardView": "සම්මත දැක්මට මාරු විය"
+ "textSwitchedStandardView": "සම්මත දැක්මට මාරු විය",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/sk.json b/apps/documenteditor/mobile/locale/sk.json
index 04f3ea506f..a186ffc037 100644
--- a/apps/documenteditor/mobile/locale/sk.json
+++ b/apps/documenteditor/mobile/locale/sk.json
@@ -506,7 +506,8 @@
"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).",
"textContinue": "Continue",
- "textUndo": "Undo"
+ "textUndo": "Undo",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Chyba",
@@ -810,6 +811,7 @@
"textOk": "OK",
"textRenameFile": "Rename File",
"textSwitchedMobileView": "Switched to Mobile view",
- "textSwitchedStandardView": "Switched to Standard view"
+ "textSwitchedStandardView": "Switched to Standard view",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/sl.json b/apps/documenteditor/mobile/locale/sl.json
index f59e74d10e..6ada945db5 100644
--- a/apps/documenteditor/mobile/locale/sl.json
+++ b/apps/documenteditor/mobile/locale/sl.json
@@ -798,7 +798,8 @@
"txtEditingMode": "Set editing mode...",
"uploadImageTextText": "Uploading image...",
"uploadImageTitleText": "Uploading Image",
- "waitText": "Please, wait..."
+ "waitText": "Please, wait...",
+ "savingText": "Saving"
},
"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.",
@@ -810,6 +811,7 @@
"textOk": "OK",
"textRenameFile": "Rename File",
"textSwitchedMobileView": "Switched to Mobile view",
- "textSwitchedStandardView": "Switched to Standard view"
+ "textSwitchedStandardView": "Switched to Standard view",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/sr-cyrl.json b/apps/documenteditor/mobile/locale/sr-cyrl.json
index abdbe267c6..aaf0d73008 100644
--- a/apps/documenteditor/mobile/locale/sr-cyrl.json
+++ b/apps/documenteditor/mobile/locale/sr-cyrl.json
@@ -506,7 +506,8 @@
"txtEditingMode": "Подеси режим уређивања...",
"uploadImageTextText": "Отпремљивање слике...",
"uploadImageTitleText": "Отпремљивање слике",
- "waitText": "Молимо, сачекајте..."
+ "waitText": "Молимо, сачекајте...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Грешка",
@@ -810,6 +811,7 @@
"textOk": "OK",
"textRenameFile": "Преименуј фајл",
"textSwitchedMobileView": "Пребачено на мобилни приказ",
- "textSwitchedStandardView": "Пребачено на стандардни приказ"
+ "textSwitchedStandardView": "Пребачено на стандардни приказ",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/sr.json b/apps/documenteditor/mobile/locale/sr.json
index b201dbee60..a16d070d18 100644
--- a/apps/documenteditor/mobile/locale/sr.json
+++ b/apps/documenteditor/mobile/locale/sr.json
@@ -506,7 +506,8 @@
"txtEditingMode": "Podesi režim uređivanja...",
"uploadImageTextText": "Otpremljivanje slike...",
"uploadImageTitleText": "Otpremljivanje Slike",
- "waitText": "Molimo, sačekajte..."
+ "waitText": "Molimo, sačekajte...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Greška",
@@ -810,6 +811,7 @@
"textOk": "OK",
"textRenameFile": "Preimenuj Fajl",
"textSwitchedMobileView": "Prebačeno na mobilni prikaz",
- "textSwitchedStandardView": "Prebačeno na standardni prikaz"
+ "textSwitchedStandardView": "Prebačeno na standardni prikaz",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/sv.json b/apps/documenteditor/mobile/locale/sv.json
index 858660e8f4..cfe9a3d351 100644
--- a/apps/documenteditor/mobile/locale/sv.json
+++ b/apps/documenteditor/mobile/locale/sv.json
@@ -798,7 +798,8 @@
"txtEditingMode": "Set editing mode...",
"uploadImageTextText": "Uploading image...",
"uploadImageTitleText": "Uploading Image",
- "waitText": "Please, wait..."
+ "waitText": "Please, wait...",
+ "savingText": "Saving"
},
"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.",
@@ -810,6 +811,7 @@
"textOk": "OK",
"textRenameFile": "Rename File",
"textSwitchedMobileView": "Switched to Mobile view",
- "textSwitchedStandardView": "Switched to Standard view"
+ "textSwitchedStandardView": "Switched to Standard view",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/tr.json b/apps/documenteditor/mobile/locale/tr.json
index 869cb7533a..875bce5f30 100644
--- a/apps/documenteditor/mobile/locale/tr.json
+++ b/apps/documenteditor/mobile/locale/tr.json
@@ -506,7 +506,8 @@
"txtEditingMode": "Düzenleme modunu belirle...",
"uploadImageTextText": "Resim yükleniyor...",
"uploadImageTitleText": "Resim Yükleniyor",
- "waitText": "Lütfen bekleyin..."
+ "waitText": "Lütfen bekleyin...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Hata",
@@ -810,6 +811,7 @@
"textOk": "Tamam",
"textRenameFile": "Dosyayı yeniden adlandır.",
"textSwitchedMobileView": "Mobil görünüme geçildi",
- "textSwitchedStandardView": "Standart görünüme geçildi"
+ "textSwitchedStandardView": "Standart görünüme geçildi",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/uk.json b/apps/documenteditor/mobile/locale/uk.json
index 41bba18ea0..69e45d5110 100644
--- a/apps/documenteditor/mobile/locale/uk.json
+++ b/apps/documenteditor/mobile/locale/uk.json
@@ -506,7 +506,8 @@
"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).",
"textContinue": "Continue",
- "textUndo": "Undo"
+ "textUndo": "Undo",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Помилка",
@@ -810,6 +811,7 @@
"textOk": "OK",
"textRenameFile": "Rename File",
"textSwitchedMobileView": "Switched to Mobile view",
- "textSwitchedStandardView": "Switched to Standard view"
+ "textSwitchedStandardView": "Switched to Standard view",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/vi.json b/apps/documenteditor/mobile/locale/vi.json
index d246ce5d14..ee82dcf5d9 100644
--- a/apps/documenteditor/mobile/locale/vi.json
+++ b/apps/documenteditor/mobile/locale/vi.json
@@ -510,7 +510,8 @@
"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"
+ "textContinue": "Continue",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "Error",
@@ -841,6 +842,7 @@
"textSwitchedStandardView": "Switched to Standard view",
"textRenameFile": "Rename File",
"textEnterNewFileName": "Enter a new file name",
- "textCloseHistory": "Close History"
+ "textCloseHistory": "Close History",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/zh-tw.json b/apps/documenteditor/mobile/locale/zh-tw.json
index 60b796b427..d07bf90d51 100644
--- a/apps/documenteditor/mobile/locale/zh-tw.json
+++ b/apps/documenteditor/mobile/locale/zh-tw.json
@@ -506,7 +506,8 @@
"txtEditingMode": "設定編輯模式...",
"uploadImageTextText": "正在上傳圖片...",
"uploadImageTitleText": "上傳圖片中",
- "waitText": "請耐心等待..."
+ "waitText": "請耐心等待...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "錯誤",
@@ -810,6 +811,7 @@
"textSwitchedStandardView": "切換至標準版檢視",
"textCloseHistory": "Close History",
"textEnterNewFileName": "Enter a new file name",
- "textRenameFile": "Rename File"
+ "textRenameFile": "Rename File",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/zh.json b/apps/documenteditor/mobile/locale/zh.json
index 3bb8618a9b..6890bc9f51 100644
--- a/apps/documenteditor/mobile/locale/zh.json
+++ b/apps/documenteditor/mobile/locale/zh.json
@@ -506,7 +506,8 @@
"txtEditingMode": "设置编辑模式..",
"uploadImageTextText": "上传图片...",
"uploadImageTitleText": "图片上传中",
- "waitText": "请稍候..."
+ "waitText": "请稍候...",
+ "savingText": "Saving"
},
"Main": {
"criticalErrorTitle": "错误",
@@ -810,6 +811,7 @@
"textOk": "确定",
"textRenameFile": "重命名文件",
"textSwitchedMobileView": "切换到“移动设备”视图",
- "textSwitchedStandardView": "切换到标准视图"
+ "textSwitchedStandardView": "切换到标准视图",
+ "btnSend": "Send"
}
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/src/controller/LongActions.jsx b/apps/documenteditor/mobile/src/controller/LongActions.jsx
index 4162dc5f1c..0842b121e1 100644
--- a/apps/documenteditor/mobile/src/controller/LongActions.jsx
+++ b/apps/documenteditor/mobile/src/controller/LongActions.jsx
@@ -17,6 +17,7 @@ const LongActionsController = inject('storeAppOptions')(({storeAppOptions}) => {
});
let loadMask = null;
+ let submitFail = false;
const closePreloader = () => {
if (loadMask && loadMask.el) {
@@ -30,6 +31,7 @@ const LongActionsController = inject('storeAppOptions')(({storeAppOptions}) => {
api.asc_registerCallback('asc_onEndAction', onLongActionEnd);
api.asc_registerCallback('asc_onOpenDocumentProgress', onOpenDocument);
api.asc_registerCallback('asc_onConfirmAction', onConfirmAction);
+ api.asc_registerCallback('asc_onError', onError);
};
const api = Common.EditorApi.get();
@@ -47,6 +49,7 @@ const LongActionsController = inject('storeAppOptions')(({storeAppOptions}) => {
api.asc_unregisterCallback('asc_onEndAction', onLongActionEnd);
api.asc_unregisterCallback('asc_onOpenDocumentProgress', onOpenDocument);
api.asc_unregisterCallback('asc_onConfirmAction', onConfirmAction);
+ api.asc_unregisterCallback('asc_onError', onError);
}
Common.Notifications.off('engineCreated', on_engine_created);
@@ -59,6 +62,9 @@ const LongActionsController = inject('storeAppOptions')(({storeAppOptions}) => {
const onLongActionBegin = (type, id) => {
const action = {id: id, type: type};
stackLongActions.push(action);
+ if (id===Asc.c_oAscAsyncAction['Submit']) {
+ submitFail = false;
+ }
setLongActionView(action);
};
@@ -79,6 +85,9 @@ const LongActionsController = inject('storeAppOptions')(({storeAppOptions}) => {
f7.dialog.close(loadMask.el) :
f7.dialog.close($$('.dialog-preloader'));
}
+ if (id===Asc.c_oAscAsyncAction['Submit'] && !submitFail) {
+ Common.Gateway.submitForm();
+ }
};
const setLongActionView = (action) => {
@@ -163,6 +172,10 @@ const LongActionsController = inject('storeAppOptions')(({storeAppOptions}) => {
// text = _t.waitText;
break;
+ case Asc.c_oAscAsyncAction['Submit']:
+ title = _t.savingText;
+ break;
+
case ApplyEditRights:
title = _t.txtEditingMode;
// text = _t.txtEditingMode;
@@ -226,7 +239,13 @@ const LongActionsController = inject('storeAppOptions')(({storeAppOptions}) => {
$title.innerHTML = `${_t.textLoadingDocument}: ${Math.min(Math.round(proc * 100), 100)}%`;
}
- }
+ };
+
+ const onError = (id, level, errData) => {
+ if (id===Asc.c_oAscError.ID.Submit) {
+ submitFail = true;
+ }
+ };
return null;
});
diff --git a/apps/documenteditor/mobile/src/controller/Toolbar.jsx b/apps/documenteditor/mobile/src/controller/Toolbar.jsx
index 55c27c1995..1a82bb8ca5 100644
--- a/apps/documenteditor/mobile/src/controller/Toolbar.jsx
+++ b/apps/documenteditor/mobile/src/controller/Toolbar.jsx
@@ -415,6 +415,7 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeReview', 'sto
saveForm={saveForm}
isForm={isForm}
canFillForms={canFillForms}
+ canSubmitForms={appOptions.canSubmitForms}
/>
)
}));
diff --git a/apps/documenteditor/mobile/src/less/app-ios.less b/apps/documenteditor/mobile/src/less/app-ios.less
index e3fb478589..40f134a478 100644
--- a/apps/documenteditor/mobile/src/less/app-ios.less
+++ b/apps/documenteditor/mobile/src/less/app-ios.less
@@ -97,5 +97,9 @@
bottom: 50px;
}
}
+
+ #btn-submit-form {
+ background-color: @brand-form;
+ }
}
diff --git a/apps/documenteditor/mobile/src/less/app.less b/apps/documenteditor/mobile/src/less/app.less
index d8355aae26..9cfeea9d01 100644
--- a/apps/documenteditor/mobile/src/less/app.less
+++ b/apps/documenteditor/mobile/src/less/app.less
@@ -381,5 +381,14 @@
opacity: 0;
transition: opacity 300ms;
}
-
+//
+#btn-submit-form {
+ background-color: @toolbar-icons;
+ color: @toolbar-background;
+ height: 2em;
+ border-radius: 1em;
+ padding-left: 15px;
+ padding-right: 15px;
+ margin-right: 5px;
+}
diff --git a/apps/documenteditor/mobile/src/less/icons-common.less b/apps/documenteditor/mobile/src/less/icons-common.less
index 7296f63bf6..f100955f52 100644
--- a/apps/documenteditor/mobile/src/less/icons-common.less
+++ b/apps/documenteditor/mobile/src/less/icons-common.less
@@ -93,7 +93,7 @@ i.icon {
&.icon-save-form {
width: 24px;
height: 24px;
- .encoded-svg-mask('')
+ .encoded-svg-mask('');
}
&.icon-add-favorites {
width: 24px;
diff --git a/apps/documenteditor/mobile/src/less/icons-ios.less b/apps/documenteditor/mobile/src/less/icons-ios.less
index faab8c7e8f..1b7b1d86ea 100644
--- a/apps/documenteditor/mobile/src/less/icons-ios.less
+++ b/apps/documenteditor/mobile/src/less/icons-ios.less
@@ -20,11 +20,6 @@
height: 22px;
.encoded-svg-mask('');
}
- &.icon-settings {
- width: 24px;
- height: 24px;
- .encoded-svg-mask('');
- }
&.icon-expand-down {
width: 22px;
height: 22px;
diff --git a/apps/documenteditor/mobile/src/less/icons-material.less b/apps/documenteditor/mobile/src/less/icons-material.less
index 267073920a..cf5b31c05f 100644
--- a/apps/documenteditor/mobile/src/less/icons-material.less
+++ b/apps/documenteditor/mobile/src/less/icons-material.less
@@ -21,11 +21,6 @@
height: 22px;
.encoded-svg-mask('', @toolbar-icons);
}
- &.icon-settings {
- width: 22px;
- height: 22px;
- .encoded-svg-mask('', @toolbar-icons);
- }
&.icon-prev {
width: 20px;
height: 20px;
@@ -98,7 +93,7 @@
&.icon-save-form {
width: 24px;
height: 24px;
- .encoded-svg-mask('', @toolbar-icons);
+ .encoded-svg-mask('', @toolbar-icons);
}
}
}
diff --git a/apps/documenteditor/mobile/src/view/Toolbar.jsx b/apps/documenteditor/mobile/src/view/Toolbar.jsx
index 28097950b6..a501573d50 100644
--- a/apps/documenteditor/mobile/src/view/Toolbar.jsx
+++ b/apps/documenteditor/mobile/src/view/Toolbar.jsx
@@ -86,13 +86,32 @@ const ToolbarView = props => {
: null),
(isVersionHistoryMode ?
props.openOptions('history')}>
- : null)
+ : null),
+ props.openOptions('settings')}>
] : [
props.movePrevField()}>,
props.moveNextField()}>,
- props.saveForm()}>,
+ (props.canSubmitForms ?
+ [
+ props.openOptions('settings')}>,
+ props.saveForm()}>
+ ] : [
+ props.saveForm()}>,
+ {props.openOptions('settings')}}>
+ ]
+ )
]}
- props.openOptions('settings')}>
)
diff --git a/apps/documenteditor/mobile/src/view/settings/SettingsPage.jsx b/apps/documenteditor/mobile/src/view/settings/SettingsPage.jsx
index da3fe7f49a..dfdb1931af 100644
--- a/apps/documenteditor/mobile/src/view/settings/SettingsPage.jsx
+++ b/apps/documenteditor/mobile/src/view/settings/SettingsPage.jsx
@@ -82,16 +82,6 @@ const SettingsPage = inject("storeAppOptions", "storeReview", "storeDocumentInfo
: ''),
- (canFillForms && canSubmitForms ?
-
-
-
- : ''),
- (_canDownload && canFillForms && !canSubmitForms ?
-
-
-
- : ''),
diff --git a/apps/pdfeditor/main/resources/img/toolbar/1.25x/big/btn-signature-field.png b/apps/pdfeditor/main/resources/img/toolbar/1.25x/big/btn-signature-field.png
new file mode 100644
index 0000000000..da833923b5
Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/1.25x/big/btn-signature-field.png differ
diff --git a/apps/pdfeditor/main/resources/img/toolbar/1.5x/big/btn-signature-field.png b/apps/pdfeditor/main/resources/img/toolbar/1.5x/big/btn-signature-field.png
new file mode 100644
index 0000000000..a4cd4906e3
Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/1.5x/big/btn-signature-field.png differ
diff --git a/apps/pdfeditor/main/resources/img/toolbar/1.75x/big/btn-signature-field.png b/apps/pdfeditor/main/resources/img/toolbar/1.75x/big/btn-signature-field.png
new file mode 100644
index 0000000000..320fbf4d13
Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/1.75x/big/btn-signature-field.png differ
diff --git a/apps/pdfeditor/main/resources/img/toolbar/1x/big/btn-signature-field.png b/apps/pdfeditor/main/resources/img/toolbar/1x/big/btn-signature-field.png
new file mode 100644
index 0000000000..f820fa4c6b
Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/1x/big/btn-signature-field.png differ
diff --git a/apps/pdfeditor/main/resources/img/toolbar/2.5x/big/btn-signature-field.svg b/apps/pdfeditor/main/resources/img/toolbar/2.5x/big/btn-signature-field.svg
new file mode 100644
index 0000000000..e1079f4cc8
--- /dev/null
+++ b/apps/pdfeditor/main/resources/img/toolbar/2.5x/big/btn-signature-field.svg
@@ -0,0 +1,4 @@
+
diff --git a/apps/pdfeditor/main/resources/img/toolbar/2x/big/btn-signature-field.png b/apps/pdfeditor/main/resources/img/toolbar/2x/big/btn-signature-field.png
new file mode 100644
index 0000000000..f89a605059
Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/2x/big/btn-signature-field.png differ
diff --git a/apps/presentationeditor/mobile/src/less/icons-ios.less b/apps/presentationeditor/mobile/src/less/icons-ios.less
index 04532d397c..82dde9122e 100644
--- a/apps/presentationeditor/mobile/src/less/icons-ios.less
+++ b/apps/presentationeditor/mobile/src/less/icons-ios.less
@@ -61,12 +61,6 @@
.encoded-svg-mask('');
}
- &.icon-settings {
- width: 24px;
- height: 24px;
- .encoded-svg-mask('');
- }
-
&.icon-feedback {
width: 22px;
height: 22px;
diff --git a/apps/presentationeditor/mobile/src/less/icons-material.less b/apps/presentationeditor/mobile/src/less/icons-material.less
index c2396a834e..4ee863f566 100644
--- a/apps/presentationeditor/mobile/src/less/icons-material.less
+++ b/apps/presentationeditor/mobile/src/less/icons-material.less
@@ -467,12 +467,6 @@
.encoded-svg-mask('', @toolbar-icons);
}
- &.icon-settings {
- width: 22px;
- height: 22px;
- .encoded-svg-mask('', @toolbar-icons);
- }
-
&.icon-prev {
width: 20px;
height: 20px;
diff --git a/apps/spreadsheeteditor/main/app/template/ChartSettingsDlg.template b/apps/spreadsheeteditor/main/app/template/ChartSettingsDlg.template
index c11f01b623..b3d1929a31 100644
--- a/apps/spreadsheeteditor/main/app/template/ChartSettingsDlg.template
+++ b/apps/spreadsheeteditor/main/app/template/ChartSettingsDlg.template
@@ -41,14 +41,27 @@
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/apps/spreadsheeteditor/main/app/view/ChartSettingsDlg.js b/apps/spreadsheeteditor/main/app/view/ChartSettingsDlg.js
index b59eb8346b..a686924721 100644
--- a/apps/spreadsheeteditor/main/app/view/ChartSettingsDlg.js
+++ b/apps/spreadsheeteditor/main/app/view/ChartSettingsDlg.js
@@ -241,6 +241,14 @@ define([
this.lblLines = $('#chart-dlg-label-lines');
+ this.chShowEquation = new Common.UI.CheckBox({
+ el: $('#chart-dlg-chk-show-equation'),
+ labelText: this.textShowEquation
+ }).on('change', _.bind(function (checkbox, state) {
+ if (this.chartSettings)
+ this.chartSettings.putDisplayTrendlinesEquation(state==='checked');
+ }, this));
+
// Vertical Axis
this.cmbMinType = [];
this.spnMinValue = [];
@@ -1193,6 +1201,7 @@ define([
this.chMarkers.setVisible(value);
this.cmbLines.setVisible(value);
this.lblLines.toggleClass('hidden', !value);
+ this.lblLines.closest('tr').toggleClass('hidden', !value);
if (value) {
this.chMarkers.setValue(this.chartSettings.getShowMarker(), true);
@@ -1510,7 +1519,11 @@ define([
var value = props.getSeparator();
this.txtSeparator.setValue((value) ? value : '');
- Common.UI.FocusManager.add(this, [this.cmbChartTitle, this.cmbLegendPos, this.cmbDataLabels, this.chSeriesName, this.chCategoryName, this.chValue, this.txtSeparator, this.cmbLines, this.chMarkers]);
+ value = this.chartSettings.getDisplayTrendlinesEquation();
+ this.chShowEquation.setValue(value !== undefined ? !!value : 'indeterminate', true);
+ this.chShowEquation.setDisabled(value===null, true);
+
+ Common.UI.FocusManager.add(this, [this.cmbChartTitle, this.cmbLegendPos, this.cmbDataLabels, this.chSeriesName, this.chCategoryName, this.chValue, this.txtSeparator, this.cmbLines, this.chMarkers, this.chShowEquation]);
// Vertical Axis
this.vertAxisProps = props.getVertAxesProps();
@@ -1987,7 +2000,9 @@ define([
textHideAxis: 'Hide axis',
textFormat: 'Label format',
textBase: 'Base',
- textLogScale: 'Logarithmic Scale'
+ textLogScale: 'Logarithmic Scale',
+ textTrendlineOptions: 'Trendline options',
+ textShowEquation: 'Display equation on chart'
}, SSE.Views.ChartSettingsDlg || {}));
});
diff --git a/apps/spreadsheeteditor/main/locale/ar.json b/apps/spreadsheeteditor/main/locale/ar.json
index c7f80c0d5f..5fe0c37cb0 100644
--- a/apps/spreadsheeteditor/main/locale/ar.json
+++ b/apps/spreadsheeteditor/main/locale/ar.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "فك حماية المصنف",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/az.json b/apps/spreadsheeteditor/main/locale/az.json
index d69d886a8a..937962a889 100644
--- a/apps/spreadsheeteditor/main/locale/az.json
+++ b/apps/spreadsheeteditor/main/locale/az.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "İş kitabının qorumasını ləğv et",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/be.json b/apps/spreadsheeteditor/main/locale/be.json
index cc31f559bf..93bfc08f91 100644
--- a/apps/spreadsheeteditor/main/locale/be.json
+++ b/apps/spreadsheeteditor/main/locale/be.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Зняць абарону працоўнай кнігі",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/bg.json b/apps/spreadsheeteditor/main/locale/bg.json
index 973858ace7..e033351d87 100644
--- a/apps/spreadsheeteditor/main/locale/bg.json
+++ b/apps/spreadsheeteditor/main/locale/bg.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Unprotect workbook",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/ca.json b/apps/spreadsheeteditor/main/locale/ca.json
index fdd8d50561..0c82e55f59 100644
--- a/apps/spreadsheeteditor/main/locale/ca.json
+++ b/apps/spreadsheeteditor/main/locale/ca.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Desprotegeix el llibre de treball",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/cs.json b/apps/spreadsheeteditor/main/locale/cs.json
index 2723af025c..8b1cac1363 100644
--- a/apps/spreadsheeteditor/main/locale/cs.json
+++ b/apps/spreadsheeteditor/main/locale/cs.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Zrušit zabezpečení sešitu",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/da.json b/apps/spreadsheeteditor/main/locale/da.json
index 0ae753a825..aeb3bccae1 100644
--- a/apps/spreadsheeteditor/main/locale/da.json
+++ b/apps/spreadsheeteditor/main/locale/da.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "ubeskyt projektmappe",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/de.json b/apps/spreadsheeteditor/main/locale/de.json
index 29062182b5..f0f1dd7d13 100644
--- a/apps/spreadsheeteditor/main/locale/de.json
+++ b/apps/spreadsheeteditor/main/locale/de.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Arbeitsmappe entschützen",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/el.json b/apps/spreadsheeteditor/main/locale/el.json
index 3df29bbec6..34d1417692 100644
--- a/apps/spreadsheeteditor/main/locale/el.json
+++ b/apps/spreadsheeteditor/main/locale/el.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Άρση προστασίας βιβλίου εργασίας",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json
index 88e5e22e72..55ca5238fb 100644
--- a/apps/spreadsheeteditor/main/locale/en.json
+++ b/apps/spreadsheeteditor/main/locale/en.json
@@ -2204,6 +2204,8 @@
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y axis title",
"SSE.Views.ChartSettingsDlg.textZero": "Zero",
"SSE.Views.ChartSettingsDlg.txtEmpty": "This field is required",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
"SSE.Views.ChartTypeDialog.errorComboSeries": "To create a combination chart, select at least two series of data.",
"SSE.Views.ChartTypeDialog.errorSecondaryAxis": "The selected chart type requires the secondary axis that an existing chart is using. Select another chart type.",
"SSE.Views.ChartTypeDialog.textSecondary": "Secondary axis",
diff --git a/apps/spreadsheeteditor/main/locale/es.json b/apps/spreadsheeteditor/main/locale/es.json
index 8ad656cffb..6e8a55be28 100644
--- a/apps/spreadsheeteditor/main/locale/es.json
+++ b/apps/spreadsheeteditor/main/locale/es.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Desproteger libro",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/eu.json b/apps/spreadsheeteditor/main/locale/eu.json
index 23661873f8..69c0b62034 100644
--- a/apps/spreadsheeteditor/main/locale/eu.json
+++ b/apps/spreadsheeteditor/main/locale/eu.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Kendu babesa laneko liburuari",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/fi.json b/apps/spreadsheeteditor/main/locale/fi.json
index 3492ab284f..7c5ee9bb42 100644
--- a/apps/spreadsheeteditor/main/locale/fi.json
+++ b/apps/spreadsheeteditor/main/locale/fi.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Unprotect workbook",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/fr.json b/apps/spreadsheeteditor/main/locale/fr.json
index d70a656001..928d9f44a8 100644
--- a/apps/spreadsheeteditor/main/locale/fr.json
+++ b/apps/spreadsheeteditor/main/locale/fr.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Déprotéger le classeur",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/gl.json b/apps/spreadsheeteditor/main/locale/gl.json
index f6bf85f695..714978ac4b 100644
--- a/apps/spreadsheeteditor/main/locale/gl.json
+++ b/apps/spreadsheeteditor/main/locale/gl.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Desprotexer libro",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/he.json b/apps/spreadsheeteditor/main/locale/he.json
index 9e2c8a8b41..ec91e54a74 100644
--- a/apps/spreadsheeteditor/main/locale/he.json
+++ b/apps/spreadsheeteditor/main/locale/he.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "חוברת עבודה לא מוגנת",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/hu.json b/apps/spreadsheeteditor/main/locale/hu.json
index 6ac0e30790..3da207923c 100644
--- a/apps/spreadsheeteditor/main/locale/hu.json
+++ b/apps/spreadsheeteditor/main/locale/hu.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Munkafüzet védelmének megszüntetése",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/hy.json b/apps/spreadsheeteditor/main/locale/hy.json
index bd61814179..ec45ad9e13 100644
--- a/apps/spreadsheeteditor/main/locale/hy.json
+++ b/apps/spreadsheeteditor/main/locale/hy.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Չպաշտպանել աշխատանքային գրքույկը",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/id.json b/apps/spreadsheeteditor/main/locale/id.json
index 831ca40aa7..7ccf2657ea 100644
--- a/apps/spreadsheeteditor/main/locale/id.json
+++ b/apps/spreadsheeteditor/main/locale/id.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Buka Proteksi Workbook",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/it.json b/apps/spreadsheeteditor/main/locale/it.json
index 281b1f2926..5b0f11f7cc 100644
--- a/apps/spreadsheeteditor/main/locale/it.json
+++ b/apps/spreadsheeteditor/main/locale/it.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Rimuovi la protezione del libro di lavoro",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/ja.json b/apps/spreadsheeteditor/main/locale/ja.json
index fdc6d06689..11378027ff 100644
--- a/apps/spreadsheeteditor/main/locale/ja.json
+++ b/apps/spreadsheeteditor/main/locale/ja.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "ブックを保護を解除する",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/ko.json b/apps/spreadsheeteditor/main/locale/ko.json
index 08fc4d3b4e..d974fdfc10 100644
--- a/apps/spreadsheeteditor/main/locale/ko.json
+++ b/apps/spreadsheeteditor/main/locale/ko.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "통합 문서 보호 잠금 해제",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/lo.json b/apps/spreadsheeteditor/main/locale/lo.json
index ee776e64ee..e1ba1894ca 100644
--- a/apps/spreadsheeteditor/main/locale/lo.json
+++ b/apps/spreadsheeteditor/main/locale/lo.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "ບໍ່ປ້ອງ ປື້ມບັນທືກ",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/lv.json b/apps/spreadsheeteditor/main/locale/lv.json
index dbeac35401..854764caad 100644
--- a/apps/spreadsheeteditor/main/locale/lv.json
+++ b/apps/spreadsheeteditor/main/locale/lv.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Noņemt darbgrāmatas aizsardzību",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/ms.json b/apps/spreadsheeteditor/main/locale/ms.json
index 14cb388359..9aaf2c25ab 100644
--- a/apps/spreadsheeteditor/main/locale/ms.json
+++ b/apps/spreadsheeteditor/main/locale/ms.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Buku Kerja Nyahlindung",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/nl.json b/apps/spreadsheeteditor/main/locale/nl.json
index c1bd297055..2fd7454af3 100644
--- a/apps/spreadsheeteditor/main/locale/nl.json
+++ b/apps/spreadsheeteditor/main/locale/nl.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Beveiliging van werkboek opheffen",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/pl.json b/apps/spreadsheeteditor/main/locale/pl.json
index 0f57fc3136..1aed6c95ab 100644
--- a/apps/spreadsheeteditor/main/locale/pl.json
+++ b/apps/spreadsheeteditor/main/locale/pl.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Usuń ochronę skoroszytu",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/pt-pt.json b/apps/spreadsheeteditor/main/locale/pt-pt.json
index d87209d2a7..067cf878da 100644
--- a/apps/spreadsheeteditor/main/locale/pt-pt.json
+++ b/apps/spreadsheeteditor/main/locale/pt-pt.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Desproteger Livro",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/pt.json b/apps/spreadsheeteditor/main/locale/pt.json
index 7d155dd686..8111e01d4e 100644
--- a/apps/spreadsheeteditor/main/locale/pt.json
+++ b/apps/spreadsheeteditor/main/locale/pt.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Desproteger pasta de trabalho",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/ro.json b/apps/spreadsheeteditor/main/locale/ro.json
index f37abd71d9..7a50253088 100644
--- a/apps/spreadsheeteditor/main/locale/ro.json
+++ b/apps/spreadsheeteditor/main/locale/ro.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Dezactivarea protejării registrului de calcul",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json
index 8074763806..84e2d48de2 100644
--- a/apps/spreadsheeteditor/main/locale/ru.json
+++ b/apps/spreadsheeteditor/main/locale/ru.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Снять защиту книги",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/si.json b/apps/spreadsheeteditor/main/locale/si.json
index 27c31cd2f8..638bd99e71 100644
--- a/apps/spreadsheeteditor/main/locale/si.json
+++ b/apps/spreadsheeteditor/main/locale/si.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "වැඩපොත අනාරක්ෂණය",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/sk.json b/apps/spreadsheeteditor/main/locale/sk.json
index 069dd8bf16..b9e680a122 100644
--- a/apps/spreadsheeteditor/main/locale/sk.json
+++ b/apps/spreadsheeteditor/main/locale/sk.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Zrušte ochranu zošita",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/sl.json b/apps/spreadsheeteditor/main/locale/sl.json
index c3c7842124..493262f7eb 100644
--- a/apps/spreadsheeteditor/main/locale/sl.json
+++ b/apps/spreadsheeteditor/main/locale/sl.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Unprotect workbook",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/sr-cyrl.json b/apps/spreadsheeteditor/main/locale/sr-cyrl.json
index a89c7b6b13..d2cd99f145 100644
--- a/apps/spreadsheeteditor/main/locale/sr-cyrl.json
+++ b/apps/spreadsheeteditor/main/locale/sr-cyrl.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Незаштити радну књигу",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/sr.json b/apps/spreadsheeteditor/main/locale/sr.json
index fdd0f31390..763d5dcb20 100644
--- a/apps/spreadsheeteditor/main/locale/sr.json
+++ b/apps/spreadsheeteditor/main/locale/sr.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Nezaštiti radnu knjigu",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/sv.json b/apps/spreadsheeteditor/main/locale/sv.json
index 236e58abca..0cc8d4b413 100644
--- a/apps/spreadsheeteditor/main/locale/sv.json
+++ b/apps/spreadsheeteditor/main/locale/sv.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Lås upp arbetsboken",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/tr.json b/apps/spreadsheeteditor/main/locale/tr.json
index 30e03a31f0..e38c377136 100644
--- a/apps/spreadsheeteditor/main/locale/tr.json
+++ b/apps/spreadsheeteditor/main/locale/tr.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Korumasız Çalışma Sayfası",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/uk.json b/apps/spreadsheeteditor/main/locale/uk.json
index 83f86dcea3..3fcf15883a 100644
--- a/apps/spreadsheeteditor/main/locale/uk.json
+++ b/apps/spreadsheeteditor/main/locale/uk.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Зняти захист книги",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/vi.json b/apps/spreadsheeteditor/main/locale/vi.json
index e6ed037953..edab0f1f5f 100644
--- a/apps/spreadsheeteditor/main/locale/vi.json
+++ b/apps/spreadsheeteditor/main/locale/vi.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "Unprotect workbook",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/zh-tw.json b/apps/spreadsheeteditor/main/locale/zh-tw.json
index 79e7dcf59f..035062b4c1 100644
--- a/apps/spreadsheeteditor/main/locale/zh-tw.json
+++ b/apps/spreadsheeteditor/main/locale/zh-tw.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "解除工作簿保護",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/zh.json b/apps/spreadsheeteditor/main/locale/zh.json
index 75478ded17..22394a4515 100644
--- a/apps/spreadsheeteditor/main/locale/zh.json
+++ b/apps/spreadsheeteditor/main/locale/zh.json
@@ -4492,5 +4492,7 @@
"SSE.Views.WBProtection.txtWBUnlockTitle": "撤消工作簿保护",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling",
"SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side",
- "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left"
+ "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left",
+ "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart",
+ "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/mobile/src/less/icons-ios.less b/apps/spreadsheeteditor/mobile/src/less/icons-ios.less
index a145bbff78..ee08b96d8c 100644
--- a/apps/spreadsheeteditor/mobile/src/less/icons-ios.less
+++ b/apps/spreadsheeteditor/mobile/src/less/icons-ios.less
@@ -42,11 +42,6 @@
height: 22px;
.encoded-svg-mask('')
}
- &.icon-settings {
- width: 24px;
- height: 24px;
- .encoded-svg-mask('');
- }
&.icon-feedback {
width: 22px;
diff --git a/apps/spreadsheeteditor/mobile/src/less/icons-material.less b/apps/spreadsheeteditor/mobile/src/less/icons-material.less
index b94189b715..e0c9ede20b 100644
--- a/apps/spreadsheeteditor/mobile/src/less/icons-material.less
+++ b/apps/spreadsheeteditor/mobile/src/less/icons-material.less
@@ -369,11 +369,6 @@
height: 22px;
.encoded-svg-mask('', @toolbar-icons);
}
- &.icon-settings {
- width: 22px;
- height: 22px;
- .encoded-svg-mask('', @toolbar-icons);
- }
&.icon-prev {
width: 20px;
height: 20px;