From 2b9c81632a7a13e649577dce9c8b94fcf50a8cc5 Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Wed, 31 Jan 2018 08:51:30 +0200 Subject: [PATCH] Bug 20109: Allow translating "Remove" in Add 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 --- 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 21a3877b6a..943e28e84b 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt @@ -491,7 +491,7 @@ var li = '
  • ' + '' + borrowername + ' ' - + ' • Remove ' + + ' • '+_('Remove')+' ' + '
  • '; $("#budget_users").prepend(li); ids.push(borrowernumber); -- 2.11.0