60 lines
1.3 KiB
PHP
60 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'gender' => [
|
|
'male' => 'Erkek',
|
|
'female' => 'Aýal',
|
|
'other' => 'Beýleki',
|
|
],
|
|
|
|
'employment_status' => [
|
|
'active' => 'Işjeň',
|
|
'inactive' => 'Işjeň däl',
|
|
'terminated' => 'Işden boşadyldy',
|
|
'on_leave' => 'Rugsatda',
|
|
],
|
|
|
|
'vacation_type' => [
|
|
'annual' => 'Ýyllyk',
|
|
'marriage' => 'Toý',
|
|
'study' => 'Okuw',
|
|
'other' => 'Beýleki',
|
|
],
|
|
|
|
'approval_status' => [
|
|
'pending' => 'Garaşylýar',
|
|
'approved' => 'Tassyklandy',
|
|
'rejected' => 'Ret edildi',
|
|
],
|
|
|
|
'document_type' => [
|
|
'passport' => 'Pasport',
|
|
'contract' => 'Şertnama',
|
|
'medical_certificate' => 'Lukmançylyk kepilnamasy',
|
|
'education_certificate' => 'Bilim kepilnamasy',
|
|
'other' => 'Beýleki',
|
|
],
|
|
|
|
'bonus_type' => [
|
|
'performance' => 'Netije',
|
|
'holiday' => 'Baýramçylyk',
|
|
'retention' => 'Saklamak',
|
|
'other' => 'Beýleki',
|
|
],
|
|
|
|
'disciplinary_severity' => [
|
|
'low' => 'Pes',
|
|
'medium' => 'Orta',
|
|
'high' => 'Ýokary',
|
|
],
|
|
|
|
'import_type' => [
|
|
'employees' => 'Işgärler',
|
|
'vacations' => 'Dynç alyşlar',
|
|
'bonuses' => 'Baýraklar',
|
|
'reports' => 'Terbiýe hasabatlary',
|
|
],
|
|
];
|