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

59
lang/ru/enums.php Normal file
View File

@@ -0,0 +1,59 @@
<?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' => 'Дисциплинарные отчёты',
],
];