From eb119a7b07d99a8ec4b6d3d146ab0f6a3e914d6a Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Wed, 31 Jan 2018 08:51:30 +0200 Subject: [PATCH] Bug 20109: Make "Remove" translatable when adding a fund When a user has been added to the fund, the link to "Remove" that user is not translatable. Test plan: 1) Install language xx-YY 2) Go to Home -> Administration -> Budgets -> Funds -> Add Fund 3) Add a user to the fund 4) Notice how the "Remove" link after the user's name is not translated 5) Apply patch 6) Look in xx-YY-staff-prog.po, and if needed, translate the msgid "Remove" 7) Update and reinstall the language 8) Do 2 and 3 again. The "Remove" link should now be translated. Signed-off-by: Pasi Kallinen Signed-off-by: Owen Leonard https://bugs.koha-community.org/show_bug.cgi?id=10209 Signed-off-by: Jonathan Druart Conflicts: koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt Signed-off-by: Nick Clemens --- koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt index a3c9ee9bef..f7d8e4b953 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt @@ -56,7 +56,7 @@ var MSG_PARENT_BENEATH_BUDGET = "- " + _("New budget-parent is beneath budget") var li = '
  • ' + '' + borrowername + ' ' - + ' • Remove ' + + ' • '+_("Remove")+' ' + '
  • '; $("#budget_users").prepend(li); ids.push(borrowernumber); -- 2.39.5