corrade-nucleus-nucleons – Blame information for rev 10

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