- Updated task list components to support subtasks, including TaskRowWithSubtasks for rendering tasks with their subtasks. - Introduced AddSubtaskRow for adding new subtasks directly within the task list. - Enhanced TaskRow to handle task expansion and display subtask counts. - Implemented optimistic updates for subtask creation to improve user experience. - Added loading states for subtasks to provide visual feedback during data fetching. - Refactored task management slice to manage subtasks and their loading states effectively.
31 lines
779 B
JSON
31 lines
779 B
JSON
{
|
|
"details": {
|
|
"task-key": "Task Key",
|
|
"phase": "Phase",
|
|
"assignees": "Assignees",
|
|
"due-date": "Due Date",
|
|
"time-estimation": "Time Estimation",
|
|
"priority": "Priority",
|
|
"labels": "Labels",
|
|
"billable": "Billable",
|
|
"notify": "Notify",
|
|
"when-done-notify": "When done, notify",
|
|
"start-date": "Start Date",
|
|
"end-date": "End Date",
|
|
"hide-start-date": "Hide Start Date",
|
|
"show-start-date": "Show Start Date",
|
|
"hours": "Hours",
|
|
"minutes": "Minutes",
|
|
"recurring": "Recurring"
|
|
},
|
|
"description": {
|
|
"title": "Description",
|
|
"placeholder": "Add a more detailed description..."
|
|
},
|
|
"subTasks": {
|
|
"title": "Sub Tasks",
|
|
"add-sub-task": "Add Sub Task",
|
|
"refresh-sub-tasks": "Refresh Sub Tasks"
|
|
}
|
|
}
|