34 lines
958 B
TypeScript
34 lines
958 B
TypeScript
import type { Locale } from '../interface';
|
|
|
|
const locale: Locale = {
|
|
locale: 'he_IL',
|
|
today: '××××',
|
|
now: '×ĸ×׊××',
|
|
backToToday: '×××ר ×××××',
|
|
ok: '××׊×ר',
|
|
clear: '××פ×ץ',
|
|
month: '×××׊',
|
|
year: '×Š× ×',
|
|
timeSelect: '××ר ׊×ĸ×',
|
|
dateSelect: '××ר ×Ē×ר××',
|
|
weekSelect: '××ר ׊×××ĸ',
|
|
monthSelect: '××ר ×××׊',
|
|
yearSelect: '××ר ×Š× ×',
|
|
decadeSelect: '××ר ×ĸ׊×ר',
|
|
yearFormat: 'YYYY',
|
|
dateFormat: 'M/D/YYYY',
|
|
dayFormat: 'D',
|
|
dateTimeFormat: 'M/D/YYYY HH:mm:ss',
|
|
monthBeforeYear: true,
|
|
previousMonth: '×××׊ ק××× (PageUp)',
|
|
nextMonth: '×××׊ ××× (PageDown)',
|
|
previousYear: '×Š× × ×Š×ĸ××¨× (Control + left)',
|
|
nextYear: '×Š× × ×××× (Control + right)',
|
|
previousDecade: '××ĸ׊×ר ×ק×××',
|
|
nextDecade: '××ĸ׊×ר ×××',
|
|
previousCentury: '×××× ×ק××××Ē',
|
|
nextCentury: '×××× ××××',
|
|
};
|
|
|
|
export default locale;
|