From e5db10ab489f3339bcab4447a6f7b1ecbefa2012 Mon Sep 17 00:00:00 2001 From: nikita_bartoshuk Date: Wed, 3 Sep 2025 12:56:58 +0300 Subject: [PATCH] Fix bug 76537 --- apps/spreadsheeteditor/main/app/controller/Toolbar.js | 2 +- apps/spreadsheeteditor/main/locale/en.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/spreadsheeteditor/main/app/controller/Toolbar.js b/apps/spreadsheeteditor/main/app/controller/Toolbar.js index 89d54456cb..e9efd46e25 100644 --- a/apps/spreadsheeteditor/main/app/controller/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/controller/Toolbar.js @@ -4578,7 +4578,7 @@ define([ } if ( config.canFeatureTable ) { - tab = {caption: 'Table Design', action: 'tabledesign', extcls: config.isEdit ? 'canedit' : '', layoutname: 'toolbar-tabledesign', dataHintTitle: 'B', aux: true}; + tab = {caption: me.toolbar.textTabTableDesign, action: 'tabledesign', extcls: config.isEdit ? 'canedit' : '', layoutname: 'toolbar-tabledesign', dataHintTitle: 'B', aux: true}; var tabledesigntab = me.getApplication().getController('TableDesignTab'); tabledesigntab.setApi(me.api).setConfig({toolbar: me}); var view = tabledesigntab.getView('TableDesignTab'); diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index dca224b812..078e4fa11e 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -4439,6 +4439,7 @@ "SSE.Views.Toolbar.textTabLayout": "Layout", "SSE.Views.Toolbar.textTabProtect": "Protection", "SSE.Views.Toolbar.textTabView": "View", + "SSE.Views.Toolbar.textTabTableDesign": "Table Design", "SSE.Views.Toolbar.textThisPivot": "From this pivot", "SSE.Views.Toolbar.textThisSheet": "From this sheet", "SSE.Views.Toolbar.textThisTable": "From this table",