65 lines
2.8 KiB
JavaScript
65 lines
2.8 KiB
JavaScript
export default {
|
|
'global': {
|
|
'app': {
|
|
'title': 'lab account book',
|
|
}
|
|
},
|
|
'error': {
|
|
'unauthorized access': 'Unauthorized access',
|
|
'token is expired': 'Token is expired',
|
|
'token is invalid': 'Token is invalid',
|
|
'user token id is invalid': 'User token id is invalid',
|
|
'token id is invalid': 'Token id is invalid',
|
|
'token is not found': 'Token is not found',
|
|
'token type is invalid': 'Token type is invalid',
|
|
'token requires two factor authorization': 'Token requires two factor authorization',
|
|
'token does not require two factor authorization': 'Token does not require two factor authorization',
|
|
'user id is invalid': 'User id is invalid',
|
|
'username is empty': 'Username is empty',
|
|
'email is empty': 'Email is empty',
|
|
'password is empty': 'Password is empty',
|
|
'user not found': 'User not found',
|
|
'password is wrong': 'Password is wrong',
|
|
'username already exists': 'Username already exists',
|
|
'email already exists': 'Email already exists',
|
|
'login name is invalid': 'Login name is invalid',
|
|
'login name or password is invalid': 'Login name or password is invalid',
|
|
'login name or password is wrong': 'Login name or password is wrong',
|
|
'passcode is invalid': 'Passcode is invalid',
|
|
'two factor recovery code is invalid': 'Two factor recovery code is invalid',
|
|
'two factor is not enabled': 'Two factor is not enabled',
|
|
'two factor has already been enabled': 'Two factor has already been enabled',
|
|
'two factor recovery code does not exist': 'Two factor recovery code does not exist',
|
|
},
|
|
'OK': 'OK',
|
|
'Cancel': 'Cancel',
|
|
'Done': 'Done',
|
|
'Home': 'Home',
|
|
'Journals': 'Journals',
|
|
'Accounts': 'Accounts',
|
|
'Charts': 'Charts',
|
|
'New Record': 'New Record',
|
|
'Settings': 'Settings',
|
|
'Back': 'Back',
|
|
'Username': 'Username',
|
|
'Username or Email': 'Username or Email',
|
|
'Password': 'Password',
|
|
'Log In': 'Log In',
|
|
'Don\'t have an account?': 'Don\'t have an account?',
|
|
'Create an account': 'Create an account',
|
|
'Forget Password?': 'Forget Password?',
|
|
'Please input username': 'Please input username',
|
|
'Please input password': 'Please input password',
|
|
'Unable to login': 'Unable to login',
|
|
'Two-Factor Authentication': 'Two-Factor Authentication',
|
|
'Passcode': 'Passcode',
|
|
'Verify': 'Verify',
|
|
'Please input passcode': 'Please input passcode',
|
|
'Unable to verify': 'Unable to verify',
|
|
'Use a scratch code': 'Use a scratch code',
|
|
'Language': 'Language',
|
|
'Log Out': 'Log Out',
|
|
'Are you sure you want to log out?': 'Are you sure you want to log out?',
|
|
'Unable to logout': 'Unable to logout',
|
|
};
|