Files
minicrm/lang/vi/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.2 KiB
PHP

<?php
/**
* Enum Translations (Vietnamese)
*
* Để thêm enum mới:
* 1. Thêm mảng mới vào đây (ví dụ: 'service_type' => [...])
* 2. Thêm bản dịch tương ứng trong lang/en/enums.php
* 3. Reload browser
*/
return [
// Handover Status
'handover' => [
'not_ready' => 'Chưa đủ điều kiện',
'ready' => 'Đủ điều kiện',
'handed_over' => 'Đã bàn giao',
'scheduled' => 'Đã lên lịch',
],
// Service Type
'service' => [
'management_fee' => 'Phí quản lý',
'gratitude' => 'Tri ân',
'self_business' => 'Tự doanh',
],
// Contract Status
'contract_status' => [
'active' => 'Đang hiệu lực',
'expired' => 'Hết hạn',
'liquidated' => 'Đã thanh lý',
],
// Contract Type
'contract_type' => [
'sale' => 'HĐ Mua bán',
'lease' => 'HĐ Thuê',
'bcc' => 'HĐ Hợp tác kinh doanh (BCC)',
],
// Labels cho Select filters
'service_type' => 'Loại dịch vụ',
'status' => 'Trạng thái',
'handover_status' => 'Trạng thái bàn giao',
'contract_type_label' => 'Loại hợp đồng',
];