diff --git a/app/views/posts/partials/show/_options.html.erb b/app/views/posts/partials/show/_options.html.erb
index 9b99f22ca..d2ece3649 100644
--- a/app/views/posts/partials/show/_options.html.erb
+++ b/app/views/posts/partials/show/_options.html.erb
@@ -1,9 +1,9 @@
<% if CurrentUser.is_member? %>
- - <%= link_to "Add to favorites", favorites_path(:post_id => post.id), :remote => true, :method => :post, :id => "add-to-favorites" %>
- - <%= link_to "Remove from favorites", favorite_path(post), :remote => true, :method => :delete, :id => "remove-from-favorites" %>
- - <%= link_to "Add to pool", "#", :id => "pool" %>
- - <%= link_to "Translate", "#", :id => "translate", :title => "Shortcut is CTRL+N" %>
+ - <%= link_to "Favorite", favorites_path(:post_id => post.id), :remote => true, :method => :post, :id => "add-to-favorites" %>
+ - <%= link_to "Unfavorite", favorite_path(post), :remote => true, :method => :delete, :id => "remove-from-favorites" %>
+ - <%= link_to "Pool", "#", :id => "pool" %>
+ - <%= link_to "Note", "#", :id => "translate", :title => "Shortcut is CTRL+N" %>
- <%= link_to "Find similar", "http://danbooru.iqdb.org/db-search.php?url=http://#{Danbooru.config.hostname}#{post.preview_file_url}" %>
<% unless post.is_status_locked? %>
@@ -35,6 +35,6 @@
<% end %>
<% if CurrentUser.is_admin? %>
- - <%= link_to "Permanent delete", annihilate_moderator_post_post_path(:post_id => post.id), :remote => true, :method => :post, :id => "annihilate", :confirm => "This will permanently delete this post (meaning the file will be deleted). Are you sure you want to delete this post?" %>
+ - <%= link_to "Expunge", annihilate_moderator_post_post_path(:post_id => post.id), :remote => true, :method => :post, :id => "annihilate", :confirm => "This will permanently delete this post (meaning the file will be deleted). Are you sure you want to delete this post?" %>
<% end %>
\ No newline at end of file