From 186329ef04ad70df3f05dade00cc1f2b00f5ce35 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Thu, 17 Oct 2019 11:22:17 +0000 Subject: code cleanup: rubocop: fix Layout/ElseAlignment in lib/redmine/i18n.rb git-svn-id: http://svn.redmine.org/redmine/trunk@18704 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- lib/redmine/i18n.rb | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) (limited to 'lib/redmine') diff --git a/lib/redmine/i18n.rb b/lib/redmine/i18n.rb index 5621be68c..8343bccb0 100644 --- a/lib/redmine/i18n.rb +++ b/lib/redmine/i18n.rb @@ -117,17 +117,18 @@ module Redmine # The result is cached to prevent from loading all translations files # unless :cache => false option is given def languages_options(options={}) - options = if options[:cache] == false - available_locales = ::I18n.backend.available_locales - valid_languages. - select {|locale| available_locales.include?(locale)}. - map {|lang| [ll(lang.to_s, :general_lang_name), lang.to_s]}. - sort_by(&:first) - else - ActionController::Base.cache_store.fetch "i18n/languages_options/#{Redmine::VERSION}" do - languages_options :cache => false + options = + if options[:cache] == false + available_locales = ::I18n.backend.available_locales + valid_languages. + select {|locale| available_locales.include?(locale)}. + map {|lang| [ll(lang.to_s, :general_lang_name), lang.to_s]}. + sort_by(&:first) + else + ActionController::Base.cache_store.fetch "i18n/languages_options/#{Redmine::VERSION}" do + languages_options :cache => false + end end - end options.map {|name, lang| [name.force_encoding("UTF-8"), lang.force_encoding("UTF-8")]} end -- cgit v1.2.3