From cf3c2fadeb676e0547ba61b9ee06ee59a0ae325e Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Tue, 20 Jul 2010 14:37:07 -0400 Subject: [PATCH] Fix for Bug 4996 - Untranslatable strings in budget/fund toolbar Signed-off-by: Galen Charlton --- koha-tmpl/intranet-tmpl/prog/en/includes/budgets-admin-toolbar.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/budgets-admin-toolbar.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/budgets-admin-toolbar.inc index c3ec018bac..e6ccde3862 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/budgets-admin-toolbar.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/budgets-admin-toolbar.inc @@ -21,7 +21,7 @@ var budgets_menu = [ { text: _("New budget"), url: "/cgi-bin/koha/admin/aqbudgetperiods.pl?op=add_form" }, - { text: _("New fund for ''"), url: "/cgi-bin/koha/admin/aqbudgets.pl?op=add_form&budget_period_id=" + { text: _("New fund for") + " ''", url: "/cgi-bin/koha/admin/aqbudgets.pl?op=add_form&budget_period_id=" , disabled:true , disabled:true } @@ -32,8 +32,8 @@ var periods_menu = [ - { text: _("Edit budget ''"), url: "/cgi-bin/koha/admin/aqbudgetperiods.pl?op=add_form&budget_period_id=" }, - { text: _("Duplicate budget ''") } + { text: _("Edit budget") + " ''", url: "/cgi-bin/koha/admin/aqbudgetperiods.pl?op=add_form&budget_period_id=" }, + { text: _("Duplicate budget") + " ''" } ] -- 2.11.4.GIT