he.js 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. (function (global, factory) {
  2. if (typeof define === "function" && define.amd) {
  3. define('element/locale/he', ['module', 'exports'], factory);
  4. } else if (typeof exports !== "undefined") {
  5. factory(module, exports);
  6. } else {
  7. var mod = {
  8. exports: {}
  9. };
  10. factory(mod, mod.exports);
  11. global.ELEMENT.lang = global.ELEMENT.lang || {};
  12. global.ELEMENT.lang.he = mod.exports;
  13. }
  14. })(this, function (module, exports) {
  15. 'use strict';
  16. exports.__esModule = true;
  17. exports.default = {
  18. el: {
  19. colorpicker: {
  20. confirm: 'אישור',
  21. clear: 'נקה'
  22. },
  23. datepicker: {
  24. now: 'כעת',
  25. today: 'היום',
  26. cancel: 'בטל',
  27. clear: 'נקה',
  28. confirm: 'אישור',
  29. selectDate: 'בחר תאריך',
  30. selectTime: 'בחר זמן',
  31. startDate: 'תאריך התחלה',
  32. startTime: 'זמן התחלה',
  33. endDate: 'תאריך סיום',
  34. endTime: 'זמן סיום',
  35. prevYear: 'Previous Year', // to be translated
  36. nextYear: 'Next Year', // to be translated
  37. prevMonth: 'Previous Month', // to be translated
  38. nextMonth: 'Next Month', // to be translated
  39. year: '',
  40. month1: 'ינואר',
  41. month2: 'פברואר',
  42. month3: 'מרץ',
  43. month4: 'אפריל',
  44. month5: 'מאי',
  45. month6: 'יוני',
  46. month7: 'יולי',
  47. month8: 'אוגוסט',
  48. month9: 'ספטמבר',
  49. month10: 'אוקטובר',
  50. month11: 'נובמבר',
  51. month12: 'דצמבר',
  52. // week: 'week',
  53. weeks: {
  54. sun: 'א׳',
  55. mon: 'ב׳',
  56. tue: 'ג׳',
  57. wed: 'ד׳',
  58. thu: 'ה׳',
  59. fri: 'ו׳',
  60. sat: 'שבת'
  61. },
  62. months: {
  63. jan: 'ינואר',
  64. feb: 'פברואר',
  65. mar: 'מרץ',
  66. apr: 'אפריל',
  67. may: 'מאי',
  68. jun: 'יוני',
  69. jul: 'יולי',
  70. aug: 'אוגוסט',
  71. sep: 'ספטמבר',
  72. oct: 'אוקטובר',
  73. nov: 'נובמבר',
  74. dec: 'דצמבר'
  75. }
  76. },
  77. select: {
  78. loading: 'טוען',
  79. noMatch: 'לא נמצאו נתונים',
  80. noData: 'ללא נתונים',
  81. placeholder: 'בחר'
  82. },
  83. cascader: {
  84. noMatch: 'ללא נתונים מתאימים',
  85. loading: 'טוען',
  86. placeholder: 'בחר'
  87. },
  88. pagination: {
  89. goto: 'עבור ל',
  90. pagesize: '/page',
  91. total: 'כולל {total}',
  92. pageClassifier: ''
  93. },
  94. messagebox: {
  95. title: 'הודעה',
  96. confirm: 'אישור',
  97. cancel: 'בטל',
  98. error: 'קלט לא תקין'
  99. },
  100. upload: {
  101. deleteTip: 'press delete to remove', // to be translated
  102. delete: 'מחק',
  103. preview: 'תצוגה מקדימה',
  104. continue: 'המשך'
  105. },
  106. table: {
  107. emptyText: 'אין נתונים',
  108. confirmFilter: 'אישור',
  109. resetFilter: 'נקה',
  110. clearFilter: 'הכל',
  111. sumText: 'סך'
  112. },
  113. tree: {
  114. emptyText: 'אין נתונים'
  115. },
  116. transfer: {
  117. noMatch: 'אין נתונים מתאימים',
  118. noData: 'ללא נתונים',
  119. titles: ['רשימה 1', 'רשימה 2'],
  120. filterPlaceholder: 'הקלד',
  121. noCheckedFormat: 'פריטים {total}',
  122. hasCheckedFormat: ' אישור {checked}/{total}'
  123. },
  124. image: {
  125. error: 'FAILED' // to be translated
  126. }
  127. }
  128. };
  129. module.exports = exports['default'];
  130. });