From a8d8e750dafd173d5f4f6c495fa932e099a6a58c Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Tue, 24 Sep 2013 09:59:04 +0100 Subject: [PATCH] Double quote strings that need to be interpolated --- app/views/notifier/note_comment_notification.text.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 %> == -- 2.43.2