diff options
author | Joe Sak <joe@joesak.com> | 2011-06-30 10:32:54 -0700 |
---|---|---|
committer | Joe Sak <joe@joesak.com> | 2011-06-30 10:32:54 -0700 |
commit | f251f7d0169ca46926272557a706060e9f815624 (patch) | |
tree | 6d2f286e215ec952618125aee7828d67fef40fc5 /app/views | |
parent | 7fa3b305098080c7478a1c176efa8edbe9aa7eda (diff) | |
parent | 0825e0af44bf28d758eb77a185d9ff6becbf6798 (diff) | |
download | refinerycms-blog-f251f7d0169ca46926272557a706060e9f815624.tar.gz refinerycms-blog-f251f7d0169ca46926272557a706060e9f815624.tar.bz2 refinerycms-blog-f251f7d0169ca46926272557a706060e9f815624.zip |
Merge pull request #88 from mirosr/master
Fixed some embeded strings in English in admin/blog/posts/_form partial (Issue #86)
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/admin/blog/posts/_form.html.erb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/admin/blog/posts/_form.html.erb b/app/views/admin/blog/posts/_form.html.erb index fcec218..13dbcf3 100644 --- a/app/views/admin/blog/posts/_form.html.erb +++ b/app/views/admin/blog/posts/_form.html.erb @@ -14,10 +14,10 @@ <div id='page-tabs' class='clearfix ui-tabs ui-widget ui-widget-content ui-corner-all'> <ul id='page_parts'> <li class='ui-state-default ui-state-active'> - <%= link_to "Body", "#page_part_body" %> + <%= link_to t('activerecord.attributes.blog_post.body'), "#page_part_body" %> </li> <li class='ui-state-default'> - <%= link_to "Teaser", "#page_part_teaser" %> + <%= link_to t('activerecord.attributes.blog_post.teaser'), "#page_part_teaser" %> </li> <% Refinery::Blog.tabs.each_with_index do |tab, tab_index| %> <li class='ui-state-default' id="custom_<%= tab.name %>_tab"> @@ -49,7 +49,7 @@ </div> <div class='field'> - <%= f.label :tag_list, "Tags" -%> + <%= f.label :tag_list, t('blog.shared.tags.title') -%> <%= f.text_field :tag_list, :class => 'larger' -%> </div> |