21 lines
		
	
	
		
			588 B
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			588 B
		
	
	
	
		
			TypeScript
		
	
	
| import CalendarLocale from '../../vc-picker/locale/el_GR';
 | |
| import TimePickerLocale from '../../time-picker/locale/el_GR';
 | |
| import type { PickerLocale } from '../generatePicker';
 | |
| 
 | |
| // Merge into a locale object
 | |
| const locale: PickerLocale = {
 | |
|   lang: {
 | |
|     placeholder: 'Επιλέξτε ημερομηνία',
 | |
|     rangePlaceholder: ['Αρχική ημερομηνία', 'Τελική ημερομηνία'],
 | |
|     ...CalendarLocale,
 | |
|   },
 | |
|   timePickerLocale: {
 | |
|     ...TimePickerLocale,
 | |
|   },
 | |
| };
 | |
| 
 | |
| // All settings at:
 | |
| // https://github.com/ant-design/ant-design/issues/424
 | |
| 
 | |
| export default locale;
 |