Skip to content

Instantly share code, notes, and snippets.

@Bahanix
Last active June 2, 2016 12:15
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 Bahanix/13d99048d7a224ecf96e9e0163818cb5 to your computer and use it in GitHub Desktop.
Save Bahanix/13d99048d7a224ecf96e9e0163818cb5 to your computer and use it in GitHub Desktop.
# app/controllers/application_controller.rb
class ApplicationController < ActionController::Base
protect_from_forgery with: :exception
before_action :set_locale
private
def set_locale
if session[:locale]
I18n.locale = session[:locale]
end
end
end
@Bahanix
Copy link
Author

Bahanix commented Apr 29, 2016

À vous de créer le formulaire pour mettre à jour la variable de session session[:locale]. Je l'ai appelé ainsi, mais cela aurait pu tout à faire être session[:ma_langue].

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment