Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add locale/ar translation files #1051

Merged
merged 1 commit into from
Dec 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.',

];