Guest User

Untitled

a guest
Apr 19th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. accepted = [ 'fr-fr', 'en-en' ]
  2. al = request.env['HTTP_ACCEPT_LANGUAGE']
  3. lang = 'en-en'
  4.  
  5. while al.length > 0
  6. al[/^([^;]+);?/]
  7. lang = $1 if accepted.include? $1
  8. al[/#{$&}/] = ''
  9. end
Add Comment
Please, Sign In to add comment