Fix: Translate all validation messages and UI text from Portuguese to English

This commit is contained in:
2025-09-25 20:08:13 -03:00
parent 2d0c086df2
commit 89a7ee41de
10 changed files with 248 additions and 154 deletions

View File

@@ -33,9 +33,9 @@ async def lifespan(app: FastAPI):
try:
await app.state.k8s_client.initialize()
await app.state.prometheus_client.initialize()
logger.info("Clientes inicializados com sucesso")
logger.info("Clients initialized successfully")
except Exception as e:
logger.error(f"Erro ao inicializar clientes: {e}")
logger.error(f"Error initializing clients: {e}")
raise
yield