iztech-design-system-neo
Version:
Design System of project IZtech
24 lines (21 loc) • 489 B
JavaScript
/**
* This served as price tag for other components, such as:
* - online/offline course
* - event
* - book
*/
// example: 100.000 vnd / month
const SUBCRIPTION_RANGE = {
PER_MONTH: "{0} / tháng",
PER_WEEK: "{0} / tuần",
PER_DAY: "{0} / ngày",
PER_LESSON: "{0} / buổi",
}
export default {
SUBCRIPTION_RANGE,
OWNED: "Đã sở hữu",
FREE: "Miễn phí",
CONTACT: "Liên hệ",
// specialized for offline course
OFFLINE_COURSE_IS_LEARNING: "Đang học",
}