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

60 lines
1.6 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
declare(strict_types=1);
return [
'gender' => [
'male' => 'Мужской',
'female' => 'Женский',
'other' => 'Другой',
],
'employment_status' => [
'active' => 'Активный',
'inactive' => 'Неактивный',
'terminated' => 'Уволен',
'on_leave' => 'В отпуске',
],
'vacation_type' => [
'annual' => 'Ежегодный',
'marriage' => 'Свадебный',
'study' => 'Учебный',
'other' => 'Другой',
],
'approval_status' => [
'pending' => 'Ожидает',
'approved' => 'Одобрено',
'rejected' => 'Отклонено',
],
'document_type' => [
'passport' => 'Паспорт',
'contract' => 'Договор',
'medical_certificate' => 'Медицинская справка',
'education_certificate' => 'Сертификат об образовании',
'other' => 'Другое',
],
'bonus_type' => [
'performance' => 'За результат',
'holiday' => 'Праздничная',
'retention' => 'Удержание',
'other' => 'Другая',
],
'disciplinary_severity' => [
'low' => 'Низкая',
'medium' => 'Средняя',
'high' => 'Высокая',
],
'import_type' => [
'employees' => 'Сотрудники',
'vacations' => 'Отпуска',
'bonuses' => 'Премии',
'reports' => 'Дисциплинарные отчёты',
],
];