]> BookStack Code Mirror - bookstack/blob - resources/lang/de/validation.php
Started work on details/summary blocks
[bookstack] / resources / lang / de / 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     'backup_codes'         => 'Der angegebene Code ist ungültig oder wurde bereits verwendet.',
19     'before'               => ':attribute muss ein Datum vor :date sein.',
20     'between'              => [
21         'numeric' => ':attribute muss zwischen :min und :max liegen.',
22         'file'    => ':attribute muss zwischen :min und :max Kilobytes groß sein.',
23         'string'  => ':attribute muss zwischen :min und :max Zeichen lang sein.',
24         'array'   => ':attribute muss zwischen :min und :max Elemente enthalten.',
25     ],
26     'boolean'              => ':attribute Feld muss wahr oder falsch sein.',
27     'confirmed'            => ':attribute stimmt nicht überein.',
28     'date'                 => ':attribute ist kein valides Datum.',
29     'date_format'          => ':attribute entspricht nicht dem Format :format.',
30     'different'            => ':attribute und :other müssen unterschiedlich sein.',
31     'digits'               => ':attribute muss :digits Stellen haben.',
32     'digits_between'       => ':attribute muss zwischen :min und :max Stellen haben.',
33     'email'                => ':attribute muss eine valide E-Mail-Adresse sein.',
34     'ends_with' => ':attribute muss mit einem der folgenden Werte: :values enden',
35     'filled'               => ':attribute ist erforderlich.',
36     'gt'                   => [
37         'numeric' => ':attribute muss größer als :value sein.',
38         'file'    => ':attribute muss mindestens :value Kilobytes groß sein.',
39         'string'  => ':attribute muss mehr als :value Zeichen haben.',
40         'array'   => ':attribute muss mindestens :value Elemente haben.',
41     ],
42     'gte'                  => [
43         'numeric' => ':attribute muss größer-gleich :value sein.',
44         'file'    => ':attribute muss mindestens :value Kilobytes groß sein.',
45         'string'  => ':attribute muss mindestens :value Zeichen enthalten.',
46         'array'   => ':attribute muss :value Elemente oder mehr haben.',
47     ],
48     'exists'               => ':attribute ist ungültig.',
49     'image'                => ':attribute muss ein Bild sein.',
50     'image_extension'      => ':attribute muss eine gültige und unterstützte Bild-Dateiendung haben.',
51     'in'                   => ':attribute ist ungültig.',
52     'integer'              => ':attribute muss eine Zahl sein.',
53     'ip'                   => ':attribute muss eine valide IP-Adresse sein.',
54     'ipv4'                 => ':attribute muss eine gültige IPv4 Adresse sein.',
55     'ipv6'                 => ':attribute muss eine gültige IPv6-Adresse sein.',
56     'json'                 => 'Das Attribut muss eine gültige JSON-Zeichenfolge sein.',
57     'lt'                   => [
58         'numeric' => ':attribute muss kleiner sein :value sein.',
59         'file'    => ':attribute muss kleiner als :value Kilobytes sein.',
60         'string'  => ':attribute muss weniger als :value Zeichen haben.',
61         'array'   => ':attribute muss weniger als :value Elemente haben.',
62     ],
63     'lte'                  => [
64         'numeric' => ':attribute muss kleiner oder gleich :value sein.',
65         'file'    => ':attribute muss kleiner oder gleich :value Kilobytes sein.',
66         'string'  => ':attribute darf höchstens :value Zeichen besitzen.',
67         'array'   => ':attribute darf höchstens :value Elemente haben.',
68     ],
69     'max'                  => [
70         'numeric' => ':attribute darf nicht größer als :max sein.',
71         'file'    => ':attribute darf nicht größer als :max Kilobyte sein.',
72         'string'  => ':attribute darf nicht länger als :max Zeichen sein.',
73         'array'   => ':attribute darf nicht mehr als :max Elemente enthalten.',
74     ],
75     'mimes'                => ':attribute muss eine Datei vom Typ: :values sein.',
76     'min'                  => [
77         'numeric' => ':attribute muss mindestens :min sein',
78         'file'    => ':attribute muss mindestens :min Kilobyte groß sein.',
79         'string'  => ':attribute muss mindestens :min Zeichen lang sein.',
80         'array'   => ':attribute muss mindesten :min Elemente enthalten.',
81     ],
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     'safe_url'             => 'Der angegebene Link ist möglicherweise nicht sicher.',
94     'size'                 => [
95         'numeric' => ':attribute muss :size sein.',
96         'file'    => ':attribute muss :size Kilobytes groß sein.',
97         'string'  => ':attribute muss :size Zeichen lang sein.',
98         'array'   => ':attribute muss :size Elemente enthalten.',
99     ],
100     'string'               => ':attribute muss eine Zeichenkette sein.',
101     'timezone'             => ':attribute muss eine valide zeitzone sein.',
102     'totp'                 => 'Der angegebene Code ist ungültig oder abgelaufen.',
103     'unique'               => ':attribute wird bereits verwendet.',
104     'url'                  => ':attribute ist kein valides Format.',
105     'uploaded'             => 'Die Datei konnte nicht hochgeladen werden. Der Server akzeptiert möglicherweise keine Dateien dieser Größe.',
106
107     // Custom validation lines
108     'custom' => [
109         'password-confirm' => [
110             'required_with' => 'Passwortbestätigung erforderlich',
111         ],
112     ],
113
114     // Custom validation attributes
115     'attributes' => [],
116 ];