From 9764719245ca7bf8c56582a401bf68b7734fe42d Mon Sep 17 00:00:00 2001 From: nestordavalos Date: Wed, 17 Apr 2024 17:20:37 -0400 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat:=20add=20support=20for=20Spani?= =?UTF-8?q?sh?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/i18n.ts | 2 +- src/utils/translations/es.json | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 src/utils/translations/es.json diff --git a/src/utils/i18n.ts b/src/utils/i18n.ts index 74a76724f..8e23181dd 100644 --- a/src/utils/i18n.ts +++ b/src/utils/i18n.ts @@ -4,7 +4,7 @@ import path from 'path'; import { ConfigService, Language } from '../config/env.config'; -const languages = ['en', 'pt-BR']; +const languages = ['en', 'pt-BR', 'es']; const translationsPath = path.join(__dirname, 'translations'); const configService: ConfigService = new ConfigService(); diff --git a/src/utils/translations/es.json b/src/utils/translations/es.json new file mode 100644 index 000000000..287840639 --- /dev/null +++ b/src/utils/translations/es.json @@ -0,0 +1,26 @@ +{ + "qrgeneratedsuccesfully": "Código QR generado exitosamente!", + "scanqr": "Escanea este código QR en los próximos 40 segundos.", + "qrlimitreached": "🚨 Se alcanzó el límite de generación de QRCode. Para generar un nuevo QRCode, envíe el mensaje 'init' nuevamente.", + "numbernotinwhatsapp": "⚠️ El mensaje no fue enviado porque el contacto no es un número de Whatsapp válido..", + "cw.inbox.connected": "🚀 ¡Conexión establecida exitosamente!", + "cw.inbox.disconnect": "🚨 Instancia *{{inboxName}}* desconectado de Whatsapp.", + "cw.inbox.alreadyConnected": "🚨 La instancia {{inboxName}} está conectada.", + "cw.inbox.clearCache": "✅ Caché de la instancia {{inboxName}} borrada.", + "cw.inbox.notFound": "⚠️ Instancia {{inboxName}} no encontrada.", + "cw.inbox.status": "⚠️ Estado de la instancia {{inboxName}}: *{{state}}*.", + "cw.import.startImport": "💬 Empezando a importar mensajes. Espere por favor...", + "cw.import.importingMessages": "💬 Importando mensajes. mas un momento...", + "cw.import.messagesImported": "💬 {{totalMessagesImported}} mensajes importados. Actualiza la página para ver los nuevos mensajes..", + "cw.import.messagesException": "⚠️ Algo salió mal al importar mensajes..", + "cw.locationMessage.location": "Ubicación", + "cw.locationMessage.latitude": "Latitude", + "cw.locationMessage.longitude": "Longitude", + "cw.locationMessage.locationName": "Nombre", + "cw.locationMessage.locationAddress": "Direccion", + "cw.locationMessage.locationUrl": "URL", + "cw.contactMessage.contact": "Contacto", + "cw.contactMessage.name": "Nombre", + "cw.contactMessage.number": "Numero", + "cw.message.edited": "Mensaje editado" +} \ No newline at end of file