-
-
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(locale): add Hebrew (he) translatoins * feat(locale): add tests for Hebrew * feat(locale-next-example): add Hebrew translations * feat(index.tsx): add Hebrew language option to dropdown
- Loading branch information
1 parent
574a415
commit e9a3b8a
Showing
6 changed files
with
444 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 |
---|---|---|
|
@@ -7,6 +7,7 @@ module.exports = { | |
defaultLocale: "en", | ||
locales: [ | ||
"en", | ||
"he", | ||
"ja", | ||
"fr", | ||
"ar", | ||
|
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": "שם משתמש", | ||
"username_placeholder": "ישראל ישראלי", | ||
"email": "דואר אלקטרוני", | ||
"favoriteNumber": "מספר אהוב", | ||
"submit": "שלח" | ||
} |
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": "צפוי {{expected}}, קיבלנו {{received}}", | ||
"invalid_type_received_undefined": "נדרש", | ||
"invalid_literal": "ערך לא תקין, צפוי {{expected}}", | ||
"unrecognized_keys": "מפתחות לא מזוהים באובייקט: {{- keys}}", | ||
"invalid_union": "קלט לא תקין", | ||
"invalid_union_discriminator": "ערך מזהה לא תקין. צפוי {{- options}}", | ||
"invalid_enum_value": "ערך לא תקין לסוג enum. ציפיתי ל-{{- options}}, קיבלתי '{{received}}'", | ||
"invalid_arguments": "פרמטרים לפונקציה לא תקינים", | ||
"invalid_return_type": "סוג ההחזרה של הפונקציה לא תקין", | ||
"invalid_date": "תאריך לא תקין", | ||
"custom": "קלט לא תקין", | ||
"invalid_intersection_types": "לא ניתן למזג את הסוגים", | ||
"not_multiple_of": "המספר חייב להיות מכפלה של {{multipleOf}}", | ||
"not_finite": "המספר חייב להיות סופי", | ||
"invalid_string": { | ||
"email": "כתובת דוא\"ל לא תקינה", | ||
"url": "כתובת אינטרנט לא תקינה", | ||
"uuid": "מזהה UUID לא תקין", | ||
"cuid": "מזהה CUID לא תקין", | ||
"regex": "קלט לא תקין", | ||
"datetime": "תאריך ושעה לא תקינים", | ||
"startsWith": "קלט לא תקין: חייב להתחיל ב-\"{{startsWith}}\"", | ||
"endsWith": "קלט לא תקין: חייב להסתיים ב-\"{{endsWith}}\"" | ||
}, | ||
"too_small": { | ||
"array": { | ||
"exact": "המערך חייב להכיל בדיוק {{minimum}} איברים", | ||
"inclusive": "המערך חייב להכיל לפחות {{minimum}} איברים", | ||
"not_inclusive": "המערך חייב להכיל יותר מ-{{minimum}} איברים" | ||
}, | ||
"string": { | ||
"exact": "המחרוזת חייבת להכיל בדיוק {{minimum}} תווים", | ||
"inclusive": "המחרוזת חייבת להכיל לפחות {{minimum}} תווים", | ||
"not_inclusive": "המחרוזת חייבת להכיל מעל {{minimum}} תווים" | ||
}, | ||
"number": { | ||
"exact": "המספר חייב להיות בדיוק {{minimum}}", | ||
"inclusive": "המספר חייב להיות גדול או שווה ל-{{minimum}}", | ||
"not_inclusive": "המספר חייב להיות גדול מ-{{minimum}}" | ||
}, | ||
"set": { | ||
"exact": "קלט לא תקין", | ||
"inclusive": "קלט לא תקין", | ||
"not_inclusive": "קלט לא תקין" | ||
}, | ||
"date": { | ||
"exact": "התאריך חייב להיות בדיוק {{- minimum, datetime}}", | ||
"inclusive": "התאריך חייב להיות גדול או שווה ל-{{- minimum, datetime}}", | ||
"not_inclusive": "התאריך חייב להיות גדול מ-{{- minimum, datetime}}" | ||
} | ||
}, | ||
"too_big": { | ||
"array": { | ||
"exact": "המערך חייב להכיל בדיוק {{maximum}} איברים", | ||
"inclusive": "המערך חייב להכיל לכל היותר {{maximum}} איברים", | ||
"not_inclusive": "המערך חייב להכיל פחות מ-{{maximum}} איברים" | ||
}, | ||
"string": { | ||
"exact": "המחרוזת חייבת להכיל בדיוק {{maximum}} תווים", | ||
"inclusive": "המחרוזת חייבת להכיל לכל היותר {{maximum}} תווים", | ||
"not_inclusive": "המחרוזת חייבת להכיל פחות מ-{{maximum}} תווים" | ||
}, | ||
"number": { | ||
"exact": "המספר חייב להיות בדיוק {{maximum}}", | ||
"inclusive": "המספר חייב להיות קטן או שווה ל-{{maximum}}", | ||
"not_inclusive": "המספר חייב להיות קטן מ-{{maximum}}" | ||
}, | ||
"set": { | ||
"exact": "קלט לא תקין", | ||
"inclusive": "קלט לא תקין", | ||
"not_inclusive": "קלט לא תקין" | ||
}, | ||
"date": { | ||
"exact": "התאריך חייב להיות בדיוק {{- maximum, datetime}}", | ||
"inclusive": "התאריך חייב להיות קטן או שווה ל-{{- maximum, datetime}}", | ||
"not_inclusive": "התאריך חייב להיות קטן מ-{{- maximum, datetime}}" | ||
} | ||
} | ||
}, | ||
"validations": { | ||
"email": "כתובת דוא\"ל", | ||
"url": "כתובת אינטרנט", | ||
"uuid": "מזהה UUID", | ||
"cuid": "מזהה CUID", | ||
"regex": "קלט רגולרי", | ||
"datetime": "תאריך ושעה" | ||
}, | ||
"types": { | ||
"function": "פונקציה", | ||
"number": "מספר", | ||
"string": "מחרוזת", | ||
"nan": "NaN", | ||
"integer": "מספר שלם", | ||
"float": "מספר עשרוני", | ||
"boolean": "בוליאני", | ||
"date": "תאריך", | ||
"bigint": "מספר גדול", | ||
"undefined": "לא מוגדר", | ||
"symbol": "סמל", | ||
"null": "null", | ||
"array": "מערך", | ||
"object": "אובייקט", | ||
"unknown": "לא ידוע", | ||
"promise": "Promise", | ||
"void": "void", | ||
"never": "לעולם לא", | ||
"map": "מפה", | ||
"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": "צפוי {{expected}}, קיבלנו {{received}}", | ||
"invalid_type_received_undefined": "נדרש", | ||
"invalid_literal": "ערך לא תקין, צפוי {{expected}}", | ||
"unrecognized_keys": "מפתחות לא מזוהים באובייקט: {{- keys}}", | ||
"invalid_union": "קלט לא תקין", | ||
"invalid_union_discriminator": "ערך מזהה לא תקין. צפוי {{- options}}", | ||
"invalid_enum_value": "ערך לא תקין לסוג enum. ציפיתי ל-{{- options}}, קיבלתי '{{received}}'", | ||
"invalid_arguments": "פרמטרים לפונקציה לא תקינים", | ||
"invalid_return_type": "סוג ההחזרה של הפונקציה לא תקין", | ||
"invalid_date": "תאריך לא תקין", | ||
"custom": "קלט לא תקין", | ||
"invalid_intersection_types": "לא ניתן למזג את הסוגים", | ||
"not_multiple_of": "המספר חייב להיות מכפלה של {{multipleOf}}", | ||
"not_finite": "המספר חייב להיות סופי", | ||
"invalid_string": { | ||
"email": "כתובת דוא\"ל לא תקינה", | ||
"url": "כתובת אינטרנט לא תקינה", | ||
"uuid": "מזהה UUID לא תקין", | ||
"cuid": "מזהה CUID לא תקין", | ||
"regex": "קלט לא תקין", | ||
"datetime": "תאריך ושעה לא תקינים", | ||
"startsWith": "קלט לא תקין: חייב להתחיל ב-\"{{startsWith}}\"", | ||
"endsWith": "קלט לא תקין: חייב להסתיים ב-\"{{endsWith}}\"" | ||
}, | ||
"too_small": { | ||
"array": { | ||
"exact": "המערך חייב להכיל בדיוק {{minimum}} איברים", | ||
"inclusive": "המערך חייב להכיל לפחות {{minimum}} איברים", | ||
"not_inclusive": "המערך חייב להכיל יותר מ-{{minimum}} איברים" | ||
}, | ||
"string": { | ||
"exact": "המחרוזת חייבת להכיל בדיוק {{minimum}} תווים", | ||
"inclusive": "המחרוזת חייבת להכיל לפחות {{minimum}} תווים", | ||
"not_inclusive": "המחרוזת חייבת להכיל מעל {{minimum}} תווים" | ||
}, | ||
"number": { | ||
"exact": "המספר חייב להיות בדיוק {{minimum}}", | ||
"inclusive": "המספר חייב להיות גדול או שווה ל-{{minimum}}", | ||
"not_inclusive": "המספר חייב להיות גדול מ-{{minimum}}" | ||
}, | ||
"set": { | ||
"exact": "קלט לא תקין", | ||
"inclusive": "קלט לא תקין", | ||
"not_inclusive": "קלט לא תקין" | ||
}, | ||
"date": { | ||
"exact": "התאריך חייב להיות בדיוק {{- minimum, datetime}}", | ||
"inclusive": "התאריך חייב להיות גדול או שווה ל-{{- minimum, datetime}}", | ||
"not_inclusive": "התאריך חייב להיות גדול מ-{{- minimum, datetime}}" | ||
} | ||
}, | ||
"too_big": { | ||
"array": { | ||
"exact": "המערך חייב להכיל בדיוק {{maximum}} איברים", | ||
"inclusive": "המערך חייב להכיל לכל היותר {{maximum}} איברים", | ||
"not_inclusive": "המערך חייב להכיל פחות מ-{{maximum}} איברים" | ||
}, | ||
"string": { | ||
"exact": "המחרוזת חייבת להכיל בדיוק {{maximum}} תווים", | ||
"inclusive": "המחרוזת חייבת להכיל לכל היותר {{maximum}} תווים", | ||
"not_inclusive": "המחרוזת חייבת להכיל פחות מ-{{maximum}} תווים" | ||
}, | ||
"number": { | ||
"exact": "המספר חייב להיות בדיוק {{maximum}}", | ||
"inclusive": "המספר חייב להיות קטן או שווה ל-{{maximum}}", | ||
"not_inclusive": "המספר חייב להיות קטן מ-{{maximum}}" | ||
}, | ||
"set": { | ||
"exact": "קלט לא תקין", | ||
"inclusive": "קלט לא תקין", | ||
"not_inclusive": "קלט לא תקין" | ||
}, | ||
"date": { | ||
"exact": "התאריך חייב להיות בדיוק {{- maximum, datetime}}", | ||
"inclusive": "התאריך חייב להיות קטן או שווה ל-{{- maximum, datetime}}", | ||
"not_inclusive": "התאריך חייב להיות קטן מ-{{- maximum, datetime}}" | ||
} | ||
} | ||
}, | ||
"validations": { | ||
"email": "כתובת דוא\"ל", | ||
"url": "כתובת אינטרנט", | ||
"uuid": "מזהה UUID", | ||
"cuid": "מזהה CUID", | ||
"regex": "קלט רגולרי", | ||
"datetime": "תאריך ושעה" | ||
}, | ||
"types": { | ||
"function": "פונקציה", | ||
"number": "מספר", | ||
"string": "מחרוזת", | ||
"nan": "NaN", | ||
"integer": "מספר שלם", | ||
"float": "מספר עשרוני", | ||
"boolean": "בוליאני", | ||
"date": "תאריך", | ||
"bigint": "מספר גדול", | ||
"undefined": "לא מוגדר", | ||
"symbol": "סמל", | ||
"null": "null", | ||
"array": "מערך", | ||
"object": "אובייקט", | ||
"unknown": "לא ידוע", | ||
"promise": "Promise", | ||
"void": "void", | ||
"never": "לעולם לא", | ||
"map": "מפה", | ||
"set": "סט" | ||
} | ||
} |
Oops, something went wrong.
e9a3b8a
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-aiji42.vercel.app
zod-i18n.vercel.app