提交 cf5d6ab9 编写于 作者: L Luca Guidi

Added localize helper method

上级 2949918b
......@@ -11,6 +11,10 @@ def translate(*args)
keys = I18n.send :normalize_translation_keys, e.locale, e.key, e.options[:scope]
content_tag('span', keys.join(', '), :class => 'translation_missing')
end
def localize(*args)
I18n.l *args
end
end
end
end
\ No newline at end of file
......@@ -39,4 +39,10 @@ def test_returns_missing_translation_message_wrapped_into_span
# error_messages_for(:object => @object, :locale => 'en-US')
# end
end
def test_delegates_localize_to_i18n
@time = Time.utc(2008, 7, 8, 12, 18, 38)
assert_equal "Tue, 08 Jul 2008 12:18:38 +0100", localize(@time)
assert_equal "08 Jul 12:18", localize(@time, :format => :short)
end
end
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册