diff options
author | Uģis Ozols <ugis.ozolss@gmail.com> | 2010-12-03 13:47:32 +0200 |
---|---|---|
committer | Uģis Ozols <ugis.ozolss@gmail.com> | 2010-12-03 13:47:32 +0200 |
commit | a914c2721e85802a7c95fdc74a4a45d0d1248599 (patch) | |
tree | bd68a5b778bac12a5ed80bf1dbdb51da95e2c5cf /app | |
parent | 329f39a37d1316ca818f742b5407f5d6dc4ae258 (diff) | |
download | refinerycms-blog-a914c2721e85802a7c95fdc74a4a45d0d1248599.tar.gz refinerycms-blog-a914c2721e85802a7c95fdc74a4a45d0d1248599.tar.bz2 refinerycms-blog-a914c2721e85802a7c95fdc74a4a45d0d1248599.zip |
Fix translation path.
Diffstat (limited to 'app')
-rw-r--r-- | app/views/blog/posts/_post.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/blog/posts/_post.html.erb b/app/views/blog/posts/_post.html.erb index fc58af6..d9535e9 100644 --- a/app/views/blog/posts/_post.html.erb +++ b/app/views/blog/posts/_post.html.erb @@ -12,7 +12,7 @@ </time> <% if (categories = @blog_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 %> |