web.php 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. return [
  3. 'verify' => [
  4. 'send_error' => '获取验证码失败',
  5. 'phone_length_invalid' => '抱歉,不支持此位数的手机号码',
  6. 'phone_already_bound' => '该手机号已被绑定',
  7. 'account_not_exist' => '发送验证码失败,账户不存在',
  8. 'too_many_ip_requests' => '您已从此IP发送了太多消息,发送被阻止',
  9. 'too_many_phone_requests' => '您已从此手机号发送了太多消息,发送被阻止',
  10. 'too_frequent_requests' => '您发送太快,请稍后再试',
  11. 'sms_too_many' => '您已发送太多短信,已被阻止发送',
  12. 'no_wrong_later' => '您的号码不正确或暂时不可用,请稍后再试',
  13. ],
  14. 'withdraw' => [
  15. 'try_again_later' => '请稍后再试',
  16. 'cpf_number_used' => 'CPF号码已被多次使用,无法保存',
  17. 'pix_failed' => 'PIX操作失败',
  18. 'score_fail' => '金额必须是整数值',
  19. 'no_withdraw_value' => '可提现金额不足,您需要玩更多游戏',
  20. 'too_low' => '低于最低提款金额',
  21. 'too_high' => '高于最高提款金额',
  22. 'day_max' => '超过每日提款限额',
  23. 'no_enouth_score' => '手头没有足够的钱',
  24. 'in_game' => '抱歉,您现在正在游戏中',
  25. 'no_deposit' => '您需要先存款!',
  26. 'params_error' => '参数错误',
  27. 'pix_type_missing' => '缺少PIX类型',
  28. ],
  29. 'error' => [
  30. 'user_not_exist' => '用户ID错误!',
  31. 'Locale_not_found' => '不支持该语言环境!',
  32. 'user_already_bind' => '用户已绑定!',
  33. 'country_not_found' => '找不到该国家!',
  34. ],
  35. 'agent' => [
  36. 'fail_wrong_id' => '记录ID不正确',
  37. 'fail_wrong_status' => '已收到',
  38. ],
  39. 'payment' => [
  40. 'paytype_error' => '支付类型错误',
  41. 'valid_failed' => '支付验证失败',
  42. 'activity_closed' => '活动已关闭',
  43. 'invalid_params' => '无效参数',
  44. ],
  45. 'user' => [
  46. 'phone_fail' => '电话号码不正确',
  47. 'paypass_fail' => '原密码错误,请重新输入',
  48. 'email_fail' => '邮箱格式错误',
  49. ],
  50. 'bank' => [
  51. 'account_empty' => '银行账户不能为空',
  52. 'account_invalid_length' => '银行卡号必须有16或18位数字',
  53. 'clabe_invalid_length' => 'Clabe号码必须有18位数字',
  54. 'username_empty' => '姓名不能为空',
  55. 'branch_empty' => '分行代码不能为空',
  56. 'try_again_later' => '请稍后再试',
  57. 'missing_userid' => '参数错误',
  58. 'pix_type_missing' => '缺少PIX类型',
  59. 'cpf_used_multiple_times' => 'CPF号码已被多次使用,无法保存',
  60. ],
  61. 'protect' => [
  62. 'score_limit' => '已达到积分限制',
  63. 'times_limit' => '已达到保护次数限制',
  64. ],
  65. 'checkin' => [
  66. 'user_signin_error' => '获取用户签到信息失败',
  67. 'user_already_signed_in' => '您今天已经签到',
  68. 'signin_event_ended' => '签到活动已结束',
  69. 'signin_data_error' => '读取签到数据失败',
  70. 'recharge_required' => '需要充值才能签到',
  71. 'unknown_error' => '未知错误',
  72. 'exception_occurred' => '处理您的请求时发生错误',
  73. ],
  74. 'activity' => [
  75. 'redpack_not_available' => '没有红包可用',
  76. 'redpack_no_recharge' => '您需要先充值!',
  77. ],
  78. ];