mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-13 17:14:10 -08:00
934afa036f
Shift automatically applies the Laravel coding style - which uses the PSR-2 coding style as a base with some minor additions. You may customize the adopted coding style by adding your own [PHP CS Fixer][1] `.php_cs` config file to your project root. Feel free to use [Shift's Laravel ruleset][2] to help you get started. [1]: https://github.com/FriendsOfPHP/PHP-CS-Fixer [2]: https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200
45 lines
2.3 KiB
PHP
45 lines
2.3 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'account_already_exists' => 'حساب بهذا البريد الإلكتروني موجود مسبقا.',
|
|
'account_not_found' => 'اسم المستخدم أو كلمة المرور غير صحيحة.',
|
|
'account_not_activated' => 'لم يتم تنشيط حساب هذا المستخدم.',
|
|
'account_suspended' => 'تم تعليق حساب المستخدم هذا.',
|
|
'account_banned' => 'تم حظر حساب المستخدم هذا.',
|
|
'throttle' => 'هناك عدد كبير جدا من محاولات تسجيل الدخول الفاشلة. يرجى المحاولة مرة أخرى خلال :minutes دقيقة.',
|
|
|
|
'two_factor' => [
|
|
'already_enrolled' => 'جهازك مسجل مسبقا.',
|
|
'success' => 'قمت بتسجيل الدخول بنجاح.',
|
|
'code_required' => 'رمز Two-factor مطلوب.',
|
|
'invalid_code' => 'رمز Two-factor غير صالح.',
|
|
],
|
|
|
|
'signin' => [
|
|
'error' => 'حدثت مشكلة أثناء محاولة تسجيل دخولك، الرجاء إعادة المحاولة.',
|
|
'success' => 'قمت بتسجيل الدخول بنجاح.',
|
|
],
|
|
|
|
'logout' => [
|
|
'error' => 'حدثت مشكلة أثناء محاولة تسجيل دخولك، الرجاء إعادة المحاولة.',
|
|
'success' => 'قمت بتسجيل الدخول بنجاح.',
|
|
],
|
|
|
|
'signup' => [
|
|
'error' => 'حدثت مشكلة أثناء محاولة إنشاء حسابك، يرجى إعادة المحاولة.',
|
|
'success' => 'تم إنشاء الحساب بنجاح.',
|
|
],
|
|
|
|
'forgot-password' => [
|
|
'error' => 'حدثت مشكلة أثناء محاولة الحصول على رمز إعادة تعيين كلمة المرور، الرجاء إعادة المحاولة.',
|
|
'success' => 'إذا كان عنوان البريد الإلكتروني هذا موجود في نظامنا، تم إرسال بريد إلكتروني لاسترداد كلمة المرور.',
|
|
],
|
|
|
|
'forgot-password-confirm' => [
|
|
'error' => 'حدثت مشكلة أثناء محاولة إعادة تعيين كلمة المرور، الرجاء إعادة المحاولة.',
|
|
'success' => 'تمت إعادة تعيين كلمة المرور بنجاح.',
|
|
],
|
|
|
|
];
|