mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 20:40:49 +08:00
27 lines
693 B
PHP
27 lines
693 B
PHP
<?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' => '購買後有效期(天)',
|
|
],
|
|
'buy_already' => '已經購買',
|
|
'buy_btn' => '購買',
|
|
'confirm_to_buy' => '確定要購買嗎?',
|
|
'require_more_bonus' => '需要更多魔力值',
|
|
];
|