config.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. return [
  3. 'Id' => 'ID',
  4. 'Withdraw Config' => '提现配置',
  5. 'Basic configuration' => '基础配置',
  6. 'Withdrawal Setting' => '提现设置',
  7. 'Method setting' => '方式设置',
  8. // 配置项目
  9. 'Minimum amount' => '最低提现金额',
  10. 'Maximum amount' => '最高提现金额',
  11. 'Charge rate' => '手续费率',
  12. 'Max withdraw times' => '最大提现次数',
  13. 'Times unit' => '次数单位',
  14. 'Withdrawal methods' => '提现方式',
  15. 'Auto arrival' => '自动到账',
  16. // 提示文字
  17. 'Minimum amount tips' => '设置为0表示不限制最小金额',
  18. 'Maximum amount tips' => '设置为0表示不限制最大金额',
  19. 'Charge rate tips' => '例如:设置1表示收取1%的手续费',
  20. 'Max withdraw times tips' => '设置为0表示不限制提现次数',
  21. 'Times unit tips' => '提现次数限制的时间单位',
  22. 'Withdrawal methods tips' => '选择支持的提现方式',
  23. 'Auto arrival tips' => '开启后支付宝提现将直接审核通过并自动打款;微信零钱提现只支持用户自助提现,自动到账;手动打款需商户自行线下打款',
  24. // 单位和选项
  25. 'Yuan' => '元',
  26. 'Percent' => '%',
  27. 'Times' => '次',
  28. 'Day' => '每天',
  29. 'Month' => '每月',
  30. // 提现方式
  31. 'Wechat' => '微信零钱',
  32. 'Alipay' => '支付宝账户',
  33. 'Bank' => '银行卡',
  34. // 按钮和操作
  35. 'Enable' => '开启',
  36. 'Disable' => '关闭',
  37. 'Save' => '保存',
  38. 'Reset' => '重置',
  39. // 消息提示
  40. 'Config saved successfully' => '配置保存成功',
  41. 'Config save failed' => '配置保存失败',
  42. 'Invalid configuration' => '配置参数不合法',
  43. 'Minimum amount must be greater than 0' => '最低提现金额必须大于0',
  44. 'Maximum amount must be greater than minimum amount' => '最高提现金额必须大于最低提现金额',
  45. 'Charge rate must be between 0 and 100' => '手续费率必须在0-100之间',
  46. 'Max withdraw times must be greater than 0' => '最大提现次数必须大于0',
  47. ];