LaravelTest
68 строк · 2.3 Кб
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) {6typeof exports === 'object' && typeof module !== 'undefined'7&& typeof require === 'function' ? factory(require('../moment')) :8typeof define === 'function' && define.amd ? define(['../moment'], factory) :9factory(global.moment)10}(this, (function (moment) { 'use strict';11
12//! moment.js locale configuration13
14var se = moment.defineLocale('se', {15months: '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),18monthsShort: 'ođđj_guov_njuk_cuo_mies_geas_suoi_borg_čakč_golg_skáb_juov'.split(19'_'20),21weekdays: 'sotnabeaivi_vuossárga_maŋŋebárga_gaskavahkku_duorastat_bearjadat_lávvardat'.split(22'_'23),24weekdaysShort: 'sotn_vuos_maŋ_gask_duor_bear_láv'.split('_'),25weekdaysMin: 's_v_m_g_d_b_L'.split('_'),26longDateFormat: {27LT: 'HH:mm',28LTS: 'HH:mm:ss',29L: 'DD.MM.YYYY',30LL: 'MMMM D. [b.] YYYY',31LLL: 'MMMM D. [b.] YYYY [ti.] HH:mm',32LLLL: 'dddd, MMMM D. [b.] YYYY [ti.] HH:mm',33},34calendar: {35sameDay: '[otne ti] LT',36nextDay: '[ihttin ti] LT',37nextWeek: 'dddd [ti] LT',38lastDay: '[ikte ti] LT',39lastWeek: '[ovddit] dddd [ti] LT',40sameElse: 'L',41},42relativeTime: {43future: '%s geažes',44past: 'maŋit %s',45s: 'moadde sekunddat',46ss: '%d sekunddat',47m: 'okta minuhta',48mm: '%d minuhtat',49h: 'okta diimmu',50hh: '%d diimmut',51d: 'okta beaivi',52dd: '%d beaivvit',53M: 'okta mánnu',54MM: '%d mánut',55y: 'okta jahki',56yy: '%d jagit',57},58dayOfMonthOrdinalParse: /\d{1,2}\./,59ordinal: '%d.',60week: {61dow: 1, // Monday is the first day of the week.62doy: 4, // The week that contains Jan 4th is the first week of the year.63},64});65
66return se;67
68})));69