mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-01-23 02:03:59 +08:00
15 lines
511 B
PHP
15 lines
511 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' => 'Lozinka mora imati najmanje 8 znakova i biti potvrđena.'
|
||
|
'token' => 'Ponovno postavljanje lozinke nemoguće putem ove adrese.'
|
||
|
'sent' => 'Na vašu email adresu poslana je poveznica za ponovno postavljanje!'
|
||
|
'reset' => 'Vaša je lozinka ponovno postavljena!'
|
||
|
|
||
|
];
|