mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
37 lines
1.4 KiB
PHP
37 lines
1.4 KiB
PHP
|
<?php
|
||
|
|
||
|
return array(
|
||
|
|
||
|
'account_already_exists' => 'Már létezik ezzel az e-mail címmel felhasználó.',
|
||
|
'account_not_found' => 'The username or password is incorrect.',
|
||
|
'account_not_activated' => 'Ez a felhasználó nincs aktiválva.',
|
||
|
'account_suspended' => 'Ez a felhasználói fiók fel van függesztve.',
|
||
|
'account_banned' => 'Ez a felhasználó ki van tiltva.',
|
||
|
|
||
|
'signin' => array(
|
||
|
'error' => 'Bejelentkezés közben probléma lépett fel, kérjük próbálja újra.',
|
||
|
'success' => 'Sikeresen bejelentkezett.',
|
||
|
),
|
||
|
|
||
|
'signup' => array(
|
||
|
'error' => 'Felhasználói fiók létrehozása közben probléma lépett fel, kérjük próbálja újra.',
|
||
|
'success' => 'Account sucessfully created.',
|
||
|
),
|
||
|
|
||
|
'forgot-password' => array(
|
||
|
'error' => 'There was a problem while trying to get a reset password code, please try again.',
|
||
|
'success' => 'Password recovery email successfully sent.',
|
||
|
),
|
||
|
|
||
|
'forgot-password-confirm' => array(
|
||
|
'error' => 'There was a problem while trying to reset your password, please try again.',
|
||
|
'success' => 'Your password has been successfully reset.',
|
||
|
),
|
||
|
|
||
|
'activate' => array(
|
||
|
'error' => 'There was a problem while trying to activate your account, please try again.',
|
||
|
'success' => 'Your account has been successfully activated.',
|
||
|
),
|
||
|
|
||
|
);
|