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.

sq.js 2.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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 sq = moment.defineLocale('sq', {
  9. months : 'Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_Nëntor_Dhjetor'.split('_'),
  10. monthsShort : 'Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_Nën_Dhj'.split('_'),
  11. weekdays : 'E Diel_E Hënë_E Martë_E Mërkurë_E Enjte_E Premte_E Shtunë'.split('_'),
  12. weekdaysShort : 'Die_Hën_Mar_Mër_Enj_Pre_Sht'.split('_'),
  13. weekdaysMin : 'D_H_Ma_Më_E_P_Sh'.split('_'),
  14. weekdaysParseExact : true,
  15. meridiemParse: /PD|MD/,
  16. isPM: function (input) {
  17. return input.charAt(0) === 'M';
  18. },
  19. meridiem : function (hours, minutes, isLower) {
  20. return hours < 12 ? 'PD' : 'MD';
  21. },
  22. longDateFormat : {
  23. LT : 'HH:mm',
  24. LTS : 'HH:mm:ss',
  25. L : 'DD/MM/YYYY',
  26. LL : 'D MMMM YYYY',
  27. LLL : 'D MMMM YYYY HH:mm',
  28. LLLL : 'dddd, D MMMM YYYY HH:mm'
  29. },
  30. calendar : {
  31. sameDay : '[Sot në] LT',
  32. nextDay : '[Nesër në] LT',
  33. nextWeek : 'dddd [në] LT',
  34. lastDay : '[Dje në] LT',
  35. lastWeek : 'dddd [e kaluar në] LT',
  36. sameElse : 'L'
  37. },
  38. relativeTime : {
  39. future : 'në %s',
  40. past : '%s më parë',
  41. s : 'disa sekonda',
  42. ss : '%d sekonda',
  43. m : 'një minutë',
  44. mm : '%d minuta',
  45. h : 'një orë',
  46. hh : '%d orë',
  47. d : 'një ditë',
  48. dd : '%d ditë',
  49. M : 'një muaj',
  50. MM : '%d muaj',
  51. y : 'një vit',
  52. yy : '%d vite'
  53. },
  54. dayOfMonthOrdinalParse: /\d{1,2}\./,
  55. ordinal : '%d.',
  56. week : {
  57. dow : 1, // Monday is the first day of the week.
  58. doy : 4 // The week that contains Jan 4th is the first week of the year.
  59. }
  60. });
  61. return sq;
  62. })));