Commit 75f92f84 authored by Julia Radzhabova's avatar Julia Radzhabova

[SSE] Added error LockedCellPivot.

parent af566d2b
......@@ -1201,6 +1201,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;
......@@ -2164,7 +2168,8 @@ define([
txtStyle_Total: 'Total',
txtStyle_Currency: 'Currency',
txtStyle_Percent: 'Percent',
txtStyle_Comma: 'Comma'
txtStyle_Comma: 'Comma',
errorLockedCellPivot: 'You cannot change data inside a pivot table.'
}
})(), SSE.Controllers.Main || {}))
});
......@@ -267,6 +267,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.",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment