From bc82f74db5e388dc7117b794a82a9811d1b34016 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 4 Jul 2018 14:55:14 -0300 Subject: [PATCH] Bug 21029: Make "Suspend until:" translatable Content-Type: text/plain; charset=utf-8 The label was part of the holds.js file. As .js files are never translatable it needs to be moved to template level. Test plan: - Place a hold on an item - Go to the patron account - Click on the Suspend button on the holds tab - View the modal, the label before the date field "Suspend until:" is now translatable. Signed-off-by: Katrin Fischer Signed-off-by: Marcel de Rooy --- koha-tmpl/intranet-tmpl/prog/en/includes/strings.inc | 1 + koha-tmpl/intranet-tmpl/prog/js/holds.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/strings.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/strings.inc index e7c68d7..bd51329 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/strings.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/strings.inc @@ -37,6 +37,7 @@ var CANCEL = _("Cancel"); var RESUME = _("Resume"); var SUSPEND = _("Suspend"); + var SUSPEND_UNTIL = _("Suspend until:"); var SUSPEND_HOLD_ON = _("Suspend hold on"); var CLEAR_DATE_TO_SUSPEND_INDEFINITELY = _("Clear date to suspend indefinitely"); var SUSPEND_HOLD_ERROR_DATE = _("Unable to suspend hold, invalid date"); diff --git a/koha-tmpl/intranet-tmpl/prog/js/holds.js b/koha-tmpl/intranet-tmpl/prog/js/holds.js index 46c826c..e3b68c1 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/holds.js +++ b/koha-tmpl/intranet-tmpl/prog/js/holds.js @@ -241,7 +241,7 @@ $(document).ready(function() {