diff options
author | Jamie Winsor <jamie@enmasse.com> | 2011-09-04 14:46:45 -0700 |
---|---|---|
committer | Jamie Winsor <jamie@enmasse.com> | 2011-09-04 14:46:45 -0700 |
commit | 3431b15ef37ca4a685f3d4f6a80f0e069023d105 (patch) | |
tree | 6793e22c5fec5797fd97ca27cb0fcb5c9bda94d1 | |
parent | ec6ed3f951917634496b0b7de3f575dc0c6de96f (diff) | |
download | refinerycms-blog-3431b15ef37ca4a685f3d4f6a80f0e069023d105.tar.gz refinerycms-blog-3431b15ef37ca4a685f3d4f6a80f0e069023d105.tar.bz2 refinerycms-blog-3431b15ef37ca4a685f3d4f6a80f0e069023d105.zip |
fix localization string for submit button on comment
-rw-r--r-- | app/views/refinery/blog/posts/_comments.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/refinery/blog/posts/_comments.html.erb b/app/views/refinery/blog/posts/_comments.html.erb index b177389..9bc0a13 100644 --- a/app/views/refinery/blog/posts/_comments.html.erb +++ b/app/views/refinery/blog/posts/_comments.html.erb @@ -34,7 +34,7 @@ <%= f.text_area :message, :rows => 6 %> </div> <div class='field form-actions'> - <%= f.submit t('.submit') %> + <%= f.submit t('submit', :scope => 'refinery.blog.posts.show') %> </div> <% end %> </aside> |