feat: add routes, lang, tests, stubs, docs, and docker configurations

This commit is contained in:
2026-05-21 16:05:16 +07:00
parent fad70d096b
commit 28a06315b8
3385 changed files with 177070 additions and 0 deletions
+45
View File
@@ -0,0 +1,45 @@
<?php
return [
'single' => [
'label' => 'Povežite',
'modal' => [
'heading' => 'Povežite :label',
'fields' => [
'record_id' => [
'label' => 'Zapis',
],
],
'actions' => [
'associate' => [
'label' => 'Povežite',
],
'associate_another' => [
'label' => 'Povežite i povežite još jedan',
],
],
],
'notifications' => [
'associated' => [
'title' => 'Povezano',
],
],
],
];
+45
View File
@@ -0,0 +1,45 @@
<?php
return [
'single' => [
'label' => 'Priložite',
'modal' => [
'heading' => 'Priložite :label',
'fields' => [
'record_id' => [
'label' => 'Zapis',
],
],
'actions' => [
'attach' => [
'label' => 'Priložite',
],
'attach_another' => [
'label' => 'Priložite i priložite još jedan',
],
],
],
'notifications' => [
'attached' => [
'title' => 'Priloženo',
],
],
],
];
+37
View File
@@ -0,0 +1,37 @@
<?php
return [
'single' => [
'label' => 'Kreirajte',
'modal' => [
'heading' => 'Kreirajte :label',
'actions' => [
'create' => [
'label' => 'Kreirati',
],
'create_another' => [
'label' => 'Kreirajte i kreirajte još jedan',
],
],
],
'notifications' => [
'created' => [
'title' => 'Uspješno kreirano',
],
],
],
];
+61
View File
@@ -0,0 +1,61 @@
<?php
return [
'single' => [
'label' => 'Izbrišite',
'modal' => [
'heading' => 'Brisanje :label',
'actions' => [
'delete' => [
'label' => 'Izbrisati',
],
],
],
'notifications' => [
'deleted' => [
'title' => 'Izbrisano',
],
],
],
'multiple' => [
'label' => 'Izbrišite izabrano',
'modal' => [
'heading' => 'Izbrišite izabrani :label ',
'actions' => [
'delete' => [
'label' => 'Izbrišite izabrani',
],
],
],
'notifications' => [
'deleted' => [
'title' => 'Izbrisano',
],
],
],
];
+61
View File
@@ -0,0 +1,61 @@
<?php
return [
'single' => [
'label' => 'Odvojite',
'modal' => [
'heading' => 'Odvojite :label',
'actions' => [
'detach' => [
'label' => 'Odvojite',
],
],
],
'notifications' => [
'detached' => [
'title' => 'Odvojeno',
],
],
],
'multiple' => [
'label' => 'Odvojite izabrani',
'modal' => [
'heading' => 'Odvojite izabrani :label',
'actions' => [
'detach' => [
'label' => 'Odvojite izabrani',
],
],
],
'notifications' => [
'detached' => [
'title' => 'Odvojeno',
],
],
],
];
+61
View File
@@ -0,0 +1,61 @@
<?php
return [
'single' => [
'label' => 'Odvojite',
'modal' => [
'heading' => 'Odvojite :label',
'actions' => [
'dissociate' => [
'label' => 'Odvojite',
],
],
],
'notifications' => [
'dissociated' => [
'title' => 'Odvojeno',
],
],
],
'multiple' => [
'label' => 'Odvojite izabrani',
'modal' => [
'heading' => 'Odvojite izabrani :label',
'actions' => [
'dissociate' => [
'label' => 'Odvojite izabrani',
],
],
],
'notifications' => [
'dissociated' => [
'title' => 'Odvojeno',
],
],
],
];
+33
View File
@@ -0,0 +1,33 @@
<?php
return [
'single' => [
'label' => 'Uredite',
'modal' => [
'heading' => 'Uredite :label',
'actions' => [
'save' => [
'label' => 'Sačuvajte',
],
],
],
'notifications' => [
'saved' => [
'title' => 'Sačuvano',
],
],
],
];
+77
View File
@@ -0,0 +1,77 @@
<?php
return [
'label' => 'Eksportujte :label',
'modal' => [
'heading' => 'Exportujte :label',
'form' => [
'columns' => [
'label' => 'Kolone',
'form' => [
'is_enabled' => [
'label' => ':column kolona aktivna',
],
'label' => [
'label' => ':column oznaka',
],
],
],
],
'actions' => [
'export' => [
'label' => 'Eksportujte',
],
],
],
'notifications' => [
'completed' => [
'title' => 'Eksport završen',
'actions' => [
'download_csv' => [
'label' => 'Preuzmite .csv',
],
'download_xlsx' => [
'label' => 'Preuzmite .xlsx',
],
],
],
'max_rows' => [
'title' => 'Eksport je prevelik.',
'body' => 'Ne možete eksportovati više od 1 reda odjednom.|Ne možete eksportovati više od :count redova odjednom',
],
'started' => [
'title' => 'Eksport započet',
'body' => 'Vaš eksport je započeo i 1 red će se obrađivati u pozadini. Dobit ćete obavijest s linkom za preuzimanje kada bude dovršeno. | Vaš eksport je započeo i :count redova će se obrađivati u pozadini. Dobit ćete obavijest s linkom za preuzimanje kada bude dovršeno.',
],
],
'file_name' => 'eksport-:export_id-:model',
];
+61
View File
@@ -0,0 +1,61 @@
<?php
return [
'single' => [
'label' => 'Izbrišite zauvijek',
'modal' => [
'heading' => 'Izbrišite :label zauvijek',
'actions' => [
'delete' => [
'label' => 'Izbrišite',
],
],
],
'notifications' => [
'deleted' => [
'title' => 'Zapis izbrisan',
],
],
],
'multiple' => [
'label' => 'Izabrano izbrišite zauvijek',
'modal' => [
'heading' => 'Zauvijek izbrišite :label ',
'actions' => [
'delete' => [
'label' => 'Izbrisati',
],
],
],
'notifications' => [
'deleted' => [
'title' => 'Zapisi izbrisani',
],
],
],
];
+9
View File
@@ -0,0 +1,9 @@
<?php
return [
'trigger' => [
'label' => 'Akcije',
],
];
+85
View File
@@ -0,0 +1,85 @@
<?php
return [
'label' => 'Importujte :label',
'modal' => [
'heading' => 'Importujte :label',
'form' => [
'file' => [
'label' => 'Fajl',
'placeholder' => 'Priložite CSV fajl',
'rules' => [
'duplicate_columns' => '{0} Fajl ne smije sadržavati više od jednog praznog zaglavlja kolone.|{1,*} Fajl ne smije sadržavati duplicirana zaglavlja kolona: :columns.',
],
],
'columns' => [
'label' => 'Kolone',
'placeholder' => 'Odaberite kolonu',
],
],
'actions' => [
'download_example' => [
'label' => 'Preuzmite primjer CSV fajla',
],
'import' => [
'label' => 'Importujte',
],
],
],
'notifications' => [
'completed' => [
'title' => 'Import završen',
'actions' => [
'download_failed_rows_csv' => [
'label' => 'Preuzmite informacije o neuspješnom redu|Preuzmite informacije o neuspješnim redovima',
],
],
],
'max_rows' => [
'title' => 'Učitani CSV fajl je prevelik',
'body' => 'Ne možete importovati više od 1 reda odjednom.|Ne možete uvesti više od :count redova odjednom.',
],
'started' => [
'title' => 'Import započet',
'body' => 'Vaš uvoz je započeo i 1 red će se obrađivati u pozadini.|Vaš uvoz je započeo i :count redova će se obrađivati u pozadini.',
],
],
'example_csv' => [
'file_name' => ':importer-primjer',
],
'failure_csv' => [
'file_name' => 'import-:import_id-:csv_name-neuspješni-redovi',
'error_header' => 'greška',
'system_error' => 'Sistemska greška, molimo kontaktirajte podršku.',
'column_mapping_required_for_new_record' => ':attribute kolona nije povezana s kolonom u fajlu, a potrebna je za kreiranje novih zapisa.',
],
];
+23
View File
@@ -0,0 +1,23 @@
<?php
return [
'confirmation' => 'Jeste li sigurni da želite to učiniti?',
'actions' => [
'cancel' => [
'label' => 'Prekid',
],
'confirm' => [
'label' => 'Potvrdi',
],
'submit' => [
'label' => 'Pošalji',
],
],
];
+33
View File
@@ -0,0 +1,33 @@
<?php
return [
'single' => [
'label' => 'Duplicirajte',
'modal' => [
'heading' => 'Duplicirajte :label',
'actions' => [
'replicate' => [
'label' => 'Duplicirati',
],
],
],
'notifications' => [
'replicated' => [
'title' => 'Zapis dupliciran',
],
],
],
];
+61
View File
@@ -0,0 +1,61 @@
<?php
return [
'single' => [
'label' => 'Povrati',
'modal' => [
'heading' => 'Povrati :label',
'actions' => [
'restore' => [
'label' => 'Povrati',
],
],
],
'notifications' => [
'restored' => [
'title' => 'Zapis vraćen',
],
],
],
'multiple' => [
'label' => 'Izabrani vratiti',
'modal' => [
'heading' => 'Povrati :label',
'actions' => [
'restore' => [
'label' => 'Povratiti',
],
],
],
'notifications' => [
'restored' => [
'title' => 'Zapisi vraćen',
],
],
],
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
'single' => [
'label' => 'Pregledajte',
'modal' => [
'heading' => 'Pregled :label',
'actions' => [
'close' => [
'label' => 'Zatvoriti',
],
],
],
],
];