mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-04-19 10:09:05 +08:00

Some checks failed
analyse-php / build (push) Waiting to run
lint-php / build (push) Waiting to run
test-migrations / build (8.2) (push) Waiting to run
test-migrations / build (8.3) (push) Waiting to run
test-migrations / build (8.4) (push) Waiting to run
test-php / build (8.2) (push) Waiting to run
test-php / build (8.3) (push) Waiting to run
test-php / build (8.4) (push) Waiting to run
lint-js / build (push) Has been cancelled
test-js / build (push) Has been cancelled
16 lines
801 B
PHP
16 lines
801 B
PHP
<?php
|
|
/**
|
|
* Password Reminder Language Lines
|
|
* The following language lines are the default lines which match reasons
|
|
* that are given by the password broker for a password update attempt has failed.
|
|
*/
|
|
return [
|
|
|
|
'password' => 'يجب أن تتكون كلمة السر من ستة أحرف على الأقل وأن تطابق التأكيد.',
|
|
'user' => "لم يتم العثور على مستخدم بعنوان البريد الإلكتروني المعطى.",
|
|
'token' => 'رمز إعادة تعيين كلمة السر غير صالح لعنوان هذا البريد الإلكتروني.',
|
|
'sent' => 'تم إرسال رابط تجديد كلمة السر إلى بريدكم الإلكتروني!',
|
|
'reset' => 'تم تجديد كلمة السر الخاصة بكم!',
|
|
|
|
];
|