From 6327ba3348805fd861d82c9865dc578b96ea576e Mon Sep 17 00:00:00 2001 From: Marc Veron Date: Thu, 2 Aug 2012 11:25:15 +0200 Subject: [PATCH] Bug 8556 - "Mark seen and continue" not translatable in inventory.tt Added missing _(...) wrapper in JavaScript in inventory.tt Additionaly added two blanks to separate buttons (were sticked together without white space) Signed-off-by: Jonathan Druart --- .../prog/en/modules/tools/inventory.tt | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt index 1f668b9..a88ed84 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt @@ -14,8 +14,8 @@ $(document).ready(function(){ $(".checkboxed").unCheckCheckboxes(); return false; }); -[% IF ( offset ) %]$("#markseen").before("");[% END %] -[% IF ( nextoffset ) %]$("#markseen").after("");[% END %] +[% IF ( offset ) %]$("#markseen").before(" ");[% END %] +[% IF ( nextoffset ) %]$("#markseen").after(" ");[% END %] $("#markback").click(function(){ $(".checkboxed").find("input").filter("[name=offset]").attr("value","[% prevoffset %]"); return true; -- 1.7.7.3