123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- return [
- 'Id' => 'ID',
- 'Withdraw Config' => '提现配置',
- 'Basic configuration' => '基础配置',
- 'Withdrawal Setting' => '提现设置',
- 'Method setting' => '方式设置',
-
- // 配置项目
- 'Minimum amount' => '最低提现金额',
- 'Maximum amount' => '最高提现金额',
- 'Charge rate' => '手续费率',
- 'Max withdraw times' => '最大提现次数',
- 'Times unit' => '次数单位',
- 'Withdrawal methods' => '提现方式',
- 'Auto arrival' => '自动到账',
-
- // 提示文字
- 'Minimum amount tips' => '设置为0表示不限制最小金额',
- 'Maximum amount tips' => '设置为0表示不限制最大金额',
- 'Charge rate tips' => '例如:设置1表示收取1%的手续费',
- 'Max withdraw times tips' => '设置为0表示不限制提现次数',
- 'Times unit tips' => '提现次数限制的时间单位',
- 'Withdrawal methods tips' => '选择支持的提现方式',
- 'Auto arrival tips' => '开启后支付宝提现将直接审核通过并自动打款;微信零钱提现只支持用户自助提现,自动到账;手动打款需商户自行线下打款',
-
- // 单位和选项
- 'Yuan' => '元',
- 'Percent' => '%',
- 'Times' => '次',
- 'Day' => '每天',
- 'Month' => '每月',
-
- // 提现方式
- 'Wechat' => '微信零钱',
- 'Alipay' => '支付宝账户',
- 'Bank' => '银行卡',
-
- // 按钮和操作
- 'Enable' => '开启',
- 'Disable' => '关闭',
- 'Save' => '保存',
- 'Reset' => '重置',
-
- // 消息提示
- 'Config saved successfully' => '配置保存成功',
- 'Config save failed' => '配置保存失败',
- 'Invalid configuration' => '配置参数不合法',
- 'Minimum amount must be greater than 0' => '最低提现金额必须大于0',
- 'Maximum amount must be greater than minimum amount' => '最高提现金额必须大于最低提现金额',
- 'Charge rate must be between 0 and 100' => '手续费率必须在0-100之间',
- 'Max withdraw times must be greater than 0' => '最大提现次数必须大于0',
- ];
|