Translate value for 'familyFriendly'

このコミットが含まれているのは:
Omar Roth 2019-04-28 14:56:06 -05:00
コミット ef309bd8d0
2個のファイルの変更10行の追加1行の削除

ファイルの表示

@ -33,3 +33,12 @@ def translate(locale : Hash(String, JSON::Any) | Nil, translation : String, text
return translation
end
def translate_bool(locale : Hash(String, JSON::Any) | Nil, translation : Bool)
case translation
when true
return translate(locale, "Yes")
when false
return translate(locale, "No")
end
end

ファイルの表示

@ -106,7 +106,7 @@
<% if !video.license.empty? %>
<p id="License"><%= translate(locale, "License: ") %><%= video.license %></p>
<% end %>
<p id="FamilyFriendly"><%= translate(locale, "Family friendly? ") %><%= video.is_family_friendly %></p>
<p id="FamilyFriendly"><%= translate(locale, "Family friendly? ") %><%= translate_bool(locale, video.is_family_friendly) %></p>
<p id="Wilson"><%= translate(locale, "Wilson score: ") %><%= video.wilson_score.round(4) %></p>
<p id="Rating"><%= translate(locale, "Rating: ") %><%= rating.round(4) %> / 5</p>
<p id="Engagement"><%= translate(locale, "Engagement: ") %><%= engagement.round(2) %>%</p>