bootstrap-table-tr-TR.js 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /**
  2. * Bootstrap Table Turkish translation
  3. * Author: Emin Şen
  4. * Author: Sercan Cakir <srcnckr@gmail.com>
  5. */
  6. $.fn.bootstrapTable.locales['tr-TR'] = {
  7. formatLoadingMessage () {
  8. return 'Yükleniyor, lütfen bekleyin'
  9. },
  10. formatRecordsPerPage (pageNumber) {
  11. return `Sayfa başına ${pageNumber} kayıt.`
  12. },
  13. formatShowingRows (pageFrom, pageTo, totalRows, totalNotFiltered) {
  14. if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
  15. return `${totalRows} kayıttan ${pageFrom}-${pageTo} arası gösteriliyor (filtered from ${totalNotFiltered} total rows).`
  16. }
  17. return `${totalRows} kayıttan ${pageFrom}-${pageTo} arası gösteriliyor.`
  18. },
  19. formatDetailPagination (totalRows) {
  20. return `Showing ${totalRows} rows`
  21. },
  22. formatSearch () {
  23. return 'Ara'
  24. },
  25. formatNoMatches () {
  26. return 'Eşleşen kayıt bulunamadı.'
  27. },
  28. formatPaginationSwitch () {
  29. return 'Hide/Show pagination'
  30. },
  31. formatRefresh () {
  32. return 'Yenile'
  33. },
  34. formatToggle () {
  35. return 'Değiştir'
  36. },
  37. formatColumns () {
  38. return 'Sütunlar'
  39. },
  40. formatFullscreen () {
  41. return 'Fullscreen'
  42. },
  43. formatAllRows () {
  44. return 'Tüm Satırlar'
  45. },
  46. formatAutoRefresh () {
  47. return 'Auto Refresh'
  48. },
  49. formatExport () {
  50. return 'Export data'
  51. },
  52. formatClearFilters () {
  53. return 'Clear filters'
  54. },
  55. formatJumpTo () {
  56. return 'GO'
  57. },
  58. formatAdvancedSearch () {
  59. return 'Advanced search'
  60. },
  61. formatAdvancedCloseButton () {
  62. return 'Close'
  63. }
  64. }
  65. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['tr-TR'])