feat: add routes, lang, tests, stubs, docs, and docker configurations

This commit is contained in:
2026-05-21 16:05:16 +07:00
parent fad70d096b
commit 28a06315b8
3385 changed files with 177070 additions and 0 deletions
+45
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' => 'जुड़ गया',
],
],
],
];
+37
View File
@@ -0,0 +1,37 @@
<?php
return [
'single' => [
'label' => 'बनाएँ',
'modal' => [
'heading' => ':label बनाएँ',
'actions' => [
'create' => [
'label' => 'बनाएँ',
],
'create_another' => [
'label' => 'बनाएँ और एक और एक और बनाएँ',
],
],
],
'notifications' => [
'created' => [
'title' => 'बन गया',
],
],
],
];
+61
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' => 'हटा दिया',
],
],
],
];
+61
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' => 'अलग हो गए',
],
],
],
];
+33
View File
@@ -0,0 +1,33 @@
<?php
return [
'single' => [
'label' => 'संपादन',
'modal' => [
'heading' => ':label संपादित करें',
'actions' => [
'save' => [
'label' => 'सेव',
],
],
],
'notifications' => [
'saved' => [
'title' => 'सेव हो गया',
],
],
],
];
+23
View File
@@ -0,0 +1,23 @@
<?php
return [
'confirmation' => 'क्या आप वाकई ऐसा करना चाहेंगे?',
'actions' => [
'cancel' => [
'label' => 'रद्द करें',
],
'confirm' => [
'label' => 'पुष्टि करें',
],
'submit' => [
'label' => 'सबमिट',
],
],
];