iztech-design-system-neo
Version:
Design System of project IZtech
24 lines (21 loc) • 469 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} /月",
PER_WEEK: "{0} /週",
PER_DAY: "{0} /日",
PER_LESSON: "{0} /レッスン",
}
export default {
SUBCRIPTION_RANGE,
OWNED: "所有中",
FREE: "無料",
CONTACT: "連絡先",
// specialized for offline course
OFFLINE_COURSE_IS_LEARNING: "学習中",
}