]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/application.rb
Some more of the user account translations. Custom generate method for languages...
[rails.git] / app / controllers / application.rb
index 64eb2180f6d7f0807b1a4aef5987110185a98f0d..3d16ffa6954d22db95c3f2bad0d00c70cdceef33 100644 (file)
@@ -100,6 +100,10 @@ class ApplicationController < ActionController::Base
     response.headers['Error'] = message
     render :text => message, :status => status
   end
+  
+  def set_locale
+    I18n.locale = request.compatible_language_from(I18n.available_locales)
+  end
 
   def api_call_handle_error
     begin
@@ -134,7 +138,6 @@ class ApplicationController < ActionController::Base
   end
 
 private 
-
   # extract authorisation credentials from headers, returns user = nil if none
   def get_auth_data 
     if request.env.has_key? 'X-HTTP_AUTHORIZATION'          # where mod_rewrite might have put it