]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/application.rb
Actually set the locale from the users browser request, rather than just parsing it.
[rails.git] / app / controllers / application.rb
index 6c6ffacb25396f80113b60e68a6c38a3477292a7..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
@@ -113,8 +117,7 @@ class ApplicationController < ActionController::Base
       ex.record.errors.each { |attr,msg| message << "#{attr}: #{msg} (#{ex.record[attr].inspect})" }
       report_error message, :bad_request
     rescue OSM::APIError => ex
-      render_opts = ex.render_opts
-      report_error render_opts[:text], render_opts[:status]
+      report_error ex.message, ex.status
     rescue Exception => ex
       report_error "#{ex.class}: #{ex.message}", :internal_server_error
     end
@@ -135,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