提交 41740be7 编写于 作者: R Rafael Mendonça França

Merge pull request #18308 from jcoyne/i18n_translate_safety

Unsafe default translations should not be marked html_safe
* Default translations that have a lower precidence than an html safe default,
but are not themselves safe, should not be marked as html_safe.
*Justin Coyne*
* Make possible to use blocks with short version of `render "partial"` helper.
*Nikolay Shebanov*
......
......@@ -37,7 +37,8 @@ module TranslationHelper
# you know what kind of output to expect when you call translate in a template.
def translate(key, options = {})
options = options.dup
options[:default] = wrap_translate_defaults(options[:default]) if options[:default]
remaining_defaults = Array(options.delete(:default))
options[:default] = remaining_defaults.shift if remaining_defaults.first.kind_of? String
# If the user has specified rescue_format then pass it all through, otherwise use
# raise and do the work ourselves
......@@ -62,10 +63,14 @@ def translate(key, options = {})
I18n.translate(scope_key_by_partial(key), options)
end
rescue I18n::MissingTranslationData => e
raise e if raise_error
if remaining_defaults.present?
translate remaining_defaults.shift, options.merge(default: remaining_defaults)
else
raise e if raise_error
keys = I18n.normalize_keys(e.locale, e.key, e.options[:scope])
content_tag('span', keys.last.to_s.titleize, :class => 'translation_missing', :title => "translation missing: #{keys.join('.')}")
keys = I18n.normalize_keys(e.locale, e.key, e.options[:scope])
content_tag('span', keys.last.to_s.titleize, :class => 'translation_missing', :title => "translation missing: #{keys.join('.')}")
end
end
alias :t :translate
......@@ -94,21 +99,6 @@ def scope_key_by_partial(key)
def html_safe_translation_key?(key)
key.to_s =~ /(\b|_|\.)html$/
end
def wrap_translate_defaults(defaults)
new_defaults = []
defaults = Array(defaults)
while key = defaults.shift
if key.is_a?(Symbol)
new_defaults << lambda { |_, options| translate key, options.merge(:default => defaults) }
break
else
new_defaults << key
end
end
new_defaults
end
end
end
end
......@@ -145,6 +145,12 @@ def test_translate_with_last_default_named_html
assert_equal true, translation.html_safe?
end
def test_translate_with_last_default_not_named_html
translation = translate(:'translations.missing', :default => [:'translations.missing_html', :'translations.foo'])
assert_equal 'Foo', translation
assert_equal false, translation.html_safe?
end
def test_translate_with_string_default
translation = translate(:'translations.missing', default: 'A Generic String')
assert_equal 'A Generic String', translation
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册