Commit 6d5ff24b authored by Lorenzo Trujillo Rojas's avatar Lorenzo Trujillo Rojas
Browse files

Se agregaron nuevos campos a la interfaz de lenguaje

parent 4565452b
Loading
Loading
Loading
Loading
+36 −0
Original line number Diff line number Diff line
@@ -9,6 +9,40 @@ export interface Lang {
        loginButton: string;
        registerButton: string;
    },
    homeScreen:{
        title: string;
    },
    travelHistoryScreen:{
        title: string;
        activeTravelsLabel: string;
        pastTravelsLabel: string;
        noTravelsLabel: string;
    },
    accountScreen:{
        title: string;
        logoutButton: string;
        changeLanguageButton: string;
        selectLanguage: string;
        saveButton: string;
    },
    selectTownScreen:{
        title: string;
    },
    selectTownActivityScreen:{
        title: string;
        generateRouteButton: string;
    },
    activityInfoScreen:{
        doActivityButton: string;
    },
    scanScreen:{
        title: string;
    },
    tabBar:{
        homeLabel: string;
        travelHistoryLabel: string;
        accountLabel: string;
    },
    forms : {
        email: string;
        password: string;
@@ -25,6 +59,8 @@ export interface Lang {
    },
    common : {
        or: string;
        descriptionLabel: string;
        showMore: string;
    }
}
        
 No newline at end of file