-
BharathTarento authoredbcac76f2
export const LANG = {
SUCCESS: "Success!",
ERROR: "Error!",
APIERROR: "Oops! Something went wrong there, Please try again.",
FIELD_TYPES: {
text: "Text",
date: "Date",
email: "Email",
numeric: "Numeric",
textarea: "Textarea",
dropdown: "Dropdown",
multiselect: "Multiselect",
checkbox: "Checkbox",
radio: "Radio",
boolean: "Boolean",
// rating: "Rating",
file: "File",
},
FORM_STATUS: {
DRAFT: "DRAFT",
NEW: "NEW",
PUBLISH: "PUBLISH",
UNPUBLISH: "UNPUBLISH",
UNDER_REVIEW: "UNDERREVIEW",
RETURNED: "RETURNED",
SENT_FOR_INSPECTION: "SENTFORINS",
INSPECTION_COMPLETED: "INSCOMPLETED",
APPROVED: "APPROVED",
REJECTED: "REJECTED",
LEAD_INSPECTION_COMPLETED: "LEADINSCOMPLETED",
ASSISTING_INSPECTION_COMPLETED: "INSCOMPLETED"
},
COL: {
1: 1,
2: 2,
3: 3,
4: 4,
5: 5,
6: 6,
7: 7,
8: 8,
9: 9,
10: 10,
11: 11,
12: 12,
},
DEFAULT_COL: 12,
FIELD: "field",
SEPARATOR: "separator",
HEADING: "heading",
NUMBER: "number",
CANCEL: "Cancel",
REMOVE: "Remove",
CONFIRM_TO_REMOVE: "Confirm to remove",
HEADING_REMOVAL_WARNING: "Are you sure deleting the header?",
CONFIRM_TO_REMOVE_2: "This action will move the question section to the general header category.",
FORM_STATUS_TEXT: {
SENT_FOR_INSPECTION:"Sent for assessment",
INSPECTION_COMPLETED: "Assessment completed",
INSPECTOR_TOTAL_PENDING:"Assessment total pending",
UNDER_REVIEW:"Under review"
},
SEND_FOR_INSPECTION:"Send for assessment",
METRIC_LABEL_KEY: {
UNDER_REVIEW:"Underreview",
SENT_FOR_INS:"Sentforins",
INS_COMPLETED:"Inscompleted",
INSPECTOR_TOTAL_PENDING:"Inspector total pending"
}
};
71