commit
77aa10ce8d
|
@ -1475,6 +1475,10 @@ define([
|
|||
config.msg = this.errorFrmlMaxTextLength;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.FrmlMaxReference:
|
||||
config.msg = this.errorFrmlMaxReference;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.DataValidate:
|
||||
var icon = errData ? errData.asc_getErrorStyle() : undefined;
|
||||
if (icon!==undefined) {
|
||||
|
@ -2619,7 +2623,8 @@ define([
|
|||
textHasMacros: 'The file contains automatic macros.<br>Do you want to run macros?',
|
||||
textRemember: 'Remember my choice',
|
||||
errorPasteSlicerError: 'Table slicers cannot be copied from one workbook to another.<br>Try again by selecting the entire table and the slicers.',
|
||||
errorFrmlMaxLength: 'You cannot add this formula as its length exceeded the allowed number of characters.<br>Please edit it and try again.'
|
||||
errorFrmlMaxLength: 'You cannot add this formula as its length exceeded the allowed number of characters.<br>Please edit it and try again.',
|
||||
errorFrmlMaxReference: 'You cannot enter this formula because it has too many values,<br>cell references, and/or names.'
|
||||
}
|
||||
})(), SSE.Controllers.Main || {}))
|
||||
});
|
||||
|
|
|
@ -501,6 +501,7 @@
|
|||
"SSE.Controllers.Main.errorFormulaParsing": "Internal error while parsing the formula.",
|
||||
"SSE.Controllers.Main.errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.<br>Use the CONCATENATE function or concatenation operator (&).",
|
||||
"SSE.Controllers.Main.errorFrmlWrongReferences": "The function refers to a sheet that does not exist.<br>Please check the data and try again.",
|
||||
"SSE.Controllers.Main.errorFrmlMaxReference": "You cannot enter this formula because it has too many values,<br>cell references, and/or names.",
|
||||
"SSE.Controllers.Main.errorFTChangeTableRangeError": "Operation could not be completed for the selected cell range.<br>Select a range so that the first table row was on the same row<br>and the resulting table overlapped the current one.",
|
||||
"SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "Operation could not be completed for the selected cell range.<br>Select a range which does not include other tables.",
|
||||
"SSE.Controllers.Main.errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.",
|
||||
|
|
|
@ -1100,6 +1100,10 @@ define([
|
|||
config.msg = this.errorFrmlMaxLength;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.FrmlMaxReference:
|
||||
config.msg = this.errorFrmlMaxReference;
|
||||
break;
|
||||
|
||||
default:
|
||||
config.msg = this.errorDefaultMessage.replace('%1', id);
|
||||
break;
|
||||
|
@ -1736,7 +1740,8 @@ define([
|
|||
textRemember: 'Remember my choice',
|
||||
textYes: 'Yes',
|
||||
textNo: 'No',
|
||||
errorFrmlMaxLength: 'You cannot add this formula as its length exceeded the allowed number of characters.<br>Please edit it and try again.'
|
||||
errorFrmlMaxLength: 'You cannot add this formula as its length exceeded the allowed number of characters.<br>Please edit it and try again.',
|
||||
errorFrmlMaxReference: 'You cannot enter this formula because it has too many values,<br>cell references, and/or names.'
|
||||
}
|
||||
})(), SSE.Controllers.Main || {}))
|
||||
});
|
|
@ -173,6 +173,7 @@
|
|||
"SSE.Controllers.Main.errorFormulaParsing": "Internal error while parsing the formula.",
|
||||
"SSE.Controllers.Main.errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.<br>Use the CONCATENATE function or concatenation operator (&).",
|
||||
"SSE.Controllers.Main.errorFrmlWrongReferences": "The function refers to a sheet that does not exist.<br>Please check the data and try again.",
|
||||
"SSE.Controllers.Main.errorFrmlMaxReference": "You cannot enter this formula because it has too many values,<br>cell references, and/or names.",
|
||||
"SSE.Controllers.Main.errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.",
|
||||
"SSE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor",
|
||||
"SSE.Controllers.Main.errorKeyExpire": "Key descriptor expired",
|
||||
|
|
Loading…
Reference in a new issue