From 8705095103bcacc1e9327a44410e9bb03f38401b Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Mon, 8 Dec 2014 07:39:35 -0500 Subject: [PATCH] [Signed-off] Bug 13408 - Tell librarians they may continue scanning while checkouts table is loading MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Some librarians do not realize they can continue scanning items even if the checkouts table has not loaded. We should have Koha tell them explicitly that they may continue scanning barcodes. Test Plan: 1) Apply this patch 2) Load the checkouts table on circulation.pl, note the loading message is now Loading... you may continue scanning. 3) Load the checkouts table on moremember.pl, note the loading message is still Loading... Works as expected. Signed-off-by: Marc VĂ©ron --- koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js | 3 ++- koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 1 + koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt | 1 + 3 files changed, 4 insertions(+), 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 a135496..f0b1771 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js +++ b/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js @@ -158,7 +158,8 @@ $(document).ready(function() { issuesTable = $("#issues-table").dataTable({ "oLanguage": { - "sEmptyTable" : MSG_DT_LOADING_RECORDS, + "sEmptyTable" : issues_table_loading_message, + "sProcessing": issues_table_loading_message, }, "bAutoWidth": false, "sDom": "rt", diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt index b938724..ba9aa4b 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -28,6 +28,7 @@