58 lines
1.4 KiB
PHP
58 lines
1.4 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Enum Translations (English)
|
|
*
|
|
* To add new enum:
|
|
* 1. Add new array here (e.g., 'service_type' => [...])
|
|
* 2. Add corresponding translation in lang/vi/enums.php
|
|
* 3. Reload browser
|
|
*/
|
|
|
|
return [
|
|
// Handover Status
|
|
'handover' => [
|
|
'not_ready' => 'Not ready',
|
|
'ready' => 'Ready',
|
|
'handed_over' => 'Handed over',
|
|
'scheduled' => 'Scheduled',
|
|
],
|
|
|
|
// Service Type
|
|
'service' => [
|
|
'management_fee' => 'Management fee',
|
|
'gratitude' => 'Gratitude',
|
|
'self_business' => 'Self business',
|
|
],
|
|
|
|
// Contract Status
|
|
'contract_status' => [
|
|
'active' => 'Active',
|
|
'expired' => 'Expired',
|
|
'liquidated' => 'Liquidated',
|
|
],
|
|
|
|
// Contract Category
|
|
'contract_category' => [
|
|
'ownership' => 'Ownership',
|
|
'business' => 'Business',
|
|
],
|
|
'contract_category_label' => 'Contract Category',
|
|
|
|
// Contract Type (V2)
|
|
'contract_type' => [
|
|
'deposit' => 'Deposit',
|
|
'purchase' => 'Purchase',
|
|
'transfer' => 'Transfer',
|
|
'rental' => 'Rental',
|
|
'self_business' => 'Self Business',
|
|
'bcc' => 'Business Cooperation (BCC)',
|
|
],
|
|
|
|
// Labels for Select filters
|
|
'service_type' => 'Service Type',
|
|
'status' => 'Status',
|
|
'handover_status' => 'Handover Status',
|
|
'contract_type_label' => 'Contract Type',
|
|
];
|