diff --git a/backend/app/views/spree/admin/reimbursement_types/index.html.erb b/backend/app/views/spree/admin/reimbursement_types/index.html.erb index c0fe9d1bc8a..527e552d201 100644 --- a/backend/app/views/spree/admin/reimbursement_types/index.html.erb +++ b/backend/app/views/spree/admin/reimbursement_types/index.html.erb @@ -1,14 +1,14 @@ <%= render partial: 'spree/admin/shared/configuration_menu' %> <% content_for :page_title do %> - <%= Spree.t(:reimbursement_types) %> + <%= Spree::ReimbursementType.model_name.human(count: :other) %> <% end %> - - + + diff --git a/core/config/locales/en.yml b/core/config/locales/en.yml index d1c39e6d9f1..939f81ae962 100644 --- a/core/config/locales/en.yml +++ b/core/config/locales/en.yml @@ -160,6 +160,9 @@ en: active: Active name: Name code: Code + spree/reimbursement_type: + name: Name + type: Type spree/return_authorization: amount: Amount spree/return_reason:
<%= Spree.t(:name) %><%= Spree.t(:type) %><%= Spree::ReimbursementType.human_attribute_name(:name) %><%= Spree::ReimbursementType.human_attribute_name(:type) %>