From 36c5d7c5eecead3d511eaf633926997170b7d30b Mon Sep 17 00:00:00 2001 From: binarygit Date: Sat, 9 Dec 2023 16:55:20 +0545 Subject: [PATCH] Change displayed message --- app/components/ship_order_component.html.haml | 2 +- config/locales/en.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/components/ship_order_component.html.haml b/app/components/ship_order_component.html.haml index 47dbb70d8c..1fea356be1 100644 --- a/app/components/ship_order_component.html.haml +++ b/app/components/ship_order_component.html.haml @@ -1,6 +1,6 @@ = render ConfirmModalComponent.new(id: "ship_order", confirm_reflexes: "click->Admin::OrdersReflex#ship", controller: "orders", reflex: "Admin::Orders#ship") do %div{class: "margin-bottom-30"} - %p= t('spree.admin.orders.shipment.mark_as_shipped_message') + %p= t('spree.admin.orders.shipment.mark_as_shipped_message').html_safe %div{class: "margin-bottom-30"} = hidden_field_tag :id, @order.id = check_box_tag :send_shipment_email, "1", true diff --git a/config/locales/en.yml b/config/locales/en.yml index 9907fd8b7b..dc3b97434b 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -4178,8 +4178,8 @@ See the %{link} to find out more about %{sitename}'s features and to start using cannot_add_item_to_canceled_order: "Cannot add item to canceled order" include_out_of_stock_variants: "Include variants with no available stock" shipment: - mark_as_shipped_message: "This will mark the order as Shipped" - mark_as_shipped_label_message: "Send email confirmation to customer" + mark_as_shipped_message: "This will mark the order as Shipped.
Are you sure you want to proceed?" + mark_as_shipped_label_message: "Send a shipment/pick up notification email to the customer." index: listing_orders: "Listing Orders" new_order: "New Order"