bs.js 765 B

123456789101112131415161718192021222324
  1. // Bosnian [bs]
  2. import dayjs from '../index';
  3. var locale = {
  4. name: 'bs',
  5. weekdays: 'nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota'.split('_'),
  6. months: 'januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar'.split('_'),
  7. weekStart: 1,
  8. weekdaysShort: 'ned._pon._uto._sri._čet._pet._sub.'.split('_'),
  9. monthsShort: 'jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.'.split('_'),
  10. weekdaysMin: 'ne_po_ut_sr_če_pe_su'.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. };
  23. dayjs.locale(locale, null, true);
  24. export default locale;