[增添]添加了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' => [
'attach' => [
'label' => 'जोड़े',
],
'attach_another' => [
'label' => 'इसे जोड़े और एक और जोड़े',
],
],
],
'notifications' => [
'attached' => [
'title' => 'जुड़ गया',
],
],
],
];

View File

@@ -0,0 +1,37 @@
<?php
return [
'single' => [
'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,33 @@
<?php
return [
'single' => [
'label' => 'संपादन',
'modal' => [
'heading' => ':label संपादित करें',
'actions' => [
'save' => [
'label' => 'सेव',
],
],
],
'notifications' => [
'saved' => [
'title' => 'सेव हो गया',
],
],
],
];

View File

@@ -0,0 +1,23 @@
<?php
return [
'confirmation' => 'क्या आप वाकई ऐसा करना चाहेंगे?',
'actions' => [
'cancel' => [
'label' => 'रद्द करें',
],
'confirm' => [
'label' => 'पुष्टि करें',
],
'submit' => [
'label' => 'सबमिट',
],
],
];