messages.php 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php
  2. use App\Constants\HttpStatus;
  3. return [
  4. 'translate' => [
  5. 'Reading' => 'Reading',
  6. 'Traveling' => 'Traveling',
  7. 'Photography' => 'Photography',
  8. 'Music' => 'Music',
  9. 'Painting' => 'Painting',
  10. 'Yoga' => 'Yoga',
  11. 'Cooking' => 'Cooking',
  12. 'Calligraphy' => 'Calligraphy',
  13. 'Crafts' => 'Crafts',
  14. 'History' => 'History',
  15. 'Drinking' => 'Drinking',
  16. 'Coding' => 'Coding',
  17. 'Valuing family' => 'Valuing family',
  18. 'Skydiving' => 'Skydiving',
  19. 'Diving' => 'Diving',
  20. '$50K to $100K' => '$50K to $100K',
  21. '$100K to $500K' => '$100K to $500K',
  22. '$500K to $1M' => '$500K to $1M',
  23. '$1M to $5M' => '$1M to $5M',
  24. '$5M to $10M' => '$5M to $10M',
  25. 'Over $10M' => 'Over $10M',
  26. 'Male' => 'Male',
  27. 'Female' => 'Female',
  28. '邀请注册' => 'Invite to register',
  29. '首次邀请注册' => 'First invitation to register',
  30. '注册' => 'Register',
  31. '邀请完善' => 'Invite to complete',
  32. '完善信息' => 'Complete information',
  33. '普通区抽奖' => 'Normal area lottery',
  34. '金币区抽奖' => 'Gold area lottery',
  35. '至尊区抽奖' => 'Supreme area lottery',
  36. ],
  37. HttpStatus::CUSTOM_ERROR => '',
  38. HttpStatus::UNKNOWN_ERROR => 'Unknown error.',
  39. HttpStatus::OK => 'OK',
  40. HttpStatus::USER_DOES_NOT_EXIST => "User does not exist.",
  41. HttpStatus::PASSWORDS_ERROR => "Password error",
  42. HttpStatus::VERIFICATION_CODE_ERROR => 'Verification code error.',
  43. HttpStatus::VERIFICATION_CODE_EXPIRED => 'The verification code has expired.',
  44. HttpStatus::PASSWORD_INCONSISTENCY => 'Password inconsistency.',
  45. HttpStatus::USERNAME_ALREADY_EXISTS => 'The user name already exists. Please log in directly.',
  46. HttpStatus::EMAIL_ALREADY_EXISTS => 'Email already exists, please login directly.',
  47. HttpStatus::USERNAME_ERROR => 'User name error.',
  48. HttpStatus::VALIDATION_FAILED => 'Parameter validation failure.',
  49. HttpStatus::SYSTEM_ERROR => 'System error.',
  50. HttpStatus::AUTHORIZATION_HEADER_NOT_FOUND => 'Please log in.',
  51. HttpStatus::NO_COLLECT_YOURSELF => "Don't collect yourself.",
  52. HttpStatus::NO_BASIC_INFO => 'Please fill in the basic information first.',
  53. HttpStatus::NOT_FOUND => 'Not Found.',
  54. HttpStatus::AVATAR_MUST_SQUARE => 'Please crop the picture and upload it again.',
  55. HttpStatus::PAIRING_FAILURE => 'Pairing failure.',
  56. HttpStatus::COLLECT_COUNT_REACH_MAX => 'The number of collectibles reached the maximum.',
  57. HttpStatus::SEND_CODE_ERROR => 'Send failure',
  58. HttpStatus::PHONE_ERROR => 'The phone number is incorrect',
  59. HttpStatus::POST_DOES_NOT_EXIST => 'Post does not exist',
  60. HttpStatus::FILE_UPLOAD_ERROR => 'File upload error.',
  61. HttpStatus::INVITATION_CODE_ERROR => "Invitation code error.",
  62. HttpStatus::USER_ANOTHER_DEVICE => "The user has logged in to another device.",
  63. HttpStatus::INSUFFICIENT => "The remaining times are insufficient.",
  64. HttpStatus::MAXIMUM_NUMBER_OF_ADDRESSES => 'A maximum of 10 addresses can be added.',
  65. HttpStatus::HTTP_POST_ERROR => 'HTTP Post error.',
  66. HttpStatus::IM_ERROR => 'Im error',
  67. HttpStatus::PHONE_ALREADY_EXISTS => 'Phone number already exists, please login directly.',
  68. HttpStatus::GOOGLE_ERROR => 'Google login error.',
  69. HttpStatus::INSUFFICIENT_CHAT_BALANCE => 'Insufficient chat balance',
  70. HttpStatus::INSUFFICIENT_WALLET => 'Insufficient wallet balance',
  71. HttpStatus::FACEBOOK_ERROR => 'Facebook error',
  72. HttpStatus::VERIFY_ERROR => 'Verification failure',
  73. HttpStatus::PAY_VERIFY_ERROR =>'PAY_VERIFY_ERROR',
  74. HttpStatus::IM_SYSTEM_ERROR =>'Im system error',
  75. ];