123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- const word = {
- login: 'login',
- 'verify-mobile': 'verify phone number'
- }
- const sentence = {
- 'uni-id-account-exists': 'Account exists',
- 'uni-id-account-not-exists': 'Account does not exists',
- 'uni-id-account-not-exists-in-current-app': 'Account does not exists in current app',
- 'uni-id-account-conflict': 'User account conflict',
- 'uni-id-account-banned': 'Account has been banned',
- 'uni-id-account-auditing': 'Account audit in progress',
- 'uni-id-account-audit-failed': 'Account audit failed',
- 'uni-id-account-closed': 'Account has been closed',
- 'uni-id-captcha-required': 'Captcha required',
- 'uni-id-password-error': 'Password error',
- 'uni-id-password-error-exceed-limit': 'The number of password errors is excessive',
- 'uni-id-invalid-username': 'Invalid username',
- 'uni-id-invalid-password': 'invalid password',
- 'uni-id-invalid-password-super': 'Passwords must have 8-16 characters and contain uppercase letters, lowercase letters, numbers, and symbols.',
- 'uni-id-invalid-password-strong': 'Passwords must have 8-16 characters and contain letters, numbers and symbols.',
- 'uni-id-invalid-password-medium': 'Passwords must have 8-16 characters and contain at least two of the following: letters, numbers, and symbols.',
- 'uni-id-invalid-password-weak': 'Passwords must have 6-16 characters and contain letters and numbers.',
- 'uni-id-invalid-mobile': 'Invalid mobile phone number',
- 'uni-id-invalid-email': 'Invalid email address',
- 'uni-id-invalid-nickname': 'Invalid nickname',
- 'uni-id-invalid-param': 'Invalid parameter',
- 'uni-id-param-required': 'Parameter required: {param}',
- 'uni-id-get-third-party-account-failed': 'Get third party account failed',
- 'uni-id-get-third-party-user-info-failed': 'Get third party user info failed',
- 'uni-id-mobile-verify-code-error': 'Verify code error or expired',
- 'uni-id-email-verify-code-error': 'Verify code error or expired',
- 'uni-id-admin-exists': 'Administrator exists',
- 'uni-id-permission-error': 'Permission denied',
- 'uni-id-system-error': 'System error',
- 'uni-id-set-invite-code-failed': 'Set invite code failed',
- 'uni-id-invalid-invite-code': 'Invalid invite code',
- 'uni-id-change-inviter-forbidden': 'Change inviter is not allowed',
- 'uni-id-bind-conflict': 'This account has been bound',
- 'uni-id-admin-exist-in-other-apps': 'Administrator is registered in other consoles',
- 'uni-id-unbind-failed': 'Please bind first and then unbind',
- 'uni-id-unbind-not-supported': 'Unbinding is not supported',
- 'uni-id-unbind-mobile-not-exists': 'This is the only way to login at the moment, please bind your phone number and then try to unbind',
- 'uni-id-unbind-password-not-exists': 'Please set a password first',
- 'uni-id-unsupported-request': 'Unsupported request',
- 'uni-id-illegal-request': 'Illegal request',
- 'uni-id-config-field-required': 'Config field required: {field}',
- 'uni-id-config-field-invalid': 'Config field: {field} is invalid',
- 'uni-id-frv-fail': 'Real name certify failed',
- 'uni-id-frv-processing': 'Waiting for face recognition',
- 'uni-id-realname-verified': 'This account has been verified',
- 'uni-id-idcard-exists': 'The ID number has been bound to the account',
- 'uni-id-invalid-idcard': 'ID number is invalid',
- 'uni-id-invalid-realname': 'The name can only be Chinese characters',
- 'uni-id-unknown-error': 'unknown error',
- 'uni-id-realname-verify-upper-limit': 'The number of real-name certify on the day has reached the upper limit'
- }
- module.exports = {
- ...word,
- ...sentence
- }
|