]> git.openstreetmap.org Git - rails.git/commitdiff
Use normal fallbacks to handle the no/nb confusion
authorTom Hughes <tom@compton.nu>
Sun, 18 Dec 2011 16:51:14 +0000 (16:51 +0000)
committerTom Hughes <tom@compton.nu>
Sun, 18 Dec 2011 16:51:14 +0000 (16:51 +0000)
This requires (for now) a monkey patch to the i18n fallback code, which
has been offered upstream as https://github.com/svenfuchs/i18n/pull/130.

config/initializers/i18n.rb

index 906d59c2d9402f33907fe5da7c78690f04aa9206..6601fb15a142580151025deb825a9a74198548e5 100644 (file)
@@ -1,21 +1,5 @@
 module I18n
   module Backend
 module I18n
   module Backend
-    class Simple
-      module Implementation
-        protected
-        alias_method :old_init_translations, :init_translations
-      
-        def init_translations
-          old_init_translations
-
-          store_translations(:nb, translations[:no])
-          translations[:no] = translations[:nb]
-
-          @skip_syntax_deprecation = true
-        end
-      end
-    end
-
     module Fallbacks
       def find_first_string_or_lambda_default(defaults)
         defaults.each_with_index { |default, ix| return ix if default && !default.is_a?(Symbol) }
     module Fallbacks
       def find_first_string_or_lambda_default(defaults)
         defaults.each_with_index { |default, ix| return ix if default && !default.is_a?(Symbol) }
@@ -32,6 +16,20 @@ module I18n
       end
     end
   end
       end
     end
   end
+
+  module Locale
+    class Fallbacks
+      def compute(tags, include_defaults = true, exclude = [])
+        result = Array(tags).collect do |tag|
+          tags = I18n::Locale::Tag.tag(tag).self_and_parents.map! { |t| t.to_sym } - exclude
+          tags.each { |_tag| tags += compute(@map[_tag], false, exclude + tags) if @map[_tag] }
+          tags
+        end.flatten
+        result.push(*defaults) if include_defaults
+        result.uniq.compact
+      end
+    end
+  end
 end
 
 I18n::Backend::Simple.include(I18n::Backend::Pluralization)
 end
 
 I18n::Backend::Simple.include(I18n::Backend::Pluralization)
@@ -40,6 +38,9 @@ I18n.load_path << "#{Rails.root}/config/pluralizers.rb"
 
 I18n::Backend::Simple.include(I18n::Backend::Fallbacks)
 
 
 I18n::Backend::Simple.include(I18n::Backend::Fallbacks)
 
+I18n.fallbacks.map("nb" => "no")
+I18n.fallbacks.map("no" => "nb")
+
 Rails.configuration.after_initialize do
   I18n.reload!
 end
 Rails.configuration.after_initialize do
   I18n.reload!
 end