mirror of
https://github.com/BookStackApp/BookStack.git
synced 2026-07-18 21:32:11 +03:00
## Details <!-- Write details of your pull request in here --> <!-- Include references to any relevant issues/discussions --> ## Checklist <!-- Put an 'x' in between the brackets below to confirm these elements --> - [ ] I have read the [BookStack community rules](https://www.bookstackapp.com/about/community-rules/). - [ ] This PR does not feature significant use of LLM/AI generation as per the community rules above. Co-authored-by: Crowdin Bot <support+bot@crowdin.com> Reviewed-on: https://codeberg.org/bookstack/bookstack/pulls/6139
16 lines
618 B
PHP
16 lines
618 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' => 'A jelszónak legalább hat karakterből kell állnia, és egyeznie kell a megerősítéssel.',
|
|
'user' => "Nem található felhasználó ezzel az email címmel.",
|
|
'token' => 'A jelszó visszaállító kulcs nem érvényes ehhez az email címhez.',
|
|
'sent' => 'Emailben elküldtük a jelszó visszaállító hivatkozást!',
|
|
'reset' => 'A jelszó visszaállítva!',
|
|
|
|
];
|