PHP Classes

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

Recommend this page to a friend!
  Classes of James Brows   PHP Bulletin Board   upload/themes/bb_simple/assets/moment/src/locale/he.js   Download  
File: upload/themes/bb_simple/assets/moment/src/locale/he.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: 3,188 bytes
 

Contents

Class file image Download
//! moment.js locale configuration //! locale : Hebrew [he] //! author : Tomer Cohen : https://github.com/tomer //! author : Moshe Simantov : https://github.com/DevelopmentIL //! author : Tal Ater : https://github.com/TalAter import moment from '../moment'; export default moment.defineLocale('he', { months : '?????_??????_???_?????_???_????_????_??????_??????_???????_??????_?????'.split('_'), monthsShort : '????_????_???_????_???_????_????_????_????_????_????_????'.split('_'), weekdays : '?????_???_?????_?????_?????_????_???'.split('_'), weekdaysShort : '??_??_??_??_??_??_??'.split('_'), weekdaysMin : '?_?_?_?_?_?_?'.split('_'), 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', l : 'D/M/YYYY', ll : 'D MMM YYYY', lll : 'D MMM YYYY HH:mm', llll : 'ddd, D MMM YYYY HH:mm' }, 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 : function (number) { if (number === 2) { return '??????'; } return number + ' ????'; }, d : '???', dd : function (number) { if (number === 2) { return '??????'; } return number + ' ????'; }, M : '????', MM : function (number) { if (number === 2) { return '???????'; } return number + ' ??????'; }, y : '???', yy : function (number) { if (number === 2) { return '??????'; } else if (number % 10 === 0 && number !== 10) { return number + ' ???'; } return number + ' ????'; } }, meridiemParse: /???"?|????"?|???? ???????|???? ???????|????? ????|?????|????/i, isPM : function (input) { return /^(???"?|???? ???????|????)$/.test(input); }, meridiem : function (hour, minute, isLower) { if (hour < 5) { return '????? ????'; } else if (hour < 10) { return '?????'; } else if (hour < 12) { return isLower ? '????"?' : '???? ???????'; } else if (hour < 18) { return isLower ? '???"?' : '???? ???????'; } else { return '????'; } } });