mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 20:40:49 +08:00
28 lines
714 B
PHP
28 lines
714 B
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)',
|
|
],
|
|
'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',
|
|
];
|