corrade-nucleus-nucleons

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 19  →  ?path2? @ 20
/pack-rat/003_pack_rat/pack-rat/node_modules/bootstrap-table/docs/dist/locale/bootstrap-table-vi-VN.js
@@ -0,0 +1,28 @@
/**
* 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);