You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
863 B
Plaintext
28 lines
863 B
Plaintext
/**
|
|
* Bootstrap Table Vietnamese translation
|
|
* Author: Duc N. PHAM <pngduc@gmail.com>
|
|
*/
|
|
(function ($) {
|
|
'use strict';
|
|
|
|
$.fn.bootstrapTable.locales['vi-VN'] = {
|
|
formatLoadingMessage: function () {
|
|
return 'Đang tải...';
|
|
},
|
|
formatRecordsPerPage: function (pageNumber) {
|
|
return pageNumber + ' bản ghi mỗi trang';
|
|
},
|
|
formatShowingRows: function (pageFrom, pageTo, totalRows) {
|
|
return 'Hiển thị từ trang ' + pageFrom + ' đến ' + pageTo + ' của ' + totalRows + ' bảng ghi';
|
|
},
|
|
formatSearch: function () {
|
|
return 'Tìm kiếm';
|
|
},
|
|
formatNoMatches: function () {
|
|
return 'Không có dữ liệu';
|
|
}
|
|
};
|
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['vi-VN']);
|
|
|
|
})(jQuery); |