chore: rename from team_entites to team_entities

This commit is contained in:
Muhsin Keloth
2024-05-10 15:16:56 +05:30
parent b25e395bf7
commit 4d47fc1c25
10 changed files with 71 additions and 20 deletions
@@ -203,6 +203,47 @@
"API_SUCCESS": "Dashboard app deleted successfully",
"API_ERROR": "We couldn't delete the app. Please try again later"
}
},
"LINEAR": {
"ADD_OR_LINK": {
"TITLE": "Create/link linear issue",
"DESCRIPTION": "Create or link a linear issue to the conversation",
"FORM": {
"TITLE": {
"LABEL": "Title",
"PLACEHOLDER": "Enter title",
"REQUIRED_ERROR": "Title is required"
},
"DESCRIPTION": {
"LABEL": "Description",
"PLACEHOLDER": "SLA for premium customers"
},
"TEAM": {
"LABEL": "Team",
"REQUIRED_ERROR": "Team is required"
},
"ASSIGNEE": {
"LABEL": "Assignee"
},
"PRIORITY": {
"LABEL": "Priority"
},
"LABEL": {
"LABEL": "Label"
},
"STATUS": {
"LABEL": "Status"
},
"PROJECT": {
"LABEL": "Project"
}
},
"CREATE": "Create",
"CANCEL": "Cancel",
"CREATE_ERROR": "There was an error creating the issue, please try again",
"LOADING_TEAM_ERROR": "There was an error fetching the teams, please try again",
"LOADING_TEAM_ENTITIES_ERROR": "There was an error fetching the team entities, please try again"
}
}
}
}
@@ -0,0 +1,10 @@
import { required } from 'vuelidate/lib/validators';
export default {
title: {
required,
},
teamId: {
required,
},
};