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.

tzl.js 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. // After the year there should be a slash and the amount of years since December 26, 1979 in Roman numerals.
  9. // This is currently too difficult (maybe even impossible) to add.
  10. var tzl = moment.defineLocale('tzl', {
  11. months : 'Januar_Fevraglh_Març_Avrïu_Mai_Gün_Julia_Guscht_Setemvar_Listopäts_Noemvar_Zecemvar'.split('_'),
  12. monthsShort : 'Jan_Fev_Mar_Avr_Mai_Gün_Jul_Gus_Set_Lis_Noe_Zec'.split('_'),
  13. weekdays : 'Súladi_Lúneçi_Maitzi_Márcuri_Xhúadi_Viénerçi_Sáturi'.split('_'),
  14. weekdaysShort : 'Súl_Lún_Mai_Már_Xhú_Vié_Sát'.split('_'),
  15. weekdaysMin : 'Sú_Lú_Ma_Má_Xh_Vi_Sá'.split('_'),
  16. longDateFormat : {
  17. LT : 'HH.mm',
  18. LTS : 'HH.mm.ss',
  19. L : 'DD.MM.YYYY',
  20. LL : 'D. MMMM [dallas] YYYY',
  21. LLL : 'D. MMMM [dallas] YYYY HH.mm',
  22. LLLL : 'dddd, [li] D. MMMM [dallas] YYYY HH.mm'
  23. },
  24. meridiemParse: /d\'o|d\'a/i,
  25. isPM : function (input) {
  26. return 'd\'o' === input.toLowerCase();
  27. },
  28. meridiem : function (hours, minutes, isLower) {
  29. if (hours > 11) {
  30. return isLower ? 'd\'o' : 'D\'O';
  31. } else {
  32. return isLower ? 'd\'a' : 'D\'A';
  33. }
  34. },
  35. calendar : {
  36. sameDay : '[oxhi à] LT',
  37. nextDay : '[demà à] LT',
  38. nextWeek : 'dddd [à] LT',
  39. lastDay : '[ieiri à] LT',
  40. lastWeek : '[sür el] dddd [lasteu à] LT',
  41. sameElse : 'L'
  42. },
  43. relativeTime : {
  44. future : 'osprei %s',
  45. past : 'ja%s',
  46. s : processRelativeTime,
  47. ss : processRelativeTime,
  48. m : processRelativeTime,
  49. mm : processRelativeTime,
  50. h : processRelativeTime,
  51. hh : processRelativeTime,
  52. d : processRelativeTime,
  53. dd : processRelativeTime,
  54. M : processRelativeTime,
  55. MM : processRelativeTime,
  56. y : processRelativeTime,
  57. yy : processRelativeTime
  58. },
  59. dayOfMonthOrdinalParse: /\d{1,2}\./,
  60. ordinal : '%d.',
  61. week : {
  62. dow : 1, // Monday is the first day of the week.
  63. doy : 4 // The week that contains Jan 4th is the first week of the year.
  64. }
  65. });
  66. function processRelativeTime(number, withoutSuffix, key, isFuture) {
  67. var format = {
  68. 's': ['viensas secunds', '\'iensas secunds'],
  69. 'ss': [number + ' secunds', '' + number + ' secunds'],
  70. 'm': ['\'n míut', '\'iens míut'],
  71. 'mm': [number + ' míuts', '' + number + ' míuts'],
  72. 'h': ['\'n þora', '\'iensa þora'],
  73. 'hh': [number + ' þoras', '' + number + ' þoras'],
  74. 'd': ['\'n ziua', '\'iensa ziua'],
  75. 'dd': [number + ' ziuas', '' + number + ' ziuas'],
  76. 'M': ['\'n mes', '\'iens mes'],
  77. 'MM': [number + ' mesen', '' + number + ' mesen'],
  78. 'y': ['\'n ar', '\'iens ar'],
  79. 'yy': [number + ' ars', '' + number + ' ars']
  80. };
  81. return isFuture ? format[key][0] : (withoutSuffix ? format[key][0] : format[key][1]);
  82. }
  83. return tzl;
  84. })));