iztech-design-system-neo
Version:
Design System of project IZtech
80 lines (74 loc) • 2.74 kB
JavaScript
/**
* This served for cart page
* `\n` is line break symbol, don't translate this
*/
const CART_SECTION = {
TITLE: "Cart",
BILL: {
SUB_TOTAL: "Subtotal",
DISCOUNT_DIRECT: "Direct discount",
DISCOUNT_BY_COMBO: "Coupon discount",
DISCOUNT_BY_COUPON: "Combo discount",
BTN_USE_DISCOUNT_COUPON: "Use coupon code",
INPUT_DISCOUNT_COUPON_PLACEHOLDER: "Coupon code",
BTN_APPLY_DISCOUNT_COUPON: "Apply",
TOTAL_AMOUNT: "Total amount",
TOTAL_SAVING: "You saved",
TOTAL_DISCOUNT: "Total discount",
},
BUYER_INFO_TITLE: "Buyer's information",
}
const PAYMENT_SECTION = {
TITLE: "Payment",
METHOD: {
TITLE: "Payment method",
GATEWAY_TRANSFER: {
TITLE: "Online tranfer",
DESCRIPTION:
"Own courses immediately.\n\nYou can scan QR code on mobile device, or use bank account to pay on the online payment gateway. Fast and absolutely secured.",
},
BANK_TRANSFER: {
TITLE: "Bank transfer",
DESCRIPTION:
"Own courses after transfering.\n\nYou can transfer to the official account. After success payment, system will send confirmation email and immediately activate your bought courses.",
},
COD: {
TITLE: "Cash on Delivery (COD)",
DESCRIPTION: "Own courses after activation code is delivered to you.",
RECIPENT_INFO_TITLE: "Receiver's information",
},
},
BTN_CONFIRM_BILL: "Confirm order and continue",
}
const CONFIRMATION_SECTION = {
TITLE: "Confirmation",
GATEWAY_TRANSFER: {
TITLE: "Success payment",
DESCRIPTION:
"Congratulation!\n\nYou have paid successfully and owned new course contents. Let's explore them now.",
},
BANK_TRANSFER: {
TITLE: "Your order has been confirmed and waiting for payment",
INVOICE_DESCRIPTION: "Please transfer with below information",
INVOICE_RECIPENT: "Recipent bank account",
INVOICE_AMOUNT: "Amount",
INVOICE_CONTENT: "Transfer description",
INVOICE_HINT:
"To make confirmation process faster, transfer description need to be absolutely accurate. You can screenshot after success transfer to support double-check if necessary.\n\nBest regards!",
},
COD: {
TITLE: "Your order has been confirmed and waiting for delivery",
DESCRIPTION:
"Customer Service staffs will contact you to confirm information and post-officer will deliver your activation to your address.\n\nDelivery time can be around 3 days to 1 week. You only need to pay when receive activation code.\n\nBest regards!",
},
}
const POPUP = {
CONFIRM_REMOVE_ITEM_FROM_CART_DESCRIPTION:
"Do you really want to remove this product from your cart?",
}
export default {
CART_SECTION,
PAYMENT_SECTION,
CONFIRMATION_SECTION,
POPUP,
}