[SSE] Fix Bug 47449
This commit is contained in:
parent
8cc3480f83
commit
d693763bc6
|
@ -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 || {}));
|
||||
});
|
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue