all
This commit is contained in:
41
Productivite/Snipe-IT/public/js/locale/bootstrap-table-tr-TR.js
vendored
Normal file
41
Productivite/Snipe-IT/public/js/locale/bootstrap-table-tr-TR.js
vendored
Normal file
@ -0,0 +1,41 @@
|
||||
/**
|
||||
* Bootstrap Table Turkish translation
|
||||
* Author: Emin Şen
|
||||
* Author: Sercan Cakir <srcnckr@gmail.com>
|
||||
*/
|
||||
(function ($) {
|
||||
'use strict';
|
||||
|
||||
$.fn.bootstrapTable.locales['tr-TR'] = {
|
||||
formatLoadingMessage: function () {
|
||||
return 'Yükleniyor, lütfen bekleyin...';
|
||||
},
|
||||
formatRecordsPerPage: function (pageNumber) {
|
||||
return 'Sayfa başına ' + pageNumber + ' kayıt.';
|
||||
},
|
||||
formatShowingRows: function (pageFrom, pageTo, totalRows) {
|
||||
return totalRows + ' kayıttan ' + pageFrom + '-' + pageTo + ' arası gösteriliyor.';
|
||||
},
|
||||
formatSearch: function () {
|
||||
return 'Ara';
|
||||
},
|
||||
formatNoMatches: function () {
|
||||
return 'Eşleşen kayıt bulunamadı.';
|
||||
},
|
||||
formatRefresh: function () {
|
||||
return 'Yenile';
|
||||
},
|
||||
formatToggle: function () {
|
||||
return 'Değiştir';
|
||||
},
|
||||
formatColumns: function () {
|
||||
return 'Sütunlar';
|
||||
},
|
||||
formatAllRows: function () {
|
||||
return 'Tüm Satırlar';
|
||||
}
|
||||
};
|
||||
|
||||
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['tr-TR']);
|
||||
|
||||
})(jQuery);
|
Reference in New Issue
Block a user