Fix translation lookups in text version of note comment notification

This commit is contained in:
Tom Hughes 2013-09-24 09:52:31 +01:00
parent b756c5fd6e
commit 13597ca259

View file

@ -1,9 +1,9 @@
<%= t 'notifier.note_comment_notification.greeting' %>
<% if @owner %>
<%= t 'notifier.note_comment_notification.your_note', :commenter => @commenter, :place => @place %>
<%= t 'notifier.note_comment_notification.#{@event}.your_note', :commenter => @commenter, :place => @place %>
<% else %>
<%= t 'notifier.note_comment_notification.commented_note', :commenter => @commenter, :place => @place %>
<%= t 'notifier.note_comment_notification.#{@event}.commented_note', :commenter => @commenter, :place => @place %>
<% end %>
==