mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
46 lines
1.8 KiB
PHP
46 lines
1.8 KiB
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'account_already_exists' => 'Een account met dit e-mailadres bestaat reeds.',
|
|
'account_not_found' => 'De gebruikersnaam of het wachtwoord is niet juist.',
|
|
'account_not_activated' => 'Deze gebruikersaccount is niet actief.',
|
|
'account_suspended' => 'Deze gebruikersaccount is vergrendeld.',
|
|
'account_banned' => 'Deze gebruikersaccount is geband.',
|
|
'throttle' => 'Too many failed login attempts. Please try again in :minutes minutes.',
|
|
|
|
'two_factor' => array(
|
|
'already_enrolled' => 'Your device is already enrolled.',
|
|
'success' => 'You have successfully logged in.',
|
|
'code_required' => 'Two-factor code is required.',
|
|
'invalid_code' => 'Two-factor code is invalid.',
|
|
),
|
|
|
|
'signin' => array(
|
|
'error' => 'Er was een probleem bij inloggen, probeer opnieuw aub.',
|
|
'success' => 'U bent succesvol aangemeld.',
|
|
),
|
|
|
|
'logout' => array(
|
|
'error' => 'There was a problem while trying to log you out, please try again.',
|
|
'success' => 'You have successfully logged out.',
|
|
),
|
|
|
|
'signup' => array(
|
|
'error' => 'Er was een probleem bij het aanmaken van uw account, probeer opnieuw aub.',
|
|
'success' => 'Gebruikersaccount succesvol aangemaakt.',
|
|
),
|
|
|
|
'forgot-password' => array(
|
|
'error' => 'Er was een probleem bij het ophalen van de paswoord herstelcode, probeer opnieuw aub.',
|
|
'success' => 'If that email address exists in our system, a password recovery email has been sent.',
|
|
),
|
|
|
|
'forgot-password-confirm' => array(
|
|
'error' => 'Er was een probleem bij het opnieuw instellen van uw wachtwoord, probeer opnieuw aub.',
|
|
'success' => 'Uw wachtwoord werd hersteld.',
|
|
),
|
|
|
|
|
|
);
|