Traducción de términos al español

User
{
"email": "Email",
"password":"Password",
"welcome":"Welcome",
"name":"Name",
"login":"Log In",
"register":"Register"
}
convert above to spanish
Assistant
Here’s the translation of the provided JSON object into Spanish:

{
    "email": "Correo electrónico",
    "password": "Contraseña",
    "welcome": "Bienvenido",
    "name": "Nombre",
    "login": "Iniciar sesión",
    "register": "Registrarse"
}
User
Confirm Password
Assistant
The translation for "Confirm Password" in Spanish is:

"confirm_password": "Confirmar contraseña"

If you need it in the context of your JSON object, it would look like this:

{
    "email": "Correo electrónico",
    "password": "Contraseña",
    "confirm_password": "Confirmar contraseña",
    "welcome": "Bienvenido",
    "name": "Nombre",
    "login": "Iniciar sesión",
    "register": "Registrarse"
}

Leave a Comment

Your email address will not be published. Required fields are marked *