forked from InfyOmLabs/laravel-generator
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: locale for ar translation files (InfyOmLabs#1051)
- Loading branch information
1 parent
8575e2b
commit 13b0195
Showing
3 changed files
with
102 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Authentication Language Lines | ||
|-------------------------------------------------------------------------- | ||
| | ||
| The following language lines are used during authentication for various | ||
| messages that we need to display to the user. You are free to modify | ||
| these language lines according to your application's requirements. | ||
| | ||
*/ | ||
|
||
'failed' => 'المعلومات المدخلة لا تطابق سجلاتنا.', | ||
'throttle' => 'محاولات دخول أكثر من اللازم. يرجى إعادة المحاولة بعد :seconds ثانية.', | ||
|
||
'full_name' => 'الإسم الكامل', | ||
'email' => 'البريد الإلكتروني', | ||
'password' => 'كلمة المرور', | ||
'confirm_password' => 'تأكيد كلمة المرور', | ||
'remember_me' => 'تذكرني', | ||
'sign_in' => 'تسجيل الدخول', | ||
'sign_out' => 'تسجيل الخروج', | ||
'register' => 'إنشاء حساب', | ||
|
||
'login' => [ | ||
'title' => 'قم بتسجيل الدخول للبدء', | ||
'forgot_password' => 'نسيت كلمة المرور', | ||
], | ||
|
||
'registration' => [ | ||
'title' => 'قم بفتح حساب جديد', | ||
'i_agree' => 'أوافق على', | ||
'terms' => 'الشروط', | ||
'have_membership' => 'لدي حساب', | ||
], | ||
|
||
'forgot_password' => [ | ||
'title' => 'نسيت كلمة المرور؟ يمكنك هنا استعادة كلمة مرور جديدة', | ||
'send_pwd_reset' => 'أرسل رابط استعادة كلمة المرور', | ||
], | ||
|
||
'reset_password' => [ | ||
'title' => 'أنت على بعد خطوة واحدة من كلمة مرورك الجديدة، قم بالحصول عليها.', | ||
'reset_pwd_btn' => 'إستعادة كلمة المرور', | ||
], | ||
|
||
'confirm_passwords' => [ | ||
'title' => 'رجاءً قم بتأكيد كلمة مرورك قبل المتابعة.', | ||
'forgot_your_password' => 'نسيت كلمة المرور؟', | ||
], | ||
|
||
'verify_email' => [ | ||
'title' => 'قم بتأكيد بريدك الإلكتروني', | ||
'success' => 'تم إرسال رابط تحقق حديث إلى بريدك الإلكتروني', | ||
'notice' => 'قبل المتابعة، يرجى تفقد البريد الإلكتروني الخاص بك للحصول على رابط التحقق. إذا لم تتلقى بريداً،', | ||
'another_req' => 'إضغط هنا لإرسال رابط آخر', | ||
], | ||
|
||
'emails' => [ | ||
'password' => [ | ||
'reset_link' => 'اضغط هنا لإستعادة كلمة مرورك', | ||
], | ||
], | ||
]; |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'add_new' => 'إضافة جديد', | ||
'cancel' => 'إلغاء', | ||
'create' => 'إنشاء', | ||
'edit' => 'تعديل', | ||
'save' => 'حفظ', | ||
'delete' => 'جذف', | ||
'detail' => 'التفاصيل', | ||
'back' => 'العودة', | ||
'search' => 'البحث', | ||
'export' => 'تصدير', | ||
'print' => 'طباعة', | ||
'reset' => 'استعادة', | ||
'reload' => 'إعادة تحميل', | ||
'action' => 'عملية', | ||
'id' => 'Id', | ||
'created_at' => 'تاريخ الإنشاء', | ||
'updated_at' => 'تاريخ آخر تعديل', | ||
'deleted_at' => 'تاريخ الحذف', | ||
'are_you_sure' => 'هل أنت متأكد؟', | ||
]; |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'retrieved' => 'تم جلب :model بنجاح.', | ||
'saved' => 'تم حفظ :model بنجاح.', | ||
'updated' => 'تم تعديل :model بنجاح.', | ||
'deleted' => 'تم حذف :model بنجاح.', | ||
'not_found' => 'لم يتم العثور على :model.', | ||
|
||
]; |