mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 20:40:49 +08:00
48 lines
1.9 KiB
PHP
48 lines
1.9 KiB
PHP
<?php
|
|
|
|
return [
|
|
'label' => 'Medal',
|
|
'action_wearing' => 'Wear',
|
|
'admin' => [
|
|
'list' => [
|
|
'page_title' => 'Medal list'
|
|
]
|
|
],
|
|
'get_types' => [
|
|
\App\Models\Medal::GET_TYPE_EXCHANGE => 'Exchange',
|
|
\App\Models\Medal::GET_TYPE_GRANT => 'Grant',
|
|
],
|
|
'fields' => [
|
|
'get_type' => 'Get type',
|
|
'description' => 'Description',
|
|
'image_large' => 'Image',
|
|
'price' => 'Price',
|
|
'duration' => 'Valid after buy (days)',
|
|
'sale_begin_time' => 'Sale begin time',
|
|
'sale_begin_time_help' => 'User can buy after this time, leave blank without restriction',
|
|
'sale_end_time' => 'Sale end time',
|
|
'sale_end_time_help' => 'User can buy before this time, leave blank without restriction',
|
|
'inventory' => 'Inventory',
|
|
'inventory_help' => 'Leave blank without restriction',
|
|
'sale_begin_end_time' => 'Available for sale',
|
|
'users_count' => 'Sold counts',
|
|
'bonus_addition_factor' => 'Bonus addition factor',
|
|
'bonus_addition' => 'Bonus addition',
|
|
'bonus_addition_factor_help' => 'For example: 0.01 means 1% addition, leave blank no addition',
|
|
'gift_fee_factor' => 'Gift fee factor',
|
|
'gift_fee' => 'Gift fee',
|
|
'gift_fee_factor_help' => 'The additional fee charged for gifts to other users is equal to the price multiplied by this factor',
|
|
],
|
|
'buy_already' => 'Already buy',
|
|
'buy_btn' => 'Buy',
|
|
'confirm_to_buy' => 'Sure you want to buy?',
|
|
'require_more_bonus' => 'Require more bonus',
|
|
'grant_only' => 'Grant only',
|
|
'before_sale_begin_time' => 'Before sale begin time',
|
|
'after_sale_end_time' => 'After sale end time',
|
|
'inventory_empty' => 'Inventory empty',
|
|
'gift_btn' => 'Gift',
|
|
'confirm_to_gift' => 'Confirm to gift to user ',
|
|
'max_allow_wearing' => 'A maximum of :count medals can be worn at the same time',
|
|
];
|