2022-01-19 23:54:55 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
return [
|
2022-10-22 01:49:34 +08:00
|
|
|
'label' => 'Medal',
|
2022-04-12 01:48:22 +08:00
|
|
|
'action_wearing' => 'Wear',
|
2022-01-19 23:54:55 +08:00
|
|
|
'admin' => [
|
|
|
|
|
'list' => [
|
|
|
|
|
'page_title' => 'Medal list'
|
|
|
|
|
]
|
2022-06-27 01:39:01 +08:00
|
|
|
],
|
|
|
|
|
'get_types' => [
|
|
|
|
|
\App\Models\Medal::GET_TYPE_EXCHANGE => 'Exchange',
|
|
|
|
|
\App\Models\Medal::GET_TYPE_GRANT => 'Grant',
|
|
|
|
|
],
|
2022-12-19 19:01:22 +08:00
|
|
|
'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',
|
2023-01-04 19:35:06 +08:00
|
|
|
'grant_only' => 'Grant only',
|
2022-01-19 23:54:55 +08:00
|
|
|
];
|