bootstrap-table-tr-TR.js 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /**
  2. * Bootstrap Table Turkish translation
  3. * Author: Emin Şen
  4. * Author: Sercan Cakir <srcnckr@gmail.com>
  5. */
  6. $.fn.bootstrapTable.locales['tr-TR'] = $.fn.bootstrapTable.locales['tr'] = {
  7. formatCopyRows () {
  8. return 'Copy Rows'
  9. },
  10. formatPrint () {
  11. return 'Print'
  12. },
  13. formatLoadingMessage () {
  14. return 'Yükleniyor, lütfen bekleyin'
  15. },
  16. formatRecordsPerPage (pageNumber) {
  17. return `Sayfa başına ${pageNumber} kayıt.`
  18. },
  19. formatShowingRows (pageFrom, pageTo, totalRows, totalNotFiltered) {
  20. if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
  21. return `${totalRows} kayıttan ${pageFrom}-${pageTo} arası gösteriliyor (filtered from ${totalNotFiltered} total rows).`
  22. }
  23. return `${totalRows} kayıttan ${pageFrom}-${pageTo} arası gösteriliyor.`
  24. },
  25. formatSRPaginationPreText () {
  26. return 'previous page'
  27. },
  28. formatSRPaginationPageText (page) {
  29. return `to page ${page}`
  30. },
  31. formatSRPaginationNextText () {
  32. return 'next page'
  33. },
  34. formatDetailPagination (totalRows) {
  35. return `Showing ${totalRows} rows`
  36. },
  37. formatClearSearch () {
  38. return 'Clear Search'
  39. },
  40. formatSearch () {
  41. return 'Ara'
  42. },
  43. formatNoMatches () {
  44. return 'Eşleşen kayıt bulunamadı.'
  45. },
  46. formatPaginationSwitch () {
  47. return 'Hide/Show pagination'
  48. },
  49. formatPaginationSwitchDown () {
  50. return 'Show pagination'
  51. },
  52. formatPaginationSwitchUp () {
  53. return 'Hide pagination'
  54. },
  55. formatRefresh () {
  56. return 'Yenile'
  57. },
  58. formatToggle () {
  59. return 'Değiştir'
  60. },
  61. formatToggleOn () {
  62. return 'Show card view'
  63. },
  64. formatToggleOff () {
  65. return 'Hide card view'
  66. },
  67. formatColumns () {
  68. return 'Sütunlar'
  69. },
  70. formatColumnsToggleAll () {
  71. return 'Toggle all'
  72. },
  73. formatFullscreen () {
  74. return 'Fullscreen'
  75. },
  76. formatAllRows () {
  77. return 'Tüm Satırlar'
  78. },
  79. formatAutoRefresh () {
  80. return 'Auto Refresh'
  81. },
  82. formatExport () {
  83. return 'Export data'
  84. },
  85. formatJumpTo () {
  86. return 'GO'
  87. },
  88. formatAdvancedSearch () {
  89. return 'Advanced search'
  90. },
  91. formatAdvancedCloseButton () {
  92. return 'Close'
  93. },
  94. formatFilterControlSwitch () {
  95. return 'Hide/Show controls'
  96. },
  97. formatFilterControlSwitchHide () {
  98. return 'Hide controls'
  99. },
  100. formatFilterControlSwitchShow () {
  101. return 'Show controls'
  102. }
  103. }
  104. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['tr-TR'])