them log, chinh upload
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

This commit is contained in:
2026-05-09 11:00:59 +00:00
parent 96e1ce4f40
commit efa97b6c71
33 changed files with 1055 additions and 47 deletions

View File

@@ -14,6 +14,7 @@ return [
'resource_tags' => 'Tags',
'resource_roles' => 'Roles',
'resource_users' => 'Users',
'resource_activity_logs' => 'Activity Logs',
// Status
'status_pending' => 'Pending',
@@ -89,6 +90,7 @@ return [
'signed_status' => 'Signed Status',
'contract_info' => 'Contract Information',
'feedback_history' => 'Feedback History',
'service_type' => 'Service Type',
'tab_all' => 'All',
'min' => 'min',
'na' => 'N/A',
@@ -130,4 +132,16 @@ return [
'blade_file_count' => ':count file(s)',
'blade_proof' => 'Proof',
'blade_evidence' => 'Evidence',
// Activity Logs
'system' => 'System',
'time' => 'Time',
'action' => 'Action',
'action_import' => 'Import',
'action_export' => 'Export',
'action_transfer' => 'Transfer',
'action_close' => 'Close',
'action_create' => 'Create',
'action_update' => 'Update',
'action_delete' => 'Delete',
];

View File

@@ -1,6 +1,16 @@
<?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',
@@ -8,21 +18,30 @@ return [
'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',
];

View File

@@ -54,4 +54,10 @@ return [
// CreateFeedback
'created_via' => 'Feedback created via :channel',
'unknown_channel' => 'unknown channel',
// Activity Log
'log_import_done' => 'Import completed: :file - :rows rows',
'log_export_done' => 'Exported :tables tables, :rows rows',
'log_transfer' => ':title transferred from :from to :to',
'log_close' => 'Ticket closed: :title',
];