Files
speedtest-tracker/lang/en/validation.php
T
Alex Justesen 1bb1ad764b Laravel 12.x Shift (#2099)
Co-authored-by: Shift <shift@laravelshift.com>
2025-03-18 18:42:04 -04: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' => 'address',
'age' => 'age',
'body' => 'content',
'cell' => 'cell',
'city' => 'city',
'country' => 'country',
'date' => 'date',
'day' => 'day',
'excerpt' => 'summary',
'first_name' => 'first name',
'gender' => 'gender',
'marital_status' => 'marital status',
'profession' => 'profession',
'nationality' => 'nationality',
'hour' => 'hour',
'last_name' => 'last name',
'message' => 'message',
'minute' => 'minute',
'mobile' => 'mobile',
'month' => 'month',
'name' => 'name',
'zipcode' => 'zipcode',
'company_name' => 'company name',
'neighborhood' => 'neighborhood',
'number' => 'number',
'password' => 'password',
'phone' => 'phone',
'second' => 'second',
'sex' => 'sex',
'state' => 'state',
'street' => 'street',
'subject' => 'subject',
'text' => 'text',
'time' => 'time',
'title' => 'title',
'username' => 'username',
'year' => 'year',
'description' => 'description',
'password_confirmation' => 'password confirmation',
'current_password' => 'current password',
'complement' => 'complement',
'modality' => 'modality',
'category' => 'category',
'blood_type' => 'blood type',
'birth_date' => 'birth date',
],
];