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
@@ -0,0 +1,52 @@
<?php
return [
'label' => 'פרופיל',
'form' => [
'email' => [
'label' => 'כתובת דוא"ל',
],
'name' => [
'label' => 'שם',
],
'password' => [
'label' => 'סיסמה חדשה',
'validation_attribute' => 'סיסמה',
],
'password_confirmation' => [
'label' => 'אימות סיסמה חדשה',
],
'actions' => [
'save' => [
'label' => 'שמור שינויים',
],
],
],
'notifications' => [
'saved' => [
'title' => 'נשמר',
],
],
'actions' => [
'cancel' => [
'label' => 'ביטול',
],
],
];
@@ -0,0 +1,35 @@
<?php
return [
'title' => 'אמת את כתובת הדוא"ל שלך',
'heading' => 'אמת את כתובת הדוא"ל שלך',
'actions' => [
'resend_notification' => [
'label' => 'שלח שוב',
],
],
'messages' => [
'notification_not_received' => 'לא קבלת את הדוא"ל ששלחנו?',
'notification_sent' => 'שלחנו הודעת דואר אלקטרוני ל-:email עם הוראות כיצד לאמת את כתובת הדוא"ל שלך.',
],
'notifications' => [
'notification_resent' => [
'title' => 'שלחנו שוב את הדוא"ל.',
],
'notification_resend_throttled' => [
'title' => 'יותר מדי נסיונות של שליחה מחדש',
'body' => 'אנא נסה שוב בעוד :seconds שניות.',
],
],
];
+61
View File
@@ -0,0 +1,61 @@
<?php
return [
'title' => 'התחברות',
'heading' => 'התחבר לחשבון שלך',
'actions' => [
'register' => [
'before' => 'או',
'label' => 'הירשם לחשבון',
],
'request_password_reset' => [
'label' => 'שכחת את הסיסמה שלך?',
],
],
'form' => [
'email' => [
'label' => 'כתובת דואר אלקטרוני',
],
'password' => [
'label' => 'סיסמה',
],
'remember' => [
'label' => 'זכור אותי',
],
'actions' => [
'authenticate' => [
'label' => 'התחבר',
],
],
],
'messages' => [
'failed' => 'הפרטים שהזנת שגויים או לא קיימים.',
],
'notifications' => [
'throttled' => [
'title' => 'יותר מדי ניסיונות התחברות',
'body' => 'אנא נסה שוב בעוד :seconds שניות.',
],
],
];
@@ -0,0 +1,46 @@
<?php
return [
'title' => 'אפס את הסיסמה שלך',
'heading' => 'שכחת את הסיסמה שלך?',
'actions' => [
'login' => [
'label' => 'חזרה להתחברות',
],
],
'form' => [
'email' => [
'label' => 'כתובת דוא"ל',
],
'actions' => [
'request' => [
'label' => 'שלח דוא"ל',
],
],
],
'notifications' => [
'sent' => [
'body' => 'הודעת דוא"ל תישלח רק במידה והחשבון קיים.',
],
'throttled' => [
'title' => 'יותר מדי בקשות',
'body' => 'אנא נסה שוב בעוד :seconds שניות.',
],
],
];
@@ -0,0 +1,43 @@
<?php
return [
'title' => 'אפס את הסיסמה שלך',
'heading' => 'אפס את הסיסמה שלך',
'form' => [
'email' => [
'label' => 'כתובת דוא"ל',
],
'password' => [
'label' => 'סיסמה',
'validation_attribute' => 'סיסמה',
],
'password_confirmation' => [
'label' => 'אימות סיסמה',
],
'actions' => [
'reset' => [
'label' => 'איפוס סיסמה',
],
],
],
'notifications' => [
'throttled' => [
'title' => 'יותר מדי נסיונות איפוס סיסמה',
'body' => 'אנא נסה שוב בעוד :seconds שניות.',
],
],
];
+56
View File
@@ -0,0 +1,56 @@
<?php
return [
'title' => 'הרשמה',
'heading' => 'הירשם',
'actions' => [
'login' => [
'before' => 'או',
'label' => 'התחבר לחשבונך',
],
],
'form' => [
'email' => [
'label' => 'כתובת דוא"ל',
],
'name' => [
'label' => 'שם',
],
'password' => [
'label' => 'סיסמה',
'validation_attribute' => 'סיסמה',
],
'password_confirmation' => [
'label' => 'אמת סיסמה',
],
'actions' => [
'register' => [
'label' => 'הירשם',
],
],
],
'notifications' => [
'throttled' => [
'title' => 'יותר מדי ניסיונות להרשמה',
'body' => 'אנא נסה שוב בעוד :seconds שניות.',
],
],
];
@@ -0,0 +1,9 @@
<?php
return [
'title' => 'שגיאה בעת טעינת הדף',
'body' => 'אירעה שגיאה בעת ניסיון טעינת דף זה. אנא נסה שוב מאוחר יותר.',
];
+12
View File
@@ -0,0 +1,12 @@
<?php
return [
'field' => [
'label' => 'חיפוש גלובלי',
'placeholder' => 'חיפוש',
],
'no_results_message' => 'לא נמצאו תוצאות.',
];
+55
View File
@@ -0,0 +1,55 @@
<?php
return [
'direction' => 'rtl',
'actions' => [
'billing' => [
'label' => 'נהל מנוי',
],
'logout' => [
'label' => 'התנתק',
],
'open_database_notifications' => [
'label' => 'פתח התראות',
],
'open_user_menu' => [
'label' => 'תפריט משתמש',
],
'sidebar' => [
'collapse' => [
'label' => 'כווץ תפריט צד',
],
'expand' => [
'label' => 'הרחב תפריט צד',
],
],
'theme_switcher' => [
'dark' => [
'label' => 'הפעל מצב כהה',
],
'light' => [
'label' => 'הפעל מצב בהיר',
],
'system' => [
'label' => 'הפעל ערכת נושא של המערכת',
],
],
],
];
+7
View File
@@ -0,0 +1,7 @@
<?php
return [
'title' => 'בית',
];
@@ -0,0 +1,25 @@
<?php
return [
'form' => [
'actions' => [
'save' => [
'label' => 'שמור שינויים',
],
],
],
'notifications' => [
'saved' => [
'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,43 @@
<?php
return [
'title' => 'עריכת :label',
'breadcrumb' => 'עריכה',
'navigation_label' => 'עריכה',
'form' => [
'actions' => [
'cancel' => [
'label' => 'ביטול',
],
'save' => [
'label' => 'שמור שינויים',
],
],
],
'content' => [
'tab' => [
'label' => 'עריכה',
],
],
'notifications' => [
'saved' => [
'title' => 'נשמר בהצלחה',
],
],
];
@@ -0,0 +1,7 @@
<?php
return [
'breadcrumb' => 'רשימה',
];
@@ -0,0 +1,17 @@
<?php
return [
'title' => 'הצגת :label',
'breadcrumb' => 'הצגה',
'content' => [
'tab' => [
'label' => 'הצגה',
],
],
];
@@ -0,0 +1,7 @@
<?php
return [
'body' => 'יש לך שינויים שלא נשמרו. האם אתה בטוח שברצונך לעזוב את הדף?',
];
@@ -0,0 +1,15 @@
<?php
return [
'actions' => [
'logout' => [
'label' => 'התנתק',
],
],
'welcome' => 'ברוך הבא',
];
@@ -0,0 +1,17 @@
<?php
return [
'actions' => [
'open_documentation' => [
'label' => 'תיעוד',
],
'open_github' => [
'label' => 'GitHub',
],
],
];