[SSE] Add error c_oAscError.ID.PasteSlicerError
This commit is contained in:
parent
9164e71bf9
commit
2062ffe9b3
|
@ -752,6 +752,7 @@
|
||||||
"DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
"DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
||||||
"DE.Controllers.Main.textHasMacros": "The file contains automatic macros.<br>Do you want to run macros?",
|
"DE.Controllers.Main.textHasMacros": "The file contains automatic macros.<br>Do you want to run macros?",
|
||||||
"DE.Controllers.Main.textRemember": "Remember my choice",
|
"DE.Controllers.Main.textRemember": "Remember my choice",
|
||||||
|
"DE.Controllers.Main.errorPasteSlicerError": "Table slicers cannot be copied from one workbook to another.<br>Try again by selecting the entire table and the slicers.",
|
||||||
"DE.Controllers.Navigation.txtBeginning": "Beginning of document",
|
"DE.Controllers.Navigation.txtBeginning": "Beginning of document",
|
||||||
"DE.Controllers.Navigation.txtGotoBeginning": "Go to the beginning of the document",
|
"DE.Controllers.Navigation.txtGotoBeginning": "Go to the beginning of the document",
|
||||||
"DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked",
|
"DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked",
|
||||||
|
|
|
@ -1499,6 +1499,9 @@ define([
|
||||||
config.msg = this.errorFTRangeIncludedOtherTables;
|
config.msg = this.errorFTRangeIncludedOtherTables;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case Asc.c_oAscError.ID.PasteSlicerError:
|
||||||
|
config.msg = this.errorPasteSlicerError;
|
||||||
|
break;
|
||||||
|
|
||||||
case Asc.c_oAscError.ID.RemoveDuplicates:
|
case Asc.c_oAscError.ID.RemoveDuplicates:
|
||||||
config.iconCls = 'info';
|
config.iconCls = 'info';
|
||||||
|
@ -2605,7 +2608,8 @@ define([
|
||||||
txtClearFilter: 'Clear Filter (Alt+C)',
|
txtClearFilter: 'Clear Filter (Alt+C)',
|
||||||
txtBlank: '(blank)',
|
txtBlank: '(blank)',
|
||||||
textHasMacros: 'The file contains automatic macros.<br>Do you want to run macros?',
|
textHasMacros: 'The file contains automatic macros.<br>Do you want to run macros?',
|
||||||
textRemember: 'Remember my choice'
|
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.'
|
||||||
}
|
}
|
||||||
})(), SSE.Controllers.Main || {}))
|
})(), SSE.Controllers.Main || {}))
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue