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