From 75390d2a4867c41a336dfeac67b021be371f6b77 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Bellet Date: Wed, 25 Aug 2021 15:29:24 +0200 Subject: [PATCH] Specify right i18n key --- app/views/split_checkout/_summary.html.haml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/views/split_checkout/_summary.html.haml b/app/views/split_checkout/_summary.html.haml index 8be1ba1599..db84184d30 100644 --- a/app/views/split_checkout/_summary.html.haml +++ b/app/views/split_checkout/_summary.html.haml @@ -32,32 +32,32 @@ %div.summary %span.summary-label - = t("split_checkout.step1.billing_address.address1.label") + = t("split_checkout.step1.address.address1.label") %span.summary-value = @order.bill_address.address1 - unless @order.bill_address.address2.blank? %div.summary %span.summary-label - = t("split_checkout.step1.billing_address.address2.label") + = t("split_checkout.step1.address.address2.label") %span.summary-value = @order.bill_address.address2 %div.summary %span.summary-label - = t("split_checkout.step1.billing_address.city.label") + = t("split_checkout.step1.address.city.label") %span.summary-value = @order.bill_address.city %div.summary %span.summary-label - = t("split_checkout.step1.billing_address.state_id.label") + = t("split_checkout.step1.address.state_id.label") %span.summary-value = @order.bill_address.state %div.summary %span.summary-label - = t("split_checkout.step1.billing_address.zipcode.label") + = t("split_checkout.step1.address.zipcode.label") %span.summary-value = @order.bill_address.zipcode