15 lines
580 B
PHP
15 lines
580 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' => 'Heslo musí být alespoň 6 znaků dlouhé a shodovat se v obou polích.',
|
|
'user' => 'Nemůžeme najít uživatele se zadanou e-mailovou adresou.',
|
|
'token' => 'Token pro reset hesla není platný pro tuto e-mailovou adresu.',
|
|
'sent' => 'Poslali jsme vám odkaz pro reset hesla!',
|
|
'reset' => 'Vaše heslo bylo resetováno!',
|
|
|
|
];
|