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

51
lang/en/exports.php Normal file
View File

@@ -0,0 +1,51 @@
<?php
declare(strict_types=1);
return [
'employee_list' => [
'title' => 'Employee List',
'heading' => 'Employee Directory',
'generated' => 'Generated',
'number' => '#',
'name' => 'Name',
'department' => 'Department',
'position' => 'Position',
'shift' => 'Shift',
'status' => 'Status',
'phone' => 'Phone',
],
'employee_profile' => [
'title' => 'Employee Profile — :name',
'department' => 'Department',
'position' => 'Position',
'shift' => 'Shift',
'status' => 'Status',
'phone' => 'Phone',
'hire_date' => 'Hire Date',
'termination' => 'Termination',
'vacation_taken' => 'Vacation Taken',
'remaining' => 'Remaining',
'sick_leaves' => 'Sick Leaves',
'reports' => 'Reports',
],
'leave_summary' => [
'title' => 'Leave Summary — :name',
'heading' => 'Leave Summary',
'annual_taken' => 'Annual taken',
'remaining' => 'Remaining',
'sick_leaves' => 'Sick leaves',
'vacations' => 'Vacations',
'sick_leaves_heading' => 'Sick Leaves',
'start' => 'Start',
'end' => 'End',
'days' => 'Days',
'type' => 'Type',
'status' => 'Status',
'institution' => 'Institution',
'no_vacation_records' => 'No vacation records.',
'no_sick_leave_records' => 'No sick leave records.',
],
];