diff options
author | djones <dgjones@gmail.com> | 2010-09-14 14:43:16 +1200 |
---|---|---|
committer | djones <dgjones@gmail.com> | 2010-09-14 14:43:16 +1200 |
commit | d94c4220dca9d82b57152118dee668556f05917b (patch) | |
tree | 61a83057aa95f2e7d6193353e21c080c24c9f2e3 | |
parent | b289799e868ae2b8a74ce3786333117a98ae910a (diff) | |
download | refinerycms-blog-d94c4220dca9d82b57152118dee668556f05917b.tar.gz refinerycms-blog-d94c4220dca9d82b57152118dee668556f05917b.tar.bz2 refinerycms-blog-d94c4220dca9d82b57152118dee668556f05917b.zip |
fix translations key on comments
-rw-r--r-- | app/views/blog/posts/_comment.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/blog/posts/_comment.html.erb b/app/views/blog/posts/_comment.html.erb index 559757b..7b22f3c 100644 --- a/app/views/blog/posts/_comment.html.erb +++ b/app/views/blog/posts/_comment.html.erb @@ -4,6 +4,6 @@ </p> </div> <p class='blog_comment_author'> - <%= t('.by', :who => comment.name) %> - <%= t('.time_ago', :time => time_ago_in_words(comment.created_at)) %> + <%= t('blog.posts.comments.by', :who => comment.name) %>, + <%= t('blog.posts.comments.time_ago', :time => time_ago_in_words(comment.created_at)) %> </p>
\ No newline at end of file |