|
|
@ -3,8 +3,8 @@ def load_locale(name)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
def translate(locale : Hash(String, JSON::Any) | Nil, translation : String, text : String | Nil = nil)
|
|
|
|
def translate(locale : Hash(String, JSON::Any) | Nil, translation : String, text : String | Nil = nil)
|
|
|
|
# if !locale[translation]?
|
|
|
|
# if locale && !locale[translation]?
|
|
|
|
# puts "Could not find translation for #{translation}"
|
|
|
|
# puts "Could not find translation for #{translation.dump}"
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
|
|
|
|
|
|
|
|
if locale && locale[translation]? && !locale[translation].as_s.empty?
|
|
|
|
if locale && locale[translation]? && !locale[translation].as_s.empty?
|
|
|
|