]> git.openstreetmap.org Git - rails.git/commitdiff
Don't use the (unset) value of I18n.locale to try and select a language
authorTom Hughes <tom@compton.nu>
Thu, 16 Jul 2009 20:26:18 +0000 (20:26 +0000)
committerTom Hughes <tom@compton.nu>
Thu, 16 Jul 2009 20:26:18 +0000 (20:26 +0000)
as the one we want is in lang so just use that. Fixes #2071.

app/controllers/amf_controller.rb

index e29ccf0f4dd4bdd4fc076e91475e46a6daf44d99..2aee84d0cf0bf475735d8564bf18ddfc43324c9f 100644 (file)
@@ -223,26 +223,17 @@ class AmfController < ApplicationController
     lang = request.compatible_language_from(getlocales)
 
     begin
-      # first, try the user setting
-      localised = YAML::load(File.open("#{RAILS_ROOT}/config/potlatch/localised/#{I18n.locale}/localised.yaml"))
+      # if not, try the browser language
+      localised = YAML::load(File.open("#{RAILS_ROOT}/config/potlatch/localised/#{lang}/localised.yaml"))
     rescue
-      begin
-        # if not, try the browser language
-        localised = YAML::load(File.open("#{RAILS_ROOT}/config/potlatch/localised/#{lang}/localised.yaml"))
-      rescue
-        # fall back to hardcoded English text
-        localised = ""
-      end
+      # fall back to hardcoded English text
+      localised = ""
     end
 
     begin
-      help = File.read("#{RAILS_ROOT}/config/potlatch/localised/#{I18n.locale}/help.html")
+      help = File.read("#{RAILS_ROOT}/config/potlatch/localised/#{lang}/help.html")
     rescue
-      begin
-        help = File.read("#{RAILS_ROOT}/config/potlatch/localised/#{lang}/help.html")
-      rescue
-        help = File.read("#{RAILS_ROOT}/config/potlatch/localised/en/help.html")
-      end
+      help = File.read("#{RAILS_ROOT}/config/potlatch/localised/en/help.html")
     end
     return POTLATCH_PRESETS+[localised,help]
   end