diff --git a/app/views/posts/partials/show/_information.html.erb b/app/views/posts/partials/show/_information.html.erb
index 3128c82a7..31eaf3007 100644
--- a/app/views/posts/partials/show/_information.html.erb
+++ b/app/views/posts/partials/show/_information.html.erb
@@ -16,8 +16,8 @@
Score: <%= post.score %> <% if CurrentUser.is_gold? %>(vote <%= link_to "up", post_votes_path(:post_id => post.id, :score => "up"), :remote => true, :method => :post %>/<%= link_to "down", post_votes_path(:post_id => post.id, :score => "down"), :remote => true, :method => :post %><%= link_to "unvote", unvote_post_path(post), :remote => true, :method => :put, :id => "unvote-link-for-post-#{post.id}", :class => "unvote-post-link" %>)<% end %>
Favorites: <%= post.fav_count %>
<% if CurrentUser.is_gold? %>
- <%= link_to "»".html_safe, "#", :id => "show-favlist-link" %>
- <%= link_to "«".html_safe, "#", :id => "hide-favlist-link", :style => "display: none;" %>
+ <%= link_to "Show »".html_safe, "#", :id => "show-favlist-link" %>
+ <%= link_to "« Hide".html_safe, "#", :id => "hide-favlist-link", :style => "display: none;" %>
<%= post_favlist(post) %>
<% end %>