feat: add routes, lang, tests, stubs, docs, and docker configurations
This commit is contained in:
+45
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Pripojiť',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Pripojiť :label',
|
||||
|
||||
'fields' => [
|
||||
|
||||
'record_id' => [
|
||||
'label' => 'Záznam',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'associate' => [
|
||||
'label' => 'Pripojiť',
|
||||
],
|
||||
|
||||
'associate_another' => [
|
||||
'label' => 'Pripojiť & pripojiť ďalšie',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'associated' => [
|
||||
'title' => 'Pripojené',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+45
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Pridať',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Pridať :label',
|
||||
|
||||
'fields' => [
|
||||
|
||||
'record_id' => [
|
||||
'label' => 'Záznam',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'attach' => [
|
||||
'label' => 'Pridať',
|
||||
],
|
||||
|
||||
'attach_another' => [
|
||||
'label' => 'Pridať & pridať ďalšie',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'attached' => [
|
||||
'title' => 'Pridané',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+37
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Vytvoriť',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Vytvoriť :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'create' => [
|
||||
'label' => 'Vytvoriť',
|
||||
],
|
||||
|
||||
'create_another' => [
|
||||
'label' => 'Vytvoriť & vytvoriť ďalšie',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'created' => [
|
||||
'title' => 'Vytvorené',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+73
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Odstrániť',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Odstrániť :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Odstrániť',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => 'Odstránené',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Odstrániť vybrané',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Odstrániť vybrané :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Odstrániť',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => 'Odstránené',
|
||||
],
|
||||
|
||||
'deleted_partial' => [
|
||||
'title' => 'Odstránených :count z :total',
|
||||
'missing_authorization_failure_message' => 'Nemáte oprávnenie odstrániť :count.',
|
||||
'missing_processing_failure_message' => ':count sa nepodarilo odstrániť.',
|
||||
],
|
||||
|
||||
'deleted_none' => [
|
||||
'title' => 'Odstránenie zlyhalo',
|
||||
'missing_authorization_failure_message' => 'Nemáte oprávnenie odstrániť :count.',
|
||||
'missing_processing_failure_message' => ':count sa nepodarilo odstrániť.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+61
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Odobrať',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Odobrať :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'detach' => [
|
||||
'label' => 'Odobrať',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'detached' => [
|
||||
'title' => 'Odobrať',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Odobrať vybrané',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Odobrať vybrané :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'detach' => [
|
||||
'label' => 'Odobrať',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'detached' => [
|
||||
'title' => 'Odobrať',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+61
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Odpojiť',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Odpojiť :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'dissociate' => [
|
||||
'label' => 'Odpojiť',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'dissociated' => [
|
||||
'title' => 'Odpojené',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Odpojiť vybrané',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Odpojiť vybrané :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'dissociate' => [
|
||||
'label' => 'Odpojiť',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'dissociated' => [
|
||||
'title' => 'Odpojené',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+33
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Upraviť',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Upraviť :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'save' => [
|
||||
'label' => 'Uložiť zmeny',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'saved' => [
|
||||
'title' => 'Uložené',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+94
@@ -0,0 +1,94 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Export :label',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Export :label',
|
||||
|
||||
'form' => [
|
||||
|
||||
'columns' => [
|
||||
|
||||
'label' => 'Stĺpce',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Vybrať všetko',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Zrušiť výber všetkých',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'is_enabled' => [
|
||||
'label' => ':column povolené',
|
||||
],
|
||||
|
||||
'label' => [
|
||||
'label' => ':column popis',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'export' => [
|
||||
'label' => 'Exportovať',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'completed' => [
|
||||
|
||||
'title' => 'Export dokončený',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'download_csv' => [
|
||||
'label' => 'Stiahnuť .csv',
|
||||
],
|
||||
|
||||
'download_xlsx' => [
|
||||
'label' => 'Stiahnuť .xlsx',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'max_rows' => [
|
||||
'title' => 'Export je príliš veľký',
|
||||
'body' => 'Naraz nemôžete exportovať viac ako 1 riadok.|Naraz nemôžete exportovať viac ako :count riadkov.',
|
||||
],
|
||||
|
||||
'no_columns' => [
|
||||
'title' => 'Nie sú vybrané žiadne stĺpce',
|
||||
'body' => 'Prosím vyberte aspoň jeden stĺpec na export.',
|
||||
],
|
||||
|
||||
'started' => [
|
||||
'title' => 'Export zahájený',
|
||||
'body' => 'Export bol zahájený a 1 riadok sa spracuje na pozadí.|Export bol zahájený a :count riadkov sa spracuje na pozadí.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'file_name' => 'export-:export_id-:model',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Trvalo odstrániť',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Trvalo odstrániť :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Odstrániť',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => 'Odstránené',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Trvalo odstrániť vybrané',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Trvalo odstrániť vybrané :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Odstránené',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => 'Odstránené',
|
||||
],
|
||||
|
||||
'deleted_partial' => [
|
||||
'title' => 'Odstránených :count z :total',
|
||||
'missing_authorization_failure_message' => 'Nemáte oprávnenie odstrániť :count.',
|
||||
'missing_processing_failure_message' => ':count sa nepodarilo odstrániť.',
|
||||
],
|
||||
|
||||
'deleted_none' => [
|
||||
'title' => 'Nepodarilo sa odstrániť',
|
||||
'missing_authorization_failure_message' => 'Nemáte oprávnenie odstrániť :count.',
|
||||
'missing_processing_failure_message' => ':count sa nepodarilo odstrániť.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'trigger' => [
|
||||
'label' => 'Akcie',
|
||||
],
|
||||
|
||||
];
|
||||
+85
@@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Import :label',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Import :label',
|
||||
|
||||
'form' => [
|
||||
|
||||
'file' => [
|
||||
|
||||
'label' => 'Súbor',
|
||||
|
||||
'placeholder' => 'Nahrať CSV súbor',
|
||||
|
||||
'rules' => [
|
||||
'duplicate_columns' => '{0} Súbor nesmie obsahovať viac ako jeden prázdny názov stĺpca.|{1,*} Súbor nesmie obsahovať duplicitné názvy stĺpcov: :columns.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
'label' => 'Stĺpce',
|
||||
'placeholder' => 'Vybrať stĺpce',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'download_example' => [
|
||||
'label' => 'Stiahnuť vzorový CSV súbor',
|
||||
],
|
||||
|
||||
'import' => [
|
||||
'label' => 'Importovať',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'completed' => [
|
||||
|
||||
'title' => 'Import dokončený',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'download_failed_rows_csv' => [
|
||||
'label' => 'Stiahnuť informácie o chybnom riadku|Stiahnuť informácie o chybných riadkoch',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'max_rows' => [
|
||||
'title' => 'Nahraný CSV súbor je príliš veľký',
|
||||
'body' => 'Naraz nemôžete importovať viac ako 1 riadok.|Naraz nemôžete importovať viac ako :count riadkov.',
|
||||
],
|
||||
|
||||
'started' => [
|
||||
'title' => 'Import zahájený',
|
||||
'body' => 'Import bol zahájený a 1 riadok sa spracuje na pozadí.|Import bol zahájený a :count riadkov sa spracuje na pozadí.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'example_csv' => [
|
||||
'file_name' => ':importer-example',
|
||||
],
|
||||
|
||||
'failure_csv' => [
|
||||
'file_name' => 'import-:import_id-:csv_name-failed-rows',
|
||||
'error_header' => 'chyba',
|
||||
'system_error' => 'Chyba systému, prosím, kontaktujte podporu.',
|
||||
'column_mapping_required_for_new_record' => 'Stĺpec :attribute nebol namapovaný na stĺpec v súbore, ale je potrebný pre vytvorenie nových záznamov.',
|
||||
],
|
||||
|
||||
];
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'confirmation' => 'Naozaj chcete pokračovať?',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => 'Zrušiť',
|
||||
],
|
||||
|
||||
'confirm' => [
|
||||
'label' => 'Potvrdiť',
|
||||
],
|
||||
|
||||
'submit' => [
|
||||
'label' => 'Odoslať',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'throttled' => [
|
||||
'title' => 'Príliš veľa pokusov',
|
||||
'body' => 'Skúste to znova o :seconds sekúnd.',
|
||||
],
|
||||
];
|
||||
+33
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Duplikovať',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Duplikovať :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'replicate' => [
|
||||
'label' => 'Duplikovať',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'replicated' => [
|
||||
'title' => 'Duplikované',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+73
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Obnoviť',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Obnoviť :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'restore' => [
|
||||
'label' => 'Obnoviť',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'restored' => [
|
||||
'title' => 'Obnovené',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Obnoviť vybrané',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Obnoviť vybrané :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'restore' => [
|
||||
'label' => 'Obnoviť',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'restored' => [
|
||||
'title' => 'Obnovené',
|
||||
],
|
||||
|
||||
'restored_partial' => [
|
||||
'title' => 'Obnovených :count z :total',
|
||||
'missing_authorization_failure_message' => 'Nemáte oprávnenie obnoviť :count.',
|
||||
'missing_processing_failure_message' => ':count sa nepodarilo obnoviť.',
|
||||
],
|
||||
|
||||
'restored_none' => [
|
||||
'title' => 'Obnovenie zlyhalo',
|
||||
'missing_authorization_failure_message' => 'Nemáte oprávnenie obnoviť :count.',
|
||||
'missing_processing_failure_message' => ':count sa nepodarilo obnoviť.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Zobraziť',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Zobraziť :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'close' => [
|
||||
'label' => 'Zavrieť',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user