mirror of
https://github.com/alexjustesen/speedtest-tracker.git
synced 2026-06-23 07:30:09 +00:00
1bb1ad764b
Co-authored-by: Shift <shift@laravelshift.com>
92 lines
2.9 KiB
PHP
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',
|
|
],
|
|
];
|