hu.js 4.4 KB

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