feat: Translate various strings and comments to Spanish for better localization

- Updated error messages and comments in main.rs, openapi.rs, portfolio.rs, predictive.rs, ai.rs, health.rs, middleware.rs, models.rs, token_limits.rs, and webhooks.rs to Spanish.
- Enhanced user experience by providing localized content for Spanish-speaking users.
This commit is contained in:
2026-04-10 10:26:26 -04:00
parent 7c48b3b1a9
commit 53e5ef4d0b
35 changed files with 1135 additions and 1144 deletions
+3 -3
View File
@@ -23,7 +23,7 @@ impl WebhookService {
.await {
Ok(w) => w,
Err(e) => {
tracing::error!("Failed to fetch webhooks for org {}: {}", org_id, e);
tracing::error!("Error al obtener los webhooks para la org {}: {}", org_id, e);
return;
}
};
@@ -54,7 +54,7 @@ impl WebhookService {
Ok(response) => {
if !response.status().is_success() {
tracing::warn!(
"Webhook delivery to {} (event: {}) failed with status {}",
"La entrega del webhook a {} (evento: {}) falló con el estado {}",
url,
event_type,
response.status()
@@ -63,7 +63,7 @@ impl WebhookService {
}
Err(e) => {
tracing::error!(
"Failed to deliver webhook to {} (event: {}): {}",
"Error al entregar el webhook a {} (evento: {}): {}",
url,
event_type,
e