From c4f7259cc1a160abed701007244c320be53c15ab Mon Sep 17 00:00:00 2001 From: Nicole Engard Date: Mon, 31 May 2010 19:56:23 -0400 Subject: [PATCH] bug 4205 remove extra 'plan by' option There wasn't a conditional in place to stop the planning pull down from showing a blank 'plan by' option. This patch also makes the other 'plan by' options look cleaner by removing the all caps. Signed-off-by: Galen Charlton --- .../prog/en/includes/budgets-admin-toolbar.inc | 9 +++++---- 1 file changed, 5 insertions(+), 4 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 f0c041cba2..c3ec018bac 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 @@ -42,27 +42,28 @@ var planning_menu = [ - { text: _("Plan by MONTHS"), + { text: _("Plan by Months"), url: "/cgi-bin/koha/admin/aqplan.pl?budget_period_id=&authcat=MONTHS" , id:'disabled' }, - { text: _("Plan by BRANCHES"), + { text: _("Plan by Branches"), url: "/cgi-bin/koha/admin/aqplan.pl?budget_period_id=&authcat=BRANCHES" , id:'disabled' }, - { text: _("Plan by ITEMTYPES"), + { text: _("Plan by Item Types"), url: "/cgi-bin/koha/admin/aqplan.pl?budget_period_id=&authcat=ITEMTYPES" , id:'disabled' }, - + { text: _("Plan by "), url: "/cgi-bin/koha/admin/aqplan.pl?budget_period_id=&authcat=" , id:'disabled' }, + ] new YAHOO.widget.Button({ -- 2.39.5