[增添]添加了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' => [
'associate' => [
'label' => 'שייך',
],
'associate_another' => [
'label' => 'שייך ושייך אחד נוסף',
],
],
],
'notifications' => [
'associated' => [
'title' => 'שויך',
],
],
],
];

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' => ':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,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' => 'שיוך הוסר',
],
],
],
];

View File

@@ -0,0 +1,33 @@
<?php
return [
'single' => [
'label' => 'ערוך',
'modal' => [
'heading' => 'ערך את :label',
'actions' => [
'save' => [
'label' => 'שמור שינויים',
],
],
],
'notifications' => [
'saved' => [
'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,9 @@
<?php
return [
'trigger' => [
'label' => 'פעולות',
],
];

View File

@@ -0,0 +1,23 @@
<?php
return [
'confirmation' => 'האם אתה בטוח?',
'actions' => [
'cancel' => [
'label' => 'ביטול',
],
'confirm' => [
'label' => 'אישור',
],
'submit' => [
'label' => 'שלח',
],
],
];

View File

@@ -0,0 +1,33 @@
<?php
return [
'single' => [
'label' => 'שכפל',
'modal' => [
'heading' => 'שכפל את :label',
'actions' => [
'replicate' => [
'label' => 'שכפל',
],
],
],
'notifications' => [
'replicated' => [
'title' => 'שוכפל',
],
],
],
];

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' => 'שוחזר',
],
],
],
];

View File

@@ -0,0 +1,25 @@
<?php
return [
'single' => [
'label' => 'תצוגה',
'modal' => [
'heading' => 'מציג :label',
'actions' => [
'close' => [
'label' => 'סגור',
],
],
],
],
];