hu.js 3.7 KB

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