mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
934afa036f
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
45 lines
1.8 KiB
PHP
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.',
|
|
],
|
|
|
|
];
|