Initial commit
This commit is contained in:
39
resources/lang/vendor/wirechat/de/validation.php
vendored
Normal file
39
resources/lang/vendor/wirechat/de/validation.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Laravel Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the Laravel validator class. Some of these rules have multiple versions such
|
||||
| as the size rules. Feel free to tweak each of these messages here.
|
||||
|
|
||||
*/
|
||||
'file' => 'Das Feld :attribute muss eine Datei sein.',
|
||||
'image' => 'Das Feld :attribute muss ein Bild sein.',
|
||||
'required' => 'Das Feld :attribute ist erforderlich.',
|
||||
'max' => [
|
||||
'array' => 'Das Feld :attribute darf nicht mehr als :max Elemente enthalten.',
|
||||
'file' => 'Das Feld :attribute darf nicht größer als :max Kilobyte sein.',
|
||||
'numeric' => 'Das Feld :attribute darf nicht größer als :max sein.',
|
||||
'string' => 'Das Feld :attribute darf nicht länger als :max Zeichen sein.',
|
||||
],
|
||||
'mimes' => 'Das Feld :attribute muss eine Datei des Typs sein: :values.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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' => [],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user