Commit b41c3829 authored by Lorenzo Trujillo Rojas's avatar Lorenzo Trujillo Rojas
Browse files

Se actualizaron los objetos de cada lenguaje conforme a los nuevos...

Se actualizaron los objetos de cada lenguaje conforme a los nuevos requerimientos de la interfaz LANG
parent 6d5ff24b
Loading
Loading
Loading
Loading
+36 −0
Original line number Diff line number Diff line
@@ -11,6 +11,40 @@ export const ENGLISH_LANG: Lang = {
        loginButton: "Login",
        registerButton: "Register",
    },
    homeScreen:{
        title: "Home",
    },
    travelHistoryScreen:{
        title: "Travel history",
        activeTravelsLabel: "Active travels",
        pastTravelsLabel: "Past travels",
        noTravelsLabel: "No travels",
    },
    accountScreen:{
        title: "Account",
        logoutButton: "Logout",
        changeLanguageButton: "Change App Language",
        selectLanguage: "Select language",
        saveButton: "Save",
    },
    selectTownScreen:{
        title: "Select Town",
    },
    selectTownActivityScreen:{
        title: "Select Activity",
        generateRouteButton: "Generate route",
    },
    activityInfoScreen:{
        doActivityButton: "Do activity",
    },
    scanScreen:{
        title: "Scan QR code",
    },
    tabBar:{
        homeLabel: "Home",
        travelHistoryLabel: "Travel history",
        accountLabel: "Account",
    },
    forms : {
        email: "Email",
        password: "Password",
@@ -27,5 +61,7 @@ export const ENGLISH_LANG: Lang = {
    },
    common : {
        or: "or",
        descriptionLabel: "Description",
        showMore: "Show more",
    }
}
 No newline at end of file
+36 −0
Original line number Diff line number Diff line
@@ -11,6 +11,40 @@ export const SPANISH_LANG: Lang = {
        loginButton: "Iniciar sesión",
        registerButton: "Registrarse",
    },
    homeScreen:{
        title: "Inicio",
    },
    travelHistoryScreen:{
        title: "Historial de viajes",
        activeTravelsLabel: "Viajes activos",
        pastTravelsLabel: "Viajes pasados",
        noTravelsLabel: "No hay viajes",
    },
    accountScreen:{
        title: "Cuenta",
        logoutButton: "Cerrar sesión",
        changeLanguageButton: "Cambiar idioma de la aplicación",
        selectLanguage: "Seleccionar idioma",
        saveButton: "Guardar",
    },
    selectTownScreen:{
        title: "Seleccionar Pueblo",
    },
    selectTownActivityScreen:{
        title: "Seleccionar Actividad",
        generateRouteButton: "Generar ruta",
    },
    activityInfoScreen:{
        doActivityButton: "Hacer actividad",
    },
    scanScreen:{
        title: "Escanear código QR",
    },
    tabBar:{
        homeLabel: "Inicio",
        travelHistoryLabel: "Historial de viajes",
        accountLabel: "Cuenta",
    },
    forms : {
        email: "Correo electrónico",
        password: "Contraseña",
@@ -27,5 +61,7 @@ export const SPANISH_LANG: Lang = {
    },
    common : {
        or: "o",
        descriptionLabel: "Descripción",
        showMore: "Mostrar más",
    }
};
 No newline at end of file