Feature: Traducir todas las vistas - parte 1

- admin/recipients.php: tablas, modales, labels
- admin/comandos.php: títulos, tablas, descripciones
- admin/test_discord_connection.php: formularios, alertas
- admin/ia_agent.php: configuración, parámetros
- profile.php: información, formulario contraseña
- set_webhook.php: alertas, formularios
- chat_telegram.php: usuarios, historial
- translate_message.php: formulario de traducción
This commit is contained in:
2026-02-20 16:01:06 -06:00
parent 65de04209f
commit 2dd99c04dd
8 changed files with 172 additions and 172 deletions

View File

@@ -41,7 +41,7 @@ require_once __DIR__ . '/templates/header.php';
?>
<div class="d-flex justify-content-between align-items-center mb-4">
<h2><i class="bi bi-telegram"></i> Chat Telegram</h2>
<h2><i class="bi bi-telegram"></i> <?= t('Chat Telegram') ?></h2>
</div>
<?php if (isset($error)): ?>
@@ -51,26 +51,26 @@ require_once __DIR__ . '/templates/header.php';
<div class="row">
<div class="col-md-4">
<div class="card border-0 shadow-sm">
<div class="card-header bg-white border-0">
<h5 class="mb-0">Usuarios</h5>
<div class="card-header border-0">
<h5 class="mb-0"><?= t('Usuarios') ?></h5>
</div>
<div class="card-body p-0">
<?php if (empty($interactions)): ?>
<p class="text-muted p-3">No hay interacciones</p>
<p class="text-muted p-3"><?= t('No hay interacciones') ?></p>
<?php else: ?>
<div class="list-group list-group-flush">
<?php if ($selectedUser): ?>
<a href="chat_telegram.php" class="list-group-item list-group-item-action">
<i class="bi bi-arrow-left"></i> Volver a lista
<i class="bi bi-arrow-left"></i> <?= t('Volver a lista') ?>
</a>
<?php else: ?>
<?php foreach ($interactions as $user): ?>
<a href="chat_telegram.php?user_id=<?= $user['user_id'] ?>" class="list-group-item list-group-item-action">
<div class="d-flex w-100 justify-content-between">
<h6 class="mb-1"><?= htmlspecialchars($user['first_name'] ?? 'Usuario') ?></h6>
<h6 class="mb-1"><?= htmlspecialchars($user['first_name'] ?? t('Usuario')) ?></h6>
<small><?= $user['total_interactions'] ?></small>
</div>
<small class="text-muted">@<?= htmlspecialchars($user['username'] ?? 'sin username') ?></small>
<small class="text-muted">@<?= htmlspecialchars($user['username'] ?? t('sin username')) ?></small>
</a>
<?php endforeach; ?>
<?php endif; ?>
@@ -82,8 +82,8 @@ require_once __DIR__ . '/templates/header.php';
<div class="col-md-8">
<div class="card border-0 shadow-sm">
<div class="card-header bg-white border-0">
<h5 class="mb-0">Historial de Mensajes</h5>
<div class="card-header border-0">
<h5 class="mb-0"><?= t('Historial de Mensajes') ?></h5>
</div>
<div class="card-body" style="max-height: 500px; overflow-y: auto;">
<?php if ($selectedUser && !empty($interactions)): ?>
@@ -91,13 +91,13 @@ require_once __DIR__ . '/templates/header.php';
<div class="mb-3 p-2 <?= $msg['interaction_type'] === 'in' ? 'bg-light' : 'bg-white' ?> rounded">
<small class="text-muted">
<?= date('d/m/Y H:i:s', strtotime($msg['interaction_date'])) ?>
- <?= $msg['interaction_type'] === 'in' ? '📥 Usuario' : '📤 Bot' ?>
- <?= $msg['interaction_type'] === 'in' ? '📥 ' . t('Usuario') : '📤 Bot' ?>
</small>
<p class="mb-0 mt-1"><?= htmlspecialchars($msg['interaction_type'] ?? '') ?></p>
</div>
<?php endforeach; ?>
<?php else: ?>
<p class="text-muted text-center">Selecciona un usuario para ver el historial</p>
<p class="text-muted text-center"><?= t('Selecciona un usuario para ver el historial') ?></p>
<?php endif; ?>
</div>
</div>