validator.ts 667 Bytes
export default {
  json: 'The format of the input JSON object is incorrect. Please check whether the data structure and fields are correct.',
  jsonNotEmpty: 'JSON objects cannot be empty objects',
  hex: 'Please enter ASCII or HEX service command (0~9/A~F)',
  emptyPassword: 'Password cannot be empty',
  enteredPasswordsDiffer: 'Entered passwords differ!',
  passwordRegularization:
    'Passwords must contain uppercase and lowercase letters, numbers, and special characters, with a minimum of 8 characters and a maximum of 30 characters',
  phone: 'Please enter the correct mobile number',
  hexLength: 'The length of the HEX command must be an even number',
};