diff --git a/app/views/personal_honors/get_fields_for_index.html.erb b/app/views/personal_honors/get_fields_for_index.html.erb
index 03afedc..1efddb3 100644
--- a/app/views/personal_honors/get_fields_for_index.html.erb
+++ b/app/views/personal_honors/get_fields_for_index.html.erb
@@ -4,11 +4,11 @@
<% if @page.custom_array_field.blank? %>
<% @default_fields_to_show.each do |fs| %>
- - <%= t("personal.honor.#{fs}") %>
+ - <%= fs == "authors" ? t("users.name") : t("personal_honor.#{fs}") %>
<% end %>
<% else %>
<% @page.custom_array_field.each do |fs| %>
- - <%= t("personal.honor.#{fs}") %>
+ - <%= fs == "authors" ? t("users.name") : t("personal_honor.#{fs}") %>
<% end %>
<% end %>