diff --git a/erpnext/hooks.py b/erpnext/hooks.py index 988dca23977..84796373c9a 100644 --- a/erpnext/hooks.py +++ b/erpnext/hooks.py @@ -221,7 +221,7 @@ website_route_rules = [ standard_navbar_items = [ { - "item_label": "Erase Demo Data", + "item_label": "Delete Demo Data", "item_type": "Action", "action": "erpnext.demo.clear_demo();", "is_standard": 1, diff --git a/erpnext/public/js/utils/demo.js b/erpnext/public/js/utils/demo.js index db15834ae95..980ac530baf 100644 --- a/erpnext/public/js/utils/demo.js +++ b/erpnext/public/js/utils/demo.js @@ -2,7 +2,7 @@ frappe.provide("erpnext.demo"); $(document).on("desktop_screen", function (event, data) { data.desktop.add_menu_item({ - label: __("Clear Demo Data"), + label: __("Delete Demo Data"), icon: "trash", condition: function () { return frappe.boot.sysdefaults.demo_company;