From 48c200d64123d2697c7553a2a378e116d5be3f2b Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 20 Jul 2021 18:43:04 +0300 Subject: [PATCH] [SSE] Fix Bug 51418 --- apps/spreadsheeteditor/main/app/controller/DataTab.js | 4 +++- apps/spreadsheeteditor/main/locale/en.json | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/spreadsheeteditor/main/app/controller/DataTab.js b/apps/spreadsheeteditor/main/app/controller/DataTab.js index 486cffcb8..bc2c3bbb2 100644 --- a/apps/spreadsheeteditor/main/app/controller/DataTab.js +++ b/apps/spreadsheeteditor/main/app/controller/DataTab.js @@ -226,6 +226,7 @@ define([ Common.NotificationCenter.trigger('edit:complete', this.toolbar); } else if (type === 'url') { (new Common.Views.ImageFromUrlDialog({ + title: me.txtUrlTitle, handler: function(result, value) { if (result == 'ok') { if (me.api) { @@ -426,7 +427,8 @@ define([ txtExtendDataValidation: 'The selection contains some cells without Data Validation settings.
Do you want to extend Data Validation to these cells?', txtRemoveDataValidation: 'The selection contains more than one type of validation.
Erase current settings and continue?', textEmptyUrl: 'You need to specify URL.', - txtImportWizard: 'Text Import Wizard' + txtImportWizard: 'Text Import Wizard', + txtUrlTitle: 'Paste a data URL' }, SSE.Controllers.DataTab || {})); }); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 7d96a150e..546ea1b1c 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -417,6 +417,7 @@ "SSE.Controllers.DataTab.txtRemDuplicates": "Remove Duplicates", "SSE.Controllers.DataTab.txtRemoveDataValidation": "The selection contains more than one type of validation.
Erase current settings and continue?", "SSE.Controllers.DataTab.txtRemSelected": "Remove in selected", + "SSE.Controllers.DataTab.txtUrlTitle": "Paste a data URL", "SSE.Controllers.DocumentHolder.alignmentText": "Alignment", "SSE.Controllers.DocumentHolder.centerText": "Center", "SSE.Controllers.DocumentHolder.deleteColumnText": "Delete Column",