feat: Add the ability to create custom attribute (#2903)

This commit is contained in:
Sivin Varghese
2021-08-31 13:54:34 +05:30
committed by GitHub
parent 75329e5de1
commit fdcc322660
12 changed files with 550 additions and 3 deletions

View File

@@ -1,6 +1,38 @@
{
"ATTRIBUTES_MGMT": {
"HEADER": "Attributes",
"HEADER_BTN_TXT": "Add Attribute"
"HEADER_BTN_TXT": "Add Attribute",
"ADD": {
"TITLE": "Add attribute",
"SUBMIT": "Create",
"CANCEL_BUTTON_TEXT": "Cancel",
"FORM": {
"NAME": {
"LABEL": "Display Name",
"PLACEHOLDER": "Enter attribute display name"
},
"DESC": {
"LABEL": "Description",
"PLACEHOLDER": "Enter attribute description"
},
"MODEL": {
"LABEL": "Model",
"PLACEHOLDER": "Please select a model",
"ERROR": "Model is required"
},
"TYPE": {
"LABEL": "Type",
"PLACEHOLDER": "Please select a type",
"ERROR": "Type is required"
},
"KEY": {
"LABEL": "Key"
}
},
"API": {
"SUCCESS_MESSAGE": "Attribute added successfully",
"ERROR_MESSAGE": "Could not connect to Woot Server, Please try again later"
}
}
}
}