cscg24-guacamole

CSCG 2024 Challenge 'Guacamole Mashup'
git clone https://git.sinitax.com/sinitax/cscg24-guacamole
Log | Files | Refs | sfeed.txt

se.js (2397B)


      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    //! moment.js locale configuration
     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            '_'
     17        ),
     18        monthsShort:
     19            'ođđj_guov_njuk_cuo_mies_geas_suoi_borg_čakč_golg_skáb_juov'.split('_'),
     20        weekdays:
     21            '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    });
     65
     66    return se;
     67
     68})));