From 029936efbe7318e9146c22c6609e1571c7abb0c1 Mon Sep 17 00:00:00 2001 From: Tsutomu Kuroda Date: Wed, 6 Jun 2012 12:45:37 +0900 Subject: Fix human attribute_name to handle deeply nested attributes This is a back-port of b0e2fc84 to Rails 3.2. See #5843 and #3859 also. --- activemodel/lib/active_model/translation.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'activemodel/lib/active_model') diff --git a/activemodel/lib/active_model/translation.rb b/activemodel/lib/active_model/translation.rb index 02b7c54d61..e560d9e2cf 100644 --- a/activemodel/lib/active_model/translation.rb +++ b/activemodel/lib/active_model/translation.rb @@ -44,9 +44,9 @@ module ActiveModel # Specify +options+ with additional translating options. def human_attribute_name(attribute, options = {}) defaults = [] - parts = attribute.to_s.split(".", 2) + parts = attribute.to_s.split(".") attribute = parts.pop - namespace = parts.pop + namespace = parts.join("/") unless parts.empty? if namespace lookup_ancestors.each do |klass| -- cgit v1.2.3