- 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
953 B
JSON
32 lines
953 B
JSON
{
|
|
"name": "Nome",
|
|
"client": "Cliente",
|
|
"category": "Categoria",
|
|
"status": "Status",
|
|
"tasksProgress": "Progresso das Tarefas",
|
|
"updated_at": "Última Atualização",
|
|
"members": "Membros",
|
|
"setting": "Configuração",
|
|
"archive": "Arquivar",
|
|
"projects": "Projetos",
|
|
"refreshProjects": "Atualizar projetos",
|
|
"all": "Todos",
|
|
"favorites": "Favoritos",
|
|
"archived": "Arquivados",
|
|
"placeholder": "Pesquisar por nome",
|
|
"archiveConfirm": "Tem certeza de que deseja arquivar este projeto?",
|
|
"unarchive": "Desarquivar",
|
|
"unarchiveConfirm": "Tem certeza de que deseja desarquivar este projeto?",
|
|
"clickToFilter": "Clique para filtrar por",
|
|
"noProjects": "Nenhum projeto encontrado",
|
|
"addToFavourites": "Adicionar aos favoritos",
|
|
"list": "Lista",
|
|
"group": "Grupo",
|
|
"listView": "Visualização em Lista",
|
|
"groupView": "Visualização em Grupo",
|
|
"groupBy": {
|
|
"category": "Categoria",
|
|
"client": "Cliente"
|
|
}
|
|
}
|