bootstrap-table-tr-TR.js 1.5 KB

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