Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/i18n/locales/en-US/agents.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"agents.card.status.active": "Active",
"agents.card.status.inactive": "Inactive",
"agents.empty.title": "No agents yet",
"agents.empty.description": "Agents will appear here once they're registered with the gateway."
"agents.empty.description": "Agents will appear here once they're registered with the server."
}
2 changes: 1 addition & 1 deletion src/i18n/locales/es-ES/agents.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"agents.card.status.active": "Activo",
"agents.card.status.inactive": "Inactivo",
"agents.empty.title": "Aún no hay agentes",
"agents.empty.description": "Los agentes aparecerán aquí una vez que se registren en la puerta de enlace."
"agents.empty.description": "Los agentes aparecerán aquí una vez que se registren en el servidor."
}
2 changes: 1 addition & 1 deletion src/i18n/locales/pt-BR/agents.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"agents.card.status.active": "Ativo",
"agents.card.status.inactive": "Inativo",
"agents.empty.title": "Ainda não há agentes",
"agents.empty.description": "Os agentes aparecerão aqui assim que forem registrados no gateway."
"agents.empty.description": "Os agentes aparecerão aqui assim que forem registrados no servidor."
}
2 changes: 1 addition & 1 deletion src/pages/Agents.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ describe("Agents", () => {
expect(screen.getByText("No agents yet")).toBeInTheDocument();
});
expect(
screen.getByText("Agents will appear here once they're registered with the gateway."),
screen.getByText("Agents will appear here once they're registered with the server."),
).toBeInTheDocument();
expect(document.querySelectorAll('[data-slot="card"]')).toHaveLength(0);
});
Expand Down
Loading