Files
hr/lang/tk/enums.php
2026-07-31 18:08:08 +05:00

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',
],
];