iztech-design-system-neo
Version:
Design System of project IZtech
47 lines (42 loc) • 1.07 kB
JavaScript
/**
* This file served as transcript for rating
*/
const FORM = {
TITLE: "What do you think about this product?",
STAR_INDICATOR: {
START_AT_0: "Worst",
START_AT_1: "Need significantly improved",
START_AT_2: "Need changed",
START_AT_3: "Not good",
START_AT_4: "Good",
START_AT_5: "Awesome",
},
INPUT_COMMENT_LABEL: "Your ideas",
INPUT_COMMENT_PLACELHOLDER: "Your sharing is really precious for us",
BTN_CREATE: "Send rating",
BTN_UPDATE: "Update rating",
}
const LIST = {
HINT_TOTAL: "{0} ratings",
HINT_ZERO: "Be the first rater.",
BTN_CREATE: "Write your rating",
}
/**
* This served as transcript for other components
*/
const ADAPTION = {
TAB_TITLE: "Rating",
BOOK: {
TOOLTIP_STAR_OVERVIEW: "There is total {0} ratings from readers, this book earns {1}/5",
SECTION_TITLE: "Rating of readers",
},
COURSE: {
TOOLTIP_STAR_OVERVIEW: "There is total {0} ratings from learners, this course earns {1}/5",
SECTION_TITLE: "Rating of learners",
},
}
export default {
LIST,
FORM,
ADAPTION,
}