diff options
author | David Jones <dgjones@gmail.com> | 2011-05-31 14:57:05 +1200 |
---|---|---|
committer | David Jones <dgjones@gmail.com> | 2011-05-31 14:57:05 +1200 |
commit | ee47505833ff4a6f28932ecdcb2ec35d8f31458f (patch) | |
tree | e7bba3dac92abbce0a9032a557c6931f819c1b13 /app | |
parent | f0e4b6c8c144bf30f2d57885371a16b66302e9e7 (diff) | |
download | refinerycms-blog-ee47505833ff4a6f28932ecdcb2ec35d8f31458f.tar.gz refinerycms-blog-ee47505833ff4a6f28932ecdcb2ec35d8f31458f.tar.bz2 refinerycms-blog-ee47505833ff4a6f28932ecdcb2ec35d8f31458f.zip |
fix locale key. 'i18n' was showing up in the blog index output
Diffstat (limited to 'app')
-rw-r--r-- | app/views/blog/shared/_post.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/blog/shared/_post.html.erb b/app/views/blog/shared/_post.html.erb index 05c6af2..662d91a 100644 --- a/app/views/blog/shared/_post.html.erb +++ b/app/views/blog/shared/_post.html.erb @@ -5,7 +5,7 @@ <details> <time datetime="<%=l post.published_at.to_date, :format => :default %>" class='posted_at'> <%= t('blog.shared.posts.created_at', :when => l(post.published_at.to_date, :format => :short)) %> - </time><%= "#{t('blog.shared.posts.by')} #{post.author.username}" if post.author.present? %>. + </time><%= "#{t('blog.posts.show.by')} #{post.author.username}" if post.author.present? %>. <% if (categories = post.categories).any? %> <aside class='filed_in'> <%= t('filed_in', :scope => 'blog.posts.show') %> |