From 4e8cfc89ff855f75f5b53153cf6b8ba46c2d1f67 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 6 Mar 2015 11:08:41 +0100 Subject: [PATCH] Bug 13804 - Returns via the checkouts tables uses the phrase "Returned" rather than "Checked in" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Test plan: 1) Apply this patch 2) Return an item via the checkouts table 3) Note the left most column now reads "Checked in" rather than "Returned" Followed test plan. Works as expected. Signed-off-by: Marc VĂ©ron Signed-off-by: Jonathan Druart --- koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js b/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js index 65cf43d..e8f6f44 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js +++ b/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js @@ -66,7 +66,7 @@ $(document).ready(function() { if ( data.returned ) { content = CIRCULATION_RETURNED; $(id).parent().parent().addClass('ok'); - $('#date_due_' + data.itemnumber).html(_("Returned")); + $('#date_due_' + data.itemnumber).html(CIRCULATION_RETURNED); } else { content = CIRCULATION_NOT_RETURNED; $(id).parent().parent().addClass('warn'); -- 2.1.0