Localisation updates from https://translatewiki.net.
[mediawiki.git] / resources / lib / moment / locale / mt.js
blob5a61655c4e41534f3f0725e2d65e310dc9a41b57
1 //! moment.js locale configuration
2 //! locale : Maltese (Malta) [mt]
3 //! author : Alessandro Maruccia : https://github.com/alesma
5 ;(function (global, factory) {
6    typeof exports === 'object' && typeof module !== 'undefined'
7        && typeof require === 'function' ? factory(require('../moment')) :
8    typeof define === 'function' && define.amd ? define(['../moment'], factory) :
9    factory(global.moment)
10 }(this, (function (moment) { 'use strict';
12     //! moment.js locale configuration
14     var mt = moment.defineLocale('mt', {
15         months: 'Jannar_Frar_Marzu_April_Mejju_Ġunju_Lulju_Awwissu_Settembru_Ottubru_Novembru_Diċembru'.split(
16             '_'
17         ),
18         monthsShort: 'Jan_Fra_Mar_Apr_Mej_Ġun_Lul_Aww_Set_Ott_Nov_Diċ'.split('_'),
19         weekdays: 'Il-Ħadd_It-Tnejn_It-Tlieta_L-Erbgħa_Il-Ħamis_Il-Ġimgħa_Is-Sibt'.split(
20             '_'
21         ),
22         weekdaysShort: 'Ħad_Tne_Tli_Erb_Ħam_Ġim_Sib'.split('_'),
23         weekdaysMin: 'Ħa_Tn_Tl_Er_Ħa_Ġi_Si'.split('_'),
24         longDateFormat: {
25             LT: 'HH:mm',
26             LTS: 'HH:mm:ss',
27             L: 'DD/MM/YYYY',
28             LL: 'D MMMM YYYY',
29             LLL: 'D MMMM YYYY HH:mm',
30             LLLL: 'dddd, D MMMM YYYY HH:mm',
31         },
32         calendar: {
33             sameDay: '[Illum fil-]LT',
34             nextDay: '[Għada fil-]LT',
35             nextWeek: 'dddd [fil-]LT',
36             lastDay: '[Il-bieraħ fil-]LT',
37             lastWeek: 'dddd [li għadda] [fil-]LT',
38             sameElse: 'L',
39         },
40         relativeTime: {
41             future: 'f’ %s',
42             past: '%s ilu',
43             s: 'ftit sekondi',
44             ss: '%d sekondi',
45             m: 'minuta',
46             mm: '%d minuti',
47             h: 'siegħa',
48             hh: '%d siegħat',
49             d: 'ġurnata',
50             dd: '%d ġranet',
51             M: 'xahar',
52             MM: '%d xhur',
53             y: 'sena',
54             yy: '%d sni',
55         },
56         dayOfMonthOrdinalParse: /\d{1,2}º/,
57         ordinal: '%dº',
58         week: {
59             dow: 1, // Monday is the first day of the week.
60             doy: 4, // The week that contains Jan 4th is the first week of the year.
61         },
62     });
64     return mt;
66 })));