48 lines
1.1 KiB
PHP
48 lines
1.1 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 Type
|
|
'contract_type' => [
|
|
'sale' => 'Sale contract',
|
|
'lease' => 'Lease contract',
|
|
'bcc' => 'Business cooperation contract (BCC)',
|
|
],
|
|
|
|
// Labels for Select filters
|
|
'service_type' => 'Service Type',
|
|
'status' => 'Status',
|
|
'handover_status' => 'Handover Status',
|
|
'contract_type_label' => 'Contract Type',
|
|
];
|