Skip to content

Commit

Permalink
Merge pull request #34 from KaramNassar/main
Browse files Browse the repository at this point in the history
Add Arabic Translation
  • Loading branch information
rmsramos authored Jul 23, 2024
2 parents e166511 + c838067 commit c099df2
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 0 deletions.
9 changes: 9 additions & 0 deletions resources/lang/ar/action.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?php

return [
'modal' => [
'heading' => 'سجل نشاط المستخدم',
'description' => 'تتبع جميع أنشطة المستخدم',
'tooltip' => 'أنشطة المستخدم',
],
];
33 changes: 33 additions & 0 deletions resources/lang/ar/forms.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?php

return [
'fields' => [
'log_name' => [
'label' => 'النوع',
],
'event' => [
'label' => 'الحدث',
],
'subject_type' => [
'label' => 'الموضوع',
],
'causer' => [
'label' => 'المستخدم',
],
'description' => [
'label' => 'الوصف',
],
'properties' => [
'label' => 'الخصائص',
],
'created_at' => [
'label' => 'تاريخ التسجيل',
],
'old' => [
'label' => 'القديم',
],
'attributes' => [
'label' => 'الجديد',
],
],
];
34 changes: 34 additions & 0 deletions resources/lang/ar/tables.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?php

return [
'columns' => [
'log_name' => [
'label' => 'النوع',
],
'event' => [
'label' => 'الحدث',
],
'subject_type' => [
'label' => 'الموضوع',
],
'causer' => [
'label' => 'المستخدم',
],
'properties' => [
'label' => 'الخصائص',
],
'created_at' => [
'label' => 'تاريخ التسجيل',
],
],
'filters' => [
'created_at' => [
'label' => 'تاريخ التسجيل',
'created_from' => 'تاريخ الإنشاء من',
'created_until' => 'تاريخ الإنشاء حتى',
],
'event' => [
'label' => 'الحدث',
],
],
];

0 comments on commit c099df2

Please sign in to comment.