-
-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
442 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,7 @@ module.exports = { | |
"ro", | ||
"uk-UA", | ||
"uz", | ||
"hr-HR", | ||
"fi", | ||
], | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"username": "Korisničko ime", | ||
"username_placeholder": "Ivan Horvat", | ||
"email": "Email", | ||
"favoriteNumber": "Najdraži broj", | ||
"submit": "Pošalji" | ||
} |
112 changes: 112 additions & 0 deletions
112
examples/with-next-i18next/public/locales/hr-HR/zod.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
{ | ||
"errors": { | ||
"invalid_type": "Očekivano: {{expected}}, uneseno: {{received}}", | ||
"invalid_type_received_undefined": "Obvezno polje", | ||
"invalid_literal": "Neispravna literalna vrijednost, očekivano {{expected}}", | ||
"unrecognized_keys": "Neprepoznat(i) ključ(evi) u objektu: {{- keys}}", | ||
"invalid_union": "Neispravan unos", | ||
"invalid_union_discriminator": "Neispravna vrijednost diskriminatora. Očekivano {{- options}}", | ||
"invalid_enum_value": "Neispravna vrijednost enumeracije. Očekivano {{- options}}, uneseno '{{received}}'", | ||
"invalid_arguments": "Neispravni argumenti funkcije", | ||
"invalid_return_type": "Neispravan tip povratne vrijednosti", | ||
"invalid_date": "Neispravan datum", | ||
"custom": "Neispravan unos", | ||
"invalid_intersection_types": "Rezultati presjecanja nisu se mogli spojiti", | ||
"not_multiple_of": "Broj mora biti višekratnik od {{multipleOf}}", | ||
"not_finite": "Broj mora biti konačan", | ||
"invalid_string": { | ||
"email": "Neispravan {{validation}}", | ||
"url": "Neispravan {{validation}}", | ||
"uuid": "Neispravan {{validation}}", | ||
"cuid": "Neispravan {{validation}}", | ||
"regex": "Neispravno", | ||
"datetime": "Neispravan {{validation}}", | ||
"startsWith": "Neispravan unos: mora započeti s \"{{startsWith}}\"", | ||
"endsWith": "Neispravan unos: mora završiti s \"{{endsWith}}\"" | ||
}, | ||
"too_small": { | ||
"array": { | ||
"exact": "Niz mora sadržavati točno {{minimum}} element(a)", | ||
"inclusive": "Niz mora sadržavati barem {{minimum}} element(a)", | ||
"not_inclusive": "Niz mora sadržavati više od {{minimum}} element(a)" | ||
}, | ||
"string": { | ||
"exact": "Tekst mora sadržavati točno {{minimum}} znak(ova)", | ||
"inclusive": "Tekst mora sadržavati barem {{minimum}} znak(ova)", | ||
"not_inclusive": "Tekst mora sadržavati više od {{minimum}} znak(ova)" | ||
}, | ||
"number": { | ||
"exact": "Broj mora biti točno {{minimum}}", | ||
"inclusive": "Broj mora biti veći od ili jednak {{minimum}}", | ||
"not_inclusive": "Broj mora biti veći od {{minimum}}" | ||
}, | ||
"set": { | ||
"exact": "Neispravan unos", | ||
"inclusive": "Neispravan unos", | ||
"not_inclusive": "Neispravan unos" | ||
}, | ||
"date": { | ||
"exact": "Datum mora biti točno {{- minimum, datetime}}", | ||
"inclusive": "Datum mora biti veći od ili jednak {{- minimum, datetime}}", | ||
"not_inclusive": "Datum mora biti veći od {{- minimum, datetime}}" | ||
} | ||
}, | ||
"too_big": { | ||
"array": { | ||
"exact": "Niz mora sadržavati točno {{maximum}} element(a)", | ||
"inclusive": "Niz mora sadržavati najviše {{maximum}} element(a)", | ||
"not_inclusive": "Niz mora sadržavati manje od {{maximum}} element(a)" | ||
}, | ||
"string": { | ||
"exact": "Tekst mora sadržavati točno {{maximum}} znak(ova)", | ||
"inclusive": "Tekst mora sadržavati najviše {{maximum}} znak(ova)", | ||
"not_inclusive": "Tekst mora sadržavati manje od {{maximum}} znak(ova)" | ||
}, | ||
"number": { | ||
"exact": "Broj mora biti točno {{maximum}}", | ||
"inclusive": "Broj mora biti manji od ili jednak {{maximum}}", | ||
"not_inclusive": "Broj mora biti manji od {{maximum}}" | ||
}, | ||
"set": { | ||
"exact": "Neispravan unos", | ||
"inclusive": "Neispravan unos", | ||
"not_inclusive": "Neispravan unos" | ||
}, | ||
"date": { | ||
"exact": "Datum mora biti točno {{- maximum, datetime}}", | ||
"inclusive": "Datum mora biti manji od ili jednak {{- maximum, datetime}}", | ||
"not_inclusive": "Datum mora biti manji od {{- maximum, datetime}}" | ||
} | ||
} | ||
}, | ||
"validations": { | ||
"email": "email", | ||
"url": "url", | ||
"uuid": "uuid", | ||
"cuid": "cuid", | ||
"regex": "regex", | ||
"datetime": "datum i vrijeme" | ||
}, | ||
"types": { | ||
"function": "funkcija", | ||
"number": "broj", | ||
"string": "tekst", | ||
"nan": "nan", | ||
"integer": "broj", | ||
"float": "decimalni broj", | ||
"boolean": "boolean", | ||
"date": "datum", | ||
"bigint": "broj", | ||
"undefined": "nedefinirana vrijednost", | ||
"symbol": "simbol", | ||
"null": "null", | ||
"array": "niz", | ||
"object": "objekt", | ||
"unknown": "nepoznato", | ||
"promise": "promise", | ||
"void": "void", | ||
"never": "nikad", | ||
"map": "mapa", | ||
"set": "set" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
{ | ||
"errors": { | ||
"invalid_type": "Očekivano: {{expected}}, uneseno: {{received}}", | ||
"invalid_type_received_undefined": "Obvezno polje", | ||
"invalid_literal": "Neispravna literalna vrijednost, očekivano {{expected}}", | ||
"unrecognized_keys": "Neprepoznat(i) ključ(evi) u objektu: {{- keys}}", | ||
"invalid_union": "Neispravan unos", | ||
"invalid_union_discriminator": "Neispravna vrijednost diskriminatora. Očekivano {{- options}}", | ||
"invalid_enum_value": "Neispravna vrijednost enumeracije. Očekivano {{- options}}, uneseno '{{received}}'", | ||
"invalid_arguments": "Neispravni argumenti funkcije", | ||
"invalid_return_type": "Neispravan tip povratne vrijednosti", | ||
"invalid_date": "Neispravan datum", | ||
"custom": "Neispravan unos", | ||
"invalid_intersection_types": "Rezultati presjecanja nisu se mogli spojiti", | ||
"not_multiple_of": "Broj mora biti višekratnik od {{multipleOf}}", | ||
"not_finite": "Broj mora biti konačan", | ||
"invalid_string": { | ||
"email": "Neispravan {{validation}}", | ||
"url": "Neispravan {{validation}}", | ||
"uuid": "Neispravan {{validation}}", | ||
"cuid": "Neispravan {{validation}}", | ||
"regex": "Neispravno", | ||
"datetime": "Neispravan {{validation}}", | ||
"startsWith": "Neispravan unos: mora započeti s \"{{startsWith}}\"", | ||
"endsWith": "Neispravan unos: mora završiti s \"{{endsWith}}\"" | ||
}, | ||
"too_small": { | ||
"array": { | ||
"exact": "Niz mora sadržavati točno {{minimum}} element(a)", | ||
"inclusive": "Niz mora sadržavati barem {{minimum}} element(a)", | ||
"not_inclusive": "Niz mora sadržavati više od {{minimum}} element(a)" | ||
}, | ||
"string": { | ||
"exact": "Tekst mora sadržavati točno {{minimum}} znak(ova)", | ||
"inclusive": "Tekst mora sadržavati barem {{minimum}} znak(ova)", | ||
"not_inclusive": "Tekst mora sadržavati više od {{minimum}} znak(ova)" | ||
}, | ||
"number": { | ||
"exact": "Broj mora biti točno {{minimum}}", | ||
"inclusive": "Broj mora biti veći od ili jednak {{minimum}}", | ||
"not_inclusive": "Broj mora biti veći od {{minimum}}" | ||
}, | ||
"set": { | ||
"exact": "Neispravan unos", | ||
"inclusive": "Neispravan unos", | ||
"not_inclusive": "Neispravan unos" | ||
}, | ||
"date": { | ||
"exact": "Datum mora biti točno {{- minimum, datetime}}", | ||
"inclusive": "Datum mora biti veći od ili jednak {{- minimum, datetime}}", | ||
"not_inclusive": "Datum mora biti veći od {{- minimum, datetime}}" | ||
} | ||
}, | ||
"too_big": { | ||
"array": { | ||
"exact": "Niz mora sadržavati točno {{maximum}} element(a)", | ||
"inclusive": "Niz mora sadržavati najviše {{maximum}} element(a)", | ||
"not_inclusive": "Niz mora sadržavati manje od {{maximum}} element(a)" | ||
}, | ||
"string": { | ||
"exact": "Tekst mora sadržavati točno {{maximum}} znak(ova)", | ||
"inclusive": "Tekst mora sadržavati najviše {{maximum}} znak(ova)", | ||
"not_inclusive": "Tekst mora sadržavati manje od {{maximum}} znak(ova)" | ||
}, | ||
"number": { | ||
"exact": "Broj mora biti točno {{maximum}}", | ||
"inclusive": "Broj mora biti manji od ili jednak {{maximum}}", | ||
"not_inclusive": "Broj mora biti manji od {{maximum}}" | ||
}, | ||
"set": { | ||
"exact": "Neispravan unos", | ||
"inclusive": "Neispravan unos", | ||
"not_inclusive": "Neispravan unos" | ||
}, | ||
"date": { | ||
"exact": "Datum mora biti točno {{- maximum, datetime}}", | ||
"inclusive": "Datum mora biti manji od ili jednak {{- maximum, datetime}}", | ||
"not_inclusive": "Datum mora biti manji od {{- maximum, datetime}}" | ||
} | ||
} | ||
}, | ||
"validations": { | ||
"email": "email", | ||
"url": "url", | ||
"uuid": "uuid", | ||
"cuid": "cuid", | ||
"regex": "regex", | ||
"datetime": "datum i vrijeme" | ||
}, | ||
"types": { | ||
"function": "funkcija", | ||
"number": "broj", | ||
"string": "tekst", | ||
"nan": "nan", | ||
"integer": "broj", | ||
"float": "decimalni broj", | ||
"boolean": "boolean", | ||
"date": "datum", | ||
"bigint": "broj", | ||
"undefined": "nedefinirana vrijednost", | ||
"symbol": "simbol", | ||
"null": "null", | ||
"array": "niz", | ||
"object": "objekt", | ||
"unknown": "nepoznato", | ||
"promise": "promise", | ||
"void": "void", | ||
"never": "nikad", | ||
"map": "mapa", | ||
"set": "set" | ||
} | ||
} |
Oops, something went wrong.
1a48891
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
zod-i18n – ./
zod-i18n.vercel.app
zod-i18n-aiji42.vercel.app
zod-i18n-git-main-aiji42.vercel.app