diff --git a/src/behaviors/localization/locales/he.ts b/src/behaviors/localization/locales/he.ts index 184e8c25d..fafa2ec54 100644 --- a/src/behaviors/localization/locales/he.ts +++ b/src/behaviors/localization/locales/he.ts @@ -1,11 +1,11 @@ -import { IPartialLocaleValues } from "../interfaces/values"; +import { ILocaleValues } from "../interfaces/values"; /** * locale : Hebrew (he) * author : David limkys : https://github.com/gotenxds */ -const he:IPartialLocaleValues = { +const he:ILocaleValues = { datepicker: { months: [ "ינואר", "פבואר", "מרץ", "אפריל", "מאי", "יוני", "יולי", "אוגוסט", "ספטמבר", "אוקטובר", "נובמבר", "דצמבר" @@ -22,6 +22,15 @@ const he:IPartialLocaleValues = { weekdaysNarrow: [ "ר", "ש", "ש", "ר", "ח", "ש", "ש" ], + timesOfDay: [ + "לפנות בוקר", "אחר הצהריים" + ], + timesOfDayUppercase: [ + "לפנות בוקר", "אחר הצהריים" + ], + timesOfDayLowercase: [ + "לפנות בוקר", "אחר הצהריים" + ], formats: { time: "HH:mm", datetime: "D MMMM YYYY HH:mm", @@ -46,7 +55,7 @@ const he:IPartialLocaleValues = { multi: { placeholder: "בחר...", maxSelectedMessage: "מקסימום #{max} אפשרויות", - selectedMessage: "#{count} selections" + selectedMessage: "#{count} בחירות" } } }; diff --git a/src/behaviors/localization/locales/index.ts b/src/behaviors/localization/locales/index.ts index 35e1ed890..0a65b259e 100644 --- a/src/behaviors/localization/locales/index.ts +++ b/src/behaviors/localization/locales/index.ts @@ -1,5 +1,3 @@ -import { RecursivePartial, ILocaleValues } from "../interfaces/values"; - import de from "./de"; import enAU from "./en-AU"; import enGB from "./en-GB";