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

52 lines
1.2 KiB
JavaScript
Raw Normal View History

2022-03-11 10:25:30 +00:00
export default {
2022-03-14 09:36:52 +00:00
globals: {
lang: {
es: 'Spanish',
en: 'English',
},
collapseMenu: 'Collapse left menu',
backToDashboard: 'Return to dashboard',
notifications: 'Notifications',
userPanel: 'User panel',
theme: 'Theme',
logOut: 'Log out',
},
2022-03-14 09:36:52 +00:00
errors: {
statusUnauthorized: 'Access denied',
statusInternalServerError: 'An internal server error has ocurred',
},
2022-03-14 09:36:52 +00:00
login: {
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-14 09:36:52 +00:00
components: {
topbar: {},
userPanel: {
settings: 'Settings',
logOut: 'Log Out',
},
2022-03-14 09:36:52 +00:00
},
2022-03-11 10:25:30 +00:00
};