From 68a7b17f3679674ac3ee8e8bca63d2c9b71cbe7a Mon Sep 17 00:00:00 2001 From: Maor Nissan Date: Mon, 9 May 2022 08:04:12 +0300 Subject: [PATCH] feat(Locale): Added he-IL support. (#10591) --- packages/vant/src/locale/README.md | 3 +- packages/vant/src/locale/lang/he-IL.ts | 63 ++++++++++++++++++++++++++ 2 files changed, 65 insertions(+), 1 deletion(-) create mode 100644 packages/vant/src/locale/lang/he-IL.ts diff --git a/packages/vant/src/locale/README.md b/packages/vant/src/locale/README.md index 111e1ebe7..0b2ba3cca 100644 --- a/packages/vant/src/locale/README.md +++ b/packages/vant/src/locale/README.md @@ -40,7 +40,7 @@ Locale.add(messages); Current supported languages: | Language | Filename | Version | -| ------------------------ | ------------ | -------- | +|--------------------------|--------------| -------- | | Bangla (Bangladesh) | bn-BD | `v3.4.5` | | Danish | da-DK | `v3.4.8` | | German | de-DE | - | @@ -48,6 +48,7 @@ Current supported languages: | English | en-US | - | | Spanish (Spain) | es-ES | - | | French | fr-FR | - | +| Hebrew | he-IL | | | Hindi | hi-IN | `v3.4.3` | | Indonesian | id-ID | `v3.4.5` | | Icelandic | is-IS | `v3.4.7` | diff --git a/packages/vant/src/locale/lang/he-IL.ts b/packages/vant/src/locale/lang/he-IL.ts new file mode 100644 index 000000000..14c5cef8b --- /dev/null +++ b/packages/vant/src/locale/lang/he-IL.ts @@ -0,0 +1,63 @@ +export default { + name: 'שם', + tel: 'טלפון', + save: 'שמור', + confirm: 'אישור', + cancel: 'ביטול', + delete: 'מחיקה', + loading: 'טוען...', + noCoupon: 'אין קופונים', + nameEmpty: 'אנא מלא את השדה', + addContact: 'הוסף איש-קשר', + telInvalid: 'מספר טלפון שגוי', + vanCalendar: { + end: 'סוף', + start: 'התחלה', + title: 'לוח שנה', + weekdays: ['ראשון', 'שני', 'שלישי', 'רביעי', 'חמישי', 'שישי', 'שבת'], + monthTitle: (year: number, month: number) => `${year}/${month}`, + rangePrompt: (maxRange: number) => ` בחר לא יותר מ ${maxRange} ימים `, + }, + vanCascader: { + select: 'בחר', + }, + vanPagination: { + prev: 'הקודם', + next: 'הבא', + }, + vanPullRefresh: { + pulling: 'גרור כדי לרענן', + loosing: 'שחרר כדי לרענן', + }, + vanSubmitBar: { + label: 'סך הכל:', + }, + vanCoupon: { + unlimited: 'ללא הגבלה', + discount: (discount: number) => `${discount * 10}% הנחה`, + condition: (condition: number) => ` לפחות ${condition}`, + }, + vanCouponCell: { + title: 'קופון', + count: (count: number) => ` יש לך ${count} קופונים `, + }, + vanCouponList: { + exchange: 'החלפה', + close: 'סגירה', + enable: 'זמינים', + disabled: 'לא זמינים', + placeholder: 'קוד קופון', + }, + vanAddressEdit: { + area: 'איזור', + postal: 'מיקוד', + areaEmpty: 'אנא בחר איזור קבלה', + addressEmpty: 'יש למלא כתובת', + postalEmpty: 'טעות במיקוד', + addressDetail: 'כתובת', + defaultAddress: 'הגדר ככתובת ברירת מחדש', + }, + vanAddressList: { + add: 'הוספת כתובת חדשה', + }, +};