From 84777ac457ccf237b7a6e68dc24e5110ebdde9e5 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Mon, 30 Apr 2012 18:33:32 +0530 Subject: [PATCH] change in expiry message --- erpnext/startup/startup.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/startup/startup.js b/erpnext/startup/startup.js index cf4b069c4e..7c6e8a23ca 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 })); } }