diff options
author | J. Edward Dewyea <jed@commuterdesign.com> | 2010-11-21 19:58:16 -0500 |
---|---|---|
committer | J. Edward Dewyea <jed@commuterdesign.com> | 2010-11-21 19:58:16 -0500 |
commit | 7d9361de63055dd83a1e90f425e0f3b021488cd2 (patch) | |
tree | c22bee8f2792dccefc6eb2a84a2d3ddf8e79dd35 /app/views/blog/shared/_post.html.erb | |
parent | b663684114f5c56122ef4f74474d094d5399fd13 (diff) | |
download | refinerycms-blog-7d9361de63055dd83a1e90f425e0f3b021488cd2.tar.gz refinerycms-blog-7d9361de63055dd83a1e90f425e0f3b021488cd2.tar.bz2 refinerycms-blog-7d9361de63055dd83a1e90f425e0f3b021488cd2.zip |
find the correct key to translate
Diffstat (limited to 'app/views/blog/shared/_post.html.erb')
-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 1e7830a..2875578 100644 --- a/app/views/blog/shared/_post.html.erb +++ b/app/views/blog/shared/_post.html.erb @@ -8,7 +8,7 @@ </time> <% if (categories = post.categories).any? %> <aside class='filed_in'> - <%= t('.filed_in') %> + <%= t('blog.posts.show.filed_in') %> <% categories.each_with_index do |category, index| %> <%= link_to category.title, blog_category_url(category) -%><%= ',' if index < ((categories.length) - 1) %> <% end %> |