File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
app/code/Magento/Checkout/view/frontend/web/js/view Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,8 @@ define(
15
15
'Magento_Checkout/js/model/payment-service' ,
16
16
'Magento_Checkout/js/model/payment/method-converter' ,
17
17
'Magento_Checkout/js/action/get-payment-information' ,
18
- 'Magento_Checkout/js/model/checkout-data-resolver'
18
+ 'Magento_Checkout/js/model/checkout-data-resolver' ,
19
+ 'mage/translate'
19
20
] ,
20
21
function (
21
22
$ ,
@@ -27,7 +28,8 @@ define(
27
28
paymentService ,
28
29
methodConverter ,
29
30
getPaymentInformation ,
30
- checkoutDataResolver
31
+ checkoutDataResolver ,
32
+ $t
31
33
) {
32
34
'use strict' ;
33
35
@@ -51,7 +53,7 @@ define(
51
53
stepNavigator . registerStep (
52
54
'payment' ,
53
55
null ,
54
- 'Review & Payments' ,
56
+ $t ( 'Review & Payments' ) ,
55
57
this . isVisible ,
56
58
_ . bind ( this . navigate , this ) ,
57
59
20
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ define(
75
75
stepNavigator . registerStep (
76
76
'shipping' ,
77
77
'' ,
78
- 'Shipping' ,
78
+ $t ( 'Shipping' ) ,
79
79
this . visible , _ . bind ( this . navigate , this ) ,
80
80
10
81
81
) ;
You can’t perform that action at this time.
0 commit comments