method
scope_key_by_partial
scope_key_by_partial(key)
private
Hide source
# File actionpack/lib/action_view/helpers/translation_helper.rb, line 30 def scope_key_by_partial(key) if key.to_s.first == "." template.path_without_format_and_extension.gsub(%r{/_?}, ".") + key.to_s else key end end


