You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
830 B
33 lines
830 B
3 years ago
|
import type { Locale } from '../interface';
|
||
|
|
||
|
const locale: Locale = {
|
||
|
locale: 'en_GB',
|
||
7 years ago
|
today: 'Today',
|
||
|
now: 'Now',
|
||
|
backToToday: 'Back to today',
|
||
|
ok: 'Ok',
|
||
|
clear: 'Clear',
|
||
|
month: 'Month',
|
||
|
year: 'Year',
|
||
|
timeSelect: 'Select time',
|
||
|
dateSelect: 'Select date',
|
||
|
monthSelect: 'Choose a month',
|
||
|
yearSelect: 'Choose a year',
|
||
|
decadeSelect: 'Choose a decade',
|
||
|
yearFormat: 'YYYY',
|
||
|
dateFormat: 'D/M/YYYY',
|
||
|
dayFormat: 'D',
|
||
|
dateTimeFormat: 'D/M/YYYY HH:mm:ss',
|
||
|
monthBeforeYear: true,
|
||
|
previousMonth: 'Previous month (PageUp)',
|
||
|
nextMonth: 'Next month (PageDown)',
|
||
|
previousYear: 'Last year (Control + left)',
|
||
|
nextYear: 'Next year (Control + right)',
|
||
|
previousDecade: 'Last decade',
|
||
|
nextDecade: 'Next decade',
|
||
|
previousCentury: 'Last century',
|
||
|
nextCentury: 'Next century',
|
||
6 years ago
|
};
|
||
3 years ago
|
|
||
|
export default locale;
|