web.php 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. return [
  3. 'verify' => [
  4. 'send_error' => 'Failed to get verification code',
  5. 'phone_length_invalid' => 'Sorry, mobile numbers with this number of digits are not supported',
  6. 'phone_already_bound' => 'The phone number has already been bound',
  7. 'account_not_exist' => 'Failed to send code, account does not exist',
  8. 'too_many_ip_requests' => 'You have sent too many messages from this IP, sending is blocked',
  9. 'too_many_phone_requests' => 'You have sent too many messages from this phone number, sending is blocked',
  10. 'too_frequent_requests' => 'You are sending too fast, please try again later',
  11. 'sms_too_many' => 'You have sent too many text messages and are blocked from sending',
  12. 'no_wrong_later' => 'Your number is incorrect or temporarily unavailable, please try again later',
  13. ],
  14. 'withdraw' => [
  15. 'try_again_later' => 'Please try again later',
  16. 'cpf_number_used' => 'The CPF number has been used several times and cannot be saved',
  17. 'pix_failed' => 'The PIX operation failed',
  18. 'score_fail' => 'Amount must be an integer value',
  19. 'no_withdraw_value' => 'The withdrawable amount is not enough,you need play more games',
  20. 'too_low' => 'Lower than the minimum withdrawal amount',
  21. 'too_high' => 'Higher than the maximum withdrawal amount',
  22. 'day_max' => 'Exceeded the daily withdrawal limit',
  23. 'no_enouth_score' => 'Not enough money on hand',
  24. 'in_game' => 'Sorry, You\'re in game for now',
  25. 'no_deposit' => 'You need deposit first!',
  26. 'params_error' => 'Parameters error',
  27. 'pix_type_missing' => 'The PIX type is missing',
  28. ],
  29. 'error' => [
  30. 'user_not_exist' => 'Wrong UserID!',
  31. 'Locale_not_found' => 'Locale is not support!',
  32. 'user_already_bind' => 'User already bind!',
  33. 'country_not_found' => 'Cannot find the country!',
  34. ],
  35. 'agent' => [
  36. 'fail_wrong_id' => 'Incorrect records ID',
  37. 'fail_wrong_status' => 'Already received',
  38. ],
  39. 'payment' => [
  40. 'paytype_error' => 'PayType ERROR',
  41. 'valid_failed' => 'Payment validation failed',
  42. 'activity_closed' => 'Activity is closed',
  43. 'invalid_params' => 'Invalid parameters',
  44. ],
  45. 'user' => [
  46. 'phone_fail' => 'Not correct phone number',
  47. 'paypass_fail' => 'The original password is wrong, please enter it again',
  48. 'email_fail' => 'Wrong email format',
  49. ],
  50. 'bank' => [
  51. 'account_empty' => 'The bank account cannot be empty',
  52. 'account_invalid_length' => 'The bank number must have 16 or 18 digits',
  53. 'clabe_invalid_length' => 'The Clabe number must have 18 digits',
  54. 'username_empty' => 'The name cannot be empty',
  55. 'branch_empty' => 'The branch code cannot be empty',
  56. 'try_again_later' => 'Please try again later',
  57. 'missing_userid' => 'Params error',
  58. 'pix_type_missing' => 'The PIX type is missing',
  59. 'cpf_used_multiple_times' => 'The CPF number has been used multiple times and cannot be saved',
  60. ],
  61. 'protect' => [
  62. 'score_limit' => 'Score limit reached',
  63. 'times_limit' => 'Protect times limit reached',
  64. ],
  65. 'checkin' => [
  66. 'user_signin_error' => 'Failed to get user sign-in information',
  67. 'user_already_signed_in' => 'You have already signed in today',
  68. 'signin_event_ended' => 'The sign-in activity has ended',
  69. 'signin_data_error' => 'Failed to read sign-in data',
  70. 'recharge_required' => 'Recharge is required to sign in',
  71. 'unknown_error' => 'Unknown error',
  72. 'exception_occurred' => 'An error occurred while processing your request',
  73. ],
  74. 'activity' => [
  75. 'redpack_not_available' => 'There is no RedPack',
  76. 'redpack_no_recharge' => 'You need deposit first!',
  77. ],
  78. ];