PHP Classes

File: CoffeeCMS/contents/themes/cfnews/cfnews-html/assets/moment/locale/he.js

Recommend this page to a friend!
  Classes of James Brows   Coffee CMS   CoffeeCMS/contents/themes/cfnews/cfnews-html/assets/moment/locale/he.js   Download  
File: CoffeeCMS/contents/themes/cfnews/cfnews-html/assets/moment/locale/he.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Coffee CMS
Content management system using MVC based themes
Author: By
Last change:
Date: 2 years ago
Size: 3,488 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 ;(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'; var he = 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 '????'; } } }); return he; })));