[SSE mobile] Fix bug 50037
This commit is contained in:
parent
f9aefa5170
commit
04569201b9
|
@ -164,7 +164,8 @@
|
|||
"errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.<br>Use the CONCATENATE function or concatenation operator (&)",
|
||||
"errorFrmlMaxLength": "You cannot add this formula as its length exceeded the allowed number of characters.<br>Please edit it and try again.",
|
||||
"errorFrmlMaxReference": "You cannot enter this formula because it has too many values,<br>cell references, and/or names.",
|
||||
"errorDataValidate":"The value you entered is not valid.<br>A user has restricted values that can be entered into this cell."
|
||||
"errorDataValidate":"The value you entered is not valid.<br>A user has restricted values that can be entered into this cell.",
|
||||
"errorLockedCellPivot": "You cannot change data inside a pivot table."
|
||||
},
|
||||
"ContextMenu": {
|
||||
"menuViewComment": "View Comment",
|
||||
|
|
|
@ -166,6 +166,10 @@ const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocu
|
|||
case Asc.c_oAscError.ID.PasteMaxRangeError:
|
||||
config.msg = _t.errorPasteMaxRange;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.LockedCellPivot:
|
||||
config.msg = _t.errorLockedCellPivot;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.LockedAllError:
|
||||
config.msg = _t.errorLockedAll;
|
||||
|
|
Loading…
Reference in a new issue