nb.js 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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:
  12. 'jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.'.split('_'),
  13. monthsParseExact: true,
  14. weekdays: 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'),
  15. weekdaysShort: 'sø._ma._ti._on._to._fr._lø.'.split('_'),
  16. weekdaysMin: 'sø_ma_ti_on_to_fr_lø'.split('_'),
  17. weekdaysParseExact: true,
  18. longDateFormat: {
  19. LT: 'HH:mm',
  20. LTS: 'HH:mm:ss',
  21. L: 'DD.MM.YYYY',
  22. LL: 'D. MMMM YYYY',
  23. LLL: 'D. MMMM YYYY [kl.] HH:mm',
  24. LLLL: 'dddd D. MMMM YYYY [kl.] HH:mm',
  25. },
  26. calendar: {
  27. sameDay: '[i dag kl.] LT',
  28. nextDay: '[i morgen kl.] LT',
  29. nextWeek: 'dddd [kl.] LT',
  30. lastDay: '[i går kl.] LT',
  31. lastWeek: '[forrige] dddd [kl.] LT',
  32. sameElse: 'L',
  33. },
  34. relativeTime: {
  35. future: 'om %s',
  36. past: '%s siden',
  37. s: 'noen sekunder',
  38. ss: '%d sekunder',
  39. m: 'ett minutt',
  40. mm: '%d minutter',
  41. h: 'en time',
  42. hh: '%d timer',
  43. d: 'en dag',
  44. dd: '%d dager',
  45. w: 'en uke',
  46. ww: '%d uker',
  47. M: 'en måned',
  48. MM: '%d måneder',
  49. y: 'ett år',
  50. yy: '%d år',
  51. },
  52. dayOfMonthOrdinalParse: /\d{1,2}\./,
  53. ordinal: '%d.',
  54. week: {
  55. dow: 1, // Monday is the first day of the week.
  56. doy: 4, // The week that contains Jan 4th is the first week of the year.
  57. },
  58. });