Skip to content

Commit

Permalink
i18n: t() handles single keys returning an Array, also
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy committed May 25, 2010
1 parent 6a9e188 commit f7e27bd
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 5 deletions.
19 changes: 14 additions & 5 deletions actionpack/lib/action_view/helpers/translation_helper.rb
Expand Up @@ -11,17 +11,22 @@ module TranslationHelper
# to translate many keys within the same partials and gives you a simple framework for scoping them consistently. If you don't
# prepend the key with a period, nothing is converted.
def translate(keys, options = {})
if keys.is_a?(Array)
if multiple_keys = keys.is_a?(Array)
ActiveSupport::Deprecation.warn "Giving an array to translate is deprecated, please give a symbol or a string instead", caller
end

options[:raise] = true
return_first = keys.is_a?(String) || keys.is_a?(Symbol)
keys = scope_keys_by_partial(keys)

translations = I18n.translate(keys, options)
translations = html_safe_translation_keys(keys, Array.wrap(translations))
return_first ? translations.first : translations
translations = [translations] if !multiple_keys && translations.size > 1
translations = html_safe_translation_keys(keys, translations)

if multiple_keys || translations.size > 1
translations
else
translations.first
end
rescue I18n::MissingTranslationData => e
keys = I18n.send(:normalize_translation_keys, e.locale, e.key, e.options[:scope])
content_tag('span', keys.join(', '), :class => 'translation_missing')
Expand Down Expand Up @@ -50,7 +55,11 @@ def scope_keys_by_partial(keys)

def html_safe_translation_keys(keys, translations)
keys.zip(translations).map do |key, translation|
key =~ /(\b|_|\.)html$/ ? translation.html_safe : translation
if key =~ /(\b|_|\.)html$/ && translation.respond_to?(:html_safe)
translation.html_safe
else
translation
end
end
end
end
Expand Down
17 changes: 17 additions & 0 deletions actionpack/test/template/translation_helper_test.rb
Expand Up @@ -18,13 +18,25 @@ def test_returns_missing_translation_message_wrapped_into_span
assert_equal expected, translate(:foo)
end

def test_translation_returning_an_array
I18n.expects(:translate).with(["foo"], :raise => true).returns(["foo", "bar"])
assert_equal ["foo", "bar"], translate(:foo)
end

def test_translation_of_an_array
assert_deprecated do
I18n.expects(:translate).with(["foo", "bar"], :raise => true).returns(["foo", "bar"])
assert_equal ["foo", "bar"], translate(["foo", "bar"])
end
end

def test_translation_of_an_array_returning_an_array
assert_deprecated do
I18n.expects(:translate).with(["foo", "bar"], :raise => true).returns(["foo", ["bar", "baz"]])
assert_equal ["foo", ["bar", "baz"]], translate(["foo", "bar"])
end
end

def test_translation_of_an_array_with_html
assert_deprecated do
translate_expected = ['<a href="#">foo</a>', '<a href="#">bar</a>', '<a href="#">baz</a>']
Expand Down Expand Up @@ -75,4 +87,9 @@ def test_translate_marks_translations_with_a_html_suffix_as_safe_html
I18n.expects(:translate).with(["hello_html"], :raise => true).returns(["<a>Hello World</a>"])
assert translate("hello_html").html_safe?
end

def test_translation_returning_an_array_ignores_html_suffix
I18n.expects(:translate).with(["foo_html"], :raise => true).returns(["foo", "bar"])
assert_equal ["foo", "bar"], translate(:foo_html)
end
end

0 comments on commit f7e27bd

Please sign in to comment.