[SSE] Обработка ошибок при изменении диапазона форматированной таблицы.
This commit is contained in:
parent
5e9702a768
commit
09064a26e3
|
@ -163,6 +163,10 @@ define([
|
||||||
else {
|
else {
|
||||||
if (isvalid == Asc.c_oAscError.ID.AutoFilterDataRangeError) {
|
if (isvalid == Asc.c_oAscError.ID.AutoFilterDataRangeError) {
|
||||||
Common.UI.warning({msg: this.errorAutoFilterDataRange});
|
Common.UI.warning({msg: this.errorAutoFilterDataRange});
|
||||||
|
} else if (isvalid == Asc.c_oAscError.ID.FTChangeTableRangeError) {
|
||||||
|
Common.UI.warning({msg: this.errorFTChangeTableRangeError});
|
||||||
|
} if (isvalid == Asc.c_oAscError.ID.FTRangeIncludedOtherTables) {
|
||||||
|
Common.UI.warning({msg: this.errorFTRangeIncludedOtherTables});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
@ -212,6 +216,8 @@ define([
|
||||||
textCancel : 'Cancel',
|
textCancel : 'Cancel',
|
||||||
txtEmpty : 'This field is required',
|
txtEmpty : 'This field is required',
|
||||||
txtInvalidRange: 'ERROR! Invalid cells range',
|
txtInvalidRange: 'ERROR! Invalid cells range',
|
||||||
errorAutoFilterDataRange: 'The operation could not be done for the selected range of cells.<br>Select a uniform data range inside or outside the table and try again.'
|
errorAutoFilterDataRange: 'The operation could not be done for the selected range of cells.<br>Select a uniform data range inside or outside the table and try again.',
|
||||||
|
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.',
|
||||||
|
errorFTRangeIncludedOtherTables: 'Operation could not be completed for the selected cell range.<br>Select a range which does not include other tables.'
|
||||||
}, SSE.Views.TableOptionsDialog || {}))
|
}, SSE.Views.TableOptionsDialog || {}))
|
||||||
});
|
});
|
|
@ -825,6 +825,8 @@
|
||||||
"SSE.Views.TableOptionsDialog.txtFormat": "Create table",
|
"SSE.Views.TableOptionsDialog.txtFormat": "Create table",
|
||||||
"SSE.Views.TableOptionsDialog.txtInvalidRange": "ERROR! Invalid cells range",
|
"SSE.Views.TableOptionsDialog.txtInvalidRange": "ERROR! Invalid cells range",
|
||||||
"SSE.Views.TableOptionsDialog.txtTitle": "Title",
|
"SSE.Views.TableOptionsDialog.txtTitle": "Title",
|
||||||
|
"SSE.Views.TableOptionsDialog.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.Views.TableOptionsDialog.errorFTRangeIncludedOtherTables": "Operation could not be completed for the selected cell range.<br>Select a range which does not include other tables.",
|
||||||
"SSE.Views.TextArtSettings.strBackground": "Background color",
|
"SSE.Views.TextArtSettings.strBackground": "Background color",
|
||||||
"SSE.Views.TextArtSettings.strColor": "Color",
|
"SSE.Views.TextArtSettings.strColor": "Color",
|
||||||
"SSE.Views.TextArtSettings.strFill": "Fill",
|
"SSE.Views.TextArtSettings.strFill": "Fill",
|
||||||
|
|
Loading…
Reference in a new issue