[增添]添加了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' => 'Associer',
'modal' => [
'heading' => 'Associer :label',
'fields' => [
'record_id' => [
'label' => 'Registrering',
],
],
'actions' => [
'associate' => [
'label' => 'Associer',
],
'associate_another' => [
'label' => 'Associer & Associer en mere',
],
],
],
'notifications' => [
'associated' => [
'title' => 'Associeret',
],
],
],
];

View File

@@ -0,0 +1,45 @@
<?php
return [
'single' => [
'label' => 'Attach',
'modal' => [
'heading' => 'Vedhæft :label',
'fields' => [
'record_id' => [
'label' => 'Record',
],
],
'actions' => [
'attach' => [
'label' => 'Vedhæft',
],
'attach_another' => [
'label' => 'Vedhæft & vedhæft en mere',
],
],
],
'notifications' => [
'attached' => [
'title' => 'Vedhæftet',
],
],
],
];

View File

@@ -0,0 +1,37 @@
<?php
return [
'single' => [
'label' => 'Opret :label',
'modal' => [
'heading' => 'Opret :label',
'actions' => [
'create' => [
'label' => 'Opret',
],
'create_another' => [
'label' => 'Opret & opret en mere',
],
],
],
'notifications' => [
'created' => [
'title' => 'Oprettet',
],
],
],
];

View File

@@ -0,0 +1,61 @@
<?php
return [
'single' => [
'label' => 'Slet',
'modal' => [
'heading' => 'Slet :label',
'actions' => [
'delete' => [
'label' => 'Slet',
],
],
],
'notifications' => [
'deleted' => [
'title' => 'Slettet',
],
],
],
'multiple' => [
'label' => 'Slet valgte',
'modal' => [
'heading' => 'Slet valgte :label',
'actions' => [
'delete' => [
'label' => 'Slet',
],
],
],
'notifications' => [
'deleted' => [
'title' => 'Slettet',
],
],
],
];

View File

@@ -0,0 +1,61 @@
<?php
return [
'single' => [
'label' => 'Frigør',
'modal' => [
'heading' => 'Frigør :label',
'actions' => [
'detach' => [
'label' => 'Frigør',
],
],
],
'notifications' => [
'detached' => [
'title' => 'Frigjort',
],
],
],
'multiple' => [
'label' => 'Frigør valgte',
'modal' => [
'heading' => 'Frigør valgte :label',
'actions' => [
'detach' => [
'label' => 'Frigør',
],
],
],
'notifications' => [
'detached' => [
'title' => 'Frigjort',
],
],
],
];

View File

@@ -0,0 +1,61 @@
<?php
return [
'single' => [
'label' => 'Dissocier',
'modal' => [
'heading' => 'Dissocier :label',
'actions' => [
'dissociate' => [
'label' => 'Dissocier',
],
],
],
'notifications' => [
'dissociated' => [
'title' => 'Dissocieret',
],
],
],
'multiple' => [
'label' => 'Dissocier valgte',
'modal' => [
'heading' => 'Dissocier valgte :label',
'actions' => [
'dissociate' => [
'label' => 'Dissocier',
],
],
],
'notifications' => [
'dissociated' => [
'title' => 'Dissocieret',
],
],
],
];

View File

@@ -0,0 +1,33 @@
<?php
return [
'single' => [
'label' => 'Rediger',
'modal' => [
'heading' => 'Rediger :label',
'actions' => [
'save' => [
'label' => 'Gem ændringer',
],
],
],
'notifications' => [
'saved' => [
'title' => 'Gemt',
],
],
],
];

View File

@@ -0,0 +1,77 @@
<?php
return [
'label' => 'Eksporter :label',
'modal' => [
'heading' => 'Eksporter :label',
'form' => [
'columns' => [
'label' => 'Kolonner',
'form' => [
'is_enabled' => [
'label' => ':column aktiveret',
],
'label' => [
'label' => ':column etiket',
],
],
],
],
'actions' => [
'export' => [
'label' => 'Eksporter',
],
],
],
'notifications' => [
'completed' => [
'title' => 'Eksporter fuldført',
'actions' => [
'download_csv' => [
'label' => 'Download .csv',
],
'download_xlsx' => [
'label' => 'Download .xlsx',
],
],
],
'max_rows' => [
'title' => 'Eksporten er for stor',
'body' => 'Du må ikke eksportere mere end 1 række på én gang.|Du må ikke eksportere mere end :count rækker på én gang.',
],
'started' => [
'title' => 'Eksport er started',
'body' => 'Din eksport er begyndt, og 1 række vil blive behandlet i baggrunden.|Din eksport er begyndt, og :count rækker vil blive behandlet i baggrunden.',
],
],
'file_name' => 'export-:export_id-:model',
];

View File

@@ -0,0 +1,61 @@
<?php
return [
'single' => [
'label' => 'Fremtving sletning',
'modal' => [
'heading' => 'Fremtving sletning af :label',
'actions' => [
'delete' => [
'label' => 'Slet',
],
],
],
'notifications' => [
'deleted' => [
'title' => 'Slettet',
],
],
],
'multiple' => [
'label' => 'Fremtving sletning af valgte',
'modal' => [
'heading' => 'Fremtving sletning af valgte :label',
'actions' => [
'delete' => [
'label' => 'Slet',
],
],
],
'notifications' => [
'deleted' => [
'title' => 'Slettet',
],
],
],
];

View File

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

View File

@@ -0,0 +1,77 @@
<?php
return [
'label' => 'Importer :label',
'modal' => [
'heading' => 'Importer :label',
'form' => [
'file' => [
'label' => 'Fil',
'placeholder' => 'Upload en CSV fil',
],
'columns' => [
'label' => 'Kolonner',
'placeholder' => 'Vælg en kolonne',
],
],
'actions' => [
'download_example' => [
'label' => 'Download eksempel på CSV fil',
],
'import' => [
'label' => 'Importer',
],
],
],
'notifications' => [
'completed' => [
'title' => 'Import afsluttet',
'actions' => [
'download_failed_rows_csv' => [
'label' => 'Download information om rækken med fejl|Download information om rækkerne med fejl',
],
],
],
'max_rows' => [
'title' => 'Uploadet CSV fil er for stor',
'body' => 'Du må ikke importere mere end 1 række på én gang.|Du må ikke importere mere end :count rækker på én gang.',
],
'started' => [
'title' => 'Import started',
'body' => 'Din import er begyndt, og 1 række vil blive behandlet i baggrunden.|Din import er begyndt, og :count rækker vil blive behandlet i baggrunden',
],
],
'example_csv' => [
'file_name' => ':importer-example',
],
'failure_csv' => [
'file_name' => 'import-:import_id-:csv_name-failed-rows',
'error_header' => 'fejl',
'system_error' => 'Systemfejl, kontakt venligst support.',
],
];

View File

@@ -0,0 +1,23 @@
<?php
return [
'confirmation' => 'Er du sikker på, at du gerne vil gøre dette?',
'actions' => [
'cancel' => [
'label' => 'Annuller',
],
'confirm' => [
'label' => 'Bekræft',
],
'submit' => [
'label' => 'Send',
],
],
];

View File

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

View File

@@ -0,0 +1,61 @@
<?php
return [
'single' => [
'label' => 'Gendan',
'modal' => [
'heading' => 'Gendan :label',
'actions' => [
'restore' => [
'label' => 'Gendan',
],
],
],
'notifications' => [
'restored' => [
'title' => 'Gendannet',
],
],
],
'multiple' => [
'label' => 'Gendan valgte',
'modal' => [
'heading' => 'Gendan valgte :label',
'actions' => [
'restore' => [
'label' => 'Gendan',
],
],
],
'notifications' => [
'restored' => [
'title' => 'Gendannet',
],
],
],
];

View File

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