nb.js 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. //! moment.js locale configuration
  2. //! locale : Norwegian Bokmål [nb]
  3. //! authors : Espen Hovlandsdal : https://github.com/rexxars
  4. //! Sigurd Gartmann : https://github.com/sigurdga
  5. //! Stephen Ramthun : https://github.com/stephenramthun
  6. import moment from '../moment';
  7. export default moment.defineLocale('nb', {
  8. months: 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split(
  9. '_'
  10. ),
  11. monthsShort: 'jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.'.split(
  12. '_'
  13. ),
  14. monthsParseExact: true,
  15. weekdays: 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'),
  16. weekdaysShort: 'sø._ma._ti._on._to._fr._lø.'.split('_'),
  17. weekdaysMin: 'sø_ma_ti_on_to_fr_lø'.split('_'),
  18. weekdaysParseExact: true,
  19. longDateFormat: {
  20. LT: 'HH:mm',
  21. LTS: 'HH:mm:ss',
  22. L: 'DD.MM.YYYY',
  23. LL: 'D. MMMM YYYY',
  24. LLL: 'D. MMMM YYYY [kl.] HH:mm',
  25. LLLL: 'dddd D. MMMM YYYY [kl.] HH:mm',
  26. },
  27. calendar: {
  28. sameDay: '[i dag kl.] LT',
  29. nextDay: '[i morgen kl.] LT',
  30. nextWeek: 'dddd [kl.] LT',
  31. lastDay: '[i går kl.] LT',
  32. lastWeek: '[forrige] dddd [kl.] LT',
  33. sameElse: 'L',
  34. },
  35. relativeTime: {
  36. future: 'om %s',
  37. past: '%s siden',
  38. s: 'noen sekunder',
  39. ss: '%d sekunder',
  40. m: 'ett minutt',
  41. mm: '%d minutter',
  42. h: 'en time',
  43. hh: '%d timer',
  44. d: 'en dag',
  45. dd: '%d dager',
  46. w: 'en uke',
  47. ww: '%d uker',
  48. M: 'en måned',
  49. MM: '%d måneder',
  50. y: 'ett år',
  51. yy: '%d år',
  52. },
  53. dayOfMonthOrdinalParse: /\d{1,2}\./,
  54. ordinal: '%d.',
  55. week: {
  56. dow: 1, // Monday is the first day of the week.
  57. doy: 4, // The week that contains Jan 4th is the first week of the year.
  58. },
  59. });