ajout app
This commit is contained in:
37
SNIPE-IT/public/js/locale/bootstrap-table-th-TH.js
vendored
Normal file
37
SNIPE-IT/public/js/locale/bootstrap-table-th-TH.js
vendored
Normal file
@ -0,0 +1,37 @@
|
||||
/**
|
||||
* Bootstrap Table Thai translation
|
||||
* Author: Monchai S.<monchais@gmail.com>
|
||||
*/
|
||||
(function ($) {
|
||||
'use strict';
|
||||
|
||||
$.fn.bootstrapTable.locales['th-TH'] = {
|
||||
formatLoadingMessage: function () {
|
||||
return 'กำลังโหลดข้อมูล, กรุณารอสักครู่...';
|
||||
},
|
||||
formatRecordsPerPage: function (pageNumber) {
|
||||
return pageNumber + ' รายการต่อหน้า';
|
||||
},
|
||||
formatShowingRows: function (pageFrom, pageTo, totalRows) {
|
||||
return 'รายการที่ ' + pageFrom + ' ถึง ' + pageTo + ' จากทั้งหมด ' + totalRows + ' รายการ';
|
||||
},
|
||||
formatSearch: function () {
|
||||
return 'ค้นหา';
|
||||
},
|
||||
formatNoMatches: function () {
|
||||
return 'ไม่พบรายการที่ค้นหา !';
|
||||
},
|
||||
formatRefresh: function () {
|
||||
return 'รีเฟรส';
|
||||
},
|
||||
formatToggle: function () {
|
||||
return 'สลับมุมมอง';
|
||||
},
|
||||
formatColumns: function () {
|
||||
return 'คอลัมน์';
|
||||
}
|
||||
};
|
||||
|
||||
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['th-TH']);
|
||||
|
||||
})(jQuery);
|
Reference in New Issue
Block a user