feat: add routes, lang, tests, stubs, docs, and docker configurations
This commit is contained in:
+45
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Associa',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Associa :label',
|
||||
|
||||
'fields' => [
|
||||
|
||||
'record_id' => [
|
||||
'label' => 'Record',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'associate' => [
|
||||
'label' => 'Associa',
|
||||
],
|
||||
|
||||
'associate_another' => [
|
||||
'label' => 'Associa & associa un altro',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'associated' => [
|
||||
'title' => 'Associato',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+45
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Collega',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Collega :label',
|
||||
|
||||
'fields' => [
|
||||
|
||||
'record_id' => [
|
||||
'label' => 'Record',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'attach' => [
|
||||
'label' => 'Collega',
|
||||
],
|
||||
|
||||
'attach_another' => [
|
||||
'label' => 'Collega & collega un altro',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'attached' => [
|
||||
'title' => 'Collegato',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+37
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Nuovo',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Salva :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'create' => [
|
||||
'label' => 'Salva',
|
||||
],
|
||||
|
||||
'create_another' => [
|
||||
'label' => 'Salva & crea un altro',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'created' => [
|
||||
'title' => 'Creato',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+73
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Elimina',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Elimina :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Elimina',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => 'Eliminato',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Elimina selezionati',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Elimina :label selezionati',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Elimina',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => 'Eliminati',
|
||||
],
|
||||
|
||||
'deleted_partial' => [
|
||||
'title' => 'Eliminati :count di :total',
|
||||
'missing_authorization_failure_message' => 'Non hai il permesso di eliminare :count.',
|
||||
'missing_processing_failure_message' => ':count non possono essere eliminati.',
|
||||
],
|
||||
|
||||
'deleted_none' => [
|
||||
'title' => 'Eliminazione fallita',
|
||||
'missing_authorization_failure_message' => 'Non hai il permesso di eliminare :count.',
|
||||
'missing_processing_failure_message' => ':count non possono essere eliminati.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+61
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Scollega',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Scollega :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'detach' => [
|
||||
'label' => 'Scollega',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'detached' => [
|
||||
'title' => 'Scollegato',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Scollega selezionati',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Scollega :label selezionati',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'detach' => [
|
||||
'label' => 'Scollega',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'detached' => [
|
||||
'title' => 'Scollegati',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+61
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Dissocia',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Dissocia :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'dissociate' => [
|
||||
'label' => 'Dissocia',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'dissociated' => [
|
||||
'title' => 'Dissociato',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Dissocia selezionati',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Dissocia :label selezionati',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'dissociate' => [
|
||||
'label' => 'Dissocia',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'dissociated' => [
|
||||
'title' => 'Dissociati',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+33
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Modifica',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Modifica :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'save' => [
|
||||
'label' => 'Salva',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'saved' => [
|
||||
'title' => 'Salvato',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+94
@@ -0,0 +1,94 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Esporta :label',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Esporta :label',
|
||||
|
||||
'form' => [
|
||||
|
||||
'columns' => [
|
||||
|
||||
'label' => 'Colonne',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Seleziona tutte',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Deseleziona tutte',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'is_enabled' => [
|
||||
'label' => ':column abilitata',
|
||||
],
|
||||
|
||||
'label' => [
|
||||
'label' => ':column etichetta',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'export' => [
|
||||
'label' => 'Esporta',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'completed' => [
|
||||
|
||||
'title' => 'Esportazione completata',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'download_csv' => [
|
||||
'label' => 'Scarica .csv',
|
||||
],
|
||||
|
||||
'download_xlsx' => [
|
||||
'label' => 'Scarica .xlsx',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'max_rows' => [
|
||||
'title' => 'L\'esportazione è troppo grande',
|
||||
'body' => 'Non puoi esportare più di 1 riga alla volta.|Non puoi esportare più di :count righe alla volta.',
|
||||
],
|
||||
|
||||
'no_columns' => [
|
||||
'title' => 'Nessuna colonna selezionata',
|
||||
'body' => 'Seleziona almeno una colonna per esportare.',
|
||||
],
|
||||
|
||||
'started' => [
|
||||
'title' => 'Esportazione avviata',
|
||||
'body' => 'L\'esportazione è iniziata e 1 riga verrà elaborata in background.|L\'esportazione è iniziata e :count righe verranno elaborate in background.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'file_name' => 'export-:export_id-:model',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Forza eliminazione',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Forza eliminazione :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Elimina',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => 'Eliminato',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Elimina forzatamente selezionati',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Elimina forzatamente :label selezionati',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Elimina',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => 'Eliminati',
|
||||
],
|
||||
|
||||
'deleted_partial' => [
|
||||
'title' => 'Eliminati :count di :total',
|
||||
'missing_authorization_failure_message' => 'Non hai il permesso di eliminare :count.',
|
||||
'missing_processing_failure_message' => ':count non possono essere eliminati.',
|
||||
],
|
||||
|
||||
'deleted_none' => [
|
||||
'title' => 'Eliminazione fallita',
|
||||
'missing_authorization_failure_message' => 'Non hai il permesso di eliminare :count.',
|
||||
'missing_processing_failure_message' => ':count non possono essere eliminati.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'trigger' => [
|
||||
'label' => 'Azioni',
|
||||
],
|
||||
|
||||
];
|
||||
+82
@@ -0,0 +1,82 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Importa :label',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Importa :label',
|
||||
|
||||
'form' => [
|
||||
|
||||
'file' => [
|
||||
'label' => 'File',
|
||||
'placeholder' => 'Carica un file CSV',
|
||||
|
||||
'rules' => [
|
||||
'duplicate_columns' => '{0} Il file non deve contenere più di un\'intestazione di colonna vuota.|{1,*} Il file non deve contenere intestazioni di colonna duplicate: :columns.',
|
||||
],
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
'label' => 'Colonne',
|
||||
'placeholder' => 'Seleziona una colonna',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'download_example' => [
|
||||
'label' => 'Scarica un file CSV di esempio',
|
||||
],
|
||||
|
||||
'import' => [
|
||||
'label' => 'Importa',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'completed' => [
|
||||
|
||||
'title' => 'Importazione completata',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'download_failed_rows_csv' => [
|
||||
'label' => 'Scarica le informazioni riguardo le righe fallite|Scarica l\'informazione riguardo la riga fallita',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'max_rows' => [
|
||||
'title' => 'Il file CSV caricato è troppo grande',
|
||||
'body' => 'Non puoi importare più di 1 riga alla volta.|Non puoi importare più di :count righe alla volta.',
|
||||
],
|
||||
|
||||
'started' => [
|
||||
'title' => 'L\'importazione è iniziata',
|
||||
'body' => 'L\'importazione è iniziata e 1 riga verrà elaborata in background.|L\'importazione è iniziata e :count righe verranno elaborate in background.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'example_csv' => [
|
||||
'file_name' => ':importer-example',
|
||||
],
|
||||
|
||||
'failure_csv' => [
|
||||
'file_name' => 'import-:import_id-:csv_name-failed-rows',
|
||||
'error_header' => 'errore',
|
||||
'system_error' => 'Errore di sistema, per favore contatta il supporto.',
|
||||
'column_mapping_required_for_new_record' => 'La colonna :attribute non è stata mappata ad una colonna nel file, ma è richiesta per la creazione di nuovi record.',
|
||||
],
|
||||
|
||||
];
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'confirmation' => 'Sei sicuro di volerlo fare?',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => 'Annulla',
|
||||
],
|
||||
|
||||
'confirm' => [
|
||||
'label' => 'Conferma',
|
||||
],
|
||||
|
||||
'submit' => [
|
||||
'label' => 'Invia',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Troppi tentativi',
|
||||
'body' => 'Per favore riprova tra :seconds secondi.',
|
||||
],
|
||||
|
||||
];
|
||||
+33
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Duplica',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Duplica :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'replicate' => [
|
||||
'label' => 'Duplica',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'replicated' => [
|
||||
'title' => 'Duplicato',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+73
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Ripristina',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Ripristina :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'restore' => [
|
||||
'label' => 'Ripristina',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'restored' => [
|
||||
'title' => 'Ripristinato',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Ripristina selezionati',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Ripristina selezionati :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'restore' => [
|
||||
'label' => 'Ripristina',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'restored' => [
|
||||
'title' => 'Ripristinati',
|
||||
],
|
||||
|
||||
'restored_partial' => [
|
||||
'title' => 'Ripristinati :count di :total',
|
||||
'missing_authorization_failure_message' => 'Non hai il permesso di ripristinare :count.',
|
||||
'missing_processing_failure_message' => ':count non possono essere ripristinati.',
|
||||
],
|
||||
|
||||
'restored_none' => [
|
||||
'title' => 'Ripristino fallito',
|
||||
'missing_authorization_failure_message' => 'Non hai il permesso di ripristinare :count.',
|
||||
'missing_processing_failure_message' => ':count non possono essere ripristinati.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Vedi',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Vedi :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'close' => [
|
||||
'label' => 'Chiudi',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user