Fix Bug 59618
This commit is contained in:
parent
142e295b70
commit
6e60e29171
|
@ -753,6 +753,19 @@ DE.ApplicationController = new(function(){
|
|||
message = me.errorTokenExpire;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.ConvertationOpenFormat:
|
||||
if (errData === 'pdf')
|
||||
message = me.errorInconsistentExtPdf.replace('%1', docConfig.fileType || '');
|
||||
else if (errData === 'docx')
|
||||
message = me.errorInconsistentExtDocx.replace('%1', docConfig.fileType || '');
|
||||
else if (errData === 'xlsx')
|
||||
message = me.errorInconsistentExtXlsx.replace('%1', docConfig.fileType || '');
|
||||
else if (errData === 'pptx')
|
||||
message = me.errorInconsistentExtPptx.replace('%1', docConfig.fileType || '');
|
||||
else
|
||||
message = me.errorInconsistentExt;
|
||||
break;
|
||||
|
||||
default:
|
||||
message = me.errorDefaultMessage.replace('%1', id);
|
||||
break;
|
||||
|
@ -962,6 +975,11 @@ DE.ApplicationController = new(function(){
|
|||
errorLoadingFont: 'Fonts are not loaded.<br>Please contact your Document Server administrator.',
|
||||
errorTokenExpire: 'The document security token has expired.<br>Please contact your Document Server administrator.',
|
||||
openErrorText: 'An error has occurred while opening the file',
|
||||
textCtrl: 'Ctrl'
|
||||
textCtrl: 'Ctrl',
|
||||
errorInconsistentExtDocx: 'An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.',
|
||||
errorInconsistentExtXlsx: 'An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.',
|
||||
errorInconsistentExtPptx: 'An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.',
|
||||
errorInconsistentExtPdf: 'An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.',
|
||||
errorInconsistentExt: 'An error has occurred while opening the file.<br>The file content does not match the file extension.'
|
||||
}
|
||||
})();
|
|
@ -21,6 +21,11 @@
|
|||
"DE.ApplicationController.errorTokenExpire": "The document security token has expired.<br>Please contact your Document Server administrator.",
|
||||
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "Connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.",
|
||||
"DE.ApplicationController.errorUserDrop": "The file cannot be accessed right now.",
|
||||
"DE.ApplicationController.errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"DE.ApplicationController.errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"DE.ApplicationController.errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"DE.ApplicationController.errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"DE.ApplicationController.errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension.",
|
||||
"DE.ApplicationController.notcriticalErrorTitle": "Warning",
|
||||
"DE.ApplicationController.openErrorText": "An error has occurred while opening the file.",
|
||||
"DE.ApplicationController.scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please reload the page.",
|
||||
|
|
|
@ -301,6 +301,20 @@ define([
|
|||
config.msg = this.errorTextFormWrongFormat;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.ConvertationOpenFormat:
|
||||
config.maxwidth = 600;
|
||||
if (errData === 'pdf')
|
||||
config.msg = this.errorInconsistentExtPdf.replace('%1', this.document.fileType || '');
|
||||
else if (errData === 'docx')
|
||||
config.msg = this.errorInconsistentExtDocx.replace('%1', this.document.fileType || '');
|
||||
else if (errData === 'xlsx')
|
||||
config.msg = this.errorInconsistentExtXlsx.replace('%1', this.document.fileType || '');
|
||||
else if (errData === 'pptx')
|
||||
config.msg = this.errorInconsistentExtPptx.replace('%1', this.document.fileType || '');
|
||||
else
|
||||
config.msg = this.errorInconsistentExt;
|
||||
break;
|
||||
|
||||
default:
|
||||
config.msg = (typeof id == 'string') ? id : this.errorDefaultMessage.replace('%1', id);
|
||||
break;
|
||||
|
@ -1909,7 +1923,12 @@ define([
|
|||
textSaveAsDesktop: 'Save as...',
|
||||
warnLicenseExp: 'Your license has expired.<br>Please update your license and refresh the page.',
|
||||
titleLicenseExp: 'License expired',
|
||||
errorTextFormWrongFormat: 'The value entered does not match the format of the field.'
|
||||
errorTextFormWrongFormat: 'The value entered does not match the format of the field.',
|
||||
errorInconsistentExtDocx: 'An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.',
|
||||
errorInconsistentExtXlsx: 'An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.',
|
||||
errorInconsistentExtPptx: 'An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.',
|
||||
errorInconsistentExtPdf: 'An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.',
|
||||
errorInconsistentExt: 'An error has occurred while opening the file.<br>The file content does not match the file extension.'
|
||||
|
||||
}, DE.Controllers.ApplicationController));
|
||||
|
||||
|
|
|
@ -109,6 +109,11 @@
|
|||
"DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "Connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.",
|
||||
"DE.Controllers.ApplicationController.errorUserDrop": "The file cannot be accessed right now.",
|
||||
"DE.Controllers.ApplicationController.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download or print it until the connection is restored and page is reloaded.",
|
||||
"DE.Controllers.ApplicationController.errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"DE.Controllers.ApplicationController.errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"DE.Controllers.ApplicationController.errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"DE.Controllers.ApplicationController.errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"DE.Controllers.ApplicationController.errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension.",
|
||||
"DE.Controllers.ApplicationController.mniImageFromFile": "Image from File",
|
||||
"DE.Controllers.ApplicationController.mniImageFromStorage": "Image from Storage",
|
||||
"DE.Controllers.ApplicationController.mniImageFromUrl": "Image from URL",
|
||||
|
|
|
@ -765,6 +765,11 @@
|
|||
"DE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.",
|
||||
"DE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
|
||||
"DE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download or print it until the connection is restored and page is reloaded.",
|
||||
"DE.Controllers.Main.errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"DE.Controllers.Main.errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"DE.Controllers.Main.errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"DE.Controllers.Main.errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"DE.Controllers.Main.errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension.",
|
||||
"DE.Controllers.Main.leavePageText": "You have unsaved changes in this document. Click \"Stay on This Page\", then \"Save\" to save them. Click \"Leave This Page\" to discard all the unsaved changes.",
|
||||
"DE.Controllers.Main.leavePageTextOnClose": "All unsaved changes in this document will be lost.<br> Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.",
|
||||
"DE.Controllers.Main.loadFontsTextText": "Loading data...",
|
||||
|
|
|
@ -420,7 +420,12 @@
|
|||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field."
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Məlumat yüklənir...",
|
||||
|
|
|
@ -420,7 +420,12 @@
|
|||
"openErrorText": "An error has occurred while opening the file",
|
||||
"saveErrorText": "An error has occurred while saving the file",
|
||||
"scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.",
|
||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
|
||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Загрузка даных…",
|
||||
|
|
|
@ -423,7 +423,12 @@
|
|||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Loading data...",
|
||||
|
|
|
@ -420,7 +420,12 @@
|
|||
"unknownErrorText": "Error desconegut.",
|
||||
"uploadImageExtMessage": "Format d'imatge desconegut.",
|
||||
"uploadImageFileCountMessage": "No s'ha carregat cap imatge.",
|
||||
"uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB."
|
||||
"uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "S'estan carregant les dades...",
|
||||
|
|
|
@ -420,7 +420,12 @@
|
|||
"uploadImageFileCountMessage": "Nenahrány žádné obrázky.",
|
||||
"uploadImageSizeMessage": "Obrázek je příliš velký. Maximální velikost je 25 MB.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field."
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Načítání dat...",
|
||||
|
|
|
@ -423,7 +423,12 @@
|
|||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Loading data...",
|
||||
|
|
|
@ -420,7 +420,12 @@
|
|||
"uploadImageExtMessage": "Unbekanntes Bildformat.",
|
||||
"uploadImageFileCountMessage": "Keine Bilder hochgeladen.",
|
||||
"uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Daten werden geladen...",
|
||||
|
|
|
@ -420,7 +420,12 @@
|
|||
"uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.",
|
||||
"uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field."
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Φόρτωση δεδομένων...",
|
||||
|
|
|
@ -420,7 +420,12 @@
|
|||
"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.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Loading data...",
|
||||
|
|
|
@ -420,7 +420,12 @@
|
|||
"uploadImageExtMessage": "Formato de imagen desconocido.",
|
||||
"uploadImageFileCountMessage": "No hay imágenes subidas.",
|
||||
"uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Cargando datos...",
|
||||
|
|
|
@ -420,7 +420,12 @@
|
|||
"uploadImageExtMessage": "Irudi-formatu ezezaguna.",
|
||||
"uploadImageFileCountMessage": "Ez da irudirik kargatu.",
|
||||
"uploadImageSizeMessage": "Irudia handiegia da. Gehienezko tamaina 25 MB da.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Datuak kargatzen...",
|
||||
|
|
|
@ -423,7 +423,12 @@
|
|||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Loading data...",
|
||||
|
|
|
@ -420,7 +420,12 @@
|
|||
"unknownErrorText": "Erreur inconnue.",
|
||||
"uploadImageExtMessage": "Format d'image inconnu.",
|
||||
"uploadImageFileCountMessage": "Aucune image chargée.",
|
||||
"uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo."
|
||||
"uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Chargement des données en cours...",
|
||||
|
|
|
@ -420,7 +420,12 @@
|
|||
"uploadImageFileCountMessage": "Non hai imaxes subidas.",
|
||||
"uploadImageSizeMessage": "A imaxe é demasiado grande. O tamaño máximo é de 25 MB.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field."
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Cargando datos...",
|
||||
|
|
|
@ -420,7 +420,12 @@
|
|||
"unknownErrorText": "Ismeretlen hiba.",
|
||||
"uploadImageExtMessage": "Ismeretlen képformátum.",
|
||||
"uploadImageFileCountMessage": "Nincsenek feltöltött képek.",
|
||||
"uploadImageSizeMessage": "A kép túl nagy. A maximális méret 25 MB."
|
||||
"uploadImageSizeMessage": "A kép túl nagy. A maximális méret 25 MB.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Adatok betöltése...",
|
||||
|
|
|
@ -420,7 +420,12 @@
|
|||
"unknownErrorText": "Անհայտ սխալ։",
|
||||
"uploadImageExtMessage": "Նկարի անհայտ ձևաչափ։",
|
||||
"uploadImageFileCountMessage": "Ոչ մի նկար չի բեռնվել։",
|
||||
"uploadImageSizeMessage": "Պատկերը չափազանց մեծ է:Առավելագույն չափը 25 ՄԲ է:"
|
||||
"uploadImageSizeMessage": "Պատկերը չափազանց մեծ է:Առավելագույն չափը 25 ՄԲ է:",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Տվյալների բեռնում...",
|
||||
|
|
|
@ -420,7 +420,12 @@
|
|||
"unknownErrorText": "Kesalahan tidak diketahui.",
|
||||
"uploadImageExtMessage": "Format gambar tidak dikenal.",
|
||||
"uploadImageFileCountMessage": "Tidak ada gambar yang diunggah.",
|
||||
"uploadImageSizeMessage": "Melebihi ukuran maksimal file. Ukuran maksimum adalah 25 MB."
|
||||
"uploadImageSizeMessage": "Melebihi ukuran maksimal file. Ukuran maksimum adalah 25 MB.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Memuat data...",
|
||||
|
|
|
@ -420,7 +420,12 @@
|
|||
"uploadImageFileCountMessage": "Nessuna immagine caricata.",
|
||||
"uploadImageSizeMessage": "L'immagine è troppo grande. La dimensione massima è 25 MB.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field."
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Caricamento di dati...",
|
||||
|
|
|
@ -420,7 +420,12 @@
|
|||
"unknownErrorText": "不明なエラー",
|
||||
"uploadImageExtMessage": "不明なイメージの形式",
|
||||
"uploadImageFileCountMessage": "アップロードしたイメージがない",
|
||||
"uploadImageSizeMessage": "イメージのサイズの上限が超えさせました。サイズの上限が25MB。"
|
||||
"uploadImageSizeMessage": "イメージのサイズの上限が超えさせました。サイズの上限が25MB。",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "データの読み込み中...",
|
||||
|
|
|
@ -420,7 +420,12 @@
|
|||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field."
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "데이터로드 중 ...",
|
||||
|
|
|
@ -420,7 +420,12 @@
|
|||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field."
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "ກຳລັງດາວໂຫຼດຂໍ້ມູນ...",
|
||||
|
|
|
@ -423,7 +423,12 @@
|
|||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Loading data...",
|
||||
|
|
|
@ -420,7 +420,12 @@
|
|||
"uploadImageFileCountMessage": "Tiada Imej dimuat naik.",
|
||||
"uploadImageSizeMessage": "Imej terlalu besar. Saiz maksimum adalah 25 MB.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field."
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Data dimuatkan…",
|
||||
|
|
|
@ -423,7 +423,12 @@
|
|||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Loading data...",
|
||||
|
|
|
@ -420,7 +420,12 @@
|
|||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field."
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Gegevens worden geladen...",
|
||||
|
|
|
@ -423,7 +423,12 @@
|
|||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Loading data...",
|
||||
|
|
|
@ -420,7 +420,12 @@
|
|||
"unknownErrorText": "Erro desconhecido.",
|
||||
"uploadImageExtMessage": "Formato de imagem desconhecido.",
|
||||
"uploadImageFileCountMessage": "Nenhuma imagem foi carregada.",
|
||||
"uploadImageSizeMessage": "A imagem é muito grande. O tamanho máximo é de 25 MB."
|
||||
"uploadImageSizeMessage": "A imagem é muito grande. O tamanho máximo é de 25 MB.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "A carregar dados...",
|
||||
|
|
|
@ -420,7 +420,12 @@
|
|||
"unknownErrorText": "Erro desconhecido.",
|
||||
"uploadImageExtMessage": "Formato de imagem desconhecido.",
|
||||
"uploadImageFileCountMessage": "Sem imagens carregadas.",
|
||||
"uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB."
|
||||
"uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Carregando dados...",
|
||||
|
|
|
@ -420,7 +420,12 @@
|
|||
"uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.",
|
||||
"uploadImageSizeMessage": "Imaginea este prea mare. Limita de dimensiune este de 25 MB.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field."
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Încărcarea datelor...",
|
||||
|
|
|
@ -420,7 +420,12 @@
|
|||
"unknownErrorText": "Неизвестная ошибка.",
|
||||
"uploadImageExtMessage": "Неизвестный формат рисунка.",
|
||||
"uploadImageFileCountMessage": "Ни одного рисунка не загружено.",
|
||||
"uploadImageSizeMessage": "Слишком большой рисунок. Максимальный размер - 25 MB."
|
||||
"uploadImageSizeMessage": "Слишком большой рисунок. Максимальный размер - 25 MB.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Загрузка данных...",
|
||||
|
|
|
@ -420,7 +420,12 @@
|
|||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field."
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Načítavanie dát...",
|
||||
|
|
|
@ -648,7 +648,12 @@
|
|||
"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.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Loading data...",
|
||||
|
|
|
@ -423,7 +423,12 @@
|
|||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Loading data...",
|
||||
|
|
|
@ -420,7 +420,12 @@
|
|||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field."
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Veri yükleniyor...",
|
||||
|
|
|
@ -420,7 +420,12 @@
|
|||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field."
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Завантаження даних...",
|
||||
|
|
|
@ -423,7 +423,12 @@
|
|||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Loading data...",
|
||||
|
|
|
@ -420,7 +420,12 @@
|
|||
"uploadImageFileCountMessage": "無上傳圖片。",
|
||||
"uploadImageSizeMessage": "圖像超出最大大小限制。最大為25MB。",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field."
|
||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "載入資料中...",
|
||||
|
|
|
@ -420,7 +420,12 @@
|
|||
"unknownErrorText": "未知错误。",
|
||||
"uploadImageExtMessage": "未知图像格式。",
|
||||
"uploadImageFileCountMessage": "没有图片上传",
|
||||
"uploadImageSizeMessage": "图片太大了。最大允许的大小是 25 MB."
|
||||
"uploadImageSizeMessage": "图片太大了。最大允许的大小是 25 MB.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "数据加载中…",
|
||||
|
|
|
@ -3,7 +3,7 @@ import { inject } from 'mobx-react';
|
|||
import { f7 } from 'framework7-react';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
|
||||
const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocument}) => {
|
||||
const ErrorController = inject('storeAppOptions','storeDocumentInfo')(({storeAppOptions, storeDocumentInfo, LoadingDocument}) => {
|
||||
const { t } = useTranslation();
|
||||
const _t = t("Error", { returnObjects: true });
|
||||
|
||||
|
@ -197,6 +197,20 @@ const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocu
|
|||
config.msg = _t.errorDirectUrl;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.ConvertationOpenFormat:
|
||||
let docExt = storeDocumentInfo.dataDoc ? storeDocumentInfo.dataDoc.fileType || '' : '';
|
||||
if (errData === 'pdf')
|
||||
config.msg = _t.errorInconsistentExtPdf.replace('%1', docExt);
|
||||
else if (errData === 'docx')
|
||||
config.msg = _t.errorInconsistentExtDocx.replace('%1', docExt);
|
||||
else if (errData === 'xlsx')
|
||||
config.msg = _t.errorInconsistentExtXlsx.replace('%1', docExt);
|
||||
else if (errData === 'pptx')
|
||||
config.msg = _t.errorInconsistentExtPptx.replace('%1', docExt);
|
||||
else
|
||||
config.msg = _t.errorInconsistentExt;
|
||||
break;
|
||||
|
||||
default:
|
||||
config.msg = _t.errorDefaultMessage.replace('%1', id);
|
||||
break;
|
||||
|
|
|
@ -614,6 +614,19 @@ PE.ApplicationController = new(function(){
|
|||
message = me.errorTokenExpire;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.ConvertationOpenFormat:
|
||||
if (errData === 'pdf')
|
||||
message = me.errorInconsistentExtPdf.replace('%1', docConfig.fileType || '');
|
||||
else if (errData === 'docx')
|
||||
message = me.errorInconsistentExtDocx.replace('%1', docConfig.fileType || '');
|
||||
else if (errData === 'xlsx')
|
||||
message = me.errorInconsistentExtXlsx.replace('%1', docConfig.fileType || '');
|
||||
else if (errData === 'pptx')
|
||||
message = me.errorInconsistentExtPptx.replace('%1', docConfig.fileType || '');
|
||||
else
|
||||
message = me.errorInconsistentExt;
|
||||
break;
|
||||
|
||||
default:
|
||||
message = me.errorDefaultMessage.replace('%1', id);
|
||||
break;
|
||||
|
@ -782,6 +795,11 @@ PE.ApplicationController = new(function(){
|
|||
errorForceSave: "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.",
|
||||
errorLoadingFont: 'Fonts are not loaded.<br>Please contact your Document Server administrator.',
|
||||
errorTokenExpire: 'The document security token has expired.<br>Please contact your Document Server administrator.',
|
||||
openErrorText: 'An error has occurred while opening the file'
|
||||
openErrorText: 'An error has occurred while opening the file',
|
||||
errorInconsistentExtDocx: 'An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.',
|
||||
errorInconsistentExtXlsx: 'An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.',
|
||||
errorInconsistentExtPptx: 'An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.',
|
||||
errorInconsistentExtPdf: 'An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.',
|
||||
errorInconsistentExt: 'An error has occurred while opening the file.<br>The file content does not match the file extension.'
|
||||
}
|
||||
})();
|
||||
|
|
|
@ -19,6 +19,11 @@
|
|||
"PE.ApplicationController.errorTokenExpire": "The document security token has expired.<br>Please contact your Document Server administrator.",
|
||||
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "Connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.",
|
||||
"PE.ApplicationController.errorUserDrop": "The file cannot be accessed right now.",
|
||||
"PE.ApplicationController.errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"PE.ApplicationController.errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"PE.ApplicationController.errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"PE.ApplicationController.errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"PE.ApplicationController.errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension.",
|
||||
"PE.ApplicationController.notcriticalErrorTitle": "Warning",
|
||||
"PE.ApplicationController.openErrorText": "An error has occurred while opening the file.",
|
||||
"PE.ApplicationController.scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please reload the page.",
|
||||
|
|
|
@ -1579,6 +1579,20 @@ define([
|
|||
config.msg = this.errorDirectUrl;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.ConvertationOpenFormat:
|
||||
config.maxwidth = 600;
|
||||
if (errData === 'pdf')
|
||||
config.msg = this.errorInconsistentExtPdf.replace('%1', this.document.fileType || '');
|
||||
else if (errData === 'docx')
|
||||
config.msg = this.errorInconsistentExtDocx.replace('%1', this.document.fileType || '');
|
||||
else if (errData === 'xlsx')
|
||||
config.msg = this.errorInconsistentExtXlsx.replace('%1', this.document.fileType || '');
|
||||
else if (errData === 'pptx')
|
||||
config.msg = this.errorInconsistentExtPptx.replace('%1', this.document.fileType || '');
|
||||
else
|
||||
config.msg = this.errorInconsistentExt;
|
||||
break;
|
||||
|
||||
default:
|
||||
config.msg = (typeof id == 'string') ? id : this.errorDefaultMessage.replace('%1', id);
|
||||
break;
|
||||
|
@ -3017,7 +3031,12 @@ define([
|
|||
textRememberMacros: 'Remember my choice for all macros',
|
||||
confirmMaxChangesSize: 'The size of actions exceeds the limitation set for your server.<br>Press "Undo" to cancel your last action or press "Continue" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).',
|
||||
textUndo: 'Undo',
|
||||
textContinue: 'Continue'
|
||||
textContinue: 'Continue',
|
||||
errorInconsistentExtDocx: 'An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.',
|
||||
errorInconsistentExtXlsx: 'An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.',
|
||||
errorInconsistentExtPptx: 'An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.',
|
||||
errorInconsistentExtPdf: 'An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.',
|
||||
errorInconsistentExt: 'An error has occurred while opening the file.<br>The file content does not match the file extension.'
|
||||
}
|
||||
})(), PE.Controllers.Main || {}))
|
||||
});
|
||||
|
|
|
@ -837,6 +837,11 @@
|
|||
"PE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.",
|
||||
"PE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
|
||||
"PE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download or print it until the connection is restored and page is reloaded.",
|
||||
"PE.Controllers.Main.errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"PE.Controllers.Main.errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"PE.Controllers.Main.errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"PE.Controllers.Main.errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"PE.Controllers.Main.errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension.",
|
||||
"PE.Controllers.Main.leavePageText": "You have unsaved changes in this presentation. Click \"Stay on This Page\", then \"Save\" to save them. Click \"Leave This Page\" to discard all the unsaved changes.",
|
||||
"PE.Controllers.Main.leavePageTextOnClose": "All unsaved changes in this presentation will be lost.<br> Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.",
|
||||
"PE.Controllers.Main.loadFontsTextText": "Loading data...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"uploadImageExtMessage": "Naməlum təsvir formatı.",
|
||||
"uploadImageFileCountMessage": "Heç bir təsvir yüklənməyib.",
|
||||
"uploadImageSizeMessage": "Təsvir çox böyükdür. Maksimum ölçü 25 MB-dır.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Məlumat yüklənir...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"openErrorText": "An error has occurred while opening the file",
|
||||
"saveErrorText": "An error has occurred while saving the file",
|
||||
"scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.",
|
||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
|
||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Загрузка даных…",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"uploadImageFileCountMessage": "No images uploaded.",
|
||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
||||
"errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Loading data...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"unknownErrorText": "Error desconegut.",
|
||||
"uploadImageExtMessage": "Format d'imatge desconegut.",
|
||||
"uploadImageFileCountMessage": "No s'ha carregat cap imatge.",
|
||||
"uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB."
|
||||
"uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "S'estant carregant les dades...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"uploadImageExtMessage": "Neznámý formát obrázku.",
|
||||
"uploadImageFileCountMessage": "Žádné obrázky nenahrány.",
|
||||
"uploadImageSizeMessage": "Obrázek je příliš velký. Maximální velikost je 25 MB.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Načítání dat...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"uploadImageExtMessage": "Unbekanntes Bildformat.",
|
||||
"uploadImageFileCountMessage": "Keine Bilder hochgeladen.",
|
||||
"uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Daten werden geladen...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"uploadImageExtMessage": "Άγνωστη μορφή εικόνας.",
|
||||
"uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.",
|
||||
"uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Φόρτωση δεδομένων...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"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.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Loading data...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"uploadImageExtMessage": "Formato de imagen desconocido.",
|
||||
"uploadImageFileCountMessage": "No hay imágenes subidas.",
|
||||
"uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Cargando datos...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"uploadImageExtMessage": "Irudi formatu ezezaguna.",
|
||||
"uploadImageFileCountMessage": "Ez da irudirik kargatu.",
|
||||
"uploadImageSizeMessage": "Irudia handiegia da. Gehienezko tamaina 25 MB da.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Datuak kargatzen...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"unknownErrorText": "Erreur inconnue.",
|
||||
"uploadImageExtMessage": "Format d'image inconnu.",
|
||||
"uploadImageFileCountMessage": "Aucune image chargée.",
|
||||
"uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo."
|
||||
"uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Chargement des données en cours...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"uploadImageExtMessage": "Formato de imaxe descoñecido.",
|
||||
"uploadImageFileCountMessage": "Non hai imaxes subidas.",
|
||||
"uploadImageSizeMessage": "A imaxe é demasiado grande. O tamaño máximo é de 25 MB.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Cargando datos...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"unknownErrorText": "Ismeretlen hiba.",
|
||||
"uploadImageExtMessage": "Ismeretlen képformátum.",
|
||||
"uploadImageFileCountMessage": "Nincs kép feltöltve.",
|
||||
"uploadImageSizeMessage": "A kép túl nagy. A maximális méret 25 MB."
|
||||
"uploadImageSizeMessage": "A kép túl nagy. A maximális méret 25 MB.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Adatok betöltése...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"unknownErrorText": "Անհայտ սխալ։",
|
||||
"uploadImageExtMessage": "Նկարի անհայտ ձևաչափ։",
|
||||
"uploadImageFileCountMessage": "Ոչ մի նկար չի բեռնվել։",
|
||||
"uploadImageSizeMessage": "Պատկերը չափազանց մեծ է:Առավելագույն չափը 25 ՄԲ է:"
|
||||
"uploadImageSizeMessage": "Պատկերը չափազանց մեծ է:Առավելագույն չափը 25 ՄԲ է:",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Տվյալների բեռնում...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"unknownErrorText": "Kesalahan tidak diketahui.",
|
||||
"uploadImageExtMessage": "Format gambar tidak dikenal.",
|
||||
"uploadImageFileCountMessage": "Tidak ada gambar yang diunggah.",
|
||||
"uploadImageSizeMessage": "Melebihi ukuran maksimal file. Ukuran maksimum adalah 25 MB."
|
||||
"uploadImageSizeMessage": "Melebihi ukuran maksimal file. Ukuran maksimum adalah 25 MB.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Memuat data...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"uploadImageExtMessage": "Formato d'immagine sconosciuto.",
|
||||
"uploadImageFileCountMessage": "Nessuna immagine caricata.",
|
||||
"uploadImageSizeMessage": "L'immagine è troppo grande. La dimensione massima è 25 MB.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Caricamento di dati...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"unknownErrorText": "不明なエラー",
|
||||
"uploadImageExtMessage": "不明なイメージの形式",
|
||||
"uploadImageFileCountMessage": "アップロードしたイメージがない",
|
||||
"uploadImageSizeMessage": "イメージのサイズの上限が超えさせました。サイズの上限が25MB。"
|
||||
"uploadImageSizeMessage": "イメージのサイズの上限が超えさせました。サイズの上限が25MB。",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "データの読み込み中...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"uploadImageExtMessage": "알 수없는 이미지 형식입니다.",
|
||||
"uploadImageFileCountMessage": "이미지가 업로드되지 않았습니다.",
|
||||
"uploadImageSizeMessage": "이미지 크기 제한을 초과했습니다.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "데이터로드 중 ...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"uploadImageExtMessage": "ບໍ່ຮູ້ສາເຫດຂໍ້ຜິດຜາດຮູບແບບຂອງຮູບ",
|
||||
"uploadImageFileCountMessage": "ບໍ່ມີຮູບພາບອັບໂຫລດ",
|
||||
"uploadImageSizeMessage": "ຮູບພາບໃຫຍ່ເກີນໄປ. ຂະຫນາດສູງສຸດແມ່ນ 25 MB.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "ກຳລັງດາວໂຫຼດຂໍ້ມູນ...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"uploadImageFileCountMessage": "No images uploaded.",
|
||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
||||
"errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Loading data...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"uploadImageExtMessage": "Format imej yang tidak diketahui.",
|
||||
"uploadImageFileCountMessage": "Tiada Imej dimuat naik.",
|
||||
"uploadImageSizeMessage": "Imej terlalu besar. Saiz maksimum adalah 25 MB.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Data dimuatkan…",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"uploadImageFileCountMessage": "No images uploaded.",
|
||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
||||
"errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Loading data...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"uploadImageExtMessage": "Onbekende afbeeldingsindeling.",
|
||||
"uploadImageFileCountMessage": "Geen afbeeldingen geüpload.",
|
||||
"uploadImageSizeMessage": "De afbeelding is te groot. De maximale grootte is 25MB.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Gegevens worden geladen...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"uploadImageFileCountMessage": "No images uploaded.",
|
||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
||||
"errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Loading data...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"unknownErrorText": "Erro desconhecido.",
|
||||
"uploadImageExtMessage": "Formato de imagem desconhecido.",
|
||||
"uploadImageFileCountMessage": "Nenhuma imagem foi carregada.",
|
||||
"uploadImageSizeMessage": "A imagem é muito grande. O tamanho máximo é de 25 MB."
|
||||
"uploadImageSizeMessage": "A imagem é muito grande. O tamanho máximo é de 25 MB.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "A carregar dados...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"unknownErrorText": "Erro desconhecido.",
|
||||
"uploadImageExtMessage": "Formato de imagem desconhecido.",
|
||||
"uploadImageFileCountMessage": "Sem imagens carregadas.",
|
||||
"uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB."
|
||||
"uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Carregando dados...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"uploadImageExtMessage": "Format de imagine nerecunoscut.",
|
||||
"uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.",
|
||||
"uploadImageSizeMessage": "Imaginea este prea mare. Limita de dimensiune este de 25 MB.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Încărcarea datelor...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"unknownErrorText": "Неизвестная ошибка.",
|
||||
"uploadImageExtMessage": "Неизвестный формат рисунка.",
|
||||
"uploadImageFileCountMessage": "Ни одного рисунка не загружено.",
|
||||
"uploadImageSizeMessage": "Слишком большой рисунок. Максимальный размер - 25 MB."
|
||||
"uploadImageSizeMessage": "Слишком большой рисунок. Максимальный размер - 25 MB.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Загрузка данных...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"uploadImageExtMessage": "Neznámy formát obrázka.",
|
||||
"uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.",
|
||||
"uploadImageSizeMessage": "Obrázok je príliš veľký. Maximálna veľkosť je 25 MB.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Načítavanie dát...",
|
||||
|
|
|
@ -456,7 +456,12 @@
|
|||
"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.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Loading data...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"uploadImageExtMessage": "Bilinmeyen resim formatı.",
|
||||
"uploadImageFileCountMessage": "Resim yüklenmedi.",
|
||||
"uploadImageSizeMessage": "Görüntü çok büyük. Maksimum boyut 25 MB'dir.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Veri yükleniyor...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"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.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"View": {
|
||||
"Add": {
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"uploadImageFileCountMessage": "No images uploaded.",
|
||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
||||
"errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Loading data...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"uploadImageExtMessage": "圖片格式未知。",
|
||||
"uploadImageFileCountMessage": "沒有上傳圖片。",
|
||||
"uploadImageSizeMessage": "圖像超出最大大小限制。最大大小為25MB。",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "加載數據中...",
|
||||
|
|
|
@ -172,7 +172,12 @@
|
|||
"unknownErrorText": "未知错误。",
|
||||
"uploadImageExtMessage": "未知图像格式。",
|
||||
"uploadImageFileCountMessage": "没有图片上传",
|
||||
"uploadImageSizeMessage": "超过了最大图片大小"
|
||||
"uploadImageSizeMessage": "超过了最大图片大小",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "数据加载中…",
|
||||
|
|
|
@ -3,7 +3,7 @@ import { inject } from 'mobx-react';
|
|||
import { f7 } from 'framework7-react';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
|
||||
const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocument}) => {
|
||||
const ErrorController = inject('storeAppOptions','storePresentationInfo')(({storeAppOptions, storePresentationInfo, LoadingDocument}) => {
|
||||
const { t } = useTranslation();
|
||||
const _t = t("Error", { returnObjects: true });
|
||||
|
||||
|
@ -177,6 +177,20 @@ const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocu
|
|||
config.msg = _t.errorDirectUrl;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.ConvertationOpenFormat:
|
||||
let docExt = storePresentationInfo.dataDoc ? storePresentationInfo.dataDoc.fileType || '' : '';
|
||||
if (errData === 'pdf')
|
||||
config.msg = _t.errorInconsistentExtPdf.replace('%1', docExt);
|
||||
else if (errData === 'docx')
|
||||
config.msg = _t.errorInconsistentExtDocx.replace('%1', docExt);
|
||||
else if (errData === 'xlsx')
|
||||
config.msg = _t.errorInconsistentExtXlsx.replace('%1', docExt);
|
||||
else if (errData === 'pptx')
|
||||
config.msg = _t.errorInconsistentExtPptx.replace('%1', docExt);
|
||||
else
|
||||
config.msg = _t.errorInconsistentExt;
|
||||
break;
|
||||
|
||||
default:
|
||||
config.msg = _t.errorDefaultMessage.replace('%1', id);
|
||||
break;
|
||||
|
|
|
@ -526,6 +526,19 @@ SSE.ApplicationController = new(function(){
|
|||
message = me.errorTokenExpire;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.ConvertationOpenFormat:
|
||||
if (errData === 'pdf')
|
||||
message = me.errorInconsistentExtPdf.replace('%1', docConfig.fileType || '');
|
||||
else if (errData === 'docx')
|
||||
message = me.errorInconsistentExtDocx.replace('%1', docConfig.fileType || '');
|
||||
else if (errData === 'xlsx')
|
||||
message = me.errorInconsistentExtXlsx.replace('%1', docConfig.fileType || '');
|
||||
else if (errData === 'pptx')
|
||||
message = me.errorInconsistentExtPptx.replace('%1', docConfig.fileType || '');
|
||||
else
|
||||
message = me.errorInconsistentExt;
|
||||
break;
|
||||
|
||||
default:
|
||||
message = me.errorDefaultMessage.replace('%1', id);
|
||||
break;
|
||||
|
@ -732,6 +745,11 @@ SSE.ApplicationController = new(function(){
|
|||
errorForceSave: "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.",
|
||||
errorLoadingFont: 'Fonts are not loaded.<br>Please contact your Document Server administrator.',
|
||||
errorTokenExpire: 'The document security token has expired.<br>Please contact your Document Server administrator.',
|
||||
openErrorText: 'An error has occurred while opening the file'
|
||||
openErrorText: 'An error has occurred while opening the file',
|
||||
errorInconsistentExtDocx: 'An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.',
|
||||
errorInconsistentExtXlsx: 'An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.',
|
||||
errorInconsistentExtPptx: 'An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.',
|
||||
errorInconsistentExtPdf: 'An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.',
|
||||
errorInconsistentExt: 'An error has occurred while opening the file.<br>The file content does not match the file extension.'
|
||||
}
|
||||
})();
|
|
@ -19,6 +19,11 @@
|
|||
"SSE.ApplicationController.errorTokenExpire": "The document security token has expired.<br>Please contact your Document Server administrator.",
|
||||
"SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.",
|
||||
"SSE.ApplicationController.errorUserDrop": "The file cannot be accessed right now.",
|
||||
"SSE.ApplicationController.errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"SSE.ApplicationController.errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"SSE.ApplicationController.errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"SSE.ApplicationController.errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"SSE.ApplicationController.errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension.",
|
||||
"SSE.ApplicationController.notcriticalErrorTitle": "Warning",
|
||||
"SSE.ApplicationController.openErrorText": "An error has occurred while opening the file.",
|
||||
"SSE.ApplicationController.scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please reload the page.",
|
||||
|
|
|
@ -1980,6 +1980,20 @@ define([
|
|||
config.msg = this.errorDirectUrl;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.ConvertationOpenFormat:
|
||||
config.maxwidth = 600;
|
||||
if (errData === 'pdf')
|
||||
config.msg = this.errorInconsistentExtPdf.replace('%1', this.appOptions.spreadsheet.fileType || '');
|
||||
else if (errData === 'docx')
|
||||
config.msg = this.errorInconsistentExtDocx.replace('%1', this.appOptions.spreadsheet.fileType || '');
|
||||
else if (errData === 'xlsx')
|
||||
config.msg = this.errorInconsistentExtXlsx.replace('%1', this.appOptions.spreadsheet.fileType || '');
|
||||
else if (errData === 'pptx')
|
||||
config.msg = this.errorInconsistentExtPptx.replace('%1', this.appOptions.spreadsheet.fileType || '');
|
||||
else
|
||||
config.msg = this.errorInconsistentExt;
|
||||
break;
|
||||
|
||||
default:
|
||||
config.msg = (typeof id == 'string') ? id : this.errorDefaultMessage.replace('%1', id);
|
||||
break;
|
||||
|
@ -3680,7 +3694,12 @@ define([
|
|||
confirmAddCellWatchesMax: 'This action will add only {0} cell watches by memory save reason.<br>Do you want to continue?',
|
||||
confirmMaxChangesSize: 'The size of actions exceeds the limitation set for your server.<br>Press "Undo" to cancel your last action or press "Continue" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).',
|
||||
textUndo: 'Undo',
|
||||
textContinue: 'Continue'
|
||||
textContinue: 'Continue',
|
||||
errorInconsistentExtDocx: 'An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.',
|
||||
errorInconsistentExtXlsx: 'An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.',
|
||||
errorInconsistentExtPptx: 'An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.',
|
||||
errorInconsistentExtPdf: 'An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.',
|
||||
errorInconsistentExt: 'An error has occurred while opening the file.<br>The file content does not match the file extension.'
|
||||
}
|
||||
})(), SSE.Controllers.Main || {}))
|
||||
});
|
||||
|
|
|
@ -952,6 +952,11 @@
|
|||
"SSE.Controllers.Main.errorWrongBracketsCount": "An error in the entered formula.<br>Wrong number of brackets is used.",
|
||||
"SSE.Controllers.Main.errorWrongOperator": "An error in the entered formula. Wrong operator is used.<br>Please correct the error.",
|
||||
"SSE.Controllers.Main.errorWrongPassword": "The password you supplied is not correct.",
|
||||
"SSE.Controllers.Main.errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"SSE.Controllers.Main.errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"SSE.Controllers.Main.errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"SSE.Controllers.Main.errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"SSE.Controllers.Main.errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension.",
|
||||
"SSE.Controllers.Main.errRemDuplicates": "Duplicate values found and deleted: {0}, unique values left: {1}.",
|
||||
"SSE.Controllers.Main.leavePageText": "You have unsaved changes in this spreadsheet. Click 'Stay on this Page' then 'Save' to save them. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
"SSE.Controllers.Main.leavePageTextOnClose": "All unsaved changes in this spreadsheet will be lost.<br> Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.",
|
||||
|
|
|
@ -243,7 +243,14 @@
|
|||
"uploadImageFileCountMessage": "Heç bir təsvir yüklənməyib.",
|
||||
"uploadImageSizeMessage": "Təsvir çox böyükdür. Maksimum ölçü 25 MB-dır.",
|
||||
"errorCannotUseCommandProtectedSheet": "You cannot use this command on a protected sheet. To use this command, unprotect the sheet.<br>You might be requested to enter a password.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"textCancel": "Cancel",
|
||||
"textOk": "Ok",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"advDRMPassword": "Parol",
|
||||
|
|
|
@ -243,7 +243,14 @@
|
|||
"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.",
|
||||
"textCancel": "Cancel",
|
||||
"textOk": "Ok",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"Statusbar": {
|
||||
"textErrNameWrongChar": "Назва не можа змяшчаць сімвалы: \\, /, *, ?, [, ], :",
|
||||
|
|
|
@ -243,7 +243,14 @@
|
|||
"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.",
|
||||
"textErrorPasswordIsNotCorrect": "The password you supplied is not correct.<br>Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.",
|
||||
"errorCannotUseCommandProtectedSheet": "You cannot use this command on a protected sheet. To use this command, unprotect the sheet.<br>You might be requested to enter a password.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"textCancel": "Cancel",
|
||||
"textOk": "Ok",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Loading data...",
|
||||
|
|
|
@ -243,7 +243,14 @@
|
|||
"uploadImageExtMessage": "Format d'imatge desconegut.",
|
||||
"uploadImageFileCountMessage": "No s'ha carregat cap imatge.",
|
||||
"uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"textCancel": "Cancel",
|
||||
"textOk": "Ok",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"advDRMPassword": "Contrasenya",
|
||||
|
|
|
@ -243,7 +243,14 @@
|
|||
"uploadImageExtMessage": "Neznámý formát obrázku.",
|
||||
"uploadImageFileCountMessage": "Nenahrány žádné obrázky.",
|
||||
"uploadImageSizeMessage": "Obrázek je příliš velký. Maximální velikost je 25 MB.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"textCancel": "Cancel",
|
||||
"textOk": "Ok",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"advDRMPassword": "Heslo",
|
||||
|
|
|
@ -243,7 +243,14 @@
|
|||
"textErrorPasswordIsNotCorrect": "The password you supplied is not correct.<br>Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.",
|
||||
"unknownErrorText": "Unknown error.",
|
||||
"uploadImageExtMessage": "Unknown image format.",
|
||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
|
||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
||||
"textCancel": "Cancel",
|
||||
"textOk": "Ok",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"advDRMPassword": "Kodeord",
|
||||
|
|
|
@ -243,7 +243,14 @@
|
|||
"uploadImageExtMessage": "Unbekanntes Bildformat.",
|
||||
"uploadImageFileCountMessage": "Keine Bilder hochgeladen.",
|
||||
"uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"textCancel": "Cancel",
|
||||
"textOk": "Ok",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"advDRMPassword": "Passwort",
|
||||
|
|
|
@ -243,7 +243,14 @@
|
|||
"uploadImageExtMessage": "Άγνωστη μορφή εικόνας.",
|
||||
"uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.",
|
||||
"uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"textCancel": "Cancel",
|
||||
"textOk": "Ok",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"advDRMPassword": "Συνθηματικό",
|
||||
|
|
|
@ -245,7 +245,12 @@
|
|||
"uploadImageFileCountMessage": "No images uploaded.",
|
||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
||||
"textCancel": "Cancel",
|
||||
"textOk": "Ok"
|
||||
"textOk": "Ok",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"advDRMPassword": "Password",
|
||||
|
|
|
@ -243,7 +243,14 @@
|
|||
"uploadImageExtMessage": "Formato de imagen desconocido.",
|
||||
"uploadImageFileCountMessage": "No hay imágenes subidas.",
|
||||
"uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"textCancel": "Cancel",
|
||||
"textOk": "Ok",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"advDRMPassword": "Contraseña",
|
||||
|
|
|
@ -243,7 +243,14 @@
|
|||
"uploadImageExtMessage": "Irudi formatu ezezaguna.",
|
||||
"uploadImageFileCountMessage": "Ez da irudirik kargatu.",
|
||||
"uploadImageSizeMessage": "Irudia handiegia da. Gehienezko tamaina 25 MB da.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||
"textCancel": "Cancel",
|
||||
"textOk": "Ok",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"advDRMPassword": "Pasahitza",
|
||||
|
|
|
@ -243,7 +243,14 @@
|
|||
"unknownErrorText": "Erreur inconnue.",
|
||||
"uploadImageExtMessage": "Format d'image inconnu.",
|
||||
"uploadImageFileCountMessage": "Aucune image chargée.",
|
||||
"uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo."
|
||||
"uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo.",
|
||||
"textCancel": "Cancel",
|
||||
"textOk": "Ok",
|
||||
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||
},
|
||||
"LongActions": {
|
||||
"advDRMPassword": "Mot de passe",
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue