mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-29 03:33:17 +01:00
27 lines
925 B
PHP
27 lines
925 B
PHP
<?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
|
||
'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.",
|
||
|
||
// 2FAuth
|
||
'password' => 'Parolalar en az sekiz karakterden oluşmalı ve şifre doğrulaması ile eşleşmelidir.',
|
||
|
||
];
|