{{ 'THANK_YOU' | translate }}
{{ 'CHECK_EMAIL' | translate }}
{{ 'TOTAL' | translate }}: {{ cart.getTotalPrice() == 0 ? 'Free' : cart.getCurrencySymbol() + (cart.getCurrencySymbol() == '¥' ? cart.getTotalPrice() : (cart.getTotalPrice() / 100).toFixed(2)) }}
Sales Tax (Included): {{ cart.getSalesTax() == null ? '' : cart.getCurrencySymbol() + (cart.getSalesTax() / 100).toFixed(2) }}
{{ 'NO_ITEMS' | translate }}
{{ 'DESCRIPTION' | translate }}
{{ 'QUANTITY' | translate }}
{{ 'PRICE' | translate }}
{{ cart.items[$index].type.charAt(0).toUpperCase() + cart.items[$index].type.substr(1) }}
{{ cart.items[$index].type == 'digital'
? ''
: ': ' + cart.items[$index].width
}}
{{ cart.items[$index].type == 'digital'
? 'デジタル写真'
: 'プリント写真: ' + cart.items[$index].width
}}
{{ cart.items[$index].quantity }}
{{ cart.items[$index].unitPrice == 0 ? (cart.items[$index].width.includes('Package') ? 'Included in Package' : 'Free') : cart.getCurrencySymbol() + ((cart.items[$index].country_code == 'JPY') ? cart.items[$index].unitPrice : cart.items[$index].unitPrice/100) }}