Use underscore versions of model names for translation keys.

This commit is contained in:
Andy Allan 2018-03-14 12:12:24 +08:00
parent 0737c4f169
commit 36970bcf50
4 changed files with 8 additions and 8 deletions

View file

@ -25,7 +25,7 @@
<% Report.categories_for(@report.issue.reportable).each do |c| %>
<li>
<%= radio_button :report, :category, c %>
<%= label_tag "report_category_#{c}", t("reports.categories.#{@report.issue.reportable.class.name}.#{c}") %> <br/>
<%= label_tag "report_category_#{c}", t("reports.categories.#{@report.issue.reportable.class.name.underscore}.#{c}") %> <br/>
</li>
<% end %>
</ul>

View file

@ -1040,23 +1040,23 @@ en:
new:
title_html: "Report %{link}"
categories:
DiaryEntry:
diary_entry:
spam: This Diary Entry is/contains spam
offensive: This Diary Entry is obscene/offensive
threat: This Diary Entry contains a threat
other: Other
DiaryComment:
diary_comment:
spam: This Diary Comment is/contains spam
offensive: This Diary Comment is obscene/offensive
threat: This Diary Comment contains a threat
other: Other
User:
user:
spam: This User profile is/contains spam
offensive: This User profile is obscene/offensive
threat: This User profile contains a threat
vandal: This User is a vandal
other: Other
Note:
note:
spam: This note is spam
vandalism: This note is vandalism
personal: This note contains personal data

View file

@ -18,7 +18,7 @@ class ReportAnonymousNoteTest < ApplicationSystemTestCase
assert page.has_content? "Report"
assert page.has_content? I18n.t("issues.new.disclaimer.intro")
choose I18n.t("reports.categories.Note.spam")
choose I18n.t("reports.categories.note.spam")
fill_in "report_details", :with => "This is spam"
click_on "Create Report"

View file

@ -22,7 +22,7 @@ class ReportDiaryEntryTest < ApplicationSystemTestCase
assert page.has_content? "Report"
assert page.has_content? I18n.t("issues.new.disclaimer.intro")
choose I18n.t("reports.categories.DiaryEntry.spam")
choose I18n.t("reports.categories.diary_entry.spam")
fill_in "report_details", :with => "This is advertising"
click_on "Create Report"
@ -41,7 +41,7 @@ class ReportDiaryEntryTest < ApplicationSystemTestCase
assert page.has_content? "Report"
assert page.has_content? I18n.t("issues.new.disclaimer.intro")
choose I18n.t("reports.categories.DiaryEntry.spam")
choose I18n.t("reports.categories.diary_entry.spam")
fill_in "report_details", :with => "This is advertising"
click_on "Create Report"