[SSE] Added error LockedCellPivot.
This commit is contained in:
parent
b2b4321a08
commit
a22f2948c7
|
@ -1179,6 +1179,10 @@ define([
|
|||
config.msg = this.errorAccessDeny;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.LockedCellPivot:
|
||||
config.msg = this.errorLockedCellPivot;
|
||||
break;
|
||||
|
||||
default:
|
||||
config.msg = this.errorDefaultMessage.replace('%1', id);
|
||||
break;
|
||||
|
@ -2100,7 +2104,8 @@ define([
|
|||
errorSessionToken: 'The connection to the server has been interrupted. Please reload the page.',
|
||||
errorAccessDeny: 'You are trying to perform an action you do not have rights for.<br>Please contact your Document Server administrator.',
|
||||
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.'
|
||||
}
|
||||
})(), SSE.Controllers.Main || {}))
|
||||
});
|
||||
|
|
|
@ -274,6 +274,7 @@
|
|||
"SSE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor",
|
||||
"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.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.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.",
|
||||
|
|
Loading…
Reference in a new issue