]> source.dussan.org Git - redmine.git/commitdiff
remove spaces inside {} of lib/redmine/i18n.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sun, 22 Nov 2020 13:43:51 +0000 (13:43 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sun, 22 Nov 2020 13:43:51 +0000 (13:43 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20481 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/redmine/i18n.rb

index ef6f04f3f568e2a1cf7cf3465e0d58f14f5ae00f..8599a09f47c7626e30821ac067935c2e2d05ad01 100644 (file)
@@ -56,7 +56,7 @@ module Redmine
 
     def ll(lang, str, arg=nil)
       options = arg.is_a?(Hash) ? arg : {:value => arg}
-      locale = lang.to_s.gsub(%r{(.+)\-(.+)$}) { "#{$1}-#{$2.upcase}" }
+      locale = lang.to_s.gsub(%r{(.+)\-(.+)$}) {"#{$1}-#{$2.upcase}"}
       ::I18n.t(str.to_s, **options, locale: locale)
     end