Fix the order resend message translation

This commit is contained in:
Arun Kumar Mohan
2020-08-10 21:56:19 -05:00
parent bb9ab57699
commit bf07da6267

View File

@@ -80,7 +80,7 @@ module Spree
def resend
Spree::OrderMailer.confirm_email_for_customer(@order.id, true).deliver
flash[:success] = t(:order_email_resent)
flash[:success] = t('admin.orders.order_email_resent')
respond_with(@order) { |format| format.html { redirect_to :back } }
end