LaravelTest
71 строка · 2.3 Кб
1//! moment.js locale configuration
2//! locale : Nynorsk [nn]
3//! authors : https://github.com/mechuwind
4//! Stephen Ramthun : https://github.com/stephenramthun
5
6;(function (global, factory) {7typeof exports === 'object' && typeof module !== 'undefined'8&& typeof require === 'function' ? factory(require('../moment')) :9typeof define === 'function' && define.amd ? define(['../moment'], factory) :10factory(global.moment)11}(this, (function (moment) { 'use strict';12
13//! moment.js locale configuration14
15var nn = moment.defineLocale('nn', {16months: 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split(17'_'18),19monthsShort: 'jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.'.split(20'_'21),22monthsParseExact: true,23weekdays: 'sundag_måndag_tysdag_onsdag_torsdag_fredag_laurdag'.split('_'),24weekdaysShort: 'su._må._ty._on._to._fr._lau.'.split('_'),25weekdaysMin: 'su_må_ty_on_to_fr_la'.split('_'),26weekdaysParseExact: true,27longDateFormat: {28LT: 'HH:mm',29LTS: 'HH:mm:ss',30L: 'DD.MM.YYYY',31LL: 'D. MMMM YYYY',32LLL: 'D. MMMM YYYY [kl.] H:mm',33LLLL: 'dddd D. MMMM YYYY [kl.] HH:mm',34},35calendar: {36sameDay: '[I dag klokka] LT',37nextDay: '[I morgon klokka] LT',38nextWeek: 'dddd [klokka] LT',39lastDay: '[I går klokka] LT',40lastWeek: '[Føregåande] dddd [klokka] LT',41sameElse: 'L',42},43relativeTime: {44future: 'om %s',45past: '%s sidan',46s: 'nokre sekund',47ss: '%d sekund',48m: 'eit minutt',49mm: '%d minutt',50h: 'ein time',51hh: '%d timar',52d: 'ein dag',53dd: '%d dagar',54w: 'ei veke',55ww: '%d veker',56M: 'ein månad',57MM: '%d månader',58y: 'eit år',59yy: '%d år',60},61dayOfMonthOrdinalParse: /\d{1,2}\./,62ordinal: '%d.',63week: {64dow: 1, // Monday is the first day of the week.65doy: 4, // The week that contains Jan 4th is the first week of the year.66},67});68
69return nn;70
71})));72