This commit is contained in:
2025-10-22 20:08:22 +05:00
commit 736e3bef18
2573 changed files with 120385 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'uploading_file' => 'Загрузка файла...',
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'copied' => 'Скопировано',
],
];

View File

@@ -0,0 +1,13 @@
<?php
return [
'actions' => [
'close' => [
'label' => 'Закрыть',
],
],
];

View File

@@ -0,0 +1,47 @@
<?php
return [
'label' => 'Пагинация',
'overview' => 'Показано с :first по :last из :total',
'fields' => [
'records_per_page' => [
'label' => 'на страницу',
'options' => [
'all' => 'Все',
],
],
],
'actions' => [
'first' => [
'label' => 'Первая',
],
'go_to_page' => [
'label' => 'Перейти к странице :page',
],
'last' => [
'label' => 'Последняя',
],
'next' => [
'label' => 'Следующая',
],
'previous' => [
'label' => 'Предыдущая',
],
],
];