From 4764897b87b2ccbf684c477dc10618ee9f707348 Mon Sep 17 00:00:00 2001 From: maxkadushkin Date: Wed, 13 Nov 2024 16:40:14 +0300 Subject: [PATCH 01/17] [desktop] refactoring --- .../app/controller/ApplicationController.js | 89 ------------------- 1 file changed, 89 deletions(-) diff --git a/apps/documenteditor/forms/app/controller/ApplicationController.js b/apps/documenteditor/forms/app/controller/ApplicationController.js index e9f8719289..cc97315cd7 100644 --- a/apps/documenteditor/forms/app/controller/ApplicationController.js +++ b/apps/documenteditor/forms/app/controller/ApplicationController.js @@ -2126,93 +2126,4 @@ define([ savingText: 'Saving' }, DE.Controllers.ApplicationController)); - -/* var Desktop = function () { - var features = { - version: '{{PRODUCT_VERSION}}', - // eventloading: true, - uitype: 'fillform', - uithemes: true - }; - var api, nativevars; - - var native = window.desktop || window.AscDesktopEditor; - !!native && native.execCommand('webapps:features', JSON.stringify(features)); - - if ( !!native ) { - $('#header-logo, .brand-logo').hide(); - - nativevars = window.RendererProcessVariable; - - window.on_native_message = function (cmd, param) { - if (/theme:changed/.test(cmd)) { - if ( Common.UI.Themes && !!Common.UI.Themes.setTheme ) - Common.UI.Themes.setTheme(param); - } else - if (/window:features/.test(cmd)) { - var obj = JSON.parse(param); - if ( obj.singlewindow !== undefined ) { - native.features.singlewindow = obj.singlewindow; - $("#title-doc-name")[obj.singlewindow ? 'hide' : 'show'](); - } - } - }; - - if ( !!window.native_message_cmd ) { - for ( var c in window.native_message_cmd ) { - window.on_native_message(c, window.native_message_cmd[c]); - } - } - - Common.NotificationCenter.on({ - 'uitheme:changed' : function (name) { - if (Common.localStorage.getBool('ui-theme-use-system', false)) { - native.execCommand("uitheme:changed", JSON.stringify({name:'theme-system'})); - } else { - const theme = Common.UI.Themes.get(name); - if ( theme ) - native.execCommand("uitheme:changed", JSON.stringify({name:name, type:theme.type})); - } - }, - }); - - Common.Gateway.on('opendocument', function () { - api = DE.getController('ApplicationController').api; - - $("#title-doc-name")[native.features.singlewindow ? 'hide' : 'show'](); - - var is_win_xp = window.RendererProcessVariable && window.RendererProcessVariable.os === 'winxp'; - Common.UI.Themes.setAvailable(!is_win_xp); - }); - } - - return { - isActive: function () { - return !!native; - }, - isOffline: function () { - return api && api.asc_isOffline(); - }, - process: function (opts) { - if ( !!native && !!api ) { - if ( opts == 'goback' ) { - var config = DE.getController('ApplicationController').editorConfig; - native.execCommand('go:folder', - api.asc_isOffline() ? 'offline' : config.customization.goback.url); - return true; - } - } - - return false; - }, - systemThemeType: function () { - return nativevars.theme && !!nativevars.theme.system ? nativevars.theme.system : - window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light'; - }, - } - }; - */ - // DE.Controllers.Desktop = new Desktop(); - // Common.Controllers = Common.Controllers || {}; - // Common.Controllers.Desktop = DE.Controllers.Desktop; }); From 5c7098336ac9a7f4ef99ed0eb8c72946ac75162e Mon Sep 17 00:00:00 2001 From: maxkadushkin Date: Wed, 13 Nov 2024 16:40:37 +0300 Subject: [PATCH 02/17] [desktop] for bug 71088 --- .../forms/app/controller/ApplicationController.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/documenteditor/forms/app/controller/ApplicationController.js b/apps/documenteditor/forms/app/controller/ApplicationController.js index cc97315cd7..17f6bb50f0 100644 --- a/apps/documenteditor/forms/app/controller/ApplicationController.js +++ b/apps/documenteditor/forms/app/controller/ApplicationController.js @@ -694,6 +694,8 @@ define([ return; } me.api.asc_SendForm(); + Common.Controllers.Desktop.process('goback'); + Common.Controllers.Desktop.requestClose(); }); me.view.btnDownload.on('click', function(){ if (me.appOptions.canDownload) { From 9b8499e8d9189954774546dbd2e003b88ec1c06a Mon Sep 17 00:00:00 2001 From: maxkadushkin Date: Thu, 21 Nov 2024 21:17:07 +0300 Subject: [PATCH 03/17] [DE mobile] fix bug 71031 --- apps/documenteditor/mobile/locale/en.json | 1 + .../mobile/src/controller/Toolbar.jsx | 15 ++++++++++++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/apps/documenteditor/mobile/locale/en.json b/apps/documenteditor/mobile/locale/en.json index dc3fdf3997..f062089e42 100644 --- a/apps/documenteditor/mobile/locale/en.json +++ b/apps/documenteditor/mobile/locale/en.json @@ -804,6 +804,7 @@ }, "Toolbar": { "btnSend": "Send", + "warnEmptyRequiredField": "Fill all required fields to send form.", "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", "dlgLeaveTitleText": "You leave the application", "leaveButtonText": "Leave this Page", diff --git a/apps/documenteditor/mobile/src/controller/Toolbar.jsx b/apps/documenteditor/mobile/src/controller/Toolbar.jsx index 1a82bb8ca5..096ab7f84e 100644 --- a/apps/documenteditor/mobile/src/controller/Toolbar.jsx +++ b/apps/documenteditor/mobile/src/controller/Toolbar.jsx @@ -377,7 +377,20 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeReview', 'sto const submitForm = () => { const api = Common.EditorApi.get(); - api.asc_SendForm(); + if (!api.asc_IsAllRequiredFormsFilled()) { + f7.dialog.create({ + title : '', + text : t('Toolbar.warnEmptyRequiredField'), + buttons : [ + { + text: t('Toolbar.textOk'), + onClick: () => api.asc_MoveToFillingForm(true, true, true) + } + ] + }).open(); + } else { + api.asc_SendForm(); + } } return ( From a83fc539678dd56bdce482efd26dd300b8c7449f Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 22 Nov 2024 14:53:14 +0300 Subject: [PATCH 04/17] Update translation --- apps/documenteditor/mobile/locale/ar.json | 3 +- apps/documenteditor/mobile/locale/az.json | 1 + apps/documenteditor/mobile/locale/be.json | 1 + apps/documenteditor/mobile/locale/bg.json | 3 +- apps/documenteditor/mobile/locale/ca.json | 1 + apps/documenteditor/mobile/locale/cs.json | 1 + apps/documenteditor/mobile/locale/da.json | 27 ++++++++--------- apps/documenteditor/mobile/locale/de.json | 3 +- apps/documenteditor/mobile/locale/el.json | 3 +- apps/documenteditor/mobile/locale/en.json | 4 +-- apps/documenteditor/mobile/locale/es.json | 3 +- apps/documenteditor/mobile/locale/eu.json | 1 + apps/documenteditor/mobile/locale/fi.json | 29 ++++++++++--------- apps/documenteditor/mobile/locale/fr.json | 3 +- apps/documenteditor/mobile/locale/gl.json | 1 + apps/documenteditor/mobile/locale/he.json | 3 +- apps/documenteditor/mobile/locale/hu.json | 1 + apps/documenteditor/mobile/locale/hy.json | 1 + apps/documenteditor/mobile/locale/id.json | 1 + apps/documenteditor/mobile/locale/it.json | 3 +- apps/documenteditor/mobile/locale/ja.json | 3 +- apps/documenteditor/mobile/locale/ko.json | 1 + apps/documenteditor/mobile/locale/lo.json | 1 + apps/documenteditor/mobile/locale/lv.json | 1 + apps/documenteditor/mobile/locale/ms.json | 1 + apps/documenteditor/mobile/locale/nl.json | 1 + apps/documenteditor/mobile/locale/pl.json | 1 + apps/documenteditor/mobile/locale/pt-pt.json | 1 + apps/documenteditor/mobile/locale/pt.json | 3 +- apps/documenteditor/mobile/locale/ro.json | 3 +- apps/documenteditor/mobile/locale/ru.json | 3 +- apps/documenteditor/mobile/locale/si.json | 3 +- apps/documenteditor/mobile/locale/sk.json | 1 + apps/documenteditor/mobile/locale/sl.json | 27 ++++++++--------- .../documenteditor/mobile/locale/sr-cyrl.json | 1 + apps/documenteditor/mobile/locale/sr.json | 3 +- apps/documenteditor/mobile/locale/sv.json | 27 ++++++++--------- apps/documenteditor/mobile/locale/tr.json | 1 + apps/documenteditor/mobile/locale/uk.json | 1 + apps/documenteditor/mobile/locale/vi.json | 3 +- apps/documenteditor/mobile/locale/zh-tw.json | 1 + apps/documenteditor/mobile/locale/zh.json | 3 +- 42 files changed, 112 insertions(+), 71 deletions(-) diff --git a/apps/documenteditor/mobile/locale/ar.json b/apps/documenteditor/mobile/locale/ar.json index 726d624d85..05fcd41f69 100644 --- a/apps/documenteditor/mobile/locale/ar.json +++ b/apps/documenteditor/mobile/locale/ar.json @@ -813,6 +813,7 @@ "textOk": "موافق", "textRenameFile": "إعادة تسمية الملف", "textSwitchedMobileView": "تم التبديل إلى عرض المحمول", - "textSwitchedStandardView": "تم التبديل إلى العرض القياسي" + "textSwitchedStandardView": "تم التبديل إلى العرض القياسي", + "warnEmptyRequiredField": "قم بملء كل الحقول المطلوبة لارسال الاستمارة." } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/az.json b/apps/documenteditor/mobile/locale/az.json index fa395934b9..0ec8d99e2f 100644 --- a/apps/documenteditor/mobile/locale/az.json +++ b/apps/documenteditor/mobile/locale/az.json @@ -809,6 +809,7 @@ "stayButtonText": "Bu səhifədə qalın", "textCloseHistory": "Tarixçəni bağlayın", "textOk": "OK", + "warnEmptyRequiredField": "Tələb olunan bütün sahələri doldurub formanı göndərin.", "btnSend": "Send", "textEnterNewFileName": "Enter a new file name", "textRenameFile": "Rename File", diff --git a/apps/documenteditor/mobile/locale/be.json b/apps/documenteditor/mobile/locale/be.json index 7faf172b48..faa2fe9828 100644 --- a/apps/documenteditor/mobile/locale/be.json +++ b/apps/documenteditor/mobile/locale/be.json @@ -808,6 +808,7 @@ "stayButtonText": "Застацца на старонцы", "textCloseHistory": "Закрыць гісторыю", "textOk": "Добра", + "warnEmptyRequiredField": "Запоўніце ўсе абавязковыя палі, патрэбныя для адпраўлення формы. ", "btnSend": "Send", "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", "textEnterNewFileName": "Enter a new file name", diff --git a/apps/documenteditor/mobile/locale/bg.json b/apps/documenteditor/mobile/locale/bg.json index 0da51fe0bd..2b45403fe3 100644 --- a/apps/documenteditor/mobile/locale/bg.json +++ b/apps/documenteditor/mobile/locale/bg.json @@ -813,6 +813,7 @@ "textOk": "OK", "textRenameFile": "Rename File", "textSwitchedMobileView": "Switched to Mobile view", - "textSwitchedStandardView": "Switched to Standard view" + "textSwitchedStandardView": "Switched to Standard view", + "warnEmptyRequiredField": "Fill all required fields to send form." } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/ca.json b/apps/documenteditor/mobile/locale/ca.json index 34f224bd1a..896221ce90 100644 --- a/apps/documenteditor/mobile/locale/ca.json +++ b/apps/documenteditor/mobile/locale/ca.json @@ -813,6 +813,7 @@ "textRenameFile": "Canvia el nom del fitxer", "textSwitchedMobileView": "S'ha canviat a visualització mòbil", "textSwitchedStandardView": "S'ha canviat a visualització estàndard", + "warnEmptyRequiredField": "Emplena tots els camps necessaris per enviar el formulari.", "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 2adaedecc3..9eb9b5f4a4 100644 --- a/apps/documenteditor/mobile/locale/cs.json +++ b/apps/documenteditor/mobile/locale/cs.json @@ -813,6 +813,7 @@ "textRenameFile": "Přejmenovat soubor", "textSwitchedMobileView": "Přepnout na mobilní zobrazení", "textSwitchedStandardView": "Přepnout na standartní zobrazení", + "warnEmptyRequiredField": "Pro odeslání formuláře vyplňte všechna požadovaná pole.", "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 351fcac8d1..b47c307d96 100644 --- a/apps/documenteditor/mobile/locale/da.json +++ b/apps/documenteditor/mobile/locale/da.json @@ -659,6 +659,20 @@ "txtOk": "Ok", "txtProtected": "Once you enter the password and open the file, the current password will be reset" }, + "Toolbar": { + "warnEmptyRequiredField": "Udfyld alle obligatoriske felter for at sende formularen.", + "btnSend": "Send", + "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this page", + "textCloseHistory": "Close History", + "textEnterNewFileName": "Enter a new file name", + "textOk": "OK", + "textRenameFile": "Rename File", + "textSwitchedMobileView": "Switched to Mobile view", + "textSwitchedStandardView": "Switched to Standard view" + }, "About": { "textAbout": "About", "textAddress": "Address", @@ -801,18 +815,5 @@ "uploadImageTextText": "Uploading image...", "uploadImageTitleText": "Uploading Image", "waitText": "Please, wait..." - }, - "Toolbar": { - "btnSend": "Send", - "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this Page", - "stayButtonText": "Stay on this page", - "textCloseHistory": "Close History", - "textEnterNewFileName": "Enter a new file name", - "textOk": "OK", - "textRenameFile": "Rename File", - "textSwitchedMobileView": "Switched to Mobile view", - "textSwitchedStandardView": "Switched to Standard view" } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/de.json b/apps/documenteditor/mobile/locale/de.json index 54a30fda72..9040694d3f 100644 --- a/apps/documenteditor/mobile/locale/de.json +++ b/apps/documenteditor/mobile/locale/de.json @@ -813,6 +813,7 @@ "textOk": "OK", "textRenameFile": "Datei umbenennen", "textSwitchedMobileView": "Mobile Ansicht aktiviert", - "textSwitchedStandardView": "Standard-Ansicht aktiviert" + "textSwitchedStandardView": "Standard-Ansicht aktiviert", + "warnEmptyRequiredField": "Füllen Sie alle erforderlichen Felder aus, um das Formular zu senden." } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/el.json b/apps/documenteditor/mobile/locale/el.json index 5b62e3d2ab..8299f66269 100644 --- a/apps/documenteditor/mobile/locale/el.json +++ b/apps/documenteditor/mobile/locale/el.json @@ -813,6 +813,7 @@ "textOk": "Εντάξει", "textRenameFile": "Μετονομασία αρχείου", "textSwitchedMobileView": "Μετάβαση σε προβολή κινητού", - "textSwitchedStandardView": "Εναλλαγή σε τυπική προβολή" + "textSwitchedStandardView": "Εναλλαγή σε τυπική προβολή", + "warnEmptyRequiredField": "Συμπληρώστε όλα τα απαιτούμενα πεδία για την αποστολή της φόρμας." } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/en.json b/apps/documenteditor/mobile/locale/en.json index f062089e42..dc2d268c63 100644 --- a/apps/documenteditor/mobile/locale/en.json +++ b/apps/documenteditor/mobile/locale/en.json @@ -804,7 +804,6 @@ }, "Toolbar": { "btnSend": "Send", - "warnEmptyRequiredField": "Fill all required fields to send form.", "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", "dlgLeaveTitleText": "You leave the application", "leaveButtonText": "Leave this Page", @@ -814,6 +813,7 @@ "textOk": "OK", "textRenameFile": "Rename File", "textSwitchedMobileView": "Switched to Mobile view", - "textSwitchedStandardView": "Switched to Standard view" + "textSwitchedStandardView": "Switched to Standard view", + "warnEmptyRequiredField": "Fill all required fields to send form." } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/es.json b/apps/documenteditor/mobile/locale/es.json index cd2c7b3318..e6c3ad28f6 100644 --- a/apps/documenteditor/mobile/locale/es.json +++ b/apps/documenteditor/mobile/locale/es.json @@ -813,6 +813,7 @@ "textOk": "Aceptar", "textRenameFile": "Renombrar archivo", "textSwitchedMobileView": "Cambiado a vista móvil", - "textSwitchedStandardView": "Cambiado a vista estándar" + "textSwitchedStandardView": "Cambiado a vista estándar", + "warnEmptyRequiredField": "Rellene todos los campos obligatorios para enviar el formulario." } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/eu.json b/apps/documenteditor/mobile/locale/eu.json index b5cd109950..a5d9978770 100644 --- a/apps/documenteditor/mobile/locale/eu.json +++ b/apps/documenteditor/mobile/locale/eu.json @@ -813,6 +813,7 @@ "textRenameFile": "Berrizendatu fitxategia", "textSwitchedMobileView": "Mugikorreko ikuspegira aldatu da", "textSwitchedStandardView": "Ikuspegi estandarrera aldatu da", + "warnEmptyRequiredField": "Bete derrigorrezko eremu guztiak formularioa bidaltzeko.", "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 bc1a66aca8..9af211fed1 100644 --- a/apps/documenteditor/mobile/locale/fi.json +++ b/apps/documenteditor/mobile/locale/fi.json @@ -129,6 +129,7 @@ } }, "Settings": { + "textFillingForms": "Lomakkeiden täyttäminen", "textSameAsSystem": "Sama kuin järjetelmässä", "advDRMOptions": "Protected File", "advDRMPassword": "Password", @@ -184,7 +185,6 @@ "textExportAs": "Export As", "textFastWV": "Fast Web View", "textFeedback": "Feedback & Support", - "textFillingForms": "Filling forms", "textFind": "Find", "textFindAndReplace": "Find and Replace", "textFindAndReplaceAll": "Find and Replace All", @@ -270,6 +270,20 @@ "txtOk": "Ok", "txtProtected": "Once you enter the password and open the file, the current password will be reset" }, + "Toolbar": { + "warnEmptyRequiredField": "Täytä kaikki vaaditut kentät lähettääksesi lomakkeen.", + "btnSend": "Send", + "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this page", + "textCloseHistory": "Close History", + "textEnterNewFileName": "Enter a new file name", + "textOk": "OK", + "textRenameFile": "Rename File", + "textSwitchedMobileView": "Switched to Mobile view", + "textSwitchedStandardView": "Switched to Standard view" + }, "About": { "textAbout": "About", "textAddress": "Address", @@ -801,18 +815,5 @@ "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", "warnProcessRightsChange": "You don't have permission to edit this file." - }, - "Toolbar": { - "btnSend": "Send", - "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this Page", - "stayButtonText": "Stay on this page", - "textCloseHistory": "Close History", - "textEnterNewFileName": "Enter a new file name", - "textOk": "OK", - "textRenameFile": "Rename File", - "textSwitchedMobileView": "Switched to Mobile view", - "textSwitchedStandardView": "Switched to Standard view" } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/fr.json b/apps/documenteditor/mobile/locale/fr.json index 7d1172c524..dc7fb6c1d0 100644 --- a/apps/documenteditor/mobile/locale/fr.json +++ b/apps/documenteditor/mobile/locale/fr.json @@ -813,6 +813,7 @@ "textOk": "OK", "textRenameFile": "Renommer le fichier", "textSwitchedMobileView": "Passé à l'affichage mobile", - "textSwitchedStandardView": "Passé à l'affichage standard" + "textSwitchedStandardView": "Passé à l'affichage standard", + "warnEmptyRequiredField": "Veuillez remplir tous les champs obligatoires avant d'envoyer le formulaire." } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/gl.json b/apps/documenteditor/mobile/locale/gl.json index 7f2a5ae252..5aeeeb947f 100644 --- a/apps/documenteditor/mobile/locale/gl.json +++ b/apps/documenteditor/mobile/locale/gl.json @@ -809,6 +809,7 @@ "stayButtonText": "Quedarse nesta páxina", "textCloseHistory": "Pechar historial", "textOk": "Aceptar", + "warnEmptyRequiredField": "Encha todos os campos obrigatorios para poder enviar o formulario.", "btnSend": "Send", "textEnterNewFileName": "Enter a new file name", "textRenameFile": "Rename File", diff --git a/apps/documenteditor/mobile/locale/he.json b/apps/documenteditor/mobile/locale/he.json index 88ceabc6ec..fb0b555d39 100644 --- a/apps/documenteditor/mobile/locale/he.json +++ b/apps/documenteditor/mobile/locale/he.json @@ -813,6 +813,7 @@ "textOk": "בסדר", "textRenameFile": "שינוי שם קובץ", "textSwitchedMobileView": "החלפה לתצוגה ניידת", - "textSwitchedStandardView": "החלפה לתצוגה רגילה" + "textSwitchedStandardView": "החלפה לתצוגה רגילה", + "warnEmptyRequiredField": "מלא את כל השדות הדרושים כדי לשלוח טופס." } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/hu.json b/apps/documenteditor/mobile/locale/hu.json index 9bc8d4ed45..af5cbe2af4 100644 --- a/apps/documenteditor/mobile/locale/hu.json +++ b/apps/documenteditor/mobile/locale/hu.json @@ -813,6 +813,7 @@ "textRenameFile": "Fájl Átnevezése", "textSwitchedMobileView": "Váltás Mobil nézetre", "textSwitchedStandardView": "Normál nézetre váltott", + "warnEmptyRequiredField": "Az űrlap elküldéséhez töltse ki az összes szükséges mezőt.", "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 872c5b9ead..0e17107903 100644 --- a/apps/documenteditor/mobile/locale/hy.json +++ b/apps/documenteditor/mobile/locale/hy.json @@ -813,6 +813,7 @@ "textRenameFile": "Վերանվանել ֆայլը", "textSwitchedMobileView": " Փոխարկվել է բջջային տեսքի", "textSwitchedStandardView": " Փոխարկվել է ստանդարտ տեսքի", + "warnEmptyRequiredField": "Լրացրել բոլոր անհրաժեշտ դաշտերը՝ ձևն ուղարկելու համար:", "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 a53fd787bc..b1b9b63ee7 100644 --- a/apps/documenteditor/mobile/locale/id.json +++ b/apps/documenteditor/mobile/locale/id.json @@ -813,6 +813,7 @@ "textRenameFile": "Ganti Nama File", "textSwitchedMobileView": "Beralih ke Tampilan seluler", "textSwitchedStandardView": "Beralih ke Tampilan standar", + "warnEmptyRequiredField": "Isi semua ruas yang dibutuhkan untuk mengirim formulir.", "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 c23e480a0a..eab54bd3f3 100644 --- a/apps/documenteditor/mobile/locale/it.json +++ b/apps/documenteditor/mobile/locale/it.json @@ -813,6 +813,7 @@ "textOk": "OK", "textRenameFile": "Rinomina file", "textSwitchedMobileView": "Passato alla visualizzazione per dispositivi mobili", - "textSwitchedStandardView": "Passato alla visualizzazione standard" + "textSwitchedStandardView": "Passato alla visualizzazione standard", + "warnEmptyRequiredField": "Compila tutti i campi richiesti per inviare il modulo." } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/ja.json b/apps/documenteditor/mobile/locale/ja.json index 595a137bb1..cebf9d03ea 100644 --- a/apps/documenteditor/mobile/locale/ja.json +++ b/apps/documenteditor/mobile/locale/ja.json @@ -813,6 +813,7 @@ "textOk": "OK", "textRenameFile": "ファイル名の変更", "textSwitchedMobileView": "モバイルビューに切り替えました", - "textSwitchedStandardView": "標準ビューに切り替えました" + "textSwitchedStandardView": "標準ビューに切り替えました", + "warnEmptyRequiredField": "必須事項をすべて入力し、送信してください。" } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/ko.json b/apps/documenteditor/mobile/locale/ko.json index c772af9f81..d634af69db 100644 --- a/apps/documenteditor/mobile/locale/ko.json +++ b/apps/documenteditor/mobile/locale/ko.json @@ -813,6 +813,7 @@ "textRenameFile": "파일 이름 변경", "textSwitchedMobileView": "모바일 보기로 전환되었습니다.", "textSwitchedStandardView": "표준 보기로 전환되었습니다.", + "warnEmptyRequiredField": "양식을 보내려면 모든 필수 필드를 채우십시오.", "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 f882e06244..27072a4dfd 100644 --- a/apps/documenteditor/mobile/locale/lo.json +++ b/apps/documenteditor/mobile/locale/lo.json @@ -807,6 +807,7 @@ "dlgLeaveTitleText": "ທ່ານໄດ້ອອກຈາກໜ້າຄໍາຮ້ອງສະຫມັກ", "leaveButtonText": "ອອກຈາກໜ້ານີ້", "stayButtonText": "ຢູ່ໃນໜ້ານີ້", + "warnEmptyRequiredField": "ຕື່ມຂໍ້ມູນໃສ່ທຸກຊ່ອງທີ່ຕ້ອງການເພື່ອສົ່ງແບບຟອມ.", "btnSend": "Send", "textCloseHistory": "Close History", "textEnterNewFileName": "Enter a new file name", diff --git a/apps/documenteditor/mobile/locale/lv.json b/apps/documenteditor/mobile/locale/lv.json index f0667680a7..4e5dbb0cac 100644 --- a/apps/documenteditor/mobile/locale/lv.json +++ b/apps/documenteditor/mobile/locale/lv.json @@ -811,6 +811,7 @@ "textOk": "Labi", "textSwitchedMobileView": "Pārslēgts uz mobilo skatu", "textSwitchedStandardView": "Pārslēgts uz standarta skatu", + "warnEmptyRequiredField": "Aizpildiet visus obligātos laukus, lai nosūtītu veidlapu.", "btnSend": "Send", "textEnterNewFileName": "Enter a new file name", "textRenameFile": "Rename File" diff --git a/apps/documenteditor/mobile/locale/ms.json b/apps/documenteditor/mobile/locale/ms.json index f3e6f7a0b5..5c614c977f 100644 --- a/apps/documenteditor/mobile/locale/ms.json +++ b/apps/documenteditor/mobile/locale/ms.json @@ -808,6 +808,7 @@ "leaveButtonText": "Tinggalkan Halaman ini", "stayButtonText": "Kekal pada Halaman ini", "textOk": "Okey", + "warnEmptyRequiredField": "Isi semua medan diperlukan untuk menyerahkan borang.", "btnSend": "Send", "textCloseHistory": "Close History", "textEnterNewFileName": "Enter a new file name", diff --git a/apps/documenteditor/mobile/locale/nl.json b/apps/documenteditor/mobile/locale/nl.json index 03f978693f..75bc95a625 100644 --- a/apps/documenteditor/mobile/locale/nl.json +++ b/apps/documenteditor/mobile/locale/nl.json @@ -807,6 +807,7 @@ "dlgLeaveTitleText": "U verlaat de toepassing", "leaveButtonText": "Pagina verlaten", "stayButtonText": "Op deze pagina blijven", + "warnEmptyRequiredField": "Vul alle verplichte velden in om het formulier te verzenden.", "btnSend": "Send", "textCloseHistory": "Close History", "textEnterNewFileName": "Enter a new file name", diff --git a/apps/documenteditor/mobile/locale/pl.json b/apps/documenteditor/mobile/locale/pl.json index 0038d70fdd..3433f2ad79 100644 --- a/apps/documenteditor/mobile/locale/pl.json +++ b/apps/documenteditor/mobile/locale/pl.json @@ -807,6 +807,7 @@ "textCloseHistory": "Zamknij historię", "textEnterNewFileName": "Wprowadź nową nazwę pliku", "textOk": "OK", + "warnEmptyRequiredField": "Wypełnij wszystkie wymagane pola, aby wysłać formularz.", "btnSend": "Send", "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", "dlgLeaveTitleText": "You leave the application", diff --git a/apps/documenteditor/mobile/locale/pt-pt.json b/apps/documenteditor/mobile/locale/pt-pt.json index 8c43561a36..5b1416e18f 100644 --- a/apps/documenteditor/mobile/locale/pt-pt.json +++ b/apps/documenteditor/mobile/locale/pt-pt.json @@ -813,6 +813,7 @@ "textRenameFile": "Mudar nome do ficheiro", "textSwitchedMobileView": "Alterado para vista móvel", "textSwitchedStandardView": "Alterado para a vista predefinida", + "warnEmptyRequiredField": "Preencha todos os campos obrigatórios para enviar o formulário.", "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 d6276dc531..2815113de0 100644 --- a/apps/documenteditor/mobile/locale/pt.json +++ b/apps/documenteditor/mobile/locale/pt.json @@ -813,6 +813,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", + "warnEmptyRequiredField": "Preencha todos os campos obrigatórios para enviar o formulário." } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/ro.json b/apps/documenteditor/mobile/locale/ro.json index e49d8d6d1d..8fea6aad6e 100644 --- a/apps/documenteditor/mobile/locale/ro.json +++ b/apps/documenteditor/mobile/locale/ro.json @@ -813,6 +813,7 @@ "textOk": "OK", "textRenameFile": "Redenumire fișier", "textSwitchedMobileView": "Comutat la vizualizarea mobilă", - "textSwitchedStandardView": "Comutat la vizualizarea standard" + "textSwitchedStandardView": "Comutat la vizualizarea standard", + "warnEmptyRequiredField": "Toate câmpurile din formular trebuie completate înainte de a-l trimite." } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/ru.json b/apps/documenteditor/mobile/locale/ru.json index 6002216c38..c7bec7d38a 100644 --- a/apps/documenteditor/mobile/locale/ru.json +++ b/apps/documenteditor/mobile/locale/ru.json @@ -813,6 +813,7 @@ "textOk": "OK", "textRenameFile": "Переименовать файл", "textSwitchedMobileView": "Переключено на мобильный вид", - "textSwitchedStandardView": "Переключено на стандартный вид" + "textSwitchedStandardView": "Переключено на стандартный вид", + "warnEmptyRequiredField": "Заполните все обязательные поля для отправки формы." } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/si.json b/apps/documenteditor/mobile/locale/si.json index a92bc5c720..6d622e9ad4 100644 --- a/apps/documenteditor/mobile/locale/si.json +++ b/apps/documenteditor/mobile/locale/si.json @@ -813,6 +813,7 @@ "textOk": "හරි", "textRenameFile": "ගොනුව නම් කරන්න", "textSwitchedMobileView": "ජංගම දැක්මට මාරු විය", - "textSwitchedStandardView": "සම්මත දැක්මට මාරු විය" + "textSwitchedStandardView": "සම්මත දැක්මට මාරු විය", + "warnEmptyRequiredField": "ආකෘතිපත්‍රය යැවීමට වුවමනා සියළුම ක්‍ෂේත්‍ර පුරවන්න." } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/sk.json b/apps/documenteditor/mobile/locale/sk.json index c271d0f8a6..82f1e611bc 100644 --- a/apps/documenteditor/mobile/locale/sk.json +++ b/apps/documenteditor/mobile/locale/sk.json @@ -807,6 +807,7 @@ "dlgLeaveTitleText": "Opúšťate aplikáciu", "leaveButtonText": "Opustiť túto stránku", "stayButtonText": "Zostať na tejto stránke", + "warnEmptyRequiredField": "Vyplňte všetky požadované polia, aby ste formulár mohli odoslať.", "btnSend": "Send", "textCloseHistory": "Close History", "textEnterNewFileName": "Enter a new file name", diff --git a/apps/documenteditor/mobile/locale/sl.json b/apps/documenteditor/mobile/locale/sl.json index 049807d277..d1f38bcf53 100644 --- a/apps/documenteditor/mobile/locale/sl.json +++ b/apps/documenteditor/mobile/locale/sl.json @@ -701,6 +701,20 @@ "txtOk": "Ok", "txtProtected": "Once you enter the password and open the file, the current password will be reset" }, + "Toolbar": { + "warnEmptyRequiredField": "Za pošiljanje obrazca izpolnite vsa potrebna polja,", + "btnSend": "Send", + "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this page", + "textCloseHistory": "Close History", + "textEnterNewFileName": "Enter a new file name", + "textOk": "OK", + "textRenameFile": "Rename File", + "textSwitchedMobileView": "Switched to Mobile view", + "textSwitchedStandardView": "Switched to Standard view" + }, "Error": { "convertationTimeoutText": "Conversion timeout exceeded.", "criticalErrorExtText": "Press 'OK' to go back to the document list.", @@ -801,18 +815,5 @@ "uploadImageTextText": "Uploading image...", "uploadImageTitleText": "Uploading Image", "waitText": "Please, wait..." - }, - "Toolbar": { - "btnSend": "Send", - "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this Page", - "stayButtonText": "Stay on this page", - "textCloseHistory": "Close History", - "textEnterNewFileName": "Enter a new file name", - "textOk": "OK", - "textRenameFile": "Rename File", - "textSwitchedMobileView": "Switched to Mobile view", - "textSwitchedStandardView": "Switched to Standard view" } } \ 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 efa8350f0d..1ee65b10ab 100644 --- a/apps/documenteditor/mobile/locale/sr-cyrl.json +++ b/apps/documenteditor/mobile/locale/sr-cyrl.json @@ -813,6 +813,7 @@ "textRenameFile": "Преименуј фајл", "textSwitchedMobileView": "Пребачено на мобилни приказ", "textSwitchedStandardView": "Пребачено на стандардни приказ", + "warnEmptyRequiredField": "Попуни сва потребна поља за слање обрасца.", "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 0bd9b7b0b1..e9eb536109 100644 --- a/apps/documenteditor/mobile/locale/sr.json +++ b/apps/documenteditor/mobile/locale/sr.json @@ -813,6 +813,7 @@ "textOk": "OK", "textRenameFile": "Preimenuj Fajl", "textSwitchedMobileView": "Prebačeno na mobilni prikaz", - "textSwitchedStandardView": "Prebačeno na standardni prikaz" + "textSwitchedStandardView": "Prebačeno na standardni prikaz", + "warnEmptyRequiredField": "Popuni sva potrebna polja za slanje obrasca." } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/sv.json b/apps/documenteditor/mobile/locale/sv.json index 711ce9f0f3..ae9038f871 100644 --- a/apps/documenteditor/mobile/locale/sv.json +++ b/apps/documenteditor/mobile/locale/sv.json @@ -763,6 +763,20 @@ "txtOk": "Ok", "txtProtected": "Once you enter the password and open the file, the current password will be reset" }, + "Toolbar": { + "warnEmptyRequiredField": "Fyll i alla fält för att skicka formulär.", + "btnSend": "Send", + "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this page", + "textCloseHistory": "Close History", + "textEnterNewFileName": "Enter a new file name", + "textOk": "OK", + "textRenameFile": "Rename File", + "textSwitchedMobileView": "Switched to Mobile view", + "textSwitchedStandardView": "Switched to Standard view" + }, "LongActions": { "applyChangesTextText": "Loading data...", "applyChangesTitleText": "Loading Data", @@ -801,18 +815,5 @@ "uploadImageTextText": "Uploading image...", "uploadImageTitleText": "Uploading Image", "waitText": "Please, wait..." - }, - "Toolbar": { - "btnSend": "Send", - "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this Page", - "stayButtonText": "Stay on this page", - "textCloseHistory": "Close History", - "textEnterNewFileName": "Enter a new file name", - "textOk": "OK", - "textRenameFile": "Rename File", - "textSwitchedMobileView": "Switched to Mobile view", - "textSwitchedStandardView": "Switched to Standard view" } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/tr.json b/apps/documenteditor/mobile/locale/tr.json index 864ad838b4..3186b26a04 100644 --- a/apps/documenteditor/mobile/locale/tr.json +++ b/apps/documenteditor/mobile/locale/tr.json @@ -813,6 +813,7 @@ "textRenameFile": "Dosyayı yeniden adlandır.", "textSwitchedMobileView": "Mobil görünüme geçildi", "textSwitchedStandardView": "Standart görünüme geçildi", + "warnEmptyRequiredField": "Formu gönderebilmek için gerekli tüm alanları doldurun.", "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 a4fec6598d..008a7f5479 100644 --- a/apps/documenteditor/mobile/locale/uk.json +++ b/apps/documenteditor/mobile/locale/uk.json @@ -807,6 +807,7 @@ "dlgLeaveTitleText": "Ви виходите з програми", "leaveButtonText": "Залишити цю сторінку", "stayButtonText": "Залишитися на сторінці", + "warnEmptyRequiredField": "Заповніть всі обов'язкові поля для відправлення форми.", "btnSend": "Send", "textCloseHistory": "Close History", "textEnterNewFileName": "Enter a new file name", diff --git a/apps/documenteditor/mobile/locale/vi.json b/apps/documenteditor/mobile/locale/vi.json index 2e7beacc7c..5662da8b53 100644 --- a/apps/documenteditor/mobile/locale/vi.json +++ b/apps/documenteditor/mobile/locale/vi.json @@ -845,6 +845,7 @@ "textRenameFile": "Rename File", "textEnterNewFileName": "Enter a new file name", "textCloseHistory": "Close History", - "btnSend": "Send" + "btnSend": "Send", + "warnEmptyRequiredField": "Fill all required fields to send form." } } \ 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 85828e76e3..5270212e32 100644 --- a/apps/documenteditor/mobile/locale/zh-tw.json +++ b/apps/documenteditor/mobile/locale/zh-tw.json @@ -810,6 +810,7 @@ "textOk": "好", "textSwitchedMobileView": "切換至行動版檢視", "textSwitchedStandardView": "切換至標準版檢視", + "warnEmptyRequiredField": "填寫所有必填欄位以傳送表單。", "btnSend": "Send", "textCloseHistory": "Close History", "textEnterNewFileName": "Enter a new file name", diff --git a/apps/documenteditor/mobile/locale/zh.json b/apps/documenteditor/mobile/locale/zh.json index 020dfef2c2..3f6ab5c9fb 100644 --- a/apps/documenteditor/mobile/locale/zh.json +++ b/apps/documenteditor/mobile/locale/zh.json @@ -813,6 +813,7 @@ "textOk": "确定", "textRenameFile": "重命名文件", "textSwitchedMobileView": "切换到“移动设备”视图", - "textSwitchedStandardView": "切换到标准视图" + "textSwitchedStandardView": "切换到标准视图", + "warnEmptyRequiredField": "要发送表单,请填写所有必填项。" } } \ No newline at end of file From bc917736022b93a8a5fad9450b8bc2d2480dae15 Mon Sep 17 00:00:00 2001 From: maxkadushkin Date: Fri, 22 Nov 2024 15:29:20 +0300 Subject: [PATCH 05/17] [DE mobile] added title in message --- apps/documenteditor/mobile/src/controller/Toolbar.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/documenteditor/mobile/src/controller/Toolbar.jsx b/apps/documenteditor/mobile/src/controller/Toolbar.jsx index 096ab7f84e..5f127d7c17 100644 --- a/apps/documenteditor/mobile/src/controller/Toolbar.jsx +++ b/apps/documenteditor/mobile/src/controller/Toolbar.jsx @@ -379,7 +379,7 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeReview', 'sto const api = Common.EditorApi.get(); if (!api.asc_IsAllRequiredFormsFilled()) { f7.dialog.create({ - title : '', + title : t('Main.notcriticalErrorTitle'), text : t('Toolbar.warnEmptyRequiredField'), buttons : [ { From 0daa6c5c8b57ad402bd65ff989ff03ba2fac0de1 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 22 Nov 2024 21:52:06 +0300 Subject: [PATCH 06/17] Fix loading not-rtl language --- apps/common/locale.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/apps/common/locale.js b/apps/common/locale.js index f8d01da102..01ffd7d39f 100644 --- a/apps/common/locale.js +++ b/apps/common/locale.js @@ -43,6 +43,7 @@ Common.Locale = new(function() { _4letterLangs = ['pt-pt', 'zh-tw', 'sr-cyrl']; var _applyLocalization = function(callback) { + _fixRtl(); try { callback && (loadcallback = callback); if (l10n) { @@ -160,6 +161,15 @@ Common.Locale = new(function() { }); }; + var _fixRtl = function(prop, scope) { + if (!_isCurrentRtl() && document.body.classList.contains('rtl')) { + document.body.removeAttribute('dir'); + document.body.classList.remove('rtl'); + document.body.classList.remove('rtl-font'); + document.body.setAttribute('applang', currentLang); + } + }; + if ( !window.fetch ) { /* use fetch polifill if native method isn't supported */ var polyfills = ['../vendor/fetch/fetch.umd']; From 2587e1e0f5b1acf5bad8446ec1c3e9a1082ea107 Mon Sep 17 00:00:00 2001 From: maxkadushkin Date: Sat, 23 Nov 2024 00:06:02 +0300 Subject: [PATCH 07/17] [DE mobile] fix "Mobile View" option for PDF forms --- apps/documenteditor/mobile/src/controller/Main.jsx | 10 +++++----- apps/documenteditor/mobile/src/controller/Toolbar.jsx | 1 + apps/documenteditor/mobile/src/store/appOptions.js | 1 + apps/documenteditor/mobile/src/view/Toolbar.jsx | 2 +- .../mobile/src/view/settings/SettingsPage.jsx | 2 +- 5 files changed, 9 insertions(+), 7 deletions(-) diff --git a/apps/documenteditor/mobile/src/controller/Main.jsx b/apps/documenteditor/mobile/src/controller/Main.jsx index a2801fd532..97adb8ea46 100644 --- a/apps/documenteditor/mobile/src/controller/Main.jsx +++ b/apps/documenteditor/mobile/src/controller/Main.jsx @@ -347,7 +347,6 @@ class MainController extends Component { const isOForm = appOptions.isOForm; const appSettings = this.props.storeApplicationSettings; const customization = appOptions.customization; - const isStandardView = customization?.mobile?.standardView ?? false; f7.emit('resize'); @@ -378,10 +377,10 @@ class MainController extends Component { appSettings.changeShowTableEmptyLine(value); this.api.put_ShowTableEmptyLine(value); - - value = LocalStorage.getBool('mobile-view'); + value = LocalStorage.itemExists('mobile-view') ? + LocalStorage.getBool('mobile-view') : !(customization?.mobile?.standardView ?? false); - if(value || !isStandardView) { + if(appOptions.isMobileViewAvailable && value) { this.api.ChangeReaderMode(); } else { appOptions.changeMobileView(); @@ -466,7 +465,8 @@ class MainController extends Component { Common.Utils.Metric.setCurrentMetric(1); //pt - this.appOptions = {isCorePDF: isPDF}; + this.appOptions = {isCorePDF: isPDF}; + this.props.storeAppOptions.isMobileViewAvailable = !this.appOptions.isCorePDF; this.bindEvents(); Common.Gateway.on('init', loadConfig); diff --git a/apps/documenteditor/mobile/src/controller/Toolbar.jsx b/apps/documenteditor/mobile/src/controller/Toolbar.jsx index 5f127d7c17..c851fabc6f 100644 --- a/apps/documenteditor/mobile/src/controller/Toolbar.jsx +++ b/apps/documenteditor/mobile/src/controller/Toolbar.jsx @@ -418,6 +418,7 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeReview', 'sto isViewer={isViewer} turnOnViewerMode={turnOnViewerMode} isMobileView={isMobileView} + isMobileViewAvailable={appOptions.isMobileViewAvailable} changeMobileView={changeMobileView} changeTitleHandler={changeTitleHandler} isVersionHistoryMode={isVersionHistoryMode} diff --git a/apps/documenteditor/mobile/src/store/appOptions.js b/apps/documenteditor/mobile/src/store/appOptions.js index 10513b6f84..ee26d13539 100644 --- a/apps/documenteditor/mobile/src/store/appOptions.js +++ b/apps/documenteditor/mobile/src/store/appOptions.js @@ -65,6 +65,7 @@ export class storeAppOptions { this.typeProtection = type; } + isMobileViewAvailable = true; isMobileView = true; changeMobileView() { this.isMobileView = !this.isMobileView; diff --git a/apps/documenteditor/mobile/src/view/Toolbar.jsx b/apps/documenteditor/mobile/src/view/Toolbar.jsx index a501573d50..ca22d1ade3 100644 --- a/apps/documenteditor/mobile/src/view/Toolbar.jsx +++ b/apps/documenteditor/mobile/src/view/Toolbar.jsx @@ -62,7 +62,7 @@ const ToolbarView = props => { }) } {!isEditableForms ? [ - ((isViewer || !Device.phone) && isAvailableExt && !props.disabledControls && !isVersionHistoryMode) && + ((isViewer || !Device.phone) && props.isMobileViewAvailable && !props.disabledControls && !isVersionHistoryMode) && { props.changeMobileView(); props.openOptions('snackbar'); diff --git a/apps/documenteditor/mobile/src/view/settings/SettingsPage.jsx b/apps/documenteditor/mobile/src/view/settings/SettingsPage.jsx index dfdb1931af..3075d3aa06 100644 --- a/apps/documenteditor/mobile/src/view/settings/SettingsPage.jsx +++ b/apps/documenteditor/mobile/src/view/settings/SettingsPage.jsx @@ -126,7 +126,7 @@ const SettingsPage = inject("storeAppOptions", "storeReview", "storeDocumentInfo } - {((!isViewer && Device.phone) || isEditableForms) && + {(appOptions.isMobileViewAvailable && ((Device.phone && !isViewer) || isEditableForms)) && { From 475ef968a52a1dd4b32f7902da14f53b994acb36 Mon Sep 17 00:00:00 2001 From: maxkadushkin Date: Sat, 23 Nov 2024 00:11:07 +0300 Subject: [PATCH 08/17] [DE mobile] fix "Settings" popup position --- apps/documenteditor/mobile/src/view/Toolbar.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/documenteditor/mobile/src/view/Toolbar.jsx b/apps/documenteditor/mobile/src/view/Toolbar.jsx index ca22d1ade3..c2122535bc 100644 --- a/apps/documenteditor/mobile/src/view/Toolbar.jsx +++ b/apps/documenteditor/mobile/src/view/Toolbar.jsx @@ -96,6 +96,7 @@ const ToolbarView = props => { props.openOptions('settings')}>, Date: Sun, 24 Nov 2024 00:44:02 +0300 Subject: [PATCH 09/17] [desktop] for bug 71691 --- apps/common/main/lib/controller/Desktop.js | 5 +++++ .../forms/app/controller/ApplicationController.js | 1 + 2 files changed, 6 insertions(+) diff --git a/apps/common/main/lib/controller/Desktop.js b/apps/common/main/lib/controller/Desktop.js index 13d5456720..2e307a73ac 100644 --- a/apps/common/main/lib/controller/Desktop.js +++ b/apps/common/main/lib/controller/Desktop.js @@ -663,6 +663,11 @@ define([ native.execCommand('editor:event', JSON.stringify({action:'file:close', url: config.customization.goback.url})); } }, + removeRecent: function () { + if ( config.isDesktopApp && !!native ) { + native.execCommand('recent:forget'); + } + }, isActive: function () { return !!native; }, diff --git a/apps/documenteditor/forms/app/controller/ApplicationController.js b/apps/documenteditor/forms/app/controller/ApplicationController.js index 17f6bb50f0..9d29f7a24f 100644 --- a/apps/documenteditor/forms/app/controller/ApplicationController.js +++ b/apps/documenteditor/forms/app/controller/ApplicationController.js @@ -696,6 +696,7 @@ define([ me.api.asc_SendForm(); Common.Controllers.Desktop.process('goback'); Common.Controllers.Desktop.requestClose(); + Common.Controllers.Desktop.removeRecent(); }); me.view.btnDownload.on('click', function(){ if (me.appOptions.canDownload) { From 45bf88885cf9d7083efb1682a5266daf07a70d69 Mon Sep 17 00:00:00 2001 From: maxkadushkin Date: Sun, 24 Nov 2024 13:09:57 +0300 Subject: [PATCH 10/17] [desktop] for bug 71691 --- .../forms/app/controller/ApplicationController.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/documenteditor/forms/app/controller/ApplicationController.js b/apps/documenteditor/forms/app/controller/ApplicationController.js index 9d29f7a24f..d05c172204 100644 --- a/apps/documenteditor/forms/app/controller/ApplicationController.js +++ b/apps/documenteditor/forms/app/controller/ApplicationController.js @@ -694,9 +694,9 @@ define([ return; } me.api.asc_SendForm(); + Common.Controllers.Desktop.removeRecent(); Common.Controllers.Desktop.process('goback'); Common.Controllers.Desktop.requestClose(); - Common.Controllers.Desktop.removeRecent(); }); me.view.btnDownload.on('click', function(){ if (me.appOptions.canDownload) { From d26e1ba0bb430742b75832774bbfdc22b8d9caad Mon Sep 17 00:00:00 2001 From: Oleg Korshul Date: Mon, 25 Nov 2024 15:53:04 +0300 Subject: [PATCH 11/17] Removed setting focus to the editor iframe in the mobile version. Now the editor itself will take the focus as it should. --- apps/api/documents/api.js | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/apps/api/documents/api.js b/apps/api/documents/api.js index 6ef6643639..158e6b76f2 100644 --- a/apps/api/documents/api.js +++ b/apps/api/documents/api.js @@ -400,19 +400,6 @@ }; var _onAppReady = function() { - if (_config.type === 'mobile') { - document.body.onfocus = function(e) { - setTimeout(function(){ - iframe.contentWindow.focus(); - - _sendCommand({ - command: 'resetFocus', - data: {} - }) - }, 10); - }; - } - _attachMouseEvents(); if (_config.editorConfig) { From 198763c9a65db1f84fbeb4d584acb5391fa2bb8b Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 25 Nov 2024 16:56:00 +0300 Subject: [PATCH 12/17] Fix styles for scroll --- apps/common/forms/resources/less/common.less | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/common/forms/resources/less/common.less b/apps/common/forms/resources/less/common.less index 3a5c42b90f..32e4e90225 100644 --- a/apps/common/forms/resources/less/common.less +++ b/apps/common/forms/resources/less/common.less @@ -63,6 +63,11 @@ @import "../../../../common/main/resources/mods/less/utilities.less"; @import "../../../../common/main/resources/mods/less/responsive-utilities.less"; +// +// Perfect scrollbar +// -------------------------------------------------- +@import (inline) "../../../../../vendor/perfect-scrollbar/src/perfect-scrollbar.css"; + @import "../../../../common/main/resources/less/buttons.less"; @import "../../../../common/main/resources/less/dropdown-menu.less"; @import "../../../../common/main/resources/less/dropdown-submenu.less"; From 1b5ced0662157d78e34c6d1b300c56ffbc2c61c0 Mon Sep 17 00:00:00 2001 From: Dmitry-Ilyushechkin Date: Tue, 26 Nov 2024 12:50:16 +0300 Subject: [PATCH 13/17] fix visibility reset crop in context menu --- apps/pdfeditor/main/app/view/DocumentHolderExt.js | 2 +- apps/presentationeditor/main/app/view/DocumentHolderExt.js | 2 +- apps/spreadsheeteditor/main/app/controller/DocumentHolder.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/pdfeditor/main/app/view/DocumentHolderExt.js b/apps/pdfeditor/main/app/view/DocumentHolderExt.js index e4054f279f..d328c52246 100644 --- a/apps/pdfeditor/main/app/view/DocumentHolderExt.js +++ b/apps/pdfeditor/main/app/view/DocumentHolderExt.js @@ -765,7 +765,7 @@ define([], function () { if (me.menuImgCrop.isVisible()) me.menuImgCrop.setDisabled(disabled); - me.menuImgResetCrop.setVisible(value.imgProps.value.asc_getIsCrop()); + me.menuImgResetCrop.setVisible(isimage && value.imgProps.value.asc_getIsCrop()); if (me.menuImgResetCrop.isVisible()) me.menuImgResetCrop.setDisabled(disabled); diff --git a/apps/presentationeditor/main/app/view/DocumentHolderExt.js b/apps/presentationeditor/main/app/view/DocumentHolderExt.js index af9a96b811..060fa100cd 100644 --- a/apps/presentationeditor/main/app/view/DocumentHolderExt.js +++ b/apps/presentationeditor/main/app/view/DocumentHolderExt.js @@ -1679,7 +1679,7 @@ define([], function () { if (me.menuImgCrop.isVisible()) me.menuImgCrop.setDisabled(disabled); - me.menuImgResetCrop.setVisible(value.imgProps.value.asc_getIsCrop()); + me.menuImgResetCrop.setVisible(isimage && value.imgProps.value.asc_getIsCrop()); if (me.menuImgResetCrop.isVisible()) me.menuImgResetCrop.setDisabled(disabled); diff --git a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js index 6f408536c9..a918f82024 100644 --- a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js +++ b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js @@ -2696,7 +2696,7 @@ define([ documentHolder.menuImgCrop.setVisible(this.api.asc_canEditCrop()); documentHolder.menuImgCrop.setDisabled(isObjLocked); - documentHolder.menuImgResetCrop.setVisible(documentHolder.mnuImgAdvanced.imageInfo.asc_getIsCrop()); + documentHolder.menuImgResetCrop.setVisible(isimagemenu && documentHolder.mnuImgAdvanced.imageInfo.asc_getIsCrop()); documentHolder.menuImgResetCrop.setDisabled(isObjLocked); var isInSign = !!signGuid; From 9afef7883bc4f012fc41c580d32637c8799917f7 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 26 Nov 2024 13:08:04 +0300 Subject: [PATCH 14/17] Update translation --- apps/documenteditor/main/locale/ar.json | 4 +++- apps/documenteditor/main/locale/az.json | 4 +++- apps/documenteditor/main/locale/be.json | 4 +++- apps/documenteditor/main/locale/bg.json | 4 +++- apps/documenteditor/main/locale/ca.json | 4 +++- apps/documenteditor/main/locale/cs.json | 4 +++- apps/documenteditor/main/locale/da.json | 4 +++- apps/documenteditor/main/locale/de.json | 4 +++- apps/documenteditor/main/locale/el.json | 4 +++- apps/documenteditor/main/locale/es.json | 4 +++- apps/documenteditor/main/locale/eu.json | 4 +++- apps/documenteditor/main/locale/fi.json | 4 +++- apps/documenteditor/main/locale/fr.json | 4 +++- apps/documenteditor/main/locale/gl.json | 4 +++- apps/documenteditor/main/locale/he.json | 4 +++- apps/documenteditor/main/locale/hu.json | 4 +++- apps/documenteditor/main/locale/hy.json | 4 +++- apps/documenteditor/main/locale/id.json | 4 +++- apps/documenteditor/main/locale/it.json | 4 +++- apps/documenteditor/main/locale/ja.json | 4 +++- apps/documenteditor/main/locale/ko.json | 4 +++- apps/documenteditor/main/locale/lo.json | 4 +++- apps/documenteditor/main/locale/lv.json | 4 +++- apps/documenteditor/main/locale/ms.json | 4 +++- apps/documenteditor/main/locale/nl.json | 4 +++- apps/documenteditor/main/locale/no.json | 4 +++- apps/documenteditor/main/locale/pl.json | 4 +++- apps/documenteditor/main/locale/pt-pt.json | 4 +++- apps/documenteditor/main/locale/pt.json | 4 +++- apps/documenteditor/main/locale/ro.json | 4 +++- apps/documenteditor/main/locale/ru.json | 4 +++- apps/documenteditor/main/locale/si.json | 4 +++- apps/documenteditor/main/locale/sk.json | 4 +++- apps/documenteditor/main/locale/sl.json | 4 +++- apps/documenteditor/main/locale/sr-cyrl.json | 4 +++- apps/documenteditor/main/locale/sr.json | 4 +++- apps/documenteditor/main/locale/sv.json | 4 +++- apps/documenteditor/main/locale/tr.json | 4 +++- apps/documenteditor/main/locale/uk.json | 4 +++- apps/documenteditor/main/locale/vi.json | 4 +++- apps/documenteditor/main/locale/zh-tw.json | 4 +++- apps/documenteditor/main/locale/zh.json | 4 +++- apps/pdfeditor/main/locale/ar.json | 4 +++- apps/pdfeditor/main/locale/az.json | 4 +++- apps/pdfeditor/main/locale/be.json | 4 +++- apps/pdfeditor/main/locale/bg.json | 4 +++- apps/pdfeditor/main/locale/ca.json | 4 +++- apps/pdfeditor/main/locale/cs.json | 4 +++- apps/pdfeditor/main/locale/da.json | 4 +++- apps/pdfeditor/main/locale/de.json | 4 +++- apps/pdfeditor/main/locale/el.json | 4 +++- apps/pdfeditor/main/locale/es.json | 4 +++- apps/pdfeditor/main/locale/eu.json | 4 +++- apps/pdfeditor/main/locale/fi.json | 4 +++- apps/pdfeditor/main/locale/fr.json | 4 +++- apps/pdfeditor/main/locale/gl.json | 4 +++- apps/pdfeditor/main/locale/he.json | 4 +++- apps/pdfeditor/main/locale/hu.json | 4 +++- apps/pdfeditor/main/locale/hy.json | 4 +++- apps/pdfeditor/main/locale/id.json | 4 +++- apps/pdfeditor/main/locale/it.json | 4 +++- apps/pdfeditor/main/locale/ja.json | 4 +++- apps/pdfeditor/main/locale/ko.json | 4 +++- apps/pdfeditor/main/locale/lo.json | 4 +++- apps/pdfeditor/main/locale/lv.json | 4 +++- apps/pdfeditor/main/locale/ms.json | 4 +++- apps/pdfeditor/main/locale/nl.json | 4 +++- apps/pdfeditor/main/locale/pl.json | 4 +++- apps/pdfeditor/main/locale/pt-pt.json | 4 +++- apps/pdfeditor/main/locale/pt.json | 4 +++- apps/pdfeditor/main/locale/ro.json | 4 +++- apps/pdfeditor/main/locale/ru.json | 4 +++- apps/pdfeditor/main/locale/si.json | 4 +++- apps/pdfeditor/main/locale/sk.json | 4 +++- apps/pdfeditor/main/locale/sl.json | 4 +++- apps/pdfeditor/main/locale/sr-cyrl.json | 4 +++- apps/pdfeditor/main/locale/sr.json | 4 +++- apps/pdfeditor/main/locale/sv.json | 4 +++- apps/pdfeditor/main/locale/tr.json | 4 +++- apps/pdfeditor/main/locale/uk.json | 4 +++- apps/pdfeditor/main/locale/zh-tw.json | 4 +++- apps/pdfeditor/main/locale/zh.json | 4 +++- apps/presentationeditor/main/locale/ar.json | 4 +++- apps/presentationeditor/main/locale/az.json | 4 +++- apps/presentationeditor/main/locale/be.json | 4 +++- apps/presentationeditor/main/locale/bg.json | 4 +++- apps/presentationeditor/main/locale/ca.json | 4 +++- apps/presentationeditor/main/locale/cs.json | 4 +++- apps/presentationeditor/main/locale/da.json | 4 +++- apps/presentationeditor/main/locale/de.json | 4 +++- apps/presentationeditor/main/locale/el.json | 4 +++- apps/presentationeditor/main/locale/es.json | 4 +++- apps/presentationeditor/main/locale/eu.json | 4 +++- apps/presentationeditor/main/locale/fi.json | 4 +++- apps/presentationeditor/main/locale/fr.json | 4 +++- apps/presentationeditor/main/locale/gl.json | 4 +++- apps/presentationeditor/main/locale/he.json | 4 +++- apps/presentationeditor/main/locale/hu.json | 4 +++- apps/presentationeditor/main/locale/hy.json | 4 +++- apps/presentationeditor/main/locale/id.json | 4 +++- apps/presentationeditor/main/locale/it.json | 4 +++- apps/presentationeditor/main/locale/ja.json | 4 +++- apps/presentationeditor/main/locale/ko.json | 4 +++- apps/presentationeditor/main/locale/lo.json | 4 +++- apps/presentationeditor/main/locale/lv.json | 4 +++- apps/presentationeditor/main/locale/ms.json | 4 +++- apps/presentationeditor/main/locale/nl.json | 4 +++- apps/presentationeditor/main/locale/pl.json | 4 +++- apps/presentationeditor/main/locale/pt-pt.json | 4 +++- apps/presentationeditor/main/locale/pt.json | 4 +++- apps/presentationeditor/main/locale/ro.json | 4 +++- apps/presentationeditor/main/locale/ru.json | 4 +++- apps/presentationeditor/main/locale/si.json | 4 +++- apps/presentationeditor/main/locale/sk.json | 4 +++- apps/presentationeditor/main/locale/sl.json | 4 +++- apps/presentationeditor/main/locale/sr-cyrl.json | 4 +++- apps/presentationeditor/main/locale/sr.json | 4 +++- apps/presentationeditor/main/locale/sv.json | 4 +++- apps/presentationeditor/main/locale/tr.json | 4 +++- apps/presentationeditor/main/locale/uk.json | 4 +++- apps/presentationeditor/main/locale/vi.json | 4 +++- apps/presentationeditor/main/locale/zh-tw.json | 4 +++- apps/presentationeditor/main/locale/zh.json | 4 +++- apps/spreadsheeteditor/main/locale/ar.json | 4 +++- apps/spreadsheeteditor/main/locale/az.json | 4 +++- apps/spreadsheeteditor/main/locale/be.json | 4 +++- apps/spreadsheeteditor/main/locale/bg.json | 4 +++- apps/spreadsheeteditor/main/locale/ca.json | 4 +++- apps/spreadsheeteditor/main/locale/cs.json | 4 +++- apps/spreadsheeteditor/main/locale/da.json | 4 +++- apps/spreadsheeteditor/main/locale/de.json | 4 +++- apps/spreadsheeteditor/main/locale/el.json | 4 +++- apps/spreadsheeteditor/main/locale/es.json | 4 +++- apps/spreadsheeteditor/main/locale/eu.json | 4 +++- apps/spreadsheeteditor/main/locale/fi.json | 4 +++- apps/spreadsheeteditor/main/locale/fr.json | 4 +++- apps/spreadsheeteditor/main/locale/gl.json | 4 +++- apps/spreadsheeteditor/main/locale/he.json | 4 +++- apps/spreadsheeteditor/main/locale/hu.json | 4 +++- apps/spreadsheeteditor/main/locale/hy.json | 4 +++- apps/spreadsheeteditor/main/locale/id.json | 4 +++- apps/spreadsheeteditor/main/locale/it.json | 4 +++- apps/spreadsheeteditor/main/locale/ja.json | 4 +++- apps/spreadsheeteditor/main/locale/ko.json | 4 +++- apps/spreadsheeteditor/main/locale/lo.json | 4 +++- apps/spreadsheeteditor/main/locale/lv.json | 4 +++- apps/spreadsheeteditor/main/locale/ms.json | 4 +++- apps/spreadsheeteditor/main/locale/nl.json | 4 +++- apps/spreadsheeteditor/main/locale/pl.json | 4 +++- apps/spreadsheeteditor/main/locale/pt-pt.json | 4 +++- apps/spreadsheeteditor/main/locale/pt.json | 4 +++- apps/spreadsheeteditor/main/locale/ro.json | 4 +++- apps/spreadsheeteditor/main/locale/ru.json | 4 +++- apps/spreadsheeteditor/main/locale/si.json | 4 +++- apps/spreadsheeteditor/main/locale/sk.json | 4 +++- apps/spreadsheeteditor/main/locale/sl.json | 4 +++- apps/spreadsheeteditor/main/locale/sr-cyrl.json | 4 +++- apps/spreadsheeteditor/main/locale/sr.json | 4 +++- apps/spreadsheeteditor/main/locale/sv.json | 4 +++- apps/spreadsheeteditor/main/locale/tr.json | 4 +++- apps/spreadsheeteditor/main/locale/uk.json | 4 +++- apps/spreadsheeteditor/main/locale/vi.json | 4 +++- apps/spreadsheeteditor/main/locale/zh-tw.json | 4 +++- apps/spreadsheeteditor/main/locale/zh.json | 4 +++- 164 files changed, 492 insertions(+), 164 deletions(-) diff --git a/apps/documenteditor/main/locale/ar.json b/apps/documenteditor/main/locale/ar.json index f15c97d1da..d6e2756ca8 100644 --- a/apps/documenteditor/main/locale/ar.json +++ b/apps/documenteditor/main/locale/ar.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/az.json b/apps/documenteditor/main/locale/az.json index e1718f18e0..818c93cde3 100644 --- a/apps/documenteditor/main/locale/az.json +++ b/apps/documenteditor/main/locale/az.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/be.json b/apps/documenteditor/main/locale/be.json index 4ea1147bf8..016c5abe46 100644 --- a/apps/documenteditor/main/locale/be.json +++ b/apps/documenteditor/main/locale/be.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/bg.json b/apps/documenteditor/main/locale/bg.json index 98c8efd82e..22122b4ffe 100644 --- a/apps/documenteditor/main/locale/bg.json +++ b/apps/documenteditor/main/locale/bg.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/ca.json b/apps/documenteditor/main/locale/ca.json index 08af1f4291..35f7153f11 100644 --- a/apps/documenteditor/main/locale/ca.json +++ b/apps/documenteditor/main/locale/ca.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/cs.json b/apps/documenteditor/main/locale/cs.json index ee8dd84a03..319f9abce9 100644 --- a/apps/documenteditor/main/locale/cs.json +++ b/apps/documenteditor/main/locale/cs.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/da.json b/apps/documenteditor/main/locale/da.json index 31628688a0..85df2e0414 100644 --- a/apps/documenteditor/main/locale/da.json +++ b/apps/documenteditor/main/locale/da.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/de.json b/apps/documenteditor/main/locale/de.json index 86936698ed..ccd7af4b99 100644 --- a/apps/documenteditor/main/locale/de.json +++ b/apps/documenteditor/main/locale/de.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/el.json b/apps/documenteditor/main/locale/el.json index a62dd05bc1..86a794932d 100644 --- a/apps/documenteditor/main/locale/el.json +++ b/apps/documenteditor/main/locale/el.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/es.json b/apps/documenteditor/main/locale/es.json index 2dbc67801c..e3eb9e3cd3 100644 --- a/apps/documenteditor/main/locale/es.json +++ b/apps/documenteditor/main/locale/es.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/eu.json b/apps/documenteditor/main/locale/eu.json index 9fda21b938..4316942f54 100644 --- a/apps/documenteditor/main/locale/eu.json +++ b/apps/documenteditor/main/locale/eu.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/fi.json b/apps/documenteditor/main/locale/fi.json index c7a2849bf8..ee069d4b7a 100644 --- a/apps/documenteditor/main/locale/fi.json +++ b/apps/documenteditor/main/locale/fi.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/fr.json b/apps/documenteditor/main/locale/fr.json index d4347ea936..d2e54d97aa 100644 --- a/apps/documenteditor/main/locale/fr.json +++ b/apps/documenteditor/main/locale/fr.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/gl.json b/apps/documenteditor/main/locale/gl.json index 9e4febff2c..09c750dea3 100644 --- a/apps/documenteditor/main/locale/gl.json +++ b/apps/documenteditor/main/locale/gl.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/he.json b/apps/documenteditor/main/locale/he.json index aa01068bc6..805ebb62fe 100644 --- a/apps/documenteditor/main/locale/he.json +++ b/apps/documenteditor/main/locale/he.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/hu.json b/apps/documenteditor/main/locale/hu.json index c9af85fb89..e218aba6ca 100644 --- a/apps/documenteditor/main/locale/hu.json +++ b/apps/documenteditor/main/locale/hu.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/hy.json b/apps/documenteditor/main/locale/hy.json index 3c476ef2b0..2441d7fe20 100644 --- a/apps/documenteditor/main/locale/hy.json +++ b/apps/documenteditor/main/locale/hy.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/id.json b/apps/documenteditor/main/locale/id.json index f90fa829b3..e2d25d1e71 100644 --- a/apps/documenteditor/main/locale/id.json +++ b/apps/documenteditor/main/locale/id.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/it.json b/apps/documenteditor/main/locale/it.json index 4d8e84559d..47f808c020 100644 --- a/apps/documenteditor/main/locale/it.json +++ b/apps/documenteditor/main/locale/it.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json index c32f02ff93..34583e4377 100644 --- a/apps/documenteditor/main/locale/ja.json +++ b/apps/documenteditor/main/locale/ja.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/ko.json b/apps/documenteditor/main/locale/ko.json index a7b8a98d2b..5121c7a489 100644 --- a/apps/documenteditor/main/locale/ko.json +++ b/apps/documenteditor/main/locale/ko.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/lo.json b/apps/documenteditor/main/locale/lo.json index 2b1006190a..8bd9d54b57 100644 --- a/apps/documenteditor/main/locale/lo.json +++ b/apps/documenteditor/main/locale/lo.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/lv.json b/apps/documenteditor/main/locale/lv.json index e0d3d3fb3c..d36fc44844 100644 --- a/apps/documenteditor/main/locale/lv.json +++ b/apps/documenteditor/main/locale/lv.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/ms.json b/apps/documenteditor/main/locale/ms.json index f8c256d530..99db64c38c 100644 --- a/apps/documenteditor/main/locale/ms.json +++ b/apps/documenteditor/main/locale/ms.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/nl.json b/apps/documenteditor/main/locale/nl.json index 4bee36246e..68328077cb 100644 --- a/apps/documenteditor/main/locale/nl.json +++ b/apps/documenteditor/main/locale/nl.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/no.json b/apps/documenteditor/main/locale/no.json index 1c707a5c49..36a80fb884 100644 --- a/apps/documenteditor/main/locale/no.json +++ b/apps/documenteditor/main/locale/no.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/pl.json b/apps/documenteditor/main/locale/pl.json index 339d75a85f..c8e793cd6b 100644 --- a/apps/documenteditor/main/locale/pl.json +++ b/apps/documenteditor/main/locale/pl.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ 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 3beb4f8fbb..a7cec4693a 100644 --- a/apps/documenteditor/main/locale/pt-pt.json +++ b/apps/documenteditor/main/locale/pt-pt.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/pt.json b/apps/documenteditor/main/locale/pt.json index 001e1211ad..5bade83eaf 100644 --- a/apps/documenteditor/main/locale/pt.json +++ b/apps/documenteditor/main/locale/pt.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/ro.json b/apps/documenteditor/main/locale/ro.json index 03d864091f..7ea300a292 100644 --- a/apps/documenteditor/main/locale/ro.json +++ b/apps/documenteditor/main/locale/ro.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json index 0d8fd1247a..52304ff69b 100644 --- a/apps/documenteditor/main/locale/ru.json +++ b/apps/documenteditor/main/locale/ru.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/si.json b/apps/documenteditor/main/locale/si.json index 936488a292..874da6b307 100644 --- a/apps/documenteditor/main/locale/si.json +++ b/apps/documenteditor/main/locale/si.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/sk.json b/apps/documenteditor/main/locale/sk.json index dcef79eaa5..6c7fc1ddce 100644 --- a/apps/documenteditor/main/locale/sk.json +++ b/apps/documenteditor/main/locale/sk.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/sl.json b/apps/documenteditor/main/locale/sl.json index 89a786d388..e682791479 100644 --- a/apps/documenteditor/main/locale/sl.json +++ b/apps/documenteditor/main/locale/sl.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ 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 3897630fff..1c567618a4 100644 --- a/apps/documenteditor/main/locale/sr-cyrl.json +++ b/apps/documenteditor/main/locale/sr-cyrl.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/sr.json b/apps/documenteditor/main/locale/sr.json index 3c9a62a7cd..f631c51e42 100644 --- a/apps/documenteditor/main/locale/sr.json +++ b/apps/documenteditor/main/locale/sr.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/sv.json b/apps/documenteditor/main/locale/sv.json index ec465d8f88..cc92291a55 100644 --- a/apps/documenteditor/main/locale/sv.json +++ b/apps/documenteditor/main/locale/sv.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/tr.json b/apps/documenteditor/main/locale/tr.json index 3e2363f83d..d1a71d3575 100644 --- a/apps/documenteditor/main/locale/tr.json +++ b/apps/documenteditor/main/locale/tr.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/uk.json b/apps/documenteditor/main/locale/uk.json index e737354058..5d16e0c053 100644 --- a/apps/documenteditor/main/locale/uk.json +++ b/apps/documenteditor/main/locale/uk.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/vi.json b/apps/documenteditor/main/locale/vi.json index d66dd7dc5e..7cd4968100 100644 --- a/apps/documenteditor/main/locale/vi.json +++ b/apps/documenteditor/main/locale/vi.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ 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 9b270656e4..338b476ead 100644 --- a/apps/documenteditor/main/locale/zh-tw.json +++ b/apps/documenteditor/main/locale/zh-tw.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/zh.json b/apps/documenteditor/main/locale/zh.json index 137009f7d6..3ea9c81645 100644 --- a/apps/documenteditor/main/locale/zh.json +++ b/apps/documenteditor/main/locale/zh.json @@ -3682,5 +3682,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "DE.Views.ViewTab.textMacros": "Macros", - "DE.Views.ViewTab.tipMacros": "Macros" + "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.DocumentHolder.textResetCrop": "Reset crop", + "DE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/ar.json b/apps/pdfeditor/main/locale/ar.json index 7c2cef17f3..82fa15a379 100644 --- a/apps/pdfeditor/main/locale/ar.json +++ b/apps/pdfeditor/main/locale/ar.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "ملائم للصفحة", "PDFE.Views.ViewTab.tipFitToWidth": "ملائم للعرض", "PDFE.Views.ViewTab.tipHeadings": "العناوين", - "PDFE.Views.ViewTab.tipInterfaceTheme": "سمة الواجهة" + "PDFE.Views.ViewTab.tipInterfaceTheme": "سمة الواجهة", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/az.json b/apps/pdfeditor/main/locale/az.json index ffb8316fed..b7bdb59b0c 100644 --- a/apps/pdfeditor/main/locale/az.json +++ b/apps/pdfeditor/main/locale/az.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Səhifəyə uyğun tənzimlə", "PDFE.Views.ViewTab.tipFitToWidth": "Enə uyğun tənzimlə", "PDFE.Views.ViewTab.tipHeadings": "Başlıqlar", - "PDFE.Views.ViewTab.tipInterfaceTheme": "İnterfeys mövzusu" + "PDFE.Views.ViewTab.tipInterfaceTheme": "İnterfeys mövzusu", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/be.json b/apps/pdfeditor/main/locale/be.json index 17cf661f99..a0636d95c3 100644 --- a/apps/pdfeditor/main/locale/be.json +++ b/apps/pdfeditor/main/locale/be.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Па памеры старонкі", "PDFE.Views.ViewTab.tipFitToWidth": "Па шырыні", "PDFE.Views.ViewTab.tipHeadings": "Загалоўкі", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Тэма інтэрфейсу" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Тэма інтэрфейсу", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/bg.json b/apps/pdfeditor/main/locale/bg.json index 54c72103a6..323de94a0c 100644 --- a/apps/pdfeditor/main/locale/bg.json +++ b/apps/pdfeditor/main/locale/bg.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Побиране в страницата", "PDFE.Views.ViewTab.tipFitToWidth": "Поставя се в ширина", "PDFE.Views.ViewTab.tipHeadings": "Заглавия", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Тема на интерфейса" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Тема на интерфейса", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/ca.json b/apps/pdfeditor/main/locale/ca.json index 8dd772fcf3..0fbe128a94 100644 --- a/apps/pdfeditor/main/locale/ca.json +++ b/apps/pdfeditor/main/locale/ca.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Ajusta-ho a la pàgina", "PDFE.Views.ViewTab.tipFitToWidth": "Ajusta-ho a l'amplària", "PDFE.Views.ViewTab.tipHeadings": "Capçaleres", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Tema de la interfície" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Tema de la interfície", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/cs.json b/apps/pdfeditor/main/locale/cs.json index 32259c8a7c..6d1f0b41e0 100644 --- a/apps/pdfeditor/main/locale/cs.json +++ b/apps/pdfeditor/main/locale/cs.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Přízpůsobit stránce", "PDFE.Views.ViewTab.tipFitToWidth": "Přizpůsobit šířce", "PDFE.Views.ViewTab.tipHeadings": "Nadpisy", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Vzhled uživatelského rozhraní" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Vzhled uživatelského rozhraní", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/da.json b/apps/pdfeditor/main/locale/da.json index 1a0e87e07d..af6f4eefe0 100644 --- a/apps/pdfeditor/main/locale/da.json +++ b/apps/pdfeditor/main/locale/da.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Tilpas til side", "PDFE.Views.ViewTab.tipFitToWidth": "Tilpas til bredde", "PDFE.Views.ViewTab.tipHeadings": "Overskrifter", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Interface tema" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Interface tema", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/de.json b/apps/pdfeditor/main/locale/de.json index 5fb7a960eb..191dee9213 100644 --- a/apps/pdfeditor/main/locale/de.json +++ b/apps/pdfeditor/main/locale/de.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Seite anpassen", "PDFE.Views.ViewTab.tipFitToWidth": "Breite anpassen", "PDFE.Views.ViewTab.tipHeadings": "Überschriften", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Thema der Benutzeroberfläche" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Thema der Benutzeroberfläche", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/el.json b/apps/pdfeditor/main/locale/el.json index b8103b5036..b8af2f3fe8 100644 --- a/apps/pdfeditor/main/locale/el.json +++ b/apps/pdfeditor/main/locale/el.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Προσαρμογή στη σελίδα", "PDFE.Views.ViewTab.tipFitToWidth": "Προσαρμογή στο πλάτος", "PDFE.Views.ViewTab.tipHeadings": "Κεφαλίδες", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Θέμα διεπαφής" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Θέμα διεπαφής", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/es.json b/apps/pdfeditor/main/locale/es.json index 3ed53aaa67..cadbcd12f1 100644 --- a/apps/pdfeditor/main/locale/es.json +++ b/apps/pdfeditor/main/locale/es.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Ajustar a la página", "PDFE.Views.ViewTab.tipFitToWidth": "Ajustar al ancho", "PDFE.Views.ViewTab.tipHeadings": "Encabezados", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Tema de la interfaz" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Tema de la interfaz", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/eu.json b/apps/pdfeditor/main/locale/eu.json index 83616ee7a6..af1e7fb4be 100644 --- a/apps/pdfeditor/main/locale/eu.json +++ b/apps/pdfeditor/main/locale/eu.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Doitu orrira", "PDFE.Views.ViewTab.tipFitToWidth": "Doitu zabalerara", "PDFE.Views.ViewTab.tipHeadings": "Izenburuak", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Interfazearen gaia" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Interfazearen gaia", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/fi.json b/apps/pdfeditor/main/locale/fi.json index d3cac15ae9..96a62e5406 100644 --- a/apps/pdfeditor/main/locale/fi.json +++ b/apps/pdfeditor/main/locale/fi.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Sovita sivulle", "PDFE.Views.ViewTab.tipFitToWidth": "Sovita leveyden mukaan", "PDFE.Views.ViewTab.tipHeadings": "Headings", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Käyttöliittymän teema" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Käyttöliittymän teema", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/fr.json b/apps/pdfeditor/main/locale/fr.json index 4d28ac0c81..731d59bee8 100644 --- a/apps/pdfeditor/main/locale/fr.json +++ b/apps/pdfeditor/main/locale/fr.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Ajuster à la page", "PDFE.Views.ViewTab.tipFitToWidth": "Ajuster à la largeur", "PDFE.Views.ViewTab.tipHeadings": "Titres", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Thème d’interface" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Thème d’interface", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/gl.json b/apps/pdfeditor/main/locale/gl.json index d4f76e39bf..2db414ae0d 100644 --- a/apps/pdfeditor/main/locale/gl.json +++ b/apps/pdfeditor/main/locale/gl.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Axustar á páxina", "PDFE.Views.ViewTab.tipFitToWidth": "Axustar á anchura", "PDFE.Views.ViewTab.tipHeadings": "Títulos", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Tema da interface" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Tema da interface", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/he.json b/apps/pdfeditor/main/locale/he.json index 0d2d3a15d5..b3916b5814 100644 --- a/apps/pdfeditor/main/locale/he.json +++ b/apps/pdfeditor/main/locale/he.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "מתאים לדף", "PDFE.Views.ViewTab.tipFitToWidth": "מתאים לרוחב", "PDFE.Views.ViewTab.tipHeadings": "כותרות", - "PDFE.Views.ViewTab.tipInterfaceTheme": "ערכת נושא" + "PDFE.Views.ViewTab.tipInterfaceTheme": "ערכת נושא", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/hu.json b/apps/pdfeditor/main/locale/hu.json index 35b5b6c061..c59c748ccf 100644 --- a/apps/pdfeditor/main/locale/hu.json +++ b/apps/pdfeditor/main/locale/hu.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Oldalhoz igazít", "PDFE.Views.ViewTab.tipFitToWidth": "Szélességhez igazít", "PDFE.Views.ViewTab.tipHeadings": "Címsorok", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Felhasználói felület témája" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Felhasználói felület témája", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/hy.json b/apps/pdfeditor/main/locale/hy.json index 46f7fed6c6..358daa4ade 100644 --- a/apps/pdfeditor/main/locale/hy.json +++ b/apps/pdfeditor/main/locale/hy.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Հարմարեցնել էջին", "PDFE.Views.ViewTab.tipFitToWidth": "Հարմարեցնել լայնությանը", "PDFE.Views.ViewTab.tipHeadings": "Գլխագրեր", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Ինտերֆեյսի թեմա" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Ինտերֆեյսի թեմա", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/id.json b/apps/pdfeditor/main/locale/id.json index de268d54d7..fd42946b73 100644 --- a/apps/pdfeditor/main/locale/id.json +++ b/apps/pdfeditor/main/locale/id.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Sesuaikan Halaman", "PDFE.Views.ViewTab.tipFitToWidth": "Sesuaikan Lebar", "PDFE.Views.ViewTab.tipHeadings": "Tajuk", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Tema antarmuka" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Tema antarmuka", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/it.json b/apps/pdfeditor/main/locale/it.json index eed1c9f157..261c102301 100644 --- a/apps/pdfeditor/main/locale/it.json +++ b/apps/pdfeditor/main/locale/it.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Adatta alla pagina", "PDFE.Views.ViewTab.tipFitToWidth": "Adatta alla larghezza", "PDFE.Views.ViewTab.tipHeadings": "Intestazioni", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Tema dell'interfaccia" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Tema dell'interfaccia", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/ja.json b/apps/pdfeditor/main/locale/ja.json index 39c1302179..909ed45845 100644 --- a/apps/pdfeditor/main/locale/ja.json +++ b/apps/pdfeditor/main/locale/ja.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "ページに合わせる", "PDFE.Views.ViewTab.tipFitToWidth": "幅に合わせる", "PDFE.Views.ViewTab.tipHeadings": "見出し", - "PDFE.Views.ViewTab.tipInterfaceTheme": "インターフェイスのテーマ" + "PDFE.Views.ViewTab.tipInterfaceTheme": "インターフェイスのテーマ", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/ko.json b/apps/pdfeditor/main/locale/ko.json index ffb58f384f..6aaed06977 100644 --- a/apps/pdfeditor/main/locale/ko.json +++ b/apps/pdfeditor/main/locale/ko.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "페이지에 맞춤", "PDFE.Views.ViewTab.tipFitToWidth": "너비에 맞춤", "PDFE.Views.ViewTab.tipHeadings": "제목", - "PDFE.Views.ViewTab.tipInterfaceTheme": "인터페이스 테마" + "PDFE.Views.ViewTab.tipInterfaceTheme": "인터페이스 테마", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/lo.json b/apps/pdfeditor/main/locale/lo.json index 7398d3910d..118992cfa3 100644 --- a/apps/pdfeditor/main/locale/lo.json +++ b/apps/pdfeditor/main/locale/lo.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "ພໍດີຂອບ", "PDFE.Views.ViewTab.tipFitToWidth": "ຄວາມກວ້າງພໍດີ", "PDFE.Views.ViewTab.tipHeadings": "ຫົວເລື່ອງ", - "PDFE.Views.ViewTab.tipInterfaceTheme": "ຮູບແບບການສະແດງຜົນ" + "PDFE.Views.ViewTab.tipInterfaceTheme": "ຮູບແບບການສະແດງຜົນ", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/lv.json b/apps/pdfeditor/main/locale/lv.json index 1baab23465..f80dd22bbb 100644 --- a/apps/pdfeditor/main/locale/lv.json +++ b/apps/pdfeditor/main/locale/lv.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Saskaņot ar lapu", "PDFE.Views.ViewTab.tipFitToWidth": "Saskaņot ar platumu", "PDFE.Views.ViewTab.tipHeadings": "Virsraksti", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Interfeisa tēma" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Interfeisa tēma", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/ms.json b/apps/pdfeditor/main/locale/ms.json index 3397375e25..bbc5f0429c 100644 --- a/apps/pdfeditor/main/locale/ms.json +++ b/apps/pdfeditor/main/locale/ms.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Muat kepada Halaman", "PDFE.Views.ViewTab.tipFitToWidth": "Muat kepada Kelebaran", "PDFE.Views.ViewTab.tipHeadings": "Pengepala", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Tema antara muka" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Tema antara muka", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/nl.json b/apps/pdfeditor/main/locale/nl.json index 2fb79612ac..5ef0d0a822 100644 --- a/apps/pdfeditor/main/locale/nl.json +++ b/apps/pdfeditor/main/locale/nl.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Aan pagina aanpassen", "PDFE.Views.ViewTab.tipFitToWidth": "Aan breedte aanpassen", "PDFE.Views.ViewTab.tipHeadings": "Koppen", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Interfacethema" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Interfacethema", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/pl.json b/apps/pdfeditor/main/locale/pl.json index c5fcbcd0c3..7a58a13e41 100644 --- a/apps/pdfeditor/main/locale/pl.json +++ b/apps/pdfeditor/main/locale/pl.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Dopasuj do strony", "PDFE.Views.ViewTab.tipFitToWidth": "Dopasuj do szerokości", "PDFE.Views.ViewTab.tipHeadings": "Nagłówki", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Motyw interfejsu" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Motyw interfejsu", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/pt-pt.json b/apps/pdfeditor/main/locale/pt-pt.json index 5a4e1632f3..bd27a2de60 100644 --- a/apps/pdfeditor/main/locale/pt-pt.json +++ b/apps/pdfeditor/main/locale/pt-pt.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Ajustar à página", "PDFE.Views.ViewTab.tipFitToWidth": "Ajustar à largura", "PDFE.Views.ViewTab.tipHeadings": "Títulos", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Tema da interface" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Tema da interface", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/pt.json b/apps/pdfeditor/main/locale/pt.json index 12bdbd40cb..35a40051c6 100644 --- a/apps/pdfeditor/main/locale/pt.json +++ b/apps/pdfeditor/main/locale/pt.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Ajustar a página", "PDFE.Views.ViewTab.tipFitToWidth": "Ajustar à Largura", "PDFE.Views.ViewTab.tipHeadings": "Títulos", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Tema de interface" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Tema de interface", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/ro.json b/apps/pdfeditor/main/locale/ro.json index 25f44701fb..e422b329c7 100644 --- a/apps/pdfeditor/main/locale/ro.json +++ b/apps/pdfeditor/main/locale/ro.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Portivire la pagina", "PDFE.Views.ViewTab.tipFitToWidth": "Potrivire lățime", "PDFE.Views.ViewTab.tipHeadings": "Titluri", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Tema de interfață" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Tema de interfață", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/ru.json b/apps/pdfeditor/main/locale/ru.json index 871f74a0a6..5e0ae06b99 100644 --- a/apps/pdfeditor/main/locale/ru.json +++ b/apps/pdfeditor/main/locale/ru.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "По размеру страницы", "PDFE.Views.ViewTab.tipFitToWidth": "По ширине", "PDFE.Views.ViewTab.tipHeadings": "Заголовки", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Тема интерфейса" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Тема интерфейса", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/si.json b/apps/pdfeditor/main/locale/si.json index 1bde581abf..6645d61308 100644 --- a/apps/pdfeditor/main/locale/si.json +++ b/apps/pdfeditor/main/locale/si.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "පිටුවට ගළපන්න", "PDFE.Views.ViewTab.tipFitToWidth": "පළලට ගළපන්න", "PDFE.Views.ViewTab.tipHeadings": "ශ්‍රීර්ෂනාම", - "PDFE.Views.ViewTab.tipInterfaceTheme": "අතුරුමුහුණතේ තේමාව" + "PDFE.Views.ViewTab.tipInterfaceTheme": "අතුරුමුහුණතේ තේමාව", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/sk.json b/apps/pdfeditor/main/locale/sk.json index 0795506942..0e02914489 100644 --- a/apps/pdfeditor/main/locale/sk.json +++ b/apps/pdfeditor/main/locale/sk.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Prispôsobiť na stranu", "PDFE.Views.ViewTab.tipFitToWidth": "Prispôsobiť na šírku", "PDFE.Views.ViewTab.tipHeadings": "Nadpisy", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Vzhľad prostredia" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Vzhľad prostredia", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/sl.json b/apps/pdfeditor/main/locale/sl.json index 6b7fadf781..df39fa1558 100644 --- a/apps/pdfeditor/main/locale/sl.json +++ b/apps/pdfeditor/main/locale/sl.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Prilagodi stran", "PDFE.Views.ViewTab.tipFitToWidth": "Prilagodi širino", "PDFE.Views.ViewTab.tipHeadings": "Naslovi", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Interface theme" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Interface theme", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/sr-cyrl.json b/apps/pdfeditor/main/locale/sr-cyrl.json index 4168a67bf2..aaa2f97244 100644 --- a/apps/pdfeditor/main/locale/sr-cyrl.json +++ b/apps/pdfeditor/main/locale/sr-cyrl.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Прилагоди страници", "PDFE.Views.ViewTab.tipFitToWidth": "Прилагоди ширини", "PDFE.Views.ViewTab.tipHeadings": "Наслови", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Тема интерфејса" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Тема интерфејса", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/sr.json b/apps/pdfeditor/main/locale/sr.json index bd167747f0..c6334386ae 100644 --- a/apps/pdfeditor/main/locale/sr.json +++ b/apps/pdfeditor/main/locale/sr.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Prilagodi strani", "PDFE.Views.ViewTab.tipFitToWidth": "Prilagodi Širinu ", "PDFE.Views.ViewTab.tipHeadings": "Naslovi", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Tema interfejsa" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Tema interfejsa", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/sv.json b/apps/pdfeditor/main/locale/sv.json index 2693a797a5..104905e745 100644 --- a/apps/pdfeditor/main/locale/sv.json +++ b/apps/pdfeditor/main/locale/sv.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Anpassa till sida", "PDFE.Views.ViewTab.tipFitToWidth": "Anpassa till bredd", "PDFE.Views.ViewTab.tipHeadings": "Rubriker", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Gränssnittstema" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Gränssnittstema", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/tr.json b/apps/pdfeditor/main/locale/tr.json index 5aa61c041a..b6174c5950 100644 --- a/apps/pdfeditor/main/locale/tr.json +++ b/apps/pdfeditor/main/locale/tr.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "Sayfaya Sığdır", "PDFE.Views.ViewTab.tipFitToWidth": "Genişliğe Sığdır", "PDFE.Views.ViewTab.tipHeadings": "Başlıklar", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Arayüz teması" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Arayüz teması", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/uk.json b/apps/pdfeditor/main/locale/uk.json index ae60f55569..0c6ae9b95e 100644 --- a/apps/pdfeditor/main/locale/uk.json +++ b/apps/pdfeditor/main/locale/uk.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "За розміром сторінки", "PDFE.Views.ViewTab.tipFitToWidth": "По ширині", "PDFE.Views.ViewTab.tipHeadings": "Заголовки", - "PDFE.Views.ViewTab.tipInterfaceTheme": "Тема інтерфейсу" + "PDFE.Views.ViewTab.tipInterfaceTheme": "Тема інтерфейсу", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/zh-tw.json b/apps/pdfeditor/main/locale/zh-tw.json index c5421d9b94..ed65842c96 100644 --- a/apps/pdfeditor/main/locale/zh-tw.json +++ b/apps/pdfeditor/main/locale/zh-tw.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "調整至頁面", "PDFE.Views.ViewTab.tipFitToWidth": "調整至寬度", "PDFE.Views.ViewTab.tipHeadings": "頁首", - "PDFE.Views.ViewTab.tipInterfaceTheme": "介面主題" + "PDFE.Views.ViewTab.tipInterfaceTheme": "介面主題", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/zh.json b/apps/pdfeditor/main/locale/zh.json index 444840b2d9..586250a8b7 100644 --- a/apps/pdfeditor/main/locale/zh.json +++ b/apps/pdfeditor/main/locale/zh.json @@ -2020,5 +2020,7 @@ "PDFE.Views.ViewTab.tipFitToPage": "适合页面", "PDFE.Views.ViewTab.tipFitToWidth": "适合宽度", "PDFE.Views.ViewTab.tipHeadings": "标题", - "PDFE.Views.ViewTab.tipInterfaceTheme": "界面主题" + "PDFE.Views.ViewTab.tipInterfaceTheme": "界面主题", + "PDFE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PDFE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ar.json b/apps/presentationeditor/main/locale/ar.json index a0ea5b5c92..c8e991c52c 100644 --- a/apps/presentationeditor/main/locale/ar.json +++ b/apps/presentationeditor/main/locale/ar.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/az.json b/apps/presentationeditor/main/locale/az.json index 86b6fd266f..6ec6bd5e14 100644 --- a/apps/presentationeditor/main/locale/az.json +++ b/apps/presentationeditor/main/locale/az.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/be.json b/apps/presentationeditor/main/locale/be.json index d66a15dae1..1341067597 100644 --- a/apps/presentationeditor/main/locale/be.json +++ b/apps/presentationeditor/main/locale/be.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/bg.json b/apps/presentationeditor/main/locale/bg.json index ee2633aacb..e31fc78662 100644 --- a/apps/presentationeditor/main/locale/bg.json +++ b/apps/presentationeditor/main/locale/bg.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ca.json b/apps/presentationeditor/main/locale/ca.json index 4a8748e822..4048d4ac54 100644 --- a/apps/presentationeditor/main/locale/ca.json +++ b/apps/presentationeditor/main/locale/ca.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/cs.json b/apps/presentationeditor/main/locale/cs.json index 07d47fd7ce..9e71c1b2a5 100644 --- a/apps/presentationeditor/main/locale/cs.json +++ b/apps/presentationeditor/main/locale/cs.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/da.json b/apps/presentationeditor/main/locale/da.json index 52eaec3022..2d84893fec 100644 --- a/apps/presentationeditor/main/locale/da.json +++ b/apps/presentationeditor/main/locale/da.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/de.json b/apps/presentationeditor/main/locale/de.json index b7f44ab801..1822547187 100644 --- a/apps/presentationeditor/main/locale/de.json +++ b/apps/presentationeditor/main/locale/de.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/el.json b/apps/presentationeditor/main/locale/el.json index acfaaf5ba4..abb7d58d74 100644 --- a/apps/presentationeditor/main/locale/el.json +++ b/apps/presentationeditor/main/locale/el.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/es.json b/apps/presentationeditor/main/locale/es.json index 04e45852a2..b3129a6c1a 100644 --- a/apps/presentationeditor/main/locale/es.json +++ b/apps/presentationeditor/main/locale/es.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/eu.json b/apps/presentationeditor/main/locale/eu.json index a52144ef34..4280c37a86 100644 --- a/apps/presentationeditor/main/locale/eu.json +++ b/apps/presentationeditor/main/locale/eu.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/fi.json b/apps/presentationeditor/main/locale/fi.json index 65979e1ffc..09418519b1 100644 --- a/apps/presentationeditor/main/locale/fi.json +++ b/apps/presentationeditor/main/locale/fi.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/fr.json b/apps/presentationeditor/main/locale/fr.json index 0bae9d013f..79bf646cd6 100644 --- a/apps/presentationeditor/main/locale/fr.json +++ b/apps/presentationeditor/main/locale/fr.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/gl.json b/apps/presentationeditor/main/locale/gl.json index f89ef32976..f87be95166 100644 --- a/apps/presentationeditor/main/locale/gl.json +++ b/apps/presentationeditor/main/locale/gl.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/he.json b/apps/presentationeditor/main/locale/he.json index fbf747a90b..bb713645a1 100644 --- a/apps/presentationeditor/main/locale/he.json +++ b/apps/presentationeditor/main/locale/he.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/hu.json b/apps/presentationeditor/main/locale/hu.json index 36e79ee3f0..86162a0b1f 100644 --- a/apps/presentationeditor/main/locale/hu.json +++ b/apps/presentationeditor/main/locale/hu.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/hy.json b/apps/presentationeditor/main/locale/hy.json index 6eca37e7c5..edc0d2f15b 100644 --- a/apps/presentationeditor/main/locale/hy.json +++ b/apps/presentationeditor/main/locale/hy.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/id.json b/apps/presentationeditor/main/locale/id.json index dfa179093a..58439e7105 100644 --- a/apps/presentationeditor/main/locale/id.json +++ b/apps/presentationeditor/main/locale/id.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/it.json b/apps/presentationeditor/main/locale/it.json index 79e78209a4..0b48f7c6bb 100644 --- a/apps/presentationeditor/main/locale/it.json +++ b/apps/presentationeditor/main/locale/it.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ja.json b/apps/presentationeditor/main/locale/ja.json index be1ebbb6dc..be75609852 100644 --- a/apps/presentationeditor/main/locale/ja.json +++ b/apps/presentationeditor/main/locale/ja.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ko.json b/apps/presentationeditor/main/locale/ko.json index 454f6bb0a0..5dcea85aa5 100644 --- a/apps/presentationeditor/main/locale/ko.json +++ b/apps/presentationeditor/main/locale/ko.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/lo.json b/apps/presentationeditor/main/locale/lo.json index 272a265570..144ce80f08 100644 --- a/apps/presentationeditor/main/locale/lo.json +++ b/apps/presentationeditor/main/locale/lo.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/lv.json b/apps/presentationeditor/main/locale/lv.json index 931b181ed2..3f03ec36f0 100644 --- a/apps/presentationeditor/main/locale/lv.json +++ b/apps/presentationeditor/main/locale/lv.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ms.json b/apps/presentationeditor/main/locale/ms.json index dea70db02b..f6547db7c8 100644 --- a/apps/presentationeditor/main/locale/ms.json +++ b/apps/presentationeditor/main/locale/ms.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/nl.json b/apps/presentationeditor/main/locale/nl.json index b45ec2472b..83c463031c 100644 --- a/apps/presentationeditor/main/locale/nl.json +++ b/apps/presentationeditor/main/locale/nl.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/pl.json b/apps/presentationeditor/main/locale/pl.json index c325a6bde6..5bf73ffc3c 100644 --- a/apps/presentationeditor/main/locale/pl.json +++ b/apps/presentationeditor/main/locale/pl.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/pt-pt.json b/apps/presentationeditor/main/locale/pt-pt.json index 0a6bfc6a8e..b90dbe927e 100644 --- a/apps/presentationeditor/main/locale/pt-pt.json +++ b/apps/presentationeditor/main/locale/pt-pt.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/pt.json b/apps/presentationeditor/main/locale/pt.json index 7b3734e172..6fcb8be12e 100644 --- a/apps/presentationeditor/main/locale/pt.json +++ b/apps/presentationeditor/main/locale/pt.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ro.json b/apps/presentationeditor/main/locale/ro.json index 381a1c3713..20ff65ba75 100644 --- a/apps/presentationeditor/main/locale/ro.json +++ b/apps/presentationeditor/main/locale/ro.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ru.json b/apps/presentationeditor/main/locale/ru.json index 2cd71865cc..a155e69cc1 100644 --- a/apps/presentationeditor/main/locale/ru.json +++ b/apps/presentationeditor/main/locale/ru.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/si.json b/apps/presentationeditor/main/locale/si.json index 7d8a17ecc6..5383b82988 100644 --- a/apps/presentationeditor/main/locale/si.json +++ b/apps/presentationeditor/main/locale/si.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/sk.json b/apps/presentationeditor/main/locale/sk.json index 849334dfc8..f1bba1c9aa 100644 --- a/apps/presentationeditor/main/locale/sk.json +++ b/apps/presentationeditor/main/locale/sk.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/sl.json b/apps/presentationeditor/main/locale/sl.json index 37bc8dc704..661cdaaa8c 100644 --- a/apps/presentationeditor/main/locale/sl.json +++ b/apps/presentationeditor/main/locale/sl.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/sr-cyrl.json b/apps/presentationeditor/main/locale/sr-cyrl.json index 472555a00e..c361986a46 100644 --- a/apps/presentationeditor/main/locale/sr-cyrl.json +++ b/apps/presentationeditor/main/locale/sr-cyrl.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/sr.json b/apps/presentationeditor/main/locale/sr.json index 7388cb87ea..c6352a936e 100644 --- a/apps/presentationeditor/main/locale/sr.json +++ b/apps/presentationeditor/main/locale/sr.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/sv.json b/apps/presentationeditor/main/locale/sv.json index 1004b6a105..b0afeb41a9 100644 --- a/apps/presentationeditor/main/locale/sv.json +++ b/apps/presentationeditor/main/locale/sv.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/tr.json b/apps/presentationeditor/main/locale/tr.json index b0a3b45708..8a4ab0a086 100644 --- a/apps/presentationeditor/main/locale/tr.json +++ b/apps/presentationeditor/main/locale/tr.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/uk.json b/apps/presentationeditor/main/locale/uk.json index d325a5bba6..b53c153f56 100644 --- a/apps/presentationeditor/main/locale/uk.json +++ b/apps/presentationeditor/main/locale/uk.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/vi.json b/apps/presentationeditor/main/locale/vi.json index e8b5792664..7a1bc6bbdc 100644 --- a/apps/presentationeditor/main/locale/vi.json +++ b/apps/presentationeditor/main/locale/vi.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/zh-tw.json b/apps/presentationeditor/main/locale/zh-tw.json index 5ff23d66fb..5da7c6b3eb 100644 --- a/apps/presentationeditor/main/locale/zh-tw.json +++ b/apps/presentationeditor/main/locale/zh-tw.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/zh.json b/apps/presentationeditor/main/locale/zh.json index 645b08dcff..d1d1f77587 100644 --- a/apps/presentationeditor/main/locale/zh.json +++ b/apps/presentationeditor/main/locale/zh.json @@ -2961,5 +2961,7 @@ "PE.Controllers.DocumentHolder.textNameLayout": "Layout name", "PE.Controllers.DocumentHolder.textLongName": "Enter a name that is less than 255 characters.", "PE.Views.DocumentHolder.textRenameMaster": "Rename Master", - "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout" + "PE.Views.DocumentHolder.textRenameLayout": "Rename Layout", + "PE.Views.DocumentHolder.textResetCrop": "Reset crop", + "PE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ar.json b/apps/spreadsheeteditor/main/locale/ar.json index 0d81e534d8..d5d156a9af 100644 --- a/apps/spreadsheeteditor/main/locale/ar.json +++ b/apps/spreadsheeteditor/main/locale/ar.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/az.json b/apps/spreadsheeteditor/main/locale/az.json index a27d9af0fa..87f62a2326 100644 --- a/apps/spreadsheeteditor/main/locale/az.json +++ b/apps/spreadsheeteditor/main/locale/az.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/be.json b/apps/spreadsheeteditor/main/locale/be.json index b0ccbcf581..0268432d81 100644 --- a/apps/spreadsheeteditor/main/locale/be.json +++ b/apps/spreadsheeteditor/main/locale/be.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/bg.json b/apps/spreadsheeteditor/main/locale/bg.json index e2f889ff2f..9763712011 100644 --- a/apps/spreadsheeteditor/main/locale/bg.json +++ b/apps/spreadsheeteditor/main/locale/bg.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ca.json b/apps/spreadsheeteditor/main/locale/ca.json index 9ec8df8848..b494d361bd 100644 --- a/apps/spreadsheeteditor/main/locale/ca.json +++ b/apps/spreadsheeteditor/main/locale/ca.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/cs.json b/apps/spreadsheeteditor/main/locale/cs.json index 22c4b59dd5..7752fa586d 100644 --- a/apps/spreadsheeteditor/main/locale/cs.json +++ b/apps/spreadsheeteditor/main/locale/cs.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/da.json b/apps/spreadsheeteditor/main/locale/da.json index 8ff43e62b5..4e88022d3d 100644 --- a/apps/spreadsheeteditor/main/locale/da.json +++ b/apps/spreadsheeteditor/main/locale/da.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/de.json b/apps/spreadsheeteditor/main/locale/de.json index 6ac3c2adf4..b654fc121d 100644 --- a/apps/spreadsheeteditor/main/locale/de.json +++ b/apps/spreadsheeteditor/main/locale/de.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/el.json b/apps/spreadsheeteditor/main/locale/el.json index 9e8773d832..d5a20e0f6a 100644 --- a/apps/spreadsheeteditor/main/locale/el.json +++ b/apps/spreadsheeteditor/main/locale/el.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/es.json b/apps/spreadsheeteditor/main/locale/es.json index 17d75393ef..cdb71880f9 100644 --- a/apps/spreadsheeteditor/main/locale/es.json +++ b/apps/spreadsheeteditor/main/locale/es.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/eu.json b/apps/spreadsheeteditor/main/locale/eu.json index a01baa1fd7..230995707a 100644 --- a/apps/spreadsheeteditor/main/locale/eu.json +++ b/apps/spreadsheeteditor/main/locale/eu.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/fi.json b/apps/spreadsheeteditor/main/locale/fi.json index c994665584..ea6da03057 100644 --- a/apps/spreadsheeteditor/main/locale/fi.json +++ b/apps/spreadsheeteditor/main/locale/fi.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/fr.json b/apps/spreadsheeteditor/main/locale/fr.json index 12b4dbd343..3a221f9a2b 100644 --- a/apps/spreadsheeteditor/main/locale/fr.json +++ b/apps/spreadsheeteditor/main/locale/fr.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/gl.json b/apps/spreadsheeteditor/main/locale/gl.json index e18275eb81..8b22012aae 100644 --- a/apps/spreadsheeteditor/main/locale/gl.json +++ b/apps/spreadsheeteditor/main/locale/gl.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/he.json b/apps/spreadsheeteditor/main/locale/he.json index b295563ebf..80abb4c8f8 100644 --- a/apps/spreadsheeteditor/main/locale/he.json +++ b/apps/spreadsheeteditor/main/locale/he.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/hu.json b/apps/spreadsheeteditor/main/locale/hu.json index 5f25bc5511..5b68b7fca5 100644 --- a/apps/spreadsheeteditor/main/locale/hu.json +++ b/apps/spreadsheeteditor/main/locale/hu.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/hy.json b/apps/spreadsheeteditor/main/locale/hy.json index 0a98670e11..7a14127948 100644 --- a/apps/spreadsheeteditor/main/locale/hy.json +++ b/apps/spreadsheeteditor/main/locale/hy.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/id.json b/apps/spreadsheeteditor/main/locale/id.json index 7a7cf65a30..30a214fd29 100644 --- a/apps/spreadsheeteditor/main/locale/id.json +++ b/apps/spreadsheeteditor/main/locale/id.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/it.json b/apps/spreadsheeteditor/main/locale/it.json index 4edbf69ef3..25511ac4d9 100644 --- a/apps/spreadsheeteditor/main/locale/it.json +++ b/apps/spreadsheeteditor/main/locale/it.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ja.json b/apps/spreadsheeteditor/main/locale/ja.json index 61ba7a7d50..868e9f88fc 100644 --- a/apps/spreadsheeteditor/main/locale/ja.json +++ b/apps/spreadsheeteditor/main/locale/ja.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ko.json b/apps/spreadsheeteditor/main/locale/ko.json index 28ca00958e..1d9584f4db 100644 --- a/apps/spreadsheeteditor/main/locale/ko.json +++ b/apps/spreadsheeteditor/main/locale/ko.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/lo.json b/apps/spreadsheeteditor/main/locale/lo.json index ac094634a1..913eb8828a 100644 --- a/apps/spreadsheeteditor/main/locale/lo.json +++ b/apps/spreadsheeteditor/main/locale/lo.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/lv.json b/apps/spreadsheeteditor/main/locale/lv.json index 390aced78a..78a994bebd 100644 --- a/apps/spreadsheeteditor/main/locale/lv.json +++ b/apps/spreadsheeteditor/main/locale/lv.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ms.json b/apps/spreadsheeteditor/main/locale/ms.json index bbab0e3430..44caf2e887 100644 --- a/apps/spreadsheeteditor/main/locale/ms.json +++ b/apps/spreadsheeteditor/main/locale/ms.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/nl.json b/apps/spreadsheeteditor/main/locale/nl.json index e826d08c61..b5d0d5af52 100644 --- a/apps/spreadsheeteditor/main/locale/nl.json +++ b/apps/spreadsheeteditor/main/locale/nl.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/pl.json b/apps/spreadsheeteditor/main/locale/pl.json index 095ea5df4d..aede17f4e1 100644 --- a/apps/spreadsheeteditor/main/locale/pl.json +++ b/apps/spreadsheeteditor/main/locale/pl.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ 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 b443304f08..756982eb75 100644 --- a/apps/spreadsheeteditor/main/locale/pt-pt.json +++ b/apps/spreadsheeteditor/main/locale/pt-pt.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/pt.json b/apps/spreadsheeteditor/main/locale/pt.json index f86b2c49ac..56661105f6 100644 --- a/apps/spreadsheeteditor/main/locale/pt.json +++ b/apps/spreadsheeteditor/main/locale/pt.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ro.json b/apps/spreadsheeteditor/main/locale/ro.json index a70c42c6dc..94099e5acd 100644 --- a/apps/spreadsheeteditor/main/locale/ro.json +++ b/apps/spreadsheeteditor/main/locale/ro.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json index caa4f846dd..108b429f7d 100644 --- a/apps/spreadsheeteditor/main/locale/ru.json +++ b/apps/spreadsheeteditor/main/locale/ru.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/si.json b/apps/spreadsheeteditor/main/locale/si.json index bcad896392..37e1f9f4ba 100644 --- a/apps/spreadsheeteditor/main/locale/si.json +++ b/apps/spreadsheeteditor/main/locale/si.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/sk.json b/apps/spreadsheeteditor/main/locale/sk.json index 2c17a5af6e..f455ec0df4 100644 --- a/apps/spreadsheeteditor/main/locale/sk.json +++ b/apps/spreadsheeteditor/main/locale/sk.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/sl.json b/apps/spreadsheeteditor/main/locale/sl.json index de0f037df9..bd465b778a 100644 --- a/apps/spreadsheeteditor/main/locale/sl.json +++ b/apps/spreadsheeteditor/main/locale/sl.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ 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 8796bbefd9..68ccfde6eb 100644 --- a/apps/spreadsheeteditor/main/locale/sr-cyrl.json +++ b/apps/spreadsheeteditor/main/locale/sr-cyrl.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/sr.json b/apps/spreadsheeteditor/main/locale/sr.json index fe1e21708b..4e0f19cfd4 100644 --- a/apps/spreadsheeteditor/main/locale/sr.json +++ b/apps/spreadsheeteditor/main/locale/sr.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/sv.json b/apps/spreadsheeteditor/main/locale/sv.json index d17c96eece..6dfc428295 100644 --- a/apps/spreadsheeteditor/main/locale/sv.json +++ b/apps/spreadsheeteditor/main/locale/sv.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/tr.json b/apps/spreadsheeteditor/main/locale/tr.json index 918a2db9a3..3e7e216ee4 100644 --- a/apps/spreadsheeteditor/main/locale/tr.json +++ b/apps/spreadsheeteditor/main/locale/tr.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/uk.json b/apps/spreadsheeteditor/main/locale/uk.json index d389627077..f2098691e2 100644 --- a/apps/spreadsheeteditor/main/locale/uk.json +++ b/apps/spreadsheeteditor/main/locale/uk.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/vi.json b/apps/spreadsheeteditor/main/locale/vi.json index 9d3928a343..85210d76ca 100644 --- a/apps/spreadsheeteditor/main/locale/vi.json +++ b/apps/spreadsheeteditor/main/locale/vi.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ 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 68bbcc96b1..05cfc1984b 100644 --- a/apps/spreadsheeteditor/main/locale/zh-tw.json +++ b/apps/spreadsheeteditor/main/locale/zh-tw.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/zh.json b/apps/spreadsheeteditor/main/locale/zh.json index 754bd6f251..8da3c6bf66 100644 --- a/apps/spreadsheeteditor/main/locale/zh.json +++ b/apps/spreadsheeteditor/main/locale/zh.json @@ -4522,5 +4522,7 @@ "Common.Views.MacrosDialog.tipMacrosAdd": "Add macros", "Common.Views.MacrosDialog.tipMacrosRun": "Run", "SSE.Views.ViewTab.textMacros": "Macros", - "SSE.Views.ViewTab.tipMacros": "Macros" + "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.DocumentHolder.textResetCrop": "Reset crop", + "SSE.Views.ImageSettings.textResetCrop": "Reset crop" } \ No newline at end of file From 350eba8cb3b7418aece293bd26f5fb77e573adc0 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 26 Nov 2024 19:06:39 +0300 Subject: [PATCH 15/17] Fix click on blank document --- apps/documenteditor/main/app/view/FileMenuPanels.js | 6 +++--- apps/pdfeditor/main/app/view/FileMenuPanels.js | 6 +++--- apps/presentationeditor/main/app/view/FileMenuPanels.js | 6 +++--- apps/spreadsheeteditor/main/app/view/FileMenuPanels.js | 6 +++--- apps/visioeditor/main/app/view/FileMenuPanels.js | 6 +++--- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/apps/documenteditor/main/app/view/FileMenuPanels.js b/apps/documenteditor/main/app/view/FileMenuPanels.js index 28e8beb7b7..3aa49afb86 100644 --- a/apps/documenteditor/main/app/view/FileMenuPanels.js +++ b/apps/documenteditor/main/app/view/FileMenuPanels.js @@ -1209,7 +1209,7 @@ define([], function () { events: function() { return { - 'click .blank-document-btn':_.bind(this._onBlankDocument, this), + 'click .blank-document':_.bind(this._onBlankDocument, this), 'click .thumb-list .thumb-wrap': _.bind(this._onDocumentTemplate, this) }; }, @@ -1218,8 +1218,8 @@ define([], function () { '
<%= scope.txtCreateNew %>
', '
', '<% if (blank) { %> ', - '
', - '
', + '
', + '
', '
', '
', '
<%= scope.txtBlank %>
', diff --git a/apps/pdfeditor/main/app/view/FileMenuPanels.js b/apps/pdfeditor/main/app/view/FileMenuPanels.js index 2b8f7af33b..3d06a7ded2 100644 --- a/apps/pdfeditor/main/app/view/FileMenuPanels.js +++ b/apps/pdfeditor/main/app/view/FileMenuPanels.js @@ -994,7 +994,7 @@ define([], function () { events: function() { return { - 'click .blank-document-btn':_.bind(this._onBlankDocument, this), + 'click .blank-document':_.bind(this._onBlankDocument, this), 'click .thumb-list .thumb-wrap': _.bind(this._onDocumentTemplate, this) }; }, @@ -1003,8 +1003,8 @@ define([], function () { '
<%= scope.txtCreateNew %>
', '
', '<% if (blank) { %> ', - '
', - '
', + '
', + '
', '
', '
', '
<%= scope.txtBlank %>
', diff --git a/apps/presentationeditor/main/app/view/FileMenuPanels.js b/apps/presentationeditor/main/app/view/FileMenuPanels.js index e285548997..cb30fd22b1 100644 --- a/apps/presentationeditor/main/app/view/FileMenuPanels.js +++ b/apps/presentationeditor/main/app/view/FileMenuPanels.js @@ -970,7 +970,7 @@ define([], function () { events: function() { return { - 'click .blank-document-btn':_.bind(this._onBlankDocument, this), + 'click .blank-document':_.bind(this._onBlankDocument, this), 'click .thumb-list .thumb-wrap': _.bind(this._onDocumentTemplate, this) }; }, @@ -979,8 +979,8 @@ define([], function () { '
<%= scope.txtCreateNew %>
', '
', '<% if (blank) { %> ', - '
', - '
', + '
', + '
', '
', '
', '
<%= scope.txtBlank %>
', diff --git a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js index 67ceec3285..d2b949c310 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js @@ -1492,7 +1492,7 @@ define([], function () { events: function() { return { - 'click .blank-document-btn':_.bind(this._onBlankDocument, this), + 'click .blank-document':_.bind(this._onBlankDocument, this), 'click .thumb-list .thumb-wrap': _.bind(this._onDocumentTemplate, this) }; }, @@ -1501,8 +1501,8 @@ define([], function () { '
<%= scope.txtCreateNew %>
', '
', '<% if (blank) { %> ', - '
', - '
', + '
', + '
', '
', '
', '
<%= scope.txtBlank %>
', diff --git a/apps/visioeditor/main/app/view/FileMenuPanels.js b/apps/visioeditor/main/app/view/FileMenuPanels.js index 091e4ff62f..d06e757b39 100644 --- a/apps/visioeditor/main/app/view/FileMenuPanels.js +++ b/apps/visioeditor/main/app/view/FileMenuPanels.js @@ -663,7 +663,7 @@ define([], function () { events: function() { return { - 'click .blank-document-btn':_.bind(this._onBlankDocument, this), + 'click .blank-document':_.bind(this._onBlankDocument, this), 'click .thumb-list .thumb-wrap': _.bind(this._onDocumentTemplate, this) }; }, @@ -672,8 +672,8 @@ define([], function () { '
<%= scope.txtCreateNew %>
', '
', '<% if (blank) { %> ', - '
', - '
', + '
', + '
', '
', '
', '
<%= scope.txtBlank %>
', From c27a10b64b814d11bcd48c0de17197e8f2cb038f Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 26 Nov 2024 20:54:08 +0300 Subject: [PATCH 16/17] Refactoring --- apps/common/locale.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/common/locale.js b/apps/common/locale.js index 01ffd7d39f..c4b5ca7352 100644 --- a/apps/common/locale.js +++ b/apps/common/locale.js @@ -43,7 +43,7 @@ Common.Locale = new(function() { _4letterLangs = ['pt-pt', 'zh-tw', 'sr-cyrl']; var _applyLocalization = function(callback) { - _fixRtl(); + _clearRtl(); try { callback && (loadcallback = callback); if (l10n) { @@ -161,7 +161,7 @@ Common.Locale = new(function() { }); }; - var _fixRtl = function(prop, scope) { + var _clearRtl = function() { if (!_isCurrentRtl() && document.body.classList.contains('rtl')) { document.body.removeAttribute('dir'); document.body.classList.remove('rtl'); From 747a6828b984bcad90fa132e868bb5f47f254b51 Mon Sep 17 00:00:00 2001 From: Denis Dokin Date: Wed, 27 Nov 2024 12:50:47 +0300 Subject: [PATCH 17/17] icon-upload --- .../resources/img/doc-formats/formats.png | Bin 2052 -> 2127 bytes .../img/doc-formats/formats@1.25x.png | Bin 2443 -> 2504 bytes .../img/doc-formats/formats@1.5x.png | Bin 2978 -> 3077 bytes .../img/doc-formats/formats@1.75x.png | Bin 3409 -> 3512 bytes .../resources/img/doc-formats/formats@2x.png | Bin 4473 -> 4533 bytes .../main/resources/img/doc-formats/key.svg | 6 ++++++ .../resources/img/doc-formats/numbers.svg | 6 ++++++ .../main/resources/img/doc-formats/pages.svg | 6 ++++++ 8 files changed, 18 insertions(+) create mode 100644 apps/common/main/resources/img/doc-formats/key.svg create mode 100644 apps/common/main/resources/img/doc-formats/numbers.svg create mode 100644 apps/common/main/resources/img/doc-formats/pages.svg diff --git a/apps/common/main/resources/img/doc-formats/formats.png b/apps/common/main/resources/img/doc-formats/formats.png index ecc739961e1d369d958e867fb3673c8a84b0dcc0..f768946439a5b30ae98584178c845d366f94945c 100644 GIT binary patch literal 2127 zcmZvdc~lbE9>?ifsimV$_N+v)(!?yC7gH`7XyTGHscB{PRG4Gtq>M{yE(55Isjt*z z!mTh|BQ&K_b1Rqz_f*14Dnmp;ToRN;1Oy&--kJ%@HO7H zcN+izFh1=E4+a1>2kEqxfu1h9!}o3i05+`!{d~?_x9t8ly1tEogcc24hHkds6|}R2OwT54;hF>#arkE-g%ME0eo{p~>Vo zY#NQm=ksM`;`$<6!Jv@YpA~N@D{`gcU7Lc{Ep13tjF444rdL6WMx{`)y4QvqR=W!| zYf@q6A+Lhg+%|?-t~{R8JS*XA)+8GFiYVW8oj0~paei=eUc0Wy>B&l^B}o+G5y7wz z$)mdW)3Kc9?r~mFNhfPo6j4b%i|55^plHI5H(4l~t*5W^xJuTTj8d;&Sr!}zO`Wh6l+!O{lA7-_aP%ABmKXYy9g_7 z>WU)>r@F?Bu7!Ee8<$BZOW~Q2?&*=3m5PzdKQ7#NPGA(g8g3V3G6Z34W@Pl2@f#y4 zAG~AY8wWcQXZj3<$)h=S=POapabG$TAF|Gs^g16rI8kWf9EY|C#``7rZ%}1_ulS(9 zscS{fafHY0e{InB>4gstHa;uRu>`@2@wpEh=rw9^VaM<9F309;<^9*MjbJau>GgV1 ztHT`cJVCHh{#oXGBiUv1m-T%M3E1f_hmq(~)mvg*xCMBBINxtS6A>GKCaJSAnCyZ4 zE3_Pjwww$MORZN7Uw2aOWQBJms*UYa#ja@lY3D8MthmW|LR5BvIMY(B z(XQ`Q!DwqGf^0%q@_JZHOh)kW6g$1B7w7);s~~Z5?_t@mN*e>lt^L)wA`qky#YYCVtSv zGxM?}o6C|BB~S@ajbaP7v(A9h-Mpceh6HFgUUNG?3?}aQt;>=g+TT8T*zHwPw)p(L zndeksqv+x7cNl@A{lLt2yGq#AQzQz-AMj4udF)8V0)mZYRdai7iON3FRV?o$#oJ*bqN~teS8PA8!YLCoAXZuWxRQ2MX_;n zvb=bqHrg0J|AP?&4YBg+8ru^N{xP-+iMbWcd%#U9g`wy>unV1pi#GC%DSz#iH4iB* z7{P^uz6Y)kr&cX19+?}wu-an?&2ajdS_fO^4(!}=z5gdBF|-CG#%e$g+j!5YRO(WR zpX@J!Rj!Y((9B19Dd5(#4z-xTp*(a_7HFO>ey`gCPTzm_s7scEx^^uKSjX}mUEMdr zWDt~j40HXVeXeFwBYon4AX}e?FZ?4tB4X11L=p(xp4yFcyE1XS(|Om$8bj*zKQF_zUl%%8KCqpx%rFr3H@_UFf5lHIEM`L(s zkQk`mj3aFHe$%`{?0}DiAd7d2om13g zP_abUU{zFSs5)2Ab`FQb90jI9f_ykfgr8(xBE6{Dx`9DaKZ)d(slRRZ4%F#E_D$Ul z_84XP>Ry|{2ieo_pXlbY$DT4#AN}H_2_Al%kpqLy-c*fYHmFfy*_6fvkF#d-p)Z*y zd*NlrYBfk(rlRnDg<+;aW%KG`q%A^PA?s&^B_O&?1{BJHPwMAi7PH0PnNw2kE?t)S z?45x4u(1NA-h@LyYQ#ssO4=hY5{)AJ|EZe(<1>AQPKe1DG5=8X#OSnzAbsNghx2b6 gj_I^>fJ6&OD2^Ju;Cgtc?sov3_6~qIpF-aJFZ!^Mi2wiq literal 2052 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 delta 3886 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 DikqDw diff --git a/apps/common/main/resources/img/doc-formats/key.svg b/apps/common/main/resources/img/doc-formats/key.svg new file mode 100644 index 0000000000..b323da07e9 --- /dev/null +++ b/apps/common/main/resources/img/doc-formats/key.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/apps/common/main/resources/img/doc-formats/numbers.svg b/apps/common/main/resources/img/doc-formats/numbers.svg new file mode 100644 index 0000000000..dd8244b0a2 --- /dev/null +++ b/apps/common/main/resources/img/doc-formats/numbers.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/apps/common/main/resources/img/doc-formats/pages.svg b/apps/common/main/resources/img/doc-formats/pages.svg new file mode 100644 index 0000000000..837f673613 --- /dev/null +++ b/apps/common/main/resources/img/doc-formats/pages.svg @@ -0,0 +1,6 @@ + + + + + +