[增添]添加了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' => 'Асоцииране',
'modal' => [
'heading' => 'Асоциирай :label',
'fields' => [
'record_id' => [
'label' => 'Запис',
],
],
'actions' => [
'associate' => [
'label' => 'Асоциирай',
],
'associate_another' => [
'label' => 'Асоциирай и асоциирай друг',
],
],
],
'notifications' => [
'associated' => [
'title' => 'Асоциирано',
],
],
],
];

View File

@@ -0,0 +1,45 @@
<?php
return [
'single' => [
'label' => 'Закачи',
'modal' => [
'heading' => 'Закачи :label',
'fields' => [
'record_id' => [
'label' => 'Запис',
],
],
'actions' => [
'attach' => [
'label' => 'Закачи',
],
'attach_another' => [
'label' => 'Закачи и закачи друг',
],
],
],
'notifications' => [
'attached' => [
'title' => 'Закачен',
],
],
],
];

View File

@@ -0,0 +1,37 @@
<?php
return [
'single' => [
'label' => 'Създай :label',
'modal' => [
'heading' => 'Създаване на :label',
'actions' => [
'create' => [
'label' => 'Създай',
],
'create_another' => [
'label' => 'Създай и създай друг',
],
],
],
'notifications' => [
'created' => [
'title' => 'Създаден',
],
],
],
];

View File

@@ -0,0 +1,61 @@
<?php
return [
'single' => [
'label' => 'Изтрий',
'modal' => [
'heading' => 'Изтрий :label',
'actions' => [
'delete' => [
'label' => 'Изтрий',
],
],
],
'notifications' => [
'deleted' => [
'title' => 'Изтрит',
],
],
],
'multiple' => [
'label' => 'Изтрий избраните',
'modal' => [
'heading' => 'Изтрий избраните :label',
'actions' => [
'delete' => [
'label' => 'Изтрий',
],
],
],
'notifications' => [
'deleted' => [
'title' => 'Изтрити',
],
],
],
];

View File

@@ -0,0 +1,61 @@
<?php
return [
'single' => [
'label' => 'Разкачи',
'modal' => [
'heading' => 'Разкачи :label',
'actions' => [
'detach' => [
'label' => 'Разкачи',
],
],
],
'notifications' => [
'detached' => [
'title' => 'Разкачен',
],
],
],
'multiple' => [
'label' => 'Разкачи избраните',
'modal' => [
'heading' => 'Разкачи избраните :label',
'actions' => [
'detach' => [
'label' => 'Разкачи',
],
],
],
'notifications' => [
'detached' => [
'title' => 'Разкачени',
],
],
],
];

View File

@@ -0,0 +1,61 @@
<?php
return [
'single' => [
'label' => 'Деасоциирай',
'modal' => [
'heading' => 'Деасоциирай :label',
'actions' => [
'dissociate' => [
'label' => 'Деасоциирай',
],
],
],
'notifications' => [
'dissociated' => [
'title' => 'Деасоциирано',
],
],
],
'multiple' => [
'label' => 'Деасоциирай избраните',
'modal' => [
'heading' => 'Деасоциирай избраните :label',
'actions' => [
'dissociate' => [
'label' => 'Деасоциирай',
],
],
],
'notifications' => [
'dissociated' => [
'title' => 'Деасоциирани',
],
],
],
];

View File

@@ -0,0 +1,33 @@
<?php
return [
'single' => [
'label' => 'Редакция',
'modal' => [
'heading' => 'Редактиране :label',
'actions' => [
'save' => [
'label' => 'Запазване',
],
],
],
'notifications' => [
'saved' => [
'title' => 'Запазено',
],
],
],
];

View File

@@ -0,0 +1,61 @@
<?php
return [
'single' => [
'label' => 'Оконачтелно изтриване',
'modal' => [
'heading' => 'Оконачтелно изтриване на :label',
'actions' => [
'delete' => [
'label' => 'Изтрий',
],
],
],
'notifications' => [
'deleted' => [
'title' => 'Изтрито',
],
],
],
'multiple' => [
'label' => 'Оконачтелно изтриване на избраните',
'modal' => [
'heading' => 'Оконачтелно изтриване на избраните :label',
'actions' => [
'delete' => [
'label' => 'Изтрий',
],
],
],
'notifications' => [
'deleted' => [
'title' => 'Изтрити',
],
],
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'trigger' => [
'label' => 'Действия',
],
];

View File

@@ -0,0 +1,23 @@
<?php
return [
'confirmation' => 'Сигурен ли си, че искаш да направиш това?',
'actions' => [
'cancel' => [
'label' => 'Откажи',
],
'confirm' => [
'label' => 'Потвърди',
],
'submit' => [
'label' => 'Изпрати',
],
],
];

View File

@@ -0,0 +1,33 @@
<?php
return [
'single' => [
'label' => 'Клонирай',
'modal' => [
'heading' => 'Клонирай :label',
'actions' => [
'replicate' => [
'label' => 'Клонирай',
],
],
],
'notifications' => [
'replicated' => [
'title' => 'Клониран',
],
],
],
];

View File

@@ -0,0 +1,61 @@
<?php
return [
'single' => [
'label' => 'Възстанови',
'modal' => [
'heading' => 'Възстанови :label',
'actions' => [
'restore' => [
'label' => 'Възстанови',
],
],
],
'notifications' => [
'restored' => [
'title' => 'Възстановен',
],
],
],
'multiple' => [
'label' => 'Възстанови избраните',
'modal' => [
'heading' => 'Възстанови избраните :label',
'actions' => [
'restore' => [
'label' => 'Възстанови',
],
],
],
'notifications' => [
'restored' => [
'title' => 'Възстановени',
],
],
],
];

View File

@@ -0,0 +1,25 @@
<?php
return [
'single' => [
'label' => 'Преглед',
'modal' => [
'heading' => 'Прегледай :label',
'actions' => [
'close' => [
'label' => 'Затвори',
],
],
],
],
];