diff --git a/backend/app/views/spree/admin/stores/index.html.erb b/backend/app/views/spree/admin/stores/index.html.erb index f5275a414a4..cb7b41a39b3 100644 --- a/backend/app/views/spree/admin/stores/index.html.erb +++ b/backend/app/views/spree/admin/stores/index.html.erb @@ -15,8 +15,8 @@
Name | -Url | +<%= Spree::Store.human_attribute_name(:name) %> | +<%= Spree::Store.human_attribute_name(:url) %> | <%= store.name %> <% if store.default? %> - default + <%= Spree::Store.human_attribute_name(:default) %> <% end %> | <%= store.url %> | diff --git a/core/config/locales/en.yml b/core/config/locales/en.yml index f2660484f68..3c448b9e486 100644 --- a/core/config/locales/en.yml +++ b/core/config/locales/en.yml @@ -299,6 +299,7 @@ en: name: Name spree/store: url: Site URL + default: Default meta_description: Meta Description meta_keywords: Meta Keywords seo_title: Seo Title
---|