# Returns an array of languages names and code sorted by names, example:
# [["Deutsch", "de"], ["English", "en"] ...]
#
- # The result is cached to prevent from loading all translations files.
- def languages_options
- ActionController::Base.cache_store.fetch "i18n/languages_options" do
- valid_languages.map {|lang| [ll(lang.to_s, :general_lang_name), lang.to_s]}.sort {|x,y| x.first <=> y.first }
- end
+ # The result is cached to prevent from loading all translations files
+ # unless :cache => false option is given
+ def languages_options(options={})
+ if options[:cache] == false
+ valid_languages.
+ select {|locale| ::I18n.exists?(:general_lang_name, locale)}.
+ map {|lang| [ll(lang.to_s, :general_lang_name), lang.to_s]}.
+ sort {|x,y| x.first <=> y.first }
+ else
+ ActionController::Base.cache_store.fetch "i18n/languages_options" do
+ languages_options :cache => false
+ end
+ end
end
def find_language(lang)
assert_include [ja, "ja"], options
end
+ def test_languages_options_should_ignore_locales_without_general_lang_name_key
+ stubs(:valid_languages).returns([:en, :foo])
+ assert_equal [["English", "en"]], languages_options(:cache => false)
+ end
+
def test_locales_validness
lang_files_count = Dir["#{Rails.root}/config/locales/*.yml"].size
assert_equal lang_files_count, valid_languages.size