mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 12:30:49 +08:00
38 lines
1.3 KiB
PHP
38 lines
1.3 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_factor_help' => 'For example: 0.01 means 1% addition, leave blank no addition',
|
|
],
|
|
'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',
|
|
];
|