he.js 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. // Hebrew [he]
  2. import dayjs from '../index';
  3. var texts = {
  4. s: 'מספר שניות',
  5. ss: '%d שניות',
  6. m: 'דקה',
  7. mm: '%d דקות',
  8. h: 'שעה',
  9. hh: '%d שעות',
  10. hh2: 'שעתיים',
  11. d: 'יום',
  12. dd: '%d ימים',
  13. dd2: 'יומיים',
  14. M: 'חודש',
  15. MM: '%d חודשים',
  16. MM2: 'חודשיים',
  17. y: 'שנה',
  18. yy: '%d שנים',
  19. yy2: 'שנתיים'
  20. };
  21. function relativeTimeFormatter(number, withoutSuffix, key) {
  22. var text = texts[key + (number === 2 ? '2' : '')] || texts[key];
  23. return text.replace('%d', number);
  24. }
  25. var locale = {
  26. name: 'he',
  27. weekdays: 'ראשון_שני_שלישי_רביעי_חמישי_שישי_שבת'.split('_'),
  28. weekdaysShort: 'א׳_ב׳_ג׳_ד׳_ה׳_ו׳_ש׳'.split('_'),
  29. weekdaysMin: 'א׳_ב׳_ג׳_ד׳_ה׳_ו_ש׳'.split('_'),
  30. months: 'ינואר_פברואר_מרץ_אפריל_מאי_יוני_יולי_אוגוסט_ספטמבר_אוקטובר_נובמבר_דצמבר'.split('_'),
  31. monthsShort: 'ינו_פבר_מרץ_אפר_מאי_יונ_יול_אוג_ספט_אוק_נוב_דצמ'.split('_'),
  32. relativeTime: {
  33. future: 'בעוד %s',
  34. past: 'לפני %s',
  35. s: relativeTimeFormatter,
  36. m: relativeTimeFormatter,
  37. mm: relativeTimeFormatter,
  38. h: relativeTimeFormatter,
  39. hh: relativeTimeFormatter,
  40. d: relativeTimeFormatter,
  41. dd: relativeTimeFormatter,
  42. M: relativeTimeFormatter,
  43. MM: relativeTimeFormatter,
  44. y: relativeTimeFormatter,
  45. yy: relativeTimeFormatter
  46. },
  47. ordinal: function ordinal(n) {
  48. return n;
  49. },
  50. format: {
  51. LT: 'HH:mm',
  52. LTS: 'HH:mm:ss',
  53. L: 'DD/MM/YYYY',
  54. LL: 'D [ב]MMMM YYYY',
  55. LLL: 'D [ב]MMMM YYYY HH:mm',
  56. LLLL: 'dddd, D [ב]MMMM YYYY HH:mm',
  57. l: 'D/M/YYYY',
  58. ll: 'D MMM YYYY',
  59. lll: 'D MMM YYYY HH:mm',
  60. llll: 'ddd, D MMM YYYY HH:mm'
  61. },
  62. formats: {
  63. LT: 'HH:mm',
  64. LTS: 'HH:mm:ss',
  65. L: 'DD/MM/YYYY',
  66. LL: 'D [ב]MMMM YYYY',
  67. LLL: 'D [ב]MMMM YYYY HH:mm',
  68. LLLL: 'dddd, D [ב]MMMM YYYY HH:mm',
  69. l: 'D/M/YYYY',
  70. ll: 'D MMM YYYY',
  71. lll: 'D MMM YYYY HH:mm',
  72. llll: 'ddd, D MMM YYYY HH:mm'
  73. }
  74. };
  75. dayjs.locale(locale, null, true);
  76. export default locale;