2024-03-21 18:28:42 +01:00
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Password Reset 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, such as for an invalid token or invalid new password.
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// Laravel
|
2024-05-29 10:37:52 +02:00
|
|
|
|
'reset' => 'Parolanız sıfırlandı!',
|
|
|
|
|
'sent' => 'ePosta adresinize parola sıfırlama bağlantısı gönderdik!',
|
|
|
|
|
'throttled' => 'Lütfen tekrar denemeden önce bekleyin.',
|
|
|
|
|
'token' => 'Şifre sıfırlama token\'i geçersiz.',
|
|
|
|
|
'user' => "Bu ePosta adresine sahip bir kullanıcı bulamadık.",
|
2024-03-21 18:28:42 +01:00
|
|
|
|
|
|
|
|
|
// 2FAuth
|
2024-05-29 10:37:52 +02:00
|
|
|
|
'password' => 'Parolalar en az sekiz karakterden oluşmalı ve şifre doğrulaması ile eşleşmelidir.',
|
2024-03-21 18:28:42 +01:00
|
|
|
|
|
|
|
|
|
];
|