bootstrap-table-et-EE.js 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /**
  2. * Bootstrap Table Estonian translation
  3. * Author: kristjan@logist.it>
  4. */
  5. $.fn.bootstrapTable.locales['et-EE'] = {
  6. formatLoadingMessage () {
  7. return 'Päring käib, palun oota'
  8. },
  9. formatRecordsPerPage (pageNumber) {
  10. return `${pageNumber} rida lehe kohta`
  11. },
  12. formatShowingRows (pageFrom, pageTo, totalRows, totalNotFiltered) {
  13. if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
  14. return `Näitan tulemusi ${pageFrom} kuni ${pageTo} - kokku ${totalRows} tulemust (filtered from ${totalNotFiltered} total rows)`
  15. }
  16. return `Näitan tulemusi ${pageFrom} kuni ${pageTo} - kokku ${totalRows} tulemust`
  17. },
  18. formatSRPaginationPreText () {
  19. return 'previous page'
  20. },
  21. formatSRPaginationPageText (page) {
  22. return `to page ${page}`
  23. },
  24. formatSRPaginationNextText () {
  25. return 'next page'
  26. },
  27. formatDetailPagination (totalRows) {
  28. return `Showing ${totalRows} rows`
  29. },
  30. formatClearSearch () {
  31. return 'Clear Search'
  32. },
  33. formatSearch () {
  34. return 'Otsi'
  35. },
  36. formatNoMatches () {
  37. return 'Päringu tingimustele ei vastanud ühtegi tulemust'
  38. },
  39. formatPaginationSwitch () {
  40. return 'Näita/Peida lehtedeks jagamine'
  41. },
  42. formatPaginationSwitchDown () {
  43. return 'Show pagination'
  44. },
  45. formatPaginationSwitchUp () {
  46. return 'Hide pagination'
  47. },
  48. formatRefresh () {
  49. return 'Värskenda'
  50. },
  51. formatToggle () {
  52. return 'Lülita'
  53. },
  54. formatToggleOn () {
  55. return 'Show card view'
  56. },
  57. formatToggleOff () {
  58. return 'Hide card view'
  59. },
  60. formatColumns () {
  61. return 'Veerud'
  62. },
  63. formatFullscreen () {
  64. return 'Fullscreen'
  65. },
  66. formatAllRows () {
  67. return 'Kõik'
  68. },
  69. formatAutoRefresh () {
  70. return 'Auto Refresh'
  71. },
  72. formatExport () {
  73. return 'Export data'
  74. },
  75. formatJumpTo () {
  76. return 'GO'
  77. },
  78. formatAdvancedSearch () {
  79. return 'Advanced search'
  80. },
  81. formatAdvancedCloseButton () {
  82. return 'Close'
  83. }
  84. }
  85. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['et-EE'])