add spanish translation

This commit is contained in:
2025-05-31 10:11:55 +02:00
parent 322c9e7102
commit 4298455b14
9 changed files with 7 additions and 4 deletions

View File

@ -1,8 +1,10 @@
// script.js
let languages = ["en", "de", "fr", "es"]
let currentLanguage = localStorage.getItem("language")
if (!currentLanguage) {
currentLanguage = window.navigator.language.includes("de") ? "de" : "en"
currentLanguage = window.navigator.language.slice(0, 2)
if (!languages.includes(currentLanguage)) currentLanguage = "en"
localStorage.setItem("language", currentLanguage)
}
let currentMode = localStorage.getItem("mode")

View File

@ -17,13 +17,13 @@
"website": "www.usexmr.com"
},
"page2": {
"change_fiat_title": "CAMBIA $USD POR MONERO", #You have a typo in original version (SUSD) instead of $USD
"change_fiat_title": "CAMBIA $USD POR MONERO",
"steps": {
"step1": "PASO 1: Descarga Cake Wallet o Monero.com wallet.",
"step2": "PASO 2: Crea tu billetera y anota cuidadosamente la frase semilla proporcionada. ¡Guárdala de forma segura!",
"step3": "PASO 3: Abre la billetera, ve a la sección 'Intercambio' e ingresa la cantidad de dinero que deseas convertir en Monero (XMR). Elige tu método de pago preferido (tarjeta de crédito, transferencia bancaria, SEPA, etc.) y sigue los pasos."
},
"slogan1": "¡LOS PAGOS SON SEGUROS E INMUTABLES!",
"slogan1": "¡LOS PAGOS SON SEGUROS E INMUTABLES!",
"advantages_title": "VENTAJAS PARA TI COMO USUARIO",
"advantages": {
"privacy": "Privacidad: Cada pago es privado por defecto. ¡Pagas con Monero como pagas con efectivo!",
@ -70,4 +70,4 @@
"dex": "Intercambio Descentralizado: una plataforma operada por una red de usuarios donde los clientes no necesitan verificar su identidad.",
"copyright": "Proyecto Comunitario de Monero<br />Un proyecto independiente, no comercial, realizado por y para la comunidad Monero."
}
}
}

BIN
i18n/es/flyer-dark-es.pdf Normal file

Binary file not shown.

BIN
i18n/es/flyer-light-es.pdf Normal file

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

View File

@ -25,6 +25,7 @@
<option value="en">English</option>
<option value="de">Deutsch</option>
<option value="fr">Français</option>
<option value="es">Español</option>
</select>
</div>