ui-grid.language.he.js 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*!
  2. * ui-grid - v4.4.6 - 2018-04-06
  3. * Copyright (c) 2018 ; License: MIT
  4. */
  5. (function () {
  6. angular.module('ui.grid').config(['$provide', function ($provide) {
  7. $provide.decorator('i18nService', ['$delegate', function ($delegate) {
  8. $delegate.add('he', {
  9. aggregate: {
  10. label: 'items'
  11. },
  12. groupPanel: {
  13. description: 'גרור עמודה לכאן ושחרר בכדי לקבץ עמודה זו.'
  14. },
  15. search: {
  16. placeholder: 'חפש...',
  17. showingItems: 'מציג:',
  18. selectedItems: 'סה"כ נבחרו:',
  19. totalItems: 'סה"כ רשומות:',
  20. size: 'תוצאות בדף:',
  21. first: 'דף ראשון',
  22. next: 'דף הבא',
  23. previous: 'דף קודם',
  24. last: 'דף אחרון'
  25. },
  26. menu: {
  27. text: 'בחר עמודות:'
  28. },
  29. sort: {
  30. ascending: 'סדר עולה',
  31. descending: 'סדר יורד',
  32. remove: 'בטל'
  33. },
  34. column: {
  35. hide: 'טור הסתר'
  36. },
  37. aggregation: {
  38. count: 'total rows: ',
  39. sum: 'total: ',
  40. avg: 'avg: ',
  41. min: 'min: ',
  42. max: 'max: '
  43. },
  44. gridMenu: {
  45. columns: 'Columns:',
  46. importerTitle: 'Import file',
  47. exporterAllAsCsv: 'Export all data as csv',
  48. exporterVisibleAsCsv: 'Export visible data as csv',
  49. exporterSelectedAsCsv: 'Export selected data as csv',
  50. exporterAllAsPdf: 'Export all data as pdf',
  51. exporterVisibleAsPdf: 'Export visible data as pdf',
  52. exporterSelectedAsPdf: 'Export selected data as pdf',
  53. exporterAllAsExcel: 'Export all data as excel',
  54. exporterVisibleAsExcel: 'Export visible data as excel',
  55. exporterSelectedAsExcel: 'Export selected data as excel',
  56. clearAllFilters: 'Clean all filters'
  57. },
  58. importer: {
  59. noHeaders: 'Column names were unable to be derived, does the file have a header?',
  60. noObjects: 'Objects were not able to be derived, was there data in the file other than headers?',
  61. invalidCsv: 'File was unable to be processed, is it valid CSV?',
  62. invalidJson: 'File was unable to be processed, is it valid Json?',
  63. jsonNotArray: 'Imported json file must contain an array, aborting.'
  64. }
  65. });
  66. return $delegate;
  67. }]);
  68. }]);
  69. })();