Localisation updates from https://translatewiki.net.
[mediawiki.git] / resources / lib / moment / locale / se.js
blob65e2f12dfa544d105dc94c1cd6a0c379a4834c20
1 //! moment.js locale configuration
2 //! locale : Northern Sami [se]
3 //! authors : Bård Rolstad Henriksen : https://github.com/karamell
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';
12     //! moment.js locale configuration
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             '_'
17         ),
18         monthsShort: 'ođđj_guov_njuk_cuo_mies_geas_suoi_borg_čakč_golg_skáb_juov'.split(
19             '_'
20         ),
21         weekdays: 'sotnabeaivi_vuossárga_maŋŋebárga_gaskavahkku_duorastat_bearjadat_lávvardat'.split(
22             '_'
23         ),
24         weekdaysShort: 'sotn_vuos_maŋ_gask_duor_bear_láv'.split('_'),
25         weekdaysMin: 's_v_m_g_d_b_L'.split('_'),
26         longDateFormat: {
27             LT: 'HH:mm',
28             LTS: 'HH:mm:ss',
29             L: 'DD.MM.YYYY',
30             LL: 'MMMM D. [b.] YYYY',
31             LLL: 'MMMM D. [b.] YYYY [ti.] HH:mm',
32             LLLL: 'dddd, MMMM D. [b.] YYYY [ti.] HH:mm',
33         },
34         calendar: {
35             sameDay: '[otne ti] LT',
36             nextDay: '[ihttin ti] LT',
37             nextWeek: 'dddd [ti] LT',
38             lastDay: '[ikte ti] LT',
39             lastWeek: '[ovddit] dddd [ti] LT',
40             sameElse: 'L',
41         },
42         relativeTime: {
43             future: '%s geažes',
44             past: 'maŋit %s',
45             s: 'moadde sekunddat',
46             ss: '%d sekunddat',
47             m: 'okta minuhta',
48             mm: '%d minuhtat',
49             h: 'okta diimmu',
50             hh: '%d diimmut',
51             d: 'okta beaivi',
52             dd: '%d beaivvit',
53             M: 'okta mánnu',
54             MM: '%d mánut',
55             y: 'okta jahki',
56             yy: '%d jagit',
57         },
58         dayOfMonthOrdinalParse: /\d{1,2}\./,
59         ordinal: '%d.',
60         week: {
61             dow: 1, // Monday is the first day of the week.
62             doy: 4, // The week that contains Jan 4th is the first week of the year.
63         },
64     });
66     return se;
68 })));