1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-08 08:31:31 +00:00

Support of default ActiveRecord I18n scopes in LabelledFormBuilder (#26618).

Patch by Dmitry Lisichkin.


git-svn-id: http://svn.redmine.org/redmine/trunk@17365 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2018-06-04 02:26:48 +00:00
parent c7d52e7c55
commit db8afc99e1

View File

@ -55,7 +55,7 @@ class Redmine::Views::LabelledFormBuilder < ActionView::Helpers::FormBuilder
def label_for_field(field, options = {})
return ''.html_safe if options.delete(:no_label)
text = options[:label].is_a?(Symbol) ? l(options[:label]) : options[:label]
text ||= l(("field_" + field.to_s.gsub(/\_id$/, "")).to_sym)
text ||= @object.class.human_attribute_name(field)
text += @template.content_tag("span", " *", :class => "required") if options.delete(:required)
@template.content_tag("label", text.html_safe,
:class => (@object && @object.errors[field].present? ? "error" : nil),