Skip to content

Commit

Permalink
feat: add Hebrew (he) translatoins
Browse files Browse the repository at this point in the history
* 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
MendyLanda authored May 10, 2023
1 parent 574a415 commit e9a3b8a
Show file tree
Hide file tree
Showing 6 changed files with 444 additions and 0 deletions.
1 change: 1 addition & 0 deletions examples/with-next-i18next/next-i18next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ module.exports = {
defaultLocale: "en",
locales: [
"en",
"he",
"ja",
"fr",
"ar",
Expand Down
1 change: 1 addition & 0 deletions examples/with-next-i18next/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ export default function HookForm() {
<option value="ar">العربية</option>
<option value="de">Deutsch</option>
<option value="en">English</option>
<option value="he">עברית</option>
<option value="es">español</option>
<option value="it">italiano</option>
<option value="fr">Français</option>
Expand Down
7 changes: 7 additions & 0 deletions examples/with-next-i18next/public/locales/he/common.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"username": "שם משתמש",
"username_placeholder": "ישראל ישראלי",
"email": "דואר אלקטרוני",
"favoriteNumber": "מספר אהוב",
"submit": "שלח"
}
112 changes: 112 additions & 0 deletions examples/with-next-i18next/public/locales/he/zod.json
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": "סט"
}
}
112 changes: 112 additions & 0 deletions packages/core/locales/he/zod.json
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": "סט"
}
}
Loading

1 comment on commit e9a3b8a

@vercel
Copy link

@vercel vercel bot commented on e9a3b8a May 10, 2023

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

Please sign in to comment.