mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-27 05:39:31 +08:00
[Embedded] Fix Bug 39251
This commit is contained in:
@ -392,6 +392,10 @@ var ApplicationController = new(function(){
|
||||
message = me.downloadErrorText;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.ConvertationPassword:
|
||||
message = me.errorFilePassProtect;
|
||||
break;
|
||||
|
||||
default:
|
||||
message = me.errorDefaultMessage.replace('%1', id);
|
||||
break;
|
||||
@ -536,6 +540,7 @@ var ApplicationController = new(function(){
|
||||
downloadErrorText : 'Download failed.',
|
||||
criticalErrorTitle : 'Error',
|
||||
notcriticalErrorTitle : 'Warning',
|
||||
scriptLoadError: 'The connection is too slow, some of the components could not be loaded. Please reload the page.'
|
||||
scriptLoadError: 'The connection is too slow, some of the components could not be loaded. Please reload the page.',
|
||||
errorFilePassProtect: 'The file is password protected and cannot be opened.'
|
||||
}
|
||||
})();
|
||||
@ -491,6 +491,10 @@ var ApplicationController = new(function(){
|
||||
message = me.downloadErrorText;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.ConvertationPassword:
|
||||
message = me.errorFilePassProtect;
|
||||
break;
|
||||
|
||||
default:
|
||||
message = me.errorDefaultMessage.replace('%1', id);
|
||||
break;
|
||||
@ -606,6 +610,7 @@ var ApplicationController = new(function(){
|
||||
downloadErrorText : 'Download failed.',
|
||||
criticalErrorTitle : 'Error',
|
||||
notcriticalErrorTitle : 'Warning',
|
||||
scriptLoadError: 'The connection is too slow, some of the components could not be loaded. Please reload the page.'
|
||||
scriptLoadError: 'The connection is too slow, some of the components could not be loaded. Please reload the page.',
|
||||
errorFilePassProtect: 'The file is password protected and cannot be opened.'
|
||||
}
|
||||
})();
|
||||
|
||||
@ -399,6 +399,10 @@ var ApplicationController = new(function(){
|
||||
message = me.downloadErrorText;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.ConvertationPassword:
|
||||
message = me.errorFilePassProtect;
|
||||
break;
|
||||
|
||||
default:
|
||||
message = me.errorDefaultMessage.replace('%1', id);
|
||||
break;
|
||||
@ -553,6 +557,7 @@ var ApplicationController = new(function(){
|
||||
downloadErrorText : 'Download failed.',
|
||||
criticalErrorTitle : 'Error',
|
||||
notcriticalErrorTitle : 'Warning',
|
||||
scriptLoadError: 'The connection is too slow, some of the components could not be loaded. Please reload the page.'
|
||||
scriptLoadError: 'The connection is too slow, some of the components could not be loaded. Please reload the page.',
|
||||
errorFilePassProtect: 'The file is password protected and cannot be opened.'
|
||||
}
|
||||
})();
|
||||
Reference in New Issue
Block a user