From d50163786156b4b4eda37addaeeab957961329d7 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=utf8 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 Signed-off-by: Tomas Cohen Arazi --- 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 65cf43db66..e8f6f44c3d 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.39.5