snipe-it/public/js/locale/bootstrap-table-tr-TR.js
2017-05-31 10:31:56 -07:00

42 lines
1.2 KiB
JavaScript
Executable file
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* Bootstrap Table Turkish translation
* Author: Emin Şen
* Author: Sercan Cakir <[email protected]>
*/
(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);