translate base

This commit is contained in:
Mekan1206
2026-07-31 18:08:08 +05:00
parent a794dacd39
commit 581cb8241c
413 changed files with 9087 additions and 428 deletions

59
lang/en/enums.php Normal file
View File

@@ -0,0 +1,59 @@
<?php
declare(strict_types=1);
return [
'gender' => [
'male' => 'Male',
'female' => 'Female',
'other' => 'Other',
],
'employment_status' => [
'active' => 'Active',
'inactive' => 'Inactive',
'terminated' => 'Terminated',
'on_leave' => 'On Leave',
],
'vacation_type' => [
'annual' => 'Annual',
'marriage' => 'Marriage',
'study' => 'Study',
'other' => 'Other',
],
'approval_status' => [
'pending' => 'Pending',
'approved' => 'Approved',
'rejected' => 'Rejected',
],
'document_type' => [
'passport' => 'Passport',
'contract' => 'Contract',
'medical_certificate' => 'Medical Certificate',
'education_certificate' => 'Education Certificate',
'other' => 'Other',
],
'bonus_type' => [
'performance' => 'Performance',
'holiday' => 'Holiday',
'retention' => 'Retention',
'other' => 'Other',
],
'disciplinary_severity' => [
'low' => 'Low',
'medium' => 'Medium',
'high' => 'High',
],
'import_type' => [
'employees' => 'Employees',
'vacations' => 'Vacations',
'bonuses' => 'Bonuses',
'reports' => 'Disciplinary Reports',
],
];