LaravelTest
72 строки · 2.4 Кб
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
7;(function (global, factory) {8typeof exports === 'object' && typeof module !== 'undefined'9&& typeof require === 'function' ? factory(require('../moment')) :10typeof define === 'function' && define.amd ? define(['../moment'], factory) :11factory(global.moment)12}(this, (function (moment) { 'use strict';13
14//! moment.js locale configuration15
16var nb = moment.defineLocale('nb', {17months: 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split(18'_'19),20monthsShort: 'jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.'.split(21'_'22),23monthsParseExact: true,24weekdays: 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'),25weekdaysShort: 'sø._ma._ti._on._to._fr._lø.'.split('_'),26weekdaysMin: 'sø_ma_ti_on_to_fr_lø'.split('_'),27weekdaysParseExact: true,28longDateFormat: {29LT: 'HH:mm',30LTS: 'HH:mm:ss',31L: 'DD.MM.YYYY',32LL: 'D. MMMM YYYY',33LLL: 'D. MMMM YYYY [kl.] HH:mm',34LLLL: 'dddd D. MMMM YYYY [kl.] HH:mm',35},36calendar: {37sameDay: '[i dag kl.] LT',38nextDay: '[i morgen kl.] LT',39nextWeek: 'dddd [kl.] LT',40lastDay: '[i går kl.] LT',41lastWeek: '[forrige] dddd [kl.] LT',42sameElse: 'L',43},44relativeTime: {45future: 'om %s',46past: '%s siden',47s: 'noen sekunder',48ss: '%d sekunder',49m: 'ett minutt',50mm: '%d minutter',51h: 'en time',52hh: '%d timer',53d: 'en dag',54dd: '%d dager',55w: 'en uke',56ww: '%d uker',57M: 'en måned',58MM: '%d måneder',59y: 'ett år',60yy: '%d år',61},62dayOfMonthOrdinalParse: /\d{1,2}\./,63ordinal: '%d.',64week: {65dow: 1, // Monday is the first day of the week.66doy: 4, // The week that contains Jan 4th is the first week of the year.67},68});69
70return nb;71
72})));73