Guest User

Untitled

a guest
Jun 18th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. I18n.instance_eval do
  2. def with_locale(locale)
  3. used_locale = I18n.locale
  4. begin
  5. I18n.locale = locale.to_sym
  6. yield
  7. ensure
  8. I18n.locale = used_locale
  9. end
  10. end
  11. end
Add Comment
Please, Sign In to add comment