user.php 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <?php
  2. return [
  3. 'user' => [
  4. 'changePassword' => [
  5. 'user_not_exist' => '该用户不存在',
  6. 'old_password_wrong' => '旧密码有误',
  7. 'save_failed' => '保存失败'
  8. ],
  9. 'info' => [
  10. 'user_not_exist' => '该用户不存在'
  11. ],
  12. 'getSubscribe' => [
  13. 'user_not_exist' => '该用户不存在',
  14. 'plan_not_exist' => '订阅计划不存在',
  15. ],
  16. 'resetSecurity' => [
  17. 'user_not_exist' => '该用户不存在',
  18. 'reset_failed' => '重置失败'
  19. ],
  20. 'update' => [
  21. 'user_not_exist' => '该用户不存在',
  22. 'save_failed' => '保存失败',
  23. ],
  24. 'transfer' => [
  25. 'user_not_exist' => '该用户不存在',
  26. 'params_wrong' => '参数错误',
  27. 'insufficient_commission_balance' => '推广佣金余额不足',
  28. 'transfer_failed' => '划转失败'
  29. ]
  30. ],
  31. 'ticket' => [
  32. 'fetch' => [
  33. 'ticket_not_exist' => '工单不存在',
  34. ],
  35. 'save' => [
  36. 'exist_other_open_ticket' => '存在其他工单尚未处理',
  37. 'ticket_create_failed' => '工单创建失败',
  38. ],
  39. 'reply' => [
  40. 'params_wrong' => '参数错误',
  41. 'message_not_empty' => '消息不能为空',
  42. 'ticket_not_exist' => '工单不存在',
  43. 'ticket_close_not_reply' => '工单已关闭,无法回复',
  44. 'wait_reply' => '请等待技术支持回复',
  45. 'ticket_reply_failed' => '工单回复失败',
  46. ],
  47. 'close' => [
  48. 'params_wrong' => '参数错误',
  49. 'ticket_not_exist' => '工单不存在',
  50. 'close_failed' => '关闭失败',
  51. ],
  52. 'withdraw' => [
  53. 'not_support_withdraw_method' => '不支持的提现方式',
  54. 'system_require_withdraw_limit' => '当前系统要求的提现门槛佣金需为:limitCNY',
  55. 'ticket_subject' => '[提现申请]本工单由系统发出',
  56. 'ticket_create_failed' => '工单创建失败',
  57. 'ticket_message' => "提现方式::method\r\n提现账号::account\r\n"
  58. ]
  59. ],
  60. 'plan' => [
  61. 'fetch' => [
  62. 'plan_not_exist' => '订阅计划不存在'
  63. ]
  64. ],
  65. 'order' => [
  66. 'details' => [
  67. 'order_not_exist' => '订单不存在',
  68. 'plan_not_exist' => '订阅计划不存在',
  69. ],
  70. 'save' => [
  71. 'plan_not_exist' => '订阅计划不存在',
  72. 'exist_open_order' => '您有未付款或开通中的订单,请稍后或取消再试',
  73. 'plan_stop_sell' => '该订阅已售罄,请更换其他订阅',
  74. 'plan_stop_renew' => '该订阅无法续费,请更换其他订阅',
  75. 'plan_stop' => '该订阅周期无法进行购买,请选择其他周期',
  76. 'plan_exist_not_buy_package' => '订阅已过期或无有效订阅,无法购买重置包',
  77. 'plan_expired' => '订阅已过期,请更换其他订阅',
  78. 'coupon_use_failed' => '优惠券使用失败',
  79. 'insufficient_balance' => '余额不足',
  80. 'order_create_failed' => '订单创建失败'
  81. ],
  82. 'checkout' => [
  83. 'order_not_exist_or_paid' => '订单不存在或已支付',
  84. 'pay_method_not_use' => '支付方式不可用',
  85. ],
  86. 'check' => [
  87. 'order_not_exist' => '订单不存在'
  88. ],
  89. 'cancel' => [
  90. 'params_wrong' => '参数有误',
  91. 'order_not_exist' => '订单不存在',
  92. 'only_cancel_pending_order' => '只可以取消待支付订单',
  93. 'cancel_failed' => '取消失败',
  94. ],
  95. 'stripeAlipay' => [
  96. 'currency_convert_timeout' => '货币转换超时,请稍后再试',
  97. 'gateway_request_failed' => '支付网关请求失败',
  98. ],
  99. 'stripeWepay' => [
  100. 'currency_convert_timeout' => '货币转换超时,请稍后再试',
  101. 'gateway_request_failed' => '支付网关请求失败',
  102. ],
  103. 'stripeCard' => [
  104. 'currency_convert_timeout' => '货币转换超时,请稍后再试',
  105. 'was_problem' => '遇到了点问题,请刷新页面稍后再试',
  106. 'deduction_failed' => '扣款失败,请检查信用卡信息'
  107. ]
  108. ],
  109. 'knowledge' => [
  110. 'fetch' => [
  111. 'knowledge_not_exist' => '知识不存在',
  112. 'apple_id_must_be_plan' => '没有有效订阅无法使用本站提供的AppleID'
  113. ]
  114. ],
  115. 'invite' => [
  116. 'save' => [
  117. 'invite_create_limit' => '已达到创建数量上限'
  118. ]
  119. ],
  120. 'coupon' => [
  121. 'check' => [
  122. 'coupon_not_empty' => '优惠券码不能为空',
  123. 'coupon_invalid' => '优惠券无效',
  124. 'coupon_not_available_by_number' => '优惠券已无可用次数',
  125. 'coupon_not_available_by_time' => '优惠券还未到可用时间',
  126. 'coupon_expired' => '优惠券已过期',
  127. 'coupon_limit_plan' => '这个计划无法使用该优惠码'
  128. ]
  129. ]
  130. ];