1 //! moment.js locale configuration
2 //! locale : Hebrew [he]
3 //! author : Tomer Cohen : https://github.com/tomer
4 //! author : Moshe Simantov : https://github.com/DevelopmentIL
5 //! author : Tal Ater : https://github.com/TalAter
7 ;(function (global
, factory
) {
8 typeof exports
=== 'object' && typeof module
!== 'undefined'
9 && typeof require
=== 'function' ? factory(require('../moment')) :
10 typeof define
=== 'function' && define
.amd
? define(['../moment'], factory
) :
11 factory(global
.moment
)
12 }(this, function (moment
) { 'use strict';
15 var he
= moment
.defineLocale('he', {
16 months
: 'ינואר_פברואר_מרץ_אפריל_מאי_יוני_יולי_אוגוסט_ספטמבר_אוקטובר_נובמבר_דצמבר'.split('_'),
17 monthsShort
: 'ינו׳_פבר׳_מרץ_אפר׳_מאי_יוני_יולי_אוג׳_ספט׳_אוק׳_נוב׳_דצמ׳'.split('_'),
18 weekdays
: 'ראשון_שני_שלישי_רביעי_חמישי_שישי_שבת'.split('_'),
19 weekdaysShort
: 'א׳_ב׳_ג׳_ד׳_ה׳_ו׳_ש׳'.split('_'),
20 weekdaysMin
: 'א_ב_ג_ד_ה_ו_ש'.split('_'),
25 LL
: 'D [ב]MMMM YYYY',
26 LLL
: 'D [ב]MMMM YYYY HH:mm',
27 LLLL
: 'dddd, D [ב]MMMM YYYY HH:mm',
30 lll
: 'D MMM YYYY HH:mm',
31 llll
: 'ddd, D MMM YYYY HH:mm'
34 sameDay
: '[היום ב־]LT',
35 nextDay
: '[מחר ב־]LT',
36 nextWeek
: 'dddd [בשעה] LT',
37 lastDay
: '[אתמול ב־]LT',
38 lastWeek
: '[ביום] dddd [האחרון בשעה] LT',
48 hh : function (number
) {
52 return number
+ ' שעות';
55 dd : function (number
) {
59 return number
+ ' ימים';
62 MM : function (number
) {
66 return number
+ ' חודשים';
69 yy : function (number
) {
72 } else if (number
% 10 === 0 && number
!== 10) {
73 return number
+ ' שנה';
75 return number
+ ' שנים';
78 meridiemParse
: /אחה"צ|לפנה"צ|אחרי הצהריים|לפני הצהריים|לפנות בוקר|בבוקר|בערב/i,
79 isPM : function (input
) {
80 return /^(אחה"צ|אחרי הצהריים|בערב)$/.test(input
);
82 meridiem : function (hour
, minute
, isLower
) {
85 } else if (hour
< 10) {
87 } else if (hour
< 12) {
88 return isLower
? 'לפנה"צ' : 'לפני הצהריים';
89 } else if (hour
< 18) {
90 return isLower
? 'אחה"צ' : 'אחרי הצהריים';