diff options
author | Nic Haynes <nic@nicinabox.com> | 2012-03-22 08:41:38 -0500 |
---|---|---|
committer | Nic Haynes <nic@nicinabox.com> | 2012-03-22 08:41:38 -0500 |
commit | 0c78cd138d06997116bc4d6c54f721a6d28d39b7 (patch) | |
tree | 96dffd647b9df8bb27d272199200b8f057e2826b /app | |
parent | 435763f307284af1e58937dca63b02c650895ae5 (diff) | |
download | refinerycms-blog-0c78cd138d06997116bc4d6c54f721a6d28d39b7.tar.gz refinerycms-blog-0c78cd138d06997116bc4d6c54f721a6d28d39b7.tar.bz2 refinerycms-blog-0c78cd138d06997116bc4d6c54f721a6d28d39b7.zip |
Fix draft translation
Diffstat (limited to 'app')
-rw-r--r-- | app/views/refinery/blog/admin/posts/_post.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/refinery/blog/admin/posts/_post.html.erb b/app/views/refinery/blog/admin/posts/_post.html.erb index e9c9e6c..fea3eb8 100644 --- a/app/views/refinery/blog/admin/posts/_post.html.erb +++ b/app/views/refinery/blog/admin/posts/_post.html.erb @@ -4,7 +4,7 @@ <span class="preview"> <%= " by #{post.author.username}" if post.author.present? %> <% if post.draft? %> - <span class="label notice">Draft</span> + <span class="label notice"><%= t('refinery.blog.admin.posts.post.draft') %></span> <% else %> <%= post.published_at.strftime('%b %d, %Y') %> <% end %> |