[SSE mobile] Fix Bug 52828
This commit is contained in:
parent
5e3a91401c
commit
94fb663a8a
|
@ -224,7 +224,8 @@
|
|||
"unknownErrorText": "Unknown error.",
|
||||
"uploadImageExtMessage": "Unknown image format.",
|
||||
"uploadImageFileCountMessage": "No images uploaded.",
|
||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
|
||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
||||
"errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Loading data...",
|
||||
|
|
|
@ -304,7 +304,7 @@ const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocu
|
|||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.ChangeOnProtectedSheet:
|
||||
config.msg = _t.errorChangeOnProtectedSheet;
|
||||
config.msg = t('Error.errorChangeOnProtectedSheet');
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.LoadingFontError:
|
||||
|
|
Loading…
Reference in a new issue