mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
16 lines
615 B
PHP
16 lines
615 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' => 'Passord må inneholde minst åtte tegn og samsvarer med bekreftelsen.',
|
|
'user' => "Vi finner ikke en bruker med den e-postadressen.",
|
|
'token' => 'Passordet for tilbakestilling av passord er ugyldig for denne e-postadressen.',
|
|
'sent' => 'Vi har sendt e-postadressen til tilbakestilling av passordet ditt!',
|
|
'reset' => 'Passordet ditt har blitt tilbakestilt!',
|
|
|
|
];
|