56 lines
1.3 KiB
JavaScript
56 lines
1.3 KiB
JavaScript
export default {
|
|
globals: {
|
|
lang: {
|
|
es: 'Spanish',
|
|
en: 'English',
|
|
},
|
|
collapseMenu: 'Collapse left menu',
|
|
backToDashboard: 'Return to dashboard',
|
|
notifications: 'Notifications',
|
|
userPanel: 'User panel',
|
|
theme: 'Theme',
|
|
logOut: 'Log out',
|
|
},
|
|
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'
|
|
},
|
|
dashboard: {
|
|
pageTitles: {
|
|
dashboard: 'Dashboard',
|
|
}
|
|
},
|
|
customer: {
|
|
pageTitles: {
|
|
customers: 'Customers',
|
|
list: 'List',
|
|
createCustomer: 'Create customer',
|
|
basicData: 'Basic Data'
|
|
}
|
|
},
|
|
ticket: {
|
|
pageTitles: {
|
|
tickets: 'Tickets',
|
|
list: 'List',
|
|
createTicket: 'Create ticket',
|
|
basicData: 'Basic Data'
|
|
}
|
|
},
|
|
components: {
|
|
topbar: {},
|
|
userPanel: {
|
|
settings: 'Settings',
|
|
logOut: 'Log Out',
|
|
},
|
|
},
|
|
};
|