hr.js 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. // Croatian [hr]
  2. import dayjs from '../index';
  3. var monthFormat = 'siječnja_veljače_ožujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca'.split('_');
  4. var monthStandalone = 'siječanj_veljača_ožujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac'.split('_');
  5. var MONTHS_IN_FORMAT = /D[oD]?(\[[^[\]]*\]|\s)+MMMM?/;
  6. var months = function months(dayjsInstance, format) {
  7. if (MONTHS_IN_FORMAT.test(format)) {
  8. return monthFormat[dayjsInstance.month()];
  9. }
  10. return monthStandalone[dayjsInstance.month()];
  11. };
  12. months.s = monthStandalone;
  13. months.f = monthFormat;
  14. var locale = {
  15. name: 'hr',
  16. weekdays: 'nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota'.split('_'),
  17. weekdaysShort: 'ned._pon._uto._sri._čet._pet._sub.'.split('_'),
  18. weekdaysMin: 'ne_po_ut_sr_če_pe_su'.split('_'),
  19. months: months,
  20. monthsShort: 'sij._velj._ožu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.'.split('_'),
  21. weekStart: 1,
  22. formats: {
  23. LT: 'H:mm',
  24. LTS: 'H:mm:ss',
  25. L: 'DD.MM.YYYY',
  26. LL: 'D. MMMM YYYY',
  27. LLL: 'D. MMMM YYYY H:mm',
  28. LLLL: 'dddd, D. MMMM YYYY H:mm'
  29. },
  30. relativeTime: {
  31. future: 'za %s',
  32. past: 'prije %s',
  33. s: 'sekunda',
  34. m: 'minuta',
  35. mm: '%d minuta',
  36. h: 'sat',
  37. hh: '%d sati',
  38. d: 'dan',
  39. dd: '%d dana',
  40. M: 'mjesec',
  41. MM: '%d mjeseci',
  42. y: 'godina',
  43. yy: '%d godine'
  44. },
  45. ordinal: function ordinal(n) {
  46. return n + ".";
  47. }
  48. };
  49. dayjs.locale(locale, null, true);
  50. export default locale;