From: Tom Hughes Date: Tue, 24 Sep 2013 08:59:04 +0000 (+0100) Subject: Double quote strings that need to be interpolated X-Git-Tag: live~5687 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/a8d8e750dafd173d5f4f6c495fa932e099a6a58c Double quote strings that need to be interpolated --- diff --git a/app/views/notifier/note_comment_notification.text.erb b/app/views/notifier/note_comment_notification.text.erb index 8d73b9124..c8a967450 100644 --- a/app/views/notifier/note_comment_notification.text.erb +++ b/app/views/notifier/note_comment_notification.text.erb @@ -1,9 +1,9 @@ <%= t 'notifier.note_comment_notification.greeting' %> <% if @owner %> -<%= t 'notifier.note_comment_notification.#{@event}.your_note', :commenter => @commenter, :place => @place %> +<%= t "notifier.note_comment_notification.#{@event}.your_note", :commenter => @commenter, :place => @place %> <% else %> -<%= t 'notifier.note_comment_notification.#{@event}.commented_note', :commenter => @commenter, :place => @place %> +<%= t "notifier.note_comment_notification.#{@event}.commented_note", :commenter => @commenter, :place => @place %> <% end %> ==