[SSE] Fix Bug 49500
This commit is contained in:
parent
0ec5ce92b8
commit
cfa07c5799
|
@ -1627,6 +1627,10 @@ define([
|
|||
config.msg = this.errorPasteMultiSelect;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.PivotWithoutUnderlyingData:
|
||||
config.msg = this.errorPivotWithoutUnderlying;
|
||||
break;
|
||||
|
||||
default:
|
||||
config.msg = (typeof id == 'string') ? id : this.errorDefaultMessage.replace('%1', id);
|
||||
break;
|
||||
|
@ -2842,7 +2846,8 @@ define([
|
|||
txtQuarters: 'Quarters',
|
||||
txtYears: 'Years',
|
||||
errorPivotGroup: 'Cannot group that selection.',
|
||||
errorPasteMultiSelect: 'This action cannot be done on a multiple range selection.<br>Select a single range and try again.'
|
||||
errorPasteMultiSelect: 'This action cannot be done on a multiple range selection.<br>Select a single range and try again.',
|
||||
errorPivotWithoutUnderlying: 'The Pivot Table report was saved without the underlying data.<br>Use the \'Refresh\' button to update the report.'
|
||||
}
|
||||
})(), SSE.Controllers.Main || {}))
|
||||
});
|
||||
|
|
|
@ -922,6 +922,7 @@
|
|||
"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.Main.errorPivotWithoutUnderlying": "The Pivot Table report was saved without the underlying data.<br>Use the 'Refresh' button to update the report.",
|
||||
"SSE.Controllers.Print.strAllSheets": "All Sheets",
|
||||
"SSE.Controllers.Print.textFirstCol": "First column",
|
||||
"SSE.Controllers.Print.textFirstRow": "First row",
|
||||
|
|
Loading…
Reference in a new issue