From ef4aa488c352274f4788713d435f797983f395d9 Mon Sep 17 00:00:00 2001 From: blainebillings Date: Tue, 4 Feb 2020 09:34:28 -0500 Subject: [PATCH] Moves Create and Cancel References to Actions Namespace --- app/views/spree/admin/shared/_new_resource_links.html.haml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/spree/admin/shared/_new_resource_links.html.haml b/app/views/spree/admin/shared/_new_resource_links.html.haml index 8b774f7ba6..ede33d407d 100644 --- a/app/views/spree/admin/shared/_new_resource_links.html.haml +++ b/app/views/spree/admin/shared/_new_resource_links.html.haml @@ -1,4 +1,4 @@ .form-buttons.filter-actions.actions - = button t(:create), 'icon-ok' + = button t('actions.create'), 'icon-ok' %span.or= t(:or) - = button_link_to t(:cancel), collection_url, icon: 'icon-remove' + = button_link_to t('actions.cancel'), collection_url, icon: 'icon-remove'