Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions app/code/Magento/Tax/i18n/en_US.csv
Original file line number Diff line number Diff line change
Expand Up @@ -178,3 +178,4 @@ Rate,Rate
"Your credit card will be charged for","Your credit card will be charged for"
"An error occurred while loading tax rates.","An error occurred while loading tax rates."
"You will be charged for","You will be charged for"
"Not yet calculated", "Not yet calculated"
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ define([
'ko',
'Magento_Checkout/js/view/summary/abstract-total',
'Magento_Checkout/js/model/quote',
'Magento_Checkout/js/model/totals'
], function (ko, Component, quote, totals) {
'Magento_Checkout/js/model/totals',
'mage/translate'
], function (ko, Component, quote, totals, $t) {
'use strict';

var isTaxDisplayedInGrandTotal = window.checkoutConfig.includeTaxInGrandTotal,
Expand All @@ -22,7 +23,7 @@ define([
return Component.extend({
defaults: {
isTaxDisplayedInGrandTotal: isTaxDisplayedInGrandTotal,
notCalculatedMessage: 'Not yet calculated',
notCalculatedMessage: $t('Not yet calculated'),
template: 'Magento_Tax/checkout/summary/tax'
},
totals: quote.getTotals(),
Expand Down