snipe-it/resources/lang/nl/auth/message.php
Laravel Shift 934afa036f Adopt Laravel coding style
Shift automatically applies the Laravel coding style - which uses the PSR-2 coding style as a base with some minor additions.

You may customize the adopted coding style by adding your own [PHP CS Fixer][1] `.php_cs` config file to your project root. Feel free to use [Shift's Laravel ruleset][2] to help you get started.

[1]: https://github.com/FriendsOfPHP/PHP-CS-Fixer
[2]: https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200
2021-06-10 20:15:52 +00:00

45 lines
1.8 KiB
PHP

<?php
return [
'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' => 'Te veel mislukte inlog pogingen. Probeer het over :minuten opnieuw.',
'two_factor' => [
'already_enrolled' => 'Je apparaat is al uitgeleverd.',
'success' => 'U bent succesvol ingelogd.',
'code_required' => 'Tweestapsverificatie code is vereist.',
'invalid_code' => 'Tweestapsverificatie code is ongeldig.',
],
'signin' => [
'error' => 'Er was een probleem bij inloggen, probeer opnieuw aub.',
'success' => 'U bent succesvol aangemeld.',
],
'logout' => [
'error' => 'Er is een probleem opgetreden bij het uitloggen, probeer het nogmaals.',
'success' => 'U bent succesvol uitgelogd.',
],
'signup' => [
'error' => 'Er was een probleem bij het aanmaken van uw account, probeer opnieuw aub.',
'success' => 'Gebruikersaccount succesvol aangemaakt.',
],
'forgot-password' => [
'error' => 'Er was een probleem bij het ophalen van de paswoord herstelcode, probeer opnieuw aub.',
'success' => 'Als dat e-mailadres in ons systeem bestaat, is er een e-mail gestuurd om het wachtwoord te herstellen.',
],
'forgot-password-confirm' => [
'error' => 'Er was een probleem bij het opnieuw instellen van uw wachtwoord, probeer opnieuw aub.',
'success' => 'Uw wachtwoord werd hersteld.',
],
];