| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- /**
- * Bootstrap Table Turkish translation
- * Author: Emin Şen
- * Author: Sercan Cakir <srcnckr@gmail.com>
- */
- $.fn.bootstrapTable.locales['tr-TR'] = $.fn.bootstrapTable.locales['tr'] = {
- formatCopyRows () {
- return 'Copy Rows'
- },
- formatPrint () {
- return 'Print'
- },
- formatLoadingMessage () {
- return 'Yükleniyor, lütfen bekleyin'
- },
- formatRecordsPerPage (pageNumber) {
- return `Sayfa başına ${pageNumber} kayıt.`
- },
- formatShowingRows (pageFrom, pageTo, totalRows, totalNotFiltered) {
- if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return `${totalRows} kayıttan ${pageFrom}-${pageTo} arası gösteriliyor (filtered from ${totalNotFiltered} total rows).`
- }
- return `${totalRows} kayıttan ${pageFrom}-${pageTo} arası gösteriliyor.`
- },
- formatSRPaginationPreText () {
- return 'previous page'
- },
- formatSRPaginationPageText (page) {
- return `to page ${page}`
- },
- formatSRPaginationNextText () {
- return 'next page'
- },
- formatDetailPagination (totalRows) {
- return `Showing ${totalRows} rows`
- },
- formatClearSearch () {
- return 'Clear Search'
- },
- formatSearch () {
- return 'Ara'
- },
- formatNoMatches () {
- return 'Eşleşen kayıt bulunamadı.'
- },
- formatPaginationSwitch () {
- return 'Hide/Show pagination'
- },
- formatPaginationSwitchDown () {
- return 'Show pagination'
- },
- formatPaginationSwitchUp () {
- return 'Hide pagination'
- },
- formatRefresh () {
- return 'Yenile'
- },
- formatToggle () {
- return 'Değiştir'
- },
- formatToggleOn () {
- return 'Show card view'
- },
- formatToggleOff () {
- return 'Hide card view'
- },
- formatColumns () {
- return 'Sütunlar'
- },
- formatColumnsToggleAll () {
- return 'Toggle all'
- },
- formatFullscreen () {
- return 'Fullscreen'
- },
- formatAllRows () {
- return 'Tüm Satırlar'
- },
- formatAutoRefresh () {
- return 'Auto Refresh'
- },
- formatExport () {
- return 'Export data'
- },
- formatJumpTo () {
- return 'GO'
- },
- formatAdvancedSearch () {
- return 'Advanced search'
- },
- formatAdvancedCloseButton () {
- return 'Close'
- },
- formatFilterControlSwitch () {
- return 'Hide/Show controls'
- },
- formatFilterControlSwitchHide () {
- return 'Hide controls'
- },
- formatFilterControlSwitchShow () {
- return 'Show controls'
- }
- }
- $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['tr-TR'])
|