Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

hu.js 4.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. //! moment.js locale configuration
  2. //! locale : Hungarian [hu]
  3. //! author : Adam Brunner : https://github.com/adambrunner
  4. //! author : Peter Viszt : https://github.com/passatgt
  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';
  11. //! moment.js locale configuration
  12. var weekEndings = 'vasárnap hétfőn kedden szerdán csütörtökön pénteken szombaton'.split(
  13. ' '
  14. );
  15. function translate(number, withoutSuffix, key, isFuture) {
  16. var num = number;
  17. switch (key) {
  18. case 's':
  19. return isFuture || withoutSuffix
  20. ? 'néhány másodperc'
  21. : 'néhány másodperce';
  22. case 'ss':
  23. return num + (isFuture || withoutSuffix)
  24. ? ' másodperc'
  25. : ' másodperce';
  26. case 'm':
  27. return 'egy' + (isFuture || withoutSuffix ? ' perc' : ' perce');
  28. case 'mm':
  29. return num + (isFuture || withoutSuffix ? ' perc' : ' perce');
  30. case 'h':
  31. return 'egy' + (isFuture || withoutSuffix ? ' óra' : ' órája');
  32. case 'hh':
  33. return num + (isFuture || withoutSuffix ? ' óra' : ' órája');
  34. case 'd':
  35. return 'egy' + (isFuture || withoutSuffix ? ' nap' : ' napja');
  36. case 'dd':
  37. return num + (isFuture || withoutSuffix ? ' nap' : ' napja');
  38. case 'M':
  39. return 'egy' + (isFuture || withoutSuffix ? ' hónap' : ' hónapja');
  40. case 'MM':
  41. return num + (isFuture || withoutSuffix ? ' hónap' : ' hónapja');
  42. case 'y':
  43. return 'egy' + (isFuture || withoutSuffix ? ' év' : ' éve');
  44. case 'yy':
  45. return num + (isFuture || withoutSuffix ? ' év' : ' éve');
  46. }
  47. return '';
  48. }
  49. function week(isFuture) {
  50. return (
  51. (isFuture ? '' : '[múlt] ') +
  52. '[' +
  53. weekEndings[this.day()] +
  54. '] LT[-kor]'
  55. );
  56. }
  57. var hu = moment.defineLocale('hu', {
  58. months: 'január_február_március_április_május_június_július_augusztus_szeptember_október_november_december'.split(
  59. '_'
  60. ),
  61. monthsShort: 'jan._feb._márc._ápr._máj._jún._júl._aug._szept._okt._nov._dec.'.split(
  62. '_'
  63. ),
  64. monthsParseExact: true,
  65. weekdays: 'vasárnap_hétfő_kedd_szerda_csütörtök_péntek_szombat'.split('_'),
  66. weekdaysShort: 'vas_hét_kedd_sze_csüt_pén_szo'.split('_'),
  67. weekdaysMin: 'v_h_k_sze_cs_p_szo'.split('_'),
  68. longDateFormat: {
  69. LT: 'H:mm',
  70. LTS: 'H:mm:ss',
  71. L: 'YYYY.MM.DD.',
  72. LL: 'YYYY. MMMM D.',
  73. LLL: 'YYYY. MMMM D. H:mm',
  74. LLLL: 'YYYY. MMMM D., dddd H:mm',
  75. },
  76. meridiemParse: /de|du/i,
  77. isPM: function (input) {
  78. return input.charAt(1).toLowerCase() === 'u';
  79. },
  80. meridiem: function (hours, minutes, isLower) {
  81. if (hours < 12) {
  82. return isLower === true ? 'de' : 'DE';
  83. } else {
  84. return isLower === true ? 'du' : 'DU';
  85. }
  86. },
  87. calendar: {
  88. sameDay: '[ma] LT[-kor]',
  89. nextDay: '[holnap] LT[-kor]',
  90. nextWeek: function () {
  91. return week.call(this, true);
  92. },
  93. lastDay: '[tegnap] LT[-kor]',
  94. lastWeek: function () {
  95. return week.call(this, false);
  96. },
  97. sameElse: 'L',
  98. },
  99. relativeTime: {
  100. future: '%s múlva',
  101. past: '%s',
  102. s: translate,
  103. ss: translate,
  104. m: translate,
  105. mm: translate,
  106. h: translate,
  107. hh: translate,
  108. d: translate,
  109. dd: translate,
  110. M: translate,
  111. MM: translate,
  112. y: translate,
  113. yy: translate,
  114. },
  115. dayOfMonthOrdinalParse: /\d{1,2}\./,
  116. ordinal: '%d.',
  117. week: {
  118. dow: 1, // Monday is the first day of the week.
  119. doy: 4, // The week that contains Jan 4th is the first week of the year.
  120. },
  121. });
  122. return hu;
  123. })));