ui-grid.language.sk.js 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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('sk', {
  9. aggregate: {
  10. label: 'items'
  11. },
  12. groupPanel: {
  13. description: 'Pretiahni sem názov stĺpca pre zoskupenie podľa toho stĺpca.'
  14. },
  15. search: {
  16. placeholder: 'Hľadaj...',
  17. showingItems: 'Zobrazujem položky:',
  18. selectedItems: 'Vybraté položky:',
  19. totalItems: 'Počet položiek:',
  20. size: 'Počet:',
  21. first: 'Prvá strana',
  22. next: 'Ďalšia strana',
  23. previous: 'Predchádzajúca strana',
  24. last: 'Posledná strana'
  25. },
  26. menu: {
  27. text: 'Vyberte stĺpce:'
  28. },
  29. sort: {
  30. ascending: 'Zotriediť vzostupne',
  31. descending: 'Zotriediť zostupne',
  32. remove: 'Vymazať triedenie'
  33. },
  34. aggregation: {
  35. count: 'total rows: ',
  36. sum: 'total: ',
  37. avg: 'avg: ',
  38. min: 'min: ',
  39. max: 'max: '
  40. },
  41. gridMenu: {
  42. columns: 'Columns:',
  43. importerTitle: 'Import file',
  44. exporterAllAsCsv: 'Export all data as csv',
  45. exporterVisibleAsCsv: 'Export visible data as csv',
  46. exporterSelectedAsCsv: 'Export selected data as csv',
  47. exporterAllAsPdf: 'Export all data as pdf',
  48. exporterVisibleAsPdf: 'Export visible data as pdf',
  49. exporterSelectedAsPdf: 'Export selected data as pdf',
  50. exporterAllAsExcel: 'Export all data as excel',
  51. exporterVisibleAsExcel: 'Export visible data as excel',
  52. exporterSelectedAsExcel: 'Export selected data as excel',
  53. clearAllFilters: 'Clear all filters'
  54. },
  55. importer: {
  56. noHeaders: 'Column names were unable to be derived, does the file have a header?',
  57. noObjects: 'Objects were not able to be derived, was there data in the file other than headers?',
  58. invalidCsv: 'File was unable to be processed, is it valid CSV?',
  59. invalidJson: 'File was unable to be processed, is it valid Json?',
  60. jsonNotArray: 'Imported json file must contain an array, aborting.'
  61. }
  62. });
  63. return $delegate;
  64. }]);
  65. }]);
  66. })();