diff --git a/app/views/admin/site_customization/content_blocks/_form.html.erb b/app/views/admin/site_customization/content_blocks/_form.html.erb index ca89b8781..28a92fb12 100644 --- a/app/views/admin/site_customization/content_blocks/_form.html.erb +++ b/app/views/admin/site_customization/content_blocks/_form.html.erb @@ -17,7 +17,7 @@
<%= f.label :name %> - <%= f.select :name, SiteCustomization::ContentBlock::VALID_BLOCKS, label: false %> + <%= f.select :name, SiteCustomization::ContentBlock::VALID_BLOCKS.map { |key| [t("admin.site_customization.content_blocks.content_block.names.#{key}", key] }, label: false %>
<%= f.label :locale %> diff --git a/config/locales/en/admin.yml b/config/locales/en/admin.yml index 259ea7c44..12652f76c 100644 --- a/config/locales/en/admin.yml +++ b/config/locales/en/admin.yml @@ -1276,6 +1276,11 @@ en: content_block: body: Body name: Name + names: + top_links: Top Links + footer: Footer + subnavigation_left: Main Navigation Left + subnavigation_right: Main Navigation Right images: index: title: Custom images