method
scope_key_by_partial
v4.0.2 -
Show latest stable
- Class:
ActionView::Helpers::TranslationHelper
scope_key_by_partial(key)private
No documentation available.
# File actionpack/lib/action_view/helpers/translation_helper.rb, line 71
def scope_key_by_partial(key)
if key.to_s.first == "."
if @virtual_path
@virtual_path.gsub(%{/_?}, ".") + key.to_s
else
raise "Cannot use t(#{key.inspect}) shortcut because path is not available"
end
else
key
end
end