Use underscore versions of model names for translation keys.
This commit is contained in:
parent
0737c4f169
commit
36970bcf50
4 changed files with 8 additions and 8 deletions
|
@ -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>
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue