Add Polish and Portuguese (Portugal) languages

This commit is contained in:
RainLoop Team 2013-11-24 02:04:10 +04:00
parent a6e30e5506
commit b61142f29b
10 changed files with 851 additions and 14 deletions

View file

@ -230,7 +230,19 @@ Consts.Values.SmtpDefaulSecurePort = 465;
* @const
* @type {number}
*/
Consts.Values.iMessageBodyCacheLimit = 15;
Consts.Values.MessageBodyCacheLimit = 15;
/**
* @const
* @type {number}
*/
Consts.Values.AjaxErrorLimit = 7;
/**
* @const
* @type {number}
*/
Consts.Values.TokenErrorLimit = 10;
/**
* @const
@ -5597,12 +5609,12 @@ AbstractAjaxRemoteStorage.prototype.defaultResponse = function (fCallback, sRequ
Globals.iTokenErrorCount++;
}
if (10 < Globals.iTokenErrorCount)
if (Consts.Values.TokenErrorLimit < Globals.iTokenErrorCount)
{
RL.loginAndLogoutReload(true);
}
if (oData.Logout || 7 < Globals.iAjaxErrorCount)
if (oData.Logout || Consts.Values.AjaxErrorLimit < Globals.iAjaxErrorCount)
{
if (window.__rlah_clear)
{