Skip to content

Instantly share code, notes, and snippets.

@DAddYE
Created February 19, 2010 17:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DAddYE/308919 to your computer and use it in GitHub Desktop.
Save DAddYE/308919 to your computer and use it in GitHub Desktop.
##
# This extension give to padrino the ability to change
# their locale inspecting.
#
# ==== Usage
#
# class MyApp < Padrino::Application
# register AutoLocale
# set :locales, [:en, :ru, :de] # First locale is the default locale
# end
#
# So when we call an url like: /ru/blog/posts this extension set for you :ru as I18n.locale
#
module AutoLocale
module Helpers
##
# This reload the page changing the I18n.locale
#
def switch_to_lang(lang)
request.path_info.sub(/\/#{I18n.locale}/, "/#{lang}") if options.locales.include?(lang)
end
end # Helpers
def self.registered(app)
app.helpers AutoLocale::Helpers
app.set :locales, [:en]
app.before do
if request.path_info =~ /^\/(#{options.locales.join('|')})\/?/
I18n.locale = $1.to_sym
else
I18n.locale = options.locales.first
end
end
end # self.registered
end # AutoLocale
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment