summaryrefslogtreecommitdiff
path: root/www/wiki/resources/src/moment-dmy.js
blob: 2b7ca1618363820ccb82a9978f33009f0934f51a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Use DMY date format for Moment.js, in accordance with MediaWiki's date formatting routines.
// This affects English only (and languages without localisations, that fall back to English).
// http://momentjs.com/docs/#/customization/long-date-formats/
/* global moment */
moment.updateLocale( 'en', {
	longDateFormat: {
		// Unchanged, but have to be repeated here:
		LT: 'h:mm A',
		LTS: 'h:mm:ss A',
		// Customized:
		L: 'DD/MM/YYYY',
		LL: 'D MMMM YYYY',
		LLL: 'D MMMM YYYY LT',
		LLLL: 'dddd, D MMMM YYYY LT'
	}
} );