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-04-20 14:23:03 +00:00
|
|
|
collapseMenu: 'Collapse left menu',
|
|
|
|
backToDashboard: 'Return to dashboard',
|
|
|
|
notifications: 'Notifications',
|
|
|
|
userPanel: 'User panel',
|
|
|
|
theme: 'Theme',
|
|
|
|
logOut: 'Log out',
|
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',
|
2022-04-01 10:58:41 +00:00
|
|
|
loginError: 'Invalid username or password'
|
|
|
|
},
|
|
|
|
dashboard: {
|
|
|
|
pageTitles: {
|
|
|
|
dashboard: 'Dashboard',
|
|
|
|
}
|
|
|
|
},
|
|
|
|
customer: {
|
|
|
|
pageTitles: {
|
|
|
|
customers: 'Customers',
|
|
|
|
list: 'List',
|
|
|
|
basicData: 'Basic Data'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
ticket: {
|
|
|
|
pageTitles: {
|
|
|
|
tickets: 'Tickets'
|
|
|
|
}
|
2022-03-11 12:02:30 +00:00
|
|
|
},
|
2022-03-14 09:36:52 +00:00
|
|
|
components: {
|
2022-03-14 10:31:37 +00:00
|
|
|
topbar: {},
|
|
|
|
userPanel: {
|
|
|
|
settings: 'Settings',
|
|
|
|
logOut: 'Log Out',
|
|
|
|
},
|
2022-03-14 09:36:52 +00:00
|
|
|
},
|
2022-03-11 10:25:30 +00:00
|
|
|
};
|