Created
June 30, 2010 17:48
-
-
Save mitio/458992 to your computer and use it in GitHub Desktop.
I18n.with_locale(:en) { do_stuff } # and others...
This file contains hidden or 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
module I18n | |
def self.with_locale(locale) | |
old_locale, result = I18n.locale, nil | |
I18n.locale = locale | |
result = yield | |
I18n.locale = old_locale | |
result | |
end | |
def self.each_locale | |
I18n.load_path.locales.each do |locale| | |
yield locale | |
end | |
end | |
def self.for_all_locales | |
I18n.each_locale do |locale| | |
I18n.with_locale(locale) { yield } | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey, you should use ensure in case exception is raised in the block.