[SSE] Fix Bug 49442
This commit is contained in:
parent
a59baff0bb
commit
0a301cb9f7
|
@ -1619,10 +1619,14 @@ define([
|
|||
config.msg = this.errorSetPassword;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.PivotGroup :
|
||||
case Asc.c_oAscError.ID.PivotGroup:
|
||||
config.msg = this.errorPivotGroup;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.PasteMultiSelectError:
|
||||
config.msg = this.errorPasteMultiSelect;
|
||||
break;
|
||||
|
||||
default:
|
||||
config.msg = (typeof id == 'string') ? id : this.errorDefaultMessage.replace('%1', id);
|
||||
break;
|
||||
|
@ -2837,7 +2841,8 @@ define([
|
|||
txtMonths: 'Months',
|
||||
txtQuarters: 'Quarters',
|
||||
txtYears: 'Years',
|
||||
errorPivotGroup: 'Cannot group that selection.'
|
||||
errorPivotGroup: 'Cannot group that selection.',
|
||||
errorPasteMultiSelect: 'This action cannot be done on a multiple range selection.<br>Select a single range and try again.'
|
||||
}
|
||||
})(), SSE.Controllers.Main || {}))
|
||||
});
|
||||
|
|
|
@ -921,6 +921,7 @@
|
|||
"SSE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact %1 sales team for personal upgrade terms.",
|
||||
"SSE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
|
||||
"SSE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
||||
"SSE.Controllers.Main.errorPasteMultiSelect": "This action cannot be done on a multiple range selection.<br>Select a single range and try again.",
|
||||
"SSE.Controllers.Print.strAllSheets": "All Sheets",
|
||||
"SSE.Controllers.Print.textFirstCol": "First column",
|
||||
"SSE.Controllers.Print.textFirstRow": "First row",
|
||||
|
|
Loading…
Reference in a new issue