-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
zod.json
113 lines (113 loc) · 4.32 KB
/
zod.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"errors": {
"invalid_type": "{{expected}} erwartet, {{received}} erhalten",
"invalid_type_received_undefined": "Darf nicht leer sein",
"invalid_type_received_null": "Darf nicht leer sein",
"invalid_literal": "Ungültiger Literalwert, {{expected}} erwartet",
"unrecognized_keys": "Unbekannte Schlüssel im Objekt: {{- keys}}",
"invalid_union": "Ungültige Eingabe",
"invalid_union_discriminator": "Ungültiger Diskriminatorwert, {{- options}} erwartet",
"invalid_enum_value": "Ungültiger Enum-Wert. {{- options}} erwartet, '{{received}}' erhalten",
"invalid_arguments": "Ungültige Funktionsargumente",
"invalid_return_type": "Ungültiger Funktionsrückgabewert",
"invalid_date": "Ungültiges Datum",
"custom": "Ungültige Eingabe",
"invalid_intersection_types": "Schnittmengenergebnisse konnten nicht zusammengeführt werden",
"not_multiple_of": "Zahl muss ein Vielfaches von {{multipleOf}} sein",
"not_finite": "Zahl muss endlich sein",
"invalid_string": {
"email": "Ungültige {{validation}}",
"url": "Ungültige {{validation}}",
"uuid": "Ungültige {{validation}}",
"cuid": "Ungültige {{validation}}",
"regex": "Ungültig",
"datetime": "Ungültiger {{validation}}",
"startsWith": "Ungültige Eingabe: muss mit \"{{startsWith}}\" beginnen",
"endsWith": "Ungültige Eingabe: muss mit \"{{endsWith}}\" enden"
},
"too_small": {
"array": {
"exact": "Array muss genau {{minimum}} Element(e) enthalten",
"inclusive": "Array muss mindestens {{minimum}} Element(e) enthalten",
"not_inclusive": "Array muss mehr als {{minimum}} Element(e) enthalten"
},
"string": {
"exact": "String muss genau {{minimum}} Zeichen enthalten",
"inclusive": "String muss mindestens {{minimum}} Zeichen enthalten",
"not_inclusive": "String muss mehr als {{minimum}} Zeichen enthalten"
},
"number": {
"exact": "Zahl muss genau {{minimum}} sein",
"inclusive": "Zahl muss größer oder gleich {{minimum}} sein",
"not_inclusive": "Zahl muss größer als {{minimum}} sein"
},
"set": {
"exact": "Ungültige Eingabe",
"inclusive": "Ungültige Eingabe",
"not_inclusive": "Ungültige Eingabe"
},
"date": {
"exact": "Datum muss genau {{- minimum, datetime}} sein",
"inclusive": "Datum muss größer oder gleich {{- minimum, datetime}} sein",
"not_inclusive": "Datum muss größer als {{- minimum, datetime}} sein"
}
},
"too_big": {
"array": {
"exact": "Array muss genau {{maximum}} Element(e) enthalten",
"inclusive": "Array darf höchstens {{maximum}} Element(e) enthalten",
"not_inclusive": "Array muss weniger als {{maximum}} Element(e) enthalten"
},
"string": {
"exact": "String muss genau {{maximum}} Zeichen enthalten",
"inclusive": "String darf höchstens {{maximum}} Zeichen enthalten",
"not_inclusive": "String muss weniger als {{maximum}} Zeichen enthalten"
},
"number": {
"exact": "Zahl muss genau {{maximum}} sein",
"inclusive": "Zahl muss kleiner oder gleich {{maximum}} sein",
"not_inclusive": "Zahl muss kleiner als {{maximum}} sein"
},
"set": {
"exact": "Ungültige Eingabe",
"inclusive": "Ungültige Eingabe",
"not_inclusive": "Ungültige Eingabe"
},
"date": {
"exact": "Datum muss genau {{- maximum, datetime}} sein",
"inclusive": "Datum muss kleiner oder gleich {{- maximum, datetime}} sein",
"not_inclusive": "Datum muss kleiner als {{- maximum, datetime}} sein"
}
}
},
"validations": {
"email": "E-Mail-Adresse",
"url": "URL",
"uuid": "UUID",
"cuid": "CUID",
"regex": "Regex",
"datetime": "Datums- und Uhrzeitwert"
},
"types": {
"function": "Funktion",
"number": "Zahl",
"string": "String",
"nan": "NaN",
"integer": "Ganzzahl",
"float": "Gleitkommazahl",
"boolean": "Boolean",
"date": "Datum",
"bigint": "Bigint",
"undefined": "Undefined",
"symbol": "Symbol",
"null": "Nullwert",
"array": "Array",
"object": "Objekt",
"unknown": "Unknown",
"promise": "Promise",
"void": "Void",
"never": "Never",
"map": "Map",
"set": "Set"
}
}