Skip to content

Commit

Permalink
feat: locale for ar translation files (InfyOmLabs#1051)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mosaab-Emam authored Dec 21, 2022
1 parent 8575e2b commit 13b0195
Show file tree
Hide file tree
Showing 3 changed files with 102 additions and 0 deletions.
67 changes: 67 additions & 0 deletions locale/ar/auth.php
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' => 'اضغط هنا لإستعادة كلمة مرورك',
],
],
];
24 changes: 24 additions & 0 deletions locale/ar/crud.php
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' => 'هل أنت متأكد؟',
];
11 changes: 11 additions & 0 deletions locale/ar/messages.php
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.',

];

0 comments on commit 13b0195

Please sign in to comment.