<% 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>
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
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"
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"
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"