-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
534 additions
and
179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,8 @@ | |
"enabled" => true | ||
], | ||
|
||
'database_prefix' => null | ||
'database_prefix' => null, | ||
|
||
'scan' => true | ||
]; | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,102 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'group' => 'الإعدادات', | ||
'plugins' => [ | ||
'title' => 'الاضافات', | ||
'create' => 'إنشاء اضافة جديدة', | ||
'import' => 'استيراد اضافة', | ||
'form' => [ | ||
'name' => 'الاسم', | ||
'name-placeholder' => 'e.g. My Plugin', | ||
'description' => 'الوصف', | ||
'description-placeholder' => 'e.g. A simple plugin for Filament', | ||
'icon' => 'الايقونة', | ||
'color' => 'اللون', | ||
'file' => 'ملف الاضافة المضغوط', | ||
], | ||
'actions' => [ | ||
'generate' => 'توليد', | ||
'active' => 'تفعيل', | ||
'disable' => 'إبطال', | ||
'delete' => 'حذف', | ||
'github' => 'جيت هاب', | ||
'docs' => 'عن الاضافة', | ||
], | ||
'notifications' => [ | ||
'autoload' => [ | ||
'title' => 'خطأ', | ||
'body' => 'عفواً لا يمكن تفعيل هذه الاضافة قبل تشغيل الامر composer dump-autoload في الطرفية' | ||
], | ||
'enabled' => [ | ||
'title' => 'عملية ناجحة', | ||
'body' => 'تم تفعيل الاضافة بنجاح' | ||
], | ||
'deleted' => [ | ||
'title' => 'عملية ناجحة', | ||
'body' => 'تم حذف الاضافة بنجاح' | ||
], | ||
'disabled' => [ | ||
'title' => 'عملية ناجحة', | ||
'body' => 'تم تبطيل الاضافة بنجاح' | ||
], | ||
'import' => [ | ||
'title' => 'عملية ناجحة', | ||
'body' => 'تم استيراد الاضافة بنجاح' | ||
] | ||
] | ||
], | ||
'tables' => [ | ||
'title' => 'الجداول', | ||
'create' => 'إنشاء جدول جديد', | ||
'edit' => 'تعديل الجدول', | ||
'columns' => 'أعمدة الجدول', | ||
'form' => [ | ||
'name' => 'الاسم', | ||
'type' => 'النوع', | ||
'nullable' => 'يمكن أن يكون فارغاً', | ||
'foreign' => 'خارجي', | ||
'foreign_table' => 'جدول خارجي', | ||
'foreign_col' => 'عمود خارجي', | ||
'foreign_on_delete_cascade' => 'عند الحذف يتبع', | ||
'auto_increment' => 'تزايد تلقائياً', | ||
'primary' => 'رئيسي', | ||
'unsigned' => 'غير سالب', | ||
'default' => 'افتراضي', | ||
'unique' => 'فريد', | ||
'index' => 'فهرس', | ||
'lenth' => 'الطول', | ||
'migrated' => 'تم التهجير', | ||
'generated' => 'تم التوليد', | ||
'created_at' => 'تاريخ الإنشاء', | ||
'updated_at' => 'تاريخ التحديث', | ||
], | ||
'actions' => [ | ||
'create' => 'إنشاء جدول', | ||
'migrate' => 'تهجير', | ||
'generate' => 'توليد', | ||
'columns' => 'اضافة عمود', | ||
'add-id' => 'إضافة عمود ID', | ||
'add-timestamps' => 'إضافة الوقت', | ||
'add-softdeletes' => 'إضافة حذف ناعم', | ||
], | ||
'notifications' => [ | ||
'migrated' => [ | ||
'title' => 'عملية ناجحة', | ||
'body' => 'تم تهجير الجدول بنجاح' | ||
], | ||
'not-migrated' => [ | ||
'title' => 'خطأ', | ||
'body' => 'لا يمكن تهجير الجدول' | ||
], | ||
'generated' => [ | ||
'title' => 'عملية ناجحة', | ||
'body' => 'تم توليد الجدول بنجاح' | ||
], | ||
'model' => [ | ||
'title' => 'خطأ', | ||
'body' => 'لا يمكن توليد النموذج' | ||
] | ||
] | ||
] | ||
]; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,102 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'group' => 'Settings', | ||
'plugins' => [ | ||
'title' => 'Plugins', | ||
'create' => 'Create Plugin', | ||
'import' => 'Import Plugin', | ||
'form' => [ | ||
'name' => 'Name', | ||
'name-placeholder' => 'e.g. My Plugin', | ||
'description' => 'Description', | ||
'description-placeholder' => 'e.g. A simple plugin for Filament', | ||
'icon' => 'Icon', | ||
'color' => 'Color', | ||
'file' => 'Plugin ZIP file', | ||
], | ||
'actions' => [ | ||
'generate' => 'Generate', | ||
'active' => 'Active', | ||
'disable' => 'Disable', | ||
'delete' => 'Delete', | ||
'github' => 'Github', | ||
'docs' => 'Docs', | ||
], | ||
'notifications' => [ | ||
'autoload' => [ | ||
'title' => 'Error', | ||
'body' => 'The plugin could not be activated because the class could not be found. please run composer dump-autoload on your terminal' | ||
], | ||
'enabled' => [ | ||
'title' => 'Success', | ||
'body' => 'The plugin has been activated successfully.' | ||
], | ||
'deleted' => [ | ||
'title' => 'Success', | ||
'body' => 'The plugin has been deleted successfully.' | ||
], | ||
'disabled' => [ | ||
'title' => 'Success', | ||
'body' => 'The plugin has been deactivated successfully.' | ||
], | ||
'import' => [ | ||
'title' => 'Success', | ||
'body' => 'The plugin has been imported successfully.' | ||
] | ||
] | ||
], | ||
'tables' => [ | ||
'title' => 'Tables', | ||
'create' => 'Create Table', | ||
'edit' => 'Edit Table', | ||
'columns' => 'Table Columns', | ||
'form' => [ | ||
'name' => 'Name', | ||
'type' => 'Type', | ||
'nullable' => 'Nullable', | ||
'foreign' => 'Foreign', | ||
'foreign_table' => 'Foreign Table', | ||
'foreign_col' => 'Foreign Column', | ||
'foreign_on_delete_cascade' => 'On Delete Cascade', | ||
'auto_increment' => 'Auto Increment', | ||
'primary' => 'Primary', | ||
'unsigned' => 'Unsigned', | ||
'default' => 'Default', | ||
'unique' => 'Unique', | ||
'index' => 'Index', | ||
'lenth' => 'Length', | ||
'migrated' => 'Migrated', | ||
'generated' => 'Generated', | ||
'created_at' => 'Created At', | ||
'updated_at' => 'Update At', | ||
], | ||
'actions' => [ | ||
'create' => 'Create Table', | ||
'migrate' => 'Migrate', | ||
'generate' => 'Generate', | ||
'columns' => 'Add Column', | ||
'add-id' => 'Add ID Column', | ||
'add-timestamps' => 'Add Timestamps', | ||
'add-softdeletes' => 'Add Soft Deletes', | ||
], | ||
'notifications' => [ | ||
'migrated' => [ | ||
'title' => 'Success', | ||
'body' => 'The table has been migrated successfully.' | ||
], | ||
'not-migrated' => [ | ||
'title' => 'Error', | ||
'body' => 'The table could not be migrated.' | ||
], | ||
'generated' => [ | ||
'title' => 'Success', | ||
'body' => 'The table has been generated successfully.' | ||
], | ||
'model' => [ | ||
'title' => 'Error', | ||
'body' => 'The model could not be found generate it first.' | ||
] | ||
] | ||
] | ||
]; |
Oops, something went wrong.