Skip to content

Instantly share code, notes, and snippets.

@aaronmcadam
Created January 10, 2014 15:35
Show Gist options
  • Save aaronmcadam/8356486 to your computer and use it in GitHub Desktop.
Save aaronmcadam/8356486 to your computer and use it in GitHub Desktop.
def locale_value
possible_values = [
current_user.try(:language),
params[:locale],
cookies[:locale]
]
possible_values.map!(&:presence).compact!
possible_values.first || I18n.default_locale
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment