-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
heIL.ts
100 lines (85 loc) · 3.61 KB
/
heIL.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
import { PickersLocaleText } from './utils/pickersLocaleTextApi';
import { getPickersLocalization } from './utils/getPickersLocalization';
import { TimeViewWithMeridiem } from '../internals/models';
const views: Record<TimeViewWithMeridiem, string> = {
hours: 'שעות',
minutes: 'דקות',
seconds: 'שניות',
meridiem: 'מרידיאם',
};
const heILPickers: Partial<PickersLocaleText<any>> = {
// Calendar navigation
previousMonth: 'חודש קודם',
nextMonth: 'חודש הבא',
// View navigation
openPreviousView: 'תצוגה קודמת',
openNextView: 'תצוגה הבאה',
calendarViewSwitchingButtonAriaLabel: (view) =>
view === 'year'
? 'תצוגת שנה פתוחה, מעבר לתצוגת לוח שנה'
: 'תצוגת לוח שנה פתוחה, מעבר לתצוגת שנה',
// DateRange labels
start: 'תחילה',
end: 'סיום',
startDate: 'תאריך תחילה',
startTime: 'שעת תחילה',
endDate: 'תאריך סיום',
endTime: 'שעת סיום',
// Action bar
cancelButtonLabel: 'ביטול',
clearButtonLabel: 'ניקוי',
okButtonLabel: 'אישור',
todayButtonLabel: 'היום',
// Toolbar titles
datePickerToolbarTitle: 'בחירת תאריך',
dateTimePickerToolbarTitle: 'בחירת תאריך ושעה',
timePickerToolbarTitle: 'בחירת שעה',
dateRangePickerToolbarTitle: 'בחירת טווח תאריכים',
// Clock labels
clockLabelText: (view, time, utils, formattedTime) =>
`בחירת ${views[view]}. ${!formattedTime && (time === null || !utils.isValid(time)) ? 'לא נבחרה שעה' : `השעה הנבחרת היא ${formattedTime ?? utils.format(time, 'fullTime')}`}`,
hoursClockNumberText: (hours) => `${hours} שעות`,
minutesClockNumberText: (minutes) => `${minutes} דקות`,
secondsClockNumberText: (seconds) => `${seconds} שניות`,
// Digital clock labels
selectViewText: (view) => `בחירת ${views[view]}`,
// Calendar labels
calendarWeekNumberHeaderLabel: 'שבוע מספר',
calendarWeekNumberHeaderText: '#',
calendarWeekNumberAriaLabelText: (weekNumber) => `שבוע ${weekNumber}`,
calendarWeekNumberText: (weekNumber) => `${weekNumber}`,
// Open picker labels
openDatePickerDialogue: (value, utils, formattedDate) =>
formattedDate || (value !== null && utils.isValid(value))
? `בחירת תאריך, התאריך שנבחר הוא ${formattedDate ?? utils.format(value, 'fullDate')}`
: 'בחירת תאריך',
openTimePickerDialogue: (value, utils, formattedTime) =>
formattedTime || (value !== null && utils.isValid(value))
? `בחירת שעה, השעה שנבחרה היא ${formattedTime ?? utils.format(value, 'fullTime')}`
: 'בחירת שעה',
fieldClearLabel: 'נקה ערך',
// Table labels
timeTableLabel: 'בחירת שעה',
dateTableLabel: 'בחירת תאריך',
// Field section placeholders
fieldYearPlaceholder: (params) => 'Y'.repeat(params.digitAmount),
fieldMonthPlaceholder: (params) => (params.contentType === 'letter' ? 'MMMM' : 'MM'),
fieldDayPlaceholder: () => 'DD',
fieldWeekDayPlaceholder: (params) => (params.contentType === 'letter' ? 'EEEE' : 'EE'),
fieldHoursPlaceholder: () => 'hh',
fieldMinutesPlaceholder: () => 'mm',
fieldSecondsPlaceholder: () => 'ss',
fieldMeridiemPlaceholder: () => 'aa',
// View names
year: 'שנה',
month: 'חודש',
day: 'יום',
weekDay: 'יום בשבוע',
hours: 'שעות',
minutes: 'דקות',
seconds: 'שניות',
meridiem: 'יחידת זמן',
// Common
empty: 'ריק',
};
export const heIL = getPickersLocalization(heILPickers);