Skip to content

Instantly share code, notes, and snippets.

@hannesl
Last active December 23, 2015 06:49
Show Gist options
  • Save hannesl/6596150 to your computer and use it in GitHub Desktop.
Save hannesl/6596150 to your computer and use it in GitHub Desktop.
Use English in Rails admin even though you're using a different default locale for the app.
...
# Use Swedish as default locale.
config.i18n.default_locale = :sv
...
class ApplicationController < ActionController::Base
...
before_filter do|c|
I18n.locale = c.request.path =~ /admin/ ? :en : I18n.default_locale
end
...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment