Skip to content

Commit 13b0195

Browse files
authored
feat: locale for ar translation files (#1051)
1 parent 8575e2b commit 13b0195

File tree

3 files changed

+102
-0
lines changed

3 files changed

+102
-0
lines changed

locale/ar/auth.php

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
<?php
2+
3+
return [
4+
5+
/*
6+
|--------------------------------------------------------------------------
7+
| Authentication Language Lines
8+
|--------------------------------------------------------------------------
9+
|
10+
| The following language lines are used during authentication for various
11+
| messages that we need to display to the user. You are free to modify
12+
| these language lines according to your application's requirements.
13+
|
14+
*/
15+
16+
'failed' => 'المعلومات المدخلة لا تطابق سجلاتنا.',
17+
'throttle' => 'محاولات دخول أكثر من اللازم. يرجى إعادة المحاولة بعد :seconds ثانية.',
18+
19+
'full_name' => 'الإسم الكامل',
20+
'email' => 'البريد الإلكتروني',
21+
'password' => 'كلمة المرور',
22+
'confirm_password' => 'تأكيد كلمة المرور',
23+
'remember_me' => 'تذكرني',
24+
'sign_in' => 'تسجيل الدخول',
25+
'sign_out' => 'تسجيل الخروج',
26+
'register' => 'إنشاء حساب',
27+
28+
'login' => [
29+
'title' => 'قم بتسجيل الدخول للبدء',
30+
'forgot_password' => 'نسيت كلمة المرور',
31+
],
32+
33+
'registration' => [
34+
'title' => 'قم بفتح حساب جديد',
35+
'i_agree' => 'أوافق على',
36+
'terms' => 'الشروط',
37+
'have_membership' => 'لدي حساب',
38+
],
39+
40+
'forgot_password' => [
41+
'title' => 'نسيت كلمة المرور؟ يمكنك هنا استعادة كلمة مرور جديدة',
42+
'send_pwd_reset' => 'أرسل رابط استعادة كلمة المرور',
43+
],
44+
45+
'reset_password' => [
46+
'title' => 'أنت على بعد خطوة واحدة من كلمة مرورك الجديدة، قم بالحصول عليها.',
47+
'reset_pwd_btn' => 'إستعادة كلمة المرور',
48+
],
49+
50+
'confirm_passwords' => [
51+
'title' => 'رجاءً قم بتأكيد كلمة مرورك قبل المتابعة.',
52+
'forgot_your_password' => 'نسيت كلمة المرور؟',
53+
],
54+
55+
'verify_email' => [
56+
'title' => 'قم بتأكيد بريدك الإلكتروني',
57+
'success' => 'تم إرسال رابط تحقق حديث إلى بريدك الإلكتروني',
58+
'notice' => 'قبل المتابعة، يرجى تفقد البريد الإلكتروني الخاص بك للحصول على رابط التحقق. إذا لم تتلقى بريداً،',
59+
'another_req' => 'إضغط هنا لإرسال رابط آخر',
60+
],
61+
62+
'emails' => [
63+
'password' => [
64+
'reset_link' => 'اضغط هنا لإستعادة كلمة مرورك',
65+
],
66+
],
67+
];

locale/ar/crud.php

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?php
2+
3+
return [
4+
5+
'add_new' => 'إضافة جديد',
6+
'cancel' => 'إلغاء',
7+
'create' => 'إنشاء',
8+
'edit' => 'تعديل',
9+
'save' => 'حفظ',
10+
'delete' => 'جذف',
11+
'detail' => 'التفاصيل',
12+
'back' => 'العودة',
13+
'search' => 'البحث',
14+
'export' => 'تصدير',
15+
'print' => 'طباعة',
16+
'reset' => 'استعادة',
17+
'reload' => 'إعادة تحميل',
18+
'action' => 'عملية',
19+
'id' => 'Id',
20+
'created_at' => 'تاريخ الإنشاء',
21+
'updated_at' => 'تاريخ آخر تعديل',
22+
'deleted_at' => 'تاريخ الحذف',
23+
'are_you_sure' => 'هل أنت متأكد؟',
24+
];

locale/ar/messages.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
return [
4+
5+
'retrieved' => 'تم جلب :model بنجاح.',
6+
'saved' => 'تم حفظ :model بنجاح.',
7+
'updated' => 'تم تعديل :model بنجاح.',
8+
'deleted' => 'تم حذف :model بنجاح.',
9+
'not_found' => 'لم يتم العثور على :model.',
10+
11+
];

0 commit comments

Comments
 (0)