hu.js 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. // Hungarian [hu]
  2. import dayjs from '../index';
  3. var locale = {
  4. name: 'hu',
  5. weekdays: 'vasárnap_hétfő_kedd_szerda_csütörtök_péntek_szombat'.split('_'),
  6. weekdaysShort: 'vas_hét_kedd_sze_csüt_pén_szo'.split('_'),
  7. weekdaysMin: 'v_h_k_sze_cs_p_szo'.split('_'),
  8. months: 'január_február_március_április_május_június_július_augusztus_szeptember_október_november_december'.split('_'),
  9. monthsShort: 'jan_feb_márc_ápr_máj_jún_júl_aug_szept_okt_nov_dec'.split('_'),
  10. ordinal: function ordinal(n) {
  11. return n + ".";
  12. },
  13. weekStart: 1,
  14. relativeTime: {
  15. future: '%s múlva',
  16. past: '%s',
  17. s: function s(_, _s, ___, isFuture) {
  18. return "n\xE9h\xE1ny m\xE1sodperc" + (isFuture || _s ? '' : 'e');
  19. },
  20. m: function m(_, s, ___, isFuture) {
  21. return "egy perc" + (isFuture || s ? '' : 'e');
  22. },
  23. mm: function mm(n, s, ___, isFuture) {
  24. return n + " perc" + (isFuture || s ? '' : 'e');
  25. },
  26. h: function h(_, s, ___, isFuture) {
  27. return "egy " + (isFuture || s ? 'óra' : 'órája');
  28. },
  29. hh: function hh(n, s, ___, isFuture) {
  30. return n + " " + (isFuture || s ? 'óra' : 'órája');
  31. },
  32. d: function d(_, s, ___, isFuture) {
  33. return "egy " + (isFuture || s ? 'nap' : 'napja');
  34. },
  35. dd: function dd(n, s, ___, isFuture) {
  36. return n + " " + (isFuture || s ? 'nap' : 'napja');
  37. },
  38. M: function M(_, s, ___, isFuture) {
  39. return "egy " + (isFuture || s ? 'hónap' : 'hónapja');
  40. },
  41. MM: function MM(n, s, ___, isFuture) {
  42. return n + " " + (isFuture || s ? 'hónap' : 'hónapja');
  43. },
  44. y: function y(_, s, ___, isFuture) {
  45. return "egy " + (isFuture || s ? 'év' : 'éve');
  46. },
  47. yy: function yy(n, s, ___, isFuture) {
  48. return n + " " + (isFuture || s ? 'év' : 'éve');
  49. }
  50. },
  51. formats: {
  52. LT: 'H:mm',
  53. LTS: 'H:mm:ss',
  54. L: 'YYYY.MM.DD.',
  55. LL: 'YYYY. MMMM D.',
  56. LLL: 'YYYY. MMMM D. H:mm',
  57. LLLL: 'YYYY. MMMM D., dddd H:mm'
  58. }
  59. };
  60. dayjs.locale(locale, null, true);
  61. export default locale;