[SSE] Fix Bug 47449

This commit is contained in:
Julia Radzhabova 2020-11-19 13:08:02 +03:00
parent 8cc3480f83
commit d693763bc6
2 changed files with 3 additions and 3 deletions

View file

@ -277,7 +277,7 @@ define([
error: this.textRenameError,
value: rec.get('name'),
validation: function(value) {
return value.length<=128 ? true : me.textLongName;
return value.length<128 ? true : me.textLongName;
},
handler: function(result, value) {
if (result == 'ok') {
@ -362,7 +362,7 @@ define([
textRenameLabel: 'Rename view',
textRenameError: 'View name must not be empty.',
warnDeleteView: "You are trying to delete the currently enabled view '%1'.<br>Close this view and delete it?",
textLongName: 'View name is limited to 128 characters.'
textLongName: 'Enter a name that is less than 128 characters.'
}, SSE.Views.ViewManagerDlg || {}));
});

View file

@ -2953,7 +2953,7 @@
"SSE.Views.ViewManagerDlg.tipIsLocked": "This element is being edited by another user.",
"SSE.Views.ViewManagerDlg.txtTitle": "Sheet View Manager",
"SSE.Views.ViewManagerDlg.warnDeleteView": "You are trying to delete the currently enabled view '%1'.<br>Close this view and delete it?",
"SSE.Views.ViewManagerDlg.textLongName": "View name is limited to 128 characters.",
"SSE.Views.ViewManagerDlg.textLongName": "Enter a name that is less than 128 characters.",
"SSE.Views.ViewTab.capBtnFreeze": "Freeze Panes",
"SSE.Views.ViewTab.capBtnSheetView": "Sheet View",
"SSE.Views.ViewTab.textClose": "Close",