49 lines
1.2 KiB
JavaScript
49 lines
1.2 KiB
JavaScript
import menuMessages from './menu-en'
|
|
|
|
export default {
|
|
meta: {
|
|
label: 'English',
|
|
nativeLabel: 'English'
|
|
},
|
|
nav: {
|
|
home: 'Home'
|
|
},
|
|
common: {
|
|
language: 'Language',
|
|
search: 'Search',
|
|
globalSize: 'Global Size',
|
|
resetPassword: 'Reset Password',
|
|
logout: 'Logout',
|
|
cancel: 'Cancel',
|
|
submit: 'Submit'
|
|
},
|
|
auth: {
|
|
login: 'Login',
|
|
username: 'Username',
|
|
password: 'Password',
|
|
invalidUsername: 'Please enter the correct user name',
|
|
invalidPasswordLength: 'The password can not be less than 4 digits'
|
|
},
|
|
password: {
|
|
title: 'Reset Password',
|
|
old: 'Original Password',
|
|
new: 'New Password',
|
|
confirm: 'Confirm Password',
|
|
placeholderOld: 'Please enter the original password',
|
|
placeholderNew: 'Please enter the new password',
|
|
placeholderConfirm: 'Please confirm the password',
|
|
required: 'Required field cannot be empty',
|
|
invalidLength: 'The password can not be less than 4 digits',
|
|
mismatch: 'Passwords do not match',
|
|
processing: 'Processing submission, please wait'
|
|
},
|
|
size: {
|
|
default: 'Default',
|
|
medium: 'Medium',
|
|
small: 'Small',
|
|
mini: 'Mini',
|
|
switchSuccess: 'Switch Size Success'
|
|
},
|
|
...menuMessages
|
|
}
|