- Added a new endpoint for retrieving projects grouped by category, client, or status. - Enhanced the ProjectsController with a method to handle grouped project queries. - Updated the projects API router to include the new grouped endpoint. - Improved the frontend to support displaying grouped projects with pagination and filtering options. - Updated localization files for English, Spanish, and Portuguese to include new grouping options. - Refactored project list components to accommodate the new grouped view and improved UI elements.
32 lines
862 B
JSON
32 lines
862 B
JSON
{
|
|
"name": "Name",
|
|
"client": "Client",
|
|
"category": "Category",
|
|
"status": "Status",
|
|
"tasksProgress": "Tasks Progress",
|
|
"updated_at": "Last Updated",
|
|
"members": "Members",
|
|
"setting": "Settings",
|
|
"projects": "Projects",
|
|
"refreshProjects": "Refresh projects",
|
|
"all": "All",
|
|
"favorites": "Favorites",
|
|
"archived": "Archived",
|
|
"placeholder": "Search by name",
|
|
"archive": "Archive",
|
|
"unarchive": "Unarchive",
|
|
"archiveConfirm": "Are you sure you want to archive this project?",
|
|
"unarchiveConfirm": "Are you sure you want to unarchive this project?",
|
|
"clickToFilter": "Click to filter by",
|
|
"noProjects": "No projects found",
|
|
"addToFavourites": "Add to favourites",
|
|
"list": "List",
|
|
"group": "Group",
|
|
"listView": "List View",
|
|
"groupView": "Group View",
|
|
"groupBy": {
|
|
"category": "Category",
|
|
"client": "Client"
|
|
}
|
|
}
|