Node-Red configuration
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.

sl.js 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. // Slovenian [sl]
  2. import dayjs from '../index';
  3. var locale = {
  4. name: 'sl',
  5. weekdays: 'nedelja_ponedeljek_torek_sreda_četrtek_petek_sobota'.split('_'),
  6. months: 'januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december'.split('_'),
  7. weekStart: 1,
  8. weekdaysShort: 'ned._pon._tor._sre._čet._pet._sob.'.split('_'),
  9. monthsShort: 'jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.'.split('_'),
  10. weekdaysMin: 'ne_po_to_sr_če_pe_so'.split('_'),
  11. ordinal: function ordinal(n) {
  12. return n + ".";
  13. },
  14. formats: {
  15. LT: 'H:mm',
  16. LTS: 'H:mm:ss',
  17. L: 'DD.MM.YYYY',
  18. LL: 'D. MMMM YYYY',
  19. LLL: 'D. MMMM YYYY H:mm',
  20. LLLL: 'dddd, D. MMMM YYYY H:mm'
  21. },
  22. relativeTime: {
  23. future: 'čez %s',
  24. past: 'pred %s',
  25. s: 'nekaj sekund',
  26. m: 'minuta',
  27. mm: '%d minut',
  28. h: 'ura',
  29. hh: '%d ur',
  30. d: 'dan',
  31. dd: '%d dni',
  32. M: 'mesec',
  33. MM: '%d mesecev',
  34. y: 'leto',
  35. yy: '%d let'
  36. }
  37. };
  38. dayjs.locale(locale, null, true);
  39. export default locale;