feat: add routes, lang, tests, stubs, docs, and docker configurations
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'messages' => [
|
||||
'uploading_file' => 'Wysyłanie pliku...',
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'messages' => [
|
||||
'copied' => 'Skopiowano',
|
||||
],
|
||||
|
||||
];
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'close' => [
|
||||
'label' => 'Zamknij',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,47 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Paginacja',
|
||||
|
||||
'overview' => 'Pozycje od :first do :last z :total łącznie',
|
||||
|
||||
'fields' => [
|
||||
|
||||
'records_per_page' => [
|
||||
|
||||
'label' => 'na stronę',
|
||||
|
||||
'options' => [
|
||||
'all' => 'Wszystkie',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'first' => [
|
||||
'label' => 'Pierwsza',
|
||||
],
|
||||
|
||||
'go_to_page' => [
|
||||
'label' => 'Przejdź do strony :page',
|
||||
],
|
||||
|
||||
'last' => [
|
||||
'label' => 'Osatnia',
|
||||
],
|
||||
|
||||
'next' => [
|
||||
'label' => 'Następna',
|
||||
],
|
||||
|
||||
'previous' => [
|
||||
'label' => 'Poprzednia',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user