bootstrap-table-el-GR.js 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /**
  2. * Bootstrap Table Greek translation
  3. * Author: giannisdallas
  4. */
  5. $.fn.bootstrapTable.locales['el-GR'] = {
  6. formatLoadingMessage () {
  7. return 'Φορτώνει, παρακαλώ περιμένετε'
  8. },
  9. formatRecordsPerPage (pageNumber) {
  10. return `${pageNumber} αποτελέσματα ανά σελίδα`
  11. },
  12. formatShowingRows (pageFrom, pageTo, totalRows, totalNotFiltered) {
  13. if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
  14. return `Εμφανίζονται από την ${pageFrom} ως την ${pageTo} από σύνολο ${totalRows} σειρών (filtered from ${totalNotFiltered} total rows)`
  15. }
  16. return `Εμφανίζονται από την ${pageFrom} ως την ${pageTo} από σύνολο ${totalRows} σειρών`
  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 'Αναζητήστε'
  35. },
  36. formatNoMatches () {
  37. return 'Δεν βρέθηκαν αποτελέσματα'
  38. },
  39. formatPaginationSwitch () {
  40. return 'Hide/Show pagination'
  41. },
  42. formatPaginationSwitchDown () {
  43. return 'Show pagination'
  44. },
  45. formatPaginationSwitchUp () {
  46. return 'Hide pagination'
  47. },
  48. formatRefresh () {
  49. return 'Refresh'
  50. },
  51. formatToggle () {
  52. return 'Toggle'
  53. },
  54. formatToggleOn () {
  55. return 'Show card view'
  56. },
  57. formatToggleOff () {
  58. return 'Hide card view'
  59. },
  60. formatColumns () {
  61. return 'Columns'
  62. },
  63. formatFullscreen () {
  64. return 'Fullscreen'
  65. },
  66. formatAllRows () {
  67. return 'All'
  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['el-GR'])