diff --git a/IPython/html/static/tree/js/notebooklist.js b/IPython/html/static/tree/js/notebooklist.js index 9f66a3183..70b396ca3 100644 --- a/IPython/html/static/tree/js/notebooklist.js +++ b/IPython/html/static/tree/js/notebooklist.js @@ -687,7 +687,7 @@ define([ } var that = this; dialog.modal({ - title : "Delete", + title : "Duplicate", body : message, buttons : { Duplicate : { @@ -698,9 +698,9 @@ define([ that.load_list(); }).catch(function(e) { dialog.modal({ - title: "Delete Failed", + title: "Duplicate Failed", body: $('
') - .text("An error occurred while deleting \"" + item.path + "\".") + .text("An error occurred while duplicating \"" + item.path + "\".") .append($('') .addClass('alert alert-danger') .text(e.message || e)),