he.js 2.8 KB

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