Files
minicrm/lang/en/enums.php
phuongtc efa97b6c71
Some checks failed
Tests / PHP 8.3 (push) Has been cancelled
Tests / PHP 8.4 (push) Has been cancelled
Tests / PHP 8.5 (push) Has been cancelled
them log, chinh upload
2026-05-09 11:00:59 +00:00

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',
];