From: Tom Hughes Date: Thu, 23 Jul 2015 13:23:23 +0000 (+0100) Subject: Fix a missing translation X-Git-Tag: live~4075 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/a34935df9bb03991b3d3c8bb8db7b8fd1433e566?ds=sidebyside Fix a missing translation --- diff --git a/app/views/notes/_note.rss.builder b/app/views/notes/_note.rss.builder index 596b2f3c0..a095b636d 100644 --- a/app/views/notes/_note.rss.builder +++ b/app/views/notes/_note.rss.builder @@ -4,7 +4,7 @@ xml.item do if note.closed? xml.title t('note.rss.closed', :place => location) elsif note.comments.length > 1 - xml.title t('note.rss.comment', :place => location) + xml.title t('note.rss.commented', :place => location) else xml.title t('note.rss.opened', :place => location) end