UNPKG

@happyvibess/node-cleaner

Version:

đŸ§č Interactive CLI tool to find and clean node_modules directories and free up space

66 lines (63 loc) ‱ 1.99 kB
//! moment.js locale configuration //! locale : Albanian [sq] //! author : FlakĂ«rim Ismani : https://github.com/flakerimi //! author : Menelion ElensĂșle : https://github.com/Oire //! author : Oerd Cukalla : https://github.com/oerd import moment from '../moment'; export default moment.defineLocale('sq', { months: 'Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_NĂ«ntor_Dhjetor'.split( '_' ), monthsShort: 'Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_NĂ«n_Dhj'.split('_'), weekdays: 'E Diel_E HĂ«nĂ«_E MartĂ«_E MĂ«rkurĂ«_E Enjte_E Premte_E ShtunĂ«'.split( '_' ), weekdaysShort: 'Die_HĂ«n_Mar_MĂ«r_Enj_Pre_Sht'.split('_'), weekdaysMin: 'D_H_Ma_MĂ«_E_P_Sh'.split('_'), weekdaysParseExact: true, meridiemParse: /PD|MD/, isPM: function (input) { return input.charAt(0) === 'M'; }, meridiem: function (hours, minutes, isLower) { return hours < 12 ? 'PD' : 'MD'; }, longDateFormat: { LT: 'HH:mm', LTS: 'HH:mm:ss', L: 'DD/MM/YYYY', LL: 'D MMMM YYYY', LLL: 'D MMMM YYYY HH:mm', LLLL: 'dddd, D MMMM YYYY HH:mm', }, calendar: { sameDay: '[Sot nĂ«] LT', nextDay: '[NesĂ«r nĂ«] LT', nextWeek: 'dddd [nĂ«] LT', lastDay: '[Dje nĂ«] LT', lastWeek: 'dddd [e kaluar nĂ«] LT', sameElse: 'L', }, relativeTime: { future: 'nĂ« %s', past: '%s mĂ« parĂ«', s: 'disa sekonda', ss: '%d sekonda', m: 'njĂ« minutĂ«', mm: '%d minuta', h: 'njĂ« orĂ«', hh: '%d orĂ«', d: 'njĂ« ditĂ«', dd: '%d ditĂ«', M: 'njĂ« muaj', MM: '%d muaj', y: 'njĂ« vit', yy: '%d vite', }, dayOfMonthOrdinalParse: /\d{1,2}\./, ordinal: '%d.', week: { dow: 1, // Monday is the first day of the week. doy: 4, // The week that contains Jan 4th is the first week of the year. }, });