[DE] Handle PasswordIsNotCorrect error
This commit is contained in:
parent
66259ebf51
commit
b73380ba27
|
@ -1977,6 +1977,10 @@ define([
|
||||||
config.msg = this.errorTextFormWrongFormat;
|
config.msg = this.errorTextFormWrongFormat;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case Asc.c_oAscError.ID.PasswordIsNotCorrect:
|
||||||
|
config.msg = this.errorPasswordIsNotCorrect;
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
config.msg = (typeof id == 'string') ? id : this.errorDefaultMessage.replace('%1', id);
|
config.msg = (typeof id == 'string') ? id : this.errorDefaultMessage.replace('%1', id);
|
||||||
break;
|
break;
|
||||||
|
@ -3259,7 +3263,8 @@ define([
|
||||||
errorNoTOC: 'There\'s no table of contents to update. You can insert one from the References tab.',
|
errorNoTOC: 'There\'s no table of contents to update. You can insert one from the References tab.',
|
||||||
textRequestMacros: 'A macro makes a request to URL. Do you want to allow the request to the %1?',
|
textRequestMacros: 'A macro makes a request to URL. Do you want to allow the request to the %1?',
|
||||||
textRememberMacros: 'Remember my choice for all macros',
|
textRememberMacros: 'Remember my choice for all macros',
|
||||||
errorTextFormWrongFormat: 'The value entered does not match the format of the field.'
|
errorTextFormWrongFormat: 'The value entered does not match the format of the field.',
|
||||||
|
errorPasswordIsNotCorrect: 'The password you supplied is not correct.<br>Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.'
|
||||||
}
|
}
|
||||||
})(), DE.Controllers.Main || {}))
|
})(), DE.Controllers.Main || {}))
|
||||||
});
|
});
|
|
@ -939,6 +939,7 @@
|
||||||
"DE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact %1 sales team for personal upgrade terms.",
|
"DE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact %1 sales team for personal upgrade terms.",
|
||||||
"DE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
|
"DE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
|
||||||
"DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
"DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
||||||
|
"DE.Controllers.Main.errorPasswordIsNotCorrect": "The password you supplied is not correct.<br>Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.",
|
||||||
"DE.Controllers.Navigation.txtBeginning": "Beginning of document",
|
"DE.Controllers.Navigation.txtBeginning": "Beginning of document",
|
||||||
"DE.Controllers.Navigation.txtGotoBeginning": "Go to the beginning of the document",
|
"DE.Controllers.Navigation.txtGotoBeginning": "Go to the beginning of the document",
|
||||||
"DE.Controllers.Search.notcriticalErrorTitle": "Warning",
|
"DE.Controllers.Search.notcriticalErrorTitle": "Warning",
|
||||||
|
|
Loading…
Reference in a new issue