Files
nexusphp/resources/lang/en/medal.php

52 lines
2.0 KiB
PHP
Raw Normal View History

2022-01-19 23:54:55 +08:00
<?php
return [
'label' => 'Medal',
'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)',
'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',
2023-01-26 23:08:49 +08:00
'bonus_addition_factor' => 'Bonus addition factor',
2023-01-30 14:06:12 +08:00
'bonus_addition' => 'Bonus addition',
2023-01-26 23:08:49 +08:00
'bonus_addition_factor_help' => 'For example: 0.01 means 1% addition, leave blank no addition',
'gift_fee_factor' => 'Gift fee factor',
2023-01-30 14:06:12 +08:00
'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',
2022-12-19 19:01:22 +08:00
],
'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',
'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 ',
2023-01-30 14:47:02 +08:00
'max_allow_wearing' => 'A maximum of :count medals can be worn at the same time',
'wearing_status_text' => [
0 => 'Wearing',
1 => 'Not wearing'
],
2022-01-19 23:54:55 +08:00
];