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' => [
'associate' => [
'label' => 'שייך',
],
'associate_another' => [
'label' => 'שייך ושייך אחד נוסף',
],
],
],
'notifications' => [
'associated' => [
'title' => 'שויך',
],
],
],
];
+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' => 'יצירת :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' => 'קישורים הוסרו',
],
],
],
];
+61
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' => 'שיוך הוסר',
],
],
],
];
+33
View File
@@ -0,0 +1,33 @@
<?php
return [
'single' => [
'label' => 'עריכה',
'modal' => [
'heading' => 'עריכת :label',
'actions' => [
'save' => [
'label' => 'שמור שינויים',
],
],
],
'notifications' => [
'saved' => [
'title' => 'נשמר',
],
],
],
];
+77
View File
@@ -0,0 +1,77 @@
<?php
return [
'label' => 'ייצוא :label',
'modal' => [
'heading' => 'ייצוא :label',
'form' => [
'columns' => [
'label' => 'עמודות',
'form' => [
'is_enabled' => [
'label' => ':column מופעל',
],
'label' => [
'label' => ':column שם',
],
],
],
],
'actions' => [
'export' => [
'label' => 'ייצא',
],
],
],
'notifications' => [
'completed' => [
'title' => 'ייצוא הושלם',
'actions' => [
'download_csv' => [
'label' => 'הורדת קובץ .csv',
],
'download_xlsx' => [
'label' => 'הורדת קובץ .xlsx',
],
],
],
'max_rows' => [
'title' => 'ייצוא גדול מידי',
'body' => 'You may not export more than 1 row at once.|You may not export more than :count rows at once.',
],
'started' => [
'title' => 'ייצוא התחיל',
'body' => 'פעולת הייצוא התחילה, שורה אחת תעובד ברקע. תוצג התראה כאשר קישור ההורדה יהיה מוכן.|פעולת הייצוא התחילה, :count שורות יעובדו ברקע. תוצג התראה כאשר קישור ההורדה יהיה מוכן.',
],
],
'file_name' => 'export-:export_id-:model',
];
+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' => 'נמחק',
],
],
],
];
+9
View File
@@ -0,0 +1,9 @@
<?php
return [
'trigger' => [
'label' => 'פעולות',
],
];
+85
View File
@@ -0,0 +1,85 @@
<?php
return [
'label' => 'ייבוא :label',
'modal' => [
'heading' => 'ייבוא :label',
'form' => [
'file' => [
'label' => 'קובץ',
'placeholder' => 'העלה קובץ CSV',
'rules' => [
'duplicate_columns' => '{0} The file must not contain more than one empty column header.|{1,*} The file must not contain duplicate column headers: :columns.',
],
],
'columns' => [
'label' => 'עמודות',
'placeholder' => 'בחר עמודה',
],
],
'actions' => [
'download_example' => [
'label' => 'הורד קובץ CSV לדוגמה',
],
'import' => [
'label' => 'ייבא',
],
],
],
'notifications' => [
'completed' => [
'title' => 'ייבוא הושלם',
'actions' => [
'download_failed_rows_csv' => [
'label' => 'הורד מידע על השורה שנכשלה|הורד מידע על השורות שנכשלו',
],
],
],
'max_rows' => [
'title' => 'קובץ ה CSV שהועלה גדול מידי',
'body' => 'אין לייבא יותר משורה אחת בבת אחת.|אין לייבא יותר מ :count שורות בבת אחת.',
],
'started' => [
'title' => 'ייבוא התחיל',
'body' => 'הייבוא התחיל והעיבוד של שורה אחת יתבצע ברקע.|הייבוא התחיל והעיבוד של :count שורות יתבצע ברקע.',
],
],
'example_csv' => [
'file_name' => ':importer-example',
],
'failure_csv' => [
'file_name' => 'import-:import_id-:csv_name-failed-rows',
'error_header' => 'שגיאה',
'system_error' => 'שגיאה מערכת, נא צור קשר עם התמיכה.',
'column_mapping_required_for_new_record' => 'העמודה :attribute לא מופתה לעמודה בקובץ, אך היא נדרשת ליצירת רשומות חדשות.',
],
];
+23
View File
@@ -0,0 +1,23 @@
<?php
return [
'confirmation' => 'האם אתה בטוח?',
'actions' => [
'cancel' => [
'label' => 'ביטול',
],
'confirm' => [
'label' => 'אישור',
],
'submit' => [
'label' => 'שלח',
],
],
];
+10
View File
@@ -0,0 +1,10 @@
<?php
return [
'throttled' => [
'title' => 'יותר מדי ניסיונות',
'body' => 'אנא נסה שוב בעוד :seconds שניות.',
],
];
+33
View File
@@ -0,0 +1,33 @@
<?php
return [
'single' => [
'label' => 'שכפול',
'modal' => [
'heading' => 'שכפול :label',
'actions' => [
'replicate' => [
'label' => 'שכפל',
],
],
],
'notifications' => [
'replicated' => [
'title' => 'שוכפל',
],
],
],
];
+61
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' => 'שוחזר',
],
],
],
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
'single' => [
'label' => 'תצוגה',
'modal' => [
'heading' => 'מציג :label',
'actions' => [
'close' => [
'label' => 'סגור',
],
],
],
],
];