LaravelTest
76 строк · 2.5 Кб
1//! moment.js locale configuration
2//! locale : Albanian [sq]
3//! author : Flakërim Ismani : https://github.com/flakerimi
4//! author : Menelion Elensúle : https://github.com/Oire
5//! author : Oerd Cukalla : https://github.com/oerd
6
7;(function (global, factory) {8typeof exports === 'object' && typeof module !== 'undefined'9&& typeof require === 'function' ? factory(require('../moment')) :10typeof define === 'function' && define.amd ? define(['../moment'], factory) :11factory(global.moment)12}(this, (function (moment) { 'use strict';13
14//! moment.js locale configuration15
16var sq = moment.defineLocale('sq', {17months: 'Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_Nëntor_Dhjetor'.split(18'_'19),20monthsShort: 'Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_Nën_Dhj'.split('_'),21weekdays: 'E Diel_E Hënë_E Martë_E Mërkurë_E Enjte_E Premte_E Shtunë'.split(22'_'23),24weekdaysShort: 'Die_Hën_Mar_Mër_Enj_Pre_Sht'.split('_'),25weekdaysMin: 'D_H_Ma_Më_E_P_Sh'.split('_'),26weekdaysParseExact: true,27meridiemParse: /PD|MD/,28isPM: function (input) {29return input.charAt(0) === 'M';30},31meridiem: function (hours, minutes, isLower) {32return hours < 12 ? 'PD' : 'MD';33},34longDateFormat: {35LT: 'HH:mm',36LTS: 'HH:mm:ss',37L: 'DD/MM/YYYY',38LL: 'D MMMM YYYY',39LLL: 'D MMMM YYYY HH:mm',40LLLL: 'dddd, D MMMM YYYY HH:mm',41},42calendar: {43sameDay: '[Sot në] LT',44nextDay: '[Nesër në] LT',45nextWeek: 'dddd [në] LT',46lastDay: '[Dje në] LT',47lastWeek: 'dddd [e kaluar në] LT',48sameElse: 'L',49},50relativeTime: {51future: 'në %s',52past: '%s më parë',53s: 'disa sekonda',54ss: '%d sekonda',55m: 'një minutë',56mm: '%d minuta',57h: 'një orë',58hh: '%d orë',59d: 'një ditë',60dd: '%d ditë',61M: 'një muaj',62MM: '%d muaj',63y: 'një vit',64yy: '%d vite',65},66dayOfMonthOrdinalParse: /\d{1,2}\./,67ordinal: '%d.',68week: {69dow: 1, // Monday is the first day of the week.70doy: 4, // The week that contains Jan 4th is the first week of the year.71},72});73
74return sq;75
76})));77