PHP Classes

File: upload/themes/bb_simple/assets/moment/src/locale/si.js

Recommend this page to a friend!
  Classes of James Brows   PHP Bulletin Board   upload/themes/bb_simple/assets/moment/src/locale/si.js   Download  
File: upload/themes/bb_simple/assets/moment/src/locale/si.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Bulletin Board
Manage and post messages in multi-user forums
Author: By
Last change:
Date: 2 years ago
Size: 2,623 bytes
 

Contents

Class file image Download
//! moment.js locale configuration //! locale : Sinhalese [si] //! author : Sampath Sitinamaluwa : https://github.com/sampathsris import moment from '../moment'; /*jshint -W100*/ export default 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 ? '??.?.' : '??? ???'; } } });