]> BookStack Code Mirror - bookstack/blob - resources/lang/de_informal/validation.php
New translations validation.php (German Informal)
[bookstack] / resources / lang / de_informal / validation.php
1 <?php
2 /**
3  * Validation Lines
4  * The following language lines contain the default error messages used by
5  * the validator class. Some of these rules have multiple versions such
6  * as the size rules. Feel free to tweak each of these messages here.
7  */
8 return [
9
10     // Standard laravel validation lines
11     'accepted'             => ':attribute muss akzeptiert werden.',
12     'active_url'           => ':attribute ist keine valide URL.',
13     'after'                => ':attribute muss ein Datum nach :date sein.',
14     'alpha'                => ':attribute kann nur Buchstaben enthalten.',
15     'alpha_dash'           => ':attribute kann nur Buchstaben, Zahlen und Bindestriche enthalten.',
16     'alpha_num'            => ':attribute kann nur Buchstaben und Zahlen enthalten.',
17     'array'                => ':attribute muss ein Array sein.',
18     'before'               => ':attribute muss ein Datum vor :date sein.',
19     'between'              => [
20         'numeric' => ':attribute muss zwischen :min und :max liegen.',
21         'file'    => ':attribute muss zwischen :min und :max Kilobytes groß sein.',
22         'string'  => ':attribute muss zwischen :min und :max Zeichen lang sein.',
23         'array'   => ':attribute muss zwischen :min und :max Elemente enthalten.',
24     ],
25     'boolean'              => ':attribute Feld muss wahr oder falsch sein.',
26     'confirmed'            => ':attribute stimmt nicht überein.',
27     'date'                 => ':attribute ist kein valides Datum.',
28     'date_format'          => ':attribute entspricht nicht dem Format :format.',
29     'different'            => ':attribute und :other müssen unterschiedlich sein.',
30     'digits'               => ':attribute muss :digits Stellen haben.',
31     'digits_between'       => ':attribute muss zwischen :min und :max Stellen haben.',
32     'email'                => ':attribute muss eine valide E-Mail-Adresse sein.',
33     'ends_with' => ':attribute muss mit einem der folgenden Werte: :values enden',
34     'filled'               => ':attribute ist erforderlich.',
35     'gt'                   => [
36         'numeric' => ':attribute muss größer als :value sein.',
37         'file'    => ':attribute muss mindestens :value Kilobytes groß sein.',
38         'string'  => ':attribute muss mehr als :value Zeichen haben.',
39         'array'   => ':attribute muss mindestens :value Elemente haben.',
40     ],
41     'gte'                  => [
42         'numeric' => ':attribute muss größer-gleich :value sein.',
43         'file'    => ':attribute muss mindestens :value Kilobytes groß sein.',
44         'string'  => ':attribute muss mindestens :value Zeichen enthalten.',
45         'array'   => ':attribute muss :value Elemente oder mehr haben.',
46     ],
47     'exists'               => ':attribute ist ungültig.',
48     'image'                => ':attribute muss ein Bild sein.',
49     'image_extension'      => ':attribute muss eine gültige und unterstützte Bild-Dateiendung haben.',
50     'in'                   => ':attribute ist ungültig.',
51     'integer'              => ':attribute muss eine Zahl sein.',
52     'ip'                   => ':attribute muss eine valide IP-Adresse sein.',
53     'ipv4'                 => ':attribute muss eine gültige IPv4 Adresse sein.',
54     'ipv6'                 => ':attribute muss eine gültige IPv6-Adresse sein.',
55     'json'                 => 'Das Attribut muss eine gültige JSON-Zeichenfolge sein.',
56     'lt'                   => [
57         'numeric' => ':attribute muss kleiner sein :value sein.',
58         'file'    => ':attribute muss kleiner als :value Kilobytes sein.',
59         'string'  => ':attribute muss weniger als :value Zeichen haben.',
60         'array'   => ':attribute muss weniger als :value Elemente haben.',
61     ],
62     'lte'                  => [
63         'numeric' => ':attribute muss kleiner oder gleich :value sein.',
64         'file'    => ':attribute muss kleiner oder gleich :value Kilobytes sein.',
65         'string'  => ':attribute darf höchstens :value Zeichen besitzen.',
66         'array'   => ':attribute darf höchstens :value Elemente haben.',
67     ],
68     'max'                  => [
69         'numeric' => ':attribute darf nicht größer als :max sein.',
70         'file'    => ':attribute darf nicht größer als :max Kilobyte sein.',
71         'string'  => ':attribute darf nicht länger als :max Zeichen sein.',
72         'array'   => ':attribute darf nicht mehr als :max Elemente enthalten.',
73     ],
74     'mimes'                => ':attribute muss eine Datei vom Typ: :values sein.',
75     'min'                  => [
76         'numeric' => ':attribute muss mindestens :min sein',
77         'file'    => ':attribute muss mindestens :min Kilobyte groß sein.',
78         'string'  => ':attribute muss mindestens :min Zeichen lang sein.',
79         'array'   => ':attribute muss mindesten :min Elemente enthalten.',
80     ],
81     'no_double_extension'  => ':attribute darf nur eine gültige Dateiendung',
82     'not_in'               => ':attribute ist ungültig.',
83     'not_regex'            => ':attribute ist kein valides Format.',
84     'numeric'              => ':attribute muss eine Zahl sein.',
85     'regex'                => ':attribute ist in einem ungültigen Format.',
86     'required'             => ':attribute ist erforderlich.',
87     'required_if'          => ':attribute ist erforderlich, wenn :other :value ist.',
88     'required_with'        => ':attribute ist erforderlich, wenn :values vorhanden ist.',
89     'required_with_all'    => ':attribute ist erforderlich, wenn :values vorhanden sind.',
90     'required_without'     => ':attribute ist erforderlich, wenn :values nicht vorhanden ist.',
91     'required_without_all' => ':attribute ist erforderlich, wenn :values nicht vorhanden sind.',
92     'same'                 => ':attribute und :other müssen übereinstimmen.',
93     'size'                 => [
94         'numeric' => ':attribute muss :size sein.',
95         'file'    => ':attribute muss :size Kilobytes groß sein.',
96         'string'  => ':attribute muss :size Zeichen lang sein.',
97         'array'   => ':attribute muss :size Elemente enthalten.',
98     ],
99     'string'               => ':attribute muss eine Zeichenkette sein.',
100     'timezone'             => ':attribute muss eine valide zeitzone sein.',
101     'unique'               => ':attribute wird bereits verwendet.',
102     'url'                  => ':attribute ist kein valides Format.',
103     'uploaded'             => 'Die Datei konnte nicht hochgeladen werden. Der Server akzeptiert möglicherweise keine Dateien dieser Größe.',
104
105     // Custom validation lines
106     'custom' => [
107         'password-confirm' => [
108             'required_with' => 'Passwortbestätigung erforderlich',
109         ],
110     ],
111
112     // Custom validation attributes
113     'attributes' => [],
114 ];