]> git.openstreetmap.org Git - rails.git/blobdiff - app/helpers/issues_helper.rb
Make reportable item titles translatable
[rails.git] / app / helpers / issues_helper.rb
index 3c13c65369e8446d30b09ec0209aaf7fff60348c..cfde880cd522d77326c742ac644cceb44b105f8e 100644 (file)
@@ -19,9 +19,9 @@ module IssuesHelper
     when User
       reportable.display_name
     when DiaryComment
-      "#{reportable.diary_entry.title}, Comment id ##{reportable.id}"
+      I18n.t("issues.helper.reportable_title.diary_comment", :entry_title => reportable.diary_entry.title, :comment_id => reportable.id)
     when Note
-      "Note ##{reportable.id}"
+      I18n.t("issues.helper.reportable_title.note", :note_id => reportable.id)
     end
   end
 end