mirror of
https://github.com/alexjustesen/speedtest-tracker.git
synced 2026-06-23 06:40:09 +00:00
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' => 'adresse',
|
|
'age' => 'alt',
|
|
'body' => 'inhalt',
|
|
'cell' => 'zelle',
|
|
'city' => 'stadt',
|
|
'country' => 'land',
|
|
'date' => 'datum',
|
|
'day' => 'tag',
|
|
'excerpt' => 'summary',
|
|
'first_name' => 'vorname',
|
|
'gender' => 'Geschlecht',
|
|
'marital_status' => 'ehelicher Status',
|
|
'profession' => 'Beruf',
|
|
'nationality' => 'Nationalität',
|
|
'hour' => 'std',
|
|
'last_name' => 'Nachname',
|
|
'message' => 'nachricht',
|
|
'minute' => 'minute',
|
|
'mobile' => 'mobile',
|
|
'month' => 'monat',
|
|
'name' => 'name',
|
|
'zipcode' => 'Postleitzahl',
|
|
'company_name' => 'firmenname',
|
|
'neighborhood' => 'Nachbarschaft',
|
|
'number' => 'anzahl',
|
|
'password' => 'passwort',
|
|
'phone' => 'telefon',
|
|
'second' => 'sekunde',
|
|
'sex' => 'sex',
|
|
'state' => 'status',
|
|
'street' => 'Straße',
|
|
'subject' => 'thema',
|
|
'text' => 'text',
|
|
'time' => 'Zeit',
|
|
'title' => 'titel',
|
|
'username' => 'benutzername',
|
|
'year' => 'jahr',
|
|
'description' => 'beschreibung',
|
|
'password_confirmation' => 'passwort bestätigen',
|
|
'current_password' => 'aktuelles Passwort',
|
|
'complement' => 'ergänzen',
|
|
'modality' => 'modalität',
|
|
'category' => 'kategorie',
|
|
'blood_type' => 'blutiger Typ',
|
|
'birth_date' => 'Geburtsdatum',
|
|
],
|
|
];
|