52 lines
1.0 KiB
TypeScript
52 lines
1.0 KiB
TypeScript
export interface homeTranslations {
|
|
alertMessage: string;
|
|
translate: string;
|
|
searchButton: string;
|
|
searchPlaceholder: string;
|
|
menuPlaces: string;
|
|
}
|
|
|
|
export interface listTranslations {
|
|
translate: string;
|
|
locationName: string;
|
|
distance: string;
|
|
positionNotFoundErrorMessage: string;
|
|
}
|
|
|
|
export interface managementTranslations {
|
|
users: string;
|
|
locations: string;
|
|
waypoints: string;
|
|
name: string;
|
|
username: string;
|
|
password: string;
|
|
location: string;
|
|
region: string;
|
|
lat: string;
|
|
lon: string;
|
|
description: string;
|
|
locationName: string;
|
|
image: string;
|
|
translate: string;
|
|
addUserButton: string;
|
|
addLocationButton: string;
|
|
addWaypointButton: string;
|
|
add: string;
|
|
close: string;
|
|
}
|
|
|
|
export interface loginTranslations {
|
|
"login": string;
|
|
"register": string;
|
|
"username": string;
|
|
"password": string;
|
|
"usernamePlaceholder": string;
|
|
"passwordPlaceholder": string;
|
|
"errorLogin": string;
|
|
"errorCreateUser": string;
|
|
}
|
|
|
|
export interface detailTranslations {
|
|
"congratulations": string;
|
|
}
|