Files
2025-11-17 16:30:00 -05:00

92 lines
2.9 KiB
PHP

<?php
return [
/*
|--------------------------------------------------------------------------
| Validation Language Lines
|--------------------------------------------------------------------------
|
| The following language lines contain the default error messages used by
| the validator class. Some of these rules have multiple versions such
| as the size rules. Feel free to tweak each of these messages here.
|
*/
/*
|--------------------------------------------------------------------------
| Custom Validation Language Lines
|--------------------------------------------------------------------------
|
| Here you may specify custom validation messages for attributes using the
| convention "attribute.rule" to name the lines. This makes it quick to
| specify a specific custom language line for a given attribute rule.
|
*/
'custom' => [
'attribute-name' => [
],
],
/*
|--------------------------------------------------------------------------
| Custom Validation Attributes
|--------------------------------------------------------------------------
|
| The following language lines are used to swap our attribute placeholder
| with something more reader friendly such as "E-Mail Address" instead
| of "email". This simply helps us make our message more expressive.
|
*/
'attributes' => [
'address' => 'adres',
'age' => 'leeftijd',
'body' => 'inhoud',
'cell' => 'cel',
'city' => 'stad',
'country' => 'land',
'date' => 'datum',
'day' => 'dag',
'excerpt' => 'summary',
'first_name' => 'voornaam',
'gender' => 'geslacht',
'marital_status' => 'burgerlijke staat',
'profession' => 'beroep',
'nationality' => 'nationaliteit',
'hour' => 'uur',
'last_name' => 'achternaam',
'message' => 'bericht',
'minute' => 'minuut',
'mobile' => 'mobiel',
'month' => 'maand',
'name' => 'naam',
'zipcode' => 'postcode',
'company_name' => 'bedrijfsnaam',
'neighborhood' => 'wijk',
'number' => 'nummer',
'password' => 'wachtwoord',
'phone' => 'telefoon',
'second' => 'seconde',
'sex' => 'geslacht',
'state' => 'staat',
'street' => 'straat',
'subject' => 'onderwerp',
'text' => 'tekst',
'time' => 'tijd',
'title' => 'titel',
'username' => 'gebruikersnaam',
'year' => 'jaar',
'description' => 'beschrijving',
'password_confirmation' => 'wachtwoord bevestiging',
'current_password' => 'huidig wachtwoord',
'complement' => 'complementair',
'modality' => 'modaliteit',
'category' => 'categorie',
'blood_type' => 'bloed type',
'birth_date' => 'geboortedatum',
],
];