From f9cb4eca1a7765a3f55613ab6b305f253d61b47b Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 6 Jun 2022 17:08:14 +0300 Subject: [PATCH] Fix Bug 57479 --- apps/documenteditor/main/app/view/LeftMenu.js | 5 +++-- apps/documenteditor/main/locale/en.json | 1 + apps/documenteditor/main/locale/ru.json | 1 + apps/presentationeditor/main/app/view/LeftMenu.js | 5 +++-- apps/presentationeditor/main/locale/en.json | 1 + apps/presentationeditor/main/locale/ru.json | 1 + apps/spreadsheeteditor/main/app/view/LeftMenu.js | 5 +++-- apps/spreadsheeteditor/main/locale/en.json | 1 + apps/spreadsheeteditor/main/locale/ru.json | 1 + 9 files changed, 15 insertions(+), 6 deletions(-) diff --git a/apps/documenteditor/main/app/view/LeftMenu.js b/apps/documenteditor/main/app/view/LeftMenu.js index 1298b2a21..9a36dff49 100644 --- a/apps/documenteditor/main/app/view/LeftMenu.js +++ b/apps/documenteditor/main/app/view/LeftMenu.js @@ -170,7 +170,7 @@ define([ this.btnAbout.on('toggle', this.onBtnMenuToggle.bind(this)); this.menuFile = new DE.Views.FileMenu(); - this.btnAbout.panel = new Common.Views.About({el: '#about-menu-panel', appName: 'Document Editor'}); + this.btnAbout.panel = new Common.Views.About({el: '#about-menu-panel', appName: this.txtEditor}); this.btnThumbnails = new Common.UI.Button({ el: $markup.elementById('#left-btn-thumbnails'), @@ -528,6 +528,7 @@ define([ txtTrialDev: 'Trial Developer Mode', tipNavigation: 'Navigation', tipOutline: 'Headings', - txtLimit: 'Limit Access' + txtLimit: 'Limit Access', + txtEditor: 'Document Editor' }, DE.Views.LeftMenu || {})); }); diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 199b2c7c1..798ea77eb 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -2050,6 +2050,7 @@ "DE.Views.LeftMenu.txtLimit": "Limit Access", "DE.Views.LeftMenu.txtTrial": "TRIAL MODE", "DE.Views.LeftMenu.txtTrialDev": "Trial Developer Mode", + "DE.Views.LeftMenu.txtEditor": "Document Editor", "DE.Views.LineNumbersDialog.textAddLineNumbering": "Add line numbering", "DE.Views.LineNumbersDialog.textApplyTo": "Apply changes to", "DE.Views.LineNumbersDialog.textContinuous": "Continuous", diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json index 3e47b6f8a..dff79cc98 100644 --- a/apps/documenteditor/main/locale/ru.json +++ b/apps/documenteditor/main/locale/ru.json @@ -2050,6 +2050,7 @@ "DE.Views.LeftMenu.txtLimit": "Ограниченный доступ", "DE.Views.LeftMenu.txtTrial": "ПРОБНЫЙ РЕЖИМ", "DE.Views.LeftMenu.txtTrialDev": "Пробный режим разработчика", + "DE.Views.LeftMenu.txtEditor": "Редактор документов", "DE.Views.LineNumbersDialog.textAddLineNumbering": "Добавить нумерацию строк", "DE.Views.LineNumbersDialog.textApplyTo": "Применить изменения к", "DE.Views.LineNumbersDialog.textContinuous": "Непрерывная", diff --git a/apps/presentationeditor/main/app/view/LeftMenu.js b/apps/presentationeditor/main/app/view/LeftMenu.js index 1dd9e130c..7ebf6542f 100644 --- a/apps/presentationeditor/main/app/view/LeftMenu.js +++ b/apps/presentationeditor/main/app/view/LeftMenu.js @@ -166,7 +166,7 @@ define([ this.btnAbout.on('click', _.bind(this.onFullMenuClick, this)); this.menuFile = new PE.Views.FileMenu({}); - this.btnAbout.panel = (new Common.Views.About({el: '#about-menu-panel', appName: 'Presentation Editor'})); + this.btnAbout.panel = (new Common.Views.About({el: '#about-menu-panel', appName: this.txtEditor})); this.$el.html($markup); return this; @@ -480,6 +480,7 @@ define([ txtDeveloper: 'DEVELOPER MODE', txtTrial: 'TRIAL MODE', txtTrialDev: 'Trial Developer Mode', - txtLimit: 'Limit Access' + txtLimit: 'Limit Access', + txtEditor: 'Presentation Editor' }, PE.Views.LeftMenu || {})); }); diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json index 5ff581bce..5dabb151e 100644 --- a/apps/presentationeditor/main/locale/en.json +++ b/apps/presentationeditor/main/locale/en.json @@ -1772,6 +1772,7 @@ "PE.Views.LeftMenu.txtLimit": "Limit Access", "PE.Views.LeftMenu.txtTrial": "TRIAL MODE", "PE.Views.LeftMenu.txtTrialDev": "Trial Developer Mode", + "PE.Views.LeftMenu.txtEditor": "Presentation Editor", "PE.Views.ParagraphSettings.strLineHeight": "Line Spacing", "PE.Views.ParagraphSettings.strParagraphSpacing": "Paragraph Spacing", "PE.Views.ParagraphSettings.strSpacingAfter": "After", diff --git a/apps/presentationeditor/main/locale/ru.json b/apps/presentationeditor/main/locale/ru.json index c27187338..5ec1887a3 100644 --- a/apps/presentationeditor/main/locale/ru.json +++ b/apps/presentationeditor/main/locale/ru.json @@ -1772,6 +1772,7 @@ "PE.Views.LeftMenu.txtLimit": "Ограниченный доступ", "PE.Views.LeftMenu.txtTrial": "ПРОБНЫЙ РЕЖИМ", "PE.Views.LeftMenu.txtTrialDev": "Пробный режим разработчика", + "PE.Views.LeftMenu.txtEditor": "Редактор презентаций", "PE.Views.ParagraphSettings.strLineHeight": "Междустрочный интервал", "PE.Views.ParagraphSettings.strParagraphSpacing": "Интервал между абзацами", "PE.Views.ParagraphSettings.strSpacingAfter": "После", diff --git a/apps/spreadsheeteditor/main/app/view/LeftMenu.js b/apps/spreadsheeteditor/main/app/view/LeftMenu.js index cbcc13535..a8312d83c 100644 --- a/apps/spreadsheeteditor/main/app/view/LeftMenu.js +++ b/apps/spreadsheeteditor/main/app/view/LeftMenu.js @@ -157,7 +157,7 @@ define([ this.btnAbout.on('toggle', _.bind(this.onBtnMenuToggle, this)); this.menuFile = new SSE.Views.FileMenu({}); - this.btnAbout.panel = (new Common.Views.About({el: '#about-menu-panel', appName: 'Spreadsheet Editor'})); + this.btnAbout.panel = (new Common.Views.About({el: '#about-menu-panel', appName: this.txtEditor})); this.$el.html($markup); return this; @@ -468,6 +468,7 @@ define([ txtTrial: 'TRIAL MODE', tipSpellcheck: 'Spell checking', txtTrialDev: 'Trial Developer Mode', - txtLimit: 'Limit Access' + txtLimit: 'Limit Access', + txtEditor: 'Spreadsheet Editor' }, SSE.Views.LeftMenu || {})); }); diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index a9c9eb14c..443082f74 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -2528,6 +2528,7 @@ "SSE.Views.LeftMenu.txtLimit": "Limit Access", "SSE.Views.LeftMenu.txtTrial": "TRIAL MODE", "SSE.Views.LeftMenu.txtTrialDev": "Trial Developer Mode", + "SSE.Views.LeftMenu.txtEditor": "Spreadsheet Editor", "SSE.Views.MacroDialog.textMacro": "Macro name", "SSE.Views.MacroDialog.textTitle": "Assign Macro", "SSE.Views.MainSettingsPrint.okButtonText": "Save", diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json index c4c553c8d..48cd7cd10 100644 --- a/apps/spreadsheeteditor/main/locale/ru.json +++ b/apps/spreadsheeteditor/main/locale/ru.json @@ -2528,6 +2528,7 @@ "SSE.Views.LeftMenu.txtLimit": "Ограниченный доступ", "SSE.Views.LeftMenu.txtTrial": "ПРОБНЫЙ РЕЖИМ", "SSE.Views.LeftMenu.txtTrialDev": "Пробный режим разработчика", + "SSE.Views.LeftMenu.txtEditor": "Редактор таблиц", "SSE.Views.MacroDialog.textMacro": "Имя макроса", "SSE.Views.MacroDialog.textTitle": "Назначить макрос", "SSE.Views.MainSettingsPrint.okButtonText": "Сохранить",