From 32699b3387262df78a1043ada2e409f86e65e128 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Mon, 8 Dec 2014 07:39:35 -0500 Subject: [PATCH] Bug 13408 - Tell librarians they may continue scanning while checkouts table is loading 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... --- koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js | 3 ++- .../prog/en/modules/circ/circulation.tt | 1 + .../prog/en/modules/members/moremember.tt | 1 + 3 files changed, 4 insertions(+), 1 deletions(-) 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 @@