47 lines
953 B
TypeScript
47 lines
953 B
TypeScript
export default {
|
|
mainLayout: {
|
|
language: 'Language',
|
|
pages: 'Pages',
|
|
},
|
|
registerPage: {
|
|
title: 'Create a Gymboard Account',
|
|
name: 'Name',
|
|
email: 'Email',
|
|
password: 'Password',
|
|
register: 'Register',
|
|
error: 'An error occurred.'
|
|
},
|
|
loginPage: {
|
|
title: 'Login to Gymboard',
|
|
email: 'Email',
|
|
password: 'Password',
|
|
logIn: 'Log in',
|
|
createAccount: 'Create an account'
|
|
},
|
|
indexPage: {
|
|
searchHint: 'Search for a Gym',
|
|
},
|
|
gymPage: {
|
|
home: 'Home',
|
|
submit: 'Submit',
|
|
leaderboard: 'Leaderboard',
|
|
homePage: {
|
|
overview: 'Overview of this gym:',
|
|
recentLifts: 'Recent Lifts',
|
|
},
|
|
submitPage: {
|
|
name: 'Your Name',
|
|
exercise: 'Exercise',
|
|
weight: 'Weight',
|
|
reps: 'Repetitions',
|
|
date: 'Date',
|
|
upload: 'Video File to Upload',
|
|
submit: 'Submit',
|
|
},
|
|
},
|
|
accountMenuItem: {
|
|
logIn: 'Login',
|
|
logOut: 'Log out'
|
|
}
|
|
};
|