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