From ac0e61182bec84f1bce08c17952a88cbc3eb04f6 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 28 Mar 2022 19:41:59 +0300 Subject: [PATCH 1/6] [SSE] Edit ole objects --- apps/spreadsheeteditor/main/app.js | 2 ++ .../main/app/controller/DocumentHolder.js | 35 +++++++++++++++++++ .../main/app/controller/Main.js | 3 +- apps/spreadsheeteditor/main/app_dev.js | 2 ++ 4 files changed, 41 insertions(+), 1 deletion(-) diff --git a/apps/spreadsheeteditor/main/app.js b/apps/spreadsheeteditor/main/app.js index a9cf9cc1b..cbd99f6a1 100644 --- a/apps/spreadsheeteditor/main/app.js +++ b/apps/spreadsheeteditor/main/app.js @@ -165,6 +165,7 @@ require([ 'Common.Controllers.Chat', 'Common.Controllers.Comments', 'Common.Controllers.Plugins' + ,'Common.Controllers.ExternalOleEditor' ,'Common.Controllers.ReviewChanges' ,'Common.Controllers.Protection' ] @@ -203,6 +204,7 @@ require([ 'common/main/lib/controller/Comments', 'common/main/lib/controller/Chat', 'common/main/lib/controller/Plugins' + ,'common/main/lib/controller/ExternalOleEditor' ,'common/main/lib/controller/ReviewChanges' ,'common/main/lib/controller/Protection' ,'common/main/lib/controller/Themes' diff --git a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js index 8a94dc5fb..2d73ba827 100644 --- a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js +++ b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js @@ -256,6 +256,28 @@ define([ view.tableTotalMenu.on('item:click', _.bind(me.onTotalMenuClick, me)); view.menuImgMacro.on('click', _.bind(me.onImgMacro, me)); view.menuImgEditPoints.on('click', _.bind(me.onImgEditPoints, me)); + + if (!me.permissions.isEditMailMerge && !me.permissions.isEditDiagram && !me.permissions.isEditOle) { + var oleEditor = me.getApplication().getController('Common.Controllers.ExternalOleEditor').getView('Common.Views.ExternalOleEditor'); + if (oleEditor) { + oleEditor.on('internalmessage', _.bind(function(cmp, message) { + var command = message.data.command; + var data = message.data.data; + if (me.api) { + if (oleEditor.isEditMode()) + me.api.asc_editTableOleObject(data); + } + }, me)); + oleEditor.on('hide', _.bind(function(cmp, message) { + if (me.api) { + me.api.asc_enableKeyEvents(true); + } + setTimeout(function(){ + view.fireEvent('editcomplete', view); + }, 10); + }, me)); + } + } } else { view.menuViewCopy.on('click', _.bind(me.onCopyPaste, me)); view.menuViewUndo.on('click', _.bind(me.onUndo, me)); @@ -342,6 +364,8 @@ define([ this.api.asc_registerCallback('asc_onInputMessage', _.bind(this.onInputMessage, this)); this.api.asc_registerCallback('asc_onTableTotalMenu', _.bind(this.onTableTotalMenu, this)); this.api.asc_registerCallback('asc_onShowPivotGroupDialog', _.bind(this.onShowPivotGroupDialog, this)); + if (!this.permissions.isEditMailMerge && !this.permissions.isEditDiagram && !this.permissions.isEditOle) + this.api.asc_registerCallback('asc_doubleClickOnTableOleObject', _.bind(this.onDoubleClickOnTableOleObject, this)); } this.api.asc_registerCallback('asc_onShowForeignCursorLabel', _.bind(this.onShowForeignCursorLabel, this)); this.api.asc_registerCallback('asc_onHideForeignCursorLabel', _.bind(this.onHideForeignCursorLabel, this)); @@ -3952,6 +3976,17 @@ define([ } }, + onDoubleClickOnTableOleObject: function(obj) { + if (this.permissions.isEdit && !this._isDisabled) { + var oleEditor = SSE.getController('Common.Controllers.ExternalOleEditor').getView('Common.Views.ExternalOleEditor'); + if (oleEditor && obj) { + oleEditor.setEditMode(true); + oleEditor.show(); + oleEditor.setOleData(Asc.asc_putBinaryDataToFrameFromTableOleObject(obj)); + } + } + }, + getUserName: function(id){ var usersStore = SSE.getCollection('Common.Collections.Users'); if (usersStore){ diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js index 6529ccdb6..cb89960de 100644 --- a/apps/spreadsheeteditor/main/app/controller/Main.js +++ b/apps/spreadsheeteditor/main/app/controller/Main.js @@ -915,6 +915,7 @@ define([ if (!me.appOptions.isEditMailMerge && !me.appOptions.isEditDiagram && !me.appOptions.isEditOle) { pluginsController.setApi(me.api); this.api && this.api.asc_setFrozenPaneBorderType(Common.localStorage.getBool('sse-freeze-shadow', true) ? Asc.c_oAscFrozenPaneBorderType.shadow : Asc.c_oAscFrozenPaneBorderType.line); + application.getController('Common.Controllers.ExternalOleEditor').setApi(this.api).loadConfig({config:this.editorConfig, customization: this.editorConfig.customization}); } leftMenuView.disableMenu('all',false); @@ -2565,7 +2566,7 @@ define([ setOleData: function(obj) { if (typeof obj === 'object' && this.api) { - this.api.asc_addTableOleObject(obj); + this.api.asc_addTableOleObjectInOleEditor(obj); this.isFrameClosed = false; } }, diff --git a/apps/spreadsheeteditor/main/app_dev.js b/apps/spreadsheeteditor/main/app_dev.js index 746539606..ff148b677 100644 --- a/apps/spreadsheeteditor/main/app_dev.js +++ b/apps/spreadsheeteditor/main/app_dev.js @@ -155,6 +155,7 @@ require([ 'Common.Controllers.Chat', 'Common.Controllers.Comments', 'Common.Controllers.Plugins' + ,'Common.Controllers.ExternalOleEditor' ,'Common.Controllers.ReviewChanges' ,'Common.Controllers.Protection' ] @@ -193,6 +194,7 @@ require([ 'common/main/lib/controller/Comments', 'common/main/lib/controller/Chat', 'common/main/lib/controller/Plugins' + ,'common/main/lib/controller/ExternalOleEditor' ,'common/main/lib/controller/ReviewChanges' ,'common/main/lib/controller/Protection' ,'common/main/lib/controller/Themes' From 7268073d192aa4990fd92be90ed0f606d8b91757 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 28 Mar 2022 21:02:21 +0300 Subject: [PATCH 2/6] Edit sse ole object from right panel --- .../documenteditor/main/app/view/ImageSettings.js | 15 +++++++++++++-- .../main/app/view/ImageSettings.js | 15 +++++++++++++-- .../main/app/view/ImageSettings.js | 15 +++++++++++++-- 3 files changed, 39 insertions(+), 6 deletions(-) diff --git a/apps/documenteditor/main/app/view/ImageSettings.js b/apps/documenteditor/main/app/view/ImageSettings.js index 5f60017b4..54bba15f1 100644 --- a/apps/documenteditor/main/app/view/ImageSettings.js +++ b/apps/documenteditor/main/app/view/ImageSettings.js @@ -181,7 +181,18 @@ define([ this.btnOriginalSize.on('click', _.bind(this.setOriginalSize, this)); this.btnEditObject.on('click', _.bind(function(btn){ - if (this.api) this.api.asc_startEditCurrentOleObject(); + if (this.api) { + var oleobj = this.api.asc_canEditTableOleObject(); + if (oleobj) { + var oleEditor = DE.getController('Common.Controllers.ExternalOleEditor').getView('Common.Views.ExternalOleEditor'); + if (oleEditor) { + oleEditor.setEditMode(true); + oleEditor.show(); + oleEditor.setOleData(Asc.asc_putBinaryDataToFrameFromTableOleObject(oleobj)); + } + } else + this.api.asc_startEditCurrentOleObject(); + } this.fireEvent('editcomplete', this); }, this)); this.btnFitMargins.on('click', _.bind(this.setFitMargins, this)); @@ -424,7 +435,7 @@ define([ if (this._state.isOleObject) { var plugin = DE.getCollection('Common.Collections.Plugins').findWhere({guid: pluginGuid}); - this.btnEditObject.setDisabled(plugin===null || plugin ===undefined || this._locked); + this.btnEditObject.setDisabled(!this.api.asc_canEditTableOleObject() && (plugin===null || plugin ===undefined) || this._locked); } else { this.btnSelectImage.setDisabled(pluginGuid===null || this._locked); } diff --git a/apps/presentationeditor/main/app/view/ImageSettings.js b/apps/presentationeditor/main/app/view/ImageSettings.js index 25bc35c55..c0845cb8b 100644 --- a/apps/presentationeditor/main/app/view/ImageSettings.js +++ b/apps/presentationeditor/main/app/view/ImageSettings.js @@ -148,7 +148,18 @@ define([ this.btnOriginalSize.on('click', _.bind(this.setOriginalSize, this)); this.btnEditObject.on('click', _.bind(function(btn){ - if (this.api) this.api.asc_startEditCurrentOleObject(); + if (this.api) { + var oleobj = this.api.asc_canEditTableOleObject(); + if (oleobj) { + var oleEditor = PE.getController('Common.Controllers.ExternalOleEditor').getView('Common.Views.ExternalOleEditor'); + if (oleEditor) { + oleEditor.setEditMode(true); + oleEditor.show(); + oleEditor.setOleData(Asc.asc_putBinaryDataToFrameFromTableOleObject(oleobj)); + } + } else + this.api.asc_startEditCurrentOleObject(); + } this.fireEvent('editcomplete', this); }, this)); @@ -348,7 +359,7 @@ define([ if (this._state.isOleObject) { var plugin = PE.getCollection('Common.Collections.Plugins').findWhere({guid: pluginGuid}); - this.btnEditObject.setDisabled(plugin===null || plugin ===undefined || this._locked); + this.btnEditObject.setDisabled(!this.api.asc_canEditTableOleObject() && (plugin===null || plugin ===undefined) || this._locked); } else { this.btnSelectImage.setDisabled(pluginGuid===null || this._locked); } diff --git a/apps/spreadsheeteditor/main/app/view/ImageSettings.js b/apps/spreadsheeteditor/main/app/view/ImageSettings.js index e8d6404d8..6fdbec171 100644 --- a/apps/spreadsheeteditor/main/app/view/ImageSettings.js +++ b/apps/spreadsheeteditor/main/app/view/ImageSettings.js @@ -215,7 +215,18 @@ define([ this.spnHeight.on('inputleave', function(){ Common.NotificationCenter.trigger('edit:complete', me);}); this.btnOriginalSize.on('click', _.bind(this.setOriginalSize, this)); this.btnEditObject.on('click', _.bind(function(btn){ - if (this.api) this.api.asc_startEditCurrentOleObject(); + if (this.api) { + var oleobj = this.api.asc_canEditTableOleObject(); + if (oleobj) { + var oleEditor = SSE.getController('Common.Controllers.ExternalOleEditor').getView('Common.Views.ExternalOleEditor'); + if (oleEditor) { + oleEditor.setEditMode(true); + oleEditor.show(); + oleEditor.setOleData(Asc.asc_putBinaryDataToFrameFromTableOleObject(oleobj)); + } + } else + this.api.asc_startEditCurrentOleObject(); + } Common.NotificationCenter.trigger('edit:complete', this); }, this)); @@ -448,7 +459,7 @@ define([ if (this._state.isOleObject) { var plugin = SSE.getCollection('Common.Collections.Plugins').findWhere({guid: pluginGuid}); - this.btnEditObject.setDisabled(plugin===null || plugin ===undefined || this._locked); + this.btnEditObject.setDisabled(!this.api.asc_canEditTableOleObject() && (plugin===null || plugin ===undefined) || this._locked); } else { this.btnSelectImage.setDisabled(pluginGuid===null || this._locked); } From 68397ea56b2c8a8bb024d7c4db811845a75dcace Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 29 Mar 2022 11:08:54 +0300 Subject: [PATCH 3/6] Get ole object --- apps/documenteditor/main/app/view/ImageSettings.js | 2 +- apps/presentationeditor/main/app/view/ImageSettings.js | 2 +- apps/spreadsheeteditor/main/app/view/ImageSettings.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/documenteditor/main/app/view/ImageSettings.js b/apps/documenteditor/main/app/view/ImageSettings.js index 54bba15f1..df4817e88 100644 --- a/apps/documenteditor/main/app/view/ImageSettings.js +++ b/apps/documenteditor/main/app/view/ImageSettings.js @@ -182,7 +182,7 @@ define([ this.btnEditObject.on('click', _.bind(function(btn){ if (this.api) { - var oleobj = this.api.asc_canEditTableOleObject(); + var oleobj = this.api.asc_canEditTableOleObject(true); if (oleobj) { var oleEditor = DE.getController('Common.Controllers.ExternalOleEditor').getView('Common.Views.ExternalOleEditor'); if (oleEditor) { diff --git a/apps/presentationeditor/main/app/view/ImageSettings.js b/apps/presentationeditor/main/app/view/ImageSettings.js index c0845cb8b..9eb8ef3e9 100644 --- a/apps/presentationeditor/main/app/view/ImageSettings.js +++ b/apps/presentationeditor/main/app/view/ImageSettings.js @@ -149,7 +149,7 @@ define([ this.btnOriginalSize.on('click', _.bind(this.setOriginalSize, this)); this.btnEditObject.on('click', _.bind(function(btn){ if (this.api) { - var oleobj = this.api.asc_canEditTableOleObject(); + var oleobj = this.api.asc_canEditTableOleObject(true); if (oleobj) { var oleEditor = PE.getController('Common.Controllers.ExternalOleEditor').getView('Common.Views.ExternalOleEditor'); if (oleEditor) { diff --git a/apps/spreadsheeteditor/main/app/view/ImageSettings.js b/apps/spreadsheeteditor/main/app/view/ImageSettings.js index 6fdbec171..65a3bbf86 100644 --- a/apps/spreadsheeteditor/main/app/view/ImageSettings.js +++ b/apps/spreadsheeteditor/main/app/view/ImageSettings.js @@ -216,7 +216,7 @@ define([ this.btnOriginalSize.on('click', _.bind(this.setOriginalSize, this)); this.btnEditObject.on('click', _.bind(function(btn){ if (this.api) { - var oleobj = this.api.asc_canEditTableOleObject(); + var oleobj = this.api.asc_canEditTableOleObject(true); if (oleobj) { var oleEditor = SSE.getController('Common.Controllers.ExternalOleEditor').getView('Common.Views.ExternalOleEditor'); if (oleEditor) { From a2aade26ef9ed34b6222ea8dd979003597e6e0d7 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 30 Mar 2022 23:39:26 +0300 Subject: [PATCH 4/6] Update translation --- apps/documenteditor/mobile/locale/az.json | 8 +++++++- apps/documenteditor/mobile/locale/be.json | 8 +++++++- apps/documenteditor/mobile/locale/bg.json | 8 +++++++- apps/documenteditor/mobile/locale/ca.json | 8 +++++++- apps/documenteditor/mobile/locale/cs.json | 8 +++++++- apps/documenteditor/mobile/locale/da.json | 8 +++++++- apps/documenteditor/mobile/locale/de.json | 8 +++++++- apps/documenteditor/mobile/locale/el.json | 8 +++++++- apps/documenteditor/mobile/locale/es.json | 8 +++++++- apps/documenteditor/mobile/locale/fi.json | 8 +++++++- apps/documenteditor/mobile/locale/fr.json | 8 +++++++- apps/documenteditor/mobile/locale/gl.json | 8 +++++++- apps/documenteditor/mobile/locale/hu.json | 8 +++++++- apps/documenteditor/mobile/locale/it.json | 8 +++++++- apps/documenteditor/mobile/locale/ja.json | 8 +++++++- apps/documenteditor/mobile/locale/ko.json | 8 +++++++- apps/documenteditor/mobile/locale/lo.json | 8 +++++++- apps/documenteditor/mobile/locale/lv.json | 8 +++++++- apps/documenteditor/mobile/locale/nb.json | 8 +++++++- apps/documenteditor/mobile/locale/nl.json | 8 +++++++- apps/documenteditor/mobile/locale/pl.json | 8 +++++++- apps/documenteditor/mobile/locale/pt.json | 8 +++++++- apps/documenteditor/mobile/locale/ro.json | 8 +++++++- apps/documenteditor/mobile/locale/ru.json | 8 +++++++- apps/documenteditor/mobile/locale/sk.json | 8 +++++++- apps/documenteditor/mobile/locale/sl.json | 8 +++++++- apps/documenteditor/mobile/locale/sv.json | 8 +++++++- apps/documenteditor/mobile/locale/tr.json | 8 +++++++- apps/documenteditor/mobile/locale/uk.json | 8 +++++++- apps/documenteditor/mobile/locale/vi.json | 8 +++++++- apps/documenteditor/mobile/locale/zh.json | 8 +++++++- apps/presentationeditor/mobile/locale/sk.json | 3 ++- 32 files changed, 219 insertions(+), 32 deletions(-) diff --git a/apps/documenteditor/mobile/locale/az.json b/apps/documenteditor/mobile/locale/az.json index c9bd04ee3..aa01133ed 100644 --- a/apps/documenteditor/mobile/locale/az.json +++ b/apps/documenteditor/mobile/locale/az.json @@ -649,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "Saxlanmamış dəyişiklikləriniz var. Avtomatik saxlanmanı gözləmək üçün \"Bu Səhifədə Qalın\" üzərinə klikləyin. Bütün saxlanmamış dəyişiklikləri ləğv etmək üçün \"Bu səhifədən Çıxın\" hissəsinin üzərinə klikləyin.", diff --git a/apps/documenteditor/mobile/locale/be.json b/apps/documenteditor/mobile/locale/be.json index 1d5aa1e80..ed18b1ffc 100644 --- a/apps/documenteditor/mobile/locale/be.json +++ b/apps/documenteditor/mobile/locale/be.json @@ -649,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveTitleText": "Вы выходзіце з праграмы", diff --git a/apps/documenteditor/mobile/locale/bg.json b/apps/documenteditor/mobile/locale/bg.json index 823418902..cc3ee0c00 100644 --- a/apps/documenteditor/mobile/locale/bg.json +++ b/apps/documenteditor/mobile/locale/bg.json @@ -649,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/ca.json b/apps/documenteditor/mobile/locale/ca.json index d4357e87a..635cd23b4 100644 --- a/apps/documenteditor/mobile/locale/ca.json +++ b/apps/documenteditor/mobile/locale/ca.json @@ -649,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "Tens canvis sense desar. Fes clic a \"Mantingueu-vos en aquesta pàgina\" per esperar al desament automàtic. Fes clic a \"Deixar aquesta pàgina\" per descartar tots els canvis no desats.", diff --git a/apps/documenteditor/mobile/locale/cs.json b/apps/documenteditor/mobile/locale/cs.json index 5ec84c9bb..744614949 100644 --- a/apps/documenteditor/mobile/locale/cs.json +++ b/apps/documenteditor/mobile/locale/cs.json @@ -649,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "V tomto dokumentu máte neuložené změny. Klikněte na 'Zůstat na této stránce'. Klikněte na 'Opustit tuto stránku' pro zahození neuložených změn.", diff --git a/apps/documenteditor/mobile/locale/da.json b/apps/documenteditor/mobile/locale/da.json index 823418902..cc3ee0c00 100644 --- a/apps/documenteditor/mobile/locale/da.json +++ b/apps/documenteditor/mobile/locale/da.json @@ -649,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/de.json b/apps/documenteditor/mobile/locale/de.json index b5de5fdcb..ce560ce30 100644 --- a/apps/documenteditor/mobile/locale/de.json +++ b/apps/documenteditor/mobile/locale/de.json @@ -649,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "Sie haben nicht gespeicherte Änderungen. Klicken Sie auf \"Auf dieser Seite bleiben\" und warten Sie, bis die Datei automatisch gespeichert wird. Klicken Sie auf \"Die Seite verlassen\", um nicht gespeicherte Änderungen zu verwerfen.", diff --git a/apps/documenteditor/mobile/locale/el.json b/apps/documenteditor/mobile/locale/el.json index baad4ba5e..c79a14693 100644 --- a/apps/documenteditor/mobile/locale/el.json +++ b/apps/documenteditor/mobile/locale/el.json @@ -649,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "Έχετε μη αποθηκευμένες αλλαγές. Πατήστε 'Παραμονή στη Σελίδα' για να περιμένετε την αυτόματη αποθήκευση. Πατήστε 'Έξοδος από τη Σελίδα' για να απορρίψετε όλες τις μη αποθηκευμένες αλλαγές.", diff --git a/apps/documenteditor/mobile/locale/es.json b/apps/documenteditor/mobile/locale/es.json index f2158e91f..fdc0bb1d8 100644 --- a/apps/documenteditor/mobile/locale/es.json +++ b/apps/documenteditor/mobile/locale/es.json @@ -649,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "Tiene cambios sin guardar. Haga clic en \"Permanecer en esta página\" para esperar a que se guarde automáticamente. Haga clic en \"Salir de esta página\" para descartar todos los cambios no guardados.", diff --git a/apps/documenteditor/mobile/locale/fi.json b/apps/documenteditor/mobile/locale/fi.json index 823418902..cc3ee0c00 100644 --- a/apps/documenteditor/mobile/locale/fi.json +++ b/apps/documenteditor/mobile/locale/fi.json @@ -649,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/fr.json b/apps/documenteditor/mobile/locale/fr.json index b54fe6bd3..a2ce3c881 100644 --- a/apps/documenteditor/mobile/locale/fr.json +++ b/apps/documenteditor/mobile/locale/fr.json @@ -649,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur Rester sur cette page et attendez l'enregistrement automatique. Cliquez sur Quitter cette page pour annuler toutes les modifications non enregistrées.", diff --git a/apps/documenteditor/mobile/locale/gl.json b/apps/documenteditor/mobile/locale/gl.json index dc3eb0fec..b5f4e0d33 100644 --- a/apps/documenteditor/mobile/locale/gl.json +++ b/apps/documenteditor/mobile/locale/gl.json @@ -649,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "Ten cambios sen gardar. Prema en \"Permanecer nesta páxina\" para esperar a que se garde automaticamente. Prema en \"Saír desta páxina\" para descartar todos os cambios non gardados.", diff --git a/apps/documenteditor/mobile/locale/hu.json b/apps/documenteditor/mobile/locale/hu.json index 9d349c667..91ad8cd96 100644 --- a/apps/documenteditor/mobile/locale/hu.json +++ b/apps/documenteditor/mobile/locale/hu.json @@ -649,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "Nem mentett módosításai vannak. Kattintson a „Maradj ezen az oldalon” gombra az automatikus mentés megvárásához. Kattintson a \"Hagyja el ezt az oldalt\" gombra az összes nem mentett módosítás elvetéséhez.", diff --git a/apps/documenteditor/mobile/locale/it.json b/apps/documenteditor/mobile/locale/it.json index ba7f1b4d9..db3278554 100644 --- a/apps/documenteditor/mobile/locale/it.json +++ b/apps/documenteditor/mobile/locale/it.json @@ -649,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "Hai dei cambiamenti non salvati. Premi 'Rimanere sulla pagina' per attendere il salvataggio automatico. Premi 'Lasciare la pagina' per eliminare tutte le modifiche non salvate.", diff --git a/apps/documenteditor/mobile/locale/ja.json b/apps/documenteditor/mobile/locale/ja.json index e1dd19b55..0285ca35a 100644 --- a/apps/documenteditor/mobile/locale/ja.json +++ b/apps/documenteditor/mobile/locale/ja.json @@ -649,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "保存されていない変更があります。自動保存を待つように「このページから移動しない」をクリックしてください。保存されていない変更を破棄ように「このページから移動する」をクリックしてください。", diff --git a/apps/documenteditor/mobile/locale/ko.json b/apps/documenteditor/mobile/locale/ko.json index ef119bc6d..3e5eddebe 100644 --- a/apps/documenteditor/mobile/locale/ko.json +++ b/apps/documenteditor/mobile/locale/ko.json @@ -649,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "저장하지 않은 변경 사항이 있습니다. 자동 저장이 완료될 때까지 기다리려면 \"이 페이지에 머물기\"를 클릭하십시오. \"이 페이지에서 나가기\"를 클릭하면 저장되지 않은 모든 변경 사항이 삭제됩니다.", diff --git a/apps/documenteditor/mobile/locale/lo.json b/apps/documenteditor/mobile/locale/lo.json index 93f58166d..e4f1c30a9 100644 --- a/apps/documenteditor/mobile/locale/lo.json +++ b/apps/documenteditor/mobile/locale/lo.json @@ -649,7 +649,13 @@ "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", "textEmptyHeading": "Empty Heading", - "txtScheme6": "Concourse" + "txtScheme6": "Concourse", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "leaveButtonText": "ອອກຈາກໜ້ານີ້", diff --git a/apps/documenteditor/mobile/locale/lv.json b/apps/documenteditor/mobile/locale/lv.json index 823418902..cc3ee0c00 100644 --- a/apps/documenteditor/mobile/locale/lv.json +++ b/apps/documenteditor/mobile/locale/lv.json @@ -649,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/nb.json b/apps/documenteditor/mobile/locale/nb.json index 823418902..cc3ee0c00 100644 --- a/apps/documenteditor/mobile/locale/nb.json +++ b/apps/documenteditor/mobile/locale/nb.json @@ -649,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/nl.json b/apps/documenteditor/mobile/locale/nl.json index 62c864c06..8af48344f 100644 --- a/apps/documenteditor/mobile/locale/nl.json +++ b/apps/documenteditor/mobile/locale/nl.json @@ -649,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "U heeft nog niet opgeslagen wijzigingen. Klik op 'Blijf op deze pagina' om te wachten op automatisch opslaan. Klik op 'Verlaat deze pagina' om alle niet-opgeslagen wijzigingen te verwijderen.", diff --git a/apps/documenteditor/mobile/locale/pl.json b/apps/documenteditor/mobile/locale/pl.json index 823418902..cc3ee0c00 100644 --- a/apps/documenteditor/mobile/locale/pl.json +++ b/apps/documenteditor/mobile/locale/pl.json @@ -649,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/pt.json b/apps/documenteditor/mobile/locale/pt.json index 0e499eb55..8520b2eb3 100644 --- a/apps/documenteditor/mobile/locale/pt.json +++ b/apps/documenteditor/mobile/locale/pt.json @@ -649,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "Você tem mudanças não salvas. Clique em 'Ficar nesta página' para esperar pela auto-salvar. Clique em 'Sair desta página' para descartar todas as mudanças não salvas.", diff --git a/apps/documenteditor/mobile/locale/ro.json b/apps/documenteditor/mobile/locale/ro.json index 8538316f3..8e7da7a13 100644 --- a/apps/documenteditor/mobile/locale/ro.json +++ b/apps/documenteditor/mobile/locale/ro.json @@ -649,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "Nu ați salvat modificările din documentul. Faceți clic pe Rămâi în pagină și așteptați la salvare automată. Faceți clic pe Părăsește aceasta pagina ca să renunțați la toate modificările nesalvate.", diff --git a/apps/documenteditor/mobile/locale/ru.json b/apps/documenteditor/mobile/locale/ru.json index 757b1fe41..adc61e263 100644 --- a/apps/documenteditor/mobile/locale/ru.json +++ b/apps/documenteditor/mobile/locale/ru.json @@ -649,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "В документе есть несохраненные изменения. Нажмите 'Остаться на странице', чтобы дождаться автосохранения. Нажмите 'Уйти со страницы', чтобы сбросить все несохраненные изменения.", diff --git a/apps/documenteditor/mobile/locale/sk.json b/apps/documenteditor/mobile/locale/sk.json index 386d1b9ed..b9b63d0d5 100644 --- a/apps/documenteditor/mobile/locale/sk.json +++ b/apps/documenteditor/mobile/locale/sk.json @@ -649,7 +649,13 @@ "txtScheme6": "Hala", "txtScheme7": "Spravodlivosť", "txtScheme8": "Tok", - "txtScheme9": "Zlieváreň" + "txtScheme9": "Zlieváreň", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "Máte neuložené zmeny. Kliknite na „Zostať na tejto stránke“ a počkajte na automatické uloženie. Kliknutím na „Opustiť túto stránku“ zahodíte všetky neuložené zmeny.", diff --git a/apps/documenteditor/mobile/locale/sl.json b/apps/documenteditor/mobile/locale/sl.json index 823418902..cc3ee0c00 100644 --- a/apps/documenteditor/mobile/locale/sl.json +++ b/apps/documenteditor/mobile/locale/sl.json @@ -649,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/sv.json b/apps/documenteditor/mobile/locale/sv.json index 823418902..cc3ee0c00 100644 --- a/apps/documenteditor/mobile/locale/sv.json +++ b/apps/documenteditor/mobile/locale/sv.json @@ -649,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/tr.json b/apps/documenteditor/mobile/locale/tr.json index 257d790ae..5f7da4657 100644 --- a/apps/documenteditor/mobile/locale/tr.json +++ b/apps/documenteditor/mobile/locale/tr.json @@ -649,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "Kaydedilmemiş değişiklikleriniz mevcut. Otomatik kaydetmeyi beklemek için 'Bu Sayfada Kal' seçeneğini tıklayın. Kaydedilmemiş tüm değişiklikleri atmak için 'Bu Sayfadan Ayrıl'ı tıklayın.", diff --git a/apps/documenteditor/mobile/locale/uk.json b/apps/documenteditor/mobile/locale/uk.json index ed41c3cfd..e92fadf1b 100644 --- a/apps/documenteditor/mobile/locale/uk.json +++ b/apps/documenteditor/mobile/locale/uk.json @@ -649,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "У документі є незбережені зміни. Натисніть 'Залишитись на сторінці', щоб дочекатися автозбереження. Натисніть 'Піти зі сторінки', щоб скинути всі незбережені зміни.", diff --git a/apps/documenteditor/mobile/locale/vi.json b/apps/documenteditor/mobile/locale/vi.json index 823418902..cc3ee0c00 100644 --- a/apps/documenteditor/mobile/locale/vi.json +++ b/apps/documenteditor/mobile/locale/vi.json @@ -649,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/zh.json b/apps/documenteditor/mobile/locale/zh.json index a81e245e3..c53ed10e3 100644 --- a/apps/documenteditor/mobile/locale/zh.json +++ b/apps/documenteditor/mobile/locale/zh.json @@ -649,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "你有未保存的修改。点击“留在该页”可等待自动保存完成。点击“离开该页”将丢弃全部未经保存的修改。", diff --git a/apps/presentationeditor/mobile/locale/sk.json b/apps/presentationeditor/mobile/locale/sk.json index 1f7efe92f..321e45f60 100644 --- a/apps/presentationeditor/mobile/locale/sk.json +++ b/apps/presentationeditor/mobile/locale/sk.json @@ -516,7 +516,8 @@ "txtScheme6": "Hala", "txtScheme7": "Spravodlivosť", "txtScheme8": "Tok", - "txtScheme9": "Zlieváreň" + "txtScheme9": "Zlieváreň", + "textFeedback": "Feedback & Support" } } } \ No newline at end of file From fe43be62afaf98989712418ad9cfb850a0e09bbd Mon Sep 17 00:00:00 2001 From: Andrey Shimagin Date: Fri, 1 Apr 2022 14:39:20 +0300 Subject: [PATCH 5/6] Fix keyboard search --- apps/common/mobile/lib/view/Search.jsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/apps/common/mobile/lib/view/Search.jsx b/apps/common/mobile/lib/view/Search.jsx index 82d4dbc88..6fb8d59b5 100644 --- a/apps/common/mobile/lib/view/Search.jsx +++ b/apps/common/mobile/lib/view/Search.jsx @@ -233,6 +233,12 @@ class SearchView extends Component { replaceQuery: value }); } + + onSearchKeyBoard(event) { + if(event.keyCode === 13) { + this.props.onSearchQuery(this.searchParams()); + } + } render() { const usereplace = searchOptions.usereplace; @@ -258,7 +264,8 @@ class SearchView extends Component {
- this.onSearchKeyBoard(e)} onChange={e => {this.changeSearchQuery(e.target.value)}} /> {isIos ? : null} this.changeSearchQuery('')} /> From 1788f2d4ef80cb166c5f30a8c865f5e1358bdc9b Mon Sep 17 00:00:00 2001 From: Kirill Volkov Date: Fri, 1 Apr 2022 14:39:58 +0300 Subject: [PATCH 6/6] Add equatation icons Add equatation icons for context menu --- .../main/resources/img/toolbar/1.25x/latex.png | Bin 0 -> 329 bytes .../img/toolbar/1.25x/linear-equation.png | Bin 0 -> 402 bytes .../img/toolbar/1.25x/professional-equation.png | Bin 0 -> 438 bytes .../main/resources/img/toolbar/1.25x/unicode.png | Bin 0 -> 234 bytes .../main/resources/img/toolbar/1.5x/latex.png | Bin 0 -> 391 bytes .../img/toolbar/1.5x/linear-equation.png | Bin 0 -> 467 bytes .../img/toolbar/1.5x/professional-equation.png | Bin 0 -> 502 bytes .../main/resources/img/toolbar/1.5x/unicode.png | Bin 0 -> 250 bytes .../main/resources/img/toolbar/1.75x/latex.png | Bin 0 -> 446 bytes .../img/toolbar/1.75x/linear-equation.png | Bin 0 -> 553 bytes .../img/toolbar/1.75x/professional-equation.png | Bin 0 -> 587 bytes .../main/resources/img/toolbar/1.75x/unicode.png | Bin 0 -> 269 bytes .../main/resources/img/toolbar/1x/latex.png | Bin 0 -> 272 bytes .../resources/img/toolbar/1x/linear-equation.png | Bin 0 -> 314 bytes .../img/toolbar/1x/professional-equation.png | Bin 0 -> 348 bytes .../main/resources/img/toolbar/1x/unicode.png | Bin 0 -> 198 bytes .../main/resources/img/toolbar/2x/latex.png | Bin 0 -> 554 bytes .../resources/img/toolbar/2x/linear-equation.png | Bin 0 -> 628 bytes .../img/toolbar/2x/professional-equation.png | Bin 0 -> 691 bytes .../main/resources/img/toolbar/2x/unicode.png | Bin 0 -> 266 bytes 20 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 apps/common/main/resources/img/toolbar/1.25x/latex.png create mode 100644 apps/common/main/resources/img/toolbar/1.25x/linear-equation.png create mode 100644 apps/common/main/resources/img/toolbar/1.25x/professional-equation.png create mode 100644 apps/common/main/resources/img/toolbar/1.25x/unicode.png create mode 100644 apps/common/main/resources/img/toolbar/1.5x/latex.png create mode 100644 apps/common/main/resources/img/toolbar/1.5x/linear-equation.png create mode 100644 apps/common/main/resources/img/toolbar/1.5x/professional-equation.png create mode 100644 apps/common/main/resources/img/toolbar/1.5x/unicode.png create mode 100644 apps/common/main/resources/img/toolbar/1.75x/latex.png create mode 100644 apps/common/main/resources/img/toolbar/1.75x/linear-equation.png create mode 100644 apps/common/main/resources/img/toolbar/1.75x/professional-equation.png create mode 100644 apps/common/main/resources/img/toolbar/1.75x/unicode.png create mode 100644 apps/common/main/resources/img/toolbar/1x/latex.png create mode 100644 apps/common/main/resources/img/toolbar/1x/linear-equation.png create mode 100644 apps/common/main/resources/img/toolbar/1x/professional-equation.png create mode 100644 apps/common/main/resources/img/toolbar/1x/unicode.png create mode 100644 apps/common/main/resources/img/toolbar/2x/latex.png create mode 100644 apps/common/main/resources/img/toolbar/2x/linear-equation.png create mode 100644 apps/common/main/resources/img/toolbar/2x/professional-equation.png create mode 100644 apps/common/main/resources/img/toolbar/2x/unicode.png diff --git a/apps/common/main/resources/img/toolbar/1.25x/latex.png b/apps/common/main/resources/img/toolbar/1.25x/latex.png new file mode 100644 index 0000000000000000000000000000000000000000..536c2988d820491c39107e23a5eaa728302841ad GIT binary patch literal 329 zcmV-P0k-~$P)X1^@s6b5wmq0003HNklDqLfG^>eXB- zmCB`tif82Kk^PWz&U2}hzZxo@k)KEM_kct$S4vkr^m|}m>Hvvcu9U8Lbg95T_&@fQ z4vl_)v2$lD9UA@qZ0D{(+zTL1KpJE?m<2%$0Ae_p1wjk~vVg%*a0<2{!BFrWg1XQO zHi)&g4KoCFp%v_ME7FE(Wj8)2h%~>K8v>CwIwv5A=J#@of4aFNwjt1Tb4To7osnZO z_Yn9on0o?TK8U{p5?%laJs^sw*~lT!reA-Ul+o!oaTf{~)34tr<=*>9eBnM4pT3WX bL?Wd=4C=qOq2tSs00000NkvXXu0mjfruK+i literal 0 HcmV?d00001 diff --git a/apps/common/main/resources/img/toolbar/1.25x/linear-equation.png b/apps/common/main/resources/img/toolbar/1.25x/linear-equation.png new file mode 100644 index 0000000000000000000000000000000000000000..41b8bb37e52a9472fdaef6bd3c49dd8b036dabb5 GIT binary patch literal 402 zcmV;D0d4+?P)X1^@s6b5wmq00045Nkl@wc#-Mu~@ z5)u*;{~S+(CoFee5JGqoJYl(0L?G;VE;osYvE$kOjv3?)a)W&CC}IYAgWMpWdkWEn zSD{0?qYzDa6*|=Aj^PJco&By(Iak1NMHT`z&MMEj0yd10CAdnR!SXA>qn;~Z!w6Y| ztJE1RzXIafaz(^Hosf^%2UV$0E;d3uSA-)>$Vcphs?>j740Ri~8#W`Pa9%I!V^K8F1+A$w3`ZN9_K!h6cdoQYra?&f zMgHVmX^%{c5SNjPZG2apXvD`cxtDJkEth>S;%L1~PK2GqopCnVeU(BE;-b3 w%2|5?QV!Tk-N_v4IOR=yA|W9mA#rPb0B2Zg(VISS!vFvP07*qoM6N<$f~{_$WdHyG literal 0 HcmV?d00001 diff --git a/apps/common/main/resources/img/toolbar/1.25x/professional-equation.png b/apps/common/main/resources/img/toolbar/1.25x/professional-equation.png new file mode 100644 index 0000000000000000000000000000000000000000..cdea17d673161bf64cbabd49e3bc1fcb4a4b5c88 GIT binary patch literal 438 zcmV;n0ZIOeP)X1^@s6b5wmq0004fNklN6h_Dh8G#XaM!HBAO4YvF{9)<-U?g+oYcowF zMvUkkGwC2%(ndP93*?+<(m}GMjdb>ei2#~=6aY*F(A*Q`BAH$V0CJIx^r0(hhkZ;gU!H-p>}N0lLP{fJ?ad=MjN_N2R%t4re-rG zbl`-|tj34eY^H<`oUohK`tXv}I$wY!4eNZY^JZIVg5tSb>i9&lFVwCrV??R8--8^t*>&Gx#m gmd!L`#0d5H1G(MbbzNz&Bme*a07*qoM6N<$g3Ry182|tP literal 0 HcmV?d00001 diff --git a/apps/common/main/resources/img/toolbar/1.25x/unicode.png b/apps/common/main/resources/img/toolbar/1.25x/unicode.png new file mode 100644 index 0000000000000000000000000000000000000000..d58fc9eb26528d160e66b3011bc8aff7a75acac8 GIT binary patch literal 234 zcmVX1^@s6b5wmq00027Nkl%p_TvXhu|bR6k5fl8<+0S kS;G?0mbT~k^lSYjQ{`u07*qoM6N<$f*6Nj5&!@I literal 0 HcmV?d00001 diff --git a/apps/common/main/resources/img/toolbar/1.5x/latex.png b/apps/common/main/resources/img/toolbar/1.5x/latex.png new file mode 100644 index 0000000000000000000000000000000000000000..3091b2578099daf29e2e8459bb7a05119be969c9 GIT binary patch literal 391 zcmV;20eJq2P)P15Rfr>9Gudkfse?H+)4&ZRPbai!g z{WC2oLW-E;TF7(A*>h)h(HP^BBE+Yzg*=CxJ(pg0$RO@1q>wAfQFuH7J7f^|6jI0) z)L!-evFw>TxJJv%h8apKDwDr)6#8>%y*OGP83XLYM z&5$)4u{TQFNjm1 zErU%;(Dp!Jn_$^ng0^RLIhQ$ltk*gj-^>vmCYUZpi@fwr$G}@wCjlgwE=EiF#y4F8 z$M@fLl1@%=;~Vn1(8&k=z8H4~ynH(9*w+bed_z9J>tuX?EI+z4;6*a(9*|WA&=hJM zg49d)8b&m+pA$e+sG&cOL*7eZJHVN&+w+b(GO(u*wga5Wx;^ixBLjO%P0Rsqh%vIf z-mwM&HIlt`7~dhr$ntu}8W8X(HL8G)HX9?HtH&yMA#gxPo6-oc)b&^eF9lvRn|cSV z#a*WQs{r`LY<6_F$DO{Q{wf`5$L?#3u9*Vt^v1kC9ch>DD-6pQ&QhNl+^=~_Zm&nD z0`}Kz7##oi(&B9p++L4P1?;ccFgVX{u*KU@sZ=VJN~QX9`U2H>-D9`ED7ydv002ov JPDHLkV1gv1(LewI literal 0 HcmV?d00001 diff --git a/apps/common/main/resources/img/toolbar/1.5x/professional-equation.png b/apps/common/main/resources/img/toolbar/1.5x/professional-equation.png new file mode 100644 index 0000000000000000000000000000000000000000..d679b88616e1e19ce4ab8e003518ca77fecdd17f GIT binary patch literal 502 zcmVZBxRi5%}g)?eW_8dlB$>ha~b2^<+u|R3jkWk zeLx}xJl7;S>Wa$ohfh!}0B9li$ppTao@*fHs+PXQ6eG_oF3;3+U;tqxL39CjA`xA$f zsX`C?6Ni$C6L=wIy>6&#xK|Q66K7jDR+g!;lJclnU#S6fMB*IEMYF{!JrBnrJ0 s;BMnDVGZb|0C(kI!fxHVb^8hX2lv=s!L!3Vf&c&j07*qoM6N<$f~(2pSO5S3 literal 0 HcmV?d00001 diff --git a/apps/common/main/resources/img/toolbar/1.5x/unicode.png b/apps/common/main/resources/img/toolbar/1.5x/unicode.png new file mode 100644 index 0000000000000000000000000000000000000000..4cff6dfe51c0638d6e7c0596f6228dfc455c1860 GIT binary patch literal 250 zcmeAS@N?(olHy`uVBq!ia0vp^Hb5-L!3HD?X4Luvse_&_jv*Dd-cC>CZ8Z>RR%hg# z+`wGGz&Ar!MS+piV@8YTj49RI_gucvc0uj$U6b#rk-?KxJbx`n+rCpgWyQ?1->x_5 z)$F#my3&2`-MJkfIQDY1?v|dno9&!rOd0PSW9H{>hjwl(u=B7uTwE@6&YJuA@mS95 zwRb+;k-2VrAhkF~ysxJh{Px5aU#kbnNy3^!v zI2;bgzv0qiYf(8q!T4?GMbt%Vt(O*CWqimP=)8y&<`9VCOVzMZs z*(l0WloMHcOyLNIGe#L%draX7hBHPPnO`P{rN0~BwN^k03`>7k^2fW@iYQ6cLJiD op*<&(*OVf07*qoM6N<$g6EXJXaE2J literal 0 HcmV?d00001 diff --git a/apps/common/main/resources/img/toolbar/1.75x/linear-equation.png b/apps/common/main/resources/img/toolbar/1.75x/linear-equation.png new file mode 100644 index 0000000000000000000000000000000000000000..7884be171a3405c0d6b0488287ac9724f323dbd6 GIT binary patch literal 553 zcmV+^0@nSBP)G>%Of17qmHp3pHvE|>?3i=9$Bp;PF^YDzf8_KNcbEgPqlPUw^~uBW|I>>ZD}px722 zG`}d4piB`H?myr$7ZlsVGv=)#8I&nv!dX6}7#tcalVG;tH?cfEBoc{4B9TZW`hEQY*)2>r8zDqf00000NkvXXu0mjf(bo5+ literal 0 HcmV?d00001 diff --git a/apps/common/main/resources/img/toolbar/1.75x/professional-equation.png b/apps/common/main/resources/img/toolbar/1.75x/professional-equation.png new file mode 100644 index 0000000000000000000000000000000000000000..ae9bcfd8ed0ee4966b6bd0d2d1f337ede2d9c351 GIT binary patch literal 587 zcmV-R0<`^!P)vpV6%`c~{TDT4LmtRA&P|SmIOiI&ArIsl=O!ndiLA+r9ji=mCbA|gf6NJHj}%K@ zb3y@_JyI-r%?+gj41>t2GJ{b_p()jaAAPr{PeJ;iw{=$7@MZJikHl>E*%bTu@kgd1*;7 zyq0tabteTFUQ4=zx+4x|yqF>jyKfMJGG0j$)DEv9MYKFGz%x=qTo5hK3-FB85Z49| z98R-6>r&ECczT$~G~2T-B?_fNJLV6qF{_00i$zze1#8P3JhaBF63#CcT}f;$RU{fV ze6|AGi_Iv~6Kxm`8$MeB?d4~b6tWlUOR7DNJ*zKC*TekC42J7b!2Bo}US!Ym_bs^< z2#RcTa_?JuE5N(bbnp`D!*r8EsPBS7$;k!30&|**`bBqJ1 z279L#QDRd-iS3%dc}`SkCU>qmWvyv2zgRZVZGfgyE(B4cS#(%L$n*>EaEpqHii(P4 Z^atQ6E8>F!Z>I9;2^+xZg7(gN&E92B_f-Do$60yaH{eigsbIZ%yyn`y?irEW^tBad zyt>TMU7>K5eWQ0*wq`>>P>i=COR=6fKO+F zT9=!+$KviK7uhalC}&P_kSe{O`eoOSIc9u*Tom%jD7*E y7M@ZoJy&DE{i{9g-?U_RCX}7p3Ut^HX8CQ(3NpPK3pW7$$KdJe=d#Wzp$Pz+mu0sA literal 0 HcmV?d00001 diff --git a/apps/common/main/resources/img/toolbar/1x/latex.png b/apps/common/main/resources/img/toolbar/1x/latex.png new file mode 100644 index 0000000000000000000000000000000000000000..bcbe5a8fe87c5de619c00fbdb9495ac11cf49937 GIT binary patch literal 272 zcmeAS@N?(olHy`uVBq!ia0vp^8bB<J*(x z+IlT$zhT@HwI`c8qVfgbHe~-5aB0s_eIRymU4bscPdOkbl|fl1C8m!hA%xv?dNO+r zQ-FTG(kr2?wY^_IsV~yY)P3A#)}hW|o3;5NjPdkd?17{m<>DLud=dPvSI7FG%}`9L zvb}N*uaU5HzC`lEiRCkn-%>DUeo^pq?Qy2ZpExIU9%tGb*T27;->Olg&1*)bGti3+ Mp00i_>zopr0Gc{#8~^|S literal 0 HcmV?d00001 diff --git a/apps/common/main/resources/img/toolbar/1x/linear-equation.png b/apps/common/main/resources/img/toolbar/1x/linear-equation.png new file mode 100644 index 0000000000000000000000000000000000000000..25159df42355e973a4c881a1213105039e12c792 GIT binary patch literal 314 zcmV-A0mc4_P)!&wQ-cPeH%t?L|s3FuSfT{$XW?z^S+XiZ6{bDNtl`#b<4_wfD^0rf?Zbfn` zlb$?qLGK;xDN-j1n;cwyENks6oW`QlF@>X0NwYFu*XoBq2!Fb#*`2xFT8yd4-I zbp(zuwmHBV{pF7ODdT;17F<&Ta7KT9k2_u|ui;|c&wtdky)qhP!NfT?y8K`_$4 z6LAo30L4MLt$DG3Er5Uf*Q%P-bNkn~0pUqKkCT3{l7Q6DSH|9H23E#22|r&Md#5WH uMn6frXjvyClC2uXY*{BGlC6fWu0uanv_K%~!`-(40000d8dHQym&st6^X^?oOyyabTM&-1$rEG zcM13)cwL x-&{f(H(Wnem9H#c!`vt&Q>O6a?9-o5Si36nJNX|S)B`$~R1 zb6saLnM@{=>Gx|$v8RYBB*jv&cF{FaJsf*;A~K}dQ$+dFQm}T>HBmk2`*Q$JZU7Vj z>4@+gfRh^l1wc|EZW*{oA%OF@^#G65c%^iJ^F)$1Sv zJT&Q@;I*sQ!2}qHRdZEgAOZ}ms(~sDOn@~Hj_=MxCcxqc#}Cd!DnMxfP>2Af0YEW; z2JmkH>>=Ta;5UI^Pe`~2fD^%Q0>7RCaDaq8!EXe=fpi182?z;|$i0lLm!tWzMe s{@O9HH>VI;f9;^}&tx*0OePaspRQco{~Zxb!2kdN07*qoM6N<$f-9)+2LJ#7 literal 0 HcmV?d00001 diff --git a/apps/common/main/resources/img/toolbar/2x/linear-equation.png b/apps/common/main/resources/img/toolbar/2x/linear-equation.png new file mode 100644 index 0000000000000000000000000000000000000000..db3fd11bc7d6f02a30e5b8c091a3c7f05f32220a GIT binary patch literal 628 zcmV-)0*n2LP)PYHNSvJ-X<=dx;=3`$1R4daCk7pmb#o4(%^XvVuTijcBJ*@i7WnuO+8p)q zC^C3dnR@j!Tw^|%q0pEzcvP8m^+1Ik98A{w`oJ8AGhUyN?@lpqiq9pl_swz6jMpdR zyHm`Y;JRgcP&Z2uxPoFVfe)*i!|D(7jnH+A5XhUY3*;K<+IFDeTml(&fm|b9TW%)$ zHwaV-OEb2BHxlppm(EG%XEy2pb-t= zo5;76xOUuyxdzUpCQU^CG=LkAiWR6^WnMe}(!w=xCN)_CtB3*IxGIJLdN1**YlLRP z#KpFEeC?Y9>dqQxh{P4%7 O00004QVocI0~f8Au>-`YD#Q|^w6eJfFG9rU zD#Q|^v;?q#>zWYG5X30 z%^2 zeiIN?_xB;(Rqd>s1!OIFAHrSL&N}Wywf*(NS=A3~N3mAhd43Nb){cCk*71u2=??UG zY7S(_tySHD9#7SQi%8wyM4B}a>H3wr2iB8j4Qz$`n#5FZPKMVC_ce*B-dJ&8eA2xO zc!L%9;e7ip;GMp|N&p!*8siqAD6vjH170P7j2n${i-wp|>g2O@7f=W;T*Q6;{h&1< zh{r4eh2Y4=Z;Jp^Z9p*XfbtCF1Zc0?gMk2I^7~prPJs4$#bDr)hByJ>B@J=X9>svb z8bGeuIzVR}ptA^&{^-C$2_XH&fts~2^#sCae!aC5h?x2H8UP28#`S?Y;gSga5rBh8 z!*gAgT3?xRttBLNYx48E`9xnGp`d*=Jh0UxA=N8D=RB2D=X_! ZeFDF#Qm%pCFlGP%002ovPDHLkV1k(?Lx%tW literal 0 HcmV?d00001 diff --git a/apps/common/main/resources/img/toolbar/2x/unicode.png b/apps/common/main/resources/img/toolbar/2x/unicode.png new file mode 100644 index 0000000000000000000000000000000000000000..2a570cd4b2af4f54cbb3562c40d10f2fcafea096 GIT binary patch literal 266 zcmeAS@N?(olHy`uVBq!ia0vp^0YI$5!3HEV6KWZO)J0Dh$B>F!Z)Z629#If+nb^c4 zBf=idzSdYpfsxb0f$Mh4^DEi>vS#m9@6^Z5IPAj#)bnBflGkTnmmYuoY)%?1h;>ZuEN;P#&P=-RPfxn;^ECBj_L1p7gzj7Kei9m72_&xH4_Ez=thK>w!PDBn zPi-srXjC5l`hBiYgb(XHp@pM}