From 62166224a1b58af580747c269e552f34dc21879c Mon Sep 17 00:00:00 2001 From: matograine <matograine@zaclys.net> Date: Fri, 29 Apr 2022 19:07:16 +0200 Subject: [PATCH] translate ES JS strings --- i18n/ES/strings.js | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/i18n/ES/strings.js b/i18n/ES/strings.js index 104719d..3e1e377 100644 --- a/i18n/ES/strings.js +++ b/i18n/ES/strings.js @@ -1,9 +1,11 @@ //---- Error and message strings for JS code - const STRING_ERROR_TITLE_PUBKEY_NOT_PROVIDED = "ERREUR : Le titre ou la clef publique n'est pas renseigné !"; - const Function_STRING_ERROR_WRONG_CHECKSUM = (checksum, pubkey) => `Le checksum ${checksum} ne correspond pas à la clef publique ${pubkey}. Veuillez vérifier la clef publique.` - const STRING_ERROR_BROWSER_NOT_SUPPORTED = "ERREUR : Votre navigateur n'est pas supporté." - const Function_STRING_ERROR_PUBKEY_TOO_SHORT = (min_length) => `ERREUR : la clef publique fait moins de ${min_length} caractères.\n` - const Function_STRING_ERROR_PUBKEY_TOO_LONG = (max_length) => `ERREUR : la clef publique fait plus de ${max_length} caractères.\n` - const Function_STRING_SEND_GIFT = (pubkey_ck) => `Pour faire un don à Viğnette, envoyez la monnaie à la clef publique : ${pubkey_ck}.` - const STRING_PUBKEY_COPIED_IN_CLIPBOARD = "\n\nCette clef publique a été copiée dans votre presse-papier. Vous pouvez la coller directement dans Cesium." + const STRING_ERROR_TITLE_PUBKEY_NOT_PROVIDED = "ERROR : ¡No se ha especificado el tÃtulo o la clave pública!"; + const Function_STRING_WARNING_SAME_PUBKEY = (creator_pubkey) => `¡ALERTA! Us. ha introcido la clave pública de viÄžnette : ${creator_pubkey}. ¿Es eso lo que querÃa hacer?` + const Function_STRING_ERROR_INVALID_PUBKEY = (pubkey) => `La clave publica ${pubkey} no está validada`; + const Function_STRING_ERROR_WRONG_CHECKSUM = (checksum, pubkey) => `El checksum ${checksum} no corresponde a la clave pública ${pubkey}. Por favor, compruebe la clave pública.` + const STRING_ERROR_BROWSER_NOT_SUPPORTED = "ERROR : Su navegador no está soportado." + const Function_STRING_ERROR_PUBKEY_TOO_SHORT = (min_length) => `ERROR : la clave pública tiene menos de ${min_length} carácteres.\n` + const Function_STRING_ERROR_PUBKEY_TOO_LONG = (max_length) => `ERROR : la clave pública tiene más de ${max_length} carácteres.\n` + const Function_STRING_SEND_GIFT = (pubkey_ck) => `Para hacer un donativo a ViÄŸnette, puede hacerlo a la clave pública : ${pubkey_ck}.` + const STRING_PUBKEY_COPIED_IN_CLIPBOARD = "\n\nEsta clave pública se ha copiado en su portapapeles. Ahora puede engancharla directamente en Cesium." -- GitLab