| //! moment.js locale configuration
//! locale : Sinhalese [si]
//! author : Sampath Sitinamaluwa : https://github.com/sampathsris
;(function (global, factory) {
   typeof exports === 'object' && typeof module !== 'undefined'
       && typeof require === 'function' ? factory(require('../moment')) :
   typeof define === 'function' && define.amd ? define(['../moment'], factory) :
   factory(global.moment)
}(this, (function (moment) { 'use strict';
/*jshint -W100*/
var si = moment.defineLocale('si', {
    months : '??????_????????_??????_????????_????_????_????_???????_???????????_????????_?????????_?????????'.split('_'),
    monthsShort : '??_???_????_???_????_????_????_???_????_???_????_????'.split('_'),
    weekdays : '?????_?????_?????????_?????_??????????????_????????_?????????'.split('_'),
    weekdaysShort : '???_???_??_???_?????_????_???'.split('_'),
    weekdaysMin : '?_?_?_?_????_??_??'.split('_'),
    weekdaysParseExact : true,
    longDateFormat : {
        LT : 'a h:mm',
        LTS : 'a h:mm:ss',
        L : 'YYYY/MM/DD',
        LL : 'YYYY MMMM D',
        LLL : 'YYYY MMMM D, a h:mm',
        LLLL : 'YYYY MMMM D [????] dddd, a h:mm:ss'
    },
    calendar : {
        sameDay : '[??] LT[?]',
        nextDay : '[???] LT[?]',
        nextWeek : 'dddd LT[?]',
        lastDay : '[???] LT[?]',
        lastWeek : '[??????] dddd LT[?]',
        sameElse : 'L'
    },
    relativeTime : {
        future : '%s????',
        past : '%s?? ???',
        s : '????? ??????',
        m : '?????????',
        mm : '???????? %d',
        h : '???',
        hh : '??? %d',
        d : '????',
        dd : '??? %d',
        M : '????',
        MM : '??? %d',
        y : '???',
        yy : '??? %d'
    },
    dayOfMonthOrdinalParse: /\d{1,2} ????/,
    ordinal : function (number) {
        return number + ' ????';
    },
    meridiemParse : /??? ???|??? ???|??.?|?.?./,
    isPM : function (input) {
        return input === '?.?.' || input === '??? ???';
    },
    meridiem : function (hours, minutes, isLower) {
        if (hours > 11) {
            return isLower ? '?.?.' : '??? ???';
        } else {
            return isLower ? '??.?.' : '??? ???';
        }
    }
});
return si;
})));
 |