2022-03-11 10:25:30 +00:00
|
|
|
export default {
|
2022-03-14 09:36:52 +00:00
|
|
|
globals: {
|
|
|
|
lang: {
|
2022-03-11 12:02:30 +00:00
|
|
|
'es': 'Spanish',
|
|
|
|
'en': 'English'
|
|
|
|
}
|
|
|
|
},
|
2022-03-14 09:36:52 +00:00
|
|
|
errors: {
|
2022-03-11 12:02:30 +00:00
|
|
|
'statusUnauthorized': 'Access denied',
|
|
|
|
'statusInternalServerError': 'An internal server error has ocurred'
|
|
|
|
},
|
2022-03-14 09:36:52 +00:00
|
|
|
login: {
|
2022-03-11 12:02:30 +00:00
|
|
|
'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'
|
|
|
|
},
|
2022-03-14 09:36:52 +00:00
|
|
|
customer: {},
|
|
|
|
components: {
|
2022-03-11 12:02:30 +00:00
|
|
|
'topbar': {},
|
|
|
|
'userPanel': {
|
|
|
|
'settings': 'Settings',
|
|
|
|
'logOut': 'Log Out'
|
|
|
|
}
|
2022-03-14 09:36:52 +00:00
|
|
|
},
|
|
|
|
pages: {
|
|
|
|
'logIn': 'Log In',
|
|
|
|
'dashboard': 'Dashboard',
|
|
|
|
'customers': 'Customers',
|
|
|
|
'list': 'List',
|
2022-03-11 11:59:10 +00:00
|
|
|
}
|
2022-03-11 10:25:30 +00:00
|
|
|
};
|