Ohm-Management - Projektarbeit B-ME
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.

mt.js 2.0KB

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