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;
 |