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
+47
View File
@@ -0,0 +1,47 @@
<?php
return [
'title' => 'लॉग इन',
'heading' => 'अपने अकाउंट में साइन इन करें',
'form' => [
'email' => [
'label' => 'ईमेल',
],
'password' => [
'label' => 'पासवर्ड',
],
'remember' => [
'label' => 'मुझे याद रखना',
],
'actions' => [
'authenticate' => [
'label' => 'लॉग इन',
],
],
],
'messages' => [
'failed' => 'ये प्रमाण हमारे रिकॉर्ड से मेल नहीं खा रहे हैं।',
],
'notifications' => [
'throttled' => [
'title' => 'बहुत सारे लॉगिन प्रयास। :seconds सेकंड में फिर से कोशिश करें।',
],
],
];
+12
View File
@@ -0,0 +1,12 @@
<?php
return [
'field' => [
'label' => 'वैश्विक खोज',
'placeholder' => 'खोजें',
],
'no_results_message' => 'कोई खोज परिणाम नहीं मिला।',
];
+31
View File
@@ -0,0 +1,31 @@
<?php
return [
'direction' => 'ltr',
'actions' => [
'logout' => [
'label' => 'साइन आउट',
],
'open_user_menu' => [
'label' => 'उपयोगकर्ता विकल्प सूची',
],
'theme_switcher' => [
'dark' => [
'label' => 'डार्क मोड टॉगल करें',
],
'light' => [
'label' => 'लाइट मोड टॉगल करें',
],
],
],
];
+7
View File
@@ -0,0 +1,7 @@
<?php
return [
'title' => 'डैशबोर्ड',
];
@@ -0,0 +1,37 @@
<?php
return [
'title' => ':label बनाएँ',
'breadcrumb' => 'बनाएँ',
'form' => [
'actions' => [
'cancel' => [
'label' => 'रद्द करें',
],
'create' => [
'label' => 'बनाएँ',
],
'create_another' => [
'label' => 'बनाएँ और एक और बनाएँ',
],
],
],
'notifications' => [
'created' => [
'title' => 'बन गया',
],
],
];
@@ -0,0 +1,33 @@
<?php
return [
'title' => ':label संपादित करें',
'breadcrumb' => 'संपादन',
'form' => [
'actions' => [
'cancel' => [
'label' => 'रद्द करें',
],
'save' => [
'label' => 'सेव',
],
],
],
'notifications' => [
'saved' => [
'title' => 'सेव हो गया',
],
],
];
@@ -0,0 +1,7 @@
<?php
return [
'breadcrumb' => 'सूची',
];
@@ -0,0 +1,9 @@
<?php
return [
'title' => ':label देखें',
'breadcrumb' => 'देखें',
];
@@ -0,0 +1,15 @@
<?php
return [
'actions' => [
'logout' => [
'label' => 'साइन आउट',
],
],
'welcome' => 'स्वागत',
];
@@ -0,0 +1,17 @@
<?php
return [
'actions' => [
'open_documentation' => [
'label' => 'प्रलेखन',
],
'open_github' => [
'label' => 'GitHub',
],
],
];