diff --git a/erpnext/startup/startup.js b/erpnext/startup/startup.js index cf4b069c4e0..7c6e8a23ca3 100644 --- a/erpnext/startup/startup.js +++ b/erpnext/startup/startup.js @@ -100,13 +100,13 @@ erpnext.startup.start = function() { if (0 <= diff && diff <= 15) { var expiry_string = diff==0 ? "today" : repl("in %(diff)s day(s)", { diff: diff }); $('header').append(repl('
\ - Ahem! Your ERPNext subscription will expire %(expiry_string)s. \ + Your ERPNext subscription will expire %(expiry_string)s. \ Please renew your subscription to continue using ERPNext \ (and remove this annoying banner). \
', { expiry_string: expiry_string })); } else if (diff < 0) { $('header').append(repl('
\ - Ahem! This ERPNext subscription has expired and should be deleted. \ + This ERPNext subscription has expired and should be deleted. \
', { expiry_string: expiry_string })); } }