mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 20:40:49 +08:00
71 lines
3.1 KiB
PHP
71 lines
3.1 KiB
PHP
<?php
|
||
|
||
return [
|
||
'label' => '勋章',
|
||
'action_wearing' => '佩戴',
|
||
'admin' => [
|
||
'list' => [
|
||
'page_title' => '勋章列表'
|
||
]
|
||
],
|
||
'get_types' => [
|
||
\App\Models\Medal::GET_TYPE_EXCHANGE => '兑换',
|
||
\App\Models\Medal::GET_TYPE_GRANT => '授予',
|
||
],
|
||
'fields' => [
|
||
'get_type' => '获取方式',
|
||
'description' => '描述',
|
||
'image_large' => '图片',
|
||
'price' => '价格',
|
||
'duration' => '购买后有效期(天)',
|
||
'sale_begin_time' => '上架开始时间',
|
||
'sale_begin_time_help' => '此时间之后可以购买,留空不限制',
|
||
'sale_end_time' => '上架结束时间',
|
||
'sale_end_time_help' => '此时间之前可以购买,留空不限制',
|
||
'inventory' => '库存',
|
||
'inventory_help' => '留空表示无限',
|
||
'sale_begin_end_time' => '可购买时间',
|
||
'users_count' => '已售数量',
|
||
'bonus_addition_factor' => '魔力加成系数',
|
||
'bonus_addition' => '魔力加成',
|
||
'bonus_addition_factor_help' => '如:0.01 表示 1% 的加成,留空无加成',
|
||
'gift_fee_factor' => '赠送手续费系数',
|
||
'gift_fee' => '手续费',
|
||
'gift_fee_factor_help' => '赠送给其他用户时额外收取手续费等于价格乘以此系数',
|
||
'bonus_addition_duration' => '魔力加成有效时长',
|
||
'bonus_addition_duration_help' => '单位:天,设置为 0 表示永久有效。从获得时开始算,无论是否佩戴',
|
||
],
|
||
'buy_already' => '已经购买',
|
||
'buy_btn' => '购买',
|
||
'confirm_to_buy' => '确定要购买吗?',
|
||
'require_more_bonus' => '需要更多魔力值',
|
||
'grant_only' => '仅授予',
|
||
'before_sale_begin_time' => '未到可购买时间',
|
||
'after_sale_end_time' => '已过可购买时间',
|
||
'inventory_empty' => '库存不足',
|
||
'gift_btn' => '赠送',
|
||
'confirm_to_gift' => '确定要赠送给用户 ',
|
||
'max_allow_wearing' => '最多允许同时佩戴 :count 个勋章',
|
||
'wearing_status_text' => [
|
||
0 => '未佩戴',
|
||
1 => '已佩戴'
|
||
],
|
||
'bonus_addition_expire_at' => '魔力加成过期时间',
|
||
'is_expired' => '是否过期',
|
||
'is_bonus_addition_expired' => '是否魔力加成过期',
|
||
'is_wearing' => '是否佩戴',
|
||
'increase_duration' => '延长时长',
|
||
'increase_duration_help' => '单位:天。将过期时间在原基础上统一延长',
|
||
'update_expire_at' => '设置过期时间',
|
||
'update_expire_at_help' => '将过期时间统一设置为指定值',
|
||
'bulk_action_increase' => '延长',
|
||
'bulk_action_update' => '设置',
|
||
'bulk_action_cancel' => '取消',
|
||
'bulk_action_increase_expire_at' => '批量延长过期时间',
|
||
'bulk_action_update_expire_at' => '批量设置过期时间',
|
||
'bulk_action_cancel_expire_at' => '批量取消过期时间',
|
||
'bulk_action_increase_bonus_addition_expire_at' => '批量延长魔力加成过期时间',
|
||
'bulk_action_update_bonus_addition_expire_at' => '批量设置魔力加成过期时间',
|
||
'bulk_action_cancel_bonus_addition_expire_at' => '批量取消魔力加成过期时间',
|
||
];
|