diff --git a/app/views/registrant/contacts/show/_address.html.erb b/app/views/registrant/contacts/show/_address.html.erb
index 5804f89e9..c9bc80150 100644
--- a/app/views/registrant/contacts/show/_address.html.erb
+++ b/app/views/registrant/contacts/show/_address.html.erb
@@ -1,34 +1,30 @@
- <%= t(:address) %>
+ <%= t '.header' %>
<% if @contact.org_name.present? %>
- -
- <%= t(:org_name) %>
-
- -
- <%= @contact.org_name %>
-
+ - <%= Contact.human_attribute_name :org_name %>
+ - <%= @contact.org_name %>
<% end %>
- - <%= t(:street) %>
+ - <%= Contact.human_attribute_name :street %>
- <%= @contact.street %>
- - <%= t(:city) %>
+ - <%= Contact.human_attribute_name :city %>
- <%= @contact.city %>
- - <%= t(:zip) %>
+ - <%= Contact.human_attribute_name :zip %>
- <%= @contact.zip %>
- - <%= t(:state) %>
+ - <%= Contact.human_attribute_name :state %>
- <%= @contact.state %>
- - <%= t(:country) %>
+ - <%= Contact.human_attribute_name :country %>
- <%= @contact.country %>
diff --git a/app/views/registrant/contacts/show/_domains.html.erb b/app/views/registrant/contacts/show/_domains.html.erb
index ce1cc271d..dbdb7d0fd 100644
--- a/app/views/registrant/contacts/show/_domains.html.erb
+++ b/app/views/registrant/contacts/show/_domains.html.erb
@@ -4,7 +4,7 @@