he.js 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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. noData: 'ללא נתונים'
  88. },
  89. pagination: {
  90. goto: 'עבור ל',
  91. pagesize: '/page',
  92. total: 'כולל {total}',
  93. pageClassifier: ''
  94. },
  95. messagebox: {
  96. title: 'הודעה',
  97. confirm: 'אישור',
  98. cancel: 'בטל',
  99. error: 'קלט לא תקין'
  100. },
  101. upload: {
  102. deleteTip: 'press delete to remove', // to be translated
  103. delete: 'מחק',
  104. preview: 'תצוגה מקדימה',
  105. continue: 'המשך'
  106. },
  107. table: {
  108. emptyText: 'אין נתונים',
  109. confirmFilter: 'אישור',
  110. resetFilter: 'נקה',
  111. clearFilter: 'הכל',
  112. sumText: 'סך'
  113. },
  114. tree: {
  115. emptyText: 'אין נתונים'
  116. },
  117. transfer: {
  118. noMatch: 'אין נתונים מתאימים',
  119. noData: 'ללא נתונים',
  120. titles: ['רשימה 1', 'רשימה 2'],
  121. filterPlaceholder: 'הקלד',
  122. noCheckedFormat: 'פריטים {total}',
  123. hasCheckedFormat: ' אישור {checked}/{total}'
  124. },
  125. image: {
  126. error: 'FAILED' // to be translated
  127. },
  128. pageHeader: {
  129. title: 'Back' // to be translated
  130. },
  131. popconfirm: {
  132. confirmButtonText: 'Yes', // to be translated
  133. cancelButtonText: 'No' // to be translated
  134. },
  135. empty: {
  136. description: 'אין נתונים'
  137. }
  138. }
  139. };
  140. module.exports = exports['default'];
  141. });