[SSE] Added error LockedCellPivot.
This commit is contained in:
parent
1d6cb3d327
commit
ca5016db77
|
@ -1190,6 +1190,10 @@ define([
|
||||||
config.msg = this.errorAccessDeny;
|
config.msg = this.errorAccessDeny;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case Asc.c_oAscError.ID.LockedCellPivot:
|
||||||
|
config.msg = this.errorLockedCellPivot;
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
config.msg = this.errorDefaultMessage.replace('%1', id);
|
config.msg = this.errorDefaultMessage.replace('%1', id);
|
||||||
break;
|
break;
|
||||||
|
@ -2113,6 +2117,7 @@ define([
|
||||||
errorAccessDeny: 'You are trying to perform an action you do not have rights for.<br>Please contact your Document Server administrator.',
|
errorAccessDeny: 'You are trying to perform an action you do not have rights for.<br>Please contact your Document Server administrator.',
|
||||||
titleServerVersion: 'Editor updated',
|
titleServerVersion: 'Editor updated',
|
||||||
errorServerVersion: 'The editor version has been updated. The page will be reloaded to apply the changes.',
|
errorServerVersion: 'The editor version has been updated. The page will be reloaded to apply the changes.',
|
||||||
|
errorLockedCellPivot: 'You cannot change data inside a pivot table.',
|
||||||
txtAccent: 'Accent',
|
txtAccent: 'Accent',
|
||||||
txtStyle_Normal: 'Normal',
|
txtStyle_Normal: 'Normal',
|
||||||
txtStyle_Heading_1: 'Heading 1',
|
txtStyle_Heading_1: 'Heading 1',
|
||||||
|
|
|
@ -278,6 +278,7 @@
|
||||||
"SSE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor",
|
"SSE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor",
|
||||||
"SSE.Controllers.Main.errorKeyExpire": "Key descriptor expired",
|
"SSE.Controllers.Main.errorKeyExpire": "Key descriptor expired",
|
||||||
"SSE.Controllers.Main.errorLockedAll": "The operation could not be done as the sheet has been locked by another user.",
|
"SSE.Controllers.Main.errorLockedAll": "The operation could not be done as the sheet has been locked by another user.",
|
||||||
|
"SSE.Controllers.Main.errorLockedCellPivot": "You cannot change data inside a pivot table.",
|
||||||
"SSE.Controllers.Main.errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user",
|
"SSE.Controllers.Main.errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user",
|
||||||
"SSE.Controllers.Main.errorMoveRange": "Cannot change part of a merged cell",
|
"SSE.Controllers.Main.errorMoveRange": "Cannot change part of a merged cell",
|
||||||
"SSE.Controllers.Main.errorOpenWarning": "The length of one of the formulas in the file exceeded<br>the allowed number of characters and it was removed.",
|
"SSE.Controllers.Main.errorOpenWarning": "The length of one of the formulas in the file exceeded<br>the allowed number of characters and it was removed.",
|
||||||
|
|
Loading…
Reference in a new issue