From 328cd3fc3ff492e78d65391d6a1fb7ea2f9958d8 Mon Sep 17 00:00:00 2001 From: Eric Davis Date: Thu, 26 Feb 2009 17:09:52 -0800 Subject: [PATCH] Removed GLoc calls, should stay 0.8 compatibile --- lib/budget_issue_hook.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/budget_issue_hook.rb b/lib/budget_issue_hook.rb index 112286f..28884fa 100644 --- a/lib/budget_issue_hook.rb +++ b/lib/budget_issue_hook.rb @@ -38,11 +38,11 @@ class BudgetIssueHook < Redmine::Hook::ViewListener def view_issues_bulk_edit_details_bottom(context = { }) if context[:project].module_enabled?('budget_module') select = select_tag('deliverable_id', - content_tag('option', GLoc.l(:label_no_change_option), :value => '') + - content_tag('option', GLoc.l(:label_none), :value => 'none') + + content_tag('option', l(:label_no_change_option), :value => '') + + content_tag('option', l(:label_none), :value => 'none') + options_from_collection_for_select(Deliverable.find_all_by_project_id(context[:project].id, :order => 'subject ASC'), :id, :subject)) - return content_tag(:p, "") + return content_tag(:p, "") else return '' end