Files
nexusphp/resources/lang/zh_CN/medal.php
2023-01-30 14:47:02 +08:00

48 lines
1.8 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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' => '赠送给其他用户时额外收取手续费等于价格乘以此系数',
],
'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 个勋章',
];