Created
June 16, 2015 12:00
-
-
Save jcieslar/57bc9586575aaf72986a to your computer and use it in GitHub Desktop.
custom locales only for part of app - I18n.with_locale
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def send_email | |
# I18n.locale => :en | |
I18n.with_locale(:pl) do | |
# I18n.locale => :pl | |
end | |
# I18n.locale => :en | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment