Skip to content

Instantly share code, notes, and snippets.

@dmitry
Created January 2, 2010 21:09
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 dmitry/267671 to your computer and use it in GitHub Desktop.
Save dmitry/267671 to your computer and use it in GitHub Desktop.
module Rack
class LocaleSetter
def initialize app
@app = app
end
def call env
locale = env["HTTP_HOST"].match(/^[a-z]{2}(?=\.)/)
I18n.locale = locale ? locale.to_s : 'es'
@app.call env
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment