116 lines
4.9 KiB
JavaScript
116 lines
4.9 KiB
JavaScript
/**
|
|
* bootstrap-table - An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)
|
|
*
|
|
* @version v1.23.1
|
|
* @homepage https://bootstrap-table.com
|
|
* @author wenzhixin <wenzhixin2010@gmail.com> (http://wenzhixin.net.cn/)
|
|
* @license MIT
|
|
*/
|
|
|
|
!function (t, n) {
|
|
"object" == typeof exports && "undefined" != typeof module ? n(require("core-js/modules/es.array.concat.js"), require("core-js/modules/es.object.assign.js"), require("jquery")) : "function" == typeof define && define.amd ? define(["core-js/modules/es.array.concat.js", "core-js/modules/es.object.assign.js", "jquery"], n) : n(null, null, (t = "undefined" != typeof globalThis ? globalThis : t || self).jQuery)
|
|
}(this, (function (t, n, o) {
|
|
"use strict";
|
|
o.fn.bootstrapTable.locales["zh-CN"] = o.fn.bootstrapTable.locales.zh = {
|
|
formatCopyRows: function () {
|
|
return "复制行"
|
|
}, formatPrint: function () {
|
|
return "打印"
|
|
}, formatLoadingMessage: function () {
|
|
return "正在努力地加载数据中,请稍候"
|
|
}, formatRecordsPerPage: function (t) {
|
|
return "每页显示 ".concat(t, " 条记录")
|
|
}, formatShowingRows: function (t, n, o, r) {
|
|
return void 0 !== r && r > 0 && r > o ? "显示第 ".concat(t, " 到第 ").concat(n, " 条记录,总共 ").concat(o, " 条记录(从 ").concat(r, " 总记录中过滤)") : "显示第 ".concat(t, " 到第 ").concat(n, " 条记录,总共 ").concat(o, " 条记录")
|
|
}, formatSRPaginationPreText: function () {
|
|
return "上一页"
|
|
}, formatSRPaginationPageText: function (t) {
|
|
return "第".concat(t, "页")
|
|
}, formatSRPaginationNextText: function () {
|
|
return "下一页"
|
|
}, formatDetailPagination: function (t) {
|
|
return "总共 ".concat(t, " 条记录")
|
|
}, formatClearSearch: function () {
|
|
return "清空查询条件"
|
|
}, formatSearch: function () {
|
|
return "搜索"
|
|
}, formatNoMatches: function () {
|
|
return "没有找到匹配的记录"
|
|
}, formatPaginationSwitch: function () {
|
|
return "隐藏/显示分页"
|
|
}, formatPaginationSwitchDown: function () {
|
|
return "显示分页"
|
|
}, formatPaginationSwitchUp: function () {
|
|
return "隐藏分页"
|
|
}, formatRefresh: function () {
|
|
return "刷新"
|
|
}, formatToggleOn: function () {
|
|
return "显示卡片视图"
|
|
}, formatToggleOff: function () {
|
|
return "隐藏卡片视图"
|
|
}, formatColumns: function () {
|
|
return "列"
|
|
}, formatColumnsToggleAll: function () {
|
|
return "切换所有"
|
|
}, formatFullscreen: function () {
|
|
return "全屏"
|
|
}, formatAllRows: function () {
|
|
return "所有"
|
|
}, formatAutoRefresh: function () {
|
|
return "自动刷新"
|
|
}, formatExport: function () {
|
|
return "导出数据"
|
|
}, formatJumpTo: function () {
|
|
return "跳转"
|
|
}, formatAdvancedSearch: function () {
|
|
return "高级搜索"
|
|
}, formatAdvancedCloseButton: function () {
|
|
return "关闭"
|
|
}, formatFilterControlSwitch: function () {
|
|
return "隐藏/显示过滤控制"
|
|
}, formatFilterControlSwitchHide: function () {
|
|
return "隐藏过滤控制"
|
|
}, formatFilterControlSwitchShow: function () {
|
|
return "显示过滤控制"
|
|
},formatMultipleSort: function formatMultipleSort() {
|
|
return '高级排序';
|
|
},
|
|
formatAddLevel: function formatAddLevel() {
|
|
return '添加排序条件';
|
|
},
|
|
formatDeleteLevel: function formatDeleteLevel() {
|
|
return '删除排序条件';
|
|
},
|
|
formatColumn: function formatColumn() {
|
|
return '列';
|
|
},
|
|
formatOrder: function formatOrder() {
|
|
return '顺序';
|
|
},
|
|
formatSortBy: function formatSortBy() {
|
|
return '优先';
|
|
},
|
|
formatThenBy: function formatThenBy() {
|
|
return '然后';
|
|
},
|
|
formatSort: function formatSort() {
|
|
return '排序';
|
|
},
|
|
formatCancel: function formatCancel() {
|
|
return '取消';
|
|
},
|
|
formatDuplicateAlertTitle: function formatDuplicateAlertTitle() {
|
|
return '检测到重复的排序规则!';
|
|
},
|
|
formatDuplicateAlertDescription: function formatDuplicateAlertDescription() {
|
|
return '请移除或修改重复的排序规则.';
|
|
},
|
|
formatSortOrders: function formatSortOrders() {
|
|
return {
|
|
asc: '升序',
|
|
desc: '降序'
|
|
};
|
|
}
|
|
}, Object.assign(o.fn.bootstrapTable.defaults, o.fn.bootstrapTable.locales["zh-CN"])
|
|
}));
|