[增添]添加了datasource的setting数据库以及默认值

This commit is contained in:
makotocc0107
2024-08-27 09:57:44 +08:00
parent d111dfaea4
commit 72eb990970
10955 changed files with 978898 additions and 0 deletions

View File

@@ -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',
],
],
],
];

View File

@@ -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',
],
],
],
];

View File

@@ -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',
],
],
],
];

View File

@@ -0,0 +1,61 @@
<?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',
],
],
],
];

View File

@@ -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',
],
],
],
];

View File

@@ -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',
],
],
],
];

View File

@@ -0,0 +1,33 @@
<?php
return [
'single' => [
'label' => 'Modifica',
'modal' => [
'heading' => 'Modifica :label',
'actions' => [
'save' => [
'label' => 'Salva',
],
],
],
'notifications' => [
'saved' => [
'title' => 'Salvato',
],
],
],
];

View File

@@ -0,0 +1,77 @@
<?php
return [
'label' => 'Esporta :label',
'modal' => [
'heading' => 'Esporta :label',
'form' => [
'columns' => [
'label' => 'Colonne',
'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.',
],
'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',
];

View File

@@ -0,0 +1,61 @@
<?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',
],
],
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'trigger' => [
'label' => 'Azioni',
],
];

View File

@@ -0,0 +1,77 @@
<?php
return [
'label' => 'Importa :label',
'modal' => [
'heading' => 'Importa :label',
'form' => [
'file' => [
'label' => 'File',
'placeholder' => 'Carica un file CSV',
],
'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' => ':importatore-esempio',
],
'failure_csv' => [
'file_name' => 'import-:import_id-:csv_nome-righe-fallite',
'error_header' => 'errore',
'system_error' => 'Errore di sistema, per favore contatta il supporto.',
],
];

View File

@@ -0,0 +1,23 @@
<?php
return [
'confirmation' => 'Sei sicuro di volerlo fare?',
'actions' => [
'cancel' => [
'label' => 'Annulla',
],
'confirm' => [
'label' => 'Conferma',
],
'submit' => [
'label' => 'Invia',
],
],
];

View File

@@ -0,0 +1,33 @@
<?php
return [
'single' => [
'label' => 'Duplica',
'modal' => [
'heading' => 'Duplica :label',
'actions' => [
'replicate' => [
'label' => 'Duplica',
],
],
],
'notifications' => [
'replicated' => [
'title' => 'Duplicato',
],
],
],
];

View File

@@ -0,0 +1,61 @@
<?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',
],
],
],
];

View File

@@ -0,0 +1,25 @@
<?php
return [
'single' => [
'label' => 'Vedi',
'modal' => [
'heading' => 'Vedi :label',
'actions' => [
'close' => [
'label' => 'Chiudi',
],
],
],
],
];