[SSE] Add error c_oAscError.ID.PasteSlicerError

This commit is contained in:
Julia Radzhabova 2020-06-05 12:11:14 +03:00
parent 9164e71bf9
commit 2062ffe9b3
2 changed files with 6 additions and 1 deletions

View file

@ -752,6 +752,7 @@
"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.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.txtGotoBeginning": "Go to the beginning of the document",
"DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked",

View file

@ -1499,6 +1499,9 @@ define([
config.msg = this.errorFTRangeIncludedOtherTables;
break;
case Asc.c_oAscError.ID.PasteSlicerError:
config.msg = this.errorPasteSlicerError;
break;
case Asc.c_oAscError.ID.RemoveDuplicates:
config.iconCls = 'info';
@ -2605,7 +2608,8 @@ define([
txtClearFilter: 'Clear Filter (Alt+C)',
txtBlank: '(blank)',
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 || {}))
});