Merge "Add support for PHP7 random_bytes in favor of mcrypt_create_iv"
[lhc/web/wiklou.git] / resources / lib / moment / locale / se.js
1 //! moment.js locale configuration
2 //! locale : Northern Sami [se]
3 //! authors : Bård Rolstad Henriksen : https://github.com/karamell
4
5 ;(function (global, factory) {
6 typeof exports === 'object' && typeof module !== 'undefined'
7 && typeof require === 'function' ? factory(require('../moment')) :
8 typeof define === 'function' && define.amd ? define(['../moment'], factory) :
9 factory(global.moment)
10 }(this, function (moment) { 'use strict';
11
12
13
14 var se = moment.defineLocale('se', {
15 months : 'ođđajagemánnu_guovvamánnu_njukčamánnu_cuoŋománnu_miessemánnu_geassemánnu_suoidnemánnu_borgemánnu_čakčamánnu_golggotmánnu_skábmamánnu_juovlamánnu'.split('_'),
16 monthsShort : 'ođđj_guov_njuk_cuo_mies_geas_suoi_borg_čakč_golg_skáb_juov'.split('_'),
17 weekdays : 'sotnabeaivi_vuossárga_maŋŋebárga_gaskavahkku_duorastat_bearjadat_lávvardat'.split('_'),
18 weekdaysShort : 'sotn_vuos_maŋ_gask_duor_bear_láv'.split('_'),
19 weekdaysMin : 's_v_m_g_d_b_L'.split('_'),
20 longDateFormat : {
21 LT : 'HH:mm',
22 LTS : 'HH:mm:ss',
23 L : 'DD.MM.YYYY',
24 LL : 'MMMM D. [b.] YYYY',
25 LLL : 'MMMM D. [b.] YYYY [ti.] HH:mm',
26 LLLL : 'dddd, MMMM D. [b.] YYYY [ti.] HH:mm'
27 },
28 calendar : {
29 sameDay: '[otne ti] LT',
30 nextDay: '[ihttin ti] LT',
31 nextWeek: 'dddd [ti] LT',
32 lastDay: '[ikte ti] LT',
33 lastWeek: '[ovddit] dddd [ti] LT',
34 sameElse: 'L'
35 },
36 relativeTime : {
37 future : '%s geažes',
38 past : 'maŋit %s',
39 s : 'moadde sekunddat',
40 m : 'okta minuhta',
41 mm : '%d minuhtat',
42 h : 'okta diimmu',
43 hh : '%d diimmut',
44 d : 'okta beaivi',
45 dd : '%d beaivvit',
46 M : 'okta mánnu',
47 MM : '%d mánut',
48 y : 'okta jahki',
49 yy : '%d jagit'
50 },
51 ordinalParse: /\d{1,2}\./,
52 ordinal : '%d.',
53 week : {
54 dow : 1, // Monday is the first day of the week.
55 doy : 4 // The week that contains Jan 4th is the first week of the year.
56 }
57 });
58
59 return se;
60
61 }));