-
-
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.
* feat: add czech language default translations * feat: add cs language example
- 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 |
---|---|---|
|
@@ -31,6 +31,7 @@ module.exports = { | |
"uz", | ||
"hr-HR", | ||
"fi", | ||
"cs", | ||
], | ||
}, | ||
localePath: path.resolve("./public/locales"), | ||
|
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": "Uživatelské jméno", | ||
"username_placeholder": "Josef Švejk", | ||
"email": "E-mail", | ||
"favoriteNumber": "Oblíbené číslo", | ||
"submit": "Odeslat" | ||
} |
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": "Typ vstupu musí být {{expected}}, ale byl obdržen typ {{received}}", | ||
"invalid_type_received_undefined": "Povinné", | ||
"invalid_literal": "Neplatná doslovná hodnota, očekává se {{expected}}", | ||
"unrecognized_keys": "Nerozpoznané klíče v objektu: {{- keys}}", | ||
"invalid_union": "Neplatný vstup", | ||
"invalid_union_discriminator": "Neplatná hodnota diskriminátoru. Očekává se {{- options}}", | ||
"invalid_enum_value": "Neplatná hodnota výčtu. Očekává se {{- options}}, ale bylo obdrženo '{{received}}'", | ||
"invalid_arguments": "Neplatné argumenty funkce", | ||
"invalid_return_type": "Neplatný typ návratové hodnoty", | ||
"invalid_date": "Neplatné datum", | ||
"custom": "Neplatný vstup", | ||
"invalid_intersection_types": "Hodnoty průniku nelze sloučit", | ||
"not_multiple_of": "Číslo musí být násobkem {{multipleOf}}", | ||
"not_finite": "Číslo nesmí být nekonečné", | ||
"invalid_string": { | ||
"email": "Neplatný {{validation}}", | ||
"url": "Neplatná {{validation}}", | ||
"uuid": "Neplatný {{validation}}", | ||
"cuid": "Neplatný {{validation}}", | ||
"regex": "Neplatná kombinace", | ||
"datetime": "Neplatné {{validation}}", | ||
"startsWith": "Neplatný vstup: musí začínat \"{{startsWith}}\"", | ||
"endsWith": "Neplatný vstup: musí končit \"{{endsWith}}\"" | ||
}, | ||
"too_small": { | ||
"array": { | ||
"exact": "Pole musí obsahovat přesně {{minimum}} prvek/prvků", | ||
"inclusive": "Pole musí obsahovat alespoň {{minimum}} prvek/prvků", | ||
"not_inclusive": "Pole musí obsahovat nejvýše {{minimum}} prvek/prvků" | ||
}, | ||
"string": { | ||
"exact": "Text musí obsahovat přesně {{minimum}} znak/znaků", | ||
"inclusive": "Text musí obsahovat alespoň {{minimum}} znak/znaků", | ||
"not_inclusive": "Text musí obsahovat nejvýše {{minimum}} znak/znaků" | ||
}, | ||
"number": { | ||
"exact": "Číslo musí být přesně {{minimum}}", | ||
"inclusive": "Číslo musí být větší nebo rovno {{minimum}}", | ||
"not_inclusive": "Číslo musí být větší než {{minimum}}" | ||
}, | ||
"set": { | ||
"exact": "Neplatný vstup", | ||
"inclusive": "Neplatný vstup", | ||
"not_inclusive": "Neplatný vstup" | ||
}, | ||
"date": { | ||
"exact": "Datum musí být přesně {{- minimum, datetime}}", | ||
"inclusive": "Datum musí být větší nebo rovno {{- minimum, datetime}}", | ||
"not_inclusive": "Datum musí být větší než {{- minimum, datetime}}" | ||
} | ||
}, | ||
"too_big": { | ||
"array": { | ||
"exact": "Pole musí obsahovat přesně {{maximum}} prvek/prvků", | ||
"inclusive": "Pole musí obsahovat nejvýše {{maximum}} prvek/prvků", | ||
"not_inclusive": "Pole musí obsahovat méně než {{maximum}} prvek/prvků" | ||
}, | ||
"string": { | ||
"exact": "Text musí obsahovat přesně {{maximum}} znak/znaků", | ||
"inclusive": "Text musí obsahovat nejvýše {{maximum}} znak/znaků", | ||
"not_inclusive": "Text musí obsahovat méně než {{maximum}} znak/znaků" | ||
}, | ||
"number": { | ||
"exact": "Číslo musí být přesně {{maximum}}", | ||
"inclusive": "Číslo musí být menší nebo rovno {{maximum}}", | ||
"not_inclusive": "Číslo musí být menší než {{maximum}}" | ||
}, | ||
"set": { | ||
"exact": "Neplatný vstup", | ||
"inclusive": "Neplatný vstup", | ||
"not_inclusive": "Neplatný vstup" | ||
}, | ||
"date": { | ||
"exact": "Datum musí být přesně {{- maximum, datetime}}", | ||
"inclusive": "Datum musí být menší nebo rovno {{- maximum, datetime}}", | ||
"not_inclusive": "Datum musí být menší než {{- maximum, datetime}}" | ||
} | ||
} | ||
}, | ||
"validations": { | ||
"email": "e-mail", | ||
"url": "url", | ||
"uuid": "uuid", | ||
"cuid": "cuid", | ||
"regex": "regex", | ||
"datetime": "datum a čas" | ||
}, | ||
"types": { | ||
"function": "funkce", | ||
"number": "číslo", | ||
"string": "text", | ||
"nan": "nan", | ||
"integer": "celé číslo", | ||
"float": "reálné číslo", | ||
"boolean": "boolean", | ||
"date": "datum", | ||
"bigint": "bigint", | ||
"undefined": "nedefinováno", | ||
"symbol": "symbol", | ||
"null": "null", | ||
"array": "pole", | ||
"object": "objekt", | ||
"unknown": "neznámý", | ||
"promise": "promise", | ||
"void": "void", | ||
"never": "never", | ||
"map": "map", | ||
"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": "Typ vstupu musí být {{expected}}, ale byl obdržen typ {{received}}", | ||
"invalid_type_received_undefined": "Povinné", | ||
"invalid_literal": "Neplatná doslovná hodnota, očekává se {{expected}}", | ||
"unrecognized_keys": "Nerozpoznané klíče v objektu: {{- keys}}", | ||
"invalid_union": "Neplatný vstup", | ||
"invalid_union_discriminator": "Neplatná hodnota diskriminátoru. Očekává se {{- options}}", | ||
"invalid_enum_value": "Neplatná hodnota výčtu. Očekává se {{- options}}, ale bylo obdrženo '{{received}}'", | ||
"invalid_arguments": "Neplatné argumenty funkce", | ||
"invalid_return_type": "Neplatný typ návratové hodnoty", | ||
"invalid_date": "Neplatné datum", | ||
"custom": "Neplatný vstup", | ||
"invalid_intersection_types": "Hodnoty průniku nelze sloučit", | ||
"not_multiple_of": "Číslo musí být násobkem {{multipleOf}}", | ||
"not_finite": "Číslo nesmí být nekonečné", | ||
"invalid_string": { | ||
"email": "Neplatný {{validation}}", | ||
"url": "Neplatná {{validation}}", | ||
"uuid": "Neplatný {{validation}}", | ||
"cuid": "Neplatný {{validation}}", | ||
"regex": "Neplatná kombinace", | ||
"datetime": "Neplatné {{validation}}", | ||
"startsWith": "Neplatný vstup: musí začínat \"{{startsWith}}\"", | ||
"endsWith": "Neplatný vstup: musí končit \"{{endsWith}}\"" | ||
}, | ||
"too_small": { | ||
"array": { | ||
"exact": "Pole musí obsahovat přesně {{minimum}} prvek/prvků", | ||
"inclusive": "Pole musí obsahovat alespoň {{minimum}} prvek/prvků", | ||
"not_inclusive": "Pole musí obsahovat nejvýše {{minimum}} prvek/prvků" | ||
}, | ||
"string": { | ||
"exact": "Text musí obsahovat přesně {{minimum}} znak/znaků", | ||
"inclusive": "Text musí obsahovat alespoň {{minimum}} znak/znaků", | ||
"not_inclusive": "Text musí obsahovat nejvýše {{minimum}} znak/znaků" | ||
}, | ||
"number": { | ||
"exact": "Číslo musí být přesně {{minimum}}", | ||
"inclusive": "Číslo musí být větší nebo rovno {{minimum}}", | ||
"not_inclusive": "Číslo musí být větší než {{minimum}}" | ||
}, | ||
"set": { | ||
"exact": "Neplatný vstup", | ||
"inclusive": "Neplatný vstup", | ||
"not_inclusive": "Neplatný vstup" | ||
}, | ||
"date": { | ||
"exact": "Datum musí být přesně {{- minimum, datetime}}", | ||
"inclusive": "Datum musí být větší nebo rovno {{- minimum, datetime}}", | ||
"not_inclusive": "Datum musí být větší než {{- minimum, datetime}}" | ||
} | ||
}, | ||
"too_big": { | ||
"array": { | ||
"exact": "Pole musí obsahovat přesně {{maximum}} prvek/prvků", | ||
"inclusive": "Pole musí obsahovat nejvýše {{maximum}} prvek/prvků", | ||
"not_inclusive": "Pole musí obsahovat méně než {{maximum}} prvek/prvků" | ||
}, | ||
"string": { | ||
"exact": "Text musí obsahovat přesně {{maximum}} znak/znaků", | ||
"inclusive": "Text musí obsahovat nejvýše {{maximum}} znak/znaků", | ||
"not_inclusive": "Text musí obsahovat méně než {{maximum}} znak/znaků" | ||
}, | ||
"number": { | ||
"exact": "Číslo musí být přesně {{maximum}}", | ||
"inclusive": "Číslo musí být menší nebo rovno {{maximum}}", | ||
"not_inclusive": "Číslo musí být menší než {{maximum}}" | ||
}, | ||
"set": { | ||
"exact": "Neplatný vstup", | ||
"inclusive": "Neplatný vstup", | ||
"not_inclusive": "Neplatný vstup" | ||
}, | ||
"date": { | ||
"exact": "Datum musí být přesně {{- maximum, datetime}}", | ||
"inclusive": "Datum musí být menší nebo rovno {{- maximum, datetime}}", | ||
"not_inclusive": "Datum musí být menší než {{- maximum, datetime}}" | ||
} | ||
} | ||
}, | ||
"validations": { | ||
"email": "e-mail", | ||
"url": "url", | ||
"uuid": "uuid", | ||
"cuid": "cuid", | ||
"regex": "regex", | ||
"datetime": "datum a čas" | ||
}, | ||
"types": { | ||
"function": "funkce", | ||
"number": "číslo", | ||
"string": "text", | ||
"nan": "nan", | ||
"integer": "celé číslo", | ||
"float": "reálné číslo", | ||
"boolean": "boolean", | ||
"date": "datum", | ||
"bigint": "bigint", | ||
"undefined": "nedefinováno", | ||
"symbol": "symbol", | ||
"null": "null", | ||
"array": "pole", | ||
"object": "objekt", | ||
"unknown": "neznámý", | ||
"promise": "promise", | ||
"void": "void", | ||
"never": "never", | ||
"map": "map", | ||
"set": "set" | ||
} | ||
} |
Oops, something went wrong.
038828c
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-git-main-aiji42.vercel.app
zod-i18n.vercel.app
zod-i18n-aiji42.vercel.app