translate base
This commit is contained in:
59
lang/en/enums.php
Normal file
59
lang/en/enums.php
Normal 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',
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user