salix-front/src/i18n/en/index.ts

33 lines
721 B
TypeScript
Raw Normal View History

2022-03-11 10:25:30 +00:00
// This is just an example,
// so you can safely delete all default props below
export default {
2022-03-11 11:59:10 +00:00
'globals': {
'lang': {
'es': 'Spanish',
'en': 'English'
}
},
'errors': {
'statusUnauthorized': 'Access denied',
'statusInternalServerError': 'An internal server error has ocurred'
},
'login': {
'title': 'Login',
'username': 'Username',
'password': 'Password',
'submit': 'Log in',
'keepLogin': 'Keep me logged in',
'loginSuccess': 'You have successfully logged in',
'loginError': 'Invalid username or password'
},
'customer': {},
'components': {
'topbar': {},
'userPanel': {
'settings': 'Settings',
'logOut': 'Log Out'
}
}
2022-03-11 10:25:30 +00:00
};