You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

80 lines
3.0 KiB

  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
  6. (function (global, factory) {
  7. typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
  8. typeof define === 'function' && define.amd ? define(['moment'], factory) :
  9. factory(global.moment)
  10. }(this, function (moment) { 'use strict';
  11. var he = moment.defineLocale('he', {
  12. months : 'ינואר_פברואר_מרץ_אפריל_מאי_יוני_יולי_אוגוסט_ספטמבר_אוקטובר_נובמבר_דצמבר'.split('_'),
  13. monthsShort : 'ינו׳_פבר׳_מרץ_אפר׳_מאי_יוני_יולי_אוג׳_ספט׳_אוק׳_נוב׳_דצמ׳'.split('_'),
  14. weekdays : 'ראשון_שני_שלישי_רביעי_חמישי_שישי_שבת'.split('_'),
  15. weekdaysShort : 'א׳_ב׳_ג׳_ד׳_ה׳_ו׳_ש׳'.split('_'),
  16. weekdaysMin : 'א_ב_ג_ד_ה_ו_ש'.split('_'),
  17. longDateFormat : {
  18. LT : 'HH:mm',
  19. LTS : 'LT:ss',
  20. L : 'DD/MM/YYYY',
  21. LL : 'D [ב]MMMM YYYY',
  22. LLL : 'D [ב]MMMM YYYY LT',
  23. LLLL : 'dddd, D [ב]MMMM YYYY LT',
  24. l : 'D/M/YYYY',
  25. ll : 'D MMM YYYY',
  26. lll : 'D MMM YYYY LT',
  27. llll : 'ddd, D MMM YYYY LT'
  28. },
  29. calendar : {
  30. sameDay : '[היום ב־]LT',
  31. nextDay : '[מחר ב־]LT',
  32. nextWeek : 'dddd [בשעה] LT',
  33. lastDay : '[אתמול ב־]LT',
  34. lastWeek : '[ביום] dddd [האחרון בשעה] LT',
  35. sameElse : 'L'
  36. },
  37. relativeTime : {
  38. future : 'בעוד %s',
  39. past : 'לפני %s',
  40. s : 'מספר שניות',
  41. m : 'דקה',
  42. mm : '%d דקות',
  43. h : 'שעה',
  44. hh : function (number) {
  45. if (number === 2) {
  46. return 'שעתיים';
  47. }
  48. return number + ' שעות';
  49. },
  50. d : 'יום',
  51. dd : function (number) {
  52. if (number === 2) {
  53. return 'יומיים';
  54. }
  55. return number + ' ימים';
  56. },
  57. M : 'חודש',
  58. MM : function (number) {
  59. if (number === 2) {
  60. return 'חודשיים';
  61. }
  62. return number + ' חודשים';
  63. },
  64. y : 'שנה',
  65. yy : function (number) {
  66. if (number === 2) {
  67. return 'שנתיים';
  68. } else if (number % 10 === 0 && number !== 10) {
  69. return number + ' שנה';
  70. }
  71. return number + ' שנים';
  72. }
  73. }
  74. });
  75. return he;
  76. }));