process(...)
Override process to set up I18n proxy.
# File actionview/lib/action_view/rendering.rb, line 38 def process(...) # :nodoc: old_config, I18n.config = I18n.config, I18nProxy.new(I18n.config, lookup_context) super ensure I18n.config = old_config end