@semihbou/zod-i18n-map 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +19 -0
- package/dist/index.d.ts +19 -0
- package/dist/index.js +231 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +195 -0
- package/dist/index.mjs.map +1 -0
- package/locales/ar/zod.json +113 -0
- package/locales/bg/zod.json +113 -0
- package/locales/cs/zod.json +113 -0
- package/locales/de/zod.json +113 -0
- package/locales/en/zod.json +113 -0
- package/locales/es/zod.json +113 -0
- package/locales/fa/zod.json +113 -0
- package/locales/fi/zod.json +113 -0
- package/locales/fr/zod.json +113 -0
- package/locales/he/zod.json +113 -0
- package/locales/hr-HR/zod.json +113 -0
- package/locales/id/zod.json +113 -0
- package/locales/is/zod.json +105 -0
- package/locales/it/zod.json +113 -0
- package/locales/ja/zod.json +113 -0
- package/locales/ko/zod.json +113 -0
- package/locales/lt/zod.json +113 -0
- package/locales/nb/zod.json +113 -0
- package/locales/nl/zod.json +113 -0
- package/locales/pl/zod.json +113 -0
- package/locales/pt/zod.json +113 -0
- package/locales/ro/zod.json +113 -0
- package/locales/ru/zod.json +113 -0
- package/locales/sk/zod.json +119 -0
- package/locales/sv/zod.json +113 -0
- package/locales/tr/zod.json +113 -0
- package/locales/uk-UA/zod.json +113 -0
- package/locales/uz/zod.json +113 -0
- package/locales/zh-CN/zod.json +113 -0
- package/locales/zh-TW/zod.json +105 -0
- package/package.json +41 -0
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
{
|
|
2
|
+
"errors": {
|
|
3
|
+
"invalid_type": "Tikėtasi {{expected}}, gauta(s) {{received}}",
|
|
4
|
+
"invalid_type_received_undefined": "Šis laukas yra privalomas",
|
|
5
|
+
"invalid_type_received_null": "Šis laukas yra privalomas",
|
|
6
|
+
"invalid_literal": "Klaidinga literalo reikšmė, tikėtasi {{expected}}",
|
|
7
|
+
"unrecognized_keys": "Neatpažintas(i) raktas(ai) objekte: {{- keys}}",
|
|
8
|
+
"invalid_union": "Klaidinga įvestis",
|
|
9
|
+
"invalid_union_discriminator": "Netinkama diksriminanto reikšmė. Tikėtasi {{- options}}",
|
|
10
|
+
"invalid_enum_value": "Klaidinga reikšmė. Tikėtasi {{- options}}, gauta '{{received}}'",
|
|
11
|
+
"invalid_arguments": "Klaidingi funkcijos argumentai",
|
|
12
|
+
"invalid_return_type": "Klaidingas funkcijos gražinamos reikšmės tipas",
|
|
13
|
+
"invalid_date": "Klaidinga data",
|
|
14
|
+
"custom": "Klaidinga įvestis",
|
|
15
|
+
"invalid_intersection_types": "Negalima sujungti sankirtos rezultatų",
|
|
16
|
+
"not_multiple_of": "Skaičius privalo būti {{multipleOf}} kartotinis",
|
|
17
|
+
"not_finite": "Skaičius privalo būti baigtinis",
|
|
18
|
+
"invalid_string": {
|
|
19
|
+
"email": "Klaidingas {{validation}}",
|
|
20
|
+
"url": "Klaidinga {{validation}}",
|
|
21
|
+
"uuid": "Klaidingas {{validation}}",
|
|
22
|
+
"cuid": "Klaidingas {{validation}}",
|
|
23
|
+
"regex": "Klaidingas {{validation}}",
|
|
24
|
+
"datetime": "Klaidinga {{validation}}",
|
|
25
|
+
"startsWith": "Klaidinga įvestis: privaloma pradžia \"{{startsWith}}\"",
|
|
26
|
+
"endsWith": "Klaidinga įvestis: privaloma pabaiga \"{{endsWith}}\""
|
|
27
|
+
},
|
|
28
|
+
"too_small": {
|
|
29
|
+
"array": {
|
|
30
|
+
"exact": "Masyvas privalo turėti {{minimum}} elementą(us)",
|
|
31
|
+
"inclusive": "Masyvas privalo turėti bent {{minimum}} elementą(us)",
|
|
32
|
+
"not_inclusive": "Masyvas privalo turėti daugiau, nei {{minimum}} elementą(us)"
|
|
33
|
+
},
|
|
34
|
+
"string": {
|
|
35
|
+
"exact": "Tekstas privalo būti sudarytas iš {{minimum}} simbolio(ių)",
|
|
36
|
+
"inclusive": "Tekstas privalo būti sudarytas, bent iš {{minimum}} simbolio(ių)",
|
|
37
|
+
"not_inclusive": "Tekstas privalo būti ilgesnis, nei {{minimum}} simbolis(iai)"
|
|
38
|
+
},
|
|
39
|
+
"number": {
|
|
40
|
+
"exact": "Skaičius privalo būti {{minimum}}",
|
|
41
|
+
"inclusive": "Skaičius privalo būti didesnis arba lygus {{minimum}}",
|
|
42
|
+
"not_inclusive": "Skaičius privalo būti didesnis, nei {{minimum}}"
|
|
43
|
+
},
|
|
44
|
+
"set": {
|
|
45
|
+
"exact": "Klaidinga įvestis",
|
|
46
|
+
"inclusive": "Klaidinga įvestis",
|
|
47
|
+
"not_inclusive": "Klaidinga įvestis"
|
|
48
|
+
},
|
|
49
|
+
"date": {
|
|
50
|
+
"exact": "Data privalo būti {{- minimum, datetime}}",
|
|
51
|
+
"inclusive": "Data privalo būti vėlesnė arba lygi {{- minimum, datetime}}",
|
|
52
|
+
"not_inclusive": "Data privalo būti vėlesnė, nei {{- minimum, datetime}}"
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"too_big": {
|
|
56
|
+
"array": {
|
|
57
|
+
"exact": "Masyvas privalo turėti {{maximum}} elementą(us)",
|
|
58
|
+
"inclusive": "Masyvas negali turėti daugiau, nei {{maximum}} elementą(us)",
|
|
59
|
+
"not_inclusive": "Masyvas privalo turėti mažiau, nei {{maximum}} elementą(us)"
|
|
60
|
+
},
|
|
61
|
+
"string": {
|
|
62
|
+
"exact": "Tekstas privalo būti sudarytas iš {{maximum}} simbolio(ių)",
|
|
63
|
+
"inclusive": "Tekstas negali būti sudarytas iš daugiau, nei {{maximum}} simbolio(ių)",
|
|
64
|
+
"not_inclusive": "Tekstas privalo būti trumpesnis, nei {{maximum}} simbolis(iai)"
|
|
65
|
+
},
|
|
66
|
+
"number": {
|
|
67
|
+
"exact": "Skaičius privalo būti {{maximum}}",
|
|
68
|
+
"inclusive": "Skaičius privalo būti mažesnis arba lygus {{maximum}}",
|
|
69
|
+
"not_inclusive": "Skaičius privalo būti mažesnis, nei {{maximum}}"
|
|
70
|
+
},
|
|
71
|
+
"set": {
|
|
72
|
+
"exact": "Klaidinga įvestis",
|
|
73
|
+
"inclusive": "Klaidinga įvestis",
|
|
74
|
+
"not_inclusive": "Klaidinga įvestis"
|
|
75
|
+
},
|
|
76
|
+
"date": {
|
|
77
|
+
"exact": "Data privalo būti {{- maximum, datetime}}",
|
|
78
|
+
"inclusive": "Data privalo būti ankstesnė arba lygi {{- maximum, datetime}}",
|
|
79
|
+
"not_inclusive": "Data privalo būti ankstesnė, nei {{- maximum, datetime}}"
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"validations": {
|
|
84
|
+
"email": "el. paštas",
|
|
85
|
+
"url": "nuoroda",
|
|
86
|
+
"uuid": "uuid",
|
|
87
|
+
"cuid": "cuid",
|
|
88
|
+
"regex": "reguliarus išraiškos šablonas",
|
|
89
|
+
"datetime": "datos ir laiko reikšmė"
|
|
90
|
+
},
|
|
91
|
+
"types": {
|
|
92
|
+
"function": "funkcija",
|
|
93
|
+
"number": "skaičius",
|
|
94
|
+
"string": "tekstas",
|
|
95
|
+
"nan": "nan",
|
|
96
|
+
"integer": "sveikasis skaičius",
|
|
97
|
+
"float": "slankusis kablelis",
|
|
98
|
+
"boolean": "loginė reikšmė",
|
|
99
|
+
"date": "data",
|
|
100
|
+
"bigint": "didelis sveikasis skaičius",
|
|
101
|
+
"undefined": "neapibrėžtas",
|
|
102
|
+
"symbol": "simbolis",
|
|
103
|
+
"null": "null",
|
|
104
|
+
"array": "masyvas",
|
|
105
|
+
"object": "objektas",
|
|
106
|
+
"unknown": "nežinomas",
|
|
107
|
+
"promise": "pažadas",
|
|
108
|
+
"void": "tuščias",
|
|
109
|
+
"never": "niekada",
|
|
110
|
+
"map": "rakto-reikšmių sąrašas",
|
|
111
|
+
"set": "rinkinys"
|
|
112
|
+
}
|
|
113
|
+
}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
{
|
|
2
|
+
"errors": {
|
|
3
|
+
"invalid_type": "Forventet {{expected}}, mottok {{received}}",
|
|
4
|
+
"invalid_type_received_undefined": "Må ikke være tom",
|
|
5
|
+
"invalid_type_received_null": "Må ikke være tom",
|
|
6
|
+
"invalid_literal": "Ugyldig bokstavlig verdi, forventet {{expected}}",
|
|
7
|
+
"unrecognized_keys": "Ukjent nøkkel i objektet: {{- keys}}",
|
|
8
|
+
"invalid_union": "Ugyldig inndata",
|
|
9
|
+
"invalid_union_discriminator": "Ugyldig diskriminatorverdi, forventet {{- options}}",
|
|
10
|
+
"invalid_enum_value": "Ugyldig enum-verdi. Forventet {{- options}}, mottatt '{{received}}'",
|
|
11
|
+
"invalid_arguments": "Ugyldige funksjonsargumenter",
|
|
12
|
+
"invalid_return_type": "Ugyldig returtype",
|
|
13
|
+
"invalid_date": "Ugyldig dato",
|
|
14
|
+
"custom": "Ugyldig inndata",
|
|
15
|
+
"invalid_intersection_types": "Kryssresultater kunne ikke slås sammen",
|
|
16
|
+
"not_multiple_of": "Tallet må være et multiplum av {{multipleOf}}",
|
|
17
|
+
"not_finite": "Tallet må være endelig",
|
|
18
|
+
"invalid_string": {
|
|
19
|
+
"email": "Ugyldig {{validation}}",
|
|
20
|
+
"url": "Ugyldig {{validation}}",
|
|
21
|
+
"uuid": "Ugyldig {{validation}}",
|
|
22
|
+
"cuid": "Ugyldig {{validation}}",
|
|
23
|
+
"regex": "Ugyldig",
|
|
24
|
+
"datetime": "Ugyldig {{validation}}",
|
|
25
|
+
"startsWith": "Ugyldig inndata: må starte med \"{{startsWith}}\"",
|
|
26
|
+
"endsWith": "Ugyldig inndata: må slutte med \"{{endsWith}}\""
|
|
27
|
+
},
|
|
28
|
+
"too_small": {
|
|
29
|
+
"array": {
|
|
30
|
+
"exact": "Array må inneholde nøyaktig {{minimum}} element(er)",
|
|
31
|
+
"inclusive": "Array må inneholde minst {{minimum}} element(er)",
|
|
32
|
+
"not_inclusive": "Array må inneholde mer enn {{minimum}} element(er)"
|
|
33
|
+
},
|
|
34
|
+
"string": {
|
|
35
|
+
"exact": "Strengen må inneholde nøyaktig {{minimum}} bokstav(er)",
|
|
36
|
+
"inclusive": "Strengen må inneholde minst {{minimum}} bokstav(er)",
|
|
37
|
+
"not_inclusive": "Strengen må inneholde over {{minimum}} bokstav(er)"
|
|
38
|
+
},
|
|
39
|
+
"number": {
|
|
40
|
+
"exact": "Tallet må være nøyaktig {{minimum}}",
|
|
41
|
+
"inclusive": "Tallet må være større enn eller lik {{minimum}}",
|
|
42
|
+
"not_inclusive": "Tallet må være større enn {{minimum}}"
|
|
43
|
+
},
|
|
44
|
+
"set": {
|
|
45
|
+
"exact": "Ugyldig inndata",
|
|
46
|
+
"inclusive": "Ugyldig inndata",
|
|
47
|
+
"not_inclusive": "Ugyldig inndata"
|
|
48
|
+
},
|
|
49
|
+
"date": {
|
|
50
|
+
"exact": "Datoen må være nøyaktig {{- minimum, datetime}}",
|
|
51
|
+
"inclusive": "Datoen må være større enn eller lik {{- minimum, datetime}}",
|
|
52
|
+
"not_inclusive": "Datoen må være større enn {{- minimum, datetime}}"
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"too_big": {
|
|
56
|
+
"array": {
|
|
57
|
+
"exact": "Array må inneholde nøyaktig {{maximum}} element(er)",
|
|
58
|
+
"inclusive": "Array må inneholde maksimalt {{maximum}} element(er)",
|
|
59
|
+
"not_inclusive": "Array må inneholde mindre enn {{maximum}} element(er)"
|
|
60
|
+
},
|
|
61
|
+
"string": {
|
|
62
|
+
"exact": "Strengen må inneholde nøyaktig {{maximum}} tegn",
|
|
63
|
+
"inclusive": "Strengen må være mindre eller lik {{maximum}} tegn",
|
|
64
|
+
"not_inclusive": "Strengen må inneholde under {{maximum}} tegn"
|
|
65
|
+
},
|
|
66
|
+
"number": {
|
|
67
|
+
"exact": "Tallet må være nøyaktig {{maximum}}",
|
|
68
|
+
"inclusive": "Tallet må være mindre enn eller lik {{maximum}}",
|
|
69
|
+
"not_inclusive": "Tallet må være mindre enn {{maximum}}"
|
|
70
|
+
},
|
|
71
|
+
"set": {
|
|
72
|
+
"exact": "Ugyldig inndata",
|
|
73
|
+
"inclusive": "Ugyldig inndata",
|
|
74
|
+
"not_inclusive": "Ugyldig inndata"
|
|
75
|
+
},
|
|
76
|
+
"date": {
|
|
77
|
+
"exact": "Datoen må være nøyaktig {{- maximum, datetime}}",
|
|
78
|
+
"inclusive": "Datoen må være mindre enn eller lik {{- maximum, datetime}}",
|
|
79
|
+
"not_inclusive": "Datoen må være mindre enn {{- maximum, datetime}}"
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"validations": {
|
|
84
|
+
"email": "Epost adresse",
|
|
85
|
+
"url": "URL",
|
|
86
|
+
"uuid": "UUID",
|
|
87
|
+
"cuid": "CUID",
|
|
88
|
+
"regex": "Eegex",
|
|
89
|
+
"datetime": "Dato og klokkeslett"
|
|
90
|
+
},
|
|
91
|
+
"types": {
|
|
92
|
+
"function": "Funksjon",
|
|
93
|
+
"number": "Nummer",
|
|
94
|
+
"string": "String",
|
|
95
|
+
"nan": "NaN",
|
|
96
|
+
"integer": "Heltall",
|
|
97
|
+
"float": "Flyttall",
|
|
98
|
+
"boolean": "Boolean",
|
|
99
|
+
"date": "Dato",
|
|
100
|
+
"bigint": "Bigint",
|
|
101
|
+
"undefined": "Undefined",
|
|
102
|
+
"symbol": "Symbol",
|
|
103
|
+
"null": "Null",
|
|
104
|
+
"array": "Array",
|
|
105
|
+
"object": "Objekt",
|
|
106
|
+
"unknown": "Unknown",
|
|
107
|
+
"promise": "Promise",
|
|
108
|
+
"void": "Void",
|
|
109
|
+
"never": "Never",
|
|
110
|
+
"map": "Map",
|
|
111
|
+
"set": "Set"
|
|
112
|
+
}
|
|
113
|
+
}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
{
|
|
2
|
+
"errors": {
|
|
3
|
+
"invalid_type": "Ongeldig type: {{received}}. Type {{expected}} vereist",
|
|
4
|
+
"invalid_type_received_undefined": "Vereist",
|
|
5
|
+
"invalid_type_received_null": "Vereist",
|
|
6
|
+
"invalid_literal": "Ongeldige letterlijke waarde, vereist {{expected}}",
|
|
7
|
+
"unrecognized_keys": "Onbekende sleutel(s) in object: {{- keys}}",
|
|
8
|
+
"invalid_union": "Ongeldige invoer",
|
|
9
|
+
"invalid_union_discriminator": "Ongeldige discriminatorwaarde. vereist {{- options}}",
|
|
10
|
+
"invalid_enum_value": "Waarde '{{received}}' is ongeldig. Antwoordmogelijkheden zijn: {{- options}}",
|
|
11
|
+
"invalid_arguments": "Ongeldige functieargumenten",
|
|
12
|
+
"invalid_return_type": "Ongeldig functietype teruggegeven waarde",
|
|
13
|
+
"invalid_date": "Ongeldige datum",
|
|
14
|
+
"custom": "Ongeldige invoer",
|
|
15
|
+
"invalid_intersection_types": "Types konden niet worden samengevoegd",
|
|
16
|
+
"not_multiple_of": "Getal moet een veelvoud zijn van {{multipleOf}}",
|
|
17
|
+
"not_finite": "Getal moet finiet zijn",
|
|
18
|
+
"invalid_string": {
|
|
19
|
+
"email": "Ongeldige {{validation}}",
|
|
20
|
+
"url": "Ongeldige {{validation}}",
|
|
21
|
+
"uuid": "Ongeldige {{validation}}",
|
|
22
|
+
"cuid": "Ongeldige {{validation}}",
|
|
23
|
+
"regex": "Ongeldig",
|
|
24
|
+
"datetime": "Ongeldige {{validation}}",
|
|
25
|
+
"startsWith": "Ongeldige invoer: moet beginnen met \"{{startsWith}}\"",
|
|
26
|
+
"endsWith": "Ongeldige invoer: moet eindigen met \"{{endsWith}}\""
|
|
27
|
+
},
|
|
28
|
+
"too_small": {
|
|
29
|
+
"array": {
|
|
30
|
+
"exact": "Array moet precies {{minimum}} element(en) bevatten",
|
|
31
|
+
"inclusive": "Array moet minstens {{minimum}} element(en) bevatten",
|
|
32
|
+
"not_inclusive": "Array moet meer dan {{minimum}} element(en) bevatten"
|
|
33
|
+
},
|
|
34
|
+
"string": {
|
|
35
|
+
"exact": "Tekst moet precies {{minimum}} karakter(s) bevatten",
|
|
36
|
+
"inclusive": "Tekst moet minstens {{minimum}} karakter(s) bevatten",
|
|
37
|
+
"not_inclusive": "Tekst moet meer dan {{minimum}} karakter(s) bevatten"
|
|
38
|
+
},
|
|
39
|
+
"number": {
|
|
40
|
+
"exact": "Getal moet precies {{minimum}} zijn",
|
|
41
|
+
"inclusive": "Getal moet {{minimum}} of groter zijn",
|
|
42
|
+
"not_inclusive": "Getal moet groter zijn dan {{minimum}}"
|
|
43
|
+
},
|
|
44
|
+
"set": {
|
|
45
|
+
"exact": "Ongeldige invoer",
|
|
46
|
+
"inclusive": "Ongeldige invoer",
|
|
47
|
+
"not_inclusive": "Ongeldige invoer"
|
|
48
|
+
},
|
|
49
|
+
"date": {
|
|
50
|
+
"exact": "Datum moet precies {{- minimum, datetime}} zijn",
|
|
51
|
+
"inclusive": "Datum moet op of later dan {{- minimum, datetime}} zijn",
|
|
52
|
+
"not_inclusive": "Datum moet later dan {{- minimum, datetime}} zijn"
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"too_big": {
|
|
56
|
+
"array": {
|
|
57
|
+
"exact": "Array moet precies {{maximum}} element(en) bevatten",
|
|
58
|
+
"inclusive": "Array mag niet meer dan {{maximum}} element(en) bevatten",
|
|
59
|
+
"not_inclusive": "Array moet minder dan {{maximum}} element(en) bevatten"
|
|
60
|
+
},
|
|
61
|
+
"string": {
|
|
62
|
+
"exact": "Tekst moet precies {{maximum}} karakter(s) bevatten",
|
|
63
|
+
"inclusive": "Tekst mag niet meer dan {{maximum}} karakter(s) bevatten",
|
|
64
|
+
"not_inclusive": "Tekst moet minder dan {{maximum}} karakter(s) bevatten"
|
|
65
|
+
},
|
|
66
|
+
"number": {
|
|
67
|
+
"exact": "Getal moet precies {{maximum}} zijn",
|
|
68
|
+
"inclusive": "Getal moet {{maximum}} of kleiner zijn",
|
|
69
|
+
"not_inclusive": "Getal moet kleiner zijn dan {{maximum}}"
|
|
70
|
+
},
|
|
71
|
+
"set": {
|
|
72
|
+
"exact": "Ongeldige invoer",
|
|
73
|
+
"inclusive": "Ongeldige invoer",
|
|
74
|
+
"not_inclusive": "Ongeldige invoer"
|
|
75
|
+
},
|
|
76
|
+
"date": {
|
|
77
|
+
"exact": "Datum moet precies {{- maximum, datetime}} zijn",
|
|
78
|
+
"inclusive": "Datum moet op of eerder dan {{- maximum, datetime}} zijn",
|
|
79
|
+
"not_inclusive": "Datum moet eerder dan {{- maximum, datetime}} zijn"
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"validations": {
|
|
84
|
+
"email": "e-mail",
|
|
85
|
+
"url": "url",
|
|
86
|
+
"uuid": "uuid",
|
|
87
|
+
"cuid": "cuid",
|
|
88
|
+
"regex": "regex",
|
|
89
|
+
"datetime": "datumtijd"
|
|
90
|
+
},
|
|
91
|
+
"types": {
|
|
92
|
+
"function": "functie",
|
|
93
|
+
"number": "nummer",
|
|
94
|
+
"string": "tekst",
|
|
95
|
+
"nan": "nan",
|
|
96
|
+
"integer": "geheel getal",
|
|
97
|
+
"float": "kommagetal",
|
|
98
|
+
"boolean": "boolean",
|
|
99
|
+
"date": "datum",
|
|
100
|
+
"bigint": "bigint",
|
|
101
|
+
"undefined": "ongedefinieerd",
|
|
102
|
+
"symbol": "symbool",
|
|
103
|
+
"null": "null",
|
|
104
|
+
"array": "array",
|
|
105
|
+
"object": "object",
|
|
106
|
+
"unknown": "onbekend",
|
|
107
|
+
"promise": "promise",
|
|
108
|
+
"void": "void",
|
|
109
|
+
"never": "never",
|
|
110
|
+
"map": "map",
|
|
111
|
+
"set": "set"
|
|
112
|
+
}
|
|
113
|
+
}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
{
|
|
2
|
+
"errors": {
|
|
3
|
+
"invalid_type": "Oczekiwano: {{expected}}, otrzymano: {{received}}",
|
|
4
|
+
"invalid_type_received_undefined": "Wymagane",
|
|
5
|
+
"invalid_type_received_null": "Wymagane",
|
|
6
|
+
"invalid_literal": "Niewłaściwa wartość literału, oczekiwano: {{expected}}",
|
|
7
|
+
"unrecognized_keys": "Nierozpoznany klucz(e) w obiekcie: {{- keys}}",
|
|
8
|
+
"invalid_union": "Niewłaściwa wartość",
|
|
9
|
+
"invalid_union_discriminator": "Niewłaściwa wartość dyskryminatora. Oczekiwano: {{- options}}",
|
|
10
|
+
"invalid_enum_value": "Niewłaściwa wartość wyliczeniowa. Oczekiwano: {{- options}}, otrzymano: '{{received}}'",
|
|
11
|
+
"invalid_arguments": "Niewłaściwe argumenty funkcji",
|
|
12
|
+
"invalid_return_type": "Niewłaściwy typ zwrotny funkcji",
|
|
13
|
+
"invalid_date": "Niewłaściwa data",
|
|
14
|
+
"custom": "Niewłaściwa wartość",
|
|
15
|
+
"invalid_intersection_types": "Wyniki skrzyżowania nie mogły zostać połączone",
|
|
16
|
+
"not_multiple_of": "Liczba musi być wielokrotnością {{multipleOf}}",
|
|
17
|
+
"not_finite": "Liczba musi być skończona",
|
|
18
|
+
"invalid_string": {
|
|
19
|
+
"email": "Niewłaściwy adres email",
|
|
20
|
+
"url": "Niewłaściwy URL",
|
|
21
|
+
"uuid": "Niewłaściwe UUID",
|
|
22
|
+
"cuid": "Niewłaściwe CUID",
|
|
23
|
+
"regex": "Niewłaściwa wartość",
|
|
24
|
+
"datetime": "Niewłaściwa data i czas",
|
|
25
|
+
"startsWith": "Niewłaściwa wartość: musi zaczynać się na \"{{startsWith}}\"",
|
|
26
|
+
"endsWith": "Niewłaściwa wartość: musi kończyć się na \"{{endsWith}}\""
|
|
27
|
+
},
|
|
28
|
+
"too_small": {
|
|
29
|
+
"array": {
|
|
30
|
+
"exact": "Tablica musi zawierać dokładnie {{minimum}} element(ów)",
|
|
31
|
+
"inclusive": "Tablica musi zawierać co najmniej {{minimum}} element(ów)",
|
|
32
|
+
"not_inclusive": "Tablica musi zawierać więcej niż {{minimum}} element(ów)"
|
|
33
|
+
},
|
|
34
|
+
"string": {
|
|
35
|
+
"exact": "Ciąg znaków musi zawierać dokładnie {{minimum}} znak(ów)",
|
|
36
|
+
"inclusive": "Ciąg znaków musi zawierać co najmniej {{minimum}} znak(ów)",
|
|
37
|
+
"not_inclusive": "Ciąg znaków musi zawierać więcej niż {{minimum}} znak(ów)"
|
|
38
|
+
},
|
|
39
|
+
"number": {
|
|
40
|
+
"exact": "Liczba musi wynosić dokładnie {{minimum}}",
|
|
41
|
+
"inclusive": "Liczba musi być większa lub równa {{minimum}}",
|
|
42
|
+
"not_inclusive": "Liczba musi być większa niż {{minimum}}"
|
|
43
|
+
},
|
|
44
|
+
"set": {
|
|
45
|
+
"exact": "Niewłaściwa wartość",
|
|
46
|
+
"inclusive": "Niewłaściwa wartość",
|
|
47
|
+
"not_inclusive": "Niewłaściwa wartość"
|
|
48
|
+
},
|
|
49
|
+
"date": {
|
|
50
|
+
"exact": "Data musi wynosić dokładnie {{- minimum, datetime}}",
|
|
51
|
+
"inclusive": "Data musi być większa lub równa {{- minimum, datetime}}",
|
|
52
|
+
"not_inclusive": "Data musi być większa niż {{- minimum, datetime}}"
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"too_big": {
|
|
56
|
+
"array": {
|
|
57
|
+
"exact": "Tablica musi zawierać dokładnie {{maximum}} element(ów)",
|
|
58
|
+
"inclusive": "Tablica musi zawierać co najwyżej {{maximum}} element(ów)",
|
|
59
|
+
"not_inclusive": "Tablica musi zawierać mniej niż {{maximum}} element(ów)"
|
|
60
|
+
},
|
|
61
|
+
"string": {
|
|
62
|
+
"exact": "Ciąg znaków musi zawierać dokładnie {{maximum}} znak(ów)",
|
|
63
|
+
"inclusive": "Ciąg znaków może zawierać co najwyżej {{maximum}} znak(ów)",
|
|
64
|
+
"not_inclusive": "Ciąg znaków musi zawierać maksymalnie {{maximum}} znak(ów)"
|
|
65
|
+
},
|
|
66
|
+
"number": {
|
|
67
|
+
"exact": "Liczba musi wynosić dokładnie {{maximum}}",
|
|
68
|
+
"inclusive": "Liczba musi być mniejsza lub równa {{maximum}}",
|
|
69
|
+
"not_inclusive": "Liczba musi być mniejsza niż {{maximum}}"
|
|
70
|
+
},
|
|
71
|
+
"set": {
|
|
72
|
+
"exact": "Niewłaściwa wartość",
|
|
73
|
+
"inclusive": "Niewłaściwa wartość",
|
|
74
|
+
"not_inclusive": "Niewłaściwa wartość"
|
|
75
|
+
},
|
|
76
|
+
"date": {
|
|
77
|
+
"exact": "Data musi wynosić dokładnie {{- maximum, datetime}}",
|
|
78
|
+
"inclusive": "Data musi być mniejsza lub równa {{- maximum, datetime}}",
|
|
79
|
+
"not_inclusive": "Data musi być mniejsza niż {{- maximum, datetime}}"
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"validations": {
|
|
84
|
+
"email": "adres email",
|
|
85
|
+
"url": "URL",
|
|
86
|
+
"uuid": "UUID",
|
|
87
|
+
"cuid": "CUID",
|
|
88
|
+
"regex": "Regex",
|
|
89
|
+
"datetime": "data i czas"
|
|
90
|
+
},
|
|
91
|
+
"types": {
|
|
92
|
+
"function": "funkcja",
|
|
93
|
+
"number": "liczba",
|
|
94
|
+
"string": "ciąg znaków",
|
|
95
|
+
"nan": "NaN",
|
|
96
|
+
"integer": "liczba całkowita",
|
|
97
|
+
"float": "liczba zmiennoprzecinkowa",
|
|
98
|
+
"boolean": "wartość boolowska",
|
|
99
|
+
"date": "data",
|
|
100
|
+
"bigint": "BigInt",
|
|
101
|
+
"undefined": "undefined",
|
|
102
|
+
"symbol": "symbol",
|
|
103
|
+
"null": "null",
|
|
104
|
+
"array": "tablica",
|
|
105
|
+
"object": "obiekt",
|
|
106
|
+
"unknown": "unknown",
|
|
107
|
+
"promise": "promise",
|
|
108
|
+
"void": "void",
|
|
109
|
+
"never": "never",
|
|
110
|
+
"map": "map",
|
|
111
|
+
"set": "set"
|
|
112
|
+
}
|
|
113
|
+
}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
{
|
|
2
|
+
"errors": {
|
|
3
|
+
"invalid_type": "O dado deve ser do tipo {{expected}}, porém foi enviado {{received}}",
|
|
4
|
+
"invalid_type_received_undefined": "Obrigatório",
|
|
5
|
+
"invalid_type_received_null": "Obrigatório",
|
|
6
|
+
"invalid_literal": "Valor literal inválido, era esperado {{expected}}",
|
|
7
|
+
"unrecognized_keys": "Chave(s) não reconhecida(s) no objeto: {{- keys}}",
|
|
8
|
+
"invalid_union": "Entrada inválida",
|
|
9
|
+
"invalid_union_discriminator": "Valor discriminador inválido. Foi esperado {{- options}}",
|
|
10
|
+
"invalid_enum_value": "Enum no formato inválido. Foi esperado {{- options}}, porém foi recebido '{{received}}'",
|
|
11
|
+
"invalid_arguments": "Argumento de função inválido",
|
|
12
|
+
"invalid_return_type": "Tipo de retorno de função inválido",
|
|
13
|
+
"invalid_date": "Data inválida",
|
|
14
|
+
"custom": "Entrada inválida",
|
|
15
|
+
"invalid_intersection_types": "Valores de interseção não poderam ser mesclados",
|
|
16
|
+
"not_multiple_of": "O número deverá ser múltiplo de {{multipleOf}}",
|
|
17
|
+
"not_finite": "Número não pode ser infinito",
|
|
18
|
+
"invalid_string": {
|
|
19
|
+
"email": "E-mail inválido",
|
|
20
|
+
"url": "URL inválida",
|
|
21
|
+
"uuid": "UUID inválido",
|
|
22
|
+
"cuid": "CUID inválido",
|
|
23
|
+
"regex": "Combinação inválida",
|
|
24
|
+
"datetime": "datetime inválido",
|
|
25
|
+
"startsWith": "Entrada inválida: deve iniciar com \"{{startsWith}}\"",
|
|
26
|
+
"endsWith": "Entrada inválida: deve terminar com \"{{endsWith}}\""
|
|
27
|
+
},
|
|
28
|
+
"too_small": {
|
|
29
|
+
"array": {
|
|
30
|
+
"exact": "Lista deve conter exatamente {{minimum}} elemento(s)",
|
|
31
|
+
"inclusive": "Lista deve conter no mínimo {{minimum}} elemento(s)",
|
|
32
|
+
"not_inclusive": "Lista deve conter mais de {{minimum}} elemento(s)"
|
|
33
|
+
},
|
|
34
|
+
"string": {
|
|
35
|
+
"exact": "Texto deve conter exatamente {{minimum}} caracter(es)",
|
|
36
|
+
"inclusive": "Texto deve conter pelo menos {{minimum}} caracter(es)",
|
|
37
|
+
"not_inclusive": "Texto deve conter mais de {{minimum}} caracter(es)"
|
|
38
|
+
},
|
|
39
|
+
"number": {
|
|
40
|
+
"exact": "Número deve conter exatamente {{minimum}} caracter(es)",
|
|
41
|
+
"inclusive": "Número deve ser maior ou igual a {{minimum}}",
|
|
42
|
+
"not_inclusive": "Número deve ser maior que {{minimum}}"
|
|
43
|
+
},
|
|
44
|
+
"set": {
|
|
45
|
+
"exact": "Entrada inválida",
|
|
46
|
+
"inclusive": "Entrada inválida",
|
|
47
|
+
"not_inclusive": "Entrada inválida"
|
|
48
|
+
},
|
|
49
|
+
"date": {
|
|
50
|
+
"exact": "Data deve ser exatamente {{- maximum, datetime}}",
|
|
51
|
+
"inclusive": "Data deve ser maior ou igual a {{- minimum, datetime}}",
|
|
52
|
+
"not_inclusive": "Data deve ser maior que {{- minimum, datetime}}"
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"too_big": {
|
|
56
|
+
"array": {
|
|
57
|
+
"exact": "Lista deve conter exatamente {{maximum}} elemento(s)",
|
|
58
|
+
"inclusive": "Lista deve conter no máximo {{maximum}} elemento(s)",
|
|
59
|
+
"not_inclusive": "Lista deve conter menos de {{maximum}} elemento(s)"
|
|
60
|
+
},
|
|
61
|
+
"string": {
|
|
62
|
+
"exact": "Texto deve conter exatamente {{maximum}} caracter(es)",
|
|
63
|
+
"inclusive": "Texto pode conter no máximo {{maximum}} caracter(es)",
|
|
64
|
+
"not_inclusive": "Texto deve conter menos que {{maximum}} caracter(es)"
|
|
65
|
+
},
|
|
66
|
+
"number": {
|
|
67
|
+
"exact": "Número deve conter exatamente {{maximum}} caracter(es)",
|
|
68
|
+
"inclusive": "Número deve ser menor ou igual a {{maximum}}",
|
|
69
|
+
"not_inclusive": "Número deve ser menor que {{maximum}}"
|
|
70
|
+
},
|
|
71
|
+
"set": {
|
|
72
|
+
"exact": "Entrada inválida",
|
|
73
|
+
"inclusive": "Entrada inválida",
|
|
74
|
+
"not_inclusive": "Entrada inválida"
|
|
75
|
+
},
|
|
76
|
+
"date": {
|
|
77
|
+
"exact": "Data deve ser exatamente {{- maximum, datetime}}",
|
|
78
|
+
"inclusive": "Data deve ser menor ou igual a {{- maximum, datetime}}",
|
|
79
|
+
"not_inclusive": "Data deve ser menor que {{- maximum, datetime}}"
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"validations": {
|
|
84
|
+
"email": "email",
|
|
85
|
+
"url": "url",
|
|
86
|
+
"uuid": "uuid",
|
|
87
|
+
"cuid": "cuid",
|
|
88
|
+
"regex": "regex",
|
|
89
|
+
"datetime": "datetime"
|
|
90
|
+
},
|
|
91
|
+
"types": {
|
|
92
|
+
"function": "function",
|
|
93
|
+
"number": "number",
|
|
94
|
+
"string": "string",
|
|
95
|
+
"nan": "nan",
|
|
96
|
+
"integer": "integer",
|
|
97
|
+
"float": "float",
|
|
98
|
+
"boolean": "boolean",
|
|
99
|
+
"date": "date",
|
|
100
|
+
"bigint": "bigint",
|
|
101
|
+
"undefined": "undefined",
|
|
102
|
+
"symbol": "symbol",
|
|
103
|
+
"null": "null",
|
|
104
|
+
"array": "array",
|
|
105
|
+
"object": "object",
|
|
106
|
+
"unknown": "unknown",
|
|
107
|
+
"promise": "promise",
|
|
108
|
+
"void": "void",
|
|
109
|
+
"never": "never",
|
|
110
|
+
"map": "map",
|
|
111
|
+
"set": "set"
|
|
112
|
+
}
|
|
113
|
+
}
|